﻿/*Begin CSS Drop Down Menu*/
#menuh-container
{
	position: inherit;
	top: 0px;
	margin-left: auto;
	margin-right: auto;
}
#menuh
{
	font-size: small;
	font-family: arial, helvetica, sans-serif;
	width: 100%;
	float: left;
}
#menuh A
{
	text-align: center;
	display: block;
	white-space: nowrap;
	margin: 0;
	padding: 0.3em;
	text-transform: capitalize;
	border-right: 1px solid #1D1D1D;
}
#menuh A:link, #menuh A:visited, #menuh A:active
{
	color: #DBC61E;
	background-color: #0D0D0D;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	border:thin;
}
#menuh A:hover
{
	color: black;
	background-color: #c6a709;
	text-decoration: none;
}
#menuh A.parent, #menuh A.parent:hover
{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
}
#menuh UL
{
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
	width: 128px;
/*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: inherit;
	min-height: 1px;
/*Sophie Dennis contribution for IE7*/
	vertical-align: bottom;
/*Sophie Dennis contribution for IE7*/
}
#menuh UL UL
{
	position: inherit;
	z-index: 500;
	top: auto;
	display: none;
	padding: 1em;
	margin-left: -14px;
	margin-top: -14px;
}
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*/
