#menuh
	{
	position:absolute;
	margin:0 0 0 0; 
	padding-left:0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	width:100%;
	height:24px;
	float:left;
	z-index:100;
	/*margin-top: .1em;*/
	}
		
#menuh a
	{
	text-align: left;
	display:block;
	border: none;
	white-space:nowrap;
	margin:0;
	padding: 0.2em;
	}
	
#menuh a, #menuh a:visited	/* menu at rest */
	{
	color: #003366;
	background-color: #CCCCCC;
	border:1px dotted #666666;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	color: #666699;
	}
			
#menuh a.top_parent, #menuh a.top_parent:hover  /* makes top-level menu items on a transparent background */
	{
	/*background-image: url(navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;*/
	background-color:transparent;
	border-style:none;
	line-height:1.2em;
	text-align:center;
	margin-top:2px;
	margin-bottom:0px;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	/*background-image: url(nav_blue.gif);
	background-position: right center;
	background-repeat: no-repeat;*/
	}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:13em;	/* width of all top-level menu boxes */
	}

#menuh li
	{
	position:relative;
    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: top; /* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	text-align:left;
	width:15em;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	width:16em;
	}

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;}