/* Navigator Horizontal */

/* Positionierung des Layers mit dem Navigator */
#NavigatorHorizontal  
{
position:absolute;

left:343px;
top:-19px;

height:25px;
width:540px;

padding:0px;
margin:0px;

background-color:transparent;
z-index:2;

}

/* ------------ Formatierung Liste Hauptmemnu  (Level1) ------------ */
#NavigatorHorizontal ul
{
	position:static;
	margin: 0px;
	padding: 0px;
}

 /* Formatierung Listenpunkte Level1, diese werden mit «float» nebeneinander gestellt*/
#NavigatorHorizontal li
{
	position:static;
	display:block;
	list-style-type: none;
    list-style-position: outside;
    list-style-image: none;

	float:left;
	height:24px;
}

#NavigatorHorizontal li.aktiv,
#NavigatorHorizontal li:hover
{
	background-repeat: repeat;
    background-image: url('/css/Bilder/Gruen-Transparent-90.png');
}



#NavigatorHorizontal a /*passiver Link formatieren */
    {
	color: #eeecdf;
	padding: 3px 10px 3px 10px;
	text-decoration:none;
  position:relative;
	font-weight:normal;
	z-index:2;
}

#NavigatorHorizontal a:hover, /*aktiver Link formatieren */
#NavigatorHorizontal a.aktiv, 
#NavigatorHorizontal li.aktiv>a /*Im Menu Oben wird der ganze aktive Baum auf Gelb gestellt */
{
    color:#d0cb35;
}

/* Bei Hover werden zuerst alle Untermenus ausgeblendet */
#NavigatorHorizontal ul:hover ul,
#NavigatorHorizontal ul.sfhover ul /* für IE6 */
{
visibility:hidden !important;}


/* ------------ Erstes Untermenu (Level2) ------------ */
#NavigatorHorizontal ul ul
{
    clear: both;
    position: absolute;
    top: auto;
    left: auto;
    overflow: visible;
    margin: 23px 0px 0px 0px;
    padding: 0px 0px 5px 0px;
    visibility: hidden;
    background-repeat: repeat;
    background-image: url('/css/Bilder/Gruen-Transparent-90.png');
    list-style-type: none;
    list-style-position: outside;
    list-style-image: none;
}


#NavigatorHorizontal ul ul li,
#NavigatorHorizontal ul ul li.aktiv,
#NavigatorHorizontal ul ul li:hover
{
    position: static;
    clear:both;
    float:none;
    background-color: transparent;
    margin:0px;
    width: 100%;
    
    list-style-type: none;
    list-style-position: outside;
    list-style-image: none;
    background-image:none;
    
   	height:18px;

}
/*
#NavigatorHorizontal ul ul li.aktiv,
#NavigatorHorizontal ul ul li:hover
{
    background-color: black;
}*/



/* Einblenden der Untermenus */
/*#NavigatorHorizontal li.aktiv ul  Untermenu von aktivem Menu immer eingeblendet 
-> deaktiviert in diesem Fall
{
visibility:visible;
}*/

 /* Muss einzeln stehen damit mit !important das ausblenden durch den hover effekt auf UL übersteuert werden kann. */
#NavigatorHorizontal li:hover ul,
#NavigatorHorizontal li.sfhover ul /* für IE6 */
{
visibility:visible !important;
}
