/* Minification failed. Returning unminified contents.
: run-time error CSS1036: Expected expression, found ''
 */

/* -----------------------------------
 * Slidebars
 * Version 0..10
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */

html, body, #sb-site, .sb-site-container, .sb-slidebar {
	/* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html, body {
	width: 100%;
	overflow-x: hidden; /* Stops horizontal scrolling. */
}

html {
	height: 100%; /* Site is as tall as device. */
}

body {
	min-height: 100%;
	height: auto;
	position: relative; /* Required for static Slidebars to function properly. */
}

html.sb-scroll-lock.sb-active:not(.sb-static) {
	overflow: hidden; /* Prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
}

/* ----------
 * 002 - Site
 */

#sb-site, .sb-site-container {
	/* You may now use class .sb-site-container instead of #sb-site and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
	width: 100%;
	/*position: relative;*/
	z-index: 1; /* Site sits above Slidebars */
	background-color: #ffffff; /* Default background colour, overwrite this with your own css. I suggest moving your html or body background styling here. Making this transparent will allow the Slidebars beneath to be visible. */
}

/* ---------------
 * 003 - Slidebars
 */

.sb-slidebar {
	padding:10px;
	height: 100%;
	overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
	position: fixed;
	top: 0;
	z-index: 0; /* Slidebars sit behind sb-site. */
	display: none; /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
	background-color: #222222; /* Default Slidebars background colour, overwrite this with your own css. */
	-webkit-transform: translate(0px); /* Fixes issues with translated and z-indexed elements on iOS 7. */
}

.sb-left {
	left: 0; /* Set Slidebar to the left. */
}

.sb-right {
	right: 0; /* Set Slidebar to the right. */
}

html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
	position: absolute; /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}

.sb-slidebar.sb-active {
	display: block; /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
	/*z-index:9999;*/
}

.sb-style-overlay {
	z-index: 9999; /* Set z-index high to ensure it overlays any other site elements. */
}

.sb-momentum-scrolling {
	-webkit-overflow-scrolling: touch; /* Adds native momentum scrolling for iOS & Android devices. */
}

/* Slidebar widths for browsers/devices that don't support media queries. */
	.sb-slidebar {
		width: 30%;
	}
	
	.sb-width-thin {
		width: 15%;
	}
	
	.sb-width-wide {
		width: 45%;
	}

@media (max-width: 480px) { /* Slidebar widths on extra small screens. */
	.sb-slidebar {
		width: 70%;
	}
	
	.sb-width-thin {
		width: 55%;
	}
	
	.sb-width-wide {
		width: 85%;
	}
}

@media (min-width: 481px) { /* Slidebar widths on small screens. */
	.sb-slidebar {
		width: 55%;
	}
	
	.sb-width-thin {
		width: 40%;
	}
	
	.sb-width-wide {
		width: 70%;
	}
}

@media (min-width: 768px) { /* Slidebar widths on medium screens. */
	.sb-slidebar {
		width: 40%;
	}
	
	.sb-width-thin {
		width: 25%;
	}
	
	.sb-width-wide {
		width: 55%;
	}
}

@media (min-width: 992px) { /* Slidebar widths on large screens. */
	.sb-slidebar {
		width: 30%;
	}
	
	.sb-width-thin {
		width: 15%;
	}
	
	.sb-width-wide {
		width: 45%;
	}
}

@media (min-width: 1200px) { /* Slidebar widths on extra large screens. */
	.sb-slidebar {
		width: 20%;
	}
	
	.sb-width-thin {
		width: 5%;
	}
	
	.sb-width-wide {
		width: 35%;
	}
}

/* ---------------
 * 004 - Animation
 */

.sb-slide, #sb-site, .sb-site-container, .sb-slidebar {
	-webkit-transition: -webkit-transform 400ms ease;
	   -moz-transition: -moz-transform 400ms ease;
	     -o-transition: -o-transform 400ms ease;
	        transition: transform 400ms ease;
	-webkit-transition-property: -webkit-transform, left, right; /* Add left/right for Android < 4.4. */
	-webkit-backface-visibility: hidden; /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}

/* --------------------
 * 005 - Helper Classes
 */
 
.sb-hide { 
	display: none; /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}
body {
    font-family: 'Raleway', sans-serif;
    background: #ffffff !important;
    font-size: 16px;
    content:"";
}

.NoMargin {
    margin: 0px !important;
}

.container {
    background: #fff;
    width: 80%;
}

.accessible.skiptocontent {
    background: #000000;
    border-radius: 0px 0px 5px 5px;
    display: block;
    padding: 15px 25px;
    position: fixed;
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

.accessible.skiptocontent:focus,
.accessible.skiptocontent:active {
    color: #fff;
    background-color: #000;
    left: auto;
    top: auto;
    width: 30%;
    height: auto;
    overflow: auto;
    margin: 10px 35%;
    padding: 5px;
    border-radius: 15px;
    border: 4px solid yellow;
    text-align: center;
    font-size: 1.2em;
    z-index: 999;
}

#sb-site {
    min-height: 0px !important;
}

#sb-site .navbar-default {
    border-radius: 0px !important;
    margin: 0 !important;
    border: none !important;
    min-height: auto;
    background: transparent;
}

.sb-slide.hidden-sm.hidden-md.hidden-lg.hidden-xl {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 9999;
    width: 100%;
    background: #1b3a66;
    height: 41px;
}

.LogoMobile {
    position: absolute;
    top: 7px;
    left: 50%;
    margin-left: -105px;
    text-decoration: none !important;
    display: block;
    width: 210px;
}

.LogoMobile span {
    color: #ffffff;
    display: block;
    float: left;
    font-family: 'Raleway', sans-serif;
    padding: 0px 10px;
    font-size: 18px;
}

.LogoMobile span.LogoSpan {
    width: 25px;
    height: 25px;
    background: url(/images/imprenta_logo_blanco.png) no-repeat top left;
    background-size: 100%;
}

.sb-toggle-right {
    cursor: pointer;
    margin: 10px 10px 5px 5px !important;
}

.bodyPaddingTop {
    padding-top: 130px;
}

.topContainer {
    background: #005e6e;
    display: flex;
    height: 55px;
    justify-content: end;
    margin-bottom:2px;
    padding: 5px 15px;
    position: relative;
}

    .topContainer .franja {
        background: #ee7517;
        border-right: 2px solid #ffffff;
        display: block;
        height: 55px;
        left: 0;
        position: absolute;
        top: 0;
        width: 10%;
    }

header {
    padding: 15px 0px;
}

.headerActive,
nav.PrincipalNav.PrincipalNavActive {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    margin: 0px !important;
}

nav.PrincipalNav.PrincipalNavActive {
    top: 81px;
    background: #6d6e70;
}

.headerActive .HeaderContainer {
    padding: 0px !important;
}

.CambiarFont a {
    color: #ffffff;
    padding: 0px 3px;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
}

    .CambiarFont a:hover,
    .CambiarFont a:focus {
        color: #ee7517;
        text-decoration: none !important;
    }

.decreaseFont {
    font-size: 20px;
}

.resetFont {
    font-size: 25px;
}

.increaseFont {
    font-size: 30px;
}

.RedesContainer {
    padding: 7px 0 0 25px;
}

.RedesContainer li {
    display: block;
    float: left;
    list-style: none;
    padding: 5px;
    border-radius: 0px;
    background: transparent;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

    .RedesContainer li:hover {
        border-radius: 10px;
        background: #ee7517;
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        /* Firefox 4 */
        -webkit-transition: all 0.5s ease 0s;
        /* Safari and Chrome */
        -o-transition: all 0.5s ease 0s;
        /* Opera */
    }

.tramitesBtn {
    background: #005e6e;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    padding: 5px;
    margin-top: 15px;
    text-decoration: none;
    width: 100%;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

    .tramitesBtn:hover {
        text-decoration: none !important;
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        /* Firefox 4 */
        -webkit-transition: all 0.5s ease 0s;
        /* Safari and Chrome */
        -o-transition: all 0.5s ease 0s;
        /* Opera */
        background: #ee7517;
    }

.tramitesBtn .tramitesText {
    color: #ffffff;
    display: block;
    font-weight: 600;
    font-size: 17px;
    padding: 0px 15px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    width: 100%;
}

.logueado .tramitesBtn span.icn_tramites,
.tramitesBtn span.icn_tramites {
    display: none;
}


/*Search*/

.SearchContainer {
    width: 100%;
    background: #005e6e;
    border-radius: 5px;
    padding: 0 15px;
}

    .SearchContainer:hover {
        text-decoration: none !important;
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        /* Firefox 4 */
        -webkit-transition: all 0.5s ease 0s;
        /* Safari and Chrome */
        -o-transition: all 0.5s ease 0s;
        /* Opera */
        background: #ee7517;
    }

.SearchContainer input {
    background: url(/images/lupa.png) no-repeat right center;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.SearchContainer input::placeholder {
    color: #ffffff;
    opacity: 1;
    /* Firefox */
}

.SearchContainer input::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #ffffff;
}
.SearchContainer input#expresion{
	width: 300px;
}
.SearchContainer .input-group-btn {
    display: none;
}

.BuscadorEspecificoGacetaContainer .SearchContainerGacetaPagina {
    border-radius: 25px 0px 0px 25px !important;
    background: #e6e7e8;
    border: none;
    width: 150px !important;
}

.SearchContainer .input-group-btn #botonBuscar,
.SearchContainer .input-group-btn .btn.btn-default,
.BuscadorEspecificoGacetaContainer .BtnContainerGacetaPagina {
    border-radius: 0px 25px 25px 0px !important;
    background: #ee7517;
    cursor: pointer;
}

.searchContainer .tituloBusquedaAsistente{
	font-size: 17px;
	font-weight: bold;
	color: #666;
}
.searchContainer .buscadorPublicaciones {
  display: flex;
}
.searchContainer .criteriosUlContainer {
    text-align: left;
	color: #666;
}
.searchContainer .criteriosUlContainer a {
  float: right;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px 10px;
}

#MenuMobileContainer #BuscarButtonMobile {
    border: 1px solid #005e6e;
    background: #005e6e !important;
    margin:0 !important;
    padding: 4px 15px !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

    #MenuMobileContainer #BuscarButtonMobile:hover {
        border: 1px solid #ee7517;
        background: #ee7517 !important;
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        /* Firefox 4 */
        -webkit-transition: all 0.5s ease 0s;
        /* Safari and Chrome */
        -o-transition: all 0.5s ease 0s;
        /* Opera */
    }

.glyphicon.glyphicon-search {
    width: 15px !important;
    color: #ffffff;
}

nav.PrincipalNav {
    background: #1b3a66;
}

#MainContainer.container {
    background: #ffffff !important;
    padding: 0;
}

.ContentContainer {
    position: relative;
}

.ContextualesContainer .col-xs-12 {
    padding: 0px !important;
}

.ContextualesContainer img {
    width: 100%;
}

.ImagenContextualCaption {
    position: absolute;
    font-family: 'Raleway', sans-serif;
    display: block;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 25px;
    bottom: 20px;
    left: 0;
    color: #ffffff;
    font-size: 35px;
}

.SliderDegInternas .NoPadding {
    min-height: 0px;
}

.ContentContainer .MainContentPlaceDiv {
    padding: 25px 0px;
}

.ContentContainer.HomeContentContainer .MainContentPlaceDiv {
    /*padding: 0px 0px 25px;*/
    padding: 0px;
}

.SocialMediaBottomContainer {
    background: #1b3a66;
    color: #ffffff;
    padding: 10px;
}

.SocialMediaBottomContainer .marginCenter {
    font-size: 20px;
    width: 270px;
}

.BottomContainer {
    background: #c7c9cb;
    color: #000000;
    padding: 10px 20px 20px;
    font-size: 14px;
    margin: 0 -15px;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    position: relative;
}

.BottomInfoContainer .BottomFlex {
    display: flex;
    justify-content: center;
    margin: 5px 15px 10px;
}

.BottomInfoContainer .BottomFlex .sprite {
    margin: 0 5px;
}

.BottomInfoContainer a {
    color: #000000;
}

.BottomInfoContainer p {
    margin-bottom: 0;
}

.BottomInfoContainer p strong {
    display: block;
    margin-top: 10px;
}

.BottomInfoContainer p:first-child strong {
    margin: 0 !important;
}

.LogosFooterContainer .BottomFlex {
    display: flex;
}

Footer {
    align-items: center;
    background: #c7c9cb;
    color: #000000;
    display: flex;
    flex-direction: column;
    margin: 0 -15px;
    padding: 20px;
}

.copyContainer,
.DateLastUpdate {
    font-size: 14px;
}

.ServerIPDiv {
    color: #000000;
}

.DateLastUpdate {
    padding-bottom: 20px;
}

.creative_logo {
    margin: 10px 15px 0px 0px;
}

.CreativeText {
    font-size: 11px;
}

.CreativeText p {
    margin-bottom: 0;
}

.LogosFooterContainer a {
    margin: 10px;
}


/*----------------*/

.ChatBtn {
    position: fixed;
    right: 31px;
    bottom: 125%;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

.ChatBtn.ChatBtnActive {
    bottom: 176px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
    z-index: 999;
}

.cd-container {
    width: 90%;
    max-width: 768px;
    margin: 2em auto;
}

.cd-container::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

.backtotop {
    display: inline-block;
    background: #5A585B;
    border: 3px solid #ffffff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    position: fixed;
    bottom: 130px;
    padding: 5px 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    right: 30px;
    color: #ffffff !important;
    font-size: 20px;
    z-index: 9;
}

.backtotop.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.backtotop.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

.backtotop.cd-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    /*opacity: .5;*/
}

.no-touch .backtotop:hover {
    background-color: #777879;
    opacity: 1;
}

.backtotopstatic {
    /*top: -92px !important;*/
    position: relative;
}

.backtotop.backtotopstatic {
    bottom: 680px;
    position: absolute;
    top: auto;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

@media only screen and (min-width: 768px) {
    .backtotop {
        /*right: 20px;
    bottom: 20px;*/
    }
}

@media only screen and (min-width: 1024px) {
    .backtotop {
        /*height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;*/
    }
}

p.MsoNormal,
li.MsoNormal,
div.MsoNormal,
.MsoListParagraph,
p.MsoListParagraphCxSpMiddle,
li.MsoListParagraphCxSpMiddle,
div.MsoListParagraphCxSpMiddle,
p.MsoListParagraphCxSpFirst,
li.MsoListParagraphCxSpFirst,
div.MsoListParagraphCxSpFirst,
p.MsoListParagraphCxSpLast,
li.MsoListParagraphCxSpLast,
div.MsoListParagraphCxSpLast,
#HERMES_FORM_Container,
#HERMES_FORM_Container label,
#HERMES_FORM_Container select,
.ContentContainer,
.VTabsPages,
.MsoTableGrid,
.ui-widget-header,
.ContenedorGacetaPrincipal p {
    font-family: 'Raleway', sans-serif !important;
    color: #000000;
    font-size: 16px !important;
}

p.MsoNormal {
    min-height: 15px;
}

img[align='left'],
img[style*='float:left'],
img[style*='float: left'] {
    margin: 0 5px 15px 0 !important;
}

img[align='right'],
img[style*='float:right'],
img[style*='float: right'] {
    margin: 0 0 15px 5px !important;
}

.ContentContainer h1 {
    display: block;
}

.ContentContainer h1,
.ContentContainer h1 span,
.ContentContainer h1 a,
.ContentContainer h1 a span,
.ContentContainer a h1,
.ContentContainer a h1 span,
.ContenedorGacetaPrincipal h1,
.ContenedorGacetaPrincipal h1 span,
.ContenedorGacetaPrincipal h1 a,
.ContenedorGacetaPrincipal h1 a span,
.ContenedorGacetaPrincipal a h1,
.ContenedorGacetaPrincipal a h1 span {
    font-size: 40px;
    font-family: 'Didact Gothic', sans-serif !important;
    padding: 0px !important;
    color: #1b3a66 !important;
    /*margin:0px 0px 15px !important;*/
    font-weight: 400 !important;
    text-align: left;
}

.ContentContainer h2,
.ContentContainer h2 span,
.ContentContainer h2 a,
.ContentContainer h2 a span,
.ContentContainer a h2,
.ContentContainer a h2 span,
.ContenedorGacetaPrincipal h2,
.ContenedorGacetaPrincipal h2 span,
.ContenedorGacetaPrincipal h2 a,
.ContenedorGacetaPrincipal h2 a span,
.ContenedorGacetaPrincipal a h2,
.ContenedorGacetaPrincipal a h2 span {
    font-size: 26px;
    font-family: 'Didact Gothic', sans-serif !important;
    padding: 0px !important;
    color: #1b3a66 !important;
    /*margin:0px 0px 10px !important;*/
    font-weight: 400 !important;
}

.ContentContainer h3,
.ContentContainer h3 span,
.ContentContainer h3 a,
.ContentContainer h3 a span,
.ContentContainer a h3,
.ContentContainer a h3 span,
.ContenedorGacetaPrincipal h3,
.ContenedorGacetaPrincipal h3 span,
.ContenedorGacetaPrincipal h3 a,
.ContenedorGacetaPrincipal h3 a span,
.ContenedorGacetaPrincipal a h3,
.ContenedorGacetaPrincipal a h3 span {
    font-size: 22px;
    font-family: 'Didact Gothic', sans-serif !important;
    padding: 0px !important;
    color: #1b3a66 !important;
    /*margin:0px !important;*/
    font-weight: 400 !important;
}

.ContentContainer a,
.ContentContainer a span,
.ContenedorGacetaPrincipal a,
.ContenedorGacetaPrincipal a span {
    color: #005e6e !important;
    font-family: 'Raleway', sans-serif !important;
    text-decoration: underline;
}

    .ContentContainer a:hover,
    .ContentContainer a:hover span,
    .ContenedorGacetaPrincipal a:hover,
    .ContenedorGacetaPrincipal a:hover span {
        color: #005e6e !important;
    }

.ContentContainer h1 a,
.ContentContainer h1 a span,
.ContentContainer a h1,
.ContentContainer a h1 span,
.ContenedorGacetaPrincipal h1 a,
.ContenedorGacetaPrincipal h1 a span,
.ContenedorGacetaPrincipal a h1,
.ContenedorGacetaPrincipal a h1 span,
.ContentContainer h2 a,
.ContentContainer h2 a span,
.ContentContainer a h2,
.ContentContainer a h2 span,
.ContenedorGacetaPrincipal h2 a,
.ContenedorGacetaPrincipal h2 a span,
.ContenedorGacetaPrincipal a h2,
.ContenedorGacetaPrincipal a h2 span,
.ContentContainer h3 a,
.ContentContainer h3 a span,
.ContentContainer a h3,
.ContentContainer a h3 span,
.ContenedorGacetaPrincipal h3 a,
.ContenedorGacetaPrincipal h3 a span,
.ContenedorGacetaPrincipal a h3,
.ContenedorGacetaPrincipal a h3 span {
    text-decoration: none !important;
}

.ContentContainer h1 a:hover,
.ContentContainer h1 a:hover span,
.ContentContainer a:hover h1,
.ContentContainer a:hover h1 span,
.ContenedorGacetaPrincipal h1 a:hover,
.ContenedorGacetaPrincipal h1 a:hover span,
.ContenedorGacetaPrincipal a:hover h1,
.ContenedorGacetaPrincipal a:hover h1 span,
.ContentContainer h2 a:hover,
.ContentContainer h2 a:hover span,
.ContentContainer a:hover h2,
.ContentContainer a:hover h2 span,
.ContenedorGacetaPrincipal h2 a:hover,
.ContenedorGacetaPrincipal h2 a:hover span,
.ContenedorGacetaPrincipal a:hover h2,
.ContenedorGacetaPrincipal a:hover h2 span,
.ContentContainer h3 a:hover,
.ContentContainer h3 a:hover span,
.ContentContainer a:hover h3,
.ContentContainer a:hover h3 span,
.ContenedorGacetaPrincipal h3 a:hover,
.ContenedorGacetaPrincipal h3 a:hover span,
.ContenedorGacetaPrincipal a:hover h3,
.ContenedorGacetaPrincipal a:hover h3 span {
    text-decoration: underline !important;
}

.ContentContainer a.btn,
.ContentContainer a.btn span {
    color: #ffffff !important;
    text-decoration: none;
}

.ContentContainer a span.glyphicon {
    font-family: "Glyphicons Halflings" !important;
}

.TableConverted .row {
    margin: 15px 0;
}


/******************Menus**********************/

.MenuHeaderContainer .nav.navbar-nav {
    margin: 0px;
}

.MenuHeaderContainer li.divider {
    height: 15px;
    width: 1px;
    background: #595a5c;
    margin: 6px 0px 0px;
}

.MenuHeaderContainer li.divider span {
    display: none;
}

.MenuHeaderContainer .nav.navbar-nav a {
    color: #ffffff;
    padding: 4px 13px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
}

.MenuHeaderContainer .nav.navbar-nav a:hover {
    color: #146e8b;
}

.FooterMenuContainer .nav.navbar-nav {
    align-items: stretch;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.FooterMenuContainer .nav.navbar-nav li {
    align-items: stretch;
    display: flex;
    float: none;
    margin: 0px 15px;
    text-align: center;
}

.FooterMenuContainer .nav.navbar-nav li.divider span {
    width: 1px;
    height: 100%;
    overflow: hidden;
    display: block;
    position:relative;
}
    .FooterMenuContainer .nav.navbar-nav li.divider span::after {
        display: block;
        width: 1px;
        background: #fff;
        height: 100%;
        content: "";
        top: 0;
        left: 0;
        position: absolute;
    }

.FooterMenuContainer .nav.navbar-nav li li {
    float: none;
    width: 95%;
}

.FooterMenuContainer .nav.navbar-nav li.open a {
    background: none !important;
}

.FooterMenuContainer .nav.navbar-nav li {
    padding: 15px 0px;
}

.FooterMenuContainer .nav.navbar-nav li a {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    text-align: center;
    padding: 0px 15px;
}

.FooterMenuContainer .nav.navbar-nav li:first-child a {
    border-left: 1px solid #ffffff;
    padding-left: 30px;
}

.FooterMenuContainer .nav.navbar-nav li:last-child a {
    border-right: 1px solid #ffffff;
    padding-right: 30px;
}

.FooterMenuContainer .nav.navbar-nav li .row {
    margin: 0px !important
}

.FooterMenuContainer .nav.navbar-nav li a:hover {
    background: none;
}

.FooterMenuContainer .nav.navbar-nav li ul li {
    display: block;
    list-style: none;
    margin: 8px 0px;
    position: relative;
}

.FooterMenuContainer .nav.navbar-nav li ul li a {
    font-size: 15px;
    font-weight: 400;
}

.FooterMenuContainer a[href="#"] {
    cursor: default;
    text-decoration: none;
}

.containerTransaccional {
    padding: 0 25px;
}

.formGroup-table td {
    padding: 5px;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 4px 0 0 5px !important;
}


/**/

#MenuPrincipalContainer .nav.navbar-nav {
    width: 100%;
    text-align: center;
}

#MenuPrincipalContainer .nav.navbar-nav>li>a {
    color: #fff !important;
}

#MenuPrincipalContainer .nav.navbar-nav>li {
    text-align: center;
    float: none;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

#MenuPrincipalContainer>.hidden-xs>div>ul.nav.navbar-nav>li {
    padding: 15px 0px !important;
}

#MenuPrincipalContainer>.hidden-xs>div>ul.nav.navbar-nav>li>a {
    border-left: 1px solid #ffffff !important;
    padding: 0px 25px !important;
}

#MenuPrincipalContainer>.hidden-xs>div>ul.nav.navbar-nav>li:last-child>a {
    border-right: 1px solid #ffffff !important;
}

#MenuPrincipalContainer .caret {
    display: none;
}

.navbar-nav>li>.dropdown-menu {
    border-radius: 0px !important;
    width: 250px;
    border: none;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#404041+39,000000+100 */
    background: #5a5b5e;
    /* Old browsers */
    /*background: -moz-linear-gradient(top,  #404041 39%, #000000 100%); FF3.6-15 */
    /* background: -webkit-linear-gradient(top,  #404041 39%,#000000 100%); Chrome10-25,Safari5.1-6 */
    /* background: linear-gradient(to bottom,  #404041 39%,#000000 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#404041', endColorstr='#000000',GradientType=0 ); IE6-9 */
}

.navbar-default .navbar-nav>li>a {
    color: #ffffff !important;
    font-family: 'Raleway', sans-serif !important;
    border: 0px !important;
    font-size: 18px;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav a:focus,
.navbar-default .navbar-nav li:focus,
#MenuPrincipalContainer .dropdown-menu li ul li a:hover,
#MenuPrincipalContainer .nav.navbar-nav>li:hover,
#MenuPrincipalContainer .nav.navbar-nav>li.open {
    background: #5a5b5e !important;
}

.dropdown-menu li ul li a,
.dropdown-menu li a {
    font-size: 14px !important;
}

#MenuPrincipalContainer .dropdown-menu li ul li a:hover,
#MenuPrincipalContainer .dropdown-menu li a:hover {
    background: #c8c8c8 !important;
}

#MenuPrincipalContainer .dropdown-menu li ul li a:hover,
#MenuPrincipalContainer .dropdown-menu li a:hover .menuTextContainer {
    color: #000000 !important;
}

#MenuMobileContainer {
    padding: 0px !important;
}

#MenuMobileContainer ul {
    margin: 0 0 0 auto;
}

#MenuMobileContainer li {
    display: block;
    padding: 2px 5px !important;
    text-align: left;
    border-bottom: 1px solid #333333;
}

#MenuMobileContainer li a {
    color: #ffffff !important;
    padding: 5px;
    font-size: 17px;
}

#MenuMobileContainer li a:hover,
#MenuMobileContainer .nav .open>a,
#MenuMobileContainer .nav .open>a:focus,
#MenuMobileContainer .nav .open>a:hover {
    background: #444444;
}

#MenuMobileContainer .navbar-nav>li>.dropdown-menu {
    border-radius: 0px !important;
    background: none !important;
    padding-top: 0px !important;
}

#MenuMobileContainer .divider {
    display: none;
}

.MenuByRolesDiv {
    padding-top: 25px;
}

.MenuByRolesDiv li {
    position: relative;
}

.MenuByRolesDiv li:after {
    width: 0%;
    position: absolute;
    height: 1px;
    background: #c9c9c9;
    content: "";
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

.MenuByRolesDiv li:hover:after {
    width: 100%;
}

.MenuByRolesDiv li a {
    display: block;
    padding: 5px 10px 5px 35px !important;
    position: relative;
    margin: 8px 0px;
    color: #000000 !important;
    font-family: 'Raleway', sans-serif;
    font-size: 16px !important;
    text-decoration: none !important;
}

.MenuByRolesDiv li a:hover {
    background: none !important;
}

.MenuByRolesDiv li a::after,
.MenuByRolesDiv li a::before {
    content: "";
    display: block;
    border-radius: 25px;
    position: absolute;
    width: 3px;
    height: 15px;
    background: #f78c29;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

.MenuByRolesDiv li a::before {
    left: 15px;
    top: 13px;
    transform: rotate(45deg);
}

.MenuByRolesDiv li a::after {
    left: 15px;
    top: 4px;
    transform: rotate(-45deg);
}

.MenuByRolesDiv li a:hover::after,
.MenuByRolesDiv li a:hover::before {
    background: #ee7517;
}

.MenuByRolesDiv .MemuGrupo a {
    font-size: 20px !important;
    font-weight: bold;
    background: #eee;
    padding-left: 10px !important;
}

.MenuByRolesDiv .MemuGrupo a:hover {
    background: #eee !important;
}

.MenuByRolesDiv .MemuGrupo a:before {
    content: none;
}

.MenuByRolesDiv .MemuGrupo a:after {
    content: none;
}


/*-----------------*/

.mega-dropdown {
    font-size: 12px;
    /*position: static !important;*/
    /*width:100%;*/
}

.mega-dropdown-menu {
    /*position:relative !important;*/
    left: inherit !important;
    padding: 20px 0px;
    width: 100%;
    box-shadow: none;
    -webkit-box-shadow: none;
}


/*.mega-dropdown-menu:before {
    content: "";
    border-bottom: 15px solid #fff;
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
    position: absolute;
    top: -15px;
    left: 285px;
    z-index: 10;
}
.mega-dropdown-menu:after {
    content: "";
    border-bottom: 17px solid #ccc;
    border-right: 19px solid transparent;
    border-left: 19px solid transparent;
    position: absolute;
    top: -17px;
    left: 283px;
    z-index: 8;
}*/

.mega-dropdown-menu>li {
    padding-left: 7px !important;
    padding-right: 7px !important;
    font-size: 12px;
}

.mega-dropdown-menu>li li {
    text-align: left !important;
    list-style: none;
    display: block;
}

.mega-dropdown-menu>li>ul {
    background: none !important;
    border-top: 1px solid #666666;
}

.mega-dropdown-menu>li>ul li.col-sm-6 {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

#MenuPrincipalContainer .mega-dropdown-menu>li>ul li.col-sm-6 ul li a {
    padding-left: 25px !important;
    position: relative !important;
}

#MenuPrincipalContainer .mega-dropdown-menu>li>ul li.col-sm-6 ul li a::after {
    position: absolute;
    content: ">";
    top: 5px;
    left: 15px;
    display: block;
}

.mega-dropdown-menu>li ul li a {
    font-size: 13px !important;
    padding: 4px 40px !important;
    position: relative;
}

.dropdown.mega-dropdown.open ul li a {
    position: relative;
    height: auto !important;
}

.dropdown.mega-dropdown.open ul li a {
    color: #ffffff !important;
    font-family: 'Raleway', sans-serif !important;
}

.dropdown.mega-dropdown.open ul li ul li a {
    color: #ffffff !important;
    font-weight: 400;
}

.mega-dropdown-menu>li>ul {
    padding: 0;
    margin: 0;
}

.mega-dropdown-menu>li>ul>li {
    list-style: none;
}

#MenuPrincipalContainer .mega-dropdown-menu>li>ul>li>a,
#MenuPrincipalContainer .dropdown-menu.mega-dropdown-menu li a {
    display: block;
    padding: 6px 10px !important;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    white-space: normal;
}

#MenuPrincipalContainer li li li a span {
    padding-left: 8px !important;
    display: block;
}

.mega-dropdown-menu>li ul>li>a:hover,
.mega-dropdown-menu>li ul>li>a:focus {
    text-decoration: none;
    color: #444;
    background-color: #f5f5f5;
}

.mega-dropdown-menu .dropdown-header {
    color: #428bca;
    font-size: 12px;
    font-weight: bold;
}

.mega-dropdown-menu form {
    margin: 3px 20px;
}

.mega-dropdown-menu .form-group {
    margin-bottom: 3px;
}


/********************RSS**********************/

.NoticiasTitle {
    color: #005e6e;
    font-size: 45px;
    text-align: center;
    padding: 25px;
    display: block;
    font-weight: bold;
}

.rssFeed .noticiasticker {
    width: 99%;
    /*//height:250px;
	//text-align:center;*/
    margin-left: 1% !important;
}

.rssFeed .noticiasticker div {
    /*padding-bottom: 20px;
	padding-top: 20px;
	border-bottom: 1px solid #2a90a9;*/
}

.rssFeed .HomeRSSTitulo {
    /*text-align:center;*/
    height: 65px;
    display: block;
    overflow: hidden;
}

.rssFeed .HomeRSSDescription {
    padding: 10px 0px;
}

.NoticiasContainer {
    display: block;
    position: relative;
    /*height:290px;*/
    padding: 10px 25px;
}

.PrincipalContentContainer .ContainerNoticias {
    position: relative;
}

.rssFeed {
    display: block;
}

.rssFeed .RssItemContainer {
    position: relative;
}

.rssFeed .slick-slide {
    display: block;
    float: left;
    text-align: center;
    margin: 0px 5px !important;
    list-style: none;
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px;
    color: #3c393a;
    height: 420px;
}

.rssFeed .slick-slide .RSSItem {
    background: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

.rssFeed .slick-slide .RSSItem:hover,
.rssFeed .slick-slide.slick-current .RSSItem:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

.rssFeed .slick-slide.slick-current .RSSItem {
    background: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    /* Firefox 4 */
    -webkit-transition: all 0.5s ease 0s;
    /* Safari and Chrome */
    -o-transition: all 0.5s ease 0s;
    /* Opera */
}

.rssFeed .slick-slide .RSSItem {
    display: block;
    padding: 20px 30px;
    height: 369px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.rssFeed .slick-slide .RSSItem .RssInfoContainer {
    display: block;
    height: 337px;
    width: 100%;
    overflow-y: hidden;
}

.rssFeed .RSSDate {
    color: #252223 !important;
    font-family: 'Raleway', sans-serif !important;
    text-align: left;
    font-size: 14px !important;
    display: block;
}

.rssFeed .RssImage {
    display: block;
    width: 100%;
    text-align: center;
}

.rssFeed .RssImage img {
    max-height: 150px;
    margin: 5px auto;
    max-width: 100%;
}

.rssFeed .slick-slide a {
    color: #515051 !important;
    text-decoration: none;
    font-family: 'Raleway', sans-serif !important;
    display: block;
    font-size: 20px !important;
    font-weight: 600;
    padding: 5px 0px 15px !important;
    text-align: left;
    line-height: 19px;
}

.rssFeed .slick-slide.slick-current a,
.rssFeed .slick-slide.slick-current .HomeRSSDescription {
    color: #000000 !important;
}

.rssFeed .slick-slide a:hover,
.rssFeed .slick-slide:hover a {
    color: #ee7517 !important;
}


/*#rssWidget .slick-slide a::after,*/

.rssFeed .VerMasContainer {
    position: absolute;
    bottom: 12px;
    display: block;
    left: 0px;
    width: 100%;
}

.rssFeed a.SlickVerMas,
.rssFeed .slick-slide.slick-current a.SlickVerMas {
    color: #ffffff !important;
    text-align: center;
    display: block;
    background: #005e6e;
    padding: 10px 15px !important;
    position: relative;
    font-size: 16px !important;
}

.rssFeed .slick-slide.slick-current a.SlickVerMas {
    background: #005e6e;
    color: #ffffff !important;
}

.rssFeed .slick-slide.slick-current a.SlickVerMas:hover,
.rssFeed .slick-slide a.SlickVerMas:hover,
.rssFeed .slick-slide.slick-current:hover a.SlickVerMas,
.rssFeed .slick-slide:hover a.SlickVerMas {
    background: #ee7517;
    color: #ffffff !important;
}

    .rssFeed a.SlickVerMas::before {
        display: block;
        position: absolute;
        content: "";
        height: 2px;
        width: 0%;
        background: #005e6e;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: 0px auto;
        transition: all 1s;
    }

.rssFeed a.SlickVerMas:hover::before {
    width: 100%;
    background: #ee7517;
}

.rssFeed .slick-slide h4,
.rssFeed .slick-slide p {
    display: block;
    font-family: 'Raleway', sans-serif !important;
}

.rssFeed .HomeRSSDescription {
    display: block;
    overflow-y: hidden !important;
    text-align: left;
    font-size: 16px !important;
    color: #515051 !important;
    font-weight: normal !important;
    font-family: 'Raleway', sans-serif !important;
}

.slick-next::before,
.slick-prev::before {
    color: #f68220 !important;
}

#MainContainer .HoverEffectIdeas figure p {
    font-size: 68.5%;
    font-weight: 600;
}


/* Small devices */

@media (max-width: 1300px) {
    .container {
        width: 90%;
    }
    .rssFeed .slick-slide a {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
    #sb-site {
        padding-top: 40px;
    }
    .tramitesBtn {
        margin: 0px 0px 10px 0px;
        padding-right: 17px;
    }
    #MenuMobileContainer .RegistreseContainer li {
        display: block;
        float: left;
        padding: 5px 5px 15px !important;
    }
    #MenuMobileContainer .input-group {
        margin-bottom: 15px !important;
    }
    #MenuMobileContainer .dropdown.mega-dropdown.open ul li a {
        padding: 4px 10px 4px 20px !important;
    }
    #MenuMobileContainer .dropdown-menu.mega-dropdown-menu.row a {
        display: block;
        white-space: normal !important;
        word-wrap: normal !important;
    }
    #MenuMobileContainer .dropdown.mega-dropdown.open ul li {
        text-align: left !important;
    }
    #MenuMobileContainer .mega-dropdown-menu>li>ul {
        background: none;
        margin-left: 25px;
    }
    #MenuMobileContainer .mega-dropdown-menu>li>ul li {
        border-bottom: none;
    }
    .NoBreak {
        padding-bottom: 30px;
    }
    .NoBreak br {
        display: none;
    }
    .BottomContainer .BottomInfoContainer.col-xs-4 {
        text-align: center;
    }
    .BottomContainer .BottomInfoContainer.col-xs-4 span.pull-left.sprite {
        float: none !important;
        margin: 0px auto;
    }
    .LogosFooterContainer {
        text-align: center;
        padding: 25px;
    }
    .LogosFooterContainer a.pull-right {
        float: none !important;
        display: inline-block !important;
        zoom: 1 !important;
        *display: inline !important;
    }
}

@media (max-width: 565px) {
    .FooterMenuContainer .nav.navbar-nav li {
        width: 80%;
        padding: 0px 10%;
    }
}

@media (max-width: 330px) {
    #MenuMobileContainer .RegistreseContainer.Right>li:nth-child(2) {
        display: none !important;
    }
    #MenuMobileContainer .RegistreseContainer li {
        float: right;
    }
}

.table-responsive {
    padding-bottom: 25px;
}

.pagination {
    display: block;
}

.pagination li {
    /*
	border: 1px solid #CCCCCC;
    padding: 5px 10px;
	*/
    float: left;
    list-style: none outside none;
    position: relative;
}

.dataTables_wrapper .dataTables_paginate .pagination .paginate_button:hover {
    border: 0px !important;
}

.pagination ul {
    display: table-cell;
    float: right;
}

.pagination .current {
    background: #ccc;
}

.pagination .pgBtn,
.pagination #next,
.pagination #prev {
    cursor: pointer;
}

.videoPlayer {
    width: 100%;
}


/*Modal Buscador*/

#SearchDialog .modal-content {
    background: rgba(175, 175, 175, 0.8);
}

.modal-header {
    background: #1b3a66;
    padding: 5px 25px !important;
}

#genericModal .modal-header {
    background: #ee7517 !important;
}

.modal-header button.close {
    color: #fff !important;
    font-size: 32px;
    opacity: 1;
}

#SearchDialog button.close {
    font-size: 15px;
  opacity: 1;
  color: white;
  font-weight: normal;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 5px 10px 8px;
  margin: 3px 0px;
}

#SearchDialog .modal-title,
.modal-header .modal-title {
    color: white;
    font-size: 25px;
}

#SearchDialog .modal-body {
    /*height: 500px;*/
    padding: 40px 0;
}

#SearchDialog .searchContainer {
    clear: both;
    border-radius:5px;
    margin: auto;
    background: white;
    width: 800px;
    /*height: 200px*/
}

#SearchDialog .busquedaTitulo {
    margin-top: 0;
    padding: 40px 0;
    font-size: 34px;
    margin-bottom: 10px;
    display: block;
}

#SearchDialog .tabs {
    margin: auto;
    width: 800px;
    display: flex;
}

#SearchDialog .tab {
    background: #005e6e !important;
    display: block;
    flex-grow: 1;
    border-radius: 5px 5px 0px 0px;
    font-size: 18px;
    margin-right: 3px;
    text-align: center;
}

#SearchDialog .tab a {
    padding: 7px 30px 5px;
    display: block;
    text-decoration: none;
    color: white;
}

#SearchDialog .tab:last-child {
    margin-right: 0;
}

#SearchDialog .tab.active {
    background: #ffffff !important;
}

#SearchDialog .tab.active a {
    color: gray;
}

#SearchDialog .tab.active {
    background: white;
}

#SearchDialog .radiosPublicaciones {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#SearchDialog .buscadorPublicaciones .form-control {
    border: none;
    background: #e6e7e8;
    font-size: 16px;
    border-radius: 0;
    color: #6d6e71 !important;
    font-family: 'Raleway', sans-serif !important;
    padding: 10px 15px;
    border: none !important;
}
#SearchDialog .buscadorPublicaciones .btn-primary {
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 7px 15px !important;
  width: 130px !important;
}

#SearchDialog .buscadorPublicaciones .btn-primary:hover{
  transform: scale(1) !important;
}
#buscadorAyudaModal .modal-dialog.modal-lg,
#buscadorAyudaModal .modal-dialog.modal-lg .modal-content{
  height: 90%;
}



#buscadorAyudaModal .modal-dialog.modal-lg .modal-content .modal-body {
  height: 80%;
}

#SearchDialog label {
    font-weight: normal;
    margin-top: 10px;
    margin-right: 15px;
}

#SearchDialog label:last-child {
    margin-right: 0px;
    /************directionfb.lsd,fb';sl,dgfbn';sld,gfn';s,gfn';,gfn';,n';glyph-orientation-horizontal,hm;l****/
}

#SearchDialog .inputText {
    border: none;
    width: 90%;
    background: #e6e7e8;
    font-size: 16px;
    border-radius: 10px 0px 0px 10px;
    color: #6d6e71 !important;
    font-family: 'Raleway', sans-serif !important;
    padding: 10px 15px;
    border: none !important;
}

#SearchDialog .SearchGacetasBtn {
    background: url(/images/lupa.png) no-repeat center #ee7517;
    background-size: 20px;
    border: 1px solid #ee7517;
    border-radius: 0px 10px 10px 0px;
    height: 42px;
    width: 10%;
}

#MensajeRP #MensajeRPSpan {
    padding: 10px;
    font-size: 12px;
    color: #444;
    position: relative;
    text-align: center;
    width: 80%;
    margin: 5px auto 0px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    display: block;
}

#MensajeRP #MensajeRPSpan::after {
    display: block;
    content: "";
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 10px solid rgba(0, 0, 0, 0.05);
    top: -10px;
    right: 230px;
    width: 0px;
    height: 0px;
    position: absolute;
}


/*****a la medida*******/

.editorial_digital_contenedor p.MsoNormal,
.editorial_digital_contenedor h2,
.editorial_digital_contenedor h2 span a,
.editorial_digital_contenedor h2 a span {
    color: #ffffff !important;
    text-decoration: none;
}

.editorial_digital_contenedor h1,
.editorial_digital_contenedor h2 span a:hover {
    color: #ef9122 !important;
}

.editorial_digital_contenedor h2,
.editorial_digital_contenedor h2 span,
.editorial_digital_contenedor h2 a span,
.editorial_digital_contenedor h2 span a {
    font-size: 20px !important;
}

.modal {
    z-index: 9999;
}

.tramitesAcordeonMobile .panel-group .panel-title::after,
.tramitesAcordeonMobile .panel-group .panel-title>a::after,
.tramitesAcordeonMobile .panel-group .panel-title>a::before {
    display: none !important;
}

.tramitesAcordeonMobile .panel-group .panel-default>.panel-heading {
    border-bottom: none !important;
}

.tramitesAcordeonMobile .panel-collapse.collapse.in {
    border: none !important;
}

.tramitesAcordeonMobile .panel-group .panel-default {
    box-shadow: none !important;
}


/* XL */

@media (min-width: 990px) {
    #SearchDialog .searchContainer {
        padding: 20px 45px;
        text-align: center;
    }
}

@media (max-width: 990px) {
    #SearchDialog .searchContainer {
        width: 500px;
        padding: 50px;
    }
    #SearchDialog .tabs {
        width: 500px;
    }
}


/* Small devices */

@media (max-width: 1200px) {
    .BottomContainer {
        padding-bottom: 100px;
    }
    .BottomContainer .LogosFooterContainer {
        bottom: 0;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .container {
        width: 95%;
    }
    .navbar-default .navbar-nav>li>a {
        font-size: 14px;
    }
    #MenuPrincipalContainer>.hidden-xs>div>ul.nav.navbar-nav>li {
        padding: 8px 0px !important;
    }
    #MenuPrincipalContainer>.hidden-xs>div>ul.nav.navbar-nav>li>a {
        padding: 0px 12px !important;
    }
    .dropdown-menu li ul li a,
    .dropdown-menu li a {
        font-size: 12px !important;
    }
    .dropdown.mega-dropdown.open ul li li a {
        font-size: 11px !important;
    }
    .FooterMenuContainer .nav.navbar-nav li a {
        font-size: 14px;
    }
    .BottomContainer {
        display: flex;
        flex-direction: column;
        font-size: 13px;
        justify-content: center;
    }
    .BottomInfoContainer {
        margin-bottom: 25px;
    }
    .BottomInfoContainer div div {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .BottomInfoContainer div div p {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    #SearchDialog .modal-title {
        font-size: 18px !important;
    }
    
    #SearchDialog .busquedaTitulo {
        margin-top: 0;
        padding: 20px 0;
        font-size: 24px;
    }
    #SearchDialog .searchContainer {
        width: 90%;
        padding: 20px;
    }
    #SearchDialog .tabs {
        width: 90%;
    }
    #SearchDialog .tab {
        font-size: 16px;
    }
    .ImagenContextualCaption {
        font-size: 24px;
    }
    .editorial_digital_contenedor .col-sm-4 {
        width: 60%;
        float: left;
    }
    .editorial_digital_contenedor .col-sm-8 {
        width: 40%;
        float: left;
    }
    .editorial_digital_contenedor .btn.Destacado {
        float: right;
    }
}

@media (max-width: 480px) {
    #SearchDialog .modal-body {
        /*height: 500px;*/
        padding-top: 0;
    }
    #SearchDialog .tab {
        float: none !important;
        border-radius: 0px 0px;
        font-size: 14px;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }
    #SearchDialog .busquedaTitulo {
        margin-top: 0;
        padding: 20px 0 0 0;
        font-size: 18px !important;
        text-align: center;
    }
    #SearchDialog .searchContainer {
        padding: 10px;
        border-radius: 0px 0px 15px 15px;
    }
    #SearchDialog .tab a {
        padding: 0;
        text-align: center;
    }
}


/*End Modal Buscador*/

div.NewSlider .n2-style-solido-celeste-heading,
div.NewSlider .n2-style-solido-celeste-heading:hover{
    background: #1b3a66 !important;
    border-color: #1b3a66 !important;
}

div.NewSlider .n2-style-73aa3a4f31d25c7a201a1e089a63a86f-dot.n2-active,
div.NewSlider .n2-style-73aa3a4f31d25c7a201a1e089a63a86f-dot:hover {
    background: #ee7517 !important;
}

div.NewSlider .nextend-arrow:hover img.n2-arrow-normal-img {
    margin-bottom: 10px !important;
}

div.NewSlider .nextend-arrow img.n2-arrow-hover-img {
    opacity: 0;
}

div.NewSlider .n2-style-8ec3eb22dea61f6b807b8f1c5ffd942c-heading:hover,
div.NewSlider .n2-style-8ec3eb22dea61f6b807b8f1c5ffd942c-heading:active,
div.NewSlider .n2-style-8ec3eb22dea61f6b807b8f1c5ffd942c-heading:focus {
    background: #444444 !important;
}

.SliderImagesContainer.SliderDegInternas .col-xs-12 {
    min-height: 0px;
}

.n2-ss-slider.n2-ss-desktop .n2-ss-widget-display-desktop.n2-ib {
    width: 55px;
    position: relative;
    height: 26px;
}

.n2-ss-slider.n2-ss-desktop .n2-ss-widget-display-desktop.n2-ib::after {
    position: absolute;
    display: block;
    content: "";
    width: 11PX;
    height: 19px;
    top: 14px;
    left: 50%;
    margin-left: -5px;
}

.n2-ss-slider.n2-ss-desktop .n2-ss-widget-display-desktop.n2-ib[aria-label~=Previous]::after {
    background: url(/images/arrow-previous.png) no-repeat top left;
}

.n2-ss-slider.n2-ss-desktop .n2-ss-widget-display-desktop.n2-ib[aria-label~=Next]::after {
    background: url(/images/arrow-next.png) no-repeat top left;
}

.n2-ss-slider.n2-ss-desktop .n2-ss-widget-display-desktop.n2-ib[aria-label~=Previous] img,
.n2-ss-slider.n2-ss-desktop .n2-ss-widget-display-desktop.n2-ib[aria-label~=Next] img {
    display: none !important;
}

div.NewSlider .n2-ss-slide {
    background: rgba(0, 0, 0, 0) !important;
}


/*hack para IE10*/

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .tramitesBtn {
        padding-right: 25px;
    }
    .RedesContainer {
        padding: 0px 25px;
    }
    .SearchContainer {
        margin: 25px 100px 25px 50px !important;
    }
    .BuscadorEspecificoGacetaContainer .SearchContainerGacetaPagina {
        height: 33px;
    }
    .headerActive .HeaderRightSide {
        top: -99px !important;
    }
}

@supports (-ms-ime-align:auto) {
    .BuscadorEspecificoGacetaContainer {
        min-width: 235px;
    }
}


/*Bootstrap overides*/

.btn,
div.NewSlider .n2-style-solido-celeste-heading {
    border-radius: 25px !important;
    transition: all 0.5s ease 0s !important;
    -moz-transition: all 0.5s ease 0s !important;
    -webkit-transition: all 0.5s ease 0s !important;
    -o-transition: all 0.5s ease 0s !important;
}

.btn {
    font-weight: 400 !important;
    font-size: 17px !important;
    margin: 5px !important;
    padding: 1px 15px !important;
    border-radius: 5px !important;
}

    .btn.BuscarPersonaButton {
        padding: 3px 15px !important;
        margin: 0 !important;
    }

.btn:hover,
.btn:active,
.btn:focus {
    transform: scale(1.05) !important;
}

.btn-primary {
    background: #005e6e;
    border-color: #005e6e;
}

.input-group-append .btn-primary {
    margin: 0;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
div.NewSlider .n2-style-solido-celeste-heading:hover {
    background: #ee7517 !important;
    border-color: #ee7517 !important;
}

.icon-arrow-left,
.icon-arrow-right {
    position: relative;
    width: 15px;
    height: 15px;
    display: block;
}

.icon-arrow-left::after,
.icon-arrow-right::after {
    position: absolute;
    color: #666666;
    font-size: 15px;
    top: -5px;
    left: 0px;
    width: 15px;
    height: 15px;
}

.icon-arrow-left::after {
    content: "<";
}

.icon-arrow-right::after {
    content: ">";
}

.day.today.active,
.day.today.active:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ee7517+0,ec8627+100 */
    background: #ee7517;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ee7517 0%, #ee7517 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ee7517 0%, #ee7517 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ee7517 0%, #ee7517 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ee7517', endColorstr='#ec8627', GradientType=0);
    /* IE6-9 */
}

.form-control:focus {
    border-color: #ec8627;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(236, 134, 39, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(236, 134, 39, .6)
}

.container.TourContainer {
    width: 95%;
}

.container.TourContainer .ContentContainer {
    width: 99%;
}


/*Chat Bot*/

.MenuRightSideContainer.chat {
    position: fixed !important;
    top: auto !important;
    /*right: -170px !important;*/
    right: 1.25rem !important;
    bottom: 18.5rem !important;
}

a.notClick {
    cursor: pointer;
}

.chat .notClick:hover {
    background-color: transparent !important;
}

.chat-bot {
    bottom: 2rem;
    height: 54rem;
    position: fixed;
    right: 0.3125rem;
    z-index: 999999;
}

.chat-bot .messageBox {
    background-color: #fff;
    border: 0.0625rem solid #43525a;
    border-radius: 1.25rem;
    box-shadow: 0 1.875rem 3.125rem #000;
    padding: 0.625rem;
    height: 0;
    overflow: hidden;
    transition: height 0.7s;
    visibility: hidden;
    width: 0;
}

.chat-bot .messageBox.home {
    background-color: #024f84;
    margin-bottom: 5.9375rem;
}

.chat-bot .messageBox.home h3,
.chat-bot .messageBox.home .h3 {
    text-align: center;
    color: #fff;
}

.chat-bot .messageBox.home p {
    text-align: center;
    color: #fff;
    margin: 30px 10px 70px !important;
}

    .chat-bot .messageBox.home .btn {
        color: #000;
        font-weight: bold;
        width: 9.375rem;
        height: 2.5;
        background-color: #ee7517;
        border-color: #ee7517;
        margin: 0 auto !important;
    }

.chat-bot .messageBox.active {
    visibility: visible;
    height: 52rem;
    width: 40rem;
}

.chat-bot .messageBox.active button {
    background: none;
    border: none;
}

.chat-bot .messageBox.active .chat-title-center {
    display: flow-root;
    font-size: 2.5rem;
    font-weight: bold;
}

.chat-bot #ChatHome.messageBox.active .chat-title-center {
    margin: 5rem auto 8rem;
}

.chat-bot #ChatMessageDiv.messageBox.active .chat-title-center {
    margin: 0.5rem auto 2rem;
}

.chat-bot .messageBox.active .chat-title-center span {
    display: block;
    float: left;
    width: calc(100% - 1.6875rem);
    text-align: center;
}

.chat-bot .messageBox.active .chat-title-center i {
    display: block;
    float: left;
    width: 1.6875rem;
}

    .chat-bot .messageBox.active .chatTitle {
        background-color: #1b3a66 !important;
        border-color: #ee7517;
        border-radius: 1rem 1rem 0 0;
        font-size: 1.75rem;
        font-weight: 400;
        padding: 0.5rem 0.75rem;
        text-align: center;
    }

.chat-bot .messageBox.active .chatTitle .fa {
    font-size: 1.5rem;
}

.chat-bot .messageBox.active .list-group {
    height: 40rem;
    overflow-y: auto;
}

.chat-bot .messageBox.active .list-group a.list-group-item {
    font-size: 1.5rem;
}

.chat-bot .messageBox.active #DatosIntermedios {
    height: calc(100% - 15rem);
}

.chat-bot .messageBox.active #DatosIntermedios .DatosIntermediosContenedor {
    border: 0.0625rem solid #e9ecef;
    display: block;
    font-size: 1.25rem;
    max-height: calc(100% - 5rem) !important;
    overflow-y: scroll;
    padding: 0.75rem;
}

.chat-bot .messageBox.active #DatosIntermedios .DatosIntermediosContenedor .form-group,
.chat-bot .messageBox.active #DatosIntermedios .DatosIntermediosContenedor .row {
    width: 98%;
}

.chat-bot .messageBox.active #DatosIntermedios .DatosIntermediosContenedor .col-md-4.col-12 {
    width: 100% !important;
}

.chat-bot .messageBox.active #DatosIntermedios .DatosIntermediosContenedor .form-group .btn {
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
}

.chat-bot hr {
    margin: 10px !important;
}

#FormularioAsistenteVirtual {
    max-height: calc(100% - 25px);
    margin-top: 10px;
    overflow-y: auto;
    padding: 0px 10px;
}

#FormularioAsistenteVirtual .h3 {
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    margin: 10px 0 0;
}

#FormularioAsistenteVirtual label {
    font-size: 1.5rem;
}

#FormularioAsistenteVirtual input,
#FormularioAsistenteVirtual textarea {
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    font-size: 14px;
    height: 30px;
    background: rgba(0, 0, 0, 0.025);
    margin-bottom: 10px;
}

#FormularioAsistenteVirtual textarea {
    height: 50px;
}

    #FormularioAsistenteVirtual input.btn {
        background: #005e6e;
        height: auto;
    }

#FormularioAsistenteVirtual input.btn:hover {
    background: #ee7517;
}
.AsistenteBtnFlex {
    display: flex;
    justify-content: center;
}

.AsistenteBtnFlex input,
.AsistenteBtnFlex a {
    margin: 5px;
}

.AsistenteBtnFlex svg {
    margin: 5px 5px 0 0;
}

.AsistenteBtnFlex a.btn.btn-info {
    max-width: 37%;
    white-space: break-spaces;
    font-size: 14px !important;
    line-height: 17px;
    /*letter-spacing: ;*/
}

a.btn.btn-default {
    color: #444 !important;
}

.card-text {
    padding: 0.5rem 1rem;
}

.glyphicon.form-control-feedback {
    display: none !important;
}

.help-block.with-errors li {
    width: 100% !important;
}

.cambiocolor{
	display: flex;
	margin-right: 10px;
	color: #ffffff;
}
.cambiocolor div{
	padding: 10px 5px;
}
.contrastealto nav.PrincipalNav {
  background: #000000;
}

.contrastemedio nav.PrincipalNav {
  background: #222222;
}

.contrastebajo nav.PrincipalNav {
  background: #1b3a66;
}


/*inicio de sección ocultada por solicitud de allan*/
#SearchDialog .tab,
#SearchDialog #busquedaAsistente .radiosPublicaciones{
    display: none !important;
}
#SearchDialog .tab:first-child{
    display: block !important;
}
/*fin de sección ocultada por solicitud de allan*/



.linkConImagenPortadaDiario img {
    width: 95%;
    height: auto;
}

/*fix buscador autores HAS-751*/
.dataTables_filter {
  width: 100% !important;
}

/*fix modal headers HAS-751*/
.modal-header{
	border-radius: 5px 5px 0 0;
}


/*HAS-751*/
#selectorDiario input{
	margin: 0 15px !important;
}

/*HAS-751*/
.btn-help {
  border-radius: 10px !important;
  padding: 5px 10px !important;
  font-size: 12px !important;
  position:absolute;
}


.btn-help:hover {
  border: 2px solid lightblue !important;
}


@media (max-width: 767px) {
    .btn-help {
		right:35px;
		bottom:50px;
    }
}

@media (min-width: 768px) {
    .btn-help {
		right:60px;
		bottom:40px;
    }
}

@media (min-width: 990px) {
    .btn-help {
		right:80px;
		bottom:60px;
    }
}

.HeaderRightSide {
  position: relative;
}

.flotante-help  {
    background:#ffffff;
  font-size: 12px !important;
  position:absolute;
  right: -70px;
  top: 8px;
}

@media (max-width: 1300px) {
    .HeaderRightSide {
		margin-right:50px;
    }
}
@media (max-width: 825px) {
    .flotante-help  {
		display:none;
    }
    .HeaderRightSide {
		margin-right:0px;
    }	
}


/*HAS-751 - */
.modal-footer {
  border-top: none !important;
}

/*HAS-751 - para el texto de ayuda que los ul estan hechos en p */
p.listItem {
  margin: 20px 0 0 50px;
  text-indent: 0 !important;
  display:list-item;
}

/*HAS-751*/
#genericModal .modal-body {
  min-height: 460px;
}

/*HAS-1097 - Mejoras de accesibilidad */
.modal-dialog .modal-content .modal-header {
    background: #1b3a66 !important;
}
/**************Estilos Generales**************/
*{margin:0px; padding:0px;}
td{padding:0px; border-collapse:collapse; vertical-align:top;}
tr{padding:0px; border-collapse:collapse;}
th{padding:0px; border-collapse:collapse;}
table{padding:0px; border-collapse:inherit;}
input.form-control[type="file"] { box-sizing: initial !important; }
.clear{clear:both;}
.has_italic{font-style:italic;}
.has_negrita{font-weight:600;}
.has_underlined{text-decoration:underline;}
.Container{text-align:center;}
.FullWidth, .fullWidth, .fullwidth, .Fullwidth{width:100%}
img{border:none;}
.dataTables_wrapper table{width:100% !important;overflow: auto;}
.hidden{display:none;}

.Containernowrap{white-space:nowrap;}
.marginCenter{margin:auto;}
.img-responsive{display:inline !important;}
.LoadingInclude{margin:0px auto !important; display:block !important; float:none !important;}
.nav.navbar-nav.nav-vertical li{float:none !important;}
fieldset{margin:10px 0px 15px !important;}
fieldset legend{padding:3px 20px 0px !important; margin-bottom:8px !important;}
.help-block.with-errors:empty{display:none;}
.ErrorMessageContainer{color: #ff0000;}
div[style*="text-align:center;"] table {margin: 0 auto;}
/*Validadores*/
.ValidatorAndRequiredField{
    color:darkred !important;
}
/**************Fin Estilos Generales**************/
/*************Mapa del sitio******************/
.root li {
    display: block;
    list-style: none;
    padding: 5px 0px;
}
.root li .mapaS_1Nivel
{
    background:url(/images/mapasitio_flecha.png) no-repeat center left;
    padding:0px 24px;
    font-size:1.125em;
    border-bottom:1px dotted #aaaaaa;
    display:block;
}
.root li ul
{
    margin-top:8px;
    padding-top:5px;
}
.root li li ul
{
    border:none !important;
    margin:0px;
    padding:0px;
}
.root li ul li 
{
    padding:2px 25px;
}
.root li ul li li
{
    padding:2px 15px;
}
.root li ul li .mapaS_2Nivel,
.root li ul li .mapaS_1Nivel
{
    background:url(/images/mapasitio_sub_flecha.png) no-repeat center left;
    padding:0px 16px;
    font-size:0.813em;
}
/*********Fin del mapa de sitio*****************/
/*********************************************************Breadcrum*******************************************/
ul.HASBreadCrumbs
{
    padding:25px 5px 5px;
}
.HASBreadCrumbs
{
	font-family: 'Muli', sans-serif;
	font-size:15px;
	display:block;
    margin:3px 7px 0px;
}
.HASBreadCrumbs li
{
	display:block !important;
	float:left;
	padding:3px 6px;
    color:#999999;
}
.HASBreadCrumbs li.breadcrumbhome
{
    background:none !important;
    padding-left:0px !important;
}
.HASBreadCrumbs li::before
{
    content:" |";
    margin-right:10px;
}
.HASBreadCrumbs li:first-child
{
    padding-left:0px !important;
}
.HASBreadCrumbs li:first-child:before
{
     content:none !important;
     margin-right:0px;
}
.HASBreadCrumbs a:link, .HASBreadCrumbs a:visited, .HASBreadCrumbs a:active
{
	text-decoration:underline;
}
/*********************************************************fin Breadcrum*******************************************/
/*********Correcciones de bootstrap************/
.nav-tabs 
{
    border-bottom: 1px solid #d1d1d1 !important;
}
.nav-tabs.nav
{
    width:100% !important;
    padding:0px !important;
}
/*/estilos para cuando los tabs se exceden el ancho del contenedor*/
.htabsMobile ul.nav-tabs.nav
{
    padding-bottom:51px !important;
    position:relative;
}
.htabsMobile ul.nav-tabs.nav li.active
{
    position:absolute;
    left:0px;
    bottom:0px;
    width:100%;
    text-align:center;
    z-index:9;
}
#MainContainer.ContentContainer .htabsMobile ul.nav-tabs.nav li.active a,
#MainContainer.ContentContainer .htabsMobile ul.nav-tabs.nav li.active a span
{
    color:#ffffff !important;
}
#MainContainer.ContentContainer .nav-tabs > li > a span, .nav-tabs > li > a p, 
#MainContainer.ContentContainer .nav-tabs > li > a span, .nav-tabs > li > a p span
{
    text-decoration: none !important;
    color: #2f2c2d !important;
}
#MainContainer.ContentContainer .nav-tabs > li.active > a span, .nav-tabs > li.active > a p,
#MainContainer.ContentContainer .nav-tabs > li.active > a span, .nav-tabs > li.active > a p span
{
    color:#ffffff !important;
}
/*/fin de estilos para cuando los tabs se exceden el ancho del contenedor*/
.nav-tabs > li > a,
.panel-title > a
{
    outline:none;
}
.nav-tabs > li > a
{
    background:#ffffff;
    border: 1px solid #d1d1d1 !important;
    text-decoration:none;
    border-radius:0px !important;
    margin-right:0px;
}
.nav-tabs > li.active > a
{
    border-bottom: 1px solid #ffffff !important;
    background:#24959b !important;
    position:relative;
    color:#ffffff !important;
}
.nav-tabs > li > a span,
.nav-tabs > li > a p
{
    text-decoration:none !important;
    color:#2f2c2d !important;
}
.nav-tabs > li.active > a span,
.nav-tabs > li.active > a p
{
    color:#ffffff !important;
    text-decoration:none !important;
}
.nav-tabs > li.active > a::before
{
    width:0px;
    height:0px;
    display:block;
    content:"";
    bottom: -10px;
    position: absolute;
    left:50%;
    margin-left:-15px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;  
    border-top: 10px solid #24959b;
}
.nav-tabs.tabs-left > li.active > a::before
{
    top:50%;
    margin-top:-20px;
    margin-left:0px;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;  
    border-left: 20px solid #31afe1;
    right: -40px;
    left: auto;
    z-index: 8;
}
.nav-tabs.tabs-left > li.active > a
{
    border-right: 1px solid #ffffff !important;
}
.nav-tabs > li > a p
{
    padding:0px !important;
}
.tab-pane.active 
{
    border-color: #999999 !important;
}
.panel-title
{
    font-weight:600;
}
.panel-group
{
    margin:5px;
}
.panel-collapse
{
    padding:15px 25px 30px;
    overflow:auto;
}
.panel-collapse span 
{
    word-wrap: break-word;
}
.tab-content
{
    margin:0px 0px 25px;
}
.tab-pane.active
{
    background: #ffffff;
    border: 1px solid #d1d1d1 !important;
    border-top:0px !important;
    padding: 20px 20px 10px;
}
.Tablaconcuadrcula,
.dataTables_wrapper
{
    width:100%;
}
.dataTables_wrapper td
{
    /*background: #f6f6f6;*/
}
.Tablaconcuadrcula tr.ODDROW td, .Tablaconcuadrcula tr.odd td,
.dataTables_wrapper tr.ODDROW td, .dataTables_wrapper tr.odd td
{
    background: #eeeeee;
}
.nav.nav-tabs.tabs-left li
{

}
.vtabs .col-xs-3,
.vtabs .col-xs-9
{
    padding:0px !important;
}
.vtabs .tabs-left
{
    border-bottom: none !important;
    border-right: none !important;
    padding-top: 0px;
}
.vtabs .tab-pane.active {
    background: #ffffff;
    border: 1px solid #d1d1d1 !important;
    padding: 10px 20px;
}
/*.vtabs .tab-pane.active
{
    border:0px !important;
}

/*.panel-heading{
	padding:0 !important;
	height: 100% !important;
}*/
.dataTables_wrapper > .row 
{
    margin: 0px !important;
}
.panel-heading  a > p,
#historicoRSS .panel-heading a
{
	padding:15px 10px !important;
	margin:0;
}
.form-group span:not(.form-control) {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 5px;
    max-width: 100%;
}
.form-group span.form-control {
    background:#efefef;
    height:auto;
}


.form-group select option
{
    padding:1px 3px;
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #005e6e !important;
    border-color: #005e6e !important;
    color: #fff !important;
    cursor: default !important;
    z-index: 2 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #ee7517 !important;
    border-color: #ee7517 !important;
}
.HoverEffectIdeas figure figcaption,
.HoverEffectIdeas figure figcaption h1,
.HoverEffectIdeas figure figcaption h1 span,
.HoverEffectIdeas figure figcaption h2,
.HoverEffectIdeas figure figcaption h2 span,
.HoverEffectIdeas figure figcaption h3,
.HoverEffectIdeas figure figcaption h3 span
{
    color: #fff !important;
}
figure.effect-ming h2 
{
    margin: 20% 0 10px 0 !important;
}
.modal-body
{
    overflow: auto;
}
.owl-theme .owl-controls 
{
    margin: 0px !important;
}
/**************tabs***********/
/**************Acordeones***********/
.panel-group .panel-default
{
    border-radius: 0px !important;
    border: 0px !important;
}
.panel-group .panel-default > .panel-heading 
{
    background-color: #ffffff !important;
    border-radius: 0px !important;
    border: 0px !important;
    border-bottom: 3px solid #a7a5a5 !important;
    padding: 5px 5px 0px;
}
.acordeon_oscuro .panel-group .panel-default > .panel-heading
{
    color: #f5f5f5 !important;
    background-color: #6D6E70 !important;
    border-color: #ddd !important;
}
.panel-group .panel-title
{
    position:relative;
}
.panel-group .panel-title::after
{
    display:block;
    width:20px;
    height:20px;
    position:absolute;
    content:"";
    border-radius:3px;
    background:#6f8892;
    top:50%;
    margin-top:-10px;
    left:7px;
}
.panel-group .panel-title > a
{
    padding:0px 10px 0px 30px !important;
    display:block;
    position:relative;
    color: #f5f5f5 !important;
}
.panel-group .panel-title > a::after,
.panel-group .panel-title > a::before
{
    content:"";
    position:absolute;
    top:50%;
    border-bottom:2px solid #ffffff;
    height: 0px;
    width: 10px;
    left: 12px;
    z-index: 999;
    margin-top: -1px;
    transition:  all 0.5s ease 0s; 
    -moz-transition:  all 0.5s ease 0s; /* Firefox 4 */ 
    -webkit-transition:  all 0.5s ease 0s; /* Safari and Chrome */ 
    -o-transition:  all 0.5s ease 0s; /* Opera */
}
.panel-group .panel-title > a::after
{
    transform:rotate(90deg);
}
.panel-group .panel-title > a[aria-expanded=true]::after
{
    width:0px;
    transition:  all 0.5s ease 0s; 
    -moz-transition:  all 0.5s ease 0s; /* Firefox 4 */ 
    -webkit-transition:  all 0.5s ease 0s; /* Safari and Chrome */ 
    -o-transition:  all 0.5s ease 0s; /* Opera */
}
.acordeon_oscuro .panel-group .panel-title > a,
.acordeon_oscuro .panel-group .panel-title > a h1,
.acordeon_oscuro .panel-group .panel-title > a h2,
.acordeon_oscuro .panel-group .panel-title > a h3,
.acordeon_oscuro .panel-group .panel-title > a p.MsoNormal,
.acordeon_oscuro .panel-group .panel-title > a span,
.acordeon_oscuro .panel-group .panel-title > a p.MsoNormal span,
.acordeon_oscuro .panel-group .panel-title > a span p.MsoNormal
{
    color: #f5f5f5 !important;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}
.panel-group .panel-title > a,
.panel-group .panel-title > a p.MsoNormal,
.panel-group .panel-title > a span,
.panel-group .panel-title > a p.MsoNormal span,
.panel-group .panel-title > a span p.MsoNormal 
{
    color: #333333 !important;
}
.panel-collapse.collapse.in 
{
    border:1px solid #dddddd;
    border-radius:0px 0px 3px 3px;
}
.panel-group .panel-heading + .panel-collapse > .panel-body 
{
    border-top: 0px !important;
}
/**********Correcci�n de las excel convertido a tablas******************/
.dataTables_wrapper.ExcelToTableButtons .dataTables_scroll {
    overflow-y: hidden;
}
.dataTables_wrapper.ExcelToTableButtons .dataTables_scrollBody thead
{
    display:none;
}
.ExcelToTable
{
    border-bottom:1px solid #e1e1e1 !important;
	font-family: 'Raleway', sans-serif;
}
.ExcelToTable td,
.ExcelToTable th
{
    border:1px solid #e1e1e1 !important;
    border-top:none !important;    
    border-left:none !important;
    font-size:14px;
    background:#ffffff;
    padding-top:4px !important;
    padding-bottom:4px !important;
}
.ExcelToTable th
{
    border-top:1px solid #e1e1e1 !important;
    padding-right:24px !important;
    padding-top:6px !important;
    padding-bottom:6px !important;
    font-weight:normal !important;
}
.ExcelToTable th:first-child
{
    border-left:1px solid #e1e1e1 !important;
}
.ExcelToTable td:first-child
{
    border-left:1px solid #e1e1e1 !important;
}
.dataTables_wrapper.ExcelToTableButtons .buttonsContainer
{
    position:relative;
    display:block;
    width:35px;
    height:15px;
    float:left;
    padding-left:15px;
    margin:15px 0px 0px 25px;
}
.dataTables_wrapper.ExcelToTableButtons .buttonsContainer::after
{
    position:absolute;
    width:15px;
    height:15px;
    content:"...";
    top:-46px;
    left:-10px;
    cursor:pointer;
    font-size:55px;
}
.dataTables_wrapper.ExcelToTableButtons .dt-buttons
{
    position:absolute !important;
    width:auto;
    top:30px;
    left:-23px;
    background:rgba(0,0,0,0.85);
    z-index:9999;
    padding:10px;
    display:none;
    opacity:0;
    border-radius:0px 0px 5px 5px;
    transition:  all 0.5s ease 0s; 
    -moz-transition:  all 0.5s ease 0s; /* Firefox 4 */ 
    -webkit-transition:  all 0.5s ease 0s; /* Safari and Chrome */ 
    -o-transition:  all 0.5s ease 0s; /* Opera */
}
.dataTables_wrapper.ExcelToTableButtons .dt-buttons::after
{
    content:"";
    position:absolute;
    top:-15px;
    left:5px;
    border-bottom:15px solid;   
    border-bottom-color: rgba(0,0,0,0.85);
    border-left:15px solid transparent;
    border-right:15px solid  transparent;
}
.dataTables_wrapper.ExcelToTableButtons .buttonsContainer:hover .dt-buttons
{
    display:block;
    opacity:1;
    transition:  all 0.5s ease 0s; 
    -moz-transition:  all 0.5s ease 0s; /* Firefox 4 */ 
    -webkit-transition:  all 0.5s ease 0s; /* Safari and Chrome */ 
    -o-transition:  all 0.5s ease 0s; /* Opera */
}
.dataTables_wrapper.ExcelToTableButtons .addthis_sharing_toolbox
{
    width: 25px;
    font-family: 'Raleway', sans-serif;
    float: left;
    display: block;
    margin-top: 14px;
}

.dataTables_wrapper.ExcelToTableButtons .addthis_sharing_toolbox a span{
	text-decoration: none !important;
	color:#333 !important;	
}


.atm-i{
	background:none !important;
}
/*
.at_hover:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0px;
    border-bottom: 15px solid;
    border-bottom-color: rgba(0,0,0,0.85);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
*/
#at_hover, .atm-f{
	background:rgba(0,0,0,0.85) !important;
	color:#fff !important;	
}

#at_hover a .at-label, #at_hover a .at-label.at_bold{
	color:#fff !important;	
	font-family: 'Raleway', sans-serif;
	padding: 0.5em 0;	
	font-weight: 400 !important;	
	font-size:12px;
}

#at_hover a:hover{
	background:#555 !important;
}


.dataTables_filter
{
    width:50%;
}

.dataTables_wrapper.ExcelToTableButtons .dt-buttons a.dt-button
{
    border:none !important;
    background:none !important;
    text-decoration:none !important;
    font-weight:normal;
    color:#ffffff !important;
    /*padding:5px 15px !important;*/
    float:none !important;
    width:100%;
    border-radius:0px;
}
.dataTables_wrapper.ExcelToTableButtons .dt-buttons a.dt-button span
{
    text-decoration:none !important;
}
.dataTables_wrapper.ExcelToTableButtons .dt-buttons a.dt-button:hover
{
    background:#555 !important;
}
.dataTables_wrapper.ExcelToTableButtons .dt-buttons a.dt-button span
{    
    color:#ffffff !important;
}

.dataTables_wrapper .glyphicon-share:before {
	padding-right:5px;
}
/*********Correcciones de bootstrap************/
.glyphicon.glyphicon-menu-hamburger.sb-toggle-right
{
    color: #ffffff;
    float: right;
    margin: 10px 0px 5px 5px;
    cursor: pointer;
    font-size:1.313em;
}
/*********YoutubeChannel3columnas**************/
.VideoTableContainer li
{
    display:block;
}
.WidgetContainer
{
    display:block;
    width:100%;
    height:400px;
    overflow:auto;
    margin-top:15px;
}
.WidgetContainer li
{
    float:left;
    margin:5px;
    width:48%;
    padding:5px 10px 10px;
    border:1px solid #f0f0f0;
}
.WidgetContainer li:hover
{
    background:#f6f6f6;
}
.VideoLink
{
    display:block;
}
.VideoLink .title
{
    display:block;
    height:44px;
    overflow:hidden;
}
.descrip
{
    display: block;
    height: 62px;
    overflow: hidden;
}
/*--------------tablas autogeneradas---------------*/
table.indice_contenido
{
    border:1px solid #666666;
	font-family: 'Raleway', sans-serif !important;
    margin:0px auto;
}
table.indice_contenido td.indice_titulo
{
    background:#444444 !important;
    font-family: 'Muli', sans-serif !important;
    padding:7px !important;
    color:#ffffff;
}
table.indice_contenido td.td_titulo
{
    background: #666666 !important;
    font-family: 'Muli', sans-serif !important;
    color:#ffffff;
    padding:5px 10px 8px;
}
table.indice_contenido td.td_descripcion,
table.indice_contenido td.td_extension,
table.indice_contenido td.td_descripcionODD,
table.indice_contenido td.td_extensionODD
{
    padding:7px;
    font-family: 'Muli', sans-serif !important;
    color:#222222;
    font-size:13px;
}
table.indice_contenido td.td_descripcion a,
table.indice_contenido td.td_extension a,
table.indice_contenido td.td_descripcionODD a,
table.indice_contenido td.td_extensionODD a
{
    display:block;
    padding-bottom: 3px;
}
table.indice_contenido td.td_descripcion,
table.indice_contenido td.td_extension
{
    background:#ffffff;
}
table.indice_contenido td.td_descripcionODD,
table.indice_contenido td.td_extensionODD
{
    background:#f1f1f1;
}
/* para evitar que salgan los Undo Changes de DataTables/Editors */
.multi-restore {
    display: none;
}
/***************GridView******************/
table[id*="GridView"]
{
    margin:5px 5px 15px;
}
table[id*="GridView"] td, 
table[id*="GridView"] th
{
    padding:5px 8px;
    border:1px solid #dddddd;
}
table[id*="GridView"] th
{
    background:#6D6E70;
    color:#f1f1f1;
}
table[id*="GridView"] .gridRow,
table[id*="GridView"] tr:first-child
{
    background:#f9f9f9;
}
table[id*="GridView"] .gridAlternatingRow,
table[id*="GridView"] tr:nth-child(2n+3)
{
    background:#e9e9e9;
}
/*********callout********/
.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}
.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.bs-callout p:last-child {
    margin-bottom: 0;
}
.bs-callout code {
    border-radius: 3px;
}
.bs-callout+.bs-callout {
    margin-top: -5px;
}
.bs-callout-default {
    border-left-color: #777;
}
.bs-callout-default h4 {
    color: #777;
}
.bs-callout-primary {
    border-left-color: #428bca;
}
.bs-callout-primary h4 {
    color: #428bca;
}
.bs-callout-success {
    border-left-color: #5cb85c;
}
.bs-callout-success h4 {
    color: #5cb85c;
}
.bs-callout-danger {
    border-left-color: #d9534f;
}
.bs-callout-danger h4 {
    color: #d9534f;
}
.bs-callout-warning {
    border-left-color: #f0ad4e;
}
.bs-callout-warning h4 {
    color: #f0ad4e;
}
.bs-callout-info {
    border-left-color: #5bc0de;
}
.bs-callout-info h4 {
    color: #5bc0de;
}
.Search_resultado span
{
    word-break:break-all;
}
/*********btn**************/
#MainContainer.ContentContainer .btn.Destacado {
    background: #1b3a66;
    color: #ffffff !important;
}
#MainContainer.ContentContainer .btn.Destacado span
{
    color:#ffffff !important;
}
    #MainContainer.ContentContainer .btn.Destacado:hover {
        background: #ee7517;
    }
#MainContainer.ContentContainer .btn.Simple
{
    background:#e1e1e1;
    color:#0099ff !important;
}
#MainContainer.ContentContainer .btn.Simple span
{
    color:#0099ff !important;
}
#MainContainer.ContentContainer .btn.Normal
{
    background:#ffffff;
    color:#0099ff !important;
    border:1px solid #0099ff;
}
#MainContainer.ContentContainer .btn.Normal span
{
    color:#0099ff !important;
}
#MainContainer.ContentContainer .btn.Destacado,
#MainContainer.ContentContainer .btn.Simple,
#MainContainer.ContentContainer .btn.Normal
{	
    -webkit-transform: scale(1) !important;
	transform: scale(1) !important;
	-webkit-transition: .3s ease-in-out !important;
	transition: .3s ease-in-out !important;
    padding:10px 25px;
    border-radius:25px;    
}
#MainContainer.ContentContainer .btn.Destacado,
#MainContainer.ContentContainer .btn.Simple,
#MainContainer.ContentContainer .btn.Normal,
#MainContainer.ContentContainer .btn.Destacado span,
#MainContainer.ContentContainer .btn.Simple span,
#MainContainer.ContentContainer .btn.Normal span
{
    font-size:18px !important;
}
#MainContainer.ContentContainer a img
{
    -webkit-transform: scale(1) !important;
	transform: scale(1) !important;
	-webkit-transition: .3s ease-in-out !important;
	transition: .3s ease-in-out !important;
}


#MainContainer.ContentContainer .btn.Destacado:hover,
#MainContainer.ContentContainer .btn.Simple:hover,
#MainContainer.ContentContainer .btn.Normal:hover,
#MainContainer.ContentContainer a:hover img
{
   	-webkit-transform: scale(1.05) !important;
	transform: scale(1.05) !important;
}
.table-responsive 
{
    overflow-y: hidden;
    overflow-x:auto;
    border:none !important;
}
@media (max-width: 767px)
{
    .panel-collapse
    {
        padding:15px 10px 30px;
    }
    #MainContainer.ContentContainer .btn.Destacado,
    #MainContainer.ContentContainer .btn.Simple,
    #MainContainer.ContentContainer .btn.Normal,
    #MainContainer.ContentContainer .btn.Destacado span,
    #MainContainer.ContentContainer .btn.Simple span,
    #MainContainer.ContentContainer .btn.Normal span
    {
        font-size:14px !important;
    }
}
.Left{
float:left;
}
.td_descripcionODD, .td_extension,
.td_extensionODD, .td_descripcion,
.td_titulo
{
    line-height:normal !important;
}





/*Forms*/
.input-group-btn .btn {
    border-radius: 0 25% 25% 0 !important;
    padding: 3px 15px;
}


.iframeAyudaBuscador {
    width: 100%;
    height: 100%;
    border: none; /* Quitar el borde si no es necesario */
}

/* Ocultar los radio buttons originales */
.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

/* Estilizar el label para mostrar un radio button personalizado */
.custom-radio label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    display: inline-block;
}

    /* Crear el borde y fondo del radio button */
    .custom-radio label::before {
        content: "r";
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        border: 2px solid orange;
        border-radius: 50%;
        background-color: white;
    }

/* Estilizar el c�rculo interior cuando el radio button est� seleccionado */
.custom-radio input[type="radio"]:checked + label::after {
    content: "x";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: orange;
}
.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
@charset 'UTF-8';.slick-dots,.slick-next,.slick-prev{position:absolute;display:block;padding:0}.slick-dots li,.slick-dots li button{cursor:pointer;height:20px;width:20px}.slick-dots li button:before,.slick-next:before,.slick-prev:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-next,.slick-prev{font-size:0;line-height:0;top:50%;width:50px;height:50px;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;border:none;outline:0;background:0 0}.slick-next:focus,.slick-next:hover,.slick-prev:focus,.slick-prev:hover{outline:0}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-next:before,.slick-prev:before{font-family:'Glyphicons Halflings';font-size:50px;line-height:1;opacity:.75;color:#a2a3a5}.slick-prev{left:-45px}[dir=rtl] .slick-prev{right:-45px;left:auto}.slick-prev:before{content:'\e257'}.slick-next:before,[dir=rtl] .slick-prev:before{content:'\e258'}.slick-next{right:-45px}[dir=rtl] .slick-next{right:auto;left:-45px}[dir=rtl] .slick-next:before{content:'\e257'}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{bottom:-25px;width:100%;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;margin:0 5px;padding:0}.slick-dots li button{font-size:0;line-height:0;display:block;padding:5px;color:transparent;border:0;outline:0;background:0 0}.slick-dots li button:focus,.slick-dots li button:hover{outline:0}.slick-dots li button:focus:before,.slick-dots li button:hover:before{opacity:1}.slick-dots li button:before{font-family:slick;font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:#000}.slick-dots li.slick-active button:before{opacity:.75;color:#000}#YouTubeChannelWidget .slick-slide{margin:5px;padding:20px;background:rgba(0,0,0,0);transition:all .5s ease 0s;-moz-transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s;border-bottom:5px solid #d2d3d5}#YouTubeChannelWidget .slick-slide:hover{background:rgba(0,0,0,.1);transition:all .5s ease 0s;-moz-transition:all .5s ease 0s;-webkit-transition:all .5s ease 0s;-o-transition:all .5s ease 0s;border-bottom:5px solid #00a9c2}#MainContainer .contenedorNovedadesVideos #YouTubeChannelWidget .slick-slide img,#YouTubeChannelWidget .slick-slide img{margin:5px auto 10px;width:80%!important}#MainContainer .contenedorNovedadesVideos #YouTubeChannelWidget .slick-slide a span,#YouTubeChannelWidget .slick-slide a span{width:80%!important;display:block;margin:0 auto!important;height:69px}#MainContainer .contenedorNovedadesVideos #YouTubeChannelWidget .slick-slide a,#YouTubeChannelWidget .slick-slide a{font-size:16px;display:block;padding:10px}#MainContainer .contenedorNovedadesVideos #YouTubeChannelWidget .slick-slide a,#MainContainer .contenedorNovedadesVideos #YouTubeChannelWidget .slick-slide a span,#YouTubeChannelWidget .slick-slide a,#YouTubeChannelWidget .slick-slide a span{color:#252222!important;font-family:'Open Sans',sans-serif!important;text-decoration:none!important}#MainContainer .contenedorNovedadesVideos #YouTubeChannelWidget .slick-slide a h2,#YouTubeChannelWidget .slick-slide a h2{color:#252222!important;display:block!important;margin:0 auto 10px!important;width:80%!important}#MainContainer .contenedorNovedadesVideos #YouTubeChannelWidget .slick-slide a:hover h2,#YouTubeChannelWidget .slick-slide a:hover h2{color:#00a9c2!important}
.sprite { background-image: url('/images/imprenta_sprite.png'); background-color: transparent; background-repeat: no-repeat; display:block;}
.logo_imprenta { width: 361px; height: 87px; background-position: 0px -84px; }
.logo_gobierno_footer { width: 277px; height: 42px; background-position: 0px -42px; }
.logo_imprenta_footer { width: 148px; height: 42px; background-position: 0px 0px; }
.creative_logo { width: 89px; height: 29px; background-position: -148px 0px; }
.icn_googleMaps { width: 32px; height: 32px; background-position: -237px 0px; }
.icn_horario { width: 32px; height: 32px; background-position: -269px 0px; }
.icn_servicioCliente { width: 32px; height: 32px; background-position: -277px -52px; }
.icn_waze { width: 32px; height: 32px; background-position: -301px -20px; }
.icn_youtube { width: 26px; height: 20px; background-position: -301px 0px; }
.icn_facebook { width: 23px; height: 21px; background-position: -333px -41px; }
.icn_instagram { width: 21px; height: 21px; background-position: -333px -20px; }
.icn_twitter { width: 21px; height: 20px; background-position: -327px 0px; }
.sprite span{ display:none; }
