/* 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: -250px;
    width: 500px;
    
    color: #111935;
    padding: 12px;
}

.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');
}

#contentModal {
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	background:#d4d4d4 url(/images/webfly/jqmodal/modalBg.gif) repeat-x 0 55px;
}
#contentModal .header {
	-moz-border-radius-topleft:10px;
	-moz-border-radius-topright:10px;
	-webkit-border-top-left-radius:10px;
	-webkit-border-top-right-radius:10px;
	background:#053052 url(/images/webfly/jqmodal/modalHeader.jpg) no-repeat;
	height:37px;
}
#contentModal .header .close {
	display:block;
	text-indent:-9000px;
	width:27px;
	height:27px;
	position:absolute;
	right:26px;
	top:16px;
	background:url(/images/webfly/jqmodal/modalClose.gif) no-repeat;
}
#contentModal .header h2 {
	color:#FFF;
	position:absolute;
	left:160px;
	top:18px;
	text-shadow:0px 0px 2px #151129;
	font-style:italic;
	margin:0;
	padding:0;
	font-size:20px;
}
#contentModal .header .error {
	color:#ff1200;
}
#contentModal .header .wrong {
	color:#fe7e00;
}
#contentModal .header .accept {
	color:#aacd5c;
}
#contentModal .content {
	padding:20px;
}
#contentModal .icon {
	float:left;
	width:85px;
	text-align:center;
}
#contentModal .section {
	margin-left:90px;
	background:none;
	border:none;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	margin-bottom:0;
	zoom:0; /* ie6 */
}

#contentModal #contectForm  .field{
	width: 454px;
	margin-bottom: 10px;
}
#contentModal  .button {
	display: block;
	cursor: pointer;
	border: none;
	width: 90px;
	height: 21px;
	background: url(/images/send.png) 0 0 no-repeat; 
	overflow: hidden;
	text-indent: -3000px;
	margin-top: 10px;
}
.en #contentModal  .button {
	background: url(/images/send-en.png) 0 0 no-repeat;
}

