@charset "utf-8";
body  {
	background: #bdafad url(images/back.jpg) repeat fixed;
	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: #685f5f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.75;
}
#header  {
	background: url(images/header.png) no-repeat center top;
	height: 125px;
	padding: 0;
	font-size: 10px;
	line-height: 100%;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
} 
#buttons {
	height: 25px;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
}
#container  {
	width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none;
	text-align: left;
	text-indent: 0px;
	padding-left: 0px;
	background-image: url(images/backMid.jpg);
	background-repeat: repeat-y;
	background-position: center top;
} 
#mainContent  {
	color: #685f5f;
	background-image: url(images/backTop.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 0;
	padding-left: 60px;
} 

h1 {
	line-height: 30px;
	color: #685f5f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h2 {
	color: #685f5f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#footer  {
	padding: 0;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/backBot.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
} 
#footer  p  {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	color: #685f5f;
	text-align: left;
	padding: 10px 20px 10px 60px;
	line-height: 150%;
}
#footer  #navigation  {
	font-weight: 700;
}

.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;
}

a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

a:link {
	color: #90a8a8;
}

a:visited {
	color: #685f5f;
}

a:hover {
	color: #bdafad;
}

