/************************************************************************************************************
*	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);	/* Transparency */
	opacity:0.6;	/* Transparency */
	background-color:#000000;
	z-index:99999;;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:3px solid #000;	
	padding:2px;
	z-index:100000;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}
.modalDialog_contentDiv_shadow{
	z-index:90;/* Always needed	- to make it appear below the message */
	position:absolute;	/* Always needed	*/
	background-color:#555;
	filter:alpha(opacity=30);	/* Transparency */
	opacity:0.3;	/* Transparency */	
}



.modalDialogTitled_content {
  border: none; 
  padding:0px;
  z-index:100;
  position:absolute;  
  background-color:#FFFFFF; 
}
.modalDialog_content{
    border: 1px solid #cccccc;  
    padding:35px 25px 35px 35px;
    z-index:100;/* Always needed  */
    position:absolute;  /* Always needed  */
    background-color:#FFFFFF; /* White background color for the message */
    
}
.modalDialog_content h2 {
  background: none;
  font-size: 21px;
  color: #000000;
  font-weight: normal;
  text-transform: none;
  line-height: 25px;
  margin: 2px 0px 15px 0px;
  padding: 0px 0px 0px 0px;
}

.modalDialog_title {
  background-color: #259eef;
  width: 100%;
  }
.modalDialog_title TD span { 
  color: #ffffff;
  width: 100%;
  padding: 8px 17px 8px 17px;
  font-size: 16px;
  background-color: #259eef;
  text-transform: uppercase;
  float: left;
  display: block;
  background-image: none;
  
  text-transform:uppercase;
  font-weight: normal;
  line-height: normal;  
  
}
.modalDialog_title A {
   text-align: right;
  margin-right: 10px;
  
}

.modalDialog_dark_content{
    border: 2px solid #cccccc;  
    padding:20px;
    z-index:100;/* Always needed  */
    position:absolute;  /* Always needed  */
    background-color:#000000; /* White background color for the message */
  
}