/****************************************
    Base Template One   23 November 2009
        Creates 3 Column Layout
    Only styles that create the layout
*****************************************/
body {
 min-width:600px;	/* Minimum width of layout - remove line if not required */
 max-width: 960px;
 margin: 20px auto;
 padding:0;
}

/***************
    Page Header
****************/
#header {
 float:left;
 width:100%;
 height: 110px;
 padding:0;
 margin:0;
}

#header #left {
 float: left;
 min-width: 185px;
 min-height: 185px;
}

#header #mid {
 float: left;
 width: 75%;
 min-height: 185px;
}

#header #right {
 display: none;
 float: right;
 width: 1%;
 min-height: 185px;
}

#StandardPageLinks {
 clear: both;
}

/**********************
    End of Page Header
**********************/

#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 */
}

#colmid {
 position:relative;
 float:left;
 width:200%;            /* Changes Width of Centre column and so moves Left hand side of Right column */
 left:220px;            /* Moves Left hand side of Centre column, which changes Width of left hand column,
                           change #col2 settings to position items in left hand column  */
}

#colright {
 float:left;
 width:100%;
 position:relative;
 left:50%;
 margin-left:-400px;
}

#col1wrap {
 float:right;
 width:50%;
 position:relative;
 right:100%;
}

#col1pad {
 margin:0 15px 0 415px;
 overflow:hidden;
}

#col1 {
 width:100%;
 overflow:hidden;
}

#col2 {
 position:relative;
 float:left;
 width:225px;           /* width for content in left column, but not the column itself, change #colmid for actual column */
 margin-left:-50%;      /* this causes a major change! Do not change */
 left:180px;            /* moves left hand side of content inside column */
 overflow:hidden;
}

#col3 {
 float:left;
 width:170px;
 position:relative;
 left:15px;
 overflow:hidden;
}

#footer {
 clear:both;
 float:left;
 width:100%;
 padding:0;
 margin:0;
}
