/* CSS Document */
/* adapted from http://matthewjamestaylor.com/blog/ultimate-3-column-holy-grail-ems.htm */
   
	/* column container */
	.colmask {
		position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	    clear:both;
		top:21;
        width:964px;
        margin:0 auto 0;
		padding:0 0 1em;				/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
		background: transparent;
		text-align:center;
	}
	/* holy grail 3 column settings */
	.holygrail {
	    background:transparent url(../images/bg/bodybg.jpg) center bottom repeat-y; /* Right column background colour */
		text-align:left;
	}
	
    .holygrail .colmid {
        float:left;
        width:198%;
        margin-left:-14em; 		/* Width of right column */
        position:relative;
        right:100%;
		padding-bottom:1em;
        /*background: #ccc;*/    /* Centre column background colour */
    }
    .holygrail .colleft {
        float:left;
        width:100%;
        margin-left:-48%;
        position:relative;
        left:27em;         		/* Left column width + right column width */
       /* background:#fff; */   	/* Left column background colour */
    }
    .holygrail .col1wrap {
        float:left;
	    width:49%;
	    position:relative;
	    right:13em;        		/* Width of left column */
	    padding-bottom:1em; 	/* Centre column bottom padding. Leave it out if it's zero */
	}
	.holygrail .col1 {			/*center column text*/
        margin:0 16em 0 15em;   /* Center 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:205%;
	    overflow:visible;
		z-index:10;
		/*background-color:#C5f;*/
	}
		
    .holygrail .col2 {			/*left column text*/
        float:left;
        float:right;			/* This overrides the float:left above */
        width:13em;        		/* Width of left column content (left column width minus left and right padding) */
        position:relative;
        right:.7em;       		/* Width of the left-hand side padding on the left column */
		padding:0 .2em 5em .7em; 
		height:auto;
		/*background-color:#33FFFF;*/
	}
    .holygrail .col3 {			/*right column text*/
        float:left;
        float:right;			/* This overrides the float:left above */
        width:13.5em;        		/* Width of right column content (right column width minus left and right padding) */
        margin:10px 1em 0 .3em;  		/* Width of right column right-hand padding + left column left and right padding */
		padding:0 .3em .03em 1.6em;
        position:relative;
        left:51%;
    }


