/* CSS 3Cols */

div#layout {padding: 0px 5px; margin: 0px;}

/* IE Hack */
* html div#content {float: none;}
*:first-child+html div#content {float: none;} /* IE7 Hack */

div#content {
	border-left-width: 180px;  /* left column width */
	border-left-color: #CCCCCC;   /* left column colour */

	border-right-width: 162px; /* right column width */
	border-right-color: #666666;  /* right column colour */

	background-color: #FFFFFF; /* center column colour */

	width: auto;
	border-left-style: solid;
	border-right-style: solid;
}

div#content div#columns {
	margin: 0px;
	width: 100%;
}

div#content div#colLeft {
	width: 180px;              /* left column width */
	margin-left: -180px;       /* negative left column width */

	float: left;
	position: relative;
	z-index: 0;

	padding-bottom: 50px; /*Added for extra space at the bottom JDL */
}

div#content div#colMiddle {
	float: left;
	width: 96%;
	position: relative;
	padding-left: 2%;
	padding-right: 2%;
	padding-bottom: 50px; /*Added for extra space at the bottom JDL */
	z-index: 0;
}

div#content div#colRight {
	width: 162px;              /* right column width */
	margin-right: -162px;      /* negative right column width */

	float: left;
	clear: right; /* Added for IE by JDL*/
	position: relative;
	z-index: 0;
}

/* Trident */

div#content {
	border-left-color: #DEE7F1;		/* left column colour */
	border-right-color: #DEE7F1;	/* right column colour */
	background-color: #FFFFFF;		/* center column colour */
}

div#footer { background-color: #FFFFFF; border-top: 1px solid #B5C1CF;}

