@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */


.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87.36%;
	padding-left: 1.82%;
	padding-right: 1.82%;
}
body { background:#000 url(../img/fondo.jpg) no-repeat center top; background-size:auto;}

.logo { text-align:center; height:80px; margin:5px 0;}
.logo img { height:45px; width:auto; padding-top:18px; }

.datos { height:100px; background-color: rgba(232, 232, 232, 0.1); padding:1%;}
.nombre { width:67%; height:90%; display:inline-block; vertical-align:top; padding-left:2%;}
.btn { width:29%; height:90%; display:inline-block; vertical-align:top; text-align:center;}
.linea { border: 1px solid #60C; height:99%; width:99%; margin-top:-90px;}

.items {}
.items ul { text-align:center; vertical-align:top; padding:0;}
.items li { display:inline-block; background-color:#663399; margin:1px; width:62px; height:70px; border-radius:5px;}
.items a { width:100%; height:70px; display:block;}

.uno { background: url(../img/uno.png) center no-repeat;}
.dos {  background: url(../img/dos.png) center no-repeat;}
.tres {  background: url(../img/tres.png) center no-repeat;}
.cuatro {  background: url(../img/cuatro.png) center no-repeat;}
.cinco {  background: url(../img/cinco.png) center no-repeat;}
.seis {  background: url(../img/seis.png) center no-repeat;}
.siete {  background: url(../img/siete.png) center no-repeat;}
.ocho {  background: url(../img/ocho.png) center no-repeat;}

.video { text-align:center; min-width:100%; height:auto; margin-bottom:1%;}
.video video { width:345px; height:220px; display:block; margin:0 auto; }

h1, h2 { color:#fff; }
h1 { font-size:18px; margin-top:16px;  font-weight:700; }
h2 { font-size: 16px;  font-weight: 400;}
h3 { font-size:14px; color:#999; font-weight: 400; margin-top: 5px; }
h3 a,
h3 a:link,
h3 a:hover,
h3 a:focus,
h3 a:active, 
h3 a:visited { text-decoration: none; color: #999; }


.btn a { width:78px; height:30px; text-decoration:none; display:block; text-align:center; background-color:#0791be; color:#FFF; font-size:12px; line-height:26px; border-radius:6px; margin-top:32px;}

iframe { max-height:350px;}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
	margin:auto;
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}

.logo { height:140px;  }
.logo img {	width:auto; padding-top:28px; height:82px; }

.datos { height:160px;}

.items li { margin:2px; width:75px; height:80px;}
.items a { height:80px;}

.video object { width:745px; height:420px;}

h1 { font-size:30px; margin-top:40px;  line-height:34px; }
h2 { font-size: 20px; line-height:24px;}
h3 { font-size: 18px; color:#999; line-height:18px;}

.linea { margin-top:-144px;}

.btn a { margin-left:30px; margin-top:60px; font-size:20px; width:120px; height:45px; line-height:45px; }

iframe { max-height:600px;}

}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 88.2%;
	max-width: 960px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
}

.logo { text-align:center; height:160px; }
.logo img {	height:100px; width:auto; padding-top:25px; }

.items li { margin:3px; width:98px; height:100px;}
.items a { height:100px;}

iframe { height:600px;}


}