                
.xdialog-modal-container {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1005;
}
/* For IE6, which doesn't understand position: fixed. */
* html .xdialog-modal-container {
  position: absolute;
}
/* Semi-transparent overlay screen that covers the entire page. */
.xdialog-screen {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.xdialog-box {
  text-align: left;
  padding: 10px;
  margin: auto;
  position: relative;
  width: 400px;
  color: #000000;
  border: 2px solid #CCCCCC;
  background-color: #EFEFEF;
}
.xdialog-close {
  float: right;
  cursor: pointer;
  margin: -8px -8px 8px 5px;
  width: 12px;
  height: 12px;
  text-align : center; 
  font-weight: bold;
  font-size: 13px;
  text-transform: lowercase;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 8px;
  color: #000000;
}
* html .xdialog-close {
  width: 22px;
}
.xdialog-title {
  font-size: 80%;
  font-weight: bold;
  margin-top: -5px;
  margin-bottom: 10px;
  color: #000000;
}