body, html {
	padding: 0px;
	margin: 0px;
	font-family: Helvetica;
	font-weight: 100;
	height: 100%
	}
	
div#pageContent {

	--headerHeight: 100px;
	
	position: relative;
	height: 100%
	}	

div#pageHeader {
	position: fixed;
	width: 100%;
	background-color: #DDD;
	height: var(--headerHeight);
	z-index: 1;
	}
	
div#companyName {
	position: absolute;
	height: 100%;
	line-height: var(--headerHeight);
	padding-left: 20px;
	color: #333;
	font-size: 2em;
	}
	
div#mainContentBlock{
	position: absolute;
	width: 1500px;
	background-color: #FFF;
	left: calc((100% - 1500px)/2);
	top: var(--headerHeight);
	height: 100%;
	}
	
div#mainContentBlock div#topBar{
	position: absolute;
	height: 100px;
	width: 100%;
	background-color: #5B5;
	}
	
div#mainContentBlock div.dataColumns{
	position: absolute;
	top: 100px;
	height: 100%;
	background-color: #FFF;
	width: 30%;
	overflow: auto;
	}

div#mainContentBlock h1	{
	background-color: #DDD;
	border: solid 1px #888;
	border-radius: 3px;
	font-weight: 100;
	font-size: 1.5em;
	color: #444;
	padding: 10px;
	}
	
form#mainForm {
	position: absolute;
	width: 50%;
	height: 100%;
	left: 25%;
	}
	
label.formLabels {
	color: #444;
	font-size: 11pt;
	padding: 4px;
	line-height: 20px;
	}
	
input.formFields {
	background: #DEF;
	color: #444;
	font-size: 10pt;
	height: 12px;
	width: 30px;
	}
	
div#bottomBar {
	position: absolute;
	height: 100px;
	width: 100%;
	top: 100%;
	}
	
input#submitButton {
	position: relative;
	height: 50px;
	width: 70%;
	background-color: #5B5;
	top: 50%;
	left: 15%;
	border-radius: 3px;
	text-align: center;
	line-height: 50px;
	font-size: 1.5em;
	color: white;
	}
	