/*  =========================================================
Stylesheet für die Übungsseiten aus dem Buch "Little Boxes" 
Stand:  Ende Kap. 08 - Horizontale Navigation tabbed 
Datei:  bildschirm.css
Datum:  21. Dezember 2006
Autor:  Peter Müller 
Aufbau  1. Kalibrierung und allgemeine Styles 
        2. Styles für Layoutbereiche    
        3. Sonstige Styles 
========================================================== */

/* ====================================== 
   1. Kalibrierung und allgemeine Styles 
   ====================================== */

/* Kalibrierung der wichtigsten Abstände */
*  { padding: 0; margin: 0; }
h2, p, ul, ol { margin-bottom: 1em; }  
ul ul { margin-bottom: 0; } 
li { margin-left: 1em; } 

/* Allgemeine Selektoren */

html { height: 101%; } /* erzwingt Scrollbar im Firefox */
body { 
   color: white; 
   background-color: #8c8c8c; 
   font-family: Verdana, Arial, Helvetica, sans-serif; 
   font-size: small; 
}
h1 { font-size: 150%; } 
h2 { font-size: 130%; }
address {
   text-align: center;  
   font-size: 80%;      
   font-style: normal;  
   letter-spacing: 2px; 
   line-height: 1.5em;  
}
/* Hyperlinks */
a { text-decoration: none; outline: none;} 
a:link { color: #d90000; } 
a:visited { color: #cc6666; }
a:hover, 
a:focus { 
  border-bottom: 1px solid #d90000 
}
a:active { 
   color: white; 
   background-color: #d90000; 
}
/* Allgemeine Klassen und IDs */
.skiplink { 
   position: absolute; 
   left: -3000px; 
   top: -2000px; 
   width: 0px; 
   height: 0px; 
   overflow: hidden; 
   display: inline; 
}
#logo { 
   
	color: black;
   background-color: white;
   padding: 5px;
   border: 5px solid #d9d9d9; 
}

/* ==================================== 
   2. Styles für die  Layoutbereiche 
   ==================================== */

#wrapper { /* Das HTML-Element mit dem Attribut id="wrapper" */
   color: black; 
  	background-color: white; 
   width: 720px; /* Breite des Inhaltsbereiches */   
   margin: 10px auto;
}

#kopfbereich {
   color: black; 
   background: #cf1500;
   padding: 10px 20px 0 20px; 
}
   #kopfbereich p {
	       
		position:absolute;
      top: 50px ; 
      right: 300px;  
      font-weight: bold;  
      padding: 5px 0 5px 0; 
      margin-bottom: 0;
		font-size: 250% ;
	   color: white;    
		/*padding: 5px 0 5px 0; 
      margin-bottom: 0;*/  /* war 1em */
   }
	/*#kopfbereich p {
      position:relativ;
      top: 10px ; 
      right: 10px;  
      font-weight: bold;  
      padding: 5px 0 5px 0; 
      margin-bottom: 0; 
   }
   #kopfbereich p span {
      color: #d90000; */  

#navibereich { 
   text-align: right;  /* rechtsbündig */
   color: black;
   background: #cf1500; 
   padding: 5px 10px 4px 10px;  
   border-bottom: 1px solid #8c8c8c;
} 
   #navibereich ul { margin-bottom: 0; } 
   #navibereich li { 
      display: inline;
      list-style-type: none; 
      list-style-position: inside;
      margin: 0 ; /* war vorher 10px für rechts */ 
   }
   #navibereich a { 
      color: black; 
      background-color: #cf1500; 
      padding: 4px 8px; 
      border: 1px solid #8c8c8c;
   }  
   #navibereich a:hover,
   #navibereich a:focus,
   #startseite #navi01 a, 
   #kontaktseite #navi02 a { 
      color: black; 
      background-color: white; 
      border-bottom-color: white; /* Rahmenlinie weiss */ 
   }  
   #navibereich a:active { 
      color: black;
      background-color: white; 
   }  

#textbereich { padding: 20px 10px 20px 20px; 
 background-color: #7ea9cd;
}
   #textbereich a { 
      border-bottom: 1px dotted #cc0000; 
   }
   #textbereich a:hover,
   #textbereich a:focus { 
      border-bottom: 1px solid #d90000; 
   }

#fussbereich {
   background: #cf1500;
	padding: 10px 20px 20px 20px;
   border-top: 1px solid #8c8c8c; 
   margin-top: 20px; 
}
/* ======================================= 
   E N D E   D E S   S T Y L E S H E E T S 
   ======================================= */
