/* 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, .colleft {
	float:left;
	width:100%;
	position:relative;
}
.col1, .col2 {
	float:left;
	position:relative;
	padding:0 0 1em 0;
	overflow:hidden;
}
/* 2 Column (right menu) settings */
.rightmenu {
	/* background:#eee;		right column background colour */
	padding-top:10px;
}
.rightmenu .colleft {
	right:25%;			/* right column width */
	/* background:#fff;		left column background colour */
}
.rightmenu .col1 {
	width:74%;			/* left column content width (left column width minus left and right padding) */
	left:26%;			/* (right column width) plus (left column left padding) */
}
.rightmenu .col2 {
	width:23%;			/* right column content width (right column width minus left and right padding) */
	left:27%;			/* (right column width) plus (left column left and right padding) plus (right column left padding) */
}

