/************************************************************************************************************
*	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:
*
************************************************************************************************************/

#modal_container {
  padding:5px;
  background-color:#fff;
  border:1px solid #666;
  overflow:auto;
  font-family:"Lucida Grande",Verdana;
  font-size:12px;
  color:#333;
  text-align:left;
}

#modal_container.test {
  background-color:#900;
  color:#fff;
  padding:30px;
  text-align:center
}

#modal_overlay {
  background-color:#000;
}

#modal_overlay.test {
  background-color:#fff;
}

.modalDialog_transparentDivs{	
	filter:alpha(opacity=40);	/* Æ©ÌÀÅÙ */
	opacity:0.4;	/* Æ©ÌÀÅÙ */
	background-color:#AAA;
	z-index:1;
	position:absolute; /* É¬¿Ü	*/
}
.modalDialog_contentDiv{
	border:3px solid #000;	
	padding:2px;
	z-index:100;/* É¬¿Ü	*/
	position:absolute;	/* É¬¿Ü	*/
	background-color:#FFF;	
}
.modalDialog_contentDiv_shadow{
	z-index:90;/* É¬¿Ü */
	position:absolute;	/* É¬¿Ü	*/
	background-color:#555;
	filter:alpha(opacity=30);	/* Æ©ÌÀÅÙ */
	opacity:0.3;	/* Æ©ÌÀÅÙ */	
}