﻿/* CSS layout */
#masthead {
}

#top_nav {
	background-color: #CC0000;
	color: #FFFFFF;
	width: 800px;
}
#container {
	border: thin solid #000000;
	position: relative;
	width: 800px;
}
#left_col {
	width: 200px;
	position: relative;
	left: 0px;
	top: 0px;
}
#page_content {
	position: absolute;
	width: 400px;
	top: inherit;
	left: 200px;
}
#right_col {
	width: 200px;
	position: absolute;
	right: 0px;
	top: 0px;
	height: auto;
}
#footer {
	width: 800px;
	border: thin solid #000000;
	text-align: center;
	top: auto;
}
.col_a {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	background-color: #cc0000;
	list-style-type: square;
	color: #FFFFFF;
	font-weight: bold;
	width: 100px;
	visibility: visible;
	margin-right: 20px;
	margin-left: 20px;
	padding: 1px;
	display: block;
}
