@charset "UTF-8";
/* COLORS
blue/link blue: 517595
yellow: D5C48E
link yellow: A99B72
*/
body  {
	font: 13px Verdana, Arial, Helvetica, sans-serif;
	background: #517595;
	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: #333333;
	background:url(../images/background.gif) left repeat-y;
	line-height:150%;
}
#container { 
	width: 870px;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#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 */
	padding: 6px 10px 6px 80px;
}
#logo {
	text-align:right;
	padding:0;
	margin:0;
	}
#mainContent { 
	margin: 0 0 0 300px; /* 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 0 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
a:link, a:visited {
	color:#517595;
	text-decoration:none;
	font-weight:bold;
	}
a:hover {
	color:#517595;
	text-decoration:underline;
	}
#nav {
	margin:12px 0 0 0;
	padding:2px 0;
	border-top:2px solid #D5C48E;
	border-bottom:2px solid #D5C48E;
	font-size:13px;
	text-align:center;
	color:#A99B72;
	}
#nav a:link, #nav a:visited {
	color:#517595;
	text-decoration:none;
	font-weight:bold;
	padding:2px 4px;
	}
#nav a:hover {
	text-decoration:none;
	padding:1px 4px;
	background:#D5C48E;
	color:#517595;
	}
#copy {
	padding:24px 0 0 0;
	}
#copy h1 {
	font-size:17px;
	border-bottom:3px solid #D5C48E;
	padding:3px 24px 1px 0;
	font-variant:small-caps;
	color:#FFFFFF;
	background:#517595;
	text-align:right;
	margin:0 0 12px 0;
	}
#copy h2 {
	font-size:13px;
	border-left:36px solid #D5C48E;
	padding-left:12px;
	}
#copy h3 {
	font-size:13px;
	}
ul {
	padding-left:70px;
	}
.returnTop {
	text-align:right;
	}
#footer {
	text-align:right;
	margin:48px 0 0 0;
	padding:0 0 48px 0;
	border-top:1px solid #E3E3E3;
	font-size:11px;
	}
.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;
}