@charset "UTF-8";
#menuh-container
	{
	position: absolute;
	margin: 0px;
	top: 0px;
	left: 400px;
	}

#menuh
	{
	width:257px;
	float:left;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	border: 0px;
	white-space:nowrap;
	margin:0;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #FFF;
	background-color: #4e2b75;
	text-decoration:none;
	border-top: 1px #FFF dotted;
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	color: white;
	background-color: #3e1b65;
	text-decoration:none;
	}	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* top-parents */
	{
	vertical-align:middle;
	line-height:115px;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* parents */
	{
	/* height: 35px; */
	padding-top: 0px;
	line-height: 50px;
	}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0px;
	float:left;
	width:257px;	/* 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:middle;		/* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	}

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