@charset "utf-8";
/* CSS Document */

/* 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;
}
/* 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: #efefef;
  color: #2e2d2c;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 20px 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. */
h1 {
  color: #c17456;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: bold;
  margin: 0px -10px 10px -10px;
  padding: 0px 0px 10px 0px;
  border-bottom: 2px solid #556a1d;
}

/* Commonly used to style section titles. */
h2 {
  color: #c17456;
  font-family: Georgia, "Times New Roman", Times, serif;  
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
}

#rightColumn1 h2 {
  background-color: #7f7e6d;
  color: #efefef;
  font-family: Georgia, "Times New Roman", Times, serif;  
  font-size: 15px;
  font-weight: bold;
  margin: 0px -10px 10px -10px;
  padding: 10px;
 /* border-bottom: 2px solid #556a1d;*/
}

/* Commonly used to style section titles. */
h3 {
  color: #c17456;
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  margin-top: 6px;
  padding-top: 6px;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #d75846;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #a14a35;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #c92c17;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #c92c17;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #732600;
}
/* 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: #fefcda;
  background-image: url("/images/head.png");
  background-repeat: repeat-x;
  border: solid 1px #666; /* Sets the border properties for an element using shorthand notation */
  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: 780px;
}
#outerWrapper #contentWrapper{
	margin: 0;
	padding: 0;
  border: 0px solid #333;	
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-image: url("/images/leftcol2.png");
  background-repeat: no-repeat;
  float: left;
  padding: 1px 20px 50px 28px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
}

#outerWrapper #contentWrapper #leftColumn1 img{
	border: 0px;
}

#outerWrapper #contentWrapper #leftColumn1 ul{
	margin: 15px 0px 0px 0px;
	padding: 0px;
}

#outerWrapper #contentWrapper #leftColumn1 li{
	background-image:url(/images/navshade.png);
	background-repeat: repeat-y;
	margin: 6px 0px 0px 0px;
	padding: 5px;
	list-style: none;
	text-align: center;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 15px;
}

#outerWrapper #contentWrapper #rightColumn1 {
  float: right;
 margin: 80px 0px 0px 0px;  
  padding: 30px 10px 20px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 140px;
	background-image:url(/images/bgrightcol.png);
	background-repeat:no-repeat;    
}

#outerWrapper #contentWrapper #rightColumn1 #subscribe{
    background-color: #7f7e6d;
  color: #efefef;
  padding: 10px;
  margin: 20px -10px 20px -10px;
}

#outerWrapper #contentWrapper #rightColumn1 #subscribe form{
padding: 0px;
margin: 0px;
}

#outerWrapper #contentWrapper #rightColumn1 #subscribe .formText{
width: 135px;
}

/* 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: 90px 190px 0 200px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 30px 10px 20px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image:url(/images/bgcontent.png);
	background-repeat:no-repeat;
	min-height: 395px;
}

#outerWrapper #contentWrapper #content table{
	background-color: #fefdec;
	text-align: left;
	border-collapse: collapse;
	border: 1px solid #999;	
}

#outerWrapper #contentWrapper #content table th{
	background-color: #dddccd;
}

#outerWrapper #contentWrapper #content table tr{
	
}

#outerWrapper #contentWrapper #content table td{
	border: 1px solid #999;	
}


/* 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. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  background-color: #7f7e6d;
  padding: 10px 10px 10px 200px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  color: #efefef;
}

#outerWrapper #footer img{
border: 0px;
}

#outerWrapper #footer ul{
	margin: 0px;
	padding: 0px;
}

#outerWrapper #footer li{
	display: inline;
	list-style: none;
	padding: 0px 5px 0px 0px;
	margin: 0px 5px 0px 0px;
}

#outerWrapper #footer a, #outerWrapper #footer a:link, #outerWrapper #footer a:active, #outerWrapper #footer a:visited{
	color: #fefcda;
}

.map{
	border: 1px solid #999;
}

.photoLeft{
	border: 1px solid #999;
	float: left;
	margin: 0px 10px 10px 0px;
}

.photoRight{
	border: 1px solid #999;
	float: right;
	margin: 0px 0px 10px 10px;
}

.event{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-top: 1px dashed #7f7e6d;
	clear:left;
}

#newsContent{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #7f7e6d;
	clear:left;
}

.eventFirst{
	padding: 10px 0px 10px 0px;
	margin: 10px 0px 10px 0px;


}

p{
	margin: 6px 0px 10px 0px;
	padding: 0px;
}

#galleryOpen{
  background-color: #7f7e6d;
  color: #efefef;
  padding: 10px;
  margin: 0px -10px 0px -10px;
}