@charset "utf-8";

#dialog_loading {
  width: 250px;
  height: 75px;
  clear: both;
  border-radius: 5px;
  background-color: #ffffff;
  border: solid 1px #808080;
  position: fixed;
  display: none;
  padding: 10px;
}

#dialog_uploading {
  width: 250px;
  height: 70px;
  clear: both;
  border-radius: 5px;
  background-color: #ffffff;
  border: solid 1px #808080;
  position: fixed;
  display: none;
  padding: 10px;
}

#dialog_alert {
  width: 250px;
  height: 100px;
  clear: both;
  border-radius: 5px;
  background-color: #ffffff;
  border: solid 1px #808080;
  position: fixed;
  display: none;
  padding: 10px;
}

.dialog_close {
  color: #808080;
  background-color: #ffffff;
  padding-left: 7px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: solid 1px #808080;
  font-size: 14pt;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  left: 225px;
  top: -25px;
  margin-bottom: -25px;
}
.dialog_close:hover {
  color: red;
}

.dialog_alert_area {
  width: 230px;
  height: 70px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}

.mask {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100% auto;
  background-color: rgba(0, 128, 255, 0.5);
  z-index: 1000;
  display: none;
}

