
/* link text colors */

a.aMenu{
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
}

a.aMenu:hover{
	color: #fff;
}

a.aSubMenu{
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.tdMenu{
	background-color: #9b1b1e;
	border-bottom: #FFF 1px solid;
	min-height: 18px;
	height: 18px;
}

/* block styles and lists */

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

#nav a {
	display: block;
	width: 160px;
	text-align: center;
}

#nav li { /* all list items */
	float: left;
	width: 160px; /* width needed or else Opera goes nuts */
	background-color: #9b1b1e;
}

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

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	background-color: #ad181b;
	border-right: #CCC 1px solid;
}

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