@charset "UTF-8";
/* CSS Document */

/****************************/
/*		   MAIN MENU		*/	
/****************************/	
#mainMenu{
	background:url(../images/bg-nav.gif) repeat-x;
	height:40px;
	width:913px;
	margin:10px 0 0;
	padding:1px 0 0;
	font:17px Arial, Helvetica, sans-serif;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	text-decoration:none;
	color:#FFF;
	padding:10px 38px 13px 38px;
}
#nav a:hover{
	color:#CBA1D9;
	background-color:#672771;
}

#nav li { /* all list items */
	float: left;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 150px;
	left: -999em;/* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index:1;
	padding:0;
	margin:0;
	color:#FFF;
}

#nav li ul a {
	width: 150px;
	font-size:14px;
	line-height:15px;
	background-color: #943195;
}
#nav li ul a:hover {
	background-image: none;	
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -38px 0 0 226px;
}

#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;
}

