nav, ul, li, a  {margin: 0; padding: 0;}
a {text-decoration: none;}

.toggleMenu {
  display:  none;
  padding: 21px 0px 16px 20px;
  color: #000000;
  font-family: "Brown-Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
.nav {
  background:none;
  list-style: none;
  *zoom: 1;
}
.nav:before,
.nav:after { 
  display: table;
  content: " "; 
}
.nav:after {
  clear: both;
}
.nav ul {
  width: 9em;
  list-style: none;
}
.nav a {
  padding: 10px 11px;
  color: #000000;
}
.nav li.active a {
  color: #666666;
}
.nav li {
  position: relative;
  font-family: "Brown-Light", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}
.nav > li {
  float: left;
  border-top: 1px solid #848382;
  text-align: center;
}
.nav > li > .parent {
  background-image: url("http://webdesigntutsplus.s3.amazonaws.com/tuts/378_tessa/tessa-lt-dropdowns-21c7868/images/downArrow.png");
  background-position: right;
  background-repeat: no-repeat;
}
.nav > li > a {
  display: block;
}
.nav li  ul {
  position: absolute;
  left: -9999px;
}
.nav > li.hover > ul {
  left: 0;
}
.nav li li.hover ul {
  top: 0;
  left: 100%;
}
.nav li li a {
  position: relative;
  z-index:100;
  display: block;
  border-top: 1px solid #333;
  background: #fff;
}
.nav li li li a {
  z-index:200;
  border-top: 1px solid #333;
  background: #fff;
}

@media screen and (max-width: 868px) {
  .active {
    display: block;
  }
  .nav > li {
    float: none;
  }
  .nav > li > .parent {
    background-position: 95% 50%;
    background-image: none; 
  }
  .nav li .more {
    position: relative;
    z-index: 200;
    float: right;
    margin: 2px 5px 2px 0px;
    padding: 8px 15px;
    width: 20%;
    border-left: 1px solid rgba(255,255,255,.3);
    background-image: url("http://webdesigntutsplus.s3.amazonaws.com/tuts/378_tessa/tessa-lt-dropdowns-21c7868/images/downArrow.png");
    background-position: 95% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .nav li .more:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    display: block;
    width: 1px;
    background: rgba(0,0,0,.3);
    content: "";
  }
  .nav ul {
    display: block;
    width: 100%;
  }
  .nav > li.hover > ul , .nav li li.hover ul {
    position: static;
  }

}


@media screen and (min-width: 869px) {
  .nav {
    float: right;
  }
  
  .nav > li {
    float: left;
    border-top: none;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
  }
  
}