@charset "utf-8";
/* CSS Document */

/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		width:100%;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;			/* width of page */
		position:relative;
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:1em 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 */
		overflow:hidden;
	}
		.col1 a {
	font-weight:bold;
	color:#508fc4;
	text-decoration :none;
}
	.col1 a:hover{
	color:#ffffcc;
	background-color:#508fc4;
	text-decoration :none;
}
	/* 3 Column settings */
	.threecol {
		background:#fff;		/* right column background colour */
	}
	.threecol .colmid {
		right:28%;			/* width of the right column *//* width of the right column (R+p*2)*/
		background:#fff;		/* center column background colour */
	}
	.threecol .colleft {
		right:52%;			/* width of the middle column (C+p*2)*/  
		background:#ffc;	/* left column background colour */      
		
	}
	.threecol .col1 {
		width:50%;			/* width of center column content (column width minus padding on either side) (C)*/ 
		left:101%;			/* 100% plus left padding of center column (100%+p)*/     
		margin-top:0px;   
			
	}
	.threecol .col2 {
		width:18%;			/* Width of left column content (column width minus padding on either side) (L) */                               
		left:31%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding)(R+p*5) */ 
		margin-top:1em;


	}
	.threecol .col3 {
		width:26%;			/* Width of right column content (column width minus padding on either side) (R) */                                                           
		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) 
						(100%+p*3-L)*/  
		margin-top:1em;

	}

