/* jqModal alert CSS courtesy of;
   Alexandre Plennevaux <alexandre@pixeline.be>,
   Brice Burgess <bhb@iceburg.net> */


div.jqmAlert { /* contains + positions the alert window */
  	display: none;
  	position: fixed;
  	top: 17%;
  	left:50%;
 	 width: 620px;
	margin-left:-300px;
	z-index:3000;
}
    
/* 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 div.jqmAlert {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

div.jqmAlertWindow {
  height:600px;
  width: auto;
  margin: auto;
  
  max-width:620px;
  padding: 0 10px 10px;
  
  background:#fff;
  border:4px solid #ccc;
}

div.jqmAlert .jqmClose em{display:none;}
a#shut {
background:transparent url(../images/x.png) 0 0 no-repeat;
width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-18px; cursor:pointer;
}

div.jqmAlertTitle {
	position:relative;
}

div.jqmAlertContent{
  font:11px/14pt arial;
  padding:5px 20px 5px;
  margin:5px;
  letter-spacing:0px;
}
.blueOverlay { background:#000; }
