/* Stylesheet für die Übungsseiten aus dem Buch "Little Boxes" - Stand Ende Kap. 04 */

body { /* Das HTML-Element mit dem Namen body */ 
   color: white; /* Schriftfarbe */
   background-color: #8c8c8c; /* Hintergrundfarbe */
   font-family: Verdana, Arial, Helvetica, sans-serif; 
   font-size: small; /* Schriftgröße */ 
}
#wrapper { /* Das HTML-Element mit dem Attribut id="wrapper" */
   color: black; 
   background-color: white;
   
}
#kopfbereich {
   color: black; 
   background-color: #f3c600; /* Gelb-Orange */
}
#logo { /* Das HTML-Element mit dem Attribut id="logo" */ 
   color: black;
   background-color: white;
}
h1 { font-size: 150%; } 
h2 { font-size: 130%; margin-bottom=1em;}
p, ul {margin-top:0; margin-right=0; margin-bottom=1em; magrgin-left:0;}
ul ul {margin:0;}
li {margin-top:0; margin-right=0; margin-bottom=0; magrgin-left:1em;}
address {
   text-align: center;  /* zentrieren */ 
   font-size: 80%;      /* etwas kleiner */
   font-style: normal;  /* normale Schrift, nicht kursiv */
   letter-spacing: 2px; /* Abstand zwischen den Buchstaben */
   line-height: 1.5em;  /* Zeilenabstand */ 
}
a {  /* Unterstreichung entfernen */
   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; 
}
/* Der Skiplink wurde hier ausgeblendet in dem er aus dem Fensterbereich verschoben wurde*/
.skiplink { 
   position: absolute; 
   left: -3000px; 
   top: -2000px; 
   width: 0px; 
   height: 0px; 
   overflow: hidden; 
   display: inline; 
}
