﻿/* CSS layout */
#masthead {
	position: relative;
	width: 100%;
	background-color: #99CC00;
}

#top_left {
	width: 200px;
	position: absolute;
	left: 0px;
	top: 0px;
}

#header {
	margin-left: 150px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: xx-large;
}

#container {
	position: relative;
	width: 100%;
}

#left_col {
	width: 150px;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: #CCFF99;
}
#page_content {
	margin-left: 150px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
}
#footer {
	background-color: #996633;
	color: #FFFF00;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
}

