body  {
	margin: 0px; /* 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: #000;
	background-color: #fff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 100%;
	background-image:none;
}
h1, h2, h3 {
	color: #55b947;
	line-height: 120%;
}
h3 {
	padding-top:5px;
}
#container {
	width: 640px;
	margin: 0;
	text-align: left;
	border: 1px solid #999999;
	padding: 0px;
	background-color: #FFFFFF;
	background-image:none;
} 
#container #header {
	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. */
	margin: 0px;
	width: 640px;
	height: 101px;
	background-image:none;
} 
#container #header p {
	display:none;
}
#container #header #printlogo {
	display:block;
}
#container #header #printlogo img, #container #contactinfo img {
	width:640px;
}
#container #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	display:none;
}
#sidebar1 p {
	padding-top: 18px;
	color: #cceac8;
	text-decoration: blink;
}
#sidebar1 ul {
	color: #cceac8;
	font-family: Verdana;
	font-weight: bold;
	list-style-type: none;
	line-height: 130%;
	padding: 18px 0px 0px 24px;
	margin: 0px 0px 0px 12px;
	font-size: 14px;
}
#container #sidebar1 ul li {
}
#container #sidebar1 ul li a:link {
	color: #cceac8;
	text-decoration:none;
	padding-left: 15px;
	list-style-type: none;
}
#container #sidebar1 ul li a:hover {
	color: #cceac8;
	text-decoration:none;
	background-image: url(images2/pointer.gif);
	background-repeat: no-repeat;
	background-position: left center;
	list-style-type: none;
}
#container #sidebar1 ul li a:visited {
	color: #cceac8;
	text-decoration:none;
	padding-left: 15px;
	list-style-type: none;
}
#mainContent {
	margin: 0 0 0 10px;
	padding: 0px;
} 
#mainContent h1 {
	padding: 0;
}
#mainContent p {
	padding: 0px 31px 0px 0px;
}
#footer {
	padding: 0;
	margin: 0px;
	background-color: #FFFFFF;
	height: 23px;
	border-top: 1px solid #80a0b0;
} 
#footer p {
	margin: 0 0 0 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0px 0px 5px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	line-height: 23px;
	font-family: Verdana;
	font-size: 11px;
	border:none;
}
.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;
}
#container #mainContent #testimonials {
	margin-right: 40px;
}

.box img {
	margin:5px 0;
}