/* CSS Document */

/* Zuerst die grobe Struktur - Einteilung der großen Bereiche */

body {margin:0px; padding:0px; background-color:#fff;}

/* Der Rahmen, der das gesamte Layout zentrieren soll */
#rahmen {
	position:absolute;
	top:50%;
	left:50%;
	height:600px;
	width:800px;
	margin-top:-250px;
	margin-left:-350px;
	padding:0px;
	border-width:0px;
	background-color:#fff;
	}


