/* 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). */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 40px;
    left: 50%;
    
    margin-left: -300px;
    width: 750px;
    
    background-color: #fff;
    color: #333;
    border: 1px solid #BBC2D3;
    padding: 0px;
    font-family: Arial, sans-serif;
    font-size: 12px; 
}

.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 .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 1000) + 'px');
}

.jqmHeader { 
  padding-top: 6px;
  padding-left: 6px;
  height: 20px;
  background: #D3DBEE;
  color: #2C60A2;
  border-bottom: 1px solid #BBC2D3;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;    
}


* html .jqmHeader {
height: 26px;
    width: 756px;
}

.jqmClose {
  float: right;
  position: absolute; 
  top: 5px;
  right: 6px;
  font-size: 10px;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
  background: #80acd3;
  padding: 2px 3px;  
}

.jqmLogo {
  text-align: right;
  padding: 20px 20px;
}	

.jqmImage {
  text-align: center;
  padding: 0px 20px;
}

.jqmContent {
  margin: 20px 20px;
  font-size: 11px;
  font-weight: normal;  
  height: 200px;
  overflow: auto;
padding-right: 5px;
}	
  
.jqmContent h1 {
  font-size: 13px;
  font-weight: bold;   
  margin-bottom: 18px; 
}
