#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;

	list-style: none;
	line-height: 1;
}

#nav a {color: white ;
background-color: #c60021 ;
border: 1px outset #ff8080 ;
font: 12pt verdana, arial;
	display: block;

text-decoration: none ;
	
	width: 8em;
}

#nav li { /* all list items */
	float: left;
        font: 12pt verdana, arial;
    	width: 8em; 
}

#nav li ul { /* second-level lists */
	position: absolute;
        font: 12pt verdana, arial;
	width: 8em;

	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 { 
color: #000 ;	
left: auto;
}

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