/*GENERELT*/
* {margin: 0; padding: 0;}	/*Fjern standardafstande*/

body {
	background-color: #929292;
}

#container {
	background-color: #e6e6e6;
	margin: auto;	/*Centrering*/
	width: 1000px;
}



/*SIDEHOVED*/
header {
	background-color: white;
	height: 180px;
}



/*SIDEMENU*/
#submenu {
	float: left;
	width: 200px;
}



/*INDHOLD*/
#content {
	background-color: #ededed;
	float: right;
	min-height: 300px;		/*Større end #submenu’s højde*/
	width: 750px;
}



/*SIDEFOD*/
footer {
	background-color: #1f1f1f;
	clear: both;
}
