/* 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 (via jqModal.js). */

#mySavedProps {
  display: none;
  position: fixed;
  top: 25%;
  left: 50%;
  margin-left: 140px;

  background: #2e3445;
  border: 3px solid #242e6a;
  padding: 10px;
  width: 195px;
}
#mySavedProps strong {
  font-size: 1.2em;
  color: #fff;
}
#mySavedProps .insides {
  background-color: #fff;
  color: #000;
  padding: 10px;
  margin-top: 4px;
}
#mySavedProps .insides .num {
  font-size: 1.2em;
  font-weight: bold;
}

#myRegister {
  display: none;
  position: fixed;
  top: 9%;
  left: 50%;
  margin-left: -300px;

  background: url(../images/mylogin_jeff.gif) top right no-repeat #2e3445;
  border: 3px solid #242e6a;
  padding: 10px;
  width: 380px;
}
#myRegister big {
  font-size: 1.2em;
  color: #fff;
  font-weight: bold;
}
#myRegister .normal {
  font-size: .85em;
  line-spacing: 1.1;
  color: #d5d3d3;
}
#myRegister .normal a {
  color: #ffb400;
}
#myRegister .insides {
  background-color: #fff;
  color: #000;
  padding: 10px;
  margin-top: 4px;
}
.bigBlue {
  color: #2270da;
  font-size: 1.6em;
  margin: 20px 0 20px 5px;
  text-align: left;
  width: 330px;
}
.disclaim {
  margin: 10px 5px;
  font-size: .75em;
  color: #262626;
}

.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
  width: expression(this.parentNode.offsetWidth+'px');
  height: expression(this.parentNode.offsetHeight+'px');
}

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