/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #1C7407 url(images/bg_site.jpg) repeat-x;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td, form, input, legend, select, option, address {
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}

/* Redefines the p, li, td, and address tags */
p, li, td, address {
	font-size: 11px;
}

/* Sets the line-height for these tags */
p, td {
	line-height: 18px;
}
li {
	line-height: 16px;
}
address {
	line-height: 14px;
	font-style: normal;
	}
	
/* Styles A links */
a img {
	border: 0px;
}
a:link {
	text-decoration: underline;
	color: #1C7407;
	}
a:visited {
	text-decoration: underline;
	color: #104D01;
 }
a:hover {
	text-decoration: none;
	color: #1C7407;
	}
a:active, a.selected {
	text-decoration: none;
	color: #166104;
	}
	
/* Style ordered and unordered lists */
ul, ol {
	margin-top: 0px;
}
ul {
	list-style: url(images/bullet.gif);
}
body>ul.leftul, body>div#leftpara, body>ul.rightul, body>div#rightpara, ul.leftul, div#leftpara, ul.rightul, div#rightpara {
	list-style: url(images/bullet.gif) inside;	
}

/* CLASSES to create columns for unordered lists in browsers other than IE. */
body>ul.leftul, body>div#leftpara {
	float: left;
	margin-left: 0px;
	margin-right: 15px;
	padding-bottom: 10px;
}
body>ul.rightul, body>div#rightpara {
	float: left;
	margin-left: 25px;
}

/* CLASSES to create columns for unordered lists in IE. */
ul.leftul, div#leftpara {
	float: left;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 10px;
	padding-bottom: 10px;
}
ul.rightul, div#rightpara {
	float: left;
	margin-left: 25px;
	margin-top: 10px;
}

/* Class to stop items from floating right or left */
.clear {
	clear: both;
}

/* Class to center text and images */
.center {
	text-align: center;
}

/* Class to underline text */
.underline {
	text-decoration: underline;
}

/* Styles h1, h2, h3, h4, h5 tags */
h1, h2, h3, h4, h5 {
	color: #104D01;
	}
h1, h2, h3, h4 {
	text-transform: uppercase;
}
h1 {
	font-size: 20px;
	padding: 0;
	margin: 5px 0px 5px;
}
h2 {
	font-size: 18px;
	padding: 0;
	margin: 0px 0px 8px;
}
h3 {
	font-size: 16px;
	padding: 0;
	margin: 0px 0px 6px;
}
h4 {
	font-size: 14px;
	padding: 0;
	margin: 0px 0px 4px;
}
h5 {
	font-size: 12px;
	padding: 0;
	margin: 0px 0px 2px;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Styles the DIV that serves as the container for the layout. Setting the left and right margins to auto will center DIV. */
div#container {
	width: 770px;
	margin: 0px auto;
	background: url(images/layout.gif) repeat-y; /* Faux column bg for page */
}

/* Creates DIV container for header. */
div#header {
	width: 770px;
	margin: 0px auto;
	}
	
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 220px;
	float: left;
	padding: 0px;
	color: #fff;
}
div#sidebar a {
	color: #fff;
}
div#sidebar address {
	padding: 10px 0px 10px 10px;
}

/* Creates DIV container for main content */ 
div#content {
	width: 550px;
	float: right;
	padding: 0px 0px 10px 0px;
	background: url(images/content_bg.jpg) no-repeat;
}
div#content p, h1, h2, h3, h4, h5, table {
	margin-left: 15px;
	margin-right: 20px;
}
div#content ol.list, ul.list {
	margin-left: 30px;
	margin-right: 20px;
}

/* Creates DIV container for copyright statement */
div#copyrght {
	font-size: 9px;
	width: 770px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	padding: 10px 0px;
	background: #156203 url(images/copyright_bg.gif) repeat-y;
	color: #fff;
	font-weight: bold;
}
div#copyrght a {
	color: #fff;
	font-weight: bold;
}

/* Create CLASSES to float images and groups of images in SPAN tags */
img.rt {
	float: right;
	margin: 5px 15px 10px 10px;
}
img.rtborder {
	border: 1px solid #2B5682;
	float: right;
	margin: 5px 15px 10px 10px;
}
img.lft {
	float: left;
	margin: 5px 10px 10px 15px;
}
img.lftborder {
	border: 1px solid #2B5682;
	float: left;
	margin: 5px 10px 10px 15px;
}
img.ctr {
	border: 1px solid #2B5682;
	text-align: center;
	margin: 5px auto;
}
