/*  ====================================================
Stylesheet mit Reset, Restaurierung und grundlegender Formatierung
Datei:  fundament.css
Datum:  2010-04-30 
Autor:  Andrea Böhm
========================================================== */

@media all { 

/* ==============================================
   TEIL I - Reset
   ============================================== */
* { padding: 0; margin: 0; }

/* ==============================================
   TEIL II - Restaurierung 
   ============================================== */

/* margin-bottom für Überschriften, Absätze, Listen etc. */
h1, h2, h3, h4, h5, h6, 
p, blockquote, address, pre, 
ul, ol, dl, table {
	margin-bottom: 1em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 17px;
	font-weight: normal;
}

/* Zitate einrücken */ 
blockquote { margin: 0em 0em; } 

/* Alle Listen etwas einrücken */
 ol, dl { margin-left: 0em; }

/* Listenelemente etwas mehr einrücken */
li { margin-left: 0em; } 

/* Definitionen in Definitionslisten noch mehr einrücken */
dd { margin-left: 0em; }

/* Verschachtelte Listen ohne Außenabstand oben/unten */
ul ul, ul ol, ul dl,
ol ul, ol ol, ol dl,
dl ul, dl ol, dl dl {
   margin-top: 0;
   margin-bottom: 0;
}

/* Aufzählungszeichen für Listenkisten */

/* Ebene 1 - ul: square (ausgefülltes Rechteck); ol: Dezimalzahlen  */
ul { list-style-type: square; }
ol { list-style-type: decimal; }

/* Ebene 2 - ul: disc (ausgefüllter Kreis); ol: kleine Buchstaben */
ul ul { list-style-type: disc; }
ol ol { list-style-type: lower-alpha; }

ul ol { list-style-type: decimal; }
ol ul { list-style-type: square; }

/* Ebene 3 - ul und ol mit circle (nicht ausgefüllter Kreis) */
ol ol ol, ol ol ul, ol ul ul, ol ul ol,
ul ul ul, ul ul ol, ul ol ol, ul ol ul {
   list-style-type: circle;
} 

/* Auswahl in Auswahllisten (select) durch padding:0 schlecht lesbar */
option { padding-left: 0em; padding-right: 0.3em; }

/* Rahmen um fieldset und verlinkte Bilder entfernen */
fieldset, a img { border: none; }


/* ==========================================
   TEIL III - Grundlegende Formatierung  
   ======================================= */

/* =============================================
   1. html und body */

/* Bildlaufleiste im Firefox immer zeigen */
html { height: 101%; }

body {
   background-color: white;
   color: black; 
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: small; 
}

/* =============================================
   2. Schriftformatierung für Überschriften   */

/* Serifenschrift für Überschriften, inkl. h1 (alt-Text) */
h1, h2, h3, h4, h5, h6 {
   font-family: Verdana, "Arial", serif;
   font-weight: bold; 
}
/*  Überschriftengrößen auf Basis von small (13px) */
h1 { font-size: 200%; }     /* ca. 26px */ 
h2 { font-size: 184.62%; }  /* ca. 24px */ 
h3 { font-size: 153.85%; }  /* ca. 20px */ 
h4 { font-size: 138.46%; }  /* ca. 18px */ 
h5 { font-size: 123.08% }   /* ca. 16px */ 
h6 { font-size: 107.69%; }  /* ca. 14px */

} /* Ende @media - nicht löschen! */

/* ======================================
   E N D E fundament.css
   ====================================== */
