@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Arial, Helvetica, Tahoma, sans-serif;
	background: #050505;
	background-image:url(../pageElements/cement_back.jpg);
  overflow: auto;
	background-position: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: #FFF;
	background-attachment:fixed;
}

a img {
 border:none;
text-decoration:none;
 }
.twoColFixLtHdr #container { 
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	padding: 0px 0px 10px 0px;
	height:15px;
	text-align:right;
	font-family:Arial, Helvetica, Tahoma, sans-serif;
  /* 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. */
} 
.twoColFixLtHdr #header p { 
color:#FFFFFF;
text-align:right;
font-size:.75em;
font-family:Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #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:0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 275px; /* 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 */
/* the background color will be displayed for the length of the content in the column, but no further */
	padding:0;
}

.twoColFixLtHdr #sidebar1 h1 {
font-family:Arial, Helvetica, Tahoma, sans-serif;
text-align:left;
font-size:.95em;
padding:0;
margin:10px 0 4px 0;
color:#FFFFFF;
}

.twoColFixLtHdr #sidebar1 h2 {
text-align:left;
margin:0;
padding:0;
font-size:.85em;
color:#A5D8FF;
}

.twoColFixLtHdr #sidebar1 h3 {
text-align:left;
margin:0;
padding:0;
font-size:.80em;
color:#FF8929;
}


#underline {
width:100%;
border-bottom:#A5D8FF 2px solid;
margin:0;
text-align:left;
padding:0;
}

#underlineTHICK {
width:100%;
border-bottom:#A5D8FF 4px solid;
padding-top:0;
margin:0;
}

#underline2 {
width:100%;
border-bottom:#A5D8FF 2px solid;
padding-top:2px;
}
.leftImage {
border:#FFF 6px solid;
float:left;
}

#mainContent .leftImage {
border:#FFF 6px solid;
float:left;
margin:0 15px 10px 0;
}

.leftImageBORDERLESS {
padding:0;
margin:0 15px 0 0;
float:left;
}

.centerImage {
border:#FFF 6px solid;
text-align:center;
}

.rightImage {
border:#FFF 6px solid;
float:right;
margin: 0 0 10px 10px;
}

.rightImageSMALL {
border:#FFF 6px solid;
float:right;
margin: 0 0 20px 20px;
clear:both;
overflow:hidden;
}

#rightFloat {
float:right;
}

#rightQUOTEbox {
float:right;
width:300px;
padding:10px;
margin:0 0 10px 10px;
text-align:left;
font-family:Arial, Helvetica, sans-serif;
font-size:.70em;
color:#000000;
background-color:#A5D8FF; 
}

#leftFloat {
float:left;
}

.com_butts {
color:#FFFFFF;
text-align:left;
font-size:.75em;
padding:0 0 0 15px;
}
.twoColFixLtHdr #sidebar1 p {
font-family:Arial, Helvetica, Tahoma, sans-serif;
text-align:left;
font-size:.80em;
padding:0;
margin:10px 0 0 0;
color:#FFFFFF;
}

#mainContent {
text-align:left;
}

#mainContent h1{
text-align:left;
margin:0;
padding:0;
font-size:.95em;
margin:10px 0 4px 0;
}

#mainContent h2{
text-align:left;
margin:0;
padding:0;
font-size:.85em;
color:#A5D8FF;
}

#mainContent h3{
text-align:left;
margin:0;
padding:0;
font-size:.85em;
color:#FF8929;
font-style:normal;
}

#mainContent h4{
text-align:left;
margin:0;
padding:0;
font-size:.85em;
color:#FF3366;
font-style:normal;
}

#mainContent p {
text-align:left;
font-size:.80em;
}

.twoColFixLtHdr #mainContent { 
text-align:left;
	margin: 0 0 0 310px; /* 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: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLtHdr #footer { 
	padding:0; 
	margin:0;/* this padding matches the left alignment of the elements in the divs that appear above it. */
 
} 
.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 */
	text-align:right;
	color:#FFFFFF;
	font-size:.80em;
}
.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;
}

/* MAIN MAIN MENU */
.nav {
padding:0 0 5px 0;
margin:0;
}

.nav ul {
text-align:left;
display:inline;
margin:0;
padding:0;
margin:0;
}


.nav li {
margin:0;
text-align:left;
display:inline;
margin:0;
padding:0;
}

.nav a:link,
.nav a:visited {
text-align:left;
color:#A5D8FF;
margin:0px;
padding: 5px 10px 0 0;
float:left;
width:auto;
text-decoration:none;
font-family: Arial, Helvetica, Tahoma, sans-serif;
font-size:90%;
text-shadow:#666;
}

/* CALENDAR CALENDAR */

#right_box {
float:right;
margin:0;
padding:0 0 0 10px;
}

#right_boxLRG {
width:200px;
float:right;
margin:0;
padding:0 10px 0 10px;
}

#right_boxSPONS {
width:200px;
float:right;
margin:0;
text-align:right;
padding:0 0 0 10px;
}
.nav a:hover, .nav a:focus {
text-align:left;
color:#D20005;
}