    /* General styles */
    body {
        margin:0;
        padding:0;
        border:0;			/* This removes the border around the viewport in old versions of IE */
        width:100%;
        min-width:600px;    /* Minimum width of layout - remove line if not required */
							/* The min-width property does not work in old versions of Internet Explorer */
    }
	/* Header styles */
    #header {
        clear:both;
        float:left;
        width:100%;
    }
	/* column container */
	.colmask {
		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 */
	}



	/* 2 column left menu settings */
    .leftmenulayout .colmid {
        float:left;
        width:200%;
        position:relative;
        left:17em;
    }
    .leftmenulayout .col1wrap {
	    float:right;
	    width:50%;
	    position:relative;
	    right:17em;
	    padding-bottom:1em;
	}
	.leftmenulayout .col1 {
        margin:0 1em 0 17em;
        padding-left: 1em;
        padding-right: 1em;
	    position:relative;
	    right:100%;
	    overflow:hidden;
	}
    .leftmenulayout .col2 {
        float:left;
        width:15em;
        position:relative;
        right:17em; /* was 11em, changed to 12(17) after adding 1em colored border */
    }


	/* holy grail 3 column settings */
    .threecolumnlayout .colmid {
        float:left;
        width:200%;
        margin-left:-12em; 		/* Width of right column */
        position:relative;
        right:100%;
    }
    .threecolumnlayout .colleft {
        float:left;
        width:100%;
        margin-left:-50%;
        position:relative;
        left:29em;         		/* Left column width(12->17) + right column width(12) */
    }
    .threecolumnlayout .col1wrap {
        float:left;
	    width:50%;
	    position:relative;
	    right:16em;        		/* Width of left column, was 12(17) em, changed to 11(16) after adding 1em colored border */
	    padding-bottom:1em; 	/* Centre column bottom padding. Leave it out if it's zero */
	}
	.threecolumnlayout .col1 {
        margin:0 13em 0 17em;     		/* Centre column side padding:
                            	Left padding = left column width + centre column left padding width
                            	Right padding = right column width + centre column right padding width */
        padding-left: 1em;
        padding-right: 1em;
        position:relative;
	    left:200%;
	    overflow:hidden;
	}
    .threecolumnlayout .col2 {
        float:left;
        float:right;			/* This overrides the float:left above */
        width:15em;        		/* Width of left column content (left column width minus left and right padding) */
        position:relative;
        right:1em;         		/* Width of the left-had side padding on the left column */
    }
    .threecolumnlayout .col3 {
        float:left;
        float:right;			/* This overrides the float:left above */
        width:10em;        		/* Width of right column content (right column width minus left and right padding) */
        margin-right:3em;  		/* Width of right column right-hand padding + left column left and right padding */
        position:relative;
        left:50%;
    }

/* vertical colored border */
.threecolumnlayout .colleft {
	border-right: 1em solid #fc0;
}
.leftmenulayout .colmid {
	border-left: 1em solid #fc0;
}

	/* Footer styles */
	#footer {
        clear:both;
        float:left;
        width:100%;
    }
    #footer p {
        padding:10px;
        margin:0;
    }
