@charset "UTF-8";
body {
	background: #282828;
	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: 100%;
}

a{
color:#ffffff;
font-weight: bold;
text-decoration: none;
}

hr {
width:80%;
border:0;
height:1px;
color:#222222;
background-color:#222222;
}

a:hover{
color:#ffffff;
font-weight: bold;
text-decoration: none;
}

.oneColFixCtrHdr #container {
	width: 1029px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #282828;
	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. */
	background-image:url(images/PageBack.jpg);
	background-repeat:repeat-y;
}
.oneColFixCtrHdr #header {
	background: #282828; 
	padding: 0 10px 0 20px;  /* 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);
	background-repeat:no-repeat;
	height:199px;
}
.oneColFixCtrHdr #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display:none;
}
.oneColFixCtrHdr #mainContent {
	margin-left:25px;
	
}

.oneColFixCtrHdr #MainContentTop {
height :18px;
background-image:url(images/contentTop.jpg);
width:974px;
}

.oneColFixCtrHdr #MainContentBottom {
height :18px;
background-image:url(images/contentBottom.jpg);
width:974px;
}

.oneColFixCtrHdr #MainContentText {
background-image:url(images/contentBack.jpg);
width:974px;
background-repeat:repeat-y;
margin:0px;
padding:0px;
}

.oneColFixCtrHdr #MainContentInner {
padding-left:15px;
padding-right:15px;
padding-top:0px;
padding-bottom:0px;
}



.oneColFixCtrHdr #footer {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#282828;
	height:42px;
	background-image:url(images/footer.jpg);
	padding-left: 20px;
	color:#CCCCCC;
	font-size:10px;

}
.oneColFixCtrHdr #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: 14px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-right: 25px;
}

.oneColFixCtrHdr #footer #designby{
position: relative;
float:right;
margin-right: 20px;
margin-top: -26px;
}

.oneColFixCtrHdr #footer2{
word-spacing: 2px;
line-height: 18px;
font-size: 12px;
margin-left: 20px;
margin-right: 20px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	
	.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-right: 60px;
	margin-top: 31px;
}