#mobileMenuOpener{
	position: fixed;
	bottom: 20vh;
	right: 0;
	width: 40px;
	height: 82.5px;
	border-radius: 50px 0 0 50px;
	background-color: #2d4b1e;
	z-index: 101;
	border-style: solid;
	border-width: 3px 0 3px 3px;
	border-color: #ddd;
	padding-top: 15px;
	background-image: url("/images/menu.png");
	background-position: right;
	background-size: 90%;
	background-repeat: no-repeat;
}

#mainmenu{
	position: fixed;
	top: 90px;
	width: 100vw;
	height: calc(100vh - 96px);
	background-color: #ddd;
	z-index: 100;
	overflow: scroll;
	left: -100vw;
	transition: .3s ease-out;
	border-width: 3px 0 3px 0;
	border-style: solid;
	border-color: #2d4b1e;
}

#hamburger {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
	width: 50px;
	height: 50px;
    transition: 2s;
    color: #fff;
    vertical-align: text-bottom;
    margin: 18px;
    transition: .5s;
    background-image: url(/images/menu.png);
    background-size: cover;
	background-color: #2d4b1e;
	border-width: 2px;
	border-style: solid;
	border-color: #000;
}

#googleSearchContainer{
	width: calc(100vw - 20px);
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	padding: 5px 0;
	border-width: 2px;
	border-style: solid;
	border-color: #2d4b1e;
	background-color: #ceedbe;
}

#paddingforsitesearch{
	padding-left: 15px;
}