@charset "utf-8";
/* CSS Document */

body {
		margin:0;
		padding:0;
		border:0;			/* This removes the border around the viewport in old versions of IE */
		width:100%;
		background:##fffdda;
    	color:#000099;
		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 */
		}
		
a:link		{ 	text-decoration: none; font-weight: bold; color: blue;
			}

a:visited	{ 	text-decoration: none; font-weight: bold; color: purple;	
			}

a:focus		{	text-decoration: none; font-weight: bold; color: #ff9900;	
			}
			
h2, h3, h4 	{	font-family: verdana, arial, helvetica, sans-serif;
						font-weight: bold;
					margin-left: 5%;
					margin-right: 5%;
					padding:0;
				}
				
h1 		{	font-family:"Lucida Console", Monaco, monospace;
					font-weight: bold;
					margin-left: 5%;
					margin-right: 5%;
					padding: 0;
					color: #004b18;
					font-size: 2.65em;
				}
				
	p 			{
					font-family: georgia, garamond, palatino, times, serif;
					font-size: medium;
					margin-left: 5%; margin-right: 5%;
					line-height: 1.3;
				}
		
q			{	background-color: #ebf5fc;
			}

ul 			{	 margin-left: 1%; margin-right: 1%;
				  font-family: georgia, garamond, palatino, times, serif; 
				  font-size: medium; 
				  color: #000099;
		  		line-height: 1.3;
				list-style-type: disc;
			}
			
	img {
		margin: 5px;
		border: 0;
	}
	
	.spacer	{	margin: 0;
			}
	
	/* Header styles */
	#header {
		clear:both;
		float:left;
		width:100%;
	}

	#header p,
	#header h1,
	#header h2 {
		padding:.4em 15px 0 15px;
		margin:0;
	}
	
		
	/* 'widths' sub menu */
	#layoutdims {
		clear:both;
		background:#eee;
		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;
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:0 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 {
		background:##fffdda;		/* right column background colour */
	}
	.threecol .colmid {
		right:33%;			/* width of the right column */
		background:##fffdda;		/* center column background colour */
	}
	.threecol .colleft {
		right:34%;			/* width of the middle column */
		background:##fffdda;	/* left column background colour */
	}
	.threecol .col1 {
		width:30%;			/* width of center column content (column width minus padding on either side) */
		left:102%;			/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		width:29%;			/* Width of left column content (column width minus padding on either side) */
		left:39%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:29%;			/* Width of right column content (column width minus padding on either side) */
		left:77%;			/* 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%;
	}
	#footer p {
		padding:10px;
		margin:0;
	}