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