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

body  {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	line-height: 125%;
	background: #d5edb3;
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.container { 
	width: 900px;  /* this will create a container 80% of the browser width */
	position: relative;
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.back-color {
	background-color: #999999;
}

.imagefloatright {
	float: right;
	padding: 5px;
	border-width: thin;
	border-style: solid;
	border-color: #009966;
	margin-left: 5px;
}
.imagefloatleft {
	float: left; 
	padding: 5px; 
	margin-right: 10px;
	border-width: thin; 
	border-style: solid; 
	border-color: #009966;
}

.mediumtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}