
/* MENU STYLES */

#navWrapper {
	border-top: 1px solid #ffffff;
	padding: 0 0 0 0;
	z-index: 1;
	background-color: #640126;
}

#nav {
	height: 32px;
}

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

#nav a {
	display: block;
	font-size: 12px;
	font-family: Verdana;
	text-decoration: none;
	text-align: center;
	letter-spacing: 6px;
	width: auto;
	color: #ffffff;
	padding: 10px 0px 10px 0px;
	border-right: 1px solid #ffffff;
}


#nav a:hover, active {
	background-color: #360015;
}

#nav a.selected {
	background-color: #360015; 
}

#nav li { /* main/all list items */
	float: left;
	/*width: 10em;*//* width needed or else Opera goes nuts */
	width: 184px;
}


#nav li ul { /* second-level lists */
	margin: 0; 
	padding: 0 0 0 0; /* matches 1st level item offset*/
	position: absolute;
	width: 184px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #640126;
	border-width: 0 0 0 0;
}

* html #nav li ul { /* second-level lists */
	margin-top: 0px;
	border-width: 1px;
}


#nav li ul li { /* second-level list items */

}


#nav li ul li.flyout { /* second-level list items */
	
}

#nav li ul li.flyout:hover { /* second-level list items */
	background-color: #000000;
}

#nav li ul li a { /* second-level links */
	font-size: 12px;
	font-family: Verdana;
	text-decoration: none;
	text-align: center;
	letter-spacing: 2px;
	padding: 10px 0 10px 0;
	width: auto;
	background: none;
	border-bottom: 1px solid #ffffff;
}

#nav li ul li:first-child a, #nav li ul li:first-child a:hover {
	border-top:0px;
}

#nav li ul li a.first, #nav li ul li a.first:hover { /* required since ie6 doesnt suppor child pseudo class */
	border-top:0px;
}

*html #nav li ul li a { /* second-level links */
	width: auto;
}

#nav li ul a:hover { /* second-level list items */
	background-color: #360015;
}

#nav li ul li a.flyout {
	background: url(../images/arrow_closed.gif) no-repeat;
	background-position: 96px;
}

#nav li ul li a.flyout:hover {
	background: url(../images/arrow_closed.gif) no-repeat;
	background-position: 96px;	
	background-color: #e6e6e6;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -23px 0 0 120px;
	border-width: 1px;
	background-color: #e8f2fc;
}

*html #nav li ul ul {
	margin: -14px 0 0 110px;
}

#nav li ul ul li:hover { /* third-and-above-level lists */
	background: #adcaeb;
}

#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;
}


