#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	text-align:center;
}
#nav li { /* all list items */
	float: left;
	/*width: 11em;*/ /* width needed or else Opera goes nuts */
	width: 166.8px;
}
#nav li a {
	width: 152.8px;
	/*width: 11em;*/
	/*width : 10em;*/
	display : block;
	color : white;
	font-weight : bold;
	font-size: 15px;
	text-decoration : none;
	background-color : navy;
	border : 1px solid black;
	padding : 4px 0.5em;
	}
#nav li a:hover {
	color : white;
	background-color : #0000EF;
	}
#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	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: auto;
}
#content {
	clear: left;
	color: #ccc;
}
