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

body { /* Das HTML-Element mit dem Namen body */ lue
   color: white; /* Schriftfarbe */
   background-color: #f3c600; /* 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; 
   width: 720px; /* Breite des Inhaltsbereiches */   
   margin-top: 10px;
   margin-right: auto; /* Abstand rechts automatisch */ 
   margin-bottom: 10px;
   margin-left: auto; /* Abstand links automatisch */ 
}
#kopfbereich {
   color: black; 
   background-color: #f3c600; /* Gelb-Orange */
   padding-top: 10px;
   padding-right: 20px; 
   padding-bottom: 0; 
   padding-left: 20px; 
}
#logo { /* Das HTML-Element mit dem Attribut id="logo" */ 
   color: black;
   background-color: white;
}
#navibereich { 
   padding-top: 5px ;
   padding-right: 20px; 
   padding-bottom: 5px;
   padding-left: 20px; 
} 
#textbereich { 
   padding-top: 20px ;
   padding-right: 10px; 
   padding-bottom: 20px;
   padding-left: 20px; 
}
#fussbereich {
   padding-top: 10px;  /* Innenabstand oben, unterhalb Rahmenlinie */
   padding-right: 20px;
   padding-bottom: 20px;
   padding-left: 20px;
   border-top: 1px solid #8c8c8c; /* Rahmenlinie oben */ 
   margin-top: 20px; /* Außenabstand oben, oberhalb Linie */
}
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; 
}
