body {
    margin: 0px;
    padding: 0px;
    font: normal 100.01% Helvetica, Arial, sans-serif;
    color: black;
    background-color: #66cc00;

}
.titel{
      position: absolute;
      top: 0px;
      left: 0px;
}
/* Kasten links oben */
.oben {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 80%;
      height: 100px;
      z-index: 1;
}
/* Kasten rechts oben */
.logo {
      position: absolute;
      top : 0px;
      right: 0px;
      height: 100px;
      width:150;
      z-index: 2;
      margin-top: 10px;
      margin-bottom: 10px;
      margin-left: 10px;
      margin-right: 10px;
      font-weight: bold;

}
/* Der Kasten für die Navigation */
.navi {
      font-family: Arial, Helvetica, Verdana, sans-serif;
      position: absolute;
      top: 160px;
      right: 10px;
      width: 150px;
      padding-left: 0px;
      background: #CACACA;
      line-height: 25px;

}
/* Der Kasten für den Inhalt */
.inhalt {
        position: absolute;
        top: 100px;
        left: 0px;
        width: 600px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 40px;
        margin-right: 100px;
        line-height : 20px;
}
.unten {
       position: absolute;
       bottom: 0px;
       left: 0px;
       padding-left: 10;
       padding-bottom: 10;
}
/* Die Navigation mit Untermenü */

  ul#Navigation {
    width: 140px;
    margin: 0; padding: 5px;
    border: 1px solid black;
    background-color: rgb(102,204,0);
  }
  ul#Navigation li {
    list-style: none;
    left: 0px;
    position: relative;
    margin-bottom: 0em;
    line-height : 20px;
  }
    ul#Navigation li ul {
    margin: 0; padding: 0;
    position: absolute;
    display: none;  /* Unternavigation ausblenden */
  }
    ul#Navigation li:hover ul {
    display: block;  /* Unternavigation in modernen Browsern einblenden */
    top: 0; left: 140px
  }
    ul#Navigation li ul li {
    display: block;
    margin-bottom: 0em;
  }
  ul#Navigation a {
    display: block;
    width: 125px;  /* Breite den in li enthaltenen Elementen zuweisen */
    padding: 5px 5px;
    text-decoration: none; font-weight: bold;
    border: 1px solid black;
    border-left-color: white; border-top-color: white;
    color: maroon;
    background-color: rgb(102,204,0);
  }
  ul#Navigation a:hover {
    border-color: white;
    border-left-color: black; border-top-color: black;
    color: black;
    background-color: rgb(102,234,0);
  }
