#nav {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	padding-left: 225px;
}

#nav ul { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}


#nav a {
	display: block;
	width: auto;
	padding-top:4px;
	padding-bottom:6px;
	padding-left:13px;
	padding-right:13px;
	font-family:verdana;
	font-size:11px;
	color:#666666;
	text-decoration:none;
}

#nav a:hover {
	background-color:#003366;
	color:#ffffff;
	text-decoration:none;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
}

#nav li li{ /* all list items */
	display:block;
	clear:both;
	width: 150px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #eeeeee;
	width: auto;
	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: -15px 0 0 110px;
}

#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;
}
