

/* Stolen from http://matthewjamestaylor.com/blog/perfect-3-column.htm ( Thanks! :-D ) */

	/* column container */
	.colmask {
        margin-left: 10px;
	    clear:both;
	    float:left;
		overflow:hidden;	/* This chops off any overhanging divs */
	    position:relative;		/* This fixes the IE7 overflow hidden bug */
        width:100%;			/* width of whole page */
	}

	/* common column settings */
	.colright, .colmid, .colleft {
		float:left;
		position:relative;
		width:100%;				/* width of page */
	}

	.col1, .col2, .col3 {
		float:left;
		overflow:hidden;
		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 */
		position:relative;
	}
	/* 3 Column settings */
	.threecol {
		background:#c50;		/* right column background colour */
	}

	.threecol .colmid {
		background:#c50;		/* center column background colour */
		right:14%;				/* width of the right column */
	}
	.threecol .colleft {
		background:#f4f4f4;		/* left column background colour */
		right:62%;				/* width of the middle column */
	}
	.threecol .col1 {
		left:101%;				/* 100% plus left padding of center column */
		width:60%;				/* width of center column content (column width minus padding on either side) */
	}
	.threecol .col2 {
		left:17%;				/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
		width:22%;				/* Width of left column content (column width minus padding on either side) */
	}
	.threecol .col3 {
		left:80%;				/* Please make note of the brackets here: (100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
		width:13%;				/* 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;
    }
    
