@charset "utf-8";
body  {
	background: url(bg1.jpg) top center fixed #000000;
	background-repeat: no-repeat;
	overflow: scroll;
	font: 11px Tahoma;
	font-weight:bold;
	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;
}
.twoColFixRtHdr #container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color:#000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	background-image:url(images/banner_01.jpg);
	height: 202px;
	width:1000px;
	background-position: top center;
	background-repeat:no-repeat;
	padding: 0px;  /* 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. */
} 

.twoColFixRtHdr #navbar {
	background-image:url(images/top_06.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	height: 52px;
	width: 1000px; /* 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 */
	padding: 0px;
}
.twoColFixRtHdr #sponsorbar {
	background-image: url(images/top_07.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	height: 162px;
	width: 1000px; /* 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 */
	padding: 0px;
}
.twoColFixRtHdr #midbar {
	background-image: url(images/midbg_05.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	height: 136px;
	width: 1000px; /* 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 */
	padding: 0px;
}
.twoColFixRtHdr #sidebar1 {
	color:#FFF;
	background-image: url(images/rightbg_22.jpg);
	background-position: top center;
	background-repeat:repeat-y;
	float:right;
	width: 261px;
	margin: 0px;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #mainContent {
	color:#333;
	background-image:url(images/leftbg_17.jpg);
	background-position: top center;
	background-repeat:repeat-y;
	width: 739px;
	margin: 0 261px 0 0; /* the right margin on this div element creates the column down the right 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #footer { 
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixRtHdr #footer p {
	text-align:center;
	font-size: 10px;
	color:#FFF;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* 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;
}
.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;
}
a, a:visited, a:active {
  color: #F90;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #F90;
  text-decoration: underline;
  font-weight: bold;
}