/* BASE CSS */
* {
	margin: 0px;
	padding: 0px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	background-color: #FFFFFF;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Barlow Semi Condensed', Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 2em;
	font-weight: 500;
	letter-spacing: .05em;
	color: #262420;
}

body.editor, body.short_editor {
	background-image: none;
	min-height: 400px;
	transition: none;
}

body.short_editor {
	min-height: 200px;
}

body.editor, .cke_panel_block {
	background-color: #FFFFFF;
}

table {
	border-collapse:collapse;
	border-spacing: 0px;
	border: 0px;
}

table.data_table {
	width: 100%;
}

table th {
	text-align: left;
}

table td {
	vertical-align: top;
}

table.rates {
	margin-bottom: 1em;
}

table.rates th {
	background-color: #821C1E;
	color: #FFFFFF;
	padding: 2px 10px;
	border: 1px solid #FFFFFF;
}

table.rates td {
	background-color: #E2B267;
	padding: 2px 10px;
	border: 1px solid #FFFFFF;
}

p {
	margin-bottom: 1em;
}

.block_content p {
	text-align: justify;
}

ul {
	padding-left: 15px;
}

#content ul, #content ol, .editor ul, .editor ol {
	padding-left: 15px;
	margin-bottom: 1em;
}

#content ul + h2, .editor ul + h2 {
	margin-top: 1em;
}

#content p + h2, .editor p + h2 {
	margin-top: 1.5em;
}

h1 {
	font-size: 40px;
	line-height: 1em;
	text-transform: uppercase;
	text-align: center;
	font-weight: 500;
	color: #922022;
	margin-bottom: .75em;
}

h2 {
	font-size: 30px;
	line-height: 1em;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: .25em;
}

p + h2, table + h2 {
	margin-top: 1em;
}

h2 + table {
	margin-top: 1em;
}

@media only screen and (max-width: 499px) {

	body {
		font-size: 16px;
		line-height: 1.75em;
	}

	h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 25px;
	}

}

hr {
	border: 0px;
	height: 1px;
	margin: 1.5em auto;
	color: #262420;
	background-color: #262420;
}

img {
	border: none;
}

#content img, .editor img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	outline: none;
	cursor: pointer;
	color: #922022;
}

a, a:hover, .button, input[type="button"], input[type="submit"], input[type="reset"] {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

blockquote {
	margin: 10px 0px 10px 15px;
}

.cl {
	clear: left;
}

.cr {
	clear: right;
}

.cb {
	clear: both;
}

.cf:before, .cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	zoom: 1;
}

.stretch {
	text-align: justify;
	-ms-text-justify: distribute-all-lines;
	text-justify: distribute-all-lines;
}

.stretch:after {
	content: "";
	display: inline-block;
	width: 100%;
}

#content .embed_container, #page_blocks .embed_container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0px;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 20px;
}

#page_blocks .block_content_photo .photo .embed_container {
	height: 100%;
	padding-bottom: 0px;
}

#content .embed_container iframe, #content .embed_container object, #content .embed_container embed,
#page_blocks .embed_container iframe, #page_blocks .embed_container object, #page_blocks .embed_container embed {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.table_container {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

.right_photo {
	float: right;
	margin: 5px 0px 40px 40px;
	display: inline;
	max-width: 50%;
}

.left_photo {
	float: left;
	margin: 5px 40px 40px 0px;
	display: inline;
	max-width: 50%;
}

@media only screen and (max-width: 599px) {

	.right_photo, .left_photo {
		float: none;
		margin: 0px auto 20px auto;
		display: block;
	}

}

/* FORM CSS */

label, .label {
	white-space: nowrap;
}

input, select, textarea {
	font-family: 'Barlow Semi Condensed', Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 18px;
	padding: 2px 5px;
	border: 0px;
	-webkit-border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0px;
}

select {
	line-height: 16px;
	padding: 0px 5px;
}

input:focus, select:focus, textarea:focus {
        outline: 0px; 
}

.button, input[type="button"], input[type="submit"], input[type="reset"] {
	border: 0px;
	background-color: #000000;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	padding: 2px 4px;
	-webkit-appearance: none;
	cursor: pointer;
}

.alert, .red {
	color: #FF0000;
}

/* LAYOUT CSS */

.container {
	width: 100%;
	max-width: 1060px;
	margin: 0px auto;
	padding: 0px 30px;
	position: relative;
}

header {
	position: relative;
}

#header_inner {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	max-width: none;
	z-index: 500;
}

#logo {
	position: absolute;
	top: 40px;
	left: 100px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#logo img {
	width: 100%;
	max-width: 200px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#logo #logo2 {
	display: none;
}

@media only screen and (max-width: 1099px) {

	#logo img {
		max-width: 150px;
	}


@media only screen and (max-width: 899px) {

	#logo img {
		max-width: 135px;
	}

}
}

@media only screen and (max-width: 449px) {

	#logo img {
		max-width: 120px;
	}

}

#header_photo img {
	display: block;
	width: 100%;
}

@media only screen and (max-width: 799px) {

	#header_photo {
		height: 260px;
		overflow: hidden;
	}

	#header_photo img {
		width: 800px;
	}

	#header_photo.center img {
		position: relative;
		left: 50%;
		margin-left: -400px;
	}

	#header_photo.right img {
		float: right;
	}

	#header_photo.left_center img {
		position: relative;
		left: 25%;
		margin-left: -200px;
	}

	#header_photo.right_center img {
		position: relative;
		left: 75%;
		margin-left: -600px;
	}

}

.collapsed_temp #header_inner, .collapsed #header_inner {
	position: fixed;
	top: -40px;
	width: 100%;
	height: 40px;
	background-color: #262420;
	z-index: 500;
}

.collapsed #header_inner {
	top: 0px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.collapsed_temp #logo, .collapsed #logo {
	top: 6px;
}

.collapsed_temp #logo #logo1, .collapsed #logo #logo1 {
	display: none;
}

.collapsed_temp #logo #logo2, .collapsed #logo #logo2 {
	display: block;
}

.collapsed_temp #logo img, .collapsed #logo img {
	max-width: 20px;
}

.collapsed_temp #nav, .collapsed #nav {
	background-color: transparent;
}

#header_bar {
	height: 60px;
	background-color: #066B56;
	background-image: url('../images/green-bg.jpg');
	display: table;
	width: 100%;
}

#header_bar div {
	display: table-cell;
	vertical-align: middle;
	width: 340px;
	padding: 0px 25px;
	line-height: 1em;
}

#header_bar br {
	display: none;
}

#header_bar #header_hours {
	text-align: right;
	background-color: #821C1E;
	background-image: url('../images/burgundy-bg.jpg');
	color: #F0454A;
}

#header_hours strong {
	color: #FFFFFF;
	margin-left: 5px;
}

#header_bar #header_schedule {
	width: calc(100% - 680px);
	font-style: italic;
}

#header_schedule a {
	color: #68B299;
}

#header_schedule a:hover {
	color: #FFFFFF;
}

#header_bar #header_conditions {
	background-color: #E2B267;
	background-image: url('../images/header-bar-bg-yellow.jpg');
}

#header_conditions span {
	color: #FFFFFF;
	text-transform: uppercase;
}

#header_conditions a {
	font-style: italic;
	color: #262420;
}

#header_conditions a:hover {
	color: #FFFFFF;
}

@media only screen and (max-width: 1199px) {

	#header_bar #header_schedule {
		width: auto;
	}

}

@media only screen and (max-width: 1049px) {

	#header_bar div {
		width: 260px;
	}

}

@media only screen and (max-width: 849px) {

	#header_bar #header_schedule {
		text-align: center;
	}

	#header_bar div {
		width: 33.3333333333333%;
		vertical-align: top;
		padding-top: 10px;
	}

	#header_bar br {
		display: block;
	}
}

@media only screen and (max-width: 649px) {

	#header_bar div {
		width: 31%;
	}

}

@media only screen and (max-width: 599px) {

	#header_bar div {
		padding: 10px 15px 12px 15px;
	}

}

@media only screen and (max-width: 549px) {

	#header_bar {
		font-size: 17px;
	}

	#header_bar div {
		padding-top: 12px;
	}

	#header_bar #header_conditions br {
		display: none;
	}

	
}

@media only screen and (max-width: 499px) {


	#header_hours strong {
		white-space: nowrap;
	}

}

#ctas {
	margin-left: -10px;
}

.cta {
	width: calc(33.333333333333333% - 10px);
	float: left;
	margin-left: 10px;
	display: inline;
	position: relative;
}

.cta img {
	display: block;
	width: 100%;
	height: auto;
}

.cta a {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.cta a span {
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.block_photo_divider {
	height: 200px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	margin-bottom: 4px;
}

#bottom_photo {
	background-image: url('../images/page-blocks/14/tennis-court-green.jpg');
}

#mailinglist {
	background-color: #821C1E;
	background-image: url('../images/burgundy-bg.jpg');
	text-align: center;
	letter-spacing: .05em;
	color: #EF454A;
	padding: 115px 15px;
}

#mailinglist .title {
	font-size: 35px;
	line-height: 1em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: .25em;
}

#mailinglist form {
	width: 100%;
	max-width: 340px;
	margin: 0px auto;
}

#mailinglist label {
	display: block;
	font-style: italic;
	white-space: normal;
	line-height: 19px;
}

#mailinglist p {
	max-width: 320px;
	font-style: italic;
	line-height: 19px;
	margin: 0px auto 30px auto;
}

#mailinglist form div {
	border: 2px solid #EF454A;
	width: 100%;
	max-width: 300px;
	height: 50px;
	padding: 10px 20px 0px 20px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin: 0px auto;
}

#mailinglist a {
	display: inline-block;
	border: 2px solid #EF454A;
	height: 40px;
	padding: 0px 20px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin: 0px auto;
	font-size: 20px;
	line-height: 36px;
	color: #EF454A;
	letter-spacing: .05em;
	text-transform: uppercase;
}

#mailinglist #email_box {
	width: calc(100% - 70px);
	font-style: italic;
	line-height: 22px;
	letter-spacing: .05em;
	color: #FFFFFF;
	padding: 0px;
	float: left;
	background-color: transparent;
}

#mailinglist #email_submit {
	float: right;
	background-color: transparent;
	font-size: 20px;
	line-height: 20px;
	color: #EF454A;
	letter-spacing: .05em;
	text-transform: uppercase;
	width: 60px;
	text-align: right;
}

#mailinglist #email_submit:hover, #mailinglist a:hover {
	color: #FFFFFF;
}

#footer_bottom {
	background-color: #660F10;
	background-image: url('../images/burgundy-dark-bg.jpg');
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	color: #EF454A;
	min-height: 100px;
	padding: 35px 15px 0px 15px;
}

#footer_gem {
	margin: 0px auto 65px auto;
}

#footer_gem img {
	width: 72px;
	height: 100px;
	margin-top: -51px;
}

#social {
	padding: 0px;
	display: inline;
	margin-right: 40px;
}

#social li {
	list-style: none;
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
	font-size: 30px;
	line-height: 30px;
}

#social li a {
	display: block;
	color: #EF454A;
}

#social li a:hover {
	color: #FFFFFF;
}

#footer_bottom a {
	color: #EF454A;
	white-space: nowrap;
}

#footer_bottom a:hover {
	color: #FFFFFF;
}

#footer_bottom a.link {
	text-transform: uppercase;
}

#copyright {
	margin-left: 50px;
}

#copyright span {
	white-space: nowrap;
}

@media only screen and (max-width: 899px) {

	#footer_gem {
		margin-bottom: 35px;
	}

	#social {
		display: block;
		margin: 0px auto 20px auto;
		text-align: center;
	}

	#social li {
		margin: 0px 5px;
		text-align: center;
	}

	#copyright {
		margin-left: 40px;
	}

}

@media only screen and (max-width: 767px) {

	#footer_bottom {
		height: 250px;
	}

	#copyright {
		display: block;
		margin: 20px auto 0px auto;
		line-height: 20px;
	}

}

@media only screen and (max-width: 349px) {

	#footer_bottom {
		font-size: 14px;
	}

}

/* NAVIGATION CSS */

#nav ul {
	padding: 0px;
}

#nav li {
	list-style: none;
	position: relative;
	letter-spacing: 1px;
	line-height: 1.25em;
}

#main_nav li {
	text-transform: uppercase;
}

#top_nav li {
	font-style: italic;
}

#nav li a, #nav li.active li a {
	color: #FFFFFF;
}

#top_nav li#top_nav11 a {
	display: inline-block;
	padding: 0px 10px 2px 10px;
	border: 2px solid #FFFFFF;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

#top_nav li#top_nav11 a:hover {
	border: 2px solid #F2BF6E;
}

#nav li a:hover, #nav li.active a, #nav li.active li a:hover {
	color: #F2BF6E;
}

#nav li li {
	font-size: 18px;
	font-style: italic;
	text-transform: none;
}

#nav li li a {
	color: #BBBBBB;
}

#subnav ul {
	padding: 0px;
}

#subnav li {
	list-style: none;
}

/* PAGE BLOCK CSS */

.block.padding_top {
	padding-top: 80px;
}

.block.padding_bottom {
	padding-bottom: 70px;
}

.block.border_top {
	margin-top: 2px;
}

.block_photo {
	max-width: 1200px;
	margin: 0px auto;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_photo img {
	width: 100%;
	display: block;
}

.block_content_photo .container {
	max-width: none;
	padding: 0px;
	margin-bottom: 4px;
}

.block_calendar .container {
	max-width: none;
}

.block_content_photo .photo img {
	width: 100%;
	display: block;
}

.block_content_photo .content_inner {
	width: 100%;
	padding: 10%;
}

.block_schedule .content {
	text-align: center;
}

.block_schedule h2 {
	color: #68B299;
	margin-bottom: .1em;
}

.block_schedule a {
	font-style: italic;
	color: #68B299;
}

.block_schedule a:hover {
	color: #FFFFFF;
}

.block_schedule table {
	width: 100%;
	max-width: 600px;
	margin: 1em auto 0px auto;
	font-size: 22px;
	line-height: 1.25em;
}

.block_schedule tr:first-of-type {
	border-top: 0px;
}

.block_schedule td:first-child {
	text-align: left;
	padding: .4em 5% .4em 0px;
	padding-right: 5%;
	white-space: nowrap;
}

.block_schedule td:last-child {
	text-align: right;
	padding: .4em 0px .4em 5%;
}

.block_schedule td.date {
	text-align: left;
	padding-left: 0px;
	padding-right: 0px;
	font-weight: bold;
	border-bottom: 1px solid #68B299;
	padding-top: 20px;
}

@media only screen and (max-width: 1199px) {

	.block_schedule table {
		font-size: 20px;
	}

}

@media only screen and (max-width: 499px) {

	.block_schedule table {
		font-size: 18px;
	}

}

@media only screen and (min-width: 1050px) {

	.block_content_photo .container {
		display: flex;
	}

	.block_content_photo.right .container {
		flex-direction: row-reverse; 
	}

	.block_content_photo .container .photo {
		flex: 1;
		margin-bottom: 0px;
	}

	.block_content_photo .content {
		display: flex;
		flex: 1;
		justify-content: center;
		align-items: center;
	}

}

@media only screen and (max-width: 1049px) {

	.block_content_photo .container .photo {
		min-height: 70vh;
	}

	.block_content_photo .content_inner {
		padding: 6%;
	}

}

.block_boxes .container {
	max-width: none;
	padding: 0px;
	margin-top: 4px;
}

.block_box {
	margin-bottom: 4px;
	position: relative;
}

.block_box img {
	width: 100%;
	display: block;
}

.block_box .content {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(38,36,32,.85);
	padding: 10%;
}

.block_box:hover .content {
	background-color: rgba(38,36,32,.3);
}

.block_box .content_inner {
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: #FFFFFF;
	text-align: center;
}

.block_box .title {
	display: block;
	font-size: 70px;
	line-height: 1em;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: .5em;
}

.block_box span.link {
	font-size: 17px;
	font-style: italic;
	color: #F2BF6E;
	border: 2px solid #F2BF6E;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	padding: .2em 1em .4em 1em;
}

@media only screen and (min-width: 450px) {

	.block_boxes .container_inner {
	        display: grid;
        	grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-column-gap: 5px;
	}

}

@media only screen and (min-width: 450px) and (max-width: 799px) {

	.block_boxes .container_inner {
        	grid-template-columns: 1fr 1fr 1fr;
	}

	.layout2 .block_boxes .container_inner {
        	grid-template-columns: 1fr 1fr;
	}

}

@media only screen and (min-width: 450px) and (max-width: 599px) {

	.block_boxes .container_inner {
        	grid-template-columns: 1fr 1fr;
	}

}

@media only screen and (max-width: 499px) {

	.block.padding_top {
		padding-top: 30px;
	}

	.block.padding_bottom {
		padding-bottom: 30px;
	}

}

.block_webcams {
	text-align: center;
}

/* HOME CSS */

#home_video {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
	background-color: #000000;
}

#home_video iframe {
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.block_slideshow {
	clear: both;
	width: 100%;
	position: relative;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_slideshow ul {
	margin: 0px;
	padding: 0px;
	position: relative;
	width: 100%;
}

.block_slideshow li {
	list-style: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	opacity: 0;
}

.block_slideshow li:first-child {
	display: block;
	float: left;
	opacity: 1;
}

.block_slideshow li img {
	width: 100%;
	float: left;
}

.block_slideshow .content {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	min-height: 449px;
	font-weight: 400;
	text-align: center;
	font-size: 24px;
	color: #FFFFFF;
	background-image: url('../images/home-slideshow-overlay.png');
	background-repeat: no-repeat;
	background-position: center bottom;
}

.block_slideshow .content_inner {
	position: absolute;
	bottom: 70px;
	left: 0px;
	width: 100%;
	padding: 0px 40px;
}

.block_slideshow .title {
	font-size: 2.916666666666667em;
	line-height: 1em;
	text-transform: uppercase;
	margin-bottom: .25em;
}

.block_slideshow .content p {
	line-height: 1em;
	max-width: 570px;
	margin: 0px auto 2em auto;
}

.block_slideshow .content a {
	display: inline-block;
	color: #F2BF6E;
	text-transform: lowercase;
	border: 2px solid #F2BF6E;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	padding: .2em 1.5em .4em 1.5em;
}

.block_slideshow .content a:hover {
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
}

.rslides_tabs {
	padding: 0px;
	text-align: center;
	position: absolute;
	bottom: 1%;
	left: 0px;
	width: 100%;
	z-index: 100;
}

.rslides_tabs li {
	list-style: none;
	display: inline-block;
	margin: 0px 3px;
	width: 14px;
	height: 14px;
	position: relative;
}

.rslides_tabs li a {
	display: block;
	width: 14px;
	height: 14px;
	overflow: hidden;
	text-indent: 105%;
	cursor: pointer;
}

.rslides_tabs li a:before {
	position: absolute;
	top: 0px;
	left: 0px;
	content: "\f10C";
	font-family: FontAwesome;
	font-size: 14px;
	line-height: 14px;
	color: #FFFFFF;
	text-indent: 0px;
}

.rslides_tabs li.rslides_here a:before {
	content: "\f111";
}

.rslides_nav {
	display: none;
}

@media only screen and (max-width: 499px) { 

	.block_slideshow .content_inner {
		padding: 0px 20px;
	}

}

/* NEWS AND EVENTS CSS */

.block_news_events .container {
	max-width: none;
	padding: 0px;
	text-align: center;
}

.block_news_events h2 {
	font-size: 40px;
	margin-bottom: .1em;
}

.block_news_events .subtitle {
	font-style: italic;
	margin-bottom: 2em;
}

.block_news_events .subtitle a {
	color: #262420;
}

.block_news_events .subtitle a:hover {
	color: #68B299;
}

.block_news_events .item {
	margin-bottom: 4px;
	position: relative;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
}

.block_news_events img {
	width: 100%;
	height: auto;
	display: block;
}

.block_news_events .content {
	height: 100%;
	background-color: rgba(38,36,32,.85);
	padding: 8% 10%;
	font-size: 20px;
	line-height: 1.5em;
	text-align: left;
	color: #BBBBBB;
}

.block_news_events .item.featured .content {
	background-color: rgba(242,191,110,.85);
	color: #5D5241;
}

.block_news_events .date {
	border-bottom: 2px solid #767676;
	font-size: 2em;
	line-height: .8em;
	text-transform: uppercase;
	color: #F2BF6E;
	padding-bottom: .4em;
	margin-bottom: .4em;
}

.block_news_events .item.featured .date {
	color: #922022;
}

.block_news_events .date em {
	font-size: 0.625em;
	color: #FFFFFF;
	white-space: nowrap;
}

.block_news_events .item.featured .date em {
	color: #262420;
}

.block_news_events img.logo {
	width: 128px;
	float: left;
	margin: 5px 20px 20px 0px;
	display: inline;
}

.block_news_events .item .title {
	font-size: 1.65em;
	line-height: 1.1em;
	text-transform: uppercase;
	color: #FFFFFF;
}

.block_news_events .item.featured .title {
	color: #262420;
}

.block_news_events .item p {
	text-align: justify;
}

.block_news_events .item a {
	border: 2px solid #F2BF6E;
	display: inline-block;
	padding: .4em .7em .5em .7em;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	font-size: 0.85em;
	font-style: italic;
	line-height: 1em;
	letter-spacing: .1em;
	color: #F2BF6E;
}

.block_news_events .item.featured a {
	border: 2px solid #922022;
	color: #922022;
}

.block_news_events .item a:hover {
	border: 2px solid #FFFFFF;
	color: #FFFFFF;
}

@media only screen and (min-width: 900px) { 

	.block_news_events .container_inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.block_news_events .item {
		width: calc(33.333333333333% - 3px);
	}

}

@media only screen and (max-width: 1499px) { 

	.block_news_events .content {
		font-size: 18px;
	}

}

@media only screen and (max-width: 1299px) { 

	.block_news_events .content {
		font-size: 17px;
	}

}

@media only screen and (max-width: 1099px) { 

	.block_news_events .content {
		font-size: 16px;
	}

}

@media only screen and (min-width: 900px) and (max-width: 1099px) { 

	.block_news_events img.logo {
		float: none;
		margin: 5px auto 20px auto;
		display: block;
	}

}

@media only screen and (max-width: 899px) { 

	.block_news_events .content {
		font-size: 20px;
		padding: 8% 6%;
	}

}

@media only screen and (max-width: 699px) { 

	.block_news_events .content {
		font-size: 18px;
	}

}

@media only screen and (max-width: 499px) { 

	.block_news_events h2 {
		font-size: 35px;
	}

}

/* GALLERY CSS */

.block_gallery .container {
	max-width: none;
}

#content .gallery {
	padding: 0px;
	margin: 20px 0px 20px -2%;
}

.gallery li {
	list-style: none;
	width: 14.666666666666667%;
	float: left;
	display: inline;
	text-align: center;
	margin: 0px 0px 20px 2%;
	line-height: 16px;
}

.gallery li img {
	background-color: #DDDDDD;
	padding: 3%;
	margin-bottom: 5px;
	width: 100%;
}

@media only screen and (max-width: 1299px) {

	.gallery li {
		width: 18%;
	}

}

@media only screen and (max-width: 999px) {

	.gallery li {
		width: 23%;
		margin-bottom: 1.25%;
	}

}

@media only screen and (max-width: 599px) {

	.gallery li {
		width: 31.3333%;
		margin-bottom: 1%;
	}

}

@media only screen and (max-width: 449px) {

	.gallery li {
		width: 48%;
	}
}

/* FAQ CSS */

.block_faqs div.question {
	cursor: pointer;
	padding: 5px 15px;
	margin-bottom: 10px;
	background-color: #DDDDDD;
	padding: 10px 15px 10px 15px;
}

.block_faqs div.question:before {
	float: left;
	margin-right: 10px;
	display: inline;
	content: '\f0d7';
	font-family: FontAwesome;
	font-size: 20px;
	font-weight: normal;
	font-style: normal;
}

.block_faqs div.answer {
	display: none;
}

.block_faqs div.expand div.question:before {
	content: '\f0d8';
}

.block_faqs div.expand div.answer {
	display: block;
	margin-bottom: 20px;
}

/* SPONSORS CSS */

.block_sponsors .container {
	max-width: none;
}

.block_sponsors h2 {
	text-align: center;
	margin-bottom: 1em;
}

.block_sponsors .sponsors {
/*	margin-left: -2%;*/
	margin-bottom: 2em;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.block_sponsors .sponsor {
	width: 13%;
	min-width: 200px;
	margin: 0px auto 20px auto;
	position: relative;
	border: 2px solid #DFDEDE;
	text-align: center;
}

.block_sponsors .title .sponsor {
	width: 20%;
	min-width: 300px;
}

.block_sponsors .sponsor_inner {
	position: relative;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	width: 100%;
	display: inline-block;
	padding: 20px;
	color: #262420;
	font-size: 1.5em;
}

.block_sponsors img.vertical {
	max-height: 130px;
}

@media only screen and (max-width: 1199px) {

	.block_sponsors .sponsor {
		min-width: 175px;
	}

}

@media only screen and (max-width: 1049px) {

	.block_sponsors .sponsor {
		width: 22%;
	}

}

@media only screen and (max-width: 849px) {

	.block_sponsors .sponsor {
		width: 26%;
	}

}

@media only screen and (max-width: 599px) {

	.block_sponsors .sponsor {
		width: 40%;
	}

}

@media only screen and (max-width: 399px) {

	.block_sponsors .sponsor {
		min-width: 150px;
	}

}

/* FEEDBACK CSS */

#content form.feedback {
	background-color: #EEEEEE;
	padding: 20px;
}

form.feedback label {
	display: block;
}

form.feedback div {
	margin-bottom: 10px;
}

form.feedback div label {
	display: inline;
	white-space: normal;
}

form.feedback input, form.feedback select, form.feedback textarea {
	width: 100%;
	height: 35px;
	padding: 0px 10px;
}

form.feedback input.radio, form.feedback input.checkbox {
	width: auto;
	height: auto;
	padding: 0px;
}

form.feedback textarea {
	width: 100%;
	height: 100px;
	padding: 5px 10px;
}

form.feedback input.button {
	width: auto;
}


/* POPUP CSS */

#popup {
	display: none;
	width: 90%;
	max-width: 650px;
	background-color: #FFFFFF;
	padding: 50px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#popup p {
	line-height: 1.5em;
}

#popup p:last-of-type {
	margin-bottom: 0px;
}

div.close {
	position: absolute;
	top: 8px;
	right: 10px;
	cursor: pointer;
	font-size: 22px;
	line-height: 22px;
}

@media only screen and (max-width: 700px) {

	#popup {
		padding: 30px;
	}

}

/* RESPONSIVE CSS */

@media only screen and (min-width: 950px) {

	#nav_trigger, #nav_close {
		display: none;
	}

	#nav_trigger2 {
		font-size: 80px;
		line-height: 80px;
		text-align: center;
		color: #FFFFFF;
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		opacity: 0;
	}

	#nav {
		position: absolute;
		top: 0px;
		right: 0px;
		height: 134px;
		padding: 80px 100px 20px 20px;
		background-color: rgba(38,36,32,.85);
	}

	#nav > ul {
		float: right;
	}

	#top_nav {
		position: absolute;
		top: 25px;
		right: 100px;
	}

	#nav > ul > li {
		float: left;
		display: inline;
	}

	#main_nav > li {
		font-size: 23px;
		margin-left: 40px;
		padding-bottom: 8px;
	}

	#top_nav > li {
		margin-left: 20px;
		font-size: 14px;
		line-height: 24px;
	}

	#top_nav li#top_nav11 {
		line-height: 20px;
	}

	#nav li > ul {
		position: absolute;
		top: 35px;
		left: -20px;
		padding: 10px 0px;
		z-index: 200;
		visibility: hidden;
		opacity: 0;
		transition: .2s .2s;
		background-color: #262420;
	}

	#nav li:hover > ul {
		visibility: visible;
		transition-delay: 0s;
		opacity: 1;
	}

	#nav li li {
		white-space: nowrap;
	}

	#nav li li a {
		display: block;
		padding: 7px 20px;
	}

	.collapsed #header_inner:hover {
		height: 115px;
	}

	.collapsed #nav_trigger2 {
		opacity: 1;
	}

	.collapsed #header_inner:hover #nav_trigger2 {
		opacity: 0;
	}

	.collapsed #header_inner:hover #logo {
		top: 22px;
	}

	.collapsed #header_inner:hover #logo img {
		max-width: 50px;
	}

	.collapsed_temp #nav, .collapsed #nav {
		padding-top:65px;
	}

	.collapsed_temp #main_nav, .collapsed #main_nav, .collapsed_temp #top_nav, .collapsed #top_nav {
		opacity: 0;
	}

	.collapsed #header_inner:hover #main_nav, .collapsed #header_inner:hover #top_nav {
		opacity: 1;
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		-webkit-transition-delay: .1s;
		transition-delay: .1s;
	}

	#subnav {
		text-align: center;
		padding: 20px 0px;
		border-bottom: 2px solid #AAAAAA;
	}

	#subnav li {
		display: inline;
		margin: 0px 15px;
		white-space: nowrap;
	}

	#subnav li a {
		color: #AAAAAA;
	}

	#subnav li a:hover, #subnav li.active a {
		color: #262420;
	}

	#section_title {
		display: none;
	}

}

@media only screen and (max-width: 1249px) {

	#logo {
		left: 40px;
	}

	#nav {
		padding-right: 40px;
		padding-left: 0px;
	}

	#top_nav {
		right: 40px;
	}

}

@media only screen and (max-width: 1049px) {

	#logo {
		top: 35px;
		left: 35px;
	}

	#nav {
		padding-right: 35px;
	}

	#main_nav > li {
		font-size: 21px;
		margin-left: 35px;
	}

}

@media only screen and (max-width: 999px) {

	#logo {
		top: 30px;
		left: 30px;
	}

	#nav {
		padding-right: 30px;
	}

	#main_nav > li {
		margin-left: 30px;
	}

}

@media only screen and (max-width: 949px) {

	.mobile_nav body {
		overflow: hidden;
	}

	.container {
		padding: 0px 15px;
	}

	#logo {
		top: 15px;
		left: 15px;
	}

	#nav_trigger, #nav_close {
		cursor: pointer;
		display: block;
		position: absolute;
		top: 15px;
		right: 15px;
		z-index: 100;
		font-size: 30px;
		line-height: 30px;
		color: #FFFFFF;
		transition: opacity 0.4s ease;
	}

	#nav_trigger {
		top: 0px;
		right: 0px;
		width: 57px;
		height: 52px;
		background-color: rgba(38,36,32,.85);
		text-align: center;
		padding-top: 10px;
	}

	.collapsed_temp #nav_trigger, .collapsed #nav_trigger {
		top: 4px;
		right: 15px;
		padding: 0px;
		width: auto;
		height: auto;
	}

	#nav_trigger2 {
		display: none;
	}

	.mobile_nav #nav_trigger {
		opacity: 0;
	}

	#nav_close {
		font-size: 25px;
		line-height: 25px;
		top: 13px;
		right: 18px;
		display: none;
	}

	.mobile_nav #nav_close {
		display: block;
	}

	.mobile_nav #header_inner {
		height: 100vh;
		overflow-y: scroll;
		position: fixed;
	}

	#nav {
		width: 0px;
		height: 100vh;
		position: absolute;
		right: 0px;
		top: 0px;
		background-color: #262420;
		padding: 50px 0px 0px 0px;
		z-index: 500;
		overflow-x: hidden;
		overflow-y: scroll;
		transition: width 0.4s ease;
	}

	.mobile_nav #nav {
		width: 100%;
	}

	#nav li {
		display: block;
		font-size: 24px;
		text-align: center;
	}

	#nav #main_nav > li {
		margin-left: 0px;
	}

	#nav li a {
		display: block;
		padding: 10px 15px;
	}

	#nav li ul {
		padding: 0px;
		max-height: 0px;
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0,1,0,1);
	}

	#nav li.expanded > ul {
		padding-bottom: 10px;
		max-height: 499px;
		transition: all 0.4s cubic-bezier(1,0,1,0);
	}

	#nav li li {
		font-size: 16px;
	}

	#nav li li a, #nav li.active li a {
		padding: 6px 30px;
		color: #BBBBBB;
	}

	#nav #top_nav li {
		font-size: 20px;
		line-height: 1em;
	}

	#nav #top_nav #top_nav11 {
		margin-top: 20px;
		line-height: 1.25em;
	}

	#subnav {
		padding: 0px;
		height: 42px;
		position: relative;
		text-align: center;
		font-style: italic;
		color: #AAAAAA;
		border-bottom: 2px solid #AAAAAA;
	}

	#section_title {
		padding: 0px 15px;
		font-size: 16px;
		line-height: 38px;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}

	#section_title:after {
		padding-left: 10px;
		content: '\f0d7';
		font-family: FontAwesome;
		font-size: 20px;
		font-weight: normal;
		font-style: normal;
		color: #AAAAAA;
	}

	#subnav.expanded #section_title:after {
		content: '\f0d8';
	}

	#subnav ul {
		position: absolute;
		top: 40px;
		left: 0px;
		width: 100%;
		max-height: 0px;
		overflow: hidden;
		background-color: #AAAAAA;
		z-index: 300;
		transition: all 0.4s cubic-bezier(0,1,0,1);
	}

	#subnav.expanded ul {
		max-height: 499px;
		overflow: auto;
		transition: all 0.4s cubic-bezier(1,0,1,0);
	}

	#subnav li {
		margin: 0px;
		display: block;
		line-height: 1.1em;
	}

	#subnav li:first-child {
		padding-top: 10px;
	}

	#subnav li:last-child {
		padding-bottom: 20px;
	}

	#subnav li a {
		display: block;
		padding: 10px 15px;
		color: #262420;
	}

}
