@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 2011-01-26 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, u, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 14px;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
a, a:hover, a:active, a:focus { text-decoration: none; outline: 0; }
img, figure{ max-width: 100%; }
h3{font-size: 18px;}
h2{font-size: 22px;}
h1{font-size: 26px;}
input, textarea{
	font-size: 14px;
	font-family: "Roboto", sans-serif;	
}
/* ================================================ END RESET.CSS ======================================================= */

/* ============================================= Modo Movil ============================================= */
html {
	font-family: "Roboto", sans-serif;
	background-color: #111;
}
body {
	background-color: #E6EDF2;
}
.wrapper{
	box-sizing: border-box;
	width: 1200px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* ============================== HEADER ============================== */
header {
	display:flex;/*es contenedor de items flexibles*/
	align-items:center;/*centrado vertical*/
	width: 100%;
	position: fixed;/*posicion libre*/
	top: 0;/*arriba*/
	z-index: 10000;/*arriba del todo*/
	background-color:#007DB9;
	background-color:rgba(0,125,185,0.80);
	height: 60px;
	padding: 16px;
    box-sizing: border-box;
}
header .wrapper{
	display:flex;/*es contenedor de items flexibles*/
	align-items:center;/*centrado vertical*/
}
header #menu_button{
	flex-shrink: 0;/*no se achica en caso de faltar espacio*/
	padding: 12px;
	max-width: 24px;
}
header #menu_logo{
	padding: 3px 12px 0px 12px;/*links a tienen 3px extra por debajo*/
	margin: 0 auto 0 auto;
}
header #menu_logo img{
	max-height: 50px;
}
header #headerRightContainer{
	padding: 0px 4px;
	align-self: flex-end;
	flex-grow:2;/*rellena el espacio sobrante*/
	flex-shrink: 0;/*no se achica en caso de faltar espacio*/
	display:flex;/*es contenedor de items flexibles*/
	justify-content:flex-end;/*aliniado a la derecha*/
	flex-direction: column;
}
header #headerRightContainer .botonera{
	display: flex;
	justify-content: flex-end;
	padding: 8px 0;
}
header #headerRightContainer .botonera > *{
	width: 32px;
	height: 32px;
	border-radius: 8px;
	max-width: 100%;
	margin: 4px;
	overflow: hidden;
}
header #headerRightContainer .botonera > *:hover{
	box-shadow: 0 4px 4px #0007;
}
header nav{
	display: none;/*no se muestra en modo movil*/
}
header nav a{
	padding: 8px 8px 5px 8px;/*links a tienen 3px extra por debajo*/
	font-weight: bold;
}
header nav a, header nav a:hover, header nav a:active, header nav a:focus { color: #FFFFFF}
header nav a{
	transition-duration: 400ms;
	-moz-transition-duration: 400ms;
	-o-transition-duration: 400ms;
	-webkit-transition-duration: 400ms;
}
header nav a:hover {
	color: #222;
}

/* ============================ MOVIL NAV ============================ */
#movil_nav{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;/*posicion libre*/
	top: 60px;/*debajo del header*/
	z-index: 10000;/*igual que el header*/
}
#movil_nav nav{
	box-sizing: border-box;
	width: 270px;
	min-height: 100%;
	display: flex;/*es contenedor de items flexibles*/
	flex-direction: column;/*direccion de los items flexibles*/
	padding: 10px 20px 0px 20px;
	background-color:#007DB9;
	background-image: linear-gradient(180deg, #007DB9 0%, #004566 100%);
	position: relative;
	left: -270px;/*oculto a la izquierda para animacion*/
}
#movil_nav #movil_nav_lista{}
#movil_nav nav a{
	padding: 20px;
	border-bottom: 1px solid #FFFFFF;
}
#movil_nav nav a, #movil_nav nav a:hover, #movil_nav nav a:active, #movil_nav nav a:focus { color: #FFFFFF}

/* ============================== FOOTER ============================== */
footer{
	color: #999999;
	background-color:#333333;
	background-image: linear-gradient(180deg,#333333 0%,#111111 100%);
	padding-top: 12px;
	-webkit-box-shadow: 0px -2px 5px #666666;
	-moz-box-shadow: 0px -2px 5px #666666;
	box-shadow: 0px -8px 8px 0px rgba(0,0,0,0.6);
}
footer .wrapper{
	display:flex;/*es contenedor de items flexibles*/
	align-items:center;/*centrado vertical*/
	justify-content: space-between; /*espacia internamente los items*/
	padding: 12px;
}
footer #footer_logo, footer #footer_contacto, footer #footer_fiscal{
	display:flex;/*es contenedor de items flexibles*/
	align-items:center;/*centrado vertical*/
	flex-direction: column;/*direccion de los items flexibles*/	
	flex-wrap: wrap;
}
footer #footer_logo{
	display: none;
}
footer #footer_logo img{
	max-height: 24px;
}
footer #footer_contacto{
	align-items:flex-start;/*alinieado a la izquierda*/
}
footer #footer_contacto img{ 
	max-width: 24px;
}
footer #footer_contacto p{
	margin-left: 8px;
}
footer .footer_row{
	display:flex;/*es contenedor de items flexibles*/
	align-items:center;/*centrado vertical*/
	margin-left: 12px;
}
footer #footer_fiscal a{
	display:flex;/*es contenedor de items flexibles*/
	align-items:center;/*centrado vertical*/
}
footer #footer_fiscal img{
	max-height: 56px;
}
footer a, footer a:hover, footer a:active, footer a:focus { color: #999999}


/* ======================================== Modo Escritorio ======================================== */
@media only screen and (min-width: 600px) {
	/* ============================ HEADER ============================ */
	header{
		height: auto;
	}
	header #menu_logo img{
		max-height: 96px;
	}
	header #menu_button{
		display: none;/*no se muestra en modo escritorio*/
	}
	
	header nav{
		display:flex;
		justify-content:flex-end;
	}
	
	/* =========================== FOOTER ============================ */
	footer #footer_logo{
		display: flex;
	}
}