@charset "utf-8";
/* CSS Document */

* {margin:0px 0px 0px 0px ; padding:0px ; border: 0px}
/*body {text-align: left}*/

body {
	/*margin: 0px;
	padding: 0px;*/
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.7em; 
	background: url(images/back.jpg);
/*	background-color: #d3d3d3;*/
	background-position: top;
	background-repeat: repeat-x;
}


#General {
	with:1440px; 
	height: 1000%;
	margin:0px auto; 
	/*background-color: #C00*/
}


/*input {border: 2px solid #DBD59B;background: #F3F3F3}*/


/*Cabecera---------------------------------------------------------------------------------------------------------*/

#Encabezado {
	width: 960px;
	height: 60px;
	margin:40px auto 0px; 
	font-size:40px; 
	color:#691c32; 
	
	/*background: url(imagenes/templatemo_header.jpg) no-repeat;
	
	position: absolute;
	
	background: url(imagenes/templatemo_header.jpg) no-repeat center top
		width: 100%;
	width: 960px; 
	height:100px;
	margin:auto; 
	background-color:#CC0*/
}

#top {
	width: 960px;
	height: 30px;
	background: url(imagenes/top.png) no-repeat 
}

#centro {
	position: relative;
	width: 960px;
	padding: 10px 42px;
	background: url(imagenes/medio.png) repeat-y
}



#bajo {
	width: 960px;
	height: 30px;
	background: url(imagenes/bajo.png) no-repeat 
}



/*contenido---------------------------------------------------------------------------------------------------------*/

#Contenido {
	width: 960px; 
	height:100%; 
	margin:auto;
	padding:0px; 
	border: 0px;
	}
	
	
	#texto1 { text-align:justify;
	padding: 25px 25px 25px 25px; 
	height:100%; 
	width: 800px;
}

#texto1 h1 {
	font-size: 20px;
	color:#691c32;
}

	#texto1 strong{ 
	font-size: 14px;
	color:#691c32;
}

#pdf { text-align:center;
	padding: 10px;
	width: 185px;
	height:250px;
	float: right;
	margin:0px 80px 20px 20px;
	background-image: url(imagenes/pdfback.png);
	color: #FFF;
}
#pdf strong{ font-size: 14px;
}


/*Pie--------------------------------------------------------------------------------------------------------*/

#pie { 
	margin: auto;
	width: 960px; 
	height:64px; 
/*	background: url(imagenes/linea.png) no-repeat;
	background-color: #d3d3d3;*/
	}

/*popup--------------------------------------------------------------------------------------------------------*/






*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
  
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #fff;
}

.popup h2 {
  margin-top: 0;
  color: #000;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 0.2s;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  
}
.popup .close:hover {
  color: blue;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
    overflow:hidden;
}

/*Let's make it appear when the page loads*/
.overlay:target:before {
    display: none;
}
.overlay:before {
  content:"";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 9;
}
.overlay .popup {
  background: #fff;
  border-radius: 5px;
  width: 42%;
  position: fixed;
  top: 0;
  left: 30%;
  padding: 10px;
  margin: 10px auto;
  z-index: 10;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;

}
.overlay:target .popup {
    top: -100%;
    left: -100%;
}

@media screen and (max-width: 768px){
  .box{
    width: 70%;
  }
  .overlay .popup{
    width: 70%;
    left: 15%;
  }
}

