.new-top-menu {
	background-color: #FFE921;
	list-style-type: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	padding: 0 15px;
}

.new-top-menu::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 2px;
	background-color: #F5F5F5;
}

.new-top-menu li {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.new-top-menu li a {
	color: #666666;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 15px;
	line-height: 30px;
	display: block;
	transition: 0.2s linear;
}

.new-top-menu li a img {
	max-width: 100%;
	margin-bottom: -1px;
	margin-right: 3px;
}

.new-top-menu li a.red {
	color: #F13A30;
}

.new-top-menu li a:hover {
	transition: 0.2s linear;
	text-decoration:underline;
}

.new-top-menu li a.red:hover {
	color: #F13A30;
	transition: 0.2s linear;
}

.new-top-menu li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #F5F5F5;
	z-index: 2;
}

.new-top-menu li > ul > li {
	min-width: 250px;
	text-align: left;
}

.new-top-menu li > ul > li a {
	display: block;
	color: #0D0D0D;
	font-weight: normal;
  padding: 6px 15px;
	width: 100%;
}

.new-top-menu li:hover > ul {
	display: block;
}
