/* Navigator Horizontal */

/* Positionierung des Layers mit dem Navigator */
#NavigatorHorizontal  
{position:absolute;
top:70px;
left:330px;

width:800px;
height:0px;


z-index:2;
overflow:visible;

}

/* ------------ Formatierung Liste Hauptmemnu  (Level1) ------------ */
#NavigatorHorizontal ul
{
	position:static;
	margin: 0px;
	padding: 0px;
	list-style-type:none;
}

 /* 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;
	
    padding-right: 20px;
}


#NavigatorHorizontal a /*passiver Link formatieren */
    {position:relative;
	text-decoration: none;
    color: black;
    background-color: transparent;
    font-weight: normal;
    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 13px;
}

#NavigatorHorizontal a:hover, /*aktiver Link formatieren */
#NavigatorHorizontal a.aktiv 
/*#NavigatorHorizontal li.aktiv>a */
{
    font-weight: bold;
}

/* 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;
    display:list-item;
    top: auto;
    left: auto;
    overflow: visible;
    margin-top:0px; 
    visibility: hidden;
    list-style-type: none;
    list-style-position: outside;
    list-style-image: none;
}

#NavigatorHorizontal li.aktiv ul
{
visibility:visible;
}


#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;
}

