@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-color: #c2e770;
	background-image: url(../images/background.jpg);
	background-repeat: repeat;
	background-attachment:fixed
}

a:link {
	color: #55A51C;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #55A51C;
}
a:hover {
	text-decoration: underline;
	color: #C3E66E;
}
a:active {
	text-decoration: none;
	color: #C3E66E;
}

a.rlc:link {
	color: #55A51C;
	text-decoration: none;
	font-family:"Century Gothic", Arial, sans-serif;
	font-size:.7em;
}
a.rlc:visited {
	text-decoration: none;
	color: #55A51C;
	font-size:.7em;
	font-family:"Century Gothic", Arial, sans-serif;
}
a.rlc:hover {
	text-decoration:none;
	color: #55A51C;
	font-size:.7em;
	font-family:"Century Gothic", Arial, sans-serif;
	border-bottom:1px dashed #55A51C;
}
a.rlc:active {
	text-decoration: none;
	color: #55A51C;
	font-size:.7em;
	font-family:"Century Gothic", Arial, sans-serif;
}


img.left {
	padding-right:10px;
	padding-bottom:10px;
}

img.right {
	padding-left:10px;
	padding-bottom:10px;
}

.twoColElsLt #container {
	width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 2em auto 2em;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColElsLt #sidebar1 {
	float: left;
	width: 12em; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0;
	background-position: center 10px;
	background-repeat: no-repeat;
	padding-left: 10px;
	background-image: url(../images/menu.png);
}
.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {
	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;
}

.twoColElsLt #mainContent {
	margin: 0 1em 0 14em;
	font-size: 95%;
} 
.twoColElsLt #footer {
	background-color: #C3E66E;
	padding: 3px;
	text-align: right;
}


/* 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 */
	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;
}
body,td,th {
	color: #55A51C;
	font-family: Arial, Helvetica, sans-serif;
}

