@charset "utf-8";
/* CSS Document */

body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
	background-color: #FFFFFF;
}
#wrapper {
	margin: 0px;
}
#header {
	background-image:url(images/header_side.gif);
	background-repeat: repeat-x;
}
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#container {
	width: 980px;
	background: #FFFFFF;
	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. */
}
#main-nav {
	position: relative;
	height: 35px;
	background-image:url(images/mainnav.gif);
	background-repeat:no-repeat;
	margin: 2px 0 6px 0;
}
ul {
	margin: 0;
	padding: 0px;
	list-style: none;
	text-decoration: none;
}
#main-nav ul li {
	position: relative;
	float: left;
	padding: 12px;
	font-size:14px;
	padding-top: 9px;
	display:block;
}

#flash {
	float: left; /* since this element is floated, a width must be given */
	width: 215px; /* 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 */
	height:553px;
}
#RightContainer {
	width: 748px;
	background: #FFFFFF;
	text-align: left;
	float: right;
}
#FirstColumn {
	float: left;
	width: 235px;
	background-image:url(images/green.gif);
	background-repeat: no-repeat;
	background-position: 0px 162px;
}
#SecondColumn {
	margin: 0 235px;
	padding: 0 15px 0 20px;
	background-image:url(images/yellow.gif);
	background-repeat: no-repeat;
	background-position: 20px 162px;
}
#ThirdColumn {
	float: right;
	width: 235px;
	background-image:url(images/orange.gif);
	background-repeat: no-repeat;
	background-position: 0px 162px;
}
#bottom {
	float:left;
	clear:both;
	width: 735px;
	margin-top:15px;
}
#BottomLeft {
	float: left;
	width:485px;
	height: 145px;
	background-image:url(images/BottomLeft.gif);
	background-repeat:no-repeat;
	padding-left:5px;
}
#BottomLeft p {
	font-size:12px;
}
#BottomLeft ul li {
	float: left;
	list-style: none;
}
#BottomRight {
	float:right;
	width:235px;
	height:145px;
	background-image: url(images/BottomRight.gif);
	background-repeat:no-repeat;
	font-size:12px;
	padding-left:5px;
	margin-left:5px;
}
#footer {
	background-image:url(images/footer.gif);
	background-repeat:repeat-x;
	margin-bottom:0px;
	margin-top:15px;
}
#footer p {
	margin: 0;
	padding: 46px 0 5px 0;
	color: #FFFFFF;
	font-size:10px;
}
h4 {
	color:#333333;
	text-align:center;
	margin-top:7px;
}
.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;
}

.white
{
color: white;
	
}
#main-nav ul li a:link, a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
#main-nav ul li a:hover, a:active{
	color: #CCCCCC;
}
.gray_link a:link {
	text-decoration: none;
	color: #CCCCCC;

	
}
.gray_link a:visited {
	text-decoration: none;
	color: #CCCCCC;

	
}
.gray_link a:hover, a:active {
	color: #CCCCCC;
	text-decoration: none;

	
}

a {
outline: none;
}