@charset "utf-8";
/* CSS Document */
/* Begin CSS Drop Down Menu */
/* http://sperling.com/examples/menuh/ */

body {
	text-align: center;
	min-width: 100%;
}

#wrapper {
	margin:0 auto;
	width:100%;
}
#menuh
	{
	/*font-size: small; */
	font-size: 13px;
	font-family: arial, helvetica, sans-serif;
	height: 35px;
	color: fbae3c;
	font-weight: bold; 
	border-top: solid #000 1px;
	border-bottom: solid #000 1px;
	background-color: #000;
	text-align: center;
	}
#menuh a
	{
	text-align: center;
	display:block;
	border: 1px solid #000;
	white-space:nowrap;
	margin:0;
	padding: 0.3em;
	}
	
#menuh a, #menuh a:visited	/* menu at rest */
	{
	background-color: #000;
	text-decoration:none;
	padding: 7px 10px;
	color: #fbae3c;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	font-weight: bold;
	color: #000;
	background-color: #ffff9f;
	}	
#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:8.25em;	 /* width of all menu boxes */
	}

#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;
	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 */


