﻿/*  
* 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: #000;	
	position: fixed; 	
	left: 0; 	
	top: 0;	
	width: 100%; 
	height: 100%;	
	opacity: .35; /*revert to .70 for default behaviour*/
	z-index: 1000000;
}

#popupBlock {	
	display: none;	
	background-color: #FFFFFF;	
	float: left;	
	position: absolute;	/*revert to fixed for default behaviour*/
	top: 400px; /*revert to 50% for default behaviour*/ 	
	left: 50%;	
	z-index: 1000001;
}

/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {	
	position: absolute;
}
*html #popupBlock {	
	position: absolute;
}