@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* Es empfiehlt sich, margin (Rand) und padding (Auffüllung) des Body-Elements auf 0 einzustellen, um unterschiedlichen Browser-Standardeinstellungen Rechnung zu tragen. */
	padding: 0;
	text-align: center; /* Hierdurch wird der Container in IE 5*-Browsern zentriert. Dem Text wird dann im #container-Selektor die Standardausrichtung left (links) zugewiesen. */
	color: #000000;
	background: #ececec;
}
div#container {
	position:absolute; /* über dem Hintergrund zentriert (oben und unten) platzieren */
	top: 50%;
	left: 50%;
	width: 780px;  /* Mit einer Breite, die 20 Pixel unter der vollen Breite von 800 Pixel liegt, können Sie dem Browser-Chrome Rechnung tragen und gleichzeitig eine horizontale Bildlaufleiste vermeiden. */
	height: 500px;
   margin-left: -390px;
	margin-top: -258px; /* Durch automatische Ränder (in Verbindung mit einer Breite) wird die Seite zentriert. */
   text-align: left; /* Hierdurch wird die Einstellung text-align: center im Body-Element überschrieben. */
	/*border-top: 1px solid #C7E3B4;*/ /* Hierdurch wird in einigen Browsern verhindert, dass die absolute Position des Containers zu tief gesetzt wird */
	border: 1px solid #333333;
}
div#inhalt {
	float:left;
	margin:0 0 0 0px;
	width:600px;
	height:500px;
	padding:0px 0px 0 0px;
	background: #FFFFFF;
	/*border: 1px solid #CCCCFF;*/
}
* html div#inhalt {
	margin-top: 3px;
}
div#navi {
	height:270px;
	margin:0 0 0 600px;
	padding:10px 20px 0px 0;
	background: #FFFFFF;
	/*border: 1px solid #CCCCFF;*/
	
	text-align: right;
	font-size:11px;
}

div#navi ul {
	line-height: 20px;
}
div#navi li {
	margin: 0 0 0 34px; /* Abstände der Navilinks setzen*/
	list-style: none;
	display: inline;
}
.linkAktiv {
	text-decoration: none;
	color:#333333;
}
.linkAktiv a {
	text-decoration: none;
	color: #333333;
}
.linkAktiv a:hover {
	color: #333333;
}
.linkPassiv a {
	text-decoration: none;
	color: #888888;
}
.linkPassiv a:hover {
	color: #333333;
}
div#info {
	height:150px;
	margin:0 0 0 600px;
	padding:10px 20px 0px 0;
	background: #FFFFFF;
	/*border: 1px solid #CCCCFF;*/
	color: #333333;
	text-align: right;
	font-size:11px;
}
div#info a {
	text-decoration: none;
	color: #888888;
}
div#info a:hover {
	color: #333333;
}
div#logo {
	margin:0 0 0 600px;
	height: 30px;
	background: #FFFFFF;
	/*border: 1px solid #CCCCFF;*/
	
	padding:10px 20px 20px 0;
	text-align: right;
	font-size: 20px;
	color: Silver;
	font-weight:bold;
}
div#logo a {
	text-decoration: none;
	color: Silver;
}
.clearfloat {
	clear:both;
	height:0;
   font-size: 1px;
   line-height: 0px;
}