@charset "utf-8";
/* CSS Document */
*{
 	margin:0;
 	padding:0;
}

body{
	background-color:#333333;
}

#site{
	left: 50%;
	width: 1000px;
	margin-left: -500px; /* negative Hälfte von width:820px */
	position: absolute;
	top: 50%;
	height: 750px;
	margin-top: -375px; /* negative Hälfte von height:508px */
}


