/* Based on http://de.selfhtml.org/css/layouts/navigationsleisten.htm#modern */
span#Navigation {
 list-style:none;
 float:left; /* ohne width - nach CSS 2.1 erlaubt */
 position:relative;
 margin:0;
 padding:0;
 text-align:center;
 width:100%;
 z-index:99;
}
* html span#Navigation { /* Korrektur fuer den IE 5 und 6 */
 /*margin-bottom:-0.4em;*/
 margin:0px;
}
*:first-child+html span#Navigation { /* Korrektur fuer den IE 7 */
 /*margin-bottom:-0.1em;*/
 margin:0px;
}

span#Navigation ul {
 margin:0px;
 padding:0px;
 position:absolute;
 top:1.3em;
 left:-0.4em;
 text-align:left;
 display:none; /* Unternavigation ausblenden */
 z-index:99;
}

* html span#Navigation ul { /* Korrektur fuer IE 5.x */
 left:-1.5em;
 lef\t:-0.4em;
}
span#Navigation:hover ul {
 display:block;  /* Unternavigation in modernen Browsern einblenden */
}
span#Navigation ul li {
 float:none;
 display:block;
/* margin-bottom:0.2em;*/
  z-index:99;
  margin:0px;
}

span#Navigation * a { /*mindestnes zwei ebenen tiefer*/
 display:block;
 width:9.5em; /* Breite den in li enthaltenen Elementen zuweisen */
 width:115px; /* Breite den in li enthaltenen Elementen zuweisen */
 padding:0.3em 0.5em;
 text-decoration:none; font-weight: bold;
 border:1px solid black;
 border-left-color:white;
 border-top-color:white;
 color: maroon;
 background-color:#E6F3FF;
}

* html span#Navigation a {
 width:9.0em; /* Breite nach altem MS-Boxmodell fuer IE 5.x */
 w\idth:7.0em; /* korrekte Breite fuer den IE 6 im standardkompatiblen Modus */
}

offspan#Navigation a:hover {
 border-color:white;
 border-left-color:black;
 border-top-color:black;
 color:white;
 background-color:#E6F3FF;
}

#navigation ul li a:link {
 font-size:11px;
}

#navigation ul li a:visited {
 font-size:11px;
}

