.menu_bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 95%;
	font-size: 1.0rem;
	margin: 1rem auto;
}
.dropdown {
	position: relative;
	font-variant: small-caps;
	cursor: pointer;
}
.dropdown-label {
	padding: 0.5rem 2rem 0.5rem 1.5rem;
	border: 1px solid #CCC;
	background-color: #E6DFCF;
}
.dropdown-label:after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 1rem;
	border: 0.3rem solid;
	border-color: black transparent transparent; 
}
.dropdown-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 2.1rem;
	min-width: 100%;
	background-color: #EEE;
}
.dropdown:hover .dropdown-label:after, .dropdown:active .dropdown-label:after {
	top: 0.7rem;
	border-color: transparent transparent black;
}
.dropdown:hover .dropdown-menu, .dropdown:active .dropdown-menu {
	display: block;
	z-index: 1;
}
.submenu {
	padding-left: 0;
	margin: 0;
	list-style-type: none;
	border: 1px solid #999;
}
.submenu > li + li {
	border-top: 1px solid #999;
}
.submenu > li > a {
	display: block;
	padding: .5rem 1.5rem;
   background-color: #E6DFCF;
   color: black;
	text-decoration: none;
}
.submenu li a:hover, .submenu li a:active {
	text-decoration: underline;
}
.menu_link {
	padding: .5rem 2rem .5rem 1.5rem;
	border: 1px solid #CCC;
	background-color: #E6DFCF;
	cursor: pointer;
}
.menu_link > a {
	color: black;
	text-decoration: none;
	font-variant: small-caps;
}
.menu_link:hover, .menu_link:active {
	text-decoration: underline;
}
