/* ---------------------------------------- */
/*
 * SimpleModal Basic Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */
#basic-modal-content {
  display: none;
}

/* Overlay */
#simplemodal-overlay {
  background-color: #000;
}

/* Container */
#simplemodal-container {
  height: 450px;
  width: 800px;
  max-width: 90%;
  max-height: 90%;
  background-color: #fff;
  padding: 11px;
}

#simplemodal-container .simplemodal-data, #simplemodal-container iframe {
  height: 100%;
  width: 100%;
}

#simplemodal-container a.modalCloseImg {
  color: #ddd;
  background: url(../images/modal/x.png) no-repeat;
  width: 25px;
  height: 29px;
  display: inline;
  z-index: 3200;
  position: absolute;
  top: -15px;
  cursor: pointer;
  right: -16px;
}
