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

.globalMenu {
	position: relative;
	box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.05);
	z-index: 9;
}
#dd {
	text-align: center;
	background: #EEE;
}
#dd > ul {
	width: 1160px;
	display: flex;
	margin: 0 auto;
}
#dd > ul > li {
	height: 51px;
	flex: 5;
	background-color: #EEE;
	border-left: 1px solid white;
}
#dd > ul > li:not(:last-child) {
}
#dd > ul > li:last-child {
	border-right: 1px solid white;
}
#dd li.current {
	background: #2E5075;
}
#dd li.current a {
	color: white;
}
#dd li.home {
	width: 100px;
	flex: 1;
}
#dd ul li {
	position: relative;
}
#dd li li {
}
#dd a {
	font-size: 15px;
	line-height: 27px;
	font-weight: bold;
	display: block;
	transition: 0.35s;
}
#dd a .material-icons-outlined {
	font-size: 22px;
	line-height: 27px;
	display: block;
}
#dd a:hover {
	text-decoration: none;
	color: white;
	background-color: #2E5075;
	opacity: 1;
}
#dd > ul > li > a {
	padding: 12px 15px;
}
#dd > ul > li > a.active {
}
#dd .level1,
#dd .level2,
#dd .level3 {
	width: 100%;
	position: absolute;
	letter-spacing: 0;
	z-index: 9;
}
#dd .level1 a,
#dd .level2 a,
#dd .level3 a {
	padding: 12px 17.5px;
	font-size: 14px;
	line-height: 27px;
	color: white;
	border: none;
	text-align: left;
	background: rgba(0, 0, 0, 0.85);
}
#dd .level1 a.double,
#dd .level2 a.double,
#dd .level3 a.double {
	padding: 7.5px 17.5px;
	line-height: 18px;
}
#dd .level1 .active,
#dd .level2 .active,
#dd .level3 .active {
	background: #2E5075;
}
#dd .level1 {
	top: 100%;
	left: 0;
}
#dd .level2 {
	top: 0;
	left: 100%;
}
#dd .level3 {
	top: 0;
	left: 100%;
}
#dd .item-arrow::after {
	font-family: 'Material Icons';
	content: "\e5e1";
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -13.5px;
}