@charset "UTF-8";

/* CSS Drop-Down Menu */
#menuh-container {
	position:absolute;		
	padding:0px;
}
	
#menuh {
	font:normal 11px Arial, Helvetica, sans-serif;
	letter-spacing:1px;
	width:100%;
	padding:100px 0 0 5px;
	float:left;
	margin:0.2em;
	/* margin-top:1em; */
}
		
#menuh a {
	text-align: center;
	display:block;
	border-width: 0px;
	white-space:nowrap;
	margin:0;
	padding: 0.3em .1em;
}
	
#menuh a, #menuh a:visited { /* menu at rest */
	color: white;
	text-decoration:none;
}
	
#menuh a:hover { /* menu at mouse-over  */
	color: #FFF;
}	
			
#menuh a.top_parent, #menuh a.top_parent:hover {
	font-size:11px;
	background-color: none;
	text-transform:uppercase;
	line-height:1em;
}
#menuh a.top_parent:hover {
	color:#CCCCCC;
}
	
#menuh a.child {
	background-color: #380303;
	color:#FFF;
	width: 14em;
	border-width: 0px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
}
	
#menuh a.child:hover {
	background-color: #A79581;
	color:#000000;
	width: 14em;
	border-width: 0px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
}
	
#menuh a.parent {	/* attaches side-arrow to all parents */
	background-image: url(../images/nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	background-color: #380303;
	color:#FFF;
	width: 14em;
	border-width: 0px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
}

 #menuh a.parent:hover {
	background-image: url(../images/nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	width: 14em;
	background-color: #A79581;
	color:#000000;
	border-width: 0px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
}

#menuh ul {
	list-style:none;
	margin:0;
	float:left;
	border-right:1px solid #FFFFFF;
	padding:0 15px;	
}

#menuh ul:last-child {
	border:0;
}

#menuh li {
	position:relative;
    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
}

#menuh ul ul {
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding-top: 1em;
	padding-left: 1em;
	margin:-.5em 0 0 -6em;
	border-right:0;
}

#menuh ul ul ul {
	top:0;
	left:100%;
	margin:0 0 0 -1em;
	padding:0;
}

div#menuh li:hover {
	font-weight:normal;
	cursor:pointer;
	z-index:100;
}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

#menuh li#selected {
	border:22px solid #white;
	padding:0;
	border:0;
	color:#452120;
}

#menuh li#selected a.top_parent {
}