/*******************************************************************************
        
        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
        
*******************************************************************************/

.menu {
  font-family: verdana, sans-serif; 
  width: 750px;                    /*  (1)  */
  position: relative; 
  font-size: 1.2em;
  padding: 0;
  margin: 0;
}
.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 */
  display:block; 
  text-decoration: none; 
  color: #37444f;
  font-weight: bold;
  width: 130px;                    /* Breite von (.menu)/(Anzahl der Punkte)-(1Px)  --> (1) */
  height: 24px;                    /*  (2)  */
  border: 1px solid #000;          /* Border-color am besten = Hintergrundfarbe der Seite */
  /*border-width: 1px 1px 1px 0;*/
  /*background:#aaa; */
  padding-left: 10px;
  margin-left: -1px;
  margin-bottom: -1px;
  line-height: 24px;               /*  --> (2)  */
}
* html .menu ul li a, .menu ul li a:visited {
  width: 130px;                    /* für 'normale' Browser */
  w\idth: 130px;                   /* 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: red; 
  background: #eee;
}

.menu ul li:hover ul,
.menu ul li a:hover ul {
  display:block; 
  position:absolute; 
  top:25px;                          /*  --> (2)  */
  margin-top: 0px;
  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: #ffffff; 
  font-weight: normal;
  color: #37444f;
  height: auto; 
  line-height: 1.2em; 
  padding: 5px 10px; 
  width: 130px
}
* 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:#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-color: #eee;
  color: red;
}

.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:150px;
}

.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;
}
