/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
 /* Fuentes*/
 @font-face {
    font-family: 'averageregular';
    src: url('../fonts/average-regular-webfont.eot');
    src: url('../fonts/average-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/average-regular-webfont.woff') format('woff'),
         url('../fonts/average-regular-webfont.ttf') format('truetype'),
         url('../fonts/average-regular-webfont.svg#averageregular') format('svg');


}

@font-face {
    font-family: 'fauna_oneregular';
    src: url('../fonts/faunaone-regular-webfont.eot');
    src: url('../fonts/faunaone-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/faunaone-regular-webfont.woff') format('woff'),
         url('../fonts/faunaone-regular-webfont.ttf') format('truetype'),
         url('../fonts/faunaone-regular-webfont.svg#fauna_oneregular') format('svg');
    
}

@font-face {
    font-family: 'oswaldbold';
    src: url('../fonts/oswald-bold-webfont.eot');
    src: url('../fonts/oswald-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/oswald-bold-webfont.woff') format('woff'),
         url('../fonts/oswald-bold-webfont.ttf') format('truetype'),
         url('../fonts/oswald-bold-webfont.svg#oswaldbold') format('svg');


}




@font-face {
    font-family: 'oswaldlight';
    src: url('../fonts/oswald-light-webfont.eot');
    src: url('../fonts/oswald-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/oswald-light-webfont.woff') format('woff'),
         url('../fonts/oswald-light-webfont.ttf') format('truetype'),
         url('../fonts/oswald-light-webfont.svg#oswaldlight') format('svg');


}




@font-face {
    font-family: 'oswaldbook';
    src: url('../fonts/oswald-regular-webfont.eot');
    src: url('../fonts/oswald-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/oswald-regular-webfont.woff') format('woff'),
         url('../fonts/oswald-regular-webfont.ttf') format('truetype'),
         url('../fonts/oswald-regular-webfont.svg#oswaldbook') format('svg');
   

}
 
 /* Fuentes*/
 a, a:hover, img, img:hover{
	 outline:none;
 }
 
body {
	text-align:left;
	background:#f1f1f1;
	font-family: 'averageregular';
	font-size:15px;
}

#page-wrapper,
.region-bottom {
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 954px;
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

.region-header {
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

.not-front #main-wrapper{
	margin-top:11px;
}

#main {
}

/*
 * Content
 */
#content,
.no-sidebars #content {
  float: left; /* LTR */
  width: 960px;
  margin-left: 0; /* LTR */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

.front #content,
.front .no-sidebars #content {
  float: left; /* LTR */
  
  margin-left: 20px; /* LTR */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

.not-front #content,.not-front  .no-sidebars #content {
    float: left;
    margin-left: 0;
    margin-right: -960px;
    padding: 0 0 0 20px;
    width: 915px;
}

.sidebar-first #content {
  width: 760px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.sidebar-second #content {
    margin-left: 0;
    margin-right: -616px;
    width: 616px;
	padding-left:20px;
}

.two-sidebars #content {
  width: 560px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first */
  margin-right: -760px; /* LTR */ /* Negative value of #content's width + left margin. */
}

#content .section {
  margin: 0;
  padding: 0;
}

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: -20px; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 3em; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 200px;
  margin-left: 0; /* LTR */
  margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
	background: none repeat scroll 0 0 #FFFFFF;
    float: left;
    margin-left: 636px;
    margin-right: -916px;
    padding: 0px;
    width: 280px;
	

}

.region-sidebar-second .section {
  margin: 0 0 0 0px; /* LTR */

}

/*
 * Footer
 */
.region-footer {
	background:url(../images/img-mapa.jpg) no-repeat;
	height:350px;
	width:914px;
}

/*
 * Page bottom
 */
.region-bottom /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
.region-footer,
.region-bottom {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/

/*Elimina first-item*/
.front #first-time{
	display:none;
}

/*Destacados*/

.view-destacados .views-field-title{
    font-family: 'fauna_oneregular';
    font-size: 35px;
    line-height: 40px;
    padding: 40px 0 0 20px;
    position: relative;
    text-align: left;
    width: 300px;
    z-index: 100;
}
.view-destacados .views-field-title a{
	color:#000;
	text-decoration:none;
}

.view-destacados .views-field-title a:hover{
	text-decoration:underline;
}

.view-destacados .views-field-field-subt-tulo{
	font-family: 'averageregular';
    font-size: 17px;
    padding-left: 20px;
    position: relative;
    text-align: left;
    width: 270px;
    z-index: 100;
	
}

.view-destacados .views-field-field-subt-tulo p{
	background:url(../images/linea-subtitulo.jpg) no-repeat top left;
	padding-top:15px;
}

.view-destacados .views-field-nothing{
	background:url(../images/bg-destacado.png) no-repeat top left;
	height:400px;
	width:391px;
	position:absolute;
	top:0;
	z-index:1;
}

.view-destacados .views-field-field-imagen-de-pagina{
	float: left;
    position: absolute;
    top:0;
}

.front .jcarousel-skin-default .jcarousel-container-horizontal {
  width: 914px;
  height: 400px;
  padding: 0;
  margin: auto;
}

.front .jcarousel-skin-default .jcarousel-clip-horizontal {
  width: 914px;
  overflow: hidden;
}

.front .jcarousel-skin-default .jcarousel-item {
  height: 400px; 
  width: 914px !important;
}

.front .jcarousel-skin-default .jcarousel-prev-horizontal {
  position: absolute;
  top: 353px;
  left: 10px;
  background-position: 0 0;
  z-index:1;
}

.front .jcarousel-skin-default .jcarousel-next-horizontal {
    background-position: 0 -32px;
    position: absolute;
    right: 830px;
    top: 353px;
    z-index: 1;
}
/* Horizontal Buttons
 */
.jcarousel-skin-default .jcarousel-prev-horizontal {
  position: absolute;
  top: 55px;
  left: 10px;
  background-position: 0 0;
}
.jcarousel-skin-default .jcarousel-prev-horizontal:hover {
  background-position: -32px 0;
}
.jcarousel-skin-default .jcarousel-prev-horizontal:active {
  background-position: -64px 0;
}

.jcarousel-skin-default .jcarousel-next-horizontal {
  position: absolute;
  top: 55px;
  right: 10px;
  background-position: 0 -32px;
}
.jcarousel-skin-default .jcarousel-next-horizontal:hover {
  background-position: -32px -32px;
}
.jcarousel-skin-default .jcarousel-next-horizontal:active {
  background-position: -64px -32px;
}

/*Menu home*/

.front #block-menu-menu-menu-home{
	width:954px;
	background:#ddd;
	height:20px;
	background:url(../images/linea-menu.png) no-repeat center center;
	margin-top:30px;
}

.front ul.menu{
	width:954px;
	list-style:none;
	text-align:center;
	
}
.front #navigation ul.menu li.leaf{
	list-style:none;
	font-family: 'oswaldbook';
	text-transform:uppercase;
	font-size:18px;
	padding:0;
	
}

.front #navigation ul.menu li.leaf a{
	text-decoration:none;
	padding:20px;
	-webkit-border-radius: 5px;
  	border-radius: 5px; 
	color:#393939;
	background:#f1f1f1;
}

.front #navigation ul.menu li.leaf a:hover{
	background:#7fdbd6;
	color:#fff;
}
.front ul.menu li.first{
	margin-left:241px;
}

/*Logo Home*/
.front #header {
    margin-top: -21px;
}
#block-block-1{
	margin:0;}

.front #block-block-1 .content a{
	 background: url("../images/logo-home.png") no-repeat scroll 136px 23px;
    color: #FFFFFF;
    float: right;
    font-family: 'oswaldbook';
    font-size: 18.5px;
    margin-bottom: -188px;
    margin-right: 20px;
    padding: 40px 120px 40px 20px;
    position: relative;
    text-decoration: none;
    z-index: 100;
}
.front #block-block-1 .content a:hover{
	background: url("../images/logo-home.png") no-repeat scroll 136px 23px #393939;
}
.front #block-block-1 span{
	font-size:15px;
	zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.5;
}


/*Menu*/
#block-system-main-menu .block-title{
	display:none;
}

#block-system-main-menu{
	width:954px;
	background:#ddd;
	height:20px;
	background:url(../images/linea-menu.png) no-repeat center center;
	margin-top:50px;
}


#block-system-main-menu ul.menu li.leaf{
	list-style:none;
	font-family: 'oswaldbook';
	text-transform:uppercase;
	font-size:18px;
	padding:0;
	float:left;
	
}

#block-system-main-menu ul.menu li.leaf a{
	text-decoration:none;
	padding:20px;
	-webkit-border-radius: 5px;
  	border-radius: 5px; 
	color:#393939;
	background:#f1f1f1;
}

#block-system-main-menu ul.menu li.leaf a:hover, #block-system-main-menu ul.menu li.leaf a.active{
	background:#7fdbd6;
	color:#fff;
}
#block-system-main-menu ul.menu li.first{
	margin-left:210px;
}

/*Logo Interior*/
.front #header {
    margin-top: -21px;
}
#block-block-2{
	margin:0;
	position:relative;
	top:-90px;}

#block-block-2 .content a{
	background: url("../images/logo.png") no-repeat scroll 136px 23px #393939;
    color: #FFFFFF;
    float: right;
    font-family: 'oswaldbook';
    font-size: 18.5px;
    margin-bottom: -188px;
    margin-right: 20px;
    padding: 40px 104px 40px 20px;
    position: relative;
    text-decoration: none;
    z-index: 100;
	}

 #block-block-2 span{
	font-size:15px;
	zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/**/

h1{
	font-family: 'fauna_oneregular';
	font-size:35px;
	font-weight:normal;
	border-bottom: 2px solid #393939;
    padding-bottom: 20px;
}
h1.title{
	border-bottom: 2px solid #393939;
    padding-bottom: 20px;
}
#content #page-title{
	display:none;
}


/*Contenido exposicion*/
#block-views-titulo-block {
    margin-top: 58px;
}

.field-name-field-subt-tulo{
	width:550px;
	font-family: 'fauna_oneregular';
	font-size:20px;
	line-height: 28px;
	padding-left:20px;
}

.field-name-body{
	width:550px;
	font-family: 'averageregular';
	font-size:15px;
	padding-left:20px;
}

#block-views-info-block, #block-views-info-publicacion-block{
	background: none repeat scroll 0 0 #FFFFFF;
    border: medium none;
    -webkit-border-radius: 3px;
	border-radius: 3px; 
    float: right;
    padding: 20px;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2); 
	margin-bottom:0;
}

#block-views-info-block span, #block-views-info-publicacion-block span{
	font-family: 'averageregular';
	font-size:15px;
	color:#b5b5b5;
}
#block-views-info-block p, #block-views-info-publicacion-block p{
	font-family: 'averageregular';
	font-size:15px;
	color:#666666;
	margin: 10px 0 20px;
}

.views-field-field-n-mero-de-la-revista .field-content,#block-views-info-publicacion-block .views-field-field-ejemplares .field-content p{
	font-family: 'oswaldbook';
	font-size:60px;
	color:#666666;
	margin: 32px 0 42px;
}

/*Footer*/
.front .region-footer {
	margin:20px 0 -20px 20px;
	width:914px;
	
}
.region-footer {
	margin:0px 0 -20px 20px;
	width:914px;
	
}
#block-block-3{
	filter: alpha(opacity=20);
	opacity: 0.2;
}


/*Distributiva Exposiciones / Publicaciones*/
.view-exposiciones .views-row, .view-publicaciones .views-row{
	background: none repeat scroll 0 0 #FFFFFF;
    float: left;
    margin:0 40px 30px 0;
    width: 278px;
	height:281px;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px; 
}
.view-exposiciones .views-row-3, .view-exposiciones .views-row-6, .view-publicaciones .views-row-3, .view-publicaciones .views-row-6{
	margin-right:0;
}
.view-exposiciones .views-field-title,.view-publicaciones .views-field-title{
	padding: 12px 0 0 20px;
}

.view-exposiciones .views-field-title a, .view-publicaciones .views-field-title a{
	font-family: 'oswaldbook';
	font-size:15px;
	text-transform:uppercase;
	color:#393939;
}

.view-exposiciones a, .view-publicaciones a{
	color:#393939;
}
.view-exposiciones a:hover, .view-publicaciones a:hover{
	color:#339999;
}

.view-exposiciones img, .view-publicaciones img{
	margin-right:40px;
}

.view-exposiciones p, .view-publicaciones p{
	background: none repeat scroll 0 0 #FFFFFF;
    margin-top: 5px;
    padding: 0 20px;
    width: 238px;
}


.view-exposiciones .item-list .pager, .view-publicaciones .item-list .pager{
	color: #666666;
    font-family: 'fauna_oneregular';
    font-size: 17px;
    margin: 53px;
    position: relative;
    top: 12px;
}
.view-exposiciones .item-list .pager a, .view-publicaciones .item-list .pager a{
	color:#666666;
}

.view-exposiciones .item-list .pager:before, .view-publicaciones .item-list .pager:before{
	content:"páginas:";
	padding-right: 10px;
}
	
.view-exposiciones .item-list .pager li.pager-current, .view-publicaciones .item-list .pager li.pager-current{
	color:#fff;
	padding:10px 15px;
	background:#7fdbd6;
	-webkit-border-radius: 2px;
	border-radius: 2px; 
	
}
.view-exposiciones .item-list .pager li.pager-next a, .view-exposiciones .item-list .pager li.pager-last a,
.view-publicaciones .item-list .pager li.pager-next a, .view-publicaciones .item-list .pager li.pager-last a{
	font-size:22px;
	font-weight:lighter;
	color:#adadad;
}

/*Bloques Home*/
#block-views-bloque-exposicion-block, #block-views-bloque-pagina-block, #block-views-bloque-articulo-block,#block-views-bloque-publicacion-block,
.view-bloques-home td{
	width:278px;
	float:left;
	margin-right:40px;
	margin-top:56px;
}

#block-views-bloque-exposicion-block .views-field-title, #block-views-bloque-pagina-block .views-field-title,
#block-views-bloque-articulo-block .views-field-title,#block-views-bloque-publicacion-block .views-field-title,
.view-bloques-home .views-field-title {
	padding:30px 0 0 20px;
}

#block-views-bloque-exposicion-block .views-field-title a, #block-views-bloque-pagina-block .views-field-title a,
#block-views-bloque-articulo-block .views-field-title a,#block-views-bloque-publicacion-block .views-field-title a,
.view-bloques-home .views-field-title a{
	font-family: 'averageregular';
	font-size:17px;
	font-weight:bold;
	color:#000;
	
}
#block-views-bloque-exposicion-block .views-field-title a:hover, #block-views-bloque-pagina-block .views-field-title a:hover,
#block-views-bloque-articulo-block .views-field-title a:hover,#block-views-bloque-publicacion-block .views-field-title a:hover,
#block-views-bloque-exposicion-block .views-field-body a:hover, #block-views-bloque-pagina-block .views-field-body a:hover, 
#block-views-bloque-articulo-block .views-field-body a:hover,#block-views-bloque-publicacion-block .views-field-body a:hover,
.view-bloques-home .views-field-title a:hover, .view-bloques-home .views-field-body a:hover{
	color:#339999;
}

#block-views-bloque-exposicion-block .views-field-body, #block-views-bloque-pagina-block .views-field-body, 
#block-views-bloque-articulo-block .views-field-body,#block-views-bloque-publicacion-block .views-field-body,
.view-bloques-home .views-field-body{
	padding:0 20px;
}

#block-views-bloque-exposicion-block .views-field-body a, #block-views-bloque-pagina-block .views-field-body a, 
#block-views-bloque-articulo-block .views-field-body a,#block-views-bloque-publicacion-block .views-field-body a,
.view-bloques-home .views-field-body a{
	font-family: 'averageregular';
	font-size:15px;
	color:#333;
}

#block-views-bloque-exposicion-block .views-field-body p, #block-views-bloque-pagina-block .views-field-body p, 
#block-views-bloque-articulo-block .views-field-body p,#block-views-bloque-publicacion-block .views-field-body p,
.view-bloques-home .views-field-body p{
	margin-top:10px;
}

/*Quienes somos*/
.page-node-12 .region-sidebar-second{
	 padding: 20px;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2); 
	width:240px;
}

#block-webform-client-block-11{
	background: none repeat scroll 0 0 #FFFFFF;
    border: medium none;
    -webkit-border-radius: 3px;
	border-radius: 3px; 
	margin-bottom:0;
}

#block-webform-client-block-11 .block-title,.view-enlaces .views-field-title{
	font-family: 'fauna_oneregular';
	font-size:18px;
	font-weight:normal;
}

#webform-client-form-11 label{
	font-family: 'averageregular';
	font-size:15px;
	color:#666;
	font-weight:normal;
}

#webform-client-form-11 #edit-submitted-nombre, #webform-client-form-11 #edit-submitted-e-mail{
	width:225px;
	height:33px;
	background:#f1f1f1;
	border:none;
	margin-top:5px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding-left:15px;
	font-family: 'averageregular';
	font-size:15px;
	color:#666;
	font-weight:normal;
}

#webform-client-form-11 #edit-submitted-mensaje{
	background:#f1f1f1;
	border:none;
	margin-top:5px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding-left: 15px;
    padding-top: 10px;
	font-family: 'averageregular';
	font-size:15px;
	color:#666;
	font-weight:normal; 
}

#webform-client-form-11 #edit-submit, #views-form-orden-exposiciones-page #edit-submit, #edit-submit{
	background:#7fdbd6;
	font-family: 'oswaldbook';
	font-size:17px;
	color:#fff;
	-webkit-border-radius: 3px;
	border-radius: 3px; 
	border:none;
	padding: 5px 15px;
	cursor:pointer;
}

#webform-client-form-11 .form-required{
	color:#666;
}

.view-enlaces{
	border-top: 1px solid #cbcbcb;
    margin-top: 40px;
    padding: 20px 0;
}

.view-enlaces p{
	margin-top:10px;
}
/*view-galeria*/
.view-galeria {
	padding-left:20px;
}
.view-galeria span{
	color:#B5B5B5;
}
.view-galeria .field-content{
	margin-top:5px;
}

/*Mapa Pie*/
#block-block-4{
	position:relative;
}

#block-block-4 h2{
	font-family: 'fauna_oneregular';
	font-size:20px;
	font-weight:normal;
	color:#fff;
	float:left;
	margin:30px 20px;
	line-height:22px;
}
#block-block-4 h2 span{
	font-weight:bold;
}

#block-block-4 p img{
	margin-top:-130px;
	position:relative;
	z-index:-100;
	
}
.marker-millan {
    left: 498px;
    position: absolute;
    top: 55px;
	z-index:10;
}

.marker-millan a span, .marker-toledo a span{
	background:#fff;
	text-align:left;
	padding:20px 20px 30px 30px;
	display:none;
	position:relative;
	top:-90px;
	left:-5px;
	z-index:-1;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2); 
	-webkit-border-radius: 2px;
  	border-radius: 2px;
	font-size:14px;
	color:#666;
}

.marker-millan a:hover span, .marker-toledo a:hover span{
	display:block;
}

.marker-toledo {
    left: 320px;
    position: absolute;
    top: 180px;
	z-index:10;
}

/*Redes*/
#block-block-5 {
    float: right;
    position: relative;
    right: 42px;
    top: 11px;
}

#block-block-5 h2{
	font-family: 'fauna_oneregular';
	font-size:20px;
	font-weight:normal;
	color:#fff;
}
#block-block-5 a{
	position:relative;
	z-index:1;
}

#block-block-5 img{
	padding:20px 10px 0 0;
}

/*Imagen mapa*/
#block-block-6{
	position:absolute;
	top:-447px;
	z-index:2000;
}
#block-block-6 img{
}

/**/
#views-form-orden-exposiciones-page img{
	padding-right:20px;
}