/* generic popups */
div.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(153, 153, 153, 0.5);
  background-image: url(../images/mask.png);
  background-repeat: repeat;
  z-index: 1;
}

div.popup > form > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  left: 50%;
  top: 50%;
  border: 1px #666666 solid;
  background-color: white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

div.popup label {
  font-weight: bold;
}

div.popup td.right, div.popup th.right {
  padding-right: 10px;
}

div.popup td.left, div.popup th.left {
  padding-left: 10px;
}

div.popup tr.popupspacer {
  height: 1px;
  visibility: hidden;
}

div.popup tr.popupspacer > td {
  background-color: #666666;
}

div.popup .popupheader {
  background-color: #666666;
  color: white;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.popup .popupbuttons {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.popup .popupbuttons input, div.popup .popupbuttons button {
  margin-left: 6px;
}

div.popup .popupbuttons input:last-child, div.popup .popupbuttons button:last-child {
  margin-right: 6px;
}

div.popup .popupbuttons .popupbuttonspacer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

div.popup .popupbutton {
  width: 80px;
}

div.popup .popupbody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  border-bottom: 2px #EEEEEE solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.popup .popupbody input[type=text] {
  font-size: 11px;
}

div.popup .popuplist {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  border-bottom: 2px #EEEEEE solid;
}

div.popup .popuplist table {
  width: 100%;
}

div.popup .popuplist td {
  text-align: left;
}

div.popup .popuplist td.right {
  text-align: right;
}

div.popup .popupmessage {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px #EEEEEE solid;
}

div.popup .popupmessage ul {
  text-align: left;
  margin: 0;
}
/*# sourceMappingURL=popups.css.map */