/*Menu*/
#menu { 
  background-color:rgba(20,20,20,1);
  z-index:10000;
}

/*main navigation*/
#nav {color:white; text-decoration:none; text-transform:uppercase; height:100%; float:left;}
#nav ul {	margin: 0; padding: 0; margin-right:-1em;text-align: right; }
#nav ul li { display: inline-block;
background-color:rgba(220, 36, 0, 0);
  text-align: center; }
#nav ul li a {font-weight:400; text-decoration:none; color:white; 
  -moz-transition: background-color 0.75s ease;
-webkit-transition: background-color 0.75s ease;
transition: background-color 0.75s ease;
display:block;}
#nav ul li a:hover, #nav ul li a:focus{background-color:rgba(220, 36, 0, 0.75);
  -moz-transition: background-color 0.75s ease;
-webkit-transition: background-color 0.75s ease;
transition: background-color 0.75s ease;}
#nav ul li a.active {background-color:rgba(220, 36, 0, 0.75); color:white;}
#nav ul li a.active:focus {background-color:rgba(220, 36, 0, 1); color:white;}


@media screen and (min-width:101px) {
 #menu{width: 100%;
  height: 20em;
  position: fixed;
  top: -17em;
  left: 0%;
    -moz-box-shadow: 0px 5px 15px 5px  rgba(0, 0, 0, 0.35);
-webkit-box-shadow: 0px 5px 15px 5px  rgba(0, 0, 0, 0.35);
box-shadow: 0px 5px 15px 5px  rgba(0, 0, 0, 0.35);}





}

@media screen and (min-width:750px) {
 #menu{width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -40%;
    -moz-box-shadow: 5px 0px 15px 0px  rgba(0, 0, 0, 0.35);
-webkit-box-shadow: 5px 0px 15px 0px  rgba(0, 0, 0, 0.35);
box-shadow: 5px 0px 15px 0px  rgba(0, 0, 0, 0.35);
  }
}





@media screen and (min-width:1250px) {
 #menu{width: 25%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -17.5%;}
}