﻿	#content {
		width:800px;
		background:#fff;				
		font-size:90%;
		margin:0px auto;
		padding:0px 20px;
	}
	

	/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		/*float:left;*/
		width:800px;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
		/*border:1px solid #000;  border around the whole of the content */
		border-top:10px solid #005696;
		padding-top:5px;
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;
		position:relative;
		border-right:0px solid #000;
	}
	.col1,
	.col2{
		float:left;
		position:relative;
		/*padding:0 0 1em 0;*/
		padding:0;
		/*overflow:hidden;*/
	}
	
	.col1 {
	
	
	}
	/* 2 Column (left menu) settings */
	.leftmenu {
		background:#fff;		/* right column background colour */
	}
	.leftmenu .colleft {
		right:595px;			/* right column width */
		background:#fff;	/* left column background colour */
	}
	.leftmenu .col1 {
		width:595px;			/* right column content width */
		left:100%;			/* padding between left and right, needs to start on 100% */
		
	}
	.leftmenu .col2 {
		width:190px;			/* left column content width (column width minus left and right padding) */
		left:0px;			/* (right column left and right padding) plus (left column left padding) */
		padding-left:5px;
	}
	


