/************************************************************************************************************
*  DHTML modal dialog box  (CSS for the DHTMLSuite_modalMessage class)
*
*  Created:            August, 26th, 2006
*  @class Purpose of class:    Display a modal dialog box on the screen.
*      
*  Css files used by this script:  modal-message.css
*
*   Update log:
*
************************************************************************************************************/

.modalDialog_transparentDivs{  
  filter:            alpha(opacity=60);  
  opacity:           0.6;  /* Transparency */

  overflow:          hidden;

  background-color:  #444;
  z-index:           9000;
  position:          absolute; /* Always needed  */
  zoom: 1;
}
.modalDialog_contentDiv{
  border:            2px solid #023059;  
  padding:           0px;
  z-index:           10000;     /* Always needed  */
  position:          absolute;  /* Always needed  */
  background-color:  #FFFFFF;   /* White background color for the message */
  -moz-border-radius:  2px;
  vertical-align:    top;
  text-align:        center;
  zoom: 1;
}
.modalBox_contentDiv2 {
  position:          relative;
  overflow-y:        auto;
  overflow-x:        hidden;
/*
  overflow:          auto;
*/
  vertical-align:    top;
  text-align:        center;
}
.modalDialog_contentDiv_shadow{
  z-index:           900;/* Always needed  - to make it appear below the message */
  position:          absolute;  /* Always needed  */
  background-color:  #555555;
  filter:            alpha(opacity=30); */ /* Transparency */
  opacity:           0.3;  /* Transparency */  
  -moz-border-radius:  2px;
}
.modalDialog_contentDiv_error{
  border:            3px solid #FFFFFF;
  padding:           2px;
  z-index:           100;/* Always needed  */
  position:          absolute;  /* Always needed  */
  background-color:  #FF0000;  /* White background color for the message */
  color:             #FFFFFF;
}
.modalDialog_contentDiv_error a{
  color:             #FFFFFF;
}
.modalBoxTitleBar {
  background-image:  url('../imagens/fundo_tit_dialog.gif');
  text-align:        left;
  padding-left:      4px;
  padding-right:     4px;
  height:            20px;
  color:             #fff;
  font-family:       Verdana, Arial, Tahoma, Helvetica, sans-serif;
  font-weight:       bold;
  font-size:         11px;
  border-bottom:     1px solid #6666AA;
  cursor:            move;
}

