﻿/* shared CSS elements.  some may need customization on a site by site basis. */

/* --------------------------------- site exit pop up - this just sets up the basic positioning; please customize them for individual sites ------- */
#exitconfirm {
	background: #fff;
	border: 1px solid #060;
	margin-left: -180px;
	max-width: 400px;
	padding: 10px;
	position: fixed;
	top: 25%;
	left: 50%;
	width: 360px;
	z-index: 3000;
	}
	* html #exitconfirm { position:absolute; }


/* borrowed from jqModal base styling 
	by Brice Burgess <bhb@iceburg.net> */

/* setting this background controls the 'greyed out' effect when the modal appears */
.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');
}


/* base thickbox styling, so that it's there if needed. based on Maci styles. */

#TB_window {
    background-color:#fff;
    position:fixed; left:50%; top:50%;
    }
#TB_load {
    height:13px;
    margin:-7px 0 0 -104px;
    position:fixed; left:50%; top:50%;
    width:208px;
    z-index:1001;
    }
#TB_overlay {
    background-color:#000;
    height:100%;
    opacity:0.5;
    position:fixed; left:0; top:0;
    width:100%;
    z-index:1000;
    }
    
/* allows the sitecore webedit ribbon iframe to push down the rest of the site */
#master-wrap { padding:2em 0 0; position:relative; }