/*CSS for Menu.*/
/*Type 1, generic*/

#menuh-container
	{
	position: absolute;
	width: 825px;
	}

#menuh	{
	font-size: 16px;
	width: 360px;
	float: right;
}
		
#menuh a
	{
	text-align: left;
	display:block;
	white-space:nowrap;
	margin:0;
	padding: 2px 5px;
	}

#menuh p.slash {
	color: #adc8ea;
	white-space:nowrap;
	padding:0 5px;
	float: left;
}

#menuh a.child {
	background: url(../images/white.png) repeat;
	text-decoration:none;
	padding-right: 25px;
}
#menuh a.child:hover {/* menu on mouse-over  */ 
	background: url(../images/blue.png) repeat;
	text-decoration:none;
	padding-right: 25px;
}



#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: black;
	text-decoration:none;
	}	

#menuh a.top_parent, #menuh a.head {
	background: url(top_parent_bg.jpg) repeat-x;
	border: 0;
	width:auto;
}
	
#menuh a.top_parent:hover, #menuh a.head:hover {
	text-decoration:underline;
}
	
#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	/*width:12em;*/	/* 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;		
	vertical-align: bottom;	
	}

#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%;
	z-index:1000;
	margin: -1.2em 0 0 -1.5em;
	}

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