/* 
 * 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: .70;
    z-index: 1000000;
}
#popupBlock {
    display: none;
    float: left;
    position: fixed;
    top: 50%;
    left: 60%;
    z-index: 1000001;
}

/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
    position: absolute;
}
*html #popupBlock {
    position: absolute;
}