@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;
	background-color: #322e39;
	background-image: url(images/bg_02.gif);
	background-repeat: repeat-x;
	background-position: top;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.main #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #322e39;
	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 #header {
	background-image: url(images/header_01.jpg);
	background-repeat: no-repeat;
	height: 205px;
}
.main #slideshowbg {
	background-image: url(images/slide-bg_02.jpg);
	height: 226px;
}
.main #welcomebg {
	background-image: url(images/welcomebg_03.jpg);
	height: 255px;
}
.main #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #322e39;
}
.main #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.main #welecomewrap {
	font-size: 20px;
	color: #000000;
	padding-top: 200px;
	letter-spacing: 2px;
}
.paleblue {
	color: #00a6d6;
}
.main #floatleft {
	float: left;
	padding-top: 5px;
}
.main #floatright {
	float: right;
	padding-right: 5px;
	padding-top: 5px;
}
.linkored {
	color: #FFFFFF;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #FF0000;
	padding-bottom: 2px;
	text-decoration: none;
}
.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 #footerwrap {
	padding-top: 100px;
}
.greytext {
	font-size: 10px;
	color: #CCCCCC;
}