/*
 * Keep the four tabs in one row without display:contents, and keep
 * an open dropdown attached to its tab long enough to click.
 */

#access > .menu {
	display: flex !important;
	flex-wrap: nowrap !important;
}

#access > .menu > ul {
	display: flex !important;
	flex-wrap: nowrap !important;
	min-width: 0 !important;
}

#access > .menu > ul:first-of-type {
	flex: 3 1 0 !important;
}

#access > .menu > ul:first-of-type > li {
	flex: 1 1 0 !important;
	min-width: 0 !important;
	position: relative !important;
}

#access > .menu > ul:last-of-type {
	flex: 1 1 0 !important;
}

#access > .menu > ul:last-of-type > li {
	width: 100% !important;
	position: relative !important;
}

#access > .menu > ul > li > ul {
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	padding-top: 18px !important;
	margin-top: -10px !important;
	display: none !important;
	z-index: 10000 !important;
}

#access > .menu > ul > li:hover > ul,
#access > .menu > ul > li:focus-within > ul,
#access > .menu > ul > li.nemrud-open > ul {
	display: block !important;
}

#access > .menu > ul > li > ul ul {
	position: static !important;
	display: block !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}
