*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
}
body {
  background-color: #f2f4f4;
  font-family: 'Work Sans', sans-serif;
  color: #222222;
  overflow-x: hidden;
  min-width: 0 !important;
}
a {
  color: #007bff;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
}

h1{
	font-weight: 200;
	margin: 0;
	font-size: 29px;
}

img {
  /*max-width: 100%;
  height: auto;*/
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 15px;
}

.section {
  background-color: #f2f4f4;
}
.section > .section-inner {
  position: relative;
}
.section > .section-inner .section-content {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .section > .section-inner .section-content {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
.section > .section-inner .section-content .section-title {
  color: #222;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .section > .section-inner .section-content .section-title {
    padding-bottom: 60px;
  }
}
.section > .section-inner .section-content .section-title > .main-title {
  font-size: 35px;
  font-weight: 300;
}
@media (min-width: 480px) {
  .section > .section-inner .section-content .section-title > .main-title {
    font-size: 45px;
  }
}
@media (min-width: 600px) {
  .section > .section-inner .section-content .section-title > .main-title {
    font-size: 55px;
  }
}
@media (min-width: 768px) {
  .section > .section-inner .section-content .section-title > .main-title {
    font-size: 60px;
  }
}
.section > .section-inner .section-content .section-title > .sub-title {
  font-size: 20px;
  font-weight: 300;
}
@media (min-width: 480px) {
  .section > .section-inner .section-content .section-title > .sub-title {
    font-size: 25px;
  }
}
.section > .section-inner .section-content .section-line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.section.section-bgimage-yes {
  background-color: #222;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 1280px) {
  .section.section-bgimage-yes {
    background-attachment: fixed;
  }
}
.section.section-bgimage-yes > .section-inner > .section-overlay {
  content: '';
  position: absolute;
  background-color: #000;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  zoom: 1;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.section.section-parallax-yes > .section-inner > .section-overlay {
  content: '';
  position: absolute;
  background-color: #222;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  zoom: 1;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.section.section-parallax-yes > .section-inner > .parallax .bcg {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 1280px) {
  .section.section-parallax-yes > .section-inner > .parallax .bcg {
    background-attachment: fixed;
  }
}




/*  ---------------------------------------------------------  MENÚ  ---------------------------------------------------------*/

.navbar.navbar-fixed-top {
  position: relative;
  margin: 0;
  border: 0;
  min-height: 60px;
  background-color: #f4b317;
  box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.2);
}
@media (min-width: 768px) {
  .navbar.navbar-fixed-top {
    -webkit-transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
    -moz-transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
    transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
  }
}
.navbar.navbar-fixed-top .navbar-brand {
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  height: 60px;
  line-height: 60px;
  padding-top: 0px;
  padding-bottom: 0px;
  letter-spacing: 0.1em;
}
.navbar.navbar-fixed-top .navbar-brand:hover {
  color: #222;
}
.navbar.navbar-fixed-top .navbar-toggle {
  margin-top: 12px;
  background-color: #b98000;
}
.navbar.navbar-fixed-top .navbar-nav > li > a {
  color: #222;
  font-weight: 400;
  font-size: 16px;
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top .navbar-nav > li > a {
    height: 60px;
    line-height: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.navbar.navbar-fixed-top .navbar-nav > li > a:hover {
  color: #fff;
  background-color: #b98000;
}
.navbar.navbar-fixed-top .navbar-nav > li > a > i.fa-angle-down {
  padding-left: 2px;
}
.navbar.navbar-fixed-top .navbar-nav > li.active a,
.navbar.navbar-fixed-top .navbar-nav > li.active a:hover {
  background-color: #b98000;
  color: #fff;
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top .navbar-nav > li.active a,
  .navbar.navbar-fixed-top .navbar-nav > li.active a:hover {
    color: #fff;
    font-weight: 300;
    background-color: #b98000;
    background-repeat: repeat;
  }
}


@media (min-width: 992px) {
  .navbar.navbar-fixed-top.center-menu .navbar-nav {
   /* margin: 0 auto;
    float: none;
    text-align: center;*/
  }
}
@media (min-width: 992px) {
  .navbar.navbar-fixed-top.center-menu .navbar-nav > li {
    display: inline-block;
    float: none;
    padding-right: 5px;
    padding-left: 5px;
  }
}


.icon-ulpgc {
	color:#3d3e3d;
	font-size: 65px;
}



/*  ---------------------------------------------------------  INTRO  ---------------------------------------------------------*/
#intro {
  position: relative;
  width: 100%;
  height: auto;
  color: #fff;
}
#intro:before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}
#intro .logo {
    position: absolute;
    top: 30px;
    left: 60px;
    width: 350px;
}
@media (min-width: 1280px) {
  #intro {
    height: 100%;
    padding: 0px;
  }
}

@media (max-width: 760px) {
  div.bcg.skrollable.skrollable-between{
	  background-position: 50% 0px !important;
  }
  #intro img.logo{
		 width: 250px!important;
     height: 60px;
	}
}



#intro .parallax {
  width: 100%;
  height: 100%;
}

#intro img.logo {
	position: absolute;
	top: 30px;
	left: 80px;
	width: 350px;
  height: 81px;
}

#intro .parallax > .bcg {
  display: table;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media (min-width: 1280px) {
  #intro .parallax > .bcg {
    background-attachment: fixed;
  }
}
#intro .intro-body {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media (min-width: 1280px) {
  #intro .intro-body {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}

#intro .intro-body .intro-text {
  padding: 20px 0 0 60px;

}



#intro .intro-body .intro-text p.lead {
  color: #404040;
  font-size: 90px;
  line-height: 68px;
  font-weight: 400;
  margin: 150px 0 0 0;

}

#intro .intro-body .intro-text p.lead .Clogo {
	font-weight: 300;
	color: #065a93;
}


@media (min-width: 768px) {
  #intro .intro-body .intro-text p.lead {
	margin: 270px 0 0 0;

  }

}
#intro .intro-body .intro-text h1{
	font-size: 29px;
	padding-left: 5px;
	color: #404040;
	font-weight: 300;
}




@media (min-width: 768px) {
#intro .intro-body .intro-text h1{
	   font-size: 29px;
  }
}

#intro .intro-body .page-scroll {
  margin-top: 0px;
  padding-left: 90px;
}
#intro .intro-body .page-scroll a.btn:hover {
	color: #f4b317;
}
#intro .intro-body .page-scroll a.btn {
  color: #404040;
  font-size: 62px;
  padding-bottom: 170px;
}
@media (min-width: 768px) {
  #intro .intro-body .page-scroll a.btn {
    padding: 0px 25px;
    font-size: 62px;
  }
}



/*  ---------------------------------------------------------  QUE ES MDC?  ---------------------------------------------------------*/

#que-es-mdc .que-es-mdc-text {
  text-align: center;
}
@media (min-width: 1024px) {
  #que-es-mdc .que-es-mdc-text {
    text-align: left;
  }
}
#que-es-mdc .que-es-mdc-text > h3 {
  font-size: 25px;
  text-transform: uppercase;
}
#que-es-mdc .que-es-mdc-text > p {
  font-size: 25px;
}
#que-es-mdc .que-es-mdc-text > .page-scroll {
  padding-top: 10px;
}

#que-es-mdc .que-es-mdc-foto{
	padding-bottom: 35px;
}

#que-es-mdc >.section-inner{
	background-image: url("/themes/mdc/asset/img/bg-mdc.png");
}


/*  ---------------------------------------------------------  BUSCAR HOME ---------------------------------------------------------*/

/*buscador*/
.fondo-buscador{
	background-color:#ededed;
}
.buscar-form input {
	border: 0px solid #303237;
	border-radius: 0px;
	width: 80%;
	max-width: 500px;
	margin-right: 3px;
	vertical-align: middle;
	padding: 10px 16px;
	line-height: 1.8;

}
@media (max-width: 400px){
	.buscar-form input {
		width: 70%;
	}
}
.buscar-form button:hover {
	color: #555;
}
.buscar-form button {
	background-color: #f4b317;
	color: #fff;
	border-radius: 0px;
	font-size: 20px;
	padding: 8px 18px;
	vertical-align: middle;
}



#buscador > .section-inner .parallax > .bcg {
	background-color: #453c36;
	background-image: url("/themes/mdc/asset/img/bg-fun-fact.jpg");
}
#buscador > .section-inner .section-content .section-title {
  color: #fff;
}
#buscador > .section-inner .section-content .section-title > .section-line {
  background-color: #b7ada4;
}

#buscador .buscar-form input{
	border: 1px solid #303237;
	border-radius: 0px;
	width: 70% !important;
	max-width: 500px;
	margin-right: 3px ;
	vertical-align: middle;
	padding: 10px 16px;
	line-height: 1.8;
}
#buscador .buscar-form button{
	background-color: #f4b317;
	color: #fff;
	border-radius: 0px;
	font-size: 20px;
	padding: 8px 18px;
	vertical-align: middle;
}

#buscador .buscar-form button:hover{
	color: #555;
}
#buscador .buscar-form {
	padding: 30px 0 20px 0;
}



/*  ---------------------------------------------------------  COLECCIONES  ---------------------------------------------------------*/

@media (min-width: 768px) {
	#colecciones .section-inner {
		background-image: url("/themes/mdc/asset/img/bg-colecciones.gif");
		background-position: right bottom;
		background-repeat: no-repeat;
	}
}
#colecciones .section-inner .content-boxes {
	padding: 30px 25px;
	text-align: center;
	border: 1px solid #dfdfdf;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	#colecciones .section-inner .content-boxes {
		/*height: 630px !important;*/
	}
}

#colecciones .section-inner .content-boxes .content-boxes-text h4 {
	padding-top: 40px;
	font-size: 30px;
	color: #337ab7;
}

#colecciones .section-inner .content-boxes .content-boxes-text p {
	color: #3c3c3d;
	font-size: 17px;

}

#colecciones .section-inner .content-boxes .content-boxes-text a {
	/*color: #3c3c3d;*/
	font-size: 18px;
	font-weight: bold;
	color: #337ab7;
	line-height: 2em;
	display: block;
	padding: 5px;

}

#colecciones .section-inner .content-boxes .content-boxes-text a:hover {
	background-color: #337ab7;
	border-radius: 5px;
	color: #fff;
	background: -webkit-linear-gradient(#3caee7, #08c);
    background: linear-gradient(#3caee7, #08c);
}

#colecciones .section-inner .content-boxes .content-boxes-text .glyphicon {
	vertical-align: middle;
	padding-bottom: 5px;
	font-size: 1.3em;
}

#colecciones .section-inner .content-boxes .content-boxes-ico {
	height: 195px;

}
#colecciones .section-inner .content-boxes .content-boxes-ico:before {
	content: ' ';
	display: inline-block;
	vertical-align: bottom;
	height: 100%;
}

#colecciones .section-inner .content-boxes .content-boxes-ico img{
	vertical-align: bottom;
	display: inline-block;
}


@media (min-width: 768px) {
	.content-boxes-hover-in{
		-moz-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
		background-color: #f3f4f6;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
	  	-o-transition: all 0.2s ease-in-out;
	  	transition: all 0.2s ease-in-out;

	  	-webkit-box-shadow: 0px 0px 25px -5px rgba(0,0,0,0.75);
	  	-moz-box-shadow: 0px 0px 25px -5px rgba(0,0,0,0.75);
		box-shadow: 0px 0px 25px -5px rgba(0,0,0,0.75);
	}
}

.content-boxes-hover-out{
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
  	-o-transition: all 0.2s ease-in-out;
  	transition: all 0.2s ease-in-out;
}




/*  ---------------------------------------------------------  CIFRAS  ---------------------------------------------------------*/

#cifras {
	border-top: 2px solid #f4b317;
	background-color: #f4f4f4;
}

#cifras .section-inner .section-content .cifras-circulo{
	border-radius: 50%;
	border: 8px solid #fff;
	background-color: #f5e13b;
	width: 200px;
	height: 200px;
	margin-bottom: 20px;
}

#cifras .section-inner .section-content .cifras-circulo h4{
	color: #545454;
	font-size: 40px;
	font-weight: bold;
	padding-top: 70px;
	margin-bottom: 0px;
	line-height: 0.7em;
}

#cifras .section-inner .section-content .cifras-circulo p{
	font-size: 22px;
	color: #545454;
	font-weight: 200;
}



/*  ---------------------------------------------------------  NOTICIAS  ---------------------------------------------------------*/



#noticias {
	border-top: 2px solid #f4b317;
	background-color: #fff;
}


@media (min-width: 768px) {

	#noticias .section-inner{
		background-image: url("/themes/mdc/asset/img/bg-colecciones.gif");
		background-position: right bottom;
		background-repeat: no-repeat;
		padding: 10px 10px 100px 10px;
	}
}

#noticias .section-inner .section-content .noticia{
	padding: 0 40px 80px 40px;
}

#noticias .section-inner .section-content .noticia h4{
	color: #373737;
	font-size: 35px;
	font-weight: 200;
}

#noticias .section-inner .section-content .noticia p{
	font-size: 18px;
	text-align: justify;
	color: #8e8e8e;
}


/*  ---------------------------------------------------------  CABECERA  ---------------------------------------------------------*/


#cabecera {
	height: 170px;
	background: url(/themes/mdc/asset/img/bg-cabecera.jpg) center center  no-repeat ;
	background-size: cover;
}

#cabecera img.logopeq {
	width: 180px;
}

.amarillocabecera {
    background-color: rgba(244,179,23,0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   height: auto;
}

.cuadrado {
     width: 100px;
     height: 100px;
     background: #428bca;
}


#cabecera .logo{
	padding: 10px 0 0 10px;
}

@media (min-width: 768px) {
	#cabecera .logo{
		padding: 10px 0 0 10px;
	}

}

.intro-text-mdc{
	padding: 45px 20px 0 0;
	/*background-color: rgba(244,179,23,0.2);
	background-color: rgba(255,255,255,0.5);*/
}

.intro-text-mdc h2{
	font-size: 18px !important;
}

.intro-text-mdc >.lead{
	margin: 0px;
    line-height: 40px;
    font-size: 50px;
    font-weight: 400;
    overflow: hidden;
}

.intro-text-mdc >.lead .Clogo{
	font-weight: 300;
	color:#065a93;
}

@media (min-width: 768px) {
	.intro-text-mdc{
		padding: 40px;
	}

}






/*  ---------------------------------------------------------  BUSCAR  ---------------------------------------------------------*/

#buscar >.section-inner{
	background-image: url("/themes/mdc/asset/img/bg-mdc-low-20.png");
}

#buscar h1{
	margin-bottom: 40px;
}

#buscar .titulopequeno{
	font-size: 30px;
	font-weight: 300;
}

#buscar .imgautor{
	margin: 0 auto;
	margin-bottom: 50px;
}

#advanced-search-form label {
	font-weight: normal;
	margin-bottom: 0px;
}

#advanced-search-form .b_nombre{
	background-color: #dbd7ce;
	text-align: center;
	padding: 8px;
	font-size: 18px;
	display: inline-block;
	height: 100%;
}

#advanced-search-form .b_casilla {
	padding: 0;
}

#advanced-search-form .b_casilla input{
	height: 42px ;
	border: 0;
	border-radius: 0px;
	margin-bottom: 20px;
	font-size: 20px;
}

.metadatos { font-size: 1.2em; }

.separador { border-top: 1px solid #ccc; margin: 10px 0 25px 0; padding: 0 15px; }


@media (min-width: 768px) {
	#advanced-search-form .b_nombre{
		text-align: right;
	}

	#advanced-search-form .centro{
		text-align: center;
	}

	#advanced-search-form .b_casilla input{
		margin-bottom: 10px;
	}

	#advanced-search-form .b_casilla {
		padding: 0 15px;
	}

}


#advanced-search-form button{
	border: 0;
	border-radius: 0px;
	font-size: 20px;
	color: #fff;
	margin-top: 30px;
	margin-right: 0;
	background-color: #f4b317;
}

#advanced-search-form .row{
	margin-bottom: 10px;
}

#buscarayuda{
	background-color: #fff;
	padding: 35px 0;
}

#buscarayuda h2{
	font-size: 20px;
	font-weight: bold;
}

#buscarayuda .section-title {
	border-bottom: 2px solid #f4b317;
	margin-bottom: 20px;
}


.gris{
	color: #a1a1a1;
}

.gris2{
	color: #434343;
}



#advanced-search-form .fichaautor ul{
	list-style: none;
}

.itemsresultado { margin-top: 10px; }




@media (min-width: 768px) {
	#advanced-search-form .a_casilla::before{
		height: 1px;
	    display: block;
	    width: 100%;
	    background: #cecece;
	    content: '';
	    margin-top: -5px;
	}

	#advanced-search-form .a_casillafin::after{
		height: 1px;
	    display: block;
	    width: 100%;
	    background: #cecece;
	    content: '';
	    margin-top: -5px;
	}
}

#advanced-search-form .a_casilla p {
	font-size: 18px;
	color: #000;
	min-height: 41px;
	padding: 10px 15px 0 15px;
}

.enlace_amarillo{
	background-color: #f4b317 !important;
	color: #fff !important;
	font-weight: bold;
	display:block;
}


.itemsresultado .media-body>a{
	color: #000;
}

.itemsresultado .row{
	padding: 15px 0;
	border-bottom: 1px solid #f4b317;
}


.rsubmenu2contenido, .procedencia h3{
	background-color: #dbd7ce;
}

.itemsresultado .row{
	background-color: #f0f0f0;
}


.itemsresultado img{
	height: 65px !important;
	width: 65px !important;
	border: 2px solid #f4b317;
}

.itemsresultado p{
	color: #505050;
	margin: 0;
}

.media-body{
	width: auto !important;
}


.itemsresultado .media-left, .itemsresultado .media>.pull-left{
	padding-right: 20px;
}

.itemsresultado .media-body h2{
	font-size: 18px;
	line-height: 20px;
}

.itemsresultado .paginacion{
	background-color: transparent;
	border-bottom: none;
}
.paginacion .pagination>li>a{
	color: #000;
	margin: 0 5px;
	height: 34px;
	width: 34px;
	background-color: #eaeaea ;
	border: none;
	color: #747474;
}

.paginacion .pagination>li>a:hover,
.paginacion .pagination>.active>a{
	background-color: #f4b317 ;
	border: none;
	height: 34px;
	width: 34px;
	color: #000;
}


.procedencia h3{
	padding: 7px 0;
	font-size: 16px;
	font-weight: bold;
	color: #5f5f5f;
	margin-bottom: 10px !important;
}

.lprocedencia a{
	text-align: right;
	color: #494949;
}

.fondoprocedencia{
	background-color: #f2f4f4;
}

.lprocedencia a:hover{
	color: #7f7f7f;

}

.lprocedencia ul{
	list-style: none;
}

.lprocedencia ul li{
	border-bottom: 1px solid #b3b3b3;

	padding-top: 8px;
}

.lprocedencia p{
	text-align: left;
	line-height: 16px;
	margin-bottom: 13px;
}

.rsubmenu1{
	font-size: 16px;
	color: #5a5a5a;
	margin-bottom: 20px;
}

.rsubmenu2 b,
.rsubmenu1 b{
	color: #000;
}

.rsubmenu2 b{
	padding-right: 10px;
}

.rsubmenu2 {
	margin-bottom: 15px;
	color: #000;
	padding: 0;
}


.rsubmenu2contenido{
	display: table-cell;
	padding: 10px 15px;
}


.rsubmenu2contenido .espaciado{
	padding: 0 10px;
}



/*  ---------------------------------------------------------  PIE  ---------------------------------------------------------*/
footer.footer {
  color: #888;
  background-color: #212121;
  border-top: 2px solid #f4b317;
}
footer.footer a {
  color: #c9c9c9;
  display: list-item;
  list-style: none;
}
footer.footer a:hover {
  color: #ffffff;
}
footer.footer #footer {
  background-color: #212121;
  padding-top: 50px;
  padding-bottom: 20px;
}
footer.footer #footer .footer-column.not-right-column {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  footer.footer #footer .footer-column.not-right-column {
    margin-bottom: 0px;
  }
}
footer.footer #footer .footer-column .footer-text {
  text-align: center;
}
@media (min-width: 768px) {
  footer.footer #footer .footer-column .footer-text {
    text-align: left;
  }
}
footer.footer #footer h4 {
  color: #c9c9c9;
  margin-bottom: 25px;
  font-size: 1.5em;
}
footer.footer #footer p {
  font-size: 15px;
  margin-bottom: 20px;
}
footer.footer #footer ul.icon-list > li {
  padding-bottom: 10px;
}
footer.footer #footer ul.icon-list > li > i {
  padding-right: 10px;
}
footer.footer #footer ul.social-icon-list > li {
  padding-bottom: 10px;
}
footer.footer #footer ul.social-icon-list > li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 30px;
  text-align: center;
}
.addthis_toolbox{
	margin-top: 10px;
}


/*  ---------------------------------------------------------  SLIDER  ---------------------------------------------------------*/

.carousel-inner{
	
	position: relative;
}

.fade-carousel  .carousel-control .icon-next, .fade-carousel  .carousel-control .icon-prev{
	font-size: 40px;
	
}

.carousel-control{
	z-index: 99;
}

.btn.btn-carousel,
.btn.btn-carousel:hover,
.btn.btn-carousel:focus {
    color: black;
    background-color: #f4b317;
    border-color: #f4b317;
    outline: none;
    padding: 2px 50px;
}

.fade-carousel {
    position: relative;
    height: 64vh;
}
.fade-carousel .carousel-inner .item {
    height: 64vh;
}
.fade-carousel .carousel-indicators > li {
    margin: 0 2px;
    background-color: #f39c12;
    border-color: #f39c12;
    opacity: .3;
}
.fade-carousel .carousel-indicators > li.active {
  width: 10px;
  height: 10px;
  opacity: 1;
}

.text-carousel {
    position: absolute;
   /* top: 78%;
    left: 45%;*/
    top: 50%;
    left: 55%;
    z-index: 3 !important;
    color: #fff;
    text-align: right;
      -webkit-transform: translate3d(-50%,-50%,0);
         -moz-transform: translate3d(-50%,-50%,0);
          -ms-transform: translate3d(-50%,-50%,0);
           -o-transform: translate3d(-50%,-50%,0);
              transform: translate3d(-50%,-50%,0);
}

.text-carousel h1 {
    font-size: 5em;    
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.text-carousel h2 {
    font-size: 2.6em;    
    font-weight: bold;
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
}

.text-carousel h3 {
    font-size: 1.4em;    
}

.fade-carousel .carousel-inner .item .text-carousel {
    opacity: 0;
    -webkit-transition: 0.6s all ease-in-out 0.6s;
       -moz-transition: 0.6s all ease-in-out 0.6s; 
        -ms-transition: 0.6s all ease-in-out 0.6s; 
         -o-transition: 0.6s all ease-in-out 0.6s; 
            transition: 0.6s all ease-in-out 0.6s; 
}
.fade-carousel .carousel-inner .item.active .text-carousel {
    opacity: 1;
    -webkit-transition: 0.6s all ease-in-out 0.6s;
       -moz-transition: 0.6s all ease-in-out 0.6s; 
        -ms-transition: 0.6s all ease-in-out 0.6s; 
         -o-transition: 0.6s all ease-in-out 0.6s;
            transition: 0.6s all ease-in-out 0.6s;    
}


.fade-carousel .item{z-index: 1; cursor: pointer;}

.fade-carousel .item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom:0;
   /* background-color: #080d15;*/
    background: linear-gradient(
      to left,
      black 20%, transparent 100%);
	opacity: .6;
	z-index:1;

}


.fade-carousel .slides .slide-img {
  height: 90vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.fade-carousel .slides .slide-1 {
  background-image: url('https://ununsplash.imgix.net/photo-1416339134316-0e91dc9ded92?q=75&fm=jpg&s=883a422e10fc4149893984019f63c818'); 
}

.fade-carousel .slides .slide-2 {
  background-image: url('https://ununsplash.imgix.net/photo-1416339684178-3a239570f315?q=75&fm=jpg&s=c39d9a3bf66d6566b9608a9f1f3765af');
}

@media screen and (min-width: 980px){
	
	.fade-carousel .slides .slide-img { height: 70vh !important;}
    .text-carousel { width: 970px; }    
}

@media screen and (max-width: 1260px){
	.text-carousel {
	    position: absolute;
	    top: 78%;
	    left: 50%;
	 } 

}

@media screen and (max-width: 1024px){
	
	.fade-carousel .carousel-inner .item .text-carousel { width: 90% !important;}   
	
	.text-carousel {
	    position: absolute;
	    top: 50%;
	    left: 50%;
	 } 
}


@media screen and (max-width: 640px){
	.text-carousel { width: 90% !important; }
    .text-carousel h1 { font-size: 4em; }  
    .text-carousel h2 { font-size: 2.3em; }  
    .text-carousel h3 { font-size: 1.3em; } 
    
    .fade-carousel .carousel-control{display: none !important;}
    
    
    .text-carousel {
	    position: absolute;
	   /* top: 78%;
	    left: 45%;*/
	     top: 50%;
	    left: 50%;
    }
    
    .fade-carousel .item::before {
	    content: "";
	    position: absolute;
	    width: 100%;
	    height: 64vh;
	    bottom:0;
	    background-color: #080d15;
	    opacity: .6;

	}
    
    
}

@media screen and (min-width: 768px){
	.fade-carousel .carousel-indicators {
		bottom: 12px !important;
	}	
}


/* AMV */

.negrita { font-weight: bold!important; }
.justificado { text-align: justify; }
#primary { display: none; }
#bottom-nav { display: none; }
.section > .section-inner .section-content { padding-top: 25px; padding-bottom: 50px; }
.pagination { padding-bottom: 50px; }
.pagination > li { display: inline-flex; }
.pagination input { width: 50px; text-align: center; }
#item-filters ul { padding: 0 15px; list-style: none; }
#sort-links-list { display: inline-flex; list-style: none; padding: 0; margin: 0; }
#sort-links-list li { margin: 0 20px; }
.rsubmenu2 { margin-left: 15px; }
.text-right { padding: 0 30px; }
.form-control { height: 42px; margin-bottom: 10px; }
.search-entry { font-size: 18px; }
.search-entry select { display: inline-block; width: 22%; margin: 0 1% 0 0; border-radius: 0; }
.search-entry input { display: inline-block; width: 71%; }
.remove_search { width: 5%; }
#advanced-search-form button { margin-top: 0; margin-bottom: 2%; font-size: 1em; }
#advanced-search-form .b_casilla input { font-size: 14px; }
.agregar_filtro { margin-bottom: 2%; }
#advanced-form-centro { padding-left: 0; }
#advanced-form-centro button { margin: 30px 0 80px 0; font-size: 1.5em; width: 100%; }
.busquedaavanzada { text-align: center; }
ul.item-pagination { list-style: none; padding: 0 0 25px 0; }
ul.item-pagination li.previous { float: left; text-align: left; }
ul.item-pagination li.next { float: right; text-align: right; }
#solr-facets h4 { margin: 0; }
.campo { width: 30% !important; }
.coleccion { width: 98% !important; clear: both; margin-bottom: 2% !important; font-size: 18px !important; border: none; }
.termino { width: 98% !important; padding: 0 1%; clear: both; margin-right: 1% !important; font-size: 18px !important; }
.fecha { width: 12.5% !important; padding: 0 1%; clear: both; margin-right: 1% !important; font-size: 18px !important; }
.ancho100 { width: 100%!important; }
.mt-5 { margin-top: 5px!important; }
.mt-15 { margin-top: 15px!important; }
.mt-25 { margin-top: 25px!important; }
.mt-30 { margin-top: 30px!important; }
.mt-50 { margin-top: 50px!important; }
.mb-5 { margin-bottom: 5px!important; }
.mb-10 { margin-bottom: 10px!important; }
.mb-15 { margin-bottom: 15px!important; }
.mb-25 { margin-bottom: 25px!important; }
.mb-50 { margin-bottom: 50px!important; }
.ml-0 { margin-left: 0px!important; }
.ml-5 { margin-left: 5px!important; }
.ml-15 { margin-left: 15px!important; }
.ml-25 { margin-left: 25px!important; }
.ml-50 { margin-left: 50px!important; }
.mr-0 { margin-right: 0px!important; }
.mr-5 { margin-right: 5px!important; }
.mr-15 { margin-right: 15px!important; }
.mr-25 { margin-right: 25px!important; }
.mr-50 { margin-right: 50px!important; }
.pt-0 { padding-top: 0px!important; }
.pt-5 { padding-top: 5px!important; }
.pt-15 { padding-top: 15px!important; }
.pt-25 { padding-top: 25px!important; }
.pt-50 { padding-top: 50px!important; }
.pb-0 { padding-bottom: 0px!important; }
.pb-5 { padding-bottom: 5px!important; }
.pb-15 { padding-bottom: 15px!important; }
.pb-25 { padding-bottom: 25px!important; }
.pb-50 { padding-bottom: 50px!important; }
.pl-0 { padding-left: 0px!important; }
.pl-5 { padding-left: 5px!important; }
.pl-15 { padding-left: 15px!important; }
.pl-25 { padding-left: 25px!important; }
.pl-50 { padding-left: 50px!important; }
.pr-0 { padding-right: 0px!important; }
.pr-5 { padding-right: 5px!important; }
.pr-15 { padding-right: 15px!important; }
.pr-25 { padding-right: 25px!important; }
.pr-50 { padding-right: 50px!important; }
.centrado { text-align: center!important; }
.texto-blanco { color: white!important; }
.texto-oscuro { color: #555!important; }
.fuente-clara { font-weight: 200!important; }
.bg-white { background-color: white; padding: 0 25px; }
.search-results h3 { background: #ddd; padding: 7px; font-size: 16px; }
.search-results h4 { margin: 0 0 5px; }
.items.resource { border-bottom: 1px solid orange; padding: 15px 0; width: 105%; margin-left: -40px; }
.items.resource a { color: #000; font-weight: bold; }
.items.resource p { color: #505050; }
aside h4.seccion { padding: 7px 0; text-align: center; font-size: 16px; font-weight: bold; color: #5f5f5f; margin-bottom: 10px !important; background-color: #dbd7ce; }
aside ul { list-style: none; padding: 0; }
aside h4.faceta { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
li.search-facet-item { margin: 0 0 5px 0; }
aside a { color: #505050; }
aside .search-facet { margin-bottom: 15px; padding: 15px; border: 1px solid #dbd7ce; }
#que-es-mdc { padding: 5% 0; background-color: white; }
#que-es-mdc h1 { padding: 0 0 15px 0; font-weight: bold; }
#que-es-mdc .section-inner { background: white!important; }
#que-es-mdc .container { padding: 2% 0; }
#que-es-mdc .intro-text { line-height: 23px; color: #222222; }
.fondogris { background-color: #F2F2F2; }
p.direccion { line-height: 1.2; }
#search-page h2 { display: none; }
#advanced-search-form-wrapper { display: none; }
#search-page .search-results-header { display: none; }
#buscando h4 { margin-bottom: 15px; }
.thumbnail_revista { width: 250px; box-shadow: 5px 5px 9px #777; margin: auto; }
ul.sumario { padding-left: 15px; }
.cuadrado-archivo {
	margin: 30px 0 0 0;
    border: 1px solid black;
    padding: 8px 15px;
    display: none;
}
.cuadrado-archivo p {
	font-weight: bold;
	line-height: 1.2em;
	margin: 0;
}
#cabecera { height: 140px; }
#cabecera .logo { width: 100%; }

.revista-columnas { column-count:3; padding-left: 17%; text-align: left!important; } 

.cabecera-metadatos {
    background-color: #dcd7d1;
    border-bottom: none;	
	padding: 25px;
}
.cabecera-metadatos p {
	font-weight: 500;
	font-size: 1.2em;
	margin: 0;
}

#ficha-item h2 { font-weight: bold!important; }

.uv .centerPanel .content .attribution { display: none !important; }
.uv .overlay.settings .scroll .setting.locale { display: none !important; }
.uv .headerPanel { display: none !important; }
.uv .iiif-metadata-component .groups .group:not(:first-of-type) { display: none !important; }
.uv .iiif-metadata-component .items .item .label { font-size: 12px; }
.uv .iiif-metadata-component .items .item .values .value { margin-left: 8px!important; }
.uv .iiif-metadata-component .items ._identificador { display: none !important; }
.uv .iiif-metadata-component .items ._attribution { display: none !important; }


@media (max-width: 1199px) {
	#cabecera { height: 167px; }
	#cabecera .logo { padding-top: 17px!important; }
	.intro-text-mdc >.lead { font-size: 50px; }
	.intro-text-mdc h2 { font-size: 16px!important; }
}

@media (max-width: 992px) {
  .items.resource { border: none; }
  #cabecera { height: 245px; }
  .revista-columnas { column-count:3; padding-left: 13%; }
  .cuadrado-archivo {
	margin: 0;
  }
}

@media (max-width: 768px) {
  #intro .logo { width: 250px; }
  #cabecera .logo { width: unset; padding-top: 8px!important; }
  .intro-text-mdc { padding: 35px 20px 0 0px; }
  .termino { width: 100%!important; }
  .coleccion { width: 100%!important; }
  .buscador-avanzado { margin-top: 25px; }
  #que-es-mdc .container { padding: 2% 4%; }
  .revista-columnas { column-count:2; padding-left: 24%; } 
}


/*LOGO 20 ANIV.*/

.logo-aniv{
	position: absolute;
	top: 240px;
	left: 280px;
	font-family: 'Work Sans', sans-serif;
	display: none;
}

.logo-aniv-2{
	font-weight: bold;
	font-size: 58px;
	position: relative;
	color: #f29909;
	right: -4px;
}

.logo-aniv-o{
	font-weight: bold;
	font-size: 50px;
	position: relative;
	color: #444;
}

.logo-aniv-aniversario{
	font-weight: bold;
	font-size: 18px;
	position: relative;
	color: #444;
	top: -18px;
}

.logo-aniv-ano1{
	color: #f29909;
	font-weight: bold;
	position: relative;
	top: -34px;
	right: -70px;
	font-size: 18px;
}

.logo-aniv-ano2{
	color: white;
	background-color: #f29909;
	font-weight: bold;
	position: relative;
	top: -34px;
	right: -70px;
	font-size: 18px;
	padding: 0px 5px;
}

@media (max-width: 767px) {

	#cabecera { height: 205px!important; }

	.logo2 { float: none!important; text-align: center; }

	.logo-aniv-2{
		font-size: 44px;
		right: -5px;
	}

	.logo-aniv-o{
		font-size: 36px;
	}

	.logo-aniv-aniversario{
		font-size: 12px;
	}

	.logo-aniv-ano1, .logo-aniv-ano2{
		font-size: 12px;
		left: 60px;
	}

	.logo-aniv{
		top: 204px !important;
		left: 200px !important;
	}

	#intro .intro-text{
		padding-top:100px !important;
		padding-left:40px !important;
	}

	#intro .intro-text p.lead{
		font-size: 70px !important;
		line-height:50px !important;
	}

	#intro h1{
		font-size: 21px !important;
	}

	.logo-aniv{
		top: 217px;
		left: 210px;
	}
	
}

@media (max-width: 346px) {

	#intro .intro-body .intro-text p.lead{
		font-size: 70px !important;
	}

	#intro .intro-body .intro-text h1 {
    	font-size: 25px !important;
    }

    .logo-aniv{
		top: 214px !important;
		left: 170px !important;
	}

}

.logo2 { margin-top: 7px; }

.logo-20-aniv{
	width: 100px;
	position: absolute;
	right: 140px;
	top: 23px;
}
@media (max-width: 1199px){
	.logo-20-aniv{
		right: 70px;
	}
}
@media (max-width: 991px){
	.logo-20-aniv{
		left: 152px;
	}
}
@media (max-width: 835px){
	.logo-20-aniv{
/*		display: none; */
	}
}
@media (max-width: 767px){
	.logo-20-aniv{
		display: block;
		left: 115px;
		top: 23px;
	}
}

.video-responsive {
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
	width: 100%;
}

@media (max-width: 991px){
  .video-responsive {
    height: 400px;
  }
}
@media (max-width: 767px){
  .video-responsive {
    height: 360px;
  }
  .footer-column { text-align: center; }
}
@media (max-width: 600px){
  .video-responsive {
    height: 300px;
  }
}

@media (max-width: 480px){
  .video-responsive {
    height: 240px;
  }
}

#headingOne {
    background-color: #dcd7d1;
    border-bottom: none;
}

.resource-metadata { padding-top: 1%; }
.search-results img { height: 150px; }
.search-results img { width: 100%; }
.search-results img { margin: 0; }
.search-results img { object-fit: contain }
@media (max-width: 768px) {
	.search-results img { height: 300px; }
}

ul.enlaces_relacionados { padding: 0; list-style: none; }
ul.enlaces_relacionados li { padding: 0 0 10px 0; }
ul.enlaces_relacionados li a { font-size: 16px; }


/* Smartphones */

@media (max-width: 492px) {

	#cabecera { height: 90px!important; }
	#cabecera.cabecera_revistas { height: 180px!important; }
	#cabecera img.logopeq { width: 125px; padding: 0; }
	.intro-text-mdc { padding: 17px 0px 0 0px;  }
	.intro-text-mdc >.lead { font-size: 40px; }
	.intro-text-mdc h2 { font-size: 13px!important; }
	.logo-20-aniv { width: 80px; left: 90px; top: 5px; }
	.revista-columnas { column-count:2; padding: 0; text-align: center!important; }
	a { word-wrap: break-word; }

}
  
