/*
*  Copyright (C) 2013 DART Creations.
*  @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/


nav.fullscreenmenu{
	position: fixed;
	width: 100%;
	height: 100%;
	font-size: 10px; /* base front size. */
	text-align: center;
	overflow: hidden;
	z-index: -1;
	backface-visibility: hidden;
	-moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
	-o-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
	transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
	overflow-y: scroll;
}

nav.fullscreenmenu .navcontent{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

nav.fullscreenmenu ul.mainul{
  font-size: 3.5em;
  font-family: 'Bitter', sans-serif;
  list-style: none;
  margin: 0;
  margin-top: 3em;
  padding: 0;
}
nav.fullscreenmenu ul.mainul li a{
  text-decoration: none;
  padding: 20px 0;
  display: block;
  color: white;
}

nav.fullscreenmenu ul.mainul li a:hover{
  color: lightyellow;
}

nav.fullscreenmenu.open{
	z-index: 1000;
	
}
.animateddrawer{
  font-size: 10px; /* Base font size. Adjust this value to modify size of drawer icon */
  width: 3em; 
  height: 2.8em; 
  outline: none;
  display: block;
  position: relative; 
  z-index: 1000;
  background: transparent;
}

.animateddrawer:before, .animateddrawer:after{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 0.6em; /* height of top and bottom drawer line */
  background: black;
  border-radius: 2px;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in; /* set transition type and time */
  transition: all 0.3s ease-in; 
}

.animateddrawer:after{
  top: auto;
  bottom: 0;
}

.animateddrawer span{
  width: 100%;
  height: 0.6em; /* height of middle drawer line */
  background: black;
  position: absolute;
  top: 50%;
  margin-top: -0.3em; /* set this to - half of middle drawer line height */
  border-radius: 2px;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-in 0.3s; /* set transition type and time */
  transition: all 0.3s ease-in 0.3s;
}

.animateddrawer span::after{
  content: '';
  display: block;
  width: 100%;
  height: 0.6em; /* height of middle drawer line */
  background: black;
  border-radius: 2px;
  position: absolute;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-in 0.3s; /* set transition type and time */
  transition: all 0.3s ease-in 0.3s;
}

.animateddrawer.open{
	background: transparent;
}

.animateddrawer.open:before{ /* style when .open class is added to button */
  top: 50%;
  margin-top: -0.3em; /* set this to - half of top drawer line height */
  opacity: 0;
}

.animateddrawer.open:after{ /* style when .open class is added to button */
  bottom: 50%;
  opacity: 0;
}

.animateddrawer.open span{ /* style when .open class is added to button */
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animateddrawer.open span:after{ /* style when .open class is added to button */
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
ul.nav-child{
	display:none;
}
ul.nav-child li{background:transparent;}
li.deeper:hover > ul.nav-child{display:block;}