/* 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: dunkel-grün
  [strong] -> #173F26
  [dusty]  -> #1F5634
  [light]  -> #DEE5C7
  [white]  -> #F0F3E4
*/


/* - basic ------------------------------------------------------------------------------------------------------------ */
  div#Page {
    background-color: #DEE5C7;         /* light */
  }

  ul#leftNavi a:hover {
    background-color: #1F5634;         /* dusty */
  }

  ul#leftNavi li ul li{
    border: 1px solid #DEE5C7;         /* light, Workaround gegen IE-Bug */
    /* height: 1.2em; */               /* alternativer Workaround */
  }

/* - struct ----------------------------------------------------------------------------------------------------------- */

  /* --> Inhalt ------------------------------------------------------------- */
  div#Inhalt table {
    background-color: #F0F3E4;         /* white */
    border-left: 2px solid #1F5634;    /* dusty */
  }

  div#Inhalt h2 {
    background-color: #173F26;         /* strong */
  }

  div#Inhalt hr {
    color: #1F5634;                    /* dusty, IE */
    background-color: #1F5634;         /* dusty, Mozilla, Opera, ... */
  }

  div#Inhalt p.example {
    background-color: #F0F3E4;         /* white */
  }

  div#Inhalt ul.code {
    background-color: #1F5634;         /* dusty */
  }

  div#Inhalt ul.code li {
    background-color: #F0F3E4;         /* white */
  }

  div#Inhalt ul.alternativ {
    background-color: #F0F3E4;         /* white */
  }

  div#Inhalt form {
    border: 2px solid #1F5634;         /* dusty */
  }

  div#Inhalt .formField { /* Scrollbar auskommentiert da im CSS-Validator als Fehler moniert, 17.11.05 */
    /* scrollbar-base-color: #F0F3E4; */    /* white */
    /* scrollbar-arrow-color: #1F5634;  */   /* dusty */
    /* scrollbar-3dlight-color: #1F5634; */  /* dusty */
    /* scrollbar-shadow-color: #DEE5C7; */  /* light */
    border: 1px solid #1F5634;         /* dusty */
  }

  div#Inhalt div#formControl input {
    background-color: #F0F3E4;         /* white */
    border: 1px solid #1F5634;         /* dusty */
  }

  /* --> Info --------------------------------------------------------------- */
