@charset "UTF-8";
/* CSS Document */

/* MAIN WRAPPER - use this to warp the different configurations */
.column_wrapper {
	width: 800px;
	margin: 0;
	padding: 0;
	float: left;
	background-color: #FFF;
}

/* 3 COLUMNS */
.three_column {
	width: 260px;
	margin: 0 10px 0 0;
	padding: 0;
	float: left;
	background-color: #FFF;
}
.three_column_nomargin {
	margin: 0;
}

/* HALF PAGE LAYOUT */
.half_page_left {
	width: 390px;
	margin: 0 10px 0 0;
	padding: 0;
	float: left;
}
.half_page_right {
	width: 390px;
	margin: 0 0 0 10px;
	padding: 0;
	float: right;
}

/* 2 COLUMNS - large left and small right */
.column_right {
	width: 190px;
	float: right;
	margin: 0;
	padding: 0 10px 0 20px;
	border-left: 1px #CCC solid;
}
.column_left {
	margin: 0 220px 0 0;
	padding-right: 20px;
	padding-left: 10px;
	border-right: 1px #CCC solid;
}
