/*  ===============================================
Datei:  bildschirm.css
Datum:  2009-12-23
Autor:  Julia Bartsch
Aufbau: 1. Kalibrierung und Restauration
        2. Allgemeine Styles
        3. Styles für Layoutbereiche
        4. Sonstige Styles
================================================ */

/* ====================================== 
  1. Kalibrierung und Restauration
  ====================================== */
/* Reset - alle Abstände auf NULL */ 
*  { padding: 0; margin: 0; }
/* optional: erzwingt Scrollbar im Firefox */
html { height: 100%; margin-bottom: 1px; }
h2, p, ul, ol { margin-bottom: 1em; }  
ul ul { margin-bottom: 0; }
li { margin-left: 1em ; } 
/* hier ggfs. Abstände für weitere Elemente restaurieren */

/* ====================================== 
  2. Allgemeine Styles 
  ====================================== */
body {
  background: #f29400; 
  color: white; 
  font-family: Verdana, Arial, Helvetica, sans-serif; 
  font-size: small; 
  
}
a { 
  text-decoration: none;
  border: none; 
}
img {
    border-style: none;
}
/* Allgemeine Klassen und IDs */ 

/* ====================================== 
  3.  Styles für die Layoutbereiche 
  ====================================== */
#wrapper { 
  width: 800px; 
  margin: 10px auto;
  padding-top: 30px; 
}
#kopfbereich {
	background-image: url(pics/imnu_head.jpg);
	background-repeat: no-repeat;
	width: 800px;
	height: 110px;
	color: black;
	padding: 0;
}
  div#kopfbereich p span {
    color: #d90000; 
  }
#textbereich { 
	background-image: url(pics/imnu_mitte.jpg);
	background-repeat: no-repeat;
	width: 650px;
	height: 300px;
	margin-top: 24px;
  text-align: center;
  padding: 20px 0px 0px 150px;
}
#fussbereich {
	background-image: url(pics/imnu_fuss.jpg);
	background-repeat: no-repeat;
	width: 800px;
	height: 100px;
  padding: 0;
  margin-top: 0; 
}
/* ====================================== 
  4. Sonstige Styles 
  ====================================== */

  
  
/* ======================================= 
   E N D E   D E S   S T Y L E S H E E T S 
   ======================================= */
