/* Begin CSS Drop Down Menu ---------------------------------
Author: Sperling Corporation
-------------------------------------------------------------*/

#menuh-container
	{
	position: absolute;		
	top: 60px;
	left: 240px;
	}

#menuh
	{
	width:100%;
	float:left;
	margin:1.1em;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0;
	padding: 0.4em 1.1em 0.4em 1.1em;
	text-transform: uppercase;
	}
	
/* menu at rest */
#menuh a:link, #menuh a:visited, #menuh a:active	
{
	color: #069;
	text-decoration:none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFF;
}

/* menu at mouse-over  */ 	
#menuh a:hover	{
	color: #FFF;
	background-color: #069;
	text-decoration:none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFF;
}	

/* attaches down-arrow to all top-parents */	
#menuh a.top_parent:hover  {
	background-position: right center;
	background-repeat: no-repeat;
	color: #FFF;
}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */ {
	background-position: right center;
	background-repeat: no-repeat;
	color: #333;
}

#menuh a.child, #menuh a.child:hover
{
	text-align: left;
	text-transform: none;
	background-color: #CCC;
	color: #333;
}

#menuh a.child:hover
{
	background-color: #999;
	color: #FFF;
}

#menuh ul {
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width: auto;	/* width of all menu boxes */
}

#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: 1em;
	margin:-1em 0 0 -1em;
	width:14em;	/* width of all menu boxes */
	text-align: left;
}

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

div#menuh li:hover {
	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 */
