/* 
 * Naver v3.1.2 - 2014-11-25 
 * A jQuery plugin for responsive navigation. Part of the Formstone Library. 
 * http://formstone.it/naver/ 
 * 
 * Copyright 2014 Ben Plum; MIT Licensed 
 */

.naver {
  margin: 0;
}
.naver,
.naver *,
.naver *:before,
.naver *:after {
  box-sizing: border-box;
}
.naver-handle {
  width: 100%;
  cursor: pointer;
  display: none;
  font-size: 16px;
  margin-bottom: 10px;
  padding: 10px 0;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.naver-handle:after {
  height: 3px;
  width: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 0;
  background: #808080;
  box-shadow: 0 5px 0 #808080, 0 -5px 0 #808080;
  content: '';
  display: block;
  margin: auto 0;
}
.naver.open .naver-handle:after {
  width: 15px;
  height: 15px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #808080;
  content: "\00d7";
  font-size: 22px;
  font-weight: 700;
  line-height: 15px;
}
.naver-wrapper {
  width: 120px;
  float:right;
  border: none;
  height: auto;
  margin: 0;
  padding: 0;
}
.naver-container:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.naver.enabled .naver-handle {
  display: block;
}
.naver.enabled .naver-wrapper {
  height: 0px;
  overflow: hidden;
  border-radius: 5px;
}
.naver.enabled .naver-container {
  background: #ffffff;
  background: rgba(243,224,217,0.6);
  padding: 20px 0;
}

@media screen and (min-width: 960px){

  nav {
    text-align: center;
  }
  .naver-wrapper {
   width: 600px;
   padding-top: 30px;
   padding-right: 25px;
  }
  nav ul li {
    width: 20%;
    float:left;
  }
  nav ul li a {
    display: block;
    padding: 0;
    text-align: center;
  }
  nav ul li a:hover {
    border-radius: 5px;
  }

}
