#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #a0d5b5; /* the background color will be displayed for the length of the content in the column, but no further */
	color:#000;
	border-right:#00853f solid 1px;
	border-bottom:#00853f solid 1px;
}
#sidebar1 h2	{
	background-color:#00853f;
	display:block;
	color:#fff;
	padding:4px 6px;
	font-size:12px;
}
#sidebar1 p	{
	padding:5px 10px;
	font-size:11px;
	line-height:130%;
}
#sidebar1 li	{
	font-size:11px;
}

#sidebar1 ul	{
	padding: 10px 15px 10px 22px;
	}
	
#mainContent { 
	margin: 0 0 0 210px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px; 
} 