﻿#menuh
	{
	font-size: small;
	font-family: arial, helvetica, sans-serif;
	font-weight: bold;
	float:left;
	width:1000px;
	background-color: #84007b;
	padding-top: 1em;
	margin:0px;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	margin:0;
	padding: 0.2em;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #e7d6bc;
	background-color: #84007b;
	text-decoration:none;
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	color: #000000;
	background-color: #84007b;
	text-decoration:none;
	}	
	
#menuh ul
	{
	width:142px;	/* width of all menu boxes */
	/* 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 */
	list-style:none;
	margin:-20px auto 0px auto;
	padding:0;
	padding-right:0px;
	float:left;
	margin-bottom:-7px;
	}

#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:0px;
	margin:0px;
	}

#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;}


#menuh ul ul li{
	margin:0px; padding:0px; 
}
#menuh ul ul li a{
	text-align:left; margin:0px; padding-left:2px;
}


/* End CSS Drop Down Menu */