/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */

html {
  background: #fff;
}


body {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #48361f;
  background-color: #f7f5e4;
}


/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

/* FORMS */
input.form-text, select.form-select {
  color: #525A31;
  height: 22px;
  border: #cccccc 1px solid;
  border-radius: 5px;
  padding-left: 5px;
}

textarea.form-textarea {
  border: #cccccc 1px solid;
  border-radius: 5px;
  color: #525A31;
  padding-left: 5px;
}

input.form-submit {
  background: #7B5332 none repeat scroll 0 0;
  border: medium none;
  border-radius: 10px 10px 10px 10px;
  color: White;
  font-size: 12px;
  font-weight: bold;
  height: 22px;
  padding: 0 15px 3px;
  margin-right: 10px;
}



pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}


/* =============================================================================
 *   Wrappers
 * ========================================================================== */

/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings.
 */
#page-wrapper {}
#page {}
#page .container {}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {}

/*
 * Wraps the sidebars the content column
 */
#columns {}

/*
 * Main content column wrapper
 */
#content-column {}

/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
#main-content {}

/*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
#content {}

/*
 * Footer wrapper
 */
#footer {}

/*
 * Panels may need additional margin wrangling when in the $content region
 */
#content .panel-display {}

/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */

/*
 * Wraps the leaderboard
 */
#leaderboard-wrapper {}
#leaderboard-wrapper .container {}

/*
 * Wraps the header
 */
#header-wrapper {
  background: url(images/franjaheader.png) center top repeat-x scroll;
}
#header-wrapper .container {}

/*
 * Wraps the nav elements
 */
#nav-wrapper {}
#nav-wrapper .container {}

/*
 * Wraps breadcrumb
 */
#breadcrumb-wrapper {}
#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */
#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

/*
 * Wraps the main content column
 */
#content-wrapper {
  background: url(images/fondo-arboles.png) center bottom repeat-x scroll;
}
#content-wrapper .container {}

/*
 * Wraps the tertiary content/postfix region
 */
#tertiary-content-wrapper {}
#tertiary-content-wrapper .container {}

/*
 * Footer wrapper
 */
#footer-wrapper {
  background: url(images/footerrepeat.png) repeat-x scroll #ece8cd;
  min-height: 215px;
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {
  float: left;
}

/*
 * Logo
 */
#logo {
  padding: 10px 0;
}

#logo img {
  vertical-align: bottom;
}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}

#site-name a {}

#site-name a:link,
#site-name a:visited {
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
}


/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {
  margin: 0;
}


/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
.more-link {}

/*
 * Generic styles for links. See the ul.links declaration in node and comment
 * stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}

ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}

.attribution a {
  text-decoration: none;
  color: inherit;
}

.attribution a:hover,
.attribution a:focus {
  text-decoration: underline;
}


/* =============================================================================
 *   Regions
 * ========================================================================== */

/*
 * Standard region wrapper, don't add width to any regions, you will bork the
 * layout - no margin, padding or borders etc
 */
.region {}

/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */
.region-inner .region-inner {}

/*
 * Header region, embedded in the #header
 */
.region-header {
  position: relative;
}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {}

/*
 * Secondary content
 */
.region-secondary-content {}

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {}

/*
 * Sits below the main content, like a content-bottom region
 */
.region-content-aside {}

/*
 * Sidebars - targets both
 */
.sidebar {}

/*
 * First sidebar
 */
.region-sidebar-first {}

/*
 * Second sidebar
 */
.region-sidebar-second {}

/*
 * Tertiary content
 */
.region-tertiary-content {}

/*
 * Footer region
 */
.region-footer {}


/* =============================================================================
 *   Links
 * ========================================================================== */

a, a:visited {
  color: #525a31;
}

a:hover, a:active, a:focus {
  color: #1F270A;
  text-decoration: underline;
}

/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */

.nav {
  clear: both;
  margin: 10px 0;
}

.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}

.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}

.nav .block {
  margin-bottom: 0;
}


/* =============================================================================
 *   Superfish
 * ========================================================================== */

ul.sf-menu {
  margin-bottom: 0;
}

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
  outline: 0;
}

ul.sf-menu a {
  background: url("images/menuitemhover-borde.png") no-repeat scroll right top #7B5332;
  color: white;
  display: block;
  height: 34px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 13px;
  text-align: center;
  text-decoration: none;
}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
  outline: 0;
  background: url(images/menuitemhover.png) top left repeat-x scroll ;
}

ul.sf-horizontal {
  float: right;
}

.sf-accordion-toggle {
  float: right;
}
.sf-accordion-toggle a {
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
}

/*
 * Superfish blocks
 */
#block-superfish-1 {
  margin-bottom: 0;
}

.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}

.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}

.sf-vertical li {
  width: 100%;
}

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}




/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */

.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.at-mt .at-menu-toggle-button {
  margin: 0;
}

.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}




/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */

ul.menu {
  padding-left: 15px;
}

ul.menu ul {
  padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
}

ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {}

ul.menu li a {}

ul.menu li a:link,
ul.menu li a:visited {}

ul.menu li a:active,
ul.menu li a.active {}

ul.menu li a:hover,
ul.menu li a:focus {}

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
  margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
  content: ":";
}

#breadcrumb ol {
  margin: 0;
  padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

#breadcrumb li {
  list-style: none;
  display: inline;
}

#breadcrumb li.crumb-first,
#breadcrumb li.crumb-first a {
  background: url("images/home-icon.png") no-repeat scroll left top transparent;
  color: transparent;
  display: block;
  float: left;
  height: 16px;
  margin-right: 6px;
  width: 16px;
  text-indent: -9999px;
}


/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}

ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */



/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}

#skip-link a {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
  outline: 0;
}


/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}

ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}

ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}

ul.primary li a:hover,
ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}

ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}

ul.secondary li a {}

ul.secondary li a:hover,
ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}


/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted
 * ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}


/*
 * Field types (Core)
 */

/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}


/* =============================================================================
 *   Block Styling
 * ========================================================================== */

/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
  margin-bottom: 20px;
}

/*
 * Block title
 */
.block-title {
  margin: 0;
}

.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}

.block-content li {
  margin: 0;
  padding: 0;
}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
  margin-bottom: 20px;
}

.node .node-title {
  margin: 0;
}


/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}

#comments h2.comment-title {
  margin: 0;
}

#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
}

/*
 * Comment title
 */
.comment-title {
  margin: 0;
}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
  color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
  margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

.form-item label {
  font-weight: 700;
}


/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #c00;
}

.form-item .description {
  font-size: 0.85em;
}


/*
 * The submit button
 */

.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
  margin: 0;
}


/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}
table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 700;
  background-color: #e5e5e5;

}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

tbody {}

tbody tr {
  border-top: 1px solid #ccc;
}

tr.odd {
  background: #fff;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}

tr.odd td.active {
  background-color: #eee;
}

tr.even td.active {
  background-color: #ebebeb;
}


/* tablas */
.views-view-grid td {
  width: 175px;
}
.not-front table, .not-front tbody {
  width: 100%;
}
.not-front table td {
  padding: 5px;
  vertical-align: top;
  width: 175px;
}
table.webform-grid td{
  min-width: 50px;
  width: auto;
  padding: 7px;
}
.not-front thead {
  font-weight: bold;
}
.not-front thead th {
  padding-bottom: 5px;
}


/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
  font-size: 75px;
  font-weight: bold;
  height: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
  padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline {}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}

.db-offline div.messages {
  margin: 20px 0 0;
}

.db-offline #content {
  padding: 20px 0;
}


/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */

/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}

#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}





.left{
  float:left;
}
.right{
  float:right;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

label {
  margin-bottom: 5px;
}



.volver {
  float: left;
  clear: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.front .volver {
  display: none;
}

a#logo {
  left: 13px;
  float: left;
  position: relative;
  top: 10px;
}

#content {
  padding: 0px;
  width: 100%;
  padding-top: 10px;
  min-height: 915px;
}

#content .inner {
  padding: 0 20px 20px 20px;
}

#content .region {
  padding: 0 20px 60px 0;
}

#highlighted .region {
  padding: 0px;
  padding-top: 11px;
}

#breadcrumb {
  height: 20px;
  background: #D2CB98;
  border-radius: 20px;
  margin-right: 20px;
  margin-bottom: 25px;
  padding-left: 15px;
  padding-top: 5px;
}

.tortuga-bottom {
  width: 210px;
  height: 84px;
  display: block;
  position: relative;
  left: -406px;
  top: -63px;
}

.tortuga-bottom .tortuga {
  background: url(images/tortuga-footer-sin.png) left top no-repeat scroll;
  width: 158px;
  height: 76px;
}

.tortuga-bottom .humo {
  background: url("images/tortuga-footer-humo.png") no-repeat scroll left bottom transparent;
  float: left;
  height: 44px;
  left: -47px;
  position: relative;
  top: 29px;
  width: 65px;
}

.view-frontpage .node.node-sticky h2.title, .view-frontpage .node.node-sticky .links {
  display: none;
}

#webform-client-form-16 #edit-actions{
  margin-top: 25px;
}

#webform-client-form-16 input.form-submit {
  height: 33px;
  padding: 0 18px 3px;
  font-size: 14px;
  border-radius: 15px 15px 15px 15px;
  margin-left: 20px;
}

#webform-client-form-102 #edit-actions {
  position:relative;
  bottom: 30px;
  width: 90px;
}

input.form-submit:hover {
  cursor: pointer;
  background-color: #A8754A;
}


/* LAYOUT */
#home .panel-col-first {
  width: 72.3%;
  margin-top: 0px;
}

#home .panel-col-first .inside {
  padding: 0;
  margin: 0;
}

#home .panel-col-last {
  width: 27.7%;
}

#home .panel-col-last .inside {
  padding: 0;
  margin: 0;
}

#highlighted {
  margin-bottom: 10px;
}


/* titulos generales */
h1.title, h2.title, h3.title,h1, h2, h3 {
  color: #5b5f1b;
}

#blog .panel-col-first {
  width: 22.3%;
}

#blog .panel-col-last {
  width: 77.7%;
}

#footer .region .block .menu li {
  list-style: none;
}

#footer .region .block h2.title {
  display: none;
}


/* Blog */
#blog .panel-col-first {
  width: 20%;
}

#blog .panel-col-last {
  width: 80%;
}

.view-blog .item-list ul li.views-row {
  border-bottom: #DADF97 1px solid;
  margin-bottom: 15px;
  margin-left: 0;
  padding-bottom: 15px;
}

.field-name-field-blog-fotoprincipal {
  float: left;
  margin: 0 15px 0 0;
}

.field-name-field-descargas{
  margin: 30px 0 0 15px;
}

.field-name-field-descargas a{
  padding-left: 3px;
}

li.node-readmore a {
  display: list-item;
  list-style: disc inside none;
}

.submitted {
  color: Gray;
  display: block;
  margin-bottom: 10px;
}


#block-block-3 {
  /* pie */
  padding-top: 20px;
}

#block-block-3 img.logo {
  position: relative;
  top: -40px;
}

#block-block-3 a.prodigia {
  display: block;
  float: right;
  background: url(images/icono-prodigia.png) top right no-repeat scroll;
  position: relative;
  top: -7px;
  padding-top: 27px;
  font-size: 0.9em;
  color: #48361F;
  text-decoration: none;
  text-align: right;
}

#block-block-3 a.prodigia:hover{
  text-decoration: underline;
}

#block-block-12 a{
  transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  /* Firefox 4 */
  -webkit-transition: opacity 500ms;
  /* Safari and Chrome */
  -o-transition: opacity 500ms;
  /* Opera */
}

#block-block-12 a:hover{
  opacity: 0.6;
}

#block-block-12 a.banner-excursiones{
  text-indent: -9999px;
  background: url(images/banner_excursiones.png) center center no-repeat scroll;
  display: block;
  width: 301px;
  height: 105px;
  clear: both;
  margin: 30px 0;
}

#block-block-12 a.banner-camiseta{
  text-indent: -9999px;
  background: url(images/banner_camiseta.png) center center no-repeat scroll;
  display: block;
  width: 301px;
  height: 193px;
  clear: both;
  margin: 30px 0;
}

#field-slideshow-1-pager li a img {
  padding: 5px;
  border: 1px solid #D2CB98;
}

#block-menu-menu-menu-home h2.title {
  display: none;
}

#block-block-6 h3 {
  /* bloque texto intro */
  font-size: 3em;
  margin-bottom: 16px;
}

#block-block-6 .content {
  text-align: justify;
}

#block-search-form {
  float: right;
}

#block-search-form input.form-text {
  background: #7B5332;
  border-radius: 20px;
  color: #F7F5E4;
  padding-left: 10px;
  padding-right: 10px;
  height: 25px;
  width: 175px;
  font-size: 90%;
}

#block-search-form input.form-submit {
  background: url("images/buscar-lupa.png") no-repeat scroll center center transparent;
  border: medium none;
  border-radius: 0 0 0 0;
  font-size: 0;
  height: 14px;
  left: -31px;
  margin: 0;
  padding: 0;
  position: relative;
  top: -4px;
  width: 16px;
}

#block-search-form input:-ms-input-placeholder{
  font-style: italic;
}

#block-search-form input::-webkit-input-placeholder{
  font-style: italic;
}

#block-search-form input:-moz-placeholder {
  font-style: italic;
}

#block-block-7 iframe {
  /* bloque facebook custom */
  background: White !important;
}

#block-block-8 {
  /* redes sociales */
  float: right;
  z-index: 30;
  width: 90px;
}

#block-block-8 * {
  padding: 0;
  margin: 0;
}

#block-block-8 .redes li {
  float: left;
}

#block-block-8 .redes li a {
  display: block;
  width: 32px;
  height: 33px;
  text-indent: -2000px;
  color: #D8D1A3;
  float: left;
  margin-left: 10px;
}

#block-block-8 .redes li.facebook a {
  background: url(images/facebook-icon.png) center center no-repeat scroll;
}

#block-block-8 .redes li.twitter a {
  background: url(images/twitter-icon.png) center center no-repeat scroll;
}

#block-block-8 .redes li.youtube a {
  background: url(images/youtube-icon.png) center center no-repeat scroll;
}

#block-views-listado-empresas-block li.views-row {
  /* empresas participantes */
  float: left;
}

#block-block-9 {
  /* bloque Twitter feeds */
  clear: left;
  padding-top: 0px;
}

#block-block-16 {
  text-align: center;
}
#block-block-16 .logo {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
  font-size: 0.8em;
  line-height: 1.5;
  text-align: center;
}

#block-simplenews-6 {
  /* newsletter */
  float: left;
}

#block-views-archivo-blog-meses-block {
  /* archivo blog */
  background: none repeat scroll 0 0 #FAFAEF;
  border: 1px solid white;
  border-radius: 20px 20px 20px 20px;
  padding: 10px 20px;
  clear: left;
}

#block-views-archivo-blog-meses-block h2.title {
  margin-bottom: 10px;
}

#block-views-archivo-blog-meses-block .item-list ul li {
  list-style: disc;
}

#block-block-11 ul {
  margin-bottom: 10px;
}

#block-block-11 ul li {
  display: inline-block;
  margin-right: 10px;
}

#block-block-11 ul li a {
  display: block;
  background: url(images/logo-sinapsia.png) center center no-repeat scroll;
  text-indent: -2000px;
}

#block-block-11 ul li.sinapsia a {
  width: 151px;
  height: 47px;
}

#block-block-11 ul li.prodigia a {
  width: 103px;
  height: 35px;
  background-image: url(images/logo-prodigia.png);
}

#block-block-11 ul li.atrevetesolo a {
  width: 69px;
  height: 79px;
  background-image: url(images/logo-atrevetesolo.png);
}

#block-block-11 ul li.atrevetesolo {
  position: relative;
  top: -18px;
}

#block-block-11 ul li.ecodirec a {
  width: 118px;
  height: 43px;
  background-image: url(images/logo-ecodirec.png);
}

#block-block-11 ul li.arealudica a {
  width: 133px;
  height: 37px;
  background-image: url(images/logo-arealudica.png);
}

#block-block-11 ul li.ineprodes a {
  width: 144px;
  height: 41px;
  background-image: url(images/logo-ineprodes.png);
}

#block-block-11 ul li.negosegur a {
  width: 128px;
  height: 74px;
  background-image: url(images/logo-negosegur.png);
}

#block-block-11 ul li.whisper a {
  width: 121px;
  height: 58px;
  background-image: url(images/whisper_power.png);
}

#block-block-11 ul li.selemar a {
  width: 111px;
  height: 43px;
  background-image: url(images/selemar.png);
}

#block-block-11 ul li.webasto a {
  width: 149px;
  height: 48px;
  background-image: url(images/webasto.png);
}

#block-block-11 ul li.asandac a {
  width: 141px;
  height: 66px;
  background-image: url(images/asandac-logo.png);
}

#block-block-11 ul li.mitortuga a {
  width: 150px;
  height: 49px;
  background-image: url(images/mitortuga-logo.png);
}

#mini-panel-minipanel_bottom_home .panel-col-first {
  width: 16%;
}

#mini-panel-minipanel_bottom_home .panel-col {
  width: 80%;
}

#mini-panel-minipanel_bottom_home .panel-col-last {
  width: 4%;
}

/* Secciones */

/* contactar */
#edit-submitted-mensaje {
  width: 390px;
}

/* BLog */
#blog h2.title {
  margin-bottom: 15px;
}

#webform-client-form-16 select.form-select{
  width: auto;
}

/* Node types */

/* contenido fijo */
.node .field ul, .node .field ul li{
  list-style: disc inside;
}

#home .panel-col-first h2 {
  display: none;
}

.node-contenido-fijo .tag_enlace {
  background: url("images/resumenportadalink.png") no-repeat scroll right top transparent;
  height: 113px;
  position: relative;
  top: -216px;
  text-align: right;
}

.tag_enlace h3 {
  font-size: 3em;
}

.service-links ul.links li {
  float: left;
  margin-right: 5px;
  margin-left: 16px;
  width: 78px;
}

.service-links .service-links-forward {
  width: 17px !important;
  margin-left:8px !important;
  margin-top:3px !important;
}

.service-links .service-links-twitter-widget {
  margin-left: 14px !important;
}

.page-node-102 .service-links ul.links li {
  float: left;
  margin-right: 5px;
  margin-left: 15px;
  width: 78px;
  position:relative;
  top: 259px;
}

.service-links  li.service-links-google {
  text-align: left;
}

.service-links li.service-links-google img {
  left: -13px;
  position: relative;
  top: 2px;
}


/* comentarios */
#comments {
  background: #FCFAF1;
  border: #ECE7CC 1px solid;
  border-radius: 10px;
  padding: 20px;
}

#comments h2.title {
  font-size: 1.7em;
}

.comment {
  background: White;
  border: #ECE7CC 1px solid;
  padding: 5px;
  margin-bottom: 10px;
}

.node-teaser ul.links li {
  display: block;
  float: left;
  list-style: disc;
}

#purr-container {
  font-size: 120%;
}

/* TIENDA */
.view-tienda .views-row{
  clear: both;
}

.view-tienda .views-field-title{
  padding: 20px 0;
}

.views-field-title a{
  font-size: 1.7em;
  text-decoration: none;
}

.views-field-title a:hover{
  text-decoration: underline;
}

.views-field-field-image{
  float: left;
  padding: 0 20px;
}

.node-producto .field-name-field-image{
  float: left;
  padding: 20px 20px 0 0;
}

.node-producto .field-name-body{
  padding-top: 20px;
  line-height: 150%;
  font-size: 1.16em;
}

.node-producto .commerce-product-field-commerce-price{
  float: right;
  clear: right;
  font-size: 2.2em;
  margin-top: 10px;
}

.node-producto .field-name-field-product-ref{
  clear: right;
  float: left;
}

.view-commerce-cart-block table{
  border-top: none;
  margin: 5px 0;
}

.view-commerce-cart-block table td{
  vertical-align: middle;
  width: auto;
}

table tr td{
  padding: 5px;
  vertical-align: middle;
}

table tr.odd{
  background-color: #ece8cd;
}

table tr.even{
  background-color: #F7F5E4;
}



/* EXCURSIONES */
.node-excursion .field-name-field-subtitulo{
  font-size: 1.8em;
  font-style: italic;
}

.node-excursion .field-name-field-fecha{
  font-size: 1.3em;
  margin: 16px 0;
}

.node-excursion .field-name-field-fecha .field-label{
  float: left;
}

body.node-type-excursion .field-name-field-image{
  float: right;
}

body.node-type-excursion .field-name-field-image img{
  transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  /* Firefox 4 */
  -webkit-transition: opacity 500ms;
  /* Safari and Chrome */
  -o-transition: opacity 500ms;
  /* Opera */
}

body.node-type-excursion .field-name-field-image img:hover{
  opacity: 0.6;
}

.node-excursion .field-name-field-image .field-item{
  margin: 5px 0 12px 20px;
}

.field-name-body p{
  line-height: 1.4;
  margin: 14px 0;
}

.node-excursion .commerce-product-field-commerce-price{
  float: right;
  font-size: 1.6em;
  margin: 0 0 25px 30px;
}
.node-excursion .field-name-field-product-ref{
  font-size: 1.2em;
  margin: 0;
}

.view-tienda.excursiones .views-field-title{
  padding: 0 0 10px 0;
}

.view-tienda.excursiones .views-row{
  min-height: 170px;
  margin: 20px 0;
}

.view-tienda.excursiones .views-field-field-image{
  padding-left: 0;
}

.view-tienda.excursiones .views-field-field-fecha{
  padding-bottom: 10px;
  font-size: 1.16em;
  font-style: italic;
  font-weight: bold;
}

.view-tienda.excursiones .views-field-body{
  text-align: justify;
  margin-bottom: 10px;
}

.view-tienda.excursiones .views-field-view-node{
  float: right;
  font-weight: bold;
}

/* LIBRO DE FIRMAS */
#block-block-13{
  float: right;
  clear: right;
  margin-top: 25px;
}
a.boton-libro-firmas{
  font-size: 1.16em;
  background-color: #818e37;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 15px;
  padding: 5px 15px;
  display: block;
}
a.boton-libro-firmas:hover{
  opacity: 0.7;
}
#libro-firmas .webform-client-form{
  /*padding: 10px 20px; */
  margin-bottom: 42px;
}
#libro-firmas .webform-client-form .form-item{
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding: 0 7px;
}
#libro-firmas .form-select{
  width: 226px;
  height: 27px;
  padding: 2px;
}
#libro-firmas .form-select option{
  padding: 2px 2px 2px 5px;
}
#libro-firmas #webform-component-nombre,
#libro-firmas #webform-component-dni,
#libro-firmas #webform-component-pais,
#libro-firmas #webform-component-provincia {
  float: left;
}
#libro-firmas #webform-component-email,
#libro-firmas #webform-component-ayuntamiento {
  float: right;
}
#libro-firmas #webform-component-comentario {
  float: left;
  width: 57%;
}
#libro-firmas #webform-component-aviso-legal {
  clear: both;
  margin-left:80px;
}
.view-libro-firmas-digital .views-row {
  padding: 20px 30px;
  border-bottom: 1px solid #9E9368;
  font-size: 1.16em;
  line-height: 1.4;
}
.view-libro-firmas-digital .views-row-even {
  background-color: #ECE8CD;
}
.view-libro-firmas-digital .views-field-submitted {
  float: right;
  font-size: 15px;
  font-style: italic;
}
.view-libro-firmas-digital .views-label {
  font-weight: bold;
}


/* Encuesta satisfacción */
fieldset{
  border: 1px solid #CCC;
  margin: 10px 0;
  padding: 15px;
}

.webform-component-fieldset legend{
  font-size: 2em;
  color: #5B5F1B;
  padding: 0 5px;
}


/* admin y comunes */
.view-empty {
  padding-top: 20px;
  padding-bottom: 20px;
  font-style: italic;
}

.view-header {
  font-size: 120%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.item-list .pager {
  margin-top: 10px;
}

.field-name-body p, .field-type-text-long p {
  text-align: justify;
}

ul.tabs {
  clear: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-admin-structure-taxonomy-manager #content .region {
  border: none;
}

.page-admin-structure-taxonomy-manager #edit-export-show, .page-admin-structure-taxonomy-manager #edit-double-tree-show {
  display: none;
}

#term-data-close span {
  padding-right: 5px;
}

.facebookshare-box {
  float: left !important;
}

.page-node-102 .facebookshare-box {
  float: left !important;
  position: relative;
  top: 259px;
  margin-right: 10px;
}