#nav, #nav ul { /* all lists */
	position: absolute;
	top: 266px; 
	left: 513px;
	padding: 0px;
	margin: 0px;
	list-style: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	line-height: 14px;
	background-color: #ffffff;
	color: #333333;
}

#nav a {
	display: block;
	text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	width: 114px; /* width needed or else Opera goes nuts */
	padding: 2px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 118px;
	top: 18px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: 0;
	background: #ffffff;
	color: #333333;
}

#nav li:hover, #nav li.sfhover {
	position: relative;
	width: 114px;
	background: #ffffff;
	color: #333333;
}