#nav {
	clear:both;
	height:24px;
	width:100%;
	border-top:10px solid #fff;
	}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	background:#0a58a6;
}

#nav a {
	display: block;
	width: 100px;
	width:auto;
	line-height:24px;
	font-weight:normal;
	font-size:8pt;
	text-decoration:none;
	padding:0 0 0 10px;
	border-right: 1px solid #85acd3;
}
#nav a span {
	padding-right: 10px;
	
}
#nav a * { color:#fff; }

#nav a:hover {
	background:#FE370E;
	background:#85acd3;
	}

#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
	width:auto;
	/*margin-right:10px;*/
}

#nav li li {
	float:none;
	width:170px;
	margin:0;
	}
#nav li li a {
	width:170px;
	}

#nav li ul { /* second-level lists */
	position: absolute;
	z-index:100;
	width: 180px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	border: 1px solid white;
	margin: -20px 0 0 170px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;*/
}

#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;
}

