@charset "UTF-8";
/* CSS Document */

/*------------------------------------------------------------------------------	
HORIZONTAL MENU
------------------------------------------------------------------------------*/		

/*CONTROLS ALL LISTS*/ 
#menuh { 
	float: left;
	display: inline;
	list-style: none;
}

/*----- BELOW THREE DIVS CONTROL ALL LIST ITEMS -----*/

#menuh li { float: left; }

#menuh li a {
	display: block;
	font-family: "Times New Roman", Times, serif;
	color: #ffffff;
	font-weight: normal;
	font-size: 10pt;
	text-transform: capitalize;
	font-variant: small-caps;
	padding: 5px 5px 5px 5px;   /*set vert spacing between li's and the main UL... */ 
	letter-spacing: .1em;        /*...flydown from bottom of the top ul, and left and right... */        
	text-decoration: none;     /*...distances between edges of type and left of li */
}

#menuh li a:hover {
	color: #ccc8c9;
	border-top: 2px solid #ccc8c9;
	padding: 3px 5px 5px 5px;
	/*background-color: #892a3d;*/
}

#menuh li a.current_page { 
	color: #fff;
	border-top: 2px solid #ccc8c9;
	padding: 3px 5px 5px 5px;
	/* background-color: #892a3d; */
}

/*CONTROLS SECOND-LEVEL LIST ITEMS OR FLY-DOWNS*/ 

#menuh li ul {  
	position: absolute;
	margin: 0 0 0 0;
	padding: 0;
	left: -999em;
	z-index: 1;
}

#menuh ul {
	float: left;
	padding: 0;
	list-style: none;
	width: 140px; /* can be anything AFAIK, but it has to be there*/
}

#menuh ul li { float: left; margin: 1px 0 0 0; padding: 0; }

#menuh ul li a {
	display: block;
	padding: 3px 5px 3px 5px;
	background-color: #F2F1EC;
	width: 120px; /* master width minus left & right padding */
}

#menuh ul li a:hover {
	color: #892a3d;
}

/*CONTROLS THIRD-AND ABOVE LEVEL LIST ITEMS*/
#menuh li ul li ul {   
	margin: -22px 0 0 140px; /* the -top px vertically positions the right flyout */
}									 /*...and the left margin is ul-li-a horiz spacing+width+1/0 */

#menuh li ul li ul li a {   
	/* background-color: #F2F1EC; */
}
#menuh li ul li ul li a:hover {   
	color: #ffffff;
	/* background-color: #F2F1EC;  */
}

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