@charset "UTF-8";
/* --------------------------------------------------------------

STYLES COMBINED

-------------------------------------------------------------- */
/* --------------------------------------------------------------

RESET

-------------------------------------------------------------- */

@font-face {
 font-family: 'Alte Haas Grotesk';
 src: url(/ui/fonts/AlteHaasGroteskRegular.woff) format("woff"),
 url(/ui/fonts/AlteHaasGroteskRegular.eot) format("eot"),
 url(/ui/fonts/AlteHaasGroteskRegular.svg) format("svg");
 font-weight: normal;
 font-style: normal;
 /* Better Font Rendering =========== */
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 font-display: swap; }

 @font-face {
 font-family: 'Alte Haas Grotesk';
 src: url(/ui/fonts/Alte-Haas-Grotesk-Bold.ttf.woff) format("woff"),
 url(/ui/fonts/Alte-Haas-Grotesk-Bold.ttf.eot) format("eot"),
 url(/ui/fonts/Alte-Haas-Grotesk-Bold.ttf.svg) format("svg");
 font-weight: bold;
 font-style: bold;
 /* Better Font Rendering =========== */
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 font-display: swap;}


html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, 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 {
 font-size: 100%;
 font: inherit;
 border: 0;
 vertical-align: baseline;
 margin: 0;
 padding: 0; }

article, aside, details, figcaption, figure, footer, header[role="banner"], hgroup, menu, nav, section {
 display: block; }

html {
 overflow-y: scroll; }

a:hover, a:active {
 outline: 0; }

:focus {
 outline: 0; }

img {
 display: block; }

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

caption, th, td {
 font-weight: 400;
 text-align: left; }

form {
 outline: 0;
 border: 0; }

button, input, select, textarea {
 font-size: 100%;
 border: none;
 vertical-align: baseline;
 padding: 0;
 margin: 0; }

button, input {
 line-height: normal; }

button, input[type="button"], input[type="submit"] {
 cursor: pointer; }

textarea {
 overflow: auto;
 vertical-align: top; }

/* --------------------------------------------------------------

SCSS EXTENSIONS

GUIDE TO UNITS:
rem = font-sizes, use typeset() to set font-size and line-height
% = for responsive elements, use per() to calculate
px = media queries and border widths
em = for almost everything else; non-responsive widths,
max-widths, padding, margins, use em() to calculate

-------------------------------------------------------------- */
/* SET BASE FONT SIZE
This is the pixel value but do not include ‘px’
-------------------------------------------------------------- */
/* PERCENTAGES
Example use: per(500, 1000)
would output: 50%
-------------------------------------------------------------- */
/* FONT SIZE AND LINE HEIGHT
Example use (if $base is set to 18): @include typeset(18,24);
would output: font-size: 18px; font-size: 1rem; line-height: 1.33333;
-------------------------------------------------------------- */
/* EMS
Example use: em(12, 24)
would output: 0.5em
-------------------------------------------------------------- */
/* --------------------------------------------------------------

There’s always exceptions

-------------------------------------------------------------- */
/* Line-height
Example use: lh(24, 12)
would output: 2
-------------------------------------------------------------- */
/* REMS
For where you might want to use rem as a unit for something
other than font-size. So there’s also this.

Example use (if $base is set to 18): @include rem(margin,18 0);
would output: margin: 18px 0; margin: 1rem 0;
-------------------------------------------------------------- */
/* --------------------------------------------------------------

MEDIA QUERIES

A more basic version of https://github.com/guardian/sass-mq
This uses pixels not ems for breakpoints.

-------------------------------------------------------------- */
/* --------------------------------------------------------------

COLOURS

-------------------------------------------------------------- */
/* Palettes
See this Erskine article for info:
http: //erskinedesign.com/blog/friendlier-colour-names-sass-maps/
-------------------------------------------------------------- */
/* --------------------------------------------------------------

GRIDS

-------------------------------------------------------------- */
/* Defaults for small screens and up
-------------------------------------------------------------- */
.block {
 display: block;
 position: relative; }

.block__grid {
 display: block;
 position: relative;
 width: 100%;
 max-width: 25em;
 padding: 1.6875em 0.9375em;
 margin: 0 auto; }

.block__grid:after {
 content: "";
 display: table;
 clear: both; }

.col {
 float: left;
 width: 100%;
 margin-bottom: 0.9375em!important; }

 .col1 {
 margin-bottom: 0.9375em;
 margin-top: 0;
 display: inline!important; }


@media all and (max-width: 690px) {
 #main-content > .block:first-child .block__grid {
 padding-top: 0.9375em; }

 .block--sub-navigation + .block .block__grid {
 padding-top: 0.9375em; } }
/* Small screens
-------------------------------------------------------------- */
/* For medium screens
-------------------------------------------------------------- */
@media all and (min-width: 691px) and (max-width: 1023px) {
 .block__grid {
 max-width: 43.1875em;
 padding: 1.6875em 0; }

 .col {
 margin-left: 3.9073806078%; }
 .col1 {
 margin-left: 3.9073806078%; }

 .col.m-right {
 float: right;
 clear: right;
 margin-left: 0;
 margin-right: 4.07239819%; }

 .m-break {
 display: block;
 clear: both; }

 .m-clear {
 clear: both; }

 .m-right {
 float: right; }

 .m-1 {
 width: 8.1041968162%; }

 .m-2 {
 width: 20.1157742402%; }

 .m-3 {
 width: 32.1273516643%; }

 .m-4 {
 width: 44.139%; }

 .m-5 {
 width: 56.1505065123%; }

 .m-6 {
 width: 68.1620839363%; }

 .m-7 {
 width: 80.1736613603%; }

 .m-8 {
 width: 92.1852387844%; }

 .m-push-1 {
 margin-left: 15.9189580318%; }

 .m-push-2 {
 margin-left: 27.9305354559%; }

 .col--keyline {
 padding: 1.6875em 0.875em 2.0625em; } }
 @media all and (min-width: 691px) and (max-width: 1023px) and (min-width: 691px) {
 .col--keyline {
 margin-bottom: 0; } }

@media all and (min-width: 691px) and (max-width: 1023px) {
 .m-h-keyline {
 display: block;
 clear: both;
 background: #ccc;
 height: 1px;
 margin: 0 6.875em; }

 .m-h-keyline--end {
 margin: 0 1.6875em 1.6875em; }

 .m-v-keyline {
 display: block;
 float: left;
 position: relative;
 left: 0.8125em;
 background: #ccc;
 width: 1px;
 height: 24px;
 margin-right: -1px; }

 .m-h-pull-keyline {
 display: block;
 clear: both;
 height: 0;
 margin-bottom: -1.6875em; } }
/* Grid L, for large screens
-------------------------------------------------------------- */
@media all and (min-width: 1024px) {
 .block__grid {
 max-width: 63.9375em;
 padding: 1.6875em 0; }

 .col {
 margin-left: 2.6392961877%; }
 .col1 {
 margin-left: 2.6392961877%; }

 .col.l-right {
 float: right;
 clear: right;
 margin-left: 0;
 margin-right: 2.6392961877%; }

 .l-break {
 display: block;
 clear: both; }

 .l-clear {
 clear: both; }

 .l-right {
 float: right; }

 .l-1 {
 width: 5.4740957967%; }

 .l-2 {
 width: 13.587487781%; }

 .l-3 {
 width: 21.7008797654%; }

 .l-4 {
 width: 29.8142717498%; }

 .l-5 {
 width: 37.9276637341%; }

 .l-6 {
 width: 46.0410557185%; }

 .l-7 {
 width: 54.1544477028%; }

 .l-8 {
 width: 62.2678396872%; }

 .l-9 {
 width: 70.3812316716%; }

 .l-10 {
 width: 78.4946236559%; }

 .l-11 {
 width: 86.6080156403%; }

 .l-12 {
 width: 94.7214076246%; }

 .l-push-1 {
 margin-left: 6.875em; }

 .l-push-1-and-half {
 margin-left: 9.53125em; }

 .l-push-2 {
 margin-left: 12.0625em; }

 .l-push-4 {
 margin-left: 22.4375em; }

 .col--keyline {
 padding: 1.6875em 0.875em 2.0625em; } }
 @media all and (min-width: 1024px) and (min-width: 691px) {
 .col--keyline {
 margin-bottom: 0; } }

@media all and (min-width: 1024px) {
 .l-h-keyline {
 display: block;
 clear: both;
 background: #ccc;
 height: 1px;
 margin: 0 1.6875em; }

 .l-h-keyline--end {
 margin-bottom: 1.6875em; }

 .l-v-keyline {
 display: block;
 float: left;
 position: relative;
 left: 0.8125em;
 background: #ccc;
 width: 1px;
 height: 0;
 margin-right: -1px; } }
/* Grid XL, for larger screens
-------------------------------------------------------------- */
@media all and (min-width: 1355px) {
 .block__grid--xl {
 max-width: 84.6875em; }

 .grid-xl {
 clear: both;
 width: 84.6875em;
 overflow: hidden;
 position: relative;
 left: -10.375em; }

 .block__grid--xl .col, .grid-xl .col {
 margin-left: 1.6875em; }

 .block__grid--xl .col.l-right, .grid-xl .col.l-right {
 margin-right: 1.6875em; }

 .block__grid--xl .xl-1, .grid-xl .xl-1 {
 width: 4.1328413284%; }

 .block__grid--xl .xl-2, .grid-xl .xl-2 {
 width: 13.587487781%; }

 .block__grid--xl .xl-3, .grid-xl .xl-3 {
 width: 16.3837638376%; }

 .block__grid--xl .xl-4, .grid-xl .xl-4 {
 width: 22.5092250923%; }

 .block__grid--xl .xl-5, .grid-xl .xl-5 {
 width: 28.6346863469%; }

 .block__grid--xl .xl-6, .grid-xl .xl-6 {
 width: 34.7601476015%; }

 .block__grid--xl .xl-7, .grid-xl .xl-7 {
 width: 40.8856088561%; }

 .block__grid--xl .xl-8, .grid-xl .xl-8 {
 width: 47.0110701107%; }

 .block__grid--xl .xl-9, .grid-xl .xl-9 {
 width: 53.1365313653%; }

 .block__grid--xl .xl-10, .grid-xl .xl-10 {
 width: 59.2619926199%; }

 .block__grid--xl .xl-11, .grid-xl .xl-11 {
 width: 65.3874538745%; }

 .block__grid--xl .xl-12, .grid-xl .xl-12 {
 width: 71.5129151292%; }

 .block__grid--xl .xl-push-0, .grid-xl .xl-push-0 {
 margin-left: 1.6875em; }

 .block__grid--xl .xl-push-1, .grid-xl .xl-push-1 {
 margin-left: 6.875em; }

 .block__grid--xl .xl-push-2, .grid-xl .xl-push-2 {
 margin-left: 12.0625em; } }
/* --------------------------------------------------------------

BASE STYLES

- GENERAL
- LINKS
- IMAGES, VIDEO AND AUDIO

-------------------------------------------------------------- */
/* GENERAL
-------------------------------------------------------------- */
* {
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 box-sizing: border-box; }

html, body {
 font-size: 16px;
 line-height: 1;
 color: #000;
 background: #FFFFFF;
 -webkit-text-size-adjust: 100%;
 -ms-text-size-adjust: 100%; }

@media all and (min-width: 1024px) {
 #main-content {
 border-top: 15px solid #000; } }

.block.white {
 background-color: #fff;
 border: 1px solid #ccc;
 border-right: none;
 border-left: none; }

.hidden {
 position: absolute;
 left: -10000px;
 }

 .hub-headline {
 display: hidden; visibility: none;
 line-height: 0; height: 0;
 }

/* LINKS
-------------------------------------------------------------- */
a {
 color: inherit;
 text-decoration: underline; }

 a:hover {
 text-decoration: none;

 }
 a:focus {
 background: rgba(0, 0, 0, 0.1); }
 a:focus img {
 opacity: .8; }

/* IMAGES, VIDEO AND AUDIO
-------------------------------------------------------------- */
#main-content img {
 width: 100%;
 height: auto!important;}

.video-wrap {
 background: #000;
 width: 100%; }

.video {
 position: relative;
 height: 0;
 padding-bottom: 56.25%; }

.video iframe,
.video object,
.video embed,
.video .container {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 margin: 0; }

audio {
 display: block;
 clear: both;
 width: 100%; }

/* --------------------------------------------------------------

FONTS

For all font-families and weights

-------------------------------------------------------------- */
body {
 text-rendering: optimizeLegibility; }

em, i {
 font-style: inherit; }

body {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
 font-weight: 400; }

.block--article .h-byline,
.block--article .h-credits,
.block--article__text em,
.block--article__legacy em,
.block--article__legacy i {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
 font-weight: 400;}

 .h-kicker, .h-kicker1 {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
 font-weight: bold;
text-transform: uppercase;

 }

.pop-kicker {
 font-size: 12px;
 margin-bottom: 5px;
 text-transform:uppercase;
 font-weight: bold;
}

.pop-kicker a {
 text-decoration: none!important;
}

 p.festivaltickets {
 font-weight: 900;
 font-size: 24px;
 text-transform: uppercase;
 margin-top: 20px;
 margin-bottom: 40px;
 display: inline-block;
 }

 p.festivaltickets a {
 color: #FFF;
 text-decoration: none;
 background-color: #000;
 padding: 4px;
 padding-left: 6px;
 padding-right: 6px;
 letter-spacing: 0.5px;
 }

 p.festivaltickets a:hover {
 color: #333;
 }

 .section-header .h-headline {
 font-weight: 900;
     letter-spacing:-2px;

 }

 ul.section-nav li {
 font-weight: 700;
 letter-spacing: normal!important;
 text-transform: none!important;
 font-size: 21px!important;
 margin-left: 0!important;
     letter-spacing: -2px;
 }

ul.section-nav li a:hover {
text-decoration: none!important;
    background-color: black;
    color: white!important;

}

ul.social-nav {
    text-align: center;
    margin-top: 10px;
}

ul.social-nav li {
    display: inline-block;
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 13px!important;
    font-weight: bold;
    padding: 4px 8px;
}

ul.social-nav li a:hover {
    text-decoration: none!important;
}

p.section-nav-title {
 font-weight: 900;
 display: inline-block;
 font-size: 21px;
 margin-right: 5px;
    letter-spacing: -1px;
}

p.social-nav-title {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
    text-align: center;
 font-size: 22px;
margin: 0 auto;
}




.block--article__legacy strong,
.block--article__legacy b,
.block--article__legacy h1,
.block--article__legacy h2,
.block--article__legacy h3,
.block--article__legacy h4,
.block--article__legacy h5,
.block--article__legacy h6 {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
 font-weight: 600; }

 .block--article__text p strong {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
 font-weight: bold!important; }


.block--article__text strong em,
.block--article__text em strong,
.block--article__legacy strong em,
.block--article__legacy em strong,
.block--article__legacy strong i,
.block--article__legacy i strong,
.block--article__legacy b em,
.block--article__legacy em b,
.block--article__legacy b i,
.block--article__legacy i b,
.block--article__legacy h1 i,
.block--article__legacy h2 i,
.block--article__legacy h3 i,
.block--article__legacy h4 i,
.block--article__legacy h5 i,
.block--article__legacy h6 i,
.block--article__legacy h1 em,
.block--article__legacy h2 em,
.block--article__legacy h3 em,
.block--article__legacy h4 em,
.block--article__legacy h5 em,
.block--article__legacy h6 em {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
 font-weight: 600; }

input, textarea,
label,
.btn,
.block--site-masthead,
.block--sub-navigation,
.mfp-counter,
.h-section,
.h-headline,
.h-article-section,
.h-article-sub,
.block--site-footer .small,
.h-date,
.h-tags,
.block--article__share,
.block--article__pull-quote,
.block--article__pull-quote-horizontal,
.block--article .h-block-review .h-byline,
.block--article .h-block-review .h-rating {
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 300;
}

.h-article-sub strong {
 font-weight: bold!important;
}

.block--article .h-block-review .h-byline {
 font-style: normal; }

.h-headline, .h-article-section, .h-tags, .block--article .h-block-review .h-byline, .block--article .h-block-review .h-rating {
 letter-spacing: -0.25px!important;
}

.block--site-masthead .level-1,
.h-headline strong,
.h-section,
.h-article-section strong,
.h-tags strong,
.block--article__pull-quote .cite,
.block--article__pull-quote-horizontal .cite,
.block--sub-navigation .h-headline,
.block--article .h-block-review .h-byline strong,
.block--article .h-block-review .h-rating strong {
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 800;
 letter-spacing: -0.25px;
}

.cite {
 text-transform: uppercase;
}

/* --------------------------------------------------------------

ICONS
Compiled with http://icomoon.io/app/

-------------------------------------------------------------- */
/* ADDING ICONS:
You should NOT need to change this block (See line 36)
-------------------------------------------------------------- */
@font-face {
 font-family: 'diymag';
 src: url("/ui/icons/fonts/diymag5.eot");
 src: url("/ui/icons/fonts/diymag5.eot?#iefix") format("embedded-opentype"), url("/ui/icons/fonts/diymag5.woff") format("woff"), url("/ui/icons/fonts/diymag5.ttf") format("truetype"), url("/ui/icons/fonts/diymag5.svg#diymag") format("svg");
 font-weight: normal;
 font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
 font-family: 'diymag';
 speak: none;
 font-style: normal;
 font-weight: normal;
 font-variant: normal;
 text-transform: none;
 line-height: 1;
 /* Better Font Rendering =========== */
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 font-display: swap;}

/* ADDING ICONS:
Replace Content below this line
-------------------------------------------------------------- */
.icon-close:before {
 content: "\e620"; }

.icon-circle-bluesky:before {
 content: "\e621"; }

.icon-circle-threads:before {
 content: "\e622"; }

.icon-tag:before {
 content: "\e600"; }

.icon-stars-1:before {
 content: "\e613"; }

 .icon-stars-1-5:before {
 content: "1"; }

.icon-stars-2:before {
 content: "\e61a"; }

.icon-stars-2-5:before {
 content: "6"; }

.icon-stars-3:before {
 content: "\e61b"; }

 .icon-stars-3-5:before {
 content: "E"; }

.icon-stars-4:before {
 content: "\e61c"; }

.icon-stars-4-5:before {
 content: "/"; }

.icon-stars-5:before {
 content: "\e61d"; }

.icon-circle-android:before {
 content: "\e60c"; }

.icon-circle-apple:before {
 content: "\e60b"; }

.icon-circle-diy:before {
 content: "\e60a"; }

.icon-circle-facebook:before {
 content: "\e609"; }

.icon-circle-spotify:before {
 content: "\e608"; }

.icon-circle-google:before {
 content: "\e607"; }

.icon-circle-instagram:before {
 content: "\e606"; }

.icon-circle-tumblr:before {
 content: "\e605"; }

.icon-circle-twitter:before {
 content: "\e604"; }

.icon-circle-youtube:before {
 content: "\e603"; }

.icon-diy:before {
 content: "\e602"; }

.icon-search:before {
 content: "\e601"; }

.icon-circle-soundcloud:before {
 content: "\e60d"; }

.icon-circle-search:before {
 content: "\e60e"; }

.icon-circle-rss:before {
 content: "\e60f"; }

.icon-circle-pinterest:before {
 content: "\e610"; }

.icon-circle-lastfm:before {
 content: "\e611"; }

.icon-circle-left:before {
 content: "\e614"; }

.icon-circle-right:before {
 content: "\e615"; }

.icon-circle-close:before {
 content: "\e616"; }

.icon-circle-plus:before {
 content: "\e617"; }

.icon-circle-minus:before {
 content: "\e618"; }

.icon-slideshow:before {
 content: "\e619"; }

.icon-menu:before {
 content: "\e612"; }

/* --------------------------------------------------------------

FORMS

DEFAULTS
FORM--MAILCHIMP

-------------------------------------------------------------- */
/* DEFAULTS
-------------------------------------------------------------- */
form {
 outline: 0;
 border: 0; }

form ul,
form ol {
 list-style: none; }

input, textarea {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.5;
 color: #333;
 background: #fff;
 border: 1px solid #aaa;
 width: 100%;
 border-radius: 2px; }
 input:hover, input:active, input:focus, textarea:hover, textarea:active, textarea:focus {
 color: #444;
 border-color: #666; }

input {
 padding: 0.3125em 0.5625em;
 -webkit-appearance: none; }

input.checkbox {
 -webkit-appearance: checkbox;
 display: inline-block;
 width: auto; }

textarea {
 padding: 0.375em 0.5625em;
 -webkit-appearance: none; }

.btn--submit,
.btn--submit input {
 color: #fff;
 background: #666;
 border-color: #666;
 width: auto;
 -webkit-appearance: none; }
 .btn--submit:hover, .btn--submit:active, .btn--submit:focus,
 .btn--submit input:hover,
 .btn--submit input:active,
 .btn--submit input:focus {
 color: #fff;
 cursor: pointer;
 background: #444;
 border-color: #444;
 -webkit-transition: all 0; }

.btn--search {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.1428571429;
 color: #232323;
 background: transparent;
 width: auto;
 -webkit-appearance: none; }
 .btn--search:hover, .btn--search:active, .btn--search:focus {
 cursor: pointer; }
 .btn--search:focus {
 opacity: .6; }

.btn--search b {
 position: absolute;
 left: -9999px; }

/* REGISTER
-------------------------------------------------------------- */
.form-register .h-headline {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.25;
 margin: 0.75em 0 0.375em; }

.form-register li {
 margin: 0.75em 0; }

.form-register label {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.6666666667;
 display: block;
 margin: 0.1875em 0; }

.form-register .checkbox + label {
 display: inline-block;
 margin-left: 0.3333333333em; }

/* --------------------------------------------------------------

MODULES

- SECTION NAVIGATION
- SECTION HEADERS
- RULES
- STARS
- LIGHTBOX
- SIDE SCROLL
- SEARCH
- HOME PAGE BLOCKS

-------------------------------------------------------------- */
/* SECTION (SUB) NAVIGATION
-------------------------------------------------------------- */
.block--sub-navigation {
 letter-spacing: .1em;
 text-transform: uppercase;
 text-align: center; }
 @media all and (min-width: 1024px) {
 .block--sub-navigation {
 text-align: left; } }

.block--sub-navigation .block__grid {
 padding-bottom: 0; }

.block--sub-navigation .col {
 margin-bottom: 0; }

.block--sub-navigation .h-headline {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.6875;
 display: inline-block;
 margin-right: .3em; }

.block--sub-navigation ul {
 display: inline-block; }
 .block--sub-navigation ul li {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.6875;
 list-style: none;
 display: inline-block;
 margin-right: .3em; }
 .block--sub-navigation ul li a {
 text-decoration: none; }
 .block--sub-navigation ul li a:hover, .block--sub-navigation ul li a:active, .block--sub-navigation ul li a:focus, .block--sub-navigation ul li a.current {
 border-bottom: 1px solid #232323; }

/* SECTION HEADERS
-------------------------------------------------------------- */
.section-header .h-headline {
 font-size: 17.5px;
 font-size: 1.875rem;
 line-height: 1.2;
 text-align: center;
 margin: 0.4em 0; }

 .section-header .h-headline a {
 text-decoration: none;

 }

 @media all and (min-width: 691px) {
 .section-header .h-headline {
 font-size: 28px;
 font-size: 2.625rem;
 line-height: 1.1428571429;
 margin: 0.2857142857em 0; } }



/* RULES
-------------------------------------------------------------- */
.rule {
 display: block;
 clear: both;
 border-bottom: 1px solid #000; }
 @media all and (min-width: 691px) {
 .rule {
 margin: 0 1.6875em; } }
 .rule.rule--thick {
 border-bottom: 6px solid #000; }
 @media all and (min-width: 1024px) {
 .rule.rule--thick {
 border-bottom-width: 15px; } }
 .rule.rule--padding-top {
 padding-top: 0.9375em; }
 .rule.rule--margin {
 padding-top: 0.9375em;
 margin-bottom: 0.9375em; }
 .rule.rule--block-end {
 padding-top: 1.6875em; }

/* STARS
-------------------------------------------------------------- */
.h-stars.stars-5 {
 color: #fa0000; }
.stars-5 {
 color: #fa0000; }

.review-stars {
 font-size: 26px!important;
 display: inline-block;
 margin-bottom: 20px;
}

/* LIGHTBOX
-------------------------------------------------------------- */
.lightbox {
 display: block;
 position: relative; }

.lightbox img {
 margin: 0; }

.lightbox .view-all {
 font-size: 15px;
 font-size: 0.9375rem;
 line-height: 1;
 color: #fff;
 position: absolute;
 bottom: 0.4em;
 left: 0.4em; }

/* SIDE SCROLL
-------------------------------------------------------------- */
.overthrow-enabled .sidescroll {
 position: relative;
 max-width: 100%;
 overflow-x: scroll;
 padding: 0.75em 0 1.6875em;
 -webkit-overflow-scrolling: touch; }

@media all and (max-width: 690px) {
 .overthrow-enabled .sidescroll {
 float: none;
 width: 58.3783783784%;
 margin-right: auto;
 margin-left: auto; }

 .overthrow-enabled .sidescroll-wrap--s .sidescroll {
 width: 79.1891891892%; } }
.sidescroll-wrap,
.sidescroll__inner {
 position: relative; }

.sidescroll__block {
 float: left;
 width: 100%;
 margin-right: 0.9375em; }
 @media all and (min-width: 691px) {
 .sidescroll__block {
 width: 13.875em;
 margin-right: 1.6875em; } }

.sidescroll-wrap--s .sidescroll__block {
 width: 47.4402730375%; }
 @media all and (min-width: 691px) {
 .sidescroll-wrap--s .sidescroll__block {
 width: 8.6875em; } }

.sidescroll__scroll {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1;
 color: #444;
 display: block;
 position: absolute;
 top: 1em;
 padding: 0.375em;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 -o-user-select: none;
 user-select: none; }
 @media all and (min-width: 691px) {
 .sidescroll__scroll {
 font-size: 36px;
 font-size: 2.25rem;
 line-height: 1;
 color: #ccc;
 top: 3.5em;
 padding: 0; } }

.sidescroll-wrap--s .sidescroll__scroll {
 top: 1em; }
 @media all and (min-width: 691px) {
 .sidescroll-wrap--s .sidescroll__scroll {
 top: 2.3333333333em; } }

.sidescroll__scroll:hover {
 color: #232323;
 cursor: pointer; }

.sidescroll__scroll--left {
 left: -15px; }
 @media all and (min-width: 691px) {
 .sidescroll__scroll--left {
 left: 41px; } }

.sidescroll__scroll--right {
 right: -15px; }
 @media all and (min-width: 691px) {
 .sidescroll__scroll--right {
 right: 41px; } }

/* SEARCH RESULTS
-------------------------------------------------------------- */
.search-results .h-headline {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.25;
 margin: 0.5em 0; }
 @media all and (min-width: 691px) {
 .search-results .h-headline {
 font-size: 36px;
 font-size: 2.25rem;
 line-height: 1.1666666667;
 margin: 0.3333333333em 0; } }

/* HOME PAGE BLOCKS
-------------------------------------------------------------- */
@media all and (max-width: 690px) {
 .block--home-fixed-content .block__grid {
 padding-top: 0; } }
/* --------------------------------------------------------------

MASTHEAD

-------------------------------------------------------------- */
.block--site-masthead {
 background: #fff;
 border-bottom: 3px solid #000;
 border-top: 3px solid #000;
 padding: 1.5em 0.9375em 0; }
 @media all and (min-width: 691px) {
 .block--site-masthead {
 padding-right: 0;
 padding-left: 0; } }

@media all and (min-width: 1024px) {
 .js .block--site-masthead.fix {
 width: 100%;
 position: fixed;
 top: -54px;
 right: 0;
 left: 0;
 z-index: 99999; } }
.js .js-block--site-masthead-spacer {
 display: none; }
 @media all and (min-width: 1024px) {
 .js .js-block--site-masthead-spacer {
 display: block; } }

.block--site-masthead .block__grid {
 padding: 0; }

.block--site-masthead .col {
 margin-bottom: 0; }

.block--site-masthead .main {
 position: relative;
 margin-bottom: 1.5em; }
 @media all and (min-width: 1024px) {
 .block--site-masthead .main {
 margin-bottom: 0; } }

/* Logo
-------------------------------------------------------------- */
.block--site-masthead .logo {
 font-size: 33px;
 font-size: 2.0625rem;
 line-height: 1;
 color: #000;
 text-align: center;
 display: block;
 margin: 0 1.2727272727em; }
 @media all and (min-width: 691px) {
 .block--site-masthead .logo {
 font-size: 42px;
 font-size: 2.625rem;
 line-height: 1;
 margin: 0 1em; } }
 @media all and (min-width: 1024px) {
 .block--site-masthead .logo {
 font-size: 60px;
 font-size: 3.75rem;
 line-height: 1;
 text-align: left;
 margin: 0.2745098039em 0 0;
 -webkit-transition: all 0;
 -moz-transition: all 0;
 transition: all 0; } }

@media all and (min-width: 1024px) {
 .js .block--site-masthead.fix .logo {
 font-size: 36px;
 font-size: 2.25rem;
 line-height: 1;
 margin-top: 1.4166666667em; } }
.block--site-masthead .logo a {
 text-decoration: none; }
 .block--site-masthead .logo a:focus {
 background: none;
 opacity: .8; }

.block--site-masthead .logo b {
 position: absolute;
 left: -9999px; }

/* Navigation
-------------------------------------------------------------- */
.site-nav {
 text-align: center;
 position: relative; }
 @media all and (min-width: 1024px) {
 .site-nav {
 text-align: left;
 padding-top: 0;
 margin-top: 0;
 margin-bottom: 0; } }

.block--site-masthead .site-nav-toggle-btn {
 display: none; }

.js .site-nav-toggle-btn {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1;
 color: #232323;
 text-decoration: none;
 border: 1px solid #ccc;
 border-radius: 2px;
 display: block;
 position: absolute;
 top: -0.3333333333em;
 right: 0;
 padding: 0.5em;
 -webkit-tap-highlight-color: transparent;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 -o-user-select: none;
 user-select: none; }
 @media all and (min-width: 691px) {
 .js .site-nav-toggle-btn {
 top: -0.0416666667em;
 padding: 0.375em; } }
 @media all and (min-width: 1024px) {
 .js .site-nav-toggle-btn {
 display: none; } }

.js .site-nav {
 max-height: 0;
 overflow: hidden;
 -webkit-transform: translate(0, 0);
 -moz-transform: translate(0, 0);
 -ms-transform: translate(0, 0);
 -o-transform: translate(0, 0);
 transform: translate(0, 0);
 -webkit-transition: max-height .3s ease-out;
 -moz-transition: max-height .3s ease-out;
 transition: max-height .3s ease-out; }

.js .site-nav.visible {
 max-height: 22.5em; }

@media all and (min-width: 1024px) {
 .js .site-nav,
 .js .site-nav.visible {
 max-height: none;
 -webkit-transition: max-height 0;
 -moz-transition: max-height 0;
 transition: max-height 0; } }
.site-nav .rule {
 display: block;
 border-top: 9px solid #232323;
 margin: 0 0 1.125em; }
 @media all and (min-width: 691px) {
 .site-nav .rule {
 border-top-width: 12px; } }
 @media all and (min-width: 1024px) {
 .site-nav .rule {
 display: none; } }

.site-nav .level-1,
.site-nav .level-3 {
 text-transform: uppercase;
 letter-spacing: .1em; }

.site-nav li {
 list-style: none; }

.site-nav .level-1 li,
.site-nav .level-3 li {
 white-space: nowrap;
 display: inline;
 padding: 0 0.1875em; }

.site-nav a {
 text-decoration: none;
 background: none; }

.site-nav .level-1 {
 padding-bottom: 1.125em; }
 @media all and (min-width: 1024px) {
 .site-nav .level-1 {
 float: left;
 width: 100%;
 padding: 0 0 2.0625em;
 margin-top: 3.1875em;
 margin-right: 0;
 margin-left: 0; } }

.site-nav .level-1 li {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 2;
 margin-right: .3em; }
 @media all and (min-width: 1024px) {
 .site-nav .level-1 li {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.2857142857; } }

.site-nav .level-1 .reviews:after {
 content: "\A";
 white-space: pre; }
 @media all and (min-width: 691px) {
 .site-nav .level-1 .reviews:after {
 content: ""; } }

.site-nav .level-1 a {
 color: #232323;
 display: inline; }
 .site-nav .level-1 a:hover, .site-nav .level-1 a:active, .site-nav .level-1 a:focus {
 border-bottom: 3px solid #232323; }
 @media all and (min-width: 1024px) {
 .site-nav .level-1 a:hover, .site-nav .level-1 a:active, .site-nav .level-1 a:focus {
 border-bottom-width: 6px; } }

.section-news .site-nav .level-1 .news a,
.section-features .site-nav .level-1 .features a,
.section-reviews .site-nav .level-1 .reviews a,
.section-neu .site-nav .level-1 .neu a,
.section-tv .site-nav .level-1 .tv a,
.section-extra .site-nav .level-1 .extra a {
 border-bottom: 3px solid #232323; }
 @media all and (min-width: 1024px) {
 .section-news .site-nav .level-1 .news a,
 .section-features .site-nav .level-1 .features a,
 .section-reviews .site-nav .level-1 .reviews a,
 .section-neu .site-nav .level-1 .neu a,
 .section-tv .site-nav .level-1 .tv a,
 .section-extra .site-nav .level-1 .extra a {
 border-bottom-width: 6px; } }

@media all and (min-width: 1024px) {
 .site-nav .level-2 {
 position: absolute;
 top: 3.0625em;
 right: 0;
 margin-top: 0;
 margin-right: 0;
 margin-left: 0; } }
.block--site-masthead .form-search {
 display: block;
 position: relative;
 width: 13.875em;
 margin: 0 auto 1.5em; }
 @media all and (min-width: 1024px) {
 .block--site-masthead .form-search {
 width: 10.875em;
 margin: 0 0 1.5em; } }

.block--site-masthead .form-search .h-headline {
 position: absolute;
 left: -9999px; }

.block--site-masthead .form-search .input-keywords {
 background: transparent;
 border-color: #232323;
 display: inline;
 width: 100%;
 border-top: none;
 border-right: none;
 border-left: none;
 border-radius: 0;
 padding-right: 2.25em;
 padding-left: 0; }

.block--site-masthead .form-search .btn--search {
 position: absolute;
 top: .2em;
 right: 0; }

.site-nav .level-3 {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.875;
 padding-bottom: 0.9375em; }
 @media all and (min-width: 1024px) {
 .site-nav .level-3 {
 border: none;
 position: absolute;
 top: 1.125em;
 padding: 0;
 margin-right: 0;
 margin-left: 0; } }

@media all and (min-width: 1024px) {
 .js .block--site-masthead.fix .level-3 {
 position: absolute;
 left: -9999px; }

 .site-nav .level-3 li {
 font-size: 17px;
 font-size: 1.0625rem;
 line-height: 1.5882352941;
 margin-right: .3em; } }
.site-nav .level-3 a {
 color: #232323;
 display: inline; }
 .site-nav .level-3 a:hover, .site-nav .level-3 a:active, .site-nav .level-3 a:focus, .site-nav .level-3 a.current {
 background: none;
 border-bottom: 1px solid #232323; }

.section-diy-magazine .site-nav .level-3 .diy-magazine a,
.section-diy-weekly .site-nav .level-3 .diy-weekly a,
.section-diy-presents .site-nav .level-3 .diy-presents a {
 border-bottom: 1px solid #232323; }

.site-nav .level-4 {
 overflow: hidden;
 width: auto;
 padding: 0;
 margin: 0 auto; }
 @media all and (min-width: 1024px) {
 .site-nav .level-4 {
 position: absolute;
 top: 0.1875em;
 right: 0; } }

@media all and (min-width: 1024px) {
 .js .block--site-masthead.fix .level-4 {
 position: absolute;
 left: -9999px; } }
.site-nav .level-4 li {
 float: left;
 border: none; }

.site-nav .level-4 li a {
 font-size: 25px;
 line-height: 1.2;
 color: #000;
 padding: 0 0.1em; }
 @media all and (min-width: 1024px) {
 .site-nav .level-4 li a {
 padding: 0 0 0 0.2em; } }
 .site-nav .level-4 li a:focus {
 opacity: .6; }



.site-nav .level-4 b {
 position: absolute;
 left: -9999px; }

/* --------------------------------------------------------------

PREVIEWS

- PAGINATION
- STANDARD PREVIEWS
- LEAD PREVIEWS
- FEATURED PREVIEWS
- SIDESCROLL PREVIEWS

-------------------------------------------------------------- */
/* PAGINATION
-------------------------------------------------------------- */
.pagination {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.875;
 text-align: center;
 text-transform: uppercase;
 display: block;
 clear: both;
 margin-top: 1.6875em; }
 @media all and (min-width: 691px) {
 .pagination {
 border-top: 1px solid #ccc;
 padding-top: 1.6875em;
 margin-top: 0.75em; } }

.pagination .btn, .tags .btn {
 text-decoration: none;
 display: inline-block;
 border: 0;
 border-radius: 2px;
    color: white;
    background-color: black;
        font-weight:bold;
 padding: 0.375em 0.5625em;
        border: 2px solid black;
 margin: 0 .15em; }
 .pagination .btn .arrow {
 position: relative;
 top: -0.0625em;}

.pagination .btn:hover, .tags .btn:hover {
    color: black;
    background-color: white;
}

/* STANDARD PREVIEWS
-------------------------------------------------------------- */
.preview {
 overflow: hidden;
 position: relative; }


@media all and (max-width: 690px) {
 .sidescroll .preview {
 border: none;
 padding-top: 0;
 padding-bottom: 0;
 margin-bottom: 0; } }

.preview a {
 text-decoration: none; }

.preview .img img {
 margin-top: 1.3125em; }
@media all and (max-width: 690px) {
 .preview .img {
 display: block;
 float: right;
 max-width: 37.5675675676%;
 margin-bottom: 0.75em;
 margin-left: 0.9375em; }
 .preview .img img {
 margin-top: 0; } }

@media all and (max-width: 690px) {
 .sidescroll .preview .img {
 display: block;
 float: none;
 max-width: none;
 margin-bottom: 0;
 margin-left: 0; }
 .sidescroll .preview .img img {
 margin-top: 1.3125em; } }

@media all and (min-width: 691px) {
 .preview header:first-child {
 padding-top: 0.5625em; } }
@media all and (max-width: 690px) {
 .preview header {
 display: inline; } }
.preview .h-section {
 display: none;
 visibility: hidden;
 font-size: 13px;
 font-size: 0.8125rem;
 line-height: 1.1538461538;
 letter-spacing: .1em;
 text-transform: uppercase;
 position: absolute;
 top: 0; }
 @media all and (max-width: 690px) {
 .preview .h-section {
 display: none;
 visibility: hidden;
 font-size: 12px;
 font-size: 0.75rem;
 line-height: 1.5;
 position: relative;
 top: -0.25em;
 margin: 0 0 -0.25em; } }

@media all and (max-width: 690px) {
 .sidescroll .preview .h-section {
 position: absolute;
 top: 0;
 margin: 0; } }

 header .h-section {
 display: none;
 visibility: hidden;

 }

.preview .h-kicker {
 font-size: 14px;
    margin-top: 15px;
    margin-bottom: -5px;
}

.preview .h-kicker a:hover {
    color: white;
}

.preview .h-kicker span.k-news:hover {
    background-color: #ff26a8;
}

.preview .h-kicker span.k-neu:hover {
    background-color: #d0d0d1;
}

.preview .h-kicker span.k-festivals:hover {
    background-color: #51982f;
}

p.h-kicker {
    margin-bottom: 0;
}

.h-kicker1 {
 margin-top: 15px;
 font-size: 14px;
 font-weight: bold;
}

.preview .h-headline {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.3333333333;
 letter-spacing: .1em;
 text-transform: uppercase;
 margin: 0.8333333333em 0 0.3333333333em; }
 .preview .h-headline .pre, .preview .h-headline .post {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.3333333333;
 display: block; }
 .preview .h-headline .h-headline__block {
 display: block; }

.preview .h-headline a:hover {
    background-color: black;
    color:white;
}

.preview .h-kicker + .h-headline {
 margin: 0.375em 0; }

.preview .img + header .h-headline {
 margin-top: 0.5625em; }
 @media all and (max-width: 690px) {
 .preview .img + header .h-headline {
 max-width: 56.7567567568%; } }

.preview .h-stars {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.5; }

.preview .h-stars-a {
 font-size: 12px;
 line-height: 1.2; margin-top: 7px;}

.preview .h-standfirst {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.3125; }
 @media all and (max-width: 690px) {
 .preview .h-standfirst {
 font-size: 15px;
 font-size: 0.9375rem;
 line-height: 1.4; } }

.preview .h-date {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.5;
 color: #333;
 margin: 1.0714285714em 0 0; }

.preview .h-tags {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.5;
 color: #333; }
 .preview .h-tags .icon-tag {
 font-size: 11px;
 font-size: 0.6875rem;
 line-height: 1.9090909091;
 color: #aaa;
 margin-right: 0.2727272727em; }

.preview .h-standfirst + .h-tags {
 margin-top: 1.0714285714em; }

/* LEAD PREVIEWS
-------------------------------------------------------------- */
.lead-preview {
 word-wrap: break-word;
 text-align: center;
 margin-bottom: 0; }
 @media all and (min-width: 691px) {
 .lead-preview {
 margin-bottom: 1.6875em; } }

.lead-preview a {
 text-decoration: none; }

.lead-preview .img {
 display: block;
 min-height: 5.625em; }

.lead-preview header {
 border: 1px solid #ccc;
 border-top: none;
 border-bottom: none;
 position: relative;
 padding: 0.75em 0.9375em; }
 @media all and (min-width: 691px) {
 .lead-preview header {
 border: none;
 padding: 0 1.3125em;
 margin-top: -2.0625em; } }
 @media all and (min-width: 1024px) {
 .lead-preview header {
 margin-top: -3.5625em; } }

.lead-preview .h-kicker {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.2857142857;
 margin-bottom: 0.1428571429em; }
 .lead-preview .h-kicker a:focus {
 color: #333; }
 @media all and (min-width: 691px) {
 .lead-preview .h-kicker {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.25;
 position: relative;
 top: -1.5em;
 margin-bottom: -1.375em; }
 .lead-preview .h-kicker a {
 border-top: 6px solid #FFF;
 background: #FFF;
 box-shadow: -21px 0 0 #FFF, 21px 0 0 #FFF; } }
 @media all and (min-width: 1024px) {
 .lead-preview .h-kicker {
 font-size: 30px;
 font-size: 1.875rem;
 line-height: 1;
 position: relative;
 top: -1.3em;
 margin-bottom: -1em; }
 .lead-preview .h-kicker a {
 border-top: 6px solid #FFF;
 background: #FFF;
 box-shadow: -21px 0 0 #FFF, 21px 0 0 #FFF; } }

.lead-preview .h-headline {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.375;
 letter-spacing: .1em;
 text-transform: uppercase;
 margin: 0 0 0.25em; }
 @media all and (min-width: 691px) {
 .lead-preview .h-headline {
 font-size: 36px;
 font-size: 2.25rem;
 line-height: 1.3333333333;
 padding: 0 0.5833333333em;
 margin: 0 0 0.1666666667em; }
.lead-preview .h-headline a p {
 display: inline;
 border-top: 9px solid #FFF;
 background: #FFF;
 box-shadow: -18px 0 0 #FFF, 18px 0 0 #FFF; }
 .lead-preview .h-headline a:focus {
 color: #333; } }
 @media all and (min-width: 1024px) {
 .lead-preview .h-headline {
 font-size: 54px;
 font-size: 3.375rem;
 line-height: 1.3333333333;
 padding: 0 0.5em;
 margin: 0 0 0.1111111111em; }
 .lead-preview .h-headline a {
 border-top: 15px solid #FFF;
 background: #FFF;
 box-shadow: -27px 0 0 #FFF, 27px 0 0 #FFF; }
 .lead-preview .h-headline a:focus {
 color: #333; } }

.lead-preview .h-standfirst {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.3125;
 max-width: 29.4375em;
 margin: 0 auto 0.375em; }

/* FEATURED PREVIEWS
-------------------------------------------------------------- */
.featured-preview {
 text-align: center;
 word-wrap: break-word;
 position: relative; }
 @media all and (max-width: 690px) {
 .featured-preview {
 border: 1px solid #ccc;
 border-right: none;
 border-left: none;
 padding-bottom: 1.6875em;
 margin-bottom: -1px; }
 .featured-preview:first-child {
 border-top: none; } }
 @media all and (min-width: 691px) {
 .featured-preview {
 text-align: left; } }

.featured-preview a {
 text-decoration: none; }

.featured-preview img {
 margin-top: 2.8125em; }
 @media all and (min-width: 691px) {
 .featured-preview img {
 margin-top: 1.3125em; } }

.featured-preview:first-child img {
 margin-top: 1.3125em; }

.featured-preview.col--keyline img {
 margin-top: 2.8125em; }
 @media all and (min-width: 691px) {
 .featured-preview.col--keyline img {
 margin-top: 1.125em; } }

.featured-preview .h-section {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.0714285714;
 letter-spacing: .1em;
 text-transform: uppercase;
 position: absolute;
 top: 1.6875em;
 width: 100%; }
 @media all and (min-width: 691px) {
 .featured-preview .h-section {
 top: 0;
 width: auto; } }

.featured-preview:first-child .h-section {
 top: 0; }

.featured-preview.col--keyline .h-section {
 top: 1.6875em; }

.featured-preview .h-kicker {
 font-size: 14px;
 font-size: 1.125rem; }
 @media all and (min-width: 691px) {
 .featured-preview .h-kicker {
 font-size: 14px;
 font-size: 1.3125rem; } }

.featured-preview .h-headline {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.4285714286;
 letter-spacing: .1em;
 text-transform: uppercase;
 margin: 0.5714285714em 0 0.2857142857em; }
 @media all and (min-width: 691px) {
 .featured-preview .h-headline {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.25;
 margin: 0.5em 0 0.2857142857em; } }

.featured-preview .h-kicker + .h-headline {
 margin: 0.2857142857em 0; }

.featured-preview .h-stars {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.5; }

.featured-preview .h-standfirst {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.3125; }

.featured-preview .h-date {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.5;
 color: #333;
 margin: 0.9375em 0 0; }

.featured-preview .h-tags {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.5;
 color: #333; }
 .featured-preview .h-tags .icon-tag {
 font-size: 11px;
 font-size: 0.6875rem;
 line-height: 1.9090909091;
 color: #aaa;
 margin-right: 0.2727272727em; }
 .featured-preview .h-tags a {
 text-transform: capitalize; }

.featured-preview .h-standfirst + .h-tags {
 margin-top: 0.9375em; }

@media all and (min-width: 691px) {
 .featured-preview__portrait .img {
 display: block;
 float: left;
 max-width: 47.1337579618%; }
 .featured-preview__portrait .img img {
 margin-top: 0; }

 .featured-preview__portrait header {
 float: right;
 max-width: 47.1337579618%; }

 .featured-preview__portrait .h-section {
 position: static;
 margin: 0 0 0.4285714286em; }

 .featured-preview__portrait .h-kicker {
 margin: 0.375em 0 -0.1875em; } }
/* SIDESCROLL PREVIEWS
-------------------------------------------------------------- */
.sidescroll .preview .h-kicker {
 font-size: 17px;
 font-size: 1.0625rem;
 line-height: 1.2352941176; }

.sidescroll .preview .h-headline {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.3125;
 letter-spacing: .1em;
 text-transform: uppercase;
 margin: 0.375em 0; }

@media all and (max-width: 690px) {
 .sidescroll .preview .img + header .h-headline {
 max-width: none; } }

.sidescroll-wrap--s .sidescroll .preview .h-kicker {
 font-size: 15px;
 font-size: 0.9375rem;
 line-height: 1.4; }

.sidescroll-wrap--s .sidescroll .preview .h-headline {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.5;
 margin: 0.4285714286em 0 0.2142857143em; }

.sidescroll-wrap--s .sidescroll .preview .img + header .h-headline {
 margin-top: 0.5625em; }
 @media all and (max-width: 690px) {
 .sidescroll-wrap--s .sidescroll .preview .img + header .h-headline {
 max-width: none; } }

/* --------------------------------------------------------------

SINGLE ARTICLES

- COLUMNS
- GENERAL TYPOGRAPHY
- IMAGES, VIDEO, AUDIO, IFRAMES
- HEADER: STANDARD (.h-block)
- HEADER: FULL SCREEN (.h-block-full-screen)
- FOOTER
- ADVERTS
- KEYLINES
- LEGACY
- RAFFLECOPTER
- IPLAYER
- ISSUU

-------------------------------------------------------------- */
/* COLUMNS
-------------------------------------------------------------- */
.block--article .col {
 margin-bottom: 0!important; }

@media all and (max-width: 690px) {
 .block--article .block .col.preview {
 margin-bottom: -1px; } }
@media all and (min-width: 691px) {
 .block--article .block .col.preview {
 margin-bottom: 1.6875em; } }

@media all and (min-width: 691px) {
 .block--article .col.col--keyline {
 margin-bottom: 0; } }
/* GENERAL TYPOGRAPHY
-------------------------------------------------------------- */
.block--article__text .h-standfirst {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.375;
 margin: 0; font-weight: bold;}
 @media all and (min-width: 691px) {
 .block--article__text .h-standfirst {
 font-size: 27px;
 font-size: 1.6875rem;
 line-height: 1.3333333333;
 font-weight: bold;} }

.block--article__text p {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.6666666667;
 margin: 0.6666666667em 0; }

@media all and (max-width: 691px) {
 .block--article__text p {
 margin-bottom: 10px; } }


.block--article__text li {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.6666666667;
 list-style-position: inside;
 margin: 0.6666666667em 0; }

.block--article .h-article-section {
 font-size: 27px;
 font-size: 1.6875rem;
 line-height: 1.4444444444;
 text-transform: uppercase;
 margin-top: 1em; }
 @media all and (min-width: 691px) {
 .block--article .h-article-section {
 font-size: 30px;
 font-size: 1.875rem;
 line-height: 1.3;
 margin-top: 0.9em; } }

.block--article .h-article-sub {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.375;
 margin: 0.75em 0 0; }

.block--article .h-article-sub-sub {
 font-size: 19px;
 line-height: 1.4647058824;
 margin-top: 7px; margin-bottom: 0!important;
 font-weight: bold!important;}

.block--article .finish {
 font-size: .8em; }

/* FEATURED LISTS
-------------------------------------------------------------- */
.block--article__featured-list ul,
.block--article__featured-list ol {
 border-top: 1px solid #ddd;
 margin: 0.7142857143em 0; }

.block--article__featured-list ul {
 list-style: none; }

.block--article__featured-list li {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.5714285714;
 list-style-position: inside;
 border-bottom: 1px solid #ddd;
 padding: 0.7142857143em 0; }

/* QUOTES
-------------------------------------------------------------- */
.block--article__pull-quote {
 position: relative;
 padding: 0.9375em 0 1.3125em 1.5em; overflow:visible!important;}
 @media all and (min-width: 1024px) {
 .block--article__pull-quote {
 padding-left: 2.625em; } }

.block--article__pull-quote .quote {
 font-size: 24px;
 line-height: 1.5714285714;
 margin: -0.4285714286em 0; font-weight: 900;}
 @media all and (min-width: 1024px) {
 .block--article__pull-quote .quote {
 font-size: 33px;
 line-height: 1.4;
 margin: -0.3em 0; } }

.block--article__pull-quote .cite {
 font-size: 18px;
 text-transform: none;
 font-weight: 700;
 line-height: 2.1428571429;
 margin: 1.0714285714em 0 -0.6428571429em; }
 @media all and (min-width: 1024px) {
 .block--article__pull-quote .cite {
 font-size: 20px;
 line-height: 1.875;
 margin: 0.9375em 0 -0.5625em; } }

.block--article__pull-quote .rule {
 background: #232323;
 clear: none;
 position: absolute;
 top: 0.9375em;
 bottom: 1.125em;
 left: 0;
 width: 0.375em;
 height: auto;
 margin: 0; }
 @media all and (min-width: 1024px) {
 .block--article__pull-quote .rule {
 top: 0.9375em;
 width: 0.9375em; } }

.block--article__pull-quote-horizontal {
 position: relative;
 padding: 0.75em 0 0.9375em 0; }

.block--article__pull-quote-horizontal .quote {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.5714285714;
 border-top: 6px solid #232323;
 padding-top: 0.5625em;
 margin-bottom: -0.4285714286em; text-transform: uppercase; letter-spacing: -1px; font-weight: bold; }
 @media all and (min-width: 1024px) {
 .block--article__pull-quote-horizontal .quote {
 font-size: 30px;
 font-size: 1.875rem;
 line-height: 1.4;
 border-top-width: 15px;
 margin-bottom: -0.3em; text-transform: uppercase; letter-spacing: -1px; font-weight: bold; } }

.block--article__pull-quote-horizontal .cite {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 2.1428571429;
 margin: 1.0714285714em 0 -0.6428571429em; }
 @media all and (min-width: 1024px) {
 .block--article__pull-quote-horizontal .cite {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.875;
 margin: 0.9375em 0 -0.5625em; } }

.block--article__pull-quote-horizontal .rule {
 display: none; }

/* IMAGES, VIDEO, AUDIO, IFRAMES
-------------------------------------------------------------- */
.block--article__branding-2 {
 padding: 0.375em 0 0.9375em; }

.block--article iframe,
.block--article embed,
.block--article object {
 margin: 0.75em 0 0.9375em; }

.block--article__image,
.block--article__video,
.block--article__audio {
 padding: 0.75em 0 0.9375em; }

.block--article__video iframe {
 margin: 0; }

/* HEADER: STANDARD (.h-block)
-------------------------------------------------------------- */
.block--article .h-block .block__grid {
 margin-bottom: 0; }
 .block--article .h-block .block__grid .col {
 margin-top: 0;
 margin-bottom: 0; }
 @media all and (max-width: 690px) {
 .block--article .h-block .block__grid {
 padding-bottom: 0; } }

.block--article .h-block + .block__grid {
 padding-top: 0; }

.block--article .h-block img {
 margin: 0 0 1.6875em; }

.block--article .h-block .h-kicker {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.375;
 margin: 0 0 -0.1875em; }

.block--article .h-block .h-headline {
 letter-spacing: .1em;
 text-transform: uppercase;
 margin: 0.375em 0 1.125em; }
 @media all and (min-width: 691px) {
 .block--article .h-block .h-headline {
 margin: 0.75em 0 1.6875em; } }
 .block--article .h-block .h-headline .h-headline__pre, .block--article .h-block .h-headline .h-headline__post {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.3333333333;
 display: block; }
 @media all and (min-width: 691px) {
 .block--article .h-block .h-headline .h-headline__pre, .block--article .h-block .h-headline .h-headline__post {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.4285714286; } }
 .block--article .h-block .h-headline .h-headline__pre {
 margin-bottom: 0.1666666667em; }
 .block--article .h-block .h-headline .h-headline__post {
 margin-top: 0.1666666667em; }
 .block--article .h-block .h-headline .h-headline__main {
 font-size: 42px;
 line-height: 1.3;
 display: block; }
 @media all and (min-width: 691px) {
 .block--article .h-block .h-headline .h-headline__main {
 font-size: 60px;
 line-height: 1.2857142857; } }

.block--article .h-block .h-section {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.0714285714;
 text-transform: uppercase;
 position: absolute;
 top: 0; }

.block--article .h-block .h-standfirst {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.375;
 margin: 1.125em 0 0; font-weight: bold;}
 @media all and (min-width: 691px) {
 .block--article .h-block .h-standfirst {
 font-size: 27px;
 font-size: 1.6875rem;
 line-height: 1.3333333333;
 margin: 1em 0; font-weight: bold;} }

.block--article .h-block .h-byline {
 font-size: 14px;
 font-size: 1.125rem;
 line-height: 1.6666666667;
 color: #000;
 margin: 0.6666666667em 0 1.5em; }
 @media all and (min-width: 691px) {
 .block--article .h-block .h-byline {
 text-align: right;
 position: relative;
 top: 0.1666666667em;
 margin: 1.5em 0; } }

.h-byline-news {
 text-align: left!important;
}

/* HEADER: REVIEW (.h-block-review)
-------------------------------------------------------------- */
.block--article .h-block-review .block__grid {
 margin-bottom: 0; }
 .block--article .h-block-review .block__grid .col {
 margin-top: 0;
 margin-bottom: 0; }
 @media all and (max-width: 690px) {
 .block--article .h-block-review .block__grid {
 padding-bottom: 0; } }

.block--article .h-block-review + .block__grid {
 padding-top: 0; }

.block--article .h-block-review img {
 margin: 0.5625em 0 0; }
 @media all and (min-width: 691px) {
 .block--article .h-block-review img {
 margin: 1.3125em 0; } }

.block--article .h-block-review .h-kicker {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.375;
 }

.block--article .h-block-review .h-headline {
 letter-spacing: .1em;
 text-transform: uppercase;
 margin: 0.375em 0 1.125em; }
 @media all and (min-width: 691px) {
 .block--article .h-block-review .h-headline {
 margin: 0.75em 0 1.6875em; } }
 .block--article .h-block-review .h-headline .h-headline__pre, .block--article .h-block-review .h-headline .h-headline__post {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.3333333333;
 display: block; }
 @media all and (min-width: 691px) {
 .block--article .h-block-review .h-headline .h-headline__pre, .block--article .h-block-review .h-headline .h-headline__post {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.4285714286; } }
 .block--article .h-block-review .h-headline .h-headline__pre {
 margin-bottom: 0.1666666667em; }
 .block--article .h-block-review .h-headline .h-headline__post {
 margin-top: 0.1666666667em; }
 .block--article .h-block-review .h-headline .h-headline__main {
 font-size: 42px;
 line-height: 1.3em;
 display: block; }
 @media all and (min-width: 691px) {
 .block--article .h-block-review .h-headline .h-headline__main {
 font-size: 60px;
 line-height: 1.2857142857; } }

.block--article .h-block-review .h-standfirst {
 font-size: 24px;
 font-size: 1.5rem;
 max-width: 26.5416666667em;
 margin: 0.5em 0 0.875em; }
 @media all and (min-width: 691px) {
 .block--article .h-block-review .h-standfirst {
 font-size: 27px;
 font-size: 1.6875rem;
 line-height: 1.3333333333;
 margin: 1em 0; } }

.block--article .h-block-review .h-byline,
.block--article .h-block-review .h-rating {
 font-size: 14px;
 font-size: 1.125rem;
 line-height: 1.6666666667;
 letter-spacing: .1em;
 text-transform: uppercase;
 margin: 0.6666666667em 0; }


/* HEADER: FULL SCREEN (.h-block-full-screen)
-------------------------------------------------------------- */
.block--article .h-block-full-screen .block__grid {
 margin-bottom: 0; }
 .block--article .h-block-full-screen .block__grid .col {
 margin-top: 0;
 margin-bottom: 0; }
 @media all and (max-width: 690px) {
 .block--article .h-block-full-screen .block__grid {
 padding-bottom: 0; } }

.block--article .h-block-full-screen + .block__grid {
 padding-top: 0; }

.block--article .h-block-full-screen .h-headline {
 letter-spacing: .1em;
 text-transform: uppercase;
 max-width: 60.5625em;
 padding: 5.625em 1.6875em;
 margin: 0 auto; }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline {
 padding: 7.5em 1.6875em; } }
 .block--article .h-block-full-screen .h-headline .h-headline__pre {
 display: block; }
 .block--article .h-block-full-screen .h-headline .h-headline__pre .inner {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.2857142857;
 color: #fff;
 background: #000;
 border: 6px solid #000;
 border-left: none;
 border-right: none;
 box-shadow: 12px 0 0 #000, -12px 0 0 #000;
 position: relative;
 top: -0.75em; }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline .h-headline__pre .inner {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.1428571429;
 box-shadow: 18px 0 0 #000, -18px 0 0 #000;
 top: -0.75em; } }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline .h-headline__pre.text-center {
 text-align: center; }
 .block--article .h-block-full-screen .h-headline .h-headline__pre.text-right {
 text-align: right; } }
 .block--article .h-block-full-screen .h-headline .h-headline__main {
 color: #000;
 display: block;      letter-spacing:-1px;}
 .block--article .h-block-full-screen .h-headline .h-headline__main .inner {
 font-size: 42px;
 line-height: 1.3;
 background: #FFF;
 border: 6px solid #FFF;
 border-left: none;
 border-right: none;
 box-shadow: 12px 0 0 #FFF, -12px 0 0 #FFF; }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline .h-headline__main .inner {
 font-size: 60px;
 line-height: 1.2857142857;
 border: 9px solid #FFF;
 box-shadow: 18px 0 0 #FFF, -18px 0 0 #FFF; } }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline .h-headline__main.text-center {
 text-align: center; }
 .block--article .h-block-full-screen .h-headline .h-headline__main.text-right {
 text-align: right; } }
 .block--article .h-block-full-screen .h-headline .h-headline__post {
 display: block; }
 .block--article .h-block-full-screen .h-headline .h-headline__post .inner {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.2857142857;
 color: #fff;
 background: #000;
 border: 6px solid #000;
 border-left: none;
 border-right: none;
 box-shadow: 12px 0 0 #000, -12px 0 0 #000;
 position: relative;
 top: 0.75em; }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline .h-headline__post .inner {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1.1428571429;
 box-shadow: 18px 0 0 #000, -18px 0 0 #000;
 top: 0.75em; } }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline .h-headline__post.text-center {
 text-align: center; }
 .block--article .h-block-full-screen .h-headline .h-headline__post.text-right {
 text-align: right; } }

.block--article .h-block-full-screen .h-headline-img {
 max-width: 29.4375em;
 padding: 5.625em 1.6875em;
 margin: 0 auto; }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-headline-img {
 padding: 7.5em 1.6875em; } }

 .h-headline-img1 {
 min-width: 0!important;
 min-height: 0!important;
 padding: 0;
 width: auto;
 height: auto;
 max-width: 29.4375em;
 margin: 0 auto;
 padding: 1.625em 0.6875em;
 }

.block--article .h-block-full-screen .h-standfirst {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1.375;
 max-width: 30.3333333333em;
 margin: 1.125em 0 0; }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-standfirst {
 font-size: 27px;
 font-size: 1.6875rem;
 line-height: 1.3333333333;
 max-width: 23.5925925926em;
 margin: 1em 0; } }

.block--article .h-block-full-screen .h-byline,
.block--article .h-block-full-screen .h-credits {
 font-size: 13px;
 line-height: 1.6666666667;
 color: #333;
 margin: 0.6666666667em 0 1.5em; }
 @media all and (min-width: 691px) {
 .block--article .h-block-full-screen .h-byline,
 .block--article .h-block-full-screen .h-credits {
 text-align: right;
 position: relative;
 top: 0.1666666667em;
 margin: 1.5em 0; } }

.block--article .h-block-full-screen .h-credits + .h-byline {
 margin-top: -1.5em; }

.block--article .h-block-full-screen .h-credits {
 color: #444; }

/* FOOTER
-------------------------------------------------------------- */
.block--article__footer {
 margin-top: 0.5375em; }

.block--article__footer .h-tags {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.875;
 margin: 1.6875em 0 1.125em; }
 .block--article__footer .h-tags .icon-tag {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 2.1428571429;
 position: relative;
 top: 0.0714285714em;
 margin-right: 0.2142857143em; }
 .block--article__footer .h-tags a {
 text-decoration: none;
 text-transform: capitalize; }
 .block--article__footer .h-tags a:hover, .block--article__footer .h-tags a:active, .block--article__footer .h-tags a:focus {
 background: none;
 text-decoration: underline; }

.block--article__footer .rule {
 border-style: solid; }

.block--article__share {
 overflow: hidden;
 margin: 1.3125em 0; }

.block--article__share li {
 font-size: 14px;
 font-size: 0.875rem;
 line-height: 1.9285714286;
 list-style: none;
 float: left;
 margin: 0.4285714286em 0.8571428571em 0.6428571429em 0; }
 .block--article__share li i {
 font-size: 27px;
 font-size: 1.6875rem;
 line-height: 1;
 position: relative;
 top: 0.2222222222em;
 margin-right: 0.1111111111em; }
 .block--article__share li.facebook i {
 color: #3c5a96; }
 .block--article__share li.twitter i {
 color: #55acee; }
 .block--article__share li.tumblr i {
 color: #2c4762; }
 .block--article__share li.google-plus i {
 color: #dd4b39; }
 .block--article__share li.digg i {
 color: #232323; }
 .block--article__share li.stumbleupon i {
 color: #eb4924; }
 .block--article__share li .button {
 display: none; }

.block--article__share li a {
 text-decoration: none; }
 .block--article__share li a:hover b, .block--article__share li a:active b, .block--article__share li a:focus b {
 text-decoration: underline; }

.block--article__related {
 padding: 1.6875em 0; }

/* ADVERTS
-------------------------------------------------------------- */
.block--article .col--ad {
 text-align: center; }

.block--article .col--ad .ad {
 margin: 1.125em auto 1.875em; }

/* KEYLINES
-------------------------------------------------------------- */
.block--article .m-keylines,
.block--article .l-keylines {
 margin-bottom: 2.0625em; }

/* LEGACY
-------------------------------------------------------------- */
.block--article__legacy {
 font-size: 18px;
 font-size: 1.125rem;
 line-height: 1.6666666667;
 padding-bottom: 0.9375em; }
 .block--article__legacy h1, .block--article__legacy h2, .block--article__legacy h3, .block--article__legacy h4, .block--article__legacy h5, .block--article__legacy h6, .block--article__legacy p {
 margin: 0.6666666667em 0; }
 .block--article__legacy ul {
 list-style-position: inside;
 margin: 0.6666666667em 0; }
 .block--article__legacy iframe[src*=youtube],
 .block--article__legacy iframe[src*=vimeo],
 .block--article__legacy iframe[src*=soundcloud] {
 width: 100% !important; }

.block--article__legacy iframe,
.block--article__legacy embed,
.block--article__legacy object,
.block--article__legacy img,
.block--article__legacy iframe[style],
.block--article__legacy embed[style],
.block--article__legacy object[style],
.block--article__legacy img[style] {
 width: auto !important;
 max-width: 100% !important;
 margin: 0.6666666667em 0 !important; }

/* RAFFLECOPTER
-------------------------------------------------------------- */
.block--article__rafflecopter {
 padding: 0.75em 0 0.9375em; }
 .block--article__rafflecopter iframe[style] {
 width: 100% !important;
 margin: 0 !important; }

/* IPLAYER
-------------------------------------------------------------- */
.block--article__iplayer {
 overflow-x: scroll;
 padding: 0.75em 0 0.9375em; }
 .block--article__iplayer iframe[style] {
 margin: 0 !important; }

/* EMBED
-------------------------------------------------------------- */
.block--article__embed {
 overflow-x: auto;
 padding: 0.75em 0 0.9375em; background-color: #FFF!important; border: 0!important; border-bottom: 0!important;}
 .block--article__embed iframe[style] {
 margin: 0!important; background-color: #FFF!important; border: 0!important; }

/* INSTAGRAM
-------------------------------------------------------------- */
.block--article__instagram {
 overflow-x: scroll;
 padding: 0.75em 0 0.9375em;
 margin-top: 0.75em;
 margin-bottom: 0.75em; }
 .block--article__instagram iframe[style] {
 margin: 0 !important; }

/* ISSUU BUTTON
-------------------------------------------------------------- */
.block--article__text .issuu a {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.5;
 text-decoration: none;
 display: inline-block;
 border: 1px solid #ddd;
 border-radius: 2px;
 padding: 0.375em 0.5625em;
 margin: 0 0 0.75em; }
 .block--article__text .issuu a .arrow {
 position: relative;
 top: -0.125em; }

/* --------------------------------------------------------------

ADVERTS

-------------------------------------------------------------- */
@keyframes slidein {
 from {
 transform: translateY(100%); }
 to {
 transform: translateY(0%); } }
/* Firefox < 16 */
@-moz-keyframes slidein {
 from {
 -moz-transform: translateY(100%); }
 to {
 -moz-transform: translateY(0%); } }
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes slidein {
 from {
 -webkit-transform: translateY(100%); }
 to {
 -webkit-transform: translateY(0%); } }
/* Internet Explorer */
@-ms-keyframes slidein {
 from {
 -ms-transform: translateY(100%); }
 to {
 -ms-transform: translateY(0%); } }
/* Opera < 12.1 */
@-o-keyframes slidein {
 from {
 -o-transform: translateY(100%); }
 to {
 -o-transform: translateY(0%); } }
@keyframes fadein {
 from {
 opacity: 0; }
 to {
 opacity: 1; } }
/* Firefox < 16 */
@-moz-keyframes fadein {
 from {
 opacity: 0; }
 to {
 opacity: 1; } }
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
 from {
 opacity: 0; }
 to {
 opacity: 1; } }
/* Internet Explorer */
@-ms-keyframes fadein {
 from {
 opacity: 0; }
 to {
 opacity: 1; } }
/* Opera < 12.1 */
@-o-keyframes fadein {
 from {
 opacity: 0; }
 to {
 opacity: 1; } }
.fallback-ad {
 -webkit-animation: fadein 1s 2s both;
 /* Safari, Chrome and Opera > 12.1 */
 -moz-animation: fadein 1s 2s both;
 /* Firefox < 16 */
 -ms-animation: fadein 1s 2s both;
 /* Internet Explorer */
 -o-animation: fadein 1s 2s both;
 /* Opera < 12.1 */
 animation: fadein 1s 2s both; }

.block--ad-blocker-message {
 display: block;
 position: fixed;
 left: 0;
 bottom: 0;
 width: 100%;
 z-index: 998;
 -webkit-animation: slidein 1s 4s backwards;
 -moz-animation: slidein 1s 4s backwards;
 -ms-animation: slidein 1s 4s backwards;
 -o-animation: slidein 1s 4s backwards;
 animation: slidein 1s 4s backwards;
 background: #eb198c;
 padding: 1rem 2rem;
 text-align: center;
 width: 100%;
 color: white; }

.block--ad-blocker-message__text {
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 300;
 color: white;
 letter-spacing: 0.015em;
 font-size: 15px;
 font-size: 0.9375rem;
 line-height: 1.3333333333; }
 .block--ad-blocker-message__text strong {
 font-weight: 800; }

@media all and (max-width: 690px) {
 .col--ad {
 position: relative;
 width: 120%;
 margin-left: -10%; } }

.col--ad-preview .ad,
.preview + .col--ad .ad {
 margin-top: 2.625em; }
 @media all and (min-width: 691px) {
 .col--ad-preview .ad,
 .preview + .col--ad .ad {
 margin-top: 1.25em; } }

.ad {
 text-align: center;
 margin: 0 auto; }
 @media all and (min-width: 970px) {
 .ad {
 background: transparent; } }

.ad.mobile {
 width: 320px;
 height: 50px; }

.ad.leaderboard {
 width: 728px;
 height: 90px; }

.ad.superleaderboard {
 width: 970px;
 height: 250px; }

.ad.mpu {
 width: 300px; }

.block--ad-mobile,
.block--ad-leaderboard,
.block--ad-superleaderboard {
 text-align: center;
 background: #232323; }
 .block--ad-mobile .ad,
 .block--ad-leaderboard .ad,
 .block--ad-superleaderboard .ad {
 display: -webkit-box;
 display: -moz-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-align: center;
 -moz-box-align: center;
 -ms-flex-align: center;
 -webkit-align-items: center;
 align-items: center;
 -webkit-justify-content: center;
 justify-content: center; }
 .block--ad-mobile .ad iframe, .block--ad-mobile .ad img, .block--ad-mobile .ad object,
 .block--ad-leaderboard .ad iframe,
 .block--ad-leaderboard .ad img,
 .block--ad-leaderboard .ad object,
 .block--ad-superleaderboard .ad iframe,
 .block--ad-superleaderboard .ad img,
 .block--ad-superleaderboard .ad object {
 margin: 0 auto !important; }

 div.banner-bottom
 {
 background-color: inherit!important;
 margin: 0 auto;
 margin-top: 20px;
 text-align: center;
 }

.block--ad-mobile {
 padding: 0.75em 0; }

.block--ad-leaderboard {
 padding: 1.125em 0; }

.block--ad-superleaderboard {
 padding: 1.6875em 0;
 position: relative;
 z-index: 0; }

/* Superleaderboard background
-------------------------------------------------------------- */
.block--ad-superleaderboard__background,
.block--ad-superleaderboard__background[style] {
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: -1 !important; }

/* Hide/show ads
-------------------------------------------------------------- */
.block--ad-leaderboard,
.block--ad-superleaderboard,
.block--ad-superleaderboard__background {
 display: none; }

@media all and (min-width: 728px) {
 .block--ad-mobile,
 .block--ad-superleaderboard,
 .block--ad-superleaderboard__background {
 display: none; }

 .block--ad-leaderboard {
 display: block; } }
@media all and (min-width: 970px) {
 .block--ad-leaderboard {
 display: none; }

 .block--ad-superleaderboard,
 .block--ad-superleaderboard__background {
 display: block; } }
/* --------------------------------------------------------------

FOOTER

-------------------------------------------------------------- */
.block--site-footer {
 text-align: center;
 padding: 0 0 1.6875em;
 margin-top: 1.6875em; }
 @media all and (min-width: 691px) {
 .block--site-footer {
 margin-top: 3.375em; } }
 @media all and (min-width: 1024px) {
 .block--site-footer {
 width: auto;
 text-align: left; } }

.block--site-footer .block__grid {
 padding-top: 0;
 padding-bottom: 0; }

.block--site-footer .rule--site-footer {
 background: #232323;
 height: 3px;
 margin-bottom: 1.6875em; }

.block--site-footer .rule {
 border: none; }

.block--site-footer .elsewhere {
 overflow: hidden;
    text-transform: uppercase;
 width: 10.3125em;
 margin: 0 auto 0.75em; }
 @media all and (min-width: 1024px) {
 .block--site-footer .elsewhere {
 width: auto;
 margin: 0 0 0.75em; } }

.block--site-footer .elsewhere li {
 list-style: none;
 float: left; }

.block--site-footer .elsewhere li a {
 font-size: 22px;
 font-size: 1.6875rem;
 line-height: 1.2222222222;
 color: #000;
 text-decoration: none;
 margin: 0 0.1111111111em; }
 .block--site-footer .elsewhere li a:focus {
 background: none;
 opacity: .6; }
 @media all and (min-width: 1024px) {
 .block--site-footer .elsewhere li a {
 margin: 0 0.2222222222em 0 0; } }

.block--site-footer .elsewhere b {
 position: absolute;
 left: -9999px; }

.block--site-footer .small {
 margin: 0 0 0.75em; }

.block--site-footer .small li {
 list-style: none;
 display: inline;
 margin-right: .3em; }

.block--site-footer .small li a {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.5;
 color: #666;
 text-decoration: none;
 margin: 0 0.1111111111em; }
 .block--site-footer .small li a:hover, .block--site-footer .small li a:active, .block--site-footer .small li a:focus {
 text-decoration: underline;
 background: none; }
 @media all and (min-width: 1024px) {
 .block--site-footer .small li a {
 margin: 0 0.2222222222em 0 0; } }



.block--site-footer .back-top a {
 font-size: 16px;
 font-size: 1rem;
 line-height: 1.5;
 text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
 display: inline-block;
 border: 2px solid black;
    background-color: black;
    color:white;
 border-radius: 2px;
 padding: 0.375em 0.5625em;
 margin: 0 0 0.75em; }
.block--site-footer .back-top a:hover {
    color: black;
    background-color:white;
}
 .block--site-footer .back-top a .arrow {
 position: relative;
 top: -0.125em; }

/* --------------------------------------------------------------

SPONSORED HUBS

-------------------------------------------------------------- */
/* DR MARTINS
-------------------------------------------------------------- */
/* SUBSCRIPTION PROMOTION BLOCK
-------------------------------------------------------------- */
.block__promo {
 max-width: 25em;
 margin: 0 auto; }
 @media all and (min-width: 691px) and (max-width: 1023px) {
 .block__promo {
 max-width: 43.1875em; } }
 @media all and (min-width: 1024px) {
 .block__promo {
 max-width: 63.9375em; } }

.promo-copy {
 padding: 0.9375em; }
 @media all and (min-width: 691px) {
 .promo-copy {
 padding: 1.6875em; } }
 @media all and (min-width: 1024px) {
 .promo-copy {
 padding: 1.6875em 0; } }

.h-pre__promo {
 font-size: 18px;
 line-height: 1.0714285714;
 font-weight: 900;
 }

.h-title__promo {
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 300;
 text-transform: uppercase;
 font-size: 24px;
 line-height: 1.1818181818;
 margin: 0.4102564103em 0; }
 @media all and (min-width: 691px) {
 .h-title__promo {
 font-size: 35px;
 line-height: 1.1904761905;
 margin: 0.42em 0; } }

.h-title__promo strong {
 font-weight: 800; }

.h-title__promo a {
 text-decoration: none!important;
}

.body__promo {
 font-size: 16px;
 line-height: 1.2222222222;
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 300; }

.action__promo {
 margin-top: 20px;
 font-style: normal!important;
}

.promo-cover {
 margin-bottom: 15px;
}

.action__promo a {
 font-style: normal!important;
 font-size: 13.5px;
 line-height: 1.2222222222;
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 900;
 text-transform: uppercase;
border:1px solid #FFFFFF;
 padding:6px 12px;
text-decoration: none;
margin-right: 10px;
display: inline-block;
margin-bottom: 15px;}

.action__promo a:active {
color: #666;}

.action__promo__sm a {
 font-style: normal!important;
 font-size: 11px;
 line-height: 1.2222222222;
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 900;
    letter-spacing: 0.5px;
 text-transform: uppercase;
border:1px solid #000000;
 padding:4px 8px;
text-decoration: none;
margin-right: 10px;
display: inline-block;
margin-top: 8px;}



.promo-text--dark {
 color: #232323; }
 .promo-text--dark .action__promo span {
 border-color: #232323; }

.promo-text--light {
 color: #fff; }
 .promo-text--light .action__promo span {
 border-color: #fff; }

/* HACK FINISHING ARTICLE ICON TO USE EM RATHER THAN I
-------------------------------------------------------------- */
em.icon-diy {
 font-family: 'diymag';
 display: inline-block;
 font-style: normal;
 margin-left: 5px; }

em.icon-diy:before {
 content: "\e602"; }

/* --------------------------------------------------------------

Magnific Popup CSS
http://dimsemenov.com/plugins/magnific-popup/

A VERY hacked about version of the provided styles
Removed: iFrame and previous '-mobile' styles

-------------------------------------------------------------- */
.mfp-bg {
 background: #fff;
 opacity: 1;
 overflow: hidden;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 20002; }

.mfp-wrap {
 position: fixed;
 outline: none !important;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 20003;
 -webkit-backface-visibility: hidden; }

.mfp-container {
 text-align: center;
 position: absolute;
 width: 100%;
 height: 100%;
 left: 0;
 top: 0;
 padding: 0 1.5em; }

.mfp-container:before {
 content: '';
 display: inline-block;
 height: 100%;
 vertical-align: middle; }

.mfp-align-top .mfp-container:before {
 display: none; }

.mfp-content {
 text-align: left;
 position: relative;
 display: inline-block;
 vertical-align: middle;
 z-index: 20005;
 margin: 0 auto; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
 width: 100%;
 cursor: auto; }

.mfp-ajax-cur {
 cursor: progress; }

.mfp-zoom-out-cur, .mfp-image-holder .mfp-close {
 cursor: pointer; }

.mfp-zoom {
 cursor: pointer; }

.mfp-auto-cursor .mfp-content {
 cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
 -webkit-user-select: none;
 -moz-user-select: none;
 user-select: none; }

.mfp-loading .mfp-figure {
 display: none; }

/* 3. Appearance
-------------------------------------------------------------- */
.mfp-preloader {
 color: #333;
 text-align: center;
 position: absolute;
 top: 50%;
 width: auto;
 left: 9px;
 right: 9px;
 z-index: 20004;
 margin-top: -0.8em; }
 .mfp-preloader a {
 color: #333; }
 .mfp-preloader a:hover {
 color: #232323; }

.mfp-s-ready .mfp-preloader {
 display: none; }

.mfp-s-error .mfp-content {
 display: none; }

button.mfp-close, button.mfp-arrow {
 background: transparent;
 border: 0;
 display: block;
 cursor: pointer;
 outline: none;
 z-index: 20006;
 padding: 0;
 -webkit-appearance: none; }
 button.mfp-close::-moz-focus-inner, button.mfp-arrow::-moz-focus-inner {
 padding: 0;
 border: 0; }

.mfp-close {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1;
 color: #232323;
 display: block;
 text-align: center;
 text-decoration: none;
 position: absolute;
 right: 0;
 top: 0;
 opacity: 0.5; }
 .mfp-close:hover, .mfp-close:focus {
 opacity: 1; }
 .mfp-close i {
 position: relative;
 z-index: -1; }

.mfp-close-btn-in .mfp-close {
 color: #232323; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
 color: #232323;
 text-align: right;
 padding-top: 0.5em;
 width: 100%; }

.mfp-counter {
 font-size: 21px;
 font-size: 1.3125rem;
 line-height: 1;
 color: #333;
 text-align: center;
 position: absolute;
 top: -1.5em;
 width: 100%;
 z-index: 20010; }

.mfp-arrow {
 font-size: 24px;
 font-size: 1.5rem;
 line-height: 1;
 position: absolute;
 opacity: 0.5;
 margin: 0;
 top: 50%;
 margin-top: -60px;
 padding: 0;
 width: 90px;
 height: 120px;
 -webkit-tap-highlight-color: transparent; }
 .mfp-arrow:hover, .mfp-arrow:focus {
 opacity: 1; }
 .mfp-arrow:after, .mfp-arrow .mfp-a {
 border-top-width: 13px;
 border-bottom-width: 13px;
 top: 8px; }
 .mfp-arrow:before, .mfp-arrow .mfp-b {
 border-top-width: 21px;
 border-bottom-width: 21px;
 opacity: 0.7; }
 .mfp-arrow i {
 position: relative;
 z-index: -1; }

.touch button.mfp-arrow {
 display: none; }

.mfp-arrow-left {
 left: 0; }
 .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
 border-right: 17px solid #232323;
 margin-left: 31px; }
 .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
 border-right: 27px solid #fff;
 margin-left: 25px; }

.mfp-arrow-right {
 right: 0; }
 .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
 border-left: 17px solid #232323;
 margin-left: 31px; }
 .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
 border-left: 27px solid #fff; }

/* Image content type
-------------------------------------------------------------- */
img.mfp-img {
 width: auto;
 max-width: 100%;
 height: auto;
 display: block;
 line-height: 0;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
 padding: 3em 0 3em;
 margin: 0 auto; }

.mfp-figure {
 line-height: 0; }
 .mfp-figure:after {
 content: '';
 position: absolute;
 left: 0;
 top: 3em;
 bottom: 3em;
 display: block;
 right: 0;
 width: auto;
 height: auto;
 z-index: -1;
 box-shadow: none;
 background: #fff; }
 .mfp-figure small {
 color: #333;
 display: block;
 font-size: 12px;
 line-height: 14px; }
 .mfp-figure figure {
 margin: 0; }

.mfp-bottom-bar {
 cursor: auto;
 position: absolute;
 width: 100%;
 left: 0; }

.mfp-title {
 display: none; }

.mfp-image-holder .mfp-content {
 max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
 cursor: pointer; }

.imagecredit {
 	font-size: 0.8em;
 	text-transform: uppercase;
 	padding-bottom: 20px;
 text-align: right;
 }

 h3.read-more {
 font-weight: 900;
 letter-spacing: -1px;
 text-transform: uppercase;
 font-size: 1.7em;
 margin-left: 25px;
 margin-bottom: 20px;
         padding-bottom: 5px;

     clear: both;
border-bottom: 3px solid black;
 }

 .newsletter-form {
 text-align: right;
 }
 .newsletter-form h3 {
 font-size: 1.3em;
 text-transform: uppercase;
 font-weight: 900;
 margin-bottom: 10px;
 }

 .newsletter-form p {
 margin-top: 5px;
 padding-bottom: 10px;
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-size: 0.8em;

 }

 .newsletter-form input {
 padding: 1px;
 padding-left: 2px; padding-right: 2px;
 max-width: 200px;
 padding: 1px;
 border: 1px solid #333;
 font-size: 0.8em;
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 color: #333;
 margin-bottom: 10px;
 }

 .newsletter-form button {
 display: inline-block;
 padding: 4px;
 padding-left: 8px;
 padding-right: 8px;
 border: 0;
 background-color: #000;
 color: #FFF;
 font-weight: 900;
 font-size: 1em;
 }

 .related {
 border-bottom: 3px solid #000;
 margin-top: 15px;
 padding-top: 25px;
 padding-bottom: 25px!important;
 margin-bottom: 25px;
 clear: both;
 width: 100%;
 }


 .related img {
 display: inline-block;
 width: 100%;
     height: auto;
 margin-bottom: 15px;
 }

 .related-text {
 display: inline-block;
 float: left;

 }
.related-text .col {margin-bottom:0!important;}

 .related-text h3 {
 text-transform: uppercase;
 font-size: 1.3em;
 margin-bottom: 5px;
 line-height: 1.4em;
 }

 .related-text h3 a {
 text-decoration: none;

 }

 .related-text p {
 font-size: 0.9em;
 line-height: 1.2em;

 }

.related-text p.h-date {
    font-size: 0.8em;
    margin-top: 7px;
}

 img.full-width-image {
 border-bottom: 3px solid #232323!important;
 margin-bottom: 15px;
 }

 .h-block-full-screen div.imagecredit {
 padding-right: 25px;
 }

 p em {
 font-weight: bold;
 text-transform: none;
 font-style: normal;
 }

 .m-4 p.h-byline {
 font-size: 15px!important;

 }

h3.related-array {
    text-align: center;
    text-transform: uppercase!important;
    font-size: 28px;
    font-weight: bold;
}
h3.related-array a {
    text-decoration: none!important;
    margin-bottom: 0!important;
}

.array-stars {
 font-size: 13px!important;
 display: block;
    line-height: 0!important;
 margin-top: -3px!important;
    margin-bottom: 5px!important;
}

p.h-date-array {
 font-size: 11.5px!important; opacity: 75%; margin-top: 5px!important;}

h4.h-headline-array {
 font-size: 17px;
 line-height: 1.15;
 letter-spacing: -0.5px;
 text-transform: uppercase;
    margin-top: 8px!important;
 margin-bottom:  5px;  display: block; }
h4.h-headline-array strong {font-weight: bold;}

.h-standfirst-array {
 font-size: 12.5px!important;
 line-height: 1.2em!important; }

.preview .h-headline a:hover {
    background-color: black;
    color:white;
}

.array-img { margin-bottom: 3px!important;}

div.related-array {
 padding: 20px;
 margin-top: 25px;
 margin-bottom: 35px!important;
 }

 div.related-array p {
 font-size: 13px;
 line-height: 1.4em;
 margin-bottom: 15px;
 }

 .pullout {
 padding: 25px;
 color: #FFF;
 margin-top: 15px;
 margin-bottom: 35px!important;
     background-color: #000;
 }

 .pullout p {
 font-size: 15px;
 line-height: 1.6em;
 margin-bottom: 15px;
 }

 .pullout p strong, .pullout p em {
 font-weight: bold;
     font-size:17px;
 }

 .pullout h3,
 .pullout h4 {
 font-weight: 900;
 letter-spacing: -1px;
 text-transform: none;
 }

 .pullout h3 {
 font-size: 28px;
 margin-bottom: 20px;
 }

 .pullout h4 {
 font-size: 18px;
 line-height: 1.2em;
 margin-bottom: 5px;
 }

 .pullout img {
 width: 100%;
 margin-bottom: 15px;
 }
 .xxl {
 border-top: 3px solid #000;
 border-bottom: 3px solid #000;
 margin-bottom: 25px;
 }

 h3.h-search {
 font-weight: 800;
 font-size: 19px;
 line-height: 1.4em;
 }

 h3.h-search a {
 text-decoration: none;
 }

 h3.review-byline {
 font-size: 0.95em;
 line-height: 1.6em;
 margin-bottom: 4px;
 font-weight: normal;
 text-transform: uppercase;
 }

 h3.review-byline strong {
 font-weight: bold!important;
 }

 .r-byline {
 margin-top: 30px;
 margin-bottom: 30px;
 }

 p.h-search {
 margin-bottom: 15px;
 padding-top: 10px;
 font-weight: bold;
 text-transform: uppercase;
 font-size: 14px;
 }

 .head-artist
 {
 font-size: 36px;
 font-weight: bold;
 letter-spacing: -1px;
 margin-left: 15px; }

 .artist-rating {
 margin-top: 10px!important;
 margin-bottom: 0!important;
 padding-bottom: 0!important;
 line-height: 0!important;
 }
 span.artist-stars {
 font-size: 20px!important;
 line-height: 0!important;
 margin-bottom: 0!important;
 padding-bottom: 0!important;
 }

 .banner-top {
 margin: 0 auto;
 text-align: center;
 padding-top: 20px;
 padding-bottom: 15px;
 background-color: #000;
 clear:both;
     z-index: 10;
 }

 .topbanner, .midbanner, .bottombanner {
 min-height: 250px;
 }

.newsbanner {
    max-height: 250px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 25px;
    max-width: 970px;
}

 @media all and (max-width: 1024) {
 .topbanner, .midbanner, .bottombanner {
 min-height: 90px!important;
 }
 }

 @media all and (max-width: 800px) {
 .topbanner, .midbanner, .bottombanner{
 min-height: 60px!important;
 }

 }

 @media all and (max-width: 500px) {
 .topbanner {
 min-height: 50px!important;
 }
 .midbanner, .bottombanner {
 min-height: 250px!important;
 }

 }

 .mid-banner {
 margin: 0 auto;
 text-align: center;
 }

 .homempu {
 margin-top: 20px;
 }

 h1.h-headline-section {
 text-transform: uppercase;
 font-size: 54px;
 font-weight: 800;
 }

 .block--sub-navigation-section {
 margin-left: 15px;
 }

 .no-border {
 border: 0!important;
 }

 .inner-ad
 {
 width: 0!important;
 height: 0!important;
 visibility: hidden!important;
 border-top: 1px solid #ccc;
 line-height: 0!important;
 }

 .h-headline span.h-headline__pre {
 font-family: 'Alte Haas Grotesk', 'Helvetica', 'Arial', sans-serif;
 font-weight: bold;
 letter-spacing: normal;
 text-transform: uppercase;
 font-size: 24px;
}

h3.h-headline-top {
 margin-bottom:-10px!important;
 padding-bottom: 0!important;
}

p.rel-mag {
font-weight: 600;
letter-spacing: -0.2px;
text-transform: none;
}

.score-stars {
 margin-top: 10px;
 font-size: 20px!important;
 margin-bottom: 5px!important;
}

h3 span.h-headline__post {
 margin-bottom: 30px!important;
 margin-top: -10px!important;
}

.intro strong {
 font-weight: bold!important;
}

.intro b {
 font-weight: bold!important;
}

p.advertise {
 margin-top: 10px!important;
 margin-bottom: 15px!important;
}
p.advertise a {
 color: #666!important;
 font-size: 0.8em!important;
 text-decoration: none;
}
p.advertise a:hover {
 text-decoration: underline;
}

p.recom {
 text-align: center;
 font-size: 0.9em;
}

.affprice {
 font-size: 1em!important;
line-height:1.2em!important;
}
p.affprice {
 font-size: 1em!important;
}

.clear { clear:both!important;}

ul.festival-calendar {
 columns: 4;
 list-style: none;
}

@media only screen and (max-width: 800px) {
 ul.festival-calendar {
 columns: 2;
 }
}

@media only screen and (max-width: 675px) {
 ul.festival-calendar {
 columns: 1;
 }
}

ul.festival-calendar li {
 padding-bottom: 20px;
 margin-bottom: 20px;
 border-bottom: 2px solid #000;
}

ul.festival-calendar li.loop-1 {
    break-before: avoid;
}

ul.festival-calendar li.partner {
 background-color: #000;
 padding: 20px;
 color: #FFF;
 break-inside: avoid-column;
 border-bottom: 0!important;
 margin: 0!important;
}


ul.festival-calendar li.date-header {
 border-bottom: 0!important;
 margin-bottom: 7px;
 font-size: 30px;
 font-weight: bold;
 text-transform: uppercase;
    break-before: column;
}

ul.festival-calendar h3 {
 font-weight: bold;
 font-size: 20px;
 letter-spacing: -0.5px;

}

ul.festival-calendar h3 a {
 text-decoration: none;
}

ul.festival-calendar h3 a:hover {
    
    color: white!important;background-color: black!important;
}

p.festival-dates {
 font-weight: normal;
 font-size: 12px;
 margin-top: 5px;

}

p.festival-location {
 font-size: 13px;
 margin-top: 5px;
 font-weight: bold;
    line-height: 1.1em;

}

p.festival-artists {
 margin-top: 7px;
 font-size: 14px;
 line-height: 18px;
}

p.festival-artists a:hover {
 text-decoration: none;
}

p.festival-tickets {
 font-weight: 900;
 font-size: 13px;
 text-transform: uppercase;
 margin-top: 15px; margin-bottom: 3px;
 display: inline-block;

}

p.festival-tickets a {
 color: black;
 text-decoration: none;
 background-color: #FFF;
    border: 2px solid black;
 padding: 2px;
 padding-left: 5px;
 padding-right: 5px;
 letter-spacing: -0.5px;
}

p.festival-tickets-partner {
 font-weight: 900;
 font-size: 14px;
 text-transform: uppercase;
 margin-top: 15px;
 display: inline-block;

}

p.festival-tickets-partner a {
 color: #FFF;
 text-decoration: none;
 background-color: #black;
        border: 2px solid white;

 padding: 2px;
 padding-left: 5px;
 padding-right: 5px;
 letter-spacing: -0.5px;
}

img.festival-image {
 margin-top: 7px;
}

p.festival-website {
 margin-top: 10px;
}

p.festival-website a {
 font-weight: bold;
 font-size: 13px;
 text-decoration: none;
 text-transform: capitalize;
}

p.festival-website a:hover {
 text-decoration: underline;
}

div.partner-line {
 padding-top: 20px;
 margin-bottom: 20px;
 border-bottom: 2px solid #000;
}


@media only screen and (max-width: 650px) {
 #sg-popup {
 display: none;
 }
}

#sg-popup {
 border: 4px solid #000;
}


#sg-popup h1 {
 text-align: center;
 font-size: 28px;
 font-weight: bold;
 text-transform: uppercase;
 margin-bottom: 15px;
}

#sg-popup p {
 margin-bottom: 10px;
}

#sg-popup p a {
 font-weight: bold;
}

#sg-popup p a:hover {
 text-decoration: none;
}

.buy-issue {
 width: 50%;
 display: inline-block;
 float: left;
}

.buy-image-square {
    margin-bottom: 20px;
}

.buy-issue-2 {
 width: 33%;
 display: inline-block;
 float: left;

}

@media only screen and (max-width: 900px) {
 .buy-issue-2 {
 width: 40%!important;
 }
}

.buy-issue-3 {
 width: 33%;
 display: inline-block;
 float: left;

}

@media only screen and (max-width: 900px) {
 .buy-issue-3 {
 display: none;
 visibility: hidden;
 }
}

.pop-image {
 flex-basis: 40%;
 max-width: 120px;

}

.rel-image {
 flex-basis: 40%;
 min-width: 200px;
 max-width: 250px;

}

.review-related {
 border-top: 3px solid #000;
 border-bottom: 3px solid #000;
 margin-bottom: 20px;
 padding-top: 15px;
 padding-bottom: 15px;
 display: flex;
 align-items: top;
 justify-content: left;
}

.rel-text h4 {
 font-size: 0.8em;
 font-weight: bold;
 margin-bottom: 7px!important;
}

img.popular-thumb {
float: left!important;
width: 120px!important;

}
.popular-articles article {
 clear: both;
 width: 100%!important;
 display: flex;
 align-items: top;
 justify-content: left;
 padding-bottom: 20px;

}

.popular {
 clear: both;
 min-height: 75px;
 margin-top: 20px;
}

.popular-list {
 border-bottom: 1px solid #EAEAEA;
 padding-bottom: 20px;
}

div.aff-list {
 border-bottom: 1px solid #000;
 padding-bottom: 25px;
padding-top: 20px;
    border-top: 1px solid #000;
}

i.advertisement {
    display: inline-block;
    text-align: center;
    font-size: 10px;
    line-height: 0px;
    color: lightgray;
    text-transform: uppercase;
    margin-top:-10px!important;
    margin-bottom: 10px!important;
}

.aff-list-text {
    margin-top:-7px!important;
}




img.popular-img {
 float: left;
 margin-right: 10px;
 max-width: 100px;
}

img.aff-img {
 float: left;
 margin-right: 20px;
 max-width: 150px;
}

@media screen and (max-width: 800px) {
img.aff-img {
 display: none;
 visibility: hidden;
 }
}

.popular h4 {
 font-size: 1em;
 line-height: 1.1em;
 text-transform: uppercase;
}

.popular h4.aff-list {
 font-size: 1.1em;
 line-height: 1.1em;
 text-transform: uppercase;
}

.popular h4 a {
 text-decoration: none;
}

.popular h4 strong {
 font-weight: bold;
}

.pop-text {
 padding-left: 10px;
 justify-content: left;
 width: auto;
}

.rel-text {
 padding-left: 10px;
 justify-content: left;
 line-height: 1.2em;
 font-size: 0.85em;
}

.rel-text h3 {
 text-transform: uppercase;
 letter-spacing: 1px;
 font-size: 1.4em;
 line-height: 1.5em;
 margin-bottom: 7px;
}

.rel-text h3 a {
 text-decoration: none;
}

.pop-text h3 {
 text-transform: uppercase;
 letter-spacing: 1px;
 font-size: 1.2em;
}

@media only screen and (max-width: 675px) {
.pop-text h3 {
font-size: 1em;
line-height: 1.2em;

}
}

.pop-text h3 a {
 text-decoration: none;
}


#views-work {
 width: 1px;
 height: 1px;
}

h3.instagram-header {
font-weight: 900;
font-size: 1.7em;
margin-bottom: 15px;
text-align: center;
}

.instagram-wrap {
 width: 100%;
 margin: 0 auto;
}

.grid-wrap {
 width: 100%;
 margin: 0 auto;
}

.grid-row {
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
 padding-bottom: 15px;
 border-top: 1px solid #ccc;
 border-bottom: 1px solid #ccc;
}

.grid-row-none {
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
 border: 0;
}

.grid-item {
 flex-basis: 22%;
 -ms-flex: auto;
 position: relative;
 margin: 10px;
 box-sizing: border-box;
}

.grid-item-five {
 flex-basis: 18%;
 -ms-flex: auto;
 position: relative;
 margin: 10px;
 box-sizing: border-box;
}

.grid-item-six {
 flex-basis: 14%;
 -ms-flex: auto;
 position: relative;
 margin: 10px;
 box-sizing: border-box;
}

@media(max-width: 1073px) {
 .grid-item {
 flex-basis: 30%;
 }
}
@media(max-width: 815px) {
 .grid-item {
 flex-basis: 40%;
 }
}
@media(max-width: 555px) {
 .grid-item {
 flex-basis: 100%;
 }
}



.instagram-grid {
 display: grid;
 height: auto;
 grid-template-columns: 1fr 1fr 1fr ;
 -ms-grid-columns: 1fr 1fr 1fr;
}

.albums-grid {
 display: grid;
 height: auto;
 grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
 -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 900px) {
 .albums-grid {
 grid-template-columns: 1fr!important;
 }
}

@media only screen and (max-width: 1000px) {
 .albums-grid {
 grid-template-columns: 1fr 1fr!important;
 }
}


.instagram-grid-item h3, .instagram-popular h3 {
 line-height: 1.4em;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-top: 10px
}

.instagram-grid-item h3 a, .instagram-popular h3 a {
 text-decoration: none;
}

.instagram-grid-item {
 padding: 10px;
}

body.e-digitalCover {
 background: #000000;
 color: #FFFFFF;
}

h1.h-headline-cover {
 margin-top: 30px!important;
 padding: 0!important;
}

.h-headline__cover {
 font-size: 42px;
 line-height: 1.3;
 display: block;
 text-align: center;}
 @media all and (min-width: 691px) {
 .h-headline__cover {
 font-size: 60px;
 line-height: 1.2857142857;
 text-align: left;} }

 .h-headline__precover {
 font-size: 18px;
 line-height: 1.3;
 display: block;
 text-align: center;
 font-weight: 900;
}
 @media all and (min-width: 691px) {
 .h-headline__precover {
 font-size: 18px;
 line-height: 1.2857142857;
 text-align: left;
 margin-bottom: -20px;} }


.h-standfirst-cover {
 font-weight: bold;
 font-size: 1.4em;
 line-height: 1.8em;
 margin-bottom: 30px;
}

@media all and (max-width: 691px) {
 .h-standfirst-cover {
 line-height: 1.3em!important;
 margin-bottom: 20px!important;
 }
}
span.h-byline-cover {
 font-size: 13px!important;
 color: #a9a9a9;
 display: block;
 line-height: 2em;

}

@media all and (max-width: 691px) {
 .span.h-byline-cover {
 margin-bottom: 0!important;
 }
}

.has-dropcap p:first-of-type:first-letter {
 float: left;
 font-size: 14rem;
 line-height: 0.65;
 margin: 0.05em 0.05em 0.05em 0;
}

.body-dropcap p:first-of-type:first-letter {
 float: left;
 font-size: 6rem;
 line-height: 0.55;
 margin: 0.05em 0.05em 0.05em 0;
}

@media all and (max-width: 800px) {
 .has-dropcap p:first-of-type:first-letter{
 font-size: 4rem!important;
 line-height: 0.45!important;
 margin: 0.1em 0.1em 0.1em 0!important;
 display: inline!important;

 }
}
@media all and (max-width: 800px) {
 .body-dropcap p:first-of-type:first-letter {
 font-size: 3rem!important;
 line-height: 0.35!important;
 margin: 0.1em 0.1em 0.1em 0!important;
 display: inline!important;

 }
}

.video-ad { height: 0!important; line-height: 0!important; margin: 0!important; padding: 0!important;}



div.inline-dropcap p:first-of-type:first-letter{
 float: left;
 font-size: 6rem;
 line-height: 0.55;
 margin: 0.1em 0.1em 0.1em 0;
 display: inline!important;

}

span.inline-dropcap {
 display: inline!important;
 width: auto!important;
}

.cover-quote-block {
 border:0!important;
 margin-left: 0!important;
 line-height: normal!important;
 margin-top: 50px;
 margin-left: 50px;
padding-bottom: 30px;
 letter-spacing: 0.5px!important;
 clear: both;
    overflow: visible!important;
}
@media all and (max-width: 691px) {
 .cover-quote-block {
 max-width: 80%!important;
 margin-top: 10px!important;

 }
}


.cover-quote-before {
 display: block;
 font-size: 400px!important;
 float: left;
    overflow: visible;
 max-height: 50px;
 max-width: 50px;
 margin-top: -200px;
 margin-left: -75px;
 letter-spacing: -2px;
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif!important;
    color: darkgray;
}


div.inline-text {
 display: inline!important;
 width: auto!important;
}

.cover-quote-text:after { content: '”'; }


.cover-quote-text {
 display: inline-block;
 margin-left: 65px;
    margin-top: 25px;
 float: left;
 width: 100%;
    letter-spacing: -1px;
}

@media all and (max-width: 691px) {
 .cover-quote-text {
 font-weight: 900;
 font-size: 1.1em!important;
 line-height: 1.2em!important;
 }
}

.cover-cite {
 display:inline-block;
 float: left;
 padding-left: 40px;
 font-style: normal!important;
 margin-top: -10px;
 font-size: 1.1em;
}

.full-width-video {
 margin-bottom: 40px;
}

img.cover-two {
 width: 50%!important;
 float: left;
 margin: 0!important;
 padding: 0!important;
 display: inline;
}
img.cover-three {
 width: 33.3%!important;
 float: left;
 margin: 0!important;
 padding: 0!important;
 display: inline;
}
img.cover-four {
 width: 25%!important;
 float: left;
 margin: 0!important;
 padding: 0!important;
 display: inline;
}

@media all and (max-width: 691px) {
img.cover-two, img.cover-three, img.cover-four {
 width: 100%;} }

.related-cover {
 margin-top: 25px;
 margin-bottom: 25px;
 border-top: 1px solid #000;
 border-bottom: 1px solid #000;
 padding-top: 25px;
 padding-bottom: 25px;
}

@media all and (max-width: 691px) {
 .related-cover img {
 margin-bottom: 15px;
 }
}

.extra-credits {
margin-top: 40px;
}

.extra-credits p {
 color: #a9a9a9;
 font-size: 13px!important;
 line-height: 1.4em;
}

.extra-credits p.cover-credits {
 color: #444!important;
 text-align: right;
}

.extra-credits a {
 text-decoration: underline;
}

.extra-credits a:hover {
 text-decoration: none;
}

h1.neu-headline strong {
 font-family: 'Monoton', sans-serif!important;
 font-weight: normal!important;
}

.h-headline__neu {
 font-family: 'Monoton', sans-serif!important;
font-weight: normal!important;
font-size: 2.1em;
margin-bottom: 25px;
}
.h-headline__neu a {
 text-decoration: none!important;
}

.h-headline__pre a {
 text-decoration: none!important;
}

.top-message {
 position: relative;
 top: 0!important;
 width: 100%;
 margin-top: 0;
 background-color: #000!important;
 padding: 10px;
 text-align: center;
}

.top-message a {
 font-size: 0.85em;
 color: #FFF!important;
 font-weight: normal;
 letter-spacing: 0.2px;
 line-height: 1.4em;
 text-decoration: none!important;
}

.top-message a:hover {
 text-decoration: underline;
}

h3.tickets {
 text-transform: uppercase!important;
 font-weight: bold;
 font-size: 1.2em;
 margin-bottom: 10px;
 letter-spacing: -1px;
}

p.tickets {
 font-size: 0.9em;
 line-height: 1.6em;
}

p.tickets a {
 font-weight: bold;
 text-decoration: none;
}

p.tickets a:hover {
 text-decoration: underline;
}

.cover-feature-mpu {
 float: right;
 width: 300px;
 height: 265px!important;
 margin-left: 15px;
 margin-right: 0px;
 margin-bottom:15px;
 display: block;
    overflow:hidden;
}

.cover-feature-mpu img, .feature-mpu img {
    height:250px!important;
}

.feature-mpu {
 width: 300px;
 height: 265px!important;
 margin-right: 0px;
 margin-bottom:15px;
 display: block;
    overflow: hidden;
}

.padding-left {
 padding-left: 15px!important;
}

@media all and (max-width: 690px) {
 .cover-feature-mpu {
 display: none;
 visibility: hidden;
 }
}

.cf-sidebar {
 float: right;
 margin-left: 15px;
 height: auto;
}

@media all and (max-width: 691px) {
 .cf-sidebar {
 margin-bottom: 20px!important;
 }
}
.nomargin {
 margin-bottom: 10px;
}

@media all and (max-width: 691px) {
 .nomargin {
 margin:0!important;
 }
}

.feature-related-mag {
 border-top: 2px solid #000;
 padding-top: 20px;
}

.h-headline-magcover {
 margin-top: 0!important;
 padding: 0!important;
}
.mobile {
 float: right!important;
}

#div-gpt-ad-1631617906380-0 {
 padding: 0!important;
 margin: 0!important;
 line-height: 0!important;
}

.preview img {
 aspect-ratio: 3/2;
}

.preview img.square {
 aspect-ratio: 1/1!important;
}
.preview img.portrait {
 aspect-ratio: 1/1.4142!important;
}

.cover-video {
 padding-top: 20px;
 padding-bottom: 20px;
}

.video__ad {
 margin: 0 auto;
 max-width: 600px!important;
 display: flex;
 align-items: center;
}

.tracked {
 width: 1px!important;
 height: 1px!important;
 overflow: hidden;
 line-height: 1px;
 font-size: 1px;
}

.tracked img {
 width: 1px!important;
 height: 1px!important;
 filter: brightness(0) invert(1);

}

h2.grid-year {
 font-size: 36px;
 border-top: 1px solid #000;
 padding-top: 30px;
 margin-bottom: 10px;
 margin-top: 20px;
 font-weight: bold;}


.fauxBanner-container
    {
        width:970px;
        height: 250px;
        overflow: hidden;
                border: 1px solid #000;

        
    }
    .fauxBanner-flex{
    display: flex;
    flex-wrap: wrap;
        width: 970px;
        height: 210px;
        text-align: center;
}

.col-flex {

    flex-basis: 13%;
    margin:0 auto;
}

ul.artist-list {
 columns: 3;
 list-style: none;
}

@media only screen and (max-width: 800px) {
 ul.artist-list {
 columns: 2;
 }
}

@media only screen and (max-width: 675px) {
 ul.artist-list {
 columns: 1;
 }
}

ul.artist-list li {
 margin-bottom: 15px;
}

ul.artist-list li a {
    font-weight:bold;
    text-transform: uppercase;
    text-decoration: none;
    font-size:16px;
}

ul.artist-list li a:hover {
    text-decoration: underline;
}

div.preMessage-white {
    color: #FFFFFF!important;
}

div.preMessage-black {
    color: #000000!important;
}

p.preMessage {
    font-weight:bold;
    font-size: 22px!important;
}

h4.preMessage {
    font-size: 27px!important;
    font-family: 'Alte Haas Grotesk', Helvetica, Arial, sans-serif!important;
    font-style: normal!important;
}

p.preMessage a {
    text-decoration: none;
}

p.preMessage a:hover {
    text-decoration: underline;
}

    .h-coming-up span.artist { font-weight: bold; text-transform: uppercase; letter-spacing: -0.25px;}
    h3.coming-up {font-size: 22px; font-weight: bold; letter-spacing: -1px; margin-left: 15px; margin-bottom: 10px!important; background-color: black; color: white; padding-left: 2px; padding-bottom: 2px; padding-top: 1px;margin-right: 15px!important;}
    .h-coming-up {font-size: 16px!important; line-height: 1.1em!important;margin-top: 10px;letter-spacing: -0.25px;}
.h-archive {margin-top: 0!important; text-transform: uppercase!important; font-size: 16px!important; line-height: 1.2em!important; letter-spacing: -0.25px; margin-bottom: 3px!important;}
.h-archive strong {font-weight: bold;}
    .preview .h-coming-up a:hover { background-color: black; color: white }
    p.cu-label {margin-top: 5px!important; font-size: 12px; letter-spacing: -0.25px; display: inline-block;}
    p.archive-desc {margin-top: 0!important; font-size: 13px; letter-spacing: -0.25px; display: inline-block; line-height: 1.2em;margin-bottom: 15px;}
   p.cu-kicker {font-size: 12px; font-weight: bold; margin-bottom: 5px!important; text-transform: uppercase; letter-spacing: -0.5px; display: inline-block;}
    p.action__promo__sm__alt { margin-top: -2px!important;}

.cu-spacer { margin-bottom: 15px;}
    
    .action__promo__sm__alt a {
 font-style: normal!important;
 font-size: 10px;
 line-height: 1.2222222222;
 font-family: 'Alte Haas Grotesk',helvetica,arial,sans-serif;
 font-weight: 900;
    letter-spacing: 0.5px;
 text-transform: uppercase;
border:1px solid #000000;
 padding:2px 4px;
text-decoration: none;
margin-right: 10px;
display: inline-block;
margin-top: 8px;}
    .action__promo__sm__alt a:hover {
    color: white;
    background-color: black;
    }
    .cu-preview {margin-bottom: 15px!important;}

ol.simple-list {
    list-style: none;
}

ol.simple-list li {
    font-size: 14px;
    display: block;
    clear: left;
        margin-bottom: 7px;

}

h4.simple-list {
    letter-spacing: -0.25px;
    line-height: 1.2em;
}

h4.simple-list a {    font-weight: bold;
text-decoration: none;}
h4.simple-list a:hover {text-decoration: none!important;
    background-color: #000000!important;
    color: #FFFFFF!important;}
span.list-date {font-color: #ccc;font-size:10px; display: block; margin-top: 1.5px}
span.list-kicker {font-size: 10px;display: block;margin-bottom:1px;font-weight: bold;text-transform: uppercase}
span.list-kicker a {text-decoration: none}