/* orange = #d56400
 dunkel Blau = #1B2E68
 hell blau = #747FA2 */

   
  ul#Navigation {
    margin-left: 3px; 
    border-top: 1px solid #ffffff;	
    padding-left: 0;
    font-weight: 600;
    letter-spacing: 0.1em;
    font: 11px/20px tahoma, verdana, sans-serif;
	background-color: #1B2E68;
  }

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

  }
  * html ul#Navigation li {  /* Korrektur fuer den IE */
    margin-bottom: 0px;
  }

  ul#Navigation li ul {
    margin: 0; padding: 0;
    margin-left:2px;
    position: absolute;
    top: 21px; left: -3px; 	/* damit die Punkte untereinander stehen (nur Firefox) */
    display: none;  /* Unternavigation ausblenden */
    background-color:#1B2E68;

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

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

  }
  ul#Navigation li ul li {
    float: none;
    display: block;
  }

  ul#Navigation a, ul#Navigation span {
    display: block;
    /* width: 100px;   Breite den in li enthaltenen Elementen zuweisen */
    text-decoration: none; font-weight: 600;
    background-color:#1B2E68; 
    text-align:left;
    color: #ffffff;
	border-top: 1px solid #1B2E68;
	border-bottom: 1px solid #1B2E68;
	border-left: 1px solid #1B2E68;
  }
  ul#Navigation a, ul#Navigation span {
   /* width: 100px; Breite den in li enthaltenen Elementen zuweisen */
  }

  * html ul#Navigation a, * html ul#Navigation span {
    width: 80px;      /*  Breite nach altem MS-Boxmodell f&uuml;r IE 5.x */
    w\idth: 80px;   /*   korrekte Breite fuer den IE 6 im standardkompatiblen Modus */
  }
    
    ul#Navigation a:hover, li#Navigation span, li a#aktuell {
    color:#1B2E68;
   background-color: #d9dce7; 
  }
  
 
  li a#aktuell {  /* aktuelle Rubrik kennzeichnen */
    color: #ffffff;
    background-color:#1B2E68;
  }

  ul#Navigation li ul span {  /* aktuelle Unterseite kennzeichnen */
    border-color: none;
  }

  ul#Navigation a:hover .bullet { 
	display:inline;
	font-size: 0.8em;
    	margin:0px;
	background-color: #d56400;

  }

  ul#Navigation .bullet {
	display:inline;
	font-size: 0.8em;
	margin:0px;
    	background-color:#ffffff;
  }
 
 
