@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/ 
*/

.checkbox {
	margin-left: 40px;
}
	
.container {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: auto;
	background: #FFF;
}

.form {
	
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: auto;
	background-color: #F0F0F0;
	
	
}

.textocabeceroformulario1 {
	color: #666;
	margin: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;	
}

.textocabeceroformulario2 {
	color: #9C;
	margin: 2px;
	font-family: "Arial Black", Gadget, sans-serif;
	text-align: center;
	font-size: 2.7vw;
} 
	
.row {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: auto;
	background: #fff;
}
	
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:	12;
	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. */
#botonenviar {
	border: none;
	font-size: 24px;
	color: #FFF;
	background: -webkit-linear-gradient(top, #F39105, #F7D208);
	background: -moz-linear-gradient(top, #CCC, #999);
	padding: 5px;
	cursor: pointer;
	text-shadow: 3px 3px 3px #666;
	box-shadow: 3px 5px 7px #333;
	border-radius: 5px;
	font-family: Verdana, Geneva, sans-serif;
	
}
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	background: #fff;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 20;
	width: 100%;
	display: block;
}

.header {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: auto;
	background: #FFF;
}
.caja1 {
	background: #F00;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 18px;
	color: #fff;
	text-shadow: none;
	border: #ff8;
	border-top-color: #03C;
	width: auto;
	text-align: center;
	float: left;
	margin: 5px;
	background-color: #92d019;
	font-style: normal;
	line-height: normal;
	height: auto;
	padding: 15px;
	border-radius: 5px;
	box-shadow: #999 5px 5px 10px;
}
.caja2 {
	background: #F00;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 18px;
	color: #fff;
	text-shadow: none;
	border: #ff8;
	border-top-color: #03C;
	width: auto;
	text-align: center;
	float: left;
	margin: 5px;
	background-color: #7ebdc7;
	font-style: normal;
	line-height: normal;
	height: auto;
	padding: 15px;
	border-radius:5px;
	box-shadow: #999 5px 5px 10px;
}

/* 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: 100%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
}

/* 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: 100%;
	max-width: 1232px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	margin: auto;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 49.1525%;
	display: block;
}
}

/*RRSS*/
.social {
	
	position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
	left: -40px; /* Establecemos la barra en la izquierda */
	top: 30px; /* Bajamos la barra 200px de arriba a abajo */
	z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
}
 
	.social ul {
		list-style: none;
	}
 
	.social ul li a {
		display: inline-block;
		color:#fff;  
		background: #fff;  
		padding: 10px 15px;
		text-decoration: none;
		-webkit-transition:all 500ms ease;
		-o-transition:all 500ms ease;
		transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */
	}
 
	.social ul li .icon-facebook {background:#fff; opacity:.5; } /* Establecemos los colores de cada red social, aprovechando su class */
	.social ul li .icon-youtube {background: #fff; opacity:.5; }
	.social ul li .icon-instagram {background: #fff; opacity:.5;}
	.social ul li .icon-mail {background: #fff; opacity:.5;}
 
	.social ul li a:hover {
		background: #fff; opacity:.8; /* Cambiamos el fondo cuando el usuario pase el mouse */
		padding: 10px 30px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */
	}
	


/*Fin RRSS*/
