@charset "utf-8";
/* CSS Document */

/*this is what we want the div to look like
when it is not showing*/
div.divloading-invisible{
/*make invisible*/
display:none;
}

/*this is what we want the div to look like
when it IS showing*/
div.divloading-visible{
/*make visible*/
display:block;

/*position it 200px down the screen*/
position:absolute;
top:200px;
left:0;
height:25%;
width:100%;
padding:10px;
text-align:center;

/*in supporting browsers, make it
  a little transparent*/
background:#fff;
opacity:.75;
border-top:1px solid #ddd;
border-bottom:1px solid #ddd;
}