
@media screen {
	#Layoutbereich {
		width:1024px;
		margin:0px auto;
	}
	#Layoutbereich_innen {
		position:relative;
		left:0px;
		top:0px;
	}
	
	#Linker_Bereich {
		position:absolute;
		left:20px;
		top:65px;
		width:200px;
	}
	
	#Inhaltsbereich {
		background-color:#FFFFFF;
		position:absolute;
		left:240px;
		top:35px;
		width:740px;
		padding:20px;
	}
	#Inhaltsbereich_Hintergrund {
		position:absolute;
		left:240px;
		top:35px;
		width:780px;
		height:2000px; /* wird per JS geaendert */
	}
	
	#Werkzeugbereich {
		float:right;
		margin:10px 0px;
	}

	#Mittlerer_Bereich {
		float:left;
		width:355px;
		/*padding-bottom:10px;*/ /* padding verhindert Abschneiden am Ende (Kasten Text) */
	}
	
	#Rechter_Bereich {
		width:355px;
		margin-left:385px;
	}
}

@media print {
	#Linker_Bereich {
		display:none;
	}
	#Inhaltsbereich_Hintergrund {
		display:none;
	}
	#Werkzeugbereich {
		display:none;
	}
}

