.modalDialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 100000000000000;
	opacity: 0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
	text-align: center;
	}

	.modalDialog:target {
		opacity:1;
		pointer-events: auto;
	}

	.modalDialog > div {
	width: 90%;
	position: relative;
	border-radius: 10px;		/*background: -moz-linear-gradient(#fff, #999);
		background: -webkit-linear-gradient(#fff, #999);
		background: -o-linear-gradient(#fff, #999);*/
	margin-top: 10%;
	margin-right: auto;
	margin-bottom: 10%;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 13px;
	padding-left: 0px;
	color: #666;
	font-size: 1.3em;
	font-weight: bolder;
	background-color: #fff;
	background-image: url(../img/fondo.png);
	background-repeat: no-repeat;
	background-position: -300px -200px;
	}
	.modalDialog > div p {
	background-color: rgba(255, 255, 255, 0.7);
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-align: justify;
	}
	.modalDialog > div h2 {
	font-size: 2em;
	padding-top: 5px;
	padding-bottom: 5px;
	}
.color-quienes-somos {
	color: #FFF;
		background-color: rgba(226,158,55,0.8);
	
}

	.close {
	background-color: #4CC5F4;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	font-size: 2em;
	color: #FFF;
	position: absolute;
	top: 80px;
	font-weight: bolder;
	right: 0px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 20px;
}

.close:hover
{
	/*	opacity: 0.7;*/
	cursor: pointer;
	text-decoration: none;
	background-color: #40BF6A;
}
