/* 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: 10%;
    left: 40%;
    margin-left: -300px;
    width: 400px;
    background-color: #000;
    border: 3px solid red;
    font-family:verdana;
    font-size:12px;
}

.jqmOverlay { background-color: red; }

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

/*******************************************
 CSS code below this line is courtesy of: 
 - Patrick Harsadi (patrick@harsadi.com) 
********************************************/
.jqmWindow .header{
	padding:5px;
	margin:0;
	color:#000;
	background:#ff9900 url(../images/headbg.png) repeat-x scroll 0%;	
}
.jqmWindow .header h1{
	text-align:left;
	margin:0;
	padding:0;
	font-size:12px;
	font-weight:bold;
	float:left;
}
.jqmWindow .header p{
	margin:0;
	padding:0;
	text-align:right;
}
.jqmWindow .jqmcontent form p{
	margin:0;
	padding:0 0 8px 0;
}
.jqmWindow .jqmcontent{
	padding:10px 0 0 0;
	margin:0;
	height:230px;
	background:url('../images/genie.jpg')  no-repeat center right;
}
.jqmWindow .jqmcontent form,
.jqmWindow .jqmcontent .afterSubmit{
	margin:0;
	padding:0 0 0 10px;
	width:254px;
	color:#fff;
}
.jqmWindow .jqmcontent form input{
    font-family:verdana;
    font-size:12px;
}
.jqmWindow .jqmcontent form textarea{
    font-family:verdana;
    font-size:12px;
	width:230px;
	height:100px;
}
.jqmWindow .error,
.jqmWindow #errorMsg{
	color:red;
}
.jqmWindow #errorMsg{
	display:none;
}
.jqmWindow .spacer{
	clear:both;
	margin:0;
	padding:0;
}