#nav {margin-top:15px;}
#nav, #nav ul { /* all lists */
	clear:both;
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	width: 10em;
	text-decoration: none;
}

#nav li {
	float:left;
	color:#848484;
	width: 119px; 
	height:36px;
	background-color:#EEEEEE; 
	border-bottom:5px solid #92A0C7; 
	margin-right:3px;}

#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:#92A0C7; color:white;}
#nav li a.Highlight  {background-color:#92A0C7; color:white;}



#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 { color:white;}


#nav li:hover, #nav li.hover {
    position: static;
}
