@charset "UTF-8";
/**
 * A little information for newcomers here ;)
 *
 * All styles for VUI constructed using BEM (Block, Element, Modifier)
 * methodology, so don't be surprised/worried about numerous imports of css
 * files & strange files organization. Everything is under control.
 *
 * Some additional information could be found here http://bem.github.com/bem-method/pages/beginning/beginning.en.html
 */
/**
 * CSS Reset & base styles
 * -------------------------------------------------------------------------------------------
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  font: 14px/16px Arial, Tahoma, 'Helvetica Neue', Helvetica, 'DejaVu Sans', sans-serif;
  margin: 5px 0 0 5px;
  color: #000000; }

strong, b {
  font-weight: bold; }

em, i {
  font-style: italic; }

u {
  text-decoration: underline; }

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important; }

.disable-hover,
.disable-hover *,
.is-scrolling,
.is-scrolling * {
  pointer-events: none !important; }

/*------------------------------------*    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn't already have a class to which you could apply this
 * styling, e.g. if you need to float '.main-nav' left then add 'float:left;' to
 * that ruleset as opposed to adding the '.float--left' class to the markup.
 *
 * A lot of these classes carry '!important' as you will always want them to win
 * out over other selectors.
 */
/*
 * Add/remove floats
 */
.float_right {
  float: right !important; }

.float_left {
  float: left  !important; }

.float_none {
  float: none  !important; }

/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clear left/right float
 */
.clear {
  clear: both; }

/*
 * Self-clear children (clearfix-hack)
 */
/* IE6 */
* html .cf, * html .matrix, * html .multi-list, * html .b-bullet-list {
  height: 1%;
  overflow: visible; }

/* IE7 */
* + html .cf, * + html .matrix, * + html .multi-list, * + html .b-bullet-list {
  min-height: 1%; }

/* Others */
.cf:after, .matrix:after, .multi-list:after, .b-bullet-list:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0; }

/*------------------------------------*    $icon
\*------------------------------------*/
/**
 * The idea is that this file will collect everything regarding icons and sprites
 *
 * If / when sass is introduced, this is the place to render sprite stuff
 *
 * Icons should be placed in markup like this:

<i class="icon-loader"></i>

 * complete with dimensions and background.
 *
 * No parent levels, no inline styling or urls.
 */
/**

    TODO:
    - Inline-block all icons
    - Add heights
    - Remove/evaluate all overriding styles that sets properties irrelevant for icons (i.e non-box-model props, colors, fonts etc)
    - remove .icon class in markup, when all overriding css rules are removed. Replace with @extend %icon-base
    - b-link-icon_X should be just icon_X, since icons are not block

**/
.icon,
.icon_loading,
.icon_play-symbol,
.icon_play-symbol_small {
  line-height: 1;
  position: relative;
  vertical-align: middle;
  zoom: 1;
  /**
     * So using '.icon' on certain elements doesn't make a visual difference.
     */
  font-style: normal;
  font-weight: normal;
  /**
     * So icons added using '.icon' sit in the centre of the element.
     */
  text-align: center;
  /**
     * The typical size of most icons. Override in your theme stylesheet.
     */
  width: 16px;
  height: 16px;
  top: -1px;
  /*
     * H5BP method image replacement:
     * github.com/h5bp/html5-boilerplate/commit/adecc5da035d6d76b77e3fa95c6abde841073da2
     */
  overflow: hidden;
  *text-indent: -9999px; }
  .icon:before,
  .icon_loading:before,
  .icon_play-symbol:before,
  .icon_play-symbol_small:before {
    content: "";
    display: block;
    width: 0;
    height: 100%; }

.icon_loading {
  display: inline-block;
  margin: 0 5px;
  visibility: hidden;
  /* this is the default value for a loading icon */
  background: url("/Static/images/spinner.gif?v1651938f645") no-repeat;
  background-size: 16px 16px;
  -webkit-background-size: 16px 16px;
  height: 16px;
  width: 16px; }

.icon_load-more {
  display: none;
  margin: 0 0 5px;
  border-bottom: 1px solid #e2e2e2;
  background: url("/Static/images/spinner.gif?v1651938f645") no-repeat 50% 5px;
  background-size: 16px 16px;
  -webkit-background-size: 16px 16px;
  height: 32px; }

.icon_play-symbol, .icon_play-symbol_small {
  display: inline-block;
  background: url("/Static/images/play-symbol.png?v1651938f640") no-repeat;
  background-position: 0 0;
  width: 58px;
  height: 58px; }

.icon_play-symbol_small {
  background-position: 0 -59px;
  width: 35px;
  height: 35px; }

.icon.b-link-icon_tv-arrow {
  background: url("/Static/css/expressen-main/blocks/b-link-icon/_tv-arrow/b-link-icon_tv-arrow.png?v1651938f59a") no-repeat;
  width: 12px;
  height: 16px; }

.icon_no-icon {
  display: none; }

.icon.b-link-icon_user {
  background: url("/Static/images/play-symbol.png?v1651938f640") no-repeat; }

/*==========  b-link-icon_type sprite  ==========*/
/* ".icon"-class is only temporary, until all icons are refactored */
.icon.b-link-icon_live,
.icon.b-link-icon_slideshow,
.icon.b-link-icon_discuss,
.icon.b-link-icon_blog,
.icon.b-link-icon_pdf,
.icon.b-link-icon_chat,
.icon.b-link-icon_email,
.icon.b-link-icon_map,
.icon.b-link-icon_external-service,
.icon.b-link-icon_tv-text,
.icon.b-link-icon_quiz,
.icon.b-link-icon_games,
.icon.b-link-icon_tv4,
.icon.b-link-icon_webtv,
.icon.b-link-icon_webtv-big,
.icon.b-link-icon_webtv-bigger,
.icon.b-link-icon_arrow-right,
.icon.b-link-icon_arrow-right-black,
.icon.b-link-icon_arrow-right-white,
.icon.b-link-icon_arrow-left,
.icon.b-link-icon_arrow-left-black,
.icon.b-link-icon_arrow-up,
.icon.b-link-icon_arrow-up-black,
.icon.b-link-icon_arrow-up-white,
.icon.b-link-icon_arrow-up-blue,
.icon.b-link-icon_arrow-down,
.icon.b-link-icon_arrow-down-black,
.icon.b-link-icon_arrow-down-white,
.icon.b-link-icon_arrow-down-blue,
.icon.b-link-icon_71717,
.icon.b-link-icon_radio,
.icon.b-link-icon_radio-text,
.icon.b-link-icon_bildspecial-live,
.icon.b-link-icon_webtv-live,
.icon.b-link-icon_multianswerquiz,
.icon.b-link-icon_right-now,
.icon.b-link-icon_splus,
.icon.b-link-icon_rank-list,
.icon.b-link-icon_podcast,
.icon.b-link-icon_user {
  background: url("/Static/css/framework/blocks/b-link-icon/_type/types-new.png?v1651938f616") no-repeat;
  /* todo: use inline-block, need to set correct heights on all icons */
  float: left;
  margin-right: 3px; }

/*positions*/
/*TODO: add heights*/
.icon.b-link-icon_live {
  width: 24px;
  background-position: -4px 0; }

.icon.b-link-icon_slideshow {
  width: 64px;
  background-position: -4px -20px; }

.icon.b-link-icon_discuss {
  width: 50px;
  background-position: -4px -39px; }

.icon.b-link-icon_blog {
  width: 38px;
  background-position: -4px -57px; }

.icon.b-link-icon_pdf {
  width: 23px;
  background-position: -4px -74px; }

.icon.b-link-icon_chat {
  width: 35px;
  background-position: -4px -93px; }

.icon.b-link-icon_email {
  width: 35px;
  background-position: -4px -111px; }

.icon.b-link-icon_map {
  width: 35px;
  background-position: -4px -129px; }

.icon.b-link-icon_external-service {
  width: 78px;
  background-position: -4px -146px; }

.icon.b-link-icon_tv-text {
  width: 65px;
  background-position: -4px -161px; }

.icon.b-link-icon_quiz {
  width: 55px;
  background-position: -4px -178px; }

.icon.b-link-icon_games {
  width: 27px;
  background-position: -4px -193px; }

.icon.b-link-icon_tv4 {
  width: 21px;
  background-position: -4px -208px; }

.icon.b-link-icon_webtv {
  width: 37px;
  height: 15px;
  background-position: -4px -222px; }

.icon.b-link-icon_webtv-big {
  width: 57px;
  height: 22px;
  background-position: -4px -560px; }

.icon.b-link-icon_webtv-bigger {
  width: 72px;
  height: 28px;
  background-position: -3px -530px; }

.icon.b-link-icon_splus {
  width: 26px;
  background-position: -4px -413px; }

html.no-plus .icon.b-link-icon_splus,
.icon.b-link-icon_arrow-right {
  width: 5px;
  background-position: -4px -249px; }

.icon.b-link-icon_arrow-right-black {
  width: 5px;
  background-position: -50px -249px; }

.icon.b-link-icon_arrow-right-white {
  width: 5px;
  background-position: -19px -249px; }

.icon.b-link-icon_arrow-left {
  width: 5px;
  background-position: -4px -264px; }

.icon.b-link-icon_arrow-left-black {
  width: 5px;
  background-position: -19px -264px; }

.icon.b-link-icon_arrow-up {
  width: 8px;
  background-position: -4px -278px; }

.icon.b-link-icon_arrow-up-black {
  width: 8px;
  background-position: -19px -278px; }

.icon.b-link-icon_arrow-up-white {
  width: 8px;
  background-position: -34px -278px; }

.icon.b-link-icon_arrow-up-white {
  width: 8px;
  background-position: -49px -278px; }

.icon.b-link-icon_arrow-down {
  width: 8px;
  background-position: -4px -237px; }

.icon.b-link-icon_arrow-down-black {
  width: 8px;
  background-position: -19px -237px; }

.icon.b-link-icon_arrow-down-white {
  width: 8px;
  background-position: -34px -237px; }

.icon.b-link-icon_arrow-down-blue {
  width: 8px;
  background-position: -49px -237px; }

.icon.b-link-icon_71717 {
  width: 35px;
  background-position: -4px -291px; }

.icon.b-link-icon_radio {
  width: 33px;
  background-position: -4px -306px; }

.icon.b-link-icon_radio-text {
  width: 66px;
  background-position: -4px -324px; }

.icon.b-link-icon_bildspecial-live {
  width: 98px;
  background-position: -4px -339px; }

.icon.b-link-icon_webtv-live {
  width: 63px;
  background-position: -4px -355px; }

.icon.b-link-icon_multianswerquiz {
  width: 37px;
  background-position: -4px -374px; }

.icon.b-link-icon_right-now {
  width: 73px;
  background-position: -4px -393px; }

.icon.b-link-icon_splus.b-link-icon_big {
  width: 32px;
  height: 18px;
  background-position: -210px -413px; }

html.no-plus .icon.b-link-icon_splus.b-link-icon_big,
.icon.b-link-icon_arrow-right.b-link-icon_big {
  width: 8px;
  height: 17px;
  background-position: -210px -249px; }

.icon.b-link-icon_rank-list {
  width: 35px;
  background-position: -4px -434px; }

.icon.b-link-icon_podcast {
  width: 48px;
  background-position: -4px -454px; }

.icon.b-link-icon_user {
  width: 13px;
  background-position: -4px -477px; }

/* Special cases. */
.b-ateaser_first-column.b-ateaser_themes-darkblue .b-link-icon_arrow-right {
  width: 5px;
  background-position: -19px -249px; }

/* white icon when background is blue */
.b-coverlive-list.b-ateaser_themes-darkblue .b-link-icon_arrow-right {
  width: 5px;
  background-position: -19px -249px; }

.b-ateaser_themes-red .b-link-icon_arrow-right {
  width: 5px;
  background-position: -35px -249px; }

/*==========  b-link-icon_tool sprite  ==========*/
/* ".icon"-class is only temporary, until all icons are refactored */
.icon.b-link-icon_cross,
.icon.b-link-icon_email-sharing,
.icon.b-link-icon_gallery-abuse,
.icon.b-link-icon_report-abuse,
.icon.b-link-icon_save-bookmark {
  background: url("/Static/css/framework/blocks/b-link-icon/_tool/tools-icon-sprite.png?v1651938f615") no-repeat;
  /* display:inline-block; */
  /* todo: use inline-block, need to set correct heights on all icons */
  float: left;
  margin-right: 3px; }

/*positions*/
/*TODO: add heights*/
.icon.b-link-icon_cross {
  width: 8px;
  background-position: 0 -1px; }

.icon.b-link-icon_email-sharing {
  width: 16px;
  background-position: 0 -21px; }

.icon.b-link-icon_gallery-abuse {
  width: 13px;
  margin: 0;
  background-position: 0 -43px; }

.icon.b-link-icon_report-abuse {
  width: 16px;
  background-position: 0 -81px; }

.icon.b-link-icon_save-bookmark {
  width: 14px;
  background-position: 0 -101px; }

.bg-white {
  margin: 0;
  background: #fff; }

a, a:link,
a:visited {
  text-decoration: none;
  color: #005383; }

a:hover,
a:active {
  text-decoration: underline; }

/* TODO Refactor this */
.tblStyle {
  display: table;
  vertical-align: bottom;
  position: relative; }

.tblTdStyle {
  display: table-cell;
  vertical-align: top;
  height: 100%;
  position: relative; }

.tblTdStyleDown {
  display: table-cell;
  vertical-align: bottom;
  height: 100%;
  position: relative;
  bottom: 0; }

.godown {
  position: relative;
  bottom: 0;
  left: 5px; }

.tableAuth {
  display: table;
  width: 100%; }

.tableAuth .tdImg {
  width: 65px;
  height: 60px;
  vertical-align: top; }

.tableAuth .tdImg img {
  border: 1px solid #cecece;
  margin-right: 5px; }

.tableAuth .tdName {
  min-height: 60px;
  vertical-align: bottom; }

/**
 * CSS Objects
 * -------------------------------------------------------------------------------------------
 */
/*------------------------------------*    $BLOCK-LIST
\*------------------------------------*/
/**
 * Create big blocky lists of content, e.g.:
 *
   <ul class=block-list>
      <li>Foo</li>
      <li>Bar</li>
      <li>Baz</li>
      <li><a href=# class=block-list__link>Foo Bar Baz</a></li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 *
 */
.block-list, .matrix {
  list-style: none;
  margin-left: 0;
  padding-left: 0; }

.block-list > li, .matrix > li {
  padding: 5px 6px; }

/* this can be removed when all floats are removed from listitems. */
.block-list > li:after, .matrix > li:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0; }

.block-list__link, .matrix__link {
  display: block;
  padding: 6px;
  margin: -6px;
  /* TODO: Incorporate to base.scss */
  color: #222222; }

.block-list--zebra > li:nth-child(2n+1) {
  background: #f8f7f3; }

.block-list--zebra > li:nth-child(2n) {
  background: #ecebe7; }

/*------------------------------------*    $BLOCK-LIST
\*------------------------------------*/
/**
 * Create big blocky lists of content, e.g.:
 *
   <ul class=block-list>
      <li>Foo</li>
      <li>Bar</li>
      <li>Baz</li>
      <li><a href=# class=block-list__link>Foo Bar Baz</a></li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 *
 */
.block-list, .matrix {
  list-style: none;
  margin-left: 0;
  padding-left: 0; }

.block-list > li, .matrix > li {
  padding: 5px 6px; }

/* this can be removed when all floats are removed from listitems. */
.block-list > li:after, .matrix > li:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0; }

.block-list__link, .matrix__link {
  display: block;
  padding: 6px;
  margin: -6px;
  /* TODO: Incorporate to base.scss */
  color: #222222; }

.block-list--zebra > li:nth-child(2n+1) {
  background: #f8f7f3; }

.block-list--zebra > li:nth-child(2n) {
  background: #ecebe7; }

/*------------------------------------*    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn't already have a class to which you could apply this
 * styling, e.g. if you need to float '.main-nav' left then add 'float:left;' to
 * that ruleset as opposed to adding the '.float--left' class to the markup.
 *
 * A lot of these classes carry '!important' as you will always want them to win
 * out over other selectors.
 */
/*
 * Add/remove floats
 */
.float_right {
  float: right !important; }

.float_left {
  float: left  !important; }

.float_none {
  float: none  !important; }

/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clear left/right float
 */
.clear {
  clear: both; }

/*
 * Self-clear children (clearfix-hack)
 */
/* IE6 */
* html .cf, * html .matrix, * html .multi-list, * html .b-bullet-list {
  height: 1%;
  overflow: visible; }

/* IE7 */
* + html .cf, * + html .matrix, * + html .multi-list, * + html .b-bullet-list {
  min-height: 1%; }

/* Others */
.cf:after, .matrix:after, .multi-list:after, .b-bullet-list:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0; }

/*------------------------------------*    $MATRIX
\*------------------------------------*/
/**
 * Create a grid of items out of a single list, e.g.:
 *
   <ul class="matrix  three-cols">
       <li class=all-cols>Lorem</li>
       <li>Ipsum <a href=#>dolor</a></li>
       <li><a href=# class=matrix__link>Sit</a></li>
       <li>Amet</li>
       <li class=all-cols>Consectetuer</li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 *
 */
.matrix {
  border-left-width: 1px; }
  .matrix > li {
    float: left;
    border-right-width: 1px; }

/**
 * The '.multi-list' object is a lot like the '.matrix' object only without the
 * blocky borders and padding.
 *
   <ul class="multi-list  four-cols">
       <li>Lorem</li>
       <li>Ipsum</li>
       <li>Dolor</li>
       <li>Sit</li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 *
 */
.multi-list, .b-bullet-list {
  list-style: none;
  margin-left: 0; }

.multi-list > li, .b-bullet-list > li {
  float: left; }

/**
     * Apply these classes alongside the '.matrix' or '.multi-list' classes on
     * lists to determine how wide their columns are.
     */
.two-cols > li {
  width: 50%; }

.three-cols > li {
  width: 33.333%; }

.four-cols > li {
  width: 25%; }

.five-cols > li {
  width: 20%; }

/**
     * Unfortunately we have to qualify this selector in order to bring its
     * specificity above the '.[number]-cols > li' selectors above.
     */
.matrix > .all-cols,
.multi-list > .all-cols, .b-bullet-list > .all-cols {
  width: 100%; }

/*------------------------------------*    $BEAUTONS.CSS
\*------------------------------------*/
/**
 * beautons is a beautifully simple button toolkit.
 *
 * LICENSE
 *
 * Copyright 2013 Harry Roberts
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
/*!*
 *
 * @csswizardry -- csswizardry.com/beautons
 *
 */
/*------------------------------------*    $BASE
\*------------------------------------*/
/**
 * Base button styles.
 *
 * 1. Allow us to better style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Stop buttons wrapping and looking broken.
 * 4. Make buttons inherit font styles.
 * 5. Force all elements using beautons to appear clickable.
 * 6. Normalise box model styles.
 * 7. If the buttons text is 1em, and the button is (3 * font-size) tall, then
 *    there is 1em of space above and below that text. We therefore apply 1em
 *    of space to the left and right, as padding, to keep consistent spacing.
 * 8. Basic cosmetics for default buttons. Change or override at will.
 * 9. Dont allow buttons to have underlines; it kinda ruins the illusion.
 */
.btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  font-family: inherit;
  /* [4] */
  font-size: 100%;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: none;
  /* [6] */
  margin: 0;
  /* [6] */
  padding-top: 0;
  /* [6] */
  padding-bottom: 0;
  /* [6] */
  line-height: 3;
  /* [7] */
  padding-right: 1em;
  /* [7] */
  padding-left: 1em;
  /* [7] */
  border: #d3d3d3 1px solid;
  /* [8] */
  border-radius: 5px;
  background: #f2f2f2;
  font-weight: bold;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease; }

a.btn {
  color: #333; }

.btn, .btn:hover {
  text-decoration: none;
  /* [9] */ }

.btn:hover {
  background: white; }

.btn:active, .btn:focus {
  outline: none; }

/*------------------------------------*    $SIZES
\*------------------------------------*/
/**
 * Button size modifiers.
 *
 * These all follow the same sizing rules as above; text is 1em, space around it
 * remains uniform.
 */
.btn--small {
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 2; }

.btn--large {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 4; }

.btn--huge {
  padding-right: 2em;
  padding-left: 2em;
  line-height: 5; }

/**
 * These buttons will fill the entirety of their container.
 *
 * 1. Remove padding so that widths and paddings dont conflict.
 */
.btn--full {
  width: 100%;
  padding-right: 0;
  /* [1] */
  padding-left: 0;
  /* [1] */
  text-align: center; }

/*------------------------------------*    $FONT-SIZES
\*------------------------------------*/
/**
 * Button font-size modifiers.
 */
.btn--alpha {
  font-size: 3rem; }

.btn--beta {
  font-size: 2rem; }

.btn--gamma {
  font-size: 1rem; }

/**
 * Make the button inherit sizing from its parent.
 */
.btn--natural {
  vertical-align: baseline;
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.5em;
  padding-left: 0.5em; }

/*------------------------------------*    $FUNCTIONS
\*------------------------------------*/
/**
 * Button function modifiers.
 */
/**
 * Positive actions; e.g. sign in, purchase, submit, etc.
 */
.btn--positive {
  background-color: #4A993E;
  color: #fff; }

/**
 * Negative actions; e.g. close account, delete photo, remove friend, etc.
 */
.btn--negative {
  background-color: #b33630;
  color: #fff; }

/**
 * Inactive, disabled buttons.
 *
 * 1. Make the button look like normal text when hovered.
 */
.btn--inactive,
.btn--inactive:hover,
.btn--inactive:active,
.btn--inactive:focus {
  background-color: #ddd;
  color: #777;
  cursor: text;
  /* [1] */ }

.btn--facebook {
  border: 1px #37559c solid;
  background-color: #37559c;
  color: #fff; }
  .btn--facebook span {
    background: url("/Static/images/icons.png?v1651938f640") 0 -810px no-repeat;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px; }
  .btn--facebook:hover {
    background: #486bbe; }

a.btn--facebook {
  color: #fff; }

/* NOTE: This may be the deault setting one day */
.btn--follow,
.btn--show-more {
  height: 30px;
  line-height: 30px;
  font-weight: normal; }

.btn--show-more {
  display: block;
  margin: 10px 20px 0;
  text-align: center;
  color: #666; }

/*------------------------------------*    $STYLES
\*------------------------------------*/
/**
 * Button style modifiers.
 *
 * 1. Use an overly-large number to ensure completely rounded, pill-like ends.
 */
.btn--soft {
  border-radius: 200px;
  /* [1] */ }

.btn--hard {
  border-radius: 0; }

/**
  * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
  */
/*------------------------------------*    $MEDIA
\*------------------------------------*/
/**
 * Place any image- and text-like content side-by-side, as per:
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 * E.g.:
 *
   <div class=media>
       <img src=http://placekitten.com/200/300 alt="" class=media__img>
       <p class=media__body>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
       sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
   </div>
 *
 * Demo: jsfiddle.net/inuitcss/cf4Qs
 *
 */
.media {
  overflow: hidden;
  _overflow: visible;
  zoom: 1;
  /*until we can extend .cf*/
  display: block; }

.media__img {
  float: left;
  margin-right: 4px; }

.media__img a {
  text-decoration: none; }

.media__body {
  overflow: hidden;
  _overflow: visible;
  zoom: 1;
  /*until we can extend .cf*/ }

.media__body,
.media__body > :last-child {
  margin-bottom: 0; }

/**
 * Layout blocks
 * -------------------------------------------------------------------------------------------
 */
html {
  overflow-y: scroll; }

body {
  text-align: center;
  background: #e2e2e2; }

.l-page {
  position: relative;
  width: 1250px;
  margin: auto;
  text-align: left; }

.l-page.no-left-column {
  width: 1290px;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); }

.l-page.is-long-read {
  width: 1550px; }

.l-page_preview {
  width: 1110px;
  margin: 10px; }

.l-two-column {
  margin: 0 0 5px; }

.no-left-column .l-two-column {
  border-left: 20px #0366A0 solid;
  background: #ffffff; }

.l-two-column__l-column {
  float: left;
  min-height: 5px; }

.l-two-column__r-column {
  float: right;
  min-height: 5px; }

.l-two-column__l-column {
  width: 980px; }

.no-left-column .l-two-column__l-column {
  width: 950px;
  margin-left: 10px; }

.l-two-column__r-column {
  width: 265px; }

.no-left-column .l-two-column__r-column {
  margin-right: 10px;
  margin-top: 10px; }

.l-three-column {
  text-align: left;
  background: url("/static/css/expressen-main/blocks/l-three-column/l-three-column.png?v1651938f5db") repeat-y;
  width: 980px; }

.no-left-column .l-three-column {
  background: none; }

.no-left-column.l-page_preview .l-three-column {
  width: 1220px; }

.is-long-read.l-page_preview .l-three-column {
  width: 1560px; }

.l-three-column__l-column {
  float: left;
  overflow: hidden;
  width: 110px;
  min-height: 1px;
  /*
     * 30px bottom margin needed for extra
     * links not to be hided by column content */
  margin: 0 5px 30px 0; }

.no-left-column .b-col2-under-article {
  width: 550px;
  margin-left: 50px; }

.l-three-column__c-column {
  float: left;
  overflow: hidden;
  width: 550px;
  min-height: 1px;
  margin: 0 5px 0 0; }

.l-three-column__c-column_r {
  float: left;
  overflow: hidden;
  width: 550px;
  min-height: 1px;
  margin: 0 5px 0 0; }

.no-left-column .l-three-column__c-column {
  width: 645px;
  padding-right: 10px;
  margin-top: 10px;
  margin-right: 0;
  border-right: 1px #e4e4e4 solid; }

.l-page_preview.no-left-column .l-three-column__c-column {
  margin: 0 0 0 0;
  background: white;
  padding-right: 5px;
  width: 655px;
  border-right: 0; }

.l-page_preview.no-left-column .l-three-column__c-column_r {
  margin-left: 5px; }

.l-three-column__r-column {
  float: left;
  width: 310px;
  min-height: 1px; }

.no-left-column .l-three-column__r-column {
  padding-left: 9px;
  margin-top: 10px; }

.l-three-column__group {
  float: left;
  width: 865px; }

.no-left-column .l-three-column__group {
  width: 980px; }

.l-page_preview.no-left-column .l-three-column__group {
  width: 660px; }

.is-long-read.no-left-column .l-three-column__group {
  width: 980px;
  background: #fff; }

.l-footer-table {
  position: relative;
  width: 100%;
  margin: 0 0 5px;
  table-layout: fixed;
  border-collapse: separate; }

.l-footer-table__cell {
  position: relative;
  overflow: hidden;
  width: 192px;
  vertical-align: top;
  padding-right: 5px; }

.no-left-column .l-footer-table__cell {
  border-right: 0; }

.l-footer-table__cell_last {
  border: 0 none; }

.l-footer-table__cell_info {
  width: 389px; }

.l-footer-table__cell {
  background: #fff; }

.l-columns {
  position: relative;
  margin: 0 0 5px;
  background: #ffffff; }

.l-columns__column {
  display: inline-block;
  vertical-align: top;
  float: none; }

.l-columns__column_first {
  overflow: hidden;
  margin-left: 0 !important; }

.l-columns__column_last {
  overflow: hidden;
  margin-right: 0 !important; }

.l-columns_ateaser {
  margin-bottom: 0;
  background: transparent; }

.l-columns_ateaser .l-columns__column__inner {
  margin: 0 5px; }

.l-columns_title {
  margin: 0;
  background: #fff; }

.l-columns_footer .l-columns__column {
  margin: 0 1px 0 2px; }

.l-columns_footer .l-columns__column_width-25 {
  width: 46px; }

.l-columns_footer .l-columns__column_last.l-columns__column_width-25 {
  width: 45px; }

.l-columns_footer .l-columns__column_width-33 {
  width: 62px; }

.l-columns_footer .l-columns__column_width-50 {
  width: 94px; }

.l-columns_footer .l-columns__column_last.l-columns__column_width-50 {
  width: 95px; }

.l-columns_footer .l-columns__column_width-66 {
  width: 127px; }

.l-columns_footer .l-columns__column_width-75 {
  width: 144px; }

.l-columns_footer .l-columns__column_last.l-columns__column_width-75 {
  width: 143px; }

.l-columns_second-column .l-columns__column {
  margin: 0 5px; }

.l-columns_second-column .l-columns__column_width-25 {
  width: 128px; }

.l-columns_second-column .l-columns__column_first.l-columns__column_width-25,
.l-columns_second-column .l-columns__column_last.l-columns__column_width-25 {
  width: 127px; }

.l-columns_second-column .l-columns__column_width-33 {
  width: 174px; }

.l-columns_second-column .l-columns__column_first.l-columns__column_width-33,
.l-columns_second-column .l-columns__column_last.l-columns__column_width-33 {
  width: 173px; }

.l-columns_second-column .l-columns__column_width-50 {
  width: 265px; }

.l-columns_second-column .l-columns__column_width-66 {
  width: 357px; }

.l-columns_second-column .l-columns__column_width-75 {
  width: 403px; }

.l-columns_third-column .l-columns__column {
  margin: 2px 0; }

.l-columns_third-column .l-columns__column_width-25 {
  width: 74px; }

.l-columns_third-column .l-columns__column_last.l-columns__column_width-25 {
  width: 76px; }

.l-columns_third-column .l-columns__column_width-33 {
  width: 102px; }

.l-columns_third-column .l-columns__column_first.l-columns__column_width-33,
.l-columns_third-column .l-columns__column_last.l-columns__column_width-33 {
  width: 100px; }

.l-columns_third-column .l-columns__column_width-50 {
  width: 153px; }

.l-columns_third-column .l-columns__column_width-66 {
  width: 204px; }

.l-columns_third-column .l-columns__column_width-75 {
  width: 230px; }

.l-columns_third-column .l-columns__column_last.l-columns__column_width-75 {
  width: 232px; }

.l-columns_bauta-large .l-columns__column {
  margin: 0 5px; }

.l-columns_bauta-large .l-columns__column_width-25 {
  width: 235px; }

.l-columns_bauta-large .l-columns__column_width-33 {
  width: 316px; }

.l-columns_bauta-large .l-columns__column_first.l-columns__column_width-33,
.l-columns_bauta-large .l-columns__column_last.l-columns__column_width-33 {
  width: 317px; }

.l-columns_bauta-large .l-columns__column_width-50 {
  width: 480px; }

.l-columns_bauta-large .l-columns__column_width-66 {
  width: 643px; }

.l-columns_bauta-large .l-columns__column_width-75 {
  width: 725px; }

.l-columns_bauta-narrow .l-columns__column {
  margin: 0 5px; }

.l-columns_bauta-narrow .l-columns__column_width-25 {
  width: 206px; }

.l-columns_bauta-narrow .l-columns__column_last.l-columns__column_width-25 {
  width: 207px; }

.l-columns_bauta-narrow .l-columns__column_width-33 {
  width: 279px; }

.l-columns_bauta-narrow .l-columns__column_first.l-columns__column_width-33,
.l-columns_bauta-narrow .l-columns__column_last.l-columns__column_width-33 {
  width: 278px; }

.l-columns_bauta-narrow .l-columns__column_width-50 {
  width: 422px; }

.l-columns_bauta-narrow .l-columns__column_last.l-columns__column_width-50 {
  width: 423px; }

.l-columns_bauta-narrow .l-columns__column_width-66 {
  width: 567px; }

.l-columns_bauta-narrow .l-columns__column_width-75 {
  width: 638px; }

.l-columns_bauta-narrow .l-columns__column_last.l-columns__column_width-75 {
  width: 639px; }

.l-columns_random-container {
  margin-bottom: 1px; }

.l-columns_random-container .b-ateaser {
  margin-bottom: 0; }

/**
 * Template general part e.g. header, footer, sidebar...
 * -------------------------------------------------------------------------------------------
 */
.b-header {
  z-index: 1;
  height: 113px; }

.b-header {
  text-align: left;
  background: #ffffff; }

.b-header__inner-wrap {
  float: left;
  width: 980px;
  padding-top: 26px; }

.b-header__quote {
  float: left;
  width: 342px;
  height: 87px;
  margin: 0 5px 0 41px;
  background: none; }

.b-header__quote p,
.b-header__quote span {
  font-size: 13px;
  font-weight: bold;
  line-height: 16px; }

.b-header__quote p {
  margin: 0 0 9px;
  padding-top: 7px; }

.b-header__user-info {
  padding: 3px 5px 0 0;
  height: 23px;
  font-size: 12px; }

.b-header__user-info-inner {
  position: relative; }

.b-logo {
  position: relative;
  float: left; }

.b-logo__inner {
  float: left; }

.b-logo__logo-link {
  position: absolute;
  display: block;
  z-index: 9999;
  outline: none; }

.b-logo__logo-link:focus {
  outline: none; }

.b-logo__logo-link img {
  display: block; }

.b-logo__section-link {
  display: block;
  text-decoration: none; }

.b-logo__section-link img {
  display: block; }

.b-logo {
  width: 550px; }

.b-logo__logo-link {
  top: -19px;
  left: 6px; }

.b-logo__section-link {
  margin: 2px 0 0 154px; }

.b-logo__date {
  font-size: 12px;
  line-height: 16px;
  display: block;
  float: left;
  width: 170px;
  margin: 4px 5px 0 154px; }

.b-logo__tag-line {
  font-size: 13px;
  font-weight: bold;
  font-style: italic;
  line-height: 16px;
  display: block;
  float: right;
  margin: 3px 0 0;
  text-align: right;
  text-transform: uppercase; }

.b-nav {
  position: relative;
  z-index: 999;
  margin: 0 0 5px;
  background: #0366a0;
  -webkit-box-shadow: 0 4px 2px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 2px -1px rgba(0, 0, 0, 0.2); }

.b-nav__group_left {
  float: left;
  width: 855px;
  height: 36px; }

.b-nav__group_right {
  float: left;
  width: 395px; }

a.b-nav__mail-link {
  font: 12px/26px "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  font-weight: 900;
  display: block;
  float: right;
  padding: 0 10px 0 0;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff; }

a.b-nav__mail-link:hover {
  color: #ffffff; }

.b-nav__mail-link span {
  color: #f7f431; }

.b-primary-menu {
  float: left;
  width: 660px;
  margin: 0;
  padding: 0;
  list-style: none; }

.no-left-column .is-sticky .b-primary-menu {
  position: relative;
  left: -20px; }

.no-left-column .is-sticky .sticked-left .b-primary-menu {
  left: 0; }

.is-sticky .b-nav__group_left .b-primary-menu {
  width: 920px; }

.b-primary-menu__item {
  position: relative;
  float: left;
  height: 36px; }

.b-primary-menu__item a {
  font: 12px/25px "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  font-weight: 900;
  position: relative;
  display: block;
  z-index: 20;
  height: 35px;
  line-height: 35px;
  padding: 0 12px 0 12px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff; }

.b-primary-menu__item a:hover {
  color: #ffffff; }

.b-primary-menu__logo-item {
  -webkit-transition: width 100ms ease-in-out;
  transition: width 100ms ease-in-out;
  width: 0; }
  .b-primary-menu__logo-item a {
    display: block;
    background: url("/Static/images/sticky-logo.png?v1651938f646") no-repeat;
    opacity: 0;
    -webkit-transition: opacity 100ms ease-in-out;
    transition: opacity 100ms ease-in-out;
    height: 100%;
    margin: 3px;
    padding: 0; }

.is-sticky .b-primary-menu__logo-item {
  width: 170px; }
  .is-sticky .b-primary-menu__logo-item a {
    opacity: 1; }

.b-primary-menu__item_active {
  background: #244c7b; }

.b-primary-menu__item_active a {
  height: 36px;
  line-height: 36px;
  padding: 0 12px; }

.b-primary-menu__item_first {
  margin-left: 0; }

.b-primary-menu__item_first a {
  border-left: none; }

.b-primary-menu__item_last a {
  border-right: none; }

.b-primary-menu__item_no-submenu {
  height: 36px; }

.b-primary-menu_mail {
  float: right;
  width: auto; }

.b-primary-menu_mail a {
  padding-right: 13px; }

.b-primary-menu_mail .b-primary-menu__item_last a {
  padding-right: 13px;
  padding-left: 15px; }

.b-secondary-menu {
  background: #244c7b;
  margin: 0;
  padding: 0;
  height: 33px;
  list-style: none; }

.b-secondary-menu__item {
  float: left;
  height: 33px;
  margin-right: 30px; }

.b-secondary-menu__item a {
  font: 13px/25px Arial, Helvetica, sans-serif;
  display: block;
  height: 33px;
  line-height: 33px;
  text-decoration: none;
  color: #ffffff; }

.b-secondary-menu__item a:hover,
.b-secondary-menu__item a:active {
  text-decoration: none; }

.b-secondary-menu__item_first a {
  margin: 0 0 0 11px; }

.b-secondary-menu__item_active a {
  text-decoration: none; }

.b-secondary-menu__main-item {
  margin-right: 15px; }

.b-secondary-menu__main-item a {
  height: 33px;
  padding: 0 14px 0 15px;
  text-transform: uppercase;
  background-color: #0366a0; }

.b-secondary-menu__main-item a:hover {
  text-decoration: none; }

.b-secondary-menu__separator {
  font: 12px/25px "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  float: left;
  height: 25px;
  margin: 0 12px 0;
  color: #ffffff; }

.no-left-column .b-export__footer {
  clear: both;
  margin-left: 10px; }

.b-footer {
  position: relative;
  width: 980px; }

.no-left-column .b-footer {
  width: 970px; }

.b-footer__extra-links {
  font-weight: bold;
  position: absolute;
  top: -28px;
  left: 5px;
  width: 110px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ffffff; }

.b-footer__extra-links a,
.b-footer__extra-links a:visited {
  color: #ffffff;
  text-decoration: none; }

.b-footer__extra-links a:hover {
  text-decoration: underline; }

.b-footer__extra-links__upp a {
  padding: 0 0 0 8px;
  background: url("/Static/images/common-sprite.png?v1651938f63f") 0 -158px no-repeat; }

.b-footer-nav {
  font-size: 12px;
  line-height: 17px;
  margin: 10px 0;
  color: #000; }

.b-footer-nav__item {
  display: inline;
  margin: 0 4px; }

.b-footer-nav__item a,
.b-footer-nav__item a:link,
.b-footer-nav__item a:visited {
  text-decoration: none;
  color: #2e2e2e; }

.b-footer-nav__item a:hover,
.b-footer-nav__item a:active {
  text-decoration: underline; }

.b-footer-nav__separator {
  display: inline;
  /*cursor: pointer;*/
  color: #2e2e2e; }

.b-tv-grid {
  margin: 0 0 5px;
  background: #ffffff; }

.b-tv-grid__row {
  margin: 0 5px;
  padding: 8px 0 5px; }

.b-tv-grid__row_separator {
  border-bottom: 1px solid #e2e2e2; }

.b-standard-vignette {
  -webkit-background-size: 100% 1300%;
          background-size: 100% 1300%;
  background-image: url("/static/images/vignettes856.svg?v1651938f647");
  height: 25px;
  width: 100%;
  display: block;
  background-color: #000; }
  .b-standard-vignette.b-standard-vignette_bauta-large {
    height: 40px; }
  .b-standard-vignette.b-standard-vignette_bauta-narrow {
    height: 35px; }
  .b-standard-vignette.shl-extra {
    background-position: 0 99%; }
  .b-standard-vignette.extra {
    background-position: 0 200%; }
  .b-standard-vignette.extra-picture {
    background-position: 0 300%; }
  .b-standard-vignette.exclusive {
    background-position: 0 400%; }
  .b-standard-vignette.expressen-reveals {
    background-position: 0 500%; }
  .b-standard-vignette.kvallsposten-reveals {
    background-position: 0 600%; }
  .b-standard-vignette.gt-reveals {
    background-position: 0 700%; }
  .b-standard-vignette.sportexpressen-reveals {
    background-position: 0 800%; }
  .b-standard-vignette.expressen-review {
    background-position: 0 900%; }
  .b-standard-vignette.kvallsposten-review {
    background-position: 0 1000%; }
  .b-standard-vignette.gt-review {
    background-position: 0 1100%; }
  .b-standard-vignette.sportexpressen-review {
    background-position: 0 1200%; }

.b-tv-channel {
  float: left;
  width: 192px;
  margin: 0 5px 0 0; }

.b-tv-channel_last {
  width: 182px;
  margin-right: 0; }

.b-tv-channel__list {
  margin: 0 0 0 42px;
  padding: 0;
  list-style: none; }

.b-tv-channel__list li {
  font-size: 10px;
  line-height: 15px; }

.b-tv-channel__list li.now {
  font-size: 12px;
  font-weight: bold;
  line-height: 15px; }

.b-copyright {
  position: relative; }

.b-copyright .b-text {
  position: relative;
  z-index: 4; }

.b-copyright a {
  font-weight: bold; }

.b-copyright__editors {
  padding: 68px 0 0;
  vertical-align: top; }

.b-copyright__responsible-editor,
.b-copyright__news-editor {
  display: block;
  margin: 0 0 1px; }

.b-copyright__contacts {
  vertical-align: bottom; }

.b-copyright__logo {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 0; }

.b-copyright__logo img {
  width: 146px;
  height: 117px; }

.b-copyright__copy {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px; }

.b-adblock-main {
  padding: 25px 0 0 225px;
  height: 225px;
  width: 1025px;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  font-family: Arial;
  background: url("/static/images/adblock-grumpy.png?v1651938f63b") no-repeat left bottom;
  color: #212121; }
  .b-adblock-main__lead {
    font-size: 28px;
    line-height: 2.3; }
  .b-adblock-main__cloud {
    background: #ffffff;
    height: 120px;
    position: relative;
    width: 755px;
    z-index: 1;
    border-radius: 10px; }
    .b-adblock-main__cloud::after {
      content: '';
      position: absolute;
      top: 50%;
      margin-top: -13px;
      left: -20px;
      border-right: 20px solid #ffffff;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent; }
  .b-adblock-main__button, .b-adblock-sidebar__button {
    width: 620px;
    height: 44px;
    line-height: 44px;
    margin: 20px 0 0 65px;
    background: #da2300;
    border-radius: 4px;
    border-bottom: 2px solid #ae1C00;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out; }
    .b-adblock-main__button:hover, .b-adblock-sidebar__button:hover {
      background: #e42500; }
    .b-adblock-main__button:active, .b-adblock-sidebar__button:active {
      margin-top: 22px;
      border-bottom-width: 0; }

.b-adblock-sidebar-container {
  position: relative; }

.b-adblock-sidebar {
  top: 150px;
  position: relative;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  font-family: Arial;
  color: #212121;
  width: 265px;
  height: 175px;
  overflow: hidden; }
  .b-adblock-sidebar__message {
    border-radius: 10px;
    background: #ffffff;
    padding: 25px 10px; }
  .b-adblock-sidebar__button {
    width: 100%;
    font-size: 14px;
    margin: 20px 0 0; }

.b-adblock-popup {
  background: #9d9b99;
  /* Fallback for IE */
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 10000;
  top: -5px;
  left: -5px;
  height: 100%;
  width: 100%;
  display: none;
  padding: 0 5px 5px 0;
  font-family: Arial;
  color: #212121; }
  .b-adblock-popup__window {
    height: 565px;
    width: 720px;
    background: #ffffff;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    border-radius: 5px;
    text-align: center; }
  .b-adblock-popup__title {
    margin: 35px 0 40px;
    font-size: 28px;
    font-weight: bold; }
  .b-adblock-popup__steps {
    padding: 0;
    margin: 0 0 0 30px;
    display: inline-block;
    vertical-align: top;
    width: 225px; }
  .b-adblock-popup__step {
    font-size: 16px;
    text-align: left;
    line-height: 1.2; }
    .b-adblock-popup__step:first-child {
      margin: 0 0 180px; }
  .b-adblock-popup__step-number {
    font-weight: bold;
    margin: 0 5px 0 0; }
  .b-adblock-popup__hide {
    color: #0976b5;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color 0.15s ease-out;
    transition: border-color 0.15s ease-out;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 0 2px; }
    .b-adblock-popup__hide:hover {
      border-color: #0976b5; }

/**
 * General page blocks e.g. article, story blocks, etc.
 * -------------------------------------------------------------------------------------------
 */
.b-page {
  margin: 0 0 5px;
  padding: 5px 5px 0;
  background: #ffffff; }

.no-left-column .b-page {
  padding: 0; }

.l-page_preview.no-left-column .b-page_article, .l-page_preview.no-left-column .b-page_quiz {
  padding-left: 10px; }

* + html .b-page {
  zoom: 1; }

.b-page__bauta {
  margin: 5px 0 0; }

.b-page__text-settings {
  font-size: 13px;
  overflow: hidden;
  width: 100%;
  height: 19px;
  border-bottom: 1px solid #d5d5d5; }

.b-page__text-settings a {
  color: #757575; }

.b-page__text-settings__size {
  float: right; }

.b-page__text-settings__size span {
  display: block;
  float: left;
  margin: 0;
  color: #757575; }

.b-page__text-settings__size ul {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none; }

.b-page__text-settings__size li {
  display: inline; }

.b-page__text-settings__size a {
  display: block;
  float: left;
  overflow: hidden;
  width: 12px;
  height: 16px;
  margin: 0 0 0 3px;
  text-indent: -999em; }

/*
 * TODO Build an icon sprite
 * Still actual :(
 */
.b-page__text-settings__size .t-small a, .b-page__text-settings__size .t-medium a, .b-page__text-settings__size .t-big a, .b-page__text-settings__size .t-small {
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat; }

.b-page__text-settings__size .t-small a {
  background-position: 0 -109px; }

.b-page__text-settings__size .t-medium a {
  background-position: -12px -109px; }

.b-page__text-settings__size .t-big a {
  background-position: -24px -109px; }

.b-page__footer {
  font-size: 12px;
  padding: 4px 0 8px;
  color: #6f7072;
  border-top: 1px solid #e2e2e2; }

.b-page__footer a {
  font-weight: normal;
  color: #6f7072; }

.b-page__footer__social {
  float: left;
  width: 259px;
  margin: 0 5px 0 0;
  padding: 0 5px 0 0; }

.b-page__footer__social .b-link-icon {
  margin-right: 10px; }

.b-page__footer__social .b-link-icon_save-bookmark {
  margin-right: 0; }

.b-page__footer__actions {
  float: left;
  width: 89px;
  min-height: 1px;
  margin: 0 6px 0 0;
  padding: 0 5px 0 0; }

.b-page__footer__publish-date {
  float: right;
  width: 171px;
  margin-left: 8px;
  padding: 1px 0 0; }

.b-page__footer__update-date {
  float: left;
  width: 171px;
  padding: 1px 4px 0 0;
  border-right: 1px solid #E2E2E2; }

.b-page__footer__publish-date .published-date {
  display: block;
  margin: 0 0 7px; }

.b-page__footer__publish-date .update-date {
  display: block; }

.b-page_slideshow {
  position: relative; }

.l-page_preview.no-left-column .b-page_slideshow {
  padding-left: 5px; }

.b-page_story {
  padding-bottom: 5px; }

.b-page_story-preamble {
  padding-top: 0; }

.b-page_gallery {
  padding-bottom: 5px; }

.b-page_print-gallery {
  margin: 0 0 2px;
  padding: 0; }

.b-page_columnist-landing {
  overflow: hidden;
  padding: 0 0 5px 15px; }

.b-page_wide {
  margin-bottom: 0; }

.no-left-column .b-page_wide {
  width: 965px; }

.b-article {
  margin: 0 0 3px;
  background: #ffffff; }

.b-article > .b-title_premium:first-child {
  margin: 10px 0 0; }

.b-article_slideshow > .b-title_premium:first-child {
  margin: 0; }

.b-article_podcast {
  padding: 0 0 10px; }

.b-article__podcast-section {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 21px;
  font-weight: bold;
  margin: 7px 0 -3px;
  text-transform: uppercase;
  color: #1d73a6; }

.b-page_article .b-photo__description__wrapper {
  margin-top: 4px; }

.b-article__media {
  margin: 5px 0; }

.b-article__media__youtube-widget {
  position: relative;
  padding-bottom: 56.25%;
  /* Aspect ratio 16:9 */
  height: 0;
  overflow: hidden; }

.b-article__media__youtube-widget iframe,
.b-article__media__youtube-widget object,
.b-article__media__youtube-widget embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.b-article__preamble {
  font-size: 15px;
  font-weight: bold;
  line-height: 18px;
  margin: 0 0 12px; }

.no-left-column .b-article__preamble {
  font-size: 16px;
  line-height: 22px; }

.b-article-preamble__rank {
  height: 38px;
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat 0 -181px;
  display: block; }

.b-article-preamble__rank_id-5 {
  width: 196px; }

.b-article-preamble__rank_id-4 {
  width: 158px; }

.b-article-preamble__rank_id-3 {
  width: 118px; }

.b-article-preamble__rank_id-2 {
  width: 79px; }

.b-article-preamble__rank_id-1, .b-article-preamble__rank_id-0 {
  width: 38px; }

.b-article-preamble__rank_id-0 {
  background-position: 100% -251px;
  width: 45px; }

.b-article__preamble_master {
  margin-top: 10px;
  margin-bottom: 15px; }

.b-article__r-column {
  float: right;
  overflow: hidden;
  width: 310px;
  margin: 0 0 0 8px; }
  .b-article__r-column .b-ad2 {
    margin-top: 0; }
  .b-article__r-column .b-photo_small {
    width: 140px; }

.b-article__r-column .b-ad,
.b-article__r-column .b-factbox {
  margin-bottom: 8px; }

.b-article__attach-link {
  margin: 2em 0; }

.b-article__attach-link a {
  font: italic 13px/15px Verdana, Tahoma, sans-serif;
  color: #000; }

.b-article__author {
  margin: 15px 0 6px;
  padding: 0;
  list-style: none; }

a.b-article__author__item__twitter-follow-button {
  position: relative;
  display: inline-block;
  padding: 0 3px 0 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: #333;
  background-color: #eee;
  background-image: -webkit-linear-gradient(#fff, #dedede);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dedede));
  background-image: linear-gradient(#fff, #dedede);
  border: #ccc solid 1px;
  border-radius: 3px; }
  a.b-article__author__item__twitter-follow-button i {
    position: absolute;
    top: 50%;
    left: 3px;
    margin-top: -6px;
    width: 16px;
    height: 13px;
    background: url("/Static/images/common-sprite.png?v1651938f63f") -21px -317px no-repeat; }
  a.b-article__author__item__twitter-follow-button:hover {
    text-decoration: none;
    border-color: #bbb;
    background-color: #d9d9d9;
    background-image: -webkit-linear-gradient(#f8f8f8, #d9d9d9);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#d9d9d9));
    background-image: linear-gradient(#f8f8f8, #d9d9d9);
    -webkit-box-shadow: none;
            box-shadow: none; }

.b-article__author__item {
  position: relative;
  display: inline-block;
  width: 267px;
  min-height: 60px;
  margin: 0 0 10px;
  vertical-align: top; }
  .b-article__author__item img {
    display: block;
    border: 1px solid #cecece; }
  .b-article__author__item span {
    font-weight: bold;
    line-height: 17px;
    position: absolute;
    bottom: -2px;
    left: 65px;
    display: block;
    width: 205px;
    word-wrap: break-word; }
    .b-article__author__item span a {
      font-size: 13px;
      font-weight: normal;
      line-height: 15px; }

* + html .b-article__author__item {
  display: inline;
  zoom: 1; }

.b-article__author__item .tableAuth td span {
  position: relative;
  bottom: 0;
  left: 0;
  width: 200px;
  padding-right: 5px;
  margin-bottom: 5px; }

.b-article__author__item_long {
  width: 475px; }

.b-article__author__item_long .tableAuth td span {
  width: 410px; }

.b-article__rating {
  position: relative;
  display: block;
  margin: 0 0 2px; }

.b-article__press-room {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 15px;
  text-transform: uppercase;
  color: #f00; }

.b-article__columnist-pic {
  overflow: hidden;
  width: 310px; }

.b-article__columnist-pic img {
  display: block; }

.b-article__to-columnist-page {
  font-size: 13px;
  font-weight: bold;
  padding: 5px 0;
  position: relative;
  border-style: solid;
  border-color: #e10933;
  border-width: 3px 0 3px 0;
  min-height: 32px; }
  .b-article__to-columnist-page .btn--follow {
    position: absolute;
    top: 5px;
    right: 0; }

.b-article__to-columnist-page span {
  font-size: 28px;
  line-height: 1em;
  display: block;
  margin: 0 75px 5px 0; }

.b-article__unlocked {
  overflow: auto; }

.b-article-share {
  margin-bottom: 10px;
  overflow: hidden; }
  .b-article-share a {
    margin-bottom: 5px; }
  .b-article-share .b-share-btn__count {
    color: #666666;
    font-weight: bold; }

.b-share__twitter,
.b-share__facebook,
.b-share__mail {
  display: inline-block;
  height: 10px;
  line-height: 10px;
  padding: 10px;
  color: #fff !important;
  position: relative;
  padding-left: 40px;
  border-radius: 3px;
  font-size: 14px;
  width: 170px; }
  .b-share__twitter:active, .b-share__twitter:visited, .b-share__twitter:focus, .b-share__twitter:hover,
  .b-share__facebook:active,
  .b-share__facebook:visited,
  .b-share__facebook:focus,
  .b-share__facebook:hover,
  .b-share__mail:active,
  .b-share__mail:visited,
  .b-share__mail:focus,
  .b-share__mail:hover {
    text-decoration: none !important;
    color: #fff !important; }
  .b-share__twitter span,
  .b-share__facebook span,
  .b-share__mail span {
    background: #e4e4e4;
    width: 50px;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #000; }
  .b-share__twitter:after,
  .b-share__facebook:after,
  .b-share__mail:after {
    content: " ";
    position: absolute;
    left: 10px;
    top: 8px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat; }

.b-share__twitter {
  background: #00c0f7; }
  .b-share__twitter:after {
    background-image: url("/Static/images/icons.png?v1651938f640");
    background-position: 0 -710px; }

.b-share__facebook {
  background: #275d9f; }
  .b-share__facebook:after {
    background-image: url("/Static/images/icons.png?v1651938f640");
    background-position: -2px -735px; }

.b-share__mail {
  background: #ffcd5d; }
  .b-share__mail:after {
    background-image: url("/Static/images/icons.png?v1651938f640");
    background-position: 0 -760px; }

.b-article-share-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  min-height: 30px;
  border-top: 1px dotted #e2e2e2;
  border-bottom: 1px dotted #e2e2e2; }
  .b-article-share-bottom .b-share__twitter,
  .b-article-share-bottom .b-share__facebook,
  .b-article-share-bottom .b-share__mail {
    display: inline-block;
    margin-right: 5px;
    width: auto; }
  .b-article-share-bottom .b-share-btn_full a {
    padding-right: 60px; }
  .b-article-share-bottom a {
    cursor: pointer; }
  .b-article-share-bottom .b-article-share__buttons {
    float: left; }
  .b-article-share-bottom .b-abuse {
    float: right;
    padding: 0;
    line-height: 1; }
    .b-article-share-bottom .b-abuse div {
      text-align: right; }
    .b-article-share-bottom .b-abuse a {
      font-size: 12px; }

.b-article-share-bottom.b-article-share__podcast-bottom.b-article-share__ranking-bottom {
  margin-top: 0; }

.b-article-share-bottom.b-article-share__locked-bottom {
  margin-bottom: 12px; }

.b-article__additional {
  margin: 15px 0; }

.b-article__additional > .b-page__text-settings__size {
  float: none; }

.b-article__additional > .b-page__footer__update-date,
.b-article__additional > .b-page__footer__publish-date {
  float: left;
  margin-right: 8px;
  margin-left: 0;
  padding: 0;
  width: auto;
  color: #666666;
  font-weight: bold;
  font-size: 12px; }

.b-article__additional > .b-page__footer__update-date {
  padding-right: 8px; }

.b-article_wide {
  /*margin: -32px -5px 0 -5px;
    padding: 10px 5px 5px 5px;*/ }

.b-long-read {
  overflow: hidden;
  border-right: 1px #e4e4e4 solid;
  padding-right: 10px;
  background-color: #fff;
  margin-bottom: 10px; }
  .b-long-read .b-long-read_top-image img {
    width: 100%;
    height: auto;
    padding-top: 5px; }
  .b-long-read .b-headline {
    font-family: 'Arial Black', arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1em; }
  .b-long-read .b-article-share__buttons {
    text-align: center; }
    .b-long-read .b-article-share__buttons .b-share-btn_full {
      text-align: left; }
  .b-long-read .widget-zone {
    margin: 10px 0; }
    .b-long-read .widget-zone .b-factbox {
      padding-bottom: 0;
      margin-bottom: 0; }
  .b-long-read .b-photo-longread {
    overflow: hidden;
    display: block;
    padding-bottom: 10px;
    font-family: arial, serif;
    color: #909090;
    font-style: italic;
    font-size: 14px;
    line-height: 1.2; }
    .b-long-read .b-photo-longread.b-photo_right, .b-long-read .b-photo-longread.b-photo_left {
      margin-bottom: 0; }
    .b-long-read .b-photo-longread img {
      display: block; }
  .b-long-read .widget-zone_full,
  .b-long-read .b-photo-longread_full {
    overflow: hidden;
    width: 940px;
    margin-left: -185px; }
  .b-long-read .b-photo-longread_full img {
    width: 940px;
    height: auto; }
  .b-long-read .widget-zone_small,
  .b-long-read .b-photo-longread_small {
    width: 265px; }
  .b-long-read .b-photo-longread_right {
    float: right;
    margin-left: 10px; }
  .b-long-read .b-photo-longread_left {
    float: left;
    margin-right: 10px; }
  .b-long-read .b-photo-longread__author {
    float: right; }
  .b-long-read .widget-zone_right {
    margin-left: 10px; }
  .b-long-read .widget-zone_left {
    margin-right: 10px; }

.b-long-read_container {
  margin: auto;
  width: 580px; }

.b-long-read_pubdate {
  font-size: 12px;
  font-weight: bold;
  color: #666; }

.b-long-read_preamble {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  padding: 40px 0 20px; }

.b-long-read_content-wrapper {
  position: relative; }

.b-long-read_content {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 24px; }
  .b-long-read_content .widget-zone_left + .widget-zone_right:after,
  .b-long-read_content .widget-zone_right + .widget-zone_left:after,
  .b-long-read_content .b-photo_left + .b-photo_right:after,
  .b-long-read_content .b-photo_right + .b-photo_left:after {
    font-size: 0;
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: "."; }
  .b-long-read_content h2 {
    font-family: arial, serif;
    font-size: 19px;
    font-weight: bold;
    padding-top: 6px;
    padding-bottom: 2px; }
  .b-long-read_content p, .b-long-read_content ul, .b-long-read_content ol {
    padding-bottom: 10px; }
  .b-long-read_content ul, .b-long-read_content ol {
    margin: 0 0 0 15px; }
  .b-long-read_content ul {
    list-style-type: disc;
    list-style-position: inside; }
  .b-long-read_content ol {
    list-style-type: decimal;
    list-style-position: inside; }
  .b-long-read_content blockquote {
    padding: 10px 0 20px 20px;
    font-size: 26px;
    line-height: 1.2;
    color: #444;
    font-style: italic; }
  .b-long-read_content .b-article-lock__sales-message li {
    font-size: 13px; }

.b-long-read_related {
  position: absolute;
  top: 0;
  right: -200px;
  width: 195px; }

.b-long-read_related-footer {
  padding-top: 40px; }

.b-long-read_master-preamble {
  font-size: 20px;
  line-height: 24px;
  margin: 30px 0 15px; }

/**
 * Mike says:
 * Font size was refactored. It contain some modificator
 * rules for article fontsizes.
 * Had some troubles with this, unfortunatly all font sizes are set
 * in pixels. Let's try to refactor some widget that can be placed
 * inside of common page block.
 */
.b-article_normal .b-text h1,
.b-article_normal .b-headline_article,
.b-article_normal .b-headline_quiz {
  font-size: 62px;
  line-height: 1em; }

.b-article_normal .b-photo,
.b-article_normal .b-article__author__item {
  font-size: 15px;
  line-height: 20px; }

/* Simple article page. Medium size + 3px */
.b-article_medium {
  font-size: 15px;
  line-height: 19px; }

.b-article_medium .b-text h1,
.b-article_medium .b-headline_article,
.b-article_medium .b-headline_quiz {
  font-size: 67px;
  line-height: 1em; }

.b-article_medium .b-text h2,
.b-article_medium .b-text h3,
.b-article_medium .b-text h4,
.b-article_medium .b-text h5,
.b-article_medium .b-text h6 {
  font-size: 19px;
  line-height: 21px; }

.b-article_medium .b-text {
  font-size: 18px;
  line-height: 22px; }

.b-article_medium .b-text_article-master-preamble {
  font-size: 23px;
  line-height: 26px; }

.b-article_medium .b-text_article-preamble {
  font-size: 21px;
  line-height: 26px; }

.b-article_medium .b-photo,
.b-article_medium .b-article__author__item {
  font-size: 16px;
  line-height: 20px; }

.b-article_medium .b-title {
  font-size: 15px; }

.b-article_medium .b-story_widget .b-title_sub-title {
  font-size: 16px;
  line-height: 18px; }

/* TODO Bad unexpected selector. Should try to use relative
 * font size for b-articles-list */
.b-article_medium .b-articles-list__item__content span {
  font-size: 13px; }

.b-article_medium .b-slideshow__description {
  font-size: 16px; }

.b-article_medium .b-article__author__item span {
  font-size: 17px; }

.b-article_medium .b-article__author__item span a {
  font-size: 16px;
  line-height: 18px; }

.b-article_medium .b-article__podcast-section {
  font-size: 22px; }

/* Simple article page. Big size + 6px */
.b-article_big {
  font-size: 18px;
  line-height: 22px; }

.b-article_big .b-text h1,
.b-article_big .b-headline_article,
.b-article_big .b-headline_quiz {
  font-size: 70px;
  line-height: 1em; }

.b-article_big .b-text h2,
.b-article_big .b-text h3,
.b-article_big .b-text h4,
.b-article_big .b-text h5,
.b-article_big .b-text h6 {
  font-size: 22px;
  line-height: 24px; }

.b-article_big .b-text {
  font-size: 20px;
  line-height: 24px; }

.b-article_big .b-text_article-master-preamble {
  font-size: 26px;
  line-height: 29px; }

.b-article_big .b-text_article-preamble {
  font-size: 23px;
  line-height: 28px; }

.b-article_big .b-photo,
.b-article_big .b-article__author__item {
  font-size: 20px;
  line-height: 24px; }

.b-article_big .b-title {
  font-size: 18px; }

.b-article_big .b-story_widget .b-title_sub-title {
  font-size: 19px;
  line-height: 21px; }

.b-article_big .b-articles-list__item__content span {
  font-size: 16px; }

.b-article_big .b-slideshow__description {
  font-size: 19px; }

.b-article_big .b-article__author__item span {
  font-size: 20px; }

.b-article_big .b-article__author__item span a {
  font-size: 19px;
  line-height: 21px; }

.b-article_big .b-article__podcast-section {
  font-size: 22px; }

.no-left-column .b-article_medium .b-text {
  font-size: 17px;
  line-height: 23px; }

.no-left-column .b-article_medium .b-text_article-preamble {
  font-size: 19px;
  line-height: 25px; }

.no-left-column .b-article_medium .b-text_article-master-preamble {
  font-size: 21px;
  line-height: 27px; }

.no-left-column .b-article_medium .b-abuse {
  line-height: 15px; }

.no-left-column .b-article_big .b-text {
  font-size: 20px;
  line-height: 26px; }

.no-left-column .b-article_big .b-text_article-preamble {
  font-size: 22px;
  line-height: 28px; }

.no-left-column .b-article_big .b-text_article-master-preamble {
  font-size: 24px;
  line-height: 30px; }

.no-left-column .b-article_big .b-abuse {
  line-height: 15px; }

.b-article_normal .b-headline_columnist,
.b-article_normal .b-headline_columnist a,
.b-article_normal .b-headline_columnist .headline-wrap {
  font-size: 58px; }

.b-article_normal .b-headline_article-columnist {
  font-size: 46px; }

/* Medium size */
.b-article_medium .b-headline_columnist,
.b-article_medium .b-headline_columnist a,
.b-article_medium .b-headline_columnist .headline-wrap {
  font-size: 60px; }

.b-article_medium .b-headline_article-columnist {
  font-size: 50px;
  line-height: 1em; }

.b-article_medium .b-article__to-columnist-page {
  font-size: 15px; }

.b-article_medium .b-article__to-columnist-page span {
  font-size: 31px; }

/* Big size */
.b-article_big .b-headline_columnist,
.b-article_big .b-headline_columnist a,
.b-article_big .b-headline_columnist .headline-wrap {
  font-size: 62px; }

.b-article_big .b-headline_article-columnist {
  font-size: 54px;
  line-height: 1em; }

.b-article_big .b-article__to-columnist-page {
  font-size: 18px; }

.b-article_big .b-article__to-columnist-page span {
  font-size: 34px; }

.b-rank-list .b-headline_article {
  font-size: 37px;
  line-height: 1em; }

.b-rank-list .b-rank-list__bullet__headline {
  font-size: 24px;
  line-height: 1em; }

.b-rank-list .b-rank-list__preamble {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold; }

.b-rank-list .b-text {
  font-size: 14px;
  line-height: 20px; }

.b-rank-list .b-bullet-list__link {
  font-size: 1em; }

.b-rank-list .b-rank-list__bullet__pager {
  font-size: .9em; }
  .b-rank-list .b-rank-list__bullet__pager.b-rank-list__bullet__pager__fwd {
    font-size: 1.1em; }

.b-rank-list .b-photo,
.b-rank-list .b-rank-list__photo,
.b-rank-list .b-article__author__item {
  font-size: 15px;
  line-height: 20px; }

.b-rank-list .b-article__rating {
  top: 4px; }

.b-rank-list.b-rank-list_normal {
  font-size: 100%; }

.b-rank-list.b-rank-list_medium {
  font-size: 140%; }

.b-rank-list.b-rank-list_big {
  font-size: 160%; }

/* Simple ranking list page. Medium size + 3px */
.b-rank-list_medium .b-headline_article {
  font-size: 39px;
  line-height: 1em; }

.b-rank-list_medium .b-rank-list__bullet__headline {
  font-size: 26px;
  line-height: 1em; }

.b-rank-list_medium .b-rank-list__preamble {
  font-size: 21px;
  line-height: 26px; }

.b-rank-list_medium .b-text_article-preamble {
  font-size: 21px;
  line-height: 26px; }

.b-rank-list_medium .b-text {
  font-size: 18px;
  line-height: 22px; }

.b-rank-list_medium .b-text h2,
.b-rank-list_medium .b-text h3,
.b-rank-list_medium .b-text h4,
.b-rank-list_medium .b-text h5,
.b-rank-list_medium .b-text h6 {
  font-size: 19px;
  line-height: 21px; }

.b-rank-list_medium .b-photo,
.b-rank-list_medium .b-rank-list__photo,
.b-rank-list_medium .b-article__author__item {
  font-size: 16px;
  line-height: 20px; }

.b-rank-list_medium .b-title {
  font-size: 15px; }

.b-rank-list_medium .b-story_widget .b-title_sub-title {
  font-size: 16px;
  line-height: 18px; }

.b-rank-list_medium .b-articles-list__item__content span {
  font-size: 13px; }

.b-rank-list_medium .b-article__author__item span {
  font-size: 17px; }

.b-rank-list_medium .b-article__author__item span a {
  font-size: 16px;
  line-height: 18px; }

/* Simple article page. Big size + 6px */
.b-rank-list_big .b-headline_article {
  font-size: 41px;
  line-height: 1em; }

.b-rank-list_big .b-rank-list__bullet__headline {
  font-size: 28px;
  line-height: 1em; }

.b-rank-list_big .b-rank-list__preamble {
  font-size: 23px;
  line-height: 28px; }

.b-rank-list_big .b-text_article-preamble {
  font-size: 23px;
  line-height: 28px; }

.b-rank-list_big .b-text {
  font-size: 20px;
  line-height: 24px; }

.b-rank-list_big .b-text h2,
.b-rank-list_big .b-text h3,
.b-rank-list_big .b-text h4,
.b-rank-list_big .b-text h5,
.b-rank-list_big .b-text h6 {
  font-size: 22px;
  line-height: 24px; }

.b-rank-list_big .b-photo,
.b-rank-list_big .b-rank-list__photo,
.b-rank-list_big .b-article__author__item {
  font-size: 20px;
  line-height: 24px; }

.b-rank-list_big .b-title {
  font-size: 18px; }

.b-rank-list_big .b-story_widget .b-title_sub-title {
  font-size: 19px;
  line-height: 21px; }

.b-rank-list_big .b-articles-list__item__content span {
  font-size: 16px; }

.b-rank-list_big .b-article__author__item span {
  font-size: 20px; }

.b-rank-list_big .b-article__author__item span a {
  font-size: 19px;
  line-height: 21px; }

/**
 * TODO Remove deprecated b-article-footer. Use b-page.
 */
.b-article-footer {
  padding: 10px 0 0;
  border-top: 1px solid #e2e2e2; }

.b-article-footer__published {
  font-size: 11px;
  float: right;
  width: 154px;
  color: #757575; }

.b-article-footer__published span {
  display: block;
  margin: 0 0 5px; }

.b-article-footer__published_publish-date {
  float: left; }

.b-article-footer__published_update-date {
  float: right; }

.b-article-footer__actions {
  float: left;
  width: 366px;
  vertical-align: middle; }

.b-article-footer__url {
  font-size: 11px;
  width: 100%;
  color: #757575; }

.b-article-footer__url span {
  display: block;
  margin: 0 0 5px; }

.b-story {
  position: relative;
  margin: 0 0 5px;
  background: #ffffff; }

.b-story__img {
  margin-bottom: 5px; }

.b-story__img__author {
  float: right;
  margin-left: 10px; }

.b-story__img__desc {
  font-size: 13px;
  font-style: italic;
  width: 100%; }

.b-story_page {
  padding: 0 5px 5px; }

.b-story_page .b-story__content {
  padding: 5px 5px 0; }

.b-story_page .b-title_sub-title {
  margin-top: 15px; }

.b-story_page .b-title_sub-title:first-child {
  margin-top: 1px; }

.b-story_widget {
  z-index: 1;
  margin-bottom: 8px; }
  .b-story_widget .b-fold__expand {
    background: #fff !important; }
    .b-story_widget .b-fold__expand:before {
      display: none; }
    .b-story_widget .b-fold__expand .b-fold__arr {
      width: 65px;
      margin-left: -32px; }
  .b-story_widget .b-fold_unfold .b-fold__expand .b-fold__arr {
    width: 75px;
    margin-left: -37px; }
  .b-story_widget .b-link-icon_arrow-right {
    display: none; }

.b-story_widget .b-story__content {
  padding: 5px 0 3px 5px; }

.b-story_widget .b-story__content .b-title_sub-title:first-child {
  margin-top: 0; }

.b-story_widget .b-title_sub-title {
  font-size: 13px;
  margin: 10px 0 3px; }

.b-story_two-column {
  margin-bottom: 5px; }

.b-story_two-column .b-title_sub-title {
  margin-top: 20px; }

.b-story_two-column .b-story__content {
  padding-top: 6px; }

.b-story__content {
  padding-top: 5px; }

.b-story__column {
  position: relative;
  float: left;
  width: 315px;
  padding: 0 10px 0 0; }

* + html .b-story__column {
  zoom: 1; }

.b-story__column-last {
  padding-right: 0; }

.b-story__column .b-story-list {
  margin-top: 20px; }

.b-story_left_column {
  float: left; }

.b-story_right_column {
  width: 300px; }

.b-columnist-list-item {
  overflow: hidden;
  padding: 4px 5px 4px;
  background: #ffffff; }

.b-columnist-list-item__pic {
  float: left;
  overflow: hidden;
  width: 174px;
  margin: 4px 5px 0 0; }

.b-columnist-list-item__pic img {
  display: block; }

.b-columnist-list-item__content {
  font-weight: bold;
  overflow: hidden; }

.b-columnist-list-item__content h2 {
  font-size: 32px;
  line-height: 36px;
  position: relative;
  margin-left: -1px;
  margin-bottom: 2px;
  padding: 0; }

.b-columnist-list-item__content h2 a {
  color: #000000; }

.b-columnist-list-item__content > .b-link-icon {
  font-size: 18px;
  line-height: 24px; }

.b-columnist-list-item__content > .b-link-icon .b-link-icon__icon {
  margin-top: 3px; }

.b-columnist-list-item__content .b-date {
  font-size: 11px; }

.b-columnist-list-item__primary-link {
  font-size: 18px;
  line-height: 24px; }

.b-columnist-list-item__primary-link .b-link-icon_arrow-right {
  top: 2px; }

a.b-columnist-list-item__read-more {
  font-size: 16px;
  line-height: 22px;
  color: #000000; }

.b-quiz {
  margin: 0 0 8px;
  background: #ffffff; }

.b-quiz__answers {
  margin: 0 318px 5px 0; }
  .b-quiz__answers .b-quiz-list {
    overflow: hidden; }

.b-quiz__next {
  margin: 20px 0 0; }
  .b-quiz__next a {
    font-size: 13px; }

.b-quiz__content-wrap {
  padding: 8px 0 0; }

.b-quiz_normal .b-headline_quiz {
  font-size: 37px;
  line-height: 1em; }

/* Quiz page Medium + 3px */
.b-quiz_medium .b-text {
  font-size: 18px;
  line-height: 22px; }

.b-quiz_medium .b-headline_quiz {
  font-size: 42px;
  line-height: 1em; }

.b-quiz_medium .b-headline_quiz-result {
  font-size: 35px;
  line-height: 1em; }

.b-quiz_medium .b-quiz__question {
  font-size: 28px;
  line-height: 29px; }

.b-quiz_medium .b-quiz__step {
  font-size: 15px;
  line-height: 18px; }

.b-quiz_medium .b-quiz-list label {
  font-size: 18px;
  line-height: 22px; }

.b-quiz_medium .b-quiz-grid th {
  font-size: 17px; }

.b-quiz_medium .b-quiz-grid,
.b-quiz_medium .b-quiz-grid .b-stat-bar {
  font-size: 17px;
  line-height: 20px; }

.b-quiz_medium .b-quiz__stat__title {
  font-size: 30px;
  line-height: 31px; }

.b-quiz_medium .b-quiz__stat .b-stat-bar {
  font-size: 16px;
  line-height: 21px; }

/* Quiz page big + 6px */
.b-quiz_big .b-text {
  font-size: 20px;
  line-height: 24px; }

.b-quiz_big .b-headline_quiz {
  font-size: 45px;
  line-height: 1em; }

.b-quiz_big .b-headline_quiz-result {
  font-size: 38px;
  line-height: 1em; }

.b-quiz_big .b-quiz__question {
  font-size: 31px;
  line-height: 32px; }

.b-quiz_big .b-quiz__step {
  font-size: 18px;
  line-height: 21px; }

.b-quiz_big .b-quiz-list label {
  font-size: 20px;
  line-height: 24px; }

.b-quiz_big .b-quiz-grid th {
  font-size: 17px; }

.b-quiz_big .b-quiz-grid,
.b-quiz_big .b-quiz-grid .b-stat-bar {
  font-size: 20px;
  line-height: 23px; }

.b-quiz_big .b-quiz__stat__title {
  font-size: 33px;
  line-height: 34px; }

.b-quiz_big .b-quiz__stat .b-stat-bar {
  font-size: 19px;
  line-height: 24px; }

.b-quiz__pic {
  float: right;
  margin: 0 0 0 5px;
  overflow: hidden; }
  .b-quiz__pic img {
    display: block; }

.b-quiz__question {
  font-size: 25px;
  font-weight: bold;
  line-height: 26px;
  margin: 0 0 6px;
  vertical-align: top; }
  .b-quiz__question .b-quiz__question__number {
    float: left;
    margin-right: 10px; }

.b-quiz__question__text {
  display: block;
  overflow: hidden; }

.b-quiz__stat {
  margin: 30px 0 15px; }

.b-quiz__stat__title {
  font-size: 27px;
  font-weight: bold;
  line-height: 29px;
  margin: 0 0 15px; }

.b-quiz__stat .b-stat-bar {
  font-size: 13px;
  line-height: 18px; }

.b-quiz__step {
  font-size: 12px;
  margin: 0 0 8px; }

.b-quiz__warning-wrapper {
  display: none; }
  .b-quiz__warning-wrapper,
  .b-quiz__warning-wrapper a,
  .b-quiz__warning-wrapper a:hover {
    color: red;
    font-style: italic;
    font-size: 17px;
    line-height: 20px; }

.b-quiz__next_cannot-use {
  border: red 1px solid; }

.b-quiz__answers__wasp {
  display: inline-block;
  height: 21px;
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat 0 -220px; }

.b-quiz__answers__wasp_size-id-0 {
  width: 118px; }

.b-quiz__answers__wasp_size-id-1 {
  width: 96px; }

.b-quiz__answers__wasp_size-id-2 {
  width: 71px; }

.b-quiz__answers__wasp_size-id-3 {
  width: 45px; }

.b-quiz__answers__wasp_size-id-4, .b-quiz__answers__wasp_size-id-5 {
  width: 21px; }

.b-quiz__answers__wasp_size-id-5 {
  background-position: 0 -244px; }

.b-search-results {
  margin-bottom: 5px;
  padding: 0 5px;
  background: #ffffff; }

.b-search-results__search-query {
  padding: 5px 0;
  border-style: solid;
  border-color: #e2e2e2;
  border-width: 1px 0;
  background: #ffffff; }

.b-search-results__list {
  position: relative;
  margin: 6px 0 0;
  padding: 0 0 1px; }

.b-hot-news {
  padding: 0 0 10px;
  background: #ffffff; }

.b-hot-news__date-control {
  float: right;
  margin: 0 0 0 5px; }

.b-hot-news__date-control__button {
  /* TODO: Investigate why */
  display: block !important;
  margin: 0 0 3px; }

.b-hot-news__date-control__button input {
  font-size: 9px;
  float: right;
  width: 49px;
  height: 10px;
  margin: 2px 0 0; }

.b-hot-news__date-control__button input:focus {
  outline: 1px solid #719dc8; }

.b-hot-news__filter {
  overflow: hidden; }

.b-hot-news__period {
  font-weight: bold;
  margin: 0 0 2px; }

.b-hot-news__show-more {
  margin: 5px 0 10px; }

.b-hot-news__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 32px;
  margin: 6px 0; }

.b-gallery {
  /* Hey! It's absolutly necessary here*/
  overflow: hidden; }

.b-gallery__back-to-gallery {
  font-weight: bold; }

.b-gallery__list {
  font-size: 14px;
  display: block;
  width: auto;
  margin: 28px 0 52px; }

.b-gallery__list__item {
  display: inline-block;
  width: 175px;
  margin: 0 2px 10px 0;
  font-weight: bold;
  vertical-align: top; }

.b-gallery__list__item a.b-link-icon {
  width: 175px;
  word-wrap: break-word; }

* + html .b-gallery__list__item {
  display: inline;
  zoom: 1;
  margin-right: 7px; }

.b-gallery__row {
  position: relative;
  width: 255px;
  margin: 0 0 5px; }

.b-gallery__row label {
  font-weight: bold; }

.b-gallery__row .b-input-text,
.b-gallery__row .b-input-file {
  position: relative;
  margin-top: 3px; }

.b-gallery__row_file-field {
  width: 255px; }

.b-gallery__row_file-field input {
  width: 255px; }

.b-gallery__row_text {
  width: 100%; }

.b-gallery__row_text textarea {
  height: 150px; }

label.b-gallery__validation-message,
span.b-gallery__validation-message {
  color: red;
  font-weight: normal;
  display: block;
  margin: 2px 0 0; }

.b-gallery__upload-controls a {
  font-weight: bold; }

.b-gallery__upload-controls__submit {
  float: right; }

.b-gallery__upload-panel {
  margin: 27px 0 11px; }

.b-gallery__upload-link {
  float: right;
  display: block;
  font-weight: bold;
  padding: 2px 0; }

.b-gallery__upload-your-link {
  margin: 17px 0 0 0;
  font-weight: bold; }

.b-gallery__upload-link-panel {
  margin: 15px 0 0 0;
  padding: 5px 0 5px;
  border-top: 1px solid #e2e2e2; }

.b-gallery__exp-links {
  margin: 1.3em 0 0 0; }

.b-gallery_upload {
  padding-top: 2px; }

.b-gallery_widget {
  margin: 0 0 5px;
  padding: 0; }

.b-gallery_widget .b-gallery__list {
  margin: 0; }

.b-gallery__social-panel {
  float: left; }

.b-gallery__share-picture {
  float: left;
  margin-right: 10px;
  padding: 2px 0; }

.b-print-gallery {
  overflow: hidden;
  padding: 0 10px 12px; }

.b-headline_print-gallery {
  font-size: 42px !important; }

h1.b-print-gallery__headline {
  margin: 3px 0 10px; }

.b-print-gallery__poster {
  overflow: hidden;
  margin: 0 13px;
  border: 1px solid #9e9e9e; }

.b-print-gallery__poster > img {
  width: 100%; }

.b-pgallery-bunch {
  padding: 0; }

h2.b-pgallery-bunch__title {
  font-size: 27px;
  font-weight: bold;
  line-height: 1;
  margin: 2px 0 8px; }

.b-pgallery-bunch__filters {
  margin: 8px 0 12px; }

.b-pgallery-bunch__date-control {
  float: right;
  margin: 0 0 0 5px; }

.b-pgallery-bunch__date-control__button {
  display: block !important;
  margin: 0 0 3px; }

* + html .b-pgallery-bunch__date-control__button {
  width: 118px; }

.b-pgallery-bunch__date-control__button input {
  font-size: 9px;
  float: right;
  width: 49px;
  height: 10px;
  margin: 2px 0 0; }

.b-pgallery-bunch__date-control__button input:focus {
  outline: 1px solid #719dc8; }

.b-pgallery-bunch__filter {
  overflow: hidden; }

.b-pgallery-list {
  margin: 0 0 10px; }

.b-pgallery-list__item {
  float: left;
  overflow: hidden;
  width: 125px;
  height: 216px;
  margin: 0 13px 5px 0; }

.b-pgallery-list__item_fourth {
  margin-right: 0;
  margin-left: 1px; }

.b-pgallery-list__item-pic {
  display: block; }

.b-pgallery-list__item-pic > img {
  display: block;
  width: 125px;
  height: 185px; }

.b-pgallery-list__item-text {
  display: block;
  font-weight: bold;
  margin: -3px 0 0 4px; }

.b-columnist-panel__pic {
  position: relative;
  bottom: -10px;
  float: right;
  overflow: hidden;
  width: 305px;
  margin: 0 5px 0 0;
  min-height: 100px; }
  .b-columnist-panel__pic .btn {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9; }

.b-columnist-panel__pic img {
  position: relative;
  bottom: 0;
  display: block; }

.b-columnist-panel__content {
  width: 535px; }

.b-columnist-panel__facts .b-text {
  padding: 0 25px 0 0; }

.b-bullet, .b-rank-list__full-list__bullet, .b-bullet-list > li > a {
  display: block;
  width: 2.143em;
  height: 2.143em;
  border-radius: 2.143em;
  background-color: #000000;
  text-align: center;
  font-weight: bold;
  line-height: 2.143em; }

/*===========================================
=            EXPRESSEN VARIABLES            =
===========================================*/
/*==========  Colors  ==========*/
.b-rank-list .b-headline_article {
  word-spacing: -1px;
  letter-spacing: -1px;
  margin-bottom: 4px; }

.b-rank-list__bullet {
  margin-top: 15px; }

.b-rank-list__bullet__headline.b-headline {
  margin: 8px 0 10px; }

.b-rank-list__preamble {
  margin-bottom: 10px; }

.b-rank-list__bullet__content {
  margin-top: 15px; }

.b-rank-list__bullet__pager {
  margin-top: 8px; }
  .b-rank-list__bullet__pager a {
    font-weight: bold; }
    .b-rank-list__bullet__pager a.b-rank-list__bullet__pager__fwd {
      float: right; }

.b-rank-list__r-column {
  float: right;
  overflow: hidden;
  margin: 0 0 0 8px;
  width: 310px; }

.b-rank-list__full-list {
  margin: 10px 0 20px;
  padding-top: 10px;
  border-top: 1px #d5d5d5 solid; }

.b-rank-list__full-list__link {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold; }

.b-rank-list__full-list__list {
  display: none; }
  .b-rank-list__full-list__list a .b-rank-list__full-list__bullet {
    -webkit-transition: background-color .2s;
    transition: background-color .2s; }
  .b-rank-list__full-list__list a:link .b-rank-list__full-list__bullet, .b-rank-list__full-list__list a:visited .b-rank-list__full-list__bullet {
    color: #ffffff; }
  .b-rank-list__full-list__list a:hover .b-rank-list__full-list__bullet, .b-rank-list__full-list__list a.is_active .b-rank-list__full-list__bullet {
    background-color: #0366a0;
    text-decoration: none; }

.b-rank-list__full-list__title {
  font-weight: bold;
  line-height: 30px; }

.b-rank-list__bullet .b-social-box__button.b-social-box__facebook {
  margin-right: 25px; }

/*  ==========================================================================
    User modal window
    ==========================================================================  */
/*  Base
    ==========================================================================  */
.b-user-modal .b-user-modal__popup {
  width: 185px;
  padding: 20px 20px 15px;
  border: 0;
  border-radius: 5px; }

.b-user-modal .b-user-modal__close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  float: none;
  width: 20px;
  height: 20px;
  padding: 0;
  background: url("/Static/images/common-sprite.png?v1651938f63f") 0 -295px no-repeat; }
  .b-user-modal .b-user-modal__close-button:hover {
    background-position: 0 -317px; }

.b-user-modal .b-user-modal__header {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #747474; }

/*  Login state
    ==========================================================================  */
.b-user-modal__login-links {
  margin: 10px 0; }

.b-user-modal__login-link,
.b-user-modal__new-account__link {
  font-size: 12px;
  font-weight: bold;
  display: block;
  padding: 5px;
  text-align: center;
  color: #fff !important; }
  .b-user-modal__login-link:hover,
  .b-user-modal__new-account__link:hover {
    text-decoration: none; }

.b-user-modal__login-link.b-user-modal__login-link_facebook {
  position: relative;
  text-indent: 10px;
  background: #03326c; }
  .b-user-modal__login-link.b-user-modal__login-link_facebook::before {
    position: absolute;
    top: 5px;
    left: 7px;
    display: block;
    width: 15px;
    height: 15px;
    content: "";
    background: url("/Static/images/common-sprite.png?v1651938f63f") -22px -295px no-repeat; }
  .b-user-modal__login-link.b-user-modal__login-link_facebook:hover {
    background: #021b3a; }

.b-user-modal__login-link.b-user-modal__login-link_id {
  background: #0066a0; }
  .b-user-modal__login-link.b-user-modal__login-link_id:hover {
    background: #00456d; }

.b-article-lock__divider {
  margin: 5px 0; }
  .b-article-lock__divider:after {
    border-bottom: 1px solid #f5f5f5; }
  .b-article-lock__divider span {
    background: #fff; }

.b-user-modal__separator {
  height: 1px;
  margin: 0 -20px;
  border-top: 1px solid #a0a0a0;
  background: #b3b3b3; }

.b-user-modal__new-account {
  font-size: 12px;
  margin: 10px 0 0;
  color: #747474; }

.b-user-modal__new-account__header {
  font-weight: bold;
  margin-bottom: 15px; }

.b-user-modal__new-account__text,
.b-user-modal__new-account__list {
  margin: 15px 0; }

.b-user-modal__new-account__list-item {
  position: relative;
  margin: 0 0 5px 0;
  padding: 0 0 0 16px; }
  .b-user-modal__new-account__list-item::before {
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    width: 11px;
    height: 9px;
    content: "";
    background: url("/Static/images/common-sprite.png?v1651938f63f") -39px -295px no-repeat; }

.b-user-modal__new-account__link {
  background: #394348; }
  .b-user-modal__new-account__link:hover {
    background: #22292c; }

/*  Logged state.
    ==========================================================================  */
.b-user-modal__account-picture {
  display: block;
  margin: 5px auto;
  border: 3px solid #6f6f6f;
  border-radius: 50%; }

.b-user-modal__account-headline {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #5a5a5a; }

.b-user-modal__account-subheadline {
  font-weight: bold;
  display: block; }

.b-user-modal__account-actions-list {
  margin: 10px -20px -15px; }

.b-user-modal__account-actions-list__link {
  font-size: 13px;
  font-weight: bold;
  line-height: 3.1;
  position: relative;
  display: block;
  height: 42px;
  text-indent: 45px;
  color: #5a5a5a !important;
  border-bottom: 1px solid #d5d5d5;
  background: #eee; }
  .b-user-modal__account-actions-list__link:hover {
    text-decoration: none;
    background: #d5d5d5; }
  .b-user-modal__account-actions-list__link::before {
    position: absolute;
    top: 11px;
    left: 15px;
    display: block;
    content: "";
    background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat; }

.b-user-modal__account-actions-list__link_columnist::before {
  width: 20px;
  height: 20px;
  background-position: -69px -317px; }

.b-user-modal__account-actions-list__link_settings::before {
  width: 18px;
  height: 19px;
  background-position: -92px -295px; }

.b-user-modal__account-actions-list__link_logout::before {
  width: 21px;
  height: 18px;
  background-position: -69px -295px; }

.b-user-modal__account-actions-list__link_last {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px; }

.b-user-modal.b-user-settings {
  width: 500px; }
  .b-user-modal.b-user-settings .b-popup {
    height: auto;
    border: 0;
    border-radius: 5px; }
  .b-user-modal.b-user-settings .b-user-menu__inner {
    padding: 15px; }
  .b-user-modal.b-user-settings .b-headline {
    text-align: left; }
  .b-user-modal.b-user-settings .b-button {
    margin-top: 20px;
    float: right; }
  .b-user-modal.b-user-settings ul {
    margin: 15px 0; }
  .b-user-modal.b-user-settings li {
    width: 49.5%;
    display: inline-block;
    margin: 0 1px 1px 0;
    font-weight: bold;
    background: #d7f0ff; }
  .b-user-modal.b-user-settings .b-headline {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Arial Black',Arial,sans-serif; }

.b-user-modal .b-user-settings__interest input[type="checkbox"],
.b-user-modal .b-user-settings__newsletter input[type="checkbox"] {
  display: none; }

.b-user-modal .b-user-settings__interest input[type="checkbox"] + label,
.b-user-modal .b-user-settings__newsletter input[type="checkbox"] + label {
  display: block;
  padding: 15px 0 15px 30px;
  background: #d7f0ff url("/Static/images/checkbox.png?v1651938f63e") 10px center no-repeat;
  cursor: pointer; }

.b-user-modal .b-user-settings__interest input[type="checkbox"]:checked + label,
.b-user-modal .b-user-settings__newsletter input[type="checkbox"]:checked + label {
  background-color: #9fcdea;
  background-image: url("/Static/images/checkbox-checked.png?v1651938f63e"); }

.b-user-modal .b-user-settings__newsletter input[type="checkbox"] + label {
  display: inline-block;
  padding: 0 0 0 25px;
  background-color: #fff;
  background-position: 5px; }

.b-user-modal .b-user-settings__newsletter input[type="checkbox"]:checked + label {
  background-color: #fff; }

/**
 * Columns blocks e.g. teasers, factboxes, tabs
 * -------------------------------------------------------------------------------------------
 */
.b-ad {
  position: relative;
  display: none;
  margin: 14px 0 5px;
  background: #e2e2e2; }

.b-ad2 {
  position: relative;
  margin: 14px 0 5px;
  background: #e2e2e2;
  display: none; }

/* TODO don't forget to look what the hell is this */
.b-ad.solo {
  float: right;
  clear: right;
  margin-left: 5px; }

.no-left-column .b-ad,
.no-left-column .b-ad2,
.no-left-column .burt-unit {
  background-color: #fff; }

.no-left-column .b-ad_integrated.b-ad_bottom-article {
  margin: 15px 0 0; }
  .no-left-column .b-ad_integrated.b-ad_bottom-article .b-ad__caption {
    margin-left: 50px; }

.l-page_preview .b-ad,
.l-page_preview .b-ad2,
.l-page_preview .burt-unit {
  background-color: #e2e2e2; }

.b-ad-inner-wrapper {
  text-align: center; }

#AD-k4a1 {
  text-align: left; }

.b-ad__caption {
  font: 8px/20px Verdana, sans-serif;
  position: absolute;
  top: -15px;
  /*z-index: 1;*/
  text-transform: uppercase;
  left: 0;
  width: 100%;
  display: block; }

.b-ad__caption_top {
  position: absolute;
  left: 1250px;
  width: 9px;
  height: 43px;
  background: url("/Static/images/annons.png?v1651938f63c") no-repeat; }

.b-ad__caption_topright {
  position: absolute;
  left: 267px;
  width: 9px;
  height: 43px;
  background: url("/Static/images/annons.png?v1651938f63c") no-repeat; }

.b-ad__caption_center {
  font: 8px/20px Verdana, sans-serif;
  text-transform: uppercase;
  width: 100%;
  display: block;
  text-align: center; }

.b-ad_first {
  margin-top: 0; }

.b-ad_top {
  margin-top: 5px; }

.b-ad_topright {
  margin-top: 0;
  margin-bottom: 4px;
  background-color: white; }

.no-left-column .b-ad_top {
  margin: 10px 0 0 10px; }

.b-ad_bottom {
  width: 980px; }

.b-ad_align-left {
  text-align: left; }

.b-ad_visible {
  display: block; }

.b-ad_no-annons {
  margin-top: 0; }

.b-ad_size-265x720 {
  width: 265px;
  height: 720px; }

.b-ad_size-980x240 {
  width: 980px;
  height: 240px; }

.b-ad_size-310x240 {
  width: 310px;
  height: 240px; }

.b-ad_integrated {
  margin-left: -5px;
  margin-right: -5px; }

.no-left-column .b-ad_integrated {
  margin: 0; }

.b-factbox {
  margin: 0 0 4px;
  padding-bottom: 8px; }

.b-factbox__content {
  background: #f0faff; }
  .b-factbox__content .b-text_factbox {
    padding: 5px 10px 10px; }
    .b-factbox__content .b-text_factbox.b-fold_unfold {
      padding-bottom: 35px; }
  .b-factbox__content img {
    margin: 4px 0;
    max-width: 100%; }
  .b-factbox__content strong {
    font-weight: bold; }

.b-tabs-widget {
  overflow: hidden;
  /* Margin collapsing fix */
  margin: 0 0 5px;
  background: #fff; }

.b-tabs-widget__tab-header {
  position: relative;
  cursor: pointer; }

.b-tabs-widget .b-tabs__tab-content,
.b-tabs-widget_equal-height .b-tabs__tab-content {
  display: block;
  float: right;
  width: 100%;
  margin-left: -100%; }

.b-tabs-widget_differ-height .b-tabs__tab-content {
  display: none;
  visibility: visible;
  float: none;
  margin-left: 0; }

.b-tabs-widget_differ-height .b-tabs__tab-content_active {
  display: block; }

.b-subscriptions-widget {
  margin-bottom: 5px;
  padding-bottom: 10px; }
  .b-subscriptions-widget .btn--follow {
    float: right;
    margin-left: 10px; }

.b-subscriptions-widget__header {
  margin: 0 0 6px 6px;
  border-bottom: 1px #e4e4e4 solid; }
  .b-subscriptions-widget__header h2 {
    margin-left: 0 !important; }

.b-subscriptions-widget__header__byline {
  font-weight: normal;
  font-style: italic;
  color: #666666; }

.b-subscriptions-widget__header__suggestions {
  font-weight: normal;
  margin-left: 6px;
  color: #333333; }

.b-subscriptions-widget__suggestions {
  padding: 6px 0 6px 0; }
  .b-subscriptions-widget__suggestions li {
    margin: 3px 0 0;
    border-bottom: 1px #e4e4e4 dotted; }
  .b-subscriptions-widget__suggestions .media__img {
    margin-right: 10px; }

.mod-flexbox .b-subscriptions-widget__suggestions .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-align-items: center;
  -ms-flex-align: center; }

.mod-flexbox .b-subscriptions-widget__suggestions .media__img {
  min-width: 60px; }

.mod-flexbox .b-subscriptions-widget__suggestions .media__body {
  width: 100%;
  -ms-flex: 0 1 auto; }

.b-native-ad-teaser {
  position: relative;
  padding: 5px 0px;
  margin-bottom: 3px; }
  .b-native-ad-teaser::before {
    display: block;
    position: absolute;
    content: 'ANNONS';
    font-size: 11px;
    font-weight: bold;
    top: 7px;
    left: 6px;
    color: #333; }
  .b-native-ad-teaser__inner-wrp {
    padding: 20px 5px 5px;
    background-color: #eceded; }
  .b-native-ad-teaser .b-headline {
    padding: 0 0 3px;
    line-height: 45px; }
    .b-native-ad-teaser .b-headline a {
      font-size: 50px; }
  .b-native-ad-teaser__brand {
    overflow: hidden;
    padding-top: 10px; }
  .b-native-ad-teaser__brand-disclaimer {
    float: left;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px; }
  .b-native-ad-teaser__brand-logo {
    float: right;
    display: block;
    width: auto;
    height: auto;
    max-height: 25px; }
  .b-native-ad-teaser__link {
    color: #111 !important; }
  .b-native-ad-teaser img {
    max-width: 100%;
    width: auto;
    height: auto; }

/* Advanced teasers styles! */
.b-ateaser {
  /* We ned this for WE */
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  /* By default */
  background: #fff; }

.b-teaser_verdana,
.b-teaser_verdana .b-headline {
  font-family: Verdana, sans-serif; }

.b-ateaser__row {
  margin: 0 0 5px; }

.b-ateaser__row_thin {
  margin-bottom: 0; }

.b-ateaser__pic {
  margin: 0 0 5px; }

.b-ateaser__pic_left {
  float: left;
  margin-right: 10px; }

.b-ateaser__pic_right {
  float: right;
  margin-left: 10px; }

.b-ateaser__link-headline {
  font-weight: bold; }

a.b-ateaser__link-subheadline {
  color: #212121;
  font-size: 16px; }

a.b-ateaser__link-blogger-name {
  font-weight: bold;
  color: #000; }

a.b-ateaser__link-blogger-type {
  font-style: italic;
  color: #000; }

.b-ateaser__separator {
  overflow: hidden;
  clear: both;
  /* Why? */
  width: 100%;
  height: 1px;
  margin: 8px 0;
  padding: 0;
  background: transparent; }

.b-ateaser_footer.b-ateaser_separator {
  margin-bottom: 0;
  padding-bottom: 0; }

.b-ateaser_footer .l-columns .b-ateaser__link-headline,
.b-ateaser_footer .l-columns .b-ateaser__link-subheadline {
  word-wrap: break-word; }

.b-ateaser_straight .b-headline,
.b-ateaser_straight .b-ateaser__row,
.b-ateaser_straight .b-photo__description {
  margin-left: 5px;
  margin-right: 5px; }

.b-ateaser_straight .b-headline,
.b-ateaser_straight .b-ateaser__row {
  margin-top: 5px; }

.b-ateaser_straight .b-ateaser__row_thin {
  margin-top: 0; }

.b-ateaser_separator {
  padding-bottom: 6px;
  margin-bottom: 3px; }

.no-left-column .b-ateaser_separator {
  border-bottom: 1px #e4e4e4 solid; }

.b-ateaser_separator.b-ateaser_auto.b-ateaser_third-column {
  padding-bottom: 0; }

.b-ateaser.b-ateaser_themes-grey {
  background: #eceded; }

.b-ateaser.b-ateaser_themes-blue {
  background: #d9f1ff; }

.b-ateaser.b-ateaser_themes-darkblue {
  background: #0366a0; }

.b-ateaser.b-ateaser_themes-darkblue .b-headline,
.b-ateaser.b-ateaser_themes-darkblue .b-headline a,
.b-ateaser.b-ateaser_themes-darkblue .b-ateaser__folding-link,
.b-ateaser.b-ateaser_themes-darkblue .b-photo__description,
.b-ateaser.b-ateaser_themes-darkblue .b-ateaser__link-headline,
.b-ateaser.b-ateaser_themes-darkblue .b-ateaser__link-subheadline {
  color: #fff !important; }

.b-ateaser.b-ateaser_themes-yellow {
  background: #fffbdb; }

.b-ateaser.b-ateaser_themes-green {
  background: #298e02; }

.b-ateaser.b-ateaser_themes-red {
  background: #ec2925; }

.b-ateaser.b-ateaser_themes-black {
  background: #000; }

.b-ateaser.b-ateaser_themes-black .b-headline,
.b-ateaser.b-ateaser_themes-black .b-headline a,
.b-ateaser.b-ateaser_themes-black .b-ateaser__folding-link,
.b-ateaser.b-ateaser_themes-black .b-photo__description,
.b-ateaser.b-ateaser_themes-black .b-ateaser__link-headline,
.b-ateaser.b-ateaser_themes-black .b-ateaser__link-subheadline {
  color: #fff !important; }

.b-ateaser.b-ateaser_themes-white {
  background: #fff; }

.b-ateaser.b-ateaser_themes-tv-footer .b-headline,
.b-ateaser.b-ateaser_themes-tv-footer .b-headline a,
.b-ateaser.b-ateaser_themes-tv-footer .b-ateaser__folding-link,
.b-ateaser.b-ateaser_themes-tv-footer .b-photo__description,
.b-ateaser.b-ateaser_themes-tv-footer .b-ateaser__link-headline,
.b-ateaser.b-ateaser_themes-tv-footer .b-ateaser__link-subheadline {
  color: #fff !important; }

/* TODO Bind to Advanced teaser plugins? */
/*.b-ateaser.b-ateaser_themes-darkblue h1, 
.b-ateaser.b-ateaser_themes-darkblue a, 
.b-ateaser.b-ateaser_themes-black h1,
.b-ateaser.b-ateaser_themes-black a { color: #fff !important; }*/
.b-ateaser__folding {
  overflow: hidden;
  /*visibility: hidden;*/
  display: none;
  height: 0px;
  margin: 2px 0 0; }

.b-ateaser__folding-preview {
  height: 1px;
  background: red; }

.b-ateaser__folding-link {
  margin: 5px;
  font-weight: bold;
  float: right; }

.b-ateaser_first-column.b-ateaser_separator {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 3px solid #e2e2e2; }

.b-ateaser_first-column .l-columns .b-ateaser__link-headline,
.b-ateaser_first-column .l-columns .b-ateaser__link-subheadline {
  word-wrap: break-word; }

.b-ateaser_second-column {
  padding: 5px 5px 0; }

.b-ateaser_third-column.b-ateaser_separator {
  margin-bottom: 5px;
  padding-bottom: 0;
  position: static !important; }

.b-ateaser_auto {
  /*font-size: 13px;*/
  line-height: 16px; }

.b-ateaser_rotator,
.b-ateaser_rotator.b-ateaser_third-column {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0 none; }

.b-slideshow {
  position: relative;
  margin: 5px 0 5px;
  padding: 0; }

.b-slideshow_two-columns-wide.b-slideshow_white .b-title,
.b-slideshow_one-column-wide.b-slideshow_white .b-title {
  margin-left: 5px;
  margin-right: 5px; }

.b-slideshow_two-columns-wide {
  padding-top: 5px; }

.b-slideshow__close {
  line-height: 20px;
  float: right;
  height: 20px;
  padding: 0 25px 0 0;
  background: url("/Static/images/common-sprite.png?v1651938f63f") 100% -126px no-repeat; }

a.b-slideshow__close {
  font-size: 15px;
  text-transform: uppercase;
  color: #ffffff; }

.b-slideshow__controls {
  position: relative;
  padding: 5px;
  text-align: center;
  vertical-align: middle; }

.b-slideshow__header {
  padding: 5px 5px 0; }

.b-slideshow__holder {
  position: relative;
  overflow: hidden;
  height: 410px;
  -ms-touch-action: none; }

.b-slideshow__holder-wrap {
  padding: 5px 5px 0;
  text-align: center;
  clear: both; }

.b-slideshow__item {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden; }

.b-slideshow__prev {
  display: inline-block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  text-indent: -999em;
  vertical-align: top;
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat;
  background-position: 0 0; }

.b-slideshow__open {
  float: left;
  overflow: hidden;
  width: 19px;
  height: 16px;
  text-indent: -999em;
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat;
  background-position: 0 -56px; }

.b-slideshow__next {
  display: inline-block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  text-indent: -999em;
  vertical-align: top;
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat;
  background-position: -18px 0; }

.b-slideshow__share {
  float: right;
  width: 50px;
  margin: 0;
  padding: 0;
  list-style: none; }

.b-slideshow__share li {
  display: inline; }

.b-slideshow__share__twitter a {
  position: relative;
  top: -1px;
  display: block;
  float: right;
  overflow: hidden;
  width: 16px;
  height: 16px;
  margin: 0 0 0 3px;
  text-indent: -999em;
  background: url("/Static/css/expressen-main/blocks/b-slideshow/__share/__twitter/b-slideshow__share__twitter.png?v1651938f5c4") no-repeat; }

.b-slideshow__share__facebook a {
  position: relative;
  top: -1px;
  display: block;
  float: right;
  overflow: hidden;
  width: 16px;
  height: 16px;
  margin: 0 0 0 3px;
  text-indent: -999em;
  background: url("/Static/css/expressen-main/blocks/b-slideshow/__share/__facebook/b-slideshow__share__facebook.png?v1651938f5c3") no-repeat; }

.b-slideshow__description {
  font-size: 13px;
  font-style: italic;
  width: 100%; }

.b-slideshow__description__item {
  float: right;
  display: block;
  visibility: hidden;
  width: 100%;
  margin-left: -100%; }

.b-slideshow__description-wrap {
  padding: 0 5px; }

.b-slideshow__state {
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  position: relative;
  /*top: -2px;*/
  margin: 0 3px;
  vertical-align: top; }

.b-slideshow_black .b-slideshow__holder-wrap {
  padding-bottom: 5px;
  background: #000000; }

.b-slideshow_popup {
  font-size: 13px;
  padding-top: 5px;
  color: #ffffff;
  background: #000000; }

.b-slideshow_popup .b-slideshow__header {
  padding-top: 0; }

.b-slideshow_popup {
  width: 922px; }

.b-slideshow_popup .b-slideshow__holder-wrap {
  width: 912px; }

.b-slideshow_popup .b-slideshow__item {
  width: 912px;
  height: 506px; }

.b-slideshow_popup .b-slideshow__controls {
  position: relative;
  float: right;
  width: 125px;
  padding-bottom: 0;
  text-align: center; }

.b-slideshow_popup .b-slideshow__group {
  padding-bottom: 5px; }

.b-slideshow_popup .b-slideshow__description-wrap {
  overflow: hidden;
  padding: 5px 0 0 5px; }

.b-slideshow_popup .b-slideshow__description {
  text-align: left; }

.b-slideshow_popup .b-slideshow__prev, .b-slideshow_popup .b-slideshow__next {
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat;
  overflow: hidden;
  width: 21px;
  height: 21px;
  text-indent: -999em;
  vertical-align: top; }

.b-slideshow_popup .b-slideshow__next {
  background-position: -23px -34px; }

.b-slideshow_popup .b-slideshow__prev {
  background-position: 0px -34px; }

.b-slideshow_popup .b-slideshow__state {
  font-size: 16px;
  line-height: 21px;
  vertical-align: top; }

.b-slideshow_popup .b-slideshow__share,
.b-slideshow_popup .b-slideshow__open {
  display: none; }

.b-slideshow_preview {
  /*margin-top: 0;*/
  margin-left: -5px;
  margin-right: -5px; }

.b-slideshow_preview .b-slideshow__holder-wrap {
  padding-top: 0; }

.b-slideshow_preview .b-slideshow__item {
  width: 100%;
  overflow: hidden; }

.b-slideshow-locked {
  margin: 5px; }

.b-slideshow-locked__description {
  font-size: 13px;
  font-style: italic; }

.b-slideshow-locked__controls {
  position: relative;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  color: #666; }

.b-slideshow__two-columns-wide {
  margin-left: 0;
  margin-right: 0; }

.b-breaking-news {
  line-height: 19px;
  padding: 5px 5px 0;
  background: #ffffff; }

.b-breaking-news__inner {
  border-bottom: 1px solid #e2e2e2; }

.b-breaking-news__content {
  overflow: hidden;
  vertical-align: middle; }

.b-breaking-news__item {
  display: none;
  overflow: hidden; }

.b-breaking-news__item:first-child {
  display: block; }

.b-breaking-news__item.vitem {
  display: block; }

.b-breaking-news__item .b-ateaser__row {
  line-height: 16px;
  margin: 2px 0 6px; }

.b-breaking-news__controls {
  float: right;
  padding: 0 0 0 3px; }

.b-breaking-news__controls__control {
  float: left;
  overflow: hidden;
  width: 15px;
  height: 19px;
  margin: 0 1px 0 0;
  text-indent: -999em;
  background: url("/Static/css/expressen-main/blocks/b-breaking-news/__controls/__control/b-breaking-news__controls__control.png?v1651938f56b") no-repeat; }

.b-breaking-news__controls__control_prev {
  background-position: -2px -57px; }

.b-breaking-news__controls__control_next {
  margin: 0;
  background-position: -21px -57px; }

.b-breaking-news__controls__control_start {
  display: none;
  background-position: -2px -39px; }

.b-breaking-news__controls__control_stop {
  background-position: -2px -39px; }

.b-latest-post {
  position: relative; }

.b-latest-post__content {
  overflow: hidden; }

.b-latest-post__pic {
  display: block; }

.b-latest-post__pic img {
  display: block;
  padding-top: 2px; }

.b-latest-post__pic_header {
  float: right;
  height: 87px; }

.b-latest-post__quote {
  font-weight: bold; }

a.b-latest-post__quote {
  color: #000000; }

.b-latest-post__to-blog {
  margin-top: 6px; }

.b-latest-post_header {
  font-weight: bold;
  overflow: hidden;
  height: 87px; }

.b-latest-post_header .b-latest-post__content {
  position: relative;
  overflow: hidden;
  padding-right: 5px; }

.b-latest-post_header .b-link-icon {
  overflow: hidden;
  height: 1.2em; }

.b-latest-post_third {
  font-weight: bold;
  overflow: hidden;
  height: 87px; }

.b-latest-post_third .b-latest-post__content {
  padding: 10px 5px 0 5px; }

.b-latest-post_third .b-latest-post__pic {
  float: left;
  height: 87px; }

.b-latest-post_third .b-latest-post__to-blog {
  overflow: hidden;
  margin-left: 5px;
  padding: 0 5px; }

.b-latest-post_half-third {
  font-weight: bold; }

.b-latest-nticker__content {
  overflow: hidden;
  vertical-align: middle;
  padding: 7px 0 0 6px;
  line-height: 16px;
  margin: 2px 0 6px; }

.b-latest-nticker_no-vignette .b-latest-nticker__content {
  padding-left: 5px; }

.b-latest-nticker__controls, .b-latest-nticker__controls_black {
  float: right;
  padding: 0 0 0 3px;
  margin: 4px 5px 0 0; }

.b-latest-nticker_no-subheadline .b-latest-nticker__controls, .b-latest-nticker_no-subheadline .b-latest-nticker__controls_black {
  margin-top: 7px; }

.b-latest-nticker__controls__control_next {
  margin: 0;
  background-position: -21px -57px; }

.b-latest-nticker__controls_black .b-latest-nticker__controls__control_next {
  margin: 0;
  background-position: -21px -94px; }

.b-latest-nticker__controls__control_prev {
  background-position: -2px -57px; }

.b-latest-nticker__controls_black .b-latest-nticker__controls__control_prev {
  background-position: -2px -94px; }

.b-latest-nticker__controls__control_start {
  display: none;
  background-position: -2px -39px; }

.b-latest-nticker__controls_black .b-latest-nticker__controls__control_start {
  display: none;
  background-position: -2px -76px; }

.b-latest-nticker__controls__control_stop {
  background-position: -2px -39px; }

.b-latest-nticker__controls_black .b-latest-nticker__controls__control_stop {
  background-position: -2px -76px; }

.b-latest-nticker__item {
  display: none;
  overflow: hidden;
  line-height: 18px;
  height: 18px;
  margin-top: -3px;
  margin-left: -1px; }

.b-latest-nticker_no-subheadline .b-latest-nticker__item {
  margin-top: 0;
  margin-left: 0; }

.b-latest-nticker__item-placeholder {
  display: none; }

.b-latest-nticker__item__link-heading {
  font-weight: bold; }

.b-latest-nticker_black .b-latest-nticker__item__link-heading {
  color: white; }

.b-latest-nticker_no-subheadline .b-latest-nticker__item__link-heading {
  font-size: larger;
  margin-left: 3px;
  letter-spacing: 0.5px;
  word-spacing: -0.4px; }

.b-latest-nticker__item__link-heading i.b-link-icon__icon {
  position: relative;
  margin-top: 0px; }

.b-latest-nticker_special-icon .b-latest-nticker__item__link-heading i.b-link-icon__icon {
  position: relative;
  margin-top: 1px; }

.b-latest-nticker_no-subheadline i.b-link-icon__icon {
  position: relative;
  margin-right: 7px; }

.b-latest-nticker__item__link-subheadline {
  color: black !important;
  letter-spacing: -0.1px;
  word-spacing: -0.8px; }

.b-latest-nticker_black .b-latest-nticker__item__link-subheadline {
  color: white !important; }

.b-latest-nticker__item__timestamp {
  font-weight: bold;
  color: red; }

.b-latest-nticker_no-subheadline .b-latest-nticker__item__timestamp {
  font-size: larger; }

.b-latest-nticker_black .b-latest-nticker__item__timestamp {
  color: white; }

.b-latest-nticker_special-icon .b-latest-nticker__item__timestamp {
  margin-left: -1px; }

.b-latest-nticker {
  height: 27px; }

.b-latest-nticker_no-vignette {
  height: 26px; }

.b-latest-nticker_no-subheadline {
  height: 33px; }

.b-latest-nticker_no-subheadline.b-latest-nticker_no-vignette {
  height: 32px; }

.b-latest-nticker_white {
  background: white; }

.b-latest-nticker_black {
  background: black; }

.b-latest-nticker__title-vignette {
  margin-bottom: -2px;
  padding: 5px 0 3px 6px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0.1px;
  word-spacing: 0.6px;
  overflow: hidden; }

.b-news-flash {
  position: fixed;
  bottom: 0;
  width: 974px;
  margin: 0 0 0 -9px;
  padding: 7px 12px;
  z-index: 10000;
  border-top: 2px solid #000000;
  background: none repeat scroll 0 0 #FDF000 !important; }

.b-news-flash_preview {
  position: relative;
  bottom: auto; }

.b-news-flash__inner {
  height: 34px;
  border-bottom: 0px; }

.b-news-flash__close {
  position: absolute;
  top: 3px;
  right: 1px;
  display: block;
  overflow: hidden;
  width: 20px;
  height: 20px;
  z-index: 10;
  text-indent: -999em;
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat 100% -90px transparent; }

.b-news-flash__extra {
  float: left;
  overflow: hidden;
  width: 127px;
  height: 27px;
  margin: 0 10px 0 3px;
  text-indent: -999em;
  background: url("/Static/css/expressen-main/blocks/b-news-flash/__extra/b-news-flash__extra.png?v1651938f5a5") no-repeat scroll 0 0 transparent; }

.b-news-flash__item {
  position: relative;
  top: -1px;
  overflow: hidden;
  width: 800px;
  padding: 0 3px 4px; }

.b-news-flash__item,
.b-news-flash__item a {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  color: #000000; }

.b-news-flash__item a:hover {
  text-decoration: none; }

/**
 * Reusable blocks, blocks that are not used as is, they just solution for several common tasks
 * For example: .b-articles-list. Very often used block. Story page, story widget,
 * columnist page, tab widget... Everywhere we use the same markup for that list & different
 * modificator to make it looks on the mockups.
 * -------------------------------------------------------------------------------------------
 */
/*----------------------------------*    $b-list
\*------------------------------------*/
/**
 * Block which contains article listings, displayed in various manners
 */
.b-list {
  font-weight: bold;
  background: #fff; }
  .b-list li {
    position: relative; }

/*==========  __elements  ==========*/
.b-list__nbr {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 3px;
  color: #fff;
  background: #ec2925; }

.b-title_blue + div .b-list_most-list .b-list__nbr {
  background: #005383; }

.b-list_most-seen a {
  font-weight: normal;
  color: #000; }

.b-list_enhanced h2 {
  margin: 6px;
  color: #333; }

.b-list_enhanced .block-list, .b-list_enhanced .matrix {
  padding: 0 5px; }
  .b-list_enhanced .block-list li, .b-list_enhanced .matrix li {
    margin: 0;
    padding: 5px 0;
    border-top: 1px solid #dcdbd9; }
    .b-list_enhanced .block-list li:first-child, .b-list_enhanced .matrix li:first-child {
      border-top: 0 none; }
  .b-list_enhanced .block-list .media, .b-list_enhanced .matrix .media {
    height: 60px; }

.b-list_enhanced .b-link__read-more {
  margin-top: 5px; }

.b-list_enhanced .media__img {
  position: relative;
  min-height: 60px;
  margin-right: 10px;
  background: #e8e8e8 url("/Static/images/wasp.png?v1651938f648") no-repeat 0 0;
  width: 60px; }
  .b-list_enhanced .media__img img {
    display: block;
    width: 60px; }

.b-list_enhanced .block-list.noimages .media .media__img, .b-list_enhanced .noimages.matrix .media .media__img {
  display: none; }

.b-list_enhanced .block-list.noimages .b-date, .b-list_enhanced .noimages.matrix .b-date {
  min-width: 60px;
  margin-right: 10px;
  float: left;
  text-align: center; }

.b-list_enhanced .block-list.noimages a, .b-list_enhanced .noimages.matrix a {
  display: block;
  overflow: hidden; }

.b-list_enhanced .b-list__social {
  font-size: 11px;
  font-weight: normal;
  line-height: 12px;
  margin: 3px 0 0;
  color: #666; }

.b-list_enhanced__date {
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 3px;
  color: #999; }

.mod-flexbox .b-list_enhanced .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-align-items: center;
  -ms-flex-align: center; }

.mod-flexbox .b-list_enhanced .media__img {
  min-width: 60px; }

.mod-flexbox .b-list_enhanced .media__body {
  width: 100%;
  -ms-flex: 0 1 auto; }

.b-articles-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.b-articles-list__item {
  overflow: hidden;
  margin: 2px 0 0; }

.b-articles-list__item:first-child {
  margin: 0 !important; }

.b-articles-list__item__pic {
  float: left;
  margin: 3px 4px 0 0; }

.b-articles-list__item__pic img {
  display: block; }

.b-articles-list__item__pic_big {
  margin: 4px 4px 0 0; }

.b-articles-list__item__content {
  font-weight: bold;
  overflow: hidden; }

.b-articles-list__item__headline {
  font-size: 20px;
  line-height: 21px;
  margin-bottom: 2px;
  padding: 0; }

.b-articles-list__item__headline a {
  color: #000000; }

.b-articles-list__item__number {
  float: left;
  margin: 0 5px 0 0; }

.b-articles-list_stories-page {
  margin: 10px 0 0 0 !important; }

.b-articles-list_story-page {
  /*margin-bottom: 13px;*/ }

.b-articles-list_story-page .b-articles-list__item {
  margin: 2px 0 0;
  padding: 0 0 5px;
  border-bottom: 1px solid #e2e2e2; }

.b-articles-list_story-widget {
  position: relative;
  margin: 0 0 4px; }

.b-articles-list_story-widget .b-articles-list__item {
  margin: 3px 0 0;
  padding: 0 0 3px;
  border-bottom: 1px #e4e4e4 solid; }

.mod-flexbox .b-articles-list_story-widget .b-articles-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center; }
  .mod-flexbox .b-articles-list_story-widget .b-articles-list__item .b-articles-list__item__content {
    -ms-flex: 0 1 auto; }

.b-articles-list_story-widget .b-articles-list__item__pic {
  min-width: 60px;
  margin-top: 0;
  margin-right: 10px; }

.black-text a,
.black-text a:link,
.black-text a:visited {
  text-decoration: none;
  color: #000; }

.b-articles-list_columnist-landing {
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 58px; }

.b-articles-list_columnist-landing .b-link-icon {
  display: block;
  padding: 0 0 0 13px;
  /*background: url(b-list-articles-bullet.gif) 0 7px no-repeat;*/ }

.b-articles-list_columnist-landing span {
  font-size: 13px !important;
  font-weight: normal;
  line-height: 14px;
  display: block;
  height: 14px;
  margin: 3px 0 3px;
  padding: 0 0 0 15px; }

.b-articles-list_latest-news {
  margin: 0 0 7px; }

.b-articles-list_latest-news .b-articles-list__item {
  margin: 3px 0 0 0; }

.b-articles-list_latest-news .b-articles-list__item:first-child {
  margin: 0; }

.b-articles-list_hot-news {
  margin: 0 0 10px; }

.b-articles-list_most-seen {
  background: #ffffff; }

.b-articles-list_most-seen .b-latest-articles__content {
  padding: 0; }

.b-articles-list_most-seen .b-articles-list__item__content a.b-link-icon {
  font-weight: normal;
  color: #000; }

.b-articles-list_most-seen .b-articles-list__item {
  margin: 3px 0 0; }

.b-articles-list_most-seen .b-articles-list__item__number {
  font-weight: bold; }

.b-articles-list_search-filter {
  font-size: 13px;
  margin-bottom: 5px; }

.b-articles-list_search-filter .b-articles-list__item {
  margin: 3px 0 0; }

.b-articles-list_search-page {
  margin-bottom: 5px; }

.b-articles-list_search-page .b-articles-list__item {
  margin: 5px 0 0;
  padding: 0 0 5px;
  border-bottom: 1px solid #e2e2e2; }

/**
 * Commonly used, small blocks
 * -------------------------------------------------------------------------------------------
 */
/*------------------------------------*    $BLOCK-LIST
\*------------------------------------*/
/**
 * Create big blocky lists of content, e.g.:
 *
   <ul class=block-list>
      <li>Foo</li>
      <li>Bar</li>
      <li>Baz</li>
      <li><a href=# class=block-list__link>Foo Bar Baz</a></li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 *
 */
.block-list, .matrix {
  list-style: none;
  margin-left: 0;
  padding-left: 0; }

.block-list > li, .matrix > li {
  padding: 5px 6px; }

/* this can be removed when all floats are removed from listitems. */
.block-list > li:after, .matrix > li:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0; }

.block-list__link, .matrix__link {
  display: block;
  padding: 6px;
  margin: -6px;
  /* TODO: Incorporate to base.scss */
  color: #222222; }

.block-list--zebra > li:nth-child(2n+1) {
  background: #f8f7f3; }

.block-list--zebra > li:nth-child(2n) {
  background: #ecebe7; }

/*------------------------------------*    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn't already have a class to which you could apply this
 * styling, e.g. if you need to float '.main-nav' left then add 'float:left;' to
 * that ruleset as opposed to adding the '.float--left' class to the markup.
 *
 * A lot of these classes carry '!important' as you will always want them to win
 * out over other selectors.
 */
/*
 * Add/remove floats
 */
.float_right {
  float: right !important; }

.float_left {
  float: left  !important; }

.float_none {
  float: none  !important; }

/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clear left/right float
 */
.clear {
  clear: both; }

/*
 * Self-clear children (clearfix-hack)
 */
/* IE6 */
* html .cf, * html .matrix, * html .multi-list, * html .b-bullet-list {
  height: 1%;
  overflow: visible; }

/* IE7 */
* + html .cf, * + html .matrix, * + html .multi-list, * + html .b-bullet-list {
  min-height: 1%; }

/* Others */
.cf:after, .matrix:after, .multi-list:after, .b-bullet-list:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0; }

/*------------------------------------*    $MATRIX
\*------------------------------------*/
/**
 * Create a grid of items out of a single list, e.g.:
 *
   <ul class="matrix  three-cols">
       <li class=all-cols>Lorem</li>
       <li>Ipsum <a href=#>dolor</a></li>
       <li><a href=# class=matrix__link>Sit</a></li>
       <li>Amet</li>
       <li class=all-cols>Consectetuer</li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 *
 */
.matrix {
  border-left-width: 1px; }
  .matrix > li {
    float: left;
    border-right-width: 1px; }

/**
 * The '.multi-list' object is a lot like the '.matrix' object only without the
 * blocky borders and padding.
 *
   <ul class="multi-list  four-cols">
       <li>Lorem</li>
       <li>Ipsum</li>
       <li>Dolor</li>
       <li>Sit</li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 *
 */
.multi-list, .b-bullet-list {
  list-style: none;
  margin-left: 0; }

.multi-list > li, .b-bullet-list > li {
  float: left; }

/**
     * Apply these classes alongside the '.matrix' or '.multi-list' classes on
     * lists to determine how wide their columns are.
     */
.two-cols > li {
  width: 50%; }

.three-cols > li {
  width: 33.333%; }

.four-cols > li {
  width: 25%; }

.five-cols > li {
  width: 20%; }

/**
     * Unfortunately we have to qualify this selector in order to bring its
     * specificity above the '.[number]-cols > li' selectors above.
     */
.matrix > .all-cols,
.multi-list > .all-cols, .b-bullet-list > .all-cols {
  width: 100%; }

.b-bullet, .b-rank-list__full-list__bullet, .b-bullet-list > li > a {
  display: block;
  width: 2.143em;
  height: 2.143em;
  border-radius: 2.143em;
  background-color: #000000;
  text-align: center;
  font-weight: bold;
  line-height: 2.143em; }

.b-bullet-list > li {
  margin: 0 5px 5px 0; }
  .b-bullet-list > li > a {
    -webkit-transition: background-color .2s;
    transition: background-color .2s; }
    .b-bullet-list > li > a:link, .b-bullet-list > li > a:visited {
      color: #ffffff; }
    .b-bullet-list > li > a:hover, .b-bullet-list > li > a.is_active {
      background-color: #0366a0;
      text-decoration: none; }

.b-bb_red, .fg-red {
  color: #ec2925; }

.b-bb_blue, .fg-blue {
  color: #005383; }

.b-bb_black, .fg-black {
  color: #000000; }

.b-bb_bold {
  font-family: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.05em;
  letter-spacing: -1px; }

.b-bb_bold-link {
  font-weight: bolder; }

.b-bb_italic {
  font-style: italic; }

.b-headline {
  /* Needed for IE7 duplicate words issue */
  position: relative;
  font-family: Arial, Tahoma, 'Helvetica Neue', Helvetica, 'DejaVu Sans', sans-serif;
  /* Default font-size */
  font-size: 60px;
  margin: 0 0 3px; }

.b-headline,
.b-headline a {
  font-weight: bold;
  line-height: 1em;
  text-decoration: none;
  word-wrap: break-word;
  color: #000000; }

.b-headline a:hover {
  text-decoration: none; }

.b-headline_bold,
.b-headline_bold a {
  font-family: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  font-weight: 900; }

.b-headline_light,
.b-headline_light a {
  font-family: Arial, Tahoma, sans-serif;
  font-weight: normal;
  word-spacing: -2px;
  letter-spacing: 0px; }

.b-headline_italic {
  font-style: italic; }

.b-headline_rubric {
  word-spacing: -.06em; }

.b-headline_article {
  font-size: 62px;
  /*line-height: 52px;*/
  margin: 8px 0 10px; }

.no-left-column .b-headline_article {
  margin-top: 12px; }

/*
 * Needed for second part of headline on second page.
 * Markup gonna something like:
 *
 * <h1 class="b-headline b-headline_columnist">
 *   Columnist name & first part of headline on tha columnist article
 * </h1>
 * *** Some content ***
 * <h1 class="b-headline b-headline_article b-headline_article-columnist">
 *  Article title & second part of headline
 * </h1>
 */
.b-headline_article-columnist {
  font-size: 38px;
  /*line-height: 42px;*/ }

.b-headline_columnist {
  margin: 0 0 0 0;
  padding: 10px 0 8px;
  text-transform: uppercase; }

.b-headline_columnist .headline-wrap {
  position: relative;
  display: inline-block; }

* + html .b-headline_columnist a,
* + html .b-headline_columnist .headline-wrap {
  zoom: 1; }

.b-headline_columnist,
.b-headline_columnist a,
.b-headline_columnist .headline-wrap {
  font: 48px/1 'Arial Black', 'Arial Bold', Arial, Helvetica, sans-serif;
  font-weight: 900; }

.b-headline_columnist a {
  position: relative;
  display: inline-block;
  color: #000; }

.b-headline_columnist a:hover {
  text-decoration: none; }

.b-headline_columnist .line {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e10933; }

.b-headline_columnist-landing {
  position: relative;
  margin: 0 0 15px -5px; }

.b-headline_gallery {
  margin: 0 0 5px; }

.b-headline_gallery-medium {
  font-size: 32px;
  margin: 11px 0 8px; }

.b-headline_gallery-thanks {
  font-size: 32px;
  margin: 2px 0 8px;
  word-spacing: 0; }

.b-headline_search-page {
  font-size: 32px;
  /*line-height: 38px;*/
  margin-bottom: 3px; }

.b-headline_story-page {
  font-size: 54px;
  /*line-height: 44px;*/
  margin: 0 0 10px;
  padding: 4px 0 0; }

.b-headline_quiz {
  font-size: 32px;
  /*line-height: 38px;*/
  margin: 12px 0 4px; }

.b-headline_ateaser {
  /* needed to prevent descender letters being cut */
  /*padding-bottom: .1em;*/ }

.b-headline_georgia,
.b-headline_georgia a {
  font-family: Georgia, serif;
  line-height: 1em;
  letter-spacing: -1px;
  word-spacing: 0; }

.b-headline_auto {
  font-size: 54px;
  line-height: 1em;
  display: table;
  margin-bottom: 5px;
  padding: 0; }

.b-headline_auto-first {
  margin-top: 6px; }

.b-headline_auto-medium {
  font-size: 26px;
  line-height: 27px;
  padding: 0; }

.b-headline_auto-third {
  font-size: 29px;
  line-height: 1em;
  margin: 0 0 5px;
  padding: 0; }

.b-headline_bold-big {
  letter-spacing: -1px;
  word-spacing: -4px; }

.b-headline_bold-medium {
  letter-spacing: -1px;
  word-spacing: -4px; }

.b-headline_bold-small {
  letter-spacing: 0;
  word-spacing: -2px; }

.b-headline_normal-big {
  letter-spacing: -2px;
  word-spacing: -2px; }

.b-headline_normal-medium {
  letter-spacing: -1px;
  word-spacing: -2px; }

.b-headline_normal-small {
  letter-spacing: -1px;
  word-spacing: -1px; }

.b-date {
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  vertical-align: top;
  color: #919191; }

.b-date_articles-list {
  margin: 0 0 0 4px; }

.b-date_articles-list-reversed {
  margin: 0 5px 0 0; }

.b-date_search-page {
  font-size: 11px; }

.b-date_hot-news-page {
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  float: left;
  display: block;
  height: 16px;
  margin: 0 5px 0 0; }

.b-input-text input {
  width: 100%;
  height: 22px;
  /*margin: 0;*/
  /*padding: 1px 4px 0 4px;*/
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  /*border: none !important;*/
  /*background: #ffffff;*/ }

.b-input-text textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box; }

.b-input-text input,
.b-input-text textarea {
  font-family: Arial, "Helevtica Neue", Tahoma, sans-serif;
  font-size: 14px; }

.b-input-text-small-search {
  float: left;
  width: 205px;
  margin: 0 5px 0 0; }

.b-input-text-small-search input {
  font: 11px 'Helvetica Neue', Helvetica, Arial, Tahoma, sans-serif;
  color: #909090; }

.b-input-text > input {
  -webkit-box-shadow: inset 1px 1px 1px 0px #ccc;
  box-shadow: inset 1px 1px 1px 0px #ccc;
  border: 1px solid #b9b9b9;
  background: #fff; }

.b-input-text > input {
  -webkit-box-shadow: inset 1px 1px 0 0 rgba(210, 210, 210, 0.8);
  box-shadow: inset 1px 1px 0 0 rgba(210, 210, 210, 0.8);
  border: 1px solid #b9b9b9;
  background: #fff; }

.b-input-text_stats-filters > input {
  width: 208px;
  height: 24px;
  margin: 0 5px 0 0; }

.b-input-text_stats-filters > input {
  font-size: 12px;
  line-height: 24px;
  padding: 0 7px; }

.b-input-text_subscribe-email > input {
  height: 30px;
  padding: 0 6px; }

.b-input-submit input {
  font: 12px/18px "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  height: 18px;
  margin: 0;
  padding: 0 4px;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  background: none; }

.b-input-submit-small-search {
  float: left; }

.b-input-submit-small-search input {
  color: #ffffff;
  background: #e10933; }

.b-link-icon {
  font-weight: bold; }

.b-link-icon.active {
  margin-left: 20px;
  padding-left: 12px;
  background: url("/Static/css/framework/blocks/b-link-icon/_type/cruzBlackX.gif?v1651938f615") no-repeat 0 4px; }

.b-link-icon_type .b-link-icon__icon {
  position: relative;
  float: left;
  width: 16px;
  height: 16px;
  margin: -1px 3px 0 0; }

.b-link-icon__icon {
  background: url("/Static/css/framework/blocks/b-link-icon/_type/types-new.png?v1651938f616") no-repeat; }

.b-link-icon_tool .b-link-icon__icon {
  position: relative;
  float: left;
  width: 16px;
  height: 16px;
  margin: -1px 3px 0 0; }

.b-link-icon_tool .b-link-icon__icon {
  background: url("/Static/css/framework/blocks/b-link-icon/_tool/tools-icon-sprite.png?v1651938f615") no-repeat; }

.b-link-icon_big > .b-link-icon__icon {
  height: 18px;
  margin-top: 1px; }

.b-link-icon_email-sharing {
  float: left;
  overflow: hidden;
  height: 16px;
  margin-top: 1px; }

.b-link-icon_email-sharing_top-toolbar {
  padding-left: 4px !important;
  padding-right: 9px !important; }

.b-link-icon_section-list .b-link-icon__icon {
  float: none;
  display: block; }

.b-link-icon_save-bookmark {
  float: left;
  overflow: hidden;
  height: 16px;
  margin: 4px 5px 1px 0; }

.icon.b-link-icon_report-abuse,
.b-link-icon_report-abuse {
  float: none;
  display: inline-block;
  vertical-align: top; }

.b-link-icon_gallery-abuse {
  float: none !important;
  /*Quick-fix, this in NOT a practical solution.*/ }

* + html .b-link-icon_gallery-abuse {
  zoom: 1; }

.b-link-icon_gallery-abuse .b-link-icon__icon {
  position: absolute;
  right: 0;
  width: 11px;
  height: 15px; }

.b-link-icon_cross .b-link-icon__icon {
  margin-left: 10px; }

.b-link-icon_no-underline {
  text-decoration: none !important;
  cursor: default; }

.b-link-icon_tv-arrow i.b-link-icon__icon {
  background: url("/Static/css/expressen-main/blocks/b-link-icon/_tv-arrow/b-link-icon_tv-arrow.png?v1651938f59a") no-repeat;
  width: 12px;
  height: 16px;
  margin: 1px 1px 0 0; }

.b-link-icon_user .b-link-icon__icon {
  position: relative;
  top: 1px;
  display: inline;
  display: inline-block;
  width: 14px;
  height: 12px;
  margin: 0 3px 0 0; }

.b-link-icon_user .b-link-icon__icon {
  background: url("/Static/css/expressen-premium/blocks/b-link-icon/_user/b-link-icon_user.png?v1651938f5e4") no-repeat; }

* + html .b-link-icon_user .b-link-icon__icon {
  vertical-align: top; }

.b-option {
  display: block;
  padding: 2px 0;
  cursor: pointer; }

.b-option input {
  position: relative;
  top: -2px;
  width: 13px;
  height: 13px;
  margin: 0;
  padding: 0;
  vertical-align: bottom; }

.b-option_separated {
  padding: 0 0 10px;
  border-bottom: 1px solid #e2e2e2; }

.b-social-panel {
  float: left;
  height: 21px; }

.b-social-panel__twitter {
  overflow: hidden;
  float: left;
  width: 100px; }

.b-social-panel__facebook {
  float: left;
  height: 21px;
  width: 144px; }

.fb_iframe_widget, .fb_iframe_widget span {
  position: static !important; }

.b-social-panel__share-label {
  float: left;
  height: 16px;
  margin: 2px 5px 0 0; }

.b-stat-bar {
  font-size: 13px;
  line-height: 18px;
  overflow: hidden;
  vertical-align: top; }

.b-stat-bar__value,
.b-stat-bar__caption {
  display: block;
  float: left;
  margin: 0 5px 0 0; }

.b-stat-bar__caption {
  width: 115px;
  margin: 0; }

.b-stat-bar__caption__wasp {
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat 100% -182px;
  height: 38px;
  display: block;
  float: right; }

.b-stat-bar__caption__wasp_size-id-0 {
  width: 196px; }

.b-stat-bar__caption__wasp_size-id-1 {
  width: 158px; }

.b-stat-bar__caption__wasp_size-id-2 {
  width: 118px; }

.b-stat-bar__caption__wasp_size-id-3 {
  width: 79px; }

.b-stat-bar__caption__wasp_size-id-4, .b-stat-bar__caption__wasp_size-id-5 {
  width: 38px; }

.b-stat-bar__caption__wasp_size-id-5 {
  background-position: -76px -258px; }

.b-stat-bar__value {
  width: 46px;
  text-align: right; }

.b-stat-bar-average__value {
  width: auto;
  text-align: right; }

.b-stat-bar__bar {
  display: block;
  overflow: hidden; }

.b-stat-bar__bar i {
  display: block;
  height: 11px;
  margin: 3px 0 2px;
  background: #ec2925; }

.b-stat-bar_poll {
  margin: 0 0 3px; }

.b-stat-bar_poll .b-stat-bar__caption {
  font-size: 16px;
  line-height: 18px;
  width: 220px;
  padding: 0 15px 0 0;
  text-align: right; }

.b-stat-bar_poll .b-stat-bar__caption img {
  position: relative; }

.b-stat-bar_poll .b-stat-bar__value {
  padding: 0 14px 0 0; }

.b-poll__chart_wasp .b-stat-bar__value,
.b-poll__chart_wasp .b-stat-bar__bar {
  margin: 7px 0 0; }

.b-poll__chart_wasp .b-stat-bar__bar {
  top: 0; }

.b-stat-bar_poll .b-stat-bar__bar {
  position: relative;
  top: -2px; }

.b-stat-bar_poll .b-stat-bar__bar i {
  height: 25px;
  background: #e70023; }

.b-stat-bar_shared .b-stat-bar__caption {
  width: 110px; }

.b-stat-bar_shared .b-stat-bar__value {
  text-align: left; }

.b-stat-bar_shared .b-stat-bar__bar {
  width: 350px; }

.b-stat-bar_long-shared .b-stat-bar__caption {
  width: 140px; }

.b-stat-bar_long-shared .b-stat-bar__bar {
  width: 350px; }

.b-align-box {
  position: relative;
  display: table;
  overflow: hidden; }

.b-align-box__cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.b-align-box__cell a {
  display: inline-block; }

.b-align-box__cell img {
  display: inline;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; }

.b-align-box_gallery {
  line-height: 175px;
  width: 175px;
  height: 175px;
  margin: 0 0 2px;
  background: #e7e7e7; }

.b-button {
  position: relative;
  display: inline-block;
  padding: 0 5px 0;
  height: 20px;
  background: #d9f1ff;
  vertical-align: middle;
  line-height: 20px;
  cursor: pointer; }

a.b-button_tv {
  padding: 5px 12px;
  height: auto;
  border: 1px solid #fff;
  border-radius: 2px;
  background: url("/Static/css/expressen-main/blocks/b-button/b-button_tv.png?v1651938f577") repeat-x;
  background: #a8a8a8;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a8a8a8), color-stop(50%, #aabdc9), color-stop(100%, #f9fbfc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #a8a8a8 0%, #aabdc9 50%, #f9fbfc 100%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#a8a8a8), color-stop(50%, #aabdc9), to(#f9fbfc));
  background: linear-gradient(to bottom, #a8a8a8 0%, #aabdc9 50%, #f9fbfc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a8a8a8', endColorstr='#f9fbfc',GradientType=0 );
  /* IE6-9 */
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 5px; }

a.b-button_tv:hover {
  -webkit-box-shadow: inset 0 15px 25px -10px white;
  box-shadow: inset 0 15px 25px -10px white;
  text-decoration: none; }

.b-button__arrow-decor {
  font-size: 16px;
  line-height: 16px; }

.b-button_blue {
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  padding: 0 10px;
  text-transform: uppercase;
  text-decoration: none;
  color: #024d7d;
  border: 1px solid #a3cee8; }

.b-quiz__next .b-button_blue {
  font-size: 13px;
  padding: 10px 20px; }

.b-button_disabled {
  color: #999999;
  border-color: #999999;
  background: #e2e2e2;
  cursor: default;
  -webkit-tap-highlight-color: transparent; }

.b-button_disabled:hover {
  text-decoration: none; }

.b-button_hot-news {
  min-width: 106px;
  padding-left: 5px;
  padding-right: 5px;
  letter-spacing: .01em;
  cursor: auto; }

a.b-button_hot-news {
  cursor: pointer; }

.b-photo {
  font-style: italic;
  font-weight: normal !important;
  position: relative;
  text-align: left;
  color: #909090; }

span.b-photo {
  display: block; }

.b-photo img {
  display: block; }

.no-left-column .b-article__media > .b-photo,
.no-left-column .b-rank-list__bullet > .b-photo,
.no-left-column .b-quiz__content > .b-photo {
  margin-left: auto;
  margin-right: auto;
  width: 645px; }

.b-photo__author {
  float: right; }

.b-photo_ateaser {
  font-size: 13px;
  line-height: 16px;
  overflow: hidden; }

.b-photo_ateaser a.b-photo__description {
  display: inline-block;
  color: #999; }

* + html .b-photo_ateaser a.b-photo__description {
  zoom: 1; }

.b-photo_ateaser a.b-photo__description:hover {
  text-decoration: none; }

.b-photo_gallery-main img {
  margin: 0 auto; }

.b-photo_quiz {
  margin-top: 0;
  margin-bottom: 5px; }

.b-photo_heads {
  margin: 0 0 2px; }

.b-photo_left {
  float: left;
  margin-right: 10px;
  margin-bottom: 5px; }

.b-photo_right {
  float: right;
  margin-left: 10px;
  margin-bottom: 5px; }

.b-photo_full {
  float: right; }

.b-photo_full:after {
  clear: both;
  display: block;
  content: ''; }

.b-photo_small {
  width: 160px; }

.b-photo_medium {
  width: 310px; }

.b-text_article .b-photo {
  margin: 10px 0; }

.b-text_article .b-photo_right {
  margin-left: 10px; }

.b-text_article .b-photo_left {
  margin-right: 10px; }

.b-text_article .b-photo_left + .b-photo_right + p:before {
  clear: both;
  display: block;
  content: ''; }

.b-page__bauta .b-photo_small {
  width: 265px; }

.b-page__bauta .b-photo_medium {
  width: 580px; }

.b-tabs {
  position: relative;
  display: table;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ededed; }

.b-tabs__tab {
  display: table-cell;
  text-align: center;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3; }
  .b-tabs__tab.b-tabs__tab_first {
    border-left: 0 none; }
  .b-tabs__tab.b-tabs__tab_active {
    border-bottom: 1px solid #fff; }

.b-tabs__tab a {
  font-size: 13px;
  font-weight: bold;
  display: block;
  text-decoration: none;
  color: #555; }

.b-tabs__tab a:hover {
  text-decoration: none; }

.b-tabs__tab span {
  line-height: 40px;
  display: block;
  padding: 0 20px; }

.b-tabs__tab_first a {
  border: 0 none; }

.b-tabs__tab-rss {
  float: right;
  display: inline;
  min-width: 0;
  margin: 0 3px 0 0; }

.b-tabs__tab-rss a {
  position: relative;
  display: block;
  overflow: hidden;
  width: 24px;
  height: 25px;
  text-indent: -999em;
  background: url("/Static/css/expressen-main/blocks/b-tabs/__tab-rss/b-tabs__tab-rss.png?v1651938f5cd") 0 0 no-repeat; }

.b-tabs__tab-content {
  visibility: hidden; }

.b-tabs__tab-content_active {
  visibility: visible; }

.b-tabs__tab_active {
  background: #fff;
  position: relative;
  z-index: 3; }

.b-tabs__tab_active a {
  color: #000; }

.b-tabs_hot-news {
  position: relative;
  margin: 0 0 -2px;
  padding: 0; }

.b-tabs_hot-news .b-tabs__tab {
  min-width: 67px;
  margin-bottom: 2px; }

.b-tabs_hot-news span {
  text-transform: uppercase; }

.b-tabs_hot-news-sublevel {
  margin: 0;
  padding: 3px 0 5px;
  border-top: 1px solid #000000;
  background: url("/Static/css/expressen-main/blocks/b-tabs/_hot-news-sublevel/b-tabs_hot-news-sublevel.png?v1651938f5ce") 0 100% no-repeat; }

.b-tabs_hot-news-sublevel__withoutline {
  border-top: none !important; }

.b-tabs_hot-news-sublevel .b-tabs__tab {
  min-width: 0;
  margin: 0 8px; }

.b-tabs_hot-news-sublevel .b-tabs__tab_last {
  margin-right: 0; }

.b-tabs_hot-news-sublevel .b-tabs__tab a,
.b-tabs_hot-news-sublevel .b-tabs__tab span {
  font-size: 13px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  background: none; }

.b-tabs_hot-news-sublevel .b-tabs__tab span {
  display: inline;
  margin: 0;
  padding: 0; }

.b-tabs_hot-news-sublevel .b-tabs__tab a {
  margin: 0;
  padding: 0; }

.b-search-box__field-wrap {
  float: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) inset;
  -o-box-shadow: 0 0 5px #cecece inset;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) inset;
  -khtml-box-shadow: 0 0 5px #cecece inset;
  -webkit-box-shadow: 0 0 5px #cecece inset;
  border: 1px solid #a8a8a8; }

.b-search-box__submit {
  float: left;
  overflow: hidden;
  border: 1px solid #a3cee8; }

.b-search-box__submit input {
  font-family: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  font-weight: 900;
  display: block;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  color: #024d7d;
  border: none;
  background: #d9f1ff; }

.b-search-box_nav {
  float: right;
  margin: 0 6px 0 0;
  padding: 8px 0;
  background: none; }

.is-sticky .b-search-box_nav {
  display: none; }

.b-search-box_nav .b-search-box__field-wrap {
  width: 138px;
  height: 17px;
  margin-right: 3px;
  box-shadow: none;
  -o-box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
  background: #ffffff; }

.b-search-box_nav .b-search-box__field {
  font-size: 10px;
  line-height: 1;
  width: 132px;
  height: 17px;
  margin: 0;
  padding-left: 3px;
  padding-right: 3px;
  padding-bottom: 0;
  border: none;
  color: #919191; }

* + html .b-search-box_nav .b-search-box__field {
  padding-top: 4px;
  height: 13px; }

.b-search-box_nav .b-search-box__submit {
  width: 40px;
  height: 16px; }

.b-search-box_nav .b-search-box__submit input {
  font-size: 11px;
  line-height: 1;
  width: 40px;
  height: 16px; }

.b-search-box_search-page {
  padding: 10px 5px;
  background: #fff; }

.b-search-box_search-page .b-search-box__field-wrap {
  width: 448px;
  height: 35px;
  margin-right: 5px; }

.b-search-box_search-page .b-search-box__field {
  font-size: 16px;
  line-height: 22px;
  width: 434px;
  height: 35px;
  padding-left: 7px;
  padding-right: 7px;
  vertical-align: middle;
  color: #3c3b3b;
  border: none;
  background: transparent; }

.b-search-box_search-page .b-search-box__submit {
  width: 83px;
  height: 35px; }

.b-search-box_search-page .b-search-box__submit input {
  font-size: 18px;
  line-height: 1;
  width: 100%;
  height: 35px;
  /*padding: 7px 0;*/ }

.b-search-box_widget-first-column {
  padding: 0; }

.b-search-box_widget-first-column .b-search-box__field-wrap {
  width: 58px;
  height: 15px;
  margin: 0 2px 0 0;
  border-width: 1px;
  border-style: solid;
  border-color: #24347c #59668c #59668c #24347c; }

.b-search-box_widget-first-column .b-search-box__field {
  font-size: 10px;
  line-height: 1;
  width: 48px;
  height: 15px;
  margin: 0;
  padding: 0 5px;
  vertical-align: middle;
  color: #3c3b3b;
  border: none;
  background: #fff; }

.b-search-box_widget-first-column .b-search-box__default-submit {
  overflow: hidden;
  width: 36px;
  /*height: 17px;*/ }

.b-search-box_widget-first-column .b-search-box__default-submit input {
  font-size: 10px;
  width: 100%;
  height: 18px; }

.b-search-box_widget-second-column {
  padding: 0; }

.b-search-box_widget-second-column .b-search-box__field-wrap {
  width: 206px;
  height: 16px;
  margin-right: 5px; }

.b-search-box_widget-second-column .b-search-box__field {
  font-size: 10px;
  line-height: 1;
  width: 196px;
  height: 17px;
  margin: -1px 0 0;
  padding: 0 5px;
  vertical-align: middle;
  color: #3c3b3b;
  border: none;
  background: transparent; }

.b-search-box_widget-second-column .b-search-box__submit {
  width: 85px;
  height: 16px; }

.b-search-box_widget-second-column .b-search-box__submit input {
  width: 100%;
  height: 16px;
  padding: 0; }

.b-search-box_widget-third-column {
  padding: 0; }

.b-search-box_widget-third-column .b-search-box__field-wrap {
  width: 206px;
  height: 23px;
  margin-right: 5px; }

.b-search-box_widget-third-column .b-search-box__field {
  font-size: 10px;
  line-height: 1;
  width: 196px;
  height: 23px;
  margin: 0;
  padding: 0 5px;
  vertical-align: middle;
  color: #3c3b3b;
  border: none;
  background: transparent; }

.b-search-box_widget-third-column .b-search-box__submit {
  width: 85px;
  height: 23px; }

.b-search-box_widget-third-column .b-search-box__submit input {
  line-height: 25px;
  width: 100%;
  height: 23px;
  padding: 0; }

.b-stub {
  position: relative;
  width: 315px;
  height: 14px;
  margin: 0 0 5px -5px;
  background: #ffffff; }

.b-text a,
.b-text a:link {
  text-decoration: none; }

.b-text a:hover,
.b-text a:active {
  text-decoration: underline; }

.b-text ul {
  margin: 5px 0 5px 0;
  padding: 0 0 0 18px;
  list-style: disc; }

.b-text ol {
  margin: 5px 0 5px 20px;
  padding: 0 0 0 8px;
  list-style: decimal; }

.b-text strong {
  font-weight: bold; }

.b-text em {
  font-style: italic; }

.b-text_teaser {
  font-size: 13px;
  /* ????? */
  line-height: 17px;
  margin: 6px 0;
  padding: 0 5px; }

.b-text_teaser a {
  font-size: 14px; }

.b-text_teaser h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 3px; }

.b-text_teaser .b-link-icon {
  font-weight: bold; }

.b-text_footer-menu {
  font-size: 12px;
  line-height: 17px;
  margin: 5px 0;
  color: #2e2e2e; }

.b-text_footer-menu a,
.b-text_footer-menu a:link,
.b-text_footer-menu a:visited {
  text-decoration: none;
  color: #2e2e2e; }

.b-text_footer-menu a:hover,
.b-text_footer-menu a:active {
  text-decoration: underline; }

.b-text_gray {
  color: #8e8e8e; }

.b-text_factbox {
  font-size: 12px;
  line-height: 16px; }

.b-text_factbox h1,
.b-text_factbox h2,
.b-text_factbox h3,
.b-text_factbox h4,
.b-text_factbox h5,
.b-text_factbox h6 {
  font-size: 16px;
  font-weight: bold;
  line-height: 17px;
  margin: 10px 0 0; }

.no-left-column .b-text_factbox {
  font-size: 14px;
  line-height: 20px; }

.b-text_article {
  font-size: 16px;
  line-height: 21px; }

.no-left-column .b-text_article {
  font-size: 14px;
  line-height: 20px; }

.b-text_article h1 {
  font-size: 50px;
  font-weight: bold;
  line-height: 1em;
  margin: 0 0 13px;
  letter-spacing: -2px;
  word-spacing: -2px; }

.b-text_article h2,
.b-text_article h3,
.b-text_article h4,
.b-text_article h5,
.b-text_article h6 {
  font-size: 16px;
  font-weight: bold;
  line-height: 17px;
  margin: 10px 0 0; }

.no-left-column .b-text_article h2,
.no-left-column .b-text_article h3,
.no-left-column .b-text_article h4,
.no-left-column .b-text_article h5,
.no-left-column .b-text_article h6 {
  line-height: 20px;
  margin-top: 15px; }

.b-text_article .widget-zone {
  margin: 10px 0; }

.b-text_article .widget-zone_small {
  width: 160px; }

.b-text_article .widget-zone_medium {
  width: 310px; }

.b-text_article .widget-zone_full {
  width: 645px; }

.b-text_article .widget-zone_right {
  margin-left: 10px; }

.b-text_article .widget-zone_left {
  margin-right: 10px; }

.b-text_article-preamble {
  font-size: 19px;
  line-height: 24px; }

.no-left-column .b-text_article-preamble {
  font-size: 16px;
  line-height: 22px; }

.b-text_article-master-preamble {
  font-size: 20px;
  line-height: 23px; }

.no-left-column .b-text_article-master-preamble {
  font-size: 18px;
  line-height: 24px; }

.b-text_article-indent p,
.b-text_article-indent p.no-indent {
  text-indent: 0; }

.b-text_article-indent p + p,
.b-text_article-indent h2 + p,
.b-text_article-indent h3 + p,
.b-text_article-indent h4 + p,
.b-text_article-indent h5 + p,
.b-text_article-indent h6 + p,
.b-text_article-indent p.indent {
  text-indent: 15px; }

.b-text_preamble {
  font-weight: bold;
  line-height: 18px; }

.b-text_quiz {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 8px; }

.b-text_columnist-panel {
  font-size: 13px; }

.b-text_columnist-panel p {
  margin: 0 0 5px; }

.b-title {
  font-size: 13px;
  line-height: 14px;
  padding: 2px 5px 2px;
  text-transform: uppercase; }

.b-title,
.b-title a {
  font-family: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  font-weight: 900;
  display: block;
  color: #ffffff;
  text-decoration: none; }

.b-title a:hover {
  text-decoration: underline; }

.b-title_red {
  color: #ffffff;
  background: #ec2925; }

.b-title_blue {
  color: #ffffff;
  background: #0366a0; }

.b-title_blue-facebook {
  background: #0366a0 url("/Static/css/framework/blocks/b-title/_blue/b-title_blue-facebook.png?v1651938f62b") no-repeat 100% 100%; }

.b-title_black {
  color: #ffffff;
  background: #000000; }

.b-title_center {
  text-align: center; }

.b-title_vignette {
  font-size: 18px;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center; }

.l-page_preview .b-title_vignette_preview {
  width: 100%; }

.b-title_sub-title {
  line-height: 15px;
  min-height: 0;
  margin: 1px 0 6px;
  padding: 0 0 2px;
  color: #000;
  border-bottom: 1px solid #e2e2e2; }

.b-title_sub-title_search-filter {
  margin-bottom: 2px;
  padding-top: 5px; }

.b-title_sub-title.upper {
  text-transform: uppercase;
  font-weight: bold; }

.b-title_story-page {
  font-size: 24px;
  margin: 12px 0 4px;
  padding: 0 0 4px;
  border-bottom: 2px solid #000000; }

.b-title_story-page_first {
  margin-top: 3px; }

.b-title_nowrap {
  overflow: hidden;
  white-space: nowrap; }

.b-title_image {
  overflow: hidden;
  padding: 0; }

.b-title_image img {
  display: block;
  max-width: 100%;
  height: auto; }

.b-title_premium {
  position: relative;
  min-height: 1px;
  /*IE*/
  padding-right: 53px; }

.b-title_premium > i.b-title__mark {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 7px 2px 5px;
  background: #0666a0; }

.b-title_article-lock {
  position: relative;
  top: -1px;
  margin: 0 -1px; }

.b-unread-subs-js {
  width: 18px;
  height: 18px;
  text-align: center;
  border-radius: 9px;
  background: red;
  color: white;
  font-weight: bold;
  font-size: 8px;
  line-height: 18px;
  text-indent: 0px; }
  .b-unread-subs-js.b-unread-subs__login {
    display: none;
    position: absolute;
    left: -2px;
    top: 6px; }
  .b-unread-subs-js.b-unread-subs__user-modal {
    position: absolute;
    left: 180px;
    top: 12px; }

.b-title_image-repetition img {
  width: 100%; }

.b-pager {
  position: relative;
  text-align: center; }

.b-pager__next {
  font-weight: bold;
  position: absolute;
  right: 0; }

.b-pager__next span {
  position: relative;
  top: -1px; }

.b-pager__previous {
  font-weight: bold;
  position: absolute;
  left: 0; }

.b-pager__previous span {
  position: relative;
  top: -1px; }

.b-pager__current {
  font-weight: normal;
  display: inline;
  text-align: center;
  color: #7d7d7d; }

.b-pager_gallery {
  margin: 0 0 20px; }

.b-pager_gallery-simple {
  margin: 0 0 15px;
  text-align: center; }

.b-popup-wrap {
  position: absolute;
  display: none; }

.b-popup {
  padding: 5px;
  text-align: left;
  border: 1px solid #000000;
  background: #ffffff; }

#popup-bg,
.b-popup__mask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  z-index: 200;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .5; }

.b-popup__close {
  font-size: 15px;
  line-height: 25px;
  float: right;
  height: 25px;
  padding: 0 29px 0 0;
  text-transform: uppercase;
  background: url("/Static/images/common-sprite.png?v1651938f63f") 100% -125px no-repeat; }

a.b-popup__close {
  color: #000;
  padding-left: 5px;
  background-color: #fff; }

.b-popup__logo {
  overflow: hidden;
  width: 306px;
  height: 48px;
  margin: 13px 0 19px 17px;
  padding: 0;
  text-indent: -999em;
  background: url("/Static/css/framework/blocks/b-popup/__logo/b-popup__logo.png?v1651938f61d") no-repeat; }

.b-popup__content {
  padding: 0 16px; }

.b-popup__content p {
  margin: 0 0 6px; }

.b-popup__title {
  font-size: 22px;
  font-weight: normal;
  margin: 0 0 8px; }

.b-popup__title_thanks {
  font-size: 18px;
  margin: 0 0 4px; }

.b-popup__row {
  margin: 0 0 6px; }

.b-popup__row label {
  display: block;
  margin: 0 0 2px; }

.b-popup__row_gap {
  margin: 0 0 10px; }

.b-popup__row .b-error {
  margin-top: 3px; }

.b-popup__submit {
  float: right; }

.b-popup__controls {
  margin: 0 0 10px; }

.b-popup__center-wrap {
  position: static;
  display: table;
  width: 100%;
  padding: 0 0 15px; }

.b-popup__center {
  display: table-cell;
  width: 100%;
  vertical-align: middle; }

.b-popup__center-inner {
  text-align: center;
  font-size: 16px; }

.b-popup__poll-info {
  font-size: 10px;
  line-height: 12px;
  overflow: hidden;
  padding: 2px 0 0 0; }

.b-popup__poll-info__description {
  display: block;
  margin: 2px 0 0; }

.b-popup_poll {
  width: 674px; }

.b-popup_poll .b-popup__title {
  font-size: 30px;
  font-weight: bold;
  line-height: 32px;
  margin: 0 0 15px; }

.b-popup_poll .b-popup__content {
  padding: 0 10px; }

.b-popup_poll .b-popup__footer {
  padding: 0 3px 5px 5px; }

.b-popup_poll .b-popup__logo {
  float: left;
  width: 276px;
  height: 40px;
  margin: 0;
  background: url("/Static/css/framework/blocks/b-popup/__logo/b-popup__logo_poll.png?v1651938f61e") no-repeat; }

.b-popup_poll__chart-container {
  position: relative;
  margin: 0 0 2px; }

.b-popup_poll__average-rate {
  position: absolute;
  bottom: 10px; }

.b-popup_poll_wasp .b-stat-bar__caption img {
  position: relative;
  top: -8px; }

.b-popup_email-sharing {
  width: 357px; }

.email-sharing-thanks {
  display: none;
  margin: 0 0 10px; }

.b-popup_gallery-terms {
  width: 357px; }

.b-popup_gallery-terms .b-popup__content {
  padding-bottom: 13px; }

.b-popup_gallery-abuse {
  width: 357px; }

.abuse-thanks-container {
  display: none;
  margin: 0 0 10px; }

.b-popup__content_scroll {
  overflow-y: auto;
  height: 400px; }

.b-popup__read-terms {
  width: 455px;
  color: #000; }

.b-popup__read-terms__content {
  padding: 0 10px; }

.b-popup__read-terms__text {
  display: block;
  margin-bottom: 10px; }

.b-popup__read-terms__text.b-text p {
  margin: 0 0 8px; }

.b-popup__read-terms__title {
  margin-bottom: 10px; }

.b-popup__read-terms__logo {
  background: url("/Static/css/expressen-main/blocks/b-popup/__read-terms/__logo/b-popup__read-terms__logo.png?v1651938f5b2") no-repeat scroll 0 0 transparent;
  height: 48px;
  width: 455px;
  margin: 13px 0 19px 8px;
  padding: 0;
  overflow: hidden;
  text-indent: -999em; }

.b-error {
  display: none;
  color: crimson; }

.b-rotating-box {
  position: relative;
  overflow: hidden;
  height: 87px; }

.b-rotating-box .b-latest-post {
  width: 100%; }

.b-rotating-box_third-column {
  margin: 0 0 5px; }

.b-loader {
  display: none;
  height: 24px;
  background: url("/Static/images/spinner.gif?v1651938f645") left center no-repeat; }

.b-loader_center {
  background-position: center center; }

.b-loader_tv {
  background-image: url("/Static/images/spinner-tv.gif?v1651938f645"); }

.b-poll {
  margin: 0 0 0 4px;
  padding-bottom: 8px; }

.b-poll__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  margin: 0 0 3px; }

.b-poll__list__item {
  display: block;
  margin: 0 0 1px; }

.b-poll__list__item label {
  display: block;
  padding-left: 18px;
  text-indent: -16px;
  cursor: pointer; }

.is-tablet .b-poll__list__item label {
  padding: 5px 0 5px 18px;
  margin: 0 0 10px;
  font-size: 120%; }

.b-poll__list__item input[type=radio] {
  position: relative;
  top: -2px;
  width: 13px;
  height: 13px;
  margin: 0 3px 0 0;
  padding: 0;
  vertical-align: bottom; }

* + html .b-poll__list__item input[type=radio] {
  overflow: hidden; }

.b-poll__list_wasp .b-poll__list__item {
  line-height: 21px;
  height: 21px;
  vertical-align: top; }

.is-tablet .b-poll__list_wasp .b-poll__list__item {
  height: auto; }

.b-poll__list_wasp .b-poll__list__item input[type=radio] {
  top: -8px; }

.b-poll__list_wasp .b-poll__controls {
  margin-top: 0; }

* + html .b-poll__list_wasp .b-poll__list__item {
  position: relative;
  zoom: 1; }

.b-poll__controls {
  margin: 4px 0 5px; }

.b-poll__controls input {
  font-size: 12px;
  margin: 0 5px 0 0; }

.is-tablet .b-poll__controls {
  margin: 15px 0; }

.is-tablet .b-poll__controls input {
  -webkit-appearance: none;
  font-size: 14px;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #666;
  border-radius: 5px; }

.b-poll__wasp {
  display: inline-block;
  height: 21px;
  background: url("/Static/images/common-sprite.png?v1651938f63f") no-repeat 0 -221px; }

.b-poll__wasp img {
  position: relative;
  top: -2px; }

.b-poll__wasp_size-id-0 {
  width: 118px; }

.b-poll__wasp_size-id-1 {
  width: 96px; }

.b-poll__wasp_size-id-2 {
  width: 71px; }

.b-poll__wasp_size-id-3 {
  width: 45px; }

.b-poll__wasp_size-id-4, .b-poll__wasp_size-id-5 {
  width: 21px; }

.b-poll__wasp_size-id-5 {
  background-position: 0 -245px; }

.b-poll_horizontal-view .b-poll__list__item,
.b-poll_horizontal-view .b-poll__controls {
  display: inline-block;
  margin-right: 5px; }

.is-tablet .b-poll_horizontal-view .b-poll__list__item,
.is-tablet .b-poll_horizontal-view .b-poll__controls {
  margin-right: 8px; }

.b-poll_horizontal-view .b-poll__controls {
  margin: -2px 0 0; }

.b-poll_horizontal-view .b-poll__list__item {
  margin-bottom: 1px; }

.l-three-column__r-column .b-poll_horizontal-view .b-poll__list__item {
  margin: 2px 5px 2px 0; }

.l-three-column__r-column .b-poll_horizontal-view .b-poll__controls {
  margin: 0; }

.b-poll_invert-colors {
  color: #fff; }

.b-bauta-teaser-zone {
  overflow: hidden;
  margin: 0 0 3px; }

.b-zone_article-preamble {
  overflow: hidden;
  margin: 0 0 10px; }

.b-link-list {
  font-size: 12px;
  font-weight: bold;
  padding: 2px 5px 5px;
  color: #ffffff;
  border-bottom: 1px solid #e2e2e2; }

.b-link-list__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.b-link-list__item a {
  color: #ffffff; }

.b-link-list__drop {
  width: 100px; }

.b-rotator {
  margin: 0 0 5px;
  background: #ffffff; }
  .b-rotator .b-linked-image img {
    width: 100%;
    height: auto; }

.b-rotator__item {
  float: right;
  visibility: hidden;
  width: 100%;
  margin-left: -100%;
  background: #ffffff; }

.b-rotator__item .b-tabs__tab-content_active {
  visibility: inherit; }

.b-rotator__item .b-ateaser_auto.b-ateaser_separator {
  margin-bottom: 0;
  border-bottom: 3px solid #e2e2e2; }

.b-rotator__item .b-ateaser_third-column.b-ateaser_auto.b-ateaser_separator {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 5px solid #e2e2e2; }

.b-rotator__item_first {
  visibility: visible; }

.b-rotator__thumbs {
  position: relative;
  margin-top: -3px;
  padding: 0 0 5px;
  background: transparent; }

.b-rotator__thumbs-item .b-rotator__thumbs-item__overlay {
  display: none; }

.b-rotator__thumbs-item {
  position: relative;
  float: left;
  overflow: hidden;
  z-index: 10;
  width: 25%;
  margin: 0;
  padding: 8px 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.b-rotator__thumbs-item__link,
.b-rotator__thumbs-item__link a,
.b-rotator__thumbs-item__link a > img {
  display: block; }

.b-rotator__thumbs-item__overlay {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  bottom: 0;
  padding: 3px;
  cursor: pointer;
  border: 2px solid #e52021;
  z-index: 1; }

.b-rotator__thumbs-item__pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 21px;
  height: 8px;
  margin-left: -8px;
  background: url("/Static/images/common-sprite.png?v1651938f63f") -3px -149px no-repeat;
  z-index: 0; }

.b-rotator__thumbs-link {
  line-height: 1;
  display: block; }

.b-rotator__thumbs-link > img {
  display: block;
  width: 100%;
  height: auto; }

.b-rotator__control {
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  overflow: hidden;
  width: 44px;
  height: 43px;
  margin-top: -21px;
  text-indent: -999em;
  background: url("/Static/css/expressen-main/blocks/b-rotator/__control/b-rotator__control.png?v1651938f5b8") no-repeat; }

.b-rotator__control_prev {
  left: 6px;
  background-position: 0 0; }

.b-rotator__control_next {
  right: 6px;
  background-position: -44px 0; }

.b-rotator__control_prev-full {
  background-position: 0 -44px; }

.b-rotator__control_next-full {
  background-position: -44px -44px; }

.b-rotator__list {
  position: relative;
  -ms-touch-action: none; }

.b-rotator__pager {
  float: right;
  padding: 5px; }

.b-rotator__pager__next,
.b-rotator__pager__prev {
  float: left;
  display: block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  text-indent: -999em; }

.b-rotator__pager__prev, .b-rotator__pager__next {
  background: url("/Static/images/common-sprite.png?v1651938f63f"); }

.b-rotator__pager__next {
  margin: 0 0 0 4px;
  background-position: -18px 0; }

.b-rotator__pager__prev {
  margin: 0 1px 0 0;
  background-position: 0 0; }

.b-rotator__pager__square {
  float: left;
  display: block;
  overflow: hidden;
  width: 11px;
  height: 12px;
  margin: 2px 0 0 3px;
  text-indent: -999em;
  background: #999999; }

a.b-rotator__pager__square:hover {
  background: #000000; }

.b-rotator__pager__square_active {
  background: #000000; }

.b-tv-teaser {
  margin-bottom: 5px;
  padding: 2px 5px 0;
  background: #020103;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #020103), color-stop(50%, #535353));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #020103 0%, #535353 50%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#020103), color-stop(50%, #535353));
  background: linear-gradient(to bottom, #020103 0%, #535353 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020103', endColorstr='#535353',GradientType=0 );
  /* IE6-9 */ }
  .b-tv-teaser h4 {
    margin-bottom: 1px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    font-family: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
    line-height: 1.5;
    border-bottom: 2px solid #F03631; }

.b-tv-teaser__header {
  height: 26px;
  border-bottom: 3px solid #EC2925; }
  .b-tv-teaser__header > img {
    position: absolute; }

.b-tv-teaser__header__right {
  width: 238px;
  float: right;
  border-bottom: 2px solid #EC2925;
  text-align: right;
  height: 18px; }

.b-tv-teaser__row {
  margin-bottom: 4px; }

.b-tv-teaser__item {
  position: relative;
  display: block;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 4px;
  padding: 4px;
  width: 148px;
  border-radius: 2px;
  background: #020103; }

.b-tv-teaser__item:first-child {
  margin-left: 0; }

a.b-tv-teaser__item,
a.b-tv-teaser__item:hover {
  text-decoration: none; }

a.b-tv-teaser__item:hover h3 {
  text-decoration: underline; }

.b-tv-teaser__item.b-tv-teaser__item_single,
.b-tv-teaser_advanced .b-tv-teaser__item.b-tv-teaser__item_single {
  width: 300px; }

.b-tv-teaser__pic {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 2px;
  width: 100%;
  opacity: 1; }
  .b-tv-teaser__pic > img {
    display: block;
    max-width: 100%; }
  .b-tv-teaser__pic > .icon_play-symbol_small {
    position: absolute;
    left: 5px;
    bottom: 5px;
    top: auto; }
  .b-tv-teaser__item_primary:hover > .b-tv-teaser__pic {
    -webkit-box-shadow: inset 0 0 100px 5px black;
    box-shadow: inset 0 0 100px 5px black; }
    .b-tv-teaser__item_primary:hover > .b-tv-teaser__pic img {
      opacity: 0.95; }
    .b-tv-teaser__item_primary:hover > .b-tv-teaser__pic > .icon_play-symbol_small {
      background-position: -36px -59px; }

.b-tv-teaser__item_primary.b-tv-teaser__item_no-link .icon_play-symbol_small {
  display: none; }

.b-tv-teaser__item_primary > h2 {
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1em;
  margin-bottom: 2px;
  font-weight: bold; }

.b-tv-teaser__item_primary h3,
.b-tv-teaser__caption > h3 {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 16px; }

.b-tv-teaser__caption > h3 {
  font-weight: bold; }

.b-tv-teaser__scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  margin: 0 -5px;
  padding: 0 5px; }

a.b-tv-teaser__more {
  float: right;
  margin-top: 6px;
  color: #EC2925;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  font-family: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif; }
  a.b-tv-teaser__more:hover {
    text-decoration: underline; }

.b-tv-teaser_advanced {
  background: #020103;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #020103), color-stop(100%, #656565));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #020103 0%, #656565);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#020103), color-stop(0%, #656565));
  background: linear-gradient(to bottom, #020103 0%, #656565);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020103', endColorstr='#656565',GradientType=0 );
  /* IE6-9 */
  padding: 4px 9px 2px; }
  .b-tv-teaser_advanced .b-tv-teaser__item {
    background: none;
    padding: 3px 0 3px 4px;
    margin-left: 0;
    width: 146px; }
    .b-tv-teaser_advanced .b-tv-teaser__item:first-child {
      padding: 3px 4px 3px 0; }
  .b-tv-teaser_advanced .b-tv-teaser__header {
    margin: 0 0 3px;
    border-bottom-width: 0;
    height: 18px; }
    .b-tv-teaser_advanced .b-tv-teaser__header > i {
      position: absolute;
      top: inherit; }
  .b-tv-teaser_advanced .b-tv-teaser__row {
    margin-bottom: 0; }
  .b-tv-teaser_advanced .b-tv-teaser__row_primary {
    margin-bottom: 4px; }
  .b-tv-teaser_advanced .b-tv-teaser__item_primary .b-tv-teaser__pic {
    border-width: 0; }
  .b-tv-teaser_advanced .b-tv-teaser__item_single .b-tv-teaser__pic {
    float: left;
    margin-right: 5px;
    margin-bottom: 0;
    width: auto; }
  .b-tv-teaser_advanced a.b-tv-teaser__item_primary:hover h3 {
    text-decoration: underline; }
  .b-tv-teaser_advanced .b-tv-teaser__item.b-tv-teaser__item_primary {
    margin-bottom: 1px;
    width: 100%;
    padding: 4px 0; }
  .b-tv-teaser_advanced .b-tv-teaser__caption > h3 {
    color: #FFFFFF; }
  .b-tv-teaser_advanced a.b-tv-teaser__more {
    color: #FFFFFF;
    text-transform: none;
    font-family: inherit;
    font-weight: normal;
    font-size: 12px;
    margin-top: 0; }

.b-search-filter {
  margin: 0 0 5px;
  padding: 0 5px 2px;
  background: #fff; }

.b-more {
  margin: 0 5px;
  padding: 5px 0;
  border-top: 1px solid #e2e2e2;
  overflow: hidden; }

.b-more .b-link {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  display: block;
  padding: 6px 0;
  margin: 0;
  text-decoration: none;
  width: auto;
  cursor: pointer; }
  .b-more .b-link:hover {
    text-decoration: underline; }
  .b-more .b-link.b-link__show-more {
    float: left; }
  .b-more .b-link.b-link__read-more {
    float: right;
    margin: 0; }

.b-more__read {
  float: right;
  margin: 0 0 0 5px; }

.b-more__show {
  float: left;
  margin: 0 5px 0 0; }

.b-more__source {
  border-top: 1px solid #dcdbd9;
  text-align: right;
  padding: 4px;
  margin: 0 5px; }
  .b-more__source a {
    color: #000;
    font-weight: 600; }

.b-more__status {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  display: block;
  overflow: hidden;
  padding-bottom: 5px;
  text-align: center;
  color: #444; }

.b-more_story-page {
  margin: 10px 0 5px;
  border: none !important; }

.b-more_search-page {
  margin: 10px 0 5px; }

.b-more_story-widget {
  padding: 0;
  border-top: 0; }

.b-more_story-widget .b-more__read {
  text-align: right;
  text-transform: uppercase; }

.b-linked-image {
  overflow: hidden;
  margin-bottom: 5px;
  padding: 5px 5px 7px;
  background: #fff; }

.b-linked-image a {
  display: block; }

.b-linked-image img {
  display: block; }

.b-linked-image_in-ateaser {
  padding: 0;
  margin-bottom: 0; }

.b-linked-image_rotator {
  margin-bottom: 0;
  padding-bottom: 0; }

.b-widget {
  margin: 0 0 5px; }

.widget-zone_left {
  float: left; }

.widget-zone_right {
  float: right; }

.widget-zone_left + .widget-zone_right + p:before {
  clear: both;
  display: block;
  content: ''; }

.b-widget_first-column {
  margin-bottom: 0;
  border-bottom: 3px solid #e2e2e2; }

.b-widget_second-column {
  margin: 0 0 1px;
  padding: 0 0 2px; }

.b-widget_third-column {
  margin: 0 0 5px; }

.b-widget_in-ateaser {
  margin: 0;
  padding: 0; }

.b-player {
  position: relative;
  display: none;
  /*margin-top: 5px;*/
  padding: 0;
  background: #000; }

.b-player__border {
  margin: 3px 3px 0;
  padding: 3px;
  border: 1px solid #333333;
  border-radius: 4px; }

.b-player__poster {
  position: absolute;
  overflow: hidden;
  z-index: 100; }

.b-player__poster-control {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  z-index: 120;
  overflow: hidden;
  width: 136px;
  height: 136px;
  margin: -68px 0 0 -68px;
  text-indent: -999em;
  background: url("/Static/images/poster_play_symbol.png?v1651938f642") 0 -243px no-repeat; }

.b-player__poster-control_third-column {
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  background: url("/Static/images/poster_play_symbol.png?v1651938f642") 0 -379px no-repeat; }

.b-player__video {
  z-index: 50;
  /*height: 303px;*/ }

.b-player__controls {
  position: relative;
  z-index: 500;
  margin-top: -8px;
  background: url("/Static/images/html_player_button_bg.png?v1651938f640") 0 8px repeat-x; }

.b-player__contols__full-screen {
  float: right;
  margin: 14px 16px 0 0; }

.b-player__contols__spinner {
  float: right;
  width: 28px;
  margin: 16px 3px 0 -7px; }

.b-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden; }
  .b-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    min-width: 100%;
    height: 100%; }

.b-show-more {
  position: relative; }

.b-show-more a {
  font-weight: bold; }

.b-show-more_latest-news {
  font-size: 12px;
  padding: 4px 5px 2px 0;
  border-top: 1px solid #e1e1e1; }

.b-show-more_latest-news .b-link-icon_bullet {
  float: right; }

.b-bottom-align {
  display: table;
  width: 100%;
  height: 100%; }

.b-bottom-align__bottom {
  height: 100%;
  vertical-align: bottom; }

.b-social-box {
  clear: left;
  margin: 5px 0 12px; }

.b-social-box__row {
  margin: 0 0 5px; }

* + html .b-social-box__row {
  /*zoom: 1;*/ }

.b-social-box__button {
  float: left; }

.b-social-box__facebook {
  display: block;
  height: 21px;
  margin: 0 0 5px; }

.fb_iframe_widget_fluid > span,
.fb_iframe_widget_fluid iframe {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: static !important;
  width: 100% !important; }

.fb-comments_header {
  overflow: hidden;
  padding: 10px 0;
  font-weight: bold; }
  .fb-comments_header .fb-comments_heading {
    font-size: 14px;
    line-height: 1;
    float: left;
    width: auto; }
  .fb-comments_header .fb-comments_terms {
    float: right;
    width: auto; }

.b-social-box__twitter {
  height: 21px;
  width: 107px; }

.b-satellite {
  position: relative; }

.b-satellite__thumb {
  position: relative;
  display: block;
  overflow: hidden; }

.b-satellite video,
.b-satellite video:focus,
.b-satellite object,
.b-satellite object:focus {
  outline: none !important;
  border: 0 none !important; }

.b-article .b-satellite object,
.b-ateaser__row .b-satellite object {
  background: #000000; }

.b-satellite__thumb {
  position: relative;
  display: block; }

.b-satellite__play-sign {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0;
  display: block;
  overflow: visible;
  width: 25%;
  height: 0;
  text-indent: -999em; }

.b-satellite__play-sign > img {
  position: relative;
  font-size: 0;
  width: 100%;
  height: auto;
  margin: -50% 0 0 -50%;
  -webkit-touch-callout: none; }

.b-satellite__play-sign_active {
  display: none; }

.b-satellite__play-sign_normal {
  display: block; }

/* IE is so IE */
* + html .b-satellite__play-sign {
  cursor: pointer; }

a.b-satellite__thumb:hover .b-satellite__play-sign_active {
  display: block; }

a.b-satellite__thumb:hover .b-satellite__play-sign_normal {
  display: none; }

.b-satellite__toolbar-left {
  position: absolute;
  left: 0;
  right: 10px;
  bottom: 0;
  display: block;
  height: 44px;
  background: url("/Static/css/framework/blocks/b-satellite/__toolbar/b-satellite__toolbar.png?v1651938f623") no-repeat; }

.b-satellite__toolbar-right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 13px;
  height: 44px;
  background: url("/Static/css/framework/blocks/b-satellite/__toolbar/b-satellite__toolbar.png?v1651938f623") 0 -44px no-repeat; }

.b-satellite__cover-pic {
  display: block; }

.sb-related {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.8); }
  .sb-related .content {
    overflow: hidden;
    display: inline-block;
    height: 50%;
    width: 50%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
            background-size: cover;
    margin: 0;
    padding: 0;
    cursor: pointer;
    vertical-align: top; }
    .sb-related .content .text {
      position: absolute;
      bottom: 0;
      width: 100%;
      color: white;
      background-color: rgba(30, 30, 30, 0.8);
      font-size: 14px;
      font-weight: bold;
      line-height: 18px;
      text-decoration: none;
      padding: 6px 10px;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box; }
      .sb-related .content .text:before {
        content: "EXPRESSEN TV";
        display: block;
        color: #2177AA; }

.b-section-list {
  position: absolute;
  top: 36px;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  max-width: 1250px;
  height: 0;
  text-align: left;
  background: #d9f1ff; }

.no-left-column .b-section-list {
  max-width: 1270px; }

.b-primary-menu__item_section-listing > a {
  position: relative;
  padding-right: 25px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer; }

.b-primary-menu__item_section-listing .b-link-icon_arrow-down-white {
  position: absolute;
  top: 8px;
  right: 7px; }

.b-primary-menu__item_section-listing > a,
.b-primary-menu__item_section-listing > a > span {
  white-space: nowrap; }

.b-section-list__list > li {
  margin: 0 0 2px; }

.b-section-list__list > li.b-section-list__caption {
  font-weight: bold;
  margin: 2px 0 6px; }

.b-section-list__inner {
  padding: 6px 5px;
  color: #000;
  border-top: 4px solid #244c7b;
  border-bottom: 4px solid #244c7b; }

.b-section-list__col {
  float: left;
  width: 16.6%; }

.b-section-list__col > .b-section-list__list {
  padding: 0 8px 0; }

.b-section-list__letter {
  font-weight: bold;
  margin: 5px 0 0;
  padding: 0 0 1px;
  border-bottom: 1px solid #b5babe; }

a.b-section-list__link {
  font-size: 14px;
  color: #000; }

.b-section-list__close {
  position: absolute;
  top: 6px;
  right: 2px;
  font-size: 15px;
  line-height: 24px;
  height: 24px;
  padding: 0 25px 0 0;
  cursor: pointer;
  text-transform: uppercase;
  background: url("/Static/images/common-sprite.png?v1651938f63f") 100% -125px no-repeat; }

.b-section-list__close > a {
  cursor: pointer;
  color: #000; }

.b-section-list_tv {
  background: #b6b6b6; }

.b-section-list_tv > .b-section-list__inner {
  border-top: 4px solid #3e3e3d;
  border-bottom: 4px solid #3e3e3d; }

.b-section-list_tv .b-section-list__letter {
  border-bottom-color: #3e3e3e; }

.b-article-lock {
  position: relative;
  border-top: #cbe0ed 1px solid;
  margin-bottom: 30px;
  padding-top: 50px;
  background: #effaff; }
  .b-article-lock h2 {
    padding: 0 30px;
    font-size: 23px;
    font-weight: bold;
    text-align: center; }
  .b-article-lock .btn {
    margin: 5px 0;
    padding: 0;
    width: 100%;
    text-align: center; }
  .b-article-lock:before {
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    padding-bottom: 50px;
    background: url("/Static/images/fade.png?v1651938f63f") repeat-x;
    content: ""; }

.b-article-lock__clip {
  position: absolute;
  left: 50%;
  top: -1px;
  width: 70px;
  height: 30px;
  margin-left: -35px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background: #ffffff url("/Static/css/framework/blocks/b-link-icon/_type/types-new.png?v1651938f616") 9px -494px no-repeat;
  -webkit-box-shadow: 0 1px 0 0 #cbe0ed;
          box-shadow: 0 1px 0 0 #cbe0ed; }

.b-article-lock__preamble {
  margin-top: 15px;
  padding: 0 30px;
  color: #666;
  text-align: center; }

.b-article-lock__login {
  margin-top: 35px;
  padding: 0 15px; }
  .b-article-lock__login img {
    float: left;
    display: block; }

.b-article-lock__login__aside {
  float: right;
  width: 260px; }

.b-article-lock__login__button {
  border: 1px #d3d3d3 solid;
  background: #f2f2f2; }

.b-article-lock__divider {
  margin: 15px 0;
  position: relative;
  z-index: 1;
  color: #999;
  font-style: italic;
  text-align: center;
  text-transform: lowercase; }
  .b-article-lock__divider:before {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1;
    border-top: 2px solid #dfdfdf;
    content: ""; }
  .b-article-lock__divider span {
    padding: 0 15px;
    background: #effaff; }

.b-article-lock__divider:before {
  border-top: 0; }

.b-article-lock__divider:after {
  margin: 0 auto;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 95%;
  z-index: -1;
  border-bottom: 1px solid #d1eaf8;
  -webkit-box-shadow: 0 1px 0 0 #fff;
  box-shadow: 0 1px 0 0 #fff;
  content: ""; }

.b-article-lock__terms {
  padding: 30px 15px 0;
  color: #999;
  text-align: center; }
  .b-article-lock__terms a {
    color: #999;
    text-decoration: underline; }
    .b-article-lock__terms a:hover {
      color: #666; }

.b-article-lock__sales-message {
  margin-top: 15px;
  padding: 25px 20px;
  position: relative;
  z-index: 1;
  border-top: 1px #d1eaf8 solid; }
  .b-article-lock__sales-message h2 {
    padding: 0;
    color: #666;
    text-align: left;
    font-weight: normal; }
  .b-article-lock__sales-message ul {
    margin-top: 15px; }
    .b-article-lock__sales-message ul li {
      margin: 10px 0;
      float: left;
      width: 33%;
      color: #666;
      font-size: 15px;
      white-space: nowrap;
      list-style: url(/Static/images/check.png) inside; }
  .b-article-lock__sales-message:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-top: 1px #fff solid;
    content: ""; }

.b-subscribe-email {
  font-size: 14px;
  line-height: 16px; }

.b-subscribe-email__row {
  width: 100%;
  /*IE*/
  margin: 0 0 8px; }

.b-subscribe-email__row a {
  font-size: inherit;
  line-height: inherit; }

a.b-nbutton {
  font-weight: bold;
  display: inline-block;
  overflow: hidden;
  max-height: 16px;
  text-align: center;
  border: 1px solid #013856;
  border-radius: 2px;
  background: url("/Static/css/expressen-premium/blocks/b-nbutton/b-nbutton.png?v1651938f5e6") repeat-x; }

a.b-nbutton {
  display: inline-block;
  padding: 6px 8px;
  -moz-text-shadow: 0 -1px 1px #666;
  -webkit-text-shadow: 0 -1px 1px #666;
  text-shadow: 0 -1px 1px #666;
  color: #fff; }

.b-nbutton:hover {
  text-decoration: none;
  background-position: 0 -28px; }

.b-nbutton:active {
  text-decoration: none;
  background-position: 0 -56px; }

a.b-nbutton_small {
  font-size: 12px;
  line-height: 1;
  padding: 5px 6px; }

a.b-nbutton_full-width {
  display: block; }

.b-small-login a {
  color: #fff;
  font-family: "Arial Black", sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 0;
  width: 125px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  text-indent: 20px; }
  .b-small-login a::before {
    display: block;
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 16px;
    background: url("/Static/images/common-sprite.png?v1651938f63f") -52px -295px no-repeat; }

.b-small-login__subscribe > .b-link-icon__icon {
  float: none;
  display: inline;
  display: inline-block;
  height: 16px;
  margin: 0 0 0 3px;
  vertical-align: text-bottom; }

.b-small-login__login {
  display: none; }

.b-small-login .b-bb_bold {
  font-family: Arial, Helvetica, sans-serif;
  word-spacing: 0;
  letter-spacing: 0; }

.b-small-login .b-bb_red {
  color: #ed1d1f; }

.b-user-name {
  display: none;
  margin-top: 1px; }

.b-sales-msg {
  margin: 0 0 5px;
  padding: 9px 7px;
  border: 1px solid #cfe1ed;
  background: #e5eff5; }

.b-sales-msg__pic {
  float: right;
  margin: 0 0 5px 10px; }

.b-sales-msg__pic > img {
  display: block; }

.b-sales-msg__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  margin: -1px 0 5px; }

.b-sales-msg > p {
  margin: 1px 0 0;
  padding: 0 1px; }

.b-sales-msg__subscribe {
  clear: both;
  margin: 8px 0 0; }

.b-sales-msg_bauta {
  padding: 4px 9px; }

.b-sales-msg_bauta .b-sales-msg__inner {
  overflow: hidden;
  height: 38px; }

.b-sales-msg_bauta .b-sales-msg__title {
  font-size: 32px;
  float: left;
  width: 310px;
  margin: 3px 10px 3px 0; }

.b-sales-msg_bauta .b-link-icon__icon {
  float: none;
  display: inline;
  display: inline-block;
  height: 14px; }

* + html .b-sales-msg_bauta .b-link-icon__icon {
  vertical-align: top; }

.b-sales-msg_bauta .b-sales-msg__content {
  overflow: hidden;
  /*max-height: 46px; */ }

.b-sales-msg_bauta .b-sales-msg__content > p {
  /*overflow: hidden;*/
  /*height: 2.3em;*/
  margin: 3px 0; }

.b-sales-msg_bauta .b-sales-msg__pic {
  float: left;
  /*overflow: hidden;*/
  /*max-height: 38px;*/
  margin: 0 30px 0 0; }

.b-sales-msg_bauta .b-sales-msg__pic > img {
  /*width: 66px;*/ }

.b-sales-msg_bauta .b-sales-msg__subscribe {
  float: right;
  clear: none;
  width: 240px;
  margin: 4px 0 7px 10px; }

.b-sales-msg_bauta.b-sales-msg_narrow .b-sales-msg__title {
  font-size: 22px;
  overflow: hidden;
  width: 214px;
  height: 1.1em;
  margin-top: 8px;
  margin-bottom: 0; }

.b-sales-msg_bauta.b-sales-msg_narrow .b-sales-msg__pic {
  margin-right: 14px; }

.b-crt-acc {
  margin: 0 0 5px;
  padding: 3px;
  border: 2px solid #000;
  background: #fff; }

a.b-fb-button {
  font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  display: inline;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background: #5f78ab; }

a.b-fb-button:hover {
  text-decoration: none; }

.b-fb-button__icon {
  float: left;
  width: 22px;
  height: 22px;
  cursor: pointer;
  background: url("/Static/css/expressen-premium/blocks/b-fb-button/b-fb-button.png?v1651938f5e2") 0 -132px; }

.b-fb-button__label {
  display: inline;
  display: inline-block;
  min-height: 1px;
  border-top: 1px solid #29447e;
  border-right: 1px solid #29447e;
  border-bottom: 1px solid #1a356e; }

.b-fb-button__label > span {
  display: block;
  padding: 2px 6px 3px;
  cursor: pointer;
  white-space: nowrap;
  border-top: 1px solid #879ac0; }

.b-user-menu {
  position: absolute;
  top: 16px;
  right: 0;
  display: none;
  z-index: 100;
  width: 245px;
  padding: 9px 0 0;
  background: url("/static/css/expressen-premium/blocks/b-user-menu/b-user-menu.gif?v1651938f5e8") repeat; }

.b-user-menu-decor {
  position: absolute;
  top: -1px;
  right: 21px;
  width: 18px;
  height: 11px;
  /* not a good thing */
  background: url("/static/css/expressen-premium/blocks/b-link-icon/_user/b-link-icon_user.png?v1651938f5e4") 0 -69px no-repeat; }

.b-user-menu__list {
  zoom: 1;
  padding: 7px 0 0;
  -webkit-box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.28);
  border-radius: 1px;
  border: 1px solid #b3b3b3;
  background: #fff; }

a.b-user-menu__link {
  font-weight: bold;
  display: block;
  padding: 4px 10px;
  color: #000; }

a.b-user-menu__link:hover {
  text-decoration: none;
  color: #fff;
  background: #0066a0; }

.b-user-menu__item_logout {
  margin: 7px 0 0;
  text-align: center;
  border-top: 1px solid #dadada;
  background: #ececec; }

.b-user-menu__item_logout > a.b-user-menu__link {
  padding-top: 6px;
  padding-bottom: 7px;
  color: #005383; }

.b-user-menu__item_logout > a.b-user-menu__link:hover {
  text-decoration: underline;
  color: #005383;
  background: transparent; }

.b-stats {
  margin: 0 0 8px; }

.b-stats__loader {
  display: block; }

.b-stats__empty {
  padding: 8px 5px 0;
  text-align: center; }

.b-stats__hits {
  padding: 10px 0 20px; }

.b-stats__hits-reset {
  font-weight: bold; }

.b-stats__table {
  position: relative; }

.b-stats__lock {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  background: #ccc; }

.b-stats__controls {
  display: none;
  margin: 10px 0 2px;
  text-align: center; }

.b-stats__empty {
  display: none; }

.b-select__label,
.b-select__select {
  font-size: 12px;
  line-height: 16px; }

.b-select__label {
  font-weight: bold;
  display: inline-block;
  margin: 0 5px 0 0; }

.b-select__select {
  line-height: 1;
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 18px;
  margin: 1px 0 0;
  padding: 1px;
  border: 1px solid #9c9c9c; }

.b-select_stats-filters select {
  max-width: 130px; }

.b-radios {
  font-size: 12px;
  line-height: 15px;
  display: inline-block;
  padding: 4px 0; }

.lt-ie8 .b-radios,
.lt-ie8 .b-radios__label,
.lt-ie8 .b-radios__label-main {
  zoom: 1;
  display: inline; }

.b-radios__label-main {
  font-weight: bold;
  display: inline-block;
  margin: 0 5px 0 0; }

.b-radios__label {
  display: inline-block;
  margin: 0 15px 0 0;
  cursor: pointer; }

.b-radios__radio {
  position: relative;
  top: -2px;
  width: 13px;
  height: 13px;
  margin: 0 2px 0 0;
  padding: 0;
  cursor: pointer;
  vertical-align: bottom; }

.lt-ie8 .b-radios__radio {
  overflow: hidden; }

.b-payment {
  padding: 3px;
  margin: 0 0 5px;
  border: 2px solid #000;
  background: #fff; }

.b-payment__header {
  margin: 0 1px;
  padding: 0 5px 10px;
  border-bottom: 1px solid #e2e2e2; }

.b-payment__headline {
  font-size: 24px;
  margin: 8px 0 7px; }

.b-payment__preamble span {
  font-weight: bold; }

.b-payment__body {
  padding: 11px 7px 18px; }

.b-payment__sub-headline {
  font-size: 18px;
  margin-bottom: 18px; }

.b-payment__col {
  float: left;
  width: 244px;
  margin: 0 30px 0 0; }

.b-payment__col > p {
  margin: 0 0 0 70px; }

.b-payment__cols_bauta .b-payment__col {
  width: 220px;
  margin: 0 77px 0 0; }

.b-payment__cols_bauta .b-payment__tablet {
  margin: 0 44px 0 0; }

.b-payment__cols_bauta .b-payment__col_last,
.b-payment__col_last {
  margin: 0; }

/*.b-payment__look > p {
    margin: 0 0 0 73px;
}*/
.b-payment__look .b-payment__body-pic {
  margin: 9px 0 0; }

.b-payment__cols_bauta .b-payment__tablet {
  width: 230px; }

.b-payment__tablet .b-payment__body-pic {
  position: relative;
  top: -3px; }

.b-payment__tablet > p {
  margin: 0 0 0 66px; }

.b-payment__cols_bauta .b-payment__mail {
  width: 265px; }

.b-payment__mail > p {
  margin: 0 0 0 97px; }

.b-payment__body-pic {
  float: left; }

.b-payment__footer {
  margin: 0 1px;
  padding: 7px 5px 9px;
  border-top: 1px solid #e2e2e2; }

.b-payment__close {
  font-weight: bold;
  float: right;
  padding: 0 16px 0 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRBQTc3MjdGQUFBMjExRTJBN0Q2RjY4MUJGQzg0OEJDIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRBQTc3MjgwQUFBMjExRTJBN0Q2RjY4MUJGQzg0OEJDIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REFBNzcyN0RBQUEyMTFFMkE3RDZGNjgxQkZDODQ4QkMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REFBNzcyN0VBQUEyMTFFMkE3RDZGNjgxQkZDODQ4QkMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6e4QAWAAAALVBMVEX9xLj8jnb8k3z7h279wrX7iXH9va/9x7v8kHn8nIf8moX9v7L8lX/5Nw3////I72t7AAAAT0lEQVR42kyOCw7AIAhDu79M6f2Pq62LGSHQFxoA5EkHlFc26ZIbUTNF+2gAm0jllVPCWmCLtMGjmPDZQrAWxFpdRnvA43eUvOc7lewCDAAVrAbmtTY93QAAAABJRU5ErkJggg==) no-repeat 100% 3px; }

a.b-payment__footer-link {
  font-weight: normal;
  line-height: 18px;
  color: #000; }

.b-payment__footer-link span {
  font-weight: bold; }

.b-payment__footer-link span.blue {
  color: #005383; }

.b-mpreview {
  text-align: left;
  margin-top: 20px;
  width: 415px; }

.b-mpreview__select select {
  width: 240px;
  min-width: 242px;
  padding: 1px 0;
  border: 1px solid #7F9DB9;
  font-size: 12px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Arial,Verdana, Sans-Serif; }

.b-mpreview__phone {
  margin-top: 20px;
  margin-left: 16px;
  background-repeat: no-repeat; }

.b-mpreview__phone_iphone5 {
  background-image: url("/Static/css/expressen-main/blocks/b-mpreview/__phone/b-mpreview__phone_iphone5/b-mpreview__phone_iphone5.png?v1651938f5a4");
  padding: 120px 0 117px 33px;
  height: 563px; }

.b-mpreview__phone_galaxys4 {
  background-image: url("/Static/css/expressen-main/blocks/b-mpreview/__phone/b-mpreview__phone_galaxys4/b-mpreview__phone_galaxys4.png?v1651938f5a3");
  padding: 71px 0 0 18px;
  height: 706px; }

.b-switcher {
  font-size: 12px;
  padding: 20px 6px 15px;
  text-align: center;
  text-transform: uppercase;
  color: #999; }
  .b-switcher a,
  .b-switcher a:hover {
    text-decoration: none;
    color: #999; }
    .b-switcher a.current,
    .b-switcher a:hover.current {
      font-weight: bold; }

.b-switcher__list {
  list-style: none; }
  .b-switcher__list > li {
    display: inline-block;
    margin: 0 6px; }

.b-mp3 {
  font-family: Helvetica, Arial, sans-serif;
  color: #2d2d2d; }

.b-mp3 .jp-head {
  margin-top: 10px; }

.b-mp3_widget {
  margin: 0 0 5px;
  padding: 0 10px;
  background: #f7f6f5; }

.b-mp3_widget .b-title {
  margin: 0 -10px; }

.b-mp3__icon {
  position: relative;
  float: left;
  width: 23px;
  height: 23px;
  margin: -4px 7px 0 0;
  background: url("/Static/css/expressen-main/blocks/b-mp3/rss.png?v1651938f5a2") no-repeat; }

a.b-mp3__feed,
a.b-mp3__download {
  font-size: 14px !important;
  line-height: 16px !important;
  display: block;
  padding: 9px 5px;
  color: #000; }

a.b-mp3__download {
  padding-bottom: 5px; }

.b-mp3__download > .b-mp3__icon {
  margin-top: -3px;
  background: url("/Static/css/expressen-main/blocks/b-mp3/download.png?v1651938f5a2") no-repeat; }

.b-podcast-table {
  margin: 10px 0; }
  .b-podcast-table table {
    width: 100%;
    table-layout: fixed; }
  .b-podcast-table table td {
    vertical-align: top;
    background: #f7f6f5; }
  .b-podcast-table table td:first-child {
    width: 245px;
    border-right: 8px solid #fff; }
  .b-podcast-table .b-podcast-table__cell {
    padding: 0 5px; }
  .b-podcast-table .b-podcast-table__social {
    margin: 0 0 0 10px; }
    .b-podcast-table .b-podcast-table__social .b-share__facebook,
    .b-podcast-table .b-podcast-table__social .b-share__twitter {
      width: 120px;
      margin-bottom: 5px; }
    .b-podcast-table .b-podcast-table__social .b-share__mail {
      width: 120px;
      margin-bottom: 5px; }
  .b-podcast-table .b-article-share-bottom {
    border: 0; }

.b-podcast__episode {
  line-height: 1.5em; }

.b-podcast-table_in-article {
  width: 222px;
  background-color: #f7f6f5; }
  .b-podcast-table_in-article .b-mp3,
  .b-podcast-table_in-article .b-rel-podcast {
    padding: 0 10px; }
  .b-podcast-table_in-article .jp-time-holder {
    margin-left: 20px; }

.b-rel-podcast {
  font-size: 14px !important;
  line-height: 16px !important; }

.b-rel-podcast__caption {
  font-size: 14px !important;
  font-weight: bold;
  line-height: 16px !important;
  padding: 10px 0 8px;
  text-transform: uppercase;
  color: #0976b5; }

.b-rel-podcast__list > li {
  margin: 0 0 10px; }

.b-rel_podcast__icon {
  float: left;
  display: block;
  width: 14px;
  height: 14px;
  margin: 1px 6px 0 3px;
  background: url("/Static/css/expressen-main/blocks/b-rel-podcast/play.png?v1651938f5b7") no-repeat; }

.b-rel_podcast__podcast {
  overflow: hidden; }

.b-rel_podcast__inner {
  font-weight: bold; }

.b-rel-podcast__podcast-ttl {
  color: #333; }

.b-rel-podcast__date {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px !important;
  font-weight: normal;
  margin: 0 0 0 3px;
  color: #666666; }

.b-rel-podcast__more {
  font-weight: bold;
  display: block;
  padding: 8px 0;
  border-top: 1px solid #fff; }

.b-rel-podcast.b-rel-podcast_hide-first {
  display: none; }

.b-fold {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: max-height .2s ease;
  transition: max-height .2s ease; }

.b-fold.b-fold_only-expand.b-fold_unfold .b-fold__expand {
  display: none; }

.b-fold__expand {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(247, 246, 244, 0)), color-stop(0.5, rgba(247, 246, 244, 0.7)), color-stop(1, #f7f6f4));
  background-image: -ms-linear-gradient(top, rgba(247, 246, 244, 0) 0, rgba(247, 246, 244, 0.7) 50%, #f7f6f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4CF7F6F4', endColorstr='#FFF7F6F4');
  cursor: pointer; }

.b-fold__expand {
  display: none; }

.b-article__content .b-fold__expand,
.b-podcast-table_in-article .b-fold__expand,
.b-long-read_content .b-fold__expand,
.b-rank-list__r-column .b-fold__expand {
  display: block; }

.b-fold__arr {
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 17px;
  height: 16px;
  margin: 0 0 0 -8px;
  content: "";
  background: url("/Static/css/framework/common/b-fold__arr.png?v1651938f632") no-repeat; }

.b-fold_unfold {
  height: auto;
  padding-bottom: 35px; }

.b-podcast-table_in-article .b-fold_unfold {
  padding-bottom: 0; }

.b-fold_use-label .b-fold__expand {
  cursor: pointer;
  background: #f0faff;
  -webkit-filter: none;
          filter: none; }
  .b-fold_use-label .b-fold__expand:before {
    position: absolute;
    top: -70px;
    right: 0;
    left: 0;
    height: 70px;
    content: "";
    background: url("/Static/css/framework/common/b-fold__fade.png?v1651938f632"); }

.b-fold_use-label .b-fold__arr {
  line-height: 14px;
  bottom: 12px;
  width: 70px;
  margin-left: -35px;
  text-transform: lowercase;
  color: #666666;
  background: none; }
  .b-fold_use-label .b-fold__arr .b-fold__label-unfold {
    display: inline; }
  .b-fold_use-label .b-fold__arr .b-fold__label-fold {
    display: none; }
  .b-fold_use-label .b-fold__arr .b-link-icon_arrow-down-blue {
    float: right;
    *display: none; }

.b-fold_unfold .b-link-icon_arrow-down-blue {
  background-position: -49px -278px; }

.b-fold_unfold .b-fold__arr {
  width: 90px;
  margin-left: -45px; }
  .b-fold_unfold .b-fold__arr .b-fold__label-unfold {
    display: none; }
  .b-fold_unfold .b-fold__arr .b-fold__label-fold {
    display: inline; }

.b-fold_unfold .b-fold__expand:before {
  background-image: none; }

/**
 * Trash block I guess.
 * - What do you think Mike?
 * - Aye!
 * -------------------------------------------------------------------------------------------
 */
.jp-audio {
  position: relative; }

.jp-audio-widget {
  margin: 0 0 4px; }

.jp-controls {
  margin: 0;
  padding: 0;
  list-style: none; }

.jp-controls > li {
  display: inline; }

.jp-controls a.jp-stop,
.jp-controls a.jp-mute,
.jp-controls a.jp-unmute,
.jp-controls a.jp-volume-max {
  display: none !important; }

.jp-controls a.jp-play,
.jp-controls a.jp-pause {
  float: left;
  display: block;
  overflow: hidden;
  width: 25px;
  height: 25px;
  margin: 5px 10px 0 0;
  text-indent: -999em; }

.jp-controls a:active {
  outline: 0 none; }

.jp-controls a.jp-play {
  background: url("/Static/Mobile/images/mp3/play.png?v1651938f451") no-repeat; }

.jp-controls a.jp-pause {
  display: none;
  background: url("/Static/Mobile/images/mp3/pause.png?v1651938f450") no-repeat; }

.jp-head {
  margin: 0 0 10px; }

.jp-caption {
  height: 35px;
  display: table;
  overflow: hidden; }

.jp-caption-row {
  display: table-row; }

.jp-caption-inner {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  display: table-cell;
  vertical-align: middle; }

.jp-caption-inner > span {
  font-weight: normal; }

.jp-bars {
  margin: 0 0 10px; }

.jp-time-holder {
  font-size: 12px;
  font-weight: bold;
  position: relative;
  top: -2px;
  float: right;
  margin: 0 0 0 8px;
  white-space: nowrap;
  color: #7c7c7c; }

.jp-duration,
.jp-cms-duration,
.jp-current-time {
  display: inline-block;
  white-space: nowrap; }

.jp-current-time {
  color: #2d2d2d; }

.jp-progress {
  overflow: hidden;
  height: 10px;
  background: #555; }

.jp-seek-bar {
  height: 100%;
  background: #000; }

.jp-play-bar {
  height: 100%;
  background: #0976b5; }

.jp-title,
.jp-volume-bar {
  display: none; }

#mobiteller {
  display: block;
  width: 1240px;
  padding: 5px 5px 10px;
  margin: 0 auto 8px;
  background-color: #fff; }

#mobiteller a,
#mobiteller a:hover {
  text-decoration: none; }

.rubrik-ab56 {
  font-size: 56px;
  line-height: 56px; }

.report-to-po {
  max-width: 800px;
  margin: -25px -15px 0;
  padding-bottom: 15px;
  color: #000; }
  .report-to-po a {
    color: #005383; }
  .report-to-po > h1 {
    font-size: 18px;
    padding: 15px;
    color: #fff;
    background: #0366a1; }
  .report-to-po p {
    padding: 0 0 10px; }
  .report-to-po .report-to-po__content {
    padding: 15px 15px 60px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGoAAAA3CAMAAADT7y+MAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RkZGNkI3OTQ1ODMxMUU0OERBQkIwODZERjkwOUZFNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RkZGNkI3QTQ1ODMxMUU0OERBQkIwODZERjkwOUZFNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjZGRkY2Qjc3NDU4MzExRTQ4REFCQjA4NkRGOTA5RkU2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjZGRkY2Qjc4NDU4MzExRTQ4REFCQjA4NkRGOTA5RkU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HtQi9AAAAv1QTFRFYmJioKCg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), url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAAbCAIAAABJFyWDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2RkI2QjVFOTNCRkMxMUU0OTBGQUE1QTlFRTY2RkI2MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2RkI2QjVFQTNCRkMxMUU0OTBGQUE1QTlFRTY2RkI2MCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjZGQjZCNUU3M0JGQzExRTQ5MEZBQTVBOUVFNjZGQjYwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjZGQjZCNUU4M0JGQzExRTQ5MEZBQTVBOUVFNjZGQjYwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+QaQVBwAAI8lJREFUeNrsfAl4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);
    background-repeat: no-repeat;
    background-position: 15px 100%, right 15px bottom; }
    .report-to-po .report-to-po__content h2 {
      font-size: 18px;
      font-weight: 600;
      padding: 10px 0 8px; }
    .report-to-po .report-to-po__content .preamble {
      font-weight: 600; }
    .report-to-po .report-to-po__content div {
      float: right;
      width: 200px;
      height: 300px;
      padding-left: 20px; }
      .report-to-po .report-to-po__content div img {
        display: block;
        width: 200px;
        height: auto;
        margin-bottom: 8px; }

/**
 * Trash block 2 I'm sure
 *  - Mike, don't kill me please..
 *  - (finger) (wtf)!
 *
 * Mike: So, TODO Refactor: make it beautiful ;) Don't know when exactly I'm gonna make it...
 * And one more thing: this file should be removed from here and should only be included
 * when in preview mode
 * -------------------------------------------------------------------------------------------
 */
.b-widget-preview__container {
  margin: 10px 10px 20px;
  text-align: left;
  white-space: nowrap;
  vertical-align: top; }

.b-widget-preview_item {
  margin-bottom: 25px;
  white-space: normal; }

.b-widget-preview_item_zone {
  border: 1px solid #444;
  background: #e2e2e2; }

.b-widget-preview_item_caption {
  font-size: 16px;
  font-weight: normal;
  padding: 5px 5px 10px;
  text-shadow: #ffffff 1px 1px 1px;
  -o-text-shadow: #ffffff 1px 1px 1px;
  -moz-text-shadow: #ffffff 1px 1px 1px;
  -webkit-text-shadow: #ffffff 1px 1px 1px; }

.b-widget-preview__unpublished_note {
  line-height: 30px;
  width: 95%;
  background: #FFEEEE;
  font-weight: bold;
  color: #FF0000;
  padding-left: 2%;
  padding-right: 2%; }

.b-widget-preview_item_zone_firstcolumnwidgets {
  width: 110px;
  background: #0366a0; }

.b-widget-preview_item_zone_secondcolumnwidgets {
  width: 550px; }

.b-widget-preview_item_zone_widgetunderarticle1 {
  width: 550px; }

.b-widget-preview_item_zone_widgetunderarticle2 {
  width: 550px; }

.b-widget-preview_item_zone_secondcolumn33widgets {
  width: 183px; }

.b-widget-preview_item_zone_secondcolumn50widgets {
  width: 275px; }

.b-widget-preview_item_zone_thirdcolumnwidgets {
  width: 310px; }

.b-widget-preview_item_zone_articlebautawidgets {
  width: 865px;
  background: #fff; }

.b-widget-preview_item_zone_articlerightwidgets {
  width: 310px; }

.b-widget-preview_item_zone_articlebottomwidgets {
  width: 645px; }

.b-widget-preview_item_zone_footerfirstwidgetarea {
  width: 192px; }

.b-widget-preview_item_zone_footersecondwidgetarea {
  width: 192px; }

.b-widget-preview_item_zone_footerthirdwidgetarea {
  width: 192px; }

.b-widget-preview_item_zone_footerfourthwidgetarea {
  width: 192px; }

.b-widget-preview_item_zone_articletopwidgets {
  width: 540px; }

.b-widget-preview_item_zone_sectionheaderrotatingquotewidgets {
  width: 342px;
  height: 87px; }

.b-widget-preview_item_zone_sectionheadercommercialwidgets {
  width: 261px;
  background: #fff; }

.b-widget-preview_item_zone_webtvmain {
  width: 100%; }

.b-widget-preview_item_zone_webtvright {
  width: 100%; }

.b-widget-preview_item_zone_pagelistwidgetarea {
  width: 100%; }

.b-widget-preview_item_zone_tabwidgetwidgets {
  width: 100%; }

.b-widget-preview_item_zone_bauta2columnswidgets {
  width: 865px; }

.b-widget-preview_item_zone_bauta3columnswidgets {
  width: 980px; }

.b-widget-preview_item_zone_articlepreamblearea {
  width: 540px; }

.b-widget-preview_item_zone_webtvbottomcolumnwidgets {
  width: 980px; }

.b-widget-preview_item_zone_webtvmaincolumnwidgets {
  width: 980px; }

.b-widget-preview_item_zone_webtvrightcolumnwidgets {
  width: 230px; }

.b-widget-preview_item_zone_bottomrightzone {
  width: 265px; }

.b-widget-preview_item_zone_toprightzone {
  width: 265px; }

.b-widget-preview_item_zone_bottommiddlezone {
  width: 980px; }

.b-widget-preview_item_zone_topmiddlezone {
  width: 980px; }

.b-widget-preview_item_zone_thirdcolumnwidgets_halfwidth {
  width: 155px; }

.b-widget-preview-advteaser__col {
  display: inline-block;
  margin-right: 40px;
  vertical-align: top; }

.b-section-preview {
  width: 1800px; }

.b-section-preview__col {
  float: left; }

.l-page.b-section-preview__col {
  margin-right: 14px; }

.b-native-ad-teaser_preview {
  position: relative; }
  .b-native-ad-teaser_preview::before {
    display: block;
    position: absolute;
    content: 'ANNONS';
    font-size: 11px;
    font-weight: bold;
    top: 3px;
    left: 6px;
    color: #333; }
  .b-native-ad-teaser_preview__inner-wrp {
    padding: 20px 5px 5px;
    background-color: #eceded; }
  .b-native-ad-teaser_preview .b-headline {
    padding: 0 0 3px;
    line-height: 45px; }
    .b-native-ad-teaser_preview .b-headline a {
      font-size: 50px; }
  .b-native-ad-teaser_preview__brand {
    overflow: hidden;
    padding-top: 10px; }
  .b-native-ad-teaser_preview__brand-disclaimer {
    float: left;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px; }
  .b-native-ad-teaser_preview__brand-logo {
    float: right;
    display: block;
    width: auto;
    height: auto;
    max-height: 25px; }
  .b-native-ad-teaser_preview__link {
    color: #111 !important; }
  .b-native-ad-teaser_preview img {
    max-width: 100%;
    width: auto;
    height: auto; }

/**
 * Section for ugly fixes
 * -------------------------------------------------------------------------------------------
 */
