@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 10px 0 0 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-color:#424242;
}
#container {
	width: 760px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
} 
#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. */
	height: 130px;
	background-image:url(images/header.jpg);
} 
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 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #666666;
}
h2 {
	color: #666;
}
.mainAdvert {
	font-family: Calibri, verdana, Arial, sans-serif;
	color: #6A808E;
	text-align:center;
}
.hrSidebar {color:#cbc5ad;}


h3 {
	color: #FF9900;
	text-align: center;
}


#container #navigation {
	background-color: #FFFFFF;
	float: left;
	width: 760px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #46699E;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 30px;
}
#container #navigation  a {
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(images/tab_right.gif);
	background-repeat: no-repeat;
	background-position: right top;
	display: block;
	float: left;
	padding-top: 0.2em;
	padding-right: 10px;
	padding-bottom: 0.3em;
	padding-left: 0px;
	margin-right: 30px;
	font-weight: normal;
	letter-spacing: 1px;
}


#container #navigation ul {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2em;
	list-style-type: none;
}
#container #navigation li {
	background-image: url(images/tab_left.gif);
	background-repeat: no-repeat;
	float: left;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 8px;
}
#container    #navigation  #current a   {
	color: #E9E6DD;
	background-image: url(images/tab_right_active.gif);
}
#container  #navigation #current {
	background-image: url(images/tab_left_active.gif);
}

#mainContent {
	margin: 0 0 30px 200px; /* 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 */
	background-color:#FFFFFF;
} 


#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px;
	background-color:#E9E6DD;
	margin: 20px 10px 0px 10px;	/*padding-top: 0px;*/
	color: #333333;
	font-style: italic;
	text-align: center;
	

}
#container #sidebar p.verse {
	color: #666666;
	margin: 20px 5px;
	font-style: italic;
	text-align: center;
	padding: 0 5px;
}
#container  #sidebar  .link {
	font-style: normal;
	font-size: 12px;
}

#container #sidebar h3 {
	background-image: url(images/sidebar_top.gif);
	background-position:left top;
	background-repeat:no-repeat;
	color: #669900;
	font-size: 14px;
	text-align: center;
	margin: 0;
	padding: 10px;
	font-style: normal;
}
#container #sidebar h3.blue {
	color: #476A9F;
	background-image:none;
	font-style: normal;
}
/*#sidebarTop {
	
	background-repeat: no-repeat;
	height: 10px;*/

}



#container #sidebar img {
	float: left;
	padding: 0px;
	margin: 5px 5px 0 2px;
}
#sidebarBottom  {
	background-image: url(images/sidebar_bottom.gif);
	background-repeat:no-repeat;
	height: 10px;
	background-position: bottom left;
}
.movie {
	margin-left: 2px;
}





#footer {
	padding: 0 10px 0 20px;
	background-image: url(images/footer.gif);
	height: 35px;
} 
#container  #footer  a  {
	color: #FFFFFF;
	text-decoration:none;
}
#container #footer a:hover {
    color:#CCCCCC;
}

#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 */
	text-align: center;
	color: #FFFFFF;
	font-size: 80%;
}
.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;
}
p {
	font-family: Calibri, verdana, Arial, sans-serif;
	font-size: 100%;
	color:#333333;
}

