/* 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: absolute;
    left: 25;
    top: 25;
    
    margin: auto;
    width: 600px;
    
    background-color: #FFF;
    color: #333;
    border: 1px solid black;
}
.jqmWindow .header { position:relative; top:-1px; left: 0; height:23px; width:100%; border-top:1px solid black; background-color:#0000CC; cursor: pointer;}
.jqmWindow .linkbar { position:relative; top:-1px; left: 0; width:100%; background-color:#CCC; }
.jqmWindow .header p {position:absolute; top:-15px; padding-left:8px; color:#fff; font-size:1.1em; font-weight:bold; }
.jqmWindow .modalCloseX { text-decoration:none; font-weight:bold; font-size:1.1em; position:absolute; top:-1px; right:5px;; color:#ddd; cursor:pointer;}
.jqmWindow .modalCloseX:hover { color:#000; }
.jqmWindow .message {color:#333; text-align:center; margin:0; padding:5px 4px; margin-top:10px;font-size:12px;}
.jqmWindow .editor {position:relative; top:6px; color:#333; text-align:center; margin:0 14px 0 0; padding:5px 4px 4px 4px; font-size:12px;}
.jqmWindow .buttons { position:relative; padding:10px 2px 10px;} 
.jqmWindow .buttons div {float:right; margin-left:8px; padding-left:20px; padding-right:20px; height:26px; color:#666; font-weight:bold; text-align:center; background:url(/v4.management/content/jQuery/art/jquery_confirm/button.gif) repeat-x; border:1px solid #bbb; cursor:pointer;} 

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