/*------- Modal --------*/
.modal_window {
    display: none;
    position: fixed;
    top: 28%;
    left: 52%;
    margin-left: -300px;
    width: 530px; 
    color: #333;
    padding: 0;
}
.modal_window .jqmClose {
	width: 30px;
	height: 30px;
	position: absolute;
	top: -10px;
	right: -10px;
	background: url(../images/modal/modal_close.png) no-repeat;
	text-indent: -9999px;
}
.modal_window .modal_top {
	width: 530px;
	height: 10px;
	float: left;
	background: url(../images/modal/modal.png) no-repeat;
}
.modal_window .modal_content {
	width: 500px;
	padding: 5px 15px 0px 15px;
	float: left;
	color: #666;
	background: #fff;
}
.modal_window .modal_content p.text_only {
	font-size: 16px;
	margin: 15px 0 15px 0;
}
.modal_window .modal_content .headline {
	width: 500px;
	float: left;
	font-size: 22px;
	font-weight: bold;
	color: #666;
	margin: 0 0 15px 0;
	padding: 0 0 8px 0;
	border-bottom: 1px dotted #eee;
}
.modal_window .modal_bott {
	width: 530px;
	height: 10px;
	float: left;
	background: url(../images/modal/modal.png) no-repeat bottom center;
}
/*- Modal Form -*/
.modal_window .modal_content dl {
	width: 500px;
	float: left;
	padding: 15px 0 15px 0;
	margin: 0 0 15px 0;
	border-bottom: 1px dotted #eee;
}
.modal_window .modal_content dl dt {
	width: 120px;
	float: left;
	font-weight: bold;
	color: #888;
	font-size: 15px;
	padding: 4px 0 0 0;
	clear: both;
}
.modal_window .modal_content dl dd {
	width: 340px;
	float: right;
	color: #989898;
	font-size: 12px;
}
.modal_window .modal_content dl dd.sep {
	width: 500px;
	float: left;
	margin: 10px 0;
}
.modal_window .modal_content dl dd .field {
	width: 250px;
	padding: 5px;
	color: #777;
	margin: 0 0 3px 0;
	font-size: 14px;
}
.modal_window .modal_content dl dd .modal_error {
	margin: 2px 0 0 1px;
}
.modal_window .modal_content .form_submit {
	float: right;
	width: 120px;
	height: 35px;
}
.modal_window .modal_content .success {
	width: 500px;
	height: 30px;
	padding: 10px 0 0 0;
	font-size: 20px;
	text-align: center;
	display: none;
	color: #4083a9;
}
.modal_window .modal_content hr {
	width: 500px;
	height: 1px;
	float: left;
	border: none;
	border-bottom: 1px dotted #eee;
	background: none;
	margin: 10px 0 15px 0;
}
/*- Modal Form double -*/
.modalform_left {
	width: 230px;
	float: left;
}
.modalform_right {
	width: 230px;
	float: right;
}
.modalform_left div, .modalform_right div {
	width: 230px;
	margin: 0 0 10px 0;
	padding: 0;
	float: left;
	position: relative;
}
.modalform_left div label, .modalform_right div label {
	width: 230px;
	float: left;
	color: #444;
	margin: 0 0 5px 0;
	font-weight: bold;
}
.modalform_left div input, .modalform_right div input {
	width: 218px;
	padding: 4px;
	float: left;
	font-size: 15px;
	color: #888;
}
.modalform_left div input.small, .modalform_right div input.small {
	width: 55px;
	margin: 0 15px 0 0;
}
.modalform_left div input.medium, .modalform_right div input.medium {
	width: 138px;
}
.modal_window .modal_content #validation_errors, .modal_window .modal_content .payment_error {
	width: 480px;
}
.left_info {
	width: 330px;
	float: left;
	font-size: 11px;
}
.jqmOverlay { background-color: #111; }
* html .modal_window {
	position: absolute;
	top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}