@charset "utf-8";
/* CSS Document */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.6;
	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;
}
#container {
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #403F41;
	margin: 0px 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. */
}

#navcontainer {
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #85713F;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 40px;
	padding-top: 10px;
	font-size: 14px;
}

#nav {
	width: 960px;
	margin: 0px auto;
	color: #FFF;
	font-weight: bold;
	background-color: #85713F;
}

#nav a:link { text-decoration: none; margin-left: 10px; margin-right: 10px; }
#nav a:visited { text-decoration: none; margin-left: 10px; margin-right: 10px; }
#nav a:hover { color: #FFF; text-decoration: underline; margin-left: 10px; margin-right: 10px; }

.join:link { text-decoration: none; margin-left: 10px; margin-right: 10px; background-image: url(../images/join-but.jpg); display:block; width: 96px; height:36px; }
.join:visited { text-decoration: none; margin-left: 10px; margin-right: 10px; background-image: url(../images/join-but.jpg); display:block; width: 96px; height:36px; }
.join:hover { text-decoration: none; margin-left: 10px; margin-right: 10px; background-image: url(../images/join-but.jpg); display:block; width: 96px; height:36px; }

.whitelink:link, .whitelink:visited { text-decoration: underline; color:#FFF; }
.whitelink:hover { text-decoration: none; color: #C69; }

.blacklink:link, .blacklink:visited { text-decoration: underline; color:#000; }
.blacklink:hover { text-decoration: none; color: #C69; }

#content a:link, #content a:visited { text-decoration: none; color:#FFF; }
#content a:hover { text-decoration: none; color: #C69; }

#header {
	background: #FFF; 
	padding: 0px;
	width: 960px;
	margin: 0px auto;
	text-align: left;
}

#mainContent {
	width: 960px;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #221E1F;
	margin: 0px auto 50px auto;
}

#content {
	padding: 20px;
	color: #FFF;
	min-height: 400px;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(../images/bg_footer.gif);
	background-repeat: repeat-x;
	background-color: #232121;
}
#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 */
}

#affiliates {
	width: 150px; 
	padding: 10px 10px; 
	float: left; 
	margin-right: 20px;
	margin-bottom: 20px;
}

#partners {
	width: 200px; 
	padding: 10px 10px; 
	float: left; 
	margin-right: 20px;
	margin-bottom: 20px;
}

#sponsors {
	width: 200px; 
	padding: 10px 10px; 
	float: left; 
	margin-right: 20px;
	margin-bottom: 20px;
}

#affiliates h2 {
	margin: 0px 0px 5px 0px; 
	line-height: 1.3;
}

#affcontent {
	line-height: 1.2; 
	margin-top: 5px;
}
