/* 
 * 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 
 */

nav {
	text-align: center;
}
.naver {
  margin: 0;
}
.naver,
.naver *,
.naver *:before,
.naver *:after {
  box-sizing: border-box;
}
.naver-handle {
  width: 100%;
  color: #000000;
  cursor: pointer;
  display: none;
  font-size: 1em;
  margin: 0;
  padding: 0.6em 2em;
  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: 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: 1.8em;
  font-weight: 300;
  line-height: 0.5;
  text-align: center;
}
.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;
}
.naver.enabled .naver-wrapper {
  height: 0px;
  overflow: hidden;
}
.naver.enabled .naver-container {

}

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

#gNavi {
	position: relative;
	text-align:center;
	overflow: hidden;
	}

#gNavi ul {
	float: left;
	left: 50%;
	position: relative;
	}

#gNavi ul li {
	float: left;
	left: -50%;
	position: relative;
	}

#navArea.naver a {
	color: #00009e;
	margin: 0;
	padding: 1em 2em;
	display: block;
	}

#navArea.naver a:hover {
	text-decoration:underline;
	
	}

}


@media screen and (max-width: 480px) {

#navArea.naver a {
	color: #000000;
	display: block;
	float: left;
	font-size: 1em;
	margin: 0;
	padding: 0.6em 2em;
	}
#navArea.naver a:hover {
	background: #00009e;
	text-decoration: none;
	color:#FFFFFF;
	}
#navArea.naver.enabled a {
	float: none;
	margin: 0;
	width: 100%;
	border-top: 1px solid #cccccc;
	}

}








