/* MENU CSS */
* {
  margin:0;
  padding:0;
  font-family: Arial;
}
h1 {
  font-size:70;
}
h2 {
  margin: 8px 0;
}
.SmallButton {
  text-decoration: none;
  cursor: pointer;
  color: #555;
}
.SmallButton:hover {
  color: #000;
}
.btn {
  background: #3498db;
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  border-radius: 1.5em;
  color: #ffffff;
  padding: 10px 20px 10px 20px;
  border: solid #1f628d 5px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.btn:hover {
  background: #3cb0fd;
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
}
input[type='checkbox'] {
  margin-right: 1em;
}
#OptionsDiv {
  background: #eee;
  border: 3px solid #ca6;
  display: none;
  height: 360px;
  margin: 0 auto;
  overflow: auto;
  position: relative;
  width: 400px;
}
#btnCloseOptions {
  cursor: pointer;
  font-weight: bold;
  position: absolute;
  right: 5px;
  top: 5px;
}
#btnOptions {
  cursor: pointer;
  left: 10px;
  position: absolute;
  top: 350px;
}
#ContentDiv {
  position: relative;
  margin: 15px auto;
  width: 750px;
}