/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	margin:0px auto 0px auto;
	width:90%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
	background-color:#FFFFFF;
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;			/* width of page */
	position:relative;
}
.col1 {
	float:left;
	position:relative;
	overflow:hidden;
}
.col1{padding:.7%; /* padding on columns */ margin-top:10px; margin-bottom:10px;}
/* 3 Column settings */
.threecol {
	background-color:#FFFFFF;		/* right column background colour */
}
.threecol .colmid {
	right:20%;			/* width of the right column */
	background-color:#FFFFFF;		/* center column background colour */
}
.threecol .colleft {
	right:50%;			/* width of the middle column */
	background-color:#FFFFFF;	/* left column background colour */
}
.threecol .col1 {
	width:96.5%;			/* width of center column content (column width minus padding on either side) */
	left:71%;			/* 100% plus left padding of center column */
	color:#FFFFFF;
}
