/*******************************************************************************
 * Description : jqModal style configuration
 * Date        : 20090428
*******************************************************************************/
.jqmWindow {
  display: none;
  position: fixed;
  top: 17%;
  left: 55%;
  margin-left: -300px;
  width: 500px;
  background-color: #fff;
  color: #333;
  border: 5px solid #fff;
}

.jqmOverlay {
  background-color: #000;
  +position:absolute !important;
}

* html .jqmWindow {
  position: absolute;
  top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}