/*
 * 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 {  color:#bbb; background-color: #fff; border:0; }
#simplemodal-container .simplemodal-data { padding:8px; }
#simplemodal-container .simplemodal-data iframe { 
	width: 100% !important; 
}

#modalOverlay {
  height:100%; 
  width:100%;
  position:fixed; 
  left:0;
  top:0;
  z-index:9999;
  background-color:#000;
  cursor:wait;
}

#simplemodal-container a.modalCloseImg {
  background:url(../img/x.png) no-repeat; 
  width: 44px; 
  height: 44px; 
  display: inline; 
  z-index: 10000; 
  position: absolute; 
  top: -22px; 
  left: 828px; 
  cursor: pointer;
}