/* botones */
.GFG {
	background-color: lightgray;
	border: 1px solid black;
	color: black;
	padding: 2px 3px;
	text-align: center;
	display: inline-block;
	font-size: 14px;
	margin: 2px 5px;
	cursor: pointer;
}

/* tablas */
table {
	font-family: arial, sans-serif;
	font-size: 80%;
	color:black;
	border-collapse: collapse;
	width: 100%;
}
table td, th {
	border: 1px solid gray;
	text-align: left;
	padding: 8px;
}
table tr:nth-child(even) {
	background-color: lightgray;
}

/* cabecera en dos columnas */
.columnacabecera {
	float: left;
	width: 50%;
  }
.filacabecera:after {
	content: "";
	display: table;
	clear: both;
  }

/* logo centrado */
.centerlogo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	width: 75%;
  }

  .centerbanner {
  	width:100%;
  }   

/* texto, tamanyo estandar */
body {
	background-color:#FFFFFF; font-family: arial, sans-serif; color:#666666; font-size:80%;
}

/* tamanyos relativos */
p {
	font-size:0.9em;
}
li {
	font-size:0.8em;
}
h1 {
	font-size:2em;
}
h2 {
	font-size:1.4em;
}
#pie {
	font-size:1.2em;
}
.epigrafes {
	font-size:1.1em;
}

/* fin de zona común a todas las resoluciones */

@media screen and (min-width:800px) {
	body {
		font-size:100%;
		/* ampliamos los textos si mide más de 800px */
	}
	.centerlogo {
		width: 55%;
	  }
	  .centerbanner {
		  width: 75%;
	  }
}
/* fin de la zona para más de 800px de ancho de pantalla */

@media screen and (min-width:1200px) {
	body {
		font-size:120%;
		/* ampliamos más aún los textos si mide más de 1200px */
	}
	.centerlogo {
		width: 35%;
	}
	.centerbanner {
		width: 50%;
	}
}
/* fin de la zona para más de 1200px de ancho de pantalla */
