/* CSS Document */

/* Disables scroll bars for html layer */
html {
    overflow: active;
	/*overflow:hidden;*/
}
/* Sets margins and padding to zero and disables scroll bars for body layer */
body {
	margin: 0;
	padding: 0;
	 overflow: active;
	 /*overflow:hidden;*/
	background-color: #333333;
}
/* IMPORTANT: Above style parameters must overide your existing site CSS */

/* Creates foreground layer at full browser size with scroll bars */
#backdropjs_foreground {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: auto;
	z-index: -1;
}

/* Creates fixed background layer at full browser size and sets background color */
#backdropjs_background {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;	
	height: 100%;
	margin: 0;	
	padding: 0;	
	 overflow: active;	
    /*overflow:hidden;*/	 
	z-index: -1;
	background-color: #333333;
}

/* Styles text for 'Flash Payer Required' message */
#backdropjs_background p {
	color: #999999;
	font-weight: bold;
	padding: 5px 0px 0px 10px;
}

