.MessageBoxWindow {
  width: 600px;
  display: none;
}

.MessageBoxWindow .Error { padding: 5px; background-color: #ffcccc; border: 1px dotted firebrick; }

.MessageBoxContainer {
  background-color: white;
  border: 1px solid #88b3d0;
  color: black;
}

.MessageBoxOverlay { background-color: lightgrey; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
        width: expression(this.parentNode.offsetWidth+'px');
        height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed positioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .MessageBoxWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

.MessageBoxHandle {
/*  cursor: move;*/
  background: url(../i/form-and-grid/th_bg.gif);
  padding: 5px;
  border-bottom: 1px solid #88b3d0;
}

.MessageBoxTitle {
  color: black;
  font-weight: bold;
  display: inline;
}

.divMessageBoxCloseButton {
  float: right;
  margin-top: -16px;
  margin-right: 3px;
}

* html .divMessageBoxCloseButton {
   margin-top: -18px;
   margin-right: 1px;
}

.MessageBoxContent
{
  padding: 14px;
  max-height: 300px;
  overflow: auto;
}

* html .MessageBoxContent {
   height: expression( this.scrollHeight > 300 ? "300px" : "auto" ); /* sets max-height for IE */
}

.MessageBoxButtons
{
  background-color: #f0f0ff;
  padding: 10px 30px 10px 30px;
  border-top: 1px solid #88b3d0;
  text-align: center;
}

.MessageBoxButton
{
  margin: 0 0 0 10px;
  padding: 3px 5px 3px 5px;
  font-size: 12pt;
}
.MessageBoxButton:first-child { margin: 0; }
.MessageBoxButton_Submit { font-weight: bold; }

.MessageBox_Quick { position: fixed; z-index: 77777; top: -3px; padding: 5px 15px 5px 15px; border: 1px dotted firebrick; display: none; }

