/*css2-Technik; http://css-tricks.com/perfect-full-page-background-image/
das Hintergrundblid wird im html mit <img> in ein eigenes div gesetzt

*/
html, body{/*vor allem notwendig für IE...*/
padding:0;
margin:0;
overflow:auto;
}
#bg {
/*dieses div wird im Browserfenster zentriert...*/
	position:fixed;
	top:-50%;
	left:-50%;
	width:200%;/*...und ist doppelt so gross wie das Browserfenster*/
	height:200%;
}
#bg img {
/*das Bild wird dann in dieses div gesetzt*/
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;/* das Bild soll das bg-div ausfüllen...*/
	margin:auto;
	min-width:50%;/*...oder zumindest halb so gross (=100% des Browserfenster) sein*/
	min-height:50%;
}
/*--------------*/
#content{
position:relative;
width:600px;
margin:0 auto;
border:1px solid #fff;
color:#000;
padding:10px;
}
p{margin-top:5px;}
.codeclass{
width:80%
margin-left:10%;
background:#fff;
padding:5px;
border-bottom:1px solid#ccc;
}