/* Header styles */
#header {
	clear:both;
	float:left;
	width:100%;
        border-bottom:0px solid #000;
        padding-top:10px; 
}

 
/* 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%;			/* width of page */
	position:relative;
}

.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:0 0 1em 0;	        /* no left and right padding on columns, we just make them narrower instead 
					only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
}


/* 3 Column settings */
.threecol {
	background:#ececec;		     /* right column background colour */
}

.threecol .colmid {
	right:5%;			     /* 25% width of the right column */
	background:#fff;		     /* center column background colour */
        border-right:1px solid #c1c1c1;     /* right line for center column (dotted,dashed,solid,double,groove,ridge,inset,outset) */  
}

.threecol .colleft {
	right:90%;			     /* 50% width of the middle column */
	background:#ececec;	             /* left column background colour * ececec */  
        border-right:1px solid #c1c1c1;     /* left line for center column */
}

.threecol .col1 {
	width:86%;			/* 46%  width of center column content (column width minus padding on either side) */
	left:102%;			/* 102% 100% plus left padding (2%) of center column 100+2 */
}

.threecol .col2 {
	width:1%;			/* 21% Width of left column content (column width minus padding on either side 25-4) */
	left:11%;			/* 31% width of (right column) plus (center column left and right padding) plus (left column left padding) 25+2+2+2 */
}

.threecol .col3 {
	width:1%;			/* 21% Width of right column content (column width minus padding on either side) 25-2-2 */
	left:105%;			/* 85% (100% - left column width 25) plus (center column left and right padding 2+2) plus (left column left and right padding 2+2) plus (right column left padding 2) */
}

