#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
 
#nav a {
	display: block;
	width: 125px;
	background-color: #911F39;
	color: #FFFFFF;
	text-decoration: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	text-align: center;
	font-size: 11px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
#nav  .subdrop a{
	background-color: #C62B4E;
}
#nav  .subdrop a:hover, #nav a:hover{
	background-color: #FF0033;
 }
#nav li { /* all list items */
	float: left;
	width: 105px; /* width needed or else Opera goes nuts */

}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 125px;
	left: -999em;  /*using left instead of display to hide menus because display: none isn't read by screen readers */
	border: 2px solid #D5C4AA;
	background-color: #911F39;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 100px;
		border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #993300;
}

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

#menu     {
	color: black;
 	font-family: sans-serif;
	visibility: visible;
	display: block;
	position: absolute;
	z-index: 2000;
	top: 201px;
	left: 24px;
	border-top: 2px solid #fc3;
	border-right: 1px solid #3d0000;
	border-bottom: 3px solid #926b3f;
	width: 753px;
	background-color: #911F39;
}
