/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:3px 3px 3px 3px;
	overflow:hidden;
}
/* 2 Column (left menu) settings */
.leftmenu {
	background:#000;		/* right column background colour */
}
.leftmenu .colleft {
	right:50%;			/* right column width */
	background:#000;	/* left column background colour */
}
.leftmenu .col1 {
	width:50%;			/* right column content width */
	left:50%	;			/* 100% plus left column left padding */
}
.leftmenu .col2 {
	width:44%;			/* left column content width (column width minus left and right padding) */
	left:50%;			/* (right column left and right padding) plus (left column left padding) */
}
