@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
@import url("http://fonts.googleapis.com/css?family=Roboto+Slab");
@import url("http://fonts.googleapis.com/css?family=Fauna+One");
/* line 33, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 40, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
@font-face {
  font-family: 'brandon_grotesque_regularRg';
  src: url("../fonts/brandon_reg-webfont.eot");
  src: url("../fonts/brandon_reg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon_reg-webfont.woff") format("woff"), url("../fonts/brandon_reg-webfont.ttf") format("truetype"), url("../fonts/brandon_reg-webfont.svg#brandon_grotesque_regularRg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'brandon_grotesquebold';
  src: url("../fonts/brandon_bld-webfont.eot");
  src: url("../fonts/brandon_bld-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon_bld-webfont.woff") format("woff"), url("../fonts/brandon_bld-webfont.ttf") format("truetype"), url("../fonts/brandon_bld-webfont.svg#brandon_grotesquebold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'brandon_grotesquemedium';
  src: url("../fonts/brandon_med-webfont.eot");
  src: url("../fonts/brandon_med-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon_med-webfont.woff") format("woff"), url("../fonts/brandon_med-webfont.ttf") format("truetype"), url("../fonts/brandon_med-webfont.svg#brandon_grotesquemedium") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Google fonts */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 144, ../sass/_normalize.scss */
html {
  font-family: "brandon_grotesque_regularRg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 164, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  background-image: url("../assets/background.jpg");
  background-repeat: repeat;
  color: #6a6a6a;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* line 180, ../sass/_normalize.scss */
a, a:visited {
  color: #333;
  text-decoration: underline;
  outline: 0;
}

/* line 181, ../sass/_normalize.scss */
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
}

/* line 182, ../sass/_normalize.scss */
p a, p a:visited {
  line-height: inherit;
  color: #bf2d36;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 188, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 194, ../sass/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 210, ../sass/_normalize.scss */
p,
pre {
  margin: 0 0 10px;
}

/* line 214, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 223, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  color: #231f20;
  font-family: "Roboto Slab", "Georgia", "Times New Roman", serif;
  font-weight: normal;
  font-size: 49.6px;
  line-height: 1.2em;
  margin-bottom: 16px;
  margin-top: 0;
}
/* line 239, ../sass/_normalize.scss */
h1 a {
  font-weight: inherit;
}

/* line 242, ../sass/_normalize.scss */
h2 {
  color: #231f20;
  font-family: "Roboto Slab", "Georgia", "Times New Roman", serif;
  font-weight: normal;
  font-size: 30.4px;
  line-height: 1.2em;
  margin-bottom: 10px;
  margin-top: 0;
}
/* line 255, ../sass/_normalize.scss */
h2 a {
  font-weight: inherit;
}

/* line 258, ../sass/_normalize.scss */
h3 {
  color: #231f20;
  font-family: "Fauna One", "Georgia", "Times New Roman", serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 8px;
  margin-top: 0;
}
/* line 271, ../sass/_normalize.scss */
h3 a {
  font-weight: inherit;
}

/* line 274, ../sass/_normalize.scss */
h4 {
  color: #231f20;
  font-family: "Fauna One", "Georgia", "Times New Roman", serif;
  font-weight: normal;
  font-size: 19.2px;
  line-height: 1.2em;
  margin-bottom: 4px;
  margin-top: 0;
}
/* line 287, ../sass/_normalize.scss */
h4 a {
  font-weight: inherit;
}

/* line 290, ../sass/_normalize.scss */
h5 {
  color: #231f20;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 22.4px;
  line-height: 1.2em;
  margin-bottom: 10px;
  margin-top: 5px;
}
/* line 303, ../sass/_normalize.scss */
h5 a {
  font-weight: inherit;
}

/* line 306, ../sass/_normalize.scss */
h6 {
  color: #231f20;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 28.8px;
  line-height: 1.2em;
  margin-top: 0;
}
/* line 318, ../sass/_normalize.scss */
h6 a {
  font-weight: inherit;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 323, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 329, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 334, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 339, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 348, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 359, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "brandon_grotesque_regularRg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 368, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 380, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 385, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 391, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 397, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 400, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 410, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 417, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 422, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 429, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 447, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 468, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 473, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 489, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.0625em;
  padding-top: 0.4625em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625em;
  padding-bottom: 0.9125em;
  border-left-style: solid;
  border-left-width: 0.0625em;
  padding-left: 0.9125em;
  border-right-style: solid;
  border-right-width: 0.0625em;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 504, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 522, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 539, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 550, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 566, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 578, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 589, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 603, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 613, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 619, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 628, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 634, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 642, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
/* line 658, ../sass/_normalize.scss */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE6 */
/* line 666, ../sass/_normalize.scss */
* html .clearfix {
  height: 1%;
}

/* IE7 */
/* line 670, ../sass/_normalize.scss */
*:first-child + html .clearfix {
  min-height: 1%;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 35, ../sass/layouts/_responsive.scss */
#page,
.region-bottom,
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/*.region-menu-domini,*/
/* line 55, ../sass/layouts/_responsive.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.footer-top,
.footer-bottom,
.region-promote,
.region-whois-domain,
.region-whois-bottom,
.page-bottom-full-width,
.region-whois-domain-right {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Containers for grid items and flow items. */
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* line 67, ../sass/layouts/_responsive.scss */
.page-bottom-full-width {
  clear: both;
}
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.page-bottom-full-width:before, .page-bottom-full-width:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.page-bottom-full-width:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  /* line 75, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: auto;
    position: relative;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  /* line 82, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    height: auto;
    width: 100%;
  }
  /* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
  #navigation:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media all and (max-width: 850px) {
  /* line 96, ../sass/layouts/_responsive.scss */
  #navigation {
    width: 85%;
    margin-left: 60px;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 115, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 117, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 122, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 130, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 132, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 137, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 145, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  /* line 147, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 152, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 157, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 163, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 167, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 172, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 176, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
/**
 * Use 4 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 193, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 195, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
  }
  /* line 200, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 208, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 3 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 4th column from left. */
  }
  /* line 210, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
  }
  /* line 215, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 223, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 4th column from left. */
  }
  /* line 225, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
  }
  /* line 230, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  /* line 235, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }
}
/**
Fundació - listat de continguts, a les landing-pages, per exemple notícies
la classes, per exemple .content-list-level-2, es posa al block amb el mòdul Block CSS
*/
/* line 245, ../sass/layouts/_responsive.scss */
.content-list-level-1 {
  margin-bottom: 20px;
}
/* line 247, ../sass/layouts/_responsive.scss */
.content-list-level-1 .views-row > div {
  padding-bottom: 20px;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 253, ../sass/layouts/_responsive.scss */
.content-list-level-1 .views-row > div > div {
  /* revisar amb IE*/
  padding: 0 20px;
}
/* line 259, ../sass/layouts/_responsive.scss */
.content-list-level-1 .field-name-field-news-image,
.content-list-level-1 .field-name-field-publication-image,
.content-list-level-1 .field-name-field-casestudy-image {
  padding: 0 !important;
  margin-bottom: 15px;
}

/* line 270, ../sass/layouts/_responsive.scss */
.content-list-level-2 .views-row > div,
.page-barometre-view-all .views-row > div {
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/* line 278, ../sass/layouts/_responsive.scss */
.content-list-level-3 .views-row > div {
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/* line 289, ../sass/layouts/_responsive.scss */
.block-home-projectes.content-list-level-1 .field-name-field-project-image {
  padding: 0;
}
/* line 295, ../sass/layouts/_responsive.scss */
.block-home-projectes.content-list-level-2 .views-row > div {
  padding: 0 !important;
}

/* line 305, ../sass/layouts/_responsive.scss */
.region-footer-first,
.region-footer-second,
.region-footer-third,
.region-footer-fourth {
  width: 100%;
  float: none;
  padding-left: 0;
  margin-left: 0;
}

/* Pàgines finals amb DS (per exemple notícies) */
/* line 321, ../sass/layouts/_responsive.scss */
.node-type-news .page-content,
.node-type-video .page-content,
.node-type-statistics .page-content,
.node-type-project .page-content,
.node-type-publication .page-content,
.node-type-casestudy .page-content {
  background: #fff;
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 328, ../sass/layouts/_responsive.scss */
.node-type-news .group-left,
.node-type-news .group-right,
.node-type-video .group-left,
.node-type-video .group-right,
.node-type-statistics .group-left,
.node-type-statistics .group-right,
.node-type-project .group-left,
.node-type-project .group-right,
.node-type-publication .group-left,
.node-type-publication .group-right,
.node-type-casestudy .group-left,
.node-type-casestudy .group-right {
  position: relative;
  width: 100%;
  float: none;
}

/* line 337, ../sass/layouts/_responsive.scss */
.node-type-webform .imgcaption {
  max-width: 74.4%;
}
/* line 341, ../sass/layouts/_responsive.scss */
.node-type-webform .group-left {
  width: 74.4%;
  /* 700px */
  float: left;
  margin-right: 2.2%;
  /* 20px */
}
/* line 347, ../sass/layouts/_responsive.scss */
.node-type-webform .group-right {
  width: 23.4%;
  /* 220px */
  float: left;
}

@media all and (min-width: 960px) {
  /* line 356, ../sass/layouts/_responsive.scss */
  #block-menu-menu-auxiliar {
    float: right;
  }

  /* baròmetre a la home */
  /* line 364, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row,
  .content-list-level-2.barometre-fronpage .views-row,
  .block-home-publicacions.content-list-level-2 .views-row {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    /* revisar amb IE*/
  }

  /* line 373, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2,
  .block-home-frontpage.content-list-level-2,
  .block-home-publicacions.content-list-level-2,
  .block-home-video.content-list-level-3,
  .block-home-casestudy.content-list-level-3 {
    /* home Frontpage, Baròmetre, publicacions, videos */
    /* baròmetre a la home (frontpage): 2 columnes */
    /* notícies a la home (frontpage): 1 columna */
  }
  /* line 375, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row,
  .block-home-frontpage.content-list-level-2 .views-row,
  .block-home-publicacions.content-list-level-2 .views-row,
  .block-home-video.content-list-level-3 .views-row,
  .block-home-casestudy.content-list-level-3 .views-row {
    width: 300px;
    float: none;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
  }
  /* line 384, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row .node-statistics,
  .block-home-barometre.content-list-level-2 .views-row .node-publication,
  .block-home-barometre.content-list-level-2 .views-row .node-video,
  .block-home-barometre.content-list-level-2 .views-row .node-casestudy,
  .block-home-frontpage.content-list-level-2 .views-row .node-statistics,
  .block-home-frontpage.content-list-level-2 .views-row .node-publication,
  .block-home-frontpage.content-list-level-2 .views-row .node-video,
  .block-home-frontpage.content-list-level-2 .views-row .node-casestudy,
  .block-home-publicacions.content-list-level-2 .views-row .node-statistics,
  .block-home-publicacions.content-list-level-2 .views-row .node-publication,
  .block-home-publicacions.content-list-level-2 .views-row .node-video,
  .block-home-publicacions.content-list-level-2 .views-row .node-casestudy,
  .block-home-video.content-list-level-3 .views-row .node-statistics,
  .block-home-video.content-list-level-3 .views-row .node-publication,
  .block-home-video.content-list-level-3 .views-row .node-video,
  .block-home-video.content-list-level-3 .views-row .node-casestudy,
  .block-home-casestudy.content-list-level-3 .views-row .node-statistics,
  .block-home-casestudy.content-list-level-3 .views-row .node-publication,
  .block-home-casestudy.content-list-level-3 .views-row .node-video,
  .block-home-casestudy.content-list-level-3 .views-row .node-casestudy {
    padding: 0 0 20px;
  }
  /* line 387, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row .node-statistics > div,
  .block-home-barometre.content-list-level-2 .views-row .node-publication > div,
  .block-home-barometre.content-list-level-2 .views-row .node-video > div,
  .block-home-barometre.content-list-level-2 .views-row .node-casestudy > div,
  .block-home-frontpage.content-list-level-2 .views-row .node-statistics > div,
  .block-home-frontpage.content-list-level-2 .views-row .node-publication > div,
  .block-home-frontpage.content-list-level-2 .views-row .node-video > div,
  .block-home-frontpage.content-list-level-2 .views-row .node-casestudy > div,
  .block-home-publicacions.content-list-level-2 .views-row .node-statistics > div,
  .block-home-publicacions.content-list-level-2 .views-row .node-publication > div,
  .block-home-publicacions.content-list-level-2 .views-row .node-video > div,
  .block-home-publicacions.content-list-level-2 .views-row .node-casestudy > div,
  .block-home-video.content-list-level-3 .views-row .node-statistics > div,
  .block-home-video.content-list-level-3 .views-row .node-publication > div,
  .block-home-video.content-list-level-3 .views-row .node-video > div,
  .block-home-video.content-list-level-3 .views-row .node-casestudy > div,
  .block-home-casestudy.content-list-level-3 .views-row .node-statistics > div,
  .block-home-casestudy.content-list-level-3 .views-row .node-publication > div,
  .block-home-casestudy.content-list-level-3 .views-row .node-video > div,
  .block-home-casestudy.content-list-level-3 .views-row .node-casestudy > div {
    padding: 0 20px;
  }
  /* line 395, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row .node-statistics .field-name-field-statistics-image,
  .block-home-barometre.content-list-level-2 .views-row .node-statistics .field-name-field-publication-image,
  .block-home-barometre.content-list-level-2 .views-row .node-statistics .field-name-field-video-media,
  .block-home-barometre.content-list-level-2 .views-row .node-statistics .field-name-field-casestudy-image,
  .block-home-barometre.content-list-level-2 .views-row .node-statistics .field-name-field-casestudy-media,
  .block-home-barometre.content-list-level-2 .views-row .node-publication .field-name-field-statistics-image,
  .block-home-barometre.content-list-level-2 .views-row .node-publication .field-name-field-publication-image,
  .block-home-barometre.content-list-level-2 .views-row .node-publication .field-name-field-video-media,
  .block-home-barometre.content-list-level-2 .views-row .node-publication .field-name-field-casestudy-image,
  .block-home-barometre.content-list-level-2 .views-row .node-publication .field-name-field-casestudy-media,
  .block-home-barometre.content-list-level-2 .views-row .node-video .field-name-field-statistics-image,
  .block-home-barometre.content-list-level-2 .views-row .node-video .field-name-field-publication-image,
  .block-home-barometre.content-list-level-2 .views-row .node-video .field-name-field-video-media,
  .block-home-barometre.content-list-level-2 .views-row .node-video .field-name-field-casestudy-image,
  .block-home-barometre.content-list-level-2 .views-row .node-video .field-name-field-casestudy-media,
  .block-home-barometre.content-list-level-2 .views-row .node-casestudy .field-name-field-statistics-image,
  .block-home-barometre.content-list-level-2 .views-row .node-casestudy .field-name-field-publication-image,
  .block-home-barometre.content-list-level-2 .views-row .node-casestudy .field-name-field-video-media,
  .block-home-barometre.content-list-level-2 .views-row .node-casestudy .field-name-field-casestudy-image,
  .block-home-barometre.content-list-level-2 .views-row .node-casestudy .field-name-field-casestudy-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-statistics .field-name-field-statistics-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-statistics .field-name-field-publication-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-statistics .field-name-field-video-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-statistics .field-name-field-casestudy-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-statistics .field-name-field-casestudy-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-publication .field-name-field-statistics-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-publication .field-name-field-publication-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-publication .field-name-field-video-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-publication .field-name-field-casestudy-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-publication .field-name-field-casestudy-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-video .field-name-field-statistics-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-video .field-name-field-publication-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-video .field-name-field-video-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-video .field-name-field-casestudy-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-video .field-name-field-casestudy-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-casestudy .field-name-field-statistics-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-casestudy .field-name-field-publication-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-casestudy .field-name-field-video-media,
  .block-home-frontpage.content-list-level-2 .views-row .node-casestudy .field-name-field-casestudy-image,
  .block-home-frontpage.content-list-level-2 .views-row .node-casestudy .field-name-field-casestudy-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-statistics .field-name-field-statistics-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-statistics .field-name-field-publication-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-statistics .field-name-field-video-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-statistics .field-name-field-casestudy-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-statistics .field-name-field-casestudy-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-publication .field-name-field-statistics-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-publication .field-name-field-publication-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-publication .field-name-field-video-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-publication .field-name-field-casestudy-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-publication .field-name-field-casestudy-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-video .field-name-field-statistics-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-video .field-name-field-publication-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-video .field-name-field-video-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-video .field-name-field-casestudy-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-video .field-name-field-casestudy-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-casestudy .field-name-field-statistics-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-casestudy .field-name-field-publication-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-casestudy .field-name-field-video-media,
  .block-home-publicacions.content-list-level-2 .views-row .node-casestudy .field-name-field-casestudy-image,
  .block-home-publicacions.content-list-level-2 .views-row .node-casestudy .field-name-field-casestudy-media,
  .block-home-video.content-list-level-3 .views-row .node-statistics .field-name-field-statistics-image,
  .block-home-video.content-list-level-3 .views-row .node-statistics .field-name-field-publication-image,
  .block-home-video.content-list-level-3 .views-row .node-statistics .field-name-field-video-media,
  .block-home-video.content-list-level-3 .views-row .node-statistics .field-name-field-casestudy-image,
  .block-home-video.content-list-level-3 .views-row .node-statistics .field-name-field-casestudy-media,
  .block-home-video.content-list-level-3 .views-row .node-publication .field-name-field-statistics-image,
  .block-home-video.content-list-level-3 .views-row .node-publication .field-name-field-publication-image,
  .block-home-video.content-list-level-3 .views-row .node-publication .field-name-field-video-media,
  .block-home-video.content-list-level-3 .views-row .node-publication .field-name-field-casestudy-image,
  .block-home-video.content-list-level-3 .views-row .node-publication .field-name-field-casestudy-media,
  .block-home-video.content-list-level-3 .views-row .node-video .field-name-field-statistics-image,
  .block-home-video.content-list-level-3 .views-row .node-video .field-name-field-publication-image,
  .block-home-video.content-list-level-3 .views-row .node-video .field-name-field-video-media,
  .block-home-video.content-list-level-3 .views-row .node-video .field-name-field-casestudy-image,
  .block-home-video.content-list-level-3 .views-row .node-video .field-name-field-casestudy-media,
  .block-home-video.content-list-level-3 .views-row .node-casestudy .field-name-field-statistics-image,
  .block-home-video.content-list-level-3 .views-row .node-casestudy .field-name-field-publication-image,
  .block-home-video.content-list-level-3 .views-row .node-casestudy .field-name-field-video-media,
  .block-home-video.content-list-level-3 .views-row .node-casestudy .field-name-field-casestudy-image,
  .block-home-video.content-list-level-3 .views-row .node-casestudy .field-name-field-casestudy-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-statistics .field-name-field-statistics-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-statistics .field-name-field-publication-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-statistics .field-name-field-video-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-statistics .field-name-field-casestudy-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-statistics .field-name-field-casestudy-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-publication .field-name-field-statistics-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-publication .field-name-field-publication-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-publication .field-name-field-video-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-publication .field-name-field-casestudy-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-publication .field-name-field-casestudy-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-video .field-name-field-statistics-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-video .field-name-field-publication-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-video .field-name-field-video-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-video .field-name-field-casestudy-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-video .field-name-field-casestudy-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-casestudy .field-name-field-statistics-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-casestudy .field-name-field-publication-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-casestudy .field-name-field-video-media,
  .block-home-casestudy.content-list-level-3 .views-row .node-casestudy .field-name-field-casestudy-image,
  .block-home-casestudy.content-list-level-3 .views-row .node-casestudy .field-name-field-casestudy-media {
    padding: 0 !important;
    margin-bottom: 15px;
  }
  /* line 402, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row:nth-child(3n+1),
  .block-home-frontpage.content-list-level-2 .views-row:nth-child(3n+1),
  .block-home-publicacions.content-list-level-2 .views-row:nth-child(3n+1),
  .block-home-video.content-list-level-3 .views-row:nth-child(3n+1),
  .block-home-casestudy.content-list-level-3 .views-row:nth-child(3n+1) {
    padding-right: 8px;
    padding-left: 0;
  }
  /* line 406, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row:nth-child(3n+2),
  .block-home-frontpage.content-list-level-2 .views-row:nth-child(3n+2),
  .block-home-publicacions.content-list-level-2 .views-row:nth-child(3n+2),
  .block-home-video.content-list-level-3 .views-row:nth-child(3n+2),
  .block-home-casestudy.content-list-level-3 .views-row:nth-child(3n+2) {
    padding-left: 8px;
    padding-right: 8px;
  }
  /* line 410, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row:nth-child(3n),
  .block-home-frontpage.content-list-level-2 .views-row:nth-child(3n),
  .block-home-publicacions.content-list-level-2 .views-row:nth-child(3n),
  .block-home-video.content-list-level-3 .views-row:nth-child(3n),
  .block-home-casestudy.content-list-level-3 .views-row:nth-child(3n) {
    padding-left: 8px;
    padding-right: 0;
  }
  /* line 416, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row-1.barometre-2-cols,
  .block-home-frontpage.content-list-level-2 .views-row-1.barometre-2-cols,
  .block-home-publicacions.content-list-level-2 .views-row-1.barometre-2-cols,
  .block-home-video.content-list-level-3 .views-row-1.barometre-2-cols,
  .block-home-casestudy.content-list-level-3 .views-row-1.barometre-2-cols {
    width: 620px;
  }
  /* line 421, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row-1.barometre-2-cols .field-name-field-news-image,
  .block-home-barometre.content-list-level-2 .views-row-1.barometre-2-cols .field-name-field-publication-image,
  .block-home-frontpage.content-list-level-2 .views-row-1.barometre-2-cols .field-name-field-news-image,
  .block-home-frontpage.content-list-level-2 .views-row-1.barometre-2-cols .field-name-field-publication-image,
  .block-home-publicacions.content-list-level-2 .views-row-1.barometre-2-cols .field-name-field-news-image,
  .block-home-publicacions.content-list-level-2 .views-row-1.barometre-2-cols .field-name-field-publication-image,
  .block-home-video.content-list-level-3 .views-row-1.barometre-2-cols .field-name-field-news-image,
  .block-home-video.content-list-level-3 .views-row-1.barometre-2-cols .field-name-field-publication-image,
  .block-home-casestudy.content-list-level-3 .views-row-1.barometre-2-cols .field-name-field-news-image,
  .block-home-casestudy.content-list-level-3 .views-row-1.barometre-2-cols .field-name-field-publication-image {
    width: 210px;
  }
  /* line 424, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row-1.barometre-2-cols .field-name-title h2,
  .block-home-frontpage.content-list-level-2 .views-row-1.barometre-2-cols .field-name-title h2,
  .block-home-publicacions.content-list-level-2 .views-row-1.barometre-2-cols .field-name-title h2,
  .block-home-video.content-list-level-3 .views-row-1.barometre-2-cols .field-name-title h2,
  .block-home-casestudy.content-list-level-3 .views-row-1.barometre-2-cols .field-name-title h2 {
    font-size: 2em;
  }
  /* line 428, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row-2.barometre-2-cols,
  .block-home-frontpage.content-list-level-2 .views-row-2.barometre-2-cols,
  .block-home-publicacions.content-list-level-2 .views-row-2.barometre-2-cols,
  .block-home-video.content-list-level-3 .views-row-2.barometre-2-cols,
  .block-home-casestudy.content-list-level-3 .views-row-2.barometre-2-cols {
    padding-right: 0;
  }
  /* line 432, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row-1.actualitat-1-cols,
  .block-home-frontpage.content-list-level-2 .views-row-1.actualitat-1-cols,
  .block-home-publicacions.content-list-level-2 .views-row-1.actualitat-1-cols,
  .block-home-video.content-list-level-3 .views-row-1.actualitat-1-cols,
  .block-home-casestudy.content-list-level-3 .views-row-1.actualitat-1-cols {
    width: 640px;
  }
  /* line 437, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-field-news-image,
  .block-home-barometre.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-field-publication-image,
  .block-home-frontpage.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-field-news-image,
  .block-home-frontpage.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-field-publication-image,
  .block-home-publicacions.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-field-news-image,
  .block-home-publicacions.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-field-publication-image,
  .block-home-video.content-list-level-3 .views-row-1.actualitat-1-cols .field-name-field-news-image,
  .block-home-video.content-list-level-3 .views-row-1.actualitat-1-cols .field-name-field-publication-image,
  .block-home-casestudy.content-list-level-3 .views-row-1.actualitat-1-cols .field-name-field-news-image,
  .block-home-casestudy.content-list-level-3 .views-row-1.actualitat-1-cols .field-name-field-publication-image {
    width: 210px;
  }
  /* line 440, ../sass/layouts/_responsive.scss */
  .block-home-barometre.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-title h2,
  .block-home-frontpage.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-title h2,
  .block-home-publicacions.content-list-level-2 .views-row-1.actualitat-1-cols .field-name-title h2,
  .block-home-video.content-list-level-3 .views-row-1.actualitat-1-cols .field-name-title h2,
  .block-home-casestudy.content-list-level-3 .views-row-1.actualitat-1-cols .field-name-title h2 {
    font-size: 2em;
  }

  /* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
  .page-barometre-view-all:after {
    content: "";
    display: table;
    clear: both;
  }
  /* line 451, ../sass/layouts/_responsive.scss */
  .page-barometre-view-all .views-row {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    /* revisar amb IE*/
    width: 300px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
   	/*min-height: 250px;
  		border: 0;
   	vertical-align: top;
   	margin: 0;
   	zoom: 1;
   	*display: inline;
   	_height: 250px;*/
  }
  /* line 472, ../sass/layouts/_responsive.scss */
  .page-barometre-view-all .views-row .node-statistics,
  .page-barometre-view-all .views-row .node-publication {
    padding: 0 0 20px;
  }
  /* line 475, ../sass/layouts/_responsive.scss */
  .page-barometre-view-all .views-row .node-statistics > div,
  .page-barometre-view-all .views-row .node-publication > div {
    padding: 0 20px;
  }
  /* line 480, ../sass/layouts/_responsive.scss */
  .page-barometre-view-all .views-row .node-statistics .field-name-field-statistics-image,
  .page-barometre-view-all .views-row .node-statistics .field-name-field-publication-image,
  .page-barometre-view-all .views-row .node-publication .field-name-field-statistics-image,
  .page-barometre-view-all .views-row .node-publication .field-name-field-publication-image {
    padding: 0 !important;
    margin-bottom: 15px;
  }
  /* line 487, ../sass/layouts/_responsive.scss */
  .page-barometre-view-all .views-row:nth-child(3n+1) {
    /* revisar amb IE*/
    padding-right: 8px;
  }
  /* line 493, ../sass/layouts/_responsive.scss */
  .page-barometre-view-all .views-row:nth-child(3n+2) {
    /* revisar amb IE*/
    padding-left: 8px;
    padding-right: 8px;
  }
  /* line 497, ../sass/layouts/_responsive.scss */
  .page-barometre-view-all .views-row:nth-child(3n) {
    /* revisar amb IE*/
    padding-left: 8px;
    padding-right: 0;
  }

  /* home page, actualitat + butlletí */
  /* line 505, ../sass/layouts/_responsive.scss */
  .actualitat-frontpage {
    width: 640px;
    float: left;
  }

  /* line 510, ../sass/layouts/_responsive.scss */
  .block-home-newsletter,
  #block-mailchimp-signup-newsletter {
    width: 260px;
    float: left;
  }

  /* line 517, ../sass/layouts/_responsive.scss */
  .content-list-level-2.actualitat-frontpage .views-row:nth-child(3n+1) {
    padding-left: 0;
    padding-right: 20px;
  }
  /* line 521, ../sass/layouts/_responsive.scss */
  .content-list-level-2.actualitat-frontpage .views-row:nth-child(3n+2) {
    padding-left: 0;
    padding-right: 20px;
  }
  /* line 525, ../sass/layouts/_responsive.scss */
  .content-list-level-2.actualitat-frontpage .views-row {
    width: 50%;
    margin-left: 0;
    float: left;
  }

  /* line 533, ../sass/layouts/_responsive.scss */
  #block-fundacio-frontpage-actuality .total-rows-2 + .view-footer a.see-all-button {
    margin-left: 380px;
  }

  /* video a actualitat */
  /* line 539, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .node-video {
    padding: 0 0 20px !important;
  }
  /* line 543, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .node-video .field-name-title,
  .content-list-level-2 .node-video .group-data-group,
  .content-list-level-2 .node-video .field-name-body {
    padding: 0 20px;
  }

  /* publicacions i casestudy a actualitat */
  /* line 552, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .node-publication,
  .content-list-level-2 .node-casestudy {
    padding: 0 0 20px !important;
  }
  /* line 558, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .node-publication .field-name-title,
  .content-list-level-2 .node-publication .group-data-group,
  .content-list-level-2 .node-publication .field-name-body,
  .content-list-level-2 .node-publication .group-data,
  .content-list-level-2 .node-publication .field-name-node-link,
  .content-list-level-2 .node-casestudy .field-name-title,
  .content-list-level-2 .node-casestudy .group-data-group,
  .content-list-level-2 .node-casestudy .field-name-body,
  .content-list-level-2 .node-casestudy .group-data,
  .content-list-level-2 .node-casestudy .field-name-node-link {
    padding: 0 20px;
  }
  /* line 561, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .node-publication img,
  .content-list-level-2 .node-casestudy img {
    margin-bottom: 15px;
  }

  /* home de canal video i casestudy */
  /* line 569, ../sass/layouts/_responsive.scss */
  .block-home-video,
  .block-home-casestudy {
    		/*&.content-list-level-3 {
    
    			.views-row {
    				width: 300px;
    				float: left;
    				@include box-sizing(content-box);
    			}
    			.views-row-1,
    			.views-row-4 {
    				padding-right: 10px;
    			}
    			.views-row-2,
    			.views-row-5 {
    				padding-left: 10px;
    				padding-right: 10px;
    			}
    			.views-row-3,
    			.views-row-6 {
    				padding-left: 10px;
    				padding-right: 0;
    			}
    
    			.views-row > div  {
    				padding: 0;
    			}
    			.field-name-title,
    			.group-data {
    				padding: 0 20px;
    			}
    		}*/
  }
  /* line 573, ../sass/layouts/_responsive.scss */
  .block-home-video.content-list-level-1 .field-name-field-video-media,
  .block-home-video.content-list-level-1 .field-name-field-casestudy-media,
  .block-home-casestudy.content-list-level-1 .field-name-field-video-media,
  .block-home-casestudy.content-list-level-1 .field-name-field-casestudy-media {
    padding: 0;
  }

  /* footer top */
  /* line 613, ../sass/layouts/_responsive.scss */
  .region-footer-first {
    width: 200px;
    float: left;
    padding-right: 20px;
    margin-right: 20px;
  }

  /* line 619, ../sass/layouts/_responsive.scss */
  .region-footer-second {
    width: 200px;
    float: left;
    padding-right: 20px;
    margin-right: 20px;
  }

  /* line 625, ../sass/layouts/_responsive.scss */
  .region-footer-third {
    width: 200px;
    float: left;
    padding-right: 20px;
    margin-right: 20px;
  }

  /* line 631, ../sass/layouts/_responsive.scss */
  .region-footer-fourth {
    width: 200px;
    float: left;
    padding-right: 20px;
  }

  /* footer bottom */
  /* line 638, ../sass/layouts/_responsive.scss */
  .footer-bottom-1 {
    width: 220px;
    float: left;
    margin-right: 20px;
  }

  /* line 643, ../sass/layouts/_responsive.scss */
  .footer-bottom-2 {
    width: 300px;
    float: left;
    margin-right: 20px;
  }

  /* line 648, ../sass/layouts/_responsive.scss */
  .footer-bottom-3 {
    width: 380px;
    float: left;
  }

  /* line 652, ../sass/layouts/_responsive.scss */
  .logos-entitats li {
    float: left;
    margin-right: 10px;
  }

  /* line 656, ../sass/layouts/_responsive.scss */
  .logos-entitats li.separat {
    float: left;
    margin-right: 0px;
    margin-left: 35px;
  }

  /* capçalera fixa */
  /* line 663, ../sass/layouts/_responsive.scss */
  #header-region {
    position: fixed;
    height: 112px;
    top: 0;
    width: 100%;
    z-index: 900;
    background-image: url("../assets/background.jpg");
  }

  /* line 671, ../sass/layouts/_responsive.scss */
  #main-container {
    margin-top: 120px;
  }

  /* line 674, ../sass/layouts/_responsive.scss */
  .front #main-container {
    margin-top: 148px;
  }

  /* Pàgines finals amb DS (per exemple notícies)  i webform */
  /* line 689, ../sass/layouts/_responsive.scss */
  .node-type-news .imgcaption,
  .node-type-statistics .imgcaption,
  .node-type-project .imgcaption,
  .node-type-publication .imgcaption,
  .node-type-video .imgcaption,
  .node-type-casestudy .imgcaption {
    max-width: 690px;
    /* provisional ? */
  }
  /* line 694, ../sass/layouts/_responsive.scss */
  .node-type-news .group-left,
  .node-type-news .group-one-column > .group-left,
  .node-type-statistics .group-left,
  .node-type-statistics .group-one-column > .group-left,
  .node-type-project .group-left,
  .node-type-project .group-one-column > .group-left,
  .node-type-publication .group-left,
  .node-type-publication .group-one-column > .group-left,
  .node-type-video .group-left,
  .node-type-video .group-one-column > .group-left,
  .node-type-casestudy .group-left,
  .node-type-casestudy .group-one-column > .group-left {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* revisar amb IE*/
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
    padding-right: 20px;
  }
  /* line 700, ../sass/layouts/_responsive.scss */
  .node-type-news .group-right,
  .node-type-statistics .group-right,
  .node-type-project .group-right,
  .node-type-publication .group-right,
  .node-type-video .group-right,
  .node-type-casestudy .group-right {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* revisar amb IE*/
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }
}
@media all and (min-width: 600px) and (max-width: 959px) {
  /* footer top */
  /* line 712, ../sass/layouts/_responsive.scss */
  .region-footer-first {
    width: 48%;
    float: left;
    padding-right: 1%;
    margin-right: 1%;
  }

  /* line 718, ../sass/layouts/_responsive.scss */
  .region-footer-second {
    width: 48%;
    float: left;
    padding-left: 1%;
    margin-left: 1%;
  }

  /* line 724, ../sass/layouts/_responsive.scss */
  .region-footer-third {
    width: 48%;
    float: left;
    padding-right: 1%;
    margin-right: 1%;
  }

  /* line 730, ../sass/layouts/_responsive.scss */
  .region-footer-fourth {
    width: 48%;
    float: left;
    padding-left: 1%;
    margin-left: 1%;
  }
}
@media all and (max-width: 767px) {
  /* web forms */
  /* line 745, ../sass/layouts/_responsive.scss */
  .node-type-webform .imgcaption {
    max-width: 100%;
  }
  /* line 749, ../sass/layouts/_responsive.scss */
  .node-type-webform .group-left {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  /* line 755, ../sass/layouts/_responsive.scss */
  .node-type-webform .group-right {
    width: 100%;
    float: none;
  }
}
@media all and (min-width: 769px) {
  /* va al principi de min-width:960 */
  /* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
  .content-list-level-2:after {
    content: "";
    display: table;
    clear: both;
  }
  /* line 770, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .views-row {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* revisar amb IE*/
  }
  /* line 776, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .views-row:nth-child(odd) {
    /* revisar amb IE*/
    padding-right: 10px;
  }
  /* line 779, ../sass/layouts/_responsive.scss */
  .content-list-level-2 .views-row:nth-child(even) {
    /* revisar amb IE*/
    padding-left: 10px;
  }

  /* home de projectes */
  /* line 789, ../sass/layouts/_responsive.scss */
  .block-home-projectes.content-list-level-3 .views-row {
    width: 33.3%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* revisar amb IE*/
  }
  /* line 794, ../sass/layouts/_responsive.scss */
  .block-home-projectes.content-list-level-3 .views-row-1 {
    padding-right: 10px;
  }
  /* line 797, ../sass/layouts/_responsive.scss */
  .block-home-projectes.content-list-level-3 .views-row-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 801, ../sass/layouts/_responsive.scss */
  .block-home-projectes.content-list-level-3 .views-row-3 {
    padding-left: 10px;
    padding-right: 0;
  }
  /* line 806, ../sass/layouts/_responsive.scss */
  .block-home-projectes.content-list-level-3 .views-row > div {
    padding: 0;
  }
}
@media all and (min-width: 480px) and (max-width: 959px) {
  /* line 825, ../sass/layouts/_responsive.scss */
  .node-type-news .group-left,
  .node-type-statistics .group-left,
  .node-type-project .group-left {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* revisar amb IE*/
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
    padding-right: 20px;
  }
  /* line 831, ../sass/layouts/_responsive.scss */
  .node-type-news .group-right,
  .node-type-statistics .group-right,
  .node-type-project .group-right {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* revisar amb IE*/
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /* view mode per a estadistiques - home */
  /* line 846, ../sass/layouts/_responsive.scss */
  .field-name-field-statistics-image,
  .field-name-field-publication-image,
  .content-list-level-3 .field-name-field-video-media,
  .content-list-level-2 .field-name-field-video-media,
  .content-list-level-3 .field-name-field-casestudy-media,
  .content-list-level-2 .field-name-field-casestudy-media,
  .field-name-field-publication-image {
    float: left;
    margin-right: 4%;
    max-width: 56%;
  }

  /* line 851, ../sass/layouts/_responsive.scss */
  .group-info {
    float: left;
    max-width: 40%;
  }
}
/* elements de navegació del peu de pàgina */
/* poden ser de 3 0 4 elements */
/* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.region-content-bottom:after {
  content: "";
  display: table;
  clear: both;
}

/* line 875, ../sass/layouts/_responsive.scss */
.bottom-nav-2-1,
.bottom-nav-2-2,
.bottom-nav-3-1,
.bottom-nav-3-2,
.bottom-nav-3-3,
.bottom-nav-4-1,
.bottom-nav-4-2,
.bottom-nav-4-3,
.bottom-nav-4-3-last,
.bottom-nav-4-4 {
  margin-bottom: 20px;
  position: relative;
}

@media all and (min-width: 960px) {
  /* 2 elements */
  /* line 883, ../sass/layouts/_responsive.scss */
  .bottom-nav-2-1 {
    width: 460px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
  }

  /* line 890, ../sass/layouts/_responsive.scss */
  .bottom-nav-2-2 {
    width: 460px;
    float: left;
    margin-bottom: 20px;
    position: relative;
  }

  /* 3 elements */
  /* line 897, ../sass/layouts/_responsive.scss */
  .bottom-nav-3-1 {
    width: 300px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  /* line 903, ../sass/layouts/_responsive.scss */
  .bottom-nav-3-2 {
    width: 300px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  /* line 909, ../sass/layouts/_responsive.scss */
  .bottom-nav-3-3 {
    width: 300px;
    float: left;
    margin-bottom: 20px;
  }

  /* 4 elements */
  /* line 915, ../sass/layouts/_responsive.scss */
  .bottom-nav-4-1 {
    width: 220px;
    float: left;
    margin-right: 20px;
  }

  /* line 920, ../sass/layouts/_responsive.scss */
  .bottom-nav-4-2 {
    width: 220px;
    float: left;
    margin-right: 20px;
  }

  /* line 925, ../sass/layouts/_responsive.scss */
  .bottom-nav-4-3 {
    width: 220px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  /* line 931, ../sass/layouts/_responsive.scss */
  .bottom-nav-4-3-last {
    width: 220px;
    float: left;
    margin-bottom: 20px;
  }

  /* line 936, ../sass/layouts/_responsive.scss */
  .bottom-nav-4-4 {
    width: 220px;
    float: left;
    margin-bottom: 20px;
  }

  /* line 942, ../sass/layouts/_responsive.scss */
  .bottom-nav-full {
    width: 700px;
    float: left;
    margin-bottom: 20px;
  }
}
/* llistat persones a Equip, Patronat, etc...*/
@media all and (min-width: 480px) {
  /* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
  .person-list-block .view-content:after {
    content: "";
    display: table;
    clear: both;
  }
  /* line 957, ../sass/layouts/_responsive.scss */
  .person-list-block .view-content ul {
    margin: 0;
    padding: 0;
  }
  /* line 961, ../sass/layouts/_responsive.scss */
  .person-list-block .view-content li {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
  }

  /* line 969, ../sass/layouts/_responsive.scss */
  .view-display-id-attachment_1,
  .view-display-id-attachment_2,
  .view-display-id-attachment_3 {
    margin-bottom: 20px;
  }
  /* line 973, ../sass/layouts/_responsive.scss */
  .view-display-id-attachment_1 .view-header,
  .view-display-id-attachment_2 .view-header,
  .view-display-id-attachment_3 .view-header {
    margin-bottom: 20px;
  }
  /* line 976, ../sass/layouts/_responsive.scss */
  .view-display-id-attachment_1 li,
  .view-display-id-attachment_2 li,
  .view-display-id-attachment_3 li {
    width: 468px !important;
    text-align: left !important;
    margin-bottom: 0 !important;
  }
  /* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
  .view-display-id-attachment_1 li:after,
  .view-display-id-attachment_2 li:after,
  .view-display-id-attachment_3 li:after {
    content: "";
    display: table;
    clear: both;
  }
  /* line 982, ../sass/layouts/_responsive.scss */
  .view-display-id-attachment_1 li div,
  .view-display-id-attachment_2 li div,
  .view-display-id-attachment_3 li div {
    float: left;
    width: auto;
    margin-right: 5px;
  }
  /* line 987, ../sass/layouts/_responsive.scss */
  .view-display-id-attachment_1 li .field-name-field-person-appointment,
  .view-display-id-attachment_2 li .field-name-field-person-appointment,
  .view-display-id-attachment_3 li .field-name-field-person-appointment {
    font-size: 1em;
    font-family: "Fauna One", "Georgia", "Times New Roman", serif;
    color: #231f20;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 40, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 45, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 66, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 81, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 88, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 93, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 98, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 3.1em;
  line-height: 1.45161em;
}

/* The link around the name of the website. */
/* line 106, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 112, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 118, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 123, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 128, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 136, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 140, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 151, ../sass/components/_misc.scss */
#navigation .links_,
#navigation .menu_ {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 156, ../sass/components/_misc.scss */
#navigation .links_ li,
#navigation .menu_ li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 170, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 174, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 190, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 197, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 212, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 221, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 231, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 234, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 239, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 245, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 250, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 255, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 265, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 275, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 279, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 292, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 301, ../sass/components/_misc.scss */
.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

/* line 307, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 317, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 321, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 345, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 352, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 358, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 367, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 372, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 400, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 404, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 412, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 419, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 422, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 425, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 440, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 445, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  list-style-type: none;
  background-image: none;
}

/* line 451, ../sass/components/_misc.scss */
.pager-current, .pager a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding-top: 3px;
  padding-right: 10px;
  padding-bottom: 2px;
  padding-left: 10px;
  font-size: 0.8em;
}

/* line 466, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 471, ../sass/components/_misc.scss */
.pager-current {
  background-color: #bf2d36;
  color: #FFF;
}

/* Fundacio */
/* line 481, ../sass/components/_misc.scss */
.pager a {
  background-color: #dedcd9;
}
/* line 485, ../sass/components/_misc.scss */
.pager a:hover {
  background-color: #bf2d36;
  color: #FFF;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/**
 * Menus.
 */
/* line 504, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 511, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 518, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 527, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 537, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 548, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 576, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 581, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 587, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 590, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 597, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 607, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 612, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 619, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 626, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 631, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 638, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 644, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 649, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* Password confirmation. */
/* line 661, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 666, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 678, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 685, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 689, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 693, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 701, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 706, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 709, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 714, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 719, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 734, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 740, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 745, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 756, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 767, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 776, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 783, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 795, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 798, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 801, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 810, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 819, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 822, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 828, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1442245929');
}

/* Fundació CAT */
/* line 834, ../sass/components/_misc.scss */
.content-type-home-cartell {
  display: none;
}

/* line 838, ../sass/components/_misc.scss */
.actualitat-frontpage .content-type-home-cartell,
.block-home-actualitat .content-type-home-cartell {
  display: block;
}

/* line 855, ../sass/components/_misc.scss */
.cartell,
.slide-destaquem .block-title,
.block-home-newsletter .block-title,
.actualitat-frontpage .content-type-home-cartell,
.block-home-actualitat .content-type-home-cartell,
.block-home-video .block-title,
.block-home-projectes .block-title,
.block-home-actualitat .block-title,
.block-home-press .block-title,
.block-home-clipping .block-title,
.block-cercador-domini .block-title,
.domini-cat .content-list-level-1 h2.block-title,
.domini-frontpage .content-type-home-cartell,
#block-mailchimp-signup-newsletter .block-title {
  color: #FFF !important;
  background-color: #bf2d36;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 0.9em;
  text-transform: uppercase;
  text-align: center !important;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  position: absolute;
  display: block;
  height: 10px;
  padding-left: 15px;
  top: -16px;
  line-height: 12px;
  z-index: 450;
  font-weight: normal;
  /* centrar l'element */
  width: 130px;
  left: 50%;
  margin-left: -76px;
  margin-top: auto;
}

/* line 881, ../sass/components/_misc.scss */
.block-home-press .block-title,
.block-home-clipping .block-title,
.block-cercador-domini .block-title {
  width: 240px;
  margin-left: -136px;
}

/* line 898, ../sass/components/_misc.scss */
.cartell .angle,
.slide-destaquem .block-title .angle,
.block-home-newsletter .block-title .angle,
#block-mailchimp-signup-newsletter .block-title .angle,
.actualitat-frontpage .content-type-home-cartell .angle,
.block-home-actualitat .content-type-home-cartell .angle,
.block-home-video .block-title .angle,
.block-home-projectes .block-title .angle,
.block-home-actualitat .block-title .angle,
.block-home-press .block-title .angle,
.block-home-clipping .block-title .angle,
.block-cercador-domini .block-title .angle,
.domini-cat h2.block-title .angle,
.domini-frontpage .content-type-home-cartell .angle {
  background-image: url("../assets/cartellet-angle.png");
  background-repeat: no-repeat;
  background-position: left top;
  display: block;
  height: 16px;
  width: 16px;
  position: absolute;
  left: -16px;
  top: 0px;
  z-index: 99;
}

/* line 917, ../sass/components/_misc.scss */
#block-block-8 {
  margin-bottom: 30px;
}

/* line 932, ../sass/components/_misc.scss */
.slide-destaquem,
.block-home-newsletter,
#block-mailchimp-signup-newsletter,
.actualitat-frontpage .views-row,
.block-home-actualitat .views-row,
.block-home-video,
.block-home-projectes,
.block-home-actualitat,
.block-home-press,
.block-home-clipping,
.block-cercador-domini,
.block-home-casestudy,
.view-frontpage-domini .views-row {
  position: relative;
}

/* estils del mòdul de cookies */
/* line 938, ../sass/components/_misc.scss */
.sliding-popup-bottom {
  background: rgba(0, 0, 0, 0.8) !important;
}

/* line 941, ../sass/components/_misc.scss */
#sliding-popup .popup-content #popup-buttons button {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  background-color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-shadow: none;
}

/* line 957, ../sass/components/_misc.scss */
#sliding-popup .popup-content #popup-buttons button:hover {
  background: none;
  background-color: #dfdfdf;
}

/* line 962, ../sass/components/_misc.scss */
#sliding-popup .popup-content #popup-text p {
  font-size: 0.9em;
}

/* line 967, ../sass/components/_misc.scss */
.agree-button,
.find-more-button {
  font-size: 0.8em;
}

/* line 971, ../sass/components/_misc.scss */
.popup-content.info {
  width: inherit !important;
}

/* estils de les taules */
/* line 979, ../sass/components/_misc.scss */
.field-name-body table {
  border: none;
}
/* line 982, ../sass/components/_misc.scss */
.field-name-body table b, .field-name-body table strong {
  font-weight: normal;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 991, ../sass/components/_misc.scss */
.field-name-body td {
  border: 2px solid #f3f2ed;
  text-align: center;
  line-height: 1.2em;
  padding: 10px;
}
/* line 998, ../sass/components/_misc.scss */
.field-name-body td p {
  margin: 0;
}

/* line 1004, ../sass/components/_misc.scss */
.section-domini .field-name-body td {
  padding: 10px 0;
}

/* line 1008, ../sass/components/_misc.scss */
.ankor {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 35, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 57, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
/* superfish menú */
/* line 3, ../sass/_superfish.scss */
.sf-menu.sf-style-white {
  float: right;
  margin-bottom: 0;
  padding: 0;
}

/* line 8, ../sass/_superfish.scss */
.sf-menu.sf-style-white.sf-navbar {
  width: 100%;
}

/* line 11, ../sass/_superfish.scss */
.sf-menu.sf-style-white ul {
  padding-left: 0;
}

/* line 15, ../sass/_superfish.scss */
.sf-menu.sf-style-white span.nolink,
.sf-menu.sf-style-white a {
  border: none;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  display: block;
  height: 16px;
  /*padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height:1.2em;*/
  padding: 12px 10px;
  line-height: 1.1em;
}

/* line 33, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-depth-1 a.active {
  background: #444;
}

/* line 36, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.first.sf-depth-1 a.active {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 39, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-depth-2 a.active {
  color: #231f20;
  background: #fff;
}

/* line 43, ../sass/_superfish.scss */
.sf-menu.sf-style-white a.sf-with-ul {
  padding-right: 2.25em;
}

/* line 46, ../sass/_superfish.scss */
.sf-menu.sf-style-white.rtl a.sf-with-ul {
  padding-left: 2.25em;
  padding-right: 1em;
}

/* line 50, ../sass/_superfish.scss */
.sf-menu.sf-style-white.sf-navbar a {
  border: 0;
}

/* line 53, ../sass/_superfish.scss */
.sf-menu.sf-style-white span.sf-description {
  color: #555555;
  display: block;
  font-size: 0.8em;
  line-height: 1.5em;
  margin: 5px 0 0 5px;
  padding: 0;
}

/* line 62, ../sass/_superfish.scss */
.sf-menu.sf-style-white li,
.sf-menu.sf-style-white.sf-navbar {
  background: #777;
  border-right: 1px solid #6c6868;
}

/* line 69, ../sass/_superfish.scss */
#superfish-1.sf-menu.sf-style-white li.sf-item-5, #superfish-1.sf-menu.sf-style-white li.sf-item-6 {
  /* last, és Domini */
  margin-right: 6px;
  border-right: none;
}
/* line 72, ../sass/_superfish.scss */
#superfish-1.sf-menu.sf-style-white li.sf-item-5 a, #superfish-1.sf-menu.sf-style-white li.sf-item-6 a {
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 77, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-item-6.sf-depth-1 {
  /* last, és Domini */
  background: #bf2d36;
}

/* line 80, ../sass/_superfish.scss */
.sf-menu.sf-style-white li li {
  background: #fff;
  border-right: none;
  border-bottom: 1px solid #ccc;
}

/* line 85, ../sass/_superfish.scss */
.sf-menu.sf-style-white li li li {
  background: #fff;
  border-right: none;
  border-bottom: 1px solid #ccc;
}

/* line 97, ../sass/_superfish.scss */
.sf-menu.sf-style-white li:hover,
.sf-menu.sf-style-white li:hover span.nolink,
.sf-menu.sf-style-white li.sfHover,
.sf-menu.sf-style-white li.active a,
.sf-menu.sf-style-white a:focus,
.sf-menu.sf-style-white a:hover,
.sf-menu.sf-style-white a:active,
.sf-menu.sf-style-white.sf-navbar li li {
  background: #fff;
  color: #7c7c7c;
}

/* line 101, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sfHover a {
  background: #fff;
  color: #7c7c7c;
}

/* line 105, ../sass/_superfish.scss */
.sf-menu.sf-style-white a.sf-depth-2:hover {
  color: #231f20;
}

/* line 108, ../sass/_superfish.scss */
.sf-menu.sf-style-white.sf-navbar li ul {
  background-color: #fff;
}

/* line 111, ../sass/_superfish.scss */
.sf-menu.sf-style-white.sf-navbar li ul li ul {
  background-color: transparent;
}

/* line 121, ../sass/_superfish.scss */
.sf-menu.sf-style-white ul.sf-megamenu li.sf-megamenu-wrapper ol,
.sf-menu.sf-style-white ul.sf-megamenu li.sf-megamenu-wrapper ol li {
  margin: 0;
  padding: 0;
}

/* line 125, ../sass/_superfish.scss */
.sf-menu.sf-style-white ul.sf-megamenu li.sf-megamenu-wrapper a.menuparent {
  font-weight: bold;
}

/* line 128, ../sass/_superfish.scss */
.sf-menu.sf-style-white ul.sf-megamenu li.sf-megamenu-wrapper ol li.sf-megamenu-column {
  display: inline;
  float: left;
  width: 12em;
}

/* line 133, ../sass/_superfish.scss */
.sf-menu.sf-style-white.rtl ul.sf-megamenu li.sf-megamenu-wrapper ol li.sf-megamenu-column {
  float: right;
}

/* line 136, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-1 ul.sf-megamenu {
  width: 12em;
}

/* line 139, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-2 ul.sf-megamenu {
  width: 24em;
}

/* line 142, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-3 ul.sf-megamenu {
  width: 36em;
}

/* line 145, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-4 ul.sf-megamenu {
  width: 48em;
}

/* line 148, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-5 ul.sf-megamenu {
  width: 60em;
}

/* line 151, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-6 ul.sf-megamenu {
  width: 72em;
}

/* line 154, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-7 ul.sf-megamenu {
  width: 84em;
}

/* line 157, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-8 ul.sf-megamenu {
  width: 96em;
}

/* line 160, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-9 ul.sf-megamenu {
  width: 108em;
}

/* line 163, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-parent-children-10 ul.sf-megamenu {
  width: 120em;
}

/* Fundacio */
/* line 168, ../sass/_superfish.scss */
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  left: 0;
  top: 36px;
}

/* line 172, ../sass/_superfish.scss */
li.sf-item-1.sf-depth-1 {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 175, ../sass/_superfish.scss */
li.sf-item-5.sf-depth-1 {
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 179, ../sass/_superfish.scss */
li.sf-item-6.sf-depth-1,
li.active-trail.sf-item-6.sf-depth-1 {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 184, ../sass/_superfish.scss */
.sf-menu.sf-style-white a.sf-depth-2,
.sf-menu.sf-style-white a.sf-depth-3 {
  padding: 6px 10px;
}

/* line 187, ../sass/_superfish.scss */
.sf-menu.sf-style-white li.sf-depth-3 {
  margin-left: -3px;
  border-bottom: none !important;
}

/* line 191, ../sass/_superfish.scss */
.sf-menu.sf-style-white li li.last.sf-depth-2 {
  border-bottom: none;
  background: none;
}
/* line 196, ../sass/_superfish.scss */
.sf-menu.sf-style-white li li.last.sf-depth-2 a {
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

@media all and (max-width: 850px) {
  /* line 203, ../sass/_superfish.scss */
  #navigation {
    width: 92%;
  }
  /* line 205, ../sass/_superfish.scss */
  #navigation .sf-menu.sf-style-white span.nolink, #navigation .sf-menu.sf-style-white a {
    padding: 10px 5px;
  }
}
/* ========== END PROJECTES ====== */
/* line 3, ../sass/_projectes.scss */
.toggle-view {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 940px;
}

/* line 10, ../sass/_projectes.scss */
.toggle-view li {
  position: relative;
  cursor: pointer;
}

/* line 14, ../sass/_projectes.scss */
.content-list-level-historics .toggle-view li {
  border-bottom: 1px solid #ccc;
}

/* line 18, ../sass/_projectes.scss */
.toggle-view h3 {
  margin: 0;
  text-align: left;
  float: left;
}

/* line 24, ../sass/_projectes.scss */
.toggle-view span {
  position: absolute;
  right: 11px;
  top: 13px;
  color: #ccc;
}

/* line 31, ../sass/_projectes.scss */
.toggle-view .panel {
  display: none;
  clear: both;
  margin-top: 10px;
  margin-right: 0;
  margin-bottom: 0px;
  margin-left: 0;
  float: left;
}

/* line 41, ../sass/_projectes.scss */
.toggle-view p.descripcio {
  float: left;
  margin-left: 15px;
  margin-top: 5px;
  margin-bottom: 0px;
}

/* line 48, ../sass/_projectes.scss */
.toggle-view span .open {
  background-image: url(../assets/open-icon.png);
  background-repeat: no-repeat;
  background-position: right center;
  display: block;
  height: 30px;
  width: 110px;
  text-align: right;
  padding-top: 10px;
  padding-right: 40px;
}

/* line 60, ../sass/_projectes.scss */
.toggle-view span .close {
  background-image: url(../assets/close-icon.png);
  background-repeat: no-repeat;
  background-position: right center;
  display: block;
  height: 30px;
  width: 110px;
  text-align: right;
  padding-top: 10px;
  padding-right: 40px;
}

/* line 72, ../sass/_projectes.scss */
.toggle-view li:hover {
  background-color: #FFF;
}

/* line 76, ../sass/_projectes.scss */
.box.grey {
  background-color: rgba(35, 31, 32, 0.1);
}

/* line 80, ../sass/_projectes.scss */
.box {
  float: left;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* line 88, ../sass/_projectes.scss */
.item {
  background-color: #FFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

/* line 97, ../sass/_projectes.scss */
.columns.twelve {
  width: 900px;
}

/*General Mosaic Styles*/
/* line 102, ../sass/_projectes.scss */
.mosaic-block {
  float: left;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  margin: 0px 0px 15px 0px;
  padding: 0px !important;
  background: white url(../img/progress.gif) no-repeat center center;
  border: none;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* line 114, ../sass/_projectes.scss */
.columns.six.item .mosaic-block {
  width: 460px;
}

/* line 117, ../sass/_projectes.scss */
.columns.twelve.item .mosaic-block {
  width: 940px;
}

/* line 121, ../sass/_projectes.scss */
.mosaic-backdrop {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
}

/* line 130, ../sass/_projectes.scss */
.mosaic-overlay {
  display: none;
  z-index: 5;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}

/*** End Animation Styles ***/
/* line 140, ../sass/_projectes.scss */
.mosaic-block .mosaic-overlay {
  text-decoration: none;
  text-align: center;
}

/* line 147, ../sass/_projectes.scss */
.view-projects.view-display-id-block_1 h3,
.view-projects.view-display-id-block_2 h3,
.view-projects.view-display-id-block h3 {
  margin-bottom: 0;
  text-align: center;
}

/* line 154, ../sass/_projectes.scss */
.view-projects.view-display-id-block_1 h3 a,
.view-projects.view-display-id-block_2 h3 a,
.view-projects.view-display-id-block h3 a {
  text-decoration: none;
}

/* line 160, ../sass/_projectes.scss */
.view-projects.view-display-id-block_1 h3 a:hover,
.view-projects.view-display-id-block_2 h3 a:hover,
.view-projects.view-display-id-block h3 a:hover {
  text-decoration: underline;
}

/* line 166, ../sass/_projectes.scss */
.view-projects.view-display-id-block_1 .field-name-title,
.view-projects.view-display-id-block_2 .field-name-title,
.view-projects.view-display-id-block .field-name-title {
  padding: 0px 0px 20px 0px;
}

/* line 170, ../sass/_projectes.scss */
.block-home-projectes.content-list-level-3 .views-row > div {
  /*padding: 20px;*/
  padding: 0 !important;
  background-color: rgba(35, 31, 32, 0.1);
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/* line 178, ../sass/_projectes.scss */
.content-list-level-1 .views-row > div {
  padding-bottom: 0px;
}

/* line 182, ../sass/_projectes.scss */
.mosaic-block .mosaic-overlay .details {
  margin-top: 50px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

/*** Custom Animation Styles (You can remove/add any styles below) ***/
/* line 190, ../sass/_projectes.scss */
.fade .mosaic-overlay {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
  filter: alpha(opacity=0);
  background-color: #FFF;
}

/* ========== END PROJECTES ====== */
/* ========== Registradors ======== */
/* line 201, ../sass/_projectes.scss */
.view-atributs .view-content {
  display: none;
}

/**/
/* aquest estils venen de la Rut */
/* line 3, ../sass/_disseny.scss */
.sidebar ul li {
  line-height: 1.2em;
  margin-bottom: 10px;
}

/* line 9, ../sass/_disseny.scss */
.sidebar h4,
.sidebar h2 {
  font-size: 0.85em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #7b7979;
  margin-top: 25px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

/* line 18, ../sass/_disseny.scss */
.sidebar .block {
  margin-bottom: 20px;
}

/* line 21, ../sass/_disseny.scss */
.sidebar .links {
  list-style-position: inside;
  list-style-image: url("../assets/link.png");
}

/* line 25, ../sass/_disseny.scss */
.sidebar .links a {
  color: #6a6a6a;
  text-decoration: none;
}

/* line 29, ../sass/_disseny.scss */
.sidebar .links a:hover {
  text-decoration: underline;
}

/* line 32, ../sass/_disseny.scss */
.sidebar .links.out {
  list-style-image: url("../assets/link-out.png");
  display: inline;
}

/* line 36, ../sass/_disseny.scss */
.sidebar .button {
  max-width: 90%;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  clear: both;
}

/* line 45, ../sass/_disseny.scss */
.sidebar .icon-small {
  float: left;
  width: 60px;
  margin-right: 5px;
  height: 60px;
}

/* line 51, ../sass/_disseny.scss */
.sidebar p {
  line-height: 1.2em;
}

/* line 54, ../sass/_disseny.scss */
.sidebar .exit {
  clear: both;
  float: left;
  margin-right: 5px;
  margin-bottom: 10px;
}

/* line 60, ../sass/_disseny.scss */
.sidebar .exit img {
  float: left;
  margin-right: 5px;
}

/* line 64, ../sass/_disseny.scss */
.sidebar .exit p {
  float: left;
}

/* line 67, ../sass/_disseny.scss */
a.button {
  background-color: #dedcd9;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  text-decoration: none;
  padding-top: 3px;
  padding-right: 10px;
  padding-bottom: 2px;
  padding-left: 10px;
}

/* line 76, ../sass/_disseny.scss */
a.button:hover, a.button.current {
  background-color: #bf2d36;
  color: #FFF;
  text-decoration: none;
}

/* ajuts - guanyadors */
/* line 84, ../sass/_disseny.scss */
.columns {
  float: left;
  margin-right: 20px;
  position: relative;
}

/* line 90, ../sass/_disseny.scss */
.columns.twelve {
  width: 940px;
}

/* line 93, ../sass/_disseny.scss */
.columns.twelve.item {
  width: 900px;
}

/* line 96, ../sass/_disseny.scss */
.columns.nine {
  width: 700px;
}

/* line 99, ../sass/_disseny.scss */
.columns.nine.item {
  width: 660px;
}

/* line 102, ../sass/_disseny.scss */
.columns.eight {
  width: 620px;
}

/* line 105, ../sass/_disseny.scss */
.columns.eight.item {
  width: 580px;
}

/* line 108, ../sass/_disseny.scss */
.columns.six {
  width: 460px;
}

/* line 111, ../sass/_disseny.scss */
.columns.six.item {
  width: 420px;
}

/* line 114, ../sass/_disseny.scss */
.columns.four {
  width: 300px;
}

/* line 117, ../sass/_disseny.scss */
.columns.four.item {
  width: 260px;
}

/* line 120, ../sass/_disseny.scss */
.columns.three {
  width: 220px;
}

/* line 123, ../sass/_disseny.scss */
.columns.threehalf.item {
  width: 300px;
}

/* line 126, ../sass/_disseny.scss */
.columns.last {
  margin-right: 0px;
}

/* line 129, ../sass/_disseny.scss */
.item {
  background-color: #FFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

/* line 136, ../sass/_disseny.scss */
aside li,
aside ul {
  margin: 0;
  padding: 0;
}

/* line 141, ../sass/_disseny.scss */
aside h4 {
  font-size: 0.85em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #7b7979;
  margin-top: 25px;
  line-height: 1.4em;
  margin-bottom: 10px;
}

/* line 150, ../sass/_disseny.scss */
aside ul li {
  line-height: 1.2em;
  margin-bottom: 10px;
}

/* line 154, ../sass/_disseny.scss */
.links.out {
  list-style-image: url("../assets/link-out.png");
}

/* line 157, ../sass/_disseny.scss */
.links {
  list-style-position: inside;
  list-style-image: url("../assets/link.png");
}

/* line 161, ../sass/_disseny.scss */
.links a {
  color: #6a6a6a;
  text-decoration: none;
}
/* line 164, ../sass/_disseny.scss */
.links a:hover {
  text-decoration: underline;
}

/* line 168, ../sass/_disseny.scss */
aside .icon-small {
  float: left;
  width: 60px;
  margin-right: 5px;
  height: 60px;
}

/* line 174, ../sass/_disseny.scss */
aside p {
  line-height: 1.2em;
}

/* line 177, ../sass/_disseny.scss */
aside .columns.three .button {
  width: 200px;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  clear: both;
}

/* line 186, ../sass/_disseny.scss */
.destacada.icon {
  margin-top: -10px;
  margin-left: -10px;
  margin-bottom: 15px;
}

/* line 192, ../sass/_disseny.scss */
a.boto-fletxa {
  text-transform: uppercase;
  display: block;
  height: 27px;
  width: 275px;
  color: #FFF !important;
  text-decoration: none;
  background-image: url("../assets/boto-banner.png");
  background-repeat: no-repeat;
  background-position: left top;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  padding-top: 8px;
  text-align: center;
}

/* line 207, ../sass/_disseny.scss */
a.boto-fletxa:hover {
  color: #231f20 !important;
}

/* historia premis */
/* line 213, ../sass/_disseny.scss */
.columns.premi {
  background-image: url("../assets/premi.png");
  background-repeat: no-repeat;
  background-position: center top;
  text-align: center;
  padding-top: 30px;
  margin-top: 20px;
}

/* line 221, ../sass/_disseny.scss */
.columns.six.premi {
  width: 48%;
  margin-right: 1%;
  margin-left: 1%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 228, ../sass/_disseny.scss */
.atributs-tecnics h6 {
  margin-bottom: 0;
}

/* estils de base */
/* treu el border de focus per a Chrome */
/* line 4, ../sass/_fundacio.scss */
*:focus {
  outline: none;
}

/* modifica el gif ajax de Drupal */
/* line 9, ../sass/_fundacio.scss */
.ajax-progress .throbber {
  background: transparent url("../assets/ajax-loader.gif") no-repeat 0px 0px;
  float: left;
  height: 16px;
  width: 16px;
  margin: 2px;
}

/* Gestió de l'admin menu */
/* line 18, ../sass/_fundacio.scss */
html body.admin-menu {
  padding-bottom: 29px;
}
/* line 20, ../sass/_fundacio.scss */
html body.admin-menu #header-region {
  top: 29px;
}

/* Drupal, per a treure l'espai a sota de les imatges */
/* line 26, ../sass/_fundacio.scss */
.field-type-image img {
  display: block;
}

/* line 32, ../sass/_fundacio.scss */
#logo {
  float: left;
  margin-top: 0px;
  width: 10%;
}

/* line 38, ../sass/_fundacio.scss */
#name-and-slogan {
  background-color: rgba(35, 31, 32, 0.1);
  width: 100%;
  margin-top: 15px;
  padding: 6px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* line 46, ../sass/_fundacio.scss */
#site-slogan {
  padding: 0 10px;
}

/* line 49, ../sass/_fundacio.scss */
.region-navigation {
  position: relative;
}

/* line 52, ../sass/_fundacio.scss */
p.subtitle {
  text-align: center;
}

/*.node-type-page #page-title {

	text-align: center;
	background: url('../assets/line-heading.png') repeat-x left 46px;
	clear: both;
	margin-bottom: 20px;

	span {
		padding: 0px 20px;
		background-image: url("../assets/background.jpg");
	}
}*/
/* line 69, ../sass/_fundacio.scss */
.texture {
  background: url("../assets/light_honeycomb.png");
}

/* line 74, ../sass/_fundacio.scss */
.bg-white {
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  position: relative;
}

/* line 80, ../sass/_fundacio.scss */
.bg-white-2 {
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding-bottom: 20px;
  position: relative;
}

/* line 86, ../sass/_fundacio.scss */
.ico-download-top {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 43px;
  height: 30px;
  background: url("../assets/ico-download.png") top left no-repeat;
}

/* line 99, ../sass/_fundacio.scss */
#section-name,
.node-type-page h1#page-title,
.node-type-webform h1#page-title,
.node-type-landing-page h1#page-title {
  color: #231f20;
  font-family: "Roboto Slab", "Georgia", "Times New Roman", serif;
  font-weight: normal;
  font-size: 49.6px;
  line-height: 1.2em;
  margin-bottom: 16px;
  margin-top: 0;
  text-align: center;
  background: url("../assets/line-heading.png") repeat-x left 46px;
  clear: both;
  margin: 0 10px 20px;
}
/* line 114, ../sass/_fundacio.scss */
#section-name span,
.node-type-page h1#page-title span,
.node-type-webform h1#page-title span,
.node-type-landing-page h1#page-title span {
  padding: 0px 20px;
  background-image: url("../assets/background.jpg");
}

/* line 119, ../sass/_fundacio.scss */
#block-search-form {
  float: right;
  display: none;
  position: absolute;
  top: 36px;
  right: 28px;
  padding: 20px;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  background: #fff;
  z-index: 500;
}
/* line 133, ../sass/_fundacio.scss */
#block-search-form label {
  display: none;
}
/* line 137, ../sass/_fundacio.scss */
#block-search-form .form-text {
  border: 1px solid #ccc;
  width: 150px;
}
/* line 142, ../sass/_fundacio.scss */
#block-search-form .form-submit {
  color: #fff;
  background: #bf2d36;
}

/*#block-locale-language {
	float: right;

	ul {
		padding: 0;
		margin: 0;
	}
	li {
		list-style: none;
		float: left;
		margin-right: 5px;
	}
}*/
/* line 162, ../sass/_fundacio.scss */
.text-title {
  /* es com l'h3 */
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 8px;
  color: #231f20;
  font-family: "Fauna One", "Georgia", "Times New Roman", serif;
}

/* language drop down skin */
/* line 171, ../sass/_fundacio.scss */
#block-lang-dropdown-language {
  float: right;
  padding: 8px 0 0 2px;
}
/* line 176, ../sass/_fundacio.scss */
#block-lang-dropdown-language .form-item {
  margin: 0;
}

/* line 180, ../sass/_fundacio.scss */
.dd_after .ddTitle {
  background: transparent;
  border: none;
  padding: 3px;
  text-indent: 0;
  cursor: pointer;
  overflow: hidden;
  height: 16px;
}

/* line 189, ../sass/_fundacio.scss */
.dd_after {
  display: inline-block !important;
  text-align: left;
  background-color: transparent;
  font-family: "brandon_grotesque_regularRg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  position: relative;
  text-transform: uppercase;
}

/* line 198, ../sass/_fundacio.scss */
.dd_after .ddChild {
  border: none;
  background-color: #fff;
  width: 30px !important;
  top: 30px !important;
}

/* line 204, ../sass/_fundacio.scss */
#edit-lang-dropdown-select_arrow {
  display: none;
}

/* line 207, ../sass/_fundacio.scss */
.dd_after .ddChild a.selected {
  background-color: #fff;
}

/* line 210, ../sass/_fundacio.scss */
.dd_after .ddChild a:hover {
  background-color: #fff;
}

/* line 213, ../sass/_fundacio.scss */
.dd_after .ddChild a {
  display: block;
  padding: 2px 4px;
  text-decoration: none;
  color: #000;
  overflow: hidden;
  cursor: pointer;
}

/********/
/* line 224, ../sass/_fundacio.scss */
#site-slogan {
  color: #322f31;
  line-height: 30px;
}

/* line 228, ../sass/_fundacio.scss */
.breadcrumb {
  font-size: 0.9em;
  padding: 0 10px;
  margin-left: 10px;
  line-height: 10px;
  margin-bottom: 5px;
}
/* line 236, ../sass/_fundacio.scss */
.breadcrumb a {
  text-decoration: none;
  color: #6a6a6a;
}
/* line 240, ../sass/_fundacio.scss */
.breadcrumb a:hover {
  text-decoration: underline;
}

/* menú auxiliar , això es pot anular, ja que es fa servir lo seguent */
/* line 247, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar {
  display: none;
  /* s'ha de descativar ! */
}
/* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
#block-menu-menu-auxiliar:after {
  content: "";
  display: table;
  clear: both;
}
/* line 255, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar ul {
  padding: 0;
  margin: 0;
}
/* line 259, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar li {
  float: left;
  list-style: none;
}
/* line 263, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar li a {
  display: block;
  /*padding: 7px 10px 10px 22px;*/
  padding: 7px 10px 12px 22px;
  border-right: 1px solid #ccc;
  text-decoration: none;
  height: 20px;
}
/* line 271, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar li a:hover {
  background-color: #fff;
}
/* line 275, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar li.first a {
  background-image: url("../assets/menu-icon-suport.png");
  background-repeat: no-repeat;
  background-position: 8px -1px;
  padding-left: 22px;
}
/* line 281, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar li a {
  background-image: url("../assets/menu-icon-registrador.png");
  background-repeat: no-repeat;
  background-position: 8px -1px;
  padding-left: 29px;
}
/* line 287, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar li.last a {
  background-image: url("../assets/menu-icon-search.png");
  background-repeat: no-repeat;
  background-position: 5px -1px;
  padding-left: 22px;
  width: 0;
  overflow: hidden;
  color: transparent;
}
/* line 297, ../sass/_fundacio.scss */
#block-menu-menu-auxiliar .bg-blanc {
  background-color: #fff !important;
}

/* menú auxiliar a main-menu, s'han de posar els id dels idiomes */
/* line 306, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-6.sf-depth-1 {
  margin-right: 20px !important;
}
/* line 312, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-7.sf-depth-1,
#block-superfish-1 li.sf-item-8.sf-depth-1,
#block-superfish-1 li.sf-item-9.sf-depth-1 {
  background: transparent;
  border-right: none;
}
/* line 317, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-7.sf-depth-1 a,
#block-superfish-1 li.sf-item-8.sf-depth-1 a,
#block-superfish-1 li.sf-item-9.sf-depth-1 a {
  display: block;
  border-right: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  text-transform: lowercase;
}
/* line 324, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-7.sf-depth-1 a:hover,
#block-superfish-1 li.sf-item-8.sf-depth-1 a:hover,
#block-superfish-1 li.sf-item-9.sf-depth-1 a:hover {
  background-color: #fff;
}
/* line 328, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-7.sf-depth-1 a.active,
#block-superfish-1 li.sf-item-8.sf-depth-1 a.active,
#block-superfish-1 li.sf-item-9.sf-depth-1 a.active {
  background: transparent;
}
/* line 334, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-7.sf-depth-1 a {
  background-image: url("../assets/menu-icon-suport.png");
  background-repeat: no-repeat;
  background-position: 8px -1px;
  padding-left: 22px;
}
/* line 340, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-8.sf-depth-1 a {
  background-image: url("../assets/menu-icon-registrador.png");
  background-repeat: no-repeat;
  background-position: 8px -1px;
  padding-left: 29px;
}
/* line 346, ../sass/_fundacio.scss */
#block-superfish-1 li.sf-item-9.sf-depth-1 a {
  background-image: url("../assets/menu-icon-search.png");
  background-repeat: no-repeat;
  background-position: 5px -1px;
  padding-left: 22px;
  width: 0;
  overflow: hidden;
  color: transparent;
}
/* line 356, ../sass/_fundacio.scss */
#block-superfish-1 li .bg-blanc {
  background-color: #fff !important;
}

/* bread crumb */
/* line 363, ../sass/_fundacio.scss */
.front #block-easy-breadcrumb-easy-breadcrumb {
  display: none;
}

/* slider */
/* line 369, ../sass/_fundacio.scss */
.flexslider {
  margin: 0 0 35px;
  background: #fff;
  border: none;
  position: relative;
  -webkit-border-radius: 0 0;
  -moz-border-radius: 0 / 0;
  border-radius: 0 / 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  zoom: 1;
}
/* line 378, ../sass/_fundacio.scss */
.flexslider .field-name-body {
  text-align: center;
  padding: 1%;
  position: absolute;
  bottom: 0;
  background: #fff;
  width: 98%;
}

/* line 388, ../sass/_fundacio.scss */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -32px;
  text-align: center;
}

/* line 394, ../sass/_fundacio.scss */
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 15px;
  display: inline-block;
  content: '\f001';
}

/* line 400, ../sass/_fundacio.scss */
.flex-direction-nav a {
  height: 20px;
  margin: -40px 0 0;
}

/* line 405, ../sass/_fundacio.scss */
.flexslider .field-name-body p {
  margin: 0px;
}

/* line 409, ../sass/_fundacio.scss */
.flex-control-paging li a {
  width: 9px;
  height: 9px;
  display: block;
  background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 20px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3) inset;
}

/* tipus de contingut site (lloc web) */
/* line 424, ../sass/_fundacio.scss */
.node-site .field-name-body,
.node-landing-page .field-name-body {
  text-align: center;
  margin-bottom: 40px;
}

/* pagina bàsica */
/* line 432, ../sass/_fundacio.scss */
.field-name-field-page-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

/* Corporatiu, qui som etc... */
/* Qui som */
/* line 440, ../sass/_fundacio.scss */
.header-qui-som {
  background-image: url("../assets/bg-qui-som.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  height: 175px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}
/* line 451, ../sass/_fundacio.scss */
.header-qui-som h1 {
  color: #fff;
  margin-top: 18px;
}
/* line 455, ../sass/_fundacio.scss */
.header-qui-som span {
  padding: 0px 20px;
}
/* line 458, ../sass/_fundacio.scss */
.header-qui-som .field-name-field-page-subtitle {
  text-align: center;
  margin-bottom: 0;
  margin-top: 16px;
  font-size: 1.1em;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 466, ../sass/_fundacio.scss */
.linia-quisom {
  background-image: url("../assets/line-heading-white.gif");
  background-repeat: repeat-x;
  background-position: left 50px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 50px;
}

/* line 474, ../sass/_fundacio.scss */
.missions {
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  position: relative;
}

/* line 480, ../sass/_fundacio.scss */
.missions ul li {
  color: #231f20;
  font-size: 1.9em;
  margin-top: 6px;
  margin-bottom: 6px;
  line-height: 1.1em;
  list-style: none;
}

/* line 488, ../sass/_fundacio.scss */
.missions ul li span {
  width: 30px;
  height: 20px;
  color: #bf2d36;
  margin-right: 5px;
}

/* memòria 5 anys */
/* line 500, ../sass/_fundacio.scss */
.page-node-153 .view-mode-full .field-name-body,
.page-node-664 .view-mode-full .field-name-body,
.page-node-665 .view-mode-full .field-name-body {
  margin-top: 0;
}

/* Llistat de persones a Equip */
/* line 508, ../sass/_fundacio.scss */
.person-list-block .view-content h2 {
  font-size: 1.4em;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: "Fauna One", "Georgia", "Times New Roman", serif;
}
/* line 514, ../sass/_fundacio.scss */
.person-list-block .view-content li {
  width: 232px;
  list-style: none;
  text-align: center;
  margin-bottom: 30px;
}

/* line 521, ../sass/_fundacio.scss */
.field-name-field-person-photo {
  padding-left: 28px;
}

/* line 524, ../sass/_fundacio.scss */
.field-name-field-person-entity-link a {
  color: #bf2d36;
}

/* line 530, ../sass/_fundacio.scss */
.view-display-id-attachment_1 h3.header-patronats-historics,
.view-display-id-attachment_2 h3.header-patronats-historics {
  text-align: center;
  background-image: url("../assets/line-heading.png");
  background-repeat: repeat-x;
  background-position: left 30px;
  background-position: left 28px;
  font-size: 1.9em;
  line-height: 1.2em;
  margin-bottom: 15px;
  font-family: "Roboto Slab", "Georgia", "Times New Roman", serif;
}
/* line 541, ../sass/_fundacio.scss */
.view-display-id-attachment_1 h3.header-patronats-historics span,
.view-display-id-attachment_2 h3.header-patronats-historics span {
  padding: 0px 20px;
  background-image: url("../assets/background.jpg");
  background-repeat: repeat;
}

/* line 550, ../sass/_fundacio.scss */
h2.generic-title {
  text-align: center;
  background-image: url("../assets/line-heading.png");
  background-repeat: repeat-x;
  background-position: left 30px;
  background-position: left 28px;
  font-size: 1.9em;
  line-height: 1.2em;
  margin-bottom: 15px;
}
/* line 561, ../sass/_fundacio.scss */
h2.generic-title span {
  padding: 0px 20px;
  background-image: url("../assets/background.jpg");
  background-repeat: repeat;
}

/* #Forms
================================================== */
/* line 571, ../sass/_fundacio.scss */
form input {
  background-color: #FFF;
  border: none;
  height: 25px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding-right: 10px;
  padding-left: 10px;
  color: #322f31;
}

/* line 580, ../sass/_fundacio.scss */
input[type='button'] {
  cursor: pointer;
  color: #FFF;
  background-color: #bf2d36;
  height: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/* Nodes: notícies, etc... */
/* altres headers que venen de Drupal */
/* line 594, ../sass/_fundacio.scss */
.group-right h3,
.sidebars h2,
.domini-cat .group-right h3,
.domini-cat .sidebars h2 {
  font-family: "Fauna One", "Georgia", "Times New Roman", serif;
  margin-top: 20px;
  font-size: 0.85em;
  border-bottom: 1px solid #7b7979;
  line-height: 1.4em;
  margin-bottom: 10px;
}

/* line 604, ../sass/_fundacio.scss */
.group-right h3:first-child,
.domini-cat .group-right h3:first-child {
  /* el primer h3 */
  margin-top: 0;
}

/* line 608, ../sass/_fundacio.scss */
#page-title,
.field-name-title h2 {
  font-size: 2.3em;
  line-height: 1.2em;
  margin-bottom: 8px;
  font-family: "Fauna One", "Georgia", "Times New Roman", serif;
}
/* line 613, ../sass/_fundacio.scss */
#page-title a,
.field-name-title h2 a {
  text-decoration: none;
}

/* line 618, ../sass/_fundacio.scss */
h3.field-name-field-news-subtitle,
h3.field-name-field-statistics-subtitle {
  font-size: 1.3em;
  line-height: 1.2em;
  margin-bottom: 10px;
  margin-top: 5px;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 625, ../sass/_fundacio.scss */
.node-type-landing-page h3.field-name-field-news-subtitle {
  padding: 0 20px;
}

/* line 632, ../sass/_fundacio.scss */
.field-name-field-categories,
.field-name-field-publication-category,
.field-name-field-project-category,
.group-data .field-type-taxonomy-term-reference,
.group-data-group .field-type-taxonomy-term-reference {
  float: left;
  width: auto;
  margin-right: 5px;
  padding-right: 5px !important;
  border-right: 1px solid #bf2d36;
  color: #bf2d36;
  text-transform: uppercase;
  font-size: 0.8em;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  margin-bottom: 10px;
}

/* line 650, ../sass/_fundacio.scss */
.field-name-field-news-date,
.field-name-field-statistics-date,
.field-name-field-video-data,
.field-name-field-press-releases-date,
.group-data .field-type-datestamp,
.group-data-group .field-type-datestamp {
  float: left;
  width: auto;
  color: #bf2d36;
  text-transform: uppercase;
  font-size: 0.8em;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  margin-bottom: 10px;
  padding: 0 !important;
}

/* line 662, ../sass/_fundacio.scss */
.content-list-level-2 .field-name-title h2 {
  font-size: 2em;
}
/* line 665, ../sass/_fundacio.scss */
.content-list-level-2 .field-name-field-news-image {
  width: 100px;
  float: left;
}

/* line 674, ../sass/_fundacio.scss */
.content-list-level-3 .field-name-title h2 {
  font-size: 1.4em;
}
/* line 677, ../sass/_fundacio.scss */
.content-list-level-3 .field-name-field-news-image {
  width: 100px;
  float: left;
}

/* line 682, ../sass/_fundacio.scss */
.field-name-title h2 a:hover {
  text-decoration: underline;
}

/* Notícia, baròmetre pàgina final */
/* line 694, ../sass/_fundacio.scss */
.imgcaption {
  font-size: 0.9em;
  font-style: italic;
  color: #6a6a6a;
  background-color: #d1d1d1;
  padding: 5px;
  height: 25px;
  line-height: 26px;
}

/* line 706, ../sass/_fundacio.scss */
.node-news.view-mode-full .field-name-body,
.node-statistics.view-mode-full .field-name-body,
.node-project.view-mode-full .field-name-body,
.view-mode-full .field-name-body {
  margin-top: 30px;
}

/* line 709, ../sass/_fundacio.scss */
.key-points {
  background-color: rgba(35, 31, 32, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 712, ../sass/_fundacio.scss */
.key-points ul {
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-left: 0;
}
/* line 718, ../sass/_fundacio.scss */
.key-points li {
  list-style-position: inside;
  list-style-image: url("../assets/guio-petit.png");
  margin-right: 8px;
  margin-left: 10px;
  line-height: 1.2em;
  margin-bottom: 10px;
  color: #231f20;
}

/* line 728, ../sass/_fundacio.scss */
ul.field-name-field-news-related {
  margin: 0 0 25px 0;
  padding: 0;
}
/* line 733, ../sass/_fundacio.scss */
ul.field-name-field-news-related li {
  list-style-position: inside;
  list-style-image: url("../assets/link.png");
}
/* line 737, ../sass/_fundacio.scss */
ul.field-name-field-news-related li a {
  color: #6a6a6a;
  text-decoration: none;
}
/* line 741, ../sass/_fundacio.scss */
ul.field-name-field-news-related li a:hover {
  text-decoration: underline;
}

/* Projectes, Baròmetre: homes */
/* line 750, ../sass/_fundacio.scss */
.content-list-level-historics,
.block-home-destacat,
.block-destacat {
  margin-bottom: 20px;
  margin-top: 2px;
}
/* line 755, ../sass/_fundacio.scss */
.content-list-level-historics .block-title,
.block-home-destacat .block-title,
.block-destacat .block-title {
  text-align: center;
  background-image: url("../assets/line-heading.png");
  background-repeat: repeat-x;
  background-position: left 28px;
  clear: both;
  margin-bottom: 10px;
}
/* line 763, ../sass/_fundacio.scss */
.content-list-level-historics .block-title span,
.block-home-destacat .block-title span,
.block-destacat .block-title span {
  padding: 0px 20px;
  background-image: url("../assets/background.jpg");
  background-repeat: repeat;
}
/* line 768, ../sass/_fundacio.scss */
.content-list-level-historics .block-title span.angle,
.block-home-destacat .block-title span.angle,
.block-destacat .block-title span.angle {
  padding: 0;
}
/* line 772, ../sass/_fundacio.scss */
.content-list-level-historics .field-name-title h2,
.block-home-destacat .field-name-title h2,
.block-destacat .field-name-title h2 {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 8px;
}

/* line 782, ../sass/_fundacio.scss */
.view-barometre .views-exposed-widget,
.view-publicacions .views-exposed-widget {
  width: 100%;
}
/* line 786, ../sass/_fundacio.scss */
.view-barometre .views-exposed-widget > label,
.view-publicacions .views-exposed-widget > label {
  font-size: 1.1em;
  line-height: 1em;
  margin-bottom: 8px;
  font-weight: normal;
  color: #231f20;
  font-family: "Fauna One", "Georgia", "Times New Roman", serif;
  display: block;
  float: left;
  margin-right: 10px;
}
/* line 799, ../sass/_fundacio.scss */
.view-barometre .form-type-radio,
.view-publicacions .form-type-radio {
  width: auto;
  float: left;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}
/* line 807, ../sass/_fundacio.scss */
.view-barometre .form-type-radio input[type="radio"],
.view-publicacions .form-type-radio input[type="radio"] {
  display: none;
}
/* line 810, ../sass/_fundacio.scss */
.view-barometre .form-type-radio label,
.view-publicacions .form-type-radio label {
  cursor: pointer;
  padding: 3px 10px 2px;
  background: #dedcd9;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 816, ../sass/_fundacio.scss */
.view-barometre .form-type-radio input[type="radio"]:checked + label,
.view-publicacions .form-type-radio input[type="radio"]:checked + label {
  background: #bf2d36;
  color: #fff;
}

/* line 824, ../sass/_fundacio.scss */
.block-claim {
  margin: 40px 0 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}
/* line 831, ../sass/_fundacio.scss */
.block-claim a.envia {
  background: whitesmoke;
  width: 200px;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
  margin: 0 auto;
  text-align: center;
  height: 20px;
  line-height: 1.3em;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  text-decoration: none;
}

/* line 849, ../sass/_fundacio.scss */
.page-barometre-view-all .field-name-title h2 {
  font-size: 1.4em;
}
/* line 853, ../sass/_fundacio.scss */
.page-barometre-view-all .field-name-field-news-image {
  width: 100px;
  float: left;
}

/* usat al projecte ajuds */
/* line 860, ../sass/_fundacio.scss */
.block-align-center {
  text-align: center;
}

/* exepció */
/* line 868, ../sass/_fundacio.scss */
.page-node-181 .page-content div.node-project > h3,
.page-node-182 .page-content div.node-project > h3,
.page-node-125 .page-content div.node-project > h3 {
  display: none;
}

/* Publicacions */
/* Actualitat */
/* line 877, ../sass/_fundacio.scss */
.block-home-actualitat.content-list-level-1 {
  margin-bottom: 40px;
}

/* home */
/* line 883, ../sass/_fundacio.scss */
#block-views-slide-a-la-home-block {
  margin-top: 30px;
}

/* line 889, ../sass/_fundacio.scss */
.texture {
  /* block newsletter, ... */
}

/* line 894, ../sass/_fundacio.scss */
.block-home-newsletter,
#block-mailchimp-signup-newsletter {
  padding: 20px;
  text-align: center;
  background: url("../assets/light_honeycomb.png");
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 899, ../sass/_fundacio.scss */
.block-home-newsletter p,
#block-mailchimp-signup-newsletter p {
  text-align: center;
}
/* line 903, ../sass/_fundacio.scss */
.block-home-newsletter .node-title,
#block-mailchimp-signup-newsletter .node-title {
  display: none;
}
/* line 909, ../sass/_fundacio.scss */
.block-home-newsletter .webform-component-textfield,
.block-home-newsletter .webform-component-email,
#block-mailchimp-signup-newsletter .webform-component-textfield,
#block-mailchimp-signup-newsletter .webform-component-email {
  text-align: left;
  padding: 0 20px;
  margin: 0 0 5px;
}
/* line 914, ../sass/_fundacio.scss */
.block-home-newsletter .form-actions,
#block-mailchimp-signup-newsletter .form-actions {
  padding: 0 20px;
  margin: 25px 0 0;
}
/* line 917, ../sass/_fundacio.scss */
.block-home-newsletter .form-actions .form-submit,
#block-mailchimp-signup-newsletter .form-actions .form-submit {
  width: 100%;
  background: whitesmoke;
}
/* line 920, ../sass/_fundacio.scss */
.block-home-newsletter .form-actions .form-submit:hover,
#block-mailchimp-signup-newsletter .form-actions .form-submit:hover {
  background: #fff;
}
/* line 926, ../sass/_fundacio.scss */
.block-home-newsletter select,
#block-mailchimp-signup-newsletter select {
  font-size: 0.96em;
}
/* line 931, ../sass/_fundacio.scss */
.block-home-newsletter .form-type-textfield label,
#block-mailchimp-signup-newsletter .form-type-textfield label {
  text-align: center;
  padding: 0 0px;
  margin-top: 15px;
}
/* line 936, ../sass/_fundacio.scss */
.block-home-newsletter input.form-text,
#block-mailchimp-signup-newsletter input.form-text {
  width: 200px;
}
/* line 942, ../sass/_fundacio.scss */
.block-home-newsletter input[type="checkbox"], .block-home-newsletter input[type="radio"],
#block-mailchimp-signup-newsletter input[type="checkbox"],
#block-mailchimp-signup-newsletter input[type="radio"] {
  position: relative;
  top: 7px;
}
/* line 947, ../sass/_fundacio.scss */
.block-home-newsletter .form-item,
#block-mailchimp-signup-newsletter .form-item {
  margin: 5px 0 0;
}
/* line 951, ../sass/_fundacio.scss */
.block-home-newsletter .form-checkboxes,
#block-mailchimp-signup-newsletter .form-checkboxes {
  text-align: left;
}
/* line 953, ../sass/_fundacio.scss */
.block-home-newsletter .form-checkboxes .form-item,
#block-mailchimp-signup-newsletter .form-checkboxes .form-item {
  margin: 0px;
}
/* line 956, ../sass/_fundacio.scss */
.block-home-newsletter .form-checkboxes input,
#block-mailchimp-signup-newsletter .form-checkboxes input {
  color: #FFFFFF;
}
/* line 961, ../sass/_fundacio.scss */
.block-home-newsletter .form-submit,
#block-mailchimp-signup-newsletter .form-submit {
  margin-top: 20px;
  padding: 0 20px;
  line-height: 1em;
  background: whitesmoke;
}
/* line 966, ../sass/_fundacio.scss */
.block-home-newsletter .form-submit:hover,
#block-mailchimp-signup-newsletter .form-submit:hover {
  background: #fff;
}
/* line 971, ../sass/_fundacio.scss */
.block-home-newsletter .unsubscribe,
#block-mailchimp-signup-newsletter .unsubscribe {
  margin-top: 10px;
}
/* line 973, ../sass/_fundacio.scss */
.block-home-newsletter .unsubscribe a,
#block-mailchimp-signup-newsletter .unsubscribe a {
  font-size: 0.75em;
  text-decoration: none;
  color: #6a6a6a;
}
/* line 980, ../sass/_fundacio.scss */
.block-home-newsletter label,
#block-mailchimp-signup-newsletter label {
  margin-top: 15px;
  text-align: center;
}

/* line 987, ../sass/_fundacio.scss */
.block-gestio-buttlletins {
  padding: 20px;
  width: 66%;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  float: left;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 996, ../sass/_fundacio.scss */
.block-gestio-buttlletins .form-item input[type=text] {
  width: 250px;
  border: 1px solid #ddd;
}
/* line 1000, ../sass/_fundacio.scss */
.block-gestio-buttlletins .form-submit {
  margin-right: 10px;
  background: #bf2d36;
  color: #fff;
}
/* line 1004, ../sass/_fundacio.scss */
.block-gestio-buttlletins .form-submit:hover {
  background: #231f20;
}

/* line 1012, ../sass/_fundacio.scss */
.section-butlleti .block-home-newsletter,
.section-boletin .block-home-newsletter,
.section-newsletter .block-home-newsletter {
  padding: 20px;
  width: 66%;
  margin-right: 2%;
  margin-bottom: 20px;
  background: #fff;
  float: left;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 1023, ../sass/_fundacio.scss */
.section-butlleti .block-home-newsletter h2,
.section-boletin .block-home-newsletter h2,
.section-newsletter .block-home-newsletter h2 {
  display: none;
}
/* line 1029, ../sass/_fundacio.scss */
.section-butlleti .block-home-newsletter .form-item input[type=text],
.section-boletin .block-home-newsletter .form-item input[type=text],
.section-newsletter .block-home-newsletter .form-item input[type=text] {
  width: 250px;
  border: 1px solid #ddd;
}
/* line 1033, ../sass/_fundacio.scss */
.section-butlleti .block-home-newsletter .form-submit,
.section-boletin .block-home-newsletter .form-submit,
.section-newsletter .block-home-newsletter .form-submit {
  margin-right: 10px;
  background: #bf2d36;
  color: #fff;
}
/* line 1037, ../sass/_fundacio.scss */
.section-butlleti .block-home-newsletter .form-submit:hover,
.section-boletin .block-home-newsletter .form-submit:hover,
.section-newsletter .block-home-newsletter .form-submit:hover {
  background: #231f20;
}
/* line 1041, ../sass/_fundacio.scss */
.section-butlleti .block-home-newsletter .form-type-textfield label,
.section-boletin .block-home-newsletter .form-type-textfield label,
.section-newsletter .block-home-newsletter .form-type-textfield label {
  padding: 0;
}

/* line 1046, ../sass/_fundacio.scss */
.img-butlleti {
  float: left;
  width: 32%;
  margin-bottom: 20px;
}

/* line 1052, ../sass/_fundacio.scss */
.view-footer {
  clear: left;
  width: 100%;
  text-align: center;
}
/* line 1058, ../sass/_fundacio.scss */
.view-footer a.see-all-button {
  width: 200px;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  height: 20px;
  line-height: 1.3em;
  background-color: #dedcd9;
  text-decoration: none;
}
/* line 1072, ../sass/_fundacio.scss */
.view-footer a.see-all-button:hover {
  color: #fff;
  background: #bf2d36;
}

/* videos */
/* permet al video ser responsive, el 62% depen del ratio del vídeo */
/*div.media-youtube-video {
	padding-bottom: 62%;
	position: relative;
	height: 0px;
}*/
/* line 1089, ../sass/_fundacio.scss */
.field-name-field-video-related {
  margin-bottom: 10px;
}
/* line 1093, ../sass/_fundacio.scss */
.field-name-field-video-related h4 {
  font-size: 1em;
  font-family: "brandon_grotesque_regularRg", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 1096, ../sass/_fundacio.scss */
.field-name-field-video-related h4 a {
  color: #6a6a6a;
  text-decoration: none;
}
/* line 1101, ../sass/_fundacio.scss */
.field-name-field-video-related .field-name-field-video-media {
  width: 65px;
  float: left;
}

/* line 1106, ../sass/_fundacio.scss */
.view-display-id-block_4 {
  margin-bottom: 10px;
}
/* line 1110, ../sass/_fundacio.scss */
.view-display-id-block_4 h4 {
  font-size: 1em;
  font-family: "brandon_grotesque_regularRg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  border: none;
}
/* line 1115, ../sass/_fundacio.scss */
.view-display-id-block_4 h4 a {
  color: #6a6a6a;
  text-decoration: none;
}
/* line 1120, ../sass/_fundacio.scss */
.view-display-id-block_4 .field-name-field-casestudy-media {
  width: 65px;
  float: left;
}

/* notes de premsa i clipping */
/* line 1129, ../sass/_fundacio.scss */
.content-list-notes-premsa .views-row > div,
.content-list-clipping .views-row > div {
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

/* line 1137, ../sass/_fundacio.scss */
h3.field-name-field-press-releases-subtitle,
h3.field-name-field-clipping-subtitle {
  font-size: 1.3em;
  line-height: 1.2em;
  margin-bottom: 10px;
  margin-top: 5px;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 1144, ../sass/_fundacio.scss */
.block-home-clipping {
  margin-top: 40px;
}

/* footer */
/* line 1149, ../sass/_fundacio.scss */
#footer-top-region {
  background-color: #343433;
  min-height: 420px;
  position: relative;
}
/* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
#footer-top-region:after {
  content: "";
  display: table;
  clear: both;
}

/* line 1155, ../sass/_fundacio.scss */
#footer-bottom-region {
  background-color: #131212;
  min-height: 50px;
}
/* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
#footer-bottom-region:after {
  content: "";
  display: table;
  clear: both;
}

/* line 1161, ../sass/_fundacio.scss */
.footer-top {
  color: #fff;
  padding-top: 35px;
  padding-bottom: 35px;
}
/* line 1168, ../sass/_fundacio.scss */
.footer-top img.footer-logo {
  width: 150px;
  margin-bottom: 30px;
}
/* line 1173, ../sass/_fundacio.scss */
.footer-top .social {
  margin: 50px 0 0;
  list-style: none;
  padding: 0;
}
/* line 1178, ../sass/_fundacio.scss */
.footer-top .social li {
  float: left;
  margin-right: 3px;
}
/* line 1183, ../sass/_fundacio.scss */
.footer-top .social li a {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
/* line 1190, ../sass/_fundacio.scss */
.footer-top .social li a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
/* line 1196, ../sass/_fundacio.scss */
.footer-top .footer-bottom-menu ul {
  padding: 0;
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 1201, ../sass/_fundacio.scss */
.footer-top .footer-bottom-menu li {
  list-style-image: none;
  list-style: none;
}
/* line 1206, ../sass/_fundacio.scss */
.footer-top .footer-bottom-menu li a {
  color: #bf2d36;
  font-size: 0.9em;
  line-height: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
}
/* line 1215, ../sass/_fundacio.scss */
.footer-top .footer-bottom-menu li a:hover {
  text-decoration: underline;
}
/* line 1219, ../sass/_fundacio.scss */
.footer-top .footer-bottom-menu li li a {
  color: #fff;
  text-transform: none;
  font-size: 1em;
  font-family: "brandon_grotesque_regularRg", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 1229, ../sass/_fundacio.scss */
.footer-bottom {
  color: #fff;
}
/* line 1233, ../sass/_fundacio.scss */
.footer-bottom p {
  margin-top: 18px;
}
/* line 1236, ../sass/_fundacio.scss */
.footer-bottom p a {
  color: #555555;
  text-decoration: none;
}
/* line 1240, ../sass/_fundacio.scss */
.footer-bottom p a:hover {
  text-decoration: underline;
}
/* line 1243, ../sass/_fundacio.scss */
.footer-bottom span {
  color: #555555;
  margin-left: 10px;
  margin-right: 10px;
}
/* line 1248, ../sass/_fundacio.scss */
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 1253, ../sass/_fundacio.scss */
.footer-bottom .logos-entitats li a {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
/* line 1260, ../sass/_fundacio.scss */
.footer-bottom .logos-entitats li a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

/* Blocs de navegació inferior de les pàgines, Bottom nav */
/* line 1266, ../sass/_fundacio.scss */
.block-bottom-nav {
  margin-top: 40px;
  margin-bottom: 40px;
  clear: both;
}

/* line 1272, ../sass/_fundacio.scss */
.bottom-nav {
  text-align: center;
}
/* line 1275, ../sass/_fundacio.scss */
.bottom-nav a {
  background-color: rgba(35, 31, 32, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
}
/* line 1283, ../sass/_fundacio.scss */
.bottom-nav a img {
  margin-top: 25px;
  margin-bottom: 10px;
}
/* line 1287, ../sass/_fundacio.scss */
.bottom-nav a h3 {
  padding-bottom: 10px;
  font-size: 1.4em;
}
/* line 1292, ../sass/_fundacio.scss */
.bottom-nav a:hover {
  background-color: #FFF;
}

/* webform - contecte */
/* line 1299, ../sass/_fundacio.scss */
.contact-webform form {
  padding: 10px 20px 30px;
  margin-bottom: 20px;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 1307, ../sass/_fundacio.scss */
.contact-webform form input[type="text"],
.contact-webform form input[type="email"] {
  height: 30px;
  width: 390px;
  border: 1px solid lightgrey;
  color: #6a6a6a;
}
/* line 1314, ../sass/_fundacio.scss */
.contact-webform form textarea {
  border: 1px solid lightgrey;
  padding: 2px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/* line 1320, ../sass/_fundacio.scss */
.contact-webform form input[type="submit"] {
  padding-right: 50px;
  padding-left: 50px;
  cursor: pointer;
  color: #FFF;
  background-color: #bf2d36;
  height: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
/* line 1329, ../sass/_fundacio.scss */
.contact-webform form input[type="radio"] {
  height: auto;
}
/* line 1333, ../sass/_fundacio.scss */
.contact-webform form .form-type-radio {
  margin-bottom: 5px;
}

/*.contact-webform .group-left > div:first-child {*/
/* line 1339, ../sass/_fundacio.scss */
.webform-confirmation {
  padding: 10px 20px 30px;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  min-height: 600px;
}

/* line 1345, ../sass/_fundacio.scss */
.contact-webform .links {
  display: none;
}

/* line 1349, ../sass/_fundacio.scss */
.peu-mapa,
.destacat-address {
  background-color: #7a7877;
  color: #fff;
  padding: 20px;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: -7px;
}

/* line 1359, ../sass/_fundacio.scss */
.destacat-address {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  margin-top: 0;
}
/* line 1362, ../sass/_fundacio.scss */
.destacat-address a {
  color: #fff;
}

/* line 1366, ../sass/_fundacio.scss */
#block-block-20 {
  color: #fff !important;
  background: #7a7877;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}
/* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
#block-block-20:after {
  content: "";
  display: table;
  clear: both;
}
/* line 1373, ../sass/_fundacio.scss */
#block-block-20 a {
  color: #fff;
}
/* line 1376, ../sass/_fundacio.scss */
#block-block-20 h4 {
  color: #fff;
}
/* line 1379, ../sass/_fundacio.scss */
#block-block-20 .columns.four {
  width: 260px;
  /* ve de disseny */
}

/* FAQs */
/* line 1388, ../sass/_fundacio.scss */
.block-faqs h3 {
  display: block;
  width: 220px;
  margin-right: 20px;
  float: left;
  background: #fff;
  padding: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  font-family: "brandon_grotesque_regularRg", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 1400, ../sass/_fundacio.scss */
.block-faqs ul.toggle-view {
  width: 660px;
  float: left;
}
/* line 1405, ../sass/_fundacio.scss */
.block-faqs ul.toggle-view > li {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 2px;
  width: 620px;
}
/* line 1411, ../sass/_fundacio.scss */
.block-faqs ul.toggle-view > li .answer {
  width: 620px;
}
/* line 1418, ../sass/_fundacio.scss */
.block-faqs .category-container {
  margin-bottom: 20px;
}
/* line 38, ../../../../../../../../../lib/gems/1.9.1/gems/compass-0.12.6/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.block-faqs .category-container:after {
  content: "";
  display: table;
  clear: both;
}
/* line 1422, ../sass/_fundacio.scss */
.block-faqs .item {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 1425, ../sass/_fundacio.scss */
.block-faqs span.toggle-button {
  top: 3px;
}
/* line 1428, ../sass/_fundacio.scss */
.block-faqs .question {
  color: #231f20;
  padding-right: 160px;
}
/* line 1432, ../sass/_fundacio.scss */
.block-faqs .number {
  font-size: 48px;
  color: #6a6a6a;
  font-family: inherit;
}
/* line 1437, ../sass/_fundacio.scss */
.block-faqs .field-name-field-faq-category {
  font-size: 19px;
  margin-top: 20px;
  color: #231f20;
  font-family: inherit;
}

/* header zona cercador domini */
/* line 1450, ../sass/_fundacio.scss */
.region-whois-domain,
.region-whois-bottom,
.region-whois-domain-right {
  color: #fff;
}
/* line 1454, ../sass/_fundacio.scss */
.region-whois-domain .view-mode-full .field-name-body,
.region-whois-bottom .view-mode-full .field-name-body,
.region-whois-domain-right .view-mode-full .field-name-body {
  margin-top: 0;
}

/* line 1460, ../sass/_fundacio.scss */
.region-whois-bottom {
  /* a responsive */
  max-width: 620px;
  padding-right: 20px;
  float: left;
}

/* line 1465, ../sass/_fundacio.scss */
.region-whois-domain-right {
  width: 340px;
  float: left;
}

/* line 1470, ../sass/_fundacio.scss */
.header-domini-left {
  max-width: 620px;
  padding-right: 20px;
  float: left;
}

/* bloc domini disponible */
/* line 1477, ../sass/_fundacio.scss */
#block-fundacio-whois-fundacio-whois-registers {
  margin-top: 18px;
}
/* line 1479, ../sass/_fundacio.scss */
#block-fundacio-whois-fundacio-whois-registers .domain {
  font-size: 1.5em;
  font-weight: bold;
  text-align: right;
}
/* line 1484, ../sass/_fundacio.scss */
#block-fundacio-whois-fundacio-whois-registers .message {
  margin-top: 10px;
  text-align: right;
}
/* line 1488, ../sass/_fundacio.scss */
#block-fundacio-whois-fundacio-whois-registers .message img {
  margin-right: 10px;
}

/* blocs últims dominis i num dominis */
/* line 1496, ../sass/_fundacio.scss */
.header-domini-right {
  width: 260px;
  padding: 20px;
  float: right;
  background: #30302e;
  margin-top: -60px;
  position: relative;
}

/* line 1504, ../sass/_fundacio.scss */
.info-dominis {
  margin-top: 0;
  padding: 0;
  background: transparent;
}
/* line 1509, ../sass/_fundacio.scss */
.info-dominis h2 {
  text-transform: uppercase;
  color: #FFF;
  text-decoration: none;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 10px;
}

/* line 1520, ../sass/_fundacio.scss */
.num-dominis .num-domains {
  text-align: center;
  margin-bottom: 25px;
}
/* line 1523, ../sass/_fundacio.scss */
.num-dominis .num-domains .num {
  color: #FFF;
  background-color: #0d0d0d;
  text-align: center;
  height: 46px;
  width: 33px;
  display: inline-block;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 2.2em;
  line-height: 1.4em;
}
/* line 1535, ../sass/_fundacio.scss */
.num-dominis .num-domains .dot {
  color: #0d0d0d;
  font-size: 2.7em;
  line-height: 1em;
  margin-top: 20px;
  margin-right: 0px;
  margin-left: 0px;
}
/* line 1543, ../sass/_fundacio.scss */
.num-dominis .num-domains span {
  margin-right: 4px;
  margin-left: 4px;
}

/* line 1550, ../sass/_fundacio.scss */
.llistat-dominis .domain {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  text-decoration: none;
  padding-top: 3px;
  padding-right: 13px;
  padding-bottom: 2px;
  padding-left: 13px;
  height: 27px;
  margin-top: -3px;
  color: #FFF;
}
/* line 1562, ../sass/_fundacio.scss */
.llistat-dominis .domain.first {
  background-color: rgba(0, 0, 0, 0.5);
}
/* line 1565, ../sass/_fundacio.scss */
.llistat-dominis .domains {
  margin-bottom: 10px;
  width: 260px;
  margin: 0 auto;
}
/* line 1570, ../sass/_fundacio.scss */
.llistat-dominis .box-button {
  text-align: center;
}

/* banner millor registrador, a la home de domini */
/* line 1576, ../sass/_fundacio.scss */
.banner-registradors {
  background-color: rgba(3, 3, 3, 0.4);
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}
/* line 1583, ../sass/_fundacio.scss */
.banner-registradors p {
  color: #FFF;
  text-align: center;
}
/* line 1587, ../sass/_fundacio.scss */
.banner-registradors .field-name-field-registrar-price {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: "brandon_grotesquebold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.875em;
}
/* line 1595, ../sass/_fundacio.scss */
.banner-registradors .boto-inferior {
  position: absolute;
  left: 14px;
  bottom: -17px;
}

/* promocions */
/* line 1606, ../sass/_fundacio.scss */
.node-promotion.view-mode-full {
  background: #fff;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
/* line 1612, ../sass/_fundacio.scss */
.node-promotion.view-mode-full .field-name-body {
  padding: 0 20px 20px;
}

/* media iframes */
/* line 1621, ../sass/_fundacio.scss */
.media-slideshare-wrapper iframe,
.media-issuu-outer-wrapper {
  max-width: 100% !important;
}

/* amaga mini cercador a la home de domini, només es veu a mòbil */
/* line 1627, ../sass/_fundacio.scss */
.page-node-26 #cercador-domini-region .mini-cercador-whois {
  display: none;
}

/* line 1634, ../sass/_fundacio.scss */
.promocio_oblida th,
.promocions_codis th {
  font-weight: normal;
}

/* line 1638, ../sass/_fundacio.scss */
.promocio_oblida {
  width: 95%;
  height: 188px;
}

/* line 1644, ../sass/_fundacio.scss */
.promocions_codis {
  width: 550px;
  height: 767px;
}
/* line 1647, ../sass/_fundacio.scss */
.promocions_codis th {
  font-weight: normal;
}

@media all and (max-width: 750px) {
  /* line 1654, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida,
  .section-domini .field-name-body .promocions_codis {
    display: block;
    width: 100%;
    height: inherit;
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  /* line 1660, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida tr th,
  .section-domini .field-name-body .promocions_codis tr th {
    display: none;
  }
  /* line 1664, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida tbody, .section-domini .field-name-body .promocio_oblida tr,
  .section-domini .field-name-body .promocions_codis tbody,
  .section-domini .field-name-body .promocions_codis tr {
    width: 100%;
    display: block;
    clear: both;
  }
  /* line 1670, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida td,
  .section-domini .field-name-body .promocions_codis td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding: 10px 0 10px 60%;
    display: block;
  }
  /* line 1679, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida td:before,
  .section-domini .field-name-body .promocions_codis td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 5;
    left: 0;
    padding-right: 10px;
    white-space: nowrap;
    color: #231F20;
  }
  /* line 1689, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida td:nth-of-type(1),
  .section-domini .field-name-body .promocions_codis td:nth-of-type(1) {
    padding: 2em 0 0 0;
  }
  /* line 1691, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida td:nth-of-type(1):before,
  .section-domini .field-name-body .promocions_codis td:nth-of-type(1):before {
    top: 0;
    padding: 5px 0;
    background: #231F20;
    color: white;
    width: 100%;
    text-align: center;
  }
  /* line 1702, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida td {
    padding: 10px 0 10px 40%;
  }
  /* line 1704, ../sass/_fundacio.scss */
  .section-domini .field-name-body .promocio_oblida td:before {
    padding-left: 4em;
  }

  /* line 1711, ../sass/_fundacio.scss */
  .i18n-ca .promocions_codis {
    /*
    Label the data
    */
  }
  /* line 1715, ../sass/_fundacio.scss */
  .i18n-ca .promocions_codis td:nth-of-type(1):before {
    content: "Registrador";
  }
  /* line 1716, ../sass/_fundacio.scss */
  .i18n-ca .promocions_codis td:nth-of-type(2):before {
    content: "Preu d'alta";
  }
  /* line 1717, ../sass/_fundacio.scss */
  .i18n-ca .promocions_codis td:nth-of-type(3):before {
    content: "Preu de renovació";
  }
  /* line 1718, ../sass/_fundacio.scss */
  .i18n-ca .promocions_codis td:nth-of-type(4):before {
    content: "Preu d'alta  amb codi";
  }
  /* line 1719, ../sass/_fundacio.scss */
  .i18n-ca .promocions_codis td:nth-of-type(5):before {
    content: "Preu de renovació amb codi";
  }

  /* line 1723, ../sass/_fundacio.scss */
  .i18n-es .promocions_codis {
    /*
    Label the data
    */
  }
  /* line 1727, ../sass/_fundacio.scss */
  .i18n-es .promocions_codis td:nth-of-type(1):before {
    content: "Registrador";
  }
  /* line 1728, ../sass/_fundacio.scss */
  .i18n-es .promocions_codis td:nth-of-type(2):before {
    content: "Precio de registro";
  }
  /* line 1729, ../sass/_fundacio.scss */
  .i18n-es .promocions_codis td:nth-of-type(3):before {
    content: "Precio de renovación";
  }
  /* line 1730, ../sass/_fundacio.scss */
  .i18n-es .promocions_codis td:nth-of-type(4):before {
    content: "Precio de registro con código";
  }
  /* line 1731, ../sass/_fundacio.scss */
  .i18n-es .promocions_codis td:nth-of-type(5):before {
    content: "Precio de renovación con código";
  }

  /* line 1735, ../sass/_fundacio.scss */
  .i18n-en .promocions_codis {
    /*
    Label the data
    */
  }
  /* line 1739, ../sass/_fundacio.scss */
  .i18n-en .promocions_codis td:nth-of-type(1):before {
    content: "Registrar";
  }
  /* line 1740, ../sass/_fundacio.scss */
  .i18n-en .promocions_codis td:nth-of-type(2):before {
    content: "Registration price";
  }
  /* line 1741, ../sass/_fundacio.scss */
  .i18n-en .promocions_codis td:nth-of-type(3):before {
    content: "Renewal price";
  }
  /* line 1742, ../sass/_fundacio.scss */
  .i18n-en .promocions_codis td:nth-of-type(4):before {
    content: "Registration price using code";
  }
  /* line 1743, ../sass/_fundacio.scss */
  .i18n-en .promocions_codis td:nth-of-type(5):before {
    content: "Renewal price using code";
  }

  /* line 1747, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida {
    /*
    Label the data
    */
  }
  /* line 1751, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(1):before {
    content: "Registrador";
  }
  /* line 1752, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(2):before {
    content: "1 any";
  }
  /* line 1753, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(3):before {
    content: "2 anys";
  }
  /* line 1754, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(4):before {
    content: "3 anys";
  }
  /* line 1755, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(5):before {
    content: "4 anys";
  }
  /* line 1756, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(6):before {
    content: "5 anys";
  }
  /* line 1757, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(7):before {
    content: "6 anys";
  }
  /* line 1758, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(8):before {
    content: "7 anys";
  }
  /* line 1759, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(9):before {
    content: "8 anys";
  }
  /* line 1760, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(10):before {
    content: "9 anys";
  }
  /* line 1761, ../sass/_fundacio.scss */
  .i18n-ca .promocio_oblida td:nth-of-type(11):before {
    content: "10 anys";
  }

  /* line 1765, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida {
    /*
    Label the data
    */
  }
  /* line 1769, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(1):before {
    content: "Registrador";
  }
  /* line 1770, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(2):before {
    content: "1 año";
  }
  /* line 1771, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(3):before {
    content: "2 años";
  }
  /* line 1772, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(4):before {
    content: "3 años";
  }
  /* line 1773, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(5):before {
    content: "4 años";
  }
  /* line 1774, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(6):before {
    content: "5 años";
  }
  /* line 1775, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(7):before {
    content: "6 años";
  }
  /* line 1776, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(8):before {
    content: "7 años";
  }
  /* line 1777, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(9):before {
    content: "8 años";
  }
  /* line 1778, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(10):before {
    content: "9 años";
  }
  /* line 1779, ../sass/_fundacio.scss */
  .i18n-es .promocio_oblida td:nth-of-type(11):before {
    content: "10 años";
  }

  /* line 1783, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida {
    /*
    Label the data
    */
  }
  /* line 1787, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(1):before {
    content: "Registrar";
  }
  /* line 1788, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(2):before {
    content: "1 year";
  }
  /* line 1789, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(3):before {
    content: "2 years";
  }
  /* line 1790, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(4):before {
    content: "3 years";
  }
  /* line 1791, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(5):before {
    content: "4 years";
  }
  /* line 1792, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(6):before {
    content: "5 years";
  }
  /* line 1793, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(7):before {
    content: "6 years";
  }
  /* line 1794, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(8):before {
    content: "7 years";
  }
  /* line 1795, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(9):before {
    content: "8 years";
  }
  /* line 1796, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(10):before {
    content: "9 years";
  }
  /* line 1797, ../sass/_fundacio.scss */
  .i18n-en .promocio_oblida td:nth-of-type(11):before {
    content: "10 years";
  }
}
/*
 Pagina /ca/whois
*/
/* line 1807, ../sass/_fundacio.scss */
.page-whois #page-title {
  display: none;
}
/* line 1817, ../sass/_fundacio.scss */
.page-whois .domain,
.page-whois .nserver,
.page-whois .user,
.page-whois .owner,
.page-whois .admin,
.page-whois .tech,
.page-whois .billing {
  margin: 20px 0px;
}
/* line 1821, ../sass/_fundacio.scss */
.page-whois .domain .label,
.page-whois .nserver .label,
.page-whois .user .label,
.page-whois .owner .label,
.page-whois .admin .label,
.page-whois .tech .label,
.page-whois .billing .label {
  font-size: 20px;
  border-bottom: 2px solid #c0c0c0;
  margin: 10px 0px;
}
/* line 1827, ../sass/_fundacio.scss */
.page-whois .domain .whois-box,
.page-whois .nserver .whois-box,
.page-whois .user .whois-box,
.page-whois .owner .whois-box,
.page-whois .admin .whois-box,
.page-whois .tech .whois-box,
.page-whois .billing .whois-box {
  clear: both;
  display: block;
}
/* line 1833, ../sass/_fundacio.scss */
.page-whois .domain .key,
.page-whois .domain .value,
.page-whois .nserver .key,
.page-whois .nserver .value,
.page-whois .user .key,
.page-whois .user .value,
.page-whois .owner .key,
.page-whois .owner .value,
.page-whois .admin .key,
.page-whois .admin .value,
.page-whois .tech .key,
.page-whois .tech .value,
.page-whois .billing .key,
.page-whois .billing .value {
  font-size: 16px;
  margin: 5px 5px;
  padding: 10px 15px;
  display: inline-block;
}
/* line 1840, ../sass/_fundacio.scss */
.page-whois .domain .key,
.page-whois .nserver .key,
.page-whois .user .key,
.page-whois .owner .key,
.page-whois .admin .key,
.page-whois .tech .key,
.page-whois .billing .key {
  background-color: #CCCCCC;
  width: 200px;
}
/* line 1844, ../sass/_fundacio.scss */
.page-whois .domain .value,
.page-whois .nserver .value,
.page-whois .user .value,
.page-whois .owner .value,
.page-whois .admin .value,
.page-whois .tech .value,
.page-whois .billing .value {
  background-color: #FFFFFF;
  width: 300px;
}

/* cercadors/whois de dominis */
/* line 5, ../sass/_block_whois.scss */
.region-slogan {
  float: right;
  line-height: 22px;
}

/* mini cercador whois */
/* line 14, ../sass/_block_whois.scss */
.mini-cercador-whois .www,
.mini-cercador-whois .cat,
.mini-cercador-whois .form-item-domain {
  float: left;
  margin-top: 3px;
}

/* line 19, ../sass/_block_whois.scss */
.mini-cercador-whois .form-item {
  margin: 0px;
}

/* line 23, ../sass/_block_whois.scss */
.mini-cercador-whois .form-item-domain input {
  padding: 0px 10px;
  background-color: #FFFFFF;
  border: medium none;
  border-radius: 10px;
  color: #322F31;
  height: 25px;
  text-align: center;
  margin: 3px 3px 0px;
  width: 150px;
}

/* line 34, ../sass/_block_whois.scss */
.mini-cercador-whois input[type="submit"] {
  background-color: #BF2D36;
  border-radius: 5px;
  color: #FFFFFF;
  cursor: pointer;
  height: 30px;
  margin: 0px 3px;
}

/* resultat cerca */
/* line 45, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois-registers {
  margin-top: 7px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background: #bf2d36;
  padding: 10px;
  width: 290px;
  float: right;
}

/* line 54, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois-registers .domain {
  font-size: 1.4em;
  font-weight: normal;
  text-align: center;
}

/* line 60, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois-registers .message {
  margin-top: 10px;
  text-align: center;
}

/* line 64, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois-registers .message img {
  margin-right: 6px;
  width: 13px;
}

/* franja gris a domini */
/* line 72, ../sass/_block_whois.scss */
#cercador-domini-region .mini-cercador-whois {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  margin-left: 10px;
  width: 290px;
}

/* line 80, ../sass/_block_whois.scss */
#cercador-domini-region {
  background: url("../assets/marca-aigua.jpg") no-repeat center 0px #444442;
  padding: 50px 0px 45px;
  /*.container {
  	 background: url("../assets/marca-aigua.jpg") no-repeat -1750px 40px;
   }*/
}

/* cercador whois gran a fundacio i donini*/
/* line 95, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois .www,
#block-fundacio-whois-fundacio-whois .cat,
#block-fundacio-whois-fundacio-whois .form-item-domain {
  float: left;
}

/* line 100, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois .www,
#block-fundacio-whois-fundacio-whois .cat {
  font-size: 2.1em;
  margin-top: 4px;
  color: #6a6a6a;
}

/* line 106, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois .form-item-domain input {
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  height: 40px;
  text-align: center;
  margin: 0px 10px;
  width: 350px;
}

/* line 115, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois .form-item {
  margin: 0px;
}

/* line 119, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois {
  width: 620px;
}

/* line 123, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois .form-domain {
  background-color: #FFFFFF;
  padding: 30px 20px;
}

/* line 128, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois #response .message {
  color: #FFF;
  background-color: #131313;
  text-align: center;
  font-size: 1.5em;
  line-height: 1.5em;
  padding: 10px;
}
/* line 136, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois #response .message img {
  margin-right: 10px;
}

/*#block-fundacio-whois-fundacio-whois .steps {
  width: 100%;
  margin-top: 2px;
  background: #2d2d2d;
}

#block-fundacio-whois-fundacio-whois .step {
  width: 30%;
  float: left;
  padding: 1.5%;
  margin-left: 2px;
  background-color: #999999;
  color: #FFFFFF;
}

#block-fundacio-whois-fundacio-whois .steps a {
  color: #FFFFFF;
}*/
/* line 165, ../sass/_block_whois.scss */
#block-fundacio-whois-fundacio-whois input[type="submit"] {
  background-color: #BF2D36;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  color: #FFFFFF;
  cursor: pointer;
  height: 40px;
  width: 70px;
  margin: 0px 0px 0px 15px;
}

/* line 174, ../sass/_block_whois.scss */
.steps {
  position: relative;
  margin-top: 3px;
  height: 80px;
}

/* line 182, ../sass/_block_whois.scss */
.steps .step-1,
.steps .step-2,
.steps .step-3 {
  background-repeat: no-repeat;
  background-position: left top;
  height: 75px;
  position: absolute;
  display: block;
  color: #FFF;
  cursor: pointer;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 1.1em;
  line-height: 1.1em;
  text-decoration: none;
}

/* line 197, ../sass/_block_whois.scss */
.steps .step-1 {
  background-image: url(../assets/step-1.png);
  width: 165px;
  left: 0px;
  top: 0px;
  padding-left: 40px;
  padding-right: 20px;
}

/* line 205, ../sass/_block_whois.scss */
.steps .step-2 {
  background-image: url(../assets/step-2.png);
  width: 120px;
  left: 197px;
  top: 0px;
  padding-left: 72px;
  padding-right: 33px;
}
/* line 213, ../sass/_block_whois.scss */
.steps .step-2 a {
  color: inherit;
  text-decoration: none;
}
/* line 216, ../sass/_block_whois.scss */
.steps .step-2 a:hover {
  text-decoration: underline;
}

/* line 221, ../sass/_block_whois.scss */
.steps .step-2.current a {
  color: inherit;
}

/* line 224, ../sass/_block_whois.scss */
.steps .step-3 {
  background-image: url(../assets/step-3.png);
  width: 140px;
  right: 0px;
  top: 0px;
  padding-left: 72px;
  padding-right: 13px;
}

/* line 232, ../sass/_block_whois.scss */
.steps .step-1:hover, .steps .step-2:hover, .steps .step-1.current:hover, .steps .step-2.current:hover {
  background-position: left bottom;
  color: #FFF;
}

/* line 236, ../sass/_block_whois.scss */
.steps .step-1.current, .steps .step-2.current {
  background-position: left -87px;
  color: #131313;
}

/* especial ajuts.cat és el node 125 (ca) */
/* line 5, ../sass/_ajuts.scss */
.page-node-125,
.page-node-181,
.page-node-182 {
  /* s'han d'afegir els altres idiomes */
  /* slide de galeria de fotos*/
  /* jurat */
}
/* line 7, ../sass/_ajuts.scss */
.page-node-125 #section-name,
.page-node-181 #section-name,
.page-node-182 #section-name {
  display: none;
}
/* line 10, ../sass/_ajuts.scss */
.page-node-125 .page-content,
.page-node-181 .page-content,
.page-node-182 .page-content {
  background: transparent;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 15, ../sass/_ajuts.scss */
.page-node-125 #page-title,
.page-node-181 #page-title,
.page-node-182 #page-title {
  color: #231f20;
  font-family: "Roboto Slab", "Georgia", "Times New Roman", serif;
  font-weight: normal;
  font-size: 49.6px;
  line-height: 1.2em;
  margin-bottom: 16px;
  margin-top: 0;
  text-align: center;
  background: url("../assets/line-heading.png") repeat-x left 46px;
  clear: both;
  margin: 0 0 20px;
}
/* line 29, ../sass/_ajuts.scss */
.page-node-125 #page-title span,
.page-node-181 #page-title span,
.page-node-182 #page-title span {
  padding: 0px 20px;
  background-image: url("../assets/background.jpg");
}
/* line 35, ../sass/_ajuts.scss */
.page-node-125 .field-name-body,
.page-node-181 .field-name-body,
.page-node-182 .field-name-body {
  text-align: center;
}
/* line 38, ../sass/_ajuts.scss */
.page-node-125 .group-left,
.page-node-181 .group-left,
.page-node-182 .group-left {
  padding-right: 0;
  margin: 0;
}
/* line 42, ../sass/_ajuts.scss */
.page-node-125 .bottom-nav,
.page-node-181 .bottom-nav,
.page-node-182 .bottom-nav {
  margin-top: 30px;
}
/* line 47, ../sass/_ajuts.scss */
.page-node-125 .galeria-fotos,
.page-node-181 .galeria-fotos,
.page-node-182 .galeria-fotos {
  margin-top: 40px;
}
/* line 51, ../sass/_ajuts.scss */
.page-node-125 .galeria-fotos h2,
.page-node-181 .galeria-fotos h2,
.page-node-182 .galeria-fotos h2 {
  text-align: center;
  background: url("../assets/line-heading.png") repeat-x left 28px;
  margin-bottom: 15px;
}
/* line 57, ../sass/_ajuts.scss */
.page-node-125 .galeria-fotos h2 span,
.page-node-181 .galeria-fotos h2 span,
.page-node-182 .galeria-fotos h2 span {
  padding: 0px 20px;
  background: url("../assets/background.jpg");
}
/* line 67, ../sass/_ajuts.scss */
.page-node-125 .person-historic.jurat,
.page-node-181 .person-historic.jurat,
.page-node-182 .person-historic.jurat {
  margin-top: 15px;
  margin-bottom: 20px;
}
/* line 70, ../sass/_ajuts.scss */
.page-node-125 .person-historic.jurat ul,
.page-node-181 .person-historic.jurat ul,
.page-node-182 .person-historic.jurat ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 75, ../sass/_ajuts.scss */
.page-node-125 .person-historic.jurat ul li,
.page-node-181 .person-historic.jurat ul li,
.page-node-182 .person-historic.jurat ul li {
  clear: both;
  margin-bottom: 15px;
}
/* line 79, ../sass/_ajuts.scss */
.page-node-125 .person-historic.jurat .carrec,
.page-node-181 .person-historic.jurat .carrec,
.page-node-182 .person-historic.jurat .carrec {
  font-size: 1em;
  float: left;
  margin-right: 5px;
}
/* line 84, ../sass/_ajuts.scss */
.page-node-125 .person-historic.jurat ul li .data,
.page-node-181 .person-historic.jurat ul li .data,
.page-node-182 .person-historic.jurat ul li .data {
  font-size: 0.8em;
  text-transform: uppercase;
  color: #241f20;
  float: none;
  clear: both;
}
/* line 91, ../sass/_ajuts.scss */
.page-node-125 .person-historic.jurat ul li p,
.page-node-181 .person-historic.jurat ul li p,
.page-node-182 .person-historic.jurat ul li p {
  float: none;
}
/* line 94, ../sass/_ajuts.scss */
.page-node-125 .person-historic.jurat .entitat,
.page-node-181 .person-historic.jurat .entitat,
.page-node-182 .person-historic.jurat .entitat {
  margin-left: 5px;
}
/* line 99, ../sass/_ajuts.scss */
.page-node-125 .jurat p,
.page-node-181 .jurat p,
.page-node-182 .jurat p {
  margin: 0;
}

/* line 105, ../sass/_ajuts.scss */
.guanyador-ajuts h3 {
  padding-right: 140px;
}

/* página especial per a ajuts, sobreescriu alguns estils */
