/* folgende Definition bezieht sich auf TAG h1 */
h1 {
  color:#FF9F00;   /* Farbe orange */
  font-size:28pt;  /* Größe 28pt   */
  font-family:arial, "lucida console", sans-serif; /* Schriftart */
}

.textmarkergelb {
  background-color:yellow;
}
.textmarkerrot {
  background-color:red;
} 

body {
  text-align: center; /* Zentrierung IE */
}

#seitenbereich {
  text-align:left;  /* Inhalt wieder links */
  margin: 0 auto;   /* Zentrierung mitte */
  width: 780px;
  background-color:white;
}

#kopfzeile {
  background-color:lightskyblue;
  border-bottom:1px solid black;
}

#fusszeile {
  clear: both;
  background-color:lightskyblue;
  border-top:2px solid black;
}

#navi {
  float:left;
  width:13em;
  background-color:white;
}

#inhalte {
  margin-left: 14em;
  background-color:white;
}

#navi a:link { color:black; text-decoration:none; } 
#navi a:visited { color:black; text-decoration:none; } 
#navi a:focus { color:green; text-decoration:overline; } 
#navi a:hover { color:red; text-decoration:overline; } 
#navi a:active { color:orange; text-decoration:underline; } 

