@charset "utf-8";
.overlay{
	position:absolute;
	top:0;
	left:0;
	width:1024px;
	height:900px;
	z-index:50;
	background-color:#000;
	-moz-opacity: 0.7;
	opacity:.70;
	filter: alpha(opacity=70);
	text-align: center;
	vertical-align: middle;
}
/*this is what we want the div to look like
when it is not showing*/
.loading-invisible{
	/*make invisible*/
	display:none;
}

/*this is what we want the div to look like
when it IS showing*/
.loading-visible{
	/*make visible*/
	display:block;

	/*position it 200px down the screen*/
	position:absolute;
	top:200px;
	left:0;
	width:100%;
	text-align:center;

	/*in supporting browsers, make it
	  a little transparent*/
	background:#000;
	filter: alpha(opacity=75); /* internet explorer */
	-khtml-opacity: 0.75;      /* khtml, old safari */
	-moz-opacity: 0.75;       /* mozilla, netscape */
	opacity: 0.75;           /* fx, safari, opera */
	border-top:0px solid #ddd;
	border-bottom:0px solid #ddd;
	z-index:50;
}
