@charset "utf-8";
#columnone {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 27%; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px; /* top and bottom padding create visual space within this div  */
}
#columnthree {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 27%; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px; /* top and bottom padding create visual space within this div */
	text-align: left;
}
#columntwo {
	margin: 15px 32%; /* 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. */
	text-align: left;
}
