/************************************************************************************************************
*	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:
*
************************************************************************************************************/

body{
	margin: 0; padding: 0;
	background: #FFF;
	font: 11px trebuchet ms, tahoma, serif, sans-serif
}

#boxLogin, #boxMsgCad{
	float: left;
	background: #E0E0E0;
	width: 185px;
	height: 130px;
	margin-left: 10px !important;
	margin-left: 5px;
}

.linha{
	width: 100%;
	clear: both;
	margin-bottom: 1px;
}

.linha2{
	width: 100%;
	clear: both;
	margin-bottom: 6px;
}

.bt{
	cursor: pointer;
	background: #9B1212;
	width: 103px;
	text-align: center;
	padding-top: 4px;
	padding-bottom: 4px;
	border: 1px solid #000;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #FFF;
	
}

.txtForm{
	font: 14px Arial, Helvetica, sans-serif;
	float: left;
	width: 60px;
	text-align: right
}
.txtForm2{
	font: 14px Arial, Helvetica, sans-serif;
	float: left;
	width: 90px;
	text-align: right
}

#imgClose{
	cursor: pointer
}
.txtBoxForm{
	font: 14px Arial, Helvetica, sans-serif;
	background: #FFF;
	border: 1px solid #666;
}

#aviso{
	color: #000;
	padding: 6px;
	font: bold 16px Arial, Helvetica, sans-serif;
	text-align: center;
}
#aviso span{
	font:  14px Arial, Helvetica, sans-serif;
}
#click{
	font:  14px Arial, Helvetica, sans-serif;
	width:100%;
	text-align: center;	
	margin-top: 26px;
	cursor: pointer;
}
.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 */	
}