/* 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: 17%;
    left: 50%;
    
    margin-left: -320px;
    width: 600px;
    
    background-color: #fff;
    color: #14123C;
    border: 5px solid #14123C;
    padding: 25px;
	min-height:100px;
	z-index:9999;
}
@media only screen and (min-width: 700px) {
	.popuptext_div .width_2thirds {
		width: 52%;
	}
	.popuptext_div .width_1third {
		width: 40.3%;
	}
}

@media only screen and (max-width: 700px) {
	.jqmWindow {
		margin-left: -220px;
		width: 400px;
	}
	.popuptext_div .width_1third, .popuptext_div .width_2thirds{
		width:auto;
		float:none;
		margin-right: 0px;
	}
}


@media only screen and (max-width: 500px) {
	.jqmWindow {
		margin-left: -170px;
		width: 300px;
	}
}
@media only screen and (max-width: 400px) {
	.jqmWindow {
		margin-left: -120px;
		width: 200px;
		top: 2%;
	}
}



.jqmOverlay { background-color: #fff; }

/* 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');
}
.closepopup_img{
	position:absolute;
	right:-5px;
	top:-5px;
	z-index:9999;
}


.popuptext_div .formLabel_div{
	display:none;
}
.popuptext_div label{
	font-size: 14px;
	line-height: 18px;
}
.popuptext_div .formsubsubtitle_div{
	background-color: transparent;
	font-size: 14px;
	line-height: 16px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.popuptext_div .width_1third .formRow2_div{
	padding-top: 0px;
}
.popuptext_div .submitbutton{
	float:none;
	margin-right:0;
	margin-left:0;
	background-color: #CD1A4A;
	color: #fff;
	border-color: #CD1A4A;
	text-transform: uppercase;
	width:100%;
	text-align: center;
}