body,html
{
    background-image:none;
    color:#000;
    font-family: arial, sans-serif;
    font-size:16px;
    text-align: left; /* Zentrierung IE */
}
.seitenbereich {
    width: 800px;     /* Breite des gesamten Bildschirms */
    margin: 0 auto;   /* Zentrierung mitte */
}
#kopf {
	background-image: url(resources/_wsb_keyvisual.jpg);
    width: 800px;     /* Breite des gesamten Bildschirms */
	height: 240px;
}
#logo {
    width: 200px; 
	height: 200px;
	margin-top: 20px;
	float: left;
}
#kopftext {
	height: 240px;
	margin-left: 30px;
	float: left;
}
/*  Design der Hauptnavigation  */
#menuezeile {
  background-color:lightgreen;
  position: absolute; 
  width: 800px;
}
#menuezeile ul {
	margin-top: 0px;
    list-style: none;         /* keine Aufzählungspunkte */
}
#menuezeile li {
    float: left;			/* Steuerung horizontal */
    width: auto;                     /* Breite des Links  */
    padding: 20px;               /* Innenabstand */
    border-right: 1px white solid;    /* Rahmenfarbe Auflistungpunkt */
    background-color: lightgreen;   /* Hintergrundfarbe   */
}
/* Pseudoklassen zu den Links */
/* Achtung !!  Reihenfolge der Pseudoklassen einhalten */
a:link    { color: black; } 
a:visited { color: green; }  
a:focus   { background-color: green; }
a:hover   { background-color: yellow; }
a:active  { background-color: red;  outline: none; }
#inhalte {
  background-color:lightyellow;
  position: relative; 
  top: 0px;
  width: 800px;
  padding-top: 20px;
}
#fusszeile {
  background-color:lightgreen;
  border-top:1px solid black;
  position: absolute;
  bottom: 0;
  width: 800px;
}
/*  Block am rechten Rand, falls einmal notwendig  */
#infokasten {
  float:right;
  width: 20em;
  background-color:yellowgreen;
}
/*  Steuerung mit feedback auf den Benutzer, spezifisch zu einer Navigation 
    Optik der Links je nach Aktion veraendern  */

#navi a:link    { color:blue;   text-decoration:none; }
#navi a:visited { color:black;  text-decoration:line-through; }
#navi a:focus   { color:green;  text-decoration:none; }
#navi a:hover   { color:red;    text-decoration:overline; }
#navi a:active  { color:orange; text-decoration:none; }

