@charset "utf-8";
/* CSS Document */

#nav {
	font-size: 0.9em;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 10em;
	text-align: center;
	color: #fff;
	text-decoration: none;
	height: 30px;
	line-height: 30px;
	
}

#nav a:hover {
	background: #fdbf2f;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
}

	#nav li.one, #nav li.one a {
		width: 5em;
	}
	
	#nav li.two, #nav li.two a {
		width: 6em;
	}
	
	#nav li.three, #nav li.three a {
		width: 7em;
	}
	
	#nav li.four, #nav li.four a {
		width: 10em;
	}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #6f3c82;
	width: 22em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	font-size: 0.8em;
}

	#nav li.two ul li, #nav li.two ul li a, #nav li.four ul li, #nav li.four ul li a {
		width: 22em;
		text-align: left;
		text-indent: 0.5em;
		height: 20px;
		line-height: 20px;
	}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
