.menu{
font-family: Arial, Helvetica, sans-serif;
font-weight:normal;
text-transform:uppercase;
font-size:11px;
line-height:11px;
font-weight:400;
color:#1d1d1d;
background: #e6e6e6; /*background of menu bar (default state)*/
}

#navlist, #navlist ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
float:left;
}

#navlist a {
color:#1d1d1d;
display: block;
padding:5px 9px;
text-decoration:none;
border-right: 1px solid #fff;
}

#navlist li:hover, #navlist li.hover {  
position: static;  
}  

#navlist ul li a {
width: 11em;
color:#1d1d1d;
background: #e6e6e6;
border-top-width: 0;
border-bottom: 1px solid #fff;
text-decoration:none;
}

#navlist ul li a:hover{
background: #e6e6e6; /*background of menu items during onmouseover (hover state)*/
color: #6b6c6e;

}

#navlist li { /* all list items */
	float: left;
	 /*width: 11em; width needed or else Opera goes nuts */;
padding:0;
}

#navlist li ul { /* second-level lists */
	position: absolute;
	background: #e6e6e6;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#navlist li ul ul { /* third-and-above-level lists */
	margin: -1.5em 0 0 12em;
}

#navlist li:hover ul ul, #navlist li.sfhover ul ul {
	left: -999em;
}

#navlist li:hover ul, #navlist li li:hover ul, #navlist li.sfhover ul, #navlist li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;

}
