/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menuDropdowns/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menuDropdown 
{
    background-color:transparent;
    background-image:url(/images/standard/bg_menu.jpg);
    background-repeat:no-repeat;
    background-position:left -1px;
    
    border-top:1px solid #e8e8e8;
    height:32px;
    padding:0 20px;
    position:relative; 
    z-index:50;
    font-family:arial, sans-serif;
}
.menuDropdown li li
{
    border-width:0px 1px; border-style:dashed; border-color:red;
    }
.menuDropdown li li.last
{
    border-width:0px 1px 1px;
    }
.menuDropdown li li li.first
{
    border-width:1px 1px 0px;
    }
.menuDropdown li a.active
{
    border-top:0px solid #e8e8e8;
    background-color:white;
    z-index:100;
    }
.menuDropdown li li a.active
{
    border-top:0px solid #e8e8e8;
    -background-color:white;
    text-decoration:underline; 
    -z-index:100;
    
    }
.menuDropdown li li li a.active
{
    border-top:0px solid #e8e8e8; 
    -background-color:white;
    text-decoration:underline; 
    -z-index:100;
    }

.menuDropdown li.trenner
{
    width:1px; 
    background-color:#CCCCCC;
    height:19px; 
    margin: 7px 0 0;
    }
/* remove all the bullets, borders and padding from the default list styling */
.menuDropdown ul 
{   
    padding:0;
    margin:0;
    list-style-type:none;}
.menuDropdown ul ul {width:149px; }

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menuDropdown positon */
.menuDropdown li {float:left;position:relative;}

/* style the links for the top level */
.menuDropdown a, .menuDropdown a:visited 
{height: 17px; 
 display:block;
 font-size:14px;
 text-decoration:none; 
 color:#444444; 
 padding:8px 16px;  
 font-weight:normal;}
.menuDropdown a.drop, .menuDropdown a.drop:visited 
{
    padding-left:12px; 
    padding-right:20px; 
    background-image:url(/images/standard/pfeil_runter.png);
    background-repeat:no-repeat; 
    background-position:right center }

/* style the second level background */
.menuDropdown ul ul a.drop, .menuDropdown ul ul a.drop:visited 
{background-color:white; 
 padding:5px 10px; 
 background-image:url(/images/standard/pfeil_rechts.png);
 background-repeat:no-repeat; 
 background-position:97% center}


/* style the third level background */
.menuDropdown ul ul ul a, .menuDropdown ul ul ul a:visited 
{
    background:white;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuDropdown ul ul 
{
    visibility:hidden;
    position:absolute;
    height:0;
    top:32px;
    left:-1px; 
    width:149px;}

/* position the third level flyout menuDropdown */
.menuDropdown ul ul ul
{
    left:149px; 
    top:0px; 
    width:149px;}

/* position the third level flyout menuDropdown for a left flyout */
.menuDropdown ul ul ul.left 
{
    left:-149px;
}

/* style the second level links */
.menuDropdown ul ul a, .menuDropdown ul ul a:visited 
{
    background-color:white; 
    color:#444444;
     height:auto;
    line-height:1em; 
    padding:5px 10px; 
    width:129px;}

/* style the top level hover */
.menuDropdown a:hover, .menuDropdown ul ul a:hover
{
    color:#444444;   
    
 }
.menuDropdown :hover > a, .menuDropdown ul ul :hover > a 
{
    color:#444444; 
    text-decoration:underline; 
    background-color:White;
}
.menuDropdown :hover > a.drop, .menuDropdown ul ul :hover > a.drop
{
    background-image:url(/images/standard/pfeil_runter.png);
    background-repeat:no-repeat;
    background-position:right 60%;
}
/* style the second level hover */
.menuDropdown ul ul a.drop:hover{background:white}
.menuDropdown ul ul :hover > a.drop 
{
    background-color:white;
    background-image:url(/images/standard/pfeil_rechts.png);
    background-repeat:no-repeat;
    background-position:98% center;
     }
/* style the third level hover */
.menuDropdown ul ul ul a:hover {background-color:white;}

/* make the second level visible when hover on first level list OR link */
.menuDropdown ul li:hover ul,
.menuDropdown ul a:hover ul{visibility:visible;}
/* keep the third level hidden when you hover on first level list OR link */
.menuDropdown ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menuDropdown ul :hover ul :hover ul{ visibility:visible;}