/* News block style */
/*  Rounded borders is not valid CSS.
div.block { background:#fff; text-align:justify; padding:0; border:1px solid #FCD006; 
-moz-border-radius:8px; -webkit-border-radius:8px; margin:15px; }
div.block h3 { padding:0 0 .2em 0.7em; border-color:transparent; border:none; -moz-border-radius-topleft:5px; -webkit-border-top-left-radius:8px; -moz-border-radius-topright:5px; -webkit-border-top-right-radius:8px; margin:0; }
*/
div.block { background:#fff; text-align:justify; padding:0; border:1px solid #FCD006; margin:15px; }
div.block h3 { padding:0 0 .2em 0.7em; border-color:transparent; border:none; margin:0; }
div.block p { padding:.4em 1em; margin:0; }
div.block ul, ol, dl { padding:0 2em; }

/*   COLUMN LAYOUT CSS   */
/* 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 */
	border-right:2px solid #1B2F59;
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;			/* width of page */
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:0 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;
}
/* 3 Column settings */
	.threecol {
		background:#F7F5F2;		/* right column background colour */
	}	
	.threecol .colmid {
		right:410px;			/* width of the right column */
		background:#F8FBFF;		/* center column background colour */
	}
	.threecol .colleft {
		right:410px;			/* width of the middle column */
		background:#1B2F59;	/* left column background colour */
	}
	.threecol .col1 {
		width:398px;			/* width of center column content (column width minus padding on either side) */
		left:1032px;			/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		width:204px;			/* Width of left column content (column width minus padding on either side) */
		left:422px;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:398px;			/* Width of right column content (column width minus padding on either side) */
		left:838px;			/* 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) */
	}

/*     END LAYOUT CSS     */
