
/* 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: 50px;
    left: 50%;
    
    margin-left: -325px;
    width: 651px;
    
    color: #000 ;
    text-align:left;
    font-size:12px;  
}
    .jqmWindowNarrow {
        width:392px;
        margin-left: -196px;
    }

#modal-pop-top {
	position:absolute;
	top:-36px;
	left:-31px;
	width:651px;
	height:36px;
	background: url("/UI/images/bg_modal_651_top.png") no-repeat top left;
}
	* html #modal-pop-top {
		zoom:1;
		background:none;
		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/UI/images/bg_modal_651_top.png", sizingMethod="crop");
	}
	
	.jqmWindowNarrow #modal-pop-top {
	    width:392px;
	    left:-41px;
	    background: url("/UI/images/bg_modal_392_top.png") no-repeat top left;
	}
	    * html .jqmWindowNarrow #modal-pop-top {
	        zoom:1;
		    background:none;
	        filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/UI/images/bg_modal_392_top.png", sizingMethod="crop");
	    }
#modal-pop-bot {
	position:absolute;
	bottom:-36px;
	left:-31px;
	width:651px;
	height:36px;
	background: url("/UI/images/bg_modal_651_bot.png") no-repeat top left;
}
	* html #modal-pop-bot {
		zoom:1;
		background:none;
		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/UI/images/bg_modal_651_bot.png", sizingMethod="crop");
	}
	.jqmWindowNarrow #modal-pop-bot {
	    width:392px;
	    left:-41px;
	    background: url("/UI/images/bg_modal_392_bot.png") no-repeat top left;
	}
	    * html .jqmWindowNarrow #modal-pop-bot {
	        zoom:1;
		    background:none;
	        filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/UI/images/bg_modal_392_bot.png", sizingMethod="crop");
	    }

.jqmContent {
	padding: 0 51px 0 31px;
	width:569px;
	background: url("/UI/images/bg_modal_651_mid.png") repeat-y top left;
}
	* html .jqmContent {
		zoom:1;
		background:none;
		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/UI/images/bg_modal_651_mid.png", sizingMethod="scale");
	}
	.jqmWindowNarrow .jqmContent {
	    padding: 0 42px 0 41px;
	    width:309px;
	    background: url("/UI/images/bg_modal_392_mid.png") repeat-y top left;
    }
        * html .jqmWindowNarrow .jqmContent {
		zoom:1;
		background:none;
		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/UI/images/bg_modal_392_mid.png", sizingMethod="scale");
	}

.jqmContentInner {
	position:relative; 
	width:569px;
}
    .jqmWindowNarrow .jqmContentInner {
	    width:309px;
    }



.jqmOverlay { background-color: #674a1a; }

/* 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(5 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

.jqmWindow a.jqmClose {
	display:block;
	width:34px;
	height:0;
	padding-top:34px;
	overflow:hidden;
	position:absolute;
	top:-28px;
	right:-48px;
	cursor:pointer;
	background:url("/UI/images/btn_modalclose.png") no-repeat top left;
}
    .jqmWindowNarrow a.jqmClose {
	    right:-38px;
    }
.jqmWindow a#print {
	display:block;
	height:0;
	padding-top:28px;
	overflow:hidden;
	position:absolute;
	z-index:100;
	bottom:0;
	left:20px;
	width:76px;
	background:url("../images/btn_print.gif") no-repeat top left;
}
    .jqmWindowNarrow a#print {
        display:none;
    }
