div.modalContainer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
div.modalContainer div.modalOverlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  background: #000;
  opacity: .7;
}
div.modalContainer div.closeButton {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  background: #96bc33;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  font: normal 14px 'Lucida Console', Monaco, monospace;
  color: #fff;
  box-sizing: border-box;
  padding: 3px 0 0 6px;
}
div.modalContainer div.modalContent {
  position: relative;
  z-index: 102;
  margin: 0 auto;
}
@media only print {
  div.modalContainer {
    position: static;
    width: auto;
    height: auto;
  }
  div.modalOverlay {
    display: none;
  }
}
