#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
	
#nav a {
	border-bottom: none;
	color: #000;
	text-decoration: none;
	display: block;
	padding: 3px 5px 3px 5px; 
}

#nav a:hover {
	border-bottom: none;
	text-decoration: none;
	background: #666;
	color: #fff;
}

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

#nav li ul { /* second-level lists */
	position: absolute;
	background: #eeecbb;
	border: 1px solid #666;
	width: 12em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul.parent-6, #nav ul.parent-6 li { /* for staff page, narrower drop down */
	width: 9em;
}

#nav ul li { /* make the width of the li grey all the way across on hover */
	width: 12em;
}


#nav li ul a {
	/* width: 12em; */
}

#nav li:hover, #nav li.sfhover {
	background : #eeecbb;
}

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

/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#nav li {width: auto;}

.clearit {			/* clear the nav div */
        clear: both;
        height: 0;
        line-height: 0.0;
        font-size: 0;
}
