/*******************************************************************************
        
        Horizontales Dropdown-Menu, Basierend auf CSS
        
        CSS-Grundlage:  Copyright by billerbeck Schweiz AG
        
*******************************************************************************/

.menu {
  font-family: verdana, sans-serif; 
  width:785px;                    /*  (1)  */
  position:relative; 
  font-size:12px;
  padding-bottom:50px;
  z-index:100;
}
.menu ul {                        /* UL Ebene 1 */
  padding:0; 
  margin:0;
  list-style-type: none;
}
.menu ul li {                     /* Listenelemente der Ebene 1 */
  float:left;
  position:relative;
}
.menu ul li a, 
.menu ul li a:visited {           /* Links der Listenelemente der Ebene 1 */
  border-left:0px solid #193120; border-right:0px solid #193120; border-top:1px solid #193120; border-bottom:0px solid #193120; display:block; 
  text-decoration:none; 
  color:#fff; 
  width:139px;                    /* Breite von (.menu)/(Anzahl der Punkte)-(1Px)  --> (1) */
  height:25px;                    /*  (2)  */
  /* Border-color am besten = Hintergrundfarbe der Seite */
  background:#193120;             /* HINTERGRUND 1. STUFE UNSELEKTIERT */
  padding-left:10px; 
  line-height:25px
}
* html .menu ul li a, .menu ul li a:visited {
  width:149px;                    /* für 'normale' Browser */
  w\idth:139px;                   /* für IE */
}
.menu ul li ul {
  display: none;
}

table {
  margin:-1px; 
  border-collapse:collapse;
  font-size:0.8em;
  font-size:10px;
}

/* li:hover  für non-IE-Browser  ---  a:hover  für IE */
  .menu ul li:hover a,
  .menu ul li a:hover {
  color:#ddd; 
  background:#006528;              /* HINTERGRUND 1. STUFE SELEKTIERT */
  background:#274725;              /* HINTERGRUND 1. STUFE SELEKTIERT */
}

.menu ul li:hover ul,
.menu ul li a:hover ul {
  display:block; 
  position:absolute; 
  top:25px;                          /*  --> (2)  */
  margin-top:1px;
  left:0; 
  width:150px;
}
* html .menu ul li a:hover ul {
  margin-top:0;
  marg\in-top:1px;
}

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {
  visibility:hidden; 
  position:absolute; 
  height:0; 
  width:0;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {
  display:block; 
  background:#193120;                   /* HINTERGRUND STUFE 3 UNSELEKTIERT */
  color:#193120; 			/* Schriftfarbe Sub-ButtonS */
  height:auto; 
  line-height:1.2em; 
  padding:5px 10px; 
  width:129px
}
* html .menu ul li a:hover ul li a {
  width:150px;
  w\idth:129px;
}

.menu ul li:hover ul li a.drop,       /* Ebene 2 mit  Subpunkten */
.menu ul li a:hover ul li a.drop {
  background:#193120 url('../../graphics/drop.gif') no-repeat bottom right;  /* STUFE 2UNSELEKTIERT */
}

.menu ul li:hover ul li a:hover,      /* Ebene 2 hover */
.menu ul li a:hover ul li a:hover {
  background:#006528;                    /* HINTEGRGRUND STUFE 2/3 SELEKTIERT */
  background:#274725;                    /* HINTEGRGRUND STUFE 2/3 SELEKTIERT */
  color:#fff;
}

.menu ul li:hover ul li:hover ul,     /* Ebene 3 */
.menu ul li a:hover ul li a:hover ul {
  visibility:visible; 
  position:absolute; 
  left:50px; 
  top:0;
  width:35px;
}

.menu ul li:hover ul li:hover ul.left,  /* Ebene 3  letztes Element */
.menu ul li a:hover ul li a:hover ul.left {
  left:-150px;
}