<!--
/* 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: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* 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. */
body {
  background-color: #6d9863;
  background-image: url();
  color: #2d2e2e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */

p {
color: #282103;
}

p.bottom {
margin-bottom: -2px;
}

span.green {
color: #43992f;
border-bottom: 1px solid black;
}

span.date {
color: #43992f;
font-weight: bold;
margin: 0 0 0 10px;
}

span.under {
border-bottom: 1px solid black;
}

span.bigemph {
font-size: 15px;
font-weight: bold;
}

span.lil {
font-size: 11px;
color: #282103;
}

span.boldtitle {
color: #43992f;
font-size: 15px;
font-weight: bold;
line-height: 14px;
}

span.boldtitle2 {
color: black;
font-size: 20px;
font-weight: bold;
line-height: 20px;
}

a#boldtitle2{
color: black;
}

h1 {
  color: #43992f;
  font-size: 20px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #43992f;
  font-size: 15px;
  font-weight: bold;
  line-height: 14px;
}
h3 {
  color: #43992f;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #3c982d;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #2d7336;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #09760d;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #09760d;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #164619;
}

hr {
background: transparent;
border-top: 1px solid #3e2d05; 
noshade;
width: 60%;
}
/* 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: #f9f9f2;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 760px;
border-left: 4px solid #454040;
border-right: 4px solid #454040;
min-height: 100%;
}
#outerWrapper #header {
  background-image: url(images/header.gif);
  background-repeat: no-repeat;
  background-color: #f9f9f2;
 display: block; 
 width: 760px;
  height: 215px;
}

#headerlink {
display: block;
width: 687px;
height: 134px;
position: relative;
top: 0px;
left: 38px;
border: none;
}

a#headerlink:focus {
outline: none;
}

a#about span {
display: none;
}

a#about {
 background: no-repeat;
 display: block;
 width: 104px;
 height: 151px;
 position: relative;
 top: -80px;
 left: 2px;
 border: none;
} 

a#about:visited {
background: no-repeat;
border: none;
}

a#about:hover {
 background: url(images/abouthover.gif) no-repeat;
}

a#about:active {
 background: url(images/abouthover.gif) no-repeat;
 border: none;
}

a#about:focus {
outline: none;
}

a#workshops span {
display: none;
}

a#workshops {
 background: no-repeat;
 display: block;
 width: 138px;
 height: 64px;
 position: relative;
 top: -145px;
 left: 117px;
 border: none;
} 

a#workshops:visited {
background: no-repeat;
border: none;
}

a#workshops:hover {
 background: url(images/workshopshover2.gif) no-repeat;
}

a#workshops:active {
 background: url(images/workshopshover2.gif) no-repeat;
 border: none;
}

a#workshops:focus {
outline: none;
}

a#calendar span {
display: none;
}

a#calendar {
 background: no-repeat;
 display: block;
 width: 126px;
 height: 56px;
 position: relative;
 top: -203px;
 left: 273px;
 border: none;
} 

a#calendar:visited {
background: no-repeat;
border: none;
}

a#calendar:hover {
 background: url(images/calendarhover.gif) no-repeat;
}

a#calendar:active {
 background: url(images/calendarhover.gif) no-repeat;
 border: none;
}

a#calendar:focus {
outline: none;
}

a#resources span {
display: none;
}

a#resources {
 background: no-repeat;
 display: block;
 width: 137px;
 height: 48px;
 position: relative;
 top: -251px;
 left: 407px;
 border: none;
} 

a#resources:visited {
background: no-repeat;
border: none;
}

a#resources:hover {
 background: url(images/resourceshover.gif) no-repeat;
}

a#resources:active {
 background: url(images/resourceshover.gif) no-repeat;
 border: none;
}

a#resources:focus {
outline: none;
}

a#blog span {
display: none;
}

a#blog {
 background: no-repeat;
 display: block;
 width: 81px;
 height: 65px;
 position: relative;
 top: -315px;
 left: 548px;
 border: none;
} 

a#blog:visited {
background: no-repeat;
border: none;
}

a#blog:hover {
 background: url(images/bloghover.gif) no-repeat;
}

a#blog:active {
 background: url(images/bloghover.gif) no-repeat;
 border: none;
}

a#blog:focus {
outline: none;
}

a#support span {
display: none;
}

a#support {
 background: no-repeat;
 display: block;
 width: 122px;
 height: 131px;
 position: relative;
 top: -445px;
 left: 631px;
 border: none;
} 

a#support:visited {
background: no-repeat;
border: none;
}

a#support:hover {
 background: url(images/supporthover.gif) no-repeat;
}

a#support:active {
 background: url(images/supporthover.gif) no-repeat;
 border: none;
}

a#support:focus {
outline: none;
}
a img {
border: none;
}

a#paypal {
border: none;
}

a#paypal:hover {
border: none;
}

a#paypal:focus {
border: none;
}

a#paypal:active {
border: none;
}

a#paypal:visited {
border: none;
}

#googlecalendar {
margin-left: -25px;
}


#nobullets ul li{
list-style: none;
}

.nobullet ul li{
list-style: none;
}

.nobullet1 ul li{
list-style: none;
margin-left: -30px;
}

p.donate {
margin: 0 0 0 60px;
}

#aboutlink ul li{
list-style: none;
margin-left: -32px;
}

img.goleft {
margin-left: -25px;
}

img.floatRight{
float: right;
border: 3px solid #ffffff;
margin: 4px;
}

a.floatRight{
border: 3px solid #ffffff;
margin: 4px;
}

img.floatnone{
border: 3px solid #ffffff;
margin: 4px;
}

a.floatnone{
border: 3px solid #ffffff;
margin: 0px;
}

#outerWrapper #contentWrapper #leftColumn1 {
 position: fixed;
 top: 0px;
 left: 0px;
 background: white;
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-right: -7px;
  width: 150px;
}

#outerWrapper #contentWrapper #rightColumn1 {
 
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-right: -7px;
  width: 200px;
}
/* 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. */
#outerWrapper #contentWrapper #content {
  margin: 0 220px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 25px 10px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #contentdonate {
margin-right: 75px;
margin-left: 75px;
}


.foodsmenu{
text-decoration: none;
color: ;
height: 20px;
}

.submenu{
height: 19px;
margin-left: 28px;

padding-left: 7px;
color: #333333;
}

.hide{
display: none;
}

.show{
display: block;
}

span.rfloat {
float: right;
margin: 0 0 10px 10px;
}

span.rfloat p {
text-align: center;
}

#outerWrapper #footer {
background-image: url(images/community.gif);
	background-attachment:	absolute;
	background-repeat:		no-repeat;
	position:	bottom center;
	bottom: 0;
	display: block;
	height: 500px;
	width: 760px;
  background-color: #f9f9f2;
  border-top: solid 0px #8ab573; /* Sets the top border properties for an element using shorthand notation */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#footerlinks {
font-size: 11px;
text-align: center;
padding: 400px 375px 0px 0px;
}

#footeraddress {
font-size: 11px;
text-align: center;
padding: 0px 0px 0px 0px;
}


#lbCaption, #lbNumber {
	margin-right: 71px;
}

#lbCaption {
	font-weight: bold;
}

img.border{padding:5px;border:1px solid #eee;background-color:#ffffff;}

#emailbox {
background-image: url(/images/emailborder.png);
background-repeat: no-repeat;
display: block;
height: 170px;
width: 160px;
position: relative;
padding: 3px 10px 0px 10px;
}

#latest {
background-color: white;
  background-repeat: no-repeat;
  display: block;
  height: 125px;
  width: 470px;
  position: relative;
  top: 125px;
  filter:alpha(opacity=70);
-moz-opacity:0.7;
-khtml-opacity: 0.7;
opacity: 0.7;
  z-index: 3;
  }
  
  #latestblog {
  background-image: url(images/latest.png);
  background-repeat: no-repeat;
  display: block;
  height: 125px;
  width: 480px;
  position: relative;
  top: 250px;
  z-index: 4;
  }
  
  #seemore {
  background-image: url(images/seemore.png);
  background-repeat: no-repeat;
  display: block;
  height: 250px;
  width: 240px;
  position: relative;
  top: 140px;
 left: 200px; 
  z-index: 4;
  }
  
  #eventsglide {
  position: relative;
  top: -260px;
  }
  
 
 #wppost {
 position: relative;
 top: -250px;
 }
 
   #connect {
  background-image: url(images/connect.png);
  background-repeat: no-repeat;
  display: block;
  height: 175px;
  width: 400px;
  position: relative;
  top: -30px;
  left: 20px;
  }
  
  #emailform {
 position: relative;
 top: -140px;
 left: 140px;
 }

.subscribe-button {
	padding: 4px;
	font-size: 18px;
	color: #fff;
	text-shadow: 1px 1px 3px #111;
	background: #ff9000;
	border: 1px solid #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius-: 5px;
	-webkit-box-shadow: 0px 0px 4px #222; /* Saf3-4 */
     -moz-box-shadow: 0px 0px 4px #222; /* FF3.5 - 3.6 */
          box-shadow: 0px 0px 4px #222; /* Opera 10.5, IE9, FF4+, Chrome 10+ */
		 background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#ff9000)); /* Saf4+, Chrome */
		  background-image: -webkit-linear-gradient(top, #ffcc00, #ff9000); /* Chrome 10+, Saf5.1+, iOS 5+ */
		  background-image:    -moz-linear-gradient(top, #ffcc00, #ff9000); /* FF3.6 */
		  background-image:     -ms-linear-gradient(top, #ffcc00, #ff9000); /* IE10 */
		  background-image:      -o-linear-gradient(top, #ffcc00, #ff9000); /* Opera 11.10+ */
		  background-image:         linear-gradient(top, #ffcc00, #ff9000);
		            filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffcc00', EndColorStr='#ff9000'); /* IE6-IE9 */
		}
		
#subscribe-button a {
	color: #fff;
}


