#nav {margin-top:15px;}
#nav, #nav ul { /* all lists */
clear:both;
	padding: 0;
	margin: 0;
	list-style: none;
	z-index:55;
}

#nav a {
	display: block;
	width: 10em;
}

#nav li {float:left;color:#848484;width: 119px; height:36px;background-color:#eee;  margin-right:3px;border-bottom:5px solid #7f8bb1;}

#nav li a { /* all list items */
	float: left;
	 /* width needed or else Opera goes nuts */
	 height:16px;
	 width: 110px;
	 color:#848484;
	 font-size:11px;
	font-weight:bold;	
	display:block; 
	padding-top:20px;
	padding-left:9px;
}
#nav li a:hover {background-color:#7f8bb1; color:white;}
#nav li a.Highlight  {background-color:#a7b9ed; color:white; border-bottom:#a7b9ed;}



#nav li ul { /* second-level lists */
display:block;
clear:left;
	position: absolute;
	width: auto;
	left:-5000px;
	margin-top:41px;
	
	 /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	clear:left;
	z-index:5000;
}



#nav li ul li {clear:left;color:#1f5394;width: auto; height:25px;background-color:#eee; border-bottom:0px solid #1f5394; margin-right:0px;}

#nav li ul li a { /* all list items */
	float: left;
	 /* width needed or else Opera goes nuts */
	 height:20px;
	 width:150px;
	 font-size:10px;
	display:block; 
	padding:3px 0 0 5px;
	font-weight:normal;
	z-index:5000;
	
}
#nav li ul li a:hover {background:white; color:#1F5394;}

#nav li:hover, #nav li.hover {
    position: static;
}
