body {
	margin: 0px;
	background-color: black;
	/*smart*/
}


/*global selector */
div {
	float: left;
	clear: both;
}

/* gloal img selector */
img {
width: 50%;
margin-left: 25%;
float: left;
clear: both;
}


.container {
	background-color : green;
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	padding: 30px;
/* height will grow to fit child objects */
}



.menubox {
height: 100px;
width: 100px;
clear: both;
color: white;
background-color: black;
margin-top: 5px;
}

/*two items below are side by side and can not go over 100 percent width*/
.sidebar {
	background-color: red;
	min-height: 100px;
	width:20%;
	margin-left: 3%;
	clear: none;
}

/* header holds menubox   */


.textcontent {
	background-color: yellow;
	font-size: 30pt;
	
	width : 66%;
	padding: 2%;
	margin-top: 0px;


	margin-left: 3%;
	clear: none;
	min-height: 100px;
/* it will grow to fit all child objects */
}

