/* column container */
.col-mask {
	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 */
}
/* 3 column blog style settings */
.blog-style {
	/*background:#ff9;*/    	/* Right column background colour */
}
.blog-style .col-mid {
	float:left;
	width:200%;
	margin-left:-200px; 	/* Width of right column */
	position:relative;
	right:100%;
	/*background:#FFD8B7;*/    	/* Centre column background colour */
}
.blog-style .col-left {
		float:left;
		width:100%;
		margin-left:-200px; 	/* Width of centre column */
		/*background:#fff;*/    	/* Left column background colour */
}
.blog-style .col-1-wrap {
	float:left;
	width:50%;
	padding-bottom:1em; 	/* Centre column bottom padding. Leave it out if it's zero */
}
.blog-style .col-1 {
	margin:0 15px 0 415px;	/* Centre column side padding:
	                    	Left padding = left column width + centre column left padding width
	                    	Right padding = right column width + centre column right padding width */
	position:relative;
	left:100%;
	overflow:hidden;
}
.blog-style .col-2 {
	float:right;
	width:170px;        	/* Width of left column content (left column width minus left and right padding) */
	position:relative;
	left:185px;         	/* Width of the left-had side padding on the left column */
}
.blog-style .col-3 {
	float:right;
	width:170px;        	/* Width of right column content (right column width minus left and right padding) */
	position:relative;
	left:555px;
}
