/* --struktur.css-- */
* {
  padding: 0;
  margin: 0;
}                             /* 168--56  --struktur.css--  */

body  {
  font: 100% Arial, Helvetica, sans-serif; /* font-Kurzform: SGrösse+SArt */
  text-align: center;                      /* für IE5 */
  background-color: #ffffff;  /* Farbe der Aussen-Bereiche */
  color: #000000;
  margin-top: 5px;           /* Aussen-Abstand zum Browserfenster */ 
}

#mother { 
  width: 1020px;               /* Breite der gesamten HP-Seite */
  text-align: left;           /* für IE5 */
  background-color: #ccddff;  /* dunkel-hell-blau */
  margin: 0 auto;             /* oAA;uAA=0 u. LAA;rAA==mittig da width=960px */
  border: 2px solid #ccddff;  /* Rahmen */
}

#kopf { 
  height: 70px;               /* Höhe des haeder */
  background-color: #ccddff;  
  padding: 10px;              /* Innen-Abstand, für Lage d. Bildes */ 
} 

#menu {
  background-color: #ccddff;
  border-top: 1px solid #eeeeff;    /* oberer Rand */
  padding: 2px 2px;                 /* padding=Innenabstand */
}

#inhalt {                           /* diese Box ist fest, schwebt nicht */
  background-color: #eeeeff;        /* hell-blau */
  padding: 5px 10px;               /* padding=Innenabstand oIA;uIA=20px LIA;rIA=10px */
} 

#fuss {
  clear: both;               /* float beenden */
  height: 30px;	             /* Höhe */
  border-top: 1px solid #eeeeff;      /* oberer Rand */
  padding: 5px;              /* Innen-Abstand */
  background-color: #ccddff; 
}