	/* General styles */
	body {
		margin:0;
		padding:0;
		border:0;			/* This removes the border around the viewport in old versions of IE */
		width:100%;
		background:#333333;
		font-family: "arial", "sans-serif";
		font-size: smaller;
	}
	a {
		color: #0000FF;
	}
	
	h1, h2, h3 {
		margin: 0;
	}
	/*ul {
		padding-left: 0;
	list-style: none;
	}

	li {
	margin-top: 1em;
	margin-bottom: 1em;
	}*/

	img {
	border: none;
	}

	}
	/* Header styles */
	#header {
		clear:both;
		float: left;
		width:100%;
	}

	/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		width:100%;			/* width of whole page */
		
	}
	/* 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 0 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;
		background:#333333;
	}
	/* 3 Column settings */
	.threecol {
		background: #333333;		/* right column background colour */
	}
	.threecol .colmid {
		right:25%;			/* width of the right column */
		background: #333333;		/* center column background colour */
	}
	.threecol .colleft {
		right:50%;			/* width of the middle column */
		background: #333333;		/* left column background colour */
	}
	.threecol .col1 {
		width:48%;			/* width of center column content (column width minus padding on either side) */
		left:101%;			/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		width:22%;			/* Width of left column content (column width minus padding on either side) */
		left:29%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:22%;			/* Width of right column content (column width minus padding on either side) */
		left:81%;			/* 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%;
	}


/* Calls JavaScript for Round Corners, provides color and keeps text away from sharp edges */

div.headbox {
	background-color: #FFFFFF;
	padding: 20px;
	margin: 2%;
}

div.whitebox {
	background-color: #FFFFFF;
	padding: 20px;
}

div.yellowbox {
	background-color: #FFF000;
	padding: 20px;
}

div.footbox {
	background-color: #999999;
	padding: 20px;
	margin: 2%;
}