@charset "utf-8";
body  {
	font: 100% Verdana, Arial, 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: left; /* if = "center" this centers the container in IE 5* browsers in coordination with the #container selector having a set width and margin of "auto". The text is then set to the left aligned default in the "#container" selector To align web page left, delete "auto" in "#container" selector "margin:" line -- That worked for Firefox and Safari, but also needed to change this line to left to get same result in IE7 */
	color: #000000;
	background-color: #CCCCCC;
}
.twoColFixLtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0;
	text-align: left;
} 
h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 250%;
	font-weight: bold;
	color: #333399;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 200%;
	font-style: normal;
	color: #333399;
	margin: 20px 0 0 0;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 150%;
	color: #996600;
	line-height: 90%;
}
h4 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 110%;
	font-weight: bold;
}
h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #996600;
}
h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	color: #333399;
	margin: 20px 0 0 0;
}
h7 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	font-style: normal;
	color: #FFFFFF;
	margin: 20px 0 0 0;
}
h8 {
	color: #333399;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 50%;
	font-style: normal;
	color: #FFFFFF;
	margin: 20px 0 0 0;
	line-height: 50%;
}



.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	color: #333399;
	background-color: #CC9900;
	font-weight: bold;
	font-family: "Times New Roman", Times, serif;
	font-size: 105%;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 20px 10px;
	background-color: #FFFFFF;
}
.twoColFixLtHdr #sidebar1 table {
	border: thick double #CC9900;
	background-color: #FFFFCC;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	width: 200px;
	font-size: 80%;
}

.twoColFixLtHdr #mainContent {
	margin: 0px 0px 0px 225px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 90%;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	width: 660px;
	background-image: url(images/ChurchSealWM_660.jpg);
	background-repeat: repeat-y;
	padding: 0px 0px 0px 0px;
} 
.twoColFixLtHdr #mainContent table {
	font-family: Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #footer {
	padding: 10px 10px 10px 10px;
	background-color: #CC9900;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
} 
.twoColFixLtHdr #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 */
}
.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;
}
