@charset "utf-8";
/* CSS Document */

body  {
	background: #D3E2A5;
	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: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: #FFFFFF;
	padding: 0 10px 0 20px;  /* 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. */
	height: 96px;
} 
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 440px; /* 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: #ECF2D7 url(graphics/right_bkg.jpg) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 0px;
	height: 400px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #ECF2D7 url(graphics/location.jpg) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 0px;
	height: 399px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
#sidebar3 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* 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: #ECF2D7 url(graphics/right_bkg.jpg) no-repeat right bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 50px 0px 0px;
	margin: 0px;
	height: 399px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
#sidebar4 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #ECF2D7 url(graphics/qualitybuild.jpg) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 0px;
	height: 399px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
#sidebar5 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* 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: #ECF2D7 url(graphics/right_bkg.jpg) no-repeat right bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 50px 0px 0px;
	margin: 0px;
	height: 389px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
#sidebar6 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* 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: #ECF2D7 url(graphics/right_bkg.jpg) no-repeat right bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 50px 0px 0px;
	margin: 0px;
	height: 389px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
#sidebar7 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #ECF2D7 url(graphics/ecological_th.jpg) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 0px;
	height: 399px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}

#sidebarmap {
	float: right; /* since this element is floated, a width must be given */
	width: 440px; /* 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: #ECF2D7 url(graphics/location.jpg) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
	margin: 0px;
	height: 400px;
	border-top: 1px solid #FFFFFF;
	border-right: #FFFFFF;
	border-bottom: #FFFFFF;
	border-left: #FFFFFF;
}



#mainContent {
	height: 380px;
	width: 310px;
	float: left;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 20px;
} 
#footer {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: #FFA953;
} 
#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 */
}
#footer a {
	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 */
	font-weight: bold;
	color: #FFF;
}
#footer a:hover {
	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 */
	font-weight: bold;
	color: #FFF;
	text-decoration: underline;
}


#nav {
	background: #ECF2D7;
	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. */
	height: 28px;
	float: left;
	width: 800px;
	margin: 0px;
}

.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;
}
 

[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixRtHdr #sidebar1 { width: 220px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
#sidebar1 { padding-top: 30px; }
#mainContent {
	zoom: 1;
	background-image: url(graphics/maincontent_bkg.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
}
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]
#nav {
	background: #FFFFFF;
	padding: 0 10px 0 20px;  /* 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. */
	height: 80px;
}
.righttext {
	padding: 0;
	float: right;
	margin: 10px 0px 0px;
	text-align: right;
	background-color: #FFF;
}
.logo {
	background: #EEEEEE;
	padding: 0;
	float: left;
	margin: 0px;
}
p {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 0.7em;
	line-height: 1.4em;
	display: inline;
	font-weight: normal;
	color: #333333;
}
h1 {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 1.2em;
	color: #2D5926;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 14px;
	margin-left: 0px;
}
h2 {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 1em;
	color: #2D5926;
	font-weight: bold;
	padding: 0px;
	line-height: normal;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 7px;
	margin-left: 0px;
}
.strong {
	font-weight: bolder;
}
a {
	color: #F93;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
	color: #2D5926;
}
.green {
	padding: 0;
	margin: 0px;
	font-family: Arial, sans-serif;
	font-size: 0.7em;
	color: #336600;
	line-height: 1.4em;
}
#sidebarhousetypes {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #ECF2D7 url(graphics/housetypes.jpg) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 0px;
	height: 399px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
#contactform {
	float: right; /* since this element is floated, a width must be given */
	width: 390px; /* 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: #ECF2D7 url(graphics/right_bkg.jpg) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 40px 0px 10px;
	margin: 0px;
	height: 399px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}

