/* Side Menu */
.sidenav {
	height: 100%; /* 100% Full-height */
	width: 0; /* 0 width - change this with JavaScript */
	position: fixed; /* Stay in place */
	z-index: 1; /* Stay on top */
	top: 0; /* Stay at the top */
	right: 0; /* position on menu on right side of screen */
	background-color: #F5F5F5;
	border-left-style: solid;
	border-width: 1px;
	border-color: #CBCBCB;
	overflow-x: hidden; /* Disable horizontal scroll */
	padding-top: 3em; /* Place content 60px from the top */
	transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* Menu Links */
.sidenav a {
	padding: 8px 8px 8px 32px;
	color: Black;
	text-decoration: none;
	display: block;
	transition: 0.3s;
}
/* List */
.sidelink-list {
	margin: 0.5em 0 4em 0;
}
.sidelink-link {
	font-size: 1.5em;
	padding-top: 10px;
}
/* Mouse Over */
.sidenav a:hover {
	color: Grey;
	text-decoration: underline;
}
/* Close Button */
.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}
/* On smaller screens change font size and do not display small links */
@media screen and (max-height: 450px) {
.sidenav {
	padding-top: 15px;
}
.sidenav a {
	font-size: 0.9em;
}
}
