@charset "utf-8";
/* CSS Document */

.mynav {
	height: 68px;
	border-bottom: 1px solid #dcdcdc;
}
.mynav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0;
	height: 50px;
	background-color: #f4f4f4;
	margin: 0 auto 8px;
}
.mynav li {
	margin: 0 4px;
}
.mynav li:not(:last-child) {
	margin-right: 4px;
}
.mynav a {
	display: block;
	font-size: 14px;
	color: #000;
	text-decoration: none;
	padding: 7px 5px;
	border-bottom: 2px solid #f4f4f4;
}
.mynav a:hover {
	color: #000000;
	font-weight: bold;
	border-bottom: 2px solid #1565AF;
	-webkit-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out;
}
.mynav .active a {
	color: #000000;
	font-weight: bold;
	border-bottom: 2px solid #1565AF;
}
