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

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

#nav a {
	display: block;
	font-family:garamond;
	color:#E9E9E9;
	font-size:14px;
	text-decoration:none;
	font-weight:normal;
}

#nav ul li a {

}

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

#nav li ul { /* second-level lists */
	position: absolute;
	width:13.5em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-image:url(../images/dropdown_bg.png);
	background-position:bottom left;
}

/* THIS IS THE KEY */
#nav li ul li {
/*	float:none;*/
}

#nav li ul li a {
	width: 14.9em;
	height:20px;
	margin-left:5px;
}

#nav li ul li a:hover {
	color:#999999;
	text-decoration:underline;
}

#nav li ul ul { /* third-and-above-level lists */
	width:13.5em;
	margin: -1.2em 0 0 13em;
}

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

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

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