/* standard_main.css 
 ****************************************************************************************************
 * globale CSS Datei für die Hauptseiten (Main-Frame) in der Standardansicht
 */


/* Body
 ****************************************************************************************************
 * Einstellung über die Hintergrundfarbe, das Hintergrundbild, etc.
 * Scrollbar-Einstellungen: kein Standard (nur im Internet-Eplorer ab 6 unterstützt)
 */

BODY
{
  background:			      #CCCCCC;
  scrollbar-base-color:               #333366;
  scrollbar-track-color:              #003399;
  scrollbar-face-color:               #003399;
  scrollbar-highlight-color:          white;
  scrollbar-3d-light-color:           white;
  scrollbar-dark-shadow-color:        white;
  scrollbar-shadow-color:             white;
  scrollbar-arrow-color:              #FFFFFF;
  margin: 0px;
}


/* Darstellung von Links
 ****************************************************************************************************
 * Die hier beschriebenen Pseudoformate gelten für das a-Element in HTML, daher wird vor 
 * dem Doppelpunkt das "a" notiert.  Die Reihenfolge muss unbedingt einbehalten werden.
 *
 * Folgende Syntax ist festgelegt:
 *
 *   :link      = für Verweise zu noch nicht besuchten Seiten
 *   :visited = für Verweise zu bereits besuchten Seiten
 *   :hover  = für Verweise, während der Anwender mit der Maus darüber fährt
 *   :active  = für gerade angeklickte Verweise
 *   :focus   = für Verweise, die den Fokus erhalten, z.B. "Durchsteppen" mit der Tabulatortaste
 */

a:link    
{
  text-decoration: none;
  font-family:     verdana; 
  color:           #993333; 
  font-style:      bold; 
  margin-bottom:   0px; 
  margin-top:      5px;
}

a:visited 
{
  text-decoration: none;
  font-family:     verdana; 
  color:           #993333; 
  font-style:      bold; 
  margin-bottom:   0px; 
  margin-top:      5px;

}

a:hover   
{
  text-decoration: none;
  font-family:     verdana; 
  color:           rgb(164,142,50); 
  font-style:      bold; 
  margin-bottom:   0px; 
  margin-top:      5px;

}

a:active  
{
  text-decoration: none;
  font-family:     verdana; 
  color:           #993333; 
  font-style:      bold; 
  margin-bottom:   0px; 
  margin-top:      5px;

}



/* Schriftformatierung
 ****************************************************************************************************
 * Festlegungen von Schriftart, -farbe, -größe und Abständen nach folgender festgelegter
 * Konvertierung:
 *
 *   h1:  Überschrift 1 Ordnung
 *   h3:  Menü (Text der nicht verlinkt ist, z.B. "|" Striche)
 *   p,li: Standardtext und Aufzählungen
 *
 * Alle Angaben in px (Pixel), da diese Einheit wirklich plattformunabhängig ist, 
 * die Einheit pt (Point...) ist es nicht, Umrechnung: 1 pt sind ca. 1,375 px
 */


h1
{
  font-family:    verdana;
  font-size:      15px;
  color:          #993333;
  font-style:     normal;
  margin-bottom:  0px;
  margin-top:     27px;
  font-weight:    light;
}

h3
{
  font-family:     verdana; 
  font-size:       13px; 
  color:           #993333; 
  font-style:      bold; 
  margin-bottom:   0px; 
  margin-top:      5px;
}

p,li
{
  font-family:     verdana;
  font-size:       11px;
  color:           #993333;
  font-style:      normal;
  line-height :    16px;
  margin-top:      0px;
  margin-bottom:   0px;
}



