/* 
 * 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 
 */
 
 .g-navi .left {
    padding: 5px 0 5px 10px;
    margin: 0;
    display: block;
    position: relative;
    z-index: 1;
}

.naver {
  margin: 0;
}
.naver,
.naver *,
.naver *:before,
.naver *:after {
  box-sizing: border-box;
}
.naver-handle {
  width: 100%;
  color: #333;
  cursor: pointer;
  display: none;
  font-size: 18px;
  margin: 0;
  padding: 10px 15px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 65px;
  line-height: 40px;
  font-weight: bold:
}

.naver-handle:after {
  height: 3px;
  width: 15px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  background: #333;
  box-shadow: 0 5px 0 #333, 0 -5px 0 #333;
  content: '';
  display: block;
  margin: auto 0;
}

.naver.open .naver-handle:after {
  width: 15px;
  height: 15px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #333;
  content: "\00d7";
  font-size: 22px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  text-indent: 0px;
}
.naver-wrapper {
  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;
  text-indent: -9999px;
}

.naver.enabled .naver-wrapper {
  height: 0px;
  overflow: hidden;
  clear: both;
}
.naver.enabled .naver-container {
  border: 1px solid #e7d300;
  border-width: 0 1px 1px;
}

.nav a {
  display: block;
  text-align: center;
  float: left;
  font-size: 14px;
  line-height: 70px;
  margin: 0 1px 0 0;
  padding: 0 30px;
  text-decoration: none;
  border-top: 1px solid #e7d300;
}
.nav a:hover {
	background: #f6eb8f;
}

@media screen and (max-width: 1099px) {
  .nav a {
    float: none;
    margin: 0 0 1px 0;
    width: 100%;
  }
    
  h1{
	  display: none;
  }
  
}

@media screen and (min-width: 1099px) {
  .naver-wrapper{
	  margin-left: 40px;
  }
  
  .nav{
	  float: left;
	  margin-left: 0px;
  }
  
  .nav a {
    border-top:0px !important; 
    border-left: 1px solid #333;
    font-size: 14px;
	line-height: 40px;
	margin: 20px 1px 0 0;
	padding: 0 35px;
  }
  
   .nav a:last-child {
    border-top:0px !important; 
    border-right: 1px solid #333;
  }
  .nav a:hover {
	 filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    background: none;
  }
}