﻿ /* Formatdefinitionen für die Darstellung der Navigation
 body {
    font: normal 100.01% Helvetica, Arial, sans-serif;
    color: black; background-color: #ffffe0;
  }

  div#Rahmen { 	/*Rahmen und Hintergrund der Navigationsleiste */
    /* width: 47.1em;
    padding: 0.8em;
    border: 1px solid black; */
   /* background-color: silver; 
  }*/
  * html div#Rahmen {  /* Korrektur fuer IE 5.x */
    width: 48.7em;
    width: 47.1em;
  } 
  div#Rahmen div {
  	z-index: auto;
    clear: left;
  }
  ul#Navigation {
  z-index: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}

  ul#Navigation li {
	/* Definiert Rahmen um die horizontalen Menuepunkte und die Anordnung zu Folge-MP fest */
    list-style: none;
	float: left; /* ohne width - nach CSS 2.1 erlaubt */;
	position: relative;
	z-index:inherit;
	margin: 5px;										/***** geändert von 5 auf 15px 20.1.2016 */
/* Abstand zwischen den MP */padding: 0;
	background-color: #FFCCCC;			/* neu */
}
  * 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 {		/* Definiert die vertikalen MP */
    margin: 0; padding: 0;
    position: absolute;
    z-index: 10;
       /*  top: 1.5em; left: 0.3em;*/ 
    top: 20px; 			/* vertik. Abstand vom Beginn des übergeordneten MP ****** geändert von 20 auf 30px 20.1.2016    */
    left: 5px;			/* horiz. Einrückabstand zum übergeordneten MP *  ***** geändert von 5 auf 15px 20.1.2016 */

    display: none;  	/* Unternavigation ausblenden */
  }
  * html ul#Navigation li ul {  /* Korrektur fuer IE 5.x */
    left: -1.5em;
    left: -0.4em;
  }
  *:first-child+html ul#Navigation ul {  /* Workaround fuer den IE 7 */
    background-color:silver; 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.2em;			/*  geändert von 0.2 auf 0.5 am 20.11.2016 */
  }

  ul#Navigation a, ul#Navigation span {	/* Beschriftung der horozontalen und vertikalen MP */
    display: block;
	width: 110px;
	z-index: 10; 						/* Breite den in li enthaltenen Elementen zuweisen */ /*  padding: 0.2em 1em;*/;
	text-decoration: none;
	text-align: left;
	font-family: "Comic Sans MS";
	font-size: 16px;
	border: 1px #99CCFF dashed;
    /*  border-left-color: white; border-top-color: white;*/
	color: maroon;
	background-color: #F6F7F1;		/* Hintergrund akt. MP    #CCFFFF; */

}
  * html ul#Navigation a, * html ul#Navigation span {
    width: 8.6em;   /* Breite nach altem MS-Boxmodell für IE 5.x */
    w\idth: 6.4em;   * korrekte Breite fuer den IE 6 im standardkonformen Modus */
  }
  ul#Navigation a:hover, ul#Navigation span, li a#aktuell { 
    border: 1px #99CCFF dashed;
    /*  border-color: white;
    border-left-color: black; border-top-color: black;*/
    color: white; background-color: gray;
    }
  li a#aktuell {
	/* aktuellen Menuepunkt kennzeichnen */
	
	background-color: #F6F7F1;			/* Hintergrund akt. MP    #CCFFFF; */
	color: #0000FF;
}
  ul#Navigation li ul span {  /* aktuelle U-MP kennzeichnen */
    background-color: #CCFFFF;			/* Hintergrund akt. MP */
	color: #0000FF;

  }

