@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #efefef url(images/mainbg.jpg) repeat-x top;
	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 img {
	border:none;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(images/containerbg2.jpg) repeat-y;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #ffffff url(images/header2.jpg) no-repeat top;
	padding: 142px 0 0 25px;  /* 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: 25px;
	text-align: left;
	vertical-align: bottom;
	font: bold 70% Arial, Helvetica, sans-serif;
}
#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 */
}
#header a {
	color:#dfeaf5;
	text-decoration: none;
}
#header ul {
	display:inline;
	list-style:none;
}
#header li {
	float:left;
	padding:0 50px 0 0;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px;
	margin: 0 2px;
}
#sidebar1 h3.navsection {
	background: #FFFFFF url(images/navtop.jpg) repeat top;
	height: 30px;
	width: 160px;
	font: bold 80%/30px Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	text-indent: 15px;
	margin:0px;
}
#sidebar1 ul.navbox {
	border: 2px solid #e0dfd0;
	width: 156px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	background: #f4f4e9;
}
#sidebar1 ul.navbox li {
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	border-top: 1px none #e0dfd0;
	border-right: 1px none #e0dfd0;
	border-bottom: 1px solid #e0dfd0;
	border-left: 1px none #e0dfd0;
	padding-top: 6px;
	padding-bottom: 4px;
	padding-left: 10px;
}
#sidebar1 ul.navbox li a {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	color: #333;
}
#sidebar1 .specialnav {
	background: #fff6bf;
	border: 2px solid #ffd324;
	padding: 10px;
	font: 80% Arial, Helvetica, sans-serif;
	width: 136px;
	margin-top: 20px;
	margin-bottom: 20px;
}
#sidebar1 .specialnav h4 {
	font: bold 100% Arial, Helvetica, sans-serif;
	margin: 5px 0px 0px;
	padding: 0px;
}
#sidebar1 .specialnav p {
	margin: 5px 0px 5px;
	padding: 0px;
	color: #c28934;
}
#sidebar1 .specialnav a {
	margin: 5px 0px 5px;
	padding: 0px;
	color: #c28934;
}
#mainContent {
	margin: 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent h1 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font: bold 11px/14px "Gill Sans", Verdana;
	color: #444;
	margin:15px 0 10px;
}
#mainContent h2 {
	margin:0px;
	color: #69bd44;
	margin: 0;
	padding: 0px 0px 0px 0px;
	letter-spacing: -1px;
	font: bold 24px/24px Arial, Helvetica, sans-serif;
}
#container #mainContent td {
	font: 100% Arial, Helvetica, sans-serif;
	text-align: left;
	padding: 10px;
	border: 1px solid #CCCCCC;
}
#container #mainContent p {
	font: 80%/1.4 Arial, Helvetica, sans-serif;
	margin:10px 2px 10px 10px;
}
#container #mainContent h3 {
	letter-spacing: normal;
	margin: 0px;
	padding: 0px 10px;
	font: bold 100%/1em Arial, Helvetica, sans-serif;
}
#container #mainContent a:link, a:visited {
	color:#247fe6;	
}
#container #mainContent a:hover, a:active, a:focus {
	color:#9cb6d3;	
}
#container #mainContent td p {
	line-height: 1.4em;
}
#footer {
	padding: 0 10px 0 20px;
	text-align: center;
	font: 80% Arial, Helvetica, sans-serif;
	color: #666666;
}
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
table {
	text-align: left;
	border-collapse: collapse;
	border: 2px solid #c6d880;
}
h2#recommendedboxtitle {
	font-size: 130%;
	letter-spacing: normal;
}
#mainContent ul {
	margin-left:150px;
	list-style:none;
}
#mainContent li {
		margin-left:20px;
		font-size:90%;
		margin-bottom:8px;
}
#mainContent li a {
	text-decoration:none;
}