 
  ul#Navigation {
    margin: 0; padding: 0;
    text-align: center;
    z-order:2;
  }

  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: -0.4em;
  }
  *:first-child+html ul#Navigation li {  /* Korrektur fuer den IE 7 */
    margin-bottom: -0.1em;
  }

  ul#Navigation li ul {
    margin: 0; padding: 0;
    position: absolute;
    background:#0000A6;
    font-style:normal;
    filter:alpha(opacity=90);
    -moz-opacity:0.9;
    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;
    height:20px;
    padding-top:5px;
    text-decoration: none; font-weight: bold;
    color: yellow;
    border: 0px solid black;
    background-color: transparent;
    font-family:verdana; 
    font-size:12px;
  }
  * html ul#Navigation a, * html ul#Navigation span {
      /* korrekte Breite fuer den IE 6 im standardkonformen Modus */
	 height:25px;
  }
  ul#Navigation a:hover, ul#Navigation span, li a#aktuell {
    color: white; background-color: gray;
    background-image:url('./menue_link.gif');

  }

  ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */
    background-color: blue;
    font-style:normal;
  }
