@charset "UTF-8";
/*	#3D4F59 - deep blue
	#FFEBD6 - tan
*/
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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	background-color: #FFF;
	line-height: 1.5em;
	color: #555;
}
#container  {
	width: 978px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #3D4F59;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #EDE4C8;
	background-image: url(../images/footerBlend.gif);
	background-repeat: repeat-x;
	background-position: bottom;
} 
h1 {
	font-size: 1.4em;
	color: #3D505A;
}
h2 {
	font-size: 1em;
	font-weight: bold;
	color: #3D505A;
}
h3 {
	font-size: 1em;
	font-weight: bold;
	font-variant: small-caps;
	color: #555;
}
#header  {
	background-color: #EDE4C8;
	background-image: url(../images/headerGraphic.gif);
	background-repeat: no-repeat;
	height: 178px;
	width: auto;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-position: left bottom;
	position: relative;
}
#header ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: absolute;
	right: 0px;
	bottom: 40px;
}
#header li {
	display: inline;	
}
#header li a:link, #header li a:visited {
	padding: .2em .5em;
	color: #FFF;
	text-decoration: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
}
#header li a:hover {
	color: #FFEBD6;	
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#mainContent  {
	margin: 0 0 0 290px; /* 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  {
	background-color: #3D4F59;
	background-repeat: repeat-x;
	height: 40px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: left;
	vertical-align: middle;
} 
#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 */
	color: #FFF;
	font-size: 0.85em;
}
.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;
}
