/************************************************************************************************************
*	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.css
*
* 	Update log:
*
************************************************************************************************************/

.modalDialog_transparentDivs{	
	filter:alpha(opacity=40);
	-moz-opacity:0.4;
	opacity:0.4;
	-khtml-opacity: 0.4; /* Older Safari, Older Konqueror */
	background-color: #333333;
	z-index: 10;
	position: absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border: 2px solid #CCCCCC;	
	padding: 2px;
	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: #555555;
	filter:alpha(opacity=30);
	-moz-opacity:0.3;
	opacity:0.3;
	-khtml-opacity: 0.3; /* Older Safari, Older Konqueror */	
}

.modalDialog_contentDiv h1 { color: #333333; font-size: 1.1em; padding: 0; margin: 0; }
.modalDialog_contentDiv form { font-size: 0.9em; padding: 10px; margin: 0; }
.modalDialog_contentDiv form label { display: block; font-weight: bold; }
.modalDialog_contentDiv form input { font-size: 0.9em; }
.modalDialog_contentDiv form .button { margin-top: 2px; }