@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");*/

*,*:after,*:before{
    box-sizing:        border-box;
	-moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
}

html{
	padding: 0px;
	margin: 0px;
	border: none;
	background-color:white;
}			
body{
	padding: 0px;
	margin: 0px;
	border: none;
	font-family: Merriweather;
	font-size: 100%;
}

a{color: rgb(0,53,105)}

blockquote{line-height: 150%;}

h1{margin: 0; font-size: 2.8rem; font-weight: 900; color: rgb(0,65,132)}
h2{margin: 0rem 0rem 0.5rem 0rem; font-size: 1.8rem; font-weight: 400; color: rgb(159,97,0)}
h3{margin: 0rem 0rem 0.5rem 0rem; font-size: 1.6rem}

img {vertical-align:top;}

#page{
	/*
	z-index: 3;	
	-o-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	left: 0px;
	top: 0px;
	transition: left 0.5s;
	-moz-transition: left 0.5s;
	-webkit-transition: left 0.5s;
	-o-transition: left 0.5s;*/
	position: relative;
	padding: 0;
	box-shadow: -5px 0px 15px rgba(0,0,0,0.4);
	border-left: 17rem solid rgb(30,67,130);
	background-color:white;
	min-height: 100vh;/**/
}

.wrapper{
	width: 100%;
/*	min-height: 150%;*/
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow-x: hidden;
	overflow-y: visible;
	background-color: rgb(0, 34, 73); /*---------- MOBILE NAV BACKGROUND COLOR -------------*/
}


/*------------------------------ ANIMATED CSS ONLY NAV -----------------------------------------*/
	.respNavContainer{
		position: fixed;
		height: 100%;
		width: 17rem;
		z-index:30;
		background-color: transparent; /*rgb(30,67,130);*/
		font-size: 1rem;
		box-shadow: 5px 0px 10px rgba(0,0,0,0.5);
		padding: 1em 0;
		font-weight: 300;
		border:none;
		border: 1px solid rgb(0,53,105);
		margin: 0;
		padding: 0;
	}
	.respNavContainer img{
		max-width: 100%;
		padding: 2vh 1em 0.5vh 1em;
		height: auto;
		width: auto;
		max-height: 35vh;
		margin: 0 auto;
	}
	.respNavContainer ul.nav{
		display:inline-block;
		position: relative;
		padding: 0;
		margin: 0 auto;
		clear: left;
	}
		.respNavContainer ul.nav>li{
			display: block;
			color: white;
			margin: 0;
			text-align: left;
			position: relative;
			vertical-align: middle;
		}
		.respNavContainer ul.nav a{   /*---------------PRIMARY NAV BUTTONS ------------------------*/
			display:block;
			padding: 0 1em;
			white-space: nowrap;
			height: 4vh;
			line-height: 4vh;
			vertical-align: middle;
			color: white;
			font-weight: 700;
			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.nav li:hover > a, 
		.respNavContainer ul.nav li.selected > a{
			background-color: rgba(0,0,0,0.2);
			color: rgba(255,242,0,1);
		}
		.respNavContainer ul.nav>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.nav>li:hover>ul{
				visibility:visible;
				opacity: 0.95;
				
			}
			.respNavContainer ul.nav>li ul>li {
				display:block;
				margin: 0px;
				white-space: nowrap;
				position: relative;
				min-width: 100%;
				line-height: 1.2rem;
			}
				.respNavContainer ul.nav>li ul>li a{   /*-------- FLYOUT NAV BUTTONS ---------------*/
					display:block;
					width: auto;
					height: auto;
					padding: 5px 1em;
					line-height: inherit;
				}
					.respNavContainer ul.nav>li ul>li a:hover, .respNavContainer ul.nav>li ul>li a.selected{
						background-color: rgba(0,0,0,0.3);	
					}
		.respNavContainer ul.nav>li ul>li:hover>ul{
			visibility:visible;
			opacity: 0.95;
		}
	
	
	.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.nav li{
			display: block;
			position: relative;
		}
		.mobileNav ul.nav>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.nav 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.nav li.clicked>ul{
				max-height: 1000px;
				/*display:block;
				height: auto;*/
			}
		.mobileNav ul.nav>li a:hover{
			background-color: rgba(255,255,255,0.2);
		}
			
		.mobileNav ul.nav>li ul>li>a{
			border-bottom: 1px solid rgba(0,0,0,0.8);
		}
		.mobileNav ul.nav>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.nav>li>ul>li>a{
					padding-left: 20px;
				}
				.mobileNav ul.nav>li>ul>li>ul>li>a{
					padding-left: 40px;
				}
				.mobileNav ul.nav>li>ul>li>ul>li>ul>li>a{
					padding-left: 60px;
				}
				.mobileNav ul.nav>li>ul>li>ul>li>ul>li>ul>li>a{
					padding-left: 80px;
				}
				.mobileNav ul.nav>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;
			/*background-color: rgba(255,255,255,0.5);
			border: 1px solid rgba(255,255,255,0.2);*/
			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;
		clear: both;
		min-width: 300px;
	}
		.footerContainer h3{
			font-size: 1.6em;
		}
		.footer{
			min-height: 50px;
			text-align: left;
			padding: 2rem;
			position: relative;
			overflow:hidden;
		}
		.copyright{
			padding: 1rem;
			background-color: rgb(255,152,0);
			color: white;
			font-size: 0.8rem;
			text-align:center;
			line-height: 1.8em;
		}
.copyright a{
	color: white;
	text-decoration: none;
}
		.membership, .membership p{
			color: rgb(255,242,0)!important;
		}
		.merchandise{
			float:right;
			text-align:right;
			color: rgb(255,242,0)!important;
		}
		.merchandise p{
			color: rgb(255,242,0)!important;
		}
		.footer a{
			color:white;
			text-decoration:none;
			font-weight: 700;
		}
		.footer a:hover{
			text-decoration: underline;
		}
		.footer img{
			position: absolute;
			max-height:  80%;
			width: auto;
			top: 50%;
			left: 50%;
			-o-transform: translate(-50%,-50%);
			-moz-transform: translate(-50%,-50%);
			-webkit-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
			margin-bottom: -100px;
		}

/*------MEMBER LOGIN STYLE --------*/

form.memLogin{
	position: absolute;
	top: 85%;
	right: 10px;
	background-color: white;
	width: 300px;
	max-width: 100%;
	margin: 0px;
	padding: 15px;
	text-align:left;
	line-height: 250%;
	border: 1px solid black;
	font-size: 0.8em;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
	border-radius: 8px;
	display:none;
	-o-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	-o-opacity: 0;
	-moz-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0;
}
	form.memLogin a{
		color: blue;
		text-decoration: underline;
	}
	form.memLogin .closeLoginWindow{
		float:right; 
		width: 1.5em;
		height: 1.5em;
		line-height: 12px;
		border-radius: 100%;
		border: 3px solid red;
		text-align:center;
		color: red;
		cursor:pointer;
		position: relative;	
			-o-transform: rotate(45deg);
			-moz-transform: rotate(45deg);
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
	}
		form.memLogin .closeLoginWindow:after{
			content: "";
			display:block;
			position: absolute;
			top: 50%;
			left: 50%;
			border: none;
			margin: 0;
			padding: 0;
			width: 3px;
			height: 1.4em;
			background-color: red;
			-o-transform: translate(-50%,-50%);
			-moz-transform: translate(-50%,-50%);
			-webkit-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
		}
	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 -----------------------------------------*/

#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;
}

	.section h1{
		padding: 0;
		margin: 0;
		text-align:left;
		line-height: 110%;
	}
	.section  h2{
		padding: 0 2rem;
		margin: 0 -2rem 2rem -2rem;
		text-align:left;
	}
	.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;
	}
		.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%);
		}
	.section .moreLink{
		display: block;
		text-align: center;
		font-size: 1.6rem;
		font-weight: bold;
		width: 8rem;
		margin: 2rem auto;
		text-decoration: none;
		background-color: rgba(255,255,255,0.8);
		padding: 5px 0;
		background-color: rgb(30,67,130);
		color:white;
		position:relative;
	}
		.section .moreLink:after{
			content: "";
			display:inline-block;
			width: 0;
			height: 0;
			border-left: 0.6rem solid white;
			border-top: 0.6rem solid transparent;
			border-bottom: 0.6rem solid transparent;
			vertical-align: baseline;
			margin-left: 0.5rem;
			/*position: absolute;
			left: 105%;
			top: 50%;
			-o-transform: translateY(-50%);
			-moz-transform: translateY(-50%);
			-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
			border-left: 1rem solid rgb(30,67,130);*/
		}
		
		
.efv8Login{
	display:block;
	position: relative;
	z-index: 3;
	padding: 0.5rem 2rem 0.5rem 2rem;
	background-color: rgb(252,151,0);
	margin: 0;
	border-style: solid;
	border-color: rgb(0,39,74);
	border-width: 0.6rem 0;
	color: rgb(0,65,132);
	font-weight: 700;
	-o-transition: top 0.5s ease-out;
	-moz-transition: top 0.5s ease-out;
	-website-transition: top 0.5s ease-out;
	transition: top 0.5s ease-in-out;
	
}
	.efv8Login>div{
		color: rgb(255,242,0);
		font-size: 2.6rem;
		text-transform: capitalize;
		font-weight:  400;
		height: 2.8rem;
		vertical-align:middle;
		margin: 0;
		display:inline-block;
	}
	.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);
		border: 1px solid rgb(159,97,0);
   	border-radius: 5px;
   	width: auto;
    	display: inline-block;
		padding: 2px 15px 2px 15px;
    	font-size: 1em;
		line-height: 1.5em;
		text-align:center;
		height: auto;
		cursor: default;
		font-weight: 700;
		font-family: inherit;
	}
	.efv8Login .userLogin{
		font-size: 0.9rem;
		font-weight: 700;
		text-align: right;
		position: absolute;
		top: 50%;
		right: 2em;
		-o-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		line-height: 210%;
	}
		.efv8Login .userLogin p{
			color: rgb(0,39,74);
			margin: 0.5rem 0 0 0;
			line-height: normal;
		}
		.efv8Login .userLogin a {
		 color: rgb(255,242,0);
		 font-weight: 900;
		 text-decoration: none;
		}
	
/*
	.efv8Login form{
		font-size: 0.9rem;
		color: rgb(159,97,0);
		text-align: right;
		position: absolute;
		top: 50%;
		right: 2em;
		-o-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		line-height: 210%;
	}
		.efv8Login form input{
			border: 1px solid rgb(159,97,0);
			border-radius: 5px;
			width: 15rem;
			margin-right: 1rem;
		}
		.efv8Login form input[type=submit]{
			width: 5rem;
			color: white;
			background-color: rgb(0,65,132)
		}
		.efv8Login form p{
			color: rgb(0,39,74);
			margin: 0.5rem 0 0 0;
			line-height: normal;
		}
		.efv8Login form a{
			color: rgb(255,242,0);
			font-weight: 900;
			text-decoration:none;
		}
				.efv8Login form a:hover{
					text-decoration: underline;
				}
	.efv8Login form.memberLogout{
		position:relative;
		top: 0;
		left: 0;
		-o-transform: none;
		-moz-transform: none;
		-webkit-transform: none;
		transform: none;
		text-align:left;
		padding-top: 0.2rem;
	}
			.efv8Login form.memberLogout input{
				float:right;
			}
			.efv8Login form.memberLogout p{
				margin: 0 1em;
			}
			.efv8Login form.memberLogout h3{
				margin: 0;
				line-height: 1em;
			}
*/

.section.one{
	padding: 5rem 2rem 5rem 2rem;
	background-color: white;
}
	.section.one p{
		line-height: 200%;
		font-size: 1rem;
	}
	.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/ford-on-white-full.png);
		shape-image-threshold: 0.5;
		width: 40%;
		min-width: 400px;
		max-width: 80%;
		clear:right;
	}



.section.upcomingEvents{
	text-align:center;
	border-top: 0.6rem solid rgb(0,39,74);
	padding: 0rem 2rem 5rem 2rem;
		background-image: url(../images/upcoming-back-2.jpg);
		background-size: cover;
		background-position: top center;
		background-attachment: fixed;
		background-repeat: no-repeat;
}
	.section.upcomingEvents h1{
		font-size: 2.4rem;
		width: 80%;
		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 .upcoming>img:first-child{
		position: absolute;
		bottom: 5rem;
		right: 2rem;
		width: 13rem;
		height: auto;
	}

	.events{
		background-color: transparent; /*rgba(255,255,255,0.85);*/
		/*box-shadow: 6px 6px 12px rgba(0,0,0,0.3);*/
		margin: 0 auto;
		width: 80%;
		position:relative;
		display: table;
		border-collapse: collapse;
		border-spacing: 0px;
	}
	.eventRow{
		display: table-row;
	}
	.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{
		display: table-cell;
		padding: 2rem 1rem;
		text-align:left;
		vertical-align:top;
		overflow: hidden;
		border: none;
	}
	.eventRow>div:nth-of-type(3){
		min-width: 250px;
	}
	.eventRow>div>span{
		display:block;
		margin: 0; 
		padding: 0;
		font-weight: 700;
	}
	
	.eventDate{
		min-width: 15rem;
		text-align:left;
	}
	.eventDate>span{
		line-height: 0.8em;
	}
	.eventDate>span:first-child{
		float:left;
		font-size: 5rem;
		font-weight: 900;
		color: rgb(252,151,0);
		margin-right: 0.5rem;
	}
	.eventDate>span:nth-child(2){
		margin-top: 0.5rem;
		font-size: 2.4rem;
		color: rgb(0,79,163);
		text-transform: uppercase;
	}
	.eventDate>span:nth-child(3){
		font-size: 1.9rem;
		color: rgb(110,69,0);
		margin-top: 5px;
	}

	.eventTitle{
		min-width: 20rem;/**/
	}
	.eventTitle>span:first-child{
		font-size: 1.2rem;
		color: rgb(60,0,107);
		line-height: 130%;
	}
	.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%;
	}



.v8Times{
	color: rgb(255,242,0);
		background-color: rgb(252,151,0);
	font-weight: 400;
	position: relative;
	border-style: solid;
	border-color: rgb(252,151,0);
	border-width: 0 0 0.6em 0;
	border-top: 0.6em solid rgb(0,39,74);
	overflow: hidden;
}
	.v8Times>div:first-child{
		padding-left: 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);
	text-align:right;
	padding: 1em;
	background-image: url(../images/anniversary-back.jpg);
	background-position: -15% top;
	background-size: 70% auto;
	background-repeat: no-repeat;
	position: relative;
	border-top: 0.6em solid rgb(0,39,74);
}
	.anniversary img{
		width: 45%;
	}
	.anniversary div:nth-of-type(1){
		position: absolute;
		right: 50%;
		top: 15%;
		color: yellow;
		font-size: 3em;
		font-weight: 900;
		text-align: center;
		line-height: 1em;
	}
		.anniversary div:nth-of-type(1) span{
			font-size: 2em;
			display:block;
			text-shadow: 0 0 25px black;
			line-height:  1em;
			margin-top: -0.1em;
		}
	
	.anniversary div:nth-of-type(2){
		position: absolute;
		bottom: 1em;
		left: 1em;
		color: white;
		font-size: 2em;
		font-weight: 900;
		font-style: italic;
	}
		.anniversary div:nth-of-type(2) span{
			font-size: 2em;
			color: rgb(252,151,0);
		}
	.anniversary div:nth-of-type(3){
		position: absolute;
		bottom: 1.5em;
		right: 1.5em;
		height: 35%;
	}
		.anniversary div:nth-of-type(3) img{
			height: 100%;
			width: auto;
		}
	

.section.news{
	border-top: 0.6rem solid rgb(0,39,74);
	padding: 0rem 2rem 5rem 2rem;
	font-size: 1rem;
		background-image: url(../images/news-back-3.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: top center;
		background-attachment: fixed;
}
	.section.news h1{
		font-size: 2.4rem;
		width: 80%;
		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.news h3{
		font-size: 1.6rem;
		color: rgb(60,0,107);
		margin: 0;
		padding: 0;
		line-height: 130%;
	}
	.section.news h4{
		font-size: 1.1rem;
		color: rgb(255,152,0);
		padding: 0;
		margin: 0 0 0.5rem 0;
		line-height: 130%;
	}
	.section.news>img:first-child{
		position: absolute;
		bottom: 5rem;
		right: 2rem;
		width: 13rem;
		height: auto;
	}
	.newsContainer{
	/*
		-o-columns: 3 25rem;
		-moz-columns: 3 25rem;
		-webkit-columns: 3 25rem;
		columns: 3 25rem;
		-webkit-column-gap: 2remrem;
		-moz-column-gap: 2rem;
		column-gap: 2rem;
	*/
		padding: 0;
		position:relative;
		margin-right: 0rem;
		line-height: 160%;
	}
	.newsOne, .newsTwo{
		position: absolute;
		top: 0;
		left: 0;
		width: 49%;
		height: 100%;
		background-color: rgba(255,255,255,1);
		background-clip: padding-box;
		box-shadow: 6px 6px 12px rgba(0,0,0,0.3);
		min-width: 32rem;
		z-index: -1;
	}
	.newsTwo{
		left: auto;
		right: 0;
	}
	.articleContainer{
		position: relative;
		margin-bottom: 1rem;
		-webkit-column-break-inside: avoid; 
		page-break-inside: avoid; 
		break-inside: avoid;
			padding:2rem;
			border-radius: 0.5rem;
			border: 1px solid transparent;
			background-clip: padding-box;
			background-color: white;
			border: 1px solid rgb(200,200,200);
	}
	.newsBody{
		max-height: 20.95rem;
		overflow:hidden;
		position: relative;
		line-height: 1.5rem;
	}
	.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: 1.5em;
		top: 19.45rem;
		left: 0;
		font-weight: 900;
		padding: 0;
		margin: 0;
		z-index: 10;
	}
	.newsBody p{
		margin: 1.5rem 0 0 0;
		line-height: 1.5rem;
	}


.section.map{
	height: 100vh;
	width: auto;
	box-shadow: none;
	border-top: 0.6rem solid rgb(0,39,74);
	position: relative;
	background-clip: padding-box;
}
	.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;
	}



/*---------------------------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:200%;}	
	
.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%;
}
	.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 -------------------------------------*/

.allNewsContainer{
	display: table-cell;
	vertical-align:top;
}
.allArchiveContainer{
	display:table-cell;
	vertical-align: top;
	padding: 0 0 0 1em;
	border-left: 2px solid rgb(252,151,0);
	width: 33%;
}
	.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;
	}
	.archiveLink:nth-of-type(even){background-color: #E1E9F6}
	.showCurNews{float:right}
.newsBlock{
	overflow:hidden;
	clear:both;
	margin-top: 2em;
	border-top: 2px solid rgb(0,39,74);
	padding: 1em;
}
	.newsBlock:first-of-type{margin-top: 0; border-top: none;}
	.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;
	}
	#histSpacer{
		width: 0;
		float:right;
		height: 0;
	}
	
	
/*-------------------------------MEMBER BENEFITS PAGE -------------------------*/

.benefitsTable{
	width:  100%;
	max-width: 1100px;
	margin: 2em auto;
	border-collapse:collapse;
}

.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.2em; 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);}


/*-------------------------------STAFF ROSTER / PRESIDENTS PAGE -------------------------*/

.tblRoster{
	width: 100%;
	margin: 2em auto;
	border-collapse: collapse;
}
.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;
	border-radius: 0.6em;
}
	.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.6em;
		font-weight: 700;
		color: rgb(0,53,105);
	}


/*-------------------------------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;
}


/*------------------------------REGIONAL CLUB DIRECTORY---------------------------*/

.allStateClubContainer{
	text-align:center;
	height: 0;
	overflow:hidden;
	display:block;
	transition: height 1s;
	background-color: rgb(252,151,0);
}
.clubContainer{
	display:inline-block;
	font-size: 0.9rem;
	vertical-align:top;
	padding: 2rem 2rem 3.2rem 2rem;
	background-color: white;
	border-radius: 0.5rem;
	margin: 1rem;
	text-align: center;
	border: 0.6rem solid rgb(0,39,74);
	position:relative;
}
	.clubContainer *{position: relative;}
	.clubContainer h3{float:left; color: rgb(0,79,163); margin-bottom: 0;}
	.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); font-weight: bold;}
.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;
	padding: 0.2rem 0.5rem;
	border-radius: 0.3rem;
}


/*--------------------------- 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: 1em;
	text-align: left;
}



/* ---------------------------- POLICY PAGES -------------------------------- */

.policies{
	padding: 5em 2em;
}

/*----------------------------GENERAL STYLES---------------------------------------*/

.breadCrumbs{
	display:block;
	position: absolute;
	left: 0.5em;
	top: 0.5em;
	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;}

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);
}


/*-----------------------------------------------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: inline;
}
		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;
	}
	div.entryHolder{
		padding: 0;
		border: none;
		position: relative;
		margin: 0.5%;
		display:inline-block;
		width: 32%;
		vertical-align:top;
	}
	@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 {
	min-height: 75vh;
	padding: 5rem 2rem;
}


/*
.genericPageFix .footerContainer,
.calFix .footerContainer,
.upcomingPageFix .footerContainer,
.FAQFix .footerContainer,
.resourceFix .footerContainer,
.contactPageFix .footerContainer,
.storeFix .footerContainer{
	margin: 0 -2em -5em -2em;
}
*/

.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%;
		/* max-width: 700px; */
		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);
}

/*-------------------------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 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: 1150px) {
	.anniversary{font-size: 0.8em;}
	.events {width: 95%;}
	.footerContainer{ font-size: 95%}
	.eventRow{text-align:left;}
	.eventRow>div{display:inline-block;}
	.eventRow>div:nth-of-type(3){padding-top: 1em;clear:left;}
	.eventRow>div:nth-of-type(-n+2){width: auto; text-align:left; padding-bottom: 0.4em;}
}

@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) {
	.respNavContainer {width: 15rem; font-size: 0.9rem;}
	#page{border-left: 15rem solid rgb(30,67,130);}
	.respNavContainer ul.nav a{padding: 0 1em;}
	.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;}
}


/*@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape){*/

@media only screen and (max-width: 800px){
	#bgm_slideShowContainer{height: 200px;}
	.login{display:none;}
	.FAQFix{	margin: 0px 0px;}
	.question{margin-right: 0px;}
	.login{display:none;}
	#page{padding-top: 45px}
	.respNavContainer{display:none;}
	.mobileNavControl{display:block;	}
	#page{border-left: none;}
	.efv8Login{position: fixed; top: -200px; z-index: 3; width: 100%; padding: 0.6rem;}
	.v8Times{font-size: 90%}
	.genericPageFix, .calFix, .upcomingPageFix, .FAQFix, .resourceFix, .contactPageFix, .storeFix {padding: 2em}
}

@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;
	}
}



@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;}
	.events{width: 100%}
	.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}
	.section .moreLink{margin: 5px auto;}
	.eventRow{display:block; /*border-bottom: 1px solid rgba(0,53,105,0.2);*/}
	.section.upcomingEvents{border-top: none}
	h1{font-size: 2rem;}
	h2{font-size: 1.4rem;}
	.merchandise, .membership{float:right;text-align:right; clear:right;}
	.footer img{left: 18%; width: 33%; height: auto; max-width: 150px}
}

@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;}
	.allNewsContainer, .allArchiveContainer{display:block; width: auto; padding: 0; border-left:none;}
	.newsBlock{padding: 0}
	.newsImgFirst {float: none; display:block;  margin: 1em auto;}
	.homeFirstImage{float:none; display:block; margin: 1em 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;}
}


@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;}
}

@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: 400px) {  
	.classifiedList .td:nth-of-type(3){display:none;}
	.footer img{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{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{border:none;}
	.wrapper{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;}
}