@charset "utf-8";
body{
	color:#666;
	font-family:Arial;
	background-color:#CCC;
}
.containerVentana{
	width:100%;
	height:600px;
	background: rgba(0,0,0,0.8);
	border:solid 0px #999;
	margin:auto;
	font-family:Arial;
	padding:0px;
	position: relative;
	z-index: 5000;
}
.ventana{
	width:100%;
	height:100%;
	color:#FFF;
	position:fixed;	/*fixed*/
	z-index: 6000;
	background-image:url(../assets/images/bg-modal.png);
	top:0;
	left:0;
	display:none;
}
.formVentana{
	width:400px;
	height:440px;
	padding:20px;
	background-color:#FFF;
	color:#666;
	top:50%;
	left:50%;
	position:absolute;	/*absolute*/
	z-index:7000;
	margin-left:-210px;
	margin-top:-170px;
	/*font-size:8px;*/
	font-style:Normal;
	font-family:Tahoma;
	font-size:12px;
}
.formVentana p a:hover{
	text-decoration:none; color:red;
} 
.cerrar{
	font-weight:900;
	text-align:right;
}



.containerVentana2{
	width:100%;
	height:600px;
	background-color:#FFF;
	border:solid 0px #999;
	margin:auto;
	font-family:Arial;
	padding:0px;
	position: relative;
	z-index: 5000;
}
.ventana2{
	width:100%;
	height:100%;
	color:#FFF;
	position:fixed;	/*fixed*/
	z-index: 6000;
	background-image:url(../assets/images/bg-modal.png);
	top:0;
	left:0;
	display:none;
}
.formVentana2{
	width:600px;
	height:340px;
	padding:20px;
	background-color:#FFF;
	color:#666;
	top:50%;
	left:50%;
	position:absolute;	/*absolute*/
	z-index:7000;
	margin-left:-310px;
	margin-top:-170px;
	/*font-size:8px;*/
	font-style:Normal;
	font-family:Tahoma;
	font-size:12px;
}
.formVentana2 p a:hover{
	text-decoration:none; color:red;
} 
.cerrar2{
	font-weight:900;
	text-align:right;
}


.containerVentana3{
	width:100%;
	height:600px;
	background-color:#FFF;
	border:solid 0px #999;
	margin:auto;
	font-family:Arial;
	padding:0px;
	position: relative;
	z-index: 5000;
}
.ventana3{
	width:100%;
	height:100%;
	color:#FFF;
	position:fixed;	/*fixed*/
	z-index: 6000;
	background-image:url(../assets/images/bg-modal.png);
	top:0;
	left:0;
	display:none;
}
.formVentana3{
	width:800px;
	height:620px;
	padding:20px;
	background-color:#FFF;
	color:#666;
	top:50%;
	left:50%;
	position:absolute;	/*absolute*/
	z-index:7000;
	margin-left:-410px;
	margin-top:-310px;
	/*font-size:8px;*/
	font-style:Normal;
	font-family:Tahoma;
	font-size:12px;
}
.formVentana3 p a:hover{
	text-decoration:none; color:red;
} 
.cerrar3{
	font-weight:900;
	text-align:right;
}



.cerrar a{
	color:red;
}

.galeria {
	width: 90%;
	margin: auto;
	list-style: none;
	padding: 20px;
	box-sizing: border-box;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.galeria li {
	margin: 5px;
}

.galeria img {
	width: 250px;
	height: 200px;
}

/*Estilos del modal*/

.modalGaleria {
	display: none;
}

.modalGaleria:target {
	display: block;
	position: fixed;
	background: rgba(0,0,100,0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modalGaleria h3 {
	color: #fff;
	font-size: 30px;
	text-align: center;
	margin: 15px 0;
}

.imagenGaleria {
	width: 100%;
	height: 50%;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagenGaleria a {
	color: #fff;
	font-size: 40px;
	text-decoration: none;
	margin: 0 10px;
}

.imagenGaleria a:nth-child(2) {
	margin: 0;
	height: 100%;
	flex-shrink: 2;
}

.imagenGaleria img {
	width: 500px;
	height: 100%;
	max-width: 100%;
	border: 7px solid #fff;
	box-sizing: border-box;
}

.cerrarGaleria {
	display: block;
	background: #fff;
	width: 25px;
	height: 25px;
	margin: 15px auto;
	text-align: center;
	text-decoration: none;
	font-size: 25px;
	color: #000;
	padding: 5px;
	border-radius: 50%;
	line-height: 25px;
}