@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #6c923a;
}

div#header {
	position: absolute;
	left: 180px;
	top: 20px;
	
	width: 600px;
	text-align:right;
}

div#leftBar {
	position: absolute;
	left: 75px;
	top: 200px;
	width: 100px;
	padding: 5px;
	font-size: 80%;
	font-weight:bold;
}


div#mainBody {
	position: absolute;
	left: 345px;
	top: 225px;
	width: 445px;
	font-size: 80%;
	color: #225d7d;
	
}



div#insertBlue {
	position: absolute;
	left: 325px;
	top: 235px;
	width: 430px;
	padding: 15px;
	margin-right: 15px;
	background: #225d7d;
	font-size: 80%;
	color: #000000;
}

div#insertGreen {
	position: absolute;
	left: 325px;
	top: 235px;
	width: 425px;
	padding: 15px;
	background: #6c923a;
	font-size: 80%;
	color: #000000;
}

.fltlft {
	float: left;
	margin-right: 8px;
	}

.fltrt {
	float: right;
}

.clearfloat {
	font-size: 1px;
	line-height: 0px;
	margin: 0px;
	clear: both;
	height: 0px;
	}
	
.clickHere {
	font-size: 70%;
	font-style: italic;
}