/* CSS Document */

/* Disables scroll bars for html layer */
html {
    overflow: hidden;
}
/* Sets margins and padding to zero and disables scroll bars for body layer */
body {
	margin: 0;
    padding: 0;
	overflow: hidden;
}
/* 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;	
}

/* 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: hidden;			
	z-index: -1;
	background-color: #424242;
}

/* Styles text for 'Flash Payer Required' message */
#backdropjs_background p {
	color: #999999;
	font-weight: bold;
	padding: 5px 0px 0px 10px;
}