@charset "utf-8";
/* CSS Document */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	z-index:1000;
}

#nav a.top {
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 12px;
	font-size-adjust: .52;
	display: block;
	width: 100%;
	text-decoration: none;
	height: 16px;
	padding: 2px 4px 0px 4px;
	margin: 0px;
	z-index:1000;
}

#nav a.top:hover {
	background-color: #330000;
	color: #fff;
	width: 95%;
	z-index:1000;
}

#nav a.sub {
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 12px;
	font-size-adjust: .52;
	display: block;
	width: 95%;
	text-decoration: none;
	padding: 4px;
	z-index:1000;
}

#nav a.sub:hover {
	background-color: #fff;
	color: #333;
	font-weight: bold;
	width: 95%;
	z-index:1000;
}

#nav li { /* all list items */
	float: left;
	width: 100%; /* width needed or else Opera goes nuts */
	z-index:1000;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #996633;
	width: 10em;
	padding: 4px;
	margin-left: -1000em; /* 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 0 0 -1000em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	margin-left: -1000em;
}

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

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

/* extra positioning rules for limited noscript keyboard accessibility */
#nav li a:focus + ul { margin-left: 0; }
#nav li li a:focus + ul { margin-left: 1010em; }
#nav li li a:focus { margin-left:1000em; width:95%; }
#nav li li li a:focus {margin-left: 2010em; width: 95%; }
#nav li:hover a:focus, #nav li.sfhover a.sffocus { margin-left: 0; }
#nav li li:hover a:focus + ul, #nav li li.sfhover a.sffocus + ul { margin-left: 10em; }