  div#Rahmen {    width: 160px;    padding: 0px;    border: 0px solid black;    background-color: silver;  }  * html div#Rahmen {  /* Korrektur fuer IE 5.x */    width: 160px;    w\idth: 160px;  }  div#Rahmen div {     clear: left;  }  ul#Navigation {    margin: 0; padding: 0;    text-align: left;  }  ul#Navigation li {    list-style: none;    float: left;  /* ohne width - nach CSS 2.1 erlaubt */    position: relative;    margin: 0px; padding: 0;  }  * html ul#Navigation li {  /* Korrektur fuer den IE */    margin-bottom: 0px;  }  ul#Navigation li ul {    margin: 0; padding: 0;    position: absolute;    top: 0px; left: 160px;    display: none;  /* Unternavigation ausblenden */  }  * html ul#Navigation li ul {  /* Korrektur fuer IE 5.x */    left: 160px;    lef\t: 160px;  }  ul#Navigation li:hover ul {    display: block;  /* Unternavigation in modernen Browsern einblenden */  }  ul#Navigation li ul li {    float: none;    display: block;    margin-bottom: 0px;  }  ul#Navigation a, ul#Navigation span {    display: block;    width: 144px;  /* Breite den in li enthaltenen Elementen zuweisen */    padding: 7px;    text-decoration: none;     font-weight: bold;    border: 1px solid #2469A1;    border-left-color: #78BDF4;     border-top-color: #78BDF4;    color: white;     font-family: arial;    font-size: 12px;    background-color: #468DC6;  }  * html ul#Navigation a, * html ul#Navigation span {    width: 160px;   /* Breite nach altem MS-Boxmodell f&uuml;r IE 5.x */    w\idth: 160px;  /* korrekte Breite fuer den IE 6 im standardkompatiblen Modus */  }  ul#Navigation a:hover, ul#Navigation span {    border-color: #b80000;    border-left-color: #b80000;     border-top-color: #b80000;    color: white;     background-color: #b80000;  }  li a#aktuell {  /* aktuelle Rubrik kennzeichnen */    border-color: #2D85BF;    border-left-color: #BDE3FB;     border-top-color: #BDE3FB;    color: black;     background-color: #6AB8EB;  }  ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */    border-color: #2D85BF;    border-left-color: #BDE3FB;     border-top-color: #BDE3FB;    color: black;     background-color: #6AB8EB;  }
