/* column container */
.colmask {
	position: relative; /* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	clear: both;
	float: left;
	width: 100%; /* width of whole page */
	overflow: hidden; /* This chops off any overhanging divs */
}

/* 2 column left menu settings */
.leftcol {
}
.leftcol .rightcol {
	position: relative;
	float: left;
	width: 200%;
	left: 150px;
	background: #fff;
}
.leftcol .right_col_wrap {
	position: relative;
	float: right;
	width: 50%;
	right: 150px;
	padding-bottom: 1em;
}
.leftcol .right_col {
	position: relative;
	margin: 0 15px 0 165px;
	right: 100%;
	overflow: hidden;
}
.leftcol .left_col {
	position: relative;
	float: left;
	width: 150px;
	right: 185px;
}