/* Begin CSS Drop Down Menu */

#menuh {
	font-size: 16px; 
	font-weight: normal; 
}
#menuh ul {
	width: 88px;
	height: 21px;
	float: left;
	margin: 1px 2px 0 0;
	padding: 0 5px 0 0;
	font-size: 14px; 
}
div#heading > div.headerlinks > div.menuh > ul {
	font-size: 11px; 
}
#menuh li {
	display: inline;
    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	background: #63d7ff;
	height: 21px;
}
#menuh ul ul {
	float: none;
	position: absolute;
	z-index: 500;
	display:none;
	padding: 12px;
	margin:-12px 0 0 -12px;
	list-style-type: none;
}
div>#menuh>ul>li>ul {	margin:-6px 0 0 -12px; } /* IE hack */
div#menuh li:hover {
	cursor:pointer;
	z-index:100;
}
#menuh a {
	display:block;
	white-space:nowrap;
	padding-right: 5px;
	padding-top: 0px;
	text-align: right;
	line-height: 21px; 
	text-decoration: none; 
	font-size: 11px; 
	font-weight: normal; 
	height: 21px;
}
#menuh a.child, #menuh a.child:visited	/* menu at rest */ {
	color: black;
	background-color: #FAFAFA;
	text-decoration:none;
	border: 1px #afafaf solid;
	height: 21px;
	width: 120px;
	text-align: left;
	padding-left: 5px;
}
div>#menuh>ul>li>ul>li>a.child { border: 0.5px #afafaf solid; } /* IE hack */
#menuh a.child:hover	/* menu at mouse-over  */ {
	background-color: #02c0fe;
}		
#menuh a.top_parent  /* attaches down-arrow to all top-parents */ {
	background-color: #63d7ff;
	color: #FFF;
	height: 21px;
}
#menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */ {
	background-color: #02c0fe;
	height: 21px;
}
#menuh a.top_parent_active  /* attaches down-arrow to all top-parents */ {
	background-color: #FFF;
	color: #63d7ff;
	height: 21px;
	border: 1px #63d7ff solid;
}
#menuh a.top_parent_active:hover  /* attaches down-arrow to all top-parents */ {
	color: #fff;
	background-color: #02c0fe;
	height: 21px;
}
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 */