@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;
	background-color: #000;
	background-repeat: repeat;
	color: #000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
}
.foot {
	height: 50px;
	width: 980px;
	background-image: url(../images/footer.jpg);
	margin-bottom: 10px;
	text-align: left;
	padding: 0px;
}
h1 {
	font-size: 140%;
}
.twoColFixLtHdr #container {
	width: 980px; /* this overrides the text-align: center on the body element. */
	background-color: #000;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(../images/maincontentbacklong2column.jpg);
	background-repeat: no-repeat;
	background-position: 0px 310px;
} 
.twoColFixLtHdr #header {
	margin: 0px;
	height: 310px;
	width: 980px;
	background-color: #000;
	background-repeat: no-repeat;
	padding: 0;
	background-image: none;
} 
.button1 {
	margin-top: 15px;
	margin-left: 10px;
	float: left;
}
.button2 {
	margin-left: 12px;
	margin-top: 15px;
}
.logorolling {
	margin-top: 10px;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 370px;
	height: 1290px;
	padding-top: 70px;
	padding-right: 30px;
	padding-left: 80px;
	text-align: left;
}
.twoColFixLtHdr #mainContent {
	width: 370px;
	float: right;
	height: 1290px;
	padding-top: 70px;
	padding-right: 70px;
	padding-left: 20px;
	text-align: right;
} 
h2 {
	font-size: 100%;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
}
.picfltrt {
	float: right;
	margin-bottom: 10px;
	margin-left: 0px;
}
.picfltlft {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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 */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
