@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #FFF;
	background-image: url(../images/background.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	font-family: Quicksand, Calibri, sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background-attachment: fixed;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, h7, h8, h9, h10, h11, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 960px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0);
}

/*Header divs*/
.header {
	margin-right: auto;
	margin-left: auto;
	width: 912px; /*95%*/
	background-color: rgba(255,255,255,0.9);
}
.headerimage{
	width:auto;
	height:160px;
	display:block;
	margin-right:auto;
	margin-left:auto;
}
.menubar {
	margin-right: auto;
	margin-left: auto;
	width: 912px; /*95%*/
}
.contentheader {
	text-align:center;
	padding-top:55px;
}

/*Content divs*/
.content {
	padding: 10px 40px;
	width: 832px; /*95%*/
	background-color:rgba(255,255,255,0.9);
	min-height: 500px;
	margin-left:auto;
	margin-right:auto;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 10px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px;
}
ul.nav li {
	border-bottom: 1px solid #666;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 10px 40px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	background: #8090AB;
	color: #000;
}
ul.nav a:hover{
	background-color:#963;
	color:#FFF;
}
ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #6F7D94;
	color: #FFF;
}
.homepage {
	padding: 10px 40px 15px 40px;
	width: 832px; /*95%*/
	background-color:rgba(255,255,255,0.9);
	margin-left:auto;
	margin-right:auto;
	text-align:left;
}
/*Footer divs*/
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	font-size: 10px;
	text-align: right;
	padding-top: 10px;
	padding-right: 40px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#navlist {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: auto;
}
#navlist li {
	margin: 10px;
	float:left;
}
#navlist li a{
	padding: 0px;
	text-decoration: none;
	display: inline;
	color: #FFF;
	font-size: 12px;
}
.navbar {
	width: 912px; /*95%*/
	float: none;
	margin-right: auto;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

/* ~~miscellaneous float/clear classes~~ */
.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: 25px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 25px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*Fonts*/
h1 {
	font-size: 48px;
	text-transform:capitalize;
	font-family:Great Vibes, Calibri, sans-serif;
}
h2 {
	font-size: 24px;
	text-transform:uppercase;
	font-family:Open Sans Condensed, Calibri, sans-serif;
	color:#808080;
	font-weight:400;
}
h3 {
	font-size: 12px;	
}
h4 {
	font-size: 16px;
	text-transform:uppercase;
	font-weight:bold;
}
h5 {
	font-size: 16px;
	font-weight:normal;
}
h6 {
	font-size: 12px;
}
h7 {
	font-size: 12px;
	color: #FFF;
}
h8 {
	font-size: 20px;
	text-decoration:none;
	font-weight:bold;
	color: #FFF;
}
h9{
	font-family: Londrina Outline, Calibri, sans-serif;
	font-size: 48px;
	text-decoration:none;
	color: #404040;
}
h10{
	font-size: 42px;
	text-transform:uppercase;
	font-family:Open Sans Condensed, Calibri, sans-serif;
	color:#404040;
	text-shadow: 3px 2px 0px #fff, 5px 4px 0px rgba(0,0,0,0.15);
}
h11{
	font-size: 16px;
	text-transform:uppercase;
	font-family:Open Sans Condensed, Calibri, sans-serif;
	color:#FFFFFF;
}

/*Table classes*/
table{
	border-collapse:collapse;
}
th, td{
	border: 0.5px solid lightgrey;
	padding:8px 4px 0px 4px;
	text-transform: uppercase;
	font-weight:normal;
}
tr:nth-child(even){background-color: rgba(255,250,242,0.9);}
tr:nth-child(odd){background-color: rgba(255,235,214,0.9);}
th{
	background-color:rgba(125,86,24,0.9);
	color: white;
}

/*Button classes*/
.button{
	width: 210px;
	height: 80px;
	background-color:rgba(125,86,24,0.9);
	text-align: center;
	text-transform:uppercase;
	line-height: 80px;
	/*background: -webkit-gradient(linear,0%,0%,0%,100%,from(#FF9292),to(#b1432a));
	background: -moz-linear-gradient(19% 75% 90deg,#b1432a,#FF9292);*/
	border: solid 2px white;
	-moz-border-radius: 45px;
	-webkit-border-radius: 45px;
	border-radius: 45px;
	margin-left:auto;
	margin-right:auto;
}
.button:hover{
	/*background: -webkit-gradient(linear,0%,0%,0%,100%,from(#b1432a),to(#FF9292));
	background: -moz-linear-gradient(19% 75% 90deg,#FF9292,#b1432a);*/
	background-color: #B7A68C;
	border: solid 2px #7D5618;
}
.buttontext{
	display:inline-block;
	width:100%;
	height:100%;
}
.sliderbutton{
	width: 60px;
	height: 60px;
	background-color:rgba(255,255,255,0.5);
	text-align: center;
	text-transform:uppercase;
	line-height: 1.1;
	/*background: -webkit-gradient(linear,0%,0%,0%,100%,from(#FF9292),to(#b1432a));
	background: -moz-linear-gradient(19% 75% 90deg,#b1432a,#FF9292);*/
	border: solid 2px rgba(255,255,255,0.3);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-left:auto;
	margin-right:auto;
}
.sliderbutton:hover{
	/*background: -webkit-gradient(linear,0%,0%,0%,100%,from(#b1432a),to(#FF9292));
	background: -moz-linear-gradient(19% 75% 90deg,#FF9292,#b1432a);*/
	background-color:rgba(255,255,255,0.7);
	border: solid 2px rgba(255,255,255,0.9);
}
.sliderbuttonleft{
	display:inline-block;
	width:100%;
	height:100%;
}
.sliderbuttonright{
	display:inline-block;
	width:100%;
	height:100%;
}

/*Contact us page divs*/
.contactwindowleft {
	text-align:left;
	float: left;
	width: 82px;
	padding: 10px 0px;
}
.contactwindowcenterleft {
	text-align:left;
	float: left;
	width: 250px;
	padding: 10px 0px;
}
.contactwindowcenter {
	text-align:left;
	float: left;
	width:250px;
	padding: 10px 0px;
}
.contactwindowcenterright {
	text-align:left;
	float: left;
	width: 250px;
	padding: 10px 0px;
}
.contactwindowright {
	text-align:left;
	float: left;
	width: 0px;
	padding: 10px 0px;
}

/*Events page divs*/
.eventcontent {
	text-align:center;
}
.eventwindowleft {
	text-align:center;
	float: left;
	width: 8%;
	padding: 10px 0px 10px 0px;
}
.eventwindowcenterleft {
	text-align:center;
	float: left;
	width: 41%;
	padding: 10px 0px 10px 0px;
}
.eventwindowcenter {
	text-align:center;
	float: left;
	width:2%;
	padding: 10px 0px 10px 0px;
}
.eventwindowcenterright {
	text-align:center;
	float: left;
	width: 41%;
	padding: 10px 0px 10px 0px;
}
.eventwindowright {
	text-align:center;
	float: left;
	width: 8%;
	padding: 10px 0px 10px 0px;
}

/*Slider classes*/
.slider{
	position:relative;
	width:720px;
	height:562px;
	margin-left:auto;
	margin-right:auto;
	overflow:hidden;
}
.slider a{
	float:left;
	margin: 0px 6px 20px 6px;
}
.thumb{
	width:60px; /*space is 12*/
	height:60px;
}
.fullsize{
	width:708px;
	height:472px;
	position:absolute;
	bottom:562px;
	left:6px;
	
	-webkit-transition: bottom 1s ease;
	-moz-transition: bottom 1s ease;
	-o-transition: bottom 1s ease;
	-ms-transition: bottom 1s ease;
	transition: bottom 1s ease;				
}
.fullsizefeature{
	width:708px;
	height:472px;
	left:6px;
	z-index:-3;
}
a:focus .thumb{
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
	-mox-box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);	
}
a:focus .fullsize{
	bottom: 90px;
}

/*Home page divs*/
.sliderholder{
	position:relative;
	padding: 0px;
	width: 912px; /*95%*/
	height:300px;
	margin-right:auto;
	margin-left:auto;
}
.mainslider{
	position:relative;
	padding: 0px;
	width: 912px; /*95%*/
	height:300px;
	margin-right:auto;
	margin-left:auto;
	overflow:hidden;
	background-color:rgba(255,255,255,0.9);
	background-size: 912px 300px;
}
.mainslider div{
	position:absolute;
	display: inline-block;
	display: none;
	width:100%;
}
.sliderwindowleft {
	position:absolute;
	top:120px;
	left:30px;
}
.sliderwindowright {
	position:absolute;
	top:120px;
	right:30px;
}
.homepageheader {
	text-align:center;
	padding-top:10px;
}
.homewindowleft {
	text-align:center;
	float: left;
	width: 8%;
	padding: 10px 0px 10px 0px;
}
.homewindowcenterleft {
	text-align:center;
	float: left;
	width: 41%;
	padding: 10px 0px 10px 0px;
}
.homewindowcenter {
	text-align:center;
	float: left;
	width:2%;
	padding: 10px 0px 10px 0px;
}
.homewindowcenterright {
	text-align:center;
	float: left;
	width: 41%;
	padding: 10px 0px 10px 0px;
}
.homewindowright {
	text-align:center;
	float: left;
	width: 8%;
	padding: 10px 0px 10px 0px;
}

/*Other miscellaneous divs*/
.anniversaryeventcontent {
	padding: 15px 0px;
	text-align:justify;
}
.anniversaryeventcontentsubleft {
	padding: 15px 0px;
	width:50%;
	float:left;
}
.anniversaryeventcontentsubright {
	padding: 15px 0px;
	width:50%;
	float:left;
}

.column {
  float: left;
  width: 17.5%;
  padding: 10.4px;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.8; 
  cursor: pointer; 
}

.column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.imgcontainer {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 30px;
  color: white;
  font-size: 28px;
}

/* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 0px;
  right: 30px;
  color: white;
  font-size: 52px;
  cursor: pointer;
}
