/*
	Formatierung	: DRUCKEN
	Beschreibung	: Formatierungen und Positionierungen für die Druckerausgabe
	Version		: 1.0
	Datum		: 22. November 2006
	
	Formatierte HTML-Tags
	body, a
	
	Klassenformatierungen
	.seiteninhalt		Seiteninhalt
	
	Positionierungen
	#logo			Logo
	#technavi		Technische Navigation
	#navi			Seitennavigation
	#navigation		Seitennavigation (JavaScript)
	#seiteninhalt		Seiteninhalt
*/

/* Ränder und Abstände */
.seiteninhalt { margin: 0px; padding: 0px; }

/* Schriftfarben */
a { color: #000000; } /* schwarz */

/* Hintergrundfarben */
body { background-color: #FFFFFF; } /* weiss */
a { background-color: transparent; } /* transparent */

/* Positionierung */
#logo { display: none; }
#technavi { display: none; }
#navi { display: none; }
#navigation { display: none; }
#seiteninhalt { position: absolute; top: 0px; left: 0px; z-index: 0; }

