﻿#modal_backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  overflow: hidden;
  background-image: url(../images/overlay.png);
}

#modal_popup {
  display: none;
  height: 0px;
  width: 0px;
  position: fixed;
  top: 50%; left: 50%;
  z-index: 9999;
  background-color: #eee;
  white-space: nowrap;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12pt;
  -webkit-box-shadow: 0px 0px 20px #000;
  -moz-box-shadow: 0px 0px 20px #000;
  box-shadow: 0px 0px 20px #000;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

#modal_popup_title {
  position: absolute;
  top: 10px;
  left: 15px;
  right: 15px;
  height: 25px;
  color: #E2600E;
  font-weight: bold;
}

#modal_popup_body {
  display: none;
  clear: both;
  position: absolute;
  top: 35px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  overflow: hidden;
  background-color: #fff;
}

#modal_iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#modal_popup_close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -35px;
  margin-right: -35px;
  height: 50px;
  width: 50px;
  border: 0 none;
  background-image: url(../images/close.png);
}

#modal_popup_close > img {
  border: 0 none;
}
