/* MENU STYLES start here: */

#menu {
	position: relative;
	width: 650px;
	float: right;
	margin-left: 60px;
	top: -150px;
	z-index: 12;
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
/*	width: 5em;*/
	float: left;
}

#menu a, #menu h2 {
	font-family: 'Ubuntu Condensed', Trebuchet MS, Arial, sans-serif;
	font-size: 14px;
	display: block;
	margin: 0;
	padding: 0px 2px 2px 0px;
	/*border-width: 1px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;*/
}

#menu a {
	font-family: 'Ubuntu Condensed', Trebuchet MS, Arial, sans-serif;
	font-size: 18px;
	color: white;
	/*background: black; url(menuBar1.jpg) 0 0 repeat-x;*/
	text-decoration: none;

}

#menu a:hover {
	font-family: 'Ubuntu Condensed', Trebuchet MS, Arial, sans-serif;
	font-size: 18px;
	color: #cc0033;
	background: url(menuBar1.jpg) 0 0 repeat-y;
	text-transform: none;
	text-shadow: 0.01em 0.01em 0.01em white;
}

#menu li { /* all list items */
	float: left;
	list-style: none;
	width: 7em; /* width needed or else Opera goes nuts */
}


#menu li ul { /* second-level lists */
	position: absolute;
	list-style: none;
	background-color: rgba(19, 19, 19, .75);
	margin-left: 3px;
	width: 175px;
	padding: 5px;
	float: left;
	text-align: left;
	font-size: 14px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}


#menu li ul ul { /* third-and-above-level lists */
	margin: -2em 0 0 7em;
}

#menu li:hover ul ul, #menu li:hover ul ul ul, #menu li.sfhover ul ul, #menu li.sfhover ul ul ul {
	left: -999em;
}
 
#menu li:hover ul, #menu li li:hover ul, #menu li li li:hover ul, #menu li.sfhover ul, #menu li li.sfhover ul, #menu li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.clear { clear: both; padding-top: 10px; }

#menu ul ul ul {
	position: absolute;
	top: 0;
	left: 100%;
}

#menu ul ul {
	position: absolute;
	z-index: 500;
}

#menu ul { /* brings list to the top */
	position: absolute;
	z-index: 500;
}

