#menuHeader, #menuHeader ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#menuHeader {
	position:relative;
	/*right:17px;
	bottom:20px;*/
	top:-23px;
	left:500px;
	margin:0;
	padding:4px;
	background:url(/images/bg-menuheader.png);
	z-index:1000;
	height:15px;
	width:475px;
}
#menuHeader li a
{
	color: #fff;
	display: block;
	float: left;
	font: normal 12px/15px "Arial", sans-serif;
	height:20px;
	padding: 0 8px;
	font-weight:bold;
	text-decoration: none;
	z-index:1000;
	width: auto;
}
#menuHeader li a:hover {
	color:#BC95C4;
	}
#menuHeader li
{
	border-right: 1px solid #fff;
	float: left;
	height: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index:1000;
	width: auto; /* width needed or else Opera goes nuts */
}
#menuHeader li li { /* all list items */
	float: none;
	width: auto; /* width needed or else Opera goes nuts */
	border-right:none;
	border-top:solid 1px #fff;
	height:20px;
	z-index:1000;
}
#menuHeader li ul { /* second-level lists */
	position: absolute;
	background: #A37999;
	width: auto;
	top:23px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index:1000;
}
#menuHeader li ul a {
	line-height:20px;
}

#menuHeader li:hover ul, #menuHeader li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

