﻿/* <!-- */
	/* General styles */
	/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		width:100%;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		width:100%;			/* width of page */
		position:relative;
	}
	.col1,
	.col2,
	.col3 {
		padding-top:5px;
		float:left;
		position:relative;
		overflow:hidden;
		padding-left:5px;
		padding-right:5px;
		padding-bottom:5px;

	}
	/* 3 Column settings */
	.threecol {
		background:#eee;		/* right column background colour */
	}
	.threecol .colmid {
					/* width of the right column */
		background:#fff;
				/* center column background colour */
	}
	.threecol .colleft {
					/* width of the middle column */
		background:#f4f4f4;	/* left column background colour */
	}
	.col1 {
					/* width of center column content (column width minus padding on either side) */
		width:200px;
				/* 100% plus left padding of center column */
	}
	.col2 {
		width:563px;
				/* Width of left column content (column width minus padding on either side) */
		
	}
	.col3 {
		width:200px;			/* Width of right column content (column width minus padding on either side) */
		
	}
	/* Footer styles */
	#footer {
		clear:both;
		float:left;
		width:100%;
		border-top:1px solid #000;
	}
	#footer p {
		padding:10px;
		margin:0;
	}
