/**
* Окошко загрузки
*/
div#loading {
  display: none;
  position: fixed;
  z-index: 100000;
  right: 20px;
  top: 0;
  width: 78px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  font-style: normal;
  font-size: 11px;
  font-family: Verdana;
  color: #fff;
  background: #535353;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/**
* Ошибки/информация
*/
#err_inf {
  position: fixed;
  right: 0;
  bottom: 0;
  max-height: 100%;
  overflow-y: auto;
  z-index: 10000;
}

#err, #inf {
  box-shadow: 0px 0px 15px #444;
  border-radius: 5px;
  cursor: pointer; 
  font-family: Verdana;
  font-size: 14px;
  line-height: 16px;
  width: 400px;
  color: #000;
  font-style: normal;
  margin: 20px;
}

#err {
  background: #fddbdb;
  border: 5px solid #fddbdb;
}

#inf {
  background: #ebf7f3;
  border: 5px solid #ebf7f3;
}

#err_inf .title {
  line-height: 25px;
  padding: 0 23px;
  font-weight: bold;
}

#err .title { background: #feb1b1; }
#inf .title { background: #70c8a0; }

#err_inf ul {
  margin: 15px 20px 15px 25px;
  list-style-type: circle;
  padding: 0;
}



@media print {
  .noprint {
    display: none;
  }
}