@charset "utf-8";
/* CSS Document */
body {
	font: normal 100.01% Helvetica, Arial, sans-serif;
}

div#Rahmen div {
	clear: left;
}

ul#Navigation {
	margin: 0; 
	padding: 0;
	text-align: center;
}

ul#Navigation li {
    list-style: none;
    float: left;  /* ohne width - nach CSS 2.1 erlaubt */
    position: relative;
    margin: 0.4em 0.4em 0.4em 0em;
	padding: 0;
}

* html ul#Navigation li {  /* Korrektur fuer den IE 5 und 6 */
    margin-bottom: -0.4em;
}

*:first-child+html ul#Navigation li {  /* Korrektur fuer den IE 7 */
	margin-bottom: -0.1em;
}

ul#Navigation li ul {
    margin: 0; 
	padding: 0;
    position: absolute;
    top: 1.6em; 
	left: 0; /*-0.4em;*/
    display: none;  /* Unternavigation ausblenden */
}

* html ul#Navigation li ul {  /* Korrektur fuer IE 5.x */
    left: -1.5em;
    lef\t: -0.4em;
}

*:first-child+html ul#Navigation ul {  /* Workaround fuer den IE 7 */
	background-color: #FFF; 
	padding-bottom: 0.4em;
}

ul#Navigation li:hover ul {
	display: block;  /* Unternavigation in modernen Browsern einblenden */
}

ul#Navigation li ul li {
    float: none;
    display: block;
    margin-bottom: -0.3em;
}

ul#Navigation a, ul#Navigation span {
    display: block;
	width: 10.2737em;
    padding: 4px 2px 4px 0px; 
    text-decoration: none; 
	font-size: 0.9em; 
	border: 1px solid #CCC; 
	color: #274385;
    /*border: 1px solid black;
	padding: 0.2em 1em;
    border-left-color: white; 
	border-top-color: white;
    color: maroon; 
	font-weight: bold;
	background-color: #ccc;*/
	background-color: #FFF; 
}

* html ul#Navigation a, * html ul#Navigation span {
    width: 8.6em;   /* Breite nach altem MS-Boxmodell für IE 5.x */
	w\idth: 9.68em;
}

ul#Navigation a:hover, ul#Navigation span, li a#aktuell {
	color: #FFF; 
	background-color: #0515EE; 
	font-size: 0.9em; 
	border: 1px solid #CCC; 
	padding: 4px 2px 4px 0px; 
	/*border-color: white;
    border-left-color: black; 
	border-top-color: black;
    color: white; 
	background-color: #1E347D;*/
}

li a#aktuell {  /* aktuelle Rubrik kennzeichnen */
    /*color: maroon; 
	background-color: silver;*/
	color: #FFF; 
	background-color: #0515EE;
}

ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */
	color: #274385;
	background-color: #FFF;
	font-size: 0.9em; 
	text-align: center;
}



