body {
	font: 100% "Arial, Helvetica, sans-serif";
	background: #3D3DFF;
	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;
}
#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin:0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;/* this overrides the text-align: center on the body element. */
}
#header {
	background: url(../images/span.png) repeat-x;
	width:960px;
	height:220px;
	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. */
}
#header p {
	color:#FFFFFF;
	font-family: "Arial, Helvetica, sans-serif";
	font-weight:bold;
	font-size:12px
}
#header h1 {
	margin:0;
	padding-left: 50px;
	padding-top:100px; /* 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 */
	color:#FFFFFF;
	font-family: "Arial, Helvetica, sans-serif"; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#header img {
	position:relative;
	right:-620px;
	top:-137px;
	z-index:9999;
	width:208px;
	height:200px;
}
#navbar {
	background: url(../images/nav-span.png) repeat-x;
	margin-top:-2px;
	margin-left:0;
	height:47px
}
#navbar ul {
	float:left;
	display:inline;
	list-style:none;
	margin-top:2px;
	margin-left:10%;
}
#navbar ul li {
	display:inline;
	float:left;
	width:auto;
	padding-left:25px;
	margin:0;
}
#navbar ul li a.home, #navbar ul li a.home:active {
	background:url(../images/button-off.png) no-repeat;
	width:70px;
	height:39px;
	padding-top:2px;
	padding-right:0;
	display:block;
	color:#ff0000;
	font-weight:bold;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.home:hover {
	background:url(../images/button-on.png) no-repeat;
	width:70px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#FFFFFF;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.testimonial, #navbar ul li a.testimonial:active {
	background:url(../images/button-off-testimonial.png) no-repeat;
	width:143px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#ff0000;
	font-weight:bold;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.testimonial:hover {
	background:url(../images/button-on-testimonial.png) no-repeat;
	width:143px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#FFFFFF;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.faq, #navbar ul li a.faq:active {
	background:url(../images/button-off-faq.png) no-repeat;
	width:78px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#ff0000;
	font-weight:bold;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.faq:hover {
	background:url(../images/button-on-faq.png) no-repeat;
	width:78px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#FFFFFF;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.forum, #navbar ul li a.forum:active {
	background:url(../images/button-off-faq.png) no-repeat;
	width:78px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#ff0000;
	font-weight:bold;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.forum:hover {
	background:url(../images/button-on-faq.png) no-repeat;
	width:78px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#FFFFFF;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.contact-us, #navbar ul li a.contact-us:active {
	background:url(../images/button-off-testimonial.png) no-repeat;
	width:143px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#ff0000;
	font-weight:bold;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#navbar ul li a.contact-us:hover {
	background:url(../images/button-on-testimonial.png) no-repeat;
	width:143px;
	height:39px;
	padding-top:2px;
	display:block;
	color:#FFFFFF;
	text-align: center;
	text-decoration:none;
	line-height:32px;
	margin-top:auto;
	margin-bottom:auto
}
#sidebar1 {
	clear:left;
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #0080FF;
	border:1px solid black; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 10px 15px 10px;
	margin:-7px 0 0 0; /* padding keeps the content of the div away from the edges */
}
#mainContent {
	float:left;
	margin-top: 0px;
	margin-right:0;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 10px;
	min-height:500px;
	min-width:450px;
	width:450px;
}
#mainContent h1 {
	border-bottom: 1px solid #666666;
	color:#666666;
	font-family:Arial, Helvetica, sans-serif;
	background:url(../images/News.png) no-repeat left;
	padding-left:60px
}
#sidebar2 h1 {
	color:#FFFFFF;
	text-align:center;
	background:url(../images/h1.png) no-repeat;
	font-size:24px;
	padding-top:10px;
	height:50px
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #0080FF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 10px 15px 10px;
	margin:-7px 0 0 0;
	border:1px solid black; /* padding keeps the content of the div away from the edges */
}
#sidebar3 {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #0080FF url(../images/sidebar3cross.png) no-repeat;
	background-position:3px 92px;
	padding: 0 10px 15px 10px;
	margin:30px 0 0 0;
	border:1px solid black; /* padding keeps the content of the div away from the edges */
}
#sidebar3 h1 {
	color:#FFFFFF;
	text-align:center;
	background:url(../images/h1.png) no-repeat;
	font-size:24px;
	padding-top:10px;
	height:50px
}
#footer {
	padding: 0 10px 0 20px;
	background-color: #0000FF;
	text-align:center;
}
#footer a {
	color:#FFFFFF;
	text-decoration:none
}
#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-right: 8px;
	margin-top:2px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-left: 8px;
	margin-top:2px;
}
.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;
}
