/* Begin CSS Popout Menu */
/* http://www.sperling.com/examples/menuh/ */

/**
#menuh-container
	{
	position:  absolute;		
	top: 1em;
	left: 1em;
	}
**/

#menuh-container
	{
	position: relative;		
	top: 0;
	left: 0;
	}

#menuh
	{
	width:100%;
	float:left;
	margin:0;
	}
		
#menuh a, #menuh h2
	{
	font-size:12px;	
	font-family: arial, helvetica, sans-serif;
	font-weight:bold;	
	text-align: center;
	display:block;
	border: 1px solid #000000;
	white-space:nowrap;
	margin: 0;
	padding:1px 3px 1px 3px;	
	}
/*	padding: 0.2em;	 */

#menuh h2 {
	color: #fff;
	background: #000;
	text-transform: uppercase;
}

#menuh a {
	text-decoration:none;	
}	
#menuh a:link, #menuh a:visited	/* menu at rest */
	{
	color: #eeeeee;
	background-color: #333333;
	}
#menuh a:hover	/* menu at mouse-over  */
	{
	color: #eeeeee;
	background-color: #336633;
	}
#menuh a:active	/* menu at mouse-down  */
	{
	color: #eeeeee;
	background-color: #669966;
	}	

/* attaches down-arrow to all top-parents */
#menuh a.top_parent {
	background-image:url(/images/navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;	
	}
#menuh a.top_parent:link, #menuh a.top_parent:visited	/* menu at rest */
	{
	color: #eeeeee;
	background-color: #333333;
	}
#menuh a.top_parent:hover	/* menu at mouse-over  */
	{
	color: #eeeeee;
	background-color: #336633;
	}
#menuh a.top_parent:active	/* menu at mouse-down  */
	{
	color: #eeeeee;
	background-color: #669966;
	}		

#menuh a.parent:link, #menuh a.parent:visited, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(/images/nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:8em;	/* width of all menu boxes */
	}

#menuh li
	{
	position:relative;
	}

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

#menuh ul ul ul
	{
	position: absolute;
	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 Popout Menu */