/************************************************************************************************************

*	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=80);	/* Transparency */

    opacity:0.8;	/* Transparency */

    background-color:#000;

    z-index:1;

    position:absolute; /* Always needed	*/

}

.modalDialog_contentDiv{

    border:10px solid #9BC73B;

    border-top-width:0px;

    padding:10px;

    padding-top:35px;

    padding-bottom:40px;

    z-index:100;/* Always needed	*/

    position:absolute;	/* Always needed	*/

    background-color:#FFF;	/* White background color for the message */

    overflow:hidden;

}

.modalDialog_contentDiv_shadow{

    z-index:90;/* Always needed	- to make it appear below the message */

    position:absolute;	/* Always needed	*/

    background-color:#000;

    filter:alpha(opacity=30);	/* Transparency */

    opacity:0.3;	/* Transparency */

}



#close{position:absolute;top:0;left:0;width:100%;background-color:#9BC73B;text-align:right;color:#FFF;font-weight:bold;height:30px;line-height:30px;font-size:.8em;}

#close a{color:#FFF;text-decoration:none;}

#close a:hover{color:#444;}



.modalDialog_contentDiv h1{color:#FFF;font-size:1em;position:absolute;top:0; left:0;z-index:50;line-height:30px;border:none;}

.modalDialog_contentDiv h2{padding-bottom:3px;font-size:.8em;}

.modalDialog_contentDiv p{font-size:.7em;line-height:1.6em;}

.modalDialog_contentDiv table{font-size:.7em;width:350px;;}

.modalDialog_contentDiv a{color:#2A008F;}

.popup-envelope{width:350px;height:300px;position:absolute;top:35px;overflow:auto;}

.modalDialog_contentDiv .iconLink{margin-right:2px;}


