@charset "UTF-8";
/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;  font:Arial, Helvetica, sans-serif; font-size: 11px;
}

#nav { float: right;  }
#nav ul{   background: #8dabc1; }

#nav a {
	display: block;  color: #000; text-decoration: none;
	
}

#nav a:hover {
	display: block;  color: #006182;
	
}


#nav ul a {
 color: #fff; text-decoration: none;
	
}

#nav ul a:hover {
	display: block;  color: #000;
	
}

#nav li ul a:hover {
	 background:url(/pics/sel_arrow.gif) left no-repeat; padding-left: 15px;
	
}

#nav li { /* all list items */
	float: left; border-left: 1px solid #dfdfdf; height: 29px; line-height: 29px; text-align: center; padding: 0 10px 0 10px;
	min-width: 57px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;  
	background: #8dabc1; width: 160px; 
	 text-align: left; padding: 0 10px 0 0;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav ul  li{  width: 160px; text-align: left;}

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

