
/*galeria de fotos*/
	.galeria {
		width: 100%;
		margin-top: 0px;
		list-style: none;
		padding: 2px;
		box-sizing: border-box;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		background: white;
		font-size: 20px;
		text-decoration: none;
		border-radius: 10px;
	}
	.galeria li {
		margin: 5px;
	}
	.galeria img {
		width: 120px;
		height: 80px;
		list-style: none;
		padding: 0px 0px 0px 0px;
		box-sizing: border-box;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		border: 2px solid black;
	}

/*Estilos de Modal*/
	.modal {
	display: none;
	top: 80px;
	left: 10%;
	}
	.modal:target {
	display: block;
	transition: width 0.5s;
	position: fixed;
	background: rgba(0,0,0,0.8);
	top: 60px;
	left: 0%;
	width: 100%;
	height: 100%;
	}
	.modal h3 {
	color: #fff;
	font-size: 30px;
	text-align: center;
	margin: 15px 0px;
	}
	.imagen {
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px auto;
	padding-left: 20px;
	padding-right: 20px;
	}
	.imagen a {
	color: #fff;
	font-size: 40px;
	text-decoration: none;
	margin: 0px 10px;
	flex-shrink: 2;
	}
	.imagen img {
	width: 500px;
	height: 100%;
	max-width: 100%;
	border: 7px solid #fff;
	box-sizing: border-box;
	}
	.cerrar {
	display: block;
	background: #fff;
	width: 25px;
	height: 25px;
	margin: 90px 10px auto;
	right: 0;
	text-align: center;
	text-decoration: none;
	font-size: 25px;
	color: #000;
	padding: 5px;
	border-radius: 50%;
	line-height: 25px;
	position: fixed;
	}
	/*visualizador drive*/
	.visualizador-drive {
	box-sizing: border-box;
	width: 80%;
	height: 800px;
	padding: 5px;
	}
	.iframe[Style] {
	width: 80%;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	}
	user agent stylesheet
	.iframe {
	width: 80%;
	border-width: 2px;
	border-style: inset;
	border-color: initial;
	border-image: initial;
	}
	iframe.visualizador-drive {
	width: 95%;
	max-width: 1080px;
	}

