.ventana-flotante {
	width: 99%;  /* Ancho de la ventana */
	height: 70px;  /* Color de fondo */
	position: fixed;
	top: 95%;  /* Borde de la ventana */
	/*box-shadow: 5px 10px 7px rgba(0,0,0,.1), -5px -10px 7px rgba(0,0,0,0.5);  Sombra */
	z-index: 999;
	margin-left: auto;
	float: left;
	background-color: #E6E6E6;
}

.ventana-flotante #contenedor {
	width: auto;
	margin-right: auto;
	margin-left: auto;
	height: auto;
	
	
}

.ventana-flotante .cerrar {
	float: right;
	color: #999;
	background: white;
	line-height: 17px;
	text-decoration: none;
	font-family: Arial;
	border-radius: 5px;
	box-shadow: -1px 1px white;
	font-size: 12px;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	padding-top: 0px;
	padding-right: 14px;
	padding-bottom: 0px;
	padding-left: 14px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #bbb;
	border-right-color: #bbb;
	border-bottom-color: #bbb;
	border-left-color: #bbb;
	margin-top: 15px;
}

.ventana-flotante .cerrar:hover {
	background: #666;
	color: white;
	text-decoration: none;
	text-shadow: -1px -1px #ccc;
	
}

.ventana-flotante #contenedor .contenido {
	padding: 15px;
	font-size: 11px;  /* Tamaño del texto del mensaje */
	color: #555;
	margin-right: auto;
	background-color: #E6E6E6;
	width: 670px;
	
}

.ventana-flotante #contenedor .contenido a:link {
	text-decoration: underline;
	font-size: 11px;
	color: #333;
}

.ventana-flotante #contenedor .contenido a:hover {
	font-size: 12px;
	text-decoration: none;
	color: #FFF;
}

.oculto {-webkit-transition:1s;-moz-transition:1s;-o-transition:1s;-ms-transition:1s;opacity:0;-ms-opacity:0;-moz-opacity:0;visibility:hidden;}
.oculto {display:none}