@charset "utf-8";
/* CSS Document */
/*This creates an easy two column layout where you can insert your information. It is currently set up for a left hand sidebar with a right hand content, but can easily be switched by simply switching the float statements of each the #main and #sidebar to the other side*/
#content #sidebar{
	float: right;
/*	width: 250px; default width */
	width: 270px;
}

#content #main{
	float: left;
/*	width: 650px; default width */
	width: 630px;
}
