/* 
 * 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: .80;
	z-index: 1000000;
}

#fade a {
    color: #ddd;
    position: absolute;
    right: 20px;
    top:20px;
}

#fade a:after {
    content: "\f00d";
    font-family: FontAwesome;
    padding: 5px;
    border: 5px #999 solid;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-left: 5px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #f00;
    opacity: .80;
    
}
#fade a:hover:after {
    opacity: 1;
}

#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;
}