@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #DCD9D4 url(../images/bkgd.gif);
	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: #665B4D;
}
#container {
	width: 968px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #665B4D;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #ffffff;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #665B4D url(../images/bkgd-banner.jpg) repeat-x; 
	height:155px;
	padding:10px 0px 0px 40px;
}
#navbar {
	background:#DCD9D4 url(../images/bkgd-nav.jpg) repeat-x;
	height:30px;
	text-align:right;
	margin:0 5px;
	padding-right: 30px;
}
#mainContent {
	margin:0;
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #665B4D;
}

a { color: #665B4D; }
a:link { text-decoration:underline; }
a:visited { text-decoration:underline; }
a:hover { text-decoration:none; }
a:active { text-decoration:none; }

a.white { color: #ffffff; }
a.white:link { text-decoration:underline; }
a.white:visited { text-decoration:underline; }
a.white:hover { text-decoration:none; }
a.white:active { text-decoration:none; }

h1 {
	font-size:24px;
	font-weight:normal;
}
h2 {
	font-size:18px;
	font-weight:normal;
}
p {
	font-size:12px;
	line-height:18px;
}
.textHome {
	font-size:14px;
	line-height:22px;
	color: #ffffff;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#665B4D;
	clear:both !important;
}
#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:10px;
	text-align:center;
	color: #DCD9D4;
}
