html, 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;
	border: 0;
	height: 100%;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #ffffff;
	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: 84%;
	font-family: "Trebuchet MS", Arial, sans-serif;
	color: #444;
}
.twoColFixLtHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
/*	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #FFFFFF; 
	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. */
} 
.twoColFixLtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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 */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0px 15px 0px;
}
.twoColFixLtHdr #mainContent { 
	margin: 10px 0 0 180px; /* 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 */
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF; 
} 
.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;
}
[if IE 5]>
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 { width: 210px; }
<![endif][if IE]>
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 { padding-top: 30px; }
.twoColFixLtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
<![endif]

quote {
/*float:center; */
	margin-left: 2cm;
	margin-right:2cm;
	font-size: 2em;
}

a {
	
	color: #800000;
}

a:hover {
	color: #8496B3;
	text-decoration: none;
}

h1 {
	font-size: 2em;
	font-family: Arial;
	color: maroon;
	margin: 0;
	padding-bottom: 8px;
}

h2 {
	font-size: 1.3em;
	font-family: Arial;
	color: Midnightblue;
	/* text-transform: uppercase; */
	margin: 0;
	padding: 8px 0;
}

h3 {
	font-size: 1.0em;
	font-family: Arial;
	margin: 0;
	padding-bottom: 8px;
}

h4 {
	font-size: 0.8em;
	font-family: Arial;
	color: #8CA1AA;
/*	text-transform: uppercase; */
	margin: 0;
	padding-bottom: 8px;
}

p  {
	margin: 0;
	padding-bottom: 8px;
}

hr {
	height: 1px;
	border-top: solid 1px #AACCD5;
}

img {
	border: none;
}

#wrapper {
	margin: 0 auto;
	width: 800px;
	text-align: left;
	height: 100%;
}

#head {
	background-color: #FFFFFF;
	/* height: 191px; */
	color: #FFFFFF;
	border-bottom: 1px solid #fff;
}

#head div {
	float: left;
	clear: right;
	height: 166px;
}

#logo {
	width: 185px;
}

#logo a {
	display: block;
	padding: 46px 0 0 14px;
	font-size: 18px;
	letter-spacing: 0;
	text-transform: uppercase;
	text-decoration: none;
}

#slogan {
	/* width: 600px;
	border-left: 1px solid #FFFFFF; */
}

#slogan span {
	display: block;
	padding: 28px 0 0 14px;
	font-size: 38px;
	letter-spacing: -2px;
	color: #91b3bc;
}

#toplinks {
	width: 73px;
}

#toplinks ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#toplinks li {
	float: left;
	display: inline;
	margin-top: 56px;
}

#toplinks a {
	display: block;
	width: 18px;
	height: 9px;
}

#toplinks span {
	display: none;
}

#tl_home {
	background-image: url(images/tl_home.gif);
	background-repeat: no-repeat;
}

#tl_contact {
	background-image: url(images/tl_contact.gif);
	background-repeat: no-repeat;
}

#tl_sitemap {
	background-image: url(images/tl_sitemap.gif);
	background-repeat: no-repeat;
}

#tl_home a:hover {
	background-image: url(images/tl_home-on.gif);
	background-repeat: no-repeat;
}

#tl_contact a:hover {
	background-image: url(images/tl_contact-on.gif);
	background-repeat: no-repeat;
}

#tl_sitemap a:hover {
	background-image: url(images/tl_sitemap-on.gif);
	background-repeat: no-repeat;
}

#body {
/*	float: right;
*/	margin-top: 3px;
	width: 600px;
	clear: both;
}
#church {
	margin: 2px 0;
	height: 723px;
	background-image: url(images/history/churchmoon.jpg);
	background-repeat: no-repeat;
}

#thennow {
	margin: 16px 0;
	height: 166px;
	background-image: url(images/thennow.jpg);
	background-repeat: no-repeat;
}

#content {
	float: left;
	padding-right: 14px;
	width: 556px;/*	border-right: 1px solid #AACCD5;*/
}

hr#right {
	clear: right;
}

hr#both {
	clear: both;
}

hr#left {
	clear: left;
}


#news {
	margin-left: 560px;
	width: 165px;
	padding-left: 15px;
	border-left: 1px solid #AACCD5;
	display: inline;
}

#news h4 {
	padding-left: 14px;
	color: #000000;
	font-size: 1em;
/*	background-image: url(images/li1b.gif);
	background-repeat: no-repeat; */
}

#news p {
	padding-left: 14px;
	font-size: 0.8em;
	font-family: Arial;
	color: #000000;
}

#news dl {
	padding: 0;
	margin: 0;
}

#news dt {
	padding: 6px 10px 4px 10px;
	margin: 0;
	border-top: 1px solid #DEECF0;
	background-image: url(images/li3.gif);
	background-position: 0 11px;
	background-repeat: no-repeat;
	font-size: 1em;
	font-weight:bold;
	color: #800000;
}

#news dd {
	padding: 0;
	margin: 0;
	font-size: .8em;
}

#news h5 {
	margin: 0;
	padding-bottom: 2px;
	font-size: .9em;
	font-weight: bold;
	color: #556379;
}

#threecells {
}

#threecells div {
	float: left;
	font-size: .9em;
/*	clear: right;
*/}

#threecells a {
	display: block;
	width: 162px;
	height: 48px;
	margin-bottom: 10px;
}

#threecells span {
	display: none;
}

#threecells h2 {
	color: maroon;
}

#threecells h3 {
	color: midnightblue;
}

#threecells h3#time {
	color: maroon;
}

#cell_1 {
	width: 162px;
	padding-right: 15px;
}

#cell_1 a {
	background-image: url(images/email.jpg);
}

#cell_2 {
	width: 162px;
	padding: 0 0px 0 0px;
	border-left: 1px solid #AACCD5;
	border-right: 1px solid #AACCD5;
}

#cell_2 a {
	background-image: url(images/sspanel.jpg);
}

#cell_3 {
	width: 162px;
	padding-left: 15px;
}

#cell_3 a {
	background-image: url(images/3colls_p3.jpg);
}
#cell_A {
	width: 162px;
	padding-right: 15px;
}

#cell_A a {
	/* background-image: url(images/email.jpg); */
}

#cell_B {
	width: 162px;
	padding: 0 0px 0 0px;
	border-left: 1px solid #AACCD5;
	border-right: 1px solid #AACCD5;
}

#cell_B a {
	/* background-image: url(images/sspanel.jpg); */
}

#cell_C {
	width: 162px;
	padding-left: 15px;
}

#cell_C a {
	/* background-image: url(images/3colls_p3.jpg); */
}

#side {
	padding-bottom: 8px;
	border-top: 3px solid #ffffff;
	width: 165px;
	background-color: #EAF4F6;
	height: 100%;
}

#menu {
	padding: 0;
	margin: 0;
}

#menu a {
	text-decoration: none;
	display:block;
}

#menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#menu li {
	margin: 0;
	padding: 0;
	font-size: 11px;
	font-family: Arial;
}

#menu ul li a {
	margin-top: 6px;
	padding: 0 28px;
	height: 21px;
	line-height: 21px;
	font-weight: bold;
	text-transform: uppercase;
/*	border-top: 1px solid #AACCD5; */
	border-bottom: 1px solid #AACCD5;
	background-image: url(images/li1a.gif);
	background-position: 13px 5px;
	background-repeat: no-repeat;
}

#menu ul li ul li a {
	margin-top: 0;
	height:19px;
	line-height: 19px;
	font-weight:normal;
	text-transform: capitalize;
	background-image: url(images/li2.gif);
	background-color: #DEECF0 ;
	background-position: 13px 5px;
	background-repeat: no-repeat;
	border-top: 1px solid #EEF5F7;
	border-bottom: 1px none #EEF5F7;
}

#menu ul li ul li ul li a {
	background-color: #C2DCE3;
	background-image: none;
}

#menu li li li li a {
	padding-left: 36px;
}

#menu ul li ul li ul li ul li a {
	background-color: #A1CEDB;
	background-image: none;
}

#ads {
	padding: 0;
	margin: 0;
}

#ads dt {
	padding: 0;
	margin: 6px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

#ads dd {
	margin: 0;
	padding: 4px 12px;
	border-bottom: 1px solid #EEF5F7;
	font-size: .8em;
	border-bottom: 1px solid #AACCD5;
	line-height: 1.2em;
}

#foot {
	clear: both;
	padding: 1em;
	background-color: #fff;
	background-image: url(images/logo_small.gif);
	background-repeat: no-repeat;
	font-size: .8em;
	line-height: 1.4em;
	text-align: center;
	position: relative;
}

#top_nav {
	display: none;
	padding-left: 185px;
	background-color: #DEECF0;
	height: 20px;
}

#top_nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border-left: 1px solid #fff;
	background-image: url(images/tn_bg1.gif);
	background-position: right top;
	background-repeat: no-repeat;
	height: 20px;
}

#top_nav li {
	float: left;
	margin: 0;
	padding: 0;
	border-top: 2px solid #f60;
	border-right: 1px solid #fff;
	background-color: #E5F1F3;
}

#top_nav a {
	display: block;
	padding: 0 1.3em;
	line-height: 18px;
	font-family: Arial;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

#top_nav a:hover {
	background-color: #f60;
	color: #fff;
}
#imagefloatleft {
	float:left;
	margin-right:.5em;
}

#imagefloatright {
	float:right;
	margin-right:.5em;
}
#imagefloatcenter {
/*	float:center;*/
	margin-left:.5em;
	margin-right:.5em;
}

#person {
	padding: 15px 0 0 0;
	border-bottom: solid 1px #AACCD5;
}

#personwithimg {
	height: 125px;
	padding: 15px 0 15px 0;
	border-bottom: solid 1px #AACCD5;
}

#footer {
	margin-left: -8em;
}
