/* CSS Document */body {    margin: 0;    padding: 0;    border: 0; 		   		/* This removes the border around the viewport in old versions of IE */    width: 100%;    background-color: white;	}	#container {	margin: 0px;	padding: 0px;	width: 100%; /* width of the layout -- can be set to any value including percentages */	min-width: 780px;	background-color: white;	overflow: hidden;	}#header{	padding : 0px;	margin: 0px;	width: 100%;	min-width: 700px;	height:100px;	background-color: white;	background-image: url("images/hdr-bg.jpg");	background-repeat: repeat-y;	overflow: hidden;	}#sidebar-right {	float: right;	width: 100px; /* width of the right sidebar -- can be set to any value including percentages */	margin: 0px;	margin-left:1%;	padding: 3px;	background-color: white;	overflow: hidden;	}#sidebar-left {	float: left;	width: 202px; /* witdh of the left sidebar -- can be set to any value including percentages */	margin: 0px;	margin-right:1%;	padding: 0px;	background-image: url("images/side-bg.jpg");	background-repeat: repeat-y;	overflow: hidden;	}#menu {	float:left;	top: 0;	left: 0;	width: 100%;	background-color: #193819;	}#content {	margin: 0px;	padding: 0px;	min-width: 300px;	height: 1%; /* IE6 hack... it's very minor, though */	background-color: white;	overflow: hidden;	}#content-inner {	width: 100%;	min-width: 300px;	overflow: hidden;	}#content-innerbox {	width: 98%;	min-width: 300px;	margin-top:10px;	padding: 2px;	border:1px solid #193819;	overflow: hidden;	}#navbar {	float:left;	top: 0;	left: 0;	width: 100%;	padding: 5px;	background: white;	}#footer {	clear: both;	margin: 0px;	padding: 5px;	width: 100%;	background-color: white;	color: #193819;	overflow: hidden;	}#boxL {	float: left;	width: 300px;	padding: 5px;	}#boxR {	float: left;	width: 340px;	padding: 5px;	}img.rt {	float:right;	margin-left:5px;	}img.lt {	float:left;	}/* Paragraph Settings */h1 {    text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 14pt;	font-weight: bold;	color: #193819;	padding: 5px;	}h2 {	margin: 0px;	padding: 5px;	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 12pt;	font-weight: bold;	color: #193819;	}h2.menu {	margin-bottom: 10px;	padding: 0px;	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 12pt;	font-weight: bold;	color: white;	}p {	margin: 0px;	padding: 5px;	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 10pt;	color: #193819;	}p.menu {	float: left;	width:190px;	height:20px;	margin: 2px;	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 10pt;	font-weight: bold;	color: white;	}p.footer {	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 8pt;	font-weight: bold;	color: #193819;	}li {		text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 10pt;	color: #193819;	}#menu a {	float:left;	width:190px;	height:20px;	margin:2px;	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 10pt;	color: #ffffff;	}#menu a:hover {	font-weight: bold;	background-color: #2e672e;	}#navbar a {	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 10pt;	font-weight: bold;	color: #193819;	}#navbar a:hover {	text-decoration: underline;	color: red;	}a.nav {	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 10pt;	font-weight: bold;	color: black;	}a.nav:hover {	text-decoration: underline;	color: red;	}#nav a {	text-decoration: none;	font-family: Arial, Helvetica, sans-serif;	font-size: 10pt;	font-weight: bold;	color: #2e672e;	}#nav a:hover {	text-decoration: underline;	color: red;	}fieldset {  clear: both;  width: 340px;  margin: 0 0 5px 0;  padding: 0;  border: 1px solid #BFBAB0;  background-color: #fff; text-decoration: none;font-family: Arial, Helvetica, sans-serif;font-size: 10pt;color: black;  }fieldset.select {  float: none;  width: auto;  border-style: none;  padding-left: 5px;  background-color: transparent;  background-image: none; }legend {color: black;font-weight: bold;border: 1px solid #BFBAB0;padding: 2px;}label {  position: relative;float: left;  width: 120px;  padding-left: 2px;margin-right: 2px;  text-align: left; }label em {  position: absolute;  left: 130px;  top: 0.5em; }	
