/*** IMPORTS ***/
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
    Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}
/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
  display: block;
}
.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
/*
    Background is added as a separate element.
    As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}
.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}
.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}
/*
    stretched thumbnail or div placeholder element (see below)
    style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}
/*
    div element that matches size of large image
    large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}
/*
    Error message appears when image is not loaded
    (JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}
.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

  Contents:

  1. Buttons
  2. Share modal and links
  3. Index indicator ("1 of X" counter)
  4. Caption
  5. Loading indicator
  6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
  
  1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/assets/img/photoswipe/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}
@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/assets/img/photoswipe/default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}
.pswp__button--share {
  background-position: -44px -44px;
}
.pswp__button--fs {
  display: none;
}
.pswp--supports-fs .pswp__button--fs {
  display: block;
}
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}
.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}
/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}
/*
  Arrow buttons hit area
  (icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}
.pswp__button--arrow--left {
  left: 0;
}
.pswp__button--arrow--right {
  right: 0;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}
.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}
.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}
/*

  2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__share-modal--hidden {
  display: none;
}
.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}
.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}
.pswp__share-modal--fade-in {
  opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}
a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}
a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}
a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}
a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}
a.pswp__share--download:hover {
  background: #DDD;
}
/*

  3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}
/*
  
  4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}
.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}
.pswp__caption--empty {
  display: none;
}
/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}
/*

  5. Loading indicator (preloader)

  You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}
.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}
.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(/assets/img/photoswipe/preloader.gif) 0 0 no-repeat;
}
.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  /* 
      The idea of animating inner circle is based on Polymer ("material") loading indicator 
       by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
    */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/*
  
  6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}
/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}
.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}
/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}
/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}
/*
  pswp__ui--hidden class is added when controls are hidden
  e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}
/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}
.pswp__element--disabled {
  display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}
.xxsmall,
.fs-xxsmall {
  font-size: 0.625rem;
}
.xsmall,
.fs-xsmall {
  font-size: 0.625rem;
}
.small,
.fs-small {
  font-size: 0.75rem;
}
.medium,
.fs-medium {
  font-size: 0.875rem;
}
.normal,
.fs-normal {
  font-size: 1rem;
}
.large,
.fs-large {
  font-size: 1.125rem;
}
.xlarge,
.fs-xlarge {
  font-size: 1.25rem;
}
.xxlarge,
.fs-xxlarge {
  font-size: 1.375rem;
}
.xxxlarge,
.fs-xxxlarge {
  font-size: 1.5rem;
}
body > .ink-grid {
  background-color: #FFFFFF;
}
h6 {
  font-size: 1em;
}
small {
  display: inline-block;
  font-size: 0.75rem;
}
img {
  border: 0;
  width: auto;
  max-width: 100%;
  vertical-align: top;
}
.fw-200 {
  font-weight: 200;
}
.fw-600 {
  font-weight: 600;
}
.fw-800 {
  font-weight: 800;
}
.ink-button {
  display: inline-block;
  padding: 8px 6px;
  background: none;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #333333;
  border: 1px solid #CCC;
  padding: 7px 6px;
  line-height: 20px;
  white-space: normal;
}
.ink-button i {
  padding: 0;
  margin: 0 4px;
  font-size: 14px;
  line-height: 18px;
}
.ink-button span {
  padding: 0;
  margin: 0 4px;
  line-height: 20px;
}
.ink-button.inflexible {
  height: 36px;
  white-space: normal;
}
.ink-button.main-action {
  background-color: #1565C0;
  color: #FFF;
  border-color: #1565C0;
}
.ink-button.main-action:hover {
  background-color: #104d92;
  color: #FFF;
  border-color: #104d92;
}
.ink-button.secondary-action {
  background-color: #148CE8;
  color: #FFF;
  border-color: #148CE8;
}
.ink-button.secondary-action:hover {
  background-color: #1070b9;
  color: #FFF;
  border-color: #1070b9;
}
.ink-button.facebook {
  background-color: #3B5998;
  border-color: #3B5998;
  color: #FFF;
  /*border:none;*/
}
.ink-button.pinterest {
  background-color: #bd081c;
  border-color: #bd081c;
  color: #FFF;
}
.ink-button.instagram {
  background-color: #262626;
  border-color: #262626;
  color: #FFF;
}
.ink-button.twitter {
  background-color: #1DA1F2;
  border-color: #1DA1F2;
  color: #FFF;
}
.ink-button.email {
  background-color: #666;
  border-color: #666;
  color: #FFF;
}
.ink-button.whatsapp {
  background-color: #34AF23;
  border-color: #34AF23;
  color: #FFF;
}
.ink-button.telegram {
  background-color: #0088CC;
  border-color: #0088CC;
  color: #FFF;
}
.ink-button.skype {
  background-color: #1686D9;
  border-color: #1686D9;
  color: #FFF;
}
.ink-button.disabled,
.ink-button[disabled] {
  background: none;
  color: #333333;
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  pointer-events: none;
}
.ink-button.full-width {
  width: 100%;
}
.ink-button.no-box {
  border-color: rgba(0, 0, 0, 0);
}
.ink-button.icon-only {
  width: 36px;
  padding-left: 0;
  padding-right: 0;
}
.ink-button.ink-button--new {
  position: relative;
}
.ink-button.ink-button--new:after {
  position: absolute;
  bottom: 120%;
  left: 50%;
  height: 10px;
  line-height: 10px;
  margin-left: -13px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1565C0;
  border-bottom: 2px solid #1565C0;
  content: "Novo";
  pointer-events: none;
}
.ink-button:focus,
.ink-button:active,
.ink-button:hover {
  color: #FFF;
  background-color: #333333;
  border-color: #333333;
}
.ink-button.ink-toggle .on {
  display: none;
}
.ink-button.ink-toggle.active .on {
  display: inline-block;
}
.ink-button.ink-toggle.active .off {
  display: none;
}
.ink-button.loading {
  position: relative;
  pointer-events: none;
}
.ink-button.loading i,
.ink-button.loading span {
  opacity: 0;
}
.ink-button.loading:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-left: -18px;
  text-align: center;
  line-height: 36px;
  font-family: "FontAwesome";
  content: "\f1ce";
  /*.transform(translate(-50%,-50%));*/
  -webkit-animation: rotatethreesixty 1s linear infinite;
  -moz-animation: rotatethreesixty 1s linear infinite;
  -o-animation: rotatethreesixty 1s linear infinite;
  animation: rotatethreesixty 1s linear infinite;
}
.ink-navigation.content-menu-object ul.menu.horizontal li a {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.ink-navigation.content-menu-object ul.menu.horizontal li a:hover {
  color: #333333;
}
.ink-navigation.content-menu-object ul.menu.horizontal li a i.dropdown-icon {
  margin-left: 5px;
}
.ink-navigation.content-menu-object ul.menu.horizontal li.current a {
  color: #333333;
}
.ink-navigation.content-menu-object ul.menu.horizontal > li > a {
  height: 40px;
  padding: 5px 15px;
  line-height: 30px;
  text-align: center;
}
.ink-navigation.content-menu-object ul.menu.horizontal > li ul.submenu {
  border-radius: 0;
}
.ink-navigation.content-menu-object ul.menu.horizontal > li ul.submenu li:last-child {
  border-radius: 0;
}
.ink-form select,
.ink-form textarea,
.ink-form .input-file,
.ink-form input[type="text"],
.ink-form input[type="password"],
.ink-form input[type="datetime"],
.ink-form input[type="datetime-local"],
.ink-form input[type="date"],
.ink-form input[type="month"],
.ink-form input[type="time"],
.ink-form input[type="week"],
.ink-form input[type="number"],
.ink-form input[type="email"],
.ink-form input[type="url"],
.ink-form input[type="search"],
.ink-form input[type="tel"],
.ink-form input[type="color"] {
  height: 36px;
  font-size: 0.875em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 20px;
  border-color: #b3b3b3;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  color: #333;
  box-shadow: none;
}
.ink-form select:not([disabled]):not([readonly]):hover,
.ink-form textarea:not([disabled]):not([readonly]):hover,
.ink-form .input-file:not([disabled]):not([readonly]):hover,
.ink-form input[type="text"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="password"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="datetime"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="datetime-local"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="date"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="month"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="time"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="week"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="number"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="email"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="url"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="search"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="tel"]:not([disabled]):not([readonly]):hover,
.ink-form input[type="color"]:not([disabled]):not([readonly]):hover {
  border-color: #999999;
  box-shadow: none;
}
.ink-form select:not([disabled]):not([readonly]):focus,
.ink-form textarea:not([disabled]):not([readonly]):focus,
.ink-form .input-file:not([disabled]):not([readonly]):focus,
.ink-form input[type="text"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="password"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="datetime"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="datetime-local"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="date"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="month"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="time"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="week"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="number"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="email"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="url"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="search"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="tel"]:not([disabled]):not([readonly]):focus,
.ink-form input[type="color"]:not([disabled]):not([readonly]):focus {
  border-color: #333;
  box-shadow: none;
}
.ink-form input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}
.ink-form select[disabled],
.ink-form select[readonly],
.ink-form input[disabled],
.ink-form input[readonly],
.ink-form textarea[disabled],
.ink-form textarea[readonly] {
  background-color: #EEE;
  border-color: #EAEAEA;
}
.ink-form select {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 28px!important;
  height: 36px;
  background: none;
  background-color: #FFF;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  outline: none;
}
.ink-form select::-ms-expand {
  display: none;
}
.ink-form textarea {
  min-height: 13em;
  resize: vertical;
}
.ink-form .control-group .control.select:before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 37px;
  margin-top: -19px;
  line-height: 38px;
  font-size: 12px;
  text-align: center;
  z-index: -1;
  font-family: 'FontAwesome';
  content: "\f0dc";
  text-shadow: none;
  color: #333;
  z-index: 1;
  cursor: pointer;
  pointer-events: none;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.ink-form .control-group ul.control > li > .tip {
  margin: -5px 0 10px 0;
}
.ink-form .control-group.disabled > label {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.ink-form .control-group.disabled .control.select:before {
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.ink-form .control-group.validation.error input,
.ink-form .control-group.validation.warning input,
.ink-form .control-group.validation.error textarea,
.ink-form .control-group.validation.warning textarea,
.ink-form .control-group.validation.error select,
.ink-form .control-group.validation.warning select {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ink-form .control-group .control.append-button {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ink-form .control-group .control.append-button span > input {
  -webkit-border-radius: 2px 0 0 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px 0 0 2px;
  -moz-background-clip: padding;
  border-radius: 2px 0 0 2px;
  background-clip: padding-box;
}
.ink-form .control-group .control.append-button .ink-button {
  -webkit-border-radius: 0 2px 2px 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 2px 2px 0;
  -moz-background-clip: padding;
  border-radius: 0 2px 2px 0;
  background-clip: padding-box;
}
.ink-form .control-group .control.append-button .ink-button i {
  margin-left: 2px;
}
.ink-form .ink-button {
  /*margin-left:0;margin-right:0;*/
  margin: inherit;
}
.ink-tooltip {
  text-align: center;
}
body.ink-drawer .drawer.right-drawer {
  /*border-top:@bsu-height solid #222;*/
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li {
  border-bottom: 1px solid #DDD;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li a {
  position: relative;
  padding: 10px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  border: none;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li a:hover,
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li a:active {
  background: #EEE;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li a:focus {
  outline: none;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li .dropdown-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  line-height: 30px;
  border-left: 1px solid #2f2f2f;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li .dropdown-icon .on {
  display: none;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li .dropdown-icon.active .on {
  display: inline-block;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li .dropdown-icon.active .off {
  display: none;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical ul.submenu li a {
  padding-left: 2em;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical ul.submenu li:last-child {
  border: none;
}
.table-wrapper {
  overflow: auto;
}
.table-wrapper.has-scroll {
  position: relative;
  overflow-x: hidden;
}
.table-wrapper.has-scroll:after,
.table-wrapper.has-scroll:before {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  -webkit-border-radius: 10px 0 0 0.2px 0 0 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 10px 0 0 0.2px 0 0 50%;
  -moz-background-clip: padding;
  border-radius: 10px 0 0 0.2px 0 0 50%;
  background-clip: padding-box;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  content: '';
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.table-wrapper.has-scroll:after {
  left: 100%;
  -webkit-box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
}
.table-wrapper.has-scroll:before {
  right: 100%;
  -webkit-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
}
.table-wrapper.has-scroll.has-scroll-right:after {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.table-wrapper.has-scroll.has-scroll-left:before {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.table-wrapper.has-scroll > div {
  overflow-x: auto;
}
.table-wrapper.has-scroll > div .ink-table {
  margin: 0;
}
.table-wrapper.has-scroll > div::-webkit-scrollbar {
  height: 12px;
}
.table-wrapper.has-scroll > div::-webkit-scrollbar-track {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset;
  background: #f0f0f0;
}
.table-wrapper.has-scroll > div::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #ccc;
}
table.ink-table {
  background: none;
}
table.ink-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
table.ink-table.bordered {
  border-radius: 0;
}
.ink-shade {
  z-index: 2000000001;
}
.ink-modal {
  background: #FFFFFF;
}
.ink-modal > .modal-footer,
.ink-modal > .modal-header,
.ink-modal > footer,
.ink-modal > header {
  padding: 1rem;
}
.ink-modal > .modal-header {
  border-bottom: 1px solid #e6e6e6;
  box-shadow: none;
}
.ink-modal > .modal-footer {
  background: none;
  border-top: 1px solid #e6e6e6;
  box-shadow: none;
}
.ink-tabs.top > .tabs-nav {
  border: none;
}
.ink-tabs.top > .tabs-nav li a {
  padding: 0.2em 0.8em;
  margin: 0;
  border: 1px solid #333333;
  border-radius: 0;
  color: #333333;
}
.ink-tabs.top > .tabs-nav li.active {
  pointer-events: none;
}
.ink-tabs.top > .tabs-nav li.active a {
  background: #333333;
  color: #FFF;
  border: 1px solid #333333;
}
.ink-tabs.top > .tabs-nav li.disabled {
  pointer-events: none;
  opacity: 0.25;
}
.ink-tabs.top .tabs-content {
  margin-top: 1em;
}
.column-group.communist > *:last-child[class*="all-100"] {
  margin-bottom: 0;
}
.column-group.communist > *.all-50:nth-child(2n+1) {
  clear: both;
}
.column-group.communist > *.all-50:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.column-group.communist > *.all-33:nth-child(3n+1) {
  clear: both;
}
.column-group.communist > *.all-33:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.column-group.communist > *.all-25:nth-child(4n+1) {
  clear: both;
}
.column-group.communist > *.all-25:nth-last-child(-n+4) {
  margin-bottom: 0;
}
.column-group.communist > *.all-20:nth-child(5n+1) {
  clear: both;
}
.column-group.communist > *.all-20:nth-last-child(-n+5) {
  margin-bottom: 0;
}
.column-group.communist > *.all-16:nth-child(6n+1) {
  clear: both;
}
.column-group.communist > *.all-16:nth-last-child(-n+6) {
  margin-bottom: 0;
}
.column-group.communist > *.all-10:nth-child(10n+1) {
  clear: both;
}
.column-group.communist > *.all-10:nth-last-child(-n+10) {
  margin-bottom: 0;
}
/******************/
/* S + M + L + XL */
/******************/
/*****************/
/* T + S + M + L */
/*****************/
/**************/
/* M + L + XL */
/**************/
/*************/
/* S + M + L */
/*************/
/*************/
/* T + S + M */
/*************/
/**********/
/* L + XL */
/**********/
@media screen and (min-width: 960px) {
  body.ink-drawer .drawer .ink-navigation ul.menu.vertical li .dropdown-icon {
    background-color: #1565C0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}
/*********/
/* M + L */
/*********/
/*********/
/* S + M */
/*********/
/*********/
/* T + S */
/*********/
@media screen and (max-width: 640px) {
  table.ink-table td,
  table.ink-table th {
    padding: 5px;
  }
}
/********/
/* > XL */
/********/
@media screen and (min-width: 1440px) {
  html {
    font-size: 1em;
  }
}
/******/
/* XL */
/******/
@media screen and (min-width: 1261px) {
  html {
    font-size: 1em;
  }
  .xlarge-clearfix {
    overflow: hidden;
  }
  ul.xlarge-unstyled {
    list-style: none;
    padding-left: 0;
  }
  ul.xlarge-unstyled ul.xlarge-unstyled,
  ul ul.xlarge-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .ink-grid-negative {
    margin-left: -2em;
    margin-right: -2em;
    padding-left: 2em;
    padding-right: 2em;
  }
  .column-group.xlarge-communist > *:last-child[class*="xlarge-100"],
  .column-group.communist > *:last-child[class*="xlarge-100"] {
    margin-bottom: 0;
  }
  .column-group.xlarge-communist > *.xlarge-50:nth-child(2n+1),
  .column-group.communist > *.xlarge-50:nth-child(2n+1) {
    clear: both;
  }
  .column-group.xlarge-communist > *.xlarge-50:nth-last-child(-n+2),
  .column-group.communist > *.xlarge-50:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .column-group.xlarge-communist > *.xlarge-33:nth-child(3n+1),
  .column-group.communist > *.xlarge-33:nth-child(3n+1) {
    clear: both;
  }
  .column-group.xlarge-communist > *.xlarge-33:nth-last-child(-n+3),
  .column-group.communist > *.xlarge-33:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .column-group.xlarge-communist > *.xlarge-25:nth-child(4n+1),
  .column-group.communist > *.xlarge-25:nth-child(4n+1) {
    clear: both;
  }
  .column-group.xlarge-communist > *.xlarge-25:nth-last-child(-n+4),
  .column-group.communist > *.xlarge-25:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  .column-group.xlarge-communist > *.xlarge-20:nth-child(5n+1),
  .column-group.communist > *.xlarge-20:nth-child(5n+1) {
    clear: both;
  }
  .column-group.xlarge-communist > *.xlarge-20:nth-last-child(-n+5),
  .column-group.communist > *.xlarge-20:nth-last-child(-n+5) {
    margin-bottom: 0;
  }
  .column-group.xlarge-communist > *.xlarge-16:nth-child(6n+1),
  .column-group.communist > *.xlarge-16:nth-child(6n+1) {
    clear: both;
  }
  .column-group.xlarge-communist > *.xlarge-16:nth-last-child(-n+6),
  .column-group.communist > *.xlarge-16:nth-last-child(-n+6) {
    margin-bottom: 0;
  }
  .column-group.xlarge-communist > *.xlarge-10:nth-child(10n+1),
  .column-group.communist > *.xlarge-10:nth-child(10n+1) {
    clear: both;
  }
  .column-group.xlarge-communist > *.xlarge-10:nth-last-child(-n+10),
  .column-group.communist > *.xlarge-10:nth-last-child(-n+10) {
    margin-bottom: 0;
  }
}
/*****/
/* L */
/*****/
@media screen and (min-width: 961px) and (max-width: 1260px) {
  html {
    font-size: 1em;
  }
  .large-clearfix {
    overflow: hidden;
  }
  ul.large-unstyled {
    list-style: none;
    padding-left: 0;
  }
  ul.large-unstyled ul.large-unstyled,
  ul ul.large-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .ink-grid-negative {
    margin-left: -1.75em;
    margin-right: -1.75em;
    padding-left: 1.75em;
    padding-right: 1.75em;
  }
  .column-group.large-communist > *:last-child[class*="large-100"],
  .column-group.communist > *:last-child[class*="large-100"] {
    margin-bottom: 0;
  }
  .column-group.large-communist > *.large-50:nth-child(2n+1),
  .column-group.communist > *.large-50:nth-child(2n+1) {
    clear: both;
  }
  .column-group.large-communist > *.large-50:nth-last-child(-n+2),
  .column-group.communist > *.large-50:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .column-group.large-communist > *.large-33:nth-child(3n+1),
  .column-group.communist > *.large-33:nth-child(3n+1) {
    clear: both;
  }
  .column-group.large-communist > *.large-33:nth-last-child(-n+3),
  .column-group.communist > *.large-33:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .column-group.large-communist > *.large-25:nth-child(4n+1),
  .column-group.communist > *.large-25:nth-child(4n+1) {
    clear: both;
  }
  .column-group.large-communist > *.large-25:nth-last-child(-n+4),
  .column-group.communist > *.large-25:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  .column-group.large-communist > *.large-20:nth-child(5n+1),
  .column-group.communist > *.large-20:nth-child(5n+1) {
    clear: both;
  }
  .column-group.large-communist > *.large-20:nth-last-child(-n+5),
  .column-group.communist > *.large-20:nth-last-child(-n+5) {
    margin-bottom: 0;
  }
  .column-group.large-communist > *.large-16:nth-child(6n+1),
  .column-group.communist > *.large-16:nth-child(6n+1) {
    clear: both;
  }
  .column-group.large-communist > *.large-16:nth-last-child(-n+6),
  .column-group.communist > *.large-16:nth-last-child(-n+6) {
    margin-bottom: 0;
  }
  .column-group.large-communist > *.large-10:nth-child(10n+1),
  .column-group.communist > *.large-10:nth-child(10n+1) {
    clear: both;
  }
  .column-group.large-communist > *.large-10:nth-last-child(-n+10),
  .column-group.communist > *.large-10:nth-last-child(-n+10) {
    margin-bottom: 0;
  }
}
/*****/
/* M */
/*****/
@media screen and (min-width: 641px) and (max-width: 960px) {
  html {
    font-size: 1em;
  }
  .medium-clearfix {
    overflow: hidden;
  }
  ul.medium-unstyled {
    list-style: none;
    padding-left: 0;
  }
  ul.medium-unstyled ul.medium-unstyled,
  ul ul.medium-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .ink-grid-negative {
    margin-left: -1.5em;
    margin-right: -1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  .column-group.medium-communist > *:last-child[class*="medium-100"],
  .column-group.communist > *:last-child[class*="medium-100"] {
    margin-bottom: 0;
  }
  .column-group.medium-communist > *.medium-50:nth-child(2n+1),
  .column-group.communist > *.medium-50:nth-child(2n+1) {
    clear: both;
  }
  .column-group.medium-communist > *.medium-50:nth-last-child(-n+2),
  .column-group.communist > *.medium-50:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .column-group.medium-communist > *.medium-33:nth-child(3n+1),
  .column-group.communist > *.medium-33:nth-child(3n+1) {
    clear: both;
  }
  .column-group.medium-communist > *.medium-33:nth-last-child(-n+3),
  .column-group.communist > *.medium-33:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .column-group.medium-communist > *.medium-25:nth-child(4n+1),
  .column-group.communist > *.medium-25:nth-child(4n+1) {
    clear: both;
  }
  .column-group.medium-communist > *.medium-25:nth-last-child(-n+4),
  .column-group.communist > *.medium-25:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  .column-group.medium-communist > *.medium-20:nth-child(5n+1),
  .column-group.communist > *.medium-20:nth-child(5n+1) {
    clear: both;
  }
  .column-group.medium-communist > *.medium-20:nth-last-child(-n+5),
  .column-group.communist > *.medium-20:nth-last-child(-n+5) {
    margin-bottom: 0;
  }
  .column-group.medium-communist > *.medium-16:nth-child(6n+1),
  .column-group.communist > *.medium-16:nth-child(6n+1) {
    clear: both;
  }
  .column-group.medium-communist > *.medium-16:nth-last-child(-n+6),
  .column-group.communist > *.medium-16:nth-last-child(-n+6) {
    margin-bottom: 0;
  }
  .column-group.medium-communist > *.medium-10:nth-child(10n+1),
  .column-group.communist > *.medium-10:nth-child(10n+1) {
    clear: both;
  }
  .column-group.medium-communist > *.medium-10:nth-last-child(-n+10),
  .column-group.communist > *.medium-10:nth-last-child(-n+10) {
    margin-bottom: 0;
  }
}
/*****/
/* S */
/*****/
@media screen and (min-width: 321px) and (max-width: 640px) {
  html {
    font-size: 1em;
  }
  .small-clearfix {
    overflow: hidden;
  }
  ul.small-unstyled {
    list-style: none;
    padding-left: 0;
  }
  ul.small-unstyled ul {
    list-style: none;
  }
  ul.small-unstyled ul.small-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .ink-grid-negative {
    margin-left: -1.25em;
    margin-right: -1.25em;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
  .column-group.small-communist > *:last-child[class*="small-100"],
  .column-group.communist > *:last-child[class*="small-100"] {
    margin-bottom: 0;
  }
  .column-group.small-communist > *.small-50:nth-child(2n+1),
  .column-group.communist > *.small-50:nth-child(2n+1) {
    clear: both;
  }
  .column-group.small-communist > *.small-50:nth-last-child(-n+2),
  .column-group.communist > *.small-50:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .column-group.small-communist > *.small-33:nth-child(3n+1),
  .column-group.communist > *.small-33:nth-child(3n+1) {
    clear: both;
  }
  .column-group.small-communist > *.small-33:nth-last-child(-n+3),
  .column-group.communist > *.small-33:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .column-group.small-communist > *.small-25:nth-child(4n+1),
  .column-group.communist > *.small-25:nth-child(4n+1) {
    clear: both;
  }
  .column-group.small-communist > *.small-25:nth-last-child(-n+4),
  .column-group.communist > *.small-25:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  .column-group.small-communist > *.small-20:nth-child(5n+1),
  .column-group.communist > *.small-20:nth-child(5n+1) {
    clear: both;
  }
  .column-group.small-communist > *.small-20:nth-last-child(-n+5),
  .column-group.communist > *.small-20:nth-last-child(-n+5) {
    margin-bottom: 0;
  }
  .column-group.small-communist > *.small-16:nth-child(6n+1),
  .column-group.communist > *.small-16:nth-child(6n+1) {
    clear: both;
  }
  .column-group.small-communist > *.small-16:nth-last-child(-n+6),
  .column-group.communist > *.small-16:nth-last-child(-n+6) {
    margin-bottom: 0;
  }
  .column-group.small-communist > *.small-10:nth-child(10n+1),
  .column-group.communist > *.small-10:nth-child(10n+1) {
    clear: both;
  }
  .column-group.small-communist > *.small-10:nth-last-child(-n+10),
  .column-group.communist > *.small-10:nth-last-child(-n+10) {
    margin-bottom: 0;
  }
}
/*****/
/* T */
/*****/
@media screen and (max-width: 320px) {
  html {
    font-size: 1em;
  }
  .tiny-clearfix {
    overflow: hidden;
  }
  ul.tiny-unstyled {
    list-style: none;
    padding-left: 0;
  }
  ul.tiny-unstyled ul {
    list-style: none;
  }
  ul.tiny-unstyled ul.tiny-unstyled {
    list-style: none;
    padding-left: 0;
  }
  .ink-grid-negative {
    margin-left: -1em;
    margin-right: -1em;
    padding-left: 1em;
    padding-right: 1em;
  }
  .column-group.tiny-communist > *:last-child[class*="tiny-100"],
  .column-group.communist > *:last-child[class*="tiny-100"] {
    margin-bottom: 0;
  }
  .column-group.tiny-communist > *.tiny-50:nth-child(2n+1),
  .column-group.communist > *.tiny-50:nth-child(2n+1) {
    clear: both;
  }
  .column-group.tiny-communist > *.tiny-50:nth-last-child(-n+2),
  .column-group.communist > *.tiny-50:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .column-group.tiny-communist > *.tiny-33:nth-child(3n+1),
  .column-group.communist > *.tiny-33:nth-child(3n+1) {
    clear: both;
  }
  .column-group.tiny-communist > *.tiny-33:nth-last-child(-n+3),
  .column-group.communist > *.tiny-33:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  .column-group.tiny-communist > *.tiny-25:nth-child(4n+1),
  .column-group.communist > *.tiny-25:nth-child(4n+1) {
    clear: both;
  }
  .column-group.tiny-communist > *.tiny-25:nth-last-child(-n+4),
  .column-group.communist > *.tiny-25:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  .column-group.tiny-communist > *.tiny-20:nth-child(5n+1),
  .column-group.communist > *.tiny-20:nth-child(5n+1) {
    clear: both;
  }
  .column-group.tiny-communist > *.tiny-20:nth-last-child(-n+5),
  .column-group.communist > *.tiny-20:nth-last-child(-n+5) {
    margin-bottom: 0;
  }
  .column-group.tiny-communist > *.tiny-16:nth-child(6n+1),
  .column-group.communist > *.tiny-16:nth-child(6n+1) {
    clear: both;
  }
  .column-group.tiny-communist > *.tiny-16:nth-last-child(-n+6),
  .column-group.communist > *.tiny-16:nth-last-child(-n+6) {
    margin-bottom: 0;
  }
  .column-group.tiny-communist > *.tiny-10:nth-child(10n+1),
  .column-group.communist > *.tiny-10:nth-child(10n+1) {
    clear: both;
  }
  .column-group.tiny-communist > *.tiny-10:nth-last-child(-n+10),
  .column-group.communist > *.tiny-10:nth-last-child(-n+10) {
    margin-bottom: 0;
  }
}
/**********/
/* RETINA */
/**********/
@keyframes pulseone {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes pulsetwo {
  0% {
    background-color: #1565C0;
  }
  50% {
    background-color: #4d4d4d;
  }
  100% {
    background-color: #1565C0;
  }
}
@keyframes rotatethreesixty {
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    -moz-transform: rotate3d(0, 0, 1, 360deg);
    -ms-transform: rotate3d(0, 0, 1, 360deg);
    -o-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@-webkit-keyframes loader-rotate-small {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loader-rotate-small {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-rotate-small {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-rotate-large {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loader-rotate-large {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-rotate-large {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.switch {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.switch:after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #FFF;
  border-radius: 7px;
  content: "";
}
.switch.on,
.switch.subscribed {
  background-color: #1565C0;
}
.switch.on:after,
.switch.subscribed:after {
  left: auto;
  right: 3px;
}
.switch.loading {
  -webkit-animation: pulsetwo 1s infinite;
  -moz-animation: pulsetwo 1s infinite;
  -o-animation: pulsetwo 1s infinite;
  animation: pulsetwo 1s infinite;
}
.switch:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
.switch:hover.on,
.switch:hover.subscribed {
  background-color: #104d92;
}
.crosscontent-element {
  display: block;
  position: relative;
  height: 0;
  padding-top: 50%;
  background: #888 no-repeat top center;
  background-size: cover;
  color: #FFF;
}
.crosscontent-element .details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.crosscontent-element .details .title {
  color: #FFF;
  text-transform: uppercase;
}
.crosscontent-element.crosscontent-element-image-text:hover {
  background-color: #1565C0;
  color: #FFF;
}
.crosscontent-element.crosscontent-element-image-text .details {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigwLCAwLCAwKSIgc3RvcC1vcGFjaXR5PSIwLjY2Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSJyZ2IoMCwwLDApIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(-270deg, rgba(0, 0, 0, 0.66) 0%, transparent 100%);
  background-image: -moz-linear-gradient(-270deg, rgba(0, 0, 0, 0.66) 0%, transparent 100%);
  background-image: -o-linear-gradient(-270deg, rgba(0, 0, 0, 0.66) 0%, transparent 100%);
  background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.66) 0%, transparent 100%);
}
.one-signal-notification-button .fa.fa-bell-slash,
.one-signal-notification-button .label--on {
  display: none;
}
.one-signal-notification-button.subscribed .label--on,
.one-signal-notification-button.subscribed .fa.fa-bell-slash {
  display: inline-block;
}
.one-signal-notification-button.subscribed .label--off,
.one-signal-notification-button.subscribed .fa.fa-bell {
  display: none;
}
.ink-form.newsletter-form-micro {
  position: relative;
}
.ink-form.newsletter-form-micro input {
  padding-right: 36px;
  border-radius: 0;
  opacity: 0.9;
}
.ink-form.newsletter-form-micro input:hover {
  opacity: 0.95;
}
.ink-form.newsletter-form-micro input:focus {
  box-shadow: none;
  opacity: 1;
}
.ink-form.newsletter-form-micro button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ink-form.newsletter-form-micro button:hover {
  background-color: #1565C0;
  color: #FFF;
}
.ink-form.newsletter-form-micro.dark-bg input {
  border: none;
}
body.ink-drawer .drawer {
  background-color: #111;
}
body.ink-drawer .drawer .ink-form input,
body.ink-drawer .drawer .ink-form select {
  border-color: #FFF;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li {
  border-color: #1e1e1e;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li a {
  color: #FFF;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li a:hover {
  background-color: #1e1e1e;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li a:hover + .dropdown-icon {
  border-color: #2b2b2b;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li .dropdown-icon {
  border-color: #1e1e1e;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li ul.submenu {
  background-color: #040404;
  border-top: 1px solid #1e1e1e;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li ul.submenu li {
  border-color: #000000;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li ul.submenu li ul.subsubmenu li {
  border-top: 1px solid #000000;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li ul.submenu li ul.subsubmenu li a {
  padding: 0 1em 0 4em;
  text-transform: none;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li.active a {
  text-decoration: none;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li.active ul.submenu {
  display: block!important;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li.current > a {
  color: #1565C0;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li.current.active ul.submenu {
  display: block!important;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li.secondary-topics a {
  padding: 0;
  line-height: normal;
  text-transform: none;
}
body.ink-drawer .drawer .ink-navigation ul.menu.vertical li:hover > ul.submenu {
  display: none;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #FFFFFF;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
a {
  color: #1565C0;
}
a:hover {
  text-decoration: none;
  color: #333333;
}
i.fa {
  font-size: 14px;
}
pre {
  max-height: 500px;
  padding: 1em;
  font-size: 12px;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.25);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
  font-style: normal;
}
.main {
  padding-top: 0;
}
.ad-ctn {
  position: relative;
}
.ad-ctn:not(:empty):before {
  position: absolute;
  top: -14px;
  left: 0;
  font-family: sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #AAA;
  content: "Pub";
}
.ad-ctn > div {
  max-height: 615px;
  overflow-y: hidden;
}
.ad {
  position: relative;
  min-width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  min-height: 250px;
}
.ad:before {
  position: absolute;
  top: -14px;
  left: 0;
  font-family: sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #AAA;
  content: "Pub";
}
.ad:nth-child(2) {
  margin-top: 25px;
}
.ad.selfpromotion {
  min-height: 200px;
}
.adblock {
  color: rgba(255, 255, 255, 0.8);
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAxMDQwOCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(-130deg, #1565C0 0%, #010408 100%);
  background-image: -moz-linear-gradient(-130deg, #1565C0 0%, #010408 100%);
  background-image: -o-linear-gradient(-130deg, #1565C0 0%, #010408 100%);
  background-image: linear-gradient(220deg, #1565C0 0%, #010408 100%);
}
.adblock h1,
.adblock h2,
.adblock h3,
.adblock h4,
.adblock h5,
.adblock h6 {
  color: #FFF;
}
.adblock a {
  font-weight: 900;
  color: #FFF!important;
}
span.separator:last-child {
  display: none;
}
/* MARTELADINHAS DE PUB */
.ad > iframe[id^="sas_"],
.ad > iframe[id^="google_ads_"] {
  vertical-align: top;
}
div.sapo_takeover_iframecontent,
div.sapo_takeover_iframecontent_closed {
  margin-bottom: 0;
}
div.sapo_takeover_iframecontent:before,
div.sapo_takeover_iframecontent_closed:before {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 11;
  content: "Pub";
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFF;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
  opacity: 0.66;
}
div.sapo_takeover_iframecontent iframe,
div.sapo_takeover_iframecontent_closed iframe {
  margin-top: 0;
}
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.bsu {
  height: 36px;
  background-color: #111;
}
.page-error .error {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.blank-slate {
  padding: 6em 2em;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(51, 51, 51, 0.5);
}
.blank-slate .title {
  margin-bottom: 0;
  zoom: 1;
  filter: alpha(opacity=40);
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
}
.blank-slate .tip {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.blank-slate.blank-slate--small {
  padding: 1em;
}
.blank-slate.blank-slate--small .title {
  font-size: 1em;
  text-transform: none;
}
.apps-menu > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.apps-menu > ul li {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.apps-menu > ul li:first-child {
  margin-left: 0;
}
.apps-menu > ul li a {
  display: block;
  padding: 0;
}
.apps-menu > ul li a img {
  max-height: 36px;
}
.apps-menu > ul li:last-child {
  margin-bottom: 0;
}
.apps-menu[class~="push-right"] > ul li {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
.apps-menu[class~="push-right"] > ul li:first-child {
  margin-left: 0;
}
.section-title {
  display: inline-block;
  vertical-align: top;
}
.section-title a {
  display: inline-block;
  color: #333333;
}
.section-title a:hover {
  color: #1565C0;
}
.video-ctn,
.sapo-videos-player-embed {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-ctn > iframe,
.sapo-videos-player-embed > iframe,
.video-ctn > picture,
.sapo-videos-player-embed > picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.system-messages {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 2000000001;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out,-moz-transform 0.3s ease-out,-o-transform 0.3s ease-out,transform 0.3s ease-out;
  opacity: 0;
}
.system-messages.show {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  /*.box-shadow(0 0 20px 5px rgba(0,0,0,0.25));*/
}
.logo {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  font-size: 1em;
  vertical-align: middle;
}
.logo > a {
  position: relative;
  display: block;
  height: 46px;
  line-height: 46px;
  vertical-align: middle;
}
.logo > a img {
  max-height: 100%;
  vertical-align: middle;
}
.sponsor-logo {
  display: inline-block;
  position: relative;
  margin: 0;
  font-size: 1em;
}
.sponsor-logo > a {
  position: relative;
  display: block;
  height: 46px;
  line-height: 46px;
}
.sponsor-logo > a img {
  max-height: 100%;
  vertical-align: top;
}
.thumb {
  position: relative;
  display: block;
  min-height: 40px;
  background: rgba(0, 0, 0, 0.1) no-repeat center center;
  background-size: 120px auto;
  overflow: hidden;
}
.thumb picture {
  display: block;
  min-height: 1px;
}
.thumb img {
  display: block;
  width: 100%;
}
.thumb:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  z-index: 1;
}
a.thumb:hover:before {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5) inset;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5) inset;
}
.thumb.rounded {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.thumb.rounded:before {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.thumb.rounded img {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.thumb.circle {
  height: 0;
  padding-top: 100%;
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
  overflow: hidden;
}
.thumb.circle:before {
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
}
.thumb.circle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
}
.thumb.no-image {
  background-image: url(/assets/img/thumb-placeholder-02.png);
}
.thumb .media-helper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
  text-shadow: none;
  pointer-events: none;
}
.thumb .media-helper .media-helper-item {
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #FFF;
  border-radius: 19px;
  color: #FFF;
}
.thumb .media-helper .media-helper-item:not(:last-child) {
  margin-right: 5px;
}
.thumb .media-helper .media-helper-item i {
  line-height: 30px;
}
.thumb .media-helper .media-helper-item.media-helper-item--videos i {
  position: relative;
  left: 5%;
}
.thumb.has-videos .media-helper,
.thumb.has-photogalleries .media-helper,
.thumb.is-video .media-helper,
.thumb.is-photogallery .media-helper,
.thumb.is-live-blog .media-helper {
  display: block;
}
.thumb.is-video .media-helper {
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.thumb.is-video .media-helper .media-helper-item {
  width: 50px;
  height: 50px;
  border-radius: 27px;
}
.thumb.is-video .media-helper .media-helper-item i {
  font-size: 20px;
  line-height: 46px;
}
.thumb.is-video:hover .media-helper-item {
  background: rgba(21, 101, 192, 0.75);
}
.thumb.sixteen-by-nine {
  position: relative;
  padding-top: 56.2%;
  height: 0;
}
.thumb.sixteen-by-nine picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.thumb:active {
  top: 1px;
}
.pagination ul {
  text-align: center;
}
.pagination ul li {
  display: inline-block;
  margin: 0;
}
.pagination ul li a {
  display: block;
  padding: 10px 5px;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 30px;
  color: #333333;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.pagination ul li a span {
  vertical-align: top;
}
.pagination ul li a i {
  line-height: 30px;
  vertical-align: top;
}
.pagination ul li.previous span,
.pagination ul li.next span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.pagination ul li.previous i,
.pagination ul li.next i {
  font-size: 28px;
}
.pagination ul li:not(.disabled) a:hover {
  color: #1565C0;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.pagination ul li.current-page a {
  text-decoration: none;
  cursor: default;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: none;
}
.pagination ul li.disabled {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  pointer-events: none;
}
.breadcrumbs {
  line-height: 10px;
  text-transform: uppercase;
  border: 1px solid #333333;
  border-left: none;
  border-right: none;
}
.photo-gallery li .thumb {
  position: relative;
  height: 0;
  padding-top: 100%;
}
.photo-gallery li .thumb picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.photo-gallery.lotsaphotos li.show-extra-photos-label .thumb {
  overflow: hidden;
}
.photo-gallery.lotsaphotos li.show-extra-photos-label .thumb:after {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 120px;
  background: rgba(51, 51, 51, 0.25);
  font-size: 1.5em;
  font-weight: 300;
  text-align: center;
  color: #FFF;
  content: attr(data-extra-photos);
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.photo-gallery.lotsaphotos li.show-extra-photos-label .thumb:hover:after {
  background-color: rgba(21, 101, 192, 0.9);
}
body[class*="body-blockpage"] .article-list li .article .details .metadata .date .year {
  display: none;
}
.page-blocks > *:first-child {
  margin-top: 0;
}
.page-blocks > *:last-child {
  margin-bottom: 0;
}
.page-blocks .block-header {
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.page-blocks .block-header .block-logo {
  display: block;
  max-width: 300px;
  max-height: 200px;
  margin-left: auto;
  margin-right: auto;
}
.page-blocks .block-header .block-logo img {
  max-width: 300px;
  max-height: 200px;
}
header#header {
  position: relative;
  z-index: 4;
}
header#header .apps-menu > ul li {
  margin-bottom: 0;
}
header#header .extra-menu > * {
  margin-left: 1%;
}
header#header .content-menu ul.menu.horizontal li a {
  font-size: 12px;
  color: #FFF;
  text-decoration: none;
}
header#header .content-menu ul.menu.horizontal li a:hover {
  background: #104d92;
}
header#header .content-menu ul.menu.horizontal li ul.submenu {
  background-color: #1259a9;
  border: none;
}
header#header .content-menu ul.menu.horizontal li ul.submenu li {
  border-top: 1px solid #0d417b;
}
header#header .content-menu ul.menu.horizontal li ul.submenu li a {
  color: #FFF;
  border: none;
}
header#header .content-menu ul.menu.horizontal li ul.submenu li a:hover {
  background-color: #104d92;
}
header#header .content-menu ul.menu.horizontal li ul.submenu li.current {
  background-color: #104d92;
}
header#header .content-menu ul.menu.horizontal li.home img {
  width: 0;
  height: 30px;
  -webkit-transform: translate(-50px, 0);
  -moz-transform: translate(-50px, 0);
  -ms-transform: translate(-50px, 0);
  -o-transform: translate(-50px, 0);
  transform: translate(-50px, 0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
header#header .content-menu ul.menu.horizontal li.search,
header#header .content-menu ul.menu.horizontal li.menu {
  float: right;
}
header#header .content-menu ul.menu.horizontal > li > a {
  height: 50px;
  padding: 10px 8px;
}
header#header .content-menu ul.menu.horizontal > li.current > a {
  background-color: #1259a9;
}
header#header .content-menu ul.menu.horizontal > li.current > a:hover {
  background-color: #104d92;
}
header#header .content-menu ul.menu.horizontal > li.show-submenu > ul.submenu {
  display: block;
}
header#header .content-menu ul.menu.horizontal > li.dropdown-toggle {
  border-left: 1px solid #0d417b;
}
header#header .content-menu ul.menu.horizontal > li:hover {
  background-color: #1259a9;
}
header#header .content-menu .content-menu-object {
  position: relative;
}
header#header .content-menu .content-menu-primary:before,
header#header .content-menu .content-menu-secondary:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s all ease-out;
  -moz-transition: 0.3s all ease-out;
  -o-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  content: "";
}
header#header .content-menu .content-menu-primary:before {
  background-color: #1565C0;
}
header#header .content-menu .content-menu-secondary:before {
  background-color: #FFFFFF;
  border-bottom: 1px solid #333333;
}
header#header .content-menu .content-menu-primary {
  background-color: #1565C0;
}
header#header .content-menu .content-menu-secondary {
  background-color: #FFFFFF;
  border-bottom: 1px solid #333333;
}
header#header .content-menu .content-menu-secondary ul.menu.horizontal > li > a {
  height: 34px;
  padding: 2px 0;
  margin-right: 15px;
  text-transform: none;
  color: #333333;
}
header#header .content-menu .content-menu-secondary ul.menu.horizontal > li > a:hover {
  background: none;
  color: #1565C0;
}
header#header .content-menu .content-menu-secondary ul.menu.horizontal > li:hover {
  background: none;
}
header#header .content-menu.ink-sticky-stuck {
  z-index: 5;
}
header#header .content-menu.ink-sticky-stuck .content-menu-primary:before,
header#header .content-menu.ink-sticky-stuck .content-menu-secondary:before {
  -webkit-transform: scale3d(1.2, 1, 1);
  -moz-transform: scale3d(1.2, 1, 1);
  -ms-transform: scale3d(1.2, 1, 1);
  -o-transform: scale3d(1.2, 1, 1);
  transform: scale3d(1.2, 1, 1);
}
header#header .content-menu.ink-sticky-stuck ul.menu.horizontal li.home {
  margin-right: 15px;
}
header#header .content-menu.ink-sticky-stuck ul.menu.horizontal li.home:hover {
  background: none;
}
header#header .content-menu.ink-sticky-stuck ul.menu.horizontal li.home a {
  padding-left: 0;
  padding-right: 0;
}
header#header .content-menu.ink-sticky-stuck ul.menu.horizontal li.home a:hover {
  background: none;
}
header#header .content-menu.ink-sticky-stuck ul.menu.horizontal li.home i {
  display: none;
}
header#header .content-menu.ink-sticky-stuck ul.menu.horizontal li.home img {
  width: auto;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
header#header.ink-sticky-stuck {
  position: fixed;
  z-index: 5;
}
header#header .primary-menu {
  position: relative;
  background-color: #1565C0;
  z-index: 1;
}
header#header .primary-menu ul.menu.horizontal li a {
  font-size: 0.875rem;
  color: #FFF;
  white-space: nowrap;
}
header#header .primary-menu ul.menu.horizontal li a:hover {
  background: #104d92;
}
header#header .primary-menu ul.menu.horizontal li ul.submenu {
  background-color: #1259a9;
  border: none;
}
header#header .primary-menu ul.menu.horizontal li ul.submenu li {
  border-top: 1px solid #0d417b;
}
header#header .primary-menu ul.menu.horizontal li ul.submenu li a {
  padding: 5px 10px;
  color: #FFF;
  border: none;
}
header#header .primary-menu ul.menu.horizontal li ul.submenu li a i {
  width: 20px;
}
header#header .primary-menu ul.menu.horizontal li ul.submenu li a:hover {
  background-color: #104d92;
}
header#header .primary-menu ul.menu.horizontal li ul.submenu li.current {
  background-color: #104d92;
}
header#header .primary-menu ul.menu.horizontal li.current a {
  background-color: #1259a9;
}
header#header .primary-menu ul.menu.horizontal > li > a {
  height: 60px;
  padding: 10px 8px;
  line-height: 40px;
}
header#header .primary-menu ul.menu.horizontal > li:not(.push-right) {
  transition: 0.15s transform ease-out;
  transform: translate3d(-80px, 0, 0);
}
header#header .primary-menu ul.menu.horizontal > li:hover {
  background-color: #1259a9;
}
header#header .primary-menu ul.menu.horizontal > li.home a {
  padding: 11px 0;
}
header#header .primary-menu ul.menu.horizontal > li.home a img {
  height: 38px;
}
header#header .primary-menu ul.menu.horizontal > li.home a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  z-index: 1;
  background-color: #1565C0;
  content: "";
  transition: opacity 0.15s linear;
}
header#header .primary-menu ul.menu.horizontal > li.home a:hover {
  background: none;
}
header#header .primary-menu ul.menu.horizontal > li.home:hover {
  background: none;
}
header#header .primary-menu ul.menu.horizontal > li[class*="push-right"] {
  float: right;
}
header#header .primary-menu ul.menu.horizontal > li[class*="push-right"] .submenu {
  left: auto;
  right: 0;
}
header#header .secondary-menu {
  background-color: #FFFFFF;
  border-bottom: 1px solid #333333;
}
header#header .secondary-menu ul.menu.horizontal li a {
  height: 30px;
  padding: 10px 0;
  margin-right: 15px;
  line-height: 10px;
  font-size: 0.875rem;
  color: #333333;
}
header#header .secondary-menu ul.menu.horizontal li a:hover {
  color: #1565C0;
}
header#header.ink-sticky-stuck {
  position: fixed;
  z-index: 5;
}
header#header.ink-sticky-stuck .primary-menu ul.menu.horizontal > li.home a:before {
  opacity: 0;
  background-image: linear-gradient(270deg, #1565C0, transparent);
}
header#header.ink-sticky-stuck .primary-menu ul.menu.horizontal > li:not(.push-right) {
  transform: translate3d(0, 0, 0);
}
.ink-shade.search-modal-ctn {
  color: #FFF;
  z-index: 2000000001;
  background-image: 8121991;
  background-image: -webkit-linear-gradient(-225deg, rgba(6, 28, 54, 0.9) 0%, rgba(16, 77, 146, 0.9) 100%);
  background-image: -moz-linear-gradient(-225deg, rgba(6, 28, 54, 0.9) 0%, rgba(16, 77, 146, 0.9) 100%);
  background-image: -o-linear-gradient(-225deg, rgba(6, 28, 54, 0.9) 0%, rgba(16, 77, 146, 0.9) 100%);
  background-image: linear-gradient(315deg, rgba(6, 28, 54, 0.9) 0%, rgba(16, 77, 146, 0.9) 100%);
}
.ink-shade.search-modal-ctn .ink-modal {
  /*padding:2% 0;*/
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ink-shade.search-modal-ctn .ink-modal .modal-body {
  position: relative;
  padding: 0;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.ink-shade.search-modal-ctn .ink-modal .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  background: none;
  border: none;
  z-index: 1;
}
.ink-shade.search-modal-ctn .ink-modal .modal-close:before,
.ink-shade.search-modal-ctn .ink-modal .modal-close:after {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}
.ink-shade.search-modal-ctn .ink-modal .modal-close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ink-shade.search-modal-ctn .ink-modal .modal-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.ink-shade.search-modal-ctn .ink-modal .modal-close:hover:before,
.ink-shade.search-modal-ctn .ink-modal .modal-close:hover:after {
  background-color: #ffffff;
}
.ink-shade.search-modal-ctn form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.ink-shade.search-modal-ctn form input[type="search"] {
  display: block;
  width: 100%;
  height: 50px;
  padding-right: 50px;
  /*padding:2% 0;*/
  background: none;
  font-size: 2.25em;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  color: #FFF;
}
.ink-shade.search-modal-ctn form input[type="search"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.ink-shade.search-modal-ctn form input[type="search"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.ink-shade.search-modal-ctn form input[type="search"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.ink-shade.search-modal-ctn form input[type="search"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.ink-shade.search-modal-ctn form input[type="search"]:focus {
  outline: none;
}
.ink-shade.search-modal-ctn ul.search-results-list {
  position: absolute;
  top: 50px;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  overflow-y: auto;
}
.ink-shade.search-modal-ctn ul.search-results-list li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.ink-shade.search-modal-ctn ul.search-results-list li.active {
  background-color: rgba(0, 0, 0, 0.5);
}
.ink-shade.search-modal-ctn ul.search-results-list li a {
  display: block;
  position: relative;
  padding: 1em 150px 1em 1em;
  color: #FFF;
}
.ink-shade.search-modal-ctn ul.search-results-list li a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.ink-shade.search-modal-ctn ul.search-results-list li a:hover .title,
.ink-shade.search-modal-ctn ul.search-results-list li a:hover .label {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.ink-shade.search-modal-ctn ul.search-results-list li a .title {
  /*.opacity(0.75);*/
  color: rgba(255, 255, 255, 0.75);
}
.ink-shade.search-modal-ctn ul.search-results-list li a .excerpt {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75em;
}
.ink-shade.search-modal-ctn ul.search-results-list li a .highlight {
  font-weight: 900;
  color: #FFF;
}
.ink-shade.search-modal-ctn ul.search-results-list li a .label {
  position: absolute;
  top: 50%;
  right: 1em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  zoom: 1;
  filter: alpha(opacity=75);
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ink-shade.search-modal-ctn.loading .loader {
  display: block;
}
.ink-shade.search-modal-ctn.empty ul.search-results-list {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.ink-shade.search-modal-ctn.empty ul.search-results-list:after {
  display: block;
  padding: 1em;
  content: "Não existem resultados para a pesquisa efectuada";
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 2000000002;
  display: none;
}
.loader:before,
.loader:after {
  position: absolute;
  border: 3px solid transparent;
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  content: "";
  z-index: 10;
  opacity: 0.2;
}
.loader:before {
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-color: transparent #FFF transparent #FFF;
  -webkit-animation: loader-rotate-large 1s 0s ease-in-out infinite;
  -moz-animation: loader-rotate-large 1s 0s ease-in-out infinite;
  -o-animation: loader-rotate-large 1s 0s ease-in-out infinite;
  animation: loader-rotate-large 1s 0s ease-in-out infinite;
}
.loader:after {
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  border-color: #FFF transparent #FFF transparent;
  -webkit-animation: loader-rotate-small 0.5s 0s ease-in-out infinite;
  -moz-animation: loader-rotate-small 0.5s 0s ease-in-out infinite;
  -o-animation: loader-rotate-small 0.5s 0s ease-in-out infinite;
  animation: loader-rotate-small 0.5s 0s ease-in-out infinite;
}
.loading > *:not(.loader) {
  opacity: 0.2;
}
.loading > .loader {
  display: block;
}
.loader.white-bg:before {
  border-color: transparent #000 transparent #000;
}
.loader.white-bg:after {
  border-color: #000 transparent #000 transparent;
}
footer .ink-button {
  color: #777777;
  border-color: #444444;
}
footer .ink-button:hover {
  background-color: #444444;
  color: #d0d0d0;
  /*border-color:lighten(@footer-bg-color,20%);*/
}
footer#footer {
  background-color: #111;
  color: #FFF;
}
footer#footer h1,
footer#footer h2,
footer#footer h3,
footer#footer h4,
footer#footer h5,
footer#footer h6 {
  color: #FFF;
}
footer#footer .footer-content-menu a {
  color: rgba(255, 255, 255, 0.75);
}
footer#footer .footer-content-menu a:hover {
  color: #FFF;
}
footer#footer #bsu-v3-footer-links,
footer#footer #bsu-v2-footer-links,
footer#footer #bsu-footer-links {
  min-height: 30px;
  padding: 0.5em 0;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-right: none;
}
footer#footer #bsu-v3-footer-links li,
footer#footer #bsu-v2-footer-links li,
footer#footer #bsu-footer-links li {
  float: left;
  margin-right: 30px;
}
footer#footer #bsu-v3-footer-links li a,
footer#footer #bsu-v2-footer-links li a,
footer#footer #bsu-footer-links li a {
  display: block;
  font-size: 0.75em;
  /*text-transform:uppercase;*/
  color: rgba(255, 255, 255, 0.5);
}
footer#footer #bsu-v3-footer-links li a:hover,
footer#footer #bsu-v2-footer-links li a:hover,
footer#footer #bsu-footer-links li a:hover {
  color: #FFF;
}
footer#footer #bsu-v3-footer-links:after,
footer#footer #bsu-v2-footer-links:after,
footer#footer #bsu-footer-links:after {
  content: "";
  display: table;
  clear: both;
}
footer#footer #bsu-v3-footer,
footer#footer #bsu-v2-footer,
footer#footer #bsu-footer {
  padding: 0;
  font-size: 0.75em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
/***********************************************/
/******************** LISTS ********************/
/***********************************************/
.article-list li {
  margin-top: 0;
}
.article-list li .article {
  position: relative;
  display: block;
}
.article-list li .article a {
  color: #333333;
}
.article-list li .article a:hover {
  color: #1565C0;
}
.article-list li .article .thumb {
  position: relative;
  padding-top: 50%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.75);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120px auto;
  overflow: hidden;
}
.article-list li .article .thumb picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.article-list li .article .details .metadata {
  font-size: 12px;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.5);
}
.article-list li .article .details .metadata a {
  color: rgba(51, 51, 51, 0.5);
}
.article-list li .article .details .metadata a:hover {
  color: #1565C0;
}
.article-list li .article .details .title .pre-title {
  color: #1565C0;
}
.article-list li .article .details .title .post-title {
  opacity: 0.5;
}
.article-list li .article .details .title:after {
  color: #1565C0;
  display: none;
}
.article-list li .article .details .title i {
  margin-left: 5px;
  font-size: 14px;
}
.article-list li .article .details .excerpt.cut-me-off:after {
  content: " ...";
}
.article-list li .article .details .related-articles .title {
  font-size: 0.875rem;
}
.article-list li .article .details.no-click {
  pointer-events: none;
}
.article-list li .article.has-videos .media-helper,
.article-list li .article.has-photogalleries .media-helper,
.article-list li .article.is-video .media-helper,
.article-list li .article.is-photogallery .media-helper,
.article-list li .article.is-live-blog .media-helper,
.article-list li .article.is-recipe .media-helper {
  display: block;
}
.article-list li .article.has-photogalleries .details .title:after {
  content: " Fotos";
}
.article-list li .article.has-videos .details .title:after {
  content: " Vídeo";
}
.article-list li .article.has-photogalleries.has-videos .details .title:after {
  content: " Vídeo + Fotos";
}
.article-list li .article.is-live-blog .details .title:after {
  content: " Liveblog";
}
.article-list li .article.is-video .thumb .media-helper {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.article-list li .article.is-video .thumb .media-helper .media-helper-item {
  width: 50px;
  height: 50px;
  border-radius: 27px;
}
.article-list li .article.is-video .thumb .media-helper .media-helper-item i {
  font-size: 20px;
  line-height: 46px;
}
.article-list li .article.is-video .thumb:hover .media-helper-item {
  background: rgba(21, 101, 192, 0.75);
}
.article-list li .article.is-video .details .title:after {
  content: " Vídeo";
}
.article-list li .article.is-photogallery .thumb .media-helper {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.article-list li .article.is-photogallery .thumb .media-helper .media-helper-item {
  width: 50px;
  height: 50px;
  border-radius: 27px;
}
.article-list li .article.is-photogallery .thumb .media-helper .media-helper-item i {
  font-size: 20px;
  line-height: 46px;
}
.article-list li .article.is-photogallery .thumb:hover .media-helper-item {
  background: rgba(21, 101, 192, 0.75);
}
.article-list li .article.is-photogallery .details .title:after {
  content: " Fotos";
}
.article-list li .article.is-photogallery.loading > *:not(.loader) {
  opacity: 1;
}
.article-list li .article.is-photogallery.loading .thumb {
  background: #333333;
}
.article-list li .article.is-photogallery.loading .thumb .media-helper {
  display: none;
}
.article-list li .article.is-photogallery.loading .thumb picture {
  opacity: 0.5;
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}
.article-list li .article.is-photogallery.loading .loader {
  display: block;
}
.article-list li .article.is-photogallery.loading .loader:before,
.article-list li .article.is-photogallery.loading .loader:after {
  opacity: 0.5;
}
.article-list li .article.force-small-title .details .title {
  font-size: 1rem;
}
.article-list li .article.sponsored {
  background: #1565C0;
  color: #FFF;
}
.article-list li .article.sponsored a {
  color: #FFF;
}
.article-list li .article.sponsored a:hover {
  color: #333333;
}
.article-list li .article.sponsored .details {
  padding: 0 10px 10px 10px;
}
.article-list li .article.sponsored .details .metadata {
  color: rgba(255, 255, 255, 0.5);
}
.article-list li .article.sponsored .details .metadata a {
  color: rgba(255, 255, 255, 0.5);
}
.article-list li .article.sponsored .details .metadata a:hover {
  color: #333333;
}
.article-list li .article.sponsored .details .title {
  color: #FFF;
}
.article-list li .article.sponsored .details .title .pre-title {
  color: #333333;
}
.article-list li .article.sponsored .details .sponsored-label {
  display: inline-block;
  background-color: #333333;
  padding: 3px 5px;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFF;
}
.article-list li .article.ongoing > .details > .title a:before {
  content: "Em atualização ";
  color: #1565C0;
}
.article-list li .article.original-thumb .thumb {
  padding-top: 0;
  height: auto;
}
.article-list li .article.original-thumb .thumb picture {
  position: relative;
}
.article-list.most-popular {
  counter-reset: articlenumber;
}
.article-list.most-popular li {
  counter-increment: articlenumber;
}
.article-list.most-popular li .article .thumb {
  overflow: visible;
}
.article-list.most-popular li .article .thumb:after {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #1565C0;
  color: #FFF;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -o-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  z-index: 2;
  content: counter(articlenumber);
}
.article-list.most-popular li .article .thumb .media-helper {
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.article-list.most-popular li .article.is-photogallery .thumb .media-helper,
.article-list.most-popular li .article.is-video .thumb .media-helper {
  left: 50%;
}
.article-list.article-list--latest-news li .article .details .metadata .date .day,
.article-list.article-list--latest-news li .article .details .metadata .date .month,
.article-list.article-list--latest-news li .article .details .metadata .date .year {
  display: none;
}
.article-list li .article.all-hide-media-helper .media-helper {
  display: none!important;
}
.article-list li .article.all-hide-media-helper .details .title:after {
  display: inline;
}
.article-list li .article .thumb.all-four-by-one {
  padding-top: 25%;
}
.article-list li .article .thumb.all-three-by-one {
  padding-top: 33%;
}
.article-list li .article .thumb.all-two-by-one {
  padding-top: 50%;
}
.article-list li .article .thumb.all-four-by-three {
  padding-top: 75%;
}
.article-list li .article .thumb.all-one-by-one {
  padding-top: 100%;
}
.article-list li .article .thumb.all-three-by-four {
  padding-top: 133.33%;
}
.article-list li .article .thumb.all-two-by-three {
  padding-top: 150%;
}
.article-list li .article .thumb.all-one-by-two {
  padding-top: 200%;
}
.article-list li .article.all-overlaid-details {
  position: relative;
  height: 0;
  padding-top: 50%;
  color: #FFF;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.article-list li .article.all-overlaid-details > .column-group > .image-ctn > .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  margin: 0;
}
.article-list li .article.all-overlaid-details > .column-group > .details-ctn > .details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsIDAsIDApIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -moz-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.article-list li .article.all-overlaid-details > .column-group > .details-ctn > .details a {
  color: rgba(255, 255, 255, 0.9);
}
.article-list li .article.all-overlaid-details > .column-group > .details-ctn > .details a:hover {
  color: #FFF;
}
.article-list li .article.all-overlaid-details > .column-group > .details-ctn > .details .metadata {
  display: inline-block;
  padding: 3px 6px;
  margin-bottom: 0.4em;
  background: rgba(21, 101, 192, 0.9);
  text-transform: uppercase;
  text-shadow: none;
  color: #FFF;
}
.article-list li .article.all-overlaid-details > .column-group > .details-ctn > .details .metadata a {
  color: rgba(255, 255, 255, 0.9);
}
.article-list li .article.all-overlaid-details > .column-group > .details-ctn > .details .metadata a:hover {
  color: #222;
  text-shadow: none;
}
.article-list li .article.all-overlaid-details > .column-group > .details-ctn > .details .title {
  margin-bottom: 0;
  color: #FFF;
}
.article-list li .article.all-overlaid-details.ongoing > .details > .title a:before {
  content: "Em atualização \00B7";
  color: rgba(255, 255, 255, 0.9);
}
.article-list li .article.all-overlaid-details.sponsored > .details {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDIxLCAxMDEsIDE5MikiIHN0b3Atb3BhY2l0eT0iMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
  background-image: -webkit-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  background-image: -moz-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  background-image: -o-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  background-image: linear-gradient(360deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
}
.article-list li .article.all-overlaid-details.is-video > .details,
.article-list li .article.all-overlaid-details.is-photogallery > .details {
  pointer-events: none;
}
.article-list li .article.all-overlaid-details.all-four-by-one {
  padding-top: 25%;
}
.article-list li .article.all-overlaid-details.all-four-by-one .thumb {
  padding-top: 25%;
}
.article-list li .article.all-overlaid-details.all-three-by-one {
  padding-top: 33%;
}
.article-list li .article.all-overlaid-details.all-three-by-one .thumb {
  padding-top: 33%;
}
.article-list li .article.all-overlaid-details.all-two-by-one {
  padding-top: 50%;
}
.article-list li .article.all-overlaid-details.all-two-by-one .thumb {
  padding-top: 50%;
}
.article-list li .article.all-overlaid-details.all-four-by-three {
  padding-top: 75%;
}
.article-list li .article.all-overlaid-details.all-four-by-three .thumb {
  padding-top: 75%;
}
.article-list li .article.all-overlaid-details.all-one-by-one {
  padding-top: 100%;
}
.article-list li .article.all-overlaid-details.all-one-by-one .thumb {
  padding-top: 100%;
}
.article-list li .article.all-overlaid-details.all-three-by-four {
  padding-top: 133.33%;
}
.article-list li .article.all-overlaid-details.all-three-by-four .thumb {
  padding-top: 133.33%;
}
.article-list li .article.all-overlaid-details.all-two-by-three {
  padding-top: 150%;
}
.article-list li .article.all-overlaid-details.all-two-by-three .thumb {
  padding-top: 150%;
}
.article-list li .article.all-overlaid-details.all-one-by-two {
  padding-top: 200%;
}
.article-list li .article.all-overlaid-details.all-one-by-two .thumb {
  padding-top: 200%;
}
.video-list li .video:hover .thumb .media-helper-item {
  background-color: rgba(21, 101, 192, 0.75);
}
.video-list li .video:hover .video-title {
  color: #1565C0;
}
.newspaper-list {
  margin-top: 0;
  margin-bottom: 0;
}
.newspaper-list > li {
  margin-top: 0;
  margin-bottom: 0;
}
.newspaper-list > li .newspaper a {
  color: #333;
}
.newspaper-list > li .newspaper a:hover {
  color: #1565C0;
}
.newspaper-list > li .newspaper .preview {
  display: block;
  position: relative;
  background: #FFF;
  border: 1px solid #DDD;
  overflow: hidden;
}
.newspaper-list > li .newspaper .preview picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2%;
  background: #DDD url(/assets/img/thumb-placeholder-02.png) no-repeat center center;
  -webkit-background-size: 200px auto;
  -moz-background-size: 200px auto;
  background-size: 200px auto;
}
.newspaper-list > li .newspaper .preview picture img {
  width: 100%;
}
.newspaper-list > li .newspaper .preview picture.loaded {
  background-color: #FFF;
}
.newspaper-list > li .newspaper .preview:hover {
  border-color: #000000;
}
.newspaper-list > li .newspaper .headlines span:last-child {
  display: none;
}
.newspaper-list > li .newspaper.expired .preview picture {
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.newspaper-list > li .newspaper.expired .preview picture:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.specials-list {
  margin-top: 0;
  margin-bottom: 0;
}
.specials-list li .special {
  display: block;
  position: relative;
  height: 0;
  padding-top: 50%;
  background: #333333;
  overflow: hidden;
  color: #FFF;
}
.specials-list li .special .thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0.5;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.specials-list li .special .details {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 300px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.specials-list li .special .details .title {
  color: #FFF;
}
.specials-list li .special .details .excerpt.cut-me-off:after {
  content: " ...";
}
.specials-list li .special .details .sponsored-label {
  display: inline-block;
  background-color: #1565C0;
  padding: 4px 5px 3px 5px;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.partner-list li .partner .partner-name a {
  color: #333333;
}
.partner-list li .partner .partner-name a:hover {
  color: #1565C0;
}
.partner-list li .partner .partner-link {
  display: block;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  line-height: 1.3em;
}
.author-list li .author {
  display: block;
}
.author-list li .author .author-photo-ctn {
  max-width: 100px;
}
.author-list li .author .author-photo-ctn .author-photo {
  background: #333333 url(/assets/img/author-placeholder-01.png) no-repeat bottom center;
  background-size: cover;
}
.author-list li .author .author-name {
  font-size: 1rem;
}
.author-list li .author .author-name a {
  color: #333333;
}
.author-list li .author:hover .author-name {
  color: #1565C0;
}
.social-networks-list li {
  float: left;
  margin: 0;
}
.social-networks-list li a {
  width: 36px;
  padding-left: 0;
  padding-right: 0;
}
.social-networks-list li:not(:last-child) {
  margin: 0 10px 0 0;
}
.social-networks-list[class*="push-right"] li {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
/************************************************/
/******************** BLOCKS ********************/
/************************************************/
.block-highlights .section-header .sponsor {
  display: inline-block;
  height: 36px;
  padding: 5px 10px;
  line-height: 26px;
  vertical-align: top;
}
.block-highlights .section-header .sponsor .sponsor-label {
  opacity: 0.5;
}
.block-highlights .section-header .sponsor * {
  display: inline-block;
  vertical-align: top;
}
.block-latest-videos {
  background-color: #333333;
  color: #FFF;
}
.block-latest-videos .ink-button {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.5);
}
.block-latest-videos .ink-button:hover {
  background-color: rgba(21, 101, 192, 0.1);
  color: rgba(21, 101, 192, 0.75);
  border-color: rgba(21, 101, 192, 0.5);
}
.block-latest-videos .section-title {
  color: #FFF;
}
.block-latest-videos .section-title a {
  color: #FFF;
}
.block-latest-videos .section-title a:hover {
  color: #1565C0;
}
.block-latest-videos .video-list li .video .video-title {
  color: #FFF;
}
.block-latest-videos .video-list li .video:hover .video-title {
  color: #1565C0;
}
.block-latest-by-type.content-type--partner .article-list li .article .details .metadata .partner,
.block-latest-by-type.content-type--partner .article-list li .article .details .metadata .separator--after-partner {
  display: none;
}
.block-latest-by-type.content-type--category .article-list li .article .details .metadata .category,
.block-latest-by-type.content-type--category .article-list li .article .details .metadata .separator--after-category {
  display: none;
}
/***********************************************/
/******************** PAGES ********************/
/***********************************************/
div[class*="page-"] .page-header .page-title {
  display: inline-block;
  vertical-align: middle;
  line-height: 36px;
}
div[class*="page-"] .page-header .page-title a {
  color: #333333;
}
div[class*="page-"] .page-header .page-title a:hover {
  color: #1565C0;
}
div[class*="page-"] .page-header .page-excerpt {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.page-article .article-metadata {
  border-top: 1px solid #DDD;
}
.page-article .article-metadata > div {
  padding: 0.4em;
  border-bottom: 1px solid #DDD;
}
.page-article .article-metadata .tag-list {
  line-height: 1em;
}
.page-article .article-metadata .tag-list li {
  display: inline;
  margin: 0;
  font-size: 0.75em;
}
.page-article .article-metadata .tag-list li:after {
  content: "\00a0\00B7";
}
.page-article .article-metadata .tag-list li:last-child:after {
  content: "";
}
.page-article .article-author-list li {
  margin: 0 0 5px 0;
}
.page-article .article-author-list li .author {
  display: block;
}
.page-article .article-author-list li .author .avatar {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  -webkit-border-radius: 25px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 25px;
  -moz-background-clip: padding;
  border-radius: 25px;
  background-clip: padding-box;
  overflow: hidden;
}
.page-article .article-author-list li .author .avatar:before {
  -webkit-border-radius: 25px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 25px;
  -moz-background-clip: padding;
  border-radius: 25px;
  background-clip: padding-box;
}
.page-article .article-author-list li .author .avatar picture {
  -webkit-border-radius: 25px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 25px;
  -moz-background-clip: padding;
  border-radius: 25px;
  background-clip: padding-box;
}
.page-article .article-author-list li .author.no-role .name {
  line-height: 40px;
}
.page-article .article-author-list li:last-child {
  margin: 0;
}
.page-article .article-body-ctn > :first-child {
  margin-top: 0;
}
.page-article figure figcaption {
  color: rgba(51, 51, 51, 0.5);
}
.page-article .article-sponsor {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}
.page-article .article-sponsor img {
  vertical-align: middle;
}
.page-article .article-sponsor a {
  display: inline-block;
  color: #333333;
}
.page-article .article-sponsor a:hover {
  color: #1565C0;
}
.page-article .article-sponsor .sponsor-name {
  vertical-align: top;
}
.page-article .article-sponsor .article-sponsor-logo {
  max-width: 200px;
  max-height: 50px;
}
.page-article .article-title .ongoing {
  color: #1565C0;
}
.page-article .article-image,
.page-article .article-image-embeded {
  display: block;
}
.page-article .article-image figcaption span:not(:last-child):after,
.page-article .article-image-embeded figcaption span:not(:last-child):after {
  content: "\00a0\00B7\00a0";
}
.page-article .article-body iframe {
  width: 100%;
}
.page-article .article-body img {
  height: auto;
}
.page-article .article-body .page {
  position: relative;
}
.page-article .article-body.paginated .button--see-more {
  display: block!important;
  clear: both;
  position: relative;
  z-index: 2;
}
.page-article .article-body.paginated .page {
  display: none;
}
.page-article .article-body.paginated .page > *:last-child {
  margin-bottom: 0;
}
.page-article .article-body.paginated .page--1:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  content: "";
  pointer-events: none;
  -webkit-transition: 0.3s ease-out opacity;
  -moz-transition: 0.3s ease-out opacity;
  -o-transition: 0.3s ease-out opacity;
  transition: 0.3s ease-out opacity;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZGRkZGIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background-image: -o-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.page-article .article-body.paginated .page.page--1 {
  display: block;
}
.page-article .article-body .thumb.is-video {
  position: relative;
  padding-top: 56.25%;
  height: 0;
}
.page-article .article-body .thumb.is-video picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.page-article .photogallery li {
  position: relative;
}
.page-article .photogallery li .thumb {
  min-height: 0;
  height: 0;
}
.page-article .photogallery li .thumb picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.page-article .article-related-specials .specials-list li .special {
  padding-top: 20%;
}
.page-article .article-related-specials .specials-list li .special .excerpt {
  display: none;
}
.page-article .article-video {
  overflow: hidden;
}
.page-article .article-related-article {
  width: 33%;
  min-width: 150px;
}
.page-article .article-related-article .article {
  display: block;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.025);
  color: #333333;
}
.page-article .article-related-article .article .details {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: none;
}
.page-article .article-related-article .article .details .title {
  font-size: 0.875em;
  /*font-weight:700;*/
}
.page-article .article-related-article .article .details .go {
  position: relative;
  padding-left: 28px;
  line-height: 22px;
  height: 22px;
}
.page-article .article-related-article .article .details .go:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 22px;
  line-height: 22px;
  padding-left: 2px;
  font-family: "FontAwesome";
  text-align: center;
  border-radius: 11px;
  background-color: #333333;
  color: #FFFFFF;
  content: "\f105";
}
.page-article .article-related-article .article:hover {
  background: #1565C0;
}
.page-article .article-related-article .article:hover .thumb {
  background: none;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}
.page-article .article-related-article .article:hover .details {
  color: #FFF;
}
.page-article .article-related-article .article:hover .details .title {
  color: #FFF;
}
.page-article .article-related-article .article:hover .details .go:before {
  background-color: #FFF;
  color: #1565C0;
}
.page-article .article-embed-product {
  width: 33%;
  min-width: 150px;
}
.page-article .article-embed-spotify {
  width: 50%;
  min-width: 200px;
}
.page-article .article-embed-spotify iframe {
  width: 100%;
  height: 300px;
}
.page-article .article-embed-html {
  min-width: 150px;
  font-size: 0.875rem!important;
  background-color: #ebebeb;
  border: 1px solid #e0e0e0;
}
.page-article .article-embed-html h1,
.page-article .article-embed-html h2,
.page-article .article-embed-html h3,
.page-article .article-embed-html h4,
.page-article .article-embed-html h5,
.page-article .article-embed-html h6 {
  font-weight: 900;
}
.page-article .article-embed-html p,
.page-article .article-embed-html ul,
.page-article .article-embed-html ol {
  font-size: 0.875rem!important;
}
.page-article .article-embed-html > *:last-child {
  margin-bottom: 0;
}
.page-article .article-embed-gif .gif-ctn {
  position: relative;
}
.page-article .article-embed-gif .gif-ctn .gif {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: none;
}
.page-article .article-embed-gif .gif-ctn:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(0, 0, 0, 0.5);
  font-weight: 900;
  text-align: center;
  border: 2px solid #FFF;
  color: #FFF;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "GIF";
}
.page-article .article-embed-gif .gif-ctn:hover {
  cursor: pointer;
}
.page-article .article-embed-gif .gif-ctn:hover:after {
  background-color: rgba(21, 101, 192, 0.75);
}
.page-article .article-embed-gif.article-embed-gif--playing .gif-ctn {
  cursor: default;
}
.page-article .article-embed-gif.article-embed-gif--playing .gif-ctn .gif {
  display: block;
}
.page-article .article-embed-gif.article-embed-gif--playing .gif-ctn:after {
  display: none;
}
.page-article .article-embed-timeline,
.page-article .article-embed-juxtapose,
.page-article .article-embed-storymap {
  position: relative;
  height: 0;
  padding-top: 100%;
}
.page-article .article-embed-timeline iframe,
.page-article .article-embed-juxtapose iframe,
.page-article .article-embed-storymap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-article .article-embed-timeline {
  padding-top: 150%;
}
.page-category .page-header {
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.page-category .article-list li .article .metadata .category,
.page-category .article-list li .article .metadata span.separator--after-category {
  display: none;
}
.page-partner .page-header {
  background: no-repeat center center;
  background-size: cover;
  border: 2px solid #333333;
}
.page-partner .page-header .partner-logo a {
  color: #333333;
}
.page-partner .page-header .partner-logo a:hover {
  color: #1565C0;
}
.page-partner .page-header .social-networks-list li {
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
  margin-right: 5px;
}
.page-partner .page-header .label {
  display: none;
}
.page-partner .article-list li .article .metadata .partner,
.page-partner .article-list li .article .metadata .partner + span {
  display: none;
}
.page-author .page-header .author {
  border: 2px solid #333333;
}
.page-special .special-header {
  background: #999 no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  color: #FFF;
  /*text-shadow:1px 1px 0 rgba(0,0,0,0.5);*/
  background-blend-mode: multiply;
}
.page-special .special-header h1,
.page-special .special-header h2,
.page-special .special-header h3,
.page-special .special-header h4,
.page-special .special-header h5,
.page-special .special-header h6 {
  color: #FFF;
}
.page-special .special-header .special-logo {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.page-special .special-header .special-title {
  margin: 0 auto;
  max-width: 800px;
  color: #FFF;
}
.page-special .special-header .special-description {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.page-special .special-header .sponsor {
  position: relative;
}
.page-special .special-header .sponsor a {
  color: #FFF;
}
.page-special .special-header .sponsor a:hover {
  color: #1565C0;
}
.page-special .special-header .sponsor:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  margin-left: -25px;
  border-top: 1px solid #FFF;
  content: "";
}
.pswp.pswp--open {
  z-index: 2000000001;
}
.pswp-ctn .pswp__button--fs {
  display: none;
}
.pswp-ctn .pswp__caption__center {
  max-width: 800px;
}
.pswp-ctn .pswp__caption {
  background-color: rgba(0, 0, 0, 0.75);
}
.pswp-ctn .pswp__caption h1,
.pswp-ctn .pswp__caption h2,
.pswp-ctn .pswp__caption h3,
.pswp-ctn .pswp__caption h4,
.pswp-ctn .pswp__caption h5,
.pswp-ctn .pswp__caption h6 {
  margin: 0;
  color: #FFF;
}
.pswp-ctn .pswp__caption a:hover {
  color: #FFF;
  text-decoration: underline;
}
.pswp-ctn .pswp__caption .pswp__caption__center {
  color: #FFF;
}
.pswp-ctn .pswp-sidebar {
  display: none;
}
.pswp-ctn .pswp-related-articles {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  padding: 20px;
  background: #FFF;
  /*background:#222;color:#FFF;*/
  -webkit-transform: translate(0, -45%);
  -moz-transform: translate(0, -45%);
  -ms-transform: translate(0, -45%);
  -o-transform: translate(0, -45%);
  transform: translate(0, -45%);
  /*box-shadow:0 0 0 1px rgba(255,255,255,0.5);*/
  -webkit-transition: 0.3s all ease-out;
  -moz-transition: 0.3s all ease-out;
  -o-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  opacity: 0;
  pointer-events: none;
  /*display:none;*/
}
.pswp-ctn .pswp-related-articles .close {
  position: absolute;
  top: 20px;
  right: 20px;
  /*border-color:#FFF;color:#FFF;opacity:0.5;*/
}
.pswp-ctn .pswp-related-articles .article-list li .article .thumb .media-helper {
  display: none;
}
.pswp-ctn.open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000000001;
}
.pswp-ctn.show-related-articles .pswp.pswp--open:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.8;
  content: "";
  z-index: 1;
}
.pswp-ctn.show-related-articles .pswp-related-articles {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
  z-index: 2000000002;
  /*display:block;*/
}
/******************/
/* S + M + L + XL */
/******************/
/*****************/
/* T + S + M + L */
/*****************/
/**************/
/* M + L + XL */
/**************/
@media screen and (min-width: 641px) {
  .main {
    min-height: 650px;
  }
  .section-title {
    line-height: 36px;
  }
  header#header .extra-menu {
    padding: 5px 0;
  }
  .page-article .article-embed-html {
    width: 50%;
  }
  .page-article .article-sponsor {
    line-height: 50px;
  }
  .page-article .article-sponsor .sponsor-name {
    line-height: 50px;
  }
}
/*************/
/* S + M + L */
/*************/
/*************/
/* T + S + M */
/*************/
@media screen and (max-width: 960px) {
  .ad-ctn {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  header#header {
    position: relative;
    z-index: 2;
    background-color: #1565C0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  header#header .logo > a img {
    -webkit-filter: invert(1);
    -moz-filter: invert(1);
    -ms-filter: invert(1);
    filter: invert(1);
  }
  header#header .extra-menu > * {
    margin-left: 2%;
  }
  header#header .content-menu ul.menu.horizontal {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  header#header .content-menu ul.menu.horizontal::-webkit-scrollbar {
    display: none;
  }
  header#header .content-menu ul.menu.horizontal > li {
    float: none;
    display: inline-block;
  }
  header#header .content-menu ul.menu.horizontal > li > a {
    display: inline-block;
    height: 40px;
    padding: 5px 10px;
  }
  header#header .content-menu ul.menu.horizontal > li > a:hover {
    background: none;
  }
  header#header .content-menu ul.menu.horizontal > li:hover {
    background: none;
  }
  header#header .content-menu .content-menu-object:before,
  header#header .content-menu .content-menu-object:after {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background: none;
    z-index: 1;
    content: "";
    pointer-events: none;
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: 0.3s ease-out opacity;
    -moz-transition: 0.3s ease-out opacity;
    -o-transition: 0.3s ease-out opacity;
    transition: 0.3s ease-out opacity;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEwMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigyMSwgMTAxLCAxOTIpIiBzdG9wLW9wYWNpdHk9IjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
    background-image: -webkit-linear-gradient(-180deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
    background-image: -moz-linear-gradient(-180deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
    background-image: -o-linear-gradient(-180deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
    background-image: linear-gradient(270deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
  }
  header#header .content-menu .content-menu-object:before {
    left: 0;
  }
  header#header .content-menu .content-menu-object:after {
    right: 0;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigyMSwgMTAxLCAxOTIpIiBzdG9wLW9wYWNpdHk9IjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
    background-image: -webkit-linear-gradient(0deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
    background-image: -moz-linear-gradient(0deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
    background-image: -o-linear-gradient(0deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
    background-image: linear-gradient(90deg, rgba(21, 101, 192, 0) 0%, #1565C0 100%);
  }
  header#header .content-menu .content-menu-object.more-to-the-right:after {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  header#header .content-menu .content-menu-object.more-to-the-left:before {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  header#header .content-menu .content-menu-primary {
    /*padding-right:40px;*/
    border-top: 1px solid #0d417b;
  }
  header#header .content-menu .content-menu-secondary:before {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEwMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigxMywgNjUsIDEyMykiIHN0b3Atb3BhY2l0eT0iMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzBkNDE3YiIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
    background-image: -webkit-linear-gradient(-180deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: -moz-linear-gradient(-180deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: -o-linear-gradient(-180deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: linear-gradient(270deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEwMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
    background-image: -webkit-linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
    background-image: -moz-linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
    background-image: -o-linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
    background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  }
  header#header .content-menu .content-menu-secondary:after {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigxMywgNjUsIDEyMykiIHN0b3Atb3BhY2l0eT0iMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzBkNDE3YiIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
    background-image: -webkit-linear-gradient(0deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: -moz-linear-gradient(0deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: -o-linear-gradient(0deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: linear-gradient(90deg, rgba(13, 65, 123, 0) 0%, #0d417b 100%);
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
    background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
    background-image: -o-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  }
  header#header .content-menu .content-menu-secondary ul.menu.horizontal > li > a {
    padding: 2px 0;
    margin-right: 20px;
  }
  header#header .extra-menu .ink-button {
    color: #FFF;
    border-color: rgba(255, 255, 255, 0.5);
  }
  header#header .extra-menu .ink-button:hover {
    border-color: #333333;
  }
  header#header.ink-sticky-stuck {
    position: fixed;
  }
  .pswp.pswp--open + .pswp-sidebar {
    display: block;
    position: absolute;
    top: 44px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #222;
    z-index: 2000000002;
    -webkit-transform: translate(-200%, -200%);
    -moz-transform: translate(-200%, -200%);
    -ms-transform: translate(-200%, -200%);
    -o-transform: translate(-200%, -200%);
    transform: translate(-200%, -200%);
  }
  .pswp.pswp--open + .pswp-sidebar:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(/assets/img/photoswipe/preloader.gif) 0 0 no-repeat;
    content: "";
  }
  .pswp.pswp--open + .pswp-sidebar:after {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 7px 10px 8px 15px;
    color: #DDD;
    border: 1px solid #DDD;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    content: "Saltar PUB \2192";
  }
  .pswp.pswp--open + .pswp-sidebar .ad-ctn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 250px;
    /*background-color:rgba(255,255,255,0.05);*/
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    -moz-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
  .pswp.pswp--open.show-mobile-ad .pswp__counter,
  .pswp.pswp--open.show-mobile-ad .pswp__button--share,
  .pswp.pswp--open.show-mobile-ad .pswp__button--fs,
  .pswp.pswp--open.show-mobile-ad .pswp__button--zoom {
    display: none;
  }
  .pswp.pswp--open.show-mobile-ad.pswp-mobile-ad-enter-left + .pswp-sidebar {
    -webkit-animation: 0.3s ease-out forwards pswp-mobile-ad-enter-left;
    -moz-animation: 0.3s ease-out forwards pswp-mobile-ad-enter-left;
    -o-animation: 0.3s ease-out forwards pswp-mobile-ad-enter-left;
    animation: 0.3s ease-out forwards pswp-mobile-ad-enter-left;
  }
  .pswp.pswp--open.show-mobile-ad.pswp-mobile-ad-enter-right + .pswp-sidebar {
    -webkit-animation: 0.3s ease-out forwards pswp-mobile-ad-enter-right;
    -moz-animation: 0.3s ease-out forwards pswp-mobile-ad-enter-right;
    -o-animation: 0.3s ease-out forwards pswp-mobile-ad-enter-right;
    animation: 0.3s ease-out forwards pswp-mobile-ad-enter-right;
  }
  .pswp.pswp--open.show-mobile-ad.pswp-mobile-ad-exit-left + .pswp-sidebar {
    -webkit-animation: 0.3s ease-out forwards pswp-mobile-ad-exit-left;
    -moz-animation: 0.3s ease-out forwards pswp-mobile-ad-exit-left;
    -o-animation: 0.3s ease-out forwards pswp-mobile-ad-exit-left;
    animation: 0.3s ease-out forwards pswp-mobile-ad-exit-left;
  }
  .pswp.pswp--open.show-mobile-ad.pswp-mobile-ad-exit-right + .pswp-sidebar {
    -webkit-animation: 0.3s ease-out forwards pswp-mobile-ad-exit-right;
    -moz-animation: 0.3s ease-out forwards pswp-mobile-ad-exit-right;
    -o-animation: 0.3s ease-out forwards pswp-mobile-ad-exit-right;
    animation: 0.3s ease-out forwards pswp-mobile-ad-exit-right;
  }
  @-webkit-keyframes pswp-mobile-ad-enter-left {
    0% {
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
    100% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
  }
  @-moz-keyframes pswp-mobile-ad-enter-left {
    0% {
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
    100% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
  }
  @keyframes pswp-mobile-ad-enter-left {
    0% {
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
    100% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
  }
  @-webkit-keyframes pswp-mobile-ad-enter-right {
    0% {
      -webkit-transform: translate(50%, 0px);
      -moz-transform: translate(50%, 0px);
      -ms-transform: translate(50%, 0px);
      -o-transform: translate(50%, 0px);
      transform: translate(50%, 0px);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
    100% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
  }
  @-moz-keyframes pswp-mobile-ad-enter-right {
    0% {
      -webkit-transform: translate(50%, 0px);
      -moz-transform: translate(50%, 0px);
      -ms-transform: translate(50%, 0px);
      -o-transform: translate(50%, 0px);
      transform: translate(50%, 0px);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
    100% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
  }
  @keyframes pswp-mobile-ad-enter-right {
    0% {
      -webkit-transform: translate(50%, 0px);
      -moz-transform: translate(50%, 0px);
      -ms-transform: translate(50%, 0px);
      -o-transform: translate(50%, 0px);
      transform: translate(50%, 0px);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
    100% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
  }
  @-webkit-keyframes pswp-mobile-ad-exit-left {
    0% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
  }
  @-moz-keyframes pswp-mobile-ad-exit-left {
    0% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
  }
  @keyframes pswp-mobile-ad-exit-left {
    0% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
  }
  @-webkit-keyframes pswp-mobile-ad-exit-right {
    0% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(50%, 0px);
      -moz-transform: translate(50%, 0px);
      -ms-transform: translate(50%, 0px);
      -o-transform: translate(50%, 0px);
      transform: translate(50%, 0px);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
  }
  @-moz-keyframes pswp-mobile-ad-exit-right {
    0% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(50%, 0px);
      -moz-transform: translate(50%, 0px);
      -ms-transform: translate(50%, 0px);
      -o-transform: translate(50%, 0px);
      transform: translate(50%, 0px);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
  }
  @keyframes pswp-mobile-ad-exit-right {
    0% {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      zoom: 1;
      filter: alpha(opacity=100);
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(50%, 0px);
      -moz-transform: translate(50%, 0px);
      -ms-transform: translate(50%, 0px);
      -o-transform: translate(50%, 0px);
      transform: translate(50%, 0px);
      zoom: 1;
      filter: alpha(opacity=0);
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
    }
  }
  .page-article .article-metadata {
    padding: 5px 0;
    font-size: 0.875rem;
    border: 1px solid #333333;
    border-left: none;
    border-right: none;
  }
  .page-article .article-metadata > div {
    display: inline;
    padding: 0;
    border: none;
  }
  .page-article .article-metadata > div ul {
    display: inline;
  }
  .page-article .article-metadata > div:not(:last-child):after {
    content: "\00a0\00B7\00a0";
  }
  .page-article .article-author-list li {
    display: inline;
    margin: 0;
  }
  .page-article .article-author-list li .author {
    display: inline;
  }
  .page-article .article-author-list li .author .avatar {
    display: none;
  }
  .page-article .article-author-list li .author .details {
    display: inline;
    line-height: normal;
    overflow: visible;
  }
  .page-article .article-author-list li .author .details > * {
    display: inline;
    line-height: normal;
    overflow: visible;
  }
  .page-article .article-author-list li .author .details .role:before {
    content: "(";
  }
  .page-article .article-author-list li .author .details .role:after {
    content: ")";
  }
  .page-article .article-author-list li:not(:last-child):after {
    content: " \00B7 ";
  }
  header#header .content-menu .content-menu-primary {
    display: none;
  }
  header#header .content-menu .content-menu-secondary {
    display: none;
  }
}
/**********/
/* L + XL */
/**********/
@media screen and (min-width: 961px) {
  .has-good-ol-sidebar {
    position: relative;
    min-height: 615px;
    padding-right: calc(2em - -300px);
  }
  .has-good-ol-sidebar aside {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
  }
  header#header .primary-menu ul.menu.horizontal > li.home {
    margin-right: 10px;
  }
  .pswp-ctn .pswp.pswp--open {
    width: auto;
    right: 340px;
  }
  .pswp-ctn .pswp.pswp--open + .pswp-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    padding: 20px;
    margin: 0;
    background: #222;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 2000000001;
    display: block;
  }
  .pswp-ctn .pswp-related-articles {
    left: 70px;
    right: 410px;
    -webkit-transform: translate(0, -45%);
    -moz-transform: translate(0, -45%);
    -ms-transform: translate(0, -45%);
    -o-transform: translate(0, -45%);
    transform: translate(0, -45%);
  }
  .pswp-ctn.show-related-articles .pswp-related-articles {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .page-article .partner .partner-logo {
    display: block;
    width: 100%;
  }
  .page-article .partner.has-logo .partner-name {
    line-height: 40px;
  }
  .page-article .article-author-list li .author {
    min-height: 40px;
  }
  .page-article .article-author-list li .author.has-role .name {
    display: block;
    padding-top: 5px;
  }
  .page-article .article-author-list li .author.has-role .role {
    display: block;
    margin-top: -3px;
    font-size: 10px;
  }
  .page-article .photogallery li aside {
    position: absolute;
    top: 0;
    right: calc(-2em - 300px);
    width: 300px;
  }
  .page-article .article-body .page aside.pagination-ad {
    position: absolute;
    top: 0;
    right: calc(-2em - 300px);
    width: 300px;
  }
  .page-article .article-related-article {
    margin-left: -80px;
  }
  .page-article .article-embed-html {
    margin-left: -80px;
  }
}
/*********/
/* M + L */
/*********/
/*********/
/* S + M */
/*********/
/*********/
/* T + S */
/*********/
@media screen and (max-width: 640px) {
  .thumb.is-video .media-helper .media-helper-item {
    width: 40px;
    height: 40px;
    border-radius: 22px;
  }
  .thumb.is-video .media-helper .media-helper-item i {
    font-size: 14px;
    line-height: 36px;
  }
  .logo > a {
    height: 38px;
    line-height: 38px;
  }
  .article-list li .article.is-video .thumb .media-helper .media-helper-item {
    width: 40px;
    height: 40px;
    border-radius: 22px;
  }
  .article-list li .article.is-video .thumb .media-helper .media-helper-item i {
    font-size: 14px;
    line-height: 36px;
  }
  .specials-list li .special {
    padding-top: 100%;
  }
  .pagination ul li.pagination-ellipsis a {
    padding-left: 0;
    padding-right: 0;
  }
  .page-article .article-inline-ad .ad {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-article .article-embed-spotify {
    float: none;
    margin: 0;
    width: 100%;
  }
  .ink-shade.search-modal-ctn form input[type="search"] {
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.5em;
  }
  .ink-shade.search-modal-ctn ul.search-results-list li a {
    padding: 0.6em;
  }
  .ink-shade.search-modal-ctn ul.search-results-list li a > span {
    display: block;
  }
  .ink-shade.search-modal-ctn ul.search-results-list li a .title {
    line-height: 1.2em;
  }
  .ink-shade.search-modal-ctn ul.search-results-list li a .label {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    font-size: 10px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
  }
}
/******/
/* XL */
/******/
@media screen and (min-width: 1261px) {
  .try-full-width,
  .xlarge-try-full-width {
    margin-left: -2em;
    margin-right: -2em;
  }
  .article-list li .article .thumb.xlarge-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article .thumb.xlarge-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article .thumb.xlarge-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article .thumb.xlarge-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article .thumb.xlarge-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article .thumb.xlarge-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article .thumb.xlarge-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article .thumb.xlarge-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.xlarge-overlaid-details {
    position: relative;
    height: 0;
    padding-top: 50%;
    color: #FFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .image-ctn > .thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: 0;
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .details-ctn > .details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsIDAsIDApIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
    background-image: -webkit-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .details-ctn > .details a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .details-ctn > .details a:hover {
    color: #FFF;
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .details-ctn > .details .metadata {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 0.4em;
    background: rgba(21, 101, 192, 0.9);
    text-transform: uppercase;
    text-shadow: none;
    color: #FFF;
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .details-ctn > .details .metadata a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .details-ctn > .details .metadata a:hover {
    color: #222;
    text-shadow: none;
  }
  .article-list li .article.xlarge-overlaid-details > .column-group > .details-ctn > .details .title {
    margin-bottom: 0;
    color: #FFF;
  }
  .article-list li .article.xlarge-overlaid-details.ongoing > .details > .title a:before {
    content: "Em atualização \00B7";
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.xlarge-overlaid-details.sponsored > .details {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDIxLCAxMDEsIDE5MikiIHN0b3Atb3BhY2l0eT0iMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
    background-image: -webkit-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: linear-gradient(360deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  }
  .article-list li .article.xlarge-overlaid-details.is-video > .details,
  .article-list li .article.xlarge-overlaid-details.is-photogallery > .details {
    pointer-events: none;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-four-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 25%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-three-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 33%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-two-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 50%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-four-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 75%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-one-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 100%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-three-by-four > .column-group > .image-ctn > .thumb {
    padding-top: 133.33%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-two-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 150%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.xlarge-overlaid-details.xlarge-one-by-two > .column-group > .image-ctn > .thumb {
    padding-top: 200%;
  }
  .article-list li .article:not(.xlarge-overlaid-details) .media-helper {
    padding: 0.5em;
  }
  .article-list li .article .details-ctn.xlarge-75 .title {
    font-size: 1rem;
  }
  .page-article .article-body ul,
  .page-article .article-body ol,
  .page-article .article-body p {
    font-size: 1.125rem;
  }
  .apps-menu[class*="xlarge-push-right"] > ul li {
    float: right;
    margin-right: 0;
    margin-left: 10px;
  }
}
/********/
/* > XL */
/********/
@media screen and (min-width: 1440px) {
  .try-full-width {
    margin-left: 0;
    margin-right: 0;
  }
  header#header .content-menu.ink-sticky-stuck .content-menu-primary:before,
  header#header .content-menu.ink-sticky-stuck .content-menu-secondary:before {
    -webkit-transform: scale3d(2, 1, 1);
    -moz-transform: scale3d(2, 1, 1);
    -ms-transform: scale3d(2, 1, 1);
    -o-transform: scale3d(2, 1, 1);
    transform: scale3d(2, 1, 1);
  }
}
/*****/
/* L */
/*****/
@media screen and (min-width: 961px) and (max-width: 1260px) {
  .try-full-width,
  .large-try-full-width {
    margin-left: -1.75em;
    margin-right: -1.75em;
  }
  .article-list li .article.large-hide-media-helper .media-helper {
    display: none!important;
  }
  .article-list li .article.large-hide-media-helper .details .title:after {
    display: inline;
  }
  .article-list li .article .thumb.large-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article .thumb.large-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article .thumb.large-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article .thumb.large-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article .thumb.large-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article .thumb.large-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article .thumb.large-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article .thumb.large-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.large-overlaid-details {
    position: relative;
    height: 0;
    padding-top: 50%;
    color: #FFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  .article-list li .article.large-overlaid-details > .column-group > .image-ctn > .thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: 0;
  }
  .article-list li .article.large-overlaid-details > .column-group > .details-ctn > .details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsIDAsIDApIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
    background-image: -webkit-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .article-list li .article.large-overlaid-details > .column-group > .details-ctn > .details a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.large-overlaid-details > .column-group > .details-ctn > .details a:hover {
    color: #FFF;
  }
  .article-list li .article.large-overlaid-details > .column-group > .details-ctn > .details .metadata {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 0.4em;
    background: rgba(21, 101, 192, 0.9);
    text-transform: uppercase;
    text-shadow: none;
    color: #FFF;
  }
  .article-list li .article.large-overlaid-details > .column-group > .details-ctn > .details .metadata a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.large-overlaid-details > .column-group > .details-ctn > .details .metadata a:hover {
    color: #222;
    text-shadow: none;
  }
  .article-list li .article.large-overlaid-details > .column-group > .details-ctn > .details .title {
    margin-bottom: 0;
    color: #FFF;
  }
  .article-list li .article.large-overlaid-details.ongoing > .details > .title a:before {
    content: "Em atualização \00B7";
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.large-overlaid-details.sponsored > .details {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDIxLCAxMDEsIDE5MikiIHN0b3Atb3BhY2l0eT0iMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
    background-image: -webkit-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: linear-gradient(360deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  }
  .article-list li .article.large-overlaid-details.is-video > .details,
  .article-list li .article.large-overlaid-details.is-photogallery > .details {
    pointer-events: none;
  }
  .article-list li .article.large-overlaid-details.large-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article.large-overlaid-details.large-four-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 25%;
  }
  .article-list li .article.large-overlaid-details.large-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article.large-overlaid-details.large-three-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 33%;
  }
  .article-list li .article.large-overlaid-details.large-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article.large-overlaid-details.large-two-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 50%;
  }
  .article-list li .article.large-overlaid-details.large-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article.large-overlaid-details.large-four-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 75%;
  }
  .article-list li .article.large-overlaid-details.large-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article.large-overlaid-details.large-one-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 100%;
  }
  .article-list li .article.large-overlaid-details.large-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article.large-overlaid-details.large-three-by-four > .column-group > .image-ctn > .thumb {
    padding-top: 133.33%;
  }
  .article-list li .article.large-overlaid-details.large-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article.large-overlaid-details.large-two-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 150%;
  }
  .article-list li .article.large-overlaid-details.large-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.large-overlaid-details.large-one-by-two > .column-group > .image-ctn > .thumb {
    padding-top: 200%;
  }
  .article-list li .article:not(.large-overlaid-details) .media-helper {
    padding: 0.5em;
  }
  .article-list li .article .details-ctn.large-75 .title {
    font-size: 1rem;
  }
  .specials-list li .special {
    padding-top: 50%;
  }
  .apps-menu[class*="large-push-right"] > ul li {
    float: right;
    margin-right: 0;
    margin-left: 10px;
  }
}
/*****/
/* M */
/*****/
@media screen and (min-width: 641px) and (max-width: 960px) {
  .try-full-width,
  .medium-try-full-width {
    margin-left: -1.5em;
    margin-right: -1.5em;
  }
  .crosscontent.ink-sticky-stuck {
    top: 70px!important;
  }
  header#header .content-menu ul.menu.horizontal {
    padding: 0 1.5em;
  }
  .article-list li .article.medium-hide-media-helper .media-helper {
    display: none!important;
  }
  .article-list li .article.medium-hide-media-helper .details .title:after {
    display: inline;
  }
  .article-list li .article .thumb.medium-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article .thumb.medium-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article .thumb.medium-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article .thumb.medium-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article .thumb.medium-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article .thumb.medium-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article .thumb.medium-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article .thumb.medium-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.medium-overlaid-details {
    position: relative;
    height: 0;
    padding-top: 50%;
    color: #FFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  .article-list li .article.medium-overlaid-details > .column-group > .image-ctn > .thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: 0;
  }
  .article-list li .article.medium-overlaid-details > .column-group > .details-ctn > .details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsIDAsIDApIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
    background-image: -webkit-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .article-list li .article.medium-overlaid-details > .column-group > .details-ctn > .details a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.medium-overlaid-details > .column-group > .details-ctn > .details a:hover {
    color: #FFF;
  }
  .article-list li .article.medium-overlaid-details > .column-group > .details-ctn > .details .metadata {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 0.4em;
    background: rgba(21, 101, 192, 0.9);
    text-transform: uppercase;
    text-shadow: none;
    color: #FFF;
  }
  .article-list li .article.medium-overlaid-details > .column-group > .details-ctn > .details .metadata a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.medium-overlaid-details > .column-group > .details-ctn > .details .metadata a:hover {
    color: #222;
    text-shadow: none;
  }
  .article-list li .article.medium-overlaid-details > .column-group > .details-ctn > .details .title {
    margin-bottom: 0;
    color: #FFF;
  }
  .article-list li .article.medium-overlaid-details.ongoing > .details > .title a:before {
    content: "Em atualização \00B7";
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.medium-overlaid-details.sponsored > .details {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDIxLCAxMDEsIDE5MikiIHN0b3Atb3BhY2l0eT0iMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
    background-image: -webkit-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: linear-gradient(360deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  }
  .article-list li .article.medium-overlaid-details.is-video > .details,
  .article-list li .article.medium-overlaid-details.is-photogallery > .details {
    pointer-events: none;
  }
  .article-list li .article.medium-overlaid-details.medium-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article.medium-overlaid-details.medium-four-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 25%;
  }
  .article-list li .article.medium-overlaid-details.medium-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article.medium-overlaid-details.medium-three-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 33%;
  }
  .article-list li .article.medium-overlaid-details.medium-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article.medium-overlaid-details.medium-two-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 50%;
  }
  .article-list li .article.medium-overlaid-details.medium-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article.medium-overlaid-details.medium-four-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 75%;
  }
  .article-list li .article.medium-overlaid-details.medium-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article.medium-overlaid-details.medium-one-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 100%;
  }
  .article-list li .article.medium-overlaid-details.medium-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article.medium-overlaid-details.medium-three-by-four > .column-group > .image-ctn > .thumb {
    padding-top: 133.33%;
  }
  .article-list li .article.medium-overlaid-details.medium-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article.medium-overlaid-details.medium-two-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 150%;
  }
  .article-list li .article.medium-overlaid-details.medium-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.medium-overlaid-details.medium-one-by-two > .column-group > .image-ctn > .thumb {
    padding-top: 200%;
  }
  .article-list li .article:not(.medium-overlaid-details) .media-helper {
    padding: 0.5em;
  }
  .article-list li .article .details-ctn.medium-75 .title {
    font-size: 1rem;
  }
  .specials-list li .special {
    padding-top: 75%;
  }
  .page-article .article-inline-ad {
    float: right;
  }
  .page-article .article-body-ctn {
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
  }
  .page-article .article-body {
    font-size: 1.125em;
  }
  .apps-menu[class*="medium-push-right"] > ul li {
    float: right;
    margin-right: 0;
    margin-left: 10px;
  }
}
/*****/
/* S */
/*****/
@media screen and (min-width: 321px) and (max-width: 640px) {
  .try-full-width,
  .small-try-full-width {
    margin-left: -1.25em;
    margin-right: -1.25em;
  }
  .crosscontent.ink-sticky-stuck {
    top: 58px!important;
  }
  header#header .content-menu ul.menu.horizontal {
    padding: 0 1.25em;
  }
  .article-list li .article.small-hide-media-helper .media-helper {
    display: none!important;
  }
  .article-list li .article.small-hide-media-helper .details .title:after {
    display: inline;
  }
  .article-list li .article .thumb.small-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article .thumb.small-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article .thumb.small-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article .thumb.small-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article .thumb.small-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article .thumb.small-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article .thumb.small-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article .thumb.small-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.small-overlaid-details {
    position: relative;
    height: 0;
    padding-top: 50%;
    color: #FFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  .article-list li .article.small-overlaid-details > .column-group > .image-ctn > .thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: 0;
  }
  .article-list li .article.small-overlaid-details > .column-group > .details-ctn > .details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsIDAsIDApIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
    background-image: -webkit-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .article-list li .article.small-overlaid-details > .column-group > .details-ctn > .details a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.small-overlaid-details > .column-group > .details-ctn > .details a:hover {
    color: #FFF;
  }
  .article-list li .article.small-overlaid-details > .column-group > .details-ctn > .details .metadata {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 0.4em;
    background: rgba(21, 101, 192, 0.9);
    text-transform: uppercase;
    text-shadow: none;
    color: #FFF;
  }
  .article-list li .article.small-overlaid-details > .column-group > .details-ctn > .details .metadata a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.small-overlaid-details > .column-group > .details-ctn > .details .metadata a:hover {
    color: #222;
    text-shadow: none;
  }
  .article-list li .article.small-overlaid-details > .column-group > .details-ctn > .details .title {
    margin-bottom: 0;
    color: #FFF;
  }
  .article-list li .article.small-overlaid-details.ongoing > .details > .title a:before {
    content: "Em atualização \00B7";
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.small-overlaid-details.sponsored > .details {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDIxLCAxMDEsIDE5MikiIHN0b3Atb3BhY2l0eT0iMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
    background-image: -webkit-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: linear-gradient(360deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  }
  .article-list li .article.small-overlaid-details.is-video > .details,
  .article-list li .article.small-overlaid-details.is-photogallery > .details {
    pointer-events: none;
  }
  .article-list li .article.small-overlaid-details.small-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article.small-overlaid-details.small-four-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 25%;
  }
  .article-list li .article.small-overlaid-details.small-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article.small-overlaid-details.small-three-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 33%;
  }
  .article-list li .article.small-overlaid-details.small-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article.small-overlaid-details.small-two-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 50%;
  }
  .article-list li .article.small-overlaid-details.small-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article.small-overlaid-details.small-four-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 75%;
  }
  .article-list li .article.small-overlaid-details.small-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article.small-overlaid-details.small-one-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 100%;
  }
  .article-list li .article.small-overlaid-details.small-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article.small-overlaid-details.small-three-by-four > .column-group > .image-ctn > .thumb {
    padding-top: 133.33%;
  }
  .article-list li .article.small-overlaid-details.small-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article.small-overlaid-details.small-two-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 150%;
  }
  .article-list li .article.small-overlaid-details.small-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.small-overlaid-details.small-one-by-two > .column-group > .image-ctn > .thumb {
    padding-top: 200%;
  }
  .article-list li .article:not(.small-overlaid-details) .media-helper {
    padding: 0.5em;
  }
  .article-list li .article .details-ctn.small-75 .title {
    font-size: 1rem;
  }
  .apps-menu[class*="small-push-right"] > ul li {
    float: right;
    margin-right: 0;
    margin-left: 10px;
  }
}
/*****/
/* T */
/*****/
@media screen and (max-width: 320px) {
  .try-full-width,
  .tiny-try-full-width {
    margin-left: -1em;
    margin-right: -1em;
  }
  .crosscontent.ink-sticky-stuck {
    top: 54px!important;
  }
  header#header .content-menu ul.menu.horizontal {
    padding: 0 1em;
  }
  .article-list li .article.tiny-hide-media-helper .media-helper {
    display: none!important;
  }
  .article-list li .article.tiny-hide-media-helper .details .title:after {
    display: inline;
  }
  .article-list li .article .thumb.tiny-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article .thumb.tiny-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article .thumb.tiny-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article .thumb.tiny-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article .thumb.tiny-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article .thumb.tiny-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article .thumb.tiny-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article .thumb.tiny-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.tiny-overlaid-details {
    position: relative;
    height: 0;
    padding-top: 50%;
    color: #FFF;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .image-ctn > .thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: 0;
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .details-ctn > .details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDAsIDAsIDApIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
    background-image: -webkit-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(360deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .details-ctn > .details a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .details-ctn > .details a:hover {
    color: #FFF;
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .details-ctn > .details .metadata {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 0.4em;
    background: rgba(21, 101, 192, 0.9);
    text-transform: uppercase;
    text-shadow: none;
    color: #FFF;
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .details-ctn > .details .metadata a {
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .details-ctn > .details .metadata a:hover {
    color: #222;
    text-shadow: none;
  }
  .article-list li .article.tiny-overlaid-details > .column-group > .details-ctn > .details .title {
    margin-bottom: 0;
    color: #FFF;
  }
  .article-list li .article.tiny-overlaid-details.ongoing > .details > .title a:before {
    content: "Em atualização \00B7";
    color: rgba(255, 255, 255, 0.9);
  }
  .article-list li .article.tiny-overlaid-details.sponsored > .details {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMxNTY1QzAiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0icmdiKDIxLCAxMDEsIDE5MikiIHN0b3Atb3BhY2l0eT0iMCIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
    background-image: -webkit-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -moz-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: -o-linear-gradient(-270deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
    background-image: linear-gradient(360deg, #1565C0 0%, rgba(21, 101, 192, 0) 100%);
  }
  .article-list li .article.tiny-overlaid-details.is-video > .details,
  .article-list li .article.tiny-overlaid-details.is-photogallery > .details {
    pointer-events: none;
  }
  .article-list li .article.tiny-overlaid-details.tiny-four-by-one {
    padding-top: 25%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-four-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 25%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-three-by-one {
    padding-top: 33%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-three-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 33%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-two-by-one {
    padding-top: 50%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-two-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 50%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-four-by-three {
    padding-top: 75%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-four-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 75%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-one-by-one {
    padding-top: 100%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-one-by-one > .column-group > .image-ctn > .thumb {
    padding-top: 100%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-three-by-four {
    padding-top: 133.33%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-three-by-four > .column-group > .image-ctn > .thumb {
    padding-top: 133.33%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-two-by-three {
    padding-top: 150%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-two-by-three > .column-group > .image-ctn > .thumb {
    padding-top: 150%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-one-by-two {
    padding-top: 200%;
  }
  .article-list li .article.tiny-overlaid-details.tiny-one-by-two > .column-group > .image-ctn > .thumb {
    padding-top: 200%;
  }
  .article-list li .article:not(.tiny-overlaid-details) .media-helper {
    padding: 0.5em;
  }
  .article-list li .article .details-ctn.tiny-75 .title {
    font-size: 1rem;
  }
  .apps-menu[class*="tiny-push-right"] > ul li {
    float: right;
    margin-right: 0;
    margin-left: 10px;
  }
}
/**********/
/* RETINA */
/**********/
/**************************************************/
/******************** APP MODE ********************/
/**************************************************/
.app-icon {
  display: none;
}
html.app .bsu-target,
html.app .apps-menu,
html.app #bsu-v2-footer-links,
html.app #bsu-v2-footer,
html.app #bsu-v3-footer-links,
html.app #bsu-v3-footer,
html.app .one-signal-notification-button {
  display: none!important;
}
html.app .content-menu-primary .app-settings {
  display: inline!important;
}
html.app .right-drawer .app-settings {
  display: block!important;
}
html.app .app-icon {
  position: fixed;
  bottom: 1em;
  width: 38px;
  margin: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0.75);
  color: #FFF;
  z-index: 2;
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
}
html.app .page-article .share {
  display: none;
}
html.app .page-article .app-icon.app-icon-share {
  right: 1em;
  display: block;
  background-color: #1565C0;
}
html.app.ios .app-icon.app-icon-back {
  left: 1em;
  display: block;
}
html.app.ios .app-icon.app-icon-back i {
  font-size: 20px;
}
html.app.ios .body-blockpage-homepage .app-icon.app-icon-back {
  display: none;
}
/*********/
/* PRINT */
/*********/
@media print {
  a[href]:after {
    content: none!important;
  }
  .bsu-target,
  .system-messages,
  .fugly-ads,
  .crosscontent,
  #header .extra-menu-ctn,
  #header .content-menu-ctn,
  #footer,
  .has-good-ol-sidebar > aside,
  .page-article .share,
  .page-article .article-metadata .category,
  .page-article .article-metadata .tags,
  .page-article .article-metadata .comments,
  .page-article .article-related-articles,
  .page-article .article-moar-stuff,
  .page-article .article-comments,
  .page-article .article-inline-ads,
  .page-article .article-photogallery {
    display: none!important;
  }
}
/**************/
/* FUCKIN' IE */
/**************/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .notifications-modal-trigger {
    display: none!important;
  }
}
::-ms-clear {
  display: none;
}
/******************/
/* FUCKIN' SAFARI */
/******************/
_::-webkit-full-page-media,
_:future,
:root .notifications-modal-trigger {
  display: none!important;
}
/*********************/
/* FOR MINIFIED HTML */
/*********************/
.section-title .icon {
  float: left;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border: 2px solid #666666;
  text-align: center;
  display: none;
}
.section-title .icon img {
  width: 100%;
  padding: 10%;
}
/***********************************************/
/******************** LISTS ********************/
/***********************************************/
.article-list li .article .related-articles {
  margin-bottom: 0;
}
.article-list li .article .related-articles li {
  margin-bottom: 0.4em;
}
.article-list li .article .related-articles li .partner {
  opacity: 0.5;
}
.partner-list li a {
  color: #333333;
}
.partner-list li a:hover {
  color: #1565C0;
}
.specials-list li .special .thumb {
  zoom: 1;
  filter: alpha(opacity=25);
  -webkit-opacity: 0.25;
  -moz-opacity: 0.25;
  opacity: 0.25;
}
.specials-list li .special:hover {
  background-color: #1565C0;
}
.specials-list li .special:hover .thumb {
  zoom: 1;
  filter: alpha(opacity=25);
  -webkit-opacity: 0.25;
  -moz-opacity: 0.25;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}
.social-networks-list {
  overflow: auto;
}
.social-networks-list li {
  float: left;
  margin: 0;
}
.social-networks-list li a {
  width: 38px;
}
.social-networks-list li:not(:last-child) {
  margin: 0 10px 0 0;
}
.social-networks-list[class*="push-right"] li {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
/************************************************/
/******************** BLOCKS ********************/
/************************************************/
.block {
  position: relative;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.block .sponsor-logo {
  max-width: 300px;
  max-height: 50px;
}
.block .sponsor-logo img {
  max-width: 300px;
  max-height: 50px;
}
.block.block-highlights .article-list li .article .details .metadata.metadata-category--opiniao {
  display: none;
}
.block.block-latest-news-categories .article-list li .article.stand-out:not(.sponsored) .details .title span {
  background: #FFF9C4;
}
.block-special {
  position: relative;
  background: #222;
  color: #FFF;
  text-shadow: 0 0 10px #000;
}
.block-special .special-title {
  color: #FFF;
}
.block-special .special-title a {
  color: #FFF;
}
.block-special .fancy-pantsy-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222 no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  /*background-blend-mode:luminosity;*/
  zoom: 1;
  filter: alpha(opacity=20);
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  z-index: 1;
}
.block-special .special-logo {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.block-special > *:not(.fancy-pantsy-image) {
  position: relative;
  z-index: 2;
}
.block-special .article-list li .article a {
  color: #FFF;
}
.block-special .ink-button {
  color: #FFF;
  border-color: #FFF;
}
.block-video {
  position: relative;
  background-color: #111;
  color: #FFF;
}
.block-video .article-list li .article a,
.block-video .article-list li .article h1,
.block-video .article-list li .article h2,
.block-video .article-list li .article h3,
.block-video .article-list li .article h4,
.block-video .article-list li .article h5,
.block-video .article-list li .article h6 {
  color: #FFF;
}
.block-opinion-makers {
  background-color: #1565C0;
  color: #FFF;
}
.block-opinion-makers .section-title img path {
  fill: #ff0000;
}
.block-opinion-makers h1,
.block-opinion-makers h2,
.block-opinion-makers h3,
.block-opinion-makers h4,
.block-opinion-makers h5,
.block-opinion-makers h6 {
  color: #FFF;
}
.block-opinion-makers .ink-navigation ul.menu.horizontal li a {
  color: #FFF;
}
.block-opinion-makers .ink-navigation ul.menu.horizontal li a:hover {
  color: #333333;
}
.block-opinion-makers .section-title a {
  color: #FFF;
}
.block-opinion-makers .section-title a:hover {
  color: #333333;
}
.block-opinion-makers .article-list li .article {
  position: relative;
  display: block;
}
.block-opinion-makers .article-list li .article a {
  color: #FFF;
}
.block-opinion-makers .article-list li .article a:hover {
  color: #333333;
}
.block-opinion {
  background-color: #1565C0;
  color: #FFF;
}
.block-opinion h1,
.block-opinion h2,
.block-opinion h3,
.block-opinion h4,
.block-opinion h5,
.block-opinion h6 {
  color: #FFF;
}
.block-opinion .section-title {
  margin: 0;
}
.block-opinion .article-list li .article a {
  color: #FFF;
}
.block-opinion .article-list li .article a:hover {
  color: #333333;
}
.block-videos {
  background-color: #111;
  color: #FFF;
}
.block-videos h1,
.block-videos h2,
.block-videos h3,
.block-videos h4,
.block-videos h5,
.block-videos h6 {
  color: #FFF;
}
.block-videos .ink-navigation ul.menu.horizontal li a {
  color: #FFF;
}
.block-videos .ink-navigation ul.menu.horizontal li a:hover {
  color: #1565C0;
}
.block-videos .section-title a {
  color: #FFF;
}
.block-videos .section-title a:hover {
  color: #1565C0;
}
.block-videos .article-list {
  margin-bottom: 0;
}
.block-videos .article-list li .article a {
  color: #FFF;
}
.block-videos .article-list li .article a:hover {
  color: #1565C0;
}
.block-live-blog-widget {
  position: relative;
  background: #222 url() no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  color: #FFF;
}
.block-live-blog-widget .fancy-pantsy-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222 no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-blend-mode: luminosity;
  zoom: 1;
  filter: alpha(opacity=10);
  -webkit-opacity: 0.1;
  -moz-opacity: 0.1;
  opacity: 0.1;
  z-index: 1;
}
.block-live-blog-widget > *:not(.fancy-pantsy-image) {
  position: relative;
  z-index: 2;
}
.block-live-blog-widget h1,
.block-live-blog-widget h2,
.block-live-blog-widget h3,
.block-live-blog-widget h4,
.block-live-blog-widget h5,
.block-live-blog-widget h6 {
  color: #FFF;
}
.block-live-blog-widget .main-details {
  background-color: rgba(0, 0, 0, 0.5);
}
.block-live-blog-widget .live-blog-event-list-ctn {
  max-height: 400px;
  padding: 10px 0 0 20px;
  overflow-y: scroll;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-right: none;
}
.block-live-blog-widget .live-blog-event-list:before {
  background: #FFF;
}
.block-live-blog-widget .live-blog-event-list li:before {
  background: #FFF;
}
.block-live-blog-widget .live-blog-event-list li a:hover {
  color: #FFF;
  text-decoration: underline;
}
.block-live-blog-widget .twitter-hastags {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-right: none;
}
.live-blog-event-list-ctn {
  padding-left: 20px;
}
.live-blog-event-list {
  position: relative;
}
.live-blog-event-list:before {
  position: absolute;
  top: 13px;
  bottom: 0;
  left: -15px;
  width: 1px;
  background: #AAA;
  content: "";
}
.live-blog-event-list li {
  position: relative;
  margin-top: 0;
  margin-bottom: 1em;
}
.live-blog-event-list li:before {
  position: absolute;
  top: 3px;
  left: -20px;
  width: 11px;
  height: 11px;
  background: #AAA;
  -webkit-border-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 20px;
  -moz-background-clip: padding;
  border-radius: 20px;
  background-clip: padding-box;
  content: "";
}
.live-blog-event-list li .timestamp {
  font-size: 0.75em;
  zoom: 1;
  filter: alpha(opacity=75);
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  opacity: 0.75;
}
.live-blog-event-list li .title {
  font-weight: 900;
  font-size: 0.875em;
}
.live-blog-event-list li .body {
  font-size: 0.75em;
}
.block-latest-news-categories .article-list li .article .metadata .category,
.block-latest-news-categories .article-list li .article .metadata .category + span {
  display: none;
}
.block-highlights-and-latest .latest-news .article-list li .article .details .title {
  font-size: 1em;
}
.block-highlights-and-latest .ad-ctn {
  width: 300px;
  /*min-height:250px;*/
  margin-left: auto;
  margin-right: auto;
}
/***********************************************/
/******************** PAGES ********************/
/***********************************************/
.page-article .crosscontent-ctn,
.page-article .crosscontent {
  display: none;
}
.page-article .article-metadata .tags {
  display: none;
}
.page-article .article-excerpt {
  font-weight: bold;
}
.page-article .article-body figure figcaption {
  font-size: 0.675em;
}
.page-article .article-body.restricted {
  position: relative;
  max-height: 200px;
  overflow: hidden;
}
.page-article .article-body.restricted:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4em;
  background-image: 8121991;
  background-image: -webkit-linear-gradient(0, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -moz-linear-gradient(0, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-linear-gradient(0, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(0, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.page-article.article--live-blog .article-header {
  position: relative;
  background: #1565C0 no-repeat center 25%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-blend-mode: luminosity;
  color: #FFF;
}
.page-article.article--live-blog .article-header .fancy-pantsy-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1565C0 no-repeat center 25%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-blend-mode: luminosity;
  zoom: 1;
  filter: alpha(opacity=20);
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
  z-index: 1;
}
.page-article.article--live-blog .article-header > *:not(.fancy-pantsy-image) {
  position: relative;
  z-index: 2;
}
.page-article.article--live-blog .article-header a,
.page-article.article--live-blog .article-header h1,
.page-article.article--live-blog .article-header h2,
.page-article.article--live-blog .article-header h3,
.page-article.article--live-blog .article-header h4,
.page-article.article--live-blog .article-header h5,
.page-article.article--live-blog .article-header h6 {
  color: #FFF;
}
.page-article.article--live-blog .article-header a {
  text-decoration: underline;
}
.page-article.article--live-blog .article-header a:hover {
  text-decoration: none;
  color: #333333;
}
.page-article.article--live-blog .main-events {
  padding: 0 10px;
}
.page-article.article--live-blog .live-blog-full-event-list li {
  padding: 1em;
  margin: 0;
  border-top: 1px solid #CCC;
}
.page-article.article--live-blog .live-blog-full-event-list li:last-child {
  border-bottom: 1px solid #CCC;
}
.page-article.article--live-blog .live-blog-full-event-list li .timestamp {
  font-size: 0.875em;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.page-article.article--live-blog .live-blog-full-event-list li .title {
  font-weight: 900;
}
.page-article.article--live-blog .live-blog-full-event-list li .body p {
  margin: 0;
}
.page-article.article--live-blog .liveblog .timeline {
  padding-top: 0!important;
}
.page-article.article--live-blog .liveblog .events > ul {
  padding: 0!important;
}
.page-article.article--live-blog .liveblog .events > ul > li {
  padding: 1em 0;
  margin: 0;
  border-top: 1px solid #CCC;
  box-shadow: none!important;
}
.page-article.article--live-blog .liveblog .events > ul .body {
  padding-top: 0.6em;
}
.page-article.article--live-blog .liveblog .events > ul .body p {
  margin-bottom: 0.6em;
}
.page-article.article--live-blog .liveblog .events > ul .body p:last-child {
  margin: 0;
}
.page-article.page-article-type--longform .has-good-ol-sidebar {
  position: static;
  padding-right: 0;
}
.page-article.page-article-type--longform .has-good-ol-sidebar > .column-group {
  margin: 0;
}
.page-article.page-article-type--longform .has-good-ol-sidebar > .column-group > *:nth-child(1) {
  width: 100%;
  padding: 0;
}
.page-article.page-article-type--longform .has-good-ol-sidebar > .column-group > *:nth-child(1) .share,
.page-article.page-article-type--longform .has-good-ol-sidebar > .column-group > *:nth-child(1) .article-related-articles {
  display: none;
}
.page-article.page-article-type--longform .has-good-ol-sidebar > .column-group > *:nth-child(2) {
  width: 100%;
  padding: 0;
}
.page-article.page-article-type--longform .has-good-ol-sidebar > aside {
  display: none;
}
.page-article.page-article-type--longform .article-metadata {
  margin-bottom: 2em;
  text-align: center;
  border: none;
}
.page-article.page-article-type--longform .article-metadata > div {
  padding: 0;
  border: none;
}
.page-article.page-article-type--longform .article-metadata .category,
.page-article.page-article-type--longform .article-metadata .tags,
.page-article.page-article-type--longform .article-metadata .date .time {
  display: none;
}
.page-article.page-article-type--longform .article-metadata .article-author-list li .author {
  display: inline-block;
}
.page-article.page-article-type--longform .article-metadata .article-author-list li .author > * {
  float: none;
  display: inline-block;
  vertical-align: top;
  line-height: 40px;
}
.page-article.page-article-type--longform .article-title {
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.page-article.page-article-type--longform .article-excerpt {
  font-size: 1.25em;
  font-weight: 400;
  text-align: center;
}
.page-article.page-article-type--longform .article-title,
.page-article.page-article-type--longform .article-metadata,
.page-article.page-article-type--longform .article-excerpt,
.page-article.page-article-type--longform .article-body-ctn {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-article.page-article-type--longform .article-body.paginated .page--1:after {
  left: 0;
  width: 100%;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigzNCwgMzQsIDM0KSIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMjIyIiBzdG9wLW9wYWNpdHk9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjbGVzc2hhdC1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==);
  background-image: -webkit-linear-gradient(-90deg, rgba(34, 34, 34, 0) 0%, #222 100%);
  background-image: -moz-linear-gradient(-90deg, rgba(34, 34, 34, 0) 0%, #222 100%);
  background-image: -o-linear-gradient(-90deg, rgba(34, 34, 34, 0) 0%, #222 100%);
  background-image: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, #222 100%);
}
.page-article.page-article-type--longform .article-image,
.page-article.page-article-type--longform .article-image-embeded {
  padding-left: 0;
  padding-right: 0;
}
.page-article.page-article-type--longform .article-image picture img,
.page-article.page-article-type--longform .article-image-embeded picture img {
  width: 100%;
}
.page-article.page-article-category-opiniao .article-metadata .authorship,
.page-article.page-article-category-opiniao .article-metadata .category {
  display: none;
}
.page-article.page-article-category-opiniao .article-author-opinion {
  position: relative;
  background-color: #333333;
  color: #FFF;
}
.page-article.page-article-category-opiniao .article-author-opinion a {
  color: #FFF;
}
.page-article.page-article-category-opiniao .article-author-opinion a:hover {
  color: #1565C0;
}
.page-article.page-article-category-opiniao .article-author-opinion .author-image {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid #333333;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 16%;
  max-width: 100px;
  -webkit-border-radius: 100px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100px;
  -moz-background-clip: padding;
  border-radius: 100px;
  background-clip: padding-box;
  overflow: hidden;
}
.page-article.page-article-category-opiniao .article-author-opinion .author-image:hover {
  border-color: #1565C0;
}
.page-article.page-article-category-opiniao .opinion-note {
  font-style: italic;
  opacity: 0.5;
}
.page-article .site-highlights .specials-list li .special .details .excerpt {
  display: none;
}
body.article-longform .extra-menu-ctn,
body.article-longform .content-menu-ctn {
  display: none;
}
body.article-longform .logo-ctn {
  width: 100%;
  text-align: center;
}
.page-newspapers .crosscontent-ctn {
  display: none;
}
.page-newspapers .page-header {
  padding: 0.6em 0;
  line-height: 36px;
  vertical-align: middle;
  background: #FFF;
  border: 1px solid #333333;
  border-left: none;
  border-right: none;
}
.page-newspapers .page-header .page-title a {
  color: #333333;
}
.page-newspapers .page-header .page-title a:hover {
  color: #1565C0;
}
.page-newspapers .page-header .ink-navigation {
  display: inline-block;
  line-height: 36px;
  vertical-align: top;
}
.page-newspapers .page-header.ink-sticky-stuck {
  border-top: none;
  z-index: 5;
}
.page-newspapers .ink-navigation ul.menu.horizontal li a {
  height: 40px;
  padding: 9px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.25);
}
.page-newspapers .ink-navigation ul.menu.horizontal li a:hover {
  color: #333333;
}
.page-newspapers .ink-navigation ul.menu.horizontal li.current a {
  color: #333333;
}
.page-newspapers .apps-menu ul li {
  margin: 6px 0 10px 6px;
}
.page-newspapers .apps-menu ul li a img {
  height: 30px;
}
.page-newspaper .homepage-articles .title {
  font-size: 0.875em;
}
.page-newspaper .newspaper-title {
  line-height: 50px;
}
.page-newspaper-archive .homepage-articles .title {
  font-size: 0.875em;
}
.page-newspaper-archive .pswp .newspaper-url + span {
  display: none;
}
.page-newspaper-archive .pswp .newspaper-archive-url {
  display: none;
}
.page-special .special-header .special-title {
  text-transform: uppercase;
}
.page-special .special-header .sponsored-label {
  font-weight: 900;
  text-transform: uppercase;
}
.page-special.page-special--ultra .article-list li .article .details .related-articles {
  display: none;
}
.page-author .page-header .author-thumb {
  -webkit-border-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 20px;
  -moz-background-clip: padding;
  border-radius: 20px;
  background-clip: padding-box;
  overflow: hidden;
}
.page-author .page-header .author-thumb:before {
  -webkit-border-radius: 20px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 20px;
  -moz-background-clip: padding;
  border-radius: 20px;
  background-clip: padding-box;
}
.page-error {
  text-align: center;
}
.page-error h1,
.page-error h2,
.page-error h3,
.page-error h4,
.page-error h5,
.page-error h6 {
  margin: 0;
}
.page-error h1 {
  text-transform: uppercase;
}
.page-error .error-ctn {
  padding: 15% 0;
  /*border:1px solid @text-color;*/
}
.page-error .error {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page-blocks .block-header {
  border: 1px solid #333333;
  border-left: none;
  border-right: none;
}
/******************/
/* S + M + L + XL */
/******************/
/*****************/
/* T + S + M + L */
/*****************/
/**************/
/* M + L + XL */
/**************/
@media screen and (min-width: 641px) {
  .article-list li .article.highlight-one .details {
    background-image: 8121991;
    background-image: -webkit-radial-gradient(100% 100% at 0 100%, #000000, rgba(0, 0, 0, 0));
    background-image: -moz-radial-gradient(100% 100% at 0 100%, #000000, rgba(0, 0, 0, 0));
    background-image: -o-radial-gradient(100% 100% at 0 100%, #000000, rgba(0, 0, 0, 0));
    background-image: radial-gradient(100% 100% at 0 100%, #000000, rgba(0, 0, 0, 0));
  }
  [class*="page-"] .page-header .page-title {
    display: inline-block;
    line-height: 40px;
    vertical-align: middle;
  }
  [class*="page-"] .page-header .label {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.75em;
    line-height: 40px;
    text-transform: uppercase;
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
  }
  .page-article .article-title {
    font-size: 3.5em;
  }
  .page-article .article-body blockquote,
  .page-article .article-body .quote {
    float: left;
    width: 50%;
    margin: 0 1em 0.4em 0;
  }
  .page-article.is-longform .article-inline-ad.article-inline-ad-for-medium {
    display: block!important;
    float: right;
    width: 300px;
    margin: 0 0 1em 1em;
  }
  .page-article.is-longform .article-body .page aside.pagination-ad {
    position: static;
    float: right;
    margin: 0 0 1em 1em;
  }
  .page-special .special-header .special-title {
    font-size: 3em;
  }
}
/*************/
/* S + M + L */
/*************/
/*************/
/* T + S + M */
/*************/
@media screen and (max-width: 960px) {
  header#header .ink-button.travel-through-time {
    margin-top: 2px;
    margin-left: 10px;
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFF;
  }
  header#header .ink-button.travel-through-time + .ink-datepicker-calendar {
    left: -100px;
  }
  .page-article.is-longform .article-metadata > div {
    display: block;
  }
  .page-article.is-longform .article-metadata > div:not(:last-child):after {
    content: "";
  }
  body.article-longform header#header {
    background: none;
  }
  body.article-longform header#header .logo > a img {
    filter: none;
  }
  body.article-longform header#header.ink-sticky-stuck {
    position: relative;
  }
}
/**********/
/* L + XL */
/**********/
@media screen and (min-width: 960px) {
  .block-opinion .section-title {
    margin: 15px 0 0 0;
  }
}
/*********/
/* M + L */
/*********/
/*********/
/* S + M */
/*********/
/*********/
/* T + S */
/*********/
@media screen and (max-width: 640px) {
  .article-list li .article.highlight-one .details .title {
    font-size: 1.5em;
  }
  .page-article .article-title {
    font-size: 1.75rem;
  }
  .page-article .article-body .quote {
    float: none;
    width: 100%;
    margin-bottom: 0.6em;
  }
  .page-article.page-article-category-opiniao .article-author-opinion {
    font-size: 0.875em;
    font-weight: 700;
  }
}
/******/
/* XL */
/******/
@media screen and (min-width: 1261px) {
  .article-list li .article.highlight-one .details {
    width: 60%;
    padding-top: 10%;
    padding-right: 15%;
  }
}
/********/
/* > XL */
/********/
/*****/
/* L */
/*****/
@media screen and (min-width: 961px) and (max-width: 1260px) {
  .article-list li .article.highlight-one .details {
    width: 65%;
    padding-top: 10%;
    padding-right: 15%;
  }
  .article-list.humanidades li .article > .details .title {
    font-size: 1.125em;
  }
}
/*****/
/* M */
/*****/
@media screen and (min-width: 641px) and (max-width: 960px) {
  .article-list li .article.highlight-one .details {
    width: 100%;
  }
  .block-most-popular .article-list.most-popular li:nth-child(10) {
    display: none;
  }
}
/*****/
/* S */
/*****/
/*****/
/* T */
/*****/
/**********/
/* RETINA */
/**********/
.block-newspapers .ink-navigation ul.menu.horizontal li:not(.more) {
  display: none;
}
.block-latest-videos.minuto-verde-da-quercus-cv {
  background: #33691E url(/assets/img/noticias-sapo-cv/quercus.jpg) no-repeat center center;
  background-size: cover;
  border: 5px solid #333333;
}
.block-latest-videos.minuto-verde-da-quercus-cv .ink-button:hover {
  background: none;
  background-color: #7CB342;
  color: #FFF !important;
  border-color: #7CB342 !important;
}
.block-latest-videos.minuto-verde-da-quercus-cv .ink-button:hover .active {
  background-color: #557b2d;
}
.block-latest-videos.minuto-verde-da-quercus-cv .ink-button:hover:hover {
  background-color: #6fa03b;
  border-color: #6fa03b !important;
}
.block-latest-videos.minuto-verde-da-quercus-cv .ink-button:hover:active,
.block-latest-videos.minuto-verde-da-quercus-cv .ink-button:hover:focus {
  background-color: #628e34;
}
.block-latest-videos.minuto-verde-da-quercus-cv .section-title a:hover {
  color: #7CB342;
}
.block-latest-videos.minuto-verde-da-quercus-cv .video-list li .video:hover .thumb .media-helper-item {
  background-color: rgba(124, 179, 66, 0.75);
}
.block-latest-videos.minuto-verde-da-quercus-cv .video-list li .video:hover .video-title {
  color: #7CB342;
}
