﻿.butt:hover{
	text-decoration: underline;
}
#nav, #nav ul {
	/* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font: 16px "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	height: auto;
	line-height: 35px;
	color: #FFFFFF;
	cursor: pointer;
	font-weight: bold;
	letter-spacing: -1px;
}
ul#nav,ul#nav li,ul#nav ul,ul#nav ul li{
	margin: 0;
	padding: 0 8px 0 8px;
	list-style-type: none;
}

#nav a {
	display: block;
	width: 9em;
    text-decoration:none;
}
#nav a:hover {
    text-decoration:none;
}

#nav li { /* all list items */
	float: left;
	position: relative;
	padding: 0 5px 0 5px;
	width: auto;
	text-decoration: none; /* width needed or else Opera goes nuts */
}

#nav li ul {
	/* second-level lists */
	position: absolute;
	width: 9em;
	float: none;
	display: inline;
	color: white;
	background: #000066;
	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: -28px 0 0 9.5em;
	background: #0066ff;
}

#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: -1px; 
	top: 28px;
	z-index:100;
}
