@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1.1
 * @type		transitional
 * @browsers	Windows: IE5+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2008 Live Web Institute. All Rights Reserved.
 *
 * Module Classes: *.dir {} *.on {} *.open {} li.hover {} li.first {} li.last {}
 * Expected directory tag - li
 *
 */


/*-------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				/*\.class|(li|a):hover/
 * @level sep	ul
 */


ul.dropdown {
    font-weight: bold;
    width: 922px;
    margin: 0 10px;
    height: 40px;
    font-family: "Arial", Helvetica, sans-serif;
    padding: 0 0 0 10px;
    text-align: center;
    background-color: #8C1F00;
}

ul.dropdown li {
    background:none repeat scroll 0 0 #F5F0DA;
    width: auto;
    padding: 0 13px;
    border: 0px solid #F5F0DA;
    background-color: #8C1F00;
    color: #fff;
    vertical-align: middle;
    height: 40px;
}

ul.dropdown li
ul.dropdown li.hover,
ul.dropdown li:hover {
    background-color: #9F4B33;
    color: #fff;
    
}

ul.dropdown a:link,
ul.dropdown a:visited	{
    background: transparent;
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 40px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-decoration: none;
    width: 100%;
}

ul.dropdown a:hover     { color: #fff; }
ul.dropdown a:active	{ color: #ffa500; }


/* -- level mark -- */

ul.dropdown li ul{
    background-color: transparent;
    margin-top: -1px;
    min-width: 145px;
    overflow: visible;
}


ul.dropdown li ul li
{
    display: block;
    float: left;
    background: none repeat scroll 0 0 #F5F0DA;
    opacity:0.95;
    color:#000;
    border-bottom:1px dotted #aac;
    clear: both;

    height: 40px;
    min-width: 150px;
    width: 215px;

    padding-left: 10px;
    padding-right: 10px;
    
    white-space:nowrap;
    font-weight: normal;
    text-align: left;
    text-decoration: none;
    
    vertical-align: middle;
}

ul.dropdown li ul li.last
{
    width: 130px;
    min-width: 130px;
}

ul.dropdown li ul li a:link,
ul.dropdown li ul li a:visited
{
    display: block;
    float: left;
    position: relative;
    color:#000;
    font-weight: normal;
    text-align: left;
    text-decoration: none;
    width: 100%;
    padding: 0px;
}

 ul.dropdown ul li a:hover
 {
     color: #fff;
 }
        



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */



