@charset "utf-8";
body  {
	background-attachment: scroll;
	background-image: url(images/fancybackground.jpg);
	background-repeat: repeat-y;
	background-position: 50% 0%;
	font: "Century Gothic", Helvetica, sans-serif;
	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 */
	font-size: 13px;
	color: #3e3a36;
	line-height: 18px;
}
#container { 
	width: 862px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
} 
#header { 
    height: 218px;
	background: #FFFFFF; 
	padding: 0 0px 0 0px;  /* 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. */
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#menu {
	width: 860px;
	height: 45px;
	color: #E0D3B1;
	background-color: #DED3B0;
	padding-left: 0px;
}
#headertop {
	height: 33px;
	color: #E0D3B1;
	background-color: #DED3B0;
	padding-left: 270px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 270px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
#sidebar1 a {
	color: #3e3a36;
	margin: 0;
	text-transform: none;
	text-decoration: none;
	}
#sidebar1 a:visited {
	color: #3e3a36;
	}
.sidelink {
	width: 260px;
	height: 80px;
	background-image: url(images/tabby.jpg);
	background-repeat: no-repeat;
}
.sidelink h3 {
	padding-top: 7px;
	margin-top: 0px;
	margin-bottom: 4px;
	margin-left: 19px;
	font-family: Arial, Helvetica, sans-serif;
	color: #3e3a36;
	font-size: 15px;
	text-align: left;
	line-height: 15px;
	letter-spacing: -1px;
	font-weight: bold;
	font-style: normal;
	}
.sidelink a:hover h3 {
	text-decoration: underline;
	}
.sidelink p {
	margin: 0 0 0 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: left;
	line-height: 13px;
	letter-spacing: 0;
	font-style: normal;
	font-weight: normal;
	}
.sidelink img {
	float: right;
	margin: 9px 8px 0 2px;
	border: none;
	}
#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 270px;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 30px;
	font-family: "Century Gothic", Helvetica, sans-serif;
	font-size: 13px;
	color: #333;
	line-height: 18px;
} 
#mainContent a {
	color: #65472b;
	font-family: "Century Gothic", Georgia, Times New Roman, serif;
	font-size: 13px;
	font-weight: normal;
		}
#mainContent a p {
		color: #65472b;
	font-family: "Century Gothic", Georgia, Times New Roman, serif;
	font-size: 13px;
	font-weight: normal;
		}
#mainContent a:hover {
		color: #65472b;
	font-family: "Century Gothic", Georgia, Times New Roman, serif;
	font-size: 13px;
	font-weight: bold;
		}
#mainContent h1 {
	margin: 0 0 10px 0;
	padding: 0;
	font-family: "Century Gothic", Times New Roman, Times, serif;
	color: #3e3a36;
	font-size: 30px;
	letter-spacing: -1px;
	font-weight: normal;
		line-height: 22px;
	}
#mainContent h2, #mainContent h2 a, #mainContent a h2 {
	margin: 0 0 5px 0;
	padding: 0;
	font-family: "Century Gothic", Arial, Helvetica, sans-serif;
	color: #272f27;
	font-size: 18px;
	letter-spacing: 0px;
	line-height: 22px;
	font-weight: bold;
	text-decoration: none;
	}
#mainContent h3 {
	clear: right;
	margin: 0 0 10px 0;
	padding: 0;
	font-family: "Century Gothic", Times New Roman, Times, serif;
	color: #F00;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: bold;
	line-height: 18px;
	}
#mainContent h4 {
	margin: 0;
	padding: 0;
	font-family: "Century Gothic", Helvetica, sans-serif;
	font-size: 14px;
	line-height: 16px;
	}
#mainContent p {
	margin: 0 0 20px 0;
	padding: 0;
	font-family: "Century Gothic", Helvetica, sans-serif;
	font-size: 13px;
	color: #3e3a36;
	line-height: 18px;
	}
#mainContent font {
	margin: 0 0 20px 0;
	padding: 0;
	font-family: "Century Gothic", Helvetica, sans-serif;
	font-size: 13px;
	color: #3e3a36;
	line-height: 18px;
    }
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
#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 */
}
.floatRight { /* 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;
}
.floatLeft { /* 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;
}

