/************************************************************************************************************
*	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:1;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:3px solid #000;	
	padding:2px;
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}
.modalDialog_contentDiv_shadow{
	z-index:90;/* 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 */	
}

body .modalDialog_contentDiv {
	background: #999;
	color: #fff;
}
body .modalDialog_contentDiv #close {
	position:absolute;
	top: 10px;
	right: 10px;
	text-deocration: none;
	color: #fff;
}
body .modalDialog_contentDiv li {
	overflow:hidden;
	list-style: none;
	margin-bottom: 8px;
}
body .modalDialog_contentDiv h2 {
	margin-top: 8px;
	margin-bottom: 20px;
	margin-left: 10px;
	font-weight: bold;
	font-size: 12px;
	text-transform: lowercase;
}
body .modalDialog_contentDiv label {
	font-size: 12px;
	float: left;
	width: 180px;
	margin-left: 10px;
	margin-top: 2px;
}
body .modalDialog_contentDiv label span {
	color: #f00;
}
body .modalDialog_contentDiv button  {
	margin-left: 190px;
	background: #666;
	color: #fff;
	width: 120px;
	border: 0;
	cursor: pointer;
}
body .modalDialog_contentDiv {
	border: 0;
	height: 220px !important;
}
body .modalDialog_contentDiv_shadow {
	display: none;
	opacity: 0;
}
body .modalDialog_contentDiv textarea  {
	font-size: 12px;
}