/* 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/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/jqmodal/modalHeader.jpg) no-repeat;
	height:55px;
}
#contentModal .header .close {
	display:block;
	text-indent:-9000px;
	width:27px;
	height:27px;
	position:absolute;
	right:26px;
	top:26px;
	background:url(/images/jqmodal/modalClose.gif) no-repeat;
}
#contentModal .header h2 {
	color:#FFF;
	position:absolute;
	left:160px;
	top:28px;
	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:10px;
	min-height:50px;
}
#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 */
}
