/**
 * @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. */
/* line 23, ../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 38, ../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 _init.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;
}
*/
/**
 * 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 106, ../sass/_normalize.scss */
html {
  font-family: Lato, Helvetica, Arial, "Nimbus Sans L", sans-serif;
  /* 1 */
  font-size: 87.5%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.42857em;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * 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 137, ../sass/_normalize.scss */
a:link {
  color: #7fb2cc;
  text-decoration: none;
}

/* line 141, ../sass/_normalize.scss */
a:visited {
  color: #7fb2cc;
}

/* line 144, ../sass/_normalize.scss */
a:hover,
a:focus {
  text-decoration: underline;
}

/* line 148, ../sass/_normalize.scss */
a:active {
  color: #548FAB;
}

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

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 158, ../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 174, ../sass/_normalize.scss */
p,
pre {
  margin: 1.42857em 0;
}

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 187, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.42857em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.71429em;
  margin-bottom: 0.71429em;
}

/* line 195, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 1.90476em;
  margin-top: 0.95238em;
  margin-bottom: 0.95238em;
}

/* line 200, ../sass/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 2.442em;
  margin-top: 1.221em;
  margin-bottom: 1.221em;
}

/* line 205, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.42857em;
  margin-top: 1.42857em;
  margin-bottom: 1.42857em;
}

/* line 210, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.72117em;
  margin-top: 1.72117em;
  margin-bottom: 1.72117em;
}

/* line 215, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.1322em;
  margin-top: 2.1322em;
  margin-bottom: 2.1322em;
}

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

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

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

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

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

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 253, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.42857em;
}

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

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

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

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

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

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

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

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 346, ../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 367, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

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

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

/**
 * 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 403, ../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 418, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 437, ../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 448, ../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 462, ../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 476, ../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 487, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-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 502, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-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 511, ../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 517, ../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 527, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 541, ../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.42857em;
  margin-bottom: 1.42857em;
}

/* 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 33, ../sass/layouts/_responsive.scss */
#header,
#main,
#navigation,
#footer,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 44, ../sass/layouts/_responsive.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-bottom {
  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 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#content:before,
#content:after,
#footer:before,
#footer:after,
.region-bottom:before,
.region-bottom:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#content:after,
#footer:after,
.region-bottom:after {
  clear: both;
}

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

  /* line 70, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 768px) and (max-width: 991px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 88, ../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 90, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 95, ../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 103, ../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 105, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 110, ../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 118, ../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 120, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 125, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 130, ../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 136, ../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 140, ../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 145, ../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 149, ../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 5 grid columns for larger screens.
 */
@media all and (min-width: 992px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 166, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 168, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 173, ../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 181, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 183, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 188, ../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 196, ../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 5th column from left. */
  }
  /* line 198, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 50%;
    margin-left: 25%;
    margin-right: -75%;
  }
  /* line 203, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  /* line 208, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }
}
/* 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 15, ../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 39, ../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 65, ../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: 2em;
  line-height: 1.42857em;
}

/* The link around the name of the website. */
/* line 105, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 111, ../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 150, ../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 185, ../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.42857em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  /*background-image: inline-image("message-24-ok.png");
  @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
    *background-image: image-url("message-24-ok.png");
  }*/
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid ForestGreen;
}

/* line 212, ../sass/components/_misc.scss */
.messages--warning {
  /*background-image: inline-image("message-24-warning.png");
  @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
    *background-image: image-url("message-24-warning.png");
  }*/
  border-color: DarkOrange;
}

/* line 221, ../sass/components/_misc.scss */
.messages--error {
  /*background-image: inline-image("message-24-error.png");
  @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
    *background-image: image-url("message-24-error.png");
  }*/
  border-color: Crimson;
}

/* 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: Crimson;
}

/* System status report. */
/* line 244, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: Honeydew;
  color: #555555;
}

/* line 249, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: Ivory;
  color: #555555;
}

/* line 254, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: LavenderBlush;
  color: Crimson;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/**
 * 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;
  list-style: none;
}

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

/* line 453, ../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 463, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 473, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.42857em;
}

/**
 * Menus.
 */
/* line 480, ../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 487, ../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 494, ../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 503, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

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

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 524, ../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 552, ../sass/components/_misc.scss */
.comments {
  margin: 1.42857em 0;
}

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

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

/* Nested comments are indented. */
/* line 573, ../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 583, ../sass/components/_misc.scss */
.form-item {
  margin: 1.42857em 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 587, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 594, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 600, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid Crimson;
}
/* line 607, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 614, ../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 620, ../sass/components/_misc.scss */
.form-required {
  color: Crimson;
}

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

/* Buttons used by contrib modules like Media. */
/* line 631, ../sass/components/_misc.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
/* line 636, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 642, ../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 654, ../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 660, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.42857em;
}

/* line 664, ../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 669, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.42857em 0;
}

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

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

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

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

/* Center checkboxes inside table cell. */
/* line 715, ../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 721, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

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

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 743, ../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 752, ../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 759, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

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

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

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

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

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

/**
 * @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 15, ../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: 14px;
  }
  /* line 34, ../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 54, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 64, ../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 */
/* Default Blocks styling for WFITN */
/* Block 1 - Site slogan */
/* line 4, ../sass/_blocks.scss */
#block-block-1 {
  color: #fff;
  display: none;
  margin: 3.2em 0 0 0;
}
@media all and (min-width: 600px) {
  /* line 4, ../sass/_blocks.scss */
  #block-block-1 {
    display: block;
    text-align: center;
  }
}
@media all and (min-width: 768px) {
  /* line 4, ../sass/_blocks.scss */
  #block-block-1 {
    margin: 0;
    float: left;
    text-align: left;
  }
}
/* line 20, ../sass/_blocks.scss */
#block-block-1 .block-content {
  padding: 1.7em 0;
}
/* line 23, ../sass/_blocks.scss */
#block-block-1 .block-content h2 {
  font-size: 1.15em;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.5em;
}
/* line 30, ../sass/_blocks.scss */
#block-block-1 .block-content h2 small {
  font-size: 90%;
}
/* line 35, ../sass/_blocks.scss */
#block-block-1 .block-content p {
  margin: 0;
}

/* Block 2 - Social icons */
/* line 42, ../sass/_blocks.scss */
#block-block-2 {
  margin: 3.2em 0 0 0;
  text-align: center;
}
@media all and (min-width: 600px) {
  /* line 42, ../sass/_blocks.scss */
  #block-block-2 {
    margin-top: 0;
    float: right;
    width: 50%;
    text-align: left;
  }
}
@media all and (min-width: 768px) {
  /* line 42, ../sass/_blocks.scss */
  #block-block-2 {
    width: auto;
  }
}
/* line 57, ../sass/_blocks.scss */
#block-block-2 .block-content {
  color: #fff;
  padding-top: 1em;
}
@media all and (min-width: 600px) {
  /* line 57, ../sass/_blocks.scss */
  #block-block-2 .block-content {
    padding: 0.85em 0;
  }
}
/* line 65, ../sass/_blocks.scss */
#block-block-2 .block-content a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
}
/* line 71, ../sass/_blocks.scss */
#block-block-2 .block-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media all and (min-width: 600px) {
  /* line 71, ../sass/_blocks.scss */
  #block-block-2 .block-content ul {
    background: transparent url("../images/vertical-separator.gif") top left repeat-y;
  }
}
/* line 80, ../sass/_blocks.scss */
#block-block-2 .block-content ul li {
  display: inline-block;
  line-height: 3em;
  vertical-align: middle;
  margin-left: 1.5em;
}
/* line 86, ../sass/_blocks.scss */
#block-block-2 .block-content ul li span {
  display: none;
}

/* Block 3 - Are you a member / Block 4 - User logged in */
/* line 95, ../sass/_blocks.scss */
#block-block-4 {
  margin: 0 0 5em 0;
  text-align: center;
}
@media all and (min-width: 600px) {
  /* line 95, ../sass/_blocks.scss */
  #block-block-4 {
    float: right;
    width: 50%;
    text-align: right;
  }
}
@media all and (min-width: 768px) {
  /* line 95, ../sass/_blocks.scss */
  #block-block-4 {
    text-align: left;
    width: auto;
    margin-bottom: 0;
  }
}
/* line 111, ../sass/_blocks.scss */
#block-block-4 .block-content {
  padding: 0 1.5em 0 0;
  color: #fff;
}
@media all and (min-width: 600px) {
  /* line 111, ../sass/_blocks.scss */
  #block-block-4 .block-content {
    padding: 0.85em 1.5em 0.85em 0;
  }
}
/* line 119, ../sass/_blocks.scss */
#block-block-4 .block-content p {
  margin: 0;
  line-height: 3em;
  vertical-align: middle;
}
/* line 125, ../sass/_blocks.scss */
#block-block-4 .block-content a {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  line-height: normal;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
/* line 75, ../sass/_mixins.scss */
#block-block-4 .block-content a:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* line 141, ../sass/_blocks.scss */
#block-block-3 {
  margin: 0 0 5em 0;
  text-align: center;
}
@media all and (min-width: 600px) {
  /* line 141, ../sass/_blocks.scss */
  #block-block-3 {
    float: right;
    width: 50%;
    text-align: right;
  }
}
@media all and (min-width: 768px) {
  /* line 141, ../sass/_blocks.scss */
  #block-block-3 {
    text-align: left;
    width: auto;
    margin-bottom: 0;
  }
}
/* line 157, ../sass/_blocks.scss */
#block-block-3 .block-content {
  padding: 0 1.5em 0 0;
  color: #fff;
}
@media all and (min-width: 600px) {
  /* line 157, ../sass/_blocks.scss */
  #block-block-3 .block-content {
    padding: 0.85em 1.5em 0.85em 0;
  }
}
/* line 165, ../sass/_blocks.scss */
#block-block-3 .block-content p {
  margin: 0;
  line-height: 3em;
  vertical-align: middle;
}
/* line 171, ../sass/_blocks.scss */
#block-block-3 .block-content a {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  line-height: normal;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
/* line 75, ../sass/_mixins.scss */
#block-block-3 .block-content a:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

@media all and (max-width: 768px) and (min-width: 768px) {
  /* line 183, ../sass/_blocks.scss */
  #block-block-3 {
    text-align: left;
    width: auto;
    margin-bottom: 0;
    margin-top: 50px;
  }
}

@media all and (max-width: 425px) {
  /* line 195, ../sass/_blocks.scss */
  #block-block-3 .block-content {
    padding: 3.5em 1.5em 0 0;
  }
}
/* Block 5 - Copyright */
@media all and (min-width: 768px) {
  /* line 202, ../sass/_blocks.scss */
  #block-block-5 {
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
  }
}
/* line 207, ../sass/_blocks.scss */
#block-block-5 .block-content {
  color: #9bc2e7;
}
/* line 210, ../sass/_blocks.scss */
#block-block-5 .block-content p {
  text-align: center;
  margin: 0;
}
@media all and (min-width: 768px) {
  /* line 210, ../sass/_blocks.scss */
  #block-block-5 .block-content p {
    text-align: left;
  }
}

/* Block 9 - Footer menu */
/* line 221, ../sass/_blocks.scss */
#block-menu-menu-footer-menu {
  display: none;
}
@media all and (min-width: 768px) {
  /* line 221, ../sass/_blocks.scss */
  #block-menu-menu-footer-menu {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
    display: block;
  }
}
/* line 228, ../sass/_blocks.scss */
#block-menu-menu-footer-menu .block-content {
  color: #9bc2e7;
}
/* line 231, ../sass/_blocks.scss */
#block-menu-menu-footer-menu .block-content a.active {
  color: #daab00;
}
/* line 235, ../sass/_blocks.scss */
#block-menu-menu-footer-menu .block-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
/* line 241, ../sass/_blocks.scss */
#block-menu-menu-footer-menu .block-content ul li {
  display: inline-block;
  padding: 0 1em;
  border-right: 1px solid #7fb2cc;
}
/* line 246, ../sass/_blocks.scss */
#block-menu-menu-footer-menu .block-content ul li.first {
  padding-left: 0;
}
/* line 250, ../sass/_blocks.scss */
#block-menu-menu-footer-menu .block-content ul li.last {
  padding-right: 0;
  border-right: 0;
}

/* Block 7 - Contact footer */
/* line 260, ../sass/_blocks.scss */
#block-block-7 {
  background: transparent url("../images/horizontal-separator.gif") bottom left repeat-x;
}
@media all and (min-width: 600px) {
  /* line 260, ../sass/_blocks.scss */
  #block-block-7 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    background-image: none;
  }
}
@media all and (min-width: 768px) {
  /* line 260, ../sass/_blocks.scss */
  #block-block-7 {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
    margin-bottom: 0;
  }
}
/* line 273, ../sass/_blocks.scss */
#block-block-7 .block-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 1em;
  margin-top: 0;
}
/* line 279, ../sass/_blocks.scss */
#block-block-7 .block-title a {
  color: #fff;
}
/* line 284, ../sass/_blocks.scss */
#block-block-7 .block-content {
  color: #9bc2e7;
  overflow: hidden;
  padding: 0 10px 20px 10px;
}
/* line 289, ../sass/_blocks.scss */
#block-block-7 .block-content p {
  margin: 0;
}

/* Block Masquerade */
/* line 296, ../sass/_blocks.scss */
#block-masquerade-masquerade {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-clip: padding-box;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 10;
  min-width: 225px;
  overflow: visible;
  -moz-transition: right 0.5s ease;
  -o-transition: right 0.5s ease;
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
}
/* line 311, ../sass/_blocks.scss */
#block-masquerade-masquerade:hover {
  -moz-transition: right 0.5s ease;
  -o-transition: right 0.5s ease;
  -webkit-transition: right 0.5s ease;
  transition: right 0.5s ease;
  right: 20px;
}
/* line 316, ../sass/_blocks.scss */
#block-masquerade-masquerade h2 {
  font-size: 1.2em;
  line-height: 1.5em;
}
/* line 321, ../sass/_blocks.scss */
#block-masquerade-masquerade p {
  margin: 0;
}
/* line 325, ../sass/_blocks.scss */
#block-masquerade-masquerade .form-item {
  margin: 0;
}
/* line 329, ../sass/_blocks.scss */
#block-masquerade-masquerade ul {
  margin: 0;
  padding: 0 0 0 1em;
}

/* Block 6 - WFITN 2015,
 * Block 13 - ICS 2015,
 * Block 14 - WFITN 2017
 */
/* line 40, ../sass/_mixins.scss */
#block-block-6 .block-content,
#block-block-13 .block-content,
#block-block-14 .block-content {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 45, ../sass/_mixins.scss */
#block-block-6 .block-content img,
#block-block-13 .block-content img,
#block-block-14 .block-content img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

/* Block 8 - Social icons footer */
@media all and (min-width: 600px) {
  /* line 346, ../sass/_blocks.scss */
  #block-block-8 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
}
@media all and (min-width: 768px) {
  /* line 346, ../sass/_blocks.scss */
  #block-block-8 {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
    margin-bottom: 0;
  }
}
/* line 357, ../sass/_blocks.scss */
#block-block-8 .block-content {
  overflow: hidden;
  padding: 0 10px;
}
/* line 362, ../sass/_blocks.scss */
#block-block-8 ul.socials {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
/* line 368, ../sass/_blocks.scss */
#block-block-8 ul.socials li {
  display: inline-block;
}
/* line 371, ../sass/_blocks.scss */
#block-block-8 ul.socials li a {
  display: block;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  background-color: #002b5e;
  color: #fff;
  text-decoration: none;
  font-size: 1.538em;
}
/* line 382, ../sass/_blocks.scss */
#block-block-8 ul.socials li a:hover {
  background-color: #0053B6;
}
/* line 386, ../sass/_blocks.scss */
#block-block-8 ul.socials li a em {
  padding-left: 4px;
}
/* line 390, ../sass/_blocks.scss */
#block-block-8 ul.socials li a span {
  display: none;
}

/* Block 9 - Last review issue */
/* line 401, ../sass/_blocks.scss */
#block-block-9 .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 408, ../sass/_blocks.scss */
#block-block-9 .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 0.9em;
  margin: 3em 0 2.5em;
}

/* Block 12 - SNIF Fellowship Grant */
/* line 418, ../sass/_blocks.scss */
#block-block-12 .block-outer-wrapper, #block-block-16 .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 425, ../sass/_blocks.scss */
#block-block-12 h2, #block-block-16 h2 {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin: 2em 0 0;
}
/* line 432, ../sass/_blocks.scss */
#block-block-12 p, #block-block-16 p {
  margin-top: 1em;
}

/* line 439, ../sass/_blocks.scss */
#block-block-16 a.button-member {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  text-transform: uppercase;
}
/* line 75, ../sass/_mixins.scss */
#block-block-16 a.button-member:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* Block Simplenews */
/* line 449, ../sass/_blocks.scss */
#block-simplenews-1 .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 456, ../sass/_blocks.scss */
#block-simplenews-1 .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}
/* line 463, ../sass/_blocks.scss */
#block-simplenews-1 .form-item {
  float: left;
  width: 70%;
  margin: 1em 0;
}
/* line 469, ../sass/_blocks.scss */
#block-simplenews-1 .form-submit {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  margin: 1em 0;
}
/* line 75, ../sass/_mixins.scss */
#block-simplenews-1 .form-submit:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}
/* line 474, ../sass/_blocks.scss */
#block-simplenews-1 p {
  margin: 0;
  font-style: italic;
}
/* line 479, ../sass/_blocks.scss */
#block-simplenews-1 label {
  display: none;
}
/* line 483, ../sass/_blocks.scss */
#block-simplenews-1 input[type="text"] {
  padding: 9px 5px 10px;
  border: 1px solid #d5dbe0;
  width: 95%;
}

/* Block User login, Block User menu */
/* line 493, ../sass/_blocks.scss */
#block-user-login .block-outer-wrapper,
#block-system-user-menu .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 500, ../sass/_blocks.scss */
#block-user-login .block-title,
#block-system-user-menu .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}
/* line 507, ../sass/_blocks.scss */
#block-user-login .form-item,
#block-system-user-menu .form-item {
  width: 70%;
  float: left;
  margin: 0 0 10px;
}
/* line 513, ../sass/_blocks.scss */
#block-user-login .form-info,
#block-system-user-menu .form-info {
  margin-top: 19px;
  float: left;
}
/* line 517, ../sass/_blocks.scss */
#block-user-login .form-info a,
#block-system-user-menu .form-info a {
  background-color: #00418f;
  color: #fff;
  display: inline-block;
  padding: 3px 7px;
  text-decoration: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-top: 5px;
}
/* line 526, ../sass/_blocks.scss */
#block-user-login .form-info a:hover,
#block-system-user-menu .form-info a:hover {
  background-color: #0053B6;
}
/* line 530, ../sass/_blocks.scss */
#block-user-login .form-info a i,
#block-system-user-menu .form-info a i {
  font-size: 1.2em;
}
/* line 537, ../sass/_blocks.scss */
#block-user-login .clearfix,
#block-user-login .item-list,
#block-system-user-menu .clearfix,
#block-system-user-menu .item-list {
  clear: both;
  overflow: hidden;
  margin: 0 0 1em 0;
}
/* line 543, ../sass/_blocks.scss */
#block-user-login .clearfix ul,
#block-user-login .item-list ul,
#block-system-user-menu .clearfix ul,
#block-system-user-menu .item-list ul {
  list-style: none;
  padding-left: 0;
  margin: 1em 0;
}
/* line 548, ../sass/_blocks.scss */
#block-user-login .clearfix ul li,
#block-user-login .item-list ul li,
#block-system-user-menu .clearfix ul li,
#block-system-user-menu .item-list ul li {
  display: inline-block;
}
/* line 551, ../sass/_blocks.scss */
#block-user-login .clearfix ul li.first,
#block-user-login .item-list ul li.first,
#block-system-user-menu .clearfix ul li.first,
#block-system-user-menu .item-list ul li.first {
  padding-right: 0.5em;
}
/* line 555, ../sass/_blocks.scss */
#block-user-login .clearfix ul li.last,
#block-user-login .item-list ul li.last,
#block-system-user-menu .clearfix ul li.last,
#block-system-user-menu .item-list ul li.last {
  padding-left: 0.5em;
}
/* line 562, ../sass/_blocks.scss */
#block-user-login input[type="text"],
#block-user-login input[type="password"],
#block-system-user-menu input[type="text"],
#block-system-user-menu input[type="password"] {
  padding: 9px 5px 10px;
  border: 1px solid #d5dbe0;
  width: 95%;
}
/* line 569, ../sass/_blocks.scss */
#block-user-login .form-actions,
#block-system-user-menu .form-actions {
  width: 20%;
  float: left;
  margin: 0;
}
/* line 575, ../sass/_blocks.scss */
#block-user-login .form-submit,
#block-system-user-menu .form-submit {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  margin: 20px 0 0 0;
}
/* line 75, ../sass/_mixins.scss */
#block-user-login .form-submit:hover,
#block-system-user-menu .form-submit:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* Block Media Gallery */
/* line 583, ../sass/_blocks.scss */
.block-media-gallery .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 590, ../sass/_blocks.scss */
.block-media-gallery .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}
/* line 597, ../sass/_blocks.scss */
.block-media-gallery .mg-col {
  margin: 0;
}
/* line 602, ../sass/_blocks.scss */
.block-media-gallery .media-gallery-item-wrapper small {
  line-height: 1.5em;
  display: block;
}
/* line 608, ../sass/_blocks.scss */
.block-media-gallery .media-gallery-item {
  border: 2px solid silver;
  padding: 0;
}
/* line 613, ../sass/_blocks.scss */
.block-media-gallery .more-link {
  text-align: left;
}

/* Block Editorial Manager */
/* line 620, ../sass/_blocks.scss */
#block-block-10 .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 627, ../sass/_blocks.scss */
#block-block-10 .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}

/* Block In Memory */
/* line 637, ../sass/_blocks.scss */
#block-block-11 .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 644, ../sass/_blocks.scss */
#block-block-11 .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}
/* line 651, ../sass/_blocks.scss */
#block-block-11 .block-content {
  font-size: 0.9em;
}

/* Block forum ne topics */
/* Block 9 - Last review issue */
/* line 658, ../sass/_blocks.scss */
#block-forum-new {
  display: none;
}
/* line 661, ../sass/_blocks.scss */
#block-forum-new .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 668, ../sass/_blocks.scss */
#block-forum-new .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-bottom: 1.5em;
}

/* Block MEDIA GALLERY */
/* line 678, ../sass/_blocks.scss */
#block-views-photos-gallery-block-1 .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  Height: 237px;
}
/* line 686, ../sass/_blocks.scss */
#block-views-photos-gallery-block-1 h2 {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin: 0;
  padding-top: 5px;
  margin-bottom: 15px;
}
/* line 695, ../sass/_blocks.scss */
#block-views-photos-gallery-block-1 p {
  margin-top: 1em;
}
/* line 698, ../sass/_blocks.scss */
#block-views-photos-gallery-block-1 .views-row {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* line 703, ../sass/_blocks.scss */
#block-views-photos-gallery-block-1 .views-field-field-image-gallery img {
  padding: 2px;
  border: 1px solid #000000;
}
/* line 709, ../sass/_blocks.scss */
#block-views-photos-gallery-block-1 .views-field-title a {
  font-size: 12px;
  line-height: 15px;
  color: #000000;
}
/* line 715, ../sass/_blocks.scss */
#block-views-photos-gallery-block-1 .view-footer {
  clear: both;
  padding-top: 2px;
}

/* Block SONDAGES */
/* line 725, ../sass/_blocks.scss */
.block-poll-blocks .block-outer-wrapper, .block-advpoll .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 732, ../sass/_blocks.scss */
.block-poll-blocks input.form-submit, .block-advpoll input.form-submit {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  margin: 1em 0;
  min-width: 60%;
}
/* line 75, ../sass/_mixins.scss */
.block-poll-blocks input.form-submit:hover, .block-advpoll input.form-submit:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}
/* line 738, ../sass/_blocks.scss */
.block-poll-blocks h2.node-title, .block-advpoll h2.node-title {
  font-size: 15px;
}
/* line 742, ../sass/_blocks.scss */
.block-poll-blocks p.submitted, .block-advpoll p.submitted {
  display: none;
}
/* line 744, ../sass/_blocks.scss */
.block-poll-blocks div.field-type-text-with-summary, .block-advpoll div.field-type-text-with-summary {
  margin-top: -15px;
}
/* line 746, ../sass/_blocks.scss */
.block-poll-blocks ul.links li, .block-advpoll ul.links li {
  display: inline-block;
  width: 45%;
}
/* line 750, ../sass/_blocks.scss */
.block-poll-blocks ul.links li a, .block-advpoll ul.links li a {
  border: 1px solid #548FAB;
  color: #548FAB;
  display: inline-block;
  padding: 5px 10px;
  width: 80%;
}
/* line 757, ../sass/_blocks.scss */
.block-poll-blocks ul.links li a:hover, .block-advpoll ul.links li a:hover {
  background-color: #548FAB;
  color: #fff;
  text-decoration: none;
}

/* line 769, ../sass/_blocks.scss */
.node-advpoll p.submitted {
  display: none;
}
/* line 771, ../sass/_blocks.scss */
.node-advpoll form {
  text-align: center;
}
/* line 773, ../sass/_blocks.scss */
.node-advpoll div.form-type-radios {
  text-align: left;
  margin-top: -10px;
}
/* line 778, ../sass/_blocks.scss */
.node-advpoll input.form-submit {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  margin: 1em 0;
  min-width: 40%;
}
/* line 75, ../sass/_mixins.scss */
.node-advpoll input.form-submit:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* Default Views styling for WFITN */
/* Frontpage */
/* line 4, ../sass/_views.scss */
.view-frontpage {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  margin-bottom: 1em;
}
/* line 12, ../sass/_views.scss */
.view-frontpage .view-content .node__title {
  font-weight: normal;
  display: none;
}
/* line 16, ../sass/_views.scss */
.view-frontpage .view-content .node__title a {
  color: #333;
}
/* line 21, ../sass/_views.scss */
.view-frontpage .view-content .views-row-last {
  border-top: 1px dotted #666;
  /*p:last-of-type {
  	display: none;
  }*/
}
/* line 24, ../sass/_views.scss */
.view-frontpage .view-content .views-row-last .node__title {
  display: block;
  margin-top: 0.5em;
}

/* Block Views - Latest News Mini */
/* line 39, ../sass/_views.scss */
#block-views-latest-news-block {
  background: transparent url("../images/horizontal-separator.gif") bottom left repeat-x;
}
@media all and (min-width: 600px) {
  /* line 39, ../sass/_views.scss */
  #block-views-latest-news-block {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    background-image: none;
  }
}
@media all and (min-width: 768px) {
  /* line 39, ../sass/_views.scss */
  #block-views-latest-news-block {
    float: left;
    width: 25%;
    margin-left: 25%;
    margin-right: -50%;
    margin-bottom: 0;
  }
}
/* line 52, ../sass/_views.scss */
#block-views-latest-news-block .block-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 1em;
  padding-left: 10px;
}
/* line 59, ../sass/_views.scss */
#block-views-latest-news-block .block-content {
  padding: 20px 10px;
}
/* line 63, ../sass/_views.scss */
#block-views-latest-news-block .views-row {
  overflow: hidden;
  padding: 1em 0;
  border-bottom: 1px dashed #002b5e;
}
/* line 69, ../sass/_views.scss */
#block-views-latest-news-block .views-row-first {
  padding-top: 0;
}
/* line 73, ../sass/_views.scss */
#block-views-latest-news-block .views-row-last {
  padding-bottom: 0;
  border-bottom: 0;
}
/* line 78, ../sass/_views.scss */
#block-views-latest-news-block h3 {
  font-size: 1em;
  margin: 0.5em 0;
  font-weight: normal;
}
/* line 84, ../sass/_views.scss */
#block-views-latest-news-block img {
  float: left;
  margin: 0 1em 0 0;
}

/* Block Views - Latest News Full */
@media all and (min-width: 600px) {
  /* line 91, ../sass/_views.scss */
  #block-views-latest-news-block-full {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
}
@media all and (min-width: 600px) {
  /* line 97, ../sass/_views.scss */
  #block-views-latest-news-block-full .block-outer-wrapper {
    margin-right: 10px;
  }
}
/* line 103, ../sass/_views.scss */
#block-views-latest-news-block-full .block-inner-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 110, ../sass/_views.scss */
#block-views-latest-news-block-full .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}
/* line 117, ../sass/_views.scss */
#block-views-latest-news-block-full .views-row {
  overflow: hidden;
  padding: 1em 0;
  border-bottom: 1px dashed #cccccc;
}
/* line 123, ../sass/_views.scss */
#block-views-latest-news-block-full .views-row-first {
  padding-top: 0;
}
/* line 127, ../sass/_views.scss */
#block-views-latest-news-block-full h3 {
  font-size: 1.077em;
  margin: 0 0 0.5em 0;
  line-height: 1.5em;
}
/* line 132, ../sass/_views.scss */
#block-views-latest-news-block-full h3 a {
  color: #00418f;
}
/* line 137, ../sass/_views.scss */
#block-views-latest-news-block-full p {
  margin: 0 0 0.5em 0;
  color: #666;
}
/* line 142, ../sass/_views.scss */
#block-views-latest-news-block-full img {
  float: left;
  margin: 0 1em 0 0;
  border: 2px solid #cccccc;
}
/* line 148, ../sass/_views.scss */
#block-views-latest-news-block-full .more-link {
  text-align: left;
  padding-top: 0.5em;
}

/* Block Views - Quicklinks */
/* line 155, ../sass/_views.scss */
#block-views-links-block {
  background: transparent url("../images/horizontal-separator.gif") bottom left repeat-x;
}
@media all and (min-width: 600px) {
  /* line 155, ../sass/_views.scss */
  #block-views-links-block {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    background-image: none;
    clear: left;
  }
}
@media all and (min-width: 768px) {
  /* line 155, ../sass/_views.scss */
  #block-views-links-block {
    float: left;
    width: 25%;
    margin-left: 50%;
    margin-right: -75%;
    margin-bottom: 0;
    clear: none;
  }
}
/* line 170, ../sass/_views.scss */
#block-views-links-block .block-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 1em;
  padding-left: 10px;
}
/* line 177, ../sass/_views.scss */
#block-views-links-block .block-content {
  padding: 20px 10px;
}
/* line 180, ../sass/_views.scss */
#block-views-links-block .block-content ul {
  padding-left: 15px;
  margin: 0;
}
/* line 184, ../sass/_views.scss */
#block-views-links-block .block-content ul li {
  list-style-type: square;
  color: #9bc2e7;
  margin-bottom: 5px;
}
/* line 192, ../sass/_views.scss */
#block-views-links-block .links-desc {
  font-size: 0.923em;
}

/* Block Views - Upcoming events */
@media all and (min-width: 600px) {
  /* line 198, ../sass/_views.scss */
  #block-views-calendar-block-upcoming {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
}
@media all and (min-width: 600px) {
  /* line 203, ../sass/_views.scss */
  #block-views-calendar-block-upcoming .block-outer-wrapper {
    margin-left: 10px;
  }
}
/* line 209, ../sass/_views.scss */
#block-views-calendar-block-upcoming .block-inner-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 216, ../sass/_views.scss */
#block-views-calendar-block-upcoming .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}
/* line 223, ../sass/_views.scss */
#block-views-calendar-block-upcoming .views-row {
  overflow: hidden;
  padding: 1em 0;
  border-bottom: 1px dashed #cccccc;
}
/* line 229, ../sass/_views.scss */
#block-views-calendar-block-upcoming .views-row-first {
  padding-top: 0;
}
/* line 233, ../sass/_views.scss */
#block-views-calendar-block-upcoming .more-link {
  text-align: left;
  padding-top: 0.5em;
}
/* line 238, ../sass/_views.scss */
#block-views-calendar-block-upcoming h3 {
  font-size: 1.077em;
  margin: 0 0 0.5em 0;
  /*padding-left: 80px;*/
  color: #00418f;
  line-height: 1.5em;
}
/* line 246, ../sass/_views.scss */
#block-views-calendar-block-upcoming p {
  margin: 0 0 0.5em 0;
  /*padding-left: 80px;*/
  color: #666;
}

/* Block Views - SlidesJS */
/* line 256, ../sass/_views.scss */
#block-views-latest-news-block-slider .block-outer-wrapper {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 262, ../sass/_views.scss */
#block-views-latest-news-block-slider .block-inner-wrapper {
  border: 6px solid #fff;
}
/* line 266, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-row {
  position: relative;
}
/* line 270, ../sass/_views.scss */
#block-views-latest-news-block-slider img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
/* line 276, ../sass/_views.scss */
#block-views-latest-news-block-slider #slider {
  position: relative;
}
/* line 280, ../sass/_views.scss */
#block-views-latest-news-block-slider h2, #block-views-latest-news-block-slider p {
  margin: 0;
  line-height: 1.53846em;
  color: #fff;
}
/* line 286, ../sass/_views.scss */
#block-views-latest-news-block-slider .caption-bottom {
  position: absolute;
  bottom: 4px;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px 20px;
  z-index: 101;
  color: #fff;
  max-width: 100%;
}
@media all and (min-width: 600px) {
  /* line 286, ../sass/_views.scss */
  #block-views-latest-news-block-slider .caption-bottom {
    max-width: 85%;
  }
}
@media all and (min-width: 768px) {
  /* line 286, ../sass/_views.scss */
  #block-views-latest-news-block-slider .caption-bottom {
    max-width: 65%;
  }
}
/* line 305, ../sass/_views.scss */
#block-views-latest-news-block-slider .slidesjs-previous,
#block-views-latest-news-block-slider .slidesjs-next {
  text-indent: -9999px;
  height: 36px;
  width: 36px;
  background: #00418f url("../images/slider-arrows.png") 0 0 no-repeat;
  position: absolute;
  bottom: 0;
  right: 36px;
  z-index: 101;
  display: none;
}
@media all and (min-width: 768px) {
  /* line 305, ../sass/_views.scss */
  #block-views-latest-news-block-slider .slidesjs-previous,
  #block-views-latest-news-block-slider .slidesjs-next {
    display: block;
  }
}
/* line 321, ../sass/_views.scss */
#block-views-latest-news-block-slider .slidesjs-previous:hover,
#block-views-latest-news-block-slider .slidesjs-next:hover {
  background-color: #0053B6;
}
/* line 325, ../sass/_views.scss */
#block-views-latest-news-block-slider .slidesjs-next {
  background: #00418f url("../images/slider-arrows.png") -36px 0 no-repeat;
  right: 0;
}
/* line 329, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-cycle-main-frame-row {
  width: 100% !important;
  height: auto !important;
}
@media all and (min-width: 768px) {
  /* line 329, ../sass/_views.scss */
  #block-views-latest-news-block-slider .views-slideshow-cycle-main-frame-row {
    width: 100%;
    height: 100%;
    max-width: 768px !important;
    max-height: 405px !important;
  }
}
/* line 339, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom {
  z-index: 1000;
  position: relative;
  float: right;
  margin-top: -26px;
  display: none;
}
@media all and (min-width: 768px) {
  /* line 339, ../sass/_views.scss */
  #block-views-latest-news-block-slider .views-slideshow-controls-bottom {
    display: block;
  }
}
/* line 349, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_previous_latest_news-block_slider a {
  font-size: 0;
  text-decoration: none;
}
/* line 352, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_previous_latest_news-block_slider a:before {
  color: #ffffff;
  content: '\f104';
  font-family: 'FontAwesome';
  font-size: 18px;
  height: 36px;
  width: 36px;
  background-color: #00418f;
  padding: 8px 13px 7px 11px;
  text-decoration: none;
}
/* line 362, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_previous_latest_news-block_slider a:before:hover {
  color: #0053B6;
  text-decoration: none;
}
/* line 368, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_previous_latest_news-block_slider:hover {
  text-decoration: none !important;
}
/* line 371, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_previous_latest_news-block_slider:hover a:before {
  background-color: #0053B6;
}
/* line 378, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_pause_latest_news-block_slider {
  display: none;
}
/* line 382, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_next_latest_news-block_slider a {
  font-size: 0;
  text-decoration: none;
}
/* line 385, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_next_latest_news-block_slider a:before {
  color: #ffffff;
  content: '\f105';
  font-family: 'FontAwesome';
  font-size: 18px;
  height: 36px;
  width: 36px;
  background-color: #00418f;
  padding: 8px 11px 7px 13px;
  text-decoration: none;
}
/* line 395, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_next_latest_news-block_slider a:before:hover {
  color: #0053B6;
  text-decoration: none !important;
}
/* line 402, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_next_latest_news-block_slider:hover {
  text-decoration: none !important;
}
/* line 405, ../sass/_views.scss */
#block-views-latest-news-block-slider .views-slideshow-controls-bottom #views_slideshow_controls_text_next_latest_news-block_slider:hover a:before {
  background-color: #0053B6;
}

/* Block Views - User infos */
/* line 417, ../sass/_views.scss */
#block-views-user-information-block .block-outer-wrapper {
  padding: 10px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
/* line 424, ../sass/_views.scss */
#block-views-user-information-block .block-title {
  color: #00418f;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 1.5em;
}
/* line 432, ../sass/_views.scss */
#block-views-user-information-block .block-content a.logout {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
/* line 75, ../sass/_mixins.scss */
#block-views-user-information-block .block-content a.logout:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* View - Committees */
/* line 106, ../sass/_mixins.scss */
.view-committees .view-content:after {
  content: "";
  display: table;
  clear: both;
}
/* line 443, ../sass/_views.scss */
.view-committees .views-row {
  width: 97%;
  margin: 1em 1.5%;
  float: left;
  position: relative;
}
@media all and (min-width: 480px) {
  /* line 443, ../sass/_views.scss */
  .view-committees .views-row {
    width: 47%;
  }
  /* line 452, ../sass/_views.scss */
  .view-committees .views-row:nth-child(2n+1) {
    clear: left;
  }
}
@media all and (min-width: 600px) {
  /* line 443, ../sass/_views.scss */
  .view-committees .views-row {
    width: 30%;
  }
  /* line 460, ../sass/_views.scss */
  .view-committees .views-row:nth-child(2n+1) {
    clear: none;
  }
  /* line 464, ../sass/_views.scss */
  .view-committees .views-row:nth-child(3n+1) {
    clear: left;
  }
}
/* line 474, ../sass/_views.scss */
.view-committees.view-display-id-page .vignette .vignette-more:after {
  width: 50px;
  text-align: center;
  height: 5px;
  background-color: #00418f;
  display: block;
  content: '';
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: 33px;
}
/* line 487, ../sass/_views.scss */
.view-committees.view-display-id-page .vignette .item-photo {
  background: #00418f;
}
/* line 490, ../sass/_views.scss */
.view-committees.view-display-id-page .vignette .item-photo span {
  display: block;
  height: 200px;
}
/* line 495, ../sass/_views.scss */
.view-committees.view-display-id-page .vignette .item-photo span:after {
  content: '+';
  color: #ffffff;
  top: 123px;
  font-size: 39px;
  font-weight: 300;
  left: 45%;
  transform: translate(-25%);
  border: 2px solid #ffffff;
  text-align: center;
  margin-top: -25px;
  position: absolute;
  padding: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
/* line 517, ../sass/_views.scss */
.view-committees.view-display-id-page .vignette .item-photo span:hover:after {
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
}
/* line 526, ../sass/_views.scss */
.view-committees.view-display-id-page .vignette .item-photo:hover img {
  opacity: 0.5;
  transition: all 1s;
  -webkit-transition: all 1s;
}

/* line 539, ../sass/_views.scss */
.node-34 {
  width: 100%;
  display: gitblock;
}
@media all and (min-width: 480px) {
  /* line 539, ../sass/_views.scss */
  .node-34 {
    display: inline-block;
    width: 49%;
  }
}
@media all and (min-width: 600px) {
  /* line 539, ../sass/_views.scss */
  .node-34 {
    width: 50%;
    display: inline-block;
  }
}

/* line 552, ../sass/_views.scss */
.node-726 {
  width: 100%;
  display: block;
}
/* line 556, ../sass/_views.scss */
.node-726 h2 a {
  color: #00418f;
}
@media all and (min-width: 480px) {
  /* line 552, ../sass/_views.scss */
  .node-726 {
    display: inline-block;
    width: 49%;
  }
}
@media all and (min-width: 600px) {
  /* line 552, ../sass/_views.scss */
  .node-726 {
    width: 49%;
    display: inline-block;
  }
}

/* line 570, ../sass/_views.scss */
.node-632 {
  width: 100%;
  display: block;
}
/* line 574, ../sass/_views.scss */
.node-632 h2 a {
  color: #00418f;
}
@media all and (min-width: 480px) {
  /* line 570, ../sass/_views.scss */
  .node-632 {
    display: inline-block;
    width: 49%;
  }
}
@media all and (min-width: 600px) {
  /* line 570, ../sass/_views.scss */
  .node-632 {
    width: 49%;
    display: inline-block;
  }
}

/* line 590, ../sass/_views.scss */
.view-footer .grid {
  width: 100%;
  margin: 1em 1.5%;
}
/* line 593, ../sass/_views.scss */
.view-footer .grid .vignette {
  width: auto;
  height: 340px;
}
@media all and (min-width: 480px) {
  /* line 590, ../sass/_views.scss */
  .view-footer .grid {
    width: 100%;
  }
}
@media all and (min-width: 600px) {
  /* line 590, ../sass/_views.scss */
  .view-footer .grid {
    width: 60%;
  }
}

/* View - WFITN Meetings */
/* line 613, ../sass/_views.scss */
.view-wfitn-meetings .view-header h2 {
  position: relative;
  text-align: center;
}
/* line 617, ../sass/_views.scss */
.view-wfitn-meetings .view-header h2:before {
  position: absolute;
  content: '';
  border-top: 1px solid #00418f;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
}
/* line 627, ../sass/_views.scss */
.view-wfitn-meetings .view-header h2 span {
  display: inline-block;
  padding: 0 8px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
/* line 637, ../sass/_views.scss */
.view-wfitn-meetings .views-row {
  padding: 1em 0;
  border-bottom: 1px solid #cccccc;
}
/* line 642, ../sass/_views.scss */
.view-wfitn-meetings .views-row-first {
  padding-top: 0;
}
/* line 646, ../sass/_views.scss */
.view-wfitn-meetings .views-row-last {
  border-bottom: 0;
}
/* line 650, ../sass/_views.scss */
.view-wfitn-meetings .views-field-title {
  margin-bottom: 0;
}

/* View - Links */
/* line 658, ../sass/_views.scss */
.view-links .views-row {
  padding: 1em 0;
  border-bottom: 1px solid #cccccc;
}
/* line 663, ../sass/_views.scss */
.view-links .views-row-first {
  padding-top: 0;
}
/* line 667, ../sass/_views.scss */
.view-links .views-row-last {
  border-bottom: 0;
}

/**** View Video *****/
/* line 676, ../sass/_views.scss */
.view-videos .views-row {
  width: 50%;
}
/* line 678, ../sass/_views.scss */
.view-videos .views-row .views-field-field-iframe {
  height: 230px;
}
/* line 680, ../sass/_views.scss */
.view-videos .views-row .views-field-field-iframe .field-content {
  height: 230px;
}
/* line 682, ../sass/_views.scss */
.view-videos .views-row .views-field-field-iframe .field-content .field-iframe-instance {
  height: 230px;
}
/* line 684, ../sass/_views.scss */
.view-videos .views-row .views-field-field-iframe .field-content .field-iframe-instance iframe {
  height: 205px;
}
/* line 692, ../sass/_views.scss */
.view-videos .views-row .views-field-field-pr-nom .info-video {
  border-left: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  padding: 0 10px 10px;
}
/* line 697, ../sass/_views.scss */
.view-videos .views-row .views-field-field-pr-nom .info-video .part1 {
  border-bottom: 1px dotted #bababa;
  height: 30px;
}
/* line 700, ../sass/_views.scss */
.view-videos .views-row .views-field-field-pr-nom .info-video .part1 .meetings {
  float: left;
  font-weight: bold;
}
/* line 704, ../sass/_views.scss */
.view-videos .views-row .views-field-field-pr-nom .info-video .part1 .year {
  float: right;
  color: #00418F;
}
/* line 709, ../sass/_views.scss */
.view-videos .views-row .views-field-field-pr-nom .info-video .part2 {
  clear: both;
  padding-top: 10px;
}

/* line 719, ../sass/_views.scss */
.view-filters {
  margin: 0 15px;
  background-color: #eeeeee;
  padding: 10px 0 10px 20px;
}
/* line 723, ../sass/_views.scss */
.view-filters label {
  text-transform: uppercase;
  padding-bottom: 5px;
}
/* line 727, ../sass/_views.scss */
.view-filters select {
  background-color: #ffffff;
  height: 38px;
  border-radius: 0 !important;
}
/* line 733, ../sass/_views.scss */
.view-filters #edit-field-nom-value {
  border-radius: 5px !important;
}
/* line 736, ../sass/_views.scss */
.view-filters .views-submit-button {
  float: none;
  text-align: center;
}
/* line 739, ../sass/_views.scss */
.view-filters .views-submit-button #edit-submit-videos {
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 7px 15px;
}

/* Default navigation styling for WFITN */
/* line 7, ../sass/_nav.scss */
#navigation .menu li {
  float: none;
  display: inline-block;
  padding: 0;
  position: relative;
  padding: 1em 10px;
      /*&.active,
      &.active-trail {
        background-color: $lightgrey;

        &:before {
          content: '';
          display: block;
          height: 40px;
          width: 4px;
          background: transparent url('../images/menu-shadow-left.png') bottom left no-repeat;
          position: absolute;
          left: -4px;
          top: 0;
        }

        &:after {
          content: '';
          display: block;
          height: 40px;
          width: 4px;
          background: transparent url('../images/menu-shadow-right.png') bottom right no-repeat;
          position: absolute;
          right: -4px;
          top: 0;
        }
      }*/
}
/* line 41, ../sass/_nav.scss */
#navigation .menu li a, #navigation .menu li span {
  display: block;
  font-size: 1.231em;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  /*margin: 0 0.5em;*/
  position: relative;
  cursor: pointer;
}
/* line 51, ../sass/_nav.scss */
#navigation .menu li a.active, #navigation .menu li a.active-trail, #navigation .menu li span.active, #navigation .menu li span.active-trail {
  color: #00418f;
}
/* line 60, ../sass/_nav.scss */
.not-logged-in #navigation .menu li.private > a, .not-logged-in
#navigation .menu li.private > span {
  opacity: 0.6;
  cursor: default;
}
/* line 68, ../sass/_nav.scss */
#navigation .menu li.expanded > a,
#navigation .menu li.expanded > span {
  padding-right: 20px;
}
/* line 72, ../sass/_nav.scss */
#navigation .menu li.expanded > a:after,
#navigation .menu li.expanded > span:after {
  font-family: FontAwesome;
  font-size: 0.85em;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
/* line 88, ../sass/_nav.scss */
#navigation .menu li.expanded.active-trail > a:after,
#navigation .menu li.expanded.active-trail > span:after {
  color: #00418f;
}
/* line 95, ../sass/_nav.scss */
#navigation .menu li ul {
  display: none;
  position: absolute;
  width: 250px;
  z-index: 9999;
  top: 100%;
  left: 0;
  padding: 0;
  background-color: #efefef;
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* line 114, ../sass/_nav.scss */
#navigation .menu li ul:after {
  content: " ";
  top: -7px;
  left: 50%;
  margin-left: -8px;
  position: absolute;
  width: 16px;
  height: 7px;
  background: transparent url("../images/menu-arrow-top.png") top left no-repeat;
  z-index: 99;
}
/* line 126, ../sass/_nav.scss */
#navigation .menu li ul li {
  display: block;
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px solid #e2e2e2;
}
/* line 132, ../sass/_nav.scss */
#navigation .menu li ul li:last-child {
  border-bottom: 0;
}
/* line 137, ../sass/_nav.scss */
#navigation .menu li ul a {
  color: #00418f;
  font-weight: normal;
}
/* line 141, ../sass/_nav.scss */
#navigation .menu li ul a:hover {
  color: #daab00;
}
/* line 148, ../sass/_nav.scss */
#navigation .menu li:hover ul {
  display: block;
}
/* line 154, ../sass/_nav.scss */
#navigation .menu li.menu-wide ul {
  width: 400px;
}
/* line 157, ../sass/_nav.scss */
#navigation .menu li.menu-wide ul:after {
  left: 25%;
}
/* line 162, ../sass/_nav.scss */
#navigation .menu li.menu-wide ul li a {
  font-size: 1.1em;
}
/* line 168, ../sass/_nav.scss */
#navigation .menu li.menu-wide.sub-menu {
  color: #00418f;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/*
* Tabs overrides.
*/
/* line 106, ../sass/_mixins.scss */
.tabs:after {
  content: "";
  display: table;
  clear: both;
}

/* line 8, ../sass/_tabs.scss */
.tabs-primary,
.tabs-secondary {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: center;
}
/* line 15, ../sass/_tabs.scss */
.section-forum #content .tabs-primary, .section-forum #content
.tabs-secondary {
  display: none;
}
/* line 19, ../sass/_tabs.scss */
.tabs-primary .tabs-primary__tab,
.tabs-primary .tabs-secondary__tab,
.tabs-secondary .tabs-primary__tab,
.tabs-secondary .tabs-secondary__tab {
  display: inline-block;
  margin: 0 3px 0 0;
}
/* line 24, ../sass/_tabs.scss */
.tabs-primary .tabs-primary__tab a,
.tabs-primary .tabs-secondary__tab a,
.tabs-secondary .tabs-primary__tab a,
.tabs-secondary .tabs-secondary__tab a {
  display: block;
  padding: 8px 10px;
  border: 1px solid #ccc;
  color: #666;
  background-color: #efefef;
}
/* line 31, ../sass/_tabs.scss */
.tabs-primary .tabs-primary__tab a:hover,
.tabs-primary .tabs-secondary__tab a:hover,
.tabs-secondary .tabs-primary__tab a:hover,
.tabs-secondary .tabs-secondary__tab a:hover {
  text-decoration: none;
}
/* line 37, ../sass/_tabs.scss */
.tabs-primary .tabs-primary__tab.is-active a,
.tabs-primary .tabs-secondary__tab.is-active a,
.tabs-secondary .tabs-primary__tab.is-active a,
.tabs-secondary .tabs-secondary__tab.is-active a {
  background-color: #00418f;
  color: #fff;
}

/* Accordion */
/* line 47, ../sass/_tabs.scss */
.accordion > div {
  border: 1px solid;
  position: relative;
  border-bottom: 0;
  clear: both;
  padding: 15px;
}
/* line 54, ../sass/_tabs.scss */
.accordion > div > .tab {
  font-size: 100%;
  cursor: pointer;
  position: relative;
  margin: 0;
}
/* line 60, ../sass/_tabs.scss */
.accordion > div > .tab:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  content: "\f0da";
}
/* line 75, ../sass/_tabs.scss */
.accordion > div > .tab.active:after {
  content: "\f0d7";
}
/* line 81, ../sass/_tabs.scss */
.accordion > div {
  border-color: #e7eaed;
}
/* line 84, ../sass/_tabs.scss */
.accordion > div:last-of-type {
  border-bottom: 1px solid #e7eaed;
}
/* line 87, ../sass/_tabs.scss */
.accordion > div:nth-child(odd) {
  background-color: #f3f3f3;
}

/* line 94, ../sass/_tabs.scss */
.horizontal-tabs li.selected {
  background-color: #fff;
}
/* line 97, ../sass/_tabs.scss */
.horizontal-tabs li.selected a {
  background-color: #fff;
}

/* Calendar */
/* line 2, ../sass/_calendar.scss */
.calendar-stamp {
  float: left;
  overflow: hidden;
  width: 65px;
  margin-right: 1em;
  margin-bottom: 1em;
}
/* line 9, ../sass/_calendar.scss */
.calendar-stamp .cal-month {
  display: block;
  text-align: center;
  line-height: 1.5em;
  color: #fff;
  font-size: 1.154em;
  background-color: #00418f;
  font-weight: bold;
}
/* line 19, ../sass/_calendar.scss */
.calendar-stamp .cal-day {
  display: block;
  text-align: center;
  line-height: 2.462em;
  color: #666;
  font-size: 1.385em;
  background-color: #f3f3f3;
  font-weight: bold;
}

/* line 34, ../sass/_calendar.scss */
.view .date-nav-wrapper .date-nav {
  margin-bottom: 0;
}
/* line 43, ../sass/_calendar.scss */
.view .date-nav-wrapper .date-prev a {
  margin-right: 10px;
}
/* line 49, ../sass/_calendar.scss */
.view .date-nav-wrapper .date-next a {
  margin-left: 10px;
}

/* line 58, ../sass/_calendar.scss */
table .mini-day-on a {
  text-decoration: none;
  background-color: #00418f;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 1px 2px;
}
/* line 65, ../sass/_calendar.scss */
table .mini-day-on a:hover {
  text-decoration: none;
  background-color: #002b5e;
}

/****** UPCOMING EVENT LIST *******/
/* line 77, ../sass/_calendar.scss */
#block-views-calendar-block-all-upcoming h2 {
  margin-top: 40px;
}

/* line 84, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .event-block {
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
/* line 87, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .event-block .col-1-3 {
  padding-left: 0;
}
/* line 91, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .title-event {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0.8em;
}
/* line 98, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .date-event {
  margin: 0.5em 0;
}
/* line 101, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .date-event i:before {
  padding-right: 7px;
}
/* line 106, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .lieu-event {
  margin: 0.5em 0;
}
/* line 109, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .lieu-event i:before {
  padding-right: 7px;
}
/* line 114, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .btn-small {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 13px;
}
/* line 122, ../sass/_calendar.scss */
.view-display-id-block_all_upcoming .btn-small:hover {
  text-decoration: none !important;
  background-color: #0053b6;
}

/* line 1, ../sass/_user-profile.scss */
.profile {
  position: relative;
}
/* line 4, ../sass/_user-profile.scss */
.profile .user-picture {
  margin-right: 0;
}
/* line 7, ../sass/_user-profile.scss */
.profile .user-picture img {
  width: 100px;
  max-width: 100px;
  border: 2px solid silver;
}
/* line 14, ../sass/_user-profile.scss */
.profile .field {
  margin: 0.5em 0;
}
/* line 20, ../sass/_user-profile.scss */
.profile .field-label-inline.clearfix:after {
  clear: none;
}
/* line 25, ../sass/_user-profile.scss */
.profile .field-label-inline .field-label {
  width: 25%;
  float: left;
}
/* line 29, ../sass/_user-profile.scss */
.profile .field-label-inline .field-items {
  margin-left: 25%;
  float: none;
}
/* line 35, ../sass/_user-profile.scss */
.profile dt {
  float: left;
  width: 25%;
  clear: left;
}
/* line 41, ../sass/_user-profile.scss */
.profile dd {
  float: left;
}

/* line 48, ../sass/_user-profile.scss */
#user-profile-form label {
  /*display: inline-block;*/
}
/* line 52, ../sass/_user-profile.scss */
#user-profile-form input[type="text"],
#user-profile-form input[type="file"],
#user-profile-form input[type="password"],
#user-profile-form select,
#user-profile-form textarea {
  padding: 9px 5px 10px;
  border: 1px solid #d5dbe0;
}
/* line 61, ../sass/_user-profile.scss */
#user-profile-form .form-actions {
  margin: 1em 0;
  text-align: center;
}
/* line 66, ../sass/_user-profile.scss */
#user-profile-form .form-submit {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
/* line 75, ../sass/_mixins.scss */
#user-profile-form .form-submit:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}
/* line 70, ../sass/_user-profile.scss */
#user-profile-form #edit-cancel {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #fff;
  color: #666 !important;
  text-decoration: none;
  padding: 10px;
  margin-left: 1em;
}
/* line 75, ../sass/_mixins.scss */
#user-profile-form #edit-cancel:hover {
  text-decoration: none !important;
  color: #333;
}
/* line 75, ../sass/_user-profile.scss */
#user-profile-form .date-padding {
  padding: 0;
}
/* line 79, ../sass/_user-profile.scss */
#user-profile-form #edit-field-user-email-display {
  display: none;
}

/* line 86, ../sass/_user-profile.scss */
.page-user fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
/* line 91, ../sass/_user-profile.scss */
.page-user fieldset legend {
  display: none;
}
/* line 96, ../sass/_user-profile.scss */
.page-user .form-item-nodeaccess-password {
  display: none;
}
/* line 101, ../sass/_user-profile.scss */
.page-user .tabs-secondary__tab a {
  font-size: 1.2em;
  padding: 12px 20px;
  text-transform: uppercase;
}

/* line 110, ../sass/_user-profile.scss */
.page-user-edit .tabs-primary,
.page-user-edit .tabs-secondary,
.page-user-edit .form-item-nodeaccess-password {
  display: none;
}

/* line 119, ../sass/_user-profile.scss */
.page-user-edit-simplenews fieldset {
  margin: 0 0 1em 0;
  padding: 0;
  border: 1px solid #ccc;
  position: relative;
  background-color: #dedede;
}
/* line 126, ../sass/_user-profile.scss */
.page-user-edit-simplenews fieldset legend {
  display: block;
  background: #fff;
  border-right: 1px solid #ccc;
  padding: 1px;
  padding-top: 0;
  margin: 0;
  min-width: 5em;
  float: left;
  color: #000;
  font-weight: bold;
}
/* line 138, ../sass/_user-profile.scss */
.page-user-edit-simplenews fieldset legend span {
  padding: 0.5em 0.6em 0.3em 0.6em;
  display: block;
}
/* line 144, ../sass/_user-profile.scss */
.page-user-edit-simplenews fieldset .fieldset-wrapper {
  background-color: #fff;
  padding: 1em;
  clear: both;
}
/* line 149, ../sass/_user-profile.scss */
.page-user-edit-simplenews fieldset .fieldset-wrapper .form-checkboxes {
  margin: 0.5em 0;
}

/* line 3, ../sass/_members.scss */
.view-members .views-widget-filter-realname {
  padding: .5em 0 0 0;
}
/* line 7, ../sass/_members.scss */
.view-members .views-submit-button {
  display: none;
}
/* line 10, ../sass/_members.scss */
.view-members .views-submit-button input {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  margin-top: 1.3em !important;
}
/* line 75, ../sass/_mixins.scss */
.view-members .views-submit-button input:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}
/* line 16, ../sass/_members.scss */
.view-members .views-table {
  width: 100%;
}
/* line 19, ../sass/_members.scss */
.view-members .views-table th, .view-members .views-table td {
  padding: 8px;
}
/* line 23, ../sass/_members.scss */
.view-members .views-table .views-field-realname {
  width: 25%;
}
/* line 27, ../sass/_members.scss */
.view-members .views-table .views-field-mail {
  width: 20%;
  text-align: center;
}
/* line 31, ../sass/_members.scss */
.view-members .views-table .views-field-mail a {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
/* line 75, ../sass/_mixins.scss */
.view-members .views-table .views-field-mail a:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}
/* line 37, ../sass/_members.scss */
.view-members .views-table .views-field-picture img {
  max-width: 65px;
}

/* line 44, ../sass/_members.scss */
.chosen-container-multi .chosen-choices {
  /*padding-top: 9px!important;
  padding-bottom: 8px!important;*/
  border-color: #d5dbe0 !important;
  background-image: none !important;
  height: 38px !important;
}

/* line 51, ../sass/_members.scss */
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  height: 36px !important;
}

/* line 54, ../sass/_members.scss */
.chosen-container-multi .chosen-choices li.search-choice {
  margin-top: 8px !important;
}

/* line 59, ../sass/_members.scss */
.membership-row {
  padding: 2em 0 1em;
  border-bottom: 1px solid #dedede;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.membership-row .membership-header:before, .membership-row .membership-header:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.membership-row .membership-header:after {
  clear: both;
}
/* line 68, ../sass/_members.scss */
.membership-row .membership-title {
  font-weight: bold;
  font-size: 1.2em;
  float: left;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: -33.33333%;
}
/* line 74, ../sass/_members.scss */
.membership-row .membership-status {
  float: left;
  width: 16.66667%;
  margin-left: 33.33333%;
  margin-right: -50%;
  text-align: right;
}
/* line 78, ../sass/_members.scss */
.membership-row .membership-status .membership-ok {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid #4cae4c;
  color: #fff;
  background-color: #5cb85c;
}
/* line 96, ../sass/_members.scss */
.membership-row .membership-status .btn {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
/* line 75, ../sass/_mixins.scss */
.membership-row .membership-status .btn:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}
/* line 101, ../sass/_members.scss */
.membership-row .membership-status .btn-sign-in:before {
  content: "\f090";
  font-family: 'FontAwesome', serif;
}

/* line 109, ../sass/_members.scss */
.membership-row-first {
  padding-top: 0;
}

/* line 113, ../sass/_members.scss */
.membership-row-last {
  padding-bottom: 0;
  border-bottom: 0;
}

/* line 118, ../sass/_members.scss */
.membership-more {
  color: #7fb2cc;
  margin: 0.5em 0;
}

/* line 123, ../sass/_members.scss */
.membership-details {
  display: none;
  overflow: hidden;
}

/* line 128, ../sass/_members.scss */
#edit-field-user-lastname-value-wrapper {
  clear: both;
  margin-top: 1em;
}
/* line 132, ../sass/_members.scss */
#edit-field-user-lastname-value-wrapper > label {
  display: none;
}
/* line 137, ../sass/_members.scss */
#edit-field-user-lastname-value-wrapper .views-widget .form-item {
  display: inline-block;
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #fff;
  color: #666 !important;
  text-decoration: none;
  padding: 10px;
  padding: 5px 6px;
  cursor: pointer;
}
/* line 75, ../sass/_mixins.scss */
#edit-field-user-lastname-value-wrapper .views-widget .form-item:hover {
  text-decoration: none !important;
  color: #333;
}
/* line 143, ../sass/_members.scss */
#edit-field-user-lastname-value-wrapper .views-widget .form-item.checked {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  padding: 5px 6px;
}
/* line 75, ../sass/_mixins.scss */
#edit-field-user-lastname-value-wrapper .views-widget .form-item.checked:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}
/* line 148, ../sass/_members.scss */
#edit-field-user-lastname-value-wrapper .views-widget .form-item input {
  display: none;
}
/* line 152, ../sass/_members.scss */
#edit-field-user-lastname-value-wrapper .views-widget .form-item label {
  cursor: pointer;
}

/**
 * Forums
 */
/* line 4, ../sass/_forums.scss */
#forum-statistics {
  display: none;
}

/* line 8, ../sass/_forums.scss */
.af-button-large,
#sort-topic-submit {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
/* line 75, ../sass/_mixins.scss */
.af-button-large:hover,
#sort-topic-submit:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* line 13, ../sass/_forums.scss */
#sort-topic-submit {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* line 18, ../sass/_forums.scss */
.comment-form {
  /* Hides Username */
}
/* line 19, ../sass/_forums.scss */
.comment-form .form-type-item {
  display: none;
}

/* line 25, ../sass/_forums.scss */
.field-name-field-password .field-label,
.field-name-field-password .field-items {
  display: inline-block;
}

/* line 32, ../sass/_forums.scss */
.nodeaccess-password .realm {
  display: none;
}

/**
 * Marker styling for topics in the forum
 */
/* line 5, ../sass/_marker.scss */
.badge {
  display: inline-block !important;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  color: #fff;
  font-size: 1em !important;
  background-color: #FF2600;
  text-align: center;
  padding: 1px;
  border: 2px solid #fff;
  -moz-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: absolute !important;
  top: -1px;
  right: -12px;
  width: 19px;
}

/* Comments SCSS for WFITN */
/* line 8, ../sass/_comments.scss */
.comment .author-pane {
  display: block;
  float: left;
  width: 130px;
  margin: 0 20px 10px 0;
  text-align: center;
}
/* line 16, ../sass/_comments.scss */
.comment .comment-posted-on {
  font-size: .8em;
}
/* line 20, ../sass/_comments.scss */
.comment .comment-permalink {
  display: none;
}
/* line 24, ../sass/_comments.scss */
.comment .comment-links {
  float: right;
  line-height: 2em;
  text-align: right;
  margin: 10px 0 5px 5px;
}

/* line 33, ../sass/_comments.scss */
.comment_forbidden {
  display: none !important;
}

/**
 * Grid
 */
/* line 7, ../sass/_grid.scss */
.grid {
  margin: 0 0 15px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 11, ../sass/_grid.scss */
.grid:after {
  /* Or @extend clearfix */
  content: "";
  display: table;
  clear: both;
}

/* line 19, ../sass/_grid.scss */
[class*='col-'] {
  float: left;
  padding-right: 15px;
  padding-left: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*.grid &:last-of-type {
  	padding-right: 0;
  }*/
}

/* line 29, ../sass/_grid.scss */
.col-2-3 {
  width: 66.66%;
}

/* line 32, ../sass/_grid.scss */
.col-1-3 {
  width: 33.33%;
}

/* line 35, ../sass/_grid.scss */
.col-1-2 {
  width: 50%;
}

/* line 38, ../sass/_grid.scss */
.col-1-4 {
  width: 25%;
}

/* line 41, ../sass/_grid.scss */
.col-3-4 {
  width: 75%;
}

/* line 44, ../sass/_grid.scss */
.col-1-8 {
  width: 12.5%;
}

/* Offsets */
/* line 49, ../sass/_grid.scss */
.col-offset-1-3 {
  margin-left: 33.33%;
}

/* line 52, ../sass/_grid.scss */
.col-offset-1-4 {
  margin-left: 25%;
}

/* line 56, ../sass/_grid.scss */
.col-offset-2-3 {
  margin-left: 66.66%;
}

/* Opt-in outside padding */
/* line 61, ../sass/_grid.scss */
.grid-pad {
  padding: 15px 0 15px 15px;
}
/* line 63, ../sass/_grid.scss */
.grid-pad [class*='col-']:last-of-type {
  padding-right: 15px;
}

/* Main SCSS for WFITN */
/* line 2, ../sass/_wfitn.scss */
body {
  background-color: #00418f;
  color: #333;
}

/* line 7, ../sass/_wfitn.scss */
h2 {
  color: #00418f;
}

/* line 11, ../sass/_wfitn.scss */
a {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
/* line 20, ../sass/_wfitn.scss */
a[type="application/pdf"]:before, a[href$=".pdf"]:before {
  content: "\f1c1";
  font-family: FontAwesome;
  margin-right: 5px;
  margin-left: 3px;
}
/* line 31, ../sass/_wfitn.scss */
a[type="application/word"]:before, a[href$=".docx"]:before, a[href$=".doc"]:before {
  content: "\f1c2";
  font-family: FontAwesome;
  margin-right: 5px;
  margin-left: 3px;
}

/* line 44, ../sass/_wfitn.scss */
.menu__item a[type="application/pdf"]:before, .menu__item a[href$=".pdf"]:before {
  display: none;
}

/* line 52, ../sass/_wfitn.scss */
.file img.file-icon {
  display: none;
}

/* line 57, ../sass/_wfitn.scss */
button,
.button {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
/* line 75, ../sass/_mixins.scss */
button:hover,
.button:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* line 62, ../sass/_wfitn.scss */
#header-wrapper {
  background-color: #00418f;
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  border-top: 4px solid #7fb2cc;
}

/* line 68, ../sass/_wfitn.scss */
#header {
  position: relative;
}

/* line 72, ../sass/_wfitn.scss */
#logo {
  position: absolute;
  float: none;
  height: 118px;
  width: 142px;
  bottom: -46px;
  left: 50%;
  margin-left: -71px;
  z-index: 100;
}

/* line 83, ../sass/_wfitn.scss */
#navigation-wrapper {
  background: #7fb2cc url("../images/navigation-bg.gif") bottom left repeat-x;
  padding-top: 4px;
}
@media all and (min-width: 768px) {
  /* line 83, ../sass/_wfitn.scss */
  #navigation-wrapper {
    padding-top: 4em;
  }
}

/* line 92, ../sass/_wfitn.scss */
#main-wrapper {
  background-color: #efefef;
  padding: 20px 0;
}

/* line 97, ../sass/_wfitn.scss */
#footer-wrapper,
#bottom-wrapper {
  padding: 0;
}

/* line 102, ../sass/_wfitn.scss */
#footer {
  padding: 20px 10px;
  /*border-bottom: 1px solid #002b5e;*/
  background: transparent url("../images/horizontal-separator.gif") bottom left repeat-x;
}

/* line 108, ../sass/_wfitn.scss */
.region-bottom {
  padding: 20px 10px;
}

/* line 114, ../sass/_wfitn.scss */
.not-front #content {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  margin-bottom: 1em;
}

/* Nodes */
/* line 126, ../sass/_wfitn.scss */
.node .field-type-image {
  width: 200px;
  float: right;
  margin: 0 0 2em 2em;
}
/* line 131, ../sass/_wfitn.scss */
.node .field-type-image img {
  vertical-align: bottom;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
}

/* Headers */
/* line 141, ../sass/_wfitn.scss */
h1.page__title {
  margin-top: 0.76923em;
  margin-bottom: 0.76923em;
  font-size: 2.2em;
}

/* Media gallery */
/* line 149, ../sass/_wfitn.scss */
.meta-wrapper .media-title {
  text-align: center;
  font-size: 11px;
}

/* Event node */
/* line 156, ../sass/_wfitn.scss */
.field-name-field-date {
  margin: 1.42857em 0;
}

/* line 161, ../sass/_wfitn.scss */
.field-type-getlocations-fields .vcard {
  display: none;
}

/* line 167, ../sass/_wfitn.scss */
.getlocations_map_wrapper_inner > div {
  margin: 1.42857em 0;
  margin-left: auto;
  margin-right: auto;
}
/* line 172, ../sass/_wfitn.scss */
.getlocations_map_wrapper_inner .vcard {
  display: block;
}
/* line 175, ../sass/_wfitn.scss */
.getlocations_map_wrapper_inner h4 {
  margin: 5px 0;
}

/* Forms */
/* line 181, ../sass/_wfitn.scss */
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  padding: 9px 5px 10px;
  border: 1px solid #d5dbe0;
  width: 95%;
}

/* line 191, ../sass/_wfitn.scss */
select {
  width: auto;
}

/* line 195, ../sass/_wfitn.scss */
.horizontal-tabs fieldset.horizontal-tabs-pane {
  padding: 1em;
}

/* line 199, ../sass/_wfitn.scss */
.form-actions {
  margin-top: 1em;
  margin-bottom: 1em;
}
/* line 203, ../sass/_wfitn.scss */
.form-actions .form-submit {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
/* line 75, ../sass/_mixins.scss */
.form-actions .form-submit:hover {
  text-decoration: none !important;
  background-color: #0053B6;
}

/* line 209, ../sass/_wfitn.scss */
#webform-client-form-85 .form-actions {
  text-align: center;
}

/* line 214, ../sass/_wfitn.scss */
.webform-container-inline {
  margin-bottom: 15px;
}
/* line 106, ../sass/_mixins.scss */
.webform-container-inline:after {
  content: "";
  display: table;
  clear: both;
}
/* line 218, ../sass/_wfitn.scss */
.webform-container-inline > label {
  display: block;
  float: left;
  width: 25%;
  padding: 9px 0 10px;
  margin-right: 0;
}
/* line 226, ../sass/_wfitn.scss */
.webform-container-inline input,
.webform-container-inline select,
.webform-container-inline .form-textarea-wrapper {
  width: auto;
}
/* line 232, ../sass/_wfitn.scss */
.webform-container-inline .form-textarea-wrapper {
  width: 50% \9;
}
/* line 237, ../sass/_wfitn.scss */
.webform-container-inline .form-radios .form-type-radio {
  padding: 9px 0 0 0;
  display: block;
  margin-left: 25%;
}
/* line 242, ../sass/_wfitn.scss */
.webform-container-inline .form-radios > label {
  float: none;
  width: auto;
}
/* line 247, ../sass/_wfitn.scss */
.webform-container-inline .form-radios input {
  margin: 0;
}

/* Filters */
/* line 254, ../sass/_wfitn.scss */
.filter-wrapper {
  display: none;
}

/* Colorbox Fix */
/* line 262, ../sass/_wfitn.scss */
#colorbox .media-gallery-item img {
  max-width: none !important;
  max-height: none !important;
}
/* line 268, ../sass/_wfitn.scss */
#colorbox .gallery-thumb-inner {
  text-align: center;
}
/* line 271, ../sass/_wfitn.scss */
#colorbox .gallery-thumb-inner a {
  display: block;
}

/* Vignettes */
/* line 278, ../sass/_wfitn.scss */
.vignette {
  background-color: #f7f7f7;
  padding: 1em;
  min-height: 365px;
}
/* line 283, ../sass/_wfitn.scss */
.vignette img {
  width: 100%;
  max-width: 100%;
}

/*
.vignette-details {
	display: none;

	p {
		margin-bottom: 0;
	}

	&.vignette-details-show {
		display: block !important;
	}
}*/
/* line 303, ../sass/_wfitn.scss */
.vignette-title {
  padding-top: 1em;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

/* line 310, ../sass/_wfitn.scss */
.vignette-status {
  text-align: center;
  font-size: 1.1em;
}

/* line 315, ../sass/_wfitn.scss */
.vignette-email {
  text-align: center;
  padding-top: 5px;
}
/* line 319, ../sass/_wfitn.scss */
.vignette-email a {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #fff;
  color: #666 !important;
  text-decoration: none;
  padding: 10px;
  display: block;
}
/* line 75, ../sass/_mixins.scss */
.vignette-email a:hover {
  text-decoration: none !important;
  color: #333;
}

/*
 * Readmore
 * @todo CSS a revoir car conflit avec default readmore
 *
.readmore {
	overflow: hidden;
	height: 0;
	padding-bottom: 35px;
	position: relative;

	p {
		margin-top: -5000px;
	}

	&:after {
		position: absolute;
		bottom: 0;
		width: 100%;
		display: block;
		padding-top: 0.5em;
		border-top: 1px dashed #cccccc;
		content: 'Click here to read more';
		color: $lightblue;
		cursor: pointer;
	}
}*/
/* Login info popup */
/* line 353, ../sass/_wfitn.scss */
.login-info {
  width: 95%;
  margin: 0 auto;
}
/* line 357, ../sass/_wfitn.scss */
.login-info h1 {
  margin-bottom: 0;
}
/* line 361, ../sass/_wfitn.scss */
.login-info h2 {
  line-height: 1.2em;
}
/* line 365, ../sass/_wfitn.scss */
.login-info p {
  text-align: justify;
}
/* line 369, ../sass/_wfitn.scss */
.login-info div {
  max-width: 100%;
  width: 100%;
}
@media all and (min-width: 768px) {
  /* line 369, ../sass/_wfitn.scss */
  .login-info div {
    float: left;
    width: 31%;
    margin-right: 3.333%;
  }
  /* line 379, ../sass/_wfitn.scss */
  .login-info div.first h2 {
    margin-top: 2.2em;
  }
  /* line 384, ../sass/_wfitn.scss */
  .login-info div.last {
    margin-right: 0;
  }
  /* line 387, ../sass/_wfitn.scss */
  .login-info div.last h2 {
    margin-top: 2.2em;
  }
}

/* Alerts */
/* line 397, ../sass/_wfitn.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

/* line 403, ../sass/_wfitn.scss */
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* Devel */
/* line 410, ../sass/_wfitn.scss */
div.krumo-root {
  position: relative;
  z-index: 9999;
}

/* Tables */
/* line 416, ../sass/_wfitn.scss */
.table {
  width: 100%;
}

/* line 419, ../sass/_wfitn.scss */
.table th, .table td {
  padding: 5px;
}

/* line 422, ../sass/_wfitn.scss */
.table th .btn-small, .table td .btn-small {
  line-height: 3em;
}

/* line 425, ../sass/_wfitn.scss */
.table th .btn-small.insc, .table td .btn-small.insc {
  line-height: inherit;
}

/* line 428, ../sass/_wfitn.scss */
.table tr:hover {
  background-color: #f5f5f5;
}

/* line 431, ../sass/_wfitn.scss */
.table th {
  /*background-color: $bleu;*/
  color: #14617a;
  font-size: 15px;
  border-top: 1px solid #dddddd;
  padding: 15px 20px;
}

/* line 438, ../sass/_wfitn.scss */
.table th.vide {
  background-color: transparent;
}

/* line 441, ../sass/_wfitn.scss */
.table tbody th {
  border-top: 1px solid #dddddd;
  vertical-align: top;
  text-align: left;
  background: #f5f5f5;
}

/* line 447, ../sass/_wfitn.scss */
.table tbody td {
  	/*border-style: solid;
      border-width: 1px;
      border-color: #fff $bleu $bleu #fff;*/
  border-top: 1px solid #dddddd;
  vertical-align: top;
  padding: 15px 20px;
}

/* line 455, ../sass/_wfitn.scss */
.table tfoot th a {
  color: #fff;
  text-transform: none;
}

/* line 460, ../sass/_wfitn.scss */
.columns {
  -moz-column-count: 2;
  -moz-column-gap: 30px;
  -moz-column-width: auto;
}

/* line 466, ../sass/_wfitn.scss */
.tips-resto {
  border-bottom: 1px solid #e6f1f7;
  padding-bottom: 10px;
  padding-top: 10px;
}
/* line 467, ../sass/_wfitn.scss */
.tips-resto h3 {
  margin-bottom: 0px;
  margin-top: 0px;
}
/* line 471, ../sass/_wfitn.scss */
.tips-resto h3 > p {
  margin-top: 0px;
}
/* line 106, ../sass/_mixins.scss */
.tips-resto:after {
  content: "";
  display: table;
  clear: both;
}
/* line 480, ../sass/_wfitn.scss */
.tips-resto .link-maps {
  position: relative;
  margin-left: 30px;
  padding-left: 18px;
}
/* line 485, ../sass/_wfitn.scss */
.tips-resto .link-maps:before {
  content: "\f041";
  position: absolute;
  font-family: FontAwesome;
  left: 0px;
  font-size: 20px;
}
/* line 494, ../sass/_wfitn.scss */
.tips-resto .row {
  margin-bottom: 10px;
}
/* line 106, ../sass/_mixins.scss */
.tips-resto .row:after {
  content: "";
  display: table;
  clear: both;
}

/* line 500, ../sass/_wfitn.scss */
.white-popup {
  background-attachment: scroll;
  background-clip: border-box;
  background-color: #ffffff;
  background-image: none;
  background-origin: padding-box;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto auto;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  max-width: 800px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
  position: relative;
  text-align: justify;
  width: auto;
}

/* line 524, ../sass/_wfitn.scss */
.page-committees .white-popup {
  max-width: 450px;
  padding: 0;
}
/* line 528, ../sass/_wfitn.scss */
.page-committees .white-popup .header-committees {
  background: url("../images/carbon-fibre-v2.png") repeat top left;
  background-color: #00418f;
  width: 450px;
  height: 150px;
  position: relative;
}
/* line 535, ../sass/_wfitn.scss */
.page-committees .white-popup .header-committees .header-committees-img {
  float: left;
  margin-left: 25px;
  margin-top: 25px;
  background-color: #ffffff;
  width: 125px;
  height: 125px;
  position: absolute;
  bottom: -20px;
  border: 1px solid #00418f;
  line-height: 120px;
}
/* line 547, ../sass/_wfitn.scss */
.page-committees .white-popup .header-committees .header-committees-img img {
  margin-top: 50%;
  transform: translateY(-50%);
}
/* line 553, ../sass/_wfitn.scss */
.page-committees .white-popup .header-committees .header-committees-title {
  float: left;
  margin-left: 180px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
}
/* line 560, ../sass/_wfitn.scss */
.page-committees .white-popup .header-committees .header-committees-title .committees-title {
  font-size: 21px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  padding-right: 10px;
  margin-top: 16px;
}
/* line 570, ../sass/_wfitn.scss */
.page-committees .white-popup .vignette-body {
  padding: 45px 25px 20px 25px;
  font-size: 15px;
  line-height: 23px;
}
/* line 575, ../sass/_wfitn.scss */
.page-committees .white-popup .vignette-body p {
  margin: 0;
  padding: 0;
}
/* line 580, ../sass/_wfitn.scss */
.page-committees .white-popup .vignette-email {
  padding: 15px 25px 20px 25px;
  border-top: 1px dotted #00418f;
}
/* line 583, ../sass/_wfitn.scss */
.page-committees .white-popup .vignette-email a {
  color: #00418f !important;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  background: none;
  padding: 0;
}

/* line 596, ../sass/_wfitn.scss */
.page-committee .white-popup {
  max-width: 450px;
  padding: 0;
}
/* line 600, ../sass/_wfitn.scss */
.page-committee .white-popup .header-committees {
  background: url("../images/carbon-fibre-v2.png") repeat top left;
  background-color: #00418f;
  width: 450px;
  height: 150px;
  position: relative;
}
/* line 607, ../sass/_wfitn.scss */
.page-committee .white-popup .header-committees .header-committees-img {
  float: left;
  margin-left: 25px;
  margin-top: 25px;
  background-color: #ffffff;
  width: 125px;
  height: 125px;
  position: absolute;
  bottom: -20px;
  border: 1px solid #00418f;
  line-height: 120px;
}
/* line 619, ../sass/_wfitn.scss */
.page-committee .white-popup .header-committees .header-committees-img img {
  margin-top: 50%;
  transform: translateY(-50%);
}
/* line 625, ../sass/_wfitn.scss */
.page-committee .white-popup .header-committees .header-committees-title {
  float: left;
  margin-left: 180px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
}
/* line 632, ../sass/_wfitn.scss */
.page-committee .white-popup .header-committees .header-committees-title .committees-title {
  font-size: 21px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  padding-right: 10px;
  margin-top: 16px;
}
/* line 642, ../sass/_wfitn.scss */
.page-committee .white-popup .vignette-body {
  padding: 45px 25px 20px 25px;
  font-size: 15px;
  line-height: 23px;
}
/* line 647, ../sass/_wfitn.scss */
.page-committee .white-popup .vignette-body p {
  margin: 0;
  padding: 0;
}
/* line 652, ../sass/_wfitn.scss */
.page-committee .white-popup .vignette-email {
  padding: 15px 25px 20px 25px;
  border-top: 1px dotted #00418f;
}
/* line 655, ../sass/_wfitn.scss */
.page-committee .white-popup .vignette-email a {
  color: #00418f !important;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  background: none;
  padding: 0;
}

/* line 669, ../sass/_wfitn.scss */
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transform: scale(0.8);
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
}

/* line 677, ../sass/_wfitn.scss */
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease-out;
}

/* line 684, ../sass/_wfitn.scss */
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

/* line 688, ../sass/_wfitn.scss */
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* line 691, ../sass/_wfitn.scss */
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  opacity: 0;
  transform: scale(0.8);
}

/* line 695, ../sass/_wfitn.scss */
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* line 699, ../sass/_wfitn.scss */
.btn {
  display: inline-block;
  border: 1px solid #d5dbe0;
  background-color: #00418f;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
  width: 141px;
}
/* line 707, ../sass/_wfitn.scss */
.btn:hover {
  text-decoration: none !important;
  background-color: #0053b6;
}

/* line 713, ../sass/_wfitn.scss */
.center {
  text-align: center;
}

/* line 716, ../sass/_wfitn.scss */
.left {
  text-align: left;
}

/* line 719, ../sass/_wfitn.scss */
.right {
  text-align: right;
}

/**** PAGE FONDS DE DOTATION - BOARD ****/
/* line 728, ../sass/_wfitn.scss */
.page-board .white-popup {
  max-width: 450px;
  padding: 0;
}
/* line 732, ../sass/_wfitn.scss */
.page-board .white-popup .header-board {
  background: url("../images/carbon-fibre-v2.png") repeat top left;
  background-color: #00418f;
  width: 450px;
  height: 150px;
  position: relative;
}
/* line 739, ../sass/_wfitn.scss */
.page-board .white-popup .header-board .header-board-img {
  float: left;
  margin-left: 25px;
  margin-top: 25px;
  background-color: #ffffff;
  width: 125px;
  height: 125px;
  position: absolute;
  bottom: -20px;
  border: 1px solid #00418f;
  line-height: 120px;
}
/* line 751, ../sass/_wfitn.scss */
.page-board .white-popup .header-board .header-board-img img {
  margin-top: 50%;
  transform: translateY(-50%);
}
/* line 757, ../sass/_wfitn.scss */
.page-board .white-popup .header-board .header-board-title {
  float: left;
  margin-left: 180px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
}
/* line 764, ../sass/_wfitn.scss */
.page-board .white-popup .header-board .header-board-title .board-title {
  font-size: 21px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  padding-right: 10px;
  margin-top: 16px;
}
/* line 774, ../sass/_wfitn.scss */
.page-board .white-popup .vignette-body {
  padding: 45px 25px 20px 25px;
  font-size: 15px;
  line-height: 23px;
}
/* line 779, ../sass/_wfitn.scss */
.page-board .white-popup .vignette-body p {
  margin: 0;
  padding: 0;
}
/* line 784, ../sass/_wfitn.scss */
.page-board .white-popup .vignette-email {
  padding: 15px 25px 20px 25px;
  border-top: 1px dotted #00418f;
}
/* line 787, ../sass/_wfitn.scss */
.page-board .white-popup .vignette-email a {
  color: #00418f !important;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  background: none;
  padding: 0;
}

/* View - Fonds de dotation */
/* line 106, ../sass/_mixins.scss */
.view-fonds-de-dotation-board .view-content:after {
  content: "";
  display: table;
  clear: both;
}
/* line 807, ../sass/_wfitn.scss */
.view-fonds-de-dotation-board .views-row {
  width: 97%;
  margin: 1em 1.5%;
  float: left;
  position: relative;
}
@media all and (min-width: 480px) {
  /* line 807, ../sass/_wfitn.scss */
  .view-fonds-de-dotation-board .views-row {
    width: 47%;
  }
  /* line 816, ../sass/_wfitn.scss */
  .view-fonds-de-dotation-board .views-row:nth-child(2n+1) {
    clear: left;
  }
}
@media all and (min-width: 600px) {
  /* line 807, ../sass/_wfitn.scss */
  .view-fonds-de-dotation-board .views-row {
    width: 30%;
  }
  /* line 824, ../sass/_wfitn.scss */
  .view-fonds-de-dotation-board .views-row:nth-child(2n+1) {
    clear: none;
  }
  /* line 828, ../sass/_wfitn.scss */
  .view-fonds-de-dotation-board .views-row:nth-child(3n+1) {
    clear: left;
  }
}
/* line 834, ../sass/_wfitn.scss */
.view-fonds-de-dotation-board .prenom_nom {
  padding-top: 1em;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
/* line 841, ../sass/_wfitn.scss */
.view-fonds-de-dotation-board .job {
  text-align: center;
  font-size: 1.1em;
  font-style: italic;
}

/* line 106, ../sass/_mixins.scss */
.view-endowment-fund-board .view-content:after {
  content: "";
  display: table;
  clear: both;
}
/* line 854, ../sass/_wfitn.scss */
.view-endowment-fund-board .views-row {
  width: 97%;
  margin: 1em 1.5%;
  float: left;
  position: relative;
}
@media all and (min-width: 480px) {
  /* line 854, ../sass/_wfitn.scss */
  .view-endowment-fund-board .views-row {
    width: 47%;
  }
  /* line 863, ../sass/_wfitn.scss */
  .view-endowment-fund-board .views-row:nth-child(2n+1) {
    clear: left;
  }
}
@media all and (min-width: 600px) {
  /* line 854, ../sass/_wfitn.scss */
  .view-endowment-fund-board .views-row {
    width: 30%;
  }
  /* line 871, ../sass/_wfitn.scss */
  .view-endowment-fund-board .views-row:nth-child(2n+1) {
    clear: none;
  }
  /* line 875, ../sass/_wfitn.scss */
  .view-endowment-fund-board .views-row:nth-child(3n+1) {
    clear: left;
  }
}
/* line 881, ../sass/_wfitn.scss */
.view-endowment-fund-board .prenom_nom {
  padding-top: 1em;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
/* line 888, ../sass/_wfitn.scss */
.view-endowment-fund-board .job {
  text-align: center;
  font-size: 1.1em;
  font-style: italic;
}

/**** PAGE FUTURES COURSES  ****/
/* line 901, ../sass/_wfitn.scss */
hr {
  opacity: 0.2;
  border-top: 0.1px solid #cccccc;
  color: #cccccc;
  height: 0.5px;
}

/* line 910, ../sass/_wfitn.scss */
.node-235 .btn {
  width: 82%;
}
/* line 913, ../sass/_wfitn.scss */
.node-235 .col-md-3 {
  width: 25%;
  padding-right: 10px;
  padding-left: 10px;
}
/* line 919, ../sass/_wfitn.scss */
.node-235 .insc-ticket-item .insc-ticket-head {
  line-height: 1.5em;
  padding-bottom: 32px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 20px;
}

/* line 930, ../sass/_wfitn.scss */
.page-node-1392 .btn {
  width: 82%;
}

/* line 935, ../sass/_wfitn.scss */
.hide-icon:before {
  display: none;
}

/***** Honey Pot *****/
/* line 942, ../sass/_wfitn.scss */
.url-textfield {
  display: none !important;
}

/* line 948, ../sass/_wfitn.scss */
.page-user-edit .group-personal-data .horizontal-tab-button-3 {
  display: none;
}

/***** MODULE ADVANCED POLL *****/
/* Cacher le bouton "Votes" */
/* line 959, ../sass/_wfitn.scss */
#content > ul.tabs-primary > li:nth-child(5) {
  display: none;
}

/***** BOUTON REQUEST NEW PASSWORD *****/
/* line 966, ../sass/_wfitn.scss */
.not-logged-in .tabs-primary {
  display: none;
}

/***** MAJS 12 2020 NEW HOME *****/
@media all and (min-width: 600px) {
  /* line 976, ../sass/_wfitn.scss */
  body.page-frontpage #main .region-postcontent-col1 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
  /* line 983, ../sass/_wfitn.scss */
  body.page-frontpage #main .region-postcontent-col2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
  /* line 990, ../sass/_wfitn.scss */
  body.page-frontpage #main #block-views-latest-news-block-full {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 997, ../sass/_wfitn.scss */
  body.page-frontpage #main #block-views-calendar-block-upcoming {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 1003, ../sass/_wfitn.scss */
  body.page-frontpage #main #block-views-calendar-block-upcoming .block-outer-wrapper {
    margin-left: 0;
  }
}
/* line 1012, ../sass/_wfitn.scss */
#block-views-inr-journal-block-news-block .block-outer-wrapper {
  background-color: #fff;
  padding: 15px 20px;
}
/* line 1016, ../sass/_wfitn.scss */
#block-views-inr-journal-block-news-block .block-outer-wrapper h2.block__title {
  color: #ac2226;
  font-size: 16px;
  text-transform: uppercase;
}
/* line 1023, ../sass/_wfitn.scss */
#block-views-inr-journal-block-news-block .block-outer-wrapper .views-field-field-image img {
  height: 110px;
  max-height: 110px;
  width: 100%;
  object-fit: cover;
}
/* line 1032, ../sass/_wfitn.scss */
#block-views-inr-journal-block-news-block .block-outer-wrapper .views-field-title a {
  color: #ac2226;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 5px;
}
/* line 1042, ../sass/_wfitn.scss */
#block-views-inr-journal-block-news-block .block-outer-wrapper .views-field-body a {
  display: block;
  margin-top: 8px;
}
/* line 1049, ../sass/_wfitn.scss */
#block-views-inr-journal-block-news-block .block-outer-wrapper .view-footer p {
  border-top: 1px solid #eee;
  margin-top: 5px;
  margin-bottom: 0;
  padding-top: 3px;
  text-align: right;
}
/* line 1056, ../sass/_wfitn.scss */
#block-views-inr-journal-block-news-block .block-outer-wrapper .view-footer p a {
  color: #ac2226;
}

/* line 1066, ../sass/_wfitn.scss */
body.page-inr-journal-issues #content, body.section-inr-journal-news #content {
  padding-bottom: 50px;
}
/* line 1069, ../sass/_wfitn.scss */
body.page-inr-journal-issues #content .block-block, body.section-inr-journal-news #content .block-block {
  background-color: #f5f5f5;
  border: 1px solid #ac2226;
  border-radius: 20px;
}
/* line 1077, ../sass/_wfitn.scss */
body.page-inr-journal-issues .view-inr-journal-page .views-row, body.section-inr-journal-news .view-inr-journal-page .views-row {
  clear: both;
  margin-top: 30px;
}
/* line 1083, ../sass/_wfitn.scss */
body.page-inr-journal-issues .views-field-field-image, body.section-inr-journal-news .views-field-field-image {
  float: left;
  margin-right: 20px;
}
/* line 1087, ../sass/_wfitn.scss */
body.page-inr-journal-issues .views-field-field-image img, body.section-inr-journal-news .views-field-field-image img {
  height: 125px;
  width: 250px;
  object-fit: cover;
}
/* line 1095, ../sass/_wfitn.scss */
body.page-inr-journal-issues .views-field-title a, body.section-inr-journal-news .views-field-title a {
  color: #ac2226;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0;
}
/* line 1105, ../sass/_wfitn.scss */
body.page-inr-journal-issues .views-field-body a, body.section-inr-journal-news .views-field-body a {
  display: block;
  margin-top: 8px;
}
/* line 1111, ../sass/_wfitn.scss */
body.page-inr-journal-issues .item-list, body.section-inr-journal-news .item-list {
  border-top: 1px dotted #ddd;
  margin-top: 40px;
  padding-top: 0;
}

/* line 2, ../sass/_insc.scss */
.insc-tickets .col-md-4 {
  width: 33%;
}

/* line 7, ../sass/_insc.scss */
.insc-ticket-item {
  text-align: center;
}
/* line 11, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-head {
  line-height: 1;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-bottom: 24px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 32px;
  position: relative;
  background-color: #e9e9e9;
  height: 70px;
}
/* line 24, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-head-title {
  color: #363636;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* line 33, ../sass/_insc.scss */
.insc-ticket-item .insc-prix:first-child {
  border-bottom: 1px dotted;
  padding-bottom: 20px;
}
/* line 38, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-head-price {
  color: #0053B6;
  font-weight: bold;
  font-size: 22px;
}
/* line 44, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-content {
  color: #8b8b8b;
  background-color: #f9f9f9;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 35px;
  margin-bottom: 20px;
}
/* line 52, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-content .insc-register-font {
  margin-bottom: 0;
}
/* line 57, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-button {
  background-color: #f62b0a;
}
/* line 60, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-button {
  color: #ffffff;
}
/* line 63, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-head-featured {
  background-color: #f62b0a;
}
/* line 66, ../sass/_insc.scss */
.insc-ticket-item .insc-ticket-head-featured {
  color: #fff;
}

/* line 106, ../sass/_mixins.scss */
.sp-faculty-members:after {
  content: "";
  display: table;
  clear: both;
}
/* line 75, ../sass/_insc.scss */
.sp-faculty-members .col-md-4 {
  width: 33%;
  margin-bottom: 20px;
}
/* line 80, ../sass/_insc.scss */
.sp-faculty-members .insc-ticket-item .insc-ticket-content {
  padding-top: 20px;
  padding-bottom: 15px;
}
/* line 85, ../sass/_insc.scss */
.sp-faculty-members .insc-ticket-item .insc-prix:first-child {
  border: none;
}
/* line 89, ../sass/_insc.scss */
.sp-faculty-members .insc-ticket-item .insc-ticket-head {
  padding-top: 20px;
  padding-bottom: 8px;
}
/* line 93, ../sass/_insc.scss */
.sp-faculty-members .insc-ticket-item .insc-ticket-head .insc-ticket-head-title {
  color: #0053B6;
  font-size: 20px;
}
/* line 101, ../sass/_insc.scss */
.sp-faculty-members .insc-ville {
  font-weight: bold;
  font-size: 15px;
  color: #2a2a2a;
  line-height: 30px;
}

/* line 109, ../sass/_insc.scss */
.sp-contact {
  width: 33%;
}
/* line 112, ../sass/_insc.scss */
.sp-contact a[href^="mailto"] {
  background: url("../images/mailto.png") no-repeat scroll left center transparent;
  color: #7fb2cc;
  padding-left: 18px;
}

/* line 120, ../sass/_insc.scss */
.sp-program .program-head {
  background: #0053B6;
}
/* line 122, ../sass/_insc.scss */
.sp-program .program-head .title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #ffffff;
  background: #002b5e;
  width: 24%;
  padding: 15px;
}
/* line 135, ../sass/_insc.scss */
.sp-program .program-contentwrapper {
  color: #8b8b8b;
  background: #F7F7F7;
  border-bottom: 1px solid #E5E5E5;
}
/* line 140, ../sass/_insc.scss */
.sp-program .program-contentwrapper .program-content-info {
  width: 24%;
  padding: 30px;
  float: left;
  position: relative;
  padding-left: 40px;
}
/* line 147, ../sass/_insc.scss */
.sp-program .program-contentwrapper .program-content-info:before {
  content: "\f017";
  position: absolute;
  font-family: FontAwesome;
  left: 20px;
}
/* line 154, ../sass/_insc.scss */
.sp-program .program-contentwrapper .program-content {
  padding: 30px;
  color: #515151;
  font-size: 15px;
  line-height: 23px;
}
/* line 160, ../sass/_insc.scss */
.sp-program .program-contentwrapper i {
  margin-right: 20px;
}

/* line 2, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-gallery-year {
  margin-right: 10px;
  margin-left: 10px;
  float: right !important;
  margin-bottom: 15px;
}
/* line 9, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-gallery-year .field-items .field-item span {
  background-color: #00418f !important;
  padding: 3px 10px;
  color: #ffffff;
  pointer-events: none;
  cursor: default;
  border-radius: 3px;
}
/* line 16, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-gallery-year .field-items .field-item span:before {
  content: '\f00c';
  font-family: 'FontAwesome';
  padding-right: 7px;
  font-size: 11px;
}
/* line 28, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-type-of-event {
  float: right;
  margin-bottom: 15px;
}
/* line 33, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-type-of-event .field-items .field-item a {
  background-color: #9bc2e7;
  padding: 3px 10px;
  color: #ffffff;
  pointer-events: none;
  cursor: default;
  border-radius: 3px;
}
/* line 40, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-type-of-event .field-items .field-item a:before {
  content: '\f02b';
  font-family: 'FontAwesome';
  padding-right: 7px;
}
/* line 51, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-image-gallery {
  width: 100%;
  clear: both;
  float: none;
  margin: 15px auto;
}
/* line 57, ../sass/_photos-gallery.scss */
.node-photos-gallery .field-name-field-image-gallery .field-items .field-item {
  float: left;
  width: 33.3%;
  margin: 5px 0;
}

/* line 66, ../sass/_photos-gallery.scss */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

/* line 77, ../sass/_photos-gallery.scss */
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

/* line 80, ../sass/_photos-gallery.scss */
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* line 84, ../sass/_photos-gallery.scss */
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* line 91, ../sass/_photos-gallery.scss */
#block-views-photos-gallery-block .view-photos-gallery .views-row {
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 10px;
}
/* line 98, ../sass/_photos-gallery.scss */
#block-views-photos-gallery-block .view-photos-gallery h3 {
  clear: both;
  margin-top: 10px;
}
/* line 102, ../sass/_photos-gallery.scss */
#block-views-photos-gallery-block .view-photos-gallery .views-field-title {
  position: absolute;
  bottom: 4px;
  width: 87%;
  left: 0;
  background-color: rgba(0, 65, 143, 0.8);
  padding: 8px 9px;
}
/* line 110, ../sass/_photos-gallery.scss */
#block-views-photos-gallery-block .view-photos-gallery .views-field-title span a {
  color: #ffffff;
}
