@charset "utf-8";
header #menu{
	display: flex !important;
}
header #menu li{
	display: flex;
	position: relative;
	border-bottom: 2px solid transparent;
	transition: 400ms ease;
}
header #menu li a, header #menu li div{
	padding: 0 20px;
	padding-bottom: 10px;
}
header #menu li:last-of-type a{
	padding-right: 0;
}
header #menu li:hover, header #menu li.selected{
	border-bottom: 2px solid #004e8c;
}

header #menu .submenu{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	z-index: 9;
	background-color: white;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	border-top: 2px solid #004e8c;
}
header #menu .submenu li{
	border-bottom: 2px solid #004e8c;
	text-align: center;
	width: 100%;
}
header #menu .submenu li a{
	padding: 10px 20px;
	width: 100%;
}


