/* 
 * 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;
	background-color: #FFFFFF;
	float: left;
	position: fixed;
	top: 50%; 
	left: 50%;
	z-index: 1000001;
}

/* #close-button {
	background-color: #000;
	height: 25px;
	width: 96.9%;
	padding: 1px 5px 3px 5px;
}

#close-button span {
	float: right;
	color: #fff;
}

#close-button a {
	background: #fff;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	text-decoration: none;
	padding-left: 5px;
} */

#close-button {
  /* display: inline-block; */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  float: right;
  width: 0.75em;
  height: 0.75em;
  position: relative;
  right:-11px;
  top:-11px;
  border: 3px solid #ffffff;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  font: normal 2em/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #050505;
  z-index:200;
}

#close-button::before {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 0.45em;
  height: 0.1em;
  position: absolute;
  content: "";
  top: 0.33em;
  left: 0.155em;
  border: none;
  font: normal 100%/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #ffffff;
  text-shadow: none;
  -webkit-transform: rotateZ(45deg)   ;
  transform: rotateZ(45deg)   ;
}

#close-button::after {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 0.45em;
  height: 0.1em;
  position: absolute;
  content: "";
  top: 0.33em;
  left: 0.155em;
  border: none;
  font: normal 100%/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #ffffff;
  text-shadow: none;
  -webkit-transform: rotateZ(-45deg)   ;
  transform: rotateZ(-45deg)   ;
}

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