/* Begin CSS Drop Down Menu */

#menuh-container
	{
	position: absolute;
	top: 1em;
	left: 1em;
	}
	
#menuh
	{
	width:100%; 
	float:none;
	}
		
#menuh a
	{
	display:block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 5;
	margin-bottom: 10;
	white-space: nowrap;
	text-align: left;
	width: auto;
	padding-right: 0px;
	margin-left: 5px;
		}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #FFFF00;
	text-decoration:none;
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	color: #FFFFFF;
	text-decoration:none;
	background-color: #013e7d;
	text-decoration: underline;
	width: auto;
	}	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	width: 100%; /* afstand tussen menu-items in knoppenbalk */
	margin-right: 70px;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-position:center
	margin-right: 20px
	}

#menuh ul
	{
	list-style:none;
	padding:0;
	float:left;
	margin-top: 0;
	margin-bottom: 0;
	width: auto;
	/* 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: text-top;
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding-left: 10px;
	padding-right: 10px;
	width: auto;
	}

#menuh ul ul ul
	{
	top:0;
	left:35px;
	padding-left: 10px;
	padding-right: 10px;
	width: auto;
	}

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;
	background-color: #013e7d;
}

/* End CSS Drop Down Menu */

