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

/* Important styles */
#toggle {
	display: block;
	width: 28px;
	height: 30px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}

#toggle span:after,
#toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}
#toggle span:after{
  top: 9px;
}
#toggle span {
  position: relative;
  display: block;
}

#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 5px;
  background-color: #888;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}

/* on activation */
#toggle.on span {
  background-color: transparent;
}
#toggle.on span:before {
  transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}
#toggle.on + #menu2 {
  opacity: 1;
}

/* menu2 appearance*/
#menu2 {
  position: relative;
  color: #999;
  width: 380px;
  padding: 10px;
  margin: 0px;
  text-align: center;
  border-radius: 5px;
  background: white;
  box-shadow: 0 1px 8px rgba(0,0,0,0.1);
  /* just for this demo */
  opacity: 0; 
  transition: opacity .4s;
}
#menu2:after {
  position: absolute;
  top: -15px;
  left: 9px;
  content: "";
  display: block;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid white;
}
ul, li {
	list-style: none;
	display: block;
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
}
li a {
  padding: 5px;
  color: #888;
  text-decoration: none;
  transition: all .2s;
}
li a:hover,
li a:focus {
	color: #0A261D;
}
.testp {
	position: fixed;
	top:0;
	z-index:1001;
}