
/*== [ spinner, mask, and dialog box (for popups)                 ] ==*/

#spinner {
   width: 128px;
   height: 128px;
   overflow: hidden;
   background: url('spinner.gif') no-repeat center #FFF;
}

#mask {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);  /* You can make this slightly transparent black rgba(0,0,0,.3); or transparent */
  top: 0;
  left: 0;
  z-index: 1000;
}

#diag {
  display: none;
  position: fixed;
  top: 100px;
  left: 100px;
  min-width: 64px;
  min-height: 64px;
  border: 1px solid #000;
  background: #FFF;
  border-radius: 7px;
  padding: 5px;
  z-index: 1001;
}

/*== [ FIN:PUBLIC                                                 ] ==*/
