@charset "utf-8";
body  {
	background: #000000;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.twoColFixLtHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	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. */
	min-height: 1000px;
} 
.twoColFixLtHdr #header {
	background: #FFFFFF;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(../images/header.jpg);
	height: 41px;
	padding: 0px;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 300px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 0px 0px;
}
.menu {
	padding-left: 30px;
}

.sidebar_logo {
	padding: 0px;
}

.sidebar_img {
	padding: 0px 0px 0px 35px;
}

.twoColFixLtHdr #mainContent {
	margin: 0px 0px 0px 325px; /* 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 55px 0px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left: 2px solid #ffe14f;
	min-height: 1000px;
} 
.twoColFixLtHdr #footer {
	padding: 0px 10px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	background-image: url(../images/footer.jpg);
	height: 103px;
	margin: 0px;
} 
.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 */
	color: #FFFFFF;
	text-align: center;
	font-size: 9px;
}
#footer a {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
#footer a:hover {
	color: #ffe14F;
	text-decoration: underline;
}


.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;
}
#wrapper {
	background-image: url(../images/wrapper.jpg);
	background-repeat: repeat;
	padding: 0px;
	margin: 0px;
}
.lftCorner {
	background-image: url(../images/lft_lowercorner.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
}

#rtcorner {
	background-image: url(../images/upper_corner.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
#sidebar1 a {
	color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	text-decoration: none;
}
#sidebar1 a:hover {
	font-weight: bold;
	color: #EE4035;
}
#mainContent h1 {
	color: #EE4035;
	padding: 25px 20px 10px 15px;
	border-bottom: thin inset #ffe14f;
	margin: 0px;
	font-size: 24px;
}
#mainContent h4 {
	font-size: 14px;
	color: #FFFFFF;
	border-bottom: thin solid #ff3333;
}

#mainContent a {
	font-style: italic;
	font-weight: bold;
	color: #ffe14f;
	text-decoration: none;
	padding: 0px;
}
#mainContent a:hover {
	color: #EE4035;
	text-decoration: underline;
	padding: 0px;
}
p {
	padding: 0px;
	margin: 0px;
}
#mainContent p {
	font-size: 14px;
	font-family: Verdana, Geneva, sans-serif;
	line-height: 20px;
	white-space: normal;
	letter-spacing: normal;
	word-spacing: normal;
	margin-top: 20px;
}

.italic {
	font-style: italic;
	color: #FF3333;
}

.bold {
	font-weight: bold;
	color: #EE4035;
}
.smalltext {
	font-size: 9px;
}
/* set the image to use and establish the lower-right position */ 
.cssbox, .cssbox_body, .cssbox_head, .cssbox_head h2 { 
background: transparent url(../images/box.png) no-repeat bottom right; 
} 

.cssbox {
	width: 550px !important; /* intended total box width - padding-right(next) */
	width: 215px; /* IE Win = width - padding */
	padding-right: 12px; /* the gap on the right edge of the image (not content padding) */
	margin: 10px auto; /* use to position the box */
} 

/* set the top-right image */ 
.cssbox_head {
	background-position: top right;
	margin-right: -15px; /* pull the right image over on top of border */
	padding-right: 5px; /* right-image-gap + right-inside padding */
} 

/* set the top-left image */ 
.cssbox_head h2 {
	background-position: top left;
	margin: 0; /* reset main site styles*/
	border: 0; /* ditto */
	padding: 5px 0 5px 15px; /* padding-left = image gap + interior padding ... no padding-right */
	height: auto !important;
	height: 1%; /* IE Holly Hack */
	color: #FFFFFF;
	font-size: 14px;
} 
h3 {
	font-size: 12px;
	font-weight: bold;
	color: #663300;
	border-bottom: thin solid #D7B998;
}


/* set the lower-left corner image */ 
.cssbox_body {
	background-position: bottom left;
	margin-right: -13px; /* pull the right image over on top of border */
	padding: 5px 5px 5px 10px; /* mirror .cssbox_head right/left */
} 
#mainContent h2 {
	font-size: 18px;
	color: #FF3333;
	border-top: thin inset #FF3333;
	border-bottom: thin inset #FF3333;
	border-right-width: thin;
	border-left-width: thin;
	border-right-color: #FF3333;
	border-left-color: #FF3333;
	padding: 0px;
}
#mainContent img {
	padding: 3px;
	}
.winnerscircle {
	float: left;
	width: 300px;
	text-align: left;
}
.ownerinfo {
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #FF3333;
	padding: 0px;
}
#breadcrumb {
	margin: 0px;
	padding: 0px;
}
#breadcrumb p {
	margin: 0px;
	padding: 0px;
}
