/* Begin CSS Drop Down Menu */

#menuh
	{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.88em;
	width: 818px;
	height: 2.1em;
	background-color: #995b00;
	margin-top: -1px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align:center;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #643b00;
	padding-left: 10px;
	}

#menuh a
	{
	background-color: #995b00;
	color: #FED3A6;
	display: block;
	/*white-space: nowrap;*/
	padding-top: 0.1em;
	padding-right: 1.4em;
	padding-left: 1.4em;
	padding-bottom: 0.4em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #633B04;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	text-decoration:none;
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	background-color: #7A0006;
	}	
	
#menuh a:active						/* menu on mouse-over  */
	{
	background-color: #931E08
	}	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(../images/menuRArrow.png);
	background-position: right center;
	background-repeat: no-repeat;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #633B04;
	}

#menuh ul
	{
	list-style:none;
	padding:0;
	float:left;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: auto;	/* width:92px;	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 */
	}

#menuh li
	{
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	font-size: 90%;
	text-align: left;
	width: 160px;
	text-indent: -.5em;
	margin-top: -1em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -1em;
	padding: 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 */
