#menu {
  width: var(--contentwidth);
	height: 145px;
	display:none;
}
#menu-wrapper {
	width: inherit;
	height: inherit;
}
#menu-banner-container {
	height:110px;
  justify-content: space-between;
}
#menu-logo {
	width: 670px;
  height: inherit;
	background-image: url('layout/banner.png');
	background-repeat: no-repeat;
	position: relative;
}
#menu-banner-icon {
	width: 200px;
	height: inherit;	
	text-align: right;
}
#menu-menues {
  width: calc(var(--contentwidth) - 30px);
  float:left;
  /*justify-content: space-between;*/
}
.menu-item, .thumbnail, .thumbnail-left, .thumbnail-right, .artwork, .game-thumb-title, .art-prev, .art-next, #menu-logo, 
.game-thumb, #play-link, .play-link-with-gallery, .runapp-link, .highscore-link, .back-link, .app-thumb-container, .app-thumb-container-middle {
  cursor: hand; cursor: pointer;
}
.menu-item {
  font-size: 5px;
	text-align: left;
}
#menu-menues-wrapper {
  width:var(--contentwidth);
  display: block; 
  background-color:red;
}
.menubutton-space {
  width: 15px;
  height: 30px;
  float: left;
}
/* Dropdown Button */
.dropbtn, .normalbtn {
	padding: 0px;
	height: 30px;
	background: rgba(0,0,0,0);
	border: none;
  letter-spacing: 2px;
  cursor: pointer; 
	position: relative;
	font-family: 'Acme', sans-serif;
	font-size: 22px;
	font-weight:bold;
	color: #fff;
	text-shadow: #000 2px 2px 2px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus, .normalbtn:hover, .normalbtn:focus {
		color: #9ccaf4;
}

/* The container <div> - needed to position the dropdown content */
.dropdown-menu, .single-menu-button {
   position: relative;
   display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
	z-index:99999;
	min-width: 100px;
	background-color:#b2d7ff;
	box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.6);
	font-family: 'Acme', sans-serif;
	font-size:18px;
	font-weight:bold;
	white-space: nowrap ;
}

/* Links inside the dropdown */
.dropdown-content div {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content div:hover {
	background-color: #e2f5f5;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}