div#menu
{

    z-index:999;
    position: relative;
}

div#menu ul
{
    padding: 0;
    margin: 0;
    text-align: center;
    z-index:999;
    position: relative;
}

div#menu ul.level1 li{
    cursor: pointer;
    pointer: hand;
    list-style-type: none;
    position: relative;
    font-size: 11px;
    font-family: verdana;
    line-height: 31px;
    color: white;
    text-align: center;
    float: left;
    z-index: 8;
    height: 31px;
}

div#menu ul.level1 li a{
    color: white;
    text-decoration: none;
    border-right: 1px solid white;
    text-align: center;
    font-size: 13px;
    font-family: trebuchet MS;
    font-weight: bold;
    line-height: 15px;
    margin-top: 8px;
}

div#menu ul.level1 li:hover a{
    color: white;

}

div#menu ul.level1 li:hover a.submenu{
    background-image: url('../images/rechts.gif');
    background-repeat: no-repeat;
    background-position: center right;
}

div#menu ul.level1 li:hover ul.level2 li:hover a.submenu{
    background-image: url('../images/rechts2.gif');
    background-repeat: no-repeat;
    background-position: center right;
}

div#menu ul.level2 li{
    cursor: pointer;
    pointer: hand;
    list-style-type: none;
    display: block;
    text-align: left;
    background-color: #3fc62b;
    border-bottom: 1px solid #6cf358;
    z-index: 15;
    padding-left: 20px;

    position: relative;
}

div#menu ul.level1 li:hover ul.level2 li a
{
    background: 0;
    text-align: left;
    color: white;
    border: 0;

}

div#menu ul.level2 li:hover
{
    background-color: #002e5f;
    z-index: 100;
}

div#menu ul.level3 li{
    cursor: pointer;
    pointer: hand;
    list-style-type: none;
    display: block;
    font-color: #84BFE5;
    text-align: left;
    background-color: #7ED172;
    z-index: 19;
    position: relative;
}

div#menu ul.level3 li a
{
    padding-left: 5px;
    color: #84BFE5;

}

div#menu ul li
{
    position: relative;
    z-index: 999;
}

div#menu ul li a
{
    display: block;
    text-decoration: none;
}

div#menu ul li.last a
{
    border-right: 0;
}

div#menu ul.level1 li:hover ul.level2
{
    display: block;
    position: absolute;
    top: 31px;
    left: 0px;
    z-index: 999;
}

div#menu ul.level2 li:hover ul.level3
{
    display: block;
    position: absolute;
    top: 0px;
    left: 100%;
    z-index: 1000;
}

div#menu ul ul, div#menu ul ul ul
{
    display: none;
    padding: 0;
    margin: 0;
    z-index:999;
    position: relative;
}

