fv-/* http://matthewjamestaylor.com/blog/perfect-3-column.htm */


body {
	margin:0;
	padding:0;
	border:0;
	width:100%;
}

/* Header styles */
	#header {
		clear:both;
		float:left;
		width:100%;
	}
	#header {
		text-align: center;
		margin:3px 0 1px;
	}
	
	#header #logo {

	}
	
	
	#nav {
		clear:both;
		float:left;
		width:100%;
		border-bottom:1px solid #000;
		margin: 1em 0 0 0;
	}
	
	#nav #left {
		display: block;
		float: left;
		width: 50%;
		vertical-align: bottom;
	}
	
	#nav #left ul {
		clear:left;
		float:left;
		list-style:none;
		margin:0 0 0 0;
		padding:0;
	}
	#nav #left ul li {
		display:inline;
		list-style:none;
		margin:0;
		padding:0;
	}
	#nav #left ul li a {
		display:block;
		float:left;
		margin:0 0 0 1px;
		padding:3px 10px;
		text-align:center;
		background:#eee;
		color:#000;
		text-decoration:none;
		position:relative;
		left:15px;
		line-height:1.3em;
	}
	#nav #left ul li a:hover {
		background:#c60;
		color:#fff;
	}
	#nav #left ul li a.active,
	#nav #left ul li a.active:hover {
		color:#fff;
		background:#000;
		font-weight:bold;
	}
	#nav #left ul li a span {
		display:block;
	}
	
	#nav #right {
		display: inline;
		clear: none;
		float: right;
		text-align: right;
		margin-right: 10px;
	}
	
	/* 'widths' sub menu */
	#layoutdims {
		clear:both;
		background:#fff;
		border-top:4px solid #000;
		margin:0;
		padding:6px 15px !important;
		text-align:right;
	}
	/* 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;
		margin-top:0px;
	}
	.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;

	}
	/* 3 Column settings */
	.threecol {
								/* right column background colour */
	}
	.threecol .colmid {
		right:12%;				/* width of the right column */
								/* center column background colour */
	}
	.threecol .colleft {
		right:76%;				/* width of the middle column */
								/* left column background colour */
	}
	.threecol .col1 {
		width:74%;				/* width of center column content (column width minus padding on either side) */
		left:101%;				/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		width:11%;				/* Width of left column content (column width minus padding on either side) */
		left:15%;				/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:11%;				/* Width of right column content (column width minus padding on either side) */
		left:91%;				/* 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) */
	}
	
	
	/* Footer styles */
	#footer {
		clear:both;
		float:left;
		width:100%;
		border-top:1px solid #000;
		padding:1em 0 1em 0;
		text-align: center;
		font-size: 80%;
	}
