/************************************************************************************************************
*	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:#000;
	z-index:10000;
	position:absolute; /* Always needed	*/
}

.modalBox_contentDiv {
	z-index:10000;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:transparent;
}

.modalDialog_contentDiv_shadow	{
	z-index:0;/* 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 */	
}

	/* Alternative layout for the message box - used by one of the messages */
	
.modalDialog_contentDiv_error	{
	z-index:10000;
	position:absolute;
	background:none;
	background-image: url(../images/video-popup.png);
	background-repeat: no-repeat;
	background-position: center top;
	
}
	
#nobg { background-color:#ddd; }

.modal_info {
float:left;
margin:23px 0 0 51px;

}

.modal_info a {
	color:#FF9900;
}

.modaltxt_main {
	margin:0px 0 0 0;
	font-size:14px;
	}

.modaltxt_sub {
	margin:10px 0 0 0;
	font-size:11px;
}

#modal_close a{
	cursor:pointer;
	display:block;
	float:right;
	height:67px;
	margin:10px 0 0 112px;
	right:0;
	width:52px;
	position:absolute;
	background-image: url(../images/spacer.gif);
	background-repeat: no-repeat;
	background-position: left top;	
}

#modal_close  em   {
	display:none;
}



