body:not(.home) {
  margin-bottom: 8px;
}

div#imageContainer img {
  margin: auto;
  display: block;
  max-width: 100%;
  border: 1px solid black;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
div#imageContainer map area {
  cursor: pointer;
}

div#tooltip {
  position: absolute;
  background-color: black;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  color: white;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-align: center;
  padding: 0.5rem;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
div#tooltip.visible {
  opacity: 0.8;
}
