/*			
*	Css files used by this script:	modal-message.css
*
* 	Update log:
*
************************************************************************************************************/

.modalDialog_transparentDivs{	
	filter:alpha(opacity=40);	/* Transparency */
	opacity:0.4;	/* Transparency */
	background: #000;
	z-index:1;
	position:absolute; /* Always needed	*/
}
.modalDialog_contentDiv{
	border: none;	
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	background: url(../images/bgs/messageBasic.gif) no-repeat;
	width: 300px;
	height: 150px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: left;
	line-height: 1.5;
}
.modalDialog_contentDiv H1{
	font-size: 12px;
	color: #000;
	margin: 10px;
}
.modalDialog_contentDiv P{
	font-size: 9px;
	margin: 5px 10px;
	padding: 0px;
}
.modalDialog_contentDiv P.button{
	margin-right: 15px;
	text-align: center;
	background: url(../images/bgs/messageButton.gif) no-repeat right;
	width: 100px;
	height: 17px;
	float: right;
	padding: 6px 0px;
}
.modalDialog_contentDiv A{
	text-decoration: none;
	color: #acc7d4;
	padding: 5px;
}
.modalDialog_contentDiv A:hover{
	color: #FFF;
}
.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 */	
}

/************************************************************************************************************
*
*	Container for displaying anchors
*
************************************************************************************************************/


#mainContainer{
}

/* different skin of static message */

.modalDialog_contentDiv_error{
	z-index:100;/* Always needed	*/
	position:absolute;	/* Always needed	*/
	color:#FFF;
}
.modalDialog_contentDiv_error a{
	color:#FFF;
}