/* CSS Document */
  .contenido {
	width: 400px;
	float: none;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.foo-contenido {
	overflow: hidden;
	width: 400px;
	float: left;
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 50px;
	padding-left: 0;
}
.foo-contenido  h2{
  float: left;
  font: 14px/1em Helvetica, Arial, Tahoma;
  color: #3891cf;
  margin: 0;
  text-shadow: rgba(0, 0, 0, 0.1) 0 2px 0;
}
.foo-contenido  input{
  font:  14px Helvetica, Arial, Tahoma;
}
.foo-contenido  textarea{
  font:  14px Helvetica, Arial, Tahoma;
}


.foo-contenido .button {
	float: right;
}

 /* define la separacion del Título con el resto de campos del formulario */ 
.c-form h2 {
  float: none;
  margin: 0 0 20px;
  
 /* define la separacion de los campos */ 
}
.c-form label {
  display: block;
  margin: 0 0 5px;
}


/* define el tanano de los campos, el grosor  el color de los recuadros y el texto */
.c-form input[type=text], .c-form input[type=email], .c-form input[type=tel] {
	border: 1px solid #e0e0e0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: rgba(0, 0, 0, 0.05) 0 2px 0, rgba(0, 0, 0, 0.05) 0 2px 1px inset;
	-webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 2px 0, rgba(0, 0, 0, 0.05) 0 2px 1px inset;
	box-shadow: rgba(0, 0, 0, 0.05) 0 2px 0, rgba(0, 0, 0, 0.05) 0 2px 1px inset;
	display: block;
	padding: 10px;
	width: 310px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
}

/* marca los bordes cuando clicas en una casilla para escribir (FOCUS)*/

.c-form input[type=text]:focus, .c-form input[type=email]:focus, .c-form input[type=tel]:focus {
  border-color: #3891cf;
  outline: none;
  -moz-box-shadow: #dfe9f2 0 0 7px;
  -webkit-box-shadow: #dfe9f2 0 0 7px;
  box-shadow: #dfe9f2 0 2px 0, #dfe9f2 0 2px 1px inset;
}


/* define el tanano de los campos, el grosor  el color de los recuadros y el texto */

.c-form textarea {
	border: 1px solid #e0e0e0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: rgba(0, 0, 0, 0.05) 0 2px 0, rgba(0, 0, 0, 0.05) 0 2px 1px inset;
	-webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 2px 0, rgba(0, 0, 0, 0.05) 0 2px 1px inset;
	box-shadow: rgba(0, 0, 0, 0.05) 0 2px 0, rgba(0, 0, 0, 0.05) 0 2px 1px inset;
	display: block;
	padding: 10px;
	width: 350px;
	height: 80px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
}


/* marca los bordes cuando clicas en una casilla para escribir (FOCUS)*/


.c-form textarea:focus {
  border-color: #3891cf;
  outline: none;
  -moz-box-shadow: #dfe9f2 0 0 7px;
  -webkit-box-shadow: #dfe9f2 0 0 7px;
  box-shadow: #dfe9f2 0 2px 0, #dfe9f2 0 2px 1px inset;
}
.c-form .button {
  display: block;
  float: none;
}
/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label {
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #069;
	font-weight: bold;
}

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */

legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea {
	 font-size: 100%;
	 margin: 0;
	 vertical-align: baseline; 
	 *vertical-align: middle; 
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */

button, input { line-height: normal; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */

button, input[type="button"], input[type="reset"], input[type="submit"] {
	 cursor: pointer;
	 -webkit-appearance: button;
	 *overflow: visible;
}

/*
 * Re-set default cursor for disabled elements
 */

button[disabled], input[disabled] { cursor: default; }

/*
 * Consistent box sizing and appearance
 */

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
	*width: 13px;
	*height: 13px;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }





/*	RESPONSIVE STYLES */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (max-width: 960px) {
  .contenido {
    width: 100%;
  }
  .foo-contenido {
    overflow: hidden;
    padding: 10px 5% 20px;
    width: 90%;
  }
  .foo-contenido h2 {
    float: none;
    width: 50%;
    font: bold 18px/1em Helvetica, Arial, Tahoma;
    margin: 0 0 15px;
  }
.foo-contenido  input{
  font:  18px Helvetica, Arial, Tahoma;
}
.foo-contenido  textarea{
  font:  18px Helvetica, Arial, Tahoma;
}
  .foo-contenido .button {
    float: none;
  }
  .c-form input[type=text], .c-form input[type=email], .c-form input[type=tel] {
    padding: 10px 3%;
    width: 93%;
  }
  .c-form textarea {
    padding: 10px 3%;
    width: 93%;
  }

/******************************************/
/***    DISENO PARA TABLETAS           ****/
/******************************************/
@media only screen and (max-width:768px){

  .contenido {
    width: 100%;
  }
  .foo-contenido {
    overflow: hidden;
    padding: 10px 5% 20px;
    width: 90%;
  }
  .foo-contenido h2 {
    float: none;
    width: 50%;
    font: bold 18px/1em Helvetica, Arial, Tahoma;
    margin: 0 0 15px;
  }
.foo-contenido  input{
  font:  18px Helvetica, Arial, Tahoma;
}
.foo-contenido  textarea{
  font:  18px Helvetica, Arial, Tahoma;
}
  .foo-contenido .button {
    float: none;
  }
  .c-form input[type=text], .c-form input[type=email], .c-form input[type=tel] {
    padding: 10px 3%;
    width: 93%;
  }
  .c-form textarea {
    padding: 10px 3%;
    width: 93%;
  }

}


/******************************************/
/***    DISENO PARA MOVILES 480        ****/
/******************************************/
@media only screen and (max-width:480px){
  .contenido {
    width: 100%;
  }
  .foo-contenido {
    overflow: hidden;
    padding: 10px 5% 20px;
    width: 90%;
  }
  .foo-contenido h2 {
    float: none;
    width: 50%;
    font: bold 18px/1em Helvetica, Arial, Tahoma;
    margin: 0 0 15px;
  }
.foo-contenido  input{
  font:  18px Helvetica, Arial, Tahoma;
}
.foo-contenido  textarea{
  font:  18px Helvetica, Arial, Tahoma;
}
  .foo-slogan .button {
    float: none;
  }
  .c-form input[type=text], .c-form input[type=email], .c-form input[type=tel] {
	width: 93%;
	padding-top: 10px;
	padding-right: 3%;
	padding-bottom: 10px;
	padding-left: 3%;
  }
  .c-form textarea {
    padding: 10px 3%;
    width: 93%;
  }
}
