@charset "utf-8";
/* CSS Document */

#g-nav{
	width:100%;
	background:#fff;
	border-top:5px solid #7e318e;
	border-bottom:5px solid #7e318e;
	margin-bottom:15px;
}

#g-nav ul{
	width:970px;
	margin:5px auto 5px;
  display:table;
  table-layout: fixed;
}

#g-nav ul li{
  width: 100%;
	border-right:1px dotted #e61673;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

#g-nav ul li a{
	display:block;
	font-size:15px;
	padding:9px 0;
	color:#111;
	font-weight:bold;
	text-decoration:none;
}

#g-nav ul > li:first-child a{
  font-size: 13.5px;
  border-left: 1px dotted #e61673;
}

#g-nav ul li a:hover, #g-nav ul li a:active, #g-nav ul li.current a {
	background: #eff0ea;
	color: #e94709;
}

@media only screen and (max-width:970px){
  #g-nav ul{
    width:100%;
    margin:0;
  }

  #g-nav ul li{
    float:left;
    width:50%;
    border-right:1px dotted #e61673;
    border-bottom:1px dotted #e61673;
    box-sizing: border-box;
  }
}