﻿/*template css*/

/*media queries

	escritorio normal
	@media (max-width: 1199px) {
			...
		}

	tablet
	@media (max-width: 991px) {
		...
	}

	celular
	@media (max-width: 767px) {
		...
	}
*/


/*importando tipografías*/
@font-face {
    font-family: 'Edwardian';
    src: url('../fonts/edwardian-script-itc-webfont.eot');
    src: url('../fonts/edwardian-script-itc-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/edwardian-script-itc-webfont.woff2') format('woff2'),
         url('../fonts/edwardian-script-itc-webfont.woff') format('woff'),
         url('../fonts/edwardian-script-itc-webfont.ttf') format('truetype'),
         url('../fonts/edwardian-script-itc-webfont.svg#edwardian_script_itcregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Chunkfive';
    src: url('../fonts/chunkfive-webfont.eot');
    src: url('../fonts/chunkfive-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/chunkfive-webfont.woff2') format('woff2'),
         url('../fonts/chunkfive-webfont.woff') format('woff'),
         url('../fonts/chunkfive-webfont.ttf') format('truetype'),
         url('../fonts/chunkfive-webfont.svg#chunkfiveroman') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Lato-Italic';
    src: url('../fonts/lato-italic-webfont.eot');
    src: url('../fonts/lato-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lato-italic-webfont.woff2') format('woff2'),
         url('../fonts/lato-italic-webfont.woff') format('woff'),
         url('../fonts/lato-italic-webfont.ttf') format('truetype'),
         url('../fonts/lato-italic-webfont.svg#latoitalic') format('svg');
    font-weight: normal;
    font-style: italic;

}
@font-face {
    font-family: 'Lato-BoldItalic';
    src: url('../fonts/lato-bolditalic-webfont.eot');
    src: url('../fonts/lato-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lato-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/lato-bolditalic-webfont.woff') format('woff'),
         url('../fonts/lato-bolditalic-webfont.ttf') format('truetype'),
         url('../fonts/lato-bolditalic-webfont.svg#latobold_italic') format('svg');
    font-weight: bold;
    font-style: italic;

}
@font-face {
    font-family: 'Lato-Bold';
    src: url('../fonts/lato-bold-webfont.eot');
    src: url('../fonts/lato-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lato-bold-webfont.woff2') format('woff2'),
         url('../fonts/lato-bold-webfont.woff') format('woff'),
         url('../fonts/lato-bold-webfont.ttf') format('truetype'),
         url('../fonts/lato-bold-webfont.svg#latobold') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Lato-Regular';
    src: url('../fonts/lato-regular-webfont.eot');
    src: url('../fonts/lato-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lato-regular-webfont.woff2') format('woff2'),
         url('../fonts/lato-regular-webfont.woff') format('woff'),
         url('../fonts/lato-regular-webfont.ttf') format('truetype'),
         url('../fonts/lato-regular-webfont.svg#latoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: 'MyriadPro-Regular';
  src: url('MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),  url('MyriadPro-Regular.otf')  format('opentype'),
	     url('MyriadPro-Regular.woff') format('woff'), url('MyriadPro-Regular.ttf')  format('truetype'), url('MyriadPro-Regular.svg#MyriadPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* FONTS 2020 */
/* Titles */
@font-face{
    font-family: "Artifex CF";
    src: url("../fonts/ArtifexCFBold.otf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face{
    font-family: "Gotham Book";
    src: url("../fonts/GothamBook.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/*css general*/
body{
	margin:0 auto; 
	padding:0;
	color:#353535;
	background: #FFF;
	font-family: "Lato-Regular";
	
}
p {
	/*font-size: 2rem;*/
	margin-bottom: 3rem;
}


.footer p {
	font-size: 1.5rem;
}
*:focus{ outline:none; }
.clr1{
	display: table;
	height: 30px;
}
.clr2{
	display: table;
	height: 20px;
}
.clr3{
	display: table;
	height: 50px;
}
.clr4{
	display: table;
	height: 10px;
}
a:visited{
	text-decoration: underline;
	color: #c10005 !important;	
}
.menu-principal ul.menu li a:visited {
	color: #fff !important;
}

/* margin-top */
.mt-2 {
	margin-top: 10px !important;
}
.mt-3 {
	margin-top: 15px !important;
}
.mt-5 {
	margin-top: 30px !important;
}
/* margin-right */
.mr-2 {
	margin-right: 10px !important;
}
.mr-3 {
	margin-right: 15px !important;
}
.mr-5 {
	margin-right: 30px !important;
}
  
/* margin-bottom */
.mb-2 {
	margin-bottom: 10px !important;
}
.mb-3 {
	margin-bottom: 15px !important;
}
.mb-5 {
	margin-bottom: 30px !important;
}
/* margin-left */
.ml-2 {
	margin-left: 10px !important;
}
.ml-3 {
	margin-left: 15px !important;
}
.ml-5 {
	margin-left: 30px !important;
}
.border-bottom {
	border-bottom: 1px solid #bdbdbd;
}

.mb-16 {
	margin-bottom: 16px;
}

.mt-64 {
	margin-top: 64px;
}

.mb-64 {
	margin-bottom: 64px;
}

/* text wrap */
.ellipsis {
	text-overflow: ellipsis;
  
	/* Required for text-overflow to do anything */
	white-space: nowrap;
	overflow: hidden;
  }
  .overflow {
    width: 20em;
 /* outline: 1px solid #000;*/
  /*margin: 0 0 2em 0;*/
  
  /**
   * Required properties to achieve text-overflow
   */
      white-space: nowrap;
    overflow: hidden;
}
.video-container {
	border-bottom: none;
}
/*cabecera*/
.cabecera{	
	padding: 0;
}

/*identidad país*/

.center {
	margin: 0 20%;
	border: none !important;
}

.logo a img {
	max-width: 290px;
}  

#top-section .container .col-lg-3{
	margin-top: 30px;
}

.menu-principal,
.nav {
	background-color: #003876 !important;
}

.repDom{	
	width: 100%;
    margin-bottom: 5px;
	/*padding-left: 0;
	font-size: 28px;
	line-height: 40px;
	color: #000;
	display: inline;
	font-family: "Edwardian";
	*/
}
.repDom > img {
	width: 90%;
	float: right;
}

.page-header, 
.est-noticias h3 > span.title,
.contenido h1.title,
.section-title,
.est-buscador_noticias .row .col-sm-10,
.gallery h2
{
	font-family: "Artifex CF" !important;
	text-transform: capitalize !important;
	color: #ee2b24 !important;
	font-size: 35px !important;
}

#yoo-zoo .item .title .col-sm-10,
.est-buscador_noticias #custom1h3 .row .col-sm-10
{
	color: #fff !important;
	position: absolute;
    top: -135px;
	width: 100%;
	border-bottom: none !important;
}


.title-content
 {
	color: #fff !important;
	position: absolute;
    top: -190px;
	width: 100%;
	border-bottom: none !important;
}

.est-buscador_noticias input[type="text"],
.est-buscador_noticias select,
.contenido form select,
.contenido form input[type="submit"],
.est-buscador_noticias .button {
	padding: 12px 8px !important;
	font-size: 14px !important;
	border-color: #EE2A24 !important;
}

.contenido form input[type="submit"],
.est-buscador_noticias .button {
	font-family: "Gotham Book";
	color: #FFFFFF !important;
	background: #EE2A24 !important;
	border-color: #EE2A24 !important;
	text-transform: uppercase !important;
}

.contenido form input[type="submit"]
{
	font-family: "Gotham Book";
	color: #212529 !important;
	background: #bdbdbd !important;
	border-color: #bdbdbd !important;
	text-transform: uppercase !important;
}

.contenido form{
	
	margin: 16px 0 !important;
}

.documentos_relacionados .title{
	color: #EE2A24 !important;
	position: inherit !important;
    top: inherit !important;
	width: inherit !important;
	border-bottom: none !important;
}

.contenidoFull .element-textarea .col-md-4 .row strong,
.contenidoFull .element-textarea .col-md-4 .row strong span {
	color: #EE2A24 !important;
	float: right !important;
}

.tools {
	display: none !important;
}

.contenido h3#custom1h3,
h3,
.element-itemname,
.element-textarea h3
 {
	font-family: "Artifex CF" !important;
	text-transform: capitalize !important;
	color: #f84a43 !important;
	font-size: 22px !important;
	margin-top: 32px !important;
	margin-bottom: 16px !important;
}

.nombreOrganismo
 {
	font-family: "Artifex CF" !important;
	text-transform: uppercase !important;
	color: #ee2b24 !important;
	font-size: 18px !important;
	margin-top: 32px !important;
	margin-bottom: 16px !important;
}

a.nombreOrganismo:visited
 {	
	color: #ee2b24 !important;
}


.contenido h3#custom1h3,
.gallery h2 {
	border-bottom: solid #ee2b24 4px !important;	
}

.col-centered {
	float: none;
    margin: 0 auto;
}

/* SERVICIOS */

.infoAdicionalServicio,
.visores_archivos {
	background: #e1eff7;
	padding: 32px !important;
}

.infoAdicionalServicio p,
.serviciosContenido .requerimientos_procedimientos_Servicio > div > div > div > li,
.element-text,
.serviciosContenido .servicioOfrecidoPor,
.contenido #yoo-zoo .item .contenidoFull li,
.element-textarea p,
.element-textarea p span,
.visores_archivos,
.documentos-descripcion,
.contenidoFull p  {
	color: #212529 !important;
	font-size: 18px !important;
	line-height: 2 !important;
	font-family: "Gotham Book" !important;
	
}

/* SELECCION */

::selection {
    background-color: #2780c4;
    color: white;
}

/* ENLACES */
.visores_list li a,
.documentos-descripcion ul li a,
.documentos-documento a,
.leermas a,
.noticias-teaser p.leermas > a
 {
	color: #ee2b24 !important;
}

.visores_list li a:visited,
.documentos-descripcion ul li a:visited,
.documentos-documento a:visited,
.leermas a:visited,
.noticias-teaser p.leermas > a:visited,
.breadcrumb > .active {
	color: #c10005 !important;
}

.breadcrumb a {
	color: #777 !important;
}

.documentos-documento a,
.leermas a {
	text-transform: uppercase !important;
	margin-left: 8px !important;
	margin-right: 8px !important;
}

.documentos-documento,
.visores_list {	
	padding: 32px !important;	
}

.element-textarea h3 {
	margin-bottom: 32px;
	
}

.botonesInformacion {
	margin-top: 32px !important;
	margin-bottom: 32px !important;
}

/* GALERIA */

.jg_row {
	margin-top: 32px !important;
	margin-bottom: 32px !important;
}

.jg_element_txt {
	text-align: center !important;
}

.jg_element_txt ul li a b {
	font-size: 16px !important;
	color: #212529;
}

.jg_photo_container {
	text-align: left !important;
}

.jg_photo_container img {
	width: 170px;
	margin-bottom: 12px;
	height: auto;	
}


/* floating button scroll up */

.fixed-action-btn {
    position: fixed;
    z-index: 998;
    right: 24px;
    bottom: 45px;
    margin-bottom: 0;
	padding-top: 15px;
	
}
.btn-floating {
    -webkit-box-shadow: 0 6px 6px 0 rgba(255,102,0,.40), 0 5px 9px 0 rgba(255,102,0,.17);
    box-shadow: 0 6px 6px 0 rgba(255,102,0,.40), 0 5px 9px 0 rgba(255,102,0,.17);
    width: 47px;
    height: 47px;
    position: relative;
    z-index: 1;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 10px;
    -webkit-border-radius: 50%;
	border-radius: 50%;
	background: #ee2b24;
    padding: 0;
    cursor: pointer;
}

.btn-floating:hover {
	background: #c10005;
}

.btn-floating i {
    display: inline-block;
    width: inherit;
    text-align: center;
	color: #fff;
	font-size: 1.90rem;
    line-height: 44px;
}

.mylivechat_collapsed {
	background-color: rgb(0, 55, 118) !important;
    border: 0px solid rgb(14, 83, 149) !important;
}


/*buscador*/

.search{ width: 100%; float:right; }
.pSearch{ width:100%; height:auto; display:table; float:right; margin:5px 0 0 0; }
.pSearch input,
.fRight input{ float:left; border:0; }
.pSearch input#mod-search-searchword,
.fRight input#mod-search-searchword{ width:160px; height:25px; line-height:25px; -moz-box-shadow: inset 0 0 15px #999; -webkit-box-shadow: inset 0 0 15px #999; box-shadow: inset 0 0 15px #999; padding:0 10px; color:#B4B4B4; font-style:italic; }
.pSearch form,
.fRight form{ width:auto; float:right; }


.buscador input[type="text"]{
	width: 85%;
	border: 1px solid #ced4da;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
i.fa-search {
	font-size: 20px;
	color: #6c757d;
	display:inline-block;
	text-align:center;
	top: 6px;
	left: 10px;
}

#boton_menu {
	border: none;
	font-size: 25px;
	background: #FFFFFF;
	color: #FF6600;
}
/*
.active-cyan-4 input[type=text]:focus:not([readonly]) {
	border: 1px solid #FF6600;
	box-shadow: 0 0 0 1px #FF6600;
	box-shadow: rgba(147, 148, 149, 0.4) 0px 7px 40px;
	} */



/*
	.buscador input[type="text"],
	form#searchForm input[type="text"]{
		width: 100%;
		height: 28px;
		background: #c7c8cb;
		line-height: 28px;		
		border-color: #dddddd !important;
		padding:0 8px;
		font-size: 14px;
		color: #000;
		font-style: italic;
	}
*/

/*
.buscador{
	width:223px;
	float: right;
	margin-top: 10px;
}
	.buscador *{
		margin: 0;
	}
	.buscador input[type="text"],
	.buscador button.button{
		height: 30px;
		float: right;
	}
	
	#mod-search-searchword{
		width:100%;
		padding: 5px;
	}
	
	form#searchForm label{
		display: inline-block;
	}
	form#searchForm .ordering-box{
		position: relative;
		top: 8px;
	}
	
	.buscador button.button,
	form#searchForm button{
		height: 28px;
		width: 28px;
		font-size: 16px;
		color: #fff;
		border: 0;
		margin:0;
		padding:0 3px 0 0;
	}
	form#searchForm input[type="text"]{
		width: 100%;
		margin-top: 0;

	}
	form#searchForm input[type="text"],
	form#searchForm button{
		float: left;
	}
	form#searchForm button{
		width: 100%;
	}
	*/
	form#searchForm .campoBuscador{
		padding-right: 0;
	}
	form#searchForm fieldset label{
		margin-left: 20px;
		font-weight: normal;
	}
	
	form#searchForm h3{
		font-family: "Lato-Regular";
		font-size: 16px;
		line-height: 22px;
		font-weight: bold;
		margin-top: 0;
		margin-bottom: 0;
	}
	form#searchForm .searchintro{
		margin-top: 5px;
	}
	form#searchForm .searchintro > p > strong{
		font-weight: normal;
	}
	.search-results .resultadoBusqueda{
		border-top:solid #C9C9C9 1px;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.search-results .resultadoBusqueda:first-child{
		border-top: 0;
	}
	.search-results .resultadoBusqueda:nth-child(even){
		background: #F0F0F0;
	}


.nav {
	display: block !important;
}
/* mostrar content servicios tab*/
.fade:not(.show) {
    opacity: 1 !important; 
}

/*menú de navegación facil*/
.menu-navegacion-facil{
	float: right;
	/*margin-top: 10px;*/
}
	.menu-navegacion-facil .menu > li{
		list-style: none;
		display: inline-block;

	}
	.menu-navegacion-facil .menu > li,
	.menu-navegacion-facil .menu > li a{
		height: 15px;
		line-height: 15px;
		color: #2D2D2D;
		text-transform: uppercase;
		font-size: 1.2rem;
	}
	.menu-navegacion-facil .menu > li{
		border-right: solid #2D2D2D 1px;
	}
	.menu-navegacion-facil .menu > li a{
		margin:0;
		padding:0 10px;
	}
	.menu-navegacion-facil .menu > li a:hover{
		background: none;
		text-decoration: underline;
	}
	.menu-navegacion-facil .menu > li a:visited{
		color: #c10005 !important;	
	}
	

	.menu-navegacion-facil .menu > li:last-child{
		border: 0;
	}
	.menu-navegacion-facil .menu > li:last-child a{
		padding-right: 0;
	}
/*Menu principal*/
  /* menu-principal top fixed */
  .affix {
      top: 0;
	  width: 100%;
	  margin-top: 0;
      z-index: 9999 !important;
  }

.menu-principal{
	width: 100%;	
	/*margin-top: 15px;*/
	height:52px;
	line-height: 36px;
	/*border-bottom: solid #C9C9C9 3px;*/
}
	div.menu-principal div.menu{
		margin: 0;
		padding: 0;
	}
	.menu-principal .menu > li{
		list-style: none;
		display: inline-block;
		margin: 0 0 0 0;
	}
	.menu-principal .menu > li:last-child{
		margin: 0;
	}
	.menu-principal .menu > li,
	.menu-principal .menu > li a{
		color: #fff;
		text-transform: none;
		font-size: 16px;
	}
	.menu-principal .menu > li a{
		display: block;
		padding: 8px 16px;
		/*padding: 8.5px 18px;*/
	}
	.menu-principal .menu > li.active a,
	.menu-principal .menu > li:hover a{
		background: rgba(0, 0, 0, 0.2);
		transition: background .3s;
		-moz-transition: background 0.3s; /* Firefox 4 */
		-webkit-transition: background 0.3s; /* Safari and Chrome */
		-o-transition: background 0.3s; /* Opera */
	}
	.menu-principal .menu > li > ul{
		background: #0e5395;
		width: 350px;
		visibility:hidden;
		opacity:0;
		transition:visibility 0s linear 0.3s,opacity 0.3s linear;
		-moz-transition: visibility 0s linear 0.3s,opacity 0.3s linear;; /* Firefox 4 */
		-webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;; /* Safari and Chrome */
		-o-transition: visibility 0s linear 0.3s,opacity 0.3s linear;; /* Opera */
		position: absolute;
		padding: 0;
		margin: 0;
		z-index: 5;
	}
	.menu-principal .menu > li > ul > li{
		list-style: none;
		display: block;
		
	}
	.menu-principal .menu > li > ul > li > a:hover{
		text-decoration: none;
		background: none;
	}
	.menu-principal .menu > li > ul > li > a{
		border-top-width: 1px;
		border-top-style: solid;
	}
	.menu-principal .menu > li:hover > ul{
		visibility:visible;
		opacity:1;
		transition-delay:0s;
	}
	.menu-principal .menu > li.active ul > li.active a{
		background: none;
	}

	.menu-principal .menu > li > ul > li > a,
	.nav li {
		border-color: #0e5395;
	}

	.parentSign{
		font-size: 6px;
	}
	.parentSign .glyphicon{
		margin-left: 5px;
		transform : rotate(90deg);
		-moz-transform : rotate(90deg); /* Firefox */
		-webkit-transform : rotate(90deg); /* Chrome - Safari */
		-o-transform : rotate(90deg); /* Opera */
	}
	.mnu-marco-legal .parentSign .glyphicon {
		display: none;
	}



/* SEMBLANZA DEL MINISTRO */

	.ministro-post-content {
               bottom: 32px;
               right: 32px;
               position: absolute;
          }

          .ministro-post-content h2 {
               font-size: 1.8rem !important;
		color: #EE2A24 !important;                
          }

          .ministro-post-content span {
               font-size: 16px;               
          }

          .ministro-logo-content {
               top: 32px;
               left: -18px;
               position: absolute;
          }

          .ministro-thumbnail{
               position:relative;

          }

          #ministro-img {
               width: 100%;
          }

          #ministro-institucion-logo{
               width: 100%;
          }

	     .blog-contenido-semblanza-del-minsitro	.contenidoFull img {
               padding: inherit;
               background: inherit;
               border: inherit;
               display: block;
               margin: inherit;
	     }

          #ministro-box {
               padding: 16px;
               background-color: rgb(240 240 240);
          }

          .ministro-description{
               color: #111111;
          }



/*modulos portada*/


/* app-mobile-section */
#app-mobile-section {
	border-bottom: 1px solid #707070;
}
.app-store {
	max-height: 64px;
}
.app-banners a img {
	padding: 8px;
}
.linea {
	position: relative;
	z-index: 1;
  }
  .linea:before {
	border-top: 2px solid #707070;
	content: "";
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	width: 95%;
	z-index: -1;
  }



/*    MENU MOVIL     */

/*Cabecera movil*/
.cabecera_movil-top{
	width: 100%;	
	box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	border-bottom: solid #C9C9C9 1px;
	/*padding-top: 5px;
	padding-bottom: 5px;*/
}

#cabecera_movil-top1 {
	margin-top: 0 !important;
	padding: 10px 0;	
	border-bottom: solid #C9C9C9 1px;
}
#cabecera_movil-top2 {
	padding: 15px 0;
	/*box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);*/
	border-bottom: solid #C9C9C9 1px;
}
.cabecera_movil .menu_movil_boton > a > span{
	color: #FF6600;
	font-size: 28px;
	line-height: 35px;
}
.cabecera_movil .menu_movil,
.menu_movil ul.menu > li.parent > ul{
	display: none;
}
/*menu movil*/

.menu_movil ul.menu > li{
	margin-bottom: 2px;
}
.menu_movil ul.menu > li a{
	color: #fff !important;
	font-size: 16px;
	text-transform: none;
	padding: 16px 16px;
}
.menu_movil ul.menu > li a:visited{
	color: #fff !important	
}
.menu_movil ul.menu > li:hover a,
.menu_movil ul.menu > li.active a{	
	background: rgba(0, 0, 0, 0.2);
	transition: background .3s;
	-moz-transition: background 0.3s; /* Firefox 4 */
	-webkit-transition: background 0.3s; /* Safari and Chrome */
	-o-transition: background 0.3s; /* Opera */
}
.menu_movil ul.menu > li.parent > ul > li{
	list-style: none;
	display: block;
	margin-bottom: 2px;
}
.menu_movil ul.menu > li.parent > ul > li > a{
	display: block;
	padding-left: 25px;
}
.menu_movil ul.menu > li.parent > ul{
	margin-top: 2px;
	margin-left:0;
	padding-left: 0;
}
.menu_movil ul.menu > li.parent > ul > li:last-child{
	margin-bottom: 0;
}
.menu_movil ul.menu > li.parent > ul > li:hover a{
	background: rgba(0, 0, 0, 0);
	text-decoration: none;
}
.menu_movil ul.menu > li.parent > ul > li > a:before {
	content: "- ";
}



/*   TITLES   */
.h1, h1 {
    font-size: 4rem !important;
}
h2 {
	font-size: 2.5rem !important;
}


/*    SERVICIOS SLICK   */

.seccion311 {
	background: #F8F9FA;
}
.card-img-top {
	width: inherit !important;
}
.section-title {
	margin: 4rem;
}

.service-name,
.service-description {
	margin-bottom: 1.5rem;
}

.services-icon {
	width: 160px;
	height: 129px;
	margin: 0 auto;
}

.card .card-body .card-text {
    color: #747373;
    font-size: 1.75rem !important;
    font-weight: 400;
}

.btn {
	text-transform: initial !important;
	font-size: 1.75rem !important;
}


a.btn-primary,
.btn {
    background-color: #003776 !important;    
    border-radius: 4px !important;
}

a.btn-primary:hover,
.btn:hover {
    background-color: #0e5395 !important;    
    border-radius: 4px !important;
}

a.btn-primary:visited {
    color: #FFFFFF !important;        
}

#btn-ver-todos-servicios{
	margin: 72px 0;
}






.slider {
	width: 50%;
	margin: 100px auto;
}
.slick-slide {
  margin: 0px 20px;
}
.slick-slide img {
  width: 100%;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}

.slick-active {
  opacity: .5;
}
.slick-current {
  opacity: 1;
}









/* SERVICIOS BANNERS */
/*
.bannerServicios {
width:100%;
height:auto;
   border-bottom: 2px solid #777777;
   padding: 10px 15px;
   background: rgba(255, 255, 255, 0.5);
   -webkit-transition: background 1s ease-out;
  -moz-transition: background 1s ease-out;
  -o-transition: background 1s ease-out;
  transition: background 1s ease-out;
}

#bannerLactanciaMaterna:hover {	
	background: #7a84c0;
	cursor:pointer;
}


#bannerOmlad:hover {

background:#1d62a2;
cursor:pointer;
}

#bannerUtelain:hover {

background:#ed0c0c;
cursor:pointer;
}

#bannerUtelain img:hover { 
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: brightness(0) invert(1);

-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}

#bannerInfotep:hover {
background:#fcba06;
cursor:pointer;
}

#bannerSalario:hover {
background:#71bf00;
cursor:pointer;
}

#bannerSalario img:hover { 
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: brightness(0) invert(1);

-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
*/
#columna1 {
	transition: all 0.5s ease;
}
#columna1:hover {
	background: url("../images/erradicacion-trabajo-infantil.svg");
	background-repeat: no-repeat;	
}





/* slide noticias */
.estslide-principal .container {
 /*   width: 100% !important;
    padding: 0;*/
}

/* Banner slider */ 

.slide-banners {
background: #f9f9f9;
}

.owl-carousel.owl-drag .owl-item {
 margin-right:50px;
}

.card {
	box-shadow: none !important;
}
.view {
	margin: 0 auto !important;
}

.grises img {
filter: url('#grayscale'); /* Versión SVG para IE10, Chrome 17, FF3.5, Safari 5.2 and Opera 11.6 */
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%); /* Para cuando es estándar funcione en todos */
filter: Gray(); /* IE4-8 and 9 */

-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.grises img:hover { 
-webkit-filter: grayscale(0%);
-moz-filter: grayscale(0%);
-ms-filter: grayscale(0%);
-o-filter: grayscale(0%);
filter: none;

-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}











.services-section {
	padding: 4em 0;
}

.site-title h3 {
color: #002D62;
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 800;
}

.services-column .service-box a {
text-decoration: none;
}

.services-column .service-box a:hover {
text-decoration: none;
}

.services-column .service-box a h3 {
	color: #002D62;
    font-size: 1.5em;
    margin: .5em 0;
    font-weight: 600;
}



.services-column {
	margin:25px 0;	
}



.services-column .service-box {
	padding:50px 25px;
	-webkit-box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	-moz-box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	
}
/*
.services-column .service-box:hover {
	-webkit-box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	-moz-box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
}
*/
.services-column .service-box a p {
color: #002D62;
    font-size: .9em;
    line-height: 1.8em;
    margin: 0;
}

.services-column .service-box a img {
	padding: 15px;
}

.service-column .service-box a a span {
	color: rgb(2, 117, 216);
}

.service-column .service-box a a span:hover {
	color: #FF6600;
}



/* AREA MULTIMEDIA */

.media-section {
	/*background: #bdbdbd !important;*/
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-frame-active {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-frame iframe, .video-frame-active iframe {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}





/* END AREA MULTIMEDIA */

.col-sm-12 {
	padding-top: 0;
}

.estslide-principal{
	/*background-image: url("/images/banners/slide-bg.png");*/
	background: #bdbdbd;
	 background-repeat: no-repeat;
	 background-position: center;
	background-size: cover;
	overflow: hidden;
	/*height: 26.5vh !important;*/
	height: 30vh !important;
    /*height: 410px;*/
}
.carousel {
	/*-webkit-box-shadow: 0px 65px 10px -50px rgba(0,0,0,0.2);
    box-shadow: 0px 65px 10px -50px rgba(0,0,0,0.2);*/
}
.slideHome .carousel-inner {
	margin-top: 0px;
	border: none;
}
/* .carousel-inner > .item > img, .carousel-inner > .item > a > img {
	height: 26.5vw !important;
} */
/*.controlSlide, .carousel-indicators {		
	bottom: 15px !important;
}*/
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
	height: 70vh !important;
}
/*.controlSlide {
    	
    	border: none;
	border-radius: 50px;
	top: 50 !important;
}*/


/* OVERLAY CAROUSEL */

.mensajeSlide{
	position:relative;
	display:inline-block;
  }
  .mensajeSlide .text-wrapper{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(44, 44, 44, 0.4);
	opacity:1;
	transition:opacity 500ms ease-in-out;
  }
  .mensajeSlide:hover .text-wrapper{
	opacity:1;
	width: 100% !important;
	padding-left: 50px;
  }
  .text-wrapper span{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color: rgba(44, 44, 44, 0.9);
  }





.custom2{
	/*width: 100%;*/
	
	/* border-bottom: solid #C9C9C9 3px; */
	/* border-bottom: solid #FF6600 3px; */
}
.servicioOfrecidoPor {
    border-left-style: solid;
    border-left-width: 5px;
    padding-left: 10px;
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
}
/*pie de pagina*/	
.footer{
	padding-top: 25px;
	padding-bottom: 25px;
	color: #2D2D2D;
	font-size: 12px;
}
	.borderFooter{
		background: #ee2b24;
		width: 100%;
		height: 3px;
		display: block;
		clear: both;
		position: relative;
		top: -3px;
		z-index: 1;
	}
	.footer .identidad{
		width: auto;
		display: table;
		margin: 0 auto;
	}
	.footer .identidad > li{
		width: 67px;
		height: 67px;
		list-style: none;
		display: inline-block;	
	}
	.footer .identidad > li > img{
		vertical-align: baseline;
	}
	.footer .identidad > li.separador{
		width: 3px;
		background: #C9C9C9;
		margin: 0 20px;
	}
	.selloNortic{
		/*text-align: right;*/
	}
	/*
	.selloNortic > span{
		position: absolute;
		right: 0;
		margin-right: 15px;
	}
	*/
	
	
	
	.owl-carousel .owl-item img {
		width: inherit !important;
	}
	
	
	


	
.estsection-PremioOX {
	background: #c9c9c9;
}
	

ul#timeline {
padding-left: inherit;
margin-left:inherit;
}

	
	   .timeline{
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
    }
.li {
      transition: all 200ms ease-in;
    margin: 20px;
    border: 2px solid #FFF;
    border-radius: 50%;
}


.timestamp {
  /*margin-bottom: 20px;*/
      padding: 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
  color:#FFF;
}
.timestamp:hover {
/*transition: all 200ms ease-in;*/
background:rgb(0,0,0,0.3);
border-radius:50%;
}

/* BOTON IR AL SERVICIO EN DETALLES DE SERVICIOS*/
.botonesInformacion .row:last-of-type .col-sm-6:last-of-type .botonInfo {
	/*color: #fff;
    background: #FF6600;*/
}


	
	
	
	
	
	
	
	.footer p{
		text-align: center;
		margin-bottom: 2px;
	}
	.footer p:first-child{
		margin-top: 20px;
	}
	.footer p > a.nombreOrganismo{
		text-transform: uppercase;
		font-weight: bold;
	}
	.footer .menu{
		width: auto;
		display: table;
		margin: 0 auto;
	}
	.footer .menu > li{
		list-style: none;
		display: inline-block;
		border-right: solid #575757 1px;
	}
	.footer .menu > li:last-child{
		border:0;
	}
	.footer .menu > li > a{
		margin:0;
		padding: 0 7px;
	}
	.footer .menu > li > a:hover{
		background: none;
		text-decoration: underline;
	}
	.footer .glyphicon{
		transform : rotate(180deg);
		-moz-transform : rotate(180deg); /* Firefox */
		-webkit-transform : rotate(180deg); /* Chrome - Safari */
		-o-transform : rotate(180deg); /* Opera */
		color: #fff;
		font-size: 16px;
		margin-right: 5px;
	}
	.footer .subir{
		color: #fff;
		font-size: 12px;
		padding: 7px 16px;
	}
	.footer .boton{
		margin: 10px 0;
	}
	.footer .subir:hover{
		color: #fff;
		text-decoration: none;
	}
	
/*paginacion*/	
ul.pagination{
	width: auto;
	display: table;
	margin: 20px auto;
}
ul.pagination > li > a > i{
	padding: 3px 0;
	position: relative;
	top:0;
}
/*rastro de navegacion*/
.rastro_navegacion{
	width: 100%;
	height: auto;
	border-bottom: solid #C9C9C9 3px;
	background: #F0F0F0;
	padding: 5px 0;
}
.rastro_navegacion .breadcrumb{
	background: none;
	margin:0;	
}
.rastro_navegacion .breadcrumb {
	font-size: 14px !important;
}
/*contenido*/
.contenido{
	width: 100%;
	height: auto;
	padding-top: 25px;
	padding-bottom: 25px;
}
	
	
	.contenido ol > li{
		margin-bottom: 10px;
	}
	.contenido #yoo-zoo .item .contenidoFull h1,
	.contenido #yoo-zoo .item .contenidoFull h2,
	.contenido #yoo-zoo .item .contenidoFull h3{
		font-family: "Lato-Regular";
		font-size: 16px;
		line-height: 22px;
		font-weight: bold;
	}
	.contenido #yoo-zoo .item .contenidoFull h1{
		font-size: 20px;
	}
	.contenido #yoo-zoo .item .contenidoFull h2{
		font-size: 18px;
	}
	.contenido #yoo-zoo .item .contenidoFull li{
		margin-left: 10px;
	}
	.contenidoFull img{
		padding: 2px;
		background: #fff;
		border:solid #C9C9C9 1px;
		display: block;
		margin: 0 10px 10px 0;
	}
	




	/* Small devices (landscape phones, 576px and up)*/
	@media (min-width: 576px){

	.logo {
		padding: 15px 0;
	}
	.logo a img {
		width: 630;
	}  
	.repDom{
		width: 100%;		
		margin: 0 auto;				
	}
	.fixed-action-btn {
		position: fixed;
		z-index: 998;
		right: 5px;
		bottom: 35px;
		margin-bottom: 0;
		padding-top: 15px;
		
	}

	.buscador-movil {
		width: 100%;
		background: #FFF;
		display: inline-flex;
	}	

	/* start hamburguer menu icon animations */ 

	#boton_menu {
		border: none;
		background: #FFFFFF;
		color: #FF6600;
	}
	/* Icon 1 */

.animated-icon1, .animated-icon2, .animated-icon3 {
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	}
	
	.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	}
	
	.animated-icon1 span {
	background: #e65100;
	}	
	
	.animated-icon1 span:nth-child(1) {
	top: 0px;
	}
	
	.animated-icon1 span:nth-child(2) {
	top: 10px;
	}
	
	.animated-icon1 span:nth-child(3) {
	top: 20px;
	}
	
	.animated-icon1.open span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	}
	
	.animated-icon1.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
	}
	
	.animated-icon1.open span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
	}
	
	/*  end hamburguer menu icon   */



	.slideHome .mensajeSlide {
		position: absolute !important;
		bottom: 0 !important;
		font-size: 1.5em !important;
		padding: 5px !important;	
		left: 0 !important;	
	}

	/* .estslide-principal{		
		background: #bdbdbd;
		 background-repeat: no-repeat;
		 background-position: center;
		background-size: cover;
		height: 70vw !important;		
	} */
	.estslide-principal{
		/*background-image: url("/images/banners/slide-bg.png");*/
		background: #bdbdbd;
		 background-repeat: no-repeat;
		 background-position: center;
		background-size: cover;
		height: 100vh !important;
		/*height: 410px;*/
	}
	
	.carousel-inner > .item > img, .carousel-inner > .item > a > img {
		width: 100%;
		min-height: auto !important;
		/*height: auto;*/
		/*height: 70vw !important;*/
	}

	.slideHome .mensajeSlide .text-wrapper {
		position: absolute !important;
		left: 0;		
		padding-left: 20px;
		bottom: 35px;
	}

	

	.controlSlide, .carousel-indicators {		
		bottom: 15px !important;
	}

  .timeline {
    list-style-type: none;
    display: inline-block;
  }
  .li {
    transition: all 200ms ease-in;
    display: flex;
    width: inherit;
  }
  .timestamp {
    width: 100px;
  }
  
  .sj_popup_wrap {
  display:none;
  }
  
  .owl-carousel.owl-drag .owl-item {
 margin-right:50px;
}

/*Cabecera movil*/
.cabecera_movil-top{
	width: 100%;
	padding: 10px 0;
	box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	border-bottom: solid #C9C9C9 1px;
	/*padding-top: 5px;
	padding-bottom: 5px;*/
}
.cabecera_movil .menu_movil_boton > a > span{
	color: #FF6600;
	font-size: 28px;
	line-height: 35px;
}
.cabecera_movil .menu_movil,
.menu_movil ul.menu > li.parent > ul{
	display: none;
}
/*menu movil*/

.menu_movil ul.menu > li{
	margin-bottom: 2px;
}
.menu_movil ul.menu > li a{
	color: #fff !important;
	font-size: 16px;
	text-transform: none;
	padding: 16px 16px;
}
.menu_movil ul.menu > li:hover a,
.menu_movil ul.menu > li.active a{	
	background: rgba(0, 0, 0, 0.2);
	transition: background .3s;
	-moz-transition: background 0.3s; /* Firefox 4 */
	-webkit-transition: background 0.3s; /* Safari and Chrome */
	-o-transition: background 0.3s; /* Opera */
}
.menu_movil ul.menu > li.parent > ul > li{
	list-style: none;
	display: block;
	margin-bottom: 2px;
}
.menu_movil ul.menu > li.parent > ul > li > a{
	display: block;
	padding-left: 25px;
}
.menu_movil ul.menu > li.parent > ul{
	margin-top: 2px;
	margin-left:0;
	padding-left: 0;
}
.menu_movil ul.menu > li.parent > ul > li:last-child{
	margin-bottom: 0;
}
.menu_movil ul.menu > li.parent > ul > li:hover a{
	background: rgba(0, 0, 0, 0);
	text-decoration: none;
}
.menu_movil ul.menu > li.parent > ul > li > a:before {
	content: "- ";
}
/* multimedia */ 
.video-container {
	border-bottom: 1px solid #bdbdbd;
}
.overflow {
    width: 100%;
 /* outline: 1px solid #000;*/
  /*margin: 0 0 2em 0;*/
  
  /**
   * Required properties to achieve text-overflow
   */
   white-space: pre-wrap;
    /*overflow: hidden;*/
}
.estprincipales-servicios {	
	margin-top: 80px;
}
/*Sello mobile*/
.selloMobile a span{
	display: block;
}
 
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
	.logo {
		padding: 15px 0;
	}
	.logo a img {
		width: 630;
	}  
	.elementos-cabecera {
		width:100%;
		padding: 10px 0;
		box-shadow: 0px 0px 5px 2px rgba(232,232,232,1);
	}
	.repDom{
		width: 100%;		
		margin: 0 auto;
		font-size: 26px;	
		/*border-bottom: 1px solid #bdbdbd;*/
		
	}
	#boton_menu {
		border: none;
		background: #FFFFFF;
		color: #FF6600;
	}
	.cabecera_movil .menu_movil,
.menu_movil ul.menu > li.parent > ul{
	display: none;
}
	.col-centered {
		float: none;
		margin: 0 auto;
	}
	.cabecera{
		height: auto;
		margin:0;
		/*padding-top: 15px;
		padding-bottom: 15px;
		*/
		/*border-bottom: solid #C9C9C9 1px;*/
	}
	.buscador-movil {
		width: 100%;
		background: #FFF;
		display: inline-flex;
	}	
	.cabecera_movil .menu_movil_boton > a > span{
		color: #FF6600;
		font-size: 28px;
		line-height: 35px;
	}
	.contenido .panel_derecho h3#custom1h3{
			border-top: solid #C9C9C9 2px;
			margin-top: 15px;
			margin-bottom: 15px;
			padding-bottom: 7px;
			padding-top: 9px;
		}
		.footer{
			padding-top: 15px;
			padding-bottom: 17px;
		}
		.footer p:first-child {
		margin-top:0;
		}
		.menuLegalFooter{
			visibility: hidden;
		}

		.estslide-principal{
			/*background-image: url("/images/banners/slide-bg.png");*/
			background: #bdbdbd;
			 background-repeat: no-repeat;
			 background-position: center;
			background-size: cover;
			height: 50vh !important;
			/*height: 410px;*/
		}
		/* .estslide-principal{			
			background: #bdbdbd;
			 background-repeat: no-repeat;
			 background-position: center;
			background-size: cover;
			height: 90vw !important;			
		} */
		.carousel-inner > .item > img, .carousel-inner > .item > a > img {
			width: 100%;
			min-height: auto !important;			
			height: 50vh !important;
		}
		/* .carousel-inner > .item > img, .carousel-inner > .item > a > img {
			width: 100%;
			min-height: auto !important;			
			height: 90vw !important;
		} */
		.slideHome .mensajeSlide {
			position: absolute;
			top: 0;
			left: 0;			
		}
		.slideHome .mensajeSlide .text-wrapper {
			position: absolute !important;
			left: 0;		
			padding-left: 50px;
			padding-right: 50px;
			bottom: 35px;
		}
		
		
		.estslide-principal > .container > .row > .col-sm-12 {
			padding-right: 0 !important;
		}
		/* multimedia */ 
.video-container {
	border-bottom: 1px solid #bdbdbd;
}
.overflow {
    /*width: 80%;*/
 /* outline: 1px solid #000;*/
  /*margin: 0 0 2em 0;*/
  
  /**
   * Required properties to achieve text-overflow
   */
     white-space: pre-wrap;
    /*overflow: hidden;*/
}
.estprincipales-servicios {	
	margin-top: 80px;
}
form#searchForm .campoBuscador{
	padding-right: 15px;
}
.mobileSearch button{
	display: none;
}


.buscador.mobileSearch{
	width: 100%;
	/*height: 50px;		*/	
}
.buscador.mobileSearch input[type="text"]{
	width: 100%;
}
form#searchForm label{
display: block;
}
form#searchForm .ordering-box{
	position: relative;
	top: 0;
	margin-bottom: 15px;
}
form#searchForm div.pull-left{
	float:none;
	clear: both;
}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.menu-navegacion-facil .menu > li a{
		padding:0 9px;
	}
	.buscador input[type="text"]{
		width:188px;
	}
	.repDom{
		font-size: 27px;
	}
}

/*Panel derecho*/
/* PANEL DERECHO */

.panel_derecho {
	margin-top: -147px !important;
}

.panel_derecho .menu li{
	margin-bottom: 1px;
	background: inherit;
	color: #fff;
	text-transform: capitalize;
	font-size: 14px;
}
.panel_derecho .menu li > a{
	color: #fff;
	font-weight: 400;
}
.panel_derecho ul.menu li a:visited {
	color: #FFF !important;	
}
.panel_derecho .menu li.active > a,
.panel_derecho .menu li.current > a,
.panel_derecho .menu li > a:hover{
	background: rgba(0, 0, 0, 0.2);
	transition: background .3s;
	-moz-transition: background 0.3s; /* Firefox 4 */
	-webkit-transition: background 0.3s; /* Safari and Chrome */
	-o-transition: background 0.3s; /* Opera */
}

.footer .nav,
.menu-navegacion-facil .nav {
	background-color: inherit !important;
}
/*modulo mapa de sitio*/
.est-mapa_de_sitio ul.menu{
	margin: 0;
	padding: 0;
	left: 0;
}
.est-mapa_de_sitio ul.menu li{
	display: block;
	font-size: 14px;
}
.est-mapa_de_sitio ul.menu li a,
.est-mapa_de_sitio ul.menu li a:hover{
	margin: 0;
	padding: 0;
	background: none;
}
/*tools*/
.tools span{ 
	font-size: 16px;
	color: #777;
}