/* Begin CSS Drop Down Menu */


#menuh-container
	{
	position:inherit;
	}

#menuh
	{
	font-size:12px;
	font-family: Arial, helvetica, sans-serif;
	width:100%;
	float:left;
	}
		
#menuh a
	{
	margin:0px;
	padding:0px;
	text-align: left;
	display:block;
	font-weight:bold;
	}
	
#menuh a, #menuh a:visited	/* menu at rest */
	{
	color: #ffd89f;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	color: #cc3300;
	}	
			
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-position: right center;
	background-repeat:repeat-x;
	width:100px;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuh ul
	{
	list-style:none;
	margin:0px;
	padding:0px;
	float:left;
	/*width:100px;	/* width of all menu boxes */
	_width:0px;
	white-space:nowrap;
	margin-right:40px;
	
	padding-left:2px; 
	padding-right:2px;
	}

#menuh li
	{
    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;
	width:180px;
	white-space:normal;
	margin-top:0px;
	padding-left:4px;
	padding-right:4px;
	background-color:#313131;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	}

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

#menuh ul li a{
font-weight:bold;
min-height:15px;
padding-top:13px;
padding-bottom:13px;
}

#menuh ul ul li a{
font-weight:normal;
min-height:15px;
padding-top:5px;
padding-bottom:5px;
border-bottom:solid 1px #7e7e7e;
}

div#menuh li:hover
	{
	margin:0px;
	padding:0px;
	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;}

/* End CSS Drop Down Menu */

#menuh ul li:hover > a { color:#f48221; }