#nav, #nav ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	line-height: 1;
	z-index: 99;
}

#nav a {
	display: block;
	color: #284A63;
	padding: 4px 10px 5px 5px;
	font-weight: normal;
	font-size: 11px;
	text-decoration: none;
}
#nav li ul li a {
	width: 120px;
	font-weight: normal;
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
	width: 142px; /* ie5win fix begins */
	voice-family: "\"}\"";
	voice-family: inherit;
	width: 120px;
}	
html>body #nav li ul li a  {
	width: 120px; /* ie5win fix ends */
}

#nav li { /* all list items */
	float: left;  
	/* width needed or else Opera goes nuts */
}
#nav a:hover {
	text-decoration:underline;
}
#nav a span {
	padding: 0px 8px 0px 0px;
	display: none; /* ie5win fix begins */
	voice-family: "\"}\"";
	voice-family: inherit;
	display: inline;
}
html>body #nav a span  {
	display: inline; /* ie5win fix ends */
}

#nav li ul { /* second-level lists */
  margin:0px 0px 0px 0px;
  border-top:0px;
	position: absolute;
	background: #E3885B;
	width: 120px; /* 137 */
	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 */
	margin: -21px 0px 0px 119px;  /* -21px 0px 0px 136px*/
}

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

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