/* KOMMENTAR ------------------------------------------------------------------
Positionierung und (fast) nichts als Positionierung.
Credits: http://www.highresolution.info/webdesign/yaml/
------------------------------------------------------------------------- K.P.*/

/* KOMMENTAR ------------------------------------------------------------------
Menue im Kopf
------------------------------------------------------------------------- K.P.*/
#topnav {
	position: relative;
	top: 10px;
	right: 10px;
	color: #fff;
	background-color: inherit;
	text-align: right; /* KOMMENTAR 
	Damit im Opera 6 wirklich rechts plaziert.
------------------------------------------------------------------------- K.P.*/
}

#nav {
	clear: both;
	width: 100%;
	z-index: 100;
}

#contentwrapper {
	clear: both;
	width: 100%;
	z-index: 10;
}

#left {
	float: left;
	width: 20%;
}

#right {
	float: right; 
	width: 25%;
}

#center {
	width: auto;
	margin-right: 25%; 
	margin-left: 20%;
}

.admin #center {
	width: auto;
	margin-right: 0; 
	margin-left: 0;
} /* KOMMENTAR 
	Administration. Volle Breite.
------------------------------------------------------------------------- K.P.*/

#left {z-index: 3;}
#right {z-index: 5;}
#center {z-index: 1;}
#left-layout {z-index: 4;}
#right-layout {z-index: 6;}
#center-layout {z-index: 2;}

#left, #right, #center {position: relative;}
#left-layout, #right-layout, #center-layout {position: relative;}

#footer {
	clear: both;
	width: auto;
}

/* KOMMENTAR ------------------------------------------------------------------
	Clearen der 3 Inhaltsspalten. Clearfix: classes.css
------------------------------------------------------------------------- K.P.*/
hr.clear_columns{
	content: "."; 
	display: block;  
	height: 0; 
	line-height: 0px; 
	clear: both; 
	float: left; 
	visibility: hidden; 
	border: 0; 
	padding: 0;
	margin: -2em 0 0 0; /* KOMMENTAR 
	Damit kein Leerraum zwischen Spalten und Footer entsteht
------------------------------------------------------------------------- K.P.*/
}