#container {
    width: 100%;
}
#crossword {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    outline: none;
}
#menu {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    text-align: right;
    background-color: rgb(200, 200, 200);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin: 0px;
    padding: 0px;
    overflow: none;
	background-image: url("/img/xwseparator.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#menu:after {
  content: "";
  display: table;
  clear: both;
}
#menuarealeft {
    float: left;
    text-align: left;
    width: 20%;
    margin: 0px;
    padding: 0px;
    height: 60px;
    position: relative;
}
#status {
    position: relative;
    top: 6px;
    font-size: 20px;
    color: black;
}
#progress {
    position: relative;
	top: 19px;
	left: 19px;
    font-size: 20px;
    color: black;
}
#menuareacenter {
    float: left;
    text-align: center;
    width: 60%;
    margin: 0px;
    padding: 0px;
    height: 60px;
}
#menuarearight {
    float: left;
    text-align: right;
    width: 20%;
    margin: 0px;
    padding: 0px;
    height: 60px;
}
.mergearea {
	background-color: #a0a0a0;
	margin: 0 auto;
	width: 460px;
	height: 60px;
}
.mergedescription {
    text-decoration: bold;
    font-size: 20px;
}
.mergebutton {
    margin: 0px;
    padding: 0px;
    width: 120px;
    height: 30px;
}
.menuarearighticon {
	height: 44px;
	padding: 8px;
	cursor: pointer;
}
.dropbtn {
  opacity: 1.0;
  border: none;
}
.dropdown {
  position: relative;
  display: inline-block;
  float: right;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
	background-color: #a1a1a1;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  opacity: 0.5;
}
