﻿@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background: #FFFFFF;
}
#container {
	width: 100%;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 80%;
	color:#000000;
}
ul.circle {
	margin: 20px;
	padding: 0;
	list-style-type: circle
}
ul.none {
	margin: 20px;
	padding: 0;
	list-style-type: none
}
a {
	color: #0000CC;
}
a:hover, a:active, a:focus {
	color:#FF3366;
}
img {
	padding: 5px 5px 0 0;
}
h1, h2 {
	font-weight: bold;
	color: #0000CC;
	margin-left: 15px;
}
h1 {
	font-size: 225%;
}
h2 {
	font-size: 175%;
}
h3 {
	font-size: 110%;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0;
	margin-left: 15px;
	margin-bottom: 5px;
}
ul {
	padding:0px;
	margin:15px;
}
li {
	background-position:10px 5px;
	padding-left:10px;
}
#header {
	width:85%;
	margin: 1% 0 0 8%;
}
#header img {
	padding: 0 0.5em 0 0.5em;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-style: italic;
}
#header ul {
	padding: 0;
	margin: 1% 0 0 5%;
	font-weight:bold;
	width: 100%;
}
#header li {
	float: left;
	padding: 0;
	margin: 0;
	font-size: 110%;
}
#header li a {
	background: url(../images/nav_bar_back.jpg) repeat-x;
	height: 2em;
	line-height: 2em;
	float: left;
	width: 10em;
	display: block;
	border: 0.1em solid; color:#FFF;
	text-decoration: none;
	text-align: center;
}
#rightsidebar {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 42%;
	padding: 5px 0; /* top and bottom padding create visual space within this div */
}
#rightsidebar p, #rightsidebar h2 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#leftContent { 
	margin: 0 45% 0 0; 
}
#leftContent li {
	padding-left: 15px;
}
#rightContent {
	float: right; 
	width: 85%;
	padding: 5px 0;
}
#leftsidebar { 
	margin: 0 90% 0 0; 
}
table {
	border-collapse:collapse;
	margin-left: 5px;
}
th {
	border: solid #000 1px;
	background: #FD0100;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}
td {
	border: solid #000 1px;
	color: #000080;
	padding:0 5px;
}
#columns {
	width: 85%;
}
#columns p {
	margin-top: 0;
	margin-bottom: 5px;
	margin-left: 5px;
}
#column8 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	padding: 5px 10px; /* top and bottom padding create visual space within this div */
}
#column7 {
	float: right;
	padding: 5px 10px; 
}
#column6 {
	float: right;
	padding: 5px 10px; 
}
#column5 {
	float: right;
	padding: 5px 10px;
}
#column4 {
	float: right;
	padding: 5px 10px;
}
#column3 {
	float: right;
	padding: 5px 10px;
}
#column2 {
	float: right;
	padding: 5px 10px;
}
#column1 {
	float: right;
	padding: 5px 10px;
}
#footer { 
	font-size: 80%;
	text-align: center;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}