/* css from layout: http://matthewjamestaylor.com/blog/perfect-2-column-left-menu.htm */
	/* Header styles */
	#header {
		clear:both;
		float:left;
		width:100%;
	}
	#header {
	}
	/* 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%;
		position:relative;
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:0;
		overflow:hidden;
	}
	/* 2 Column (left menu) settings */
	.leftmenu {
		background: white;
	}
	.leftmenu .colleft {
		right:78%;			/* right column width */
	}
	.leftmenu .col1 {
		width:76%;			/* right column content width */
    padding-left: 1%;
    padding-right: 1%;
		left:100%;			/* 100% plus left column left padding */
	}
	.leftmenu .col2 {
		width:20%;			/* left column content width (column width minus left and right padding) */
		left:1%;			/* (right column left and right padding) plus (left column left padding) */
	}
	/* Footer styles */
	#footer {
		clear:both;
		float:left;
		width:100%;
	}

