/* Kalibrierung der wichtigsten Abstände */
*  { padding: 0; margin: 0; }
h2, p, ul, ol { margin-bottom: 1em; }  
ul ul { margin-bottom: 0; } 
li { margin-left: 1em; } 

/* Allgemeine Selektoren */

html { height: 101%; } /* erzwingt Scrollbar im Firefox */
body { 
   color: white; 
   background-color: #CCCCCC; 
   font-family: Verdana, Arial, Helvetica, sans-serif; 
   font-size: medium; 
}
h1 { 
font-size: 250%;
color: #000000;
} 
h2 { font-size: 230%; }
address {
   text-align: center;  
   font-size: 150%;      
   font-style: normal;  
   letter-spacing: 5px; 
   line-height: 1.5em;  
}
/* Hyperlinks */
a { text-decoration: underline; outline: none;} 
a:link { color: #151515; } 
a:visited { color: #151515; }
a:hover, 
a:focus { 
  border-bottom: 0px solid #151515 
}
a:active { 
   color: white; 
   background-color: white; 
}
/* Allgemeine Klassen und IDs */
.skiplink { 
   position: absolute; 
   left: -3000px; 
   top: -2000px; 
   width: 0px; 
   height: 0px; 
   overflow: hidden; 
   display: inline; 
}
#logo { 
   color: black;
   background-color: white;
   padding: 5px;
   border: 5px solid #d9d9d9; 
}

/* ==================================== 
   2. Styles für die  Layoutbereiche 
   ==================================== */

#wrapper { /* Das HTML-Element mit dem Attribut id="wrapper" */
   color: black; 
   background-color: white; 
   width: 780px; /* Breite des Inhaltsbereiches */   
   margin: 10px auto;
}

#kopfbereich {
   color: black; 
   background: #FFFFFF; 
   padding: 10px 20px 0 20px; 
}
   #kopfbereich p {
text-align: right;
      padding: 5px 0 5px 0; 
      margin-bottom: 0; /* war 1em */
   }

#navibereich { 
   text-align: right;  /* rechtsbündig */
   color: black;
   background: #ffe574; 
   padding: 5px 10px 4px 10px;  
   border-bottom: 1px solid #8c8c8c;
} 
   #navibereich ul { margin-bottom: 0; } 
   #navibereich li { 
      display: inline;
      list-style-type: none; 
      list-style-position: inside;
      margin: 0 ; /* war vorher 10px für rechts */ 
   }
   #navibereich a { 
      color: black; 
      background-color: #ffeda0; 
      padding: 4px 8px; 
      border: 1px solid #8c8c8c;
   }  
   #navibereich a:hover,
   #navibereich a:focus,
   #startseite #navi01 a, 
   #kontaktseite #navi02 a { 
      color: black; 
      background-color: white; 
      border-bottom-color: white; /* Rahmenlinie weiss */ 
   }  
   #navibereich a:active { 
      color: black;
      background-color: white; 
   }  

#textbereich { padding: 20px 10px 20px 20px; }
   #textbereich a { 
      border-bottom: 0px dotted #cc0000; 
   }
   #textbereich a:hover,
   #textbereich a:focus { 
      border-bottom: 0px solid #d90000; 
   }

#fussbereich {
   padding: 10px 20px 20px 20px;
   border-top: 1px solid #8c8c8c; 
   margin-top: 20px; 
}