/************************************************************************************************************
*	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=70);	/* Transparency */
	opacity:0.7;	/* Transparency */
	background-color:#03131e;
	z-index:1;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:1px solid #000;	
	padding:0px;
	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=30);	/* Transparency */
	opacity:0.3;	/* Transparency */	
}




	#mainContainer{
		width:500px;
		margin:0 auto;
		margin-top:10px;
		border:1px solid #000;
		padding:5px;
	}

	div#message {
		width:418px;
		height:285px;
		background-image:url('bg.gif');
		background-repeat:no-repeat;
		background-position:right bottom;
		font-family: Trebuchet MS,sans-serif;
		font-size:12px;
		font-color:#0C293F;
	}



	div#messagehead {
		width:418px;
		height:51px;
		background-image:url('header.gif');
		background-repeat:no-repeat;
		background-position:right bottom;
	}


	div#messagetext {
		padding-top:5px;
		padding-left:20px;
		padding-right:35px;
	}

	div#messagetext h1 {
		font-size:24px;
		color:#ca1e1e;
	}


	div#messagetext a:link, div#messagetext a:visited	{color:#cc0000; text-decoration:underline; padding-left:5px; padding-right:5px; border-width:1px; border-color:#BFC9D2; border-style:solid;}
	div#messagetext a:active, div#messagetext a:hover	{color:#8b1313; text-decoration:underline; padding-left:5px; padding-right:5px; border-width:1px; border-color:#345a78; border-style:solid;}



	
	/* Alternative layout for the message box - used by one of the messages */
