#overlayMask {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.75;
  filter: alpha(opacity=75);
  z-index: 2000;
}

#overlayContainer {
  display: none;
  position: fixed;
  left: 50%;
  width: 300px;
  top: 40px;
  margin-left: -150px;
  background-color: #fff;
  border: 1px solid #000;
  padding: 0;
  z-index: 2001;
/* overflow: hidden; */
}
@media only screen and (max-width:767px) {
	#overlayContainer {
		width: 100% !important;
		left: 300px !important;
	}
}

#overlayCloseButton {
  display: block;
  position: absolute;
  top: 18px;
  right: 22px;
  text-decoration: none;
  color: #fff;
}

#overlayHeader {
  padding: 15px 25px;
  border-bottom: 1px solid #999;
  background-color: #003865;
  color: #fff;
  font-size: 20px;
}

#overlayContent {
  padding: 20px 25px;
  overflow: auto;
max-height: 65vh;
}

.noscroll { overflow: hidden; }
