/* Окошко загрузки
=======================================================================================*/
div#loading {
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -30px 0 0 -75px;
  z-index:255;
  width: 150px;
  height: 50px;
  border: 1px solid black;
}

* html div#loading {
  position: absolute;
  top: expression(parseInt(document.documentElement.clientHeight/2) + document.documentElement.scrollTop + 'px');
}

div#loading div {
  width: 150px;
  height: 50px;
  background-color:#555;
  opacity:.50;
  filter: alpha(opacity=50);
}

div#loading img {
  position: absolute;
  left: 35px;
  top: 20px;
}

* html div#loading img {
  display: none;
}

div#loading span {
  display: none;
  position: absolute;
  top: 18px;
  left: 38px;
  height: 20px;
  font-weight: bold;
  color: white;
  font-size: 14px;
}

* html div#loading span { 
  display: block;
}


/* Область дебага
=======================================================================================*/
#debug {
  border: 1px solid #FFF;
  margin: 0; 
  padding: 0; 
  color: red;
}