/************************************************************************************************************
*	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:100;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border:3px solid #000;	
	padding:2px;
	z-index:120;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background-color:#FFF;	/* White background color for the message */
}
.modalDialog_contentDiv_shadow{
	z-index:110;/* 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: #666;
	color: #ddd;
}
body .modalDialog_contentDiv #close {
	position:absolute;
	top: 10px;
	right: 10px;
	text-deocration: none;
	color: #ccc;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
body .modalDialog_contentDiv ul {
	list-style: none;

}
body .modalDialog_contentDiv li {
	overflow:hidden;
	margin-bottom: 8px;
}
body .modalDialog_contentDiv h2 {
	margin-top: 10px;
	margin-left: 10px;
	font-weight: bold;
	font-size: 11px;
	text-transform: uppercase;
	padding-bottom: 15px;
	color: #fff;
}
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: #333;
	color: #fff;
	width: 120px;
	cursor: pointer;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-transform: uppercase;
	padding: 2px 10px;
}
body .modalDialog_contentDiv {
	border: 5px solid #999;
	height: 600px;
}
body .modalDialog_contentDiv_shadow {
	display: none;
	opacity: 0;
}
body .modalDialog_contentDiv textarea  {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #666;
}
