@charset "utf-8";

body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #262626; 
	background-image: url(images/page-bgd-outer.jpg); background-position: top center; background-repeat: no-repeat;
	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; 
}
th {background-image: url(images/home-table-bg.jpg); background-repeat: repeat-x; color: #fff; font-size:13px;}
ol li {margin-bottom:5px;}

#container { 
	width: 1001px; 
	background: #000; background-image: url(images/pg-content-bg.jpg); background-repeat: repeat-x;
	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: #DDDDDD; 
	background-image:url(images/header-bg.jpg); background-repeat:no-repeat;
	height: 149px;
	padding: 0 10px 0 0; 
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navbar { height:33px; background-image: url(images/navbar-bg.jpg); background-repeat: repeat-x; padding-left:65px;}

#navbar a, #navbar a:visited {

/* 	background: #e1d9E5 url(img2/nav.gif); */

   /* border-right: 1px solid #666;  */
	color: #fff;
	display: block;
	float: left;
	font: bold 12px verdana;
	line-height: 33px;
	padding: 0 35px;
	text-decoration: none;
	background-image: url(images/navbar-divider.jpg); background-repeat: no-repeat; background-position: bottom right ; 
}

#navbar a:hover {color: #ffff00;}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 191px; /* 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: transparent; 
	color: #fff;
	margin: 0 0;
	padding: 10px 10px;
}
#sidebar1 ul {
	padding: 0; margin: 0; list-style-type: none; background-color: #323232; width: 190px; 
	border-bottom: 1px solid #450402;
	border-left: 1px solid #450402;
}

#sidenbar1 li { padding:0; margin:0; height:23px;
} 

#sidebar1 li a, #sidebar1 li a:visited {
	color: #fff;
	display: block; 
	padding: 2px 0 2px 37px;  
	text-decoration: none;
	width: 153px; line-height:20px;
    background-image: url(images/sidenav-bg.jpg); background-repeat: no-repeat; background-position:left; 
}
#sidebar1 li a:hover {
    color: #efd25c;
	text-decoration:none;
}
#mainContent { 
    background-color:#fff;  min-height:840px; /*  may have to change this if more/fewer ads are in sidebar */
	margin: 10px 10px 10px 211px; /* 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: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h3 {
    color: #b80000; font-size:14px;
}
#mainContent h2 {
    color: #b80000; font-size:18px;
}
#mainContent h1 {
   color: #b80000; margin:0; padding:0; font-size:22px;
}
#formdiv { width: 455px; height:655px; background-color:#f3f3f3; background-image: url(images/form-bgd-tr.jpg); background-position: top right; background-repeat:no-repeat;
}
.contact {
  background-image: url(images/contact-lr.gif); background-repeat: no-repeat; background-position: 100% 410px;
}
div.sidebarads {
  margin-top:10px; text-align:center;
}
.bonustable { 
   border-top: 1px solid #cc9d83;
   border-left: 1px solid #cc9d83;
   border-right:1px solid #cc9d83;
   border-bottom: 2px solid #8d3e14;
   border-collapse: collapse;
}
.bonustable th {
  border-right:1px solid #cc9d83;
  border-bottom: 1px solid #cc9d83;
  border-collapse: collapse;
  text-align: center;
}
.bonustable td {
  border-right:1px solid #cc9d83;
  border-bottom: 1px solid #cc9d83;
  border-collapse: collapse;
}
.bonustable td a, .bonustable td a:visited {
  color: #1742cf; text-decoration:none;
}
.bonustable td a:hover {
  color: #1742cf; text-decoration:underline;
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #252525;  color: #fff; background-image: url(images/footer-image.jpg); background-position: left; background-repeat: no-repeat;
	height:50px; 
} 
#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;
}
.byline {font-size: 11px; color: #666; font-style: italic;}
.byline a, .byline a:visited, .byline a:hover {color: #666; text-decoration: none;}
.status {color: red; font-style: italic; text-align:center;}