/* 
 * jQuery interstitial plugin v1.0
 * jquery.interstitial.css
 *
 * https://github.com/brettdewoody/jQuery-Interstitial
 * 
 * Brett DeWoody
 * Digital Wax Works - Bozeman, Montana
 * http://www.DigitalWaxWorks.com
 * Created: Feb 4, 2011
 * Updated: Feb 4, 2011
 */

#fade { 
	display: none;
	background-color: #ffffff;
	position: fixed; 
	left: 0; 
	top: 0;
	width: 100%; height: 100%;
	opacity: .8;
	z-index: 1000000;
}
#popupBlock {
	display: none;
	background-color: #FFFFFF;
	float: left;
	position: fixed;
	top: 50%; 
	left: 50%;
	z-index: 1000001;
}

/*--Making IE6 Understand Fixed Positioning--
*html #fade {
	position: absolute;
}
*html #popupBlock {
	position: absolute;
}
*/