@charset "utf-8";
/* CSS Document */

#nav {
	list-style: none;
	width: 100%;
	height: 31px;
	font-size: 100%;
	margin: 0;
}

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

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

		#nav a {
			display: block;
			width: 8em;
			color: #fff;
			text-decoration: none;
			height: 31px;
			line-height: 31px;
			text-align: center;
		}
		
		#nav a:hover {
			background: #708B00;
		}

	#nav li.one, #nav li.one a {
		width: 5em;	
	}
	
	#nav li.two, #nav li.two a {
		width: 5em;	
	}
	
		#nav li.two li, #nav li.two li a {
			width: 150px;
			height: 25px;
			line-height: 20px;
			text-align: left;
			text-indent: 1em;
			font-size: 0.9em;
		}
	
	#nav li.three, #nav li.three a {
		width: 7em;	
	}
	
	#nav li.four, #nav li.four a {
		width: 7em;	
	}
	
	#nav li.five, #nav li.five a {
		width: 7em;	
	}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #AD2B33;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: #ccc 3px solid;
	border-top: 0;
	margin-left: -3px;
	font-size: 0.9em;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li:hover, #nav li.hover {
    position:static;
    }
