body {
	margin: 0;
}

hr {
	clear: both;
}

#header-body-container {
	position: relative;
}

/* header content area */

#header-container {
	position: relative;
	margin: 10px;
	width: 100% - 20px;
	min-height: 100px;
}

#header-left-container{
	float: left;
	width: 80%;
	min-height: 100px;
}

#header-left-content{
	float: left;
	width: 25%;
	min-height: 100px;
	text-align: left;
}

#header-center-content{
	margin-left: 25%;
	min-height: 100px;
	text-align: center;
}

#header-right-content{
	margin-left: 80%;
	min-height: 100px;
	text-align: right;
}

/* main content area */

#main-page-container {
	clear: both;
	position: relative; 
	width: 100%;
}

#common-menu-content{
	position: relative;
	width: 175px;
	/*background: yellow;*/
}

#body-container{
	position: relative;
}

#hidden-content{
	margin: 10px;
}

#messages-header{
	margin: 10px;
	text-align: center;
}

#body-content{
	margin: 10px;
	/*background: blue;*/
}

/* footer area layers (can use absolute positioning here since nothing comes after it) */

#footer-container {
	position: relative;
	width: 100%;
	height: 100px;
}

#footer-left-content{
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
	height: 100%;
	text-align: left;
}

#footer-center-content{
	position: absolute;
	top: 0;
	left: 20%;
	width: 60%;
	height: 100%;
	text-align: center;
}

#footer-right-content{
	position: absolute;
	top: 0;
	right: 0;
	width: 20%;
	height: 100%;
	text-align: right;
}