.jqmWindow {
  display: none;

  position: fixed;
  top: 20%;
  left: 50%;

  width: 400px;
  margin-left: -200px;

  background-color: #fff;
  color: #333;
  border: 3px solid #efefef;
  padding: 15px;
}

.jqmWindow h2 {
  font-size: 16px;
  padding: 5px 0px !important;
}

.jqmWindow p {
  padding: 0px !important;
}

.jqmWindow div.gsom-optin-form {
  padding: 10px;
}

a.jqmClose {
  font-size: 0.9em;
  text-decoration: none;
}

.jqmOverlay { 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 .jqmWindow {
  position: absolute;
  top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}