@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-color: #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;	
			}
			
h1 			{ 	font-family: verdana, arial, helvetica, sans-serif; 
     		  	font-size: xx-large; 
        	  	font-weight: bold;
     		  	color: #000099;
     		  	margin-left: 5%;
			}

h2 			{ 	font-family: verdana, arial, helvetica, sans-serif; 
				font-size: large; 
				font-weight: bold;
				color: #000099;
				margin-left: 5%;
			}
		
h3 			{ 	font-family: verdana, arial, helvetica, sans-serif; 
     		  	font-size: medium; 
     		  	font-weight: bold;
     		  	color: #000099;
     		  	margin-left: 5%;
			}	
				
	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: 5%; margin-right: 5%;
				  font-family: georgia, garamond, palatino, times, serif; 
				  font-size: small; 
				  color: #000099;
		  		line-height: 1.2;
				list-style-type: disc;
			}
			
	img {
		margin: 0;
		border: 0;
	}
	
	.spacer	{	margin: 0;
			}
			
.p1 		{ 	font-family: verdana, arial, helvetica, sans-serif;  
	          	font-size: small; 
    	        margin-left: 15px; margin-right: 15px;
			}
			
.pc			{ text-align: center;
			}

 
	/* Header styles */
	#top {
		background-color: #fffdda;
                clear:both;
		float:left;
		width:100%;
	}
	
	/* '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:30%;			/* width of the right column */
		background: #fffdda;		/* center column background colour */
	}
	.threecol .colleft {
		right:40%;			/* width of the middle column */
		background-color: #fffdda;	/* left column background colour */
	}
	.threecol .col1 {
		width:38%;			/* width of center column content (column width minus padding on either side) */
		left:101%;			/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		background-color: #cccccc;
		width:27%;			/* Width of left column content (column width minus padding on either side) */
		left:34%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		background-color: #cccccc;
		width:27%;			/* Width of right column content (column width minus padding on either side) */
		left:76%;			/* 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) */
	}
		
	.blueheading	{ font-size: small;
		  background-color: rgb(235, 245, 52);
		}
		
	.p2 		{ 	margin-left: 3%; margin-right: 3%; 
			}
			
	.med	{	font-size: medium;
			}