﻿/* CSS layout */
body {
	margin: 0;
	padding: 0;
	text-align: center;
}

#masthead {
	background-color: #EEEEEE;
		height: 267px;
	text-align: center;
	border-left-style: solid;
	border-left-width: medium;
	border-right-style: solid;
	border-right-width: medium;
	border-top-style: solid;
	border-top-width: medium;
	border-bottom-style: solid;
	border-bottom-width: thin;
}
#top_nav {
	background-color: #C0C0C0;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	height: 23px;
	text-align: center;
}

#container {
	min-width: 600px;
}

#left_col {
	width: 200px;
	float: left;
	background-color: #EEEEEE;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-width: thin;
	border-bottom-width: medium;
	border-left-width: medium;
	height: 2632px;
	text-align: center;
	font-size: large;
}
#right_col {
	width: 200px;
	float: right;
	background-color: #EEEEEE;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: thin;
	height: 2631px;
	text-align: center;
}
#page_content {
	margin-left: 200px;
	margin-right: 200px;
	background-color: #F3F3EF;
	height: 2632px;
	text-align: left;
}
#footer {
	border-style: solid;
	border-width: thin;
	clear: both;
	background-color: #C0C0C0;
}

