/* CSS Document */

/* 
2 Farben:
1. dunkler
2. heller
 
#99cc33 standard dunkler gruen
#d7e42c hover helleres gruen 

*/ 

#headerStayTop { 
    width:100%; 
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 100;
    height: 62px;
}

div#mastermenu, 
div#mastermenu ul, 
div#mastermenu li, 
div#mastermenu a,
div#mastermenu img { 
    margin: 0; 
    padding: 0;
    font: normal 16px Verdana;
    color:#ffffff; 
    text-decoration: none; 
} 
div#mastermenu {  
    width: 100%;
    position: absolute;
    top: 62px; 
    left: 0;  
    z-index: 100;
    display: block;
    background-color: white;  /* #99cc33; */
    background-image: url(/js/greendefault.gif);
    background-repeat:repeat-x; 
}
div#mastermenu ul ul a {
    font-size: 14px;
}
div#mastermenu ul ul ul a {
    font-size: 12px;
}

/* Menu Level 1 HORIZ */
div#mastermenu ul {
    width: 100%;  
    z-index: 100;
    display: block;
    list-style-type: none; 
    position: relative;
}
div#mastermenu ul li {  
    display: block;
    float: left;
    padding: 0.4em 0.8em;
    position: relative;
}
div#mastermenu .current {
    color: darkgray;/*  #ffffff ;*/
    font-weight: 600;
} 


/* Menu Level 2 POPDOWN */
div#mastermenu ul ul {  
    z-index: 200;
    display: none;
    width: 12em;
    list-style-type: none; 
    background-color: white; /*  #d7e42c; */
    clear: left;
    position: absolute;
    top: 1.85em;
    left: 0;
    padding-left: 0.8em;
}
div#mastermenu ul ul li {  
    display: block;
    width: 100%;
    clear: left;
    background-color: white; /* #99cc33; */
    padding: 0.3em 0.4em;
}

/* Menu Level 3 POPRIGHT */
div#mastermenu ul ul ul {  
    z-index: 300;
    display: none;
    /*   left: gibt an, wie weit das untermenü nach links versetz dargestellt wird */
    left: 12.7em;
    left: 10.7em;
    top: -1.9em;
    
}
div#mastermenu ul ul ul li {  
    padding: 0.2em 0.7em;
    background-image: none;
}

div#mastermenu ul ul ul ul {  
    z-index: 400;
    display: none;
}
div#mastermenu ul ul ul ul ul {  
    z-index: 500;
    display: none;
}


/* HOVER-Effekte */

/* Menu Level 1  HORIZ */
div#mastermenu ul li:hover {  
    background-color: whitesmoke; /*  #d7e42c; */
    z-index: 500;
}
div#mastermenu ul li:hover ul {  
    display: block;
    z-index: 501;
}
div#mastermenu ul li:hover ul ul{  
    display: none;
    z-index: -1;
}

/* Menu Level 2  POPDOWN */
div#mastermenu ul ul li:hover {  
    background-color: whitesmoke; /* #d7e42c; */
    z-index: 502;
}
div#mastermenu ul ul li:hover ul {  
    display: block;
    z-index: 503;
}
div#mastermenu ul ul li:hover ul ul {  
    display: none;
    z-index: -1;
}

/* Menu Level 3  POPRIGHT */
div#mastermenu ul ul ul li:hover {  
    background-color: whitesmoke;/*  #d7e42c; */
    background-image: url(/js/down2right.gif);
    background-repeat:no-repeat; 
    background-position: left center; 
    z-index: 504;
}
div#mastermenu ul ul ul li:hover ul {  
    display: block;
    z-index: 505;
}
div#mastermenu ul ul ul li:hover ul ul{  
    display: none;
    z-index: -1;
}

/* Menu Level 4  POPRIGHT */
div#mastermenu ul ul ul ul li:hover {  
    background-color: whitesmoke; /*  #d7e42c; */
    background-image: url(/js/down2right.gif);
    background-repeat:no-repeat; 
    background-position: left center; 
    z-index: 506;
}
div#mastermenu ul ul ul ul li:hover ul {  
    display: block;
    z-index: 507;
}
div#mastermenu ul ul ul ul li:hover ul ul{  
    display: none;
    z-index: -1;
}

div#mastermenu li .dropheadline,
div#mastermenu li .dropheadline a,
div#mastermenu ul li .dropheadline,
div#mastermenu ul li .dropheadline a,
div#mastermenu ul ul li .dropheadline,
div#mastermenu ul ul li .dropheadline a,
div#mastermenu ul ul ul li .dropheadline,
div#mastermenu ul ul ul li .dropheadline a,
div#mastermenu ul ul ul ul li .dropheadline,
div#mastermenu ul ul ul ul li .dropheadline a, 
div#mastermenu li:hover .dropheadline,
div#mastermenu ul li:hover .dropheadline,
div#mastermenu ul ul li:hover .dropheadline,
div#mastermenu ul ul ul li:hover .dropheadline,
div#mastermenu ul ul ul ul li:hover .dropheadline {
    background-color: orange;
    color: black;
}










