@charset "utf-8";
/* CSS Document */
/* ---------------------------------------- */
/* ----- navigation ----- */
/* ---------------------------------------- */
#navigation {
	width: 100%;
}
#navigation a {
	color: #FFFFFF;
	text-decoration: none;
}
#navigation ul.navs {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: space-between;
	-webkit-align-items: stretch;
	-moz-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
	margin: 0px;
	padding: 0px;
}
#navigation li.navs_li {
	text-align: center;
	letter-spacing: -0.02em;
	position: relative;
	font-size: 16px;
	width: 20%;
	padding: 5px 0px;
	text-align: center;
}
#navigation li.navs_li:hover {
	color: #FFF092;

}
#navigation li.navs_li:last-child {
	color: #FFFFFF;
}
#navigation li.navs_li .arrow {
  position: absolute;
  bottom: 0px;
  width: 85%;
  z-index: 9999;
  text-align: center;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#navigation li.navs_li .arrow.hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
#navigation li.navs_li .arrow img {
  vertical-align: bottom;
}
#navigation li.navs_li .img {
  min-height: 40px;
}
#navigation li.navs_li .img img {
  vertical-align: bottom;
}
#navigation li.navs_li.wrap_link {
	padding: 10px 5px;
	cursor: pointer;
}
#navigation li.navs_li.wrap_link .img, #navigation li.navs_li.wrap_link a {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#navigation li.navs_li.wrap_link:active .img, #navigation li.navs_li.wrap_link:active a, #navigation li.navs_li.wrap_link:hover .img, #navigation li.navs_li.wrap_link:hover a {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
#navigation li.navs_li:nth-of-type(7) .img, #navigation li.navs_li:nth-of-type(6) .img, #navigation li.navs_li:nth-of-type(1) .img {
  margin-bottom: 13px;
}
#navigation .inNav {
	position: absolute;
	width: 50%;
	background: #f2f2f2;
	z-index: 999;
	padding-top: 15px;
}
/*#navigation .inNav.nav_02 ul {
  width: 100%;
}
#navigation .inNav.nav_03 ul {
  width: 50%;
}*/
#navigation .inNav ul {
	padding: 0px 0px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: space-between;
	-webkit-align-items: stretch;
	-moz-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
	line-height: 1em;
	font-size: 14px;
}
#navigation .inNav ul a {
padding: 10px 10px 0px 10px;
	color: #666666;
}
#navigation .inNav ul a:hover, #navigation .inNav ul a:active {
  color: #8e8e8e;
}
#navigation .inNav li {
  text-align: center;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  border-right: solid 1px #666;
}
#navigation .inNav li:last-of-type {
  border-right: none;
}
#navigation .inNav {
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
#navigation .inNav.hover {
  visibility: visible;
  opacity: 1;
}
