@charset "utf-8";

#Fondo {
	visibility: hidden;
	position: fixed; /*PERMITE MANTENER FIJO EL FOND*/
	padding: 0px;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-repeat: repeat;
	width: 100%;
	height: 100%;
	z-index: 99;
	background: #CCC;
	filter: alpha(opacity=60);
	-moz-opacity: .60;
	opacity: .60;
	margin: auto 0;	
}

#FondoMensaje{
	display: block;
	width: 400px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -75px; /*MITAD DE HEIGHT*/
	margin-left: -200px; /*MITAD DE WIDTH*/
	background: #FFFFFF;	
	visibility: hidden;
	z-index: 100;
}

#CerrarMensaje {
	text-align:right;
	float: right;
	padding: 0;
	margin: 0 4px 0 0;
	color: #CCC;
}

#CerrarMensaje a{
	text-decoration: none;
	color: #FFF;
}


#Titulo {
	background: #000;
	color: #FFF;
	text-align: center;	
}

#CuerpoMensaje {
	background: #FFF;
	margin: 15px;
}