



#nav, #nav ul { /* all lists */
font-family: 'Helvetica Neue',Aria,l Helvetica, Sans-serif;
font-size:14px;
/*padding-left:4px;*/
	list-style: none;
	background:#233a57 url(images/navbg.png) no-repeat top;
	text-align:center;
	color:#fff;
width:100%;
	/*border:1px solid red;*/
	height:26px;
	
	
	
	
}

#nav a {

	
	display: block;
	width: 10em;
	
	color:#fff;
	height:26px;
	border-right:1px solid #fff;
	text-decoration:none;
}


#nav li ul li a{
background-color:#233a57;
border-bottom:1px dashed #ccc;
border-right:none;
}


/*#nav li ul a:before{
 content:" -"; 
}*/
#nav li { /* all list items */
/*padding-left:10px;*/
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
		/*height:26px;*/
/*background: #000066;*/

}


#nav li ul { /* second-level lists */
	position: absolute;

	width: 10em;
	
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	/*font-size:12px;*/
	z-index:1000;
	}

#nav li ul ul { /* third-and-above-level lists */
	margin: -3em 0 0 10em;
	/*border-bottom:1px dashed #fff;*/

}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
	z-index:1000;
}

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



