/* 
 * 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: 100px;
	background: #FFF;
	color: #666;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor: pointer;
	display: none;
	font-size: 16px;
	margin: 0;
	padding: 7px 15px;
	position: absolute;
	top: 30px;
	right: 10px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 5px;
	border: 1px solid #ccc;
}
/*.naver-handle {
  width: 100px;
  background: #000066;
  color: #FFF;
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  cursor: pointer;
  display: none;
  font-size: 16px;
  margin: 0;
  padding: 8px 15px;
  position: absolute;  
  top: 30px;  
  right: 10px; 
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}*/
.naver.open .naver-handle {
	border: none;
}
.naver-handle:after {
  height: 3px;
  width: 15px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  background: #cccccc;
  box-shadow: 0 5px 0 #cccccc, 0 -5px 0 #cccccc;
  content: '';
  display: block;
  margin: auto 0;
}
.naver.open .naver-handle:after {
  width: 15px;
  height: 15px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #cccccc;
  content: "\00d7";
  font-size: 16px;
  font-weight: bold;
  line-height: 15px;
  text-align: center;
}
.naver-wrapper {
  border: none;
  height: auto;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 66px;
  width:100%;
  z-index: 1;
}
.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;
}
.naver.enabled .naver-container {
	background: #ccc;
	border: 1px solid #cccccc;
	border-width: 0 1px 1px;
	-webkit-box-shadow: 0px 5px 10px 10px #989595;
	box-shadow: 0px 5px 10px 10px #989595;
}
.naver a {
	background-color: #FFF;
	/*background-image: url(/common/images/icon_arrow.png);*/
	color: #666;
	display: block;
	float: left;
	font-size: 14px;
	line-height: 40px;
	margin: 0 1px 0 0;
	padding: 0 20px;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: 96% 50%;
	background-size: 10px auto;
}
/*.naver a {
	background-color: #666;
	background-image: url(../../images/icon_arrow.png);
	color: #fff;
	display: block;
	float: left;
	font-size: 14px;
	line-height: 40px;
	margin: 0 1px 0 0;
	padding: 0 20px;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: 96% 50%;
	background-size: 10px auto;
}*/
.naver a:hover {
  background: #eee;
}
/*.naver a:hover {
  background: #222;
}*/
@media screen and (max-width: 740px) {
  .naver a {
    float: none;
    margin: 0 0 1px 0;
    width: 100%;
  }
}