/*   Всплывающее JavaScript-окно  */
#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#777;
  display:none;
  min-height: 100%;
  margin-bottom: 200px;
  }
#dialog {
  display:none;
  z-index:9999;
  padding:0px;
  background-color:#777;
  color: white;
  border: 1px solid #FFF;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.dialog_close {
	background-color: #111;
	width: 100%;
	font-weight: bold;
	cursor: pointer;
	text-align: right;
	margin: 0px;
	margin-bottom: 10px;
	padding: 0px;
	color:white;
}
