/*!
 * Stylesheet
 *
 * @author ...
 * @version 1.0
 */

/*
|--------------------------------------------------------------------------
| Reset
|--------------------------------------------------------------------------
|
| El reset sirve para uniformizar los estilos de elementos html
| a traves de los diferentes navegadores, por ejemplo,
| Internet Explorer coloca un borde azul a toda imagen que
| este dentro de un elemento de vinculo <a>. Para quitarlo
| "reseteamos" el elemento <img> para que no muestre ningun borde.
|
| Todos los estilos del reset se pueden sobreescribir luego pero
| solo cuando el diseno lo necesite y no en un contexto general,
| por esta razon EL RESET NO SE DEBE MODIFICAR
|
*/

body, blockquote, dl, dd, figure, fieldset,
h1, h2, h3, h4, h5, h6, hr, ol, p, pre,
textarea, ul {
	margin: 0;
}
button, fieldset, input, legend, ol, option,
select, td, textarea, th, ul {
	padding: 0;
}
article, aside, details, figcaption, figure, footer,
header, main, menu, nav, section, summary {
	display: block;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
b, strong {
	/*font-weight: bold;*/
}
img {
	border: 0;
}
button, input, optgroup, select, textarea {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
}

/*
|--------------------------------------------------------------------------
| Base
|--------------------------------------------------------------------------
|
| Aqui se define el tamano base de la fuente, el tamano del
| interlineado, la fuente y color principales. Tambien se definen
| estilos generales para algunos elementos de la pagina
| LOS VALORES SE DEBEN MODIFICAR SEGUN LAS NECESIDADES DEL PROYECTO
|
*/

html {
	color: #333;
	font-size: 100%/1.5;
	font-family: "gochihandregular" !important;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
hr {
	border: 0;
	border-top: 1px solid #333;
	height: 0;
}
ol, ul {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}
a, button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
blockquote, dl, figure,
 h2, h3, h4, h5, h6, hr,  pre{
	margin-bottom: 20px;
}
/*ol*/
/*
|--------------------------------------------------------------------------
| Grid
|--------------------------------------------------------------------------
*/

/* clearfix */
.clearfix:after,
.container:after,
.row:after {
	clear: both;
	content: "";
	display: table;
}
/* Este es el contenedor principal del grid,
 * puede ser fijo ej. width: 940px
 * o puede ser de ancho variable ej. max-width: 940px
 * EL VALOR SE DEBE MODIFICAR SEGUN LAS NECESIDADES DEL PROYECTO */

div.header{
	background-color: #FFF;
}

.container {
	margin: 0 auto;
	max-width: 940px;
	padding:0 70px;
	position: relative;
	max-width: 100% !important;
}



/* Aqui se corrige el espacio para poder tener columnas anidadas
 * EL VALOR DEBE SER IGUAL AL ESPACIO HORIZONTAL ENTRE COLUMNAS
 * PERO EN NEGATIVO */
.row {
	margin: 0 -10px;
}
/* Aqui se define el espacio horizontal que hay entre columnas
 * EL VALOR SE DEBE MODIFICAR SEGUN LAS NECESIDADES DEL PROYECTO */
 /*.container,*/
[class^="col-"],
[class*=" col-"] {
	padding: 0 10px;
}
/* Aqui se definen los estilos de columna
 * si el contenedor principal es fijo las columnas seran fijas,
 * si es de ancho variable, tambien lo seran las columnas */
[class^="col-"],
[class*=" col-"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	position: relative;
	width: 100%;
}

/*Cuando se necesita la grilla sin paddings*/
.row-collapse > [class^="col-"],
.row-collapse > [class*=" col-"]  {
    padding-left: 0;
    padding-right: 0;
}

body {
	background-color: #f5f5f5 !important;
	margin: 0 auto !important;
	/*font: 13px/20px normal Helvetica, Arial, sans-serif;*/
	color: #4F5155;
	width: 830px;
	padding: 10px;
}

/* Aqui se definen los tamanos para las 12 columnas del grid.
 * Tambien se pueden crear tamanos de columna personalizados:
 * Para crear un nuevo tamano de columna se debe crear una
 * clase cuyo nombre inicie con "col-" y definir un ancho para
 * la nueva columna ej. width: 20% */
@media screen and (min-width: 0px) and (max-width: 767px) {
	.container {padding:0 10px;}
}
 @media screen and (min-width: 0px) and (max-width: 767px) {
.col-xs-1 { width: 8.33%; }
.col-xs-2 { width: 16.66%; }
.col-xs-3 { width: 25%; }
.col-xs-4 { width: 33.33%; }
.col-xs-5 { width: 41.66%; }
.col-xs-6 { width: 50%; }
.col-xs-7 { width: 58.33%; }
.col-xs-8 { width: 66.66%; }
.col-xs-9 { width: 75%; }
.col-xs-10 { width: 83.33%; }
.col-xs-11 { width: 91.66%; }
.col-xs-12 { width: 100%; }


 }
@media (min-width: 768px) {
	.col-sm-1 { width: 8.33%; }
	.col-sm-2 { width: 16.66%; }
	.col-sm-3 { width: 25%; }
	.col-sm-4 { width: 33.33%; }
	.col-sm-5 { width: 41.66%; }
	.col-sm-6 { width: 50%; }
	.col-sm-7 { width: 58.33%; }
	.col-sm-8 { width: 66.66%; }
	.col-sm-9 { width: 75%; }
	.col-sm-10 { width: 83.33%; }
	.col-sm-11 { width: 91.66%; }
	.col-sm-12 { width: 100%; }
	.col-sm-push-1 { left: 8.33%; }
	.col-sm-push-2 { left: 16.66%; }
	.col-sm-push-3 { left: 25%; }
	.col-sm-push-4 { left: 33.33%; }
	.col-sm-push-5 { left: 41.66%; }
	.col-sm-push-6 { left: 50%; }
	.col-sm-push-7 { left: 58.33%; }
	.col-sm-push-8 { left: 66.66%; }
	.col-sm-push-9 { left: 75%; }
	.col-sm-push-10 { left: 83.33%; }
	.col-sm-push-11 { left: 91.66%; }
	.col-sm-push-12 { left: 100%; }
	.col-sm-pull-1 { right: 8.33%; }
	.col-sm-pull-2 { right: 16.66%; }
	.col-sm-pull-3 { right: 25%; }
	.col-sm-pull-4 { right: 33.33%; }
	.col-sm-pull-5 { right: 41.66%; }
	.col-sm-pull-6 { right: 50%; }
	.col-sm-pull-7 { right: 58.33%; }
	.col-sm-pull-8 { right: 66.66%; }
	.col-sm-pull-9 { right: 75%; }
	.col-sm-pull-10 { right: 83.33%; }
	.col-sm-pull-11 { right: 91.66%; }
	.col-sm-pull-12 { right: 100%; }
}
@media (min-width: 992px) {
	.col-md-1 { width: 8.33%; }
	.col-md-2 { width: 16.66%; }
	.col-md-3 { width: 25%; }
	.col-md-4 { width: 33.33%; }
	.col-md-5 { width: 41.66%; }
	.col-md-6 { width: 50%; }
	.col-md-7 { width: 58.33%; }
	.col-md-8 { width: 66.66%; }
	.col-md-9 { width: 75%; }
	.col-md-10 { width: 83.33%; }
	.col-md-11 { width: 91.66%; }
	.col-md-12 { width: 100%; }
	.col-md-push-1 { left: 8.33%; }
	.col-md-push-2 { left: 16.66%; }
	.col-md-push-3 { left: 25%; }
	.col-md-push-4 { left: 33.33%; }
	.col-md-push-5 { left: 41.66%; }
	.col-md-push-6 { left: 50%; }
	.col-md-push-7 { left: 58.33%; }
	.col-md-push-8 { left: 66.66%; }
	.col-md-push-9 { left: 75%; }
	.col-md-push-10 { left: 83.33%; }
	.col-md-push-11 { left: 91.66%; }
	.col-md-push-12 { left: 100%; }
	.col-md-pull-1 { right: 8.33%; }
	.col-md-pull-2 { right: 16.66%; }
	.col-md-pull-3 { right: 25%; }
	.col-md-pull-4 { right: 33.33%; }
	.col-md-pull-5 { right: 41.66%; }
	.col-md-pull-6 { right: 50%; }
	.col-md-pull-7 { right: 58.33%; }
	.col-md-pull-8 { right: 66.66%; }
	.col-md-pull-9 { right: 75%; }
	.col-md-pull-10 { right: 83.33%; }
	.col-md-pull-11 { right: 91.66%; }
	.col-md-pull-12 { right: 100%; }
}



/* Estas clases utilitarias sirven para ocultar elementos segun
 * el ancho especifico del dispositivo */
@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}
@media (min-width: 992px) {
	.hidden-md {
		display: none !important;
	}
}


/*
|--------------------------------------------------------------------------
| FONTS
|--------------------------------------------------------------------------
*/

@font-face {
    font-family: 'vigaregular';
    src: url('../fonts/viga-regular-webfont.eot');
    src: url('../fonts/viga-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/viga-regular-webfont.woff') format('woff'),
         url('../fonts/viga-regular-webfont.ttf') format('truetype'),
         url('../fonts/viga-regular-webfont.svg#latoblack') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gochihandregular';
    src: url('../fonts/gochihand-regular.ttf');
    font-style: normal;
}

/*
CSS
*/
.radio, .checkbox{margin-top: 0 !important; margin-bottom: 5px !important;}
.select-short{width: 250px; border-radius: 5px; color: #716a6a !important; font-weight: normal;}
.header-of-selects{width: 215px; border-radius: 5px; color: #716a6a !important; font-weight: bold; font-size: 16px; margin: 10px 20px;}
.orange-color{color: #ff9933 !important;}
.mg-l-1{margin-left: 5px;}
.f-left{float: left;}
.idiomas-cont{margin: 0 0 15px 0;}
.fix-checks{display: inline-block; margin: 0 10px 0 0;}
.fix-container{float: left; margin: 0 -12px; width: 100%; padding: 10px 20px; background: #ffffff;}
.d-block{display: block;}
.d-inline{display: inline-block;}
input[type="text"]{padding: 5px 10px; border-radius: 5px;}
.image-hidden{float: none; width: 100%;}
.c-pointer{cursor: pointer;}
.d-none{display: none;}
.btn-enviar button{color: white; transition: all 0.3s; padding: 10px 20px; background-color: #ff9933; border: 1px solid #ff9933; font-weight: bold;}
.btn-enviar:hover button{background-color: transparent; color: #ff9933;}
.chosen-container > .chosen-single, [class*="chosen-container"] > .chosen-single{line-height: 28px !important; height: 30px !important;
box-shadow: none !important; background: #fafafa !important;}
.overwrite-pdd-left{padding-left: 20px !important;}

/* banner */
section{
	float: left;
	width: 700px;
	padding-top: 20px;
}
section#bajada {
	float:left;
	width:700px;
	padding-top:0 !important;
}
section#bajada article#cont {
	position:relative;
	float:left;
	min-height:155px;
	margin-left:2%;
}
section#bajada article#cont:first-child {
	margin-left:0;
}
section#bajada article#cont.video {
	width:462px;
	height:305px;
	padding:0;
}
section#bajada article#cont.pub {
	width:220px;
	height:305px;
	padding:0;
}
section#contenido {
	width:955px;
	margin-left:0;
	margin-top:15px;
	padding-left:20px;
	padding-top:10px;
	padding-right:25px;
	text-align:left;
	background:#FFF;
}
section#contenido h1 {
	color:#3333A4;
	font-size: 2em;
	line-height: 1;
	margin-top: 0;
	font-family:"gochihandregular";
}
section#contenido p {
	font-size:0.9em;
	line-height:1.5;
	letter-spacing:0.01em;
	font-family:Tahoma, Geneva, sans-serif;
}
section#titulo {
	padding: 20px 0 0 0;
	background-color:#FFF;
	margin-bottom:15px;
	width: 100%;
	border-bottom: 6px solid #cccccc;
}

section#titulo img {
	 float:left;
	 height:100px;
	 margin-right:20px;
	 margin-bottom:20px;
	}
section#titulo h1 {
	margin-top: 13px!important;
	color:#ff9933;
	font-size: 2.5em;
	line-height: 1;
	margin-top: 0;
	font-family:"gochihandregular";
	padding: 0;
}
section#titulo p {
	font-size:0.9em;
	line-height:1.5;
	letter-spacing:0.01em;
	font-family:Tahoma, Geneva, sans-serif;
	margin-bottom:15px;
}

section#contenido a:link, section#contenido a {
	color:#ff9933;
	font-weight:bold;
	letter-spacing: 0.010em;
}
section#contenido a:hover {
	color:#01137f;
}


/********/
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }

a {
	color: #003399;
	background-color: transparent;
	font-weight: normal;
}

h1 {
	color: #ff9933;
	background-color: transparent;
	/*border-bottom: 1px solid #D0D0D0;*/
	font-size: 26px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

code {
	font-family: Consolas, Monaco, Courier New, Courier, monospace;
	font-size: 12px;
	background-color: #f9f9f9;
	border: 1px solid #D0D0D0;
	color: #002166;
	display: block;
	margin: 14px 0 14px 0;
	padding: 12px 10px 12px 10px;
}

label{color: #716a6a; font-weight: bold; display: initial;}
label.radio{width: 100%; display: block;}
label.subtitle{font-size: 20px; border-bottom: 1px solid #756d6d; margin-bottom: 10px;}
label.tooltip{position: relative; display: inline-block; opacity: 1;}
label.tooltip .tooltiptext{visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0;
	/* Position the tooltip */ position: absolute; z-index: 1; left: 0; bottom: -55px;}
label.tooltip:hover .tooltiptext{visibility: visible;}
input, select, textarea {border: 0; background-color: transparent !important; border: 1px solid #cecece; /*font-weight: bold;*/ color: #ff9933 !important; padding: 5px 0; width: 100%;}
input[type="radio"], input[type="checkbox"]{width: initial;}
input.clase{width: 150px; color: #716a6a !important; font-weight: normal;}
.spacer-top-bottom{margin: 20px 0;}
.spacer-top-bottom-2{margin: 30px 0;}
div.img{float: right; width: 50%;}
div.solicitud-mensaje{width: 50%;}

p{margin: 15px 0;}
img{float: right;}
a{color: #ff9933 !important; font-weight: bold;}
span.orange{color: #ff9933;}
.f-w-normal{font-weight: normal !important;}
