  
  #navi a { display:block; height: 15px;}
  
  ul#Navigation {
    margin: 0; padding: 0;
  }

  ul#Navigation li {
    list-style: none;
    float: left;  /* ohne width - nach CSS 2.1 erlaubt */
    position: relative;
    margin: 0em; padding: 0;
  }
  * html ul#Navigation li {  /* Korrektur fuer den IE 5 und 6 */
    margin-bottom: 0em;
  }
  *:first-child+html ul#Navigation li {  /* Korrektur fuer den IE 7 */
    margin-bottom: 0em;
  }

  ul#Navigation li ul {
    margin: 0; padding: 0;
    position: absolute;
    top: 25px; left:0em;
    display: none;  /* Unternavigation ausblenden */
  }
  * html ul#Navigation li ul {  /* Korrektur fuer IE 5.x */
    left: -1.5em;
    lef\t: -0.4em;
  }
  *:first-child+html ul#Navigation ul {  /* Workaround fuer den IE 7 */
    background-color:silver; padding-bottom:0.4em;
  }
  ul#Navigation li:hover ul {
    display: block;  /* Unternavigation in modernen Browsern einblenden */
  }
  ul#Navigation li ul li {
    float: none;
    display: block;
    margin-bottom: 0em;
  }

  ul#Navigation a, ul#Navigation span {
    display: block;
    width: 100px;  /* Breite den in li enthaltenen Elementen zuweisen */
    padding: 5px 5px;
    text-decoration: none;
    color: white; background: url(/images/bg-navi.gif) #8c0b14 repeat-x;
  }
  * html ul#Navigation a, * html ul#Navigation span {
    width: 100px;   /* Breite nach altem MS-Boxmodell für IE 5.x */
    w\idth: 100px;  /* korrekte Breite fuer den IE 6 im standardkonformen Modus */
  }
  ul#Navigation a:hover, ul#Navigation span, li a#aktuell {
    color: white; background-color: #8c0b14; font-weight: bold;
  }
  li a#aktuell {  /* aktuelle Rubrik kennzeichnen */
    color: white; font-weight: bold; background-color: #8c0b14;
  }
  ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */
    background-color: maroon;
  }

  
  ul li ul { width: 210px; }
  ul li ul li { width: 210px; }
