/*

font-family: bilo;

font-weight: 400;
font-style: normal;
font-style: italic;

font-weight: 700;
font-style: normal;

*/

:root{
	--clr-1: #d6a53c;/* Yellow */
	--clr-1-rgb: 214, 165, 60;
	--clr-1-alt: #95742c;/* Darker Yellow */
	--clr-1-alt-rgb: 149, 116, 44;
	--clr-2: #393820;/* Dark Green */
	--clr-2-rgb: 57, 56, 32;
	--clr-3: #414042;/* Dark Gray */
	--clr-3-rgb: 65, 64, 66;
	
	--clr-4: #e5e6e6;/* Light Gray */

	--header-clr-primary: #ffffff;
	--header-clr-primary-rgb: 255, 255, 255;
	--header-clr-secondary: #eeeeee;
	--header-clr-secondary-rgb: 238, 238, 238;
	--header-clr-bg: #333333;
	--header-clr-bg-rgb: 51, 51, 51;
	--header-clr-bg-highlight: var(--clr-1-alt);
	--header-clr-bg-highlight-rgb: var(--clr-1-alt-rgb);

	--header-btn-color: var(--header-clr-primary);
	--header-btn-color-rgb: var(--header-clr-primary-rgb);
	--header-btn-color-active: var(--header-clr-secondary);
	--header-btn-color-active-rgb: var(--header-clr-secondary-rgb);

	--clr-light: #ffffff;
	--clr-dark: #000000;
	--clr-inner: #eeeeee;
	--clr-outer: var(--clr-light);

	--inner-width: 90%;
	--inner-v-padding: 15px;
	--inner-h-padding: 25px;

	--header-height: var(--menu-size, 50px);/* #cssmenu size if it's included, otherwise fallback to the specified height. */
}
html{
	margin: 0;
	padding: 0;
}
body{
	background: var(--clr-outer);
	margin: 0;
	padding: 0;
    font-family: bilo, arial, helvetica, sans-serif;
}

a {
	color: inherit;
	outline: none;
	border: none;
	text-decoration: none;
}

p{
	font-size: 1.15em;
    margin: 0.5em auto;
}

h1, h2, h3, h4, h5, h6{
    margin: 0.75em 0;
}
h1, h2{
	text-transform: uppercase;
}
.section > .inner > h2,
.section > .inner > .sectionPart > h2{
	font-size: 2.75em;
	margin-top: 0;
}

img,
iframe{
	max-width: 100%;
}

form{
	text-align: center;
	margin: 0 auto;
	width: calc(100% - 100px);
}

table{
	display: inline-block;
	border-collapse: collapse;
}
th, td{
	padding: 0.5em 0.75em;
}
th{
	font-size: 1.15em;
	padding-top: 1.5em;
}
table tbody tr:not(:nth-of-type(1)){
	border-top: 1px dashed var(--clr-1);
}

input,
textarea,
.formItem{
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
	line-height: 1.3em;
	text-align: left;
	box-shadow: none;
	border: none;
	border-radius: 0;
	padding: 0.5em 0.75em;
	background: none;
	border-bottom: 2px dashed var(--clr-4);
	font-size: 1.15em;
}
textarea{
	min-width: 100%;
	max-width: 100%;
    min-height: 7.5em;
    max-height: 20.5em;
    resize: vertical
}
.formItem{
	text-align: center;
}
input[type="radio"]{
	display: inline-block;
	vertical-align: middle;
    width: auto;
}

input:focus-visible,
textarea:focus-visible{
	outline: 2px solid var(--clr-1-alt);
}
input + input,
input + textarea,
input + .formItem,
input + button,
textarea + textarea,
textarea + input,
textarea + .formItem,
textarea + button,
.formItem + input,
.formItem + textarea,
.formItem + .formItem,
.formItem + button{
	margin-top: 1em;
}

.inputFilled:not([type="radio"], [type="checkbox"]){
	border-color: #51bb7a;
}

input[disabled],
textarea[disabled],
button[disabled]{
	color: #777777 !important;
	outline-color: #777777 !important;
	border-color: #777777 !important;
	box-shadow: none !important;
	background: var(--clr-4) !important;
	cursor: default;
}

label{
	display: inline-block;
    vertical-align: top;
}
.formItem label{
	box-sizing: border-box;
	padding: 0 0.25em;
	max-width: 25%;
}

.contactMap{
	border-radius: 0.5em;
	border: 2px solid var(--clr-1-alt);
	width: 100%;
	height: 350px;
	background: #eeeeee;
}


button,
.btn{
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 2.5em;
    padding: 0.5em 1em;
    line-height: 1em;
	border-radius: 0.4em;
	border: 0.1em solid #000000;
	outline: 0;
	font-family: inherit;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.975), rgba(255, 255, 255, 0.6));
	color: #000000;
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
	cursor: pointer;
}
button:hover,
button:focus-visible,
.btn:hover,
.btn:focus-visible{
	background: #ffffff;
	box-shadow: 0em 0em 0.5em -0.05em #000000;
}
form button[type="submit"]{
    font-size: 1.15em;
    margin-bottom: 0.5em;
    border-color: var(--clr-1);
    background: var(--clr-1);
    color: #ffffff;
}
form button[type="submit"]:hover,
form button[type="submit"]:focus-visible{
    background: var(--clr-1);
}

.linkoffset{
	position: relative;
	top: -75px;
}

.gallery{
	position: relative;
	box-sizing: border-box;
	text-align: center;
}
.gallery img{
	vertical-align: middle;
    box-sizing: border-box;
}
.gallery > a,
.gallery > img,
.gallery .gItem{
	position: relative;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: calc(33.3% - 1em);
	height: auto;
	margin: 0.5em;
	border-radius: 0.75em;
	border: 2px solid #ffffff;
	background: #ffffff;
}
.gallery > a > img,
.gallery .gItem img{
	width: 100%;
	height: auto;
}
.galleryInfo .gItem:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--clr-1);
	transition: opacity 0.5s ease;
	opacity: 0;
}
.galleryInfo .gItem:hover:after,
.galleryInfo .gItem:focus-within:after{
	opacity: 0.85;
}
.galleryInfo .gItem h3{
    font-size: 1.5em;
    margin: 0.3em auto;
}
.galleryInfo .giText{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	margin: 0;
    box-sizing: border-box;
	padding: 1em;
	text-shadow: 0px 0px 0.5em #ffffff, 0px 0px 0.75em #ffffff, 0px 0px 1.25em #ffffff, 0px 0px 1.25em #ffffff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: opacity 0.5s ease, text-shadow 0.4s ease, color 0.5s ease;
	z-index: 1;
}
.galleryInfo .gItem:hover .giText,
.galleryInfo .gItem:focus-within .giText{
	text-shadow: none;
	color: #ffffff;
}
.galleryInfo .giText a{
	cursor: pointer;
}
.galleryInfo .giText a:hover,
.galleryInfo .giText a:focus-visible{
	color: var(--clr-1-alt);
	text-shadow: 0px 0px 0.5em #ffffff, 0px 0px 0.75em #ffffff, 0px 0px 1.25em #ffffff, 0px 0px 1.25em #ffffff;
}
.galleryInfo .gItem .giHover{
	text-shadow: none;
	color: #ffffff;
	max-height: 0;
	opacity: 0;
	transition: all 0.5s ease;
}
.galleryInfo .gItem:hover .giHover,
.galleryInfo .gItem:focus-within .giHover{
	max-height: 12.5em;
	opacity: 1;
}
.gItem .longDesc{
	max-height: 8em;
	overflow: auto;
	-webkit-scrollbar-color: white transparent;
	scrollbar-color: white transparent;
	-webkit-scrollbar-width: thin;
	scrollbar-width: thin;
}
.gItem .longDesc h4{
	font-size: 1.15em;
	margin: 0 auto 0.3em auto;
}
.gItem .longDesc p{
	font-size: 0.925em;
	margin: 0 auto;
}

.fancyBlock{
	position: relative;
    margin: 1.5em auto;
	border: 2px solid var(--clr-1-alt);
	box-sizing: border-box;
	border-radius: 0.5em;
	padding: 1em;
	background: #ffffff;
	text-align: center;
}
.fancyBlock > h2{
	text-align: center;
    margin: 0 auto 0.4em 0;
}

.fancyBlock .gallery > a,
.fancyBlock .gallery > img,
.fancyBlock .gallery .gItem{
	background: var(--clr-4);
	border: none;
}

.fancyTitle,
.fbTitle > h2{
	position: relative;
	background: url('/images/bgs/bg-title-slice.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
    line-height: 1em;
    padding: 0.6em 0.75em;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
    color: #ffffff;
    font-weight: normal;
    max-width: calc(100% - 3em);
}
.fancyTitle:before,
.fancyTitle:after,
.fbTitle > h2:before,
.fbTitle > h2:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
    background-size: auto 100%;
    width: 2.5em;
    height: 100%;
}
.fancyTitle:before,
.fbTitle > h2:before{
	background-image: url('/images/bgs/bg-title-before.png');
	right: 100%;
	background-position: right center;
}
.fancyTitle:after,
.fbTitle > h2:after{
	background-image: url('/images/bgs/bg-title-after.png');
	left: 100%;
	background-position: left center;
}

.fancyBlock.fbTitle{
	padding-top: 1.5em;
}
.fancyBlock.fbTitle:before{
	bottom: calc(100% + 1.2em);
}
.fancyBlock.fbTitle > h2{
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.dropContent:not(.toggledElement){
	display: none;
}

.iconLink{
	--drop-shadow: drop-shadow(0px 0px 0.5em rgba(255,255,255,0.75));
	position: relative;
	display: inline-block;
	font-size: 1.5em;
	padding: 0.65em 0.25em;
	font-weight: bold;
}
.iconLink > img,
.iconLink > span{
	display: inline-block;
	vertical-align: middle;
}
.iconLink > img{
	width: 1.5em;
	height: auto;
}
.iconLink:hover,
.iconLink:focus-visible{
	color: var(--clr-1);
	-webkit-filter: var(--drop-shadow);
	filter: var(--drop-shadow);
}
.iconLink:hover > span,
.iconLink:focus-visible > span{
	-webkit-filter: var(--drop-shadow);
	filter: var(--drop-shadow);
}
.iconLink:hover > img,
.iconLink:focus-visible > img{
    -webkit-filter: drop-shadow(9999px 0px 0 var(--clr-1));
    filter: drop-shadow(9999px 0px 0 var(--clr-1));
    -webkit-transform: translateX(-9999px);
    transform: translateX(-9999px);
}
.iconLink:after{
	content: '';
	position: absolute;
	top: 100%;
	left: 0.75em;
    width: 10em;
	height: 2px;
	background: #aaaaaa;
	margin: 0 auto;
}
.iconLink:nth-last-of-type(1):after{
	display: none;
}

.inner,
.section,
.sectionPart{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.section{
	position: relative;
	max-width: 100%;
	width: 100%;
	padding: 50px 0;
}
.inner{
    position: relative;
	width: var(--inner-width);
	max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
	padding: var(--inner-v-padding) var(--inner-h-padding);
}

.sectionDouble,
.sectionTriple{
	--sp-padding: calc(var(--inner-h-padding) * 2);
	--sp-padding-between: var(--sp-padding);
}
.sectionTriple{
	--sp-padding-between: calc(var(--sp-padding) * 0.66);
}
.spNarrow{
	--sp-padding-between: calc(var(--sp-padding) / 2);
}
.sectionDouble .inner,
.sectionTriple .inner{
	text-align: center;
	padding: 0 var(--inner-h-padding);
}
.sectionPart{
    position: relative;
    z-index: 1;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	box-sizing: border-box;
	padding: var(--inner-v-padding) var(--sp-padding-between);
}
.sectionPart:nth-child(1){
	padding-left: 0;
}
.sectionPart:nth-last-child(1){
	padding-right: 0;
}
.sectionPart:not(:nth-child(1)):not(:nth-last-child(1)){
	padding-left: calc(var(--sp-padding-between) / 2);
	padding-right: calc(var(--sp-padding-between) / 2);
}
.sectionDouble .sectionPart{
	width: 50%;
}
.sectionTriple .sectionPart{
	width: 33.33%;
}

/* Header */
#header{
	position: fixed;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
}
#header .inner{
	padding: 0;
}
#cssmenu-wrapper{
/*     box-shadow: 0px 7px 15px -7px #000000; */
}

/* Page */
#page > .inner:nth-of-type(1){
	padding-top: calc(var(--header-height) + var(--inner-v-padding));
}
#page > .section:nth-of-type(1){
	padding-top: var(--header-height);
}

/* Copyright  */
#copyright{
	margin: 0 auto;
	font-size: 14px;
	background: #000000;
	padding: 0;
}
#copyright .inner{
	padding: 0.5em;
	overflow: auto;
	text-align: center;
	font-weight: 300;
	color: var(--clr-light);
}
#copyright span,
#copyright img{
	display: inline-block;
	vertical-align: middle;
}
#copyright img{
	width: auto;
	height: 1em;
	user-select: none;
	pointer-events: none;
}
#copyright a:hover,
#copyright a:focus-visible{
	color: var(--clr-1);
}



.section-opening{
	background-image: url('/images/bgs/bg-index.jpg');
	text-align: center;
	padding: 0;
}
/* 
.section-opening img{
	display: block;
	margin: 5em auto 2.5em auto;
	width: 25em;
}
 */
.section-opening .btn{
    margin-top: 500px;
	margin-bottom: 125px;
	box-shadow: 0.25em 0.25em 0.85em 0em #000000;
	font-size: 2.5em;
}
.section-opening .btn:hover{
	box-shadow: 0.25em 0.25em 0.65em 0.15em #000000;
}

.section-details{
	background-image: url('/images/bgs/bg-1.jpg');
}
.section-details > .inner > .sectionPart > h2{
	color: var(--clr-3);
	font-size: 2.25em;
}
/* Facebook Feed */
.section-details .fb_iframe_widget{
	display: block;
	text-align: center;
	margin: 2.5em auto;
}
.section-details .fb_iframe_widget > span{
	position: relative;
	text-align: left;
}

.section-details table{
	font-size: 1.2em;
}
.section-details table a{
	color: var(--clr-1);
}

.section-activities{
	background-color: var(--clr-1);
	background-image: url('/images/bgs/bg-3.jpg');
	text-align: center;
}
.section-activities > .inner > h2{
	font-size: 3em;
	color: #ffffff;
	text-shadow: 0.1em 0.1em 0.3em rgba(0,0,0,0.75);
}
.section-activities > .inner > img{
	width: 5em;
	-webkit-filter: drop-shadow(0.25em 0.25em 0.5em rgba(0,0,0,0.75));
	filter: drop-shadow(0.25em 0.25em 0.5em rgba(0,0,0,0.75));
    padding: 1em;/* To keep the shadow from clipping */
    margin: -1em;
}

.section-sponsors{
	text-align: center;
}
.section-sponsors .gallery{
	display: flex;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
}
.section-sponsors .gItem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(25% - 1em);
    position: relative;
    font-size: 1.75em;
    padding: 1em;
    padding: 0.5em;
    line-height: 1.15;
    border-radius: 0.5em;
    box-shadow: 0px 0px 0.5em -0.25em rgba(0, 0, 0, 0.5);
}
.section-sponsors a.gItem:hover,
.section-sponsors a.gItem:focus-visible{
	border-color: var(--clr-1);
}
.section-sponsors .gItem > *{
	
}
/* 
.section-sponsors .gItem > *{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
 */

.section-registration{
	text-align: center;
	background-image: url('/images/bgs/bg-2.jpg');
}
/* 
.section-registration > .inner > h2{
	margin-bottom: 0;
}
.section-registration > .inner > h2 + hr{
	margin-bottom: 2em;
}
*/
.section-registration > .inner > .sectionPart > h2{
	margin-top: 1.15em;
}
.g-recaptcha > div{
	margin: 1.5em auto;
}
.dropTabs{
	padding-bottom: 1.5em;
}
.dropTab{
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
	padding: 0 1em;
	width: 10em;
}
.dropTab.toggledElement{
	width: 12.5em;
}
.dropTab > div{
	color: var(--clr-1-alt);
	font-size: 1.25em;
}
.dropTab:hover > div,
.dropTab:focus-visible > div,
.dropTab.toggledElement > div{
	color: var(--clr-1);
}
.dropTab.toggledElement > div{
	font-weight: bold;
}
.dropTab img{
	vertical-align: middle;
	width: 100%;
	height: auto;
	pointer-events: none;
	user-select: none;
}
.dropContent h2 span,
.dropContent h2 img{
	vertical-align: middle;
}
.dropContent h2 img{
	width: 2.5em;
	height: auto;
	margin-right: 0.25em;
	pointer-events: none;
	user-select: none;
}





