/* jqModal base Styling courtesy of;
  Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
  the Window's z-index value will be set to 3000 by default (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */

.nowpublic-scan-window {
  display: none;

  position: fixed;
  top: 5%;
  left: 50%;

  margin-left: -425px;
  width: 840px;

  background-color: #FFF;
  color: #333;
  padding: 15px 15px 15px 0;
  z-index: 24000;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.nowpublic-scan-window-create {
  width: 1000px;
  margin-left: -500px;
}

.nowpublic-scan-window a.nowpublic-scan-modal-close {
  display: block;
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: -9999px;
  background: transparent url(../../images/icons_30x30.png) top left no-repeat;
  border-style: none;
}
.nowpublic-scan-modal-overlay { background-color: #000; }

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .nowpublic-scan-window {
  position: absolute;
  top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
