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

	/* column container craziness*/
.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 */
	/*background:;*/		/* Left column background colour */
}
.colmid {
	float:left;
	width:200%;
	position:relative;
	left:240px;			/*width of left col plus its padding (this is probably wrong)*/
	/*background:;*/    	/* Centre column background colour */
}
.colright {
	float:left;
	width:100%;
	position:relative;
	left:50%;
	margin-left:-510px;	/*width of right and left cols plus both sides padding on each*/
	/*background:;*/    	/* Right column background colour */
}
.col1wrap {
	float:right;
	width:50%;
	position:relative;
	right:100%;
}
.col1pad {
	margin:0 0px 0 540px;	/*(zero, center col right pad, zero, total width of left and right cols plus their padding PLUS center padding)*/
	overflow:hidden;
}
.col1 {
	width:100%;
	overflow:hidden;
}
.col2 {
	float:left;
	width:240px;		/*width of left col, no padding*/
	position:relative;
	margin-left:-50%;
	left:285px;			/*width of RIGHT col PLUS its padding PLUS left col left padding*/
	overflow:hidden;
}
.col3 {
	float:left;
	width:240px;		/*width of right col*/
	position:relative;
	left:15px;			/*left padding of right col*/
	overflow:hidden;
}

