ul#Satiren {
    margin: 0; padding: 0;
    text-align: center;
  }

  ul#Satiren li {
    list-style: none;
    font-size: 0.8em;
    float: left;  /* ohne width - nach CSS 2.1 erlaubt */
    position: relative;
    margin: 0.1em;
    padding: 0;
  }
  * html ul#Satiren li {  /* Korrektur fuer den IE 5 und 6 */
    margin-bottom: -0.4em;
  }
  *:first-child+html ul#Satiren li {  /* Korrektur fuer den IE 7 */
    margin-bottom: -0.1em;
  }

  ul#Satiren li ul {
    margin: 0em; padding: 1.3em;
    position: absolute;
    top: 1.65em; left: 0.5em;
    display: none;  /* UnterSatiren ausblenden */
  }
  * html ul#Satiren li ul {  /* Korrektur fuer IE 5.x */
    left: -1.5em;
    lef\t: -0.4em;
  }
  *:first-child+html ul#Satiren ul {  /* Workaround fuer den IE 7 */
    background-color:white; padding: 0em; margin: 0em;
    
  }
  ul#Satiren li:hover ul {
    display: block;  /* UnterSatiren in modernen Browsern einblenden */
  }
  ul#Satiren li ul li {
    float: none;
    display: block;
    margin-bottom: 0.1em;
  }

  ul#Satiren a, ul#Satiren span {
    display: block;
    width: 6.6em;  /* Breite den in li enthaltenen Elementen zuweisen */
    padding: 0.3em 1em;
    text-decoration: none; font-weight: bold;
    color: white; background-color: #0033CC;
  }
  * html ul#Satiren a, * html ul#Satiren span {
    width: 10.6em;   /* Breite nach altem MS-Boxmodell fuer IE 5.x */
    w\idth: 10.4em;  /* korrekte Breite fuer den IE 6 im standardkompatiblen Modus */
  }
  ul#Satiren a:hover, ul#Satiren span, li a#aktuell {
    color: white; background-color: #000080;
  }
  li a#aktuell {  /* aktuelle Rubrik kennzeichnen */
    color: maroon; background-color: #000080;
  }
  ul#Satiren li ul span {  /* aktuelle Unterseite kennzeichnen */
    background-color: maroon;
  }