/* In dieser CSS-Datei wird die Seitengestaltung vorgenommen. 
Der Aufbau ist folgendermaßen gedacht:
1. body
1.1. #inhalt
1.1.1. #kopf
1.1.2. #content
1.1.2.1. #navigation
1.1.3. #fuss
Die Box #navigation gibt es nicht immer. Wichtig ist, dass beim Aufbau der Seite die verschiedenen Elemente in dieser Form verschachtelt werden, sonst stimmen die Abstände nicht!
*/

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


	/*border: 5px dashed yellow;*/
}

#inhalt {
	background-color: #fef1c1;

	width: 900px;
	height: auto;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	
	/*border: 10px dotted silver;*/
}

#kopf {
	width: 900px;
	background-color: inherit;
	text-align: center;
	/*border: 2px dotted red;*/
}

#content {
	width: 860px;
	height: auto;
	background-color: inherit;
	margin-left: 20px;
	margin-right: 20px;
	
	/*border: 2px dotted blue;*/
}

#navigation {
	background-color: inherit;
	width: 200px;
	height: auto;
	float: left;
	margin-right: 30px;
	padding-top: 20px;

	/*border: 2px dotted blue;*/
}

#fuss {
	width: 900px;
	background-color: inherit;
	margin-right: auto;
	margin-left: auto;
	text-align: center;	
	/*border: 2px solid black;*/
}
