#dialogOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 20000;
  background-color: #000;
}
#dialogContainer {
  position: fixed;
  overflow: hidden;
  z-index: 20001;
  left: 50%;
  top: 50%;
  
  /*
  -moz-box-shadow: 0px 0px 15px #000;
  -webkit-box-shadow: 0px 0px 15px #000;
  box-shadow: 0px 0px 15px #000;
  */
}
#dialogContent {
  position: relative;
  padding: 10px;
  background-color: white;
  overflow: auto;
}
#dialogHeader {
  background-color: #999999;
  color: white;
  text-align: left;
  font-size: 17px;
  padding: 12px 37px 8px 10px;
}
#dialogCloseButton {
  position: absolute;
  z-index: 100;
  right: 7px;
  top: 5px;
  background: transparent url('/img/dialogClose.png') no-repeat;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
#dialogCloseButton:hover {
  background-position: bottom;
}
