@charset "utf-8";
body  {
	font-family: Georgia, "Times New Roman", Times, serif;
	/*background: #000;*/
	background-image:url(../images/Page-BgSimpleGradient.gif);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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;
}
#container {
	background-color:#000;
	width: 890px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*min-height:800px;*/
	height: auto;
	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. */
} 
#header { 
	background: #DDDDDD; 
	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. */
	width: 860px;
	height: 225px;
	background-image:url(../images/Header1.jpg);
	line-height:30px;
	font-family: Tahoma, Geneva, sans-serif;
	overflow:hidden;
	
} 
#header h1 {
	margin: 0px; 
	font-size: 50px;
	padding-top: 50px;
	padding-left: 50px;
	color:#FFF
}
#header h2 {
	font-size:28px;
	text-decoration:overline;
	padding-left: 50px;
	color:#FFF;

}
#nav {
	padding:0; 
	height:30px; 
	width:890px;
	background:url('../images/topMenuImages.png');
	margin-top: 62px;
	margin-left: -20px;
}

#nav ul {
	padding-left: 170px;
	
}

#nav li {
	padding:0; 
	margin:0; 
	list-style:none; 
	display:inline;
	
}

#nav li a {
	float:left; 
	padding-left:15px; 
	display:block; 
	color:rgb(255,255,255); 
	text-decoration:none; 
	font:12px Verdana, Arial, Helvetica, sans-serif; 
	cursor:pointer; 
	background:url('../images/topMenuImages.png') 
	0px -60px no-repeat;
}

#nav li a span {
	line-height:30px; 
	float:left; 
	display:block; 
	padding-right:15px; 
	background:url('../images/topMenuImages.png') 100% -60px no-repeat;
}

#nav li a:hover {
	background-position:0px -30px; 
	color:rgb(255,255,255);
}

#nav li a:hover span {
	background-position:100% -30px;
}

#nav li a.current, #nav li a.current:hover {
	line-height:30px; 
	font:12px Verdana, Arial, Helvetica, sans-serif; 
	background:url('../images/topMenuImages.png') 0px -90px no-repeat; 
	color:rgb(255,255,255);
}

#nav li a.current span, #nav li a.current:hover span {
	background:url('../images/topMenuImages.png') 100% -90px no-repeat;
}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: 15px 10px 15px 20px;
	color: #CCC;
	font-size:12px;
}
#sidebar1 h3 {
	color:#FFF;
}
#sidebar1 li{
	margin-bottom:5px;
}
#sidebar1 a, a:link, a:visited {
	color: #F00;
	font-size:12px;
}
#sidebar1 a:hover {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
}

#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 5px 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h1 {
	color: #B51A1A;
	font-size:45px;
	
}
#mainContent h2 {
	color: #B51A1A;
	font-size: 20px;
	
}
#mainContent h2 a, a:link, a:visited {
	color: #B51A1A;
	font-size: 20px;
	
}
#mainContent h2 a:hover{
	color: #FFF;
	font-size: 20px;
	text-decoration: none;

}

#mainContent h3 {
	color: #B51A1A;
	font-size: 15px;
	
}
#mainContent p {
	font-size:14px;
}
#mainContent p a, a:link, avisited {
	font-size:14px;
	color: #B51A1A;
	text-decoration:underline;
}
#mainContent p a:hover {
	font-size:14px;
	color: #FFF;
	text-decoration:none;
}


#mainContent ul {
	
}
#mainContent li {
	list-style-type: disc;
	
}

#footer {
	height: 50px;
	width: 890px;
	color:#999;
	text-align:center;
	margin:auto;
	background-color:#000;
}

#footer ul {
	list-style-position:inside;
	text-align:center;

}

#footer li {
	list-style-type: none;
	display:inline;
	padding: 5px 10px 0 0;
}

#footer a:link, a:visited {
	color:#FFF;
	font-size: 10px;
	color:#F00;
}

#footer a:hover {
	color:#FFF;
	text-decoration:none;
	
}
.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;
}
.colorRed {
	color:#B51A1A;
	
}