/*  =========================================================
Stylesheet für die Übungsseiten aus dem Buch "Little Boxes"
Stand:  Kap. 14 - Floats - 3spaltig mit margin
Datei:  bildschirm.css
Media:  screen
Datum:  22. Januar 2007
Autor:  Peter Müller
Aufbau  1. Kalibrierung und allgemeine Styles
        2. Styles für Layoutbereiche
        3. Sonstige Styles
nun angepasst für den Vokabeltrainer
========================================================== */

/* ======================================
   1. Kalibrierung und allgemeine Styles
   ====================================== */

/* Kalibrierung der wichtigsten Abstände */
*  { padding: 0; margin: 0; }
h2, h3, p, ul, ol { margin-bottom: 1em; }
ul ul { margin-bottom: 0; }
li { margin-left: 1em; }

/* Allgemeine Selektoren */

html { height: 101%; }
body {
   color: white;
   background-color: #8c8c8c;
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: small;
}
h1 { font-size: 150%; }
h2 { font-size: 130%; }
h3 { font-size: 110%; }
h4 { font-size: 100%; }


/* Hyperlinks */
a { text-decoration: none; outline: none;}
a:link { color: #785027; }
a:visited { color: #785027; }
a:hover,
a:focus {
  border-bottom: 1px solid #d90000;
  color:black;
  text-decoration:underline;
}
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;
}

.clearing { clear: both; }

/* ====================================
   2. Styles für die  Layoutbereiche
   ==================================== */

#wrapper {
   color: black;
   background:white url(vt-l.jpg) repeat-y top left;
   background-color: white;
   width: 1280px;
   margin: 10px auto;
}

#kopfbereich {
   position: relative;
   background-color: #c0c0c0;
   color: black;
   padding: 10px 20px 10px 20px;
}
   #kopfbereich p {
      padding: 5px 0 5px 0;
      margin-bottom: 0;
   }
   #kopfbereich p span {
      color: #d90000;
   }
 .werbung {
      background-color: white;
      position:absolute;
      float:right;
      width: 300px;
      top: 5px ;
      right: 5px;
      font-weight: bold;
      padding: 5px 0 5px 0;
      margin-bottom: 0;
}

#kopfbereich2 {
   float: left;
   position: relative;
   width: 730px;
   background-color: #c0c0c0;
   color: black;
   padding: 6px 20px 6px 20px;
}
#kopfbereich3 {
   float: left;
   position: relative;
   width: 470px;
   background-color: #c0c0c0;
   color: black;
   padding: 0px 20px px 20px;
}


#navibereich {
   float: left;
   background-color: #c0c0c0;
   width: 210px;
   padding-left: 20px;
   padding-top: 20px;
}
   #navibereich ul {
      width: 10em;
      border-top: 1px solid #d90000;
   }
   #navibereich li {
      list-style-type: none;
      border-left: 1px solid #d90000;
      border-bottom: 1px solid #d90000;
      margin: 0;
   }
   #navibereich a {
      display: block;
      text-decoration: none;
      color: black;
      background-color: #8c8c8c; /*alt ffe574*/
      padding: 4px;
      border-left: 3px solid #8c8c8c;
   }
   #navibereich a:hover,
   #navibereich a:focus,
   #startseite #navi01 a,
   #galerieseite #navi02 a,
   #kontaktseite #navi03 a {
      color: black;
      background-color: white;
      border-left-color: #d90000;
      border-bottom: none;
   }
   #navibereich a:active {
      color: black;
      background-color: #d9d9d9;
   }
/* neu */
#spalte03 {
   float: right;
   width: 450px;/*alt 110*/
   padding: 10px;
   padding-top: 20px;
}

#textbereich {
   padding: 20px 10px 20px 20px;
   margin-left: 190px; /*alt 130*/
   margin-right: 130px;
   #textbereich a {
      border-bottom: 1px dotted #cc0000;
   }
   #textbereich a:hover,
   #textbereich a:focus {
      border-bottom: 1px solid #d90000;
   }




/* =======================================
   E N D E   D E S   S T Y L E S H E E T S
   ======================================= */