@charset "utf-8";
/* CSS Document */
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;
	text-align: center;
	background-color: #EBEBEB;
}
.twoColFixLtHdr #container {
	width: 760px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-family: Verdana, Geneva, sans-serif;
} 
.twoColFixLtHdr #header {
	height: 232px;
	background-image: url(../layout/header2.png);
	background-color: #EBEBEB;
} 
.twoColFixLtHdr #navBar {
	height: 35px;
	width: 750px;
	float: none;
	border: 1px solid #ECECEE;
}
.twoColFixLtHdr #butterFly {
	float: right;
	height: 300px;
	width: 300px;
	border: thin solid #000;
	margin-top: 300px;
	top: 300px;
	left: 200px;
}
.twoColFixLtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 175px;
	padding-bottom: 15px;
	padding-left: 20px;
	font-size: 0.85em;
	padding-top: 10px;
	background-image: url(../layout/bible.gif);
	background-repeat: no-repeat;
	background-position: right top;
	border-left-width: 1px;
	border-left-color: #000000;
	border-left-style: solid;
	padding-right: 10px;
	margin-right: 10px;
}
.twoColFixLtHdr #sidebar1 p {
	font-size: .9em;
}
.twoColFixLtHdr #container #sidebar1 h1 {
	font-size: 1.6em;
	font-weight: bold;
}
.twoColFixLtHdr #container #sidebar1 h2 {
	font-size: 1.4em;
	font-weight: bold;
}
.twoColFixLtHdr #container #sidebar1 h3 {
	font-size: 1.2em;
	font-weight: bold;
}
.twoColFixLtHdr #container #sidebar1 h4 {
	font-size: 1em;
	font-weight: bold;
}
.twoColFixLtHdr #sidebar1 a:link {
	color: #333;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 a:visited {
	text-decoration: none;
	color: #030505;
}
.twoColFixLtHdr #sidebar1 a:hover {
	text-decoration: underline;
	color: #0070A1;
}
.twoColFixLtHdr #sidebar1 a:active {
	text-decoration: none;
	color: #333;
}
.twoColFixLtHdr #mainContent {
	font-size: .9em;
	margin-bottom: 0;
	margin-top: 0px;
	float: left;
	width: 475px;
	margin-left: 40px;
} 
.twoColFixLtHdr #container #mainContent h1 {
	font-size: 1.6em;
	font-weight: bold;
}
.twoColFixLtHdr #container #mainContent h2 {
	font-size: 1.4em;
	font-weight: bold;
}
.twoColFixLtHdr #container #mainContent h3 {
	font-size: 1.2em;
	font-weight: bold;
}
.twoColFixLtHdr #container #mainContent h4 {
	font-size: 1em;
	font-weight: bold;
}
.twoColFixLtHdr #container #mainContent p {
	font-size: .85em;
	}

.twoColFixLtHdr #mainContent a:link {
	color: #0070A1;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent a:visited {
	text-decoration: none;
	color: #0070A1;
}
.twoColFixLtHdr #mainContent a:hover {
	text-decoration: underline;
	color: #0070A1;
}
.twoColFixLtHdr #mainContent a:active {
	text-decoration: none;
	color: #333;
}
.twoColFixLtHdr #footer {
	text-align: center;
	height: 100px;
	background-image: url(../layout/footer2.jpg);
	background-repeat: no-repeat;
	background-color: #EBEBEB;
	margin-left: 26px;
} 
.twoColFixLtHdr #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: 0.65em;
	color: #00ADE5;
	padding-top: 8px;
	padding-right: 0;
	padding-left: 0;
}
.twoColFixLtHdr #footer a:link {
	color: #00ADE5;
	text-decoration: none;
}
.twoColFixLtHdr #footer a:visited {
	text-decoration: none;
	color: #00ADE5;
}
.twoColFixLtHdr #footer a:hover {
	text-decoration: underline;
	color: #FFF;
}
.twoColFixLtHdr #footer a:active {
	text-decoration: none;
	color: #00ADE5;
}
.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;
}
.boldText {
	font-weight: bold;
}
.italicText {
	font-style: italic;
}
.boldItalicText {
	font-weight: bold;
	font-style: italic;
}

