@charset "utf-8";
body  {
	background: #666666;
	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: #F90;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.twoColFixLtHdr #container {
	width: 1000px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #000;
	height: 2800px;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thick;
	border-left-width: thick;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #F60;
	border-right-color: #F60;
	border-bottom-color: #F60;
	border-left-color: #F60;
} 
.twoColFixLtHdr #header {
	background-color: #000;
	background-repeat: no-repeat;
	height: 150px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	font-size: 12px;
	color: #F00;
	background-position: center;
	background-image: url(Graphics/webbanner1-2010.jpg);
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #F90;
	background-color: #000;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	width: 705px;
	font-style: italic;
	text-transform: capitalize;
	font-size: 24px;
	cursor: text;
	filter: What a race this will be;
	background-image: url(Graphics/bike%20wheel.jpg);
	background-repeat: repeat-y;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: 700;
	border: thick solid #FB8811;
}
.twoColFixLtHdr #sidebar1 {
	float: left;
	background-color: #333;
	font-size: 12px;
	font-weight: 400;
	color: #FFF;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	height: 2200;
	left: auto;
	text-transform: none;
	font-variant: normal;
	font-style: normal;
	white-space: normal;
	font-family: Tahoma, Geneva, sans-serif;
	position: absolute;
	bottom: 275px;
	top: 155px;
	width: 200px;
	border: medium inset #F90;
}
.twoColFixLtHdr #mainContent {
	color: #FFF;
	font-size: 11px;
	background-color: #000;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 25px;
	height: 410px;
	position: relative;
	left: auto;
	top: 155px;
	width: 700px;
	text-align: left;
	white-space: normal;
	font-weight: 100;
	font-style: normal;
	font-family: Verdana, Geneva, sans-serif;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thick;
	border-left-width: thick;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #F90;
	display: block;
	cursor: default;
} 
.twoColFixLtHdr #footer {
	padding: 0;
	font-size: 14px;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	background-color: #F60;
	color: #FFF;
	position: absolute;
	width: 1000px;
	clip: rect(auto,auto,500px,auto);
	bottom: 350px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
