body {
	font-family: arial, helvetica, serif;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

/* All list item links unless re-defined.
   Green text on grey background */
#nav li a {
	display: block;
	width: 100px;
	text-decoration: none;
	color: #FFFFFF;
	background-color: #000000;
	left: 5px;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	}
/* All list item links when moused-over unless re-defined.
   Grey text on green background */
#nav li a:hover { 
	color: #FFFFFF;
	background-color: #2D397B;
	}	
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;	
}
#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -1100em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
/* All second-level list item links - re-defined from "#nav li a" above.
   White text on red background */
#nav li ul a {
	width: 20em;
	color: #000000;
	background-color: #CCCCCC;
	padding-top: 2px;
	border-top-width: thin;
	border-bottom-width: thin;
	border-top-style: solid;
	border-bottom-style: none;
	border-top-color: #DBDBDB;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	}
/* All second-level list item links when moused-over - re-defined from "#nav li a:hover" above.
   Pale green text on orangy-red background */	
#nav li ul a:hover {
	width: 20em;	
	color: #FFFFFF;
	background-color: #31427B;	
	}	

#content {
	clear: left;
	color: #ccc;
}

