body  {
	font: 13px "Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height: 20px;
	background: #9baa6b;
	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;
}
.spence #container { 
	width: 800px;
	background: #FFFFFF;
	margin: 0 auto;
	border-left: 3px solid #41b129;
	border-right: 3px solid #41b129;
	text-align: left;
} 
.spence #header {
	height:99px;
	background-image:url(../images/header.jpg);
	padding: 0;
}

li {
	line-height: 25px;
	list-style: square;
	font-size:13px;
}

a:link {
	color:#41b129;
}

a:hover {
	color:#ff9800;
}

.spence #accent {
	height:120px;
	background-image:url(../images/accent.jpg);
	padding: 0;
}

h2 {
	color: #ff9800;
}
.spence #sidebar1 {
	float: right; 
	width: 270px;
	margin-right: 20px;
	padding: 15px 10px;
	
}
.spence #mainContent { 
	margin: 0 340px 0 0; 
	padding: 0 20px; 
} 

.spence #gallery { 
	margin: 0;
	width: 800;
	padding: 0 20px; 
} 

.spence #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#41b129; 
} 
.spence #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 */
}
.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 */
.spence #sidebar1 { width: 220px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.spence #sidebar1 { padding-top: 30px; }
.spence #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
