/* CSS Document */
@import url(http://fonts.googleapis.com/css?family=Aldrich);
@font-face{
	font-family: Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-style:normal;	
}
body {	
	padding: inherit;	
	font-family: Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-style:normal;	
	margin:0px auto;	
	width: 1024px;	
}
#container{
	position: relative;
	text-align: center;
}
#menu{
	padding:0;	
	}
#menu ul{
	border:none;}
#menu li{
	border: none;
	display:inline;	
	
	}
	
#menu li a:hover{
	opacity: 0.9;	
}

.contador{
	font-family: Arial, Helvetica, sans-serif;
	font-style:normal;	
	color:#000;
	font-weight:bold;
	font-size: 24px;
	
}

.centrar{
	text-align:center;
}

.aviso{
	font-family: Tahoma, Geneva, sans-serif;
	font-weight:normal;
	font-style:normal;	
	color:#F00;
	font-size: 24px;	
	
	}
.pie{
	font-size:12px;
	font-weight:bold;
}		
#cajas{
	width:1024px;
	margin:auto;
}
.caja{
	background:#69959F;
 	border-radius: 30px;
	color:#fff;
	float:left;
	font-size:18px;
	height:220px;
	margin:10px;
	padding:10px;
	padding-right:5px;
	position:relative;
	text-align:center;
	text-decoration:none;
	width:300px;
	box-shadow: 0px 0px 10px 4px rgba(111, 75, 85, 0.75);
	-moz-box-shadow: 0px 0px 10px 4px rgba(111, 75, 85, 0.75);
	-webkit-box-shadow: 0px 0px 10px 4px rgba(111, 75, 85, 0.75);
	-moz-border-radius: 30px;
}
.caja a{
	color:#fff;
	text-decoration:none;
}
.cajita{
	margin-top:20px;
	font-size:15px;
	color: #950404;
}
.cont{
	position: absolute;
	top: 121px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	vertical-align: middle;
}

.reloj {
    background: white;
    background-image: linear-gradient(#f0f0f0, white);
    border-top: 5px solid #6F4B55;
    color: #707070; 
    float:right; 
	font-family: 'Aldrich', sans-serif;
    font-size: 1em;
	height: 40px;
	margin-right: 25px;
	margin-top: 10px;
    text-align: center; 
    width: 150px;
}
.bienvenida, .descripcion{
	clear:both;
}
.bienvenida>h3{
	text-align:center;
}
.descripcion{	
	margin-top:70px;
}
.sticky{
	background:rgba(255,255,255,0.9);
	font-size:1.8em;
	height:70px;
	position:fixed;
	top:10px;
	width:1024px;
}
.responsiveContent {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 29.2%;
}
.responsiveContent iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal {
	width: 100%;
	height: 100vh;
	background: rgba(105,149,159,0.8);
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	
	display: flex;
	
	animation: modal 2s 0s forwards;
	visibility: hidden;
	opacity: 0;
}

.contenido {
	margin: auto;
	width: 40%;
	height: 40%;
	background: white;
	border-radius: 10px;
}

#cerrar {
	display: none;
}

#cerrar + label {
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 50;
	background: darkred;
	height: 35px;
	width: 35px;
	line-height: 30px;
	border-radius: 50%;
	right: 150px;
	top: 150px;
	cursor: pointer;
	
	animation: modal 2s 0s forwards;
	visibility: hidden;
	opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
	display: none;
}

@keyframes modal {
	100% {
		visibility: visible;
		opacity: 1;
		
	}
}