/*
General CSS for the demos of DHTMLSuite

body{
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
	font-size:0.8em;
}

a{
	color:red;
	text-decoration:underline;
}

pre{
	color:red;
}
h2{
	font-size:1.2em;
	}
*/	
.DHTMLSuite_modalDialog_transparentDivs{	
	filter:alpha(opacity=20);	/* Transparency */
	opacity:0.5;	/* Transparency */
	-moz-opacity:0.4;	/* Transparency */
	background-color:#666;
	z-index:1;
	position:absolute; /* Always needed	*/
	z-index:100000;
}
.DHTMLSuite_modalDialog_contentDiv{
	border:3px solid #000;	
	padding:2px;
	z-index:100002;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}
.DHTMLSuite_modalDialog_contentDiv_shadow{
	z-index:100001;/* 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 */	
	-moz-opacity:0.3;/* Transparency */
}

.modalDialog_contentDiv_error{
		border:3px solid #FFF;	
		padding:20px;
		z-index:2000000;/* Always needed	*/
		position:absolute;	/* Always needed	*/
		background-color:#F00;	/* White background color for the message */
		color:#FFF;
	}
	.modalDialog_contentDiv_error a{
		color:#FFF;
	}
	.modalDialog_contentDiv_error h1{
		margin-top:0px;
		font-size:24px;
	}
.modalDialog_contentDiv_error ol{
	margin:20px;

}