/* CSS Document */

/* clv1.css  	
	rev 1 4 June 2010 revised to meet Kat's layout
	rev 0 5 FEb 2010  */	

body {
		margin:0;
		padding:0;
		border:0;			/* This removes the border around the viewport in old versions of IE */
		width:100%;
		background:#ffffff;	
		background-image:url('backgroundWw1275.jpg');
		background-repeat:repeat-y;

		min-width:600px;    	/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
		font-size:110%;
	}
	a {
		color:#369;
	}
	a:hover {
		color:#fff;
		background:#369;
		text-decoration:none;
	}
	h1, h2, h3 {
		
		font-family:"Georgia", Georgia, serif;
		color:#369;
		margin:2px 0 0 0;
		padding:0;
		text-align:center;
	}

	li {
		font-family:"Georgia", Georgia, serif;
	}
	p {
		font-family:"Georgia", Georgia, serif;
		margin:.4em 0 .2em 0;	/* was margin:.4em 0 .4em 0; 2 June 2010 */
		padding:0;
	}
	ul.a {	list-style-type:disc;
	}
	ul.b {	list-style-type:circle;
	}
	ul.c {	list-style-type:square;
	}

	img {
		margin:8px 0px 0px 0px;
	}
/* float and clear */

	.floatleft 	{ float:left; }
	.floatright 	{ float:right; }
	.clearleft 	{ clear:left; }
	.clearright 	{ clear:right; }
	.clearboth 	{ clear:both; }		

/* this changes the max width */
	#fixed  {
		margin:0 auto;
		width: 1050px;   /* can be percent or px or em - was 900 2 June 2010 */
		text-align:left;
	}

/* Header styles */
	#header {
		clear:both;
		float:left;
		width:100%;
	}
	#header {
	}
	#header img {	
		float:right;
		margin:0px;		/* added 24Jan */
		padding:0px		/* added 24Jan */
		}
	
	/* 'widths' sub menu */
	
	
	/* #layoutdims {
		clear:both;
		background:#eee;
		border-top:4px solid #000;
		margin:0;
		padding:6px 5px !important; /* left right were 15px */
		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 */
		border:5px solid #ff0000;
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;
		position:relative;
						/* border:1px dashed #000; */
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:0 0 5px 0;  		/* right was 5px bottom was 1em */
		overflow:hidden;
						/* border-right:1px dotted #ff000; */
	}
	
	/* 2 Column (left menu) settings */
	.leftmenu {
		background:#fff;		/* right column background colour */
	}
	.leftmenu .colleft {
		right:66.7%;			/* right column width was 66.7% */
		background:#fff;	/* left column background colour was #f4f4f4 */
	}
	.leftmenu .col1 {
		width:63%;			/* right column content width */
		left:102%;			/* 100% plus left column left padding */
	}
	.leftmenu .col2 {
		width:31%;			/* left column content width (column width minus left and right padding) */
		left:6%;			/* (right column left and right padding) plus (left column left padding) */
	}
	
	/* Footer styles */
	#footer {
		clear:both;
		float:left;
		width:100%;
		background:#ffffff;
		border-top:1px solid #000;
	}
	#footer p {
		padding:10px;
		margin:0;
		font-size:70%;
		text-align:center;
	}
	/* --> */
	