#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 124px;
	margin-left: 0px;
}

#nav li { /* all list items */
	float: left;
	width: 124px; /* width needed or else Opera goes nuts */
}

#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 */
}

#nav li a {
	font-size:11px;
	font-face: arial narrow;
	width: 9.6em;
	display : block;
	color : #B3B19C;
	font-weight : none;
	line-height: 16px;
	text-decoration : none;
	background-color : 	white;
	border : 1px solid #eee;
	border-top: none;
	padding : 0.1em 0 0 0.5em;
	margin-left: 1.25em;
	-moz-opacity: .95;
	filter: alpha(opacity=95);
}


#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

