/* 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: 18%;
    left: 50%;
    width: 400px;
    margin-left: -200px;
    padding: 20px 20px;
    background: #fff;
    border: 5px solid #aaa;
    color: #333;
}

.jqmOverlay { background-color: #000; }

a.jqmClose {position: absolute; display: block; top: 0; right: 0; padding: 0 2px 3px 5px; background: #aaa; color: #fff; font-weight:bold; text-decoration:none}
a.jqmClose:hover {color: #426778}

.jqmWindow h3 {text-align: center}
.jqmWindow h3 strong {color: #87a8b7; font-weight: normal;}
.jqmWindow p {}
.jqmWindow p.create_now {margin: 2px 0 12px; padding: 7px 0; border: 2px solid #ddd; border-left: 0; border-right: 0}

.jqmWindow table {border: 0px dotted red;}
.jqmWindow table tr td {padding: 0 0 4px}
.jqmWindow form input.button {margin: 6px 0 0px}


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