@charset "UTF-8";
/* Medios fluidos sencillos
   Nota: Los medios fluidos exigen la eliminación de los atributos de altura y anchura de los medios del código HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 no admite max-width (anchura máxima), por lo que usa de manera predeterminada una anchura del 100% */
.ie6 img {
	width:100%;
}

/*
	Propiedades de cuadrícula fluida de Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiración obtenida de "Responsive Web Design" de Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	y Golden Grid System de Joni Korpi
	http://goldengridsystem.com/
*/

/* Diseño móvil: 480 px e inferior. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87.36%;
	padding-left: 1.82%;
	padding-right: 1.82%;
}
#menu {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	/*
	border-top: 0.2em solid #000;
	border-bottom: 0.2em solid #000;*/
	padding-left: 1em;
	padding-top: 0.6em;
	margin-bottom: 0.9em;
}
#menu ul li {
	list-style: none;
	padding-bottom:3px;

}
ul {
	padding: 0;
	margin: 0;
}
#menu ul li a {
	color: #000;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: bold;
}
#menu ul li a:hover {
	color: #ec2214;
}
#imagentop {
	clear: both;
	width: 100%;
	display: block;
	margin-top: 4%;
	margin-bottom:0.3%;
	padding-left: 1em;
	text-align:left;
}
body {
	/* Ubicación de la imagen */
	background-image: url(../imagenes/contactopek.jpg);
	/* Nos aseguramos que la imagen de fondo este centrada vertical y
 horizontalmente en todo momento */
	background-position: center center;
	/* La imagen de fondo no se repite */
	background-repeat: no-repeat;
	/* La imagen de fondo está fija en el viewport, de modo que no se mueva cuando
 la altura del contenido supere la altura de la imagen. */
	background-attachment: fixed;
	/* La imagen de fondo se reescala cuando se cambia el ancho de ventana
 del navegador */
	background-size: cover;
	/* Fijamos un color de fondo para que se muestre mientras se está
cargando la imagen de fondo o si hay problemas para cargarla  */
	background-color: #fff;
	/*indicamos que la foto ocupe todo el espacio vertical*/
height:100vh;
}
.activo {
	font-weight: bold;
	color: #ec2214;
	font-size: 0.9em;
	}
#contacto {
	text-align:left;
	padding-left:1em;
	}
#contacto a {
	text-decoration:none;
	font-weight:bold;
	color:#000;
	font-size:1em;
	}
#contacto a:hover {
	color:#ec2214;
	}
#contacto p {
	line-height:0;
	}
h1 {
	font-size: 1.4em;
	padding-bottom: 0.2em;
	color:#000;
	font-weight:bold;
}
h2 {
	font-size: 1.2em;
	padding-bottom: 0.3em;
	color:#ec2214;
}
#subir {
	margin: 2em auto 0 auto;
	text-align:left;
	padding-left:1em;
}
#subir a:hover {
	color: #ec2214;
}
#subir a {
	text-decoration: none;
	color: #000;
	font-size: 0.9em;
	font-weight: bold;
}

/* Diseño tableta: de 481 px a 768 px. Hereda estilos de: Diseño móvil. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}
.activo {
	font-size:1em;
	}
#subir {
	text-align:center;
	padding-left:0;
}
#menu {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	padding-bottom: 0.5em;
	text-align:center;
	padding-left:0;
}
#menu ul li {
	display: inline;
	list-style: none;
	margin-right: 0.5em;
}
#menu ul li a {
	font-size: 1em;
}
#contacto {
	text-align:center;
	}
body {
/* Ubicación de la imagen */
background-image: url(../imagenes/contacto.jpg);}
#imagentop {
	clear: both;
	display: block;
	margin-top: 3%;
	margin-bottom: 0.3%;
	padding-left: 0;
	text-align: center;
}

/* Diseño escritorio: de 769 px hasta un máximo de 1232 px.  Hereda estilos de: Diseño móvil y Diseño tableta. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 88.2%;
	max-width: 1232px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
}
#menu {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#menu ul li {
	display: inline;
	list-style: none;
	margin-right: 0.5em;
}
#imagentop {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
}
