/* Menu navigation */
#divNavContainer
{
	width: 100%;
	height: 30px;
	background-color: #2e2d2d;
}

#ulNav, #ulNav ul { 
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
    max-width:800px;
    font-size:12px;
    background-color: #2e2d2d;
} 
#ulNav a {
    display: block;
    width: auto;
    color:White;
    font-size:14px;
    font-weight:bold;
}       
#ulNav li { /* all list items */
    list-style: none;
    float: left;
    width: auto; /* Opera needs width */
    padding:7px 20px 8px 20px;
}   
#ulNav li ul { /* second-level lists
    top:177px; */
    position: absolute;
    background:#2e2d2d;
    width: 260px;
    /* using left instead of display to hide menus because  
    display:none isn't read by screen readers */
    left: -999em;
}
#ulNav li ul li { /* second-level lists */
    float: none;
    width: 260px;
    text-align: left;
    list-style: none; 
    font-size: 10px;
    padding: 2px 20px 3px 20px;
}
#ulNav li ul li a { /* second-level lists */
    font-size: 11px;
}  

#ulNav li:hover ul, #ulNav li.rollover ul 
{
    /* lists nested under hovered list items */
    left: auto;
}    
