/* SIDENAV */
.sidenav {
	text-align: left;
    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;
    left: 0;
    background-color: #404040; /* Gray*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.4s; /* 0.5 second transition effect to slide in the sidenav */
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 25px;
    text-decoration: none;
    font-size: 25px;
    color: #D0D0D0;
    display: block;
    transition: 0.3s;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

#sidenavbut {
	text-align: left;
	font-size: 3.5em;
	padding: 20px 20px 0 20px;
	color: white;
	text-shadow:
   	-1px -1px 0 #333,  
     1px -1px 0 #333,
    -1px  1px 0 #333,
     1px  1px 0 #333;
}

#sidenavbut:after {
  content: "";
  display: table;
  clear: both; 
}

@media screen and (min-width: 550px) {
	#sidenavbut {
		padding: 0 10px;
		margin-bottom: 0;
	}
}

@media screen and (min-width: 750px) {
	#sidenavbut {
		padding: 20px 20px 0 20px;
	}
}

@media screen and (min-width: 1000px) {
	.sidenav, #sidenavbut {
		display: none;
	}
}
/* /SIDENAV */


/* TOPNAV */
.topnav {
	display: none;
}

@media screen and (min-width: 1000px) {

	.topnav {
		display: block;
	}	

	.topnav ul {
		margin: 0;
	}

	.topnav ul a {
		width: 16.666%;
		display: inline;
		float: left;
		color: white;
		background-color: rgba(0,0,0,0.4);
		text-decoration: none;
	}

	.topnav ul a:hover {
		color: darksalmon;
	}

	.topnav ul a li {
		text-align: center;
		list-style-type: none;
		padding: 10px;
		margin: 0;
	}
}
/* /TOPNAV 