/*
Definition:
bbp Farben
balu: rgb(0,105,198)
grau: rgb(74,73,74)
rot: rgb(222,40,41)
*/
body{
  min-width: 20em; /* Mindestbreite verhindert Anzeigefehler in modernen Browsern */
  margin:0px;
}

/* Inhalts Divisions */


#headline {
  position: absolute;
  height:3em;
  width:100%;
  background-color: white;
  z-index:100;
  border-width:0px;
  border-style:solid;
  border-color:rgb(0,105,198);
  border-bottom-width:1px;
  /*padding:2.5em;*/
}

#headline  #schriftzug{
  position: absolute;
  top: 0.6em; 
  right: 0.5em;
}


html>body #headline {  /* nur fuer moderne Browser! */
  position: fixed;
}



#leftnav {
  position: absolute;
  left: 0.5em;
  width: 20%;
  height:100%;
  padding-top:5em;
  background-color: white;
  z-index:99;
  border-width:0px;
  border-style:solid;
  border-color:rgb(0,105,198);
  border-right-width:1px;
}
html>body #leftnav {  /* nur fuer moderne Browser! */
  position: fixed;
}


#content {
  position:absolute;
  padding: 0em;
  margin-left: 25%;
  margin-right: 3%;
  padding-right:3%;
  margin-bottom: 2em;
  padding-bottom: 3em;
  margin-top: 6em;
  width:72%;

}
* #content {  /* versteckt vor Netscape 4 */
/*  background-color: #ff00e0; */ 
}

* html #content { 
  height:80%;  
  width:75%; 
  overflow:auto;
  right:0; 
  left:0; 
  margin-left: 25%;  
  margin-bottom: 2em; 
  }




#footer {
  position: absolute;
  height:2em;
  width:100%;
  bottom:0.0em;
  background-color: white;
  z-index:100;
  border-width:0px;
  border-style:solid;
  border-color:rgb(0,105,198);
  border-top-width:1px;
}
html>body #footer {  /* nur fuer moderne Browser! */
  position: fixed;
}


#footer #copyright{
  position: absolute;
  right:0.5em;
  font-size:0.6em;
}

