/************************************************************************************************************
*	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=90);	/* Transparency */
	opacity:0.9;	/* Transparency */
	background-color:#000000;
	z-index:999;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:none;
	border:10px solid #e7e7e7;
	padding:0;
	z-index:10000;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#fff;	/* White background color for the message */
}


