/* select all divs */
div{
float: left;
clear: both;	
}

.container {
	width: 80%;
	height: 1000px;
	background-color: lightblue;
}

.header {
	width: 90%;
	height: 200px;
	background-color: darkblue;
	padding: 20px;
}


.menubox {
	width: 20%;
	height: 100px;
	background-color: white;
	margin-right: 5%;
	clear: none;
	font-family: Courier New;
	font-size: 24pt;
}


.contentholder {
	width: 90%;
	height: 600px;
	background-color: gray;
	padding: 20px;
	font-family: Courier New;
	font-size: 24pt;

}

.imgsize {
	height: 50%;
	width: 50%;
	float: right;
}





