html, body{
	overflow: auto;
}

body {
	background-image: url(media/images/whiteTrees.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

header {
    border: 1px solid white;
	width: 100%;
	height: 15%;
	background-color: #037321;
	text-align: center;
}

#headerDiv{
	height: 100%;
	width: 100%;
	background-image: url('media/images/garland.png');
	background-size: 100% 100%;
}

#wrapper {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
}

main {
    border: 1px solid white;
	width: 100%;
	height: auto;
	min-height: 50%;
	padding-top: 0;
    text-align: center;
    background-color: #c00522;
}

.mainWrapper {
    width: 100%;
}

.mainWrapper img {
    width: 50%;
}

#directionsMainWrapper {
    height: auto;
    width: 100%;
	margin-bottom: 0;
}

#directionsText {
    height: 30%;
}

#directionsMapDiv {
    width: 100%;
    height: 70%;
}

#map {
    width: 90%;
    height: 90%;
}

#videoMainDiv {
    width: auto;
    z-index: 5
}

#videoMainDiv video {
    padding: 1%;
    width: 98%;
}

.videoContainer {
    border: 1px solid white;
    outline-offset: -1%;
}

.galleryContainer {
    width: auto;
}

.galleryContainer .imageContainer {
    width: 98%;
    padding-top: .5%;
    padding-bottom: .5%;
    padding-left: 1%;
    padding-right 1%;
}

.galleryContainer .imageContainer img {
    width: 100%;
}

.mainHeader {
	width: 70%;
	padding-top: 5%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	font-size: 1.7em;
	font-weight: bold;
	color: white;
	text-decoration: underline;
}

.mainText {
	text-align: left;
	width: 70%;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 1%;
	padding-bottom: 5%;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
}

footer {
    border: 1px solid white;
	width: 100%;
	height: auto;
	background-color: #0d5901;
	color: white;
	font-style: italic;
	font-size: .75em;
	text-align: center;
}

#footerText {
	padding-left: 2%;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* This sections controls nav dropdowns */
nav {
    border: 1px solid white;
    width: 100%;
	height: 5%;
	background-color: #0d5901;
}

.mainDrop {
	float: left;
    position: relative;
	width: 15%;
}

.btnDropdown {
	background-color: #0d5901;
	border-color: #0d5901;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 1em;
	font-weight: bold;
	cursor: pointer;
}

.btnDropdown:focus {
	outline: none;
}

.dropdownContent {
    position: absolute;
    width: 100%;
	display: none;
	text-align: center;
    z-index: 10;
}

.dropdownContent a{
	text-decoration-style: none;
    text-decoration: none;
}

.dropdownItem{
    width: 100%;
	background-color: #0d5901;
	border:1px solid #037321;
	padding-top: 10%;
	padding-bottom: 10%;
	color: white;
	text-decoration: none;
}

#muteDiv {
	float: right;
	width: 5%;
	height: 100%;
	text-align: center;
	background-image: url("media/images/sound.png");
	background-position:center;
	background-repeat: no-repeat;
	background-size: 50% 50%;
}

/* Snowflake Rotation Control */
.snowflake {
	pointer-events: none;
  	-webkit-animation: spin 4s linear infinite;
  	-moz-animation: spin 4s linear infinite;
  	animation: spin 4s linear infinite;
	-moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
 @-moz-keyframes 
spin { 
	100% {
		-moz-transform: rotate(360deg);
	}
}
 @-webkit-keyframes 
spin { 
	100% {
		-webkit-transform: rotate(360deg);
	}
}
 @keyframes 
spin { 
	100% {
		-webkit-transform: rotate(360deg);
		transform:rotate(360deg);
	}
}