/* 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: 20%;
    left: 50%;
    margin-left: -300px;
    width: 600px;
    color: #333;
}

.jqmWrapper { position:relative; border:1px solid #333; }
.jqmContent { padding:10px; background:#fff; }

.jqmOverlay { background-color: #000; }

.jqmClose { cursor: pointer; color:#fff; position:absolute; top:0;right:8px; font:normal 11px/22px Arial; }

.jqmLoading { text-align:center; font-size:11px; position:fixed; width:250px; height:30px; padding: 5px 0; margin-left:-150px; left:50%; top:50%; margin-top:-20px; background:#fff url(/img/ajax-loader.gif) no-repeat bottom center; font-weight:bold;}

/* 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');
}

.jqmHeader { position:relative; height:22px; padding:4px 8px; background:#505050; }
.jqmHeader h2 { border:none; color:#fff; background:none; font:bold 16px/22px Arial; letter-spacing:normal; padding:0; margin:0; }

.jqmContent h2 { display:none; }


.jqmWindow .b                     { background:url(/img/facebox/b.png); }
.jqmWindow .tl                    { background:url(/img/facebox/tl.png); }
.jqmWindow .tr                    { background:url(/img/facebox/tr.png); }
.jqmWindow .bl                    { background:url(/img/facebox/bl.png); }
.jqmWindow .br                    { background:url(/img/facebox/br.png); }
.jqmWindow .tl,
.jqmWindow .tr,
.jqmWindow .bl,
.jqmWindow .br                    { height:10px; width:10px; overflow:hidden; padding:0; }

.jqmWindow form label { width:105px; padding-left:10px; }
.jqmWindow form .error-message { margin-left: 125px; }
.jqmWindow form .comment { margin-left: 125px; }
.jqmWindow div.submit { border-top:1px solid #ccc; padding-top:10px; margin-top:10px; }

.jqmWindow .pmsg { font-size:11px; font-weight:bold; margin-top:4px; }