.Mmenu {
  overflow: hidden;
}
.MmenuDropdown {
  display: inline-block;
}
.MmenuDropdown:hover {
	background-color: #EEEEEE;
}
.MmenuTop {
  padding: 0px 20px 0px 10px;
  //text-align: center;
}
.MmenuTop::after {
  content: "\25bc";   /* down arrow */
  position: relative;
  font-size: 14px;
  color: #777777;
  left: 5px;
}
span.whowhatwhere {
	font-family: "PT Sans Narrow", sans-serif;
	font-size: 32px;
	color: #777777;
	//text-align: center;
}
span.whowhatwhereSM {
	font-size: 18px;
	color: #777777;
	text-align: center;
}
@media screen and (max-width: 1080px) {
	span.whowhatwhere { font-size: 28px; }
	span.whowhatwhereSM { font-size: 14px; }
}


.MmenuDropdown-content {
  display: none;  /* drop-down hidden by default */
  position: absolute;
  padding: 0px 5px 0px 5px;
  background-color: #FEFEFE;
  box-shadow: 4px 4px 8px 1px rgba(0,0,0,0.5);
  z-index: 1;
}
/* Show the drop-down menu on hover */
.MmenuDropdown:hover .MmenuDropdown-content {
  display: block;   /* Show the drop-down menu on hover */
}

/* Links inside the drop-down */
.MmenuDropdown-content a {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 16px;
  color: #888888;
  padding: 5px 5px 5px 10px;
  text-decoration: none;
  display: block;
}

/* Change background colour of drop-down menu items when hovering */
.MmenuDropdown-content a:hover {
  background-color: #EEEEEE;
}
