﻿/* CSS Document */
/* Begin CSS Drop Down Menu */
/* IE Hacks sind teilweise in der Datei meta-tags-standard.ascx zu finden*/

#menuh-container
{
	position: absolute;		
	top: 1em;
	left: 0em;
	z-index:500;
}

#menuh
{	
	width:100%;
	margin:2em;
	margin:80px 0 0 0em;
	float:left; /* gemäss Vorlage wieder eingefügt */
}
		
#menuh a
{
	display:block;
	border:none;
	white-space:nowrap;
	margin:0;
	padding: 0.3em 0.5em 0.3em 0.5em;
	font-size:13px;
}
	
#menuh a:link, #menuh a:visited, #menuh a:active
{
	color:#666;	
	text-decoration:none;
	text-align:left; /*6.10.08 jwi*/		
	border-top:none;
}
	
#menuh a:hover	/* menu at mouse-over  */
{
	color:#fff;
	background-color: #c4c4c4;
	text-decoration:none;
}	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
{
	font-weight:bold;
	color:#FFF !important;
	background-image: url(/mediapool/images/layout/nav-grey2shadow2.gif);
	background-position: right center;
	background-repeat: no-repeat;
	background-color: #646569;
	padding-right:20px;
	border:none;	
}

#menuh a.top_parent_end, #menuh a.top_parent_end:hover
{
	font-weight:bold;
	color:#FFF !important;
	background-image: url(/mediapool/images/layout/nav-grey2shadow_end.gif);
	background-position: right center;
	background-repeat: no-repeat;
	background-color: #646569;
	padding-right:20px;
	border:none;
}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
{
	background-image: url(/mediapool/images/layout/nav-link.gif);
	background-position: right center;
	background-repeat: no-repeat;
	padding-right:6px;
}

#menuh ul
{
	list-style:none;
	margin:0;	
	padding:0;
	width:30px;		/*width of all menu boxes = Minimum-Width für IE */
	float:left;
}

/* die (falsche) Weitenangabe für standardkonforme Browser zurücknehmen */
html>body #menuh ul, html>body #menuh ul ul
{
 	width:auto;
}

/* Sophie Dennis contribution for IE7 */
#menuh li
{
	position:relative;
    min-height: 1px; 		
    vertical-align: bottom;
}

#menuh ul ul
{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	width:13em;  /*wenn Text den Untermenus zu lang, Breite erhöhen, damit alle gleiche Mindestbreite im IE haben 9.10.08 jwi */	
	/*padding-left:4px 0 4px;
	margin-left:-4px 0 -4px; /* 9.10.08 scheint unnötig*/
}
/* 9.10.08 jwi damit kleine Lücke zwischen Menu und Untermenu ensteht bwz. schwarze Linie sichtbar bleibt */
#menuh ul ul li:first-child
{
margin-top:2px;
}

#menuh ul ul ul
{
	top:0;
	left:100%;
	margin-right:-1px;
	padding:0;
}
/*hier Lücke für Unter-Unter-Menu abschalten*/
#menuh ul ul ul li:first-child
{
margin-top:0px;
}

div#menuh li a
{
	/* width:20em 6.10.08 jwi: vor allem für IE*/
	min-height:1em;
	background-color:#f7f7f7;
	border:solid 1px #ccc;
	overflow:hidden;
}

div#menuh li li a
{
	width:13.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 */
