/*------- Modal --------*/
.modal_window {
    display: none;
    position: fixed;
    top: 30%;
    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(/public/images/modal_close.png) no-repeat;
	text-indent: -9999px;
}
.modal_window .modal_top {
	width: 530px;
	height: 10px;
	float: left;
	background: url(/public/images/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 .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(/public/images/modal.png) no-repeat bottom center;
}
/*- Modal Form -*/
.modal_window .modal_content dl.modal_form {
	width: 500px;
	float: left;
	padding: 15px 0 0 0;
	border-top: 1px solid #CCC;
}
.modal_window .modal_content dl.modal_form dt {
	width: 120px;
	float: left;
	font-weight: bold;
	color: #888;
	font-size: 15px;
	clear: both;
}
.modal_window .modal_content dl.modal_form dd {
	width: 340px;
	float: right;
	color: #989898;
	font-size: 12px;
}
.modal_window .modal_content dl.modal_form dd .field {
	width: 250px;
	padding: 2px;
	color: #777;
	margin: 0 0 3px 0;
	font-size: 14px;
}
.modal_window .modal_content dl.modal_form dd .modal_error {
	margin: 2px 0 0 1px;
}
.modal_window .modal_content dl.modal_form dd textarea {
	width: 332px;
	height: 100px;
	padding: 2px;
	color: #777;
	margin: 0 0 3px 0;
	font-size: 14px;
}
.modal_window .modal_content dl.modal_form dd.separator {
	width: 500px;
	float: left;
	border-bottom: 1px dotted #eee;
	margin: 15px 0 15px 0;
}
.modal_window .modal_content .submit {
	float: right;
	width: 120px;
	height: 30px;
}
.modal_window .modal_content .success {
	width: 500px;
	height: 30px;
	padding: 10px 0 0 0;
	font-size: 20px;
	text-align: center;
	display: none;
	color: #4083a9;
}
.jqmOverlay { background-color: #000; }
* html .modal_window {
	position: absolute;
	top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}