/************************************************************************************************************
*	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:
*
************************************************************************************************************/

.msg_title {font-size:14px;font-weight:bold;}
.msg_info {font-size:14px;font-weight:bold;color:#1d9103;}
.msg_err {font-size:14px;font-weight:bold;color:#c14539;}
.msg_ok {font-size:14px;font-weight:bold;color:#bcd10c;}

.modalDialog_transparentDivs {	
	filter:alpha(opacity=60);	/* Transparency */
	opacity:0.6;	/* Transparency */
	background-color:#AAA;
	z-index:9999;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv {
	/*border:4px solid #BBD10C;	*/
	padding:10px;
	z-index:100;/* 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=50);	/* Transparency */
	opacity:0.5;	/* Transparency */	
}

.modalDialog_contentDiv_error {
	border:4px solid #c14539;	
	padding:10px;
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}

.modalDialog_contentDiv_ok {
	border:4px solid #bcd10c;	
	padding:10px;
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}
