﻿#menuh
	{
	position:relative;
	top: -5px;
	border:medium;
	border-color: black;
	list-style-type: none;
	height: 30px;
	width: 400px;
	margin: 0 auto 0 auto;
	font-size:18px;
	font-weight:normal;
	vertical-align:middle;
	}
		
#menuh a
	{
	text-decoration: none; 
	margin: 0px;
	padding: 10px;
	padding-top:1px;
	padding-bottom:1px;
	display: block;
	/* width: 115px; */
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color:lightgray;
	background-color: black;
	text-decoration:none;
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	color: lightgray;
	background-color: black;
	text-decoration:none;
	font-weight:bold;
	}	

/* attaches down-arrow to all top-parents */
/*
#menuh a.top-parent, #menuh a.top-parent:hover  
	{
	background-image: url(../images/menu-arrow-white-down.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
*/

/* attaches side-arrow to all parents */
/*
#menuh a.parent, #menuh a.parent:hover 	
	{
	background-image: url(../images/menu-arrow-white-right.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
*/

#menuh ul
	{
	/*
	position:relative;	
	vertical-align: center;
	list-style-type: none;
	width: 100%;
	margin-left: 10px;
	padding: 0;
	font-weight: bold;
	*/
	position:relative;	
	vertical-align: center;
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	/*width:9em;*/
	
	/* 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 -- tdy it */
	}

#menuh li
	{
	float: left;
	position:relative;
	text-align:center;
	vertical-align:middle;
	border: 2px solid black;
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	}

#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;}

/* End CSS Drop Down Menu */
