#nav, #nav ul { /* all lists */
	padding: 0;
	list-style: none;
	line-height: 0;
	margin: 0;
}
#nav a {
	display: block;
	text-decoration: none;
	color: #777;
	font-family: verdana;
	font-size: 11px;
	text-align: left;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-right: 10px;
	padding-left: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #d2d3d5;
	border-right-color: #d2d3d5;
	border-bottom-color: #d2d3d5;
	border-left-color: #d2d3d5;
}
#nav li a:hover {
	background-image: url(../images/navover.jpg);
	background-repeat: repeat-x;
	text-align: center;
}

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

#nav li li{ /* all list items */
	width: 160px; /* width needed or else Opera goes nuts */
	text-align: left;	
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 160px;
	margin-left: -1000em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #e7e8e8;
	text-align: left;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 -1000em;
	text-align: left;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	margin-left: -1000em;
	text-align: left;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	margin-left: 0;
	text-align: left;
}

#nav li li a:hover {
	color: #fff;
	background-color: #a70910;
	background-image: none;
	text-align: left;
}
