﻿/* CSS layout */

body {
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
}
#page {
	border: thin solid #800000;
	margin-right: auto;
	margin-left: auto;
	width: 800px;
	background-color: #FFFFFF;
}
#masthead {
	background-color: #FFFFFF;
	text-align: center;
}
#header {
	background-color: #A80730;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}
#container {
}
#navigation {
	float: left;
	width: 195px;
	margin-right: 5px;
	background-color: #0033CC;
}
#page_content {
	float: right;
	width: 600px;
	background-color: #FFFFFF;
}
#footer {
	clear: both;
	background-color: #A80730;
	color: #FFFFFF;
}



#navigation ul {
	list-style-type: none;
	width: 95%;
	display: block;
	padding: 0px;
	margin: 5px;
}
#navigation li {
	display: block;
	padding: 0px;
	margin: 10px;
}
#navigation a {
	border: thin solid #FFFFFF;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	padding: 5px;
	background-color: #A80730;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	text-align: center;
	font-size: small;
}
#navigation a:hover {
	color: #808080;
	text-decoration: none;
	text-align: center;
}