@charset "utf-8";

html, body {
height: 101%;
margin: 0 0 1px 0;
}

body  {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	/*background: #8c6137;*/
	background-color: white;
	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: #000000;*/
	/*background-image: url(../images/free-vector-horses3.png);*/
	background-attachment: fixed;
	background-position: center;
	background-repeat: repeat;
}
p {
	font-size: 100%;	
}
.twoColFixLtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*background: #FFFFFF;*/
	background-image: url(../images/shadow_background.png);
	background-repeat: repeat-y;
	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. */
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
	color: #000;
	/*padding: 0 30px 0 30px;*/
} 
.twoColFixLtHdr #header { 
	/*background-color: #FFFFFF;*/
/*	width: 720px;
	height: 120px;
	padding: 0 30px;*/
	/*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. */
} 
#header-link {
	background-image: url(http://www.fairviewtexascog.org/images/banner-d2-web.png);
	background-repeat: no-repeat;
	background-position: center;
	/*border-bottom: 2px solid #000;*/
	display: block;
	width: 720px;
	height: 120px;
	text-indent: -9999px;
	margin: 0 30px;
	text-align: center;
	/*padding: 0 30px 0 30px;*/
}
.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 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFF;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: none; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 5px 0;
	border-right: 1px solid #DDD;
	padding-right: 10px;
	padding-left: 15px;
}
.twoColFixLtHdr #mainContent { 
	margin: 5px 0px 5px 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 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family:"Times New Roman", Times, serif;
	font-size: 100%;
	width: 500px;
	padding-right: 20px;
	/*color: #000;*/	
	font-size: 100%;
}
.twoColFixLtHdr #footer { 
	clear: both;
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	/*background: #000;*/
	/*border-top: 2px solid black;*/
	background-image: url(../images/footer-gradient4.png);
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	height: 105px;
	width: 780px;
	margin: 0 0px;
} 
.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: 27px 45px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFF;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	text-align: left;
	line-height: 16px;
}
.twoColFixLtHdr #footer p a {
	color: white;
}
.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;
}


a:link { /* this is the element selector which styles the #sidebar1 navigation links */
	list-style: none;
	text-decoration: none;
	color: #063377;
}
a:visited { /* this is the element selector which styles the #sidebar1 navigation links */
	list-style: none;
	text-decoration: none;
	color: #063377;
}
a:active { /* this is the element selector which styles the #sidebar1 navigation links */
	list-style: none;
	text-decoration: none;
	color: #063377;
}
a:hover { /* this is the element selector which styles the #sidebar1 navigation links */
	text-decoration: underline;
	color: #063377;
}
ul {
	list-style: none;
}
li {
	margin: 3px 0;
}
li:first-letter {
	text-transform: capitalize;
}
ol {
	margin: 1px 0;
}
#sidebar1 ul {
	list-style-image: url(../images/texas_star.gif);
	list-style-position: outside;
	font-size: 100%;
}
li a:link { /* this is the element selector which styles the #sidebar1 navigation links */
	list-style: none;
	text-decoration: none;
	color: black;
}
li a:visited { /* this is the element selector which styles the #sidebar1 navigation links */
	list-style: none;
	text-decoration: none;
	color: black;
}
li a:active { /* this is the element selector which styles the #sidebar1 navigation links */
	list-style: none;
	text-decoration: none;
	color: black;
}
li a:hover { /* this is the element selector which styles the #sidebar1 navigation links */
	text-decoration: none;
	color: #063377;
	border-bottom: 1px solid #063377;
	padding-top: 2px;
}
#sidebar1 li a:link { /* this is the element selector which styles the #sidebar1 navigation links */
	text-decoration: none;
	color: black;
	padding-top: 2px;
	list-style-image: url(../images/texas_star.gif);
}
#sidebar1 li a:visited { /* this is the element selector which styles the #sidebar1 navigation links */
	text-decoration: none;
	color: black;
	list-style-image: url(../images/texas_star.gif);
}
#sidebar1 li a:active { /* this is the element selector which styles the #sidebar1 navigation links */
	text-decoration: none;
	color: black;
	list-style-image: url(../images/texas_star.gif);
}
#sidebar1 li a:hover { /* this is the element selector which styles the #sidebar1 navigation links */
	text-decoration: none;
	color: #063377;
	list-style-image: url(../images/texas_star.gif);
	border-bottom: 1px solid #063377;
	padding-top: 2px;
}
h1 {
	color: #333;
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
}
h2 {
	color: #8c6137;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 125%;
}
h3 {
	display: inline;
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100%;
	font-weight: bold;
}
#topics {
	padding-left: 10px;
	visibility: hidden;
}
li {
	font-size: 110%;
}
.notice {
	color: #F00;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-size: 75%;
}
table {
	margin-left: 30px;	
}
#inspire_quotes {
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 75%;
	color: #333;
	font-weight: bold;
	border: none;
}
#col_name {
	width: 200px;
	float: left;
}
#col_date {
	width: 200px;
	float: left;
}
col_name li, col_date li {
	padding-left: 0px;
	margin-left: 0px;
	
}
#sprytooltip1 {
	background-color: white;
	width: 160px;
	border: 1px #000 solid;
	font-size: 12px;
	font-style: normal;
	text-align: left;
}
#interact li {
	list-style-type:square;
}
#tip_tool {
	border-bottom: dashed #000 1px;
	text-decoration: none;
	cursor: help;
}
#tip_tool:hover {
	border-bottom: dashed #000 1px;
	text-decoration: none;
}
img[alt="pdf"] {
	padding: 0 2px;
}
img[alt="mp3 audio"] {
	padding: 0 2px;
}
table {
	margin-top: 10px;
	border: none;
	border-collapse: collapse;
}
tr, td {
	border: 1px solid #CCC;
	padding: 2px 5px;
}
th {
	border:none;
}
#table_header_row {
	border: none;
}
.how-to {
	color: #333;
	border-bottom: #999 dashed 1px;
	font-size: 12px;
	cursor: help;
}
#how-to-down {
	/*border-collapse: separate;*/
	border: white solid 1px;
}
#spryregion1 table, #spryregion1 table td, #spryregion1 table th {
	border: white 1px solid;
}
#creator {
	color: #eee;
	font-size: 11px;
	font-weight: bold;
	padding: 0px 45px 0px 0px;
}
h4 {
	color: #C60;
	font-style: italic;
}
.old_sermon a {
	font-style: italic;
	color:#666;
}

.old_sermon a:hover {
	font-style: italic;
	color:#666;
}