/* ro */

a.aMenu{
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
	padding-top: 4px;
	padding-bottom: 4px;
}

a.aSubMenu{
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
	padding-top: 8px;
	padding-bottom: 4px;
}

.tdMenu{
	background-color: #003876;
	border-bottom: #FFF 1px solid;
	min-height: 20px;
	height: 20px;
}

/* block styles and lists */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	width: 120px;
	text-align: center;
}

#nav li { /* all list items */
	float: left;
	width: 120px; /* width needed or else Opera goes nuts */
	background-color: #003876;
	border-left: #FFF 1px solid;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color: #003876;
	width: 120px;
	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: #003876;
	border: 0px;
}

#nav li:hover, #nav li.sfhover {
	background: #014897;
}


