/*--------------------------menu----------------------------*/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	opacity: 0.95;
    filter: Alpha(opacity: 80);
}

#nav a.first {
	display: block;
	width: 27px;
    color:white;
    font-weight:bold;
    height:5px;
	opacity: 0.0;
    filter: Alpha(opacity: 0);
}

#nav a:hover.first {
	display: block;
	width: 27px;
    color:white;
    font-weight:bold;
    height:5px;
	opacity: 0.0;
    filter: Alpha(opacity: 0);
}

#nav a.second {
	font-family:"Tahoma", Arial, Helvetica, sans-serif;
	font-size:12px;
	display: block;
	width: 200px;
    color:white;   
    font-weight:bold;
    text-decoration:none;
}

#nav a:hover.second {
	font-family:"Tahoma", Arial, Helvetica, sans-serif;
	font-size:12px;
	display: block;
	width: 200px;
    color: #000000;    
    font-weight:bold;
    text-decoration:underline;
}

#nav li { /* all list items */
	float: left;
}

#nav li ul { /* second-level lists */
	position: absolute;
    padding:1ex;
    z-index: 5;
	background: #a70302;
	width: 200px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}