#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0px;
	margin-left:0px;
	list-style: none;
	line-height: 1;
	font-size:14px;
}

#nav a, #nav h2 {
font: bold arial, helvetica, sans-serif;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
font-size:100%;
padding: 2px 0px 2px 0px;
}

#nav h2 {
color:#003399;
background:#999999;
text-transform: uppercase;
text-align:center;
}

#nav a {
color:#003399;
background:#CCCCCC;
text-decoration: none;
display: block;
width: 9em;
}


#nav li { /* all list items */
	float: left;
	width: 9em; /* width needed or else Opera goes nuts */
}


#nav li li a:hover {
	color: #a00;
	background: #fff;
}


#nav li ul { /* second-level lists */
	position: absolute;
	border:#FF0000;
	width: 9em;
	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 0em 0 9em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;

}

#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;
}

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