@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 #col1LT{
	float: right;
	width: 660px;
}

#content #sidebarLT{
	float: left;
	width: 240px;
}

main#col1{
	float: left;
	width: 660px;
	margin-bottom: 10px;
}

#content #sidebar{
	float: left;
	width: 235px;
	margin-left: 15px;
	padding-left: 5px;
	border-left: 1px solid #d1d3d6;
}
