/* 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: hell-grün
  [strong] -> #918B13
  [dusty]  -> #ABA416
  [light]  -> #E8E9AC
  [white]  -> #F5F7DD
*/


/* - basic ------------------------------------------------------------------------------------------------------------ */
  div#Page {
    background-color: #E8E9AC;         /* light */
  }

  ul#leftNavi a:hover {
    background-color: #ABA416;         /* dusty */
  }

  ul#leftNavi li ul li{
    border: 1px solid #E8E9AC;         /* light, Workaround gegen IE-Bug */
    /* height: 1.2em; */               /* alternativer Workaround */
  }

/* - struct ----------------------------------------------------------------------------------------------------------- */

  /* --> Inhalt ------------------------------------------------------------- */
  div#Inhalt table {
    background-color: #F5F7DD;                 /* white */
    /*  border-left: 2px solid #ABA416; */    /* dusty */
	/*erg. 30.06.06 : */
	border: 2px solid #ABA416;    			/* dusty */
	width: width:80%;  
	/* orig.: width:80%;  */ 
    float: left;
    margin: 0.5em 0.5em 0.5em 1.2em;
	padding:0;
  }


  /*erg. 30.06.06 : */
  div#Inhalt th {
	border-left: 2px dotted  #ABA416;  /* dusty */
	padding:0.2em;
    font-size: 0.80em;	
  }

  /*erg. 30.06.06 : */
  div#Inhalt td {
	border-left: 2px dotted #ABA416;  border-top: 2px dotted #ABA416;   /* dusty */
	padding:0.4em;
    font-size: 0.80em;	
	vertical-align: top;
  }

  

  div#Inhalt h2 {
    background-color: #918B13;         /* strong */
  }

  div#Inhalt hr {
    color: #ABA416;                    /* dusty, IE */
    background-color: #ABA416;         /* dusty, Mozilla, Opera, ... */
  }

  div#Inhalt p.example {
    background-color: #F5F7DD;         /* white */
  }

  div#Inhalt .alph_border {
    background-color: #F5F7DD;         /* white */
  }

  div#Inhalt ul.code {
    background-color: #ABA416;         /* dusty */
  }

  div#Inhalt ul.code li {
    background-color: #F5F7DD;         /* white */
  }

  div#Inhalt ul.alternativ {
    background-color: #F5F7DD;         /* white */
  }

  div#Inhalt form {
    border: 2px solid #ABA416;         /* dusty */
  }

  div#Inhalt .formField { /* Scrollbar auskommentiert da im CSS-Validator als Fehler moniert, 17.11.05 */
    /* scrollbar-base-color: #F5F7DD; */    /* white */
    /* scrollbar-arrow-color: #ABA416; */    /* dusty */
    /* scrollbar-3dlight-color: #ABA416; */  /* dusty */
    /* scrollbar-shadow-color: #E8E9AC; */  /* light */
    border: 1px solid #ABA416;         /* dusty */
  }

  div#Inhalt div#formControl input {
    background-color: #F5F7DD;         /* white */
    border: 1px solid #ABA416;         /* dusty */
  }

   
  /* --> Info --------------------------------------------------------------- */
