/*******************************************************************************
        
        Horizontales Dropdown-Menu, CSS
        
        CSS-Grundlage:  Copyright by Stu Nicholls @ www.cssplay.co.uk
        Please see Copyright Notice @
        http://www.cssplay.co.uk/menus/final_drop.html
        
*******************************************************************************/
.a {
border:0px;
}
.menu {
  font-family: verdana, arial; 
  width:850px;                    /*  (1)  */
  position:relative; 
  font-size:11px;
  z-index:100;
  background-color:#0c0c0c;
  text-align: center;
  margin-top:2px;
  float:lefT;
}
.menu ul {                        /* UL Ebene 1 */
  padding:0; 
  margin:0;
  list-style-type: none;  
    text-align: center;
}
.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 */
  display:block; 
  text-decoration:none; 
  font-weight:bold;
  color:#fff; 
  width:136px;  
    w\idth:117px;                    /* Breite von (.menu)/(Anzahl der Punkte)-(1Px)  --> (1) */
  height:25px;                    /*  (2)  */
  border:1px solid #0c0c0c;          /* Border-color am besten = Hintergrundfarbe der Seite */
  border-width:1px 1px 0 0; 
  background:#0c0c0c; 
  padding-left:15px; 
  line-height:22px; 
    text-align: center;
                /*  --> (2)  */
}
* html .menu ul li a, .menu ul li a:visited {
  width:90px;                    /* für 'normale' Browser */
  w\idth:117px;                   /* für IE */
}
.menu ul li ul {
  display: none;
}

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

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

.menu ul li:hover ul,
.menu ul li a:hover ul {
  display:block; 
  position:absolute; 
  top:25px;                          /*  --> (2)  */
  margin-top:1px;
  left:0; 
  width:138px;
  color:#1b7f0f;
}
* 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:#ddd; 
  color:#555; 
  height:auto; 
  /*line-height:1.2em;   */
  padding:5px 10px; 
  width:138px
  _width:118px;
}
* html .menu ul li a:hover ul li a {
  width:118px;
  _width:118px;
}

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

.menu ul li:hover ul li a:hover,      /* Ebene 2 hover */
.menu ul li a:hover ul li a:hover {
  background:#aaa; 
  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:150px; 
  top:0;
  width:138px;
}

.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;
}

