@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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #747171;
	background-image: url(../images/background.jpg);
	background-repeat: repeat-x;
}
.twoColFixLtHdr #container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	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: 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. */
} 
.twoColFixLtHdr #header h1 {
	color:#FF0000; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 120%;
	font-weight: normal;
	width: 980px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: left;
}
.twoColFixLtHdr #menubar ul li{
	display: inline;
	padding-right: 8px;
	padding-left: 8px;
	text-align: center;
}
.twoColFixLtHdr #menubar ul {
	padding-top: 4px;
	padding-bottom: 4px;
	margin-top: 4px;
	margin-bottom: 4px;
}
.twoColFixLtHdr #menubar ul li a {
	color: #CCCCCC;
	
	font-weight: normal;
	text-decoration: none;
	text-align: center;
}
.twoColFixLtHdr #menubar ul li a:hover{
	color:#FF0000;
}

.twoColFixLtHdr #menubar{
	background-image: url(../images/menubar.jpg);
	background-repeat: repeat-x;
	height: 30px;
	text-align: center;
	font-size: 80%;
	color:#FFFFFF;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* 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: #000000;
	padding-top: 60px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}

.twoColFixLtHdr #sidebar1 a, .twoColFixLtHdr #sidebar1 a:visited{
text-decoration:none;
color:#cccccc;
}
.twoColFixLtHdr #sidebar1 a:hover{
text-decoration:underline;
color:red;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#000000;
	
}
.twoColFixLtHdr #mainImage{
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	margin-top:10px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.twoColFixLtHdr #mainContent h1, .twoColFixLtHdr #mainContent h2,.twoColFixLtHdr #sidebar1 h1,#sidebar1 h3 {
	color:#990000;
	font-size: 130%;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
} 
.twoColFixLtHdr #mainContent p,#sidebar1 p {
	font-size:70%;
	color:#ffffff;
	line-height: 1.95em;
	font-weight: lighter;
	font-style: normal;
}
.twoColFixLtHdr #mainContent ul li{
	color:#ffffff;
	list-style-type: none;
}
.twoColFixLtHdr #mainContent a, .twoColFixLtHdr #mainContent a:visited,.twoColFixLtHdr #footer a,.twoColFixLtHdr #footer a:visited{
 color:#ffffff;
 text-decoration:none;
}
.twoColFixLtHdr #mainContent a:hover{
text-decoration:underline;
}
.twoColFixLtHdr #mainContent h3{
color:#ffffff;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#212121; 
} 
.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-size: 70%;
	color:#999999;
}

.twoColFixLtHdr #flashbanner{
	padding-top: 3em;
	padding-bottom: 1em;
		
}

.twoColFixLtHdr #footer strong{
	color:#990000;
}
.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;
}
.imagefloater{
	float:right;
	
	padding-left:8px;
}
.imagefloater2{
	float:left;
	padding-right:8px;
	padding-left:8px;
}
