/*
To change header left & right widths use the formula y = x/(100-x), where (100-x) is the width of the 
header-left-container area and the margin-left of the header-right-content area (x is the width of the 
header-right-content area). y is the width of the header-left-content and the margin-left of the header-center-content.
This formula uses percentages and keeps the left and right margins at the same width and the Barry logo centered.
*/

body {
	margin: 0;
}

hr {
	clear: both;
}

#header-body-container {
	position: relative;
}

/* header content area */

#header-container {
	position: relative;
	margin: 10px;
	/* width: 100% - 20px; */
	width: 100%;
	min-height: 100px;
}

#header-left-container{
	float: left;
	width: 84%;	/* (100 - x) */
	min-height: 100px;
}

#header-left-content{
	float: left;
	width: 19%;	/* y */
	min-height: 100px;
	text-align: left;
	/*background: grey;*/
}

#header-center-content{
	margin-left: 19%;	/* y */
	min-height: 100px;
	text-align: center;
	/*background: yellow;*/
}

#header-right-content{
	margin-left: 84%;	/* (100 - x) */
	min-height: 100px;
	text-align: right;
	/*background: blue;*/
}

/* main content area */

#main-page-container {
	clear: both;
	position: relative; 
	width: 100%;
	/* background: grey; */
}

#common-menu-content{
	position: relative;
	width: 175px;
}

#body-container{
	position: relative;
	/* background: yellow; */
	width: 100%;
}

#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;
}

span.top-align-box {
	vertical-align: top;
	text-align: left;
}

