/* Begin CSS Drop Down Menu */


#menuh-container
	{
	margin: 0;
	z-index:100;
	}

#menuh
	{
	font-size: small;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0 auto;
	padding: 0;
	width:99%;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0;
	font-family: Georgia, "Times New Roman", Times, serif;
	}
	
#menuh a, #menuh a:visited	/* menu at rest */
	{
		display:block;
		width:111px;
		height:22px;
		text-align:center;
		padding-top:8px;
		text-decoration:none;
		font-size:12px;
		color:#000;
		background-image: url(css_images/nav_bg1.jpg);
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	color: black;
	background-image: url(css_images/nav_bg2.jpg);
	}	
			
#menuh a.top_parent,   /* attaches down-arrow to all top-parents */
	{
		display:block;
		width:111px;
		height:22px;
		text-align:center;
		padding-top:8px;
		text-decoration:none;
		font-size:12px;
		color:#000;
		background-image: url(css_images/nav_bg1.jpg);
		font-family: Georgia, "Times New Roman", Times, serif;
		font-weight: normal;
	}
#menuh a.top_parent:hover
	{
		background-image: url(css_images/nav_bg2.jpg);
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	background-color:#0099CC;
	}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	}

#menuh li
	{
	position:relative;
    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	}


#menuh ul ul li a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	width: 200px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	}

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 */
