/************************************************************************************************************
*	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:98765;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:1px solid #333333;	
	padding:2px;
	z-index:98767;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}
.modalDialog_contentDiv_shadow{
	z-index:98766;/* 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 */	
}
#ventana {
	position:relative;
	width:400px;
	background:#fff url(../images/big_ico.gif) no-repeat bottom right;

}
#cabeceraventana {
	width:400px;	
	height:50px;
	background:url(../img/cabecera.jpg) no-repeat left top;
}
#ventana p {
font:10px Verdana;
color:#666666;

}
#ventana h2 {
padding:10px 0 0 0;
margin:0;
text-align:center;
}
div.ventana-down {
display:block;
clear:both;
padding:3px 10px 3px 10px;
margin:30px 5px 40px 5px;
background:#F3F1ED;
border:1px dashed #CCCCCC;
}
div.ventana-down p{
text-align:left;
}
div.ventana img.boton{
margin:20px 0 0 0;
text-align:right;
}
div.ventana-down ul li{
font:10px Verdana;
color:#666666;
text-align:left;
}
