.pushmenu { /*this is the nav*/
  background: #3c3933;
  font-family: Arial, Helvetics, sans-serif;
  width: 240px;
  height: 100%;
  top: 0;
  z-index: 1000;
  position:fixed;
}

.pushmenu ul{
    list-style:none;
    margin:0;
}

.pushmenu ul li{
    margin:0;
}


.pushmenu a {
  display: block; /* drops the nav vertically*/
  color: #fff;
  border-top: 1px solid #56544e;
  border-bottom: 1px solid #312e2a;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 14px;
  cursor:pointer;
}

.pushmenu a:hover {
  background:#1F8BDA;
}

.pushmenu a:active {
  background: #2297ed;
  color: #fff;
}

.pushmenu .submenu{
    margin-left:20px;
    border-left:1px solid #56544e;
}

.pushmenu-left {
  left: -240px;

}

.pushmenu-left.pushmenu-open {
  left: 0;
}

.pushmenu-push {
  overflow-x: hidden;
  position: relative;
  left: 0;
}

.pushmenu-push-toright {
  left: 240px;
}

/*Transition*/
.pushmenu, .pushmenu-push {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;  
}