/* CSS Document */
.contenedorGeneralVentanaMensaje{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #CCC;
}

.ventanaMensaje{
	position: fixed;
	top: 100px;
	left: 100px;
	width: 400px;
	height: 400px;
	border: 1px solid #CCC;
	background-color: #EEE;
}

.contenedorHeaderVentanaMensaje{
	height: 20px;
	border: 1px solid #CCC;
	margin: 2px;
}

a.btnCerrarVentanaMensaje{
	display: block;
	float: right;
	width: 20px;
	height: 20px;
	background-color:#EEE;
	border: 1px solid #000;
}

a.btnCerrarVentanaMensaje:hover{
	background-color: #999999;
}

