/* layout adapted from
   http://www.webreference.com/html/tutorial24/1.html
*/

#intro {				/* Kopf der Seite mit Überschrift/Autor/... obere Zeile(n) */
	position: fixed;
	top: 0; left: 0; right: 0; height: 5.4em;
	border-bottom: 0.2em solid #ACA250;
	text-align: center;
}

#intro h1 {
	font-size: 1.2em;
	margin:0.4em auto;
}

#intro #subtitle {
	color: #3366ff;
	font-weight: bold;
}

#navigation {			/* Menu-Struktur (links) */
	position: fixed;
	top: 5.6em; left: 0; bottom: 1.2em; right: 85%;
	padding: 0 0.5em;
	border-right: 0.2em solid #ACA250;
	overflow: auto;
}

#content {				/* Eigentliche Inhalte der Seite (rechts) */
	position: fixed;
	top: 5.6em; left: 15%; bottom: 1.2em; right: 0;
	overflow: auto;
	padding: 0 0.5em;
	text-align: left;
}

#copyright {			/* Copyright-Statement (untere Zeile) */
	position: fixed;
	left: 0; bottom: 0; right: 0; height: 1.2em;
	border-top: 0.2em solid #ACA250;
	font-size: 0.8em;
}

#copyright .lastchange {
	margin-left:1em;
	float: left;
	text-align: left;
}

#copyright .author {
	margin-right:1em;
	float: right;
	text-align: right;
}




.right {			/* Element rechts umlaufend */
	float:right;
	margin:2em 0 2em 2em;
}

.left {				/* Element links umlaufend */
	float:left;
	margin:2em 2em 2em 0;
}

.center {			/* Element zentrieren */
	text-align:center; margin-left: auto; margin-right: auto;
}



