    /* <!-- */
    body {
        margin:0;
        padding:0;
        font-size:100%;
    }
	/* column container */
	.colmask {
		clear:both;
		float:left;
		width:100%;				/* width of page */
		overflow:hidden;
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;				/* width of page */
		position:relative;
	}
	.col1 {
	float:left;
		position:relative;
		padding: 0 0 0 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;
	}
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding: 0 0 0 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;
		/* border: 3px solid Red; */
	}
	/* 3 Column settings */
	.threecol {
		background:#F2E0AE;		/* right column background colour */
		background-image: url('http://www.marianneford.com/images/right-nav-bg.jpg');
		background-repeat: repeat-x;
		background-position: top left;
	}
	.threecol .colmid {
		right:20%;				/* width of the right column */
		background:#F4F5E8;		/* center column background colour */
		background-image: url('http://www.marianneford.com/images/center-bg.gif');
		background-repeat: repeat-x;
		background-position: top left;
	}
	.threecol .colleft {
		right:60%;				/* width of the middle column */
		background:#114477;		/* left column background colour */
		/* border: 3px solid Green; */
		background-image: url('http://www.marianneford.com/images/left-nav-bg.jpg');
		background-position: bottom;
		background-repeat: repeat-x;
	}
	.threecol .col1 {
		width:56%;				/* width of center column content (column width minus padding on either side) */
		left:102%;				/* 100% plus left padding of center column */
		/* border: 3px solid Blue; */
	}
	.threecol .col2 {
		width:19%;				/* Width of left column content (column width minus padding on either side) */
		left:25%;				/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
		/* border: 3px solid Purple; */
	}
	.threecol .col3 {
		width:19%;				/* Width of right column content (column width minus padding on either side) */
		left:85%;				/* 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) */
		/* border: 3px solid Silver; */
	}

