@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	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: #bbb;
}

h1 {
	color:#006666;	
	font: 18px Verdana, Arial, Geneva, sans-serif;
	text-align:left;
}

blockquote {
	font-style:italic;
}

#container { 
	width: 810px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 10px 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. */
	/*background-color: #003333;*/
	background-color:#FFF;
	background-color:#300;
	padding-top: 5px;
	padding-bottom: 5px;
} 

#header { 
	margin: 0px 5px 3px 5px;
	background-color: white;
} 

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 120px;
	padding: 0px;
/*	background-color: #636; /* purple */
	margin-left: 5px;
}

#mainContent {
	clear:right;
	margin: 0px 5px 0px 140px;
	background-color: #FFF;
	padding: 0px 15px;
	min-height: 700px;
} 

.onTab {
	border-color:#66C;
	background-color:#069;
}

.offButton {
	font-weight:normal;
}

.onButton {
	font-weight:bold;
}

#topMenu {
	margin: 0px 5px 2px 140px;
	width: 666px;
	padding: 0px;
	display:block;
	font-size:14px;
	background-color: #CC9;
	text-align:center;
}

#topMenu table {
	margin-left: 10px;
}
#topMenu  a:link, a:visited {
		color:black;
	text-decoration:none;
}

#topMenu a:hover {
	color:#FFF;
	text-decoration:none;
}

.columnHead {
	border-bottom: thin black solid; 
	background-color:#CCB0A8;
	font-weight: bold;
	text-align:center;
}

.testimonial1 {
	padding-left: 10px;
	padding-right: 10px;
	font-style:italic;	
		margin-bottom: 30px;
}

.testimonial2 {
	padding-left: 10px;
	padding-right: 10px;
	font-style:normal;
	margin-bottom: 30px;
}

#footer { 
	margin: 10px 5px 5px 5px;
	padding: 0px;
	background-color: #FFF;
	height:50px;
} 

#footer a {
	margin: 10px;
	text-decoration: none;
	color:#009;
}

#footer p {
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	margin:0;
}

#footer img {
	margin: 0px 0px 0px 240px;
	padding: 0;
	border:0;
}

.WCName {
	font-weight:bold;
	font-style:italic;
}

.featureImg {
}

.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: 12px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
}
.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;
}
