  ul#Navigation {
	margin: 0;
	padding: 0;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
  }

  ul#Navigation li {
	list-style: none;
	float: left;
	position: relative;
	padding: 0;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
  }
  * html ul#Navigation li {  /* Korrektur fuer den IE 5 und 6 */
    /*margin-bottom: -0.4em;*/
    margin-bottom: 0px;
  }
  *:first-child+html ul#Navigation li {  /* Korrektur fuer den IE 7 */
    /*margin-bottom: -0.1em;*/
    margin-bottom: 0px;
  }

  ul#Navigation li ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #E0E0E0;
    display: none;  /*!! Unternavigation ausblenden */
 }
  * html ul#Navigation li ul {  /* Korrektur fuer IE 5.x */
    left: 0px;
    lef\t: 0px;
	top: 22px;
  }
   *:first-child+html ul#Navigation ul {  /*Workaround fuer den IE 7 */
    /*background-color:silver; padding-bottom:0.4em;*/
  }
    ul#Navigation li ul li {
	float: none;
	display: block;
	margin: 0px;
	font-size: 12px;
	border: 1px solid #FFFFFF;
	font-weight: bold;
  }

  ul#Navigation a, ul#Navigation span {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #101E4B;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-top: 4px;
	padding-right: 7px;
	padding-bottom: 4px;
	padding-left: 7px;
  }
  * html ul#Navigation a, * html ul#Navigation span {  /* nur fuer IE erforderlich */
    /*width: 100%;
    w\idth: 6.4em;*/
  }

    ul#Navigation a:hover, ul#Navigation span, li a#aktuell {
	border-color: white;
	border-left-color: black;
	border-top-color: black;
	color: #828483;
  }
  li a#aktuell {  /* aktuelle Rubrik kennzeichnen */
    color: maroon; background-color: silver;
  }
  ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */
  }
    /* Erweiterung zur dynamischen Ein-/Ausblendung */
  ul#Navigation li>ul {
	display: none;
	top: 22px;
  }
  ul#Navigation li:hover>ul, ul#Navigation li>a#aktuell+ul {
	display: block;
  }




