/* It is common to set printer friendly styles such as a white background with black text. */
body {
  background-color: #fff;
  background-image: none;
  border-color: #000; /* Sets the border color properties for an element using shorthand notation */
  color: #000;
  margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
}
h1 {
	font-size:12px;
}
.clearFloat/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
   {
  clear: both;
  display: block;
}
#outerWrapper {
	width: 700px;
}
#header {
	width: 700px;
}
#contentWrapper {
	width: 700px;
}
#footer {
	width: 700px;
}
#centrecontent {
	width: 700px;
	float: left;
	padding: 0px;
    }
#subpagecontent {
	width: 700px;
	padding: 0px;
	float: left;
	font-size: 10px;
    }	
	
#subpagecontent img {
	float: left;
	padding: 0px 20px 5px 10px;
	margin: 2px 5px 5px 0px;
	/* border: solid #666666 1px; */
	}
.testimonial {
	width: 700px;
	margin: 0px 0px 10px 0px;
	border-bottom: solid #D6D6D6 1px;
	clear: both;
	display: block;
	float: left;
}
.test-thumb {
	width: 100px;
	margin: 0px 5px 0px 0px;
	padding: 0px;
	float: left;
}
.test-intro {
	float: left;
	width: 590px;
}
