@charset "utf-8";
body  {
	font: 14px Arial, Verdana, 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-image: url(images/bg.jpg);
}

#container { 
	width: 775px;  /* 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. */
	background-image: url(images/bg-body.jpg);
	background-repeat: repeat-y;
	border: 10px solid #153E18;
} 
#mainContent { 
	margin: 0 10px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#menu{
	height: 86px;
	width: 775px;
	background-color: #DAD4B4;
	padding: 0px;
	margin :0px;
}
#menu ul{
	list-style-type: none;
	margin: 0px;
	padding: 2px 0px 0px 2px;
	text-align: center;
}
#menu li{
	display: inline;
	float: left;
	width: 18%;
	text-align: center;
	background-color: #C3BA8A;
	margin: 3px;
	padding: 5px 3px 7px 3px;
	border: 1px solid #A09873;
}
#menu li a{
	text-decoration: none;
	color: black;
	font-size: 14px;
}
#menu li a:hover{
	color: white;
}
#rates{
	background-color: #C3BA8A;
	border: 1px solid #A09873;
	width: 734px;
	margin: 5px 0px 5px 0px;
	text-align: center;
}
#rates .half{
	margin: 10px;
	width: 345px;
	float: left;
	text-align: center;
}
#footer{
	background-color: #DAD4B4;
	height: 30px;
	width: 775px;
	margin-top: 15px;
	background-image: url(images/bg-footer.jpg);
	text-align: right;
}
.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;
}
img{
	border: 0px;
}
ul{
	margin: 0px 0px 0px 15px;
	padding: 0px;
}
.testimony-master{
	background-color: #B9A0A3;
	border: 1px solid #8F7074;
	padding: 10px;
	width: 380px;
	text-align: left;
	float: right;
}
.testimony-cherub{
	background-color: #B5BAA4;
	border: 1px solid #7C8266;
	padding: 10px;
	width: 380px;
	text-align: left;
	float: right;
}
.testimony-kitchen{
	background-color: #E1C385;
	border: 1px solid #926D39;
	padding: 10px;
	width: 380px;
	text-align: left;
	float: right;
}
.testimony-garden{
	background-color: #D0E0E4;
	border: 1px solid #69909B;
	padding: 10px;
	width: 380px;
	text-align: left;
	float: right;
}