/*
	Type		: Cascading Style Sheets
	Document	: style
	Author		: Rouven Eisenberg
	Description	: Struktureller Aufbau von Kopf, Navigation, Hauptbereich
	Version		: 2008.12.31 (v1.2)
*/

/*
   Syntax:
   selector {property: value;}
   selector:	HTML-Tag, ID oder Klasse welche diese Eigenschaft zugewiesen wird
				z.B. body, #identifier oder .navi
   property:	Die Eigenschaft kann z.B. die Textfarbe sein (color)
   value:		Der Wert der Eigenschaft color kann z.B. "red" oder "#ff0000" sein
*/


/* HTML-Tags: */
body
{
	font-family: Helvetica, Verdana, Arial, sans-serif;
	margin-top: 0px; /* Kein Mindestabstand zum oberen Browserabstand */
	color: #ffffff;
	font-weight: bold;
	background-color: #000033;
}

img
{
	border: 0px;
}


/* CSS-Klassen: */
.kopf
{
	position: fixed;
	z-index: 1; /* Priorität der div-Layer festlegen; je höher die Zahl desto weiter im Vordergrund! */
	height: 115px;
	width: 978px;
	color: #33ffff;
	padding-top: 20px;
	padding-left: 70px;
	font-size: 28px;
	text-align: left;
	display: block;
	/*border: 1px solid #999999;*/
	background-image: url(../bilder/banner2_1045x135.jpg); /* Bild auf volle Breite strecken nicht möglich :-( */
	background-repeat: no-repeat;
}

.navi
{
	position: fixed;
	z-index: 1; /* Priorität der div-Layer festlegen; je höher die Zahl desto weiter im Vordergrund! */
	top: 136px;
	width: 200px;
	/*height: 656px;*/
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	/*border: 1px solid #999999;*/
}

.main
{
	position: absolute;
	top: 136px;
	width: 840px;
	/*height: 650px;*/
	margin-left: 202px; /* navi: width + 2x border */
	padding: 3px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	/*border: 1px solid #999999;*/
}

.button_ohnelink
{
	height: 22px;
	width: 182px;
	margin: 12px;
	padding: 2px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #000000;
	/*border: 1px solid #999999;*/
	/*background-color: #660000;*/
	background-image: url(../bilder/button_133x18_pushed.jpg);
	background-repeat: no-repeat;
}

.button :link, .button :visited
{
	height: 22px;
	width: 182px;
	margin: 10px;
	padding: 2px;
	font-size: 16px;
	text-align: center;
	color: #ffffff;
	display: block;
	text-decoration: none;
	/*border: 1px solid #999999;*/
	/*background-color: #111111;*/
	background-image: url(../bilder/button_133x18.jpg);
	background-repeat: no-repeat;
}

.button :link:hover, .button :visited:hover
{
	height: 22px;
	width: 182px;
	margin: 10px;
	padding: 2px;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	color: #000000;
	display: block;
	text-decoration: none;
	/*border: 1px solid #999999;*/
	/*background-color: #ffbb00;*/
	background-image: url(../bilder/button_133x18_pushed.jpg);
	background-repeat: no-repeat;
}

.headline
{
	font-weight: bold;
}

.counter
{
	font-size: small;
}

.preload
{
	display: none;
}

.umlauf
{
	float:left; /* Nachfolgende DIV-Elemente werden rechts von hier plaziert */
}

.umlaufend
{
	clear: both;
}


/* HTML-Tag.CSS-Klasse: */
img.abstand1
{
	padding-top: 60px;
}

img.abstand2
{
	padding-top: 100px;
}
