/* the overlayed element */
.simple_overlay {

  /* must be initially hidden */
  display: none;

  /* place overlay on top of other elements */
  /* z-index:10000; */

  /* styling */
  /* background-color:#333; */

  /* width:532px; */
  /* height:332px; */
  /* border:1px solid #666; */
  padding: 40px;

  /* CSS3 styling for latest browsers */
  /* -moz-box-shadow:0 0 90px 5px #000; */
  /* -webkit-box-shadow: 0 0 90px #000; */
  /* background-image: url(../img/overlay/apple.png); */
  background-image: url(../img/overlay/white2.png);
}

/* close button positioned on upper right corner */
.simple_overlay .close {
  position: absolute;
  cursor: pointer;
  /* background-image: url(../img/overlay/apple-close.png);
  right: 15px;
  top: 15px;
  height: 28px;
  width: 28px; */
  background-image: url(../img/overlay/close.png);
  right: 4px;
  top: 0px;
  height: 36px;
  width: 36px;
}

#overlayText {
  color: #000000;
  font-weight: bold;
}

