﻿/* =========================================================
 This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
 would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
 the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
 ==========================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
a {
	outline: 0;
}
/* ======================================================
 The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of 
 the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the 
 page and create a centered container for the page content to display. 
 =======================================================*/
 
/* =======
original background color: #c7dcb6
========*/

body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	line-height: 1.2em;
	font-size: 1em;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #000;
/* ====
next two lines are in there for gradient!!!!! remove if needed
====*/
	background: rgb(226,246,202);
	background: linear-gradient(180deg, rgba(226,246,202,1) 0%, rgba(97,125,95,1) 100%);	margin: 0px;
	padding: 20px;
	
}
body img {
	border: 0px;
	text-decoration: none;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
/*=======================
Heading styles
========================*/
h1, h2, h3, h4 {
	margin: 30px 0px 0px 0px;
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	font-weight: bold;
}
h1 {
	font-size: 1.5em;
}
h2 {
	font-size: 1.35em;
}
h3 {
	font-size: 1.25em;
}
h4 {
	font-size: 1.1em;
}
/*================================
Link Styles unless specified separately
=================================*/
a, a:link {
	color: #CC6600;
	text-decoration: underline;
}
a:visited {
	color: #666633;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
a:focus {
	color: #2170bd;
}
a:active {
	color: #2170bd;
}
/*===================================
Masthead Styles
====================================*/
#masthead {
	width:100%;
	background-color: #161D0C;
	padding: 2px;
	color: #DAFFC1;
	
}
.site-name {
	font-size: 2em;
	text-align: center;
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	background-color: #809672;
}
.tagline {
	font-size: small;
}
#banner {
	width:100%;
	background-color: #809672;
	padding: 3px;
}

.slider {
  width: 100%;
  height: 510px;
  position: relative;
}

.slider img {
  width: 100%;
  height: 500px
  position: absolute;
  top: 0;
  left: 0;
}

.slider img:first-child {
  z-index: 1;
}

.slider img:nth-child(2) {
  z-index: 0;
}

/*==============================================
This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to 
avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the 
container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply 
set the left and right margins to center the container on the page. 
================================================*/
#outerWrapper {
	background-color: #C7DCB6;
	width: 1000px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0px auto;
	border-top: 2px solid #616E59;
	border-bottom: 2px solid #616E59;
	-moz-box-shadow: 0 0 20px #453823;
	-webkit-box-shadow: 0 0 20px #453823;
	box-shadow: 0 0 20px #453823;
}
/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
	background: #FFFFFF url('../images/content-bg.jpg') repeat-y right;
}
/*==================================
Right sidebar
===================================*/
#rightColumn1 {
	padding: 10px 10px 10px 10px;
	float: right;
	width: 200px;
}
/*================================
right sidebar navigation menu
==================================*/
#rightColumn1 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}
#rightColumn1 ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
}
#rightColumn1 ul li a {
	font: normal .85em Arial;
	color: #000000;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 30px;
	text-decoration: none;
	background: url('../images/bullet4.png') 8px 6px no-repeat;
}
#rightColumn1 ul li a:visited {
	color: #000000;
}
#rightColumn1 ul li a:hover {
	color: #ffffff;
	background: #809672 url('../images/bullet3.png') 8px 6px no-repeat;
}
.heading {
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #000000;
	margin-bottom: 0; /*bottom spacing between header and rest of content*/;
	text-transform: uppercase;
	padding: 7px 0 7px 15px;
}
/*==================================
 Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. 
===================================*/
#content {
	padding: 10px 20px 10px 20px;
	margin: 0% 220px 0% 0%;
	margin-left: 10px;
}

/* ========================================
 Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without 
being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and 
before the close of the container with floated elements. 
===========================================*/
.clearFloat {
	display: block;
	clear: both;
}
/*=================================================
Footer Styles 
==================================================*/
#footer {
	background-color: #161D0C;
	padding: 5px;
	color: #CCC;
	text-align: center;
}
#footer p {
	margin: 0px;
	font-size: .85em;
}
#footer a:link {
	color: #809672;
	font-weight: normal;
	text-decoration: underline;
}
#footer a:visited {
	color: #FFFFFF;
}
#footer a:hover, #outerWrapper #footer a:focus {
	color: #800000;
	font-weight: normal;
	text-decoration: underline;
}
#footer a:active {
	color: #999999;
}
/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.imgctr {
	display: block;
	margin: 0px auto;
}

/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: small;
}

/*================================
can beassigned to the first heading to remove all margins. This class can be used on any element for which you would like to remove margin.
====================================*/

.page-topper {
	margin: 0px;
}

/*======
slideshow style
======*/

 
#slider { 
	width:100%; margin-bottom:50px; }


.slides_container {
    width:100%;
    height:500px;
    position:absolute
}


/*=============
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 2px solid #000000;
	width: auto;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: 3px 3px 6px #dddddd;
	-moz-box-shadow: 3px 3px 6px #dddddd;
	-webkit-box-shadow: 3px 3px 6px #dddddd;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	color: #000000;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #CDBB99;
	background-color: #000000;
	color: #ffffff;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
input:focus {
	border: 2px solid #993300;
}



