/*------------------------------------------------------------------------------------------------------*/

/* CSS Document */


	div#Rahmen {
    width:990px;
		height:35px;
		z-index:2000;
  }
  * html div#Rahmen {  /* Korrektur fuer IE 5.x */
    width: 990px;
    w\idth: 990px;
  }
  div#Rahmen div {
     clear: left;
  }
	
  ul#Navigation {
    margin: 0; 
		padding: 0;
		z-index:2000;
  }

  ul#Navigation li {
    list-style: none;
    float: left;  /* ohne width - nach CSS 2.1 erlaubt */
    position: relative;
    margin: 0; 
		padding: 0;
		width: 141px;  /* Breite den in li enthaltenen Elementen zuweisen */
		height: 35px;
		background-image: url('../images/menu.png');
		z-index:2000;
  }
  * html ul#Navigation li {  /* Korrektur fuer den IE 5 und 6 */
    margin-bottom: 0;
		z-index:2000;
  }
  *:first-child+html ul#Navigation li {  /* Korrektur fuer den IE 7 */
    margin-bottom: 0;
		z-index:2000;
  }

  ul#Navigation li ul {
    margin: 0; 
		padding: 0;
    position: absolute;
    top: 35px; 
		left: 0;
    display: none;  /* Unternavigation ausblenden */
		z-index:2000;
  }
  * html ul#Navigation li ul {  /* Korrektur fuer IE 5.x */
    left: 0;
    lef\t: 0;
		z-index:2000;
  }
  *:first-child+html ul#Navigation ul {  /* Workaround fuer den IE 7 */
    background-image: url('../images/menu.png');
		height: 35px;
		width: 141px;
		text-align:center; 
		padding-bottom:0em;
		z-index:2000;
  }
  ul#Navigation li:hover ul {
    display: block;  /* Unternavigation in modernen Browsern einblenden */
		width: 141px;  /* Breite den in li enthaltenen Elementen zuweisen */
		height: 35px;
		background-image: url('../images/menu.png');
		text-align:center;
		line-height:35px;
		z-index:2000;
  }
  ul#Navigation li ul li {
    float: none;
    display: block;
    margin-bottom: 0;
		z-index:2000;
  }

  ul#Navigation a, ul#Navigation span {
    display: block;
		font-size: 18px;
		text-align:center;
		line-height:35px;
    padding: 0 0;
    text-decoration: none; 
    border: 0;
		z-index:2000;
  }
  * html ul#Navigation a, * html ul#Navigation span {
    width: 141px;   /* Breite nach altem MS-Boxmodell fuer IE 5.x */
    w\idth: 141px;  /* korrekte Breite fuer den IE 6 im standardkompatiblen Modus */
		z-index:2000;
  }
  ul#Navigation li:hover, ul#Navigation a:hover, ul#Navigation span {
		text-align:center;
		line-height:35px;
    color: black;
    text-decoration: none; 
		padding: 0 0;
    border: 0;
		background-image: url('../images/menu_hover.png');
		z-index:2000;
  }
  li a#aktuell {  /* aktuelle Rubrik kennzeichnen */
    color: black; 
		background-image: url('../images/menu_hover.png');
		z-index:2000;
  }
  ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */
    background-color: white;
		z-index:2000;
  }
	
	
	
	
	
	
	
	
	
	
	
	
	