.main-nav {
	position: fixed;
	top: 0;
	width: 0px;
	overflow-y: auto;
	transition: width 0.2s ease;
	z-index: 999999;
	right: 0;
}


.main-nav:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  background: #111;
}

.close-menu {
  display: none;
}

#main-nav:target {
  width: 40%;
  height: 100%;
}

#main-nav:target + .page-wrap {
  width: 40%;
}
#main-nav:target + .page-wrap .open-menu {
  display: none;
}
#main-nav:target + .page-wrap .close-menu {
  display: block;
}
#main-nav:target + .page-wrap .main-header {
  width: 40%;
  left: 60%;
}

.open-menu {
	position: absolute; 
	height: 140px; 
	width: 50px; 
	background-image: url(../images/menu.svg); 
	background-repeat: no-repeat; 
	background-position: center center; 
	background-size: 55% auto;
}


#slide-menu {
	z-index: 999999; 
	position: absolute; 
	width: 50px;
	height: 140px;
	right: 20px;
	top: 0px;
	display: none;
}



#main-nav ul {
	margin: 0;
	padding: 0;
	margin-left: 70px;
	background-color: #555;
	height: 100%;
}

#main-nav ul li {
	border-bottom: 1px #666 solid;
	list-style: none;
	padding-left: 20px;
	background-color: #555;
}

#main-nav ul li:hover {
	background-color: #00ade4; 
}

#main-nav ul li a {
	text-decoration: none;
	line-height: 50px;
}

#main-nav ul li ul {
	padding-bottom: 15px;
	margin-left: -20px;
	padding-top: 15px;
	height: auto;
}

#main-nav ul li ul li {
	border-bottom: none;
	list-style: none;
	margin-left: 0px;
}

#main-nav ul li ul li:hover {
	background-color: #00ade4;
}


#main-nav ul li ul li a {
    color: #FFF;
	line-height: 20px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 95%;
	display: inline-block;
	padding-left: 5%;
}








	

@media only screen and (min-width: 936px) {
.main-nav {
	display: none;
}
}

@media only screen and (max-width: 935px) {
#slide-menu {
	display: inline;
}
}


@media only screen and (max-width: 480px) {

#main-nav:target {
  width: 95%;
}
#main-nav:target + .page-wrap {
  width: 95%;
}
#main-nav:target + .page-wrap .main-header {
  width: 95%;
  left: 5%;
}

}


.open {
	background-color: #444;
	float: right;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.open a{
    color: #FF0;
	background-image: url(../images/down-arrow.png);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center; 
	height: 50px;
	width: 50px;
	float: right;
	
}
.open a.clicked{
    color: red;
	background-image: url(../images/up-arrow.png);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center; 
}

a.white{
    color: #FFF;
}

a.white:hover{
    color: #FFF;
}

#close {
	height: 100%;
	width: 70px;
	position: absolute;
}

#close a {
	text-decoration: none;
	line-height: 140px;
	width: 70px;
	float: left;
	background-image: url(../images/menu.svg); 
	background-repeat: no-repeat; 
	background-position: center center; 
	background-size: 40% auto;
	background-color: #fff;
}
