/*jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net>
  Additional styles added 2008 by Arvada Marketing LLC <info@arvadamarketing.com>*/

/*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).*/
	
.jqmWindow {
  display: none;
  position: fixed;
  top: 13%; /* changed from 17% */
  left: 50%;
  margin-left: -260px;
  width: 520px;
  height: 460px;
}
#jqmWrapper {
  position: relative;
  z-index: 3001;
  width: 510px;  
  height: 450px;
  border: solid 5px #4B5BA9;
  color: #333;
}
.jqmOverlay {
  background-color: #000;
  /*+position: absolute !important; /* IE7 hack */
}
/*Style for Close button*/
.jqmClose {
  position: absolute;
  top: 0;
  right: 0;
}
#jqmContent p {
  position: relative;
  z-index: 3002;
  top: 116px;
  _width: 270px;
  padding: 0 25px;
  _padding: 0 0 0 25px;
  line-height: 130%;
  color: #EEEEEE;
}
#jqmContent p a {
  position: relative;
  top:22px;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  color: #EEEEEE;
  text-decoration: underline;
}
.popContent {
  height: 380px;
  overflow: auto;
}
.popContent h3 {
  margin: 15px 0 6px 0;
}

/*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 positioning 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');
}

