@charset "utf-8";
body  {
	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: #CCCCCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #000000;
	border: thin none #FF0000;
	background-image: url(images/background1.png);
	background-repeat: repeat;
	background-attachment: fixed;
}
h1 {
	color: #000000;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
}


.twoColFixLtHdr #container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #FF0000;
	text-align: center; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
	height: auto;
} 
.twoColFixLtHdr #header {
	background-image: url(images/header.jpg);
	height: 225px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: right;
	overflow: hidden;
	margin-top: 5px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	vertical-align: top;
	padding-top: 208px;
	padding-bottom: 2px;
	text-align: right;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 210px;
	background-color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	border: thin solid #000000;
	list-style-type: none;
	font-weight: bold;
	margin-top: 5px;
}
.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 230px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.ads {
	border-top-width: thin;
	border-bottom-width: thin;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FF0000;
	border-bottom-color: #FF0000;
	padding-bottom: 3px;
}

.twoColFixLtHdr #footer {
	background-color: #000000;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #FF0000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #CCCCCC;
} 
.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 */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #CCCCCC;
}
.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:0px;
	font-size: 1px;
	line-height: 0px;
}
a:link {
	color: #FF0000;
	font-weight: bold;
	text-decoration: underline;
}
a:visited {
	color: #FF0000;
	text-decoration: underline;
	font-weight: bold;
}
a:hover {
	color: #00CCFF;
	text-decoration: none;
}
a:active {
	color: #FF0000;
}
a img {
	border: 1px solid #FF0000;
}
.sideads {
	width: 210px;
	background-color: #CCCCCC;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	border: thin none #000000;
	list-style-type: none;
	font-weight: bold;
	position: relative;
	z-index: 1;
	height: auto;
}
	
ul a:link, ul a:visited
{
	color: #FF0000;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

ul a:hover
{
	color: #00FFFF;
	font-size: 14px;
	font-weight: bold;
	text-decoration: underline;
}	

