
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	width: 118px;
}

#nav a {
	display: block;
	width: 118px;
	background-color:#ff6f18; color:#ffffff;
	font-size:11px; font-weight:bold;
	text-decoration: none;
}

#nav a:hover {
	color:#000000;
	width: 118px;
}

#nav li { /* all list items */
	float: left;
	width: 118px; /* width needed or else Opera goes nuts */
	padding-top:1em;
	padding-bottom:1em;
	padding-left:20px;
	border-bottom: 1px solid #ff8d46;
	background-color:#ff6f18; color:#ffffff;
	font-size:11px; font-weight:bold;
	background-image: url('arrow_white.png');
	background-repeat: no-repeat;
	background-position: 0% 50%;
}

#nav li.sfhover {
	color:#000000;
	width: 118px;

}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 118px;
	left: -999em; /* 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 right of hovered list items */
	margin: -2em 0 0 118px; /* positions submenu */
	left: auto;
}

