@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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 85%;
	line-height: 125%;
	background-image: url(images/background.gif);
	background-repeat: repeat-x;
	background-position: center 0px;
}

#container {
	width: 980px;  /* 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; /* this overrides the text-align: center on the body element. */
} 
#header {
	background-color: #DDDDDD;
	background-image: url(../images/header_980.gif);
	background-repeat: no-repeat;
	height: 180px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#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 */
	text-indent: -2000px;
}

#header #tagline {
	color: white;
	font-style: italic;
	width: 440px;
	padding-top: 80px;
	padding-right: 0;
	padding-left: 460px;
	}
	
	
	
#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 */
	 /* the background color will be displayed for the length of the content in the column, but no further */
	background: #F5AE49;
	padding: 0;
	border-left: 1px solid #184777;
}

#sidebar1 .navbutton {

	padding: 0;

	border-bottom: 1px solid #F5AE49;

	background: #FBDFB6 url(images/nav_button_back.jpg) no-repeat;

	}
	
	.navbutton a {

	font-weight: normal;

	font-size: 14px;

	text-decoration: none;

	display: block;

	padding: 5px 5px 5px 10px;

	line-height: 24px;

	width: 100%;

	}

	

.navbutton a:link {

	color: #000;

	text-decoration: none;

	}

	

.navbutton a:visited {

	color: #000;

	text-decoration: none;

	}

	

.navbutton a:hover {

	color: #000;

	background: #FBDFB6 url(images/nav_button_back_over.jpg) no-repeat;

	}

	

.navbottom {

	background: #002F55;

	line-height: 7px;

	}

	

.join {

	text-align: center;

	font-size: 14px;

	font-weight: bold;

	letter-spacing: 0.1em;

	font-variant: small-caps;

	color: #002F55;

	background: #F9CE92;

	padding: 10px 10px 0 10px;	

	}

	

.mailinglist {

	text-align: center;

	background: #F9CE92;

	padding: 6px 10px 5px 10px;

	}

	

.seagull {

	text-align: center;

	padding: 20px 0 20px 0;

	}

/* end of sidebar////////////////////////////// */
	
#mainContent {
	background: #FFF;
	vertical-align: top;
	width: 715px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 220px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	line-height: 150%;
} 
#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #184777;
}
#mainContent h2 {
	font-size: 16px;
	color: #002F55;
}
#rightColumn {
	background-color: #CCCCCC;
	width: 150px;
	padding: 10px;
	float: right;
}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
#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 */
	font-size: 9pt;
}

.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;
}
.rightBorder {
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #6D8AA8;
}
.lefBorder {
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: #6D8AA8;
}
.hrDotted {
	color: #6D8AA8;
	text-decoration: none;
	height: 1px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #6D8AA8;
}
