


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 141px;
}

#nav li { /* all list items */
	float: left;
	width: 141px; /* width needed or else Opera goes nuts */
	padding-right: 2px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #727272;
	width: 141px;
	height: 170px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul a { /* second-level lists */
	color: white;
	text-decoration: underline;
	padding-left: 5px;
	padding-top: 6px;
	line-height: 140%;
}

#nav li ul a:hover { /* second-level lists */
	color: #ccc;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


div.leftmenuline a {
	display: block;
	height: 28px;
	color: white;
	text-align: left;
	vertical-align: middle;
	padding-left: 10px;
	line-height: 200%;
	background-image: url(../gfx/leftmenu-dark.gif);
	background-repeat: repeat-x;
	text-decoration: none;
}

div.leftmenuline a:hover {
	background-image: url(../gfx/leftmenu-red.gif);
	text-decoration: none;
}