/* Begin CSS Drop Down Menu */

#menuh-container
	{
	margin-right: auto;
	margin-left: auto;
	}

#menuh
	{
	font-size: 12px;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	width:100%;
	float:left;
	letter-spacing: -1px;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0;
	line-height: 20px;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #666666;
	text-decoration:none;
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	background-color: #001958;
	text-decoration:none;
	}	
	
#menuh a.top_parent   /* attaches down-arrow to all top-parents */
	{
	background-image: url(../img/menu_p.png);
	background-position: right center;
	background-repeat: no-repeat;
	height:19px;
	}
#menuh a.top_parent:hover{
background-image:url(../img/menu_h.png);

}	
#menuh a.top_parent:active{
background-image:url(../img/menu_h.png);

}	
#menuh a.parent  	/* attaches side-arrow to all parents */
	{
	background-position: right center;
	background-repeat: no-repeat;
	background-image: url(navdown_white.gif);
	color: #666666;
	background-color: #FFFFFF;
	}
#menuh a.parent:hover{
	color: #FFFFFF;
	background-color: #001958;
}
#menuh ul
	{
	list-style:none;
	margin:0;
	float:left;	/* width of all menu boxes */
	height: 19px;
	padding-top: 3px;
	padding-left: 2px;	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	width: 110px;
	}

#menuh li
	{
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	padding-top:0px;
	}

#menuh ul ul
	{
	position:absolute;
	z-index:300;
	top:auto;
	display:none;
	margin-top: -8px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -1em;
	padding: 1em;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	}

div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	color: white;	
	}

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 */
