/* CSS Document provides positioning of main elements of the page layout*/
div.screencentered {
position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	overflow: visible;
	background-color: #FFFFFF;
}
div.header {
position: absolute;
top: 0;
left: 0;
height: 162px;
}
div.navigation {
position: relative;
top: 162px;
left: 0;
width: 100%;
height: 23px;
z-index: 10;
}
div.backgroundnav {
	position: absolute;
	top: 159px;
	left: 0;
	width: 100%;
	height: 23px;
	z-index: 8;
	background: #94A1BB;
	visibility: visible;
}
div.contentholder {
position: absolute;
background-color: #FFFFFF;
top: 182px;
left: 0;
width: 100%;
height: auto;
z-index: 0;
}

div.footer {
position: absolute;
	width: 100%;
	height: 40px;
	background: #94a1bb;
}

