@charset "utf-8";
/* CSS Document */

/* Jeder Selektor wird hiermit auf 0 gesetzt */
* {
	margin:0;
	padding:0;
}

/* html */
html {
	height:100%;
}

/* Body */
body {
	min-height:100%;
	font-size:11px;
	font-family:Verdana, Geneva, sans-serif;
	background:url(images/background.jpg) top repeat #000;
}

/* Runde Ecken */
.curved { 
	-moz-border-radius:10px; /* Firefox */ 
	-webkit-border-radius:10px; /* Safari and chrome */ 
	-khtml-border-radius:10px; /* Linux browsers */ 
	border-radius:10px; /* CSS3 */ 
}

/* wrapper */
#wrapper {
	min-height:100%;
	height:auto !important;
	height:100%;
}

/* Content */
#content {
	font-size:100%;
}

#content a {
	color:#ffcc00;
}

#content h1,h2,h3,h4,p,ul,ol {
	margin:15px 0;
	line-height:20px;
}

#content h1 {
	text-align:center;
	font:200% Trebuchet MS;
	border-bottom:1px solid #ffffff;
}

#content h2 {
	font:150% Trebuchet MS;
	color:#222;
	border-bottom:1px solid #eee;
}

#content h3 {
	font:140% Arial;
	color:#222;
	border-top:1px solid #f6f6f6;
	border-bottom:1px solid #f6f6f6;
	padding:5px;
}

/* Special box */
#specialBox {
	color:#ffffff;
    text-shadow:
		0 0 10px #000000,
		0 0 20px #FFFFFF,
		0 0 30px #FFFFFF,
		0 0 40px #FFFF80,
		0 0 70px #FFFF80,
		0 0 80px #FFFF80,
		0 0 100px #FFFF80,
		0 0 150px #FFFF80;
	position: absolute;
	top: 15%;
	left: 10%;
	right: 10%;
	max-width: 500px;
}

/* Footer */
#footer {
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
	text-align:center;
	color: #ffffff;
}

#footer a {
	color:#ffcc00;
}