@charset "utf-8";
/* CSS Document */


.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.sidenavpro {
	padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 22px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a {
	text-decoration: none;
	font-size: 22px;
	color: #818181;
	display: block;
	transition: 0.3s;
	padding-top: 2px;
	padding-right: 8px;
	padding-bottom: 2px;
	padding-left: 32px;
}

.sidenav span a {
	text-decoration: none;
	font-size: 22px;
	color: #818181;
	display: block;
	transition: 0.3s;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 32px;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 90px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

<!--innerpage-->

/* Style the navbar */
#navbar {
  overflow: hidden;
  }

/* Navbar links */
#navbar a {
	float: left;
	display: block;
	color: #e5e4e0;
	text-align: center;
	text-decoration: none;
	background-color:#777676;
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	padding-right:10px;
}

#navbar .fa {
	font-size:20px;
}

/* Page content */
.content {
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index:1030;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 100px;
}