@charset "utf-8";
/* CSS Document */

/* ***************************************************************
Stylesheet mit Reset, Restaurierung und grundlegender Formatierung
Wird in das zentrale CSS geladen
Datei: fundament.css
Datum: 30.06.2008 
Autor: Deuringer Sascha 
*************************************************************** */

@media all { 

/* ****************************************
*** TEIL I - Alles zurücksetzen (Reset) ***
**************************************** */
* {
	font-size: 100%;
	padding: 0;
	margin: 0;
}

/* ****************************
*** TEIL II - Restaurierung ***
**************************** */
/* HTML5 Elemente fuer alte Browser formatieren */
article, aside, figure, footer, header, hgroup, nav, section { display:block; }

/* margin-bottom für Überschriften, Absätze, Listen etc. */
p, blockquote, address, pre, hr, ul, ol, dl {
	margin-bottom: .75em; /* halber Zeilenabstand */
    vertical-align: baseline;
}

/* Zitate einrücken */
blockquote { padding: .75em 2em .5em; background-color: #efece8; font-size: 120%; font-style: italic; }

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

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

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

/* Verschachtelte Listen ohne Außenabstand oben/unten */
ul ul, ul ol, ul dl,
ol ul, ol ol, ol dl, 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: disc; }
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: 0.2em; padding-right: 0.3em; }

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


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


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

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