/* CSS Document *//* makes sure the body views properly */html {	width: 100%;	height: 100%;}body {	width: 100%;	margin: 0px;	margin-top: 10px;	font-family: Arial, Helvetica, sans-serif;	font-size: 12px;}/* DIV:CONTAINER *//* Contains all the other elements and arranges them in a column *//* Is also centered */div#container {	width: 800px;	height: auto;	border: 1px solid #186710;	margin: 0 auto;	background: url(images/back_other.gif) repeat-y;	float: inherit;}/* DIV:HEADER *//* Contains logo */div#header {	width: 800px;	height: 125px;	background: url(images/header.jpg);	clear: both;}/* DIV:MAIN *//* Contains two columns */div#main {	width: 800px;	min-height: 100%;	clear: both;	float: left;}/* DIV:NAV *//* Contains left aligned navigation bar */div#nav {	width: 150px;	background: #186710;	clear: left;	float: left;	border-bottom: 1px solid #186710;}/* DIV:CONTENT *//* Contains right page content */div#content {	width: 650px;	clear: none;	float: left;}/* DIV:FOOTER *//* contains the footer */div#footer {	width: 800px;	clear: both;	background: #97c551;	height: 15px;}div#footer p {	font-size: 10px;	margin: 0px;	margin-top: 1px;	margin-left: 2px;}/* DIV.INPUT *//* use for input in any of the divs, gives some padding */div.input {	margin: 0px;	padding: 10px;}/* navigation links */div#nav a:link {	display: block;	margin-top: 1px;	padding-top: 1px;	padding-left: 5px;	color: #dae0d8;	width: 144px;	text-decoration: none;	background: #186710;	font-weight: bold;}div#nav a:active {	display: block;	margin-top: 1px;	padding-top: 1px;	padding-left: 5px;	color: #dae0d8;	width: 144px;	text-decoration: none;	background: #186710;	font-weight: bold;}div#nav a:visited {	display: block;	margin-top: 1px;	padding-top: 1px;	padding-left: 5px;	color: #dae0d8;	width: 144px;	text-decoration: none;	background: #186710;	font-weight: bold;}div#nav a:hover {	display: block;	margin-top: 1px;	padding-top: 1px;	padding-left: 5px;	color: #fff;	width: 144px;	text-decoration: none;	background: #38bc15;	font-weight: bold;}/* The title element of each page */h1 {	font-family: Georgia, "Times New Roman", Times, serif;	font-weight: bolder;	font-size: 16px;	font-style: italic;	color: #186710;	margin: 0px;}/* Content paragraph */div#content p {	text-align: justify;	margin: 0px;	margin-bottom: 5px;	width: 460px;}/* Links in the content frame */div#content a:link, a:active, a:visited {	text-decoration: none;	color: #186710;	font-weight: bold;}div#content a:hover {	text-decoration:none;	color: #009900;	font-weight: bold;}