/* Fonts */
/* open-sans-regular - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open-sans-v15-latin-regular.eot'); /* IE9 Compat Modes */
	src: local('Open Sans Regular'), local('OpenSans-Regular'),
		 url('../fonts/open-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		 url('../fonts/open-sans-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
		 url('../fonts/open-sans-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
		 url('../fonts/open-sans-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
		 url('../fonts/open-sans-v15-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  /* open-sans-italic - latin */
  @font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/open-sans-v15-latin-italic.eot'); /* IE9 Compat Modes */
	src: local('Open Sans Italic'), local('OpenSans-Italic'),
		 url('../fonts/open-sans-v15-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		 url('../fonts/open-sans-v15-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
		 url('../fonts/open-sans-v15-latin-italic.woff') format('woff'), /* Modern Browsers */
		 url('../fonts/open-sans-v15-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
		 url('../fonts/open-sans-v15-latin-italic.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  /* open-sans-700 - latin */
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/open-sans-v15-latin-700.eot'); /* IE9 Compat Modes */
	src: local('Open Sans Bold'), local('OpenSans-Bold'),
		 url('../fonts/open-sans-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		 url('../fonts/open-sans-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
		 url('../fonts/open-sans-v15-latin-700.woff') format('woff'), /* Modern Browsers */
		 url('../fonts/open-sans-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
		 url('../fonts/open-sans-v15-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
  }

/* Bootstrap */
.container {
	max-width: 1030px;
	width: 100%;
}

/* General */
body {
	font-family: 'Open Sans';
	background: #ffffff;
	color: black;
}
img {
	max-width: 100%;
}
h1 {
	font-size: 30px;
	font-weight: 700;
}
h2 {
	font-size: 26px;
}
h3 {
	font-size: 22px;
}

/* Header */ 
header {
}

header img {
	max-width: 1000px;
	width: 100%;
	height: auto;
}

div .row {
	background: #fbfdf2;
}

/* Sidebar */
.widget {
	margin-top: 40px;
	margin-left: 8px;
}
.widget-title {
	margin: 0;
	padding: 10px 10px 10px 40px;
	background: url('../img/menu-bg-new.png');
	background-repeat: no-repeat;
	font-weight: 700;
}

.sidebar-container {
	background: #fbfdf2;
}

.widget .menu {
	background: #667814;
	color: #ffffff;
	list-style: none;
	padding: 0;
	margin-left: 4px;
	width: 201px;
}
.widget .menu li a {
	padding: 5px 10px;
	display: block;
	color: #ffffff;
}
.widget .menu li a:hover, .widget .menu li.current-menu-item > a {
	background: #233019;
	text-decoration: none;
	color: white;
	-webkit-transition: all 0.2s ease; /* Firefox */
	-moz-transition: all 0.2s ease; /* WebKit */
	-o-transition: all 0.2s ease; /* Opera */
	transition: all 0.2s ease; /* Standard */
}
.widget .sub-menu {
	display: none;
	padding-left: 30px;
}
.widget .current-menu-item.menu-item-has-children .sub-menu {
	display: block;
}
.widget .current-page-ancestor .sub-menu,
.widget .current-menu-parent .sub-menu {
	display: block;
}
.widget.tribe-events-list-widget p {
	background: #667814;
	color: #ffffff;
	margin-left: 4px;
	width: 201px;
	padding: 10px;
} 
.tribe-events-list-widget .tribe-list-widget {
	padding: 10px;
	background: #667814;
	color: #ffffff;
	margin-left: 4px !important;
	width: 201px;
}
.tribe-events-list-widget .tribe-list-widget a {
	color: black;
	font-weight: lighter;
	font-size: 14px;
	color: #ffffff;
}
.widget.tribe-events-list-widget p a {
	color: black;
	font-weight: bold;
	font-size: 14px;
	color: #ffffff;
}
.tribe-events-list-widget .tribe-events-list-widget-events {
	padding: 0 !important;
}
#menu-toggle {
	display: none;
}

@media (max-width: 767px) {
	.sidebar {
		display: block !important;
		position: absolute;
		left: -250px;
		z-index: 10000;
		width: 226px;
    -webkit-transition: left ease 1s;
    -moz-transition: left ease 1s;
    -o-transition: left ease 1s;
		transition: left ease 1s;
		background: #d3e9c3;
		-webkit-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.75);
		box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.75);
	}
	.sidebar.active {
		left: 0;
    -webkit-transition: left ease 1s;
    -moz-transition: left ease 1s;
    -o-transition: left ease 1s;
    transition: left ease 1s;
	}
	#menu-toggle {
		display: block;
		z-index: 10000;
		padding: 5px 0 10px;
		text-align: center;
		background: #667814;
		color: white;
	}
	#menu-toggle:hover, #menu-toggle:focus {
		text-decoration: none;
	}
	#menu-toggle img {
		width: 40px;
		height: auto;
	}
	.mobile-logo a {
		display: inline-block;
		font-size: 30px;
		color: #233019;
		margin-top: 17px;
		margin-right: 10%;
		font-weight: 700;
	}
	.mobile-logo a:hover, .mobile-logo a:focus {
		text-decoration: none;
	}
	.sidebar {
		padding-bottom: 20px;
	}
	.widget {
		margin-top: 25px;
	}
}
@media (max-width: 480px) {
	.mobile-logo a {
		font-size: 24px;
		margin-top: 20px;
	}
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 20px;
	}
	h3 {
		font-size: 16px;
	}
	h4 {
		font-size: 14px;
	}
	h4 {
		font-size: 12px;
	}
}


/* Content */
.content {
	margin-top: 40px;
	margin-bottom: 40px;
	min-height: 1000px;
}
.content a {
	text-decoration: underline;
	color: #4a6030;
	font-weight: 700;
}
.content h1 {
	margin-bottom: 30px;
}
.content #map {
	width: 100%;
	height: 400px;
}
.content table {
	width: 100%;
	margin-bottom: 30px;
}
.content td, .content th {
	padding: 20px;
	border: 1px solid black;
}
.content td img {
	max-height: 20px;
	width: auto;
}
/* Footer */
footer {
	background: #ffffff;
	text-align: center;
}
footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
footer li {
	display: inline-block;
}
footer li a {
	display: inline-block;
	padding: 20px;
	color: black;
}
footer li a:hover {
	background: #233019;
	text-decoration: none;
	color: white;
	-webkit-transition: all 0.2s ease; /* Firefox */
	-moz-transition: all 0.2s ease; /* WebKit */
	-o-transition: all 0.2s ease; /* Opera */
	transition: all 0.2s ease; /* Standard */
}


/* Blog */
.blog .btn {
	background: #233019;
	text-decoration: none;
	color: white;
	margin-bottom: 15px;
}

/* Cookie Notice */
#cookie-notice {
	bottom: 60px;
}

/* Add Caption to NGG Images */
.ngg-gallery-slideshow-image .caption {
	text-align: center;
	height: 30px;
	max-width: 60%;
	margin: 15px auto;
}