/************************************************************************************************************
*	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{	
	z-index:5;
	position:absolute; /* Always needed	*/
	background-color: #FFFFFF;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
.modalDialog_contentDiv{
/*	border:1px solid #1D62B8;
	padding:20px; */
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
/*	background-color:#FFFFFF;	 White background color for the message */
}

.b {
  background:url(../images/b.gif);
 
}

.tl {
  background:url(../images/tl.gif);
   width:10px;
  height:10px;
}

.tr {
  background:url(../images/tr.gif);
  width:10px;
  height:10px;
}

.bl {
  background:url(../images/bl.gif);
    width:10px;
  height:10px;
}

.br {
  background:url(../images/br.gif);
    width:10px;
  height:10px;
}

.body {
	background-color:#FFFFFF;
	border:5px solid #999999;
	padding:5px;
}
.modalDialog_contentDiv1{
/*	border:1px solid #1D62B8; */
	padding:0px;
	height:100%;
	width:100%;
	z-index:100;/* Always needed	*/
/*	position:absolute;	 Always needed	*/
	background-color:#FFFFFF;	/* 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:#FFFFFF; */
	filter:alpha(opacity=30);	/* Transparency */
	opacity:0.3;	/* Transparency */	
	display:none;
	visibility:hidden;
}
