@charset "utf-8";
/* CSS Document */


body {
	font: 100% "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #666666;
	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: #fff;
	background-image:url(images/bkgd2.png);
}
 #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; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size:13px;
}
 #header {
	background: #DDDDDD;
	/* padding: 0 10px 0 20px;  this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image:url(images/navBack4.jpg);
	height:40px;
	color:#FFF;
	font-size:1.25em;
	text-align:right;
	padding-top: 13px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 0;
}
#header a {
	padding:0px 25px;
	color:#FFF;
	text-decoration:none;
}
#header a:hover {
	padding:0px 25px;
	color:#81A2D4;
	text-decoration:none;
}

a {
	color:#FFF;
	text-decoration:none;
}
a:hover {
	color:#FFF;
	text-decoration:underline;
}

#logoLine {
	height:215px;
}

 #mainContent {
	padding: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #333;
	min-height:400px;
}
h1 {
	font-size:1.35em;
}
h2 {
	font-size:1.2em;
}
a {
	color:#FFF;
}
.boldHeader {
	font-weight:bold;
	font-size:1.2em;
}
 #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
	color:#533c0b;
	font-size:0.90em;
	text-align:center;
	height:50px;
	line-height:1.5em;
}
 #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 */
}
#footer a {
	color:#533c0b;
	text-decoration:none;
}
#footer a:hover {
	color:#533c0b;
	text-decoration:underline;
}
