/* Farb-Schema
  Es werden für ein Schema 4 Farben benötigt:
  Und zwar die gewünschte Farbe...
    ..einmal als kräftiger Farbton  [strong]
    ..einmal ein klein wenig heller  [dusty]
    ..einmal als sehr hell           [light]
    ..einmal als nahezu weiß         [white]
*/

/* Schema: schwarz-weiß
  [strong] -> #000000
  [dusty]  -> #101010
  [light]  -> #ffffff
  [white]  -> #ffffff
*/


/* - basic ------------------------------------------------------------------------------------------------------------ */
  div#Header {
    border-bottom: 1px solid black;
  }

  div#Inhalt p#Footer {
    border-top: 1px solid black;
  }

  div#Page {
    background-color: #ffffff;         /* light */
  }

  ul#leftNavi a:hover {
    background-color: #101010;         /* dusty */
  }

  ul#leftNavi li ul li{
    border: 1px solid #e0e0e0;         /* light, Workaround gegen IE-Bug */
    /* height: 1.2em; */               /* alternativer Workaround */
  }

/* - struct ----------------------------------------------------------------------------------------------------------- */

  /* --> Inhalt ------------------------------------------------------------- */
  div#Inhalt table {
    background-color: #ffffff;         /* white */
    border-left: 2px solid #101010;    /* dusty */
  }

  div#Inhalt h2 {
    background-color: #000000;         /* strong */
  }

  div#Inhalt hr {
    color: #101010;                    /* dusty, IE */
    background-color: #101010;         /* dusty, Mozilla, Opera, ... */
  }

  div#Inhalt p.example {
    background-color: #ffffff;         /* white */
  }

  div#Inhalt ul.code {
    background-color: #101010;         /* dusty */
  }

  div#Inhalt ul.code li {
    background-color: #ffffff;         /* white */
  }

  div#Inhalt ul.alternativ {
    background-color: #ffffff;         /* white */
  }

  div#Inhalt form {
    border: 2px solid #101010;         /* dusty */
  }

  div#Inhalt .formField {    /* Scrollbar auskommentiert da im CSS-Validator als Fehler moniert, 17.11.05 */
    /* scrollbar-base-color: #ffffff; */    /* white */
    /* scrollbar-arrow-color: #101010; */   /* dusty */
    /* scrollbar-3dlight-color: #101010; */  /* dusty */
    /* scrollbar-shadow-color: #ffffff; */   /* light */
    border: 1px solid #101010;         /* dusty */
  }

  div#Inhalt div#formControl input {
    background-color: #ffffff;         /* white */
    border: 1px solid #101010;         /* dusty */
  }

  /* --> Info --------------------------------------------------------------- */