#nav {
	float: right;
	padding: 50px 0 0 0;
	margin: 0;
	font-family: Tahoma;
	font-weight: bold;
	font-size: 12px;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	background-color: #dfdfdf;
}

#nav a {
	display: block;
	background-color: #dfdfdf;
	color: #0078ae;
	padding: 10px 20px;
	text-decoration: none;
}
#nav a.current, #nav a:hover {
	background-color: #0078ae;
	color: white;
}

#nav li { /* all list items */
	float: left;
	padding: 0 1px;
}
#nav li li {
	clear: left;
	
	width: 20em;
}

#nav li li a {
	padding: 5px 10px;
	margin:0;
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; 
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -2em 0 0 -20em;
	width: 20em;
}

#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;
}
