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

#menuh-container
	{
	position: absolute;
	}

#menuh
	{
	font-size: 1.2em;
	font-family: MS Sans Serif, Geneva, sans-serif;
	width:975px;
	margin-left: 25px;
	float:left;
	background: url(top_parent_bg.jpg) repeat-x;
}

#menuh a{height:1%;font:bold 0.7em/1.4em arial, sans-serif;}
		
#menuh a
	{
	text-align: left;
	display:block;
	/*border: 1px solid #fff;*/
	white-space:nowrap;
	margin:0;
	padding: 5px 12px 4px 12px;
	width:200px;
	}

#menuh a.top{
	background: url(sub_menu_top_90.png);
}

#menuh a.top:hover {/* menu on mouse-over  */ 
	color: white;
	background-image: url(sub_menu_top_black_90.png);
	text-decoration:none;
}

#menuh a.mid {
	background: url(sub_menu_mid_90.png) repeat-y;
}
#menuh a.mid:hover {/* menu on mouse-over  */ 
	color: white;
	background-image: url(sub_menu_mid_black_90.png);
	text-decoration:none;
}

#menuh a.bottom {
	background: url(sub_menu_bottom_90.png) no-repeat;
}

#menuh a.bottom:hover {/* menu on mouse-over  */ 
	color: white;
	background-image: url(sub_menu_bottom_black_90.png);
	text-decoration:none;
}


#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;
	border-right: 1px solid gray;
	padding: 10px 12px 0px 12px;
	height: 32px;
	width:auto;
}
	
#menuh a.top_parent:hover, #menuh a.head:hover {
	color: white;
	text-decoration:none;
}

/*	
#menuh a.parent:hover
	{
	color: white;
	background-image: url(trans_black_70.png);
	text-decoration:none;
	}
*/
	
#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: -0.75em 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 */