i, em {
	font-style: italic;
}

b, strong {
	font-weight: bold;
}

.no_visible {
	opacity: 0.5;
}

.ui-datepicker {
	background: #f7f7f7;
	border: 1px solid #323232;
}

.ui-datepicker .ui-state-active {
	color: #111111;
}

.clear {
	clear: both;
}

.truncate {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hidden {
	display: none;
}

a.anchor {
	display: block;
	position: relative;
	top: -100px;
	visibility: hidden;
}

a {
	color: #5a93a8;
}

a:hover {
	color: #1e3965;
}

.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.mayusculas {
	text-transform: uppercase;
}

.minusculas {
	text-transform: none;
}

.normal {
	font-weight: normal !important;
}

/* Cabecera *******************************************************************/
.site-branding .site-title.title-image img {
	height: 90px;
}

.main-navigation .current-menu-ancestor > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation li.focus > a,
.main-navigation li:hover > a,
.main-navigation ul ul a.focus,
.main-navigation ul ul a:hover {
	color: #858899;
}

.social-icon > li > a:focus,
.social-icon > li > a:hover {
	color: #1e3965;
}

/* Pie ************************************************************************/
.footer {
	background-color: #5a93a8;
}

.footer img {
	width: auto;
	height: 90px;
}

.footer .social-icon > li > a {
	color: #fff;
	background-color: transparent;
}

.footer .social-icon > li > a:hover {
	color: #5a93a8;
	background-color: #fff;
}

.footer .footer-copyright {
	background-color: #c23c3b;
}

.footer .footer-copyright .text-center {
	padding: 10px 0;
	color: #fff;
	line-height: 25px;
}

.footer .footer-copyright .text-center a {
	color: #fff;
}

.footer .footer-copyright .text-center a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer a.invertida {
	display: inline-block;

	-moz-transform: scaleX(-1);    /* Gecko */
	-o-transform: scaleX(-1);      /* Opera */
	-webkit-transform: scaleX(-1); /* Webkit */
	transform: scaleX(-1);         /* Standard */
	filter: FlipH;                 /* IE 6/7/8 */
}

/* Sponsors *******************************************************************/
.sponsors .client {
	transition: none;
	opacity: 1;
	padding: 20px 0;
}

.sponsors .client > a {
	display: block;

	height: 100px;

	margin: 0 auto;

	background-position: center left;
	background-repeat: no-repeat;

	transition: none;
}

.sponsors .client > a:hover {
	background-position: center right;
}

.sponsors.invertido .client > a {
	background-position: center right;
}

.sponsors.invertido .client > a:hover {
	background-position: center left;
}

/*@media only screen and ( min-width: 768px ) and ( max-width: 991px ) {
	.clients-row > [class*="col-"]:nth-child(1) {
		border-bottom: 1px solid #f2f2f2;
	}

	.clients-row > [class*="col-"]:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid #f2f2f2;
	}
}*/

/* Modulo - Galeria ***********************************************************/
.modulo_galeria {
	display: flex;
	flex-wrap: wrap;

	margin-top: -30px;

	font-size: 0;
}

.modulo_galeria > div {
	display: inline-flex;

	margin-top: 30px;
}

.modulo_galeria > div > a {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
}

.modulo_galeria .galeria-elemento {
	flex: 1;
}

.modulo_galeria .galeria-elemento > .galeria-elemento-imagen {
	position: relative;
	overflow: hidden;

	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.modulo_galeria .galeria-elemento > .galeria-elemento-imagen:after {
	position: absolute;
	display: block;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;

	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.modulo_galeria .galeria-elemento > .galeria-elemento-imagen.redondo {
	border-radius: 50%;
}

.modulo_galeria .galeria-elemento > .galeria-elemento-imagen > img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.modulo_galeria .galeria-elemento > .galeria-elemento-imagen > .galeria-elemento-detalles {
	top: 100%;
	bottom: auto;
	position: absolute;
	width: 100%;
	left: 0;
	padding: 20px;
	opacity: 0;
	z-index: 2;
	text-align: center;
	font-size: 12px;
	color: #aaa;

	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.modulo_galeria .galeria-elemento > .galeria-elemento-imagen > .galeria-elemento-detalles > p {
	margin: 0;
	padding: 0;

	font-weight: bold;
}

.modulo_galeria .galeria-elemento > .galeria-elemento-imagen > .galeria-elemento-detalles > span {
	display: block;

	margin: 10px 0 0;

	font-style: italic;
	opacity: 0.8;
}

.modulo_galeria .galeria-elemento > .galeria-elemento-titulo {
	margin: 15px 0 0;

	font-size: 14px;
	text-align: center;
}

.modulo_galeria .galeria-elemento:hover > .galeria-elemento-imagen:after {
	background: rgba(255, 255, 255, 0.9);
}

.modulo_galeria .galeria-elemento:hover > .galeria-elemento-imagen > .galeria-elemento-detalles {
	top: 50%;
	bottom: auto;
	color: #383f51;
	opacity: 1;

	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* General ********************************************************************/
h1:not(.page-title),
h2,
h3,
h4,
h5,
h6 {
	font-family: Oswald,sans-serif;
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
	line-height: 120%;
}

h1:not(.page-title) {
	font-size: 48px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

p {
	color: #000;
}

.taxonomy-description p {
	color: inherit;
}

.texto > p:last-child {
	margin-bottom: 0;
}

.texto.texto_oswald > p,
p.texto_oswald {
	font-family: Oswald,sans-serif;
	font-weight: bold;
	line-height: 130%;
}

.texto.texto_10 > p,
p.texto_10 {
	font-size: 12px;
}

.texto.texto_12 > p,
p.texto_12 {
	font-size: 12px;
}

.texto.texto_14 > p,
p.texto_14 {
	font-size: 14px;
}

.texto.texto_15 > p,
p.texto_15 {
	font-size: 15px;
}

.texto.texto_16 > p,
p.texto_16 {
	font-size: 16px;
}

.texto.texto_18 > p,
p.texto_18 {
	font-size: 18px;
}

.texto.texto_25 > p,
p.texto_25 {
	font-size: 25px;
}

.cambio_imagen,
.cambio_imagen h1,
.cambio_imagen h2,
.cambio_imagen h3,
.cambio_imagen h4,
.cambio_imagen h5,
.cambio_imagen h6,
.cambio_imagen p {
	text-align: center;
}

.cambio_imagen > a > .imagen_1 {
	display: block;
	width: 100%;
	height: auto;
}

.cambio_imagen > a > .imagen_2 {
	display: none;
	width: 100%;
	height: auto;
}

.cambio_imagen.alternar > a > .imagen_1 {
	display: none;
}

.cambio_imagen.alternar > a > .imagen_2 {
	display: block;
}

/* Seccion - Portada **********************************************************/

/* Seccion - Calendari ********************************************************/
.calendari h3 {
	font-size: 20px;
}

.calendari .button-block {
	display: block !important;
}

.calendari .widget .widget-title {
	margin: 0 0 25px;
	padding: 0 0 20px;

	border-top: 0;
	border-bottom: 1px solid rgba(238, 238, 238, .9);
}

.calendari .widget .widget-title h5 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}

.calendari .calendar_wrap table {
	width: 100%;
}

.calendari .calendar_wrap tbody {
	color: #aaa;
}

.calendari .calendar_wrap tbody td {
	background: #f5f5f5;
	border: 1px solid #fff;
	text-align: center;
	padding: 8px;
}

.calendari .calendar_wrap tbody .pad {
	background: none;
}

.calendari .calendar_wrap td.activo {
	color: #ffffff;
	background: #5a93a8;
}

.calendari .calendar_wrap td.activo > a {
	display: block;

	color: #ffffff;
}

.calendari .calendar_wrap td.activo > a:hover {
	color: rgba(255, 255, 255, 0.7);
}

.calendari .diari_logo {
	position: relative;

	height: 45px;

	margin-bottom: 25px;

	text-align: center;
}

.calendari .diari_logo img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	display: block;
	margin: 0 auto;

	max-width: 220px;
	max-height: 45px;
}

/* Seccion - Llegir mes *******************************************************/
.llegir_mes h6 {
	font-weight: normal;
}

/* Seccion - Concurs **********************************************************/
.concurs h3 {
	font-size: 24px;
}

.concurs .diari_logo {
	position: relative;

	height: 45px;

	margin-bottom: 25px;

	text-align: center;
}

.concurs .diari_logo img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	display: block;
	margin: 0 auto;

	max-width: 220px;
	max-height: 45px;
}

.concurs .pregunta {
	color: #313131;
	font-weight: bold;
	font-size: 18px;
}

.concurs .btn.boton_concurso {
	white-space: normal;
}

.concurs .btn.btn-gray.boton_concurso {
	color: #444444;
}

/* Seccion - Llibre ***********************************************************/
.llibres .social-icon > li > a {
	color: #000;
}

.llibres .social-icon > li > a:hover {
	color: #1e3965;
}

.llibres .button_portada {
	color: #fff !important;
	font-weight: normal;
}

/* Seccion - Noticies *********************************************************/
.noticies .entry-meta .entry-cat.nada::after {
	content: '';
}

.noticies .entry-meta .entry-cat .cat-link a {
	color: #1e3965;
}

.noticies .entry-meta .entry-cat .cat-link a:hover {
	color: #5a93a8;
}

.noticies .entry-meta .entry-like a:hover i {
	color: #1e3965;
}

.noticies .site-sidebar .social-icon > li > a:focus,
.noticies .site-sidebar .social-icon > li > a:hover {
	color: #000;
	background: #fff;
}

.noticies .compartir > a {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
}

.noticies .compartir .si-colored-facebook {
	color: #fff;
	background-color: #3B5998;
}

.noticies .compartir .si-colored-twitter {
	color: #fff;
	background-color: #00ACEE;
}

.noticies .compartir .si-colored-google-plus {
	color: #fff;
	background-color: #DD4B39;
}

.noticies .compartir .si-colored-pinterest {
	color: #fff;
	background-color: #C8232C;
}

.noticies .compartir .si-colored-whatsapp {
	color: #fff;
	background-color: #00e676;
}

.noticies .compartir a > i.fa {
	color: #fff;
}

.noticies .compartir a:hover {
	opacity: 0.75;
}

.noticies .compartir a:hover > i.fa {
	color: #fff;
}

/* Seccion - Galeria **********************************************************/
.galeria a.portfolio-link:hover,
.galeria a.portfolio-link:focus {
	outline: none;
	text-decoration: none;
}

.galeria a.portfolio-link:hover img {
	opacity: 0.75;
}

.galeria .mp_galeria_elemento img.ancho {
	width: 100%;
	height: auto;
}

.galeria .mp_galeria_elemento > h3 > a {
	color: #000;
	text-decoration: none;
}

.galeria .mp_galeria_elemento > h3 > a:hover {
	color: #1e3965;
}

.galeria .mp_galeria_elemento > h6 {
	color: #66697a;
	font-weight: normal;
}

.galeria .filters {
	text-align: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.galeria .filters > li {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	display: inline-block;
	margin: 20px 15px;
	line-height: 20px;
}

.galeria .filters > li {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	display: inline-block;
	margin: 20px 15px;
	line-height: 20px;
}

.galeria .filters > li > a {
	color: #66697a;
	text-decoration: none;
}

.galeria .filters > li > a.current,
.galeria .filters > li > a:hover {
	color: #1e3965;
}

/* Seccion - Campanyes ********************************************************/
.campanyes h6 {
	font-weight: normal;
}

/* Seccion - Contacte *********************************************************/
.contacte .mapa {
	display: none;
	margin-top: 90px;
	margin-bottom: -90px;
}

.contacte .mapa iframe {
	width: 100%;
	height: 300px;
	margin-bottom: -5px;
}

@media only screen and ( max-width: 1024px ) {
	.main-navigation a {
		padding: 14px 12px 16px;
	}
}

/* Seccion - Admin ************************************************************/
.site-navigation-sticky-wrapper.admin .main-navigation a {
	padding: 14px 14px 16px;
}

#seccion.admin .btn-list .button {
	margin-left: 10px;
}

#seccion.admin .btn-list .button:first-child {
	margin-left: 0;
}

#seccion.admin form label.titulo {
	display: block;
	border-bottom: 1px solid #1e3965;
	color: #1e3965;
	font-weight: bold;
	text-transform: uppercase;
}

#seccion.admin form label {
	display: block;

	color: #aea79c;
}

#seccion.admin form label > span {
	font-weight: normal;
	font-size: 12px;
}

#seccion.admin .form-control {
	text-transform: none;
}

#seccion.admin .form-group.previsualizacion_multiple a img {
	margin-top: 20px;
}

#seccion.admin .form-group.previsualizacion_multiple a:first-child img {
	margin-top: 0;
}

#seccion.admin button.btn.dropdown-toggle.btn-gray-transparent {
	margin-top: 0;
	margin-bottom: 0;
}

#seccion.admin input[type="file"] {
	padding: 0;
	border: 0;
}

#seccion.admin a.galeria {
	margin-top: 20px;
	display: block;
}

#seccion.admin a.galeria:hover {
	opacity: 0.8;
}

#seccion.admin div.form-group.fecha.ed-datepicker {
	height: auto;
}

#seccion.admin div.form-group.fecha.ed-datepicker .form-control {
	height: 34px;

	padding: 6px 12px;

	font-size: 14px;
	color: #555;
	background: #fff;
	border: 1px solid #ccc;
}

#seccion.admin .module-dark {
	background: #5a93a8;
}

/* Seccion - Admin - Listado tabla ********************************************/
#seccion.admin .listado_tabla {
}

#seccion.admin .listado_tabla table {
	width: 100%;

	margin: 0 auto;
}

#seccion.admin .listado_tabla table th, #seccion.admin .listado_tabla table td {
	padding: 5px;
}

#seccion.admin .listado_tabla table th {
	cursor: default;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	background: #1e3965;
}

#seccion.admin .listado_tabla table th a {
	color: #fff;
}

#seccion.admin .listado_tabla table th a:hover {
	color: #ddd;
}

#seccion.admin .listado_tabla table tr {
	cursor: pointer;
	background: #fff;
}

#seccion.admin .listado_tabla table tr:nth-child(2n+1) {
	background: #f7f7f7;
}

#seccion.admin .listado_tabla table tr:hover {
	color: #ffffff;
	background: #5a93a8;
}

#seccion.admin .listado_tabla table .fecha {
	width: 200px;

	text-align: center;
}

#seccion.admin .listado_tabla table .enviar {
	width: 50px;

	text-align: center;
}

/* Modificaciones plantilla ***************************************************/
::-moz-selection {
	color:#fff;
	text-shadow:none;
	background:#1e3965
}
::-webkit-selection {
	color:#fff;
	text-shadow:none;
	background:#1e3965
}
::selection {
	color:#fff;
	text-shadow:none;
	background:#1e3965
}

.button.gris:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) {
	color: #ccc !important;
	border-color: #ccc !important;
	background-color: #fff;
}

.button:active:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
.button:focus:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
.button:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
button:active:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
button:focus:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
button:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
input[type="submit"]:active:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
input[type="submit"]:focus:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
input[type="submit"]:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
input[type="button"]:active:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
input[type="button"]:focus:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
input[type="button"]:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) {
	color: #fff !important;
	border-color: #1e3965 !important;
	background-color: #1e3965;
}

.bootstrap-select > .dropdown-toggle {
	border: 1px solid #ccc;
	border-radius: 0;
}

.mce-widget.mce-btn button,
.mce-btn button[role=presentation]:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
.mce-btn button[hidefocus]:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
.mce-btn button.mce-open:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
button.mce-close:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) {
	padding: 4px 10px !important;
	font-size: 14px !important;
	line-height: 20px !important;
	cursor: pointer !important;
	color: #333 !important;
	text-align: center !important;
	overflow: visible !important;
	-webkit-appearance: none !important;
	border: none !important;
	border-radius: 0 !important;
	-moz-box-sizing: border-box !important;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
	text-transform: none !important;
}

.mce-btn button.mce-open:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
button.mce-close:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) {
	padding: 4px !important;
}

.mce-btn button.mce-open:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) > i,
button.mce-close:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) > i {
	margin-right: 0;
}

.mce-widget.mce-btn button:hover,
.mce-btn button[role=presentation]:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
.mce-btn button[hidefocus]:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
.mce-btn button.mce-open:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit),
button.mce-close:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) {
	color: #333 !important;
	border-color: #ccc !important;
	background-color: transparent;
}

.mce-colorbutton .mce-preview {
	margin-left: -18px !important;
}

.mce-primary {
	color: #fff !important;
}

.mce-primary > button[role=presentation]:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) {
	color: #fff !important;
}

.mce-primary > button[role=presentation]:hover:not(.more-link):not(.btn):not([class*="icon-"]):not(.icon-social):not(.menu-toggle):not(.search-submit) {
	color: #fff !important;
	background: transparent !important;
}

.mce-label {
	width: auto !important;
	text-transform: none;
}

.colorpicker-2x .colorpicker-saturation {
	width: 200px;
	height: 200px;
}

.colorpicker-2x .colorpicker-hue,
.colorpicker-2x .colorpicker-alpha {
	width: 30px;
	height: 200px;
}

.colorpicker-2x .colorpicker-color,
.colorpicker-2x .colorpicker-color div{
	height: 30px;
}

.mfp-gallery > .mfp-container > .mfp-content > .mfp-figure > .mfp-close {
	display: none !important;
}

.site-branding .site-title {
	z-index: 1000;
}

.sticky-bar {
	z-index: 1010;
}

.taxonomy-description {
	font-size: 15px;
}

.main-navigation .menu-container {
	border-bottom: 2px solid #e6e6e6;
}

.entry-meta {
	font-size: 14px;
	color: #858899;
}

.entry-meta .entry-cat .cat-link a {
	color: #858899;
}

.entry-meta .entry-cat .cat-link a:hover {
	color: #000;
}

.widget.astrif_widget_popular_entries ul li .popular-entry-thumbnail img {
	border-radius: 0;
}

.widget-title span::first-letter {
	margin-right: 3px;
	border-radius: 50%;
}

.pagination > li > a, .pagination > li > span {
	color: #5a93a8;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
	color: #5a93a8;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
	background-color: #5a93a8;
	border-color: #5a93a8;
}

/* Animacion cabecera */
.topbar-slider {
	position: relative;
	height: auto;
	overflow: visible;
}

.topbar-slider .owl-theme .owl-controls .owl-pagination {
	display: none !important;
}

.one-page-intro-jump {
	position:absolute;
	z-index: 100;
	width: 100%;
	text-align:center;
	animation: bobble 2s infinite;
	-webkit-animation: bobble 2s infinite;
}

/*@media only screen and ( max-width: 565px ) {
	.one-page-intro-jump {
		-webkit-animation: bobble_movil 2s infinite;
	}
}*/

.one-page-intro-jump .intro-center {
	display:inline-block;
}
@keyframes bobble {
	0% {
		bottom:15px;
		animation-timing-function: ease-in;
		-webkit-animation-timing-function: ease-in;
	}
	50% {
		bottom:25px;
		animation-timing-function: ease-out;
		-webkit-animation-timing-function: ease-out;
	}
	100% {
		bottom:15px;
		animation-timing-function: ease-in;
		-webkit-animation-timing-function: ease-in;
	}
}
/*@keyframes bobble_movil {
	0% {
		margin-top:-95px;
		animation-timing-function: ease-in;
		-webkit-animation-timing-function: ease-in;
	}
	50% {
		margin-top:-105px;
		animation-timing-function: ease-out;
		-webkit-animation-timing-function: ease-out;
	}
	100% {
		margin-top:-95px;
		animation-timing-function: ease-in;
		-webkit-animation-timing-function: ease-in;
	}
}*/

.carousel-control.left,
.carousel-control.right {
	background: none;
}

.carousel-indicators {
	display: none;
}

button.mfp-close {
	display: none !important;
}

/* Colores */

.alternar > #boton_llibre_1,
#boton_llibre_1:active,
#boton_llibre_1:focus,
#boton_llibre_1:hover {
	color: #fff !important;
	border-color: #a5ac4d !important;
	background-color: #a5ac4d !important;
}

#boton_llibre_1.activo,
#boton_llibre_1.activo:active,
#boton_llibre_1.activo:focus,
#boton_llibre_1.activo:hover,
#boton_llibre_1_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #a5ac4d !important;
	background-color: #a5ac4d !important;
}

#boton_llibre_1_inverso:active,
#boton_llibre_1_inverso:focus,
#boton_llibre_1_inverso:hover {
	color: #a5ac4d !important;
	border-color: #a5ac4d !important;
	background-color: #fff !important;
}

.color_llibre_1 {
	color: #a5ac4d !important;
}

.alternar > #boton_llibre_4,
#boton_llibre_4:active,
#boton_llibre_4:focus,
#boton_llibre_4:hover {
	color: #fff !important;
	border-color: #d6a751 !important;
	background-color: #d6a751 !important;
}

#boton_llibre_4.activo,
#boton_llibre_4.activo:active,
#boton_llibre_4.activo:focus,
#boton_llibre_4.activo:hover,
#boton_llibre_4_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #d6a751 !important;
	background-color: #d6a751 !important;
}

#boton_llibre_4_inverso:active,
#boton_llibre_4_inverso:focus,
#boton_llibre_4_inverso:hover {
	color: #d6a751 !important;
	border-color: #d6a751 !important;
	background-color: #fff !important;
}

.color_llibre_4 {
	color: #d6a751 !important;
}

.alternar > #boton_llibre_2,
#boton_llibre_2:active,
#boton_llibre_2:focus,
#boton_llibre_2:hover {
	color: #fff !important;
	border-color: #88a753 !important;
	background-color: #88a753 !important;
}

#boton_llibre_2.activo,
#boton_llibre_2.activo:active,
#boton_llibre_2.activo:focus,
#boton_llibre_2.activo:hover,
#boton_llibre_2_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #88a753 !important;
	background-color: #88a753 !important;
}

#boton_llibre_2_inverso:active,
#boton_llibre_2_inverso:focus,
#boton_llibre_2_inverso:hover {
	color: #88a753 !important;
	border-color: #88a753 !important;
	background-color: #fff !important;
}

.color_llibre_2 {
	color: #88a753 !important;
}

.alternar > #boton_llibre_5,
#boton_llibre_5:active,
#boton_llibre_5:focus,
#boton_llibre_5:hover {
	color: #fff !important;
	border-color: #14606a !important;
	background-color: #14606a !important;
}

#boton_llibre_5.activo,
#boton_llibre_5.activo:active,
#boton_llibre_5.activo:focus,
#boton_llibre_5.activo:hover,
#boton_llibre_5_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #14606a !important;
	background-color: #14606a !important;
}

#boton_llibre_5_inverso:active,
#boton_llibre_5_inverso:focus,
#boton_llibre_5_inverso:hover {
	color: #14606a !important;
	border-color: #14606a !important;
	background-color: #fff !important;
}

.color_llibre_5 {
	color: #14606a !important;
}

.alternar > #boton_llibre_6,
#boton_llibre_6:active,
#boton_llibre_6:focus,
#boton_llibre_6:hover {
	color: #fff !important;
	border-color: #a03e3d !important;
	background-color: #a03e3d !important;
}

#boton_llibre_6.activo,
#boton_llibre_6.activo:active,
#boton_llibre_6.activo:focus,
#boton_llibre_6.activo:hover,
#boton_llibre_6_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #a03e3d !important;
	background-color: #a03e3d !important;
}

#boton_llibre_6_inverso:active,
#boton_llibre_6_inverso:focus,
#boton_llibre_6_inverso:hover {
	color: #a03e3d !important;
	border-color: #a03e3d !important;
	background-color: #fff !important;
}

.color_llibre_6 {
	color: #a03e3d !important;
}

.alternar > #boton_llibre_7,
#boton_llibre_7:active,
#boton_llibre_7:focus,
#boton_llibre_7:hover {
	color: #fff !important;
	border-color: #568ca3 !important;
	background-color: #568ca3 !important;
}

#boton_llibre_7.activo,
#boton_llibre_7.activo:active,
#boton_llibre_7.activo:focus,
#boton_llibre_7.activo:hover,
#boton_llibre_7_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #568ca3 !important;
	background-color: #568ca3 !important;
}

#boton_llibre_7_inverso:active,
#boton_llibre_7_inverso:focus,
#boton_llibre_7_inverso:hover {
	color: #568ca3 !important;
	border-color: #568ca3 !important;
	background-color: #fff !important;
}

.color_llibre_7 {
	color: #568ca3 !important;
}

.alternar > #boton_llibre_8,
#boton_llibre_8:active,
#boton_llibre_8:focus,
#boton_llibre_8:hover {
	color: #fff !important;
	border-color: #b78729 !important;
	background-color: #b78729 !important;
}

#boton_llibre_8.activo,
#boton_llibre_8.activo:active,
#boton_llibre_8.activo:focus,
#boton_llibre_8.activo:hover,
#boton_llibre_8_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #b78729 !important;
	background-color: #b78729 !important;
}

#boton_llibre_8_inverso:active,
#boton_llibre_8_inverso:focus,
#boton_llibre_8_inverso:hover {
	color: #b78729 !important;
	border-color: #b78729 !important;
	background-color: #fff !important;
}

.color_llibre_8 {
	color: #b78729 !important;
}

.alternar > #boton_llibre_9,
#boton_llibre_9:active,
#boton_llibre_9:focus,
#boton_llibre_9:hover {
	color: #fff !important;
	border-color: #784b31 !important;
	background-color: #784b31 !important;
}

#boton_llibre_9.activo,
#boton_llibre_9.activo:active,
#boton_llibre_9.activo:focus,
#boton_llibre_9.activo:hover,
#boton_llibre_9_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #784b31 !important;
	background-color: #784b31 !important;
}

#boton_llibre_9_inverso:active,
#boton_llibre_9_inverso:focus,
#boton_llibre_9_inverso:hover {
	color: #784b31 !important;
	border-color: #784b31 !important;
	background-color: #fff !important;
}

.color_llibre_9 {
	color: #784b31 !important;
}

.alternar > #boton_llibre_10,
#boton_llibre_10:active,
#boton_llibre_10:focus,
#boton_llibre_10:hover {
	color: #fff !important;
	border-color: #3c5e90 !important;
	background-color: #3c5e90 !important;
}

#boton_llibre_10.activo,
#boton_llibre_10.activo:active,
#boton_llibre_10.activo:focus,
#boton_llibre_10.activo:hover,
#boton_llibre_10_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #3c5e90 !important;
	background-color: #3c5e90 !important;
}

#boton_llibre_10_inverso:active,
#boton_llibre_10_inverso:focus,
#boton_llibre_10_inverso:hover {
	color: #3c5e90 !important;
	border-color: #3c5e90 !important;
	background-color: #fff !important;
}

.color_llibre_10 {
	color: #3c5e90 !important;
}

.alternar > #boton_llibre_11,
#boton_llibre_11:active,
#boton_llibre_11:focus,
#boton_llibre_11:hover {
	color: #fff !important;
	border-color: #5f2b1d !important;
	background-color: #5f2b1d !important;
}

#boton_llibre_11.activo,
#boton_llibre_11.activo:active,
#boton_llibre_11.activo:focus,
#boton_llibre_11.activo:hover,
#boton_llibre_11_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5f2b1d !important;
	background-color: #5f2b1d !important;
}

#boton_llibre_11_inverso:active,
#boton_llibre_11_inverso:focus,
#boton_llibre_11_inverso:hover {
	color: #5f2b1d !important;
	border-color: #5f2b1d !important;
	background-color: #fff !important;
}

.color_llibre_11 {
	color: #5f2b1d !important;
}

.alternar > #boton_llibre_12,
#boton_llibre_12:active,
#boton_llibre_12:focus,
#boton_llibre_12:hover {
	color: #fff !important;
	border-color: #65436c !important;
	background-color: #65436c !important;
}

#boton_llibre_12.activo,
#boton_llibre_12.activo:active,
#boton_llibre_12.activo:focus,
#boton_llibre_12.activo:hover,
#boton_llibre_12_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #65436c !important;
	background-color: #65436c !important;
}

#boton_llibre_12_inverso:active,
#boton_llibre_12_inverso:focus,
#boton_llibre_12_inverso:hover {
	color: #65436c !important;
	border-color: #65436c !important;
	background-color: #fff !important;
}

.color_llibre_12 {
	color: #65436c !important;
}

.alternar > #boton_entrevista_17,
#boton_entrevista_17:active,
#boton_entrevista_17:focus,
#boton_entrevista_17:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_17.activo,
#boton_entrevista_17.activo:active,
#boton_entrevista_17.activo:focus,
#boton_entrevista_17.activo:hover,
#boton_entrevista_17_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_17_inverso:active,
#boton_entrevista_17_inverso:focus,
#boton_entrevista_17_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_17 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_16,
#boton_entrevista_16:active,
#boton_entrevista_16:focus,
#boton_entrevista_16:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_16.activo,
#boton_entrevista_16.activo:active,
#boton_entrevista_16.activo:focus,
#boton_entrevista_16.activo:hover,
#boton_entrevista_16_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_16_inverso:active,
#boton_entrevista_16_inverso:focus,
#boton_entrevista_16_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_16 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_15,
#boton_entrevista_15:active,
#boton_entrevista_15:focus,
#boton_entrevista_15:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_15.activo,
#boton_entrevista_15.activo:active,
#boton_entrevista_15.activo:focus,
#boton_entrevista_15.activo:hover,
#boton_entrevista_15_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_15_inverso:active,
#boton_entrevista_15_inverso:focus,
#boton_entrevista_15_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_15 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_14,
#boton_entrevista_14:active,
#boton_entrevista_14:focus,
#boton_entrevista_14:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_14.activo,
#boton_entrevista_14.activo:active,
#boton_entrevista_14.activo:focus,
#boton_entrevista_14.activo:hover,
#boton_entrevista_14_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_14_inverso:active,
#boton_entrevista_14_inverso:focus,
#boton_entrevista_14_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_14 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_13,
#boton_entrevista_13:active,
#boton_entrevista_13:focus,
#boton_entrevista_13:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_13.activo,
#boton_entrevista_13.activo:active,
#boton_entrevista_13.activo:focus,
#boton_entrevista_13.activo:hover,
#boton_entrevista_13_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_13_inverso:active,
#boton_entrevista_13_inverso:focus,
#boton_entrevista_13_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_13 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_12,
#boton_entrevista_12:active,
#boton_entrevista_12:focus,
#boton_entrevista_12:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_12.activo,
#boton_entrevista_12.activo:active,
#boton_entrevista_12.activo:focus,
#boton_entrevista_12.activo:hover,
#boton_entrevista_12_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_12_inverso:active,
#boton_entrevista_12_inverso:focus,
#boton_entrevista_12_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_12 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_11,
#boton_entrevista_11:active,
#boton_entrevista_11:focus,
#boton_entrevista_11:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_11.activo,
#boton_entrevista_11.activo:active,
#boton_entrevista_11.activo:focus,
#boton_entrevista_11.activo:hover,
#boton_entrevista_11_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_11_inverso:active,
#boton_entrevista_11_inverso:focus,
#boton_entrevista_11_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_11 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_10,
#boton_entrevista_10:active,
#boton_entrevista_10:focus,
#boton_entrevista_10:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_10.activo,
#boton_entrevista_10.activo:active,
#boton_entrevista_10.activo:focus,
#boton_entrevista_10.activo:hover,
#boton_entrevista_10_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_10_inverso:active,
#boton_entrevista_10_inverso:focus,
#boton_entrevista_10_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_10 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_9,
#boton_entrevista_9:active,
#boton_entrevista_9:focus,
#boton_entrevista_9:hover {
	color: #fff !important;
	border-color: #e9bc01 !important;
	background-color: #e9bc01 !important;
}

#boton_entrevista_9.activo,
#boton_entrevista_9.activo:active,
#boton_entrevista_9.activo:focus,
#boton_entrevista_9.activo:hover,
#boton_entrevista_9_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #e9bc01 !important;
	background-color: #e9bc01 !important;
}

#boton_entrevista_9_inverso:active,
#boton_entrevista_9_inverso:focus,
#boton_entrevista_9_inverso:hover {
	color: #e9bc01 !important;
	border-color: #e9bc01 !important;
	background-color: #fff !important;
}

.color_entrevista_9 {
	color: #e9bc01 !important;
}

.alternar > #boton_entrevista_8,
#boton_entrevista_8:active,
#boton_entrevista_8:focus,
#boton_entrevista_8:hover {
	color: #fff !important;
	border-color: #816990 !important;
	background-color: #816990 !important;
}

#boton_entrevista_8.activo,
#boton_entrevista_8.activo:active,
#boton_entrevista_8.activo:focus,
#boton_entrevista_8.activo:hover,
#boton_entrevista_8_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #816990 !important;
	background-color: #816990 !important;
}

#boton_entrevista_8_inverso:active,
#boton_entrevista_8_inverso:focus,
#boton_entrevista_8_inverso:hover {
	color: #816990 !important;
	border-color: #816990 !important;
	background-color: #fff !important;
}

.color_entrevista_8 {
	color: #816990 !important;
}

.alternar > #boton_entrevista_7,
#boton_entrevista_7:active,
#boton_entrevista_7:focus,
#boton_entrevista_7:hover {
	color: #fff !important;
	border-color: #c27e38 !important;
	background-color: #c27e38 !important;
}

#boton_entrevista_7.activo,
#boton_entrevista_7.activo:active,
#boton_entrevista_7.activo:focus,
#boton_entrevista_7.activo:hover,
#boton_entrevista_7_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #c27e38 !important;
	background-color: #c27e38 !important;
}

#boton_entrevista_7_inverso:active,
#boton_entrevista_7_inverso:focus,
#boton_entrevista_7_inverso:hover {
	color: #c27e38 !important;
	border-color: #c27e38 !important;
	background-color: #fff !important;
}

.color_entrevista_7 {
	color: #c27e38 !important;
}

.alternar > #boton_entrevista_6,
#boton_entrevista_6:active,
#boton_entrevista_6:focus,
#boton_entrevista_6:hover {
	color: #fff !important;
	border-color: #42b8b5 !important;
	background-color: #42b8b5 !important;
}

#boton_entrevista_6.activo,
#boton_entrevista_6.activo:active,
#boton_entrevista_6.activo:focus,
#boton_entrevista_6.activo:hover,
#boton_entrevista_6_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #42b8b5 !important;
	background-color: #42b8b5 !important;
}

#boton_entrevista_6_inverso:active,
#boton_entrevista_6_inverso:focus,
#boton_entrevista_6_inverso:hover {
	color: #42b8b5 !important;
	border-color: #42b8b5 !important;
	background-color: #fff !important;
}

.color_entrevista_6 {
	color: #42b8b5 !important;
}

.alternar > #boton_entrevista_5,
#boton_entrevista_5:active,
#boton_entrevista_5:focus,
#boton_entrevista_5:hover {
	color: #fff !important;
	border-color: #a1596f !important;
	background-color: #a1596f !important;
}

#boton_entrevista_5.activo,
#boton_entrevista_5.activo:active,
#boton_entrevista_5.activo:focus,
#boton_entrevista_5.activo:hover,
#boton_entrevista_5_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #a1596f !important;
	background-color: #a1596f !important;
}

#boton_entrevista_5_inverso:active,
#boton_entrevista_5_inverso:focus,
#boton_entrevista_5_inverso:hover {
	color: #a1596f !important;
	border-color: #a1596f !important;
	background-color: #fff !important;
}

.color_entrevista_5 {
	color: #a1596f !important;
}

.alternar > #boton_entrevista_4,
#boton_entrevista_4:active,
#boton_entrevista_4:focus,
#boton_entrevista_4:hover {
	color: #fff !important;
	border-color: #59a16d !important;
	background-color: #59a16d !important;
}

#boton_entrevista_4.activo,
#boton_entrevista_4.activo:active,
#boton_entrevista_4.activo:focus,
#boton_entrevista_4.activo:hover,
#boton_entrevista_4_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #59a16d !important;
	background-color: #59a16d !important;
}

#boton_entrevista_4_inverso:active,
#boton_entrevista_4_inverso:focus,
#boton_entrevista_4_inverso:hover {
	color: #59a16d !important;
	border-color: #59a16d !important;
	background-color: #fff !important;
}

.color_entrevista_4 {
	color: #59a16d !important;
}

.alternar > #boton_entrevista_3,
#boton_entrevista_3:active,
#boton_entrevista_3:focus,
#boton_entrevista_3:hover {
	color: #fff !important;
	border-color: #ac524e !important;
	background-color: #ac524e !important;
}

#boton_entrevista_3.activo,
#boton_entrevista_3.activo:active,
#boton_entrevista_3.activo:focus,
#boton_entrevista_3.activo:hover,
#boton_entrevista_3_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #ac524e !important;
	background-color: #ac524e !important;
}

#boton_entrevista_3_inverso:active,
#boton_entrevista_3_inverso:focus,
#boton_entrevista_3_inverso:hover {
	color: #ac524e !important;
	border-color: #ac524e !important;
	background-color: #fff !important;
}

.color_entrevista_3 {
	color: #ac524e !important;
}

.alternar > #boton_entrevista_2,
#boton_entrevista_2:active,
#boton_entrevista_2:focus,
#boton_entrevista_2:hover {
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_2.activo,
#boton_entrevista_2.activo:active,
#boton_entrevista_2.activo:focus,
#boton_entrevista_2.activo:hover,
#boton_entrevista_2_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #5a93a8 !important;
	background-color: #5a93a8 !important;
}

#boton_entrevista_2_inverso:active,
#boton_entrevista_2_inverso:focus,
#boton_entrevista_2_inverso:hover {
	color: #5a93a8 !important;
	border-color: #5a93a8 !important;
	background-color: #fff !important;
}

.color_entrevista_2 {
	color: #5a93a8 !important;
}

.alternar > #boton_entrevista_1,
#boton_entrevista_1:active,
#boton_entrevista_1:focus,
#boton_entrevista_1:hover {
	color: #fff !important;
	border-color: #ceba2c !important;
	background-color: #ceba2c !important;
}

#boton_entrevista_1.activo,
#boton_entrevista_1.activo:active,
#boton_entrevista_1.activo:focus,
#boton_entrevista_1.activo:hover,
#boton_entrevista_1_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #ceba2c !important;
	background-color: #ceba2c !important;
}

#boton_entrevista_1_inverso:active,
#boton_entrevista_1_inverso:focus,
#boton_entrevista_1_inverso:hover {
	color: #ceba2c !important;
	border-color: #ceba2c !important;
	background-color: #fff !important;
}

.color_entrevista_1 {
	color: #ceba2c !important;
}

.alternar > #boton_campanya_12,
#boton_campanya_12:active,
#boton_campanya_12:focus,
#boton_campanya_12:hover {
	color: #fff !important;
	border-color: #3f4c7f !important;
	background-color: #3f4c7f !important;
}

#boton_campanya_12.activo,
#boton_campanya_12.activo:active,
#boton_campanya_12.activo:focus,
#boton_campanya_12.activo:hover,
#boton_campanya_12_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #3f4c7f !important;
	background-color: #3f4c7f !important;
}

#boton_campanya_12_inverso:active,
#boton_campanya_12_inverso:focus,
#boton_campanya_12_inverso:hover {
	color: #3f4c7f !important;
	border-color: #3f4c7f !important;
	background-color: #fff !important;
}

.color_campanya_12 {
	color: #3f4c7f !important;
}

.alternar > #boton_campanya_11,
#boton_campanya_11:active,
#boton_campanya_11:focus,
#boton_campanya_11:hover {
	color: #fff !important;
	border-color: #f2eece !important;
	background-color: #f2eece !important;
}

#boton_campanya_11.activo,
#boton_campanya_11.activo:active,
#boton_campanya_11.activo:focus,
#boton_campanya_11.activo:hover,
#boton_campanya_11_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #f2eece !important;
	background-color: #f2eece !important;
}

#boton_campanya_11_inverso:active,
#boton_campanya_11_inverso:focus,
#boton_campanya_11_inverso:hover {
	color: #f2eece !important;
	border-color: #f2eece !important;
	background-color: #fff !important;
}

.color_campanya_11 {
	color: #f2eece !important;
}

.alternar > #boton_campanya_10,
#boton_campanya_10:active,
#boton_campanya_10:focus,
#boton_campanya_10:hover {
	color: #fff !important;
	border-color: #915a4e !important;
	background-color: #915a4e !important;
}

#boton_campanya_10.activo,
#boton_campanya_10.activo:active,
#boton_campanya_10.activo:focus,
#boton_campanya_10.activo:hover,
#boton_campanya_10_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #915a4e !important;
	background-color: #915a4e !important;
}

#boton_campanya_10_inverso:active,
#boton_campanya_10_inverso:focus,
#boton_campanya_10_inverso:hover {
	color: #915a4e !important;
	border-color: #915a4e !important;
	background-color: #fff !important;
}

.color_campanya_10 {
	color: #915a4e !important;
}

.alternar > #boton_campanya_9,
#boton_campanya_9:active,
#boton_campanya_9:focus,
#boton_campanya_9:hover {
	color: #fff !important;
	border-color: #738a93 !important;
	background-color: #738a93 !important;
}

#boton_campanya_9.activo,
#boton_campanya_9.activo:active,
#boton_campanya_9.activo:focus,
#boton_campanya_9.activo:hover,
#boton_campanya_9_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #738a93 !important;
	background-color: #738a93 !important;
}

#boton_campanya_9_inverso:active,
#boton_campanya_9_inverso:focus,
#boton_campanya_9_inverso:hover {
	color: #738a93 !important;
	border-color: #738a93 !important;
	background-color: #fff !important;
}

.color_campanya_9 {
	color: #738a93 !important;
}

.alternar > #boton_campanya_8,
#boton_campanya_8:active,
#boton_campanya_8:focus,
#boton_campanya_8:hover {
	color: #fff !important;
	border-color: #925051 !important;
	background-color: #925051 !important;
}

#boton_campanya_8.activo,
#boton_campanya_8.activo:active,
#boton_campanya_8.activo:focus,
#boton_campanya_8.activo:hover,
#boton_campanya_8_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #925051 !important;
	background-color: #925051 !important;
}

#boton_campanya_8_inverso:active,
#boton_campanya_8_inverso:focus,
#boton_campanya_8_inverso:hover {
	color: #925051 !important;
	border-color: #925051 !important;
	background-color: #fff !important;
}

.color_campanya_8 {
	color: #925051 !important;
}

.alternar > #boton_campanya_7,
#boton_campanya_7:active,
#boton_campanya_7:focus,
#boton_campanya_7:hover {
	color: #fff !important;
	border-color: #63829c !important;
	background-color: #63829c !important;
}

#boton_campanya_7.activo,
#boton_campanya_7.activo:active,
#boton_campanya_7.activo:focus,
#boton_campanya_7.activo:hover,
#boton_campanya_7_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #63829c !important;
	background-color: #63829c !important;
}

#boton_campanya_7_inverso:active,
#boton_campanya_7_inverso:focus,
#boton_campanya_7_inverso:hover {
	color: #63829c !important;
	border-color: #63829c !important;
	background-color: #fff !important;
}

.color_campanya_7 {
	color: #63829c !important;
}

.alternar > #boton_campanya_6,
#boton_campanya_6:active,
#boton_campanya_6:focus,
#boton_campanya_6:hover {
	color: #fff !important;
	border-color: #a34f23 !important;
	background-color: #a34f23 !important;
}

#boton_campanya_6.activo,
#boton_campanya_6.activo:active,
#boton_campanya_6.activo:focus,
#boton_campanya_6.activo:hover,
#boton_campanya_6_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #a34f23 !important;
	background-color: #a34f23 !important;
}

#boton_campanya_6_inverso:active,
#boton_campanya_6_inverso:focus,
#boton_campanya_6_inverso:hover {
	color: #a34f23 !important;
	border-color: #a34f23 !important;
	background-color: #fff !important;
}

.color_campanya_6 {
	color: #a34f23 !important;
}

.alternar > #boton_campanya_5,
#boton_campanya_5:active,
#boton_campanya_5:focus,
#boton_campanya_5:hover {
	color: #fff !important;
	border-color: #bead86 !important;
	background-color: #bead86 !important;
}

#boton_campanya_5.activo,
#boton_campanya_5.activo:active,
#boton_campanya_5.activo:focus,
#boton_campanya_5.activo:hover,
#boton_campanya_5_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #bead86 !important;
	background-color: #bead86 !important;
}

#boton_campanya_5_inverso:active,
#boton_campanya_5_inverso:focus,
#boton_campanya_5_inverso:hover {
	color: #bead86 !important;
	border-color: #bead86 !important;
	background-color: #fff !important;
}

.color_campanya_5 {
	color: #bead86 !important;
}

.alternar > #boton_campanya_4,
#boton_campanya_4:active,
#boton_campanya_4:focus,
#boton_campanya_4:hover {
	color: #fff !important;
	border-color: #bdb07c !important;
	background-color: #bdb07c !important;
}

#boton_campanya_4.activo,
#boton_campanya_4.activo:active,
#boton_campanya_4.activo:focus,
#boton_campanya_4.activo:hover,
#boton_campanya_4_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #bdb07c !important;
	background-color: #bdb07c !important;
}

#boton_campanya_4_inverso:active,
#boton_campanya_4_inverso:focus,
#boton_campanya_4_inverso:hover {
	color: #bdb07c !important;
	border-color: #bdb07c !important;
	background-color: #fff !important;
}

.color_campanya_4 {
	color: #bdb07c !important;
}

.alternar > #boton_campanya_3,
#boton_campanya_3:active,
#boton_campanya_3:focus,
#boton_campanya_3:hover {
	color: #fff !important;
	border-color: #db9241 !important;
	background-color: #db9241 !important;
}

#boton_campanya_3.activo,
#boton_campanya_3.activo:active,
#boton_campanya_3.activo:focus,
#boton_campanya_3.activo:hover,
#boton_campanya_3_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #db9241 !important;
	background-color: #db9241 !important;
}

#boton_campanya_3_inverso:active,
#boton_campanya_3_inverso:focus,
#boton_campanya_3_inverso:hover {
	color: #db9241 !important;
	border-color: #db9241 !important;
	background-color: #fff !important;
}

.color_campanya_3 {
	color: #db9241 !important;
}

.alternar > #boton_campanya_2,
#boton_campanya_2:active,
#boton_campanya_2:focus,
#boton_campanya_2:hover {
	color: #fff !important;
	border-color: #891a21 !important;
	background-color: #891a21 !important;
}

#boton_campanya_2.activo,
#boton_campanya_2.activo:active,
#boton_campanya_2.activo:focus,
#boton_campanya_2.activo:hover,
#boton_campanya_2_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #891a21 !important;
	background-color: #891a21 !important;
}

#boton_campanya_2_inverso:active,
#boton_campanya_2_inverso:focus,
#boton_campanya_2_inverso:hover {
	color: #891a21 !important;
	border-color: #891a21 !important;
	background-color: #fff !important;
}

.color_campanya_2 {
	color: #891a21 !important;
}

.alternar > #boton_campanya_1,
#boton_campanya_1:active,
#boton_campanya_1:focus,
#boton_campanya_1:hover {
	color: #fff !important;
	border-color: #989698 !important;
	background-color: #989698 !important;
}

#boton_campanya_1.activo,
#boton_campanya_1.activo:active,
#boton_campanya_1.activo:focus,
#boton_campanya_1.activo:hover,
#boton_campanya_1_inverso {
	text-decoration: none;
	color: #fff !important;
	border-color: #989698 !important;
	background-color: #989698 !important;
}

#boton_campanya_1_inverso:active,
#boton_campanya_1_inverso:focus,
#boton_campanya_1_inverso:hover {
	color: #989698 !important;
	border-color: #989698 !important;
	background-color: #fff !important;
}

.color_campanya_1 {
	color: #989698 !important;
}
