/* link text colors */

a.aMenu{
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
	padding-top: 2px;
}

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

a.aSubMenu{
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	padding-top: 4px;
	font-weight: bold;
}

.tdMenu{
	background-color: #8E1D06;
	border-bottom: #FFF 1px solid;
	min-height: 18px;
	height: 22px;
}

/* 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: 180px;
	text-align: center;
}

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

	height: 24px;
	border-left: #FFF 1px solid;
}

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

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

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

