
  ul#Navigation li {
    list-style: none;
    float: left;
    position: relative;
  }

  ul#Navigation li ul {
    margin: 0; padding: 0;
    position: absolute;
    top: 20px; left: 0px;
  }

  ul#Navigation li ul li {
    float: none;
    display: block;
    margin-top: 10px;

  }

  ul#Navigation a, ul#Navigation span {
    display: block;
    text-decoration: none;
    padding: 0px 10px 3px 10px;
    color:#565656 ; background-color: white;   }

  * html ul#Navigation a, * html ul#Navigation span {
    w\idth: 7em;  /* IE 6 in standards-compliant mode */
  }


/* dynamisches Ein-/Ausblenden */
  ul#Navigation li ul {
    display: none;
  }
  ul#Navigation li:hover ul {
    display: block;
    background: white;
  }

 body {
        font-family: 'Arial', sans-serif;
        font-size: 16px;
      }
      
a:link { color:#565656; text-decoration:none; font-weight:bold; } 
a:visited {color:#565656; text-decoration:none; } 
a:focus { color:#45A9EE; text-decoration:none; } 
a:hover { color:#45A9EE; text-decoration:none; } 
a:active { color:#565656; text-decoration:none; }
           
