/* Galeria Fotos */


.galeriaFotos {
	cursor: pointer;
	cursor: hand;
}

#galeriaFondo {
	width: 100%;
	height: 100%;
	background-color: rgba(66,66,66,.5);
	position: fixed;
	z-index: 1000;
	visibility: hidden;
}

.contentImgGallery {
	margin: 0 auto;
	margin-top: 5px;
	max-width: 720px;
	width: 95%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	
}

.row1 {
	width: 100%;
	height: 30px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
}

	.boxBottomClose {
		width: 27px;
		height: 28px;
		background-color: rgba(255,255,255,.75);
		border-radius: 13px;
	}
	
		.boxBottomClose img {
			width: 26px;
			cursor: pointer;
			cursor: hand;
		}

.row2 {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

	.boxBottomBack {
		width: 36px;
		height: 36px;
		position: relative;
			left: 50px;
		background-color: rgba(255,255,255,.75);
		border-radius: 18px;
	}
	
		.boxBottomBack img {
			width: 36px;
			cursor: pointer;
			cursor: hand;
		}
		
	
	.boxImgGallery {
		width: 100%;
	}
	
		.boxImgGallery img {
			width: 100%;
			border: solid 3px white;
		}

	.boxBottomForward {
		width: 36px;
		height: 36px;
		position: relative;
			right: 50px;
		background-color: rgba(255,255,255,.75);
		border-radius: 18px;
	}
	
		.boxBottomForward img {
			width: 36px;
			cursor: pointer;
			cursor: hand;
		}

	