/* 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;

    left: 50%;
	
    margin-top: -273px;
    margin-left: -242px;
	
/* hack CSS for IE8 */
	margin-top: -270px\0/;
    margin-left: -242px\0/;
	
    width: 655px;

    color: #000000;
    border: 0px solid black;
    padding: 12px;
    text-align: left;
	top: 50%;
}


/* hack CSS for IE7 */
*+html .jqmWindow {
    display: none;

    position: fixed;

    left: 50%;
	
    margin-top: -262px;
    margin-left: -242px;
	
    width: 655px;

    color: #000000;
    border: 0px solid black;
    padding: 12px;
    text-align: left;
	top: 50%;
}

/*hack CSS for IE6 */
* html .jqmWindow {
    display: none;
    position: fixed;
    left: 50%;
    margin-top: -104px;
    margin-left: -242px;
    width: 655px;
    color: #000000;
    border: 0px solid black;
    padding: 12px;
    text-align: left;
	top: 50%;
}

/* hack CSS for Google Crom */

@media screen and (-webkit-min-device-pixel-ratio:0) {
.jqmWindow {
    display: none;
    position: fixed;
    left: 50%;
    margin-top: -380px;
    margin-left: -242px;
    width: 655px;
    color: #000000;
    border: 0px solid black;
    padding: 12px;
    text-align: left;
	top: 50%;
}}


.jqmOverlay { background-color: #000; }

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