@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: #FFFFFF;
	background-image: url(images/Body_BG.jpg);
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
}
h1, h2, h3, h4 {
	font-family:"Times New Roman", Times, serif;
}

#container  {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-right: 2px solid #000000;
	border-left: 2px solid #000000;
} 
#header  {
	background-image: url(images/banner.jpg);
	height: 123px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#header h2 {
	display: none;
}

#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 */
	display: none;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 5px 15px 15px;
	background-color: #FFFFFF;
	background-image: url(images/Sidebar_topBG.gif);
	background-repeat: no-repeat;
}
#sidebar1 p {
	font-size: 14px;
	color: #8C0018;
	margin-top: 0px;
	margin-bottom: 5px;
}

#sidebar1 #award {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	left: 15px;
	top: 15px;
}
#TopNav {
	background-image: url(images/Nav_BG.gif);
	background-repeat: repeat-x;
	height: 24px;
	background-color: #8C0018;
	margin-left: 200px;
}

#mainContent  {
	margin: 0 0 0 200px; /* 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 */
} 
#footer  {
	padding: 8px 0;
	background-color: #8c0018;
	text-align: center;
} 
#footer h3 {
}

#footer  p  {
	color: #FFFFFF;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#footer h3 {
	margin-top: 5px;
	margin-bottom: 0px;
	color: #FFFFFF;
}
#mainContent  .messageBox {
	width: 350px;
	background-image: url(images/BoxBG.gif);
	height: 160px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.messageBox p {
	margin-right: 15px;
	margin-left: 15px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.messageBox h3 {
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 10px;
	margin-top: 0px;
}
#botNav {
	list-style-type: none;
	margin-top: 35px;
	text-indent: -40px;
}
#botNav li {
	display: inline;
}
.small {
	height: 1px;

}
#joinList p {
	margin-top: 0px;
	margin-bottom: 4px;
}


#mainContent #mailingList {
	width: 350px;
	background-image: url(images/BoxBG.gif);
	height: 200px;
}

.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;
	margin-bottom: 10px;
	margin-left: 10px;
}
.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;
}
#text {
	margin-right: 125px;
}
#bizName {
	color: #FFFFFF;
}
#formText {
	margin-right: 150px;
	margin-left: 70px;
}
#contactform {
	margin-right: auto;
	margin-left: auto;
	width: 575px;
}

