@charset "UTF-8";
body {
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	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: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
h1, h2, h3, h4 {
	margin-top: 0px;
	font-weight: normal;
}
h4 {
	padding-top:20px;
	margin-top:20px;
	border-top:1px dashed #999;
	text-transform:uppercase;
	font-size: 110%;
}
.space {
	clear:both;
}
.floatr {
	float:right;
}
.col1 {
	width:335px;
	float:left;
	margin:0px;
}
.col2 {
	width:336px;
	float:left;
	margin:0px;
}
.col3 {
	width:289px;
	float:left;
	margin:0px;
}
a {
	color: #000;
	font-weight:bold;
	text-decoration:none;
	border:none;
}
a:hover {
	color: #f00;
	text-decoration:underline;
	border:none;
}
a:click {
	color: #f00;
	text-decoration:underline;
	border:none;
}
img {
	border:0px;
}