@import url(https://fonts.googleapis.com/css?family=Merriweather:400,300,700,900,900italic,700italic,400italic,300italic|Pinyon+Script);
/*
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url("parallax.css");
*/

:root {
	interpolate-size: allow-keywords;
}
*,*:after,*:before{
    box-sizing: border-box;
}

html{
	padding: 0px;
	margin: 0px;
	border: none;
	background-color: white;
}			
body{
	padding: 0px;
	margin: 0px;
	border: none;
	font-family: Merriweather, serif;
	font-size: clamp(80%, 2.3vw, 100%);
	overflow-x: hidden;
}
p {
	font-size: 0.9em;
	line-height: 160%;
}

a{color: rgb(0,53,105)}

blockquote{line-height: 150%;}

h1{margin: 0; font-size: 2rem; font-weight: 900; color: rgb(0,65,132)}
h2{margin: 0rem 0rem 0.5rem 0rem; font-size: 1.4rem; font-weight: 400; color: rgb(159,97,0)}
h3{margin: 0rem 0rem 0.5rem 0rem; font-size: clamp(1.2rem, 2vw, 1.4rem)}

img {vertical-align:top;}

hr.divider {
	border: none;
	background-color: rgba(0,53,105,1.00);
	height: 1px;
	margin: 2em 0;
	padding: 0;
}

.site-container {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: clamp(175px, 14vw, 225px) 1fr clamp(175px, 14vw, 225px);
	transition: all 0.5s;
}

.page-container{
	position: relative;
	z-index: 1;
	padding: 0;
	background-color:white;
	display: flex;
	flex-direction: column;
}

.ad-column {
	background-color: rgba(252,151,0,1.00);
	position: relative;
	z-index: 1;
	box-shadow: 0 0 10px black;
	width: 100%;
}
.ad-intro {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 125px; /* ---- Enough height to keep text from resizing on hide and shorter total page height ---- */
	text-align: center;
}
.ad-intro > div:nth-of-type(1){
	font-size: 120%;
	font-weight: 900;
}
.ad-intro > div:nth-of-type(2){
	font-style: italic;
	font-size: 80%;
	margin-top: 1em;
}
.ad-slider {
	width: clamp(175px, 14vw, 225px);
	height: 100%;
	transition: all 0.5s;
	padding: 1em 1em 0 1em;
	overflow-x: visible;
	margin: 0;
	container-type: size;
	container-name: slider;
	background-color: rgba(252,151,0,1.00);
	position: relative;
	z-index: 2;
}
.ad-container {
	container-type: size;
	height: calc(20% - 25px);
}
@container slider (max-height: 1400px) {
	.ad-container {
		height: calc(25% - 32px);
	}
	.ad-container:nth-of-type(n + 6) {
		display: none;
	}
}
.ad {
	position: sticky;
	top: calc(100dvh - 65%);
	display: block;
	width: 100%;
	background-color: white;
	padding: 0.5em;
	text-decoration: none;
	margin-bottom: 20cqh;
	overflow: hidden;
	font-size: min(100%, 7.5cqh);
}
.ad img {
	background-color: rgb(240,240,240);
	width: min(100%,50cqh);
	aspect-ratio: 1;
	display: block;
	margin: 0 auto;
	object-fit: contain;
}
.ad .comp-name,
.ad-text .comp-name{
	text-align: center;
	font-size: 120%;
	font-weight: bold;
}
.ad .comp-statement,
.ad-text .comp-statement{
	font-style: italic;
	font-size: 80%;
	text-align: center;
}
.ad .phone,
.ad-text .phone{
	font-size: 140%;
	font-weight: bold;
	text-align: center;
}
.ad-switch {
	position: sticky;
	z-index: 1;
	top: 0;
	left: 0;
	transform: translateX(calc(1px - 100%));
	background-color: rgba(252,151,0,1.00);
	padding: 0.2em;
	color: white;
	font-size: 2em;
	line-height: 0.9em;
	height: 1.4em;
	display: block;
	width: 1.2em;
	vertical-align: middle;
	border-radius: 0 0 0 0.4em;
	filter: drop-shadow(0 0 5px black);
	cursor: pointer;
	transition: all 0.5s;
	margin-bottom: -1.4em;
}
.ad-switch::before{
	content: '\00BB';
}
#ad_slider_flag {
	display: none;
}
#ad_slider_flag:checked + label {
	right: 0;
}
#ad_slider_flag:checked + label::before {
	content: '\00AB';
}
/*
#ad_slider_flag:checked + label + .ad-slider {
	width: 0;
	padding: 1em 0;
}
*/
.site-container:has(#ad_slider_flag:checked) {
	grid-template-columns: clamp(175px, 14vw, 225px) 1fr 0;
}

.premier-advertiser-container{
	display: block;
	width: 100%;
	position: relative;
	background-color: rgba(30,67,130,1.00);
	padding: 1em 1em 2em 1em;
}
.paid-disclaimer {
	width: 100%;
	text-align: center;
	font-size: 80%;
	color: white;
	text-decoration: underline;
	text-underline-offset: 4px;
	font-weight: 400;
	margin-bottom: 1.5em;
}
.premier-ads-container{
	flex: 1 1 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2em;
	flex-wrap: wrap;
	max-width: 100%;
}
.premier-ad{
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	background-color: white;
	font-size: 120%;
	line-height: 1.5em;
	padding: 0.3em;
}
.premier-ad img{
	width: 150px;
	background-color: rgba(240,240,240,1);
	aspect-ratio: 1;
	object-fit: cover;
}
.ad-text{
	display: flex;
	align-items: center;
	padding: 1em;
}

/*------------------------------ ANIMATED CSS ONLY NAV -----------------------------------------*/
	.respNavContainer{
		display: flex;
		flex-direction: column;
		height: 100dvh;
		width: 225px;
		width: auto;
		background-color: rgba(30,67,130,1.00);
		font-size: 0.9em;
		font-weight: 300;
		margin: 0;
		padding: 0;
		position: sticky;
		top: 0;
		z-index: 2;
		box-shadow: 0 0 10px black;
	}
	.respNavContainer img.logo-nav {
		display: block;
		padding: 1.5em;
		width: 100%;
		margin: 0 auto;
	}
	.respNavContainer img{
		max-width: 100%;
		padding: 2vh 1em 0.5vh 1em;
		height: auto;
		width: auto;
		max-height: 35vh;
		margin: 0 auto;
	}
	.respNavContainer ul.efv8nav{
		display:inline-block;
		position: relative;
		padding: 0;
		margin: 0 auto;
		clear: left;
	}
		.respNavContainer ul.efv8nav>li{
			display: block;
			color: white;
			margin: 0;
			text-align: left;
			position: relative;
			vertical-align: middle;
			text-align: center;
		}
		.respNavContainer ul.efv8nav a{   /*---------------PRIMARY NAV BUTTONS ------------------------*/
			display:block;
			padding: 0 1em;
			white-space: nowrap;
			height: 3.3vh;
			line-height: 3.3vh;
			vertical-align: middle;
			color: white;
			font-weight: 300;
			text-decoration: none;
			background-color: rgba(0,0,0,0);
			-o-transition: background-color 0.2s;
			-moz-transition: background-color 0.2s;
			-webkit-transition: background-color 0.2s;
			transition: background-color 0.2s;
		}
		.respNavContainer ul.efv8nav li:hover > a, 
		.respNavContainer ul.efv8nav li.selected > a{
			background-color: rgba(0,0,0,0.2);
			color: rgba(255,242,0,1);
		}
		.respNavContainer ul.efv8nav>li ul {
			display: block;
			visibility: hidden;
			opacity: 0;
			position: absolute;
			top: 0px;
			left: 100%;
			margin-left: -0.5em;
			padding: 0;
			transition: opacity 1s;
			-moz-transition: opacity 1s;
			-webkit-transition: opacity 1s;
			-o-transition: opacity 1s;
				background-color: rgb(0, 34, 73);
				border: 1px solid rgba(255,255,255,0.3);
				min-width: 10em;
				
		}
			.respNavContainer ul.efv8nav>li:hover>ul{
				visibility:visible;
				opacity: 0.95;
				
			}
			.respNavContainer ul.efv8nav>li ul>li {
				display:block;
				margin: 0px;
				white-space: nowrap;
				position: relative;
				min-width: 100%;
				line-height: 1.2rem;
			}
				.respNavContainer ul.efv8nav>li ul>li a{   /*-------- FLYOUT NAV BUTTONS ---------------*/
					display:block;
					width: auto;
					height: auto;
					padding: 5px 1em;
					line-height: inherit;
				}
					.respNavContainer ul.efv8nav>li ul>li a:hover, .respNavContainer ul.efv8nav>li ul>li a.selected{
						background-color: rgba(0,0,0,0.3);	
					}
		.respNavContainer ul.efv8nav>li ul>li:hover>ul{
			visibility:visible;
			opacity: 0.95;
		}

	.social-links {
		text-align: center; 
		border-top: 2px solid white; 
		border-bottom: 2px solid white;
		margin: 0.5em 0!important;
	}

	#navFlag {position: fixed; z-index: 100000000; top: 100px; left: -100px;}

	.mNavHeader{
		position: relative;
		text-align:center;
		color:white;
		background-color: rgb(75,0,0);
		font-weight: bold;
		font-size:1.4rem;
		padding: 10px 0px;
	}
	
	
	.mobileNav{
		display: none;/**/
		position: fixed;
		left: 0px;
		top: 0px;
		-o-transform: translate(0%,0%);
		-moz-transform: translate(0%,0%);
		-webkit-transform: translate(0%,0%);
		transform: translate(0%,0%);
		width: 90%;
		padding-top: 0px;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		border-top: 1px solid rgba(0,0,0,0.8);
	}
		.mobileNav ul{
			display:block;
			position: relative;
			margin: 0px;
			padding: 0px;
			background-color: rgb(30,67,130);
		}
		
		.mobileNav ul.efv8nav li{
			display: block;
			position: relative;
		}
		.mobileNav ul.efv8nav>li>a{
			display:block;
			width: 100%;
			clear:left;
			margin: 0px;
			padding: 5px;
			border-bottom: 1px solid rgba(0,0,0,0.8);
			text-decoration: none;
			font-size: 1.2rem;
			color: rgba(255,255,255,0.6);
			padding-right: 30px;
		}
		.mobileNav ul.efv8nav li>ul{
				max-height: 0px;
				overflow: hidden;
				/*display:none;*/
				transition: max-height 1s;
				-moz-transition: max-height 1s;
				-webkit-transition: max-height 1s;
				-o-transition: max-height 1s;
		}
			.mobileNav ul.efv8nav li.clicked>ul{
				max-height: 1000px;
				/*display:block;
				height: auto;*/
			}
		.mobileNav ul.efv8nav>li a:hover{
			background-color: rgba(255,255,255,0.2);
		}
			
		.mobileNav ul.efv8nav>li ul>li>a{
			border-bottom: 1px solid rgba(0,0,0,0.8);
		}
		.mobileNav ul.efv8nav>li ul>li a{
			display:block;
			text-decoration: none;
			color: rgba(255,255,255,0.6);
			font-size: 1rem;
			padding: 5px 30px 5px 0px;
		}
				.mobileNav ul.efv8nav>li>ul>li>a{
					padding-left: 20px;
				}
				.mobileNav ul.efv8nav>li>ul>li>ul>li>a{
					padding-left: 40px;
				}
				.mobileNav ul.efv8nav>li>ul>li>ul>li>ul>li>a{
					padding-left: 60px;
				}
				.mobileNav ul.efv8nav>li>ul>li>ul>li>ul>li>ul>li>a{
					padding-left: 80px;
				}
				.mobileNav ul.efv8nav>li>ul>li>ul>li>ul>li>ul>li>ul>li a{
					padding-left: 100px;
				}
	
	.mobileNavControl{
		display:none;
		position: fixed;
		top: 0px; 
		left: 0px;
		width: 100%;
		background-color: rgb(0, 34, 73);
		padding: 10px;
		z-index: 4;
		box-shadow: -5px 0px 15px rgba(0,0,0,0.4);
		height: 45px;
	}
	.mobileNavControl input[type=button] {
    	float: right;
		border: none;
		background-color: transparent;
		color: rgba(255,255,255,0.7);
		margin-top: 3px;
	}
		.mobileNavControl #btnShowNav{
			position: relative;
			width: 25px;
			height: 25px;
			border-radius: 2px;
			color: white;
			cursor: default;
			padding: 0px;
			overflow:hidden;
			float:left;
		}
		.mobileNavControl #btnShowNav hr{
			padding: 0px;
			margin: 4px 2px;
			border: none;
			background-color: rgba(255,255,255,0.50);
			height: 2px;
		}
		.mobileNavControl img{
			max-width: 65%;
			position: absolute;
			top: 50%;
			left: 40px;
			-o-transform: translateY(-50%);
			-moz-transform: translateY(-50%);
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
		}
			
	
	
/*---------------------------- FOOTER ------------------------------*/
	

.footerContainer{
	position: relative;
	z-index: 1;
	background-color: rgb(0,53,105);
	padding: 0;
	margin-top: auto;
}
.footer{
	min-height: 50px;
	padding: 2em;
	position: relative;
	overflow:hidden;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2em;
	color: rgb(255,242,0)!important;
	font-size: clamp(80%, 1vw, 100%);
}
.footer a{
	color:white;
	text-decoration:none;
	font-weight: 700;
}
.footer a:hover{
	text-decoration: underline;
}
.footer-logo-container {
	order: 2;
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
}
.footer-logo-container img{
	height: 130px;
	max-height:  80%;
	width: auto;
}
.membership{
	order: 1;
	flex: 0 0 0;
	white-space: nowrap;
}
.merchandise{
	order: 3;
	flex: 0 0 0;
	white-space: nowrap;
	float:right;
	text-align:right;
}
.copyright{
	padding: 1em;
	background-color: rgba(255,242,0,1.00);
	color: rgba(0,53,105,1.00);
	font-size: 0.7rem;
	font-weight: normal;
	text-align:center;
	line-height: 1.8em;
}
.copyright a{
	color: rgba(0,53,105,1.00);
	text-decoration: none;
}


/*------MEMBER LOGIN STYLE --------*/

form.memLogin{
	position: fixed;
	z-index: 3;
	left: 10px;
	bottom: 10px;
	background-color: white;
	width: 300px;
	margin: 0px;
	padding: 15px;
	text-align:left;
	line-height: 150%;
	border: 1px solid black;
	font-size: 0.8em;
	
	box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
	border-radius: 8px;
	display:none;
	transition: opacity 0.5s;
	opacity: 0;
}
	form.memLogin a{
		color: blue;
		text-decoration: underline;
	}
	form.memLogin .closeLoginWindow{
		font-size: 3em;
		font-weight: 100;
		line-height: 12px;
		text-align:center;
		color: red;
		cursor:pointer;
		position: absolute;
		top: 10px;
		right: 10px;	
	}
	form.memLogin img{
		float:right;
		vertical-align:middle;
		margin-left: 5px;
		margin-bottom: 5px;
	}
	form.memLogin input.default{
		border: 1px solid #D5D7D7;
		width: 100%;
		margin-bottom: 5px;
		background-color: #F5F5FF;
		color: #263C8A;
       line-height: normal;
       padding: 3px 0px 2px 5px;
       height: 1.8em;
	}

	form.memLogin input.btn{
		border: 1px solid #CCCCCC;
		height: 28px;
		width: 100px;
		padding: 0px;
		font-size: 9pt;
		font-weight: bold;
		color: #333333;
		margin-bottom: 1em;
	}
	form.memLogin p, div.leftCol p{
		margin: 0px 0px 10px 0px;
	}
	form.memLogin .memLoginErr{
		font-weight: bold;
		background-color: #AA0000;
		color:white;
		padding: 3px;
		text-align:center;
		margin-bottom: 5px;
	}



/*---------------------------------- GENERAL STYLES -----------------------------------------*/


.persistent-join-tab {
	display: block;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: fit-content;
	color: white;
	background-color: rgba(0,39,74,1.00);
	font-weight: bold;
	font-size: 160%;
	padding: 0.2em 1em;
	text-decoration: none;
	z-index: 7;
	border: 1px solid white;
	border-width: 0 1px 1px 1px;
	border-radius: 0 0 0.2em 0.2em;
	opacity: 0;
}

body:has(#joinFlag:checked) .persistent-join-tab {
	animation: showJoinTab 0.5s forwards, makeFlashy 10s infinite;
}

@keyframes showJoinTab {
	0% {opacity: 0;}
	100%{opacity: 1;}
}

.eye-catching {
	animation-name: eyecatching;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	display: block;
}
.eye-catching:after{
	content: "";
	display:inline-block;
	width: 0;
	height: 0;
	border-left: 0.65rem solid white;
	border-top: 0.65rem solid transparent;
	border-bottom: 0.65rem solid transparent;
	vertical-align: baseline;
	margin-left: 0.5rem;
	font-size: 150%;
}

@keyframes eyecatching {
	0%{transform: scale(0.8) rotate(0)}
	94%{transform: scale(0.8) rotate(0)}
	95%{transform: scale(1) rotate(3deg);}
	96%{transform: scale(0.9) rotate(-3deg);}
	97%{transform: scale(0.9) rotate(3deg);}
	98%{transform: scale(1) rotate(-3deg);}
	99%{transform: scale(1) rotate(3deg);}
	100%{transform: scale(0.8) rotate(0);}
}
@keyframes makeFlashy {
	0%{background-color: rgba(0,39,74,1.00); color: white;}
	94%{background-color: rgba(0,39,74,1.00); color: white;}
	95%{background-color: white; color: rgba(0,39,74,1.00)}
	96%{background-color: rgba(0,39,74,1.00); color: white;}
	97%{background-color: white; color: rgba(0,39,74,1.00)}
	98%{background-color: rgba(0,39,74,1.00); color: white;}
	99%{background-color: white; color: rgba(0,39,74,1.00)}
	100%{background-color: rgba(0,39,74,1.00); color: white;}
}

#introVideo{
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100vh;
	width: auto;
	height: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: url(../images/video-thumb.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	background-color: black;
	display:block;	
	/*
	z-index: -100;
	*/
}
	#vidContainer{display:block;background-color:black; max-height: 100vh;}

.section{
	position: relative;
	width: 100%;
	/*min-height: 100vh;*/
	transition: top 0.5s;
	overflow: hidden;
}

	.section h1{
		padding: 0;
		margin: 0;
		text-align:left;
		line-height: 110%;
	}
	.section  h2{
		text-align: left;
		margin-bottom: 1em;
	}
	.section p{
		color: rgb(50,50,50);
	}
	.section ul{
		line-height: 150%;
	}
	.section ul li{margin-top: 0.5em; margin-bottom: 0.5em;}
	.section.intro{
		text-align:center;
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		overflow: hidden;
		display:block;
		height: 100vh;
		position: sticky;
		top: 0;
	}
		.section.intro img{
			position: absolute;
			top: 50%;
			left: 50%;
			max-width: 50%;
			max-height: 90%;
			-o-transform: translate(-50%,-50%);
			-moz-transform: translate(-50%,-50%);
			-webkit-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
			opacity: 0.8;
		}
	.moreLink{
		display: block;
		text-align: center;
		font-size: 1.2rem;
		font-weight: bold;
		width: fit-content;
		margin: 2rem auto;
		text-decoration: none;
		background-color: rgba(255,255,255,0.8);
		padding: 5px 1em;
		background-color: rgb(30,67,130);
		color:white;
		position:relative;
		border-radius: 0.25em;
	}
		.moreLink:after{
			content: "";
			display:inline-block;
			width: 0;
			height: 0;
			border-left: 0.5rem solid white;
			border-top: 0.5rem solid transparent;
			border-bottom: 0.5rem solid transparent;
			vertical-align: baseline;
			margin-left: 0.5rem;
		}
		
		
.efv8Login{
	display: block;
	position: relative;
	z-index: 3;
	padding: 0.7em;
	background-color: rgb(252,151,0);
	margin: auto 0 0 0;
	color: rgb(0,65,132);
	
}
	.efv8Login h3{margin: 0;}
	.efv8Login ul{
		display: inline-block;
		vertical-align: middle;
		white-space: nowrap;
		padding: 0.5rem 2rem 0.5rem 2rem;
}
	.efv8Login ul li{
		list-style: disc;	
	}
	.efv8Login .loginBtn{
		color: white;
		background-color: rgb(0,65,132);
   	width: fit-content;
		margin: 0 auto;
		padding: 0.3em 1em;
    	font-size: 1em;
		cursor: default;
		font-weight: 700;
		font-family: inherit;
	}
	.efv8Login .userLogin{
		font-size: 0.9rem;
		font-weight: 700;
		position: relative;
		text-align: center;
	}
	.efv8Login .userLogin p{
		color: rgb(0,39,74);
		margin: 0.5rem 0 0 0;
		line-height: 1.5em;
	}
	.efv8Login .userLogin a {
	 color: rgb(255,242,0);
	 font-weight: 900;
	 text-decoration: none;
	}


	
.section.one{
	padding: 2em 3em;
	background-color: white;
}
	.section.one p{
		line-height: 160%;
		font-size: 0.9rem;
	}
	.section.one .blue-ford img{
		float:right;
		clear: right;
		margin-left: 1rem;
		height: 1.8em;
		width: auto;
	}
	.section.one .blue-ford img:nth-of-type(n+18){display:none;}
	.homeFirstImage{
		float: right;
		shape-outside: url("../images/2025/home-page-convertible-mask.webp");
		shape-image-threshold: 0.5;
		shape-margin: 2em;
		width: clamp(20%, 26vw, 40%);
		min-width: 300px;
		max-width: 80%;
		clear:right;
	}


.section.upcomingEvents{
	text-align:center;
	padding: 0;
	background-color: white;
	overflow: hidden;
/*
		background-image: url(../images/upcoming-back-2.jpg);
		background-size: cover;
		background-position: top center;
		background-attachment: fixed;
		background-repeat: no-repeat;
*/
}

	.welcome {
		position: relative;
		background-color: rgba(255,242,0,1.00);
		color: rgba(0,53,105,1.00);
		font-size: 2rem;
		font-weight: 900;
		text-align: center;
		padding: 0.5rem;
	}
	.section.upcomingEvents h1{
		font-size: 2rem;
		text-align: center;	
		margin: 1em;
	}
	.section .upcoming>img:first-child{
		position: absolute;
		bottom: 5rem;
		right: 2rem;
		width: 13rem;
		height: auto;
	}

	.events{
		margin: 2rem;
		position:relative;
		display: table;
		border-collapse: collapse;
		border-spacing: 0px;
		filter: drop-shadow(0 0 10em rgba(0,0,0,0.1));
		display: flex;
		align-items: stretch;
		justify-content: center;
		gap: 2em;
		flex-wrap: wrap;
	}
	.eventRow{
		flex: 1 1 330px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		border: 1px solid rgba(200,200,200,1);
	}
	.eventRow:nth-child(even){
		background-color: rgba(255,255,255,0.925);
	}
	.eventRow:nth-child(even):hover{background-color: rgba(255,255,255,1);}
	.eventRow:nth-child(odd){
		background-color: rgba(230,235,255,0.925);
	}
	.eventRow:nth-child(odd):hover{
		background-color: rgba(230,235,255,1);
	}

	.eventRow>div{
		padding: 1rem;
		text-align:left;
		border: none;
		font-size: 0.8em;
		text-align: center;
	}
	.eventRow>div>span{
		display:block;
		margin: 0; 
		padding: 0;
		font-weight: 700;
	}
	
	.eventDate{
		text-align:left;
		display: grid;
		grid-template-rows: auto auto;
		grid-template-columns: auto auto;
		padding-bottom: 0!important;
		font-size: 70%!important;
	}
	.eventDate>span{
		display: block;
		line-height: 0.8em;
		text-align: center;
	}
	.eventDate>span:first-child{
		grid-column: 1;
		grid-row: 1/3;
		font-size: 5em;
		font-weight: 900;
		color: rgb(252,151,0);
		margin-right: 0.5rem;
	}
	.eventDate>span:nth-child(2){
		grid-row: 1;
		grid-column: 2;
		font-size: 2.4em;
		color: rgb(0,79,163);
		text-transform: uppercase;
	}
	.eventDate>span:nth-child(3){
		grid-row: 2;
		grid-column: 2;
		font-size: 2.2em;
		color: rgb(110,69,0);
	}

	.eventTitle{
		min-width: 20rem;/**/
		text-align: center;
		padding: 1rem 1rem 0 1rem!important;
	}
	.eventTitle>span:first-child{
		font-size: 1.2rem;
		color: rgb(60,0,107);
	}
	.eventTitle>span:nth-child(2){
		font-size: 0.9em;
		rgb(50,50,50);
		font-weight: 400;
		margin-top: 0.4rem;
	}
	
	.eventDescription{
		color: rgb(50,50,50);
		font-size: 1rem;
		line-height: 150%;
		text-align: left!important;
		width: 100%;
	}



.v8Times{
	color: rgb(255,242,0);
		background-color: rgb(252,151,0);
	font-weight: 400;
	position: relative;
	overflow: hidden;
}
	.v8Times>div:first-child{
		padding: 0.5em 2em;
		text-align:left;
		position: relative;
		color:rgb(0,39,74);
		line-height: 2.8em;
	}
	.v8Times>div:first-child div{
		display:inline-block;
		font-size: 1.2em;
		vertical-align: middle;
		line-height: 2.8em;
	}
	.v8Times>div:first-child div:first-child{
		position: absolute;
		right: 2em;
		top: 50%;
		-o-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		font-size: 1.4em;
		font-weight: 700;
		font-style: italic;
		line-height: 2.8em;
	}
	.v8Times>div:first-child div:nth-child(3){
		font-size: 2.8em;
		font-weight: 900;
		color: rgb(255,242,0);
		line-height: 1em;
	}

	.v8Thumbs{
		overflow: hidden;
		white-space: nowrap;
		border-color: rgb(0,39,74);
		border-style: solid;
		border-width: 2px 0px;
	}
	.v8Thumbs img{
		width: 16.7%;
		display: inline-block;
		vertical-align:middle;
	}
	.timesBlurb{
		font-size: 1.4em;
		font-weight: 900;
		font-style: italic;
		color: rgb(159,97,0);
		text-align: center;
		width: 80%;
		min-width: 300px;
		padding: 1em 2em 1em 2em;
		margin: 0 auto;
	}

.anniversary{
	background-color: rgb(0, 63, 133);
	padding: 0;
	background-image: url(../images/anniversary-back.jpg);
	background-position: left top;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 1em;
	flex-wrap: wrap;
	text-align: center;
	width: 100%;
	font-size: clamp(0.5rem, 0.8vw, 1rem);
}

.anniversary .left {
	flex: 2 1 350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 5em;
}
.anniversary .left div:nth-of-type(1){
	position: relative;
	color: yellow;
	font-size: 3em;
	font-weight: 900;
	text-align: center;
	line-height: 1em;
	height: 1.5em;
	width: 100%;
	min-height: 42px;
}
.anniversary .left div:nth-of-type(1) span{
	display: inline-block;
	font-size: 2em;
	text-shadow: 0 0 25px black;
	margin: 0 0.1em 0 0.1em;
	position: relative;
	top: 0.25em;
}
.anniversary .left div:nth-of-type(2){
	position: relative;
	bottom: 0;
	color: white;
	font-size: 2em;
	font-weight: 900;
	font-style: italic;
	width: 100%;
	text-align: center;
	line-height: 2em;
	height: 1.5em;
}
.anniversary .left div:nth-of-type(2) span{
	font-size: 2em;
	color: rgb(252,151,0);
}

.anniversary .right {
	flex: 1 1 300px;
	position: relative;
	padding: 0;
	min-height: 200px;
	aspect-ratio: 1.7;
}
.anniversary .right img:nth-of-type(1){
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.anniversary .right img:nth-of-type(2){
	position: absolute;
	bottom: 1em;
	right: 1em;
	width: 15%;
}
	

.section.news{
	padding: 0;
	font-size: 1rem;
	background-color: white;
	overflow: hidden;
	& h1{
		font-size: 200%;
		text-align: center;
		margin: 1em;
	}
}

.newsContainer{
	font-size: 80%;
	padding: 0 2em;
	position:relative;
	line-height: 150%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 2em;
	flex-wrap: wrap;
	filter: drop-shadow(0 0 10em rgba(0,0,0,0.1));
}

.articleContainer{
	flex: 1 1 350px;
	position: relative;
	padding: 2em;
	background-color: white;
	border: 1px solid rgb(200,200,200);
	& h3{
		font-size: 160%;
		color: rgb(60,0,107);
		margin: 0;
		padding: 0;
		line-height: 130%;
	}
	& h4{
		font-size: 1.1rem;
		color: rgb(255,152,0);
		padding: 0;
		margin: 0 0 0.5rem 0;
		line-height: 130%;
	}
	& >img:first-child{
		position: absolute;
		bottom: 5rem;
		right: 2rem;
		width: 13rem;
		height: auto;
	}
}

.newsBody{
	max-height: 20.95rem;
	overflow:hidden;
	position: relative;
	line-height: 150%;
}
.newsBody a.more{
	display:block;
	background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,1) 70%);
	color: rgb(120,2,231);
	text-align: right;
	position: absolute;
	width: 100%;
	line-height: 1.5em;
	height: 2em;
	top: 19.75rem;
	left: 0;
	font-weight: 900;
	padding: 0;
	margin: 0;
	z-index: 10;
}
.newsBody p{
	margin: 1.5rem 0 0 0;
	line-height: 150%;
}


.section.map{
	height: 700px;
	width: auto;
	box-shadow: none;
	position: relative;
	background-clip: padding-box;
	background-color: rgba(144,197,255,1.00);
}
	.section.map h1{
		position:absolute;
		top: 0;
		left: 50%;
		-o-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		font-size: 2.4rem;
		width: 75%;
		min-width: 300px;
		border-radius: 0 0 0.6rem 0.6rem;
		/*box-shadow: 5px 5px 8px rgba(0,0,0,0.5);*/
		margin: 0 auto 5rem auto;
		background-color: rgb(0,39,74);
		color: rgb(255,242,0);
		text-shadow: none;
		padding: 0 2rem 0.5rem 2rem;
	}


section.join-popup-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.4);
	z-index: 10;
	padding: 2em;
	font-weight: normal;
	pointer-events: none;
}
section.join-popup-container.delayed-appearance {
	transform: translateX(-101%);
	opacity: 0;
	animation: makeVisible 0.5s forwards;
	animation-delay: 5s;
}
@keyframes makeVisible {
	0%{
		transform: translateX(0);
		opacity: 0
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
#joinFlag:checked + .join-popup-container {
	animation: makeHidden 0.5s forwards;
	animation-delay: 0s;
}
@keyframes makeHidden {
	0%{
		transform: translateX(0);
		opacity: 100%
	}
	99% {
		transform: translateX(0);
		opacity: 0;
	}
	100% {
		transform: translateX(-101%);
		opacity: 0;
	}
}

.join-popup{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: white;
	border-radius: 0.5em;
	overflow: hidden;
	filter: drop-shadow(0 0 4em black);
	width: 100%;
	max-width: 1200px;
	position: relative;
	font-size: 1em;
	pointer-events: all;
}
.join-image{
	flex: 1 1 400px;
	max-height: max(240px, 45cqw);
}
.join-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}
.join-text{
	flex: 1.5 1 500px;
	padding: 2em;
}
.join-text h1 {
	font-size: 200%;
}
.join-text h2 {
	font-size: 150%;
}
.join-text .moreLink {
	width: fit-content;
	font-size: 120%;
	padding: 0.25em 1em 0.25em 1em;
	border-radius: 0.25em;
	margin: 1em auto 0 auto;
}
.join-popup-closer {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 2.5rem;
	font-weight: 100;
	color: rgb(150,0,0);
	background-color: rgba(255,255,255,0.5);
	border-radius: 3px;
	width: 1em;
	height: 1em;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: default;
}
.visibility-flag {
	position: fixed;
	left: -10000px;
}
.opt-out {
	padding-top: 1em;
	text-align: center;
}


.join-now-button {
	display: block;
	width:  fit-content;
	background-color: rgba(252,151,0,1.00);
	color: white;
	border-radius: 5px;
	padding: 0.35em 1em;
	font-size: 1.6em;
	margin: 2em auto 0 auto;
	font-weight: 900;
	text-decoration: none;
}
.join-now-button:after{
	content: "";
	display:inline-block;
	width: 0;
	height: 0;
	border-left: 0.65rem solid white;
	border-top: 0.65rem solid transparent;
	border-bottom: 0.65rem solid transparent;
	vertical-align: baseline;
	margin-left: 0.5rem;
	font-size: 150%;
}

/* --------------------------- AVERTISERS ------------------------------------- */

.advertisers-container{
	position: relative;
	background-color: white;
	padding: 2em;
}
.advertisers-container h1{
	font-size: 2rem;
 	font-weight: 900;
   width: 100%;
   min-width: 300px;
   margin: 0 auto 2rem auto;
   background-color: rgb(0, 39, 74);
   color: rgb(255, 242, 0);
   text-shadow: none;
   padding: 0 2rem 0.5rem 2rem;
   text-align: center;
}
/*---------------------------CLASSIFIEDS STYLES ---------------------------------*/

.classCopy{
	padding: 2em 2em 2em 0;
	line-height: 200%;
}
	.classCopy br{
		line-height: 300%;
	}
	
	
.adDetails{
	display:inline-block;
	width: 55%;
	margin: 1em auto;
	text-align:center;
	border: 0.5em solid rgb(0,39,74);
	font-size: 1.2em;
	background-color: rgb(111, 106, 0);
	color:white;
	padding: 1em;
	border-radius: 0.5em;
}
	.adDetails .adPrice{
		font-size: 3em;
		font-weight: 900;
		line-height: 120%;
	}
	.adDetails a{
		color: rgba(255,255,255,0.5);
		font-size: 0.8em;
	}
	.adDetails div{
		line-height: 175%;
	}

.adHead, .SESUpcomingDate{
	font-size: 1.6em;
	background-color: rgb(0,53,105);
	color: rgb(255,242,0);
	margin-top: 1em;
	padding: 0.1em 0.5em;
	text-align:left;
	border-radius: 0;
}
.adImgPreview{
	height: 100px;
	width: auto;
	display: inline-block;
}
.classImg{
	float:right;
	border-style: solid;
	border-color: transparent;
	border-width: 2em 0 2em 2em;
	width: 45%;
	min-width: 500px;
	cursor: zoom-in;
}
	.classImg .BGMGalleryContainer{min-height: 0; padding: 0 0 80% 0;}
	.classImg .BGMGallerySmImgFrame{border-radius: none;}
	.classImg .BGMGalleryLrgImgContainer{bottom: 0;}
	@media only screen and (max-width: 1100px) { .classImg .BGMGallerySelectorContainer {background-color: rgba(0,39,74, 0.7);}}
.classImgPreview{
	width: auto; height: 50px; display: inline-block;
}

.adSubmitChanges{
	text-align:left; 
	border: none; 
	background-color:transparent; 
	font-family: inherit; 
	font-size:inherit; 
	color: blue;
	text-decoration: underline;	
}
.classifiedCategory div.adMgrPostDate{
	display:inline;
	font-size: 0.8em;
	float:none;
	font-style:normal;
}
.adMgrLinks{
	float:right; 
	margin-right: 20px; 
	text-align:right;
}

.adSubmit{
	display:block;
	position:relative;
	width: 80em;
	max-width: 100%;
	margin: 1em auto 2em auto;
}
	.adSubmit label, .adSumbit .label{
		display:block;
		padding: 0.2em;
		vertical-align:middle;
		line-height: 175%;
		overflow:hidden;
		clear:both;
		font-weight: 700;
	}
	.adSubmit label:nth-of-type(even){
		background-color: #E1E9F6;
	}
	.adSubmit .submitContainer{
		padding-top: 2em;
	}
	.adSubmit>label>input, .adSubmit>label>select, .adSubmit>label>textarea, .adSubmit .input{
		width: 60%;
		float:right;
		vertical-align:middle;
		font-family: inherit;
		font-size: inherit;
		text-align:left;
		min-width:240px;
	}
	.adSubmit input[type=file]{padding-left: 0;}
	.adSubmit label{
		clear:left;
	}
	.adSubmit .CSZ input:nth-of-type(1){width: 59%; margin-right: 1%; font-family: inherit; font-size: inherit;}
	.adSubmit .CSZ input:nth-of-type(2){width: 40%; font-family: inherit; font-size: inherit;}
	.adSubmit .CSZ select:nth-of-type(1){width: 40%; font-family: inherit; font-size: inherit;}


.adTrail{
	font-size: 1.6em;
	background-color: rgb(0,53,105);
	color: rgb(255,242,0);
	margin-top: 1em;
	padding: 0.1em 0.5em;
}	
	.adTrail div{
		color: rgba(255,255,255,0.5);
		font-size: 0.5em;
		float:right;
		line-height: 2.5em;
		margin-left: 1em;
	}
	.adTrail a, .adTrail .subCatHead{
		font-size: 0.8em;
		color: rgba(255,255,255,0.8);	
	}
	.adTrail .leftArrow{
		display:inline-block;
		margin: 0 0.5em;
		vertical-align:middle;
		border: 0.3em solid transparent;
		border-right: 0.5em solid white;
		border-left: none;
	}
	.adTrail .rightArrow{
		display:inline-block;
		margin: 0 0.5em;
		vertical-align:middle;
		border: 0.3em solid transparent;
		border-left: 0.5em solid white;
		border-right: none;
	}
	
.bigLineSpace p{line-height: 160%;}	
	
.classifieds-container {
	font-size: 85%;
}
.classifiedCategory{
	line-height: 200%;
	padding: 0 0.5em;
}
.classifiedCategory:nth-of-type(even){
	background-color: #E1E9F6;
}
.classifiedCategory:nth-of-type(odd){
	background-color: #FFFFFF;
}
.classifiedCategory div{
	float:right;
	font-style: italic;
}

.classifiedList, .genericList{
	display: table;
	width: 100%;
	font-size: 90%;
}
	.classifiedList .tr, .genericList .tr{
		display: table-row;
	}
	.classifiedList>.tr:nth-of-type(odd), .genericList>.tr:nth-of-type(odd){
		background-color: #E1E9F6;
	}
	.classifiedList .tr:first-of-type, .genericList .tr:first-of-type{
		font-weight: 700;
		font-size: 1.2em;
		background-color: rgb(252,151,0);
		color: rgb(0,65,132);
	}
	.classifiedList .td, .genericList .td{
		display: table-cell;
		padding: 0.4em 0.4em 0.4em 0.4em;
	}
	.classifiedList .td:last-of-type a, .genericList .td:last-of-type a{
		font-size: 0.7em;
	}
	.classifiedList .td:first-of-type img, .genericList .td:first-of-type img{
		height: 1.4em;
		margin: -0.2em 0;
	}
	.classifiedList .td:nth-of-type(4), .genericList .td:nth-of-type(4){
		font-weight: 900;
	}
	
.classifiedPrevNext{
	text-align:right;
	font-size: 0.8em;
	margin-top: 1em;
}
.classifiedPrevNext form{
	display:inline;
	vertical-align: top;
}
.classifiedPrevNext input{
	background-color: transparent;
	border: none;
	font-family: inherit;
	padding: 0;
	color: rgb(0,53,105);
}

.BGMGalleryLrgImgContainer .prev{border-color: transparent rgb(220,220,220)  transparent transparent}
.BGMGalleryLrgImgContainer .next{border-color: transparent transparent transparent rgb(220,220,220) }
.fullScreenOpen:before{border-color: rgb(220,220,220) transparent}
.fullScreenOpen:after{background-color: rgb(220,220,220) }

/*-------------------------------NEWS PAGE -------------------------------------*/

.newspage-container{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 2em;
	flex-wrap: wrap;
	font-size: 85%;
}
.newspage-container h1{
	width: 100%;	
}
.allNewsContainer{
	flex: 1 1 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2em;
}
.allNewsContainer a{
	width: 0;
	height: 0;
	line-height: 0;
}
.allArchiveContainer{
	flex: 1 1 300px;
	max-width: 400px;
	background-color: white;
}
	.allArchiveContainer div.adHead:first-of-type{margin-top: 0}
	.allArchiveContainer h1{font-size: 1.8em;}
	.archiveImg{height: 3em; width: auto; margin-right: 0.5em;float: left}
	.archiveLink{
		display:block;
		padding: 0.25em;
		overflow:hidden;
		cursor:pointer;
		padding: 0.5em 1em;
		border-bottom: 1px solid rgba(200,200,200,1);
	}
	.archiveLink:nth-of-type(even){
		background-color: #E1E9F6;
	}
	.showCurNews{
		float:right
	}

.newsBlock{
	padding: 2em;
	border: 1px solid rgba(200, 200, 200, 1);
	filter: drop-shadow(0 0 10em rgba(0, 0, 0, 0.1));
	background-color: white;
}
.newsBlock:first-of-type{
	margin-top: 0;
}
	.newsBlock h2{
		padding: 0;
		margin: 0;
		font-size: 2em;
	}
	.newsBlock h3{
		padding: 0;
		margin: 0;
		font-size: 1.5em;
		color: rgb(0,39,74);
	}
	.newsBlock p{
		line-height: 160%;
	}
	.newsImgFirst{
		float:right;
		margin: 0 0 1em 1em;
	}
	.newsBlock .newsImgContainer{
		text-align: center;
		margin: 1em 0;
		padding: 0 3em 0 0;
	}
	.newsBlock .newsImgContainer div{
		display: inline-block;
		background-color: rgb(255,242,0);
		margin: 3em -2em 3em 0;
	}
	.newsBlock .newsImgContainer img{
		height: 15em;
		margin: -2em 2em;
		width: auto;
	}

/*------------------------------HISTORY PAGE--------------------------------*/

#mainHistImg{
	float: right;
	shape-outside: url(../images/Henry-Ford.png);
	shape-image-threshold: 0.5;
	width: 40%;
	min-width: 400px;
	clear:right;
}
	#histContainer{
		position:relative;
		overflow:hidden;
	}
	#histContainer p {
		font-size: 0.9em;
		line-height: 1.6em;
	}
	#histSpacer{
		width: 0;
		float:right;
		height: 0;
	}
	
	
/*-------------------------------MEMBER BENEFITS PAGE -------------------------*/

.benefitsTable{
	width:  100%;
	max-width: 1100px;
	margin: 2em auto;
	border-collapse:collapse;
	font-size: 0.9em;
}

.benefitsTable td{padding: 5px;}
.benefitsTable td:nth-child(n+2){text-align:center;}
.benefitsTable tr:nth-child(-2n+6){background-color: #E1E9F6}
.benefitsTable tr.header{font-size: 1.1em; background-color: rgb(0,53,105); color: rgb(255,242,0);}
.benefitsTable tr.header2{
	font-size: 1.0em; 
/*	background-color: rgb(252,151,0); */
	color: rgb(0,65,132);
}

.benefits-container p, ul{
	font-size: 0.9em;
	line-height: 1.6em;
}

/*-------------------------------STAFF ROSTER / PRESIDENTS PAGE -------------------------*/

.tblRoster{
	width: 100%;
	margin: 0 auto 2em auto;
	border-collapse: collapse;
	border: 1px solid rgb(200, 200, 200);
	break-inside: avoid;
	page-break-inside: avoid;
	 -webkit-column-break-inside: avoid;
    column-break-inside: avoid;
}
.tblRoster tr:nth-child(even){background-color: #E1E9F6;}
.tblRoster td{padding: 5px;}
.tblRoster td:nth-child(2){text-align:right;}

.allRosterContainer{
	text-align: center;
}
.allRosterContainer .adHead{
	margin: 0.5em 0;
}
.rosterBlock{
	display: inline-block;
	width: 32%;
	min-width: 260px;
	padding: 2em 1em;
	margin: 0.5%;
	text-align:center;
	vertical-align: middle;
}
	.rosterBlock:nth-child(even){
		background-color: #E1E9F6;
	}
	.rosterBlock:nth-child(odd){
		background-color: rgba(252,151,0,0.2);
	}
	.rosterBlock div:nth-child(1){
		font-size: 1.4em;
		font-weight: 700;
		color: rgb(0,53,105);
	}

.roster-container {
	font-size: 0.9em;
	line-height: 160%;
	column-count: 2;
	column-gap: 2em;
	column-width: 500px;
}

/*-------------------------------CLUB FORMS PAGE ----------------------------------*/

.clubFormImg{
	float: right;
	shape-outside: url(../images/club-formsMask.png);
	shape-image-threshold: 0.5;
	width: 80%;
	max-width: 600px;
	clear:right;
}

.clubFormLink{
	display:block;
	text-align:left;
	padding: 0.5em;
	font-size: 1.4em;
	text-decoration:none;
	font-weight: 700;
}
.forms-container {
	font-size: 0.9em;
	line-height: 160%;
}


/*------------------------------REGIONAL CLUB DIRECTORY---------------------------*/

.club-directory-container{
	font-size: 0.9em;
	line-height: 160%;
}
.allStateClubContainer{
	text-align:center;
	height: 0;
	overflow:hidden;
	display:block;
	transition: height 0.5s;
/*	background-color: rgb(252,151,0);*/
	filter: drop-shadow(0 0 10em rgba(0, 0, 0, 0.1));
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1em;
}
.allStateClubContainer input {
	display: none;
}
.allStateClubContainer:has(:checked) {
	height: auto;
}
.clubContainer{
	flex: 1 1 auto;
	display:inline-block;
	font-size: 0.9rem;
	vertical-align:top;
	padding: 2rem 2rem 3.2rem 2rem;
	background-color: white;
	text-align: center;
	border: 1px solid rgba(200, 200, 200, 1);
	position:relative;
	max-width: 700px;
	margin: 0 auto;
}
	.clubContainer *{position: relative;}
	.clubContainer h3{color: rgb(0,79,163); margin-bottom: 0; text-align: center}
	.clubContainer h3 span{white-space: nowrap;}
	.clubContainer img{position:absolute; right: 2px; bottom: 2px; height: 3em; width: auto; z-index: 0; border: 1px solid rgb(200,200,200);}
	.clubContainer p{margin-top: 0; line-height: 140%; clear:left; font-weight: bold; color: rgb(252,151,0); font-size: 1.1rem; }

.flag{border: 1px solid rgb(170,170,170);}

.regClubDir .classifiedCategory{padding: 0.2rem 0.5em 0.1em 0.5em; overflow: hidden; border: 1px solid transparent; border-width: 1px 0; cursor:pointer;}
.regClubDir .classifiedCategory:hover{border-color: rgb(0,53,105);}
.regClubDir .classifiedCategory img{float:right; height: 1.9rem; margin: 0 2px;}

.stateAbbr{
	position: absolute;
	left: 2px;
	bottom: 2px;
	font-size: 2.3rem;
	font-weight: 900;
	background-color: rgb(0, 78, 165);
	color: rgb(255, 242, 0);
	height: 3rem;
	line-height: 2.8rem;
	padding: 0.2rem 0.5rem;
	border-radius: 0.3rem;
}

.club-state-label-container{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: rgba(231,235,254,1.00);
	margin-bottom: 1.7em;
}
.club-state-label-container label{
	display: block;
	white-space: nowrap;
	text-align: center;
	background-color: transparent;
	padding: 0.2rem 0.5em 0.1em 0.5em;
	border-left: 1px solid rgba(0,53,105,1.00);
	border-bottom: 1px solid rgba(0,53,105,1.00);
	flex: 1 1 0;
	transition: all 0.5s;
}
.club-state-label-container label:hover,
.club-state-label-container .selected-state{
	background-color: rgba(252,151,0,1.00);
	color: rgba(0,52,103,1.00);
}

/*--------------------------- GALLERY PAGE STYLES ----------------------------------*/

.BGMGalleryContainer{
	background-color: rgba(0,53,105,0.2);
	border-radius: 0;
}
.BGMGallerySelectorContainer{
	background-color: rgba(0,39,74, 1);
	
}
.BGMGalleryLrgImageCaption{
	background-color: rgba(252,151,0,0.8);
}

/*-------------------------- CLASSIC GRILLS -----------------------------------------*/

.grillSelectorContainer{
	margin: 0;
	padding: 0;
}
	.grillSelectorContainer form{
		display: inline-block;
		width: 15%;
		min-width: 8em;
		border-radius: 10px 10px 0 0;
		border: 1px solid rgba(0,39,74, 1);
		border-width: 1px 1px 0 1px;
		background-color: rgb(252,151,0);
		color: rgba(0,39,74, 1);
		text-align: center;
		position:relative;
		z-index: 1;
	}
	.grillSelectorContainer form input{
		width: 100%;
		border: none;
		background-color: transparent;
		font-weight: 700;
		padding: 0.5em;
		font-family: inherit;
		color: inherit;
	}
	.grillSelectorContainer form.selected{
		background-color: rgba(0,39,74, 1);
		color: rgb(252,151,0);
		z-index: 2;
	}
	@media only screen and (max-width: 600px){
		.grillSelectorContainer form {margin-right: -1.0em; font-size: 0.8em;}
	}
	@media only screen and (max-width: 450px){
		.grillSelectorContainer form {width: auto; min-width: 0;}
	}

/*----------------------------------V8 TIMES PAGE-----------------------------------*/

#carouselContainer{
	position: relative;
	padding-bottom: 42%;
	margin: 1em auto 5em auto;
   -webkit-perspective: 1000px;
   perspective: 1000px;
	text-align:center;
}
	#carouselContainer img{
		max-width:30%;
		height: auto;
		position: absolute;
		top: 50%;
		-moz-transform-origin: 0% 50% -100px;
		-webkit-transform-origin: 0% 50% -100px;
		transform-origin: 0% 50% -100px;
		transition: all 0.75s;
		border: 1px solid rgb(150,150,150);
		border-radius: 0.6em;
		box-shadow: 5px 5px 25px rgba(0,0,0,0.2);
	}
.carouselLeft{
	left: 15%;
	-webkit-transform: rotateY(30deg) translate3d(-50%,-50%,-100px);
	transform: rotateY(-20deg) translate3d(-50%,-50%,-100px);
	opacity: 0.75;
}
.carouselCenter{
	left: 50%;
	-webkit-transform: rotateY(0deg)  translate3d(-50%,-50%,-20px);
	transform: rotateZ(0deg)  translate3d(-50%,-50%,-20px);
	opacity: 1;
}
.carouselRight{
	left: 85%;
	-webkit-transform: rotateY(-30deg)  translate3d(-50%,-50%,-100px);
	transform: rotateY(20deg)  translate3d(-50%,-50%,-100px);
	opacity: 0.75;
}
.carouselQueued{
	left: 100%;
	-webkit-transform: rotateY(40deg)  translate3d(-50%,-50%,-100px);
	transform: rotateY(58deg)  translate3d(-50%,-50%,-100px);
	opacity: 0;
}
.carouselDone{
	left: 0%;
	-webkit-transform: rotateY(-40deg) translate3d(-50%,-50%,-100px);
	transform: rotateY(-58deg) translate3d(-50%,-50%,-100px);
	opacity: 0;
}
#carouselCaption{
	position:absolute;
	top: 103%;
	width: 100%;
	left: 0;
	text-align: center;
	transition: all 0.25s;
	opacity: 1;
	font-size: 0.7em;
}
	#carouselCaption #year{
		font-size: 1.7em; 
		font-weight: 700; 
		color: rgb(252,151,0);
	}
	#carouselCaption #issue{
		font-size: 2.0em; 
		font-weight: 900; 
		color: rgb(0,65,132);
		line-height: 100%;
	}

.carouselControls{
	position: absolute;
	top: 100%;
	right: 0;
	opacity: 0.2;
	z-index: 3;
}
.carouselStart{
	width: 0;
	height: 0;
	padding: 0;
	border-top: 0.6em solid transparent;
	border-left: 1em solid black;
	border-right: 0 solid transparent;
	border-bottom: 0.6em solid transparent;
	vertical-align:middle;
	background-color: transparent;
	margin: 0 0.2em;
}
.carouselStop{
	position:relative;
	width: 1em;
	height: 1em;
	vertical-align:middle;
	padding: 0;
	background-color: black;
	border:none;
	margin: 0 0.2em;
}
.carouselForward{
	position:relative;
	width: 0;
	height: 0;
	padding: 0;
	border-top: 0.6em solid transparent;
	border-left: 0.5em solid black;
	border-right: 0 solid transparent;
	border-bottom: 0.6em solid transparent;
	vertical-align:middle;
	background-color: transparent;
}
.carouselForward::after{
	content: "";
	position: absolute;
	display:block;
	left:  100%;
	top: 0;
	width: 0;
	height: 0;
	padding: 0;
	-o-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-top: 0.6em solid transparent;
	border-left: 0.5em solid black;
	border-right: 0 solid transparent;
	border-bottom: 0.6em solid transparent;
	vertical-align:middle;
	background-color: transparent;
}


/* --------------------------- VENDOR PAGE -----------------------------------*/

.vendor-disclaimer{
	background-color: white;
	border-radius: 10px;
	color: black;
	padding: 1em;
	margin: 0 0 2em 0;
	text-align: left;
}



/* ---------------------------- POLICY PAGES -------------------------------- */

.policies{
	padding: 5em 2em;
}

/*----------------------------GENERAL STYLES---------------------------------------*/

.breadCrumbs{
	display:block;
	position: absolute;
	left: 0;
	top: 0;
	padding: 0.5em 1em;
	white-space: nowrap;
	font-size: 0.8em;
	z-index: 1;
	width: 980px;
	max-width: 100%;
	text-align:left;
	margin: 0 auto;
}
	.breadCrumbs a{
		display:inline-block;
		color: rgb(150,150,150);
		font-weight: normal;
		margin-right: 1.6em;
		position: relative;
	}
	.breadCrumbs a[disabled]{pointer-events:none}
	.breadCrumbs a::after{
		content: "";
		display:block;
		position: absolute;
		right: -1em;
		top: 50%;
		transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		width: 0;
		height: 0;
		border-left: 5px solid rgb(150,150,150);
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
	}
	.breadCrumbs a:last-of-type::after{

	}
	.breadCrumbs a:hover{
		background-color: rgba(0,0,0,0.2);
	}

.adSubmit label.captchaContainer{
	margin-bottom: 10px;
	line-height: 34px;
}
.captchaContainer img{
	display:inline-block;
	vertical-align:middle;
}
.captchaContainer input{
	margin-top: 3px;
}

.detailsFrame{
	-moz-transition: height 0.5s;
	-webkit-transition: height 0.5s;
	-o-transition: height 0.5s;
	transition: height 0.5s;
	overflow:hidden;
	height: 0;
}
#detailsHolder{
	padding: 2em;
	margin: 0 3em;
	background-color: rgba(255,242,0,0.6);
	color: rgb(0, 34, 73);
}
	#detailsHolder ol li{margin: 0; padding: 1em 0 0 0;}

.form_blocker{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0);
	z-index: 2;
	background-image: url(../images/logo-lrg.png);
	background-position: center top;
	background-size: 70% auto;
	background-repeat: repeat-y;
}

.loginMsg{
	width: 800px;
	max-width: 100%;
	padding: 1em;
	border: 0.5em solid rgb(0,39,74);
	border-radius: 0.5em;
	font-size: 1.2em;
	font-weight: 700;
	text-align: center;
	line-height: 1em;
	margin: 1em auto 0 auto;
}
	.loginMsg p:first-child{
		color: red;
		font-size: 3em;
	}
	
.question, .answer{
	font-family: inherit;
	font-weight: 900;
}

.regFade{
	position:relative;
	opacity: 0.3;
	-webkit-opacity: 0.3;
	-moz-opacity: 0.3;
}

.tbl{display:table;}
.tr{display: table-row;}
.td{display: table-cell;}


.tbl_reports{
	margin: 20px auto;
	background-color: #DDDDDD;
	border-spacing: 0px 1px;
	width: 90%;
}
	.tbl_reports tr:nth-child(1) td {font-weight: bold; background-color: transparent; border-top: 1px solid #555555; border-bottom: 1px solid #555555;}
	.tbl_reports tr.summaryRows td {font-weight: bold; background-color: transparent; border-top: 1px solid #555555; border-bottom: 1px solid #555555;}
	.tbl_reports td{background-color:white; padding: 2px 20px;}
	.tbl_reports td:nth-child(2){text-align:right}
	.rptContainer{padding-bottom: 150px;}
	.rptContainer h1{font-size: 1.4em; background-color: #222255; color:white; padding: 5px 10px 2px 10px; font-weight: normal; margin: 1em auto; width: 90%;}
	.rptDateForm{text-align: left; width: 90%; padding: 10px; margin: 0 auto; background-color: #DDDDDD; border-radius: 5px;}



/* -------------------------- SHOPIFY HELPER STYLES ----------------------- */

.shopify-container{padding: 2em;}

/* ----- NOT REQUIRED IN 2025 SHOPIFY BUY BUTTON IMPLEMENTATION ---

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, input, textarea, button, select, .btn, th{
	font-family: Merriweather!important;
}

----*/

h2, .h2{text-transform: none; letter-spacing: normal;}
th{
	font-size: 1.2em;
	font-weight: 900!important;
}
.site-header{padding: 0;}
.site-nav{margin: 0; text-align: left;}

.box{
	background-color: transparent;
}
.collection-grid-item{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding-bottom: 0;
}
.collection-grid-item__overlay{
	background-size: auto;
	background-position: center center;
	
}
.collection-grid-item__title-wrapper::before{
	display:none;
}
.collection-grid-item__title{
	transform: none;
	top: 0.5em;
	color: rgb(0, 78, 165);
}
.collection-hero__image{
	display: none;
}
.collection-hero__title{
	position: relative;
	font-size: 2.8rem;
   font-weight: 900;
   color: rgb(0,65,132);
	top: 0;
	transform: none;
	text-align: left;
	margin-top: 1em;
}
.collection-hero__title-wrapper::before{
	display:none;
}
.grid__item.small--one-half.medium-up--one-quarter{
	float: none;
	display: inline-block;
	width: 23%;
   min-height: 17rem;
   min-width: 280px;
   border: 1px solid rgba(0,0,0,0.3);
   border-radius: 0.6rem;
   padding: 1rem;
   vertical-align: bottom;
   text-decoration: none;
   position: relative;
	margin: 10px;
	overflow: hidden;
}
.page-width{
	max-width: none;
}
.product-price__price{
   font-size: 2em;
   font-weight: 700;
   color: rgb(252,151,0);
}
.product-form__cart-submit{
	margin-left: auto;
	margin-right: auto;
}
.grid-view-item__meta .product-price__price{
	position: absolute;
   z-index: 2;
   top: auto;
   left: 0;
   right: 0;
   bottom: 0;
   text-align: right;
   padding: 0.2em;
   line-height: 1em;
   background-color: rgba(255,255,255,0.5);	
}
.grid{
	margin-left: 0;
	text-align: center;
}
.h4.grid-view-item__title{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    padding: 0.3em;
    font-size: 1.2em;
    font-weight: 600;
    color: white;
    background-color: rgb(0, 78, 165);	
}
.grid-view-item{
	margin: 0;
}
.grid-view-item__image{
	height: auto;
   width: auto;
   max-width: 80%!important;
   max-height: 120px!important;
   position: absolute;
   left: 50%;
   top: 50%!important;
   -o-transform: translate(-50%,-50%);
   -moz-transform: translate(-50%,-50%);
   -webkit-transform: translate(-50%,-50%);
   transform: translate(-50%,-50%);	
}
.grid-view-item__image-wrapper{
   position: absolute;
   left: 50%;
   top: 50%!important;
   -o-transform: translate(-50%,-50%);
   -moz-transform: translate(-50%,-50%);
   -webkit-transform: translate(-50%,-50%);
   transform: translate(-50%,-50%);	
}
.grid-view-item__link.grid-view-item__image-container{
	margin-bottom: -2em;
}
.section-header.text-center h1{
	text-align: left;
}
.section-header.text-center h2{
	text-align: left;
}
.shopify-section.index-section{
	padding-bottom: 0;
	padding-top: 1em;
}
.page-width.rich-text .grid div{
	text-align: left!important;
}
.page-width.rich-text .grid__item {
	padding-left: 0!important;
}
.rich-text__heading--large h2{
	font-size: 2.8rem;
    font-weight: 900;
    color: rgb(0,65,132);
}

/* ------------------- NEW SHOPIFY HELPERS - 2025 UPDATE ----------------------------------------- */

.buy-button-container {
	filter : drop-shadow(0 0 10em rgba(0, 0, 0, 0.1));
}
.product-categories-container{
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 2em;
	flex-wrap: wrap;
	filter: drop-shadow(0 0 10em rgba(0, 0, 0, 0.1));
}
.product-category {
	flex: 1 1 0;
	display: grid;
	grid-template-rows: 3.4em 1fr;
	grid-template-columns: 1fr;
	border: 1px solid rgba(0, 0, 0, 0.3);
	padding: 1em;
	min-height: 300px;
	min-width: 300px;
	cursor: pointer;
	background-color: white;
}
.product-category .header {
	width: 100%;
	color: rgb(0, 78, 165);
	text-align: center;
}
.product-category .header h3 {
	margin-bottom: 0;
}
.product-category .image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-category .image img {
	height: 150px;
}

/*-----------------------------------------------DEFAULT  OVERRIDES -----------------------------*/

.BGMGallerySmImgFrame{
	border: none;
	border-radius: 0;
	margin: 0 0.6em 0.6em 0.6em;
}
.BGMGallerySmImgFrame:first-of-type {
	margin: 0 0.6em 0.6em 0.6em;
}
.BGMGallerySelectorContainer{
	border-width: 0.6em 0;
}
@media only screen and (max-width: 1000px){
	.classImg{min-width: 0;}
}
@media only screen and (max-width: 1100px){
	.BGMGallerySmImgFrame {margin: 0 0.6em 0 0;}
	.BGMGallerySmImgFrame:first-of-type{margin: 0 0.6em 0 0;}
	.BGMGallerySelectorContainer{border-width: 0.6em 0.6em 0  0.6em; padding-bottom: 0.6em;}
}

div.resourceFix{
	text-align:center;
	background-image: url(../images/intro-back-light.jpg);
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
	div.resourceFix h1{text-align:left;}
	
div.dirAlphaHead{
	font-size: 1.6em;
	background-color: rgb(0,53,105);
	color: rgb(255,242,0);
	margin-top: 1em;
	margin-bottom: 0;
	padding: 0.1em 0.5em;
	text-align:left;
	border-radius: 0;
	box-shadow:none;
	display:none;
}

div.allCatEntries{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 1em;
	flex-wrap: wrap;
}
		div.allCatEntries:nth-of-type(4n) div.entryHolder div.dirEntryCard{
			background-color: rgba(200,220,255,0.7);
		}
	
	.dirEntryCatHead{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background-color: rgb(0,53,105);
		color: rgb(255,242,0);
		padding: 0.2em;
		font-size: 0.9em;
		font-weight: bold;
		border-radius: 10px 10px 0 0;
		text-align:center;
	}
	div.dirEntryCard{
		border: none;
		padding: 1em;
		color:black;
		border-radius: 10px;
		height: 100%;
	}
	div.entryHolder{
		flex: 1 1 400px;
		padding: 0;
		border: none;
		position: relative;
	}
	@media only screen and (max-width: 1200px){div.entryHolder{width: 48%}}
	@media only screen and (max-width: 700px){div.entryHolder{width: 98%}}
	
	.entryDetails{
		font-style: normal;
		line-height: 150%;
		color:black;
	}

.genericPageFix, .calFix, .upcomingPageFix, .FAQFix, .resourceFix, .contactPageFix, .storeFix {
	padding: 3rem 2rem;
}



.login{
	position: fixed;
	top: auto;
	bottom: 0px;
	right: 0px;
	width: 50px;
	height:  50px;
	background-color: white;
	opacity: 0;
	cursor: default;
	display:none;
}
	.error{
		position: fixed;
		top: auto;
		bottom: 50px;
		color:red;
	}
	.loginForm{
		position: fixed;
		top: auto;
		bottom: 50px;
	}

#SESContactMap{height: 100%;}

/*
.SESUpcomingEventContainer{
	margin: 2em;
	background-color: rgba(255,255,255,0.85);
	padding: 2em;
	border-radius: 0.6em;
}
	.upcomingPageFix *{
		position: relative;
		z-index: 2;
	}
	.upcomingPageFix:before{
		content:"";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-image: url(../images/truck-grill.jpg);
		background-position: bottom center;
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed;
		opacity: 0.3;
		z-index: 1;
	}
	.upcomingPageFix h1{
		text-align: center;
		background-color: rgba(255,242,0,0.8);
		padding: 0.2em;
		width: 100%;
		border-radius: 0.6rem 0.6rem 0 0;
		margin: 0 auto -2rem auto;
    	border: 0.6rem solid rgb(0,53,105);
	}
	.SESUpcomingEventHead{
		font-size: 2em;
	}
.SESEvtMapOnly {
	padding-top: 50%;
}
*/


.warning{
	background-color: transparent;
	color: #FF0000;
	border: none;
	box-shadow: none;
	text-align: left;
	padding-left: 0;
}

.BGM-CMS-form div.label>div input[type=file]{
	visibility: hidden;
	position: absolute;
	z-index: -1;
}
.BGM-CMS-form div.label>div>label.filePrompt{
	color: rgba(150,150,150);
	text-shadow: 0 0 3px white;
	height: 100%;
	font-size: 0.8em;
	line-height: 2.4em;
	letter-spacing: normal;
}

.BGM-CMS-form .file-op-container{
	float: right;
	display:block;
}
.BGM-CMS-form .file-op-container.disabled span{
	pointer-events:none;
	opacity: 0.2;
	color: black;
}
.BGM-CMS-form .file-operator{
	display: inline-block;
	font-family: 'Material Icons'; 
	font-size: 1.2em;
	margin: 0 5px 0 0;
	cursor: default;
}
.BGM-CMS-form .file-operator[title^="Detach"]{
	color: rgb(150,0,0);
}

#BGM_contactMap {
	padding-bottom: 0;
	height: 100%;
}
.BGM-login-container {
	left: auto;
/*	right: 0;*/
}
/*-------------------------STORE OVERRIDES ---------------------------*/

.printOrderContainer{
	background-color:white;
}
.printOrderContainer .storeForm {
	border:none;
}
.productBox a{
	width: 23%;
	height: 17rem;
	min-width: 280px;
	border: 1px solid rgba(0,0,0,0.3);
	border-radius: 0.6rem;
	padding: 1rem;
	vertical-align: bottom;
	text-decoration: none;
	overflow:hidden;
	position:relative;
}
	.productBox a div{
		max-width: none;
	}
	.productBox div.productTitle{
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		right: 0;
		bottom: auto;
		padding: 0.3em;
		font-size: 1em;
		font-weight: 600;
		color: white;
		background-color: rgb(0, 78, 165);
	}
	.productBox div.productPrice{
		position: absolute;
		z-index: 2;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		text-align:right;
		font-size: 2em;
		font-weight: 700;
		color: rgb(252,151,0);
		padding: 0.2em;
		line-height: 1em;
		background-color: rgba(255,255,255,0.5);
	}
	.productBox div.storeCatHead{
		font-weight: 700;
		color: rgb(0, 78, 165);
		font-size: 1.4rem;
	}
	.productBox a img{
		height: auto;
		width: auto;
		max-width: 80%;
		max-height: 120px;
		position: absolute;
		left: 50%;
		top: 50%;
		-o-transform: translate(-50%,-50%);
		-moz-transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}
	.productBox span{}
.storeForm.roundCorners{
	border:none;
}

/*------------------------------FORUM OVERRIDES ------------------------------*/

.bgm-forum-container table {font-size: 1em!important; font-family: inherit!important;}
.bgm-forum-container table img{vertical-align:middle;}
.bgm-forum-container table table td{padding: 0.5em; white-space: normal!important;}
.bgm-forum-container table.forum-container td:first-of-type{width: 20%;}
.bgm-forum-container table table table td{padding: 0.2em;}

.bgm-forum-container table font[size="1"] {font-size: 0.8em!important; font-family: inherit!important;}
.bgm-forum-container table font[size="2"] {font-size: 1em!important; font-family: inherit!important;}

.bgm-forum-container table .forumlink{font-size: inherit; font-family: inherit;}

.bgm-forum-container [name=MessageCopy],
.bgm-forum-container [name=TopicTitle]{
	width: 100%;
}
.msgNavLinks-BGM a{
	display: inline-block;
	vertical-align:middle;
	margin: 2px 0;
	padding: 2px;
	border: none;
	background-color: rgb(100,100,150);
	color: white!important;
	font-weight: bold!important;
	text-transform: uppercase;
	border-radius: 2px;
	font-size: 9px;
}

.tblReply-BGM{
	width: 100%;
}
.tblReply-BGM textarea{
	font-size: inherit!important;
	font-family: inherit!important;
	width: 100%;
}
.tblReply-BGM figure,
.tblTopics-BGM figure{display:inline-block;margin: 0.2em;text-align:center; vertical-align: top;}
.tblReply-BGM figcaption,
.tblTopics-BGM figcaption{text-align:center; margin-top: 0.2em;}

.bgm-image-display-container{
	text-align: left;
}
.bgm-image-display-container img{
	display: inline-block;
	height: 7.5em;
	width: auto;
	margin: 0.5em;
	cursor: zoom-in;
}
.bgm-image-display-container a{
	text-decoration: none;
}

.BGM-multiImg-input-container>figure:nth-child(n + 6){
	display:none;
}
.BGM-multiImg-input{
	padding: 0;
	margin: 0.5em!important;
	text-align: center;
	width: 8em;
	display: inline-block;
	vertical-align: bottom!important;
	position: relative;
}
.BGM-multiImg-input>span{
	font-family: 'Material icons';
	font-size: 5em;
	color: rgb(200,200,200);
	line-height: 0.8em;
}
.BGM-multiImg-input>div{
	position: absolute;
	top: 0em;
	right: 0em;
	width: 1em;
	height: 1em;
	background-color: red;
	font-family: 'Material icons';
}
.BGM-multiImg-input>div:after{
	content: 'close';
	color: white;
}
.BGM-multiImg-input img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: bottom;
}
.BGM-multiImg-input-label{
	display: inline-block;
	margin: 0 0 5px 0;
	overflow: hidden;
	padding: 2px 0.5em;
	position: relative;
	border-radius: 2px;
	font-size: 0.7em;
}
.BGM-multiImg-input-label.button{
	border: 1px solid rgb(169, 169, 169);
	background-image: linear-gradient(0deg, rgb(200,200,200),white);
	font-size: 1em;
}

.BGM-multiImg-input input{
	position: fixed;
	top: -5em;
}



.efv8-file-delete{
	font-family: 'Material icons';
	float: right;
	display: inline-block;
	margin: 0 0.2em;
	font-size: 1.3em;
	color: rgb(200,200,200);
	transition: all 0.5s;
}
.efv8-file-delete:hover{
	color: rgb(200,0,0);
}

.BGM-news-expanded-image{
	height: 100%;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.BGM-news-screen{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.8);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 1000000;
	-webkit-animation: BGMfadein;
	animation: BGMfadein;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}
@-webkit-keyframes BGMfadein{
	0%{opacity: 0; -webkit-transform: scale(0.5); transform: scale(0.5);}
	100%{opacity: 1; -webkit-transform: scale(1); transform: scale(1);}
}

@keyframes BGMfadein{
	0%{opacity: 0; -webkit-transform: scale(0.5); transform: scale(0.5);}
	100%{opacity: 1; -webkit-transform: scale(1); transform: scale(1);}
}



/* --------------------------- MEDIA QUERIES ----------------------------------- */



@media only screen and (orientation: portrait), only screen and (max-width: 900px){
	#vidContainer{display:none}
}


@media only screen and (max-width: 1580px) {
	.eventTitle{min-width: 15rem;}
}


@media only screen and (max-width: 1400px) {
	html{font-size: 80%}
}



@media only screen and (max-width: 1000px){
	.classImg{float: none; display: block; margin: 1em auto; width: auto; max-width: 100%; border:none;}
	.adDetails{width: auto; max-width: 100%;}	
}

@media only screen and (max-width: 950px) {
	.anniversary{font-size: 0.6em;}
}

@media only screen and (max-width: 900px) {
	.v8Times>div:first-child div:first-child{display:none}
	.efv8Login>div{font-size:2rem;}
	 .efv8Login ul{padding-left: 2em;}
	 .efv8Login{padding: 0.5rem 1rem 0.5rem 1rem;}
	.anniversary {
		display: block;
		overflow: hidden;
	}
	.anniversary .right {
		width: 100%;
		max-width: 300px;
		margin: 0 auto 4em auto;
		aspect-ratio: auto;
	}
	.anniversary .right img:nth-of-type(1) {
		position: relative;
		width: 100%;
		height: auto;
	}
}


@media screen and (max-aspect-ratio: 1), 
screen and (orientation: portrait),
screen and (max-width: 800px){
	#bgm_slideShowContainer{height: 200px;}
	.login{display:none;}
	.FAQFix{	margin: 0px 0px;}
	.question{margin-right: 0px;}
	.respNavContainer{position: fixed; padding-top: 45px;transform: translateX(-105%); transition: transform 0.5s;}
	.respNavContainer:has(#navFlag:checked) {transform: translateX(0)}
	.respNavContainer a:has(img.logo-nav) {display: none;}
	.mobileNavControl{display:block;	}
	.page-container{border-left: none;}
	.v8Times{font-size: 90%}
	.genericPageFix, .calFix, .upcomingPageFix, .FAQFix, .resourceFix, .contactPageFix, .storeFix {padding: 2em}
	.persistent-join-tab{
		position: absolute;
		top: auto;
		left: auto;
		bottom: 100%;
		right: 0;
		transform: none;
		border-width: 1px 0 0 1px;
		border-radius: 0.4em 0 0 0;
		z-index: 1;
	}
	.site-container {
		display: flex;
		flex-direction: column;
	}
	.page-container{
		padding-top: 45px; 
		overflow: visible;
	}
	.ad-switch {
		position: relative;
		top: 0;
		right: 0;
		left: auto;
		transform: translateY(calc(1px - 100%));
		border-radius: 0 0.4em 0 0;
	}
	.ad-switch::before{
		display: block;
		transform-origin: center;
		transform: rotate(90deg);
	}
	.ad-column{
		position: sticky;
		bottom: 0;
	}
	.ad-slider{
		width: 100%;
		height: auto;
		container-type: initial;
		padding: 0.5em;
		overflow: hidden;
		display: flex;
		flex-wrap: wrap;
		gap: 0.5em;
	}
	.ad-intro {
		height: auto;
		line-height: normal;
	}
	.ad-intro > div:nth-of-type(2) {
		margin-top: 0px;
	}
	.ad-column:has(#ad_slider_flag:checked) .ad-slider {
		height: 0;
		padding: 0;
	}
	.ad-container {
		container-type: initial;
		flex: 1 1 0;
	}
	.ad {
		flex: 1 1 0;
		font-size: 1rem;
		position: relative;
		margin-bottom: 0;
		top: 0;
	}
}

@media only screen and (max-width: 700px) {
	.adMgrLinks{display:block; float: none; text-align:center; background-color: rgba(0,53,105,0.2); padding: 5px; margin: 0.5em 0;}
	.adMgrLinks br{display:none;}
	.adMgrLinks a{margin: 0 3%;}
	.tblTopics-BGM td:nth-of-type(1),
	.tblTopics-BGM td:nth-of-type(2),
	.tblTopics-BGM td:nth-of-type(4){
		display:none;
	}
	form .tblTopics-BGM td:nth-of-type(1),
	form .tblTopics-BGM td:nth-of-type(2){
		display: table-cell;
	}
	.ad-container:nth-of-type(n + 6){
		display: none;
	}
}



@media only screen and (max-width: 650px) {
	.section.upcomingEvents h1, .section.news h1, .section.map h1{
		width: 100%; border-radius: 0; box-shadow:none; margin: 0; line-height: 150%; padding: 0 5px; border: 1px solid rgba(0,53,105,0.2); border-width: 1px 0; font-size: 1.8rem;}
	.section.one{padding: 2rem;}
	.section.map{padding-top: 35px; border-top:none;}
	.section.upcomingEvents, .section.news{padding: 0; border-bottom: 1px solid transparent; border-top:none; background-image:none;}
	.articleContainer{border-radius: 0; margin-bottom: 0; border: none; /*border-bottom: 1px solid rgba(0,53,105,0.5);*/}
	.articleContainer:nth-of-type(odd){background-color: rgba(255,255,255,1);}
	.articleContainer:nth-of-type(even){background-color: rgba(255,250,200,1);}
	.articleContainer:nth-of-type(even) .newsBody:after {background: linear-gradient(90deg, rgba(255,250,200,0), rgba(255,250,200,1) 70%);}
	.articleContainer:before{display:none}
	.section.upcomingEvents:before, .section.news:before{display:none}
	.moreLink{margin: 5px auto;}
	.section.upcomingEvents{border-top: none}
	h1{font-size: 2rem;}
	h2{font-size: 1.4rem;}
	.merchandise, .membership{float:right;text-align:right; clear:right;}
}

@media only screen and (max-width: 600px) {
	.classifiedList .tr>.td:nth-of-type(2){display:none;}
	.classifiedList .td:nth-of-type(6){display:none;}
	.adTrail span, .adTrail a, .adTrail .leftArrow{display:none;}
	.section.one .blue-ford{display:block; float:none; width: auto; margin: 0 auto; text-align:right;}
	.section.one .blue-ford img:nth-of-type(-n+17){display:none;}
	.section.one .blue-ford img:nth-of-type(18){display:block; height: auto; max-width: 100%; margin: 0 auto; float:none;}
	.newsImgFirst {float: none; display:block;  margin: 1em auto;}
	.homeFirstImage{float:none; display:block; margin: 1em auto -20% auto; max-width: 100%; min-width: 0; width: auto;}
}

@media only screen and (max-width: 550px){
	.anniversary{text-align:center;background-image: none;}
	.anniversary img{
		width: 90%;
		position:relative;
		margin: 2em auto 0 auto;
	}
	.anniversary div:nth-of-type(1){
		position: relative;
		right: 0;
		top: 0;
		overflow: hidden;
	}
		.anniversary div:nth-of-type(1) span{
			display:inline;
			margin-bottom: 0.5em;
		}

	.anniversary div:nth-of-type(2){
		position: relative;
		bottom: 0;
		left: 0;
	}
	.anniversary div:nth-of-type(3){display:none;}
	.ad-container:nth-of-type(n + 5){
		display: none;
	}
	
}


@media only screen and (max-width: 500px){
	#detailsHolder{margin: 0;}
	#detailsHolder ol{margin: 0; padding: 0 1em;}
	#detailsHolder ol li{margin: 0; padding: 1em 0 0 0;}
	.footer {
		display: grid;
		grid-template-rows: auto auto;
		grid-template-columns: 1fr;
	}
	.footer .footer-logo-container {
		grid-row: 1 / 3;
		grid-column: 1;
	}
	.footer .membership {
		grid-row: 1;
		grid-column: 2;
		white-space: nowrap;
		text-align: right;
	}
	.footer .merchandise {
		grid-row: 2;
		grid-column: 2;
		white-space: nowrap;
		text-align: right;
	}
}

@media only screen and (max-width: 450px) {  
	/*body{	font-size: 75%;}*/
	.efv8Login ul li:nth-of-type(n+2){display:none;}
	.adDetails .adPrice{font-size: 2em}
}

@media only screen and (max-width: 410px) {  
	.ad-container:nth-of-type(n + 4){
		display: none;
	}
}

@media only screen and (max-width: 400px) {  
	.classifiedList .td:nth-of-type(3){display:none;}
	.merchandise, .membership{float:none;text-align:center; clear:right; margin: 0 auto;}
	blockquote{margin: 0.5em;}
	#mainHistImg{width: 100%;min-width: 0px;}
	.benefitsTable{font-size: 0.8em;}
	.genericPageFix, .calFix, .upcomingPageFix, .FAQFix, .resourceFix, .contactPageFix, .section.one, .storeFix {padding: 2em 1em;}
	.bgm-forum-container table {font-size: 0.9em!important;}
	.bgm-forum-container table table td{padding:1px;}
}


@media only screen and (max-width: 370px) {  
	.efv8Login form input{margin-right: 0}
}

/*
@media only screen and (max-height: 1100px){
	.section.map{height: 1000px;}
}
@media only screen and (max-height: 900px){
	.section.map{height: 800px;}
}
@media only screen and (max-height: 600px){
	.section.map{height: 600px;}
}
@media only screen and (max-height: 500px){
	.section.map{height: 450px;}
}
*/
/*--------------------------------------VIEWPORT UNITS FIX FOR iOS<8 ---------------------
html[oldios=true]{height: auto}
html[oldios=true]	.page-container{min-height: 400px;}
html[oldios=true]	.section{min-height: 400px;}
html[oldios=true]	.section.one p{line-height: 150%;}
html[oldios=true]	.section.one img{height: 8px;}
html[oldios=true]	.section.map{height: 500px;}
html[oldios=true]	.wrapper{min-height: 700px;}
----------------------------------------------------------------------------------------*/


/*-----------------PRINT STYLES----------------------------------*/
@media only print{
	.noPrint, #noPrint {display:none;}
	.page-container{border:none;}
	.site-container{width: 1000px}
	.membership, .merchandise{color:black;}
	.section{page-break-before: always;}
	.section.map{display:none}
	.section.news,
	.section.upcomingEvents{
		border:none;
	}
	.section.upcomingEvents h1, 
	.section.news h1{
		position:relative; top: 0; left: 0; transform: none; -webkit-transform: none; -moz-transform: none; -o-transform: none; color:black; border:none; float:left; box-shadow: none;}
	*{min-height: 0; max-height: none;}
	#vidContainer{display:none;}
}