#nav, #nav ul { /* all lists */
	padding: 5px 0px 0px 0px;
	margin: 0px;
	list-style: none;
	line-height: 100%;
	}

#nav a {
	display: block;
	width: 100%;
	color: #039;
	background-color: transparent;
	text-align: center;
	padding: 2px 0px 2px 0px;
}

#nav a:hover, #nav a.sfhover {
	color: #fff;
	background: #f90;
}
#nav li { /* all list items */
	float: left;
	width: 12em; /* width needed or else Opera goes nuts */
	list-style: none;
}

#nav li ul { /* second-level lists default */
	position: absolute;
	background: #fff;
	color: #f90;
	margin-top: 0px;
	padding-top: 10px;
	border: 1px solid #FCECD4;
	width: 12em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul a { /* added by Germain for drop down menu style */
	font-size: .95em;
	text-align: left;
	padding-bottom: 10px;
}

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