/************************************************************************************************************
*	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=40);	/* Transparency */
	opacity:0.4;	/* Transparency */
	background-color:#AAA;
	z-index:1;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:5px solid #ffffff;	
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#000000;	/* White background color for the message */
	color:#ffffff;
	font-size:0.85em;
	background-image:url(../img/popup_bg.gif);
	background-repeat:no-repeat;
	background-position:100% 0%;
}

.modalDialog_contentDiv a {
font-weight:bold;
}

.modalDialog_contentDiv a:hover {
color:#ffffff!important;
}

.release, #disco td {
color:#cccccc;
}

.date {
color:#dd0055;
font-weight:bold;
font-size:1.2em;
display:block
}

.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 */	
}

h4 {
font-size:1.4em;
width:200px;
}

#disco {
width:300px;
margin:30px 80px 0px 80px;
}