/* CSS Document */
/*body, p a {
    font: normal 100.01% Helvetica, Arial, sans-serif;
    color: black; background-color: #ffffe0;
  } */

  ul#Navigation {
    margin: 1px 0 0 0; padding: 0;
    text-align: center;
	z-index: 1;
  }

  ul#Navigation li {
  	width: 10em;
    list-style: none;
   /* float: left;  /* ohne width - nach CSS 2.1 erlaubt */
    position: relative;
    margin: 0.4em; padding: 0;
  }
  * html ul#Navigation li {  /* Korrektur fuer den IE */
    margin-bottom: -0.4em;
  }
  
    ul#Navigation li ul{
    margin: 0 -0.4em; padding: 0;
    position: absolute;
    top: 1.6em; left: -0.6em;
    display: none;  /* Unternavigation ausblenden */
  }
  
  * html ul#Navigation li ul {  /* Korrektur fuer IE 5.x */
    left: -1.5em;
    lef\t: -2.0em;
  }
  
    ul#Navigation li:hover ul {
    display: block;  /* Unternavigation in modernen Browsern einblenden */
  }
  
  ul#Navigation li ul li {
  	margin: 0em 11.5em;
    /* float: none; */
    display: block;
    top:-1.6em;
  }

  ul#Navigation a, ul#Navigation span {
    display: block;
    width: 10.2em;  /* Breite den in li enthaltenen Elementen zuweisen */
    padding: 0.2em 1em;
   	font-weight: bold; 
    border: 1px solid black;
    border-left-color: white; border-top-color: white;
	height: 27px;
  }
  * html ul#Navigation a, * html ul#Navigation span {
    width: 8.6em;   /* Breite nach altem MS-Boxmodell für IE 5.x */
    w\idth: 10.4em;  /* korrekte Breite fuer den IE 6 im standardkompatiblen Modus */
  }
  ul#Navigation a:hover, ul#Navigation span, li a#aktuell {
    border-color: white;
    border-left-color: black; border-top-color: black;
  }
  ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */
    background-color: #464F31;
  }

