/* 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). */
@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  top:0;
  left:0;
}	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 75px;
    left: 50%;
    
    margin-left: -400px;
    width: 800px;
	height: auto;
    
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #dedede;
    padding: 12px;
	overflow:auto;
}
.jqmWindow #chq, #pp {
	display:none;
	width:400px;
    background-color: #000000;
    color: #ffffff;
}
.jqmWindow h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	/*color:#6A8243;*/
	color:#ffffff;
	text-align:left;
}
.jqmWindow p{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:justify;
	line-height:18px;
	color:#ffffff;
	padding:0 25px 0 0;
}
.jqmWindow blockquote{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:justify;
	line-height:18px;
	color:#ffffff;
	padding:0 50px 0 50px;
}
.jqmWindow a,a:visited{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:18px;
	color:#ffffff;
}
.jqmWindow a:hover{
	font-size:12px;
	color:#dedede;
}

.jqmWindow table {
	width:800px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:justify;
	color:#ffffff;
	padding:0 50px 0 50px;
}

/* Not hidden */
.jqmWindowNotHidden {  
    margin-top: 60px;
    margin-left: 175px;
    
    width: 475px;
    height: 525px;
    
    color: #0000;
    padding: 12px;
	overflow:auto;
}
.jqmWindowNotHidden #chq, #pp {
	display:none;
	width:500px;
    color: #000000;
}
.jqmWindowNotHidden h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	/*color:#6A8243;*/
	color:#000000;
	text-align:left;
}
.jqmWindowNotHidden p{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:justify;
	line-height:18px;
	color:#000000;
	padding:0 25px 0 0;
}
.jqmWindowNotHidden blockquote{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:justify;
	line-height:18px;
	color:#000000;
	padding:0 50px 0 50px;
}
.jqmWindowNotHidden a,a:visited{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:18px;
	color:#000000;
}
.jqmWindowNotHidden a:hover{
	font-size:12px;
	color:#dedede;
}

.jqmWindowNotHidden table {
	width:450px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:justify;
	color:#000000;
	padding:0 50px 0 50px;
}



.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) / 100) + 'px');
}