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

#nav a {
	color: #71634E;
	text-decoration: none;
	display: block;
	width: auto;
	height: 22px;
	font-size: 12px;
	font-weight: bold;
}

#nav a:hover {
	background: url(/image/fixed/underline.png) repeat-x bottom left;
}

#nav .open {
	background: url(/image/fixed/underline.png) repeat-x bottom left;
	}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	height: 22px;
	margin-right: 25px;
}

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

#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;
}

#subnav {
	list-style-image: url(/image/fixed/list-bullit.png);
	list-style-type: square;
	}

#subnav ul li ul{
	padding: 0;
	margin: 0;
	line-height: 15px;
	}

#subnav a {
	text-decoration: none;
	}

#subnav a:hover {
	color: #D1932A;
	font-weight: bold;
	}

#subnav ul {
	display:none;
	}

#subnav li.open ul li a {
	color: #D1932A;
	font-weight: bold;
	}

#subnav li.open ul, #subnav li.active ul {
	display:block;
	color: #D1932A;
	}
