
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	text-align: left;
	margin-top: -2px;
}

#nav a {
	display: block;
	width: 120px;
	font: 14px Garamond, Georgia, "Times New Roman", Times, serif;
	color: #000000;
	font-variant: small-caps;
	line-height:20px;
	height:100%;
	color:#333;
	text-align: center;
	text-decoration:none;
}
#nav ul li a {
	display: block;
	width: 166px;
	height:100%;
	color:#333;
	text-align: center;
	text-decoration:none;
}

#nav li { /* all list items */
	float: left;
	width: 120px; /* width needed or else Opera goes nuts */

}
#nav ul li a:hover { /* all list items */
	background: #ccc;
	text-decoration: underline;

}


#nav li ul { /* second-level lists */
	position: absolute;
	background: #efefef;
	width: 165px;
	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: -1em 0 0 164px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
	font: 14px Garamond, Georgia, "Times New Roman", Times, serif;

}

#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;
}