@charset "utf-8";
/* CSS Document */
body {
	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: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.pSmall {
	font-size: 80%;
	background-color: #000;
	text-align: center;
	width: 600px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 2px;
	padding-bottom: 7px;
	padding-left: 2px;
}

a{
	text-decoration:none;
	color:#283E27;
	font-weight:bold;
}
a:hover{
	text-decoration:underline;
	color: #0C3;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	font-size: 1px; /* Sets the font size to 1 pixel */
	line-height: 0px; /* Sets line-height to 0 -font and line-height, even if not explicitly on the page, might add diemnsion to the clearing element rather than make it larely invisible */
	clear: both; /* Keeps floated divs from draping over objects beneath them. */
	height: 0px; /* Makes sure the clearing element has no height */
}

#mainContent {
	width: 800px;
	margin-left:auto;
	margin-right:auto;
}

#body-left {
	width: 398px;
	text-align: left;
	float: left;
	}
#body-right {
	width: 398px;
	text-align: left;
	border-left-style: dashed;
	float: right;
	border-left-color: #999;
	border-left-width: thin;
	}

