/*	Styles for background.js
*/

/*	Transparent layer designed to block interaction 
		with z-index:0 (default depth) objects.
	Requires background: url(image.gif) 0 0 repeat;
	Objects that are to have interation must be at
		z-index:2 or more
*/
div.divBackground {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;		/*Above the page*/
	/*display:;		/*do NOT hide here*/

	/*width:;			/* Specified by js */
	/*height:;		/* Specified by js */
	/*background:;	/* Specified by js */

	/*for testing*/
	/*border-left-width: 3px solid black;*/
}