/*** MODAL MESSAGE ************************************************************/
.modalDialog_transparentDivs{	
	filter:alpha(opacity=40);	/* Transparency */
	opacity:0.4;	/* Transparency */
	background-color:#AAA;
	z-index:1;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:3px solid #000;	
	padding:20px;
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}
.modalDialog_contentDiv p { color: #030; }
.modalDialog_contentDiv p span { color: #c00; font-weight: bold; }
.modalDialog_contentDiv img.ok { float: left; margin-right: 20px; }
.modalDialog_contentDiv a.close { position: absolute; right: 20px; bottom: 20px; color: #c00; padding-left: 20px; background: url(../img/close.gif) left center no-repeat; font-weight: bold; }
