@charset "utf-8";
/* CSS Document */
 
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


#header {
	background-color: #000000;

} 



.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 173px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}

#sidebar1 p {
	font-size: 12px;
	color: #666666;
	margin: 0 3px 0 3px;
}
p {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

#sidebar1 h4 {
	font-size: 12px;
	color: #9E0300;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
}


.twoColFixLtHdr #mainContent {
	margin: 0 0 0 190px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 5px 0px 5px;
} 

.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 173px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 300px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* padding keeps the content of the div away from the edges */
}
#sidebar1 h4 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-weight: bold;
	color: #BC0006;
}

.thrColFixHdr #mainContent {
	margin: 0 300px 0px 174px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding: 0px 5px 0px 5px;
} 

a {
	font-family: Arial, Helvetica, sans-serif;
	color: #990002;
	font-weight: bold;
	font-style: italic;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #800000;
	font-style: italic;
}
a:hover {
	text-decoration: underline;
	color: #333333;
}
a:active {
	text-decoration: none;
	color: #990002;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
}
h1 {
	font-size: 24px;
	color: #990002;
	border-bottom-style: groove;
	text-align: center;
}
h2 {
	font-size: 18px;
	color: #010101;
	border-bottom: 1px solid;
	border-bottom-color: #980003;
}
h4 {
	font-size: 18px;
	color: #981002;
	padding: 0px;
}
h5 {
	font-size: 16px;
	color: #990002;
}
h6 {
	font-size: 16px;
	color: #FFFFFF;
}
.whiteheadline {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-variant: small-caps;
	color: #FFFFFF;
}

.whitetext {
	color: #FFFFFF;
}
.bold {
	font-weight: bolder;
	color: #990002;
}
.horsename {
	font-size: 14px;
	color: #990002;
	font-style: italic;
	font-weight: bold;
	border-bottom: 1px solid thin #990002;
}
.bigheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	font-variant: normal;
	color: #990002;
}
.italic {
	font-style: italic;
	color: #000000;
}
.smalltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}
.smallheader {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	color: #990002;
}

#footer {
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	text-align: center;
} 
#container #footer a {
	font-size: 10px;
	color: #FFFFFF;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}
#container #footer a:hover {
	font-style: italic;
	text-decoration:underline;
	color: #940203;
}

#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 */
	color: #FFFFFF;
	font-size: 10px;
}

.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;
}
#sidebar1 h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #BC0006;
	text-transform: capitalize;
	font-weight: bold;
	border-style: none none double;
	border-bottom-width: thin;
	margin: 0px 0px 0px 5px;
}
.warning {
	color: #FF0000;
}
#form p {
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	text-align: right;
	vertical-align: top;
	margin-top: 5px;
}
#sidebar1 h2 {
	font-size: 12px;
	font-weight: bold;
	color: #980003;
	border-bottom: thin solid #000000;
}
.hilite {
	background-color: #CCCCCC;
}
#thumbs {
	text-align: left;
	height: 125px;
	width: 275px;
	float: left;
}
#forsale {
	text-align: left;
	width: 585px;
	float: left;
	border: 1px solid #603814;
}
h3 {
	font-size: 16px;
	font-style: italic;
	line-height: normal;
	font-weight: bold;
	color: #960103;
	text-align: center;
	border-bottom-style: double;
}
#winners_sidebar {
text-align: left:
width: 100px;
	float: left;
	width: 150px;
}
#darren {
	text-align: left;
	width: 280px;
	float: left;
}
.winnerscircle {
	float: left;
	width: 300px;
	text-align: left;
}
#homepage {
	background-image: url(../images/darren_stop.jpg);
	background-repeat: no-repeat;
	font-size: 14px;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: left;
}
#homepage p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #000;
}
