@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	border: 0;
}

body  {
	font: 100% Verdana, Helvetica, Arial, sans-serif;
	background: #FFFFFF;
	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. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
a {
	font-size: 90%;
	font-weight: bold;
}
a:link {
	color: #449F4A;
}
a:hover, a:focus {
	color: #81C986;
}
.wrapper #container {
	width: 773px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.wrapper #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 227px;
}
.wrapper #header table {
	width: 773px;
	height: 227px;
}
.wrapper #headerlft {
	width: 192px;
}
.wrapper #headerrt {
	float: right;
	width: 581px;
	height: 227px;
}
.wrapper #headernav {
	float: left;
	width: 192px;
	height: 227px;
}
.wrapper #sidebar {
	float: left;
	width: 192px;
}
.wrapper #sidebarp{
	padding: 10px 10px;
}
.wrapper #sidebarp p{
	padding: 6px 6px;
	font-size: 90%;
}
.wrapper #sidebar h3{
	color: #8681C9;
}
.wrapper #sidebar2 {
	float: right;
	width: 230px;
	padding: 0;
	margin-right: 12px;
	text-align: right;
	font-size: 90%;
}
.wrapper #centerContent { 
	float: left; /* since this element is floated, a width must be given */
	margin: 0 0 20px 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 90%;
}
.wrapper #centerContent h1 {
	color: #8681C9;
}
.wrapper #centerContent h2 {
	color: #000000;
}
.wrapper #mainContent {
	margin: 0 0 0 193px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 90%;
}
.wrapper #mainContent p, h1, h2, h3 {
	padding: 0 10px 10px 10px;
}
.wrapper #mainContent h1 {
	color: #8681C9;
	font-style: italic;
}
.wrapper #mainContent h2 {
	color: #8681C9;
}
.wrapper #mainContent #formc {
	padding: 0 10px 10px 30px;
	color: #000000;
	font-size: 90%;
}
.wrapper #mainContent #formc table {
	width: 520px;
	padding: 0;
}
.wrapper #mainContent #form {
	padding: 0 10px 10px 10px;
	color: #000000;
	font-size: 90%;
}
.wrapper #mainContent #form table {
	width: 581px;
	height: 227px;
	padding: 0;
}
.wrapper #mainContent #formst {
	padding: 0 10px 10px 10px;
	color: #000000;
	font-size: 90%;
}
.wrapper #mainContent #formst table {
	width: 560px;
	padding: 0;
}
.wrapper #mainContent ul li{
	margin-left: 40px;
	padding: 0 10px 3px 10px;
	font-size: 100%;
}
.wrapper #mainContent a{
	font-size: 100%;
}
.wrapper #mainContent a:link{
	font-weight: bold;
}
.wrapper #mainContent a:hover, a:focus{
	color: #81C986;
}
.style1 {
	font-size: 100%;
	color: #6560A2;
	font-weight: bold;
}
.style2 {
	font-size: 125%;
	color: #6560A2;
	font-weight: bold;
}
.wrapper #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.wrapper #footer p {
	padding: 10px 0;
	text-align: center;
	font-size: 80%;
}
.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-right: 10px;
	font-size: 80%;
}
.fltlft { /* this class can be used to float an element left in your 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 a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	color: #FFF;
}
