@charset "utf-8";
/* CSS Document */
/*  ====================================================
Stylesheet mit Reset, Restaurierung und grundlegender Formatierung
Datei:  fundament.css
========================================================== */

@media all { 

/* ==============================================
   TEIL I - Reset
   ============================================== */
* { padding: 0; margin: 0; }

/* ==============================================
   TEIL II - Restaurierung f�r mainContent
   ============================================== */

/* margin-bottom f&#65533;r &#65533;berschriften, Abs&#65533;tze, Listen etc. */
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6, 
.content p, .content blockquote, .content address, .content pre, 
.content ul, .content ol, .content dl, .content table {
   padding-bottom: 1em;
   
}


/* Zitate einr&#65533;cken */ 
.content blockquote { margin: 1em 2em; } 

/* Alle Listen etwas einr&#65533;cken */
.content ul, .content ol, .content dl { margin-left: 1em; }

/* Listenelemente etwas mehr einr&#65533;cken */
.content li { margin-left: 1em; } 

/* Definitionen in Definitionslisten noch mehr einr&#65533;cken */
.content dd { margin-left: 2em; }

/* Verschachtelte Listen ohne Au&#65533;enabstand oben/unten */
.content ul ul, .content ul ol, .content ul dl,
.content ol ul, .content ol ol, .content ol dl,
.content dl ul, .content dl ol, .content dl dl {
   margin-top: 0;
   margin-bottom: 0;
}

/* Aufz&#65533;hlungszeichen f&#65533;r Listenkisten */

/* Ebene 1 - ul: square (ausgef&#65533;lltes Rechteck); ol: Dezimalzahlen  */
.content ul { list-style-type: square; }
.content ol { list-style-type: decimal; }

/* Ebene 2 - ul: disc (ausgef&#65533;llter Kreis); ol: kleine Buchstaben */
.content ul ul { list-style-type: disc; }
.content ol ol { list-style-type: lower-alpha; }

.content ul ol { list-style-type: decimal; }
.content ol ul { list-style-type: square; }

/* Ebene 3 - ul und ol mit circle (nicht ausgef&#65533;llter Kreis) */
.content ol ol ol, .content ol ol ul, .content ol ul ul, .content ol ul ol,
.content ul ul ul, .content ul ul ol, .content ul ol ol, .content ul ol ul {
   list-style-type: circle;
} 

/* Auswahl in Auswahllisten (select) durch padding:0 schlecht lesbar */
.content option { padding-left: 0.2em; padding-right: 0.3em; }

/* Rahmen um fieldset und verlinkte Bilder entfernen */
.content fieldset, .content a img { border: none; }


/* ==========================================
   TEIL III - Grundlegende Formatierung  
   ======================================= */

/* =============================================
   1. html und body */

/* Bildlaufleiste im Firefox immer zeigen */
html { height: 101%; }

a {color:#0079B2; text-decoration:none;}

/* =============================================
   2. Schriftformatierung f&#65533;r &#65533;berschriften   */

.content h1 { font-size: 140%;}   
.content h2 { font-size: 130%; }  
.content h3 { font-size: 125%; } 
.content h4 { font-size: 120%; }  
.content h5 { font-size: 115%; }  
.content h6 { font-size: 110%; }  

} /* Ende @media - nicht l&#65533;schen! */

/* ======================================
   E N D E fundament.css
   ====================================== */





