/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/pf/resources/dist/images/ajax-loader.gif?d=153) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/pf/resources/dist/fonts/slick.eot?d=153);
    src: url(/pf/resources/dist/fonts/slick.eot?#iefix) format('embedded-opentype'), url(/pf/resources/dist/fonts/slick.woff?d=153) format('woff'), url(/pf/resources/dist/fonts/slick.ttf?d=153) format('truetype'), url(/pf/resources/dist/fonts/slick.svg?d=153#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}img,svg,video,canvas,audio,iframe,embed,object{display:block;max-width:100%;vertical-align:middle}img,svg,video,canvas{height:auto}audio{width:100%}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}input::-moz-placeholder{opacity:1}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}svg{flex-grow:0;flex-shrink:0}figure{margin:0}ul,ol{margin:0 0 0 1.25rem;padding:0;line-height:1.6}li{padding:0;margin-top:0.3125rem}@media (min-width: 576px){.article-weather__header--ashburton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/ashburton.jpg")}}@media (min-width: 768px){.article-weather__header--ashburton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/ashburton-md.jpg")}}@media (min-width: 992px){.article-weather__header--ashburton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/ashburton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--auckland{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/auckland.jpg")}}@media (min-width: 768px){.article-weather__header--auckland{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/auckland-md.jpg")}}@media (min-width: 992px){.article-weather__header--auckland{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/auckland-lg.jpg")}}@media (min-width: 576px){.article-weather__header--blenheim{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/blenheim.jpg")}}@media (min-width: 768px){.article-weather__header--blenheim{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/blenheim-md.jpg")}}@media (min-width: 992px){.article-weather__header--blenheim{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/blenheim-lg.jpg")}}@media (min-width: 576px){.article-weather__header--christchurch{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/christchurch.jpg")}}@media (min-width: 768px){.article-weather__header--christchurch{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/christchurch-md.jpg")}}@media (min-width: 992px){.article-weather__header--christchurch{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/christchurch-lg.jpg")}}@media (min-width: 576px){.article-weather__header--dannervirke{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dannervirke.jpg")}}@media (min-width: 768px){.article-weather__header--dannervirke{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dannervirke-md.jpg")}}@media (min-width: 992px){.article-weather__header--dannervirke{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dannervirke-lg.jpg")}}@media (min-width: 576px){.article-weather__header--dargaville{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dargaville.jpg")}}@media (min-width: 768px){.article-weather__header--dargaville{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dargaville-md.jpg")}}@media (min-width: 992px){.article-weather__header--dargaville{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dargaville-lg.jpg")}}@media (min-width: 576px){.article-weather__header--dunedin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dunedin.jpg")}}@media (min-width: 768px){.article-weather__header--dunedin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dunedin-md.jpg")}}@media (min-width: 992px){.article-weather__header--dunedin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/dunedin-lg.jpg")}}@media (min-width: 576px){.article-weather__header--gisborne{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gisborne.jpg")}}@media (min-width: 768px){.article-weather__header--gisborne{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gisborne-md.jpg")}}@media (min-width: 992px){.article-weather__header--gisborne{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gisborne-lg.jpg")}}@media (min-width: 576px){.article-weather__header--gore{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gore.jpg")}}@media (min-width: 768px){.article-weather__header--gore{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gore-md.jpg")}}@media (min-width: 992px){.article-weather__header--gore{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/gore-lg.jpg")}}@media (min-width: 576px){.article-weather__header--greymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/greymouth.jpg")}}@media (min-width: 768px){.article-weather__header--greymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/greymouth-md.jpg")}}@media (min-width: 992px){.article-weather__header--greymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/greymouth-lg.jpg")}}@media (min-width: 576px){.article-weather__header--hamilton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hamilton.jpg")}}@media (min-width: 768px){.article-weather__header--hamilton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hamilton-md.jpg")}}@media (min-width: 992px){.article-weather__header--hamilton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hamilton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--hastings{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hastings.jpg")}}@media (min-width: 768px){.article-weather__header--hastings{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hastings-md.jpg")}}@media (min-width: 992px){.article-weather__header--hastings{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hastings-lg.jpg")}}@media (min-width: 576px){.article-weather__header--hokitika{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hokitika.jpg")}}@media (min-width: 768px){.article-weather__header--hokitika{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hokitika-md.jpg")}}@media (min-width: 992px){.article-weather__header--hokitika{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/hokitika-lg.jpg")}}@media (min-width: 576px){.article-weather__header--invercargill{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/invercargill.jpg")}}@media (min-width: 768px){.article-weather__header--invercargill{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/invercargill-md.jpg")}}@media (min-width: 992px){.article-weather__header--invercargill{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/invercargill-lg.jpg")}}@media (min-width: 576px){.article-weather__header--kaikoura{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaikoura.jpg")}}@media (min-width: 768px){.article-weather__header--kaikoura{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaikoura-md.jpg")}}@media (min-width: 992px){.article-weather__header--kaikoura{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaikoura-lg.jpg")}}@media (min-width: 576px){.article-weather__header--kaitaia{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaitaia.jpg")}}@media (min-width: 768px){.article-weather__header--kaitaia{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaitaia-md.jpg")}}@media (min-width: 992px){.article-weather__header--kaitaia{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/kaitaia-lg.jpg")}}@media (min-width: 576px){.article-weather__header--levin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/levin.jpg")}}@media (min-width: 768px){.article-weather__header--levin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/levin-md.jpg")}}@media (min-width: 992px){.article-weather__header--levin{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/levin-lg.jpg")}}@media (min-width: 576px){.article-weather__header--masterton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/masterton.jpg")}}@media (min-width: 768px){.article-weather__header--masterton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/masterton-md.jpg")}}@media (min-width: 992px){.article-weather__header--masterton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/masterton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--motueka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/motueka.jpg")}}@media (min-width: 768px){.article-weather__header--motueka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/motueka-md.jpg")}}@media (min-width: 992px){.article-weather__header--motueka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/motueka-lg.jpg")}}@media (min-width: 576px){.article-weather__header--napier{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/napier.jpg")}}@media (min-width: 768px){.article-weather__header--napier{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/napier-md.jpg")}}@media (min-width: 992px){.article-weather__header--napier{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/napier-lg.jpg")}}@media (min-width: 576px){.article-weather__header--nelson{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/nelson.jpg")}}@media (min-width: 768px){.article-weather__header--nelson{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/nelson-md.jpg")}}@media (min-width: 992px){.article-weather__header--nelson{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/nelson-lg.jpg")}}@media (min-width: 576px){.article-weather__header--new-plymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/new-plymouth.jpg")}}@media (min-width: 768px){.article-weather__header--new-plymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/new-plymouth-md.jpg")}}@media (min-width: 992px){.article-weather__header--new-plymouth{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/new-plymouth-lg.jpg")}}@media (min-width: 576px){.article-weather__header--omaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/omaru.jpg")}}@media (min-width: 768px){.article-weather__header--omaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/omaru-md.jpg")}}@media (min-width: 992px){.article-weather__header--omaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/omaru-lg.jpg")}}@media (min-width: 576px){.article-weather__header--palmerston-north{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/palmerston-north.jpg")}}@media (min-width: 768px){.article-weather__header--palmerston-north{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/palmerston-north-md.jpg")}}@media (min-width: 992px){.article-weather__header--palmerston-north{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/palmerston-north-lg.jpg")}}@media (min-width: 576px){.article-weather__header--paraparaumu{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/paraparaumu.jpg")}}@media (min-width: 768px){.article-weather__header--paraparaumu{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/paraparaumu-md.jpg")}}@media (min-width: 992px){.article-weather__header--paraparaumu{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/paraparaumu-lg.jpg")}}@media (min-width: 576px){.article-weather__header--queenstown{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/queenstown.jpg")}}@media (min-width: 768px){.article-weather__header--queenstown{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/queenstown-md.jpg")}}@media (min-width: 992px){.article-weather__header--queenstown{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/queenstown-lg.jpg")}}@media (min-width: 576px){.article-weather__header--reefton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/reefton.jpg")}}@media (min-width: 768px){.article-weather__header--reefton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/reefton-md.jpg")}}@media (min-width: 992px){.article-weather__header--reefton{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/reefton-lg.jpg")}}@media (min-width: 576px){.article-weather__header--rotorua{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/rotorua.jpg")}}@media (min-width: 768px){.article-weather__header--rotorua{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/rotorua-md.jpg")}}@media (min-width: 992px){.article-weather__header--rotorua{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/rotorua-lg.jpg")}}@media (min-width: 576px){.article-weather__header--taumaranui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taumaranui.jpg")}}@media (min-width: 768px){.article-weather__header--taumaranui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taumaranui-md.jpg")}}@media (min-width: 992px){.article-weather__header--taumaranui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taumaranui-lg.jpg")}}@media (min-width: 576px){.article-weather__header--taupo{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taupo.jpg")}}@media (min-width: 768px){.article-weather__header--taupo{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taupo-md.jpg")}}@media (min-width: 992px){.article-weather__header--taupo{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/taupo-lg.jpg")}}@media (min-width: 576px){.article-weather__header--tauranga{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tauranga.jpg")}}@media (min-width: 768px){.article-weather__header--tauranga{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tauranga-md.jpg")}}@media (min-width: 992px){.article-weather__header--tauranga{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tauranga-lg.jpg")}}@media (min-width: 576px){.article-weather__header--tekuiti{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tekuiti.jpg")}}@media (min-width: 768px){.article-weather__header--tekuiti{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tekuiti-md.jpg")}}@media (min-width: 992px){.article-weather__header--tekuiti{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tekuiti-lg.jpg")}}@media (min-width: 576px){.article-weather__header--thames{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/thames.jpg")}}@media (min-width: 768px){.article-weather__header--thames{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/thames-md.jpg")}}@media (min-width: 992px){.article-weather__header--thames{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/thames-lg.jpg")}}@media (min-width: 576px){.article-weather__header--timaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/timaru.jpg")}}@media (min-width: 768px){.article-weather__header--timaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/timaru-md.jpg")}}@media (min-width: 992px){.article-weather__header--timaru{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/timaru-lg.jpg")}}@media (min-width: 576px){.article-weather__header--tokoroa{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tokoroa.jpg")}}@media (min-width: 768px){.article-weather__header--tokoroa{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tokoroa-md.jpg")}}@media (min-width: 992px){.article-weather__header--tokoroa{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/tokoroa-lg.jpg")}}@media (min-width: 576px){.article-weather__header--wanaka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wanaka.jpg")}}@media (min-width: 768px){.article-weather__header--wanaka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wanaka-md.jpg")}}@media (min-width: 992px){.article-weather__header--wanaka{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wanaka-lg.jpg")}}@media (min-width: 576px){.article-weather__header--wellington{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wellington.jpg")}}@media (min-width: 768px){.article-weather__header--wellington{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wellington-md.jpg")}}@media (min-width: 992px){.article-weather__header--wellington{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/wellington-lg.jpg")}}@media (min-width: 576px){.article-weather__header--westport{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/westport.jpg")}}@media (min-width: 768px){.article-weather__header--westport{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/westport-md.jpg")}}@media (min-width: 992px){.article-weather__header--westport{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/westport-lg.jpg")}}@media (min-width: 576px){.article-weather__header--whakatane{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whakatane.jpg")}}@media (min-width: 768px){.article-weather__header--whakatane{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whakatane-md.jpg")}}@media (min-width: 992px){.article-weather__header--whakatane{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whakatane-lg.jpg")}}@media (min-width: 576px){.article-weather__header--whanganui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whanganui.jpg")}}@media (min-width: 768px){.article-weather__header--whanganui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whanganui-md.jpg")}}@media (min-width: 992px){.article-weather__header--whanganui{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whanganui-lg.jpg")}}@media (min-width: 576px){.article-weather__header--whangarei{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whangarei.jpg")}}@media (min-width: 768px){.article-weather__header--whangarei{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whangarei-md.jpg")}}@media (min-width: 992px){.article-weather__header--whangarei{background-image:url("https://media.nzherald.co.nz/pf/weather/locations/whangarei-lg.jpg")}}@font-face{font-weight:400;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Semibold.otf?d=153)}@font-face{font-weight:400;font-family:'Source Sans Pro';font-style:italic;src:url(/pf/resources/dist/fonts/SourceSansPro-It.otf?d=153)}@font-face{font-weight:600;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Semibold.otf?d=153)}@font-face{font-weight:700;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Bold.otf?d=153)}@font-face{font-weight:300;font-family:'Source Sans Pro';font-style:normal;src:url(/pf/resources/dist/fonts/SourceSansPro-Light.otf?d=153)}@font-face{font-weight:400;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Book.otf?d=153)}@font-face{font-weight:500;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Medium.otf?d=153)}@font-face{font-weight:700;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Bold.otf?d=153)}@font-face{font-weight:300;font-family:'Stag';font-style:normal;src:url(/pf/resources/dist/fonts/Stag-Light.otf?d=153)}@font-face{font-weight:300;font-family:'Stag';font-style:italic;src:url(/pf/resources/dist/fonts/Stag-LightItalic.otf?d=153)}@font-face{font-weight:400;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Book.otf?d=153)}@font-face{font-weight:500;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Medium.otf?d=153)}@font-face{font-weight:700;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Bold.otf?d=153)}@font-face{font-weight:300;font-family:'Stag Sans';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Light.otf?d=153)}@font-face{font-weight:300;font-family:'Stag Sans Light';font-style:normal;src:url(/pf/resources/dist/fonts/StagSans-Light.otf?d=153)}body{color:#000;font-weight:300;font-size:16px;font-family:"Source Sans Pro","Helvetica",sans-serif}h1,h2,h3{margin-top:1.25rem;margin-bottom:0.625rem;color:#4c585d;font-weight:500;font-family:"Stag","Georgia",serif}h1{font-size:2.1875rem;line-height:1.1}@media (min-width: 768px){h1{font-size:2.8125rem}}h2{margin-top:0.3125rem;margin-bottom:0.3125rem;font-size:1.875rem}h3{margin:0;font-size:1rem;line-height:1.2}h4{margin:0}p{margin-top:0;margin-bottom:0.625rem;font-size:1.1875rem;line-height:1.6}@media (min-width: 768px){p{font-size:1.0625rem}}a{color:#38a3d7;text-decoration:none}a:hover,a:focus{opacity:0.8;transition:opacity 0.2s}strong{font-weight:700}figcaption{margin-top:0.3125rem;margin-bottom:0.625rem;color:#4c585d;font-size:0.875rem;line-height:1.6}time{font-weight:300;font-size:0.75rem}blockquote{color:#333;font-weight:500;font-size:2.1875rem;font-family:"Stag","Georgia",serif;text-align:center;quotes:'“' '”' '‘' '’'}@media print{figcaption{display:none}}.accordion{width:100%;border-bottom:2px solid #23292a}.accordion:first-of-type{border-top:2px solid #23292a}.accordion:last-of-type{border-bottom:none}.accordion--is-expanded .accordion__chevron{color:#fff;background-color:#4c585d;transform:rotate(90deg)}.accordion--is-expanded .accordion__content{max-height:625rem;overflow:visible}.accordion__button{display:flex;align-items:center;box-sizing:border-box;width:100%;padding:0.625rem 1.5625rem;background-color:transparent;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.accordion__button .accordion__chevron{transition:all 0.1s}.accordion__button small{margin-left:0.3125rem;font-size:70%}.accordion__button,.accordion__link{color:#c4cccb;font-weight:400;font-size:1.0625rem;font-family:"Stag","Georgia",serif;line-height:1.45}.accordion__icon{width:2.1875rem;height:2.1875rem;margin-right:1.25rem}.accordion__icon--avatar{margin-top:-0.375rem;color:#4c585d}.accordion__icon--my-news{display:flex;align-items:center;justify-content:center;color:#fff;background-color:#313c3d;border-radius:50%}.accordion__chevron{box-sizing:content-box;width:0.3125rem;height:0.5rem;margin-left:auto;padding:0.125rem 0.1875rem;color:#4c585d;border:2px solid #4c585d;border-radius:50%}.accordion__content{height:auto;max-height:0;overflow:hidden;background-color:#1c2122}.ad{color:#9e9f9f;text-align:center}.ad .pb-ad-container{margin:0 auto}.ad .pb-ad-container[data-adtype='Leaderboard']{display:inline-block}.ad.ad-leaderboard{display:none;flex-flow:column nowrap;align-items:center;justify-content:center;width:100%}@media (min-width: 992px){.ad.ad-leaderboard{display:flex}}.ad.ad-leaderboard .ad__link{margin-top:0.3125rem}.ad__placeholder{display:flex;align-items:center;justify-content:center;margin:0 auto;color:#fff;text-align:center;background-color:#38a3d7}.ad__heading{margin-bottom:0.625rem;font-weight:300;font-size:0.6875rem;text-transform:uppercase}.ad__link{display:block;color:#9e9f9f;font-size:0.625rem;font-style:italic}@media print{.ad,.ad.ad-leaderboard{display:none}}.article-media{outline:0}@media (min-width: 576px){.article-media{position:relative}}.article-media__full-screen-button{display:none}@media (min-width: 576px){.article-media__full-screen-button{position:absolute;top:0.3125rem;right:0.3125rem;display:flex;align-items:center;justify-content:center;width:2.1875rem;height:2.1875rem;padding:0;background-color:#4c585d;border:none;border-radius:0.375rem;cursor:pointer;transition:opacity 0.2s}}.article-media__full-screen-button:hover{opacity:0.8}.article-media__full-screen-button-icon{width:2.1875rem;height:2.1875rem;color:#fff}.article-media__image{width:100%}.article-media__image--portrait{width:auto;height:31.25rem;margin:0 auto}.article-media__hero-wrapper{position:relative;margin-top:1.25rem;padding-top:56.25%}@media (max-width: 575px){.article-media__hero-wrapper.no-video{margin-top:0;padding-top:106.42%}}.article-media__hero-wrapper .header__figure{margin-top:0}.article-media__hero-wrapper .article-media__image{position:absolute;top:0;left:0;width:100%;margin-top:0}.article-media__hero-wrapper .video-outer{position:absolute;top:0;width:100%;height:100%}@media print{.article-media__full-screen-button{position:static;display:none}.article-media__image{display:none}.article-media__caption{display:none}}.article-offer{z-index:1;width:100%;text-align:center;background-color:#fff}.article-offer__inner{position:relative;padding:1.25rem}.article-offer__inner::before{position:absolute;top:-6.25rem;left:0;display:block;width:100%;height:6.25rem;background-image:linear-gradient(rgba(255,255,255,0), #fff);content:''}.article-offer__subheading{margin-bottom:1.25rem;padding-bottom:1.25rem;font-weight:400;font-size:1.25rem;border-bottom:2px solid #ecac0c}.article-offer__heading{font-weight:400;font-size:1.5625rem}.article-offer__price{display:flex;align-items:center;justify-content:center;font-weight:400;font-size:2.5rem;font-family:"Stag","Georgia",serif}.article-offer__price-old{padding-right:1.25rem;color:#9e9f9f;font-size:1.125rem;text-decoration:line-through}.article-offer__price-sign{position:relative;top:-0.3125rem;padding-right:0.3125rem;font-size:1.5625rem}.article-offer__price-period{padding-top:0.75rem;padding-left:0.3125rem;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.article-offer__call-to-action{padding:0.5rem 5rem;color:#fff;font-weight:400;font-size:1.125rem;background-color:#ecac0c;border-radius:0.25rem}@media (min-width: 576px){.article-offer__call-to-action{padding:0.5rem 7rem}}.article-offer__list{margin-top:1.25rem}@media (min-width: 576px){.article-offer__list{display:flex;flex-wrap:wrap;justify-content:center}}.article-offer__list-item{text-align:left}@media (min-width: 576px){.article-offer__list-item{flex-basis:calc(100% / 3 - 1.25rem * 2);margin-right:1.25rem;margin-left:1.25rem}}.article-offer__action-bar{margin-top:1.25rem;padding-top:1.25rem;color:#000;font-weight:700;text-align:left;border-top:1px solid #000}@media (min-width: 576px){.article-offer__action-bar{display:flex;justify-content:space-between}}.article-offer__action-bar-item{font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.25}.article-offer__action-bar-item-link{color:#000;text-decoration:underline;transition:color 0.2s}@media (min-width: 576px){.article-offer__action-bar-item-link{display:table;padding-left:0}}@media (max-width: 575px){.article-offer__action-bar-item-link:last-of-type{padding-left:0.1875rem}}.article-offer__action-bar-item-link:hover,.article-offer__action-bar-item-link:focus{color:#ecac0c}@media (min-width: 576px){.article-offer--signed-in .article-offer__action-bar{display:block}}@media (min-width: 576px){.article-offer--signed-in .article-offer__action-bar-item{text-align:center}}@media (min-width: 576px){.article-offer--signed-in .article-offer__action-bar-item-link{display:inline-block;padding-left:0.1875rem}}@media print{.article-offer{page-break-inside:avoid}}.author{display:flex;align-items:center;color:#4c585d;font-size:0.875rem}.author__image{width:3.75rem;height:3.75rem;margin-right:0.9375rem;border-radius:50%}@media (min-width: 992px){.author__info{max-width:18.75rem}}.author__description{margin-top:0.3125rem;margin-bottom:0;font-size:0.875rem;line-height:1.4}.author__name .author__link{display:inline;font-weight:700}.author__link{display:table;margin-top:0.3125rem}.syndicator__logo-container{max-width:150px;max-height:20px}.syndicator__logo{width:100%;height:100%}.syndicator__logo--eatwell-syndicator{width:4.8125rem;height:1.25rem}.syndicator__logo--viva{width:1.875rem;height:1.25rem}.syndicator__logo--canvas{width:8.125rem;height:1.25rem}.syndicator__logo--nz-listener{width:6.125rem;height:1.25rem}.syndicator__logo--nz-womans-weekly{width:6.3125rem;height:1.25rem}.syndicator__logo--nz-herald{width:8.75rem;height:1.25rem}.syndicator__logo--be-well{width:4.6875rem;height:1.25rem}.syndicator__logo-container+.author__name{margin-top:0.25rem}.author-details{display:flex;flex-direction:column;align-items:center;justify-content:center;margin:0 1rem 2rem}@media (min-width: 576px){.author-details{flex-direction:row;justify-content:flex-start;margin:0 0 35px}}.author-details__image{width:85px;height:85px;margin:20px 0 40px;overflow:hidden;background-color:#fff;border-radius:85px}@media (min-width: 576px){.author-details__image{width:58px;height:58px;margin:0 20px 0 0;border-radius:58px}}.author-details__image img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.author-details__info{text-align:center}@media (min-width: 576px){.author-details__info{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;min-height:58px;text-align:left}}.author-details__description{margin-bottom:0.5rem;color:#313c3d;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (min-width: 576px){.author-details__description{font-size:0.875rem}}.author-details__contact{font-size:0.875rem}.author-details__contact-title{margin-right:0.5rem;color:#313c3d;font-weight:700}.action-bar{display:flex;padding:0.3125rem 0.625rem 0.3125rem 0.75rem}@media (min-width: 768px){.action-bar{padding:0.3125rem 0 0.3125rem 0}.action-bar.action-bar-split-line{border-bottom:0.0625rem solid #d5d5d5}}@media (min-width: 992px){.action-bar{max-width:58.75rem;margin-right:auto;margin-left:auto}}.action-bar .website-of-year{display:flex;width:100%;margin:0.1875rem;padding-top:0.25rem;color:#121617;font:normal normal 900 0.875rem/0.9375rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0;white-space:nowrap;text-align:left;text-transform:uppercase}@media (min-width: 768px){.action-bar .website-of-year{width:calc(100% - 1.25rem * 2)}}.action-bar .btn-premium-wrapper{margin:auto}@media (min-width: 768px){.action-bar .btn-premium-wrapper{display:none}}.action-bar .btn-premium-wrapper .sub-btn{display:inline-block;margin:0 auto 1.25rem;padding:0.5rem 0.75rem;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-align:center;text-decoration:none;vertical-align:middle;background-color:#ecac0c;border:0.0625rem solid #ecac0c;border-radius:0.25rem;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;margin:auto;padding-top:0.6875rem;padding-bottom:0.6875rem;color:#313c3d;text-transform:uppercase;border-radius:0.125rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.action-bar .btn-premium-wrapper .sub-btn:hover{background-color:#d49b0b;border-color:#d49b0b}.action-bar__img-container{display:inline-block;padding-right:0.6875rem;border-right:0.0625rem solid #e3e3e3}@media (max-width: 575px){.action-bar__img-container{padding-right:0.625rem}}.action-bar__img-container img{vertical-align:middle}.action-bar__voyager-awards-text{display:flex;flex-direction:column;justify-content:center;padding-left:0.78125rem}@media print{.action-bar{display:none}}.brandedstrap{max-width:60rem;margin:0.625rem;padding:1.25rem 0;border-top:1px solid #313c3d;border-bottom:1px solid #313c3d}@media (min-width: 992px){.brandedstrap{margin:2.5rem auto}}@media (min-width: 576px){.brandedstrap__wrapper{display:flex;align-items:center;justify-content:space-between}}.brandedstrap__image{max-width:13.125rem;max-height:2.1875rem;margin-right:0.3125rem}.brandedstrap__description{margin-top:0.3125rem;padding:0 0.9375rem;color:#000;font-weight:400;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.0625rem}@media (min-width: 576px){.brandedstrap__description{flex-basis:70%;margin-top:0;padding:0 3.125rem}}.brandedstrap__link{display:flex;margin-top:0.3125rem;color:#313c3d;font-weight:700;font-size:0.75rem;font-family:"Stag Sans Book","Helvetica",sans-serif;text-transform:uppercase;word-break:normal}@media (min-width: 576px){.brandedstrap__link{min-width:6.875rem;margin-top:0}}.brandinsight{height:4.0625rem}.brandinsight__wrapper{display:flex;align-items:center;justify-content:space-between;max-width:60rem;height:100%;margin:0 0.625rem}@media (min-width: 992px){.brandinsight__wrapper{margin:0 auto}}.brandinsight__logo{display:flex;align-items:center}.brandinsight__logo-icon{width:2.8125rem;height:2.8125rem}.brandinsight__logo-text{display:none;margin-left:0.125rem;color:#fff;font-size:1.3125rem;font-family:"Stag","Georgia",serif;line-height:2.8125rem}@media (min-width: 576px){.brandinsight__logo-text{display:inline}}.brandinsight__sponsor-logo{max-height:3.75rem}.breaking-news{height:2.5rem;overflow:hidden;color:#fff;background-color:#ed213e}@media (max-width: 767px){.breaking-news{position:fixed;bottom:0;left:0;z-index:3;width:100%;box-shadow:0 -0.3125rem 0.625rem rgba(28,33,34,0.3)}}.breaking-news--has-animation .breaking-news__message{-webkit-animation:ticker 15s linear infinite;animation:ticker 15s linear infinite}.breaking-news__inner{position:relative;display:flex;align-items:center;width:100%;height:100%}.breaking-news__message{display:inline-block;margin-bottom:0;padding:0 0.625rem;font-weight:600;font-size:1rem;line-height:1;white-space:nowrap;text-transform:uppercase}@media (min-width: 768px){.breaking-news__message{font-size:1.125rem}}@media (min-width: 1200px){.breaking-news__message{padding-left:4.375rem}}.breaking-news__message:hover{-webkit-animation-play-state:paused;animation-play-state:paused}.breaking-news__link{padding-left:0.1875rem;color:#fff;font-weight:400;font-family:"Stag","Georgia",serif;text-transform:none}.breaking-news__close-button{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;padding:0;background-color:#d51e38;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.breaking-news__close-icon{width:1.3125rem;height:1.3125rem;color:#fff}@-webkit-keyframes ticker{0%{transform:translateX(0)}30%{transform:translateX(0)}100%{transform:translateX(-110%)}}@keyframes ticker{0%{transform:translateX(0)}30%{transform:translateX(0)}100%{transform:translateX(-110%)}}@media print{.breaking-news{display:none}}.section-chain .slick-slide article[class^='story-card']{margin:0 0.625rem}.section-chain .slick-prev{left:-2.5rem}.section-chain .slick-next{right:-2.5rem}.section-chain .slick-dots li button::before{font-size:0.625rem}.commenting__wrapper{padding:1.125rem 1.0625rem;background-color:#f5f5f5}.commenting__main{padding:1.875rem 0.9375rem;background-color:#fff}@media (min-width: 768px){.commenting__main{padding:1.875rem}}.commenting__description{max-width:29.6875rem;margin:0 0 0.625rem;color:#121617;font-weight:300;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.commenting__heading{margin:0 0 0.625rem;color:#313c3d;font-weight:400;font-family:"Stag","Georgia",serif}.commenting__name-form,.commenting__paywall{display:flex;flex-flow:column nowrap;align-items:center;width:100%;height:auto;text-align:center}.commenting__paywall .commenting__heading{font-size:1.375rem}.commenting__paywall .article-offer__price{margin-bottom:0.1875rem}.commenting__paywall .button{max-width:23.75rem;margin:0 0 1.125rem}.commenting__paywall h4{margin:0.5rem 0 0.9375rem;color:#313c3d;font-weight:400}.commenting__paywall .note{color:#333;font-size:0.875rem}.commenting__name-form .commenting__heading{font-size:1.375rem}.commenting__name-form .commenting__description{margin-bottom:1.25rem}.commenting .button{display:flex;align-items:center;justify-content:center;width:100%;height:3rem;font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center;border-radius:0.25rem}.commenting .button:hover{cursor:pointer;opacity:0.8;transition:opacity 0.2s}.commenting .button:disabled{opacity:0.3;transition:opacity 0.2s}.commenting .button--primary{color:#fff;background-color:#38a3d7;border:1px solid #38a3d7}.commenting .button--premium{color:#fff;background-color:#ecac0c;border:1px solid #ecac0c}.commenting__count{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;width:100%;height:3.75rem;margin:1.5625rem 0 0.3125rem;border-top:1px solid #dce1e2}.commenting__count-info{display:flex;flex-flow:row nowrap;align-items:center}.commenting__count-title{color:#38a3d7;font-weight:400;font-size:1.375rem;font-family:"Stag","Georgia",serif}.commenting__speech-bubble{position:relative;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:auto;min-width:1.75rem;height:1.75rem;margin:0 0.625rem 0 0;padding:0 0.75rem;color:#333;font-weight:500;font-size:1rem;font-family:"Stag","Georgia",serif;background-color:#dce1e2;border-radius:1.75rem}.commenting__speech-bubble::after{position:absolute;bottom:1px;left:50%;margin-bottom:-10px;border:10px solid transparent;border-top-color:#dce1e2;border-right:0;border-bottom:0;transform:translateX(-50%);content:''}.commenting .coral-count-number,.commenting .coral-count{color:inherit;font-weight:inherit;font-size:inherit;font-family:inherit}.form{width:100%}.form .form-input-row{display:flex;flex-flow:row wrap;align-items:flex-start;justify-content:center}.form .form-input-row--two{display:flex;flex-flow:row wrap;align-items:flex-start;justify-content:center}@media (min-width: 576px){.form .form-input-row--two .input-group{width:49%}.form .form-input-row--two .input-group:first-child{margin-right:2%}}.form .input-group{display:flex;flex-direction:column;align-items:flex-start;width:100%;margin-bottom:1.25rem}.form .input-label{order:1;margin:0 0 0.375rem;color:#95989d;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase}.form .input-text{order:2;box-sizing:border-box;width:100%;max-height:3rem;padding:0.75rem 0.875rem;font-weight:300;font-size:1.0625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.0625rem;background-color:#f5f5f5;border:1.5px solid rgba(0,0,0,0);border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form .input-text:focus{background-color:#fff;border:1.5px solid #38a3d7;outline-width:0}.form .input-error{order:3;margin-top:0.25rem;color:#d51e38;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:left}.form .input-text:focus ~ .input-label{color:#38a3d7}.form__feedback{margin-bottom:1.25rem}@media print{.commenting__wrapper{display:none}.commenting__count{display:none}}.currency-converter{display:flex;flex-direction:column;align-items:center;justify-content:center;box-sizing:border-box;max-width:18.75rem;margin:1.875rem auto;padding:1.875rem 1.75rem;background-color:#fff}@media (min-width: 576px){.currency-converter{margin:0 auto;padding:0.9375rem 1.75rem}}.currency-converter__form{width:100%;max-width:18.75rem}.currency-converter__row{display:flex;flex-direction:row;align-items:center}.currency-converter__title{margin-bottom:0.8125rem;color:#394190;font-size:1.5rem}.currency-converter__input-group{display:flex;flex-direction:column;justify-content:flex-start;width:100%;margin:0.375rem 0 0.5rem}.currency-converter__input-group label{margin-bottom:0.375rem;color:#313c3d;font-weight:700;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:0.8125rem;text-transform:uppercase}.currency-converter__input-group input,.currency-converter__input-group select{box-sizing:border-box;width:100%;padding:0.5625rem 1rem;color:#000;font-weight:300;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;border:1px solid #dce1e2;border-radius:0.25rem}.currency-converter__input-group select{background-image:url(/pf/resources/dist/fonts/chevron-dropdown.svg?d=153);background-repeat:no-repeat;background-position:center right 1rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.currency-converter__input-group select>option{color:#000;font-weight:300;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.currency-converter__submit-btn{width:100%;height:2.1875rem;margin-top:0.625rem;color:#fff;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;background-color:#394190;border:none;border-radius:0.125rem}.article-sidebar .currency-converter{margin:1.875rem auto}.day-forecast{display:flex;flex-wrap:wrap;align-items:center;align-self:flex-start}.day-forecast__icon{width:2.5rem;height:2.5rem;margin-right:0.9375rem}.day-forecast__heading{font-weight:600;font-size:1.0625rem}.day-forecast__heading--date{display:block;color:#38a3d7}.day-forecast__heading--location{display:block;color:#4c585d;text-transform:capitalize}.day-forecast__temperature{display:inline-block;margin-top:0.3125rem;color:#313c3d;font-weight:400;font-size:1.1875rem;font-family:"Stag","Georgia",serif}.day-forecast__temperature:not(:first-of-type){padding-left:0.625rem}.day-forecast__temperature--secondary{color:#9e9f9f}.day-forecast__description{flex-basis:100%;margin-top:0.3125rem;color:#4c585d;font-size:1.0625rem;line-height:1.4}.follow-bar{display:flex;flex-wrap:wrap;padding:0.625rem 1.5625rem}@media (max-width: 575px){.follow-bar{margin-bottom:7.5rem}}.follow-bar__heading{flex-basis:100%;color:#9e9f9f;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase}.follow-bar .follow-bar-link{margin-top:0.625rem}.follow-bar .follow-bar-link:not(:first-of-type){margin-left:0.625rem}.follow-bar-link{display:flex;align-items:center;justify-content:center;width:2.1875rem;height:2.1875rem;color:#fff;background-color:#4c585d;border-radius:0.375rem}.follow-bar-link--facebook{background-color:#4267b2}.follow-bar-link--twitter{background-color:#38a1f3}.follow-bar-link--linkedin{background-color:#0077b5}.follow-bar-link--reddit{background-color:#f24511}.follow-bar-link--instagram{background-color:#8b5191}.follow-bar-link--youtube{background-color:#dc4e41}.follow-bar-link--rss{background-color:#e3702d}.follow-bar-link--mail{background-color:#4c585d}.follow-bar-link__icon{width:1.375rem;height:1.375rem}.follow-bar-link--youtube>.follow-bar-link__icon,.follow-bar-link--rss>.follow-bar-link__icon{width:2.1875rem;height:2.1875rem}.user-form{display:flex;flex-flow:column nowrap;align-items:center;justify-content:center;box-sizing:border-box;width:100%;max-width:23.1875rem;margin-top:4.0625rem;padding:4.0625rem 1.25rem;background-color:#fff;box-shadow:0 20px 28px rgba(85,99,137,0.08)}@media (min-width: 576px){.user-form{max-width:36rem;margin-top:4.0625rem;padding:8.125rem 6.4375rem}}.user-form__container{display:flex;align-items:center;justify-content:center}.user-form .heading{width:100%;margin:0;color:#121617;font-weight:500;font-size:2rem;font-family:"Stag","Georgia",serif;line-height:2.25rem;text-align:center}@media (min-width: 576px){.user-form .heading{font-size:2.5rem;line-height:2.75rem}}.user-form .description{width:100%;margin-bottom:2rem;color:#313c3d;font-weight:600;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.25rem;text-align:center}.user-form .hr{display:block;width:2.0625rem;height:0.1875rem;margin:2rem 0;background-color:#ecac0c;border-radius:0.09375rem}.user-form form{width:100%}.user-form .input-group{margin:0 0 1rem 0}.user-form .input-group label{padding:0 0 0.5rem 0;color:#23292a;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.5rem}.user-form .input-wrapper{position:relative}.user-form .input-icon{position:absolute;top:50%;right:1rem;display:flex;align-items:center;justify-content:center;width:1.1875rem;height:1.1875rem;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;border-radius:50%;transform:translateY(-50%)}.user-form .input-icon--warning{background-color:#ed213e;content:'!'}.user-form .input-icon--warning::before{color:#fff;content:'!'}.user-form input[type='text'],.user-form input[type='email']{display:flex;flex-flow:column nowrap;box-sizing:border-box;width:100%;height:2.8125rem;padding:0.8125rem 1.125rem;color:#23292a;font-weight:600;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;border:0.0625rem solid #c7c7c7;border-radius:0.25rem;outline:none}.user-form input[type='text']:focus,.user-form input[type='text']:hover,.user-form input[type='email']:focus,.user-form input[type='email']:hover{border-color:#ecac0c}.user-form .input-error{position:absolute;bottom:-2.5625rem;left:1rem;box-sizing:border-box;width:auto;height:auto;padding:0.5rem 0.75rem;color:#23292a;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.5rem;white-space:nowrap;background-color:#fff;border:0.0625rem solid #dce1e2;border-radius:0.25rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}@media (min-width: 768px){.user-form .input-error{bottom:0.125rem;left:calc(100% + 1rem)}}.user-form .input-error::before{position:absolute;top:-0.75rem;left:1.25rem;border-top:0.375rem solid transparent;border-right:0.375rem solid transparent;border-bottom:0.375rem solid #dce1e2;border-left:0.375rem solid transparent;content:''}@media (min-width: 768px){.user-form .input-error::before{top:50%;left:-0.375rem;display:block;border-color:transparent #dce1e2;border-style:solid;border-width:0.375rem 0.375rem 0.375rem 0;transform:translateY(-50%)}}.user-form .input-error::after{position:absolute;top:-0.625rem;left:1.3125rem;border-top:0.3125rem solid transparent;border-right:0.3125rem solid transparent;border-bottom:0.3125rem solid #fff;border-left:0.3125rem solid transparent;content:''}@media (min-width: 768px){.user-form .input-error::after{top:50%;left:-0.3125rem;border-color:transparent #fff;border-style:solid;border-width:0.3125rem 0.3125rem 0.3125rem 0;transform:translateY(-50%)}}.user-form .form-button{width:100%;height:2.8125rem;border:none;border-radius:0.125rem;cursor:pointer}.user-form .form-button--submit{color:#fff;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#ecac0c}.user-form .form-button--submit:disabled{opacity:0.2}.user-form .form-button--submit:hover,.user-form .form-button--submit:active{background-color:#fdb215}.user-form .form-button--submit:active{opacity:0.5}.form-feedback{display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;width:100%;height:1.9375rem;margin-top:1rem;padding:0.5rem;border-radius:0.125rem}.form-feedback--success{color:#38a3d7;background-color:rgba(56,163,215,0.2)}.form-feedback--error{color:#ed213e;background-color:#fbd3d9}.form-feedback__message{margin-left:0.625rem;color:inherit;font-weight:600;font-size:0.78125rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.form-feedback__icon{width:100%;max-width:0.4375rem;height:100%;max-height:0.4375rem}.form-feedback__icon-circle{display:flex;align-items:center;justify-content:center;width:0.9375rem;height:0.9375rem;border-radius:50%}.form-feedback__icon-circle--success{background-color:#38a3d7}.form-feedback__icon-circle--error{background-color:#ed213e}.social-auth-newsletter-form{flex-flow:wrap;min-width:25rem;max-width:36rem}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){.social-auth-newsletter-form__ms-ie-container-fix{max-width:25rem}}@media (max-width: 575px){.social-auth-newsletter-form{min-width:23.4375rem}}.social-auth-newsletter-form__user-agreement{margin-top:1rem;color:#adadad;font:normal normal 600 0.75rem/1.125rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0rem;text-align:center}@media (max-width: 575px){.social-auth-newsletter-form__user-agreement{padding:0 3.125rem;font-stretch:1rem}}.social-auth-newsletter-form__user-agreement a{color:#adadad;font-weight:700;text-decoration:underline}@media (max-width: 575px){.social-auth-newsletter-form.user-form{box-shadow:none}}.social-auth-newsletter-form__divider.hr{margin:2rem auto;background-color:#38a3d7}.social-auth-newsletter-form__feedback-message{margin-bottom:2rem;color:#313c3d;font:normal normal 600 1rem/1.25rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0;text-align:center}.social-auth-newsletter-form .social-auth-newsletter-form__email-input-label{display:block;font:normal normal 700 0.875rem/1.5rem "Source Sans Pro","Helvetica",sans-serif}.social-auth-newsletter-form__email-field{display:flex;align-items:center;padding-left:1.125rem;border:0.0625rem solid #dde1e2;border-radius:0.125rem}.social-auth-newsletter-form__email-field__input{background-color:#fff;border:none;outline:none}.social-auth-newsletter-form__email-field .input-wrapper{width:100%}.social-auth-newsletter-form__email-field input[type='text']{border:none;opacity:1;-webkit-text-fill-color:#23292a}.social-auth-newsletter-form__email-field .google-icon{width:1.125rem;height:1.125rem;background:url(/pf/resources/dist/fonts/google-icon.svg?d=153)}.social-auth-newsletter-form__checkbox__label{color:#272f31;font-weight:700;font-size:0.9375rem;font-family:"Source Sans Pro","Helvetica",sans-serif;font-stretch:1.25rem;letter-spacing:0rem}.social-auth-newsletter-form__submit-button{margin-top:0.5rem;color:#fff;background-color:#38a3d7}.social-auth-newsletter-form__submit-button:hover{background:#2b7199;border-color:#2b7199}.social-auth-newsletter-form__submit-button:focus{background:#2b7199;border-color:#2b7199}.social-auth-newsletter-form__try-again-button{color:#fff;background-color:#38a3d7}.social-auth-newsletter-form__try-again-button:hover{background:#2b7199;border-color:#2b7199}.social-auth-newsletter-form__try-again-button:focus{background:#2b7199;border-color:#2b7199}.social-auth-newsletter-form__manage-account{margin-top:2rem;font:normal normal 700 0.875rem/1.125rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0rem;text-align:center}@media (max-width: 575px){.social-auth-newsletter-form__manage-account{margin-top:4.6875rem}}.social-auth-newsletter-form__contact-customer-service{margin-top:2rem;font:normal normal 700 0.875rem/1.125rem "Source Sans Pro","Helvetica",sans-serif;letter-spacing:0rem;text-align:center}.social-auth-newsletter-form__checkbox{position:relative;display:flex;margin-top:1.5rem}.social-auth-newsletter-form__checkbox__input{position:relative;width:1.25rem;min-width:1.25rem;height:1.25rem;margin-right:0.625rem;border:0.0625rem solid #dde1e2;border-radius:4px;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.social-auth-newsletter-form__checkbox__input::after{position:absolute;top:0.125rem;left:0.375rem;display:none;width:0.1875rem;height:0.5rem;border:solid #fff;border-width:0 0.15625rem 0.15625rem 0;transform:rotate(45deg);content:''}.social-auth-newsletter-form__checkbox__input:checked{background-color:#38a3d7;border:0.0625rem solid #38a3d7}.social-auth-newsletter-form__checkbox__input:checked::after{display:block}.social-auth-newsletter-form .checkbox-icon{position:absolute;top:0.3125rem;left:0.3125rem;display:none;width:7px;height:10px}.gallery{margin-top:1.25rem;padding-bottom:0.625rem}@media (min-width: 768px){.gallery{max-width:62rem}}@media (min-width: 992px){.gallery{max-width:39.375rem}}.gallery::before{position:absolute;top:-0.625rem;display:block;width:100%;height:0.0625rem;background-color:#d5d5d5;content:''}.gallery__image-count{font-weight:700}@media (min-width: 576px){.gallery+.overlay__full-screen-button{top:0.9375rem}}.gallery .slick-prev{left:0.625rem}.gallery .slick-next{right:0.625rem}.gallery__caption{margin-bottom:0.3125rem;padding-bottom:0.625rem;color:#4c585d;font-size:0.875rem;line-height:1.6;border-bottom:1px solid #d5d5d5}.overlayad{position:absolute;top:0;right:0;bottom:0;left:0;z-index:7;display:flex;align-items:center;justify-content:center;max-width:100%;height:100%;background-color:#000;border:none}.horoscopes{display:flex;flex-wrap:wrap}.horoscopes__heading{flex-basis:100%;color:#de2363;font-weight:300;text-align:center}.horoscopes__heading-fine-text{display:block;color:#4c585d;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.horoscopes__item{display:flex;align-items:center;margin-bottom:1.875rem;color:#4c585d}.horoscopes__item .horoscopes__item-image{width:3.75rem;height:3.75rem;margin:0 1.25rem 0 0.625rem}@media (min-width: 576px){.horoscopes__item .horoscopes__item-image{margin:0 1.5625rem 0 0.9375rem}}.horoscopes__item .horoscopes__item-heading{margin-bottom:0;font-size:2rem}.horoscopes__item .horoscopes__item-time{font-size:1rem}.horoscopes__item-link{display:inline-block;flex-basis:calc(100% / 3);margin-top:1.875rem;color:#4c585d;text-align:center}@media (min-width: 768px){.horoscopes__item-link{flex-basis:calc(100% / 4);margin-top:3.125rem}}@media (min-width: 992px){.horoscopes__item-link{flex-basis:calc(100% / 6)}}.horoscopes__item-heading{margin-top:0.625rem;font-weight:500;font-size:1.0625rem;font-family:"Stag","Georgia",serif}@media (min-width: 576px){.horoscopes__item-heading{font-size:1.25rem}}.horoscopes__item-image{width:2.5rem;height:2.5rem;margin:0 auto}@media (min-width: 576px){.horoscopes__item-image{width:3.75rem;height:3.75rem}}.horoscopes__item-time{display:inline-block;margin-top:0.3125rem;color:#9e9f9f;font-size:0.75rem}@media (min-width: 576px){.horoscopes__item-time{font-size:1rem}}.horoscopes--carousel .horoscopes__item-link{display:block;margin-top:0}.horoscopes--carousel .section-chain__wrapper{margin-top:1.875rem}.horoscopes--carousel .slick-dots li button::before{color:#de2363}.horoscopes--carousel .slick-dots li.slick-active button::before{color:#ae1b4e}.section-iframe{margin:1.25rem 0}.section-iframe iframe{width:0.625rem;min-width:100%}.section-iframe.both{display:block}.section-iframe.mobile{display:block}@media (min-width: 992px){.section-iframe.mobile{display:none}}.section-iframe.desktop{display:none}@media (min-width: 992px){.section-iframe.desktop{display:block}}.label-updated{position:relative;padding-left:0.8125rem;color:#9e9f9f;font-weight:700;font-size:0.625rem;text-transform:uppercase}.label-updated::before{position:absolute;top:calc(50% - 3px);left:0;width:0.3125rem;height:0.3125rem;background-color:#9e9f9f;border-radius:50%;content:''}.masthead{display:flex;align-items:center;justify-content:center}.masthead+.masthead{margin-top:0.625rem}.masthead:last-of-type{margin-bottom:5rem}.OUTBRAIN{display:flex}@media print{.OUTBRAIN{display:none}}.meta-data{display:flex;align-items:center;justify-content:space-between;color:#9e9f9f;font-size:0.75rem}.meta-data__read-time{display:flex;align-items:center;line-height:1}.meta-data__read-time-icon{width:0.625rem;height:0.625rem;margin-right:0.1875rem}.meta-data__premium-tag{display:flex;align-items:center;padding-top:0.0625rem;padding-left:0.5625rem;color:#ecac0c;font-weight:600;font-size:0.8125rem}.meta-data__premium-tag::before{position:relative;left:-0.3125rem;display:block;width:0.0625rem;height:0.625rem;background-color:#9e9f9f;content:''}.meta-data__premium-tag-icon{position:relative;width:0.9375rem;height:1.125rem;padding-right:0.125rem}.modal{position:fixed;top:0;left:0;z-index:110;width:100%;height:100%;background:rgba(0,0,0,0.6)}.modal__wrapper{position:fixed;top:50%;left:50%;box-sizing:border-box;width:95%;max-width:31.25rem;height:auto;padding:4.0625rem 2.8125rem;background:#fff;border-radius:0.25rem;transform:translate(-50%, -50%)}@media (min-width: 576px){.modal__wrapper{width:90%;padding:3.5rem 5.625rem}}.modal__title{margin-bottom:1.875rem;color:#313c3d;font-weight:500;font-size:1.25rem;font-family:"Stag","Georgia",serif;text-align:center}.modal__title span{text-transform:capitalize}@media (min-width: 768px){.modal__title{font-size:1.5625rem}}.modal .forgot-password{display:block;width:100%;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center}.modal .button-group{display:flex;flex-flow:row wrap;justify-content:space-between;margin:1rem 0}.modal .button-group .button{width:100%;margin-bottom:1rem}.modal .social__button--google{display:flex;align-items:center;width:100%;height:2.625rem;padding:0 1.09375rem;background-color:#fff;border:0.0625rem solid #333c3d;border-radius:0.125rem;cursor:pointer}.modal .social__button--google:hover:enabled{border-color:#4285f4}.modal .social__button--google:active{background:#eee;border:0.0625rem solid #4285f4}.modal .social__button--google:focus{outline:none}.modal .social__button--google:disabled{opacity:0.25;-webkit-filter:grayscale(100%);filter:grayscale(100%)}.modal .social__button-icon--google{width:1.125rem;height:1.125rem;background:url(/pf/resources/dist/fonts/google-icon.svg?d=153)}.modal .social__button-text{margin:0 auto;color:#000;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.modal .social .button--secondary{margin-top:1rem}.modal .reauth-form .input-group{position:relative;margin-bottom:1rem}.modal .reauth-form .input-label{position:absolute;top:0.9375rem;left:0.9375rem;z-index:1;color:#000;font-size:0.75rem;text-transform:none;cursor:text;transition:0.2s}.modal .reauth-form .input-text{max-height:2.8125rem;font-size:0.75rem;background-color:#fff;border:0.09375rem solid #d3d3d3}.modal .reauth-form .input-text:focus{background-color:#fff;border:0.09375rem solid #38a3d7;outline:none}.modal .reauth-form .input-text--error,.modal .reauth-form .input-text--error:focus{border-color:#ed213e}.modal .reauth-form .input-text--error ~ .input-label{color:#ed213e}.modal .reauth-form .input-text:focus ~ .input-label,.modal .reauth-form .input-text:valid ~ .input-label{top:-0.375rem;left:0.8125rem;padding:0 0.1875rem;font-size:0.625rem;background-color:#fff}.modal .reauth-form .input-show{position:absolute;top:0.9375rem;right:1.875rem;color:#000;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;cursor:pointer}.modal .reauth-form .button-group{margin:0}.modal .form-feedback{order:3;margin-top:0.5rem}.modal .button{height:2.5625rem;font-weight:700;font-size:0.875rem;border:none;cursor:pointer}.modal .button--primary{background-color:#38a3d7}.modal .button--secondary{background-color:#dce1e2}.modal .button--secondary:active{background-color:#c7cdd5}.modal .button--secondary:hover{background-color:#c7d0db;opacity:1;transition:background-color 0.2s}.moon{text-align:center}.moon__shape{position:relative;width:6.25rem;height:6.25rem;margin:0 auto;overflow:hidden;border:2px solid #fff;border-radius:50%}.moon__shape--full{background-color:#fff}.moon__shape--last-quarter::before,.moon__shape--first-quarter::before{position:absolute;top:0;display:block;width:50%;height:100%;background-color:#fff;content:''}.moon__shape--last-quarter::before{left:0}.moon__shape--first-quarter::before{right:0}.moon__heading{margin-top:0.9375rem;margin-bottom:0;color:#fff;font-weight:400;font-size:1rem;text-transform:capitalize}.moon__date{display:inline-block;margin-top:0.625rem;color:#fff;font-weight:400;font-size:0.875rem}.my-news{padding:1.5625rem}.my-news__heading{display:flex;align-items:center;color:#fff;font-weight:400;font-size:2.1875rem;line-height:1}.my-news__heading-fine-text{padding-left:0.1875rem;color:#9e9f9f;font-weight:300;font-size:0.8125rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.my-news__description{margin-top:1.5625rem;color:#c4cccb;font-size:0.875rem;line-height:1.4}.my-news__link{color:#fff;font-size:0.875rem}.my-news__link:not(:first-of-type){display:inline-block;margin-left:0.625rem}.my-news__item{position:relative;padding-bottom:0.625rem}.my-news__item:not(:first-of-type){margin-top:0.625rem;padding-top:0.625rem;border-top:1px solid #d5d5d5}.my-news__item:not(:first-of-type) .my-news__item-close-button{top:0.8125rem}.my-news__item-close-button{position:absolute;top:0.125rem;right:0;width:0.9375rem;height:0.9375rem;padding:0.125rem;background-color:#313c3d;border:none;border-radius:50%;cursor:pointer;transition:opacity 0.2s;-webkit-appearance:none;-moz-appearance:none;appearance:none}.my-news__item-close-button:hover,.my-news__item-close-button:focus{opacity:0.8}.my-news__item-close-icon{width:0.6875rem;height:0.6875rem;color:#f5f5f5}.my-news .story-card{position:static;margin-right:0;margin-left:0}.my-news .story-card__heading__link{color:#fff;font-size:0.875rem}@media (min-width: 576px){.overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:110;display:flex;align-items:center;justify-content:center;max-width:100%;height:100%;background-color:#000;border:none}}.overlay .article-media__image{margin:0 auto}@media (min-width: 576px){.overlay .article-media__image{width:100%}}@media (min-width: 1400px){.overlay .article-media__image{max-width:100%}}.overlay .article-media__image--portrait{height:100%}@media (min-width: 576px){.overlay .article-media__image--portrait{width:auto;height:100vh}}@media (min-width: 576px){.overlay .article-media__caption{position:absolute;bottom:0;left:0;width:calc(100% - 1.25rem * 2);margin:0;padding:1.25rem;color:#fff;background-color:rgba(0,0,0,0.8)}}@media (min-width: 576px){.overlay .gallery{min-width:100%;margin-top:0;padding:0;border-top:none;border-bottom:none}.overlay .gallery::before{display:none}}@media (min-width: 576px){.overlay .gallery__item{position:relative;display:flex;align-items:center;justify-content:center;height:100vh}}.overlay .article .figure{margin-top:0}.overlay__close-button{display:none}@media (min-width: 576px){.overlay__close-button{position:fixed;top:1.875rem;right:0;z-index:110;display:flex;align-items:center;justify-content:center;width:3.125rem;height:3.125rem;background-color:#38a3d7;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}}.overlay__close-button-icon{width:1.875rem;height:1.875rem;color:#fff}@media (min-width: 576px){.body--overlay-is-active{overflow:hidden}}.read-more-links{padding:1.25rem 0}.read-more-links h3.read-more{display:flex;align-items:center;justify-content:center;padding-right:1rem;font-size:1.25rem}.read-more-links h3.read-more::after{flex:1;height:1px;margin-left:1rem;background-color:#d5d5d5;content:''}.read-more-links>ul>li{font-weight:500;font-size:0.9375rem;font-family:"Stag","Georgia",serif}@media print{.read-more-links{display:none}.article__raw-html,.article__raw-html-static,.article__raw-html__top,.article__raw-html__bottom{page-break-inside:avoid}.article__raw-html iframe[src*='nzonscreen.com/embed'],.article__raw-html iframe[src*='youtube.com/embed'],.article__raw-html iframe[src*='iheart.com'],.article__raw-html-static iframe[src*='nzonscreen.com/embed'],.article__raw-html-static iframe[src*='youtube.com/embed'],.article__raw-html-static iframe[src*='iheart.com'],.article__raw-html__top iframe[src*='nzonscreen.com/embed'],.article__raw-html__top iframe[src*='youtube.com/embed'],.article__raw-html__top iframe[src*='iheart.com'],.article__raw-html__bottom iframe[src*='nzonscreen.com/embed'],.article__raw-html__bottom iframe[src*='youtube.com/embed'],.article__raw-html__bottom iframe[src*='iheart.com']{display:none}.article__raw-html .embed-container,.article__raw-html-static .embed-container,.article__raw-html__top .embed-container,.article__raw-html__bottom .embed-container{display:none}}.related-articles{margin:1.25rem auto}@media (min-width: 576px){.related-articles{margin:1.25rem 0}}.related-articles__heading{font-weight:300;text-align:center}.related-articles__items-wrapper{display:flex}@media (max-width: 575px){.related-articles__items-wrapper{flex-wrap:wrap}}.related-articles article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem);margin-top:1.25rem;margin-right:0;margin-left:0}@media (min-width: 576px){.related-articles article[class^='story-card']{width:calc(100% / 2 - 1.25rem)}}.related-articles article[class^='story-card'] .story-card__heading{font-weight:500}.related-articles article[class^='story-card'] .meta-data{display:block}.related-articles article[class^='story-card'] .meta-data__read-time{margin-top:0.3125rem}.related-articles article[class^='story-card']:nth-of-type(even){margin-left:1.25rem}@media (min-width: 576px){.related-articles article[class^='story-card']:not(:first-of-type){margin-left:1.25rem}}@media print{.related-articles{display:none}}.share-bar{display:flex;align-items:center}@media (max-width: 575px){.share-bar{margin-top:1.25rem}}.share-bar .social-link:first-of-type{margin-left:0}.share-bar .social-link--bookmark{position:relative;margin-left:auto}@media (min-width: 576px){.share-bar .social-link--bookmark{margin-left:1.5625rem}}@media (min-width: 576px){.share-bar .social-link--bookmark::before{position:absolute;top:0;left:-0.9375rem;display:block;width:0.0625rem;height:1.9375rem;background-color:#d5d5d5;content:''}}.arrow-icon{width:1.5625rem;height:1.5625rem}.slick-dots{position:static;padding:1rem 0 0}.slick-prev{transform:translate(0, -50%) rotate(180deg)}.slick-prev,.slick-next{z-index:2;display:flex !important;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;color:#fff !important;background-color:#4c585d !important;border-radius:50%;transition:opacity 0.2s}.slick-prev.slick-disabled,.slick-next.slick-disabled{cursor:auto}.slick-prev.slick-disabled,.slick-prev.slick-disabled:hover,.slick-next.slick-disabled,.slick-next.slick-disabled:hover{opacity:0.6}.slick-prev::before,.slick-next::before{display:none}.slick-prev:hover,.slick-next:hover{opacity:0.8}.social-link{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;color:#fff;background-color:#fff;border-radius:0.25rem}.social-link--facebook{color:#4267b2;fill:#4267b2}.social-link--twitter{color:#38a1f3;fill:#38a1f3}.social-link--linkedin{color:#0077b5;fill:#0077b5}.social-link--reddit{color:#f24511;fill:#f24511}.social-link--instagram{color:#8b5191;fill:#8b5191}.social-link--youtube{color:#dc4e41;fill:#dc4e41}.social-link--rss{color:#e3702d;fill:#e3702d}.social-link--mail{color:#4c585d;fill:#4c585d}.social-link__icon{width:1.4375rem;height:1.4375rem}.social-link--bookmark{background-color:#4c585d}.social-link--bookmark .social-link__icon:first-of-type{display:block}.social-link--bookmark .social-link__icon:last-of-type{display:none}.social-link--commenting{width:auto;margin-left:0.5rem;padding:0 0.625rem;font-weight:700;font-size:0.8125rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#38a3d7}.social-link--commenting .social-link__icon{width:1.25rem;height:1.25rem;margin-right:0.33rem;fill:#fff}.social-link--is-selected{background-color:#38a3d7}.social-link--is-selected .social-link__icon:first-of-type{display:none}.social-link--is-selected .social-link__icon:last-of-type{display:block}.sponsor__image{max-width:210px;max-height:35px;margin-right:10px;overflow:hidden;border-radius:0}.sponsor__info-title{display:block}.sponsor__info-link{color:#4c585d;font-weight:700;font-family:"Source Sans Pro","Helvetica",sans-serif}.sponsored{height:4.0625rem}.sponsored__wrapper{position:relative;display:flex;align-items:center;justify-content:space-between;max-width:58.75rem;height:100%;margin:0 0.625rem}@media (min-width: 992px){.sponsored__wrapper{margin:0 auto}}.sponsored__text{position:absolute;right:0;bottom:0.625rem;margin-bottom:0;color:#fff;font-size:0.6875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:0.5rem}.sponsored__logo{max-height:3.75rem}@media (max-width: 767px){.sponsored{display:none}}.story-card--has-label::before{position:absolute;top:0;left:0;z-index:1;width:100%;height:0.0625rem;background-color:#ecac0c;content:''}.story-card__label{position:absolute;top:0;right:0;z-index:1;padding:0.1875rem 0.3125rem;color:#313c3d;font-weight:600;font-size:0.75rem;text-transform:uppercase;background-color:#ecac0c;border-bottom-left-radius:0.4375rem}@media (max-width: 575px){.story-card__image-link{position:relative;display:block;width:100%;padding-top:56.25%;overflow:hidden}}.story-card__image-link:hover,.story-card__image-link:focus{opacity:1}.story-card__image-link__picture{width:100%}@media (max-width: 575px){.story-card__image-link__picture{position:absolute;top:0;right:0;bottom:0;left:0}}.story-card__kicker-wrapper{display:flex;flex-wrap:wrap}.story-card__kicker{font-weight:700;font-size:0.625rem;text-transform:uppercase}.story-card__subkicker{padding-left:0.1875rem;font-weight:400;font-size:0.625rem;text-transform:capitalize}.story-card__subkicker-separator{position:relative;top:-0.0625rem;padding-left:0.1875rem;font-size:0.5625rem}.story-card__heading-wrapper{display:flex;flex-flow:row nowrap;justify-content:flex-start}.story-card__heading{margin-top:0.625rem;font-weight:400;font-family:"Stag","Georgia",serif;line-height:1.2}.story-card__heading__link{color:#4c585d}.story-card .meta-data{margin-top:0.25rem}.story-card__deck{margin-top:0.1875rem;margin-bottom:0;font-size:0.875rem;line-height:1.3}.story-card__icon{position:absolute;top:0;left:0;z-index:2;width:1.5625rem;height:1.5625rem;background-color:#4c585d}.story-card__comment-icon-wrapper{position:relative;top:0.1em;display:inline-flex;align-items:center;justify-content:center;width:1em;height:1em;margin-right:0.375rem;padding-right:0.25rem;font-size:inherit;border-right:0.0625rem solid rgba(220,225,226,0.75)}.story-card__comment-icon{width:0.9em;height:0.9em;fill:#38a3d7}.story-card h1.story-card__heading .story-card__comment-icon-wrapper{top:-0.25rem;width:0.75em;height:0.75em;margin-right:0.625rem;padding-right:0.4375rem}.story-card h1.story-card__heading .story-card__comment-icon{width:0.55em;height:0.55em}.story-card h2.story-card__heading .story-card__comment-icon-wrapper{top:0;width:0.8em;height:0.8em;margin-right:0.625rem;padding-right:0.5rem}.story-card h2.story-card__heading .story-card__comment-icon{width:0.7em;height:0.7em}.story-card__bookmark{margin-left:0.9375rem;padding-right:0;padding-left:0;color:#4c585d;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.story-card__bookmark--is-selected .story-card__bookmark-icon:first-of-type{display:none}.story-card__bookmark--is-selected .story-card__bookmark-icon:last-of-type{display:block}.story-card__bookmark-icon{width:0.625rem;height:1.1875rem}.story-card__bookmark-icon:first-of-type{display:block}.story-card__bookmark-icon:last-of-type{display:none}@media (max-width: 767px){.story-card,.story-card--secondary{margin-right:0.625rem;margin-left:0.625rem}}.story-card,.story-card--secondary,.story-card--featured,.story-card--featured-medium,.story-card--featured-large,.story-card--featured-extra-large{position:relative}.story-card--landscape-text-below .story-card__kicker-wrapper,.story-card--portrait-text-below .story-card__kicker-wrapper,.story-card--headline-image .story-card__kicker-wrapper,.story-card--headline .story-card__kicker-wrapper{padding-top:0.625rem}.story-card--featured .story-card__image-link::before,.story-card--featured-medium .story-card__image-link::before,.story-card--featured-large .story-card__image-link::before,.story-card--featured-extra-large .story-card__image-link::before{position:absolute;top:0;left:0;z-index:1;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}.story-card--featured .story-card__info,.story-card--featured-medium .story-card__info,.story-card--featured-large .story-card__info,.story-card--featured-extra-large .story-card__info{position:absolute;right:0;bottom:0;left:0;z-index:2;margin-bottom:1.25rem;padding-right:1.25rem;padding-left:0.625rem}.story-card--featured .story-card__kicker,.story-card--featured-medium .story-card__kicker,.story-card--featured-large .story-card__kicker,.story-card--featured-extra-large .story-card__kicker{color:#fff}.story-card--featured .story-card__subkicker,.story-card--featured-medium .story-card__subkicker,.story-card--featured-large .story-card__subkicker,.story-card--featured-extra-large .story-card__subkicker{color:#fff}.story-card--featured .story-card__subkicker-separator,.story-card--featured-medium .story-card__subkicker-separator,.story-card--featured-large .story-card__subkicker-separator,.story-card--featured-extra-large .story-card__subkicker-separator{color:#fff}.story-card--featured .story-card__heading,.story-card--featured-medium .story-card__heading,.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{color:#fff;font-size:1.125rem}.story-card--featured .story-card__label-updated,.story-card--featured-medium .story-card__label-updated,.story-card--featured-large .story-card__label-updated,.story-card--featured-extra-large .story-card__label-updated{color:#fff}.story-card--featured .story-card__label-updated::before,.story-card--featured-medium .story-card__label-updated::before,.story-card--featured-large .story-card__label-updated::before,.story-card--featured-extra-large .story-card__label-updated::before{background-color:#fff}.story-card--featured .story-card__heading__link,.story-card--featured-medium .story-card__heading__link,.story-card--featured-large .story-card__heading__link,.story-card--featured-extra-large .story-card__heading__link{color:#fff}.story-card--featured .meta-data,.story-card--featured-medium .meta-data,.story-card--featured-large .meta-data,.story-card--featured-extra-large .meta-data{margin-top:0.625rem;color:#d5d5d5}.story-card--featured .story-card__icon,.story-card--featured-medium .story-card__icon,.story-card--featured-large .story-card__icon,.story-card--featured-extra-large .story-card__icon{top:0.625rem;left:0.625rem}.story-card--featured-medium,.story-card--featured-large,.story-card--featured-extra-large{margin-right:0;margin-left:0}.story-card--featured-medium .story-card__heading,.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{line-height:1.07}.story-card--featured .story-card__heading,.story-card--featured-medium .story-card__heading{font-weight:500}.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{font-size:2.1875rem}@media (min-width: 576px){.story-card--featured-large .story-card__heading,.story-card--featured-extra-large .story-card__heading{font-size:2.8125rem}}.story-card--secondary.story-card--has-label::before{width:calc((100% - 1.25rem + 0.0625rem) / 2)}@media (min-width: 576px){.story-card--secondary.story-card--has-label::before{width:8.75rem}}.story-card--secondary .story-card__label{right:auto;left:calc((100% - 1.25rem + 0.0625rem) / 2);transform:translateX(-100%)}@media (min-width: 576px){.story-card--secondary .story-card__label{left:8.75rem}}.story-card--secondary .story-card__content{display:flex;flex-wrap:wrap}.story-card--secondary .story-card__image-link{flex-basis:calc((100% - 1.25rem) / 2)}@media (max-width: 575px){.story-card--secondary .story-card__image-link{padding-top:60.94%}}@media (min-width: 576px){.story-card--secondary .story-card__image-link{display:inline;flex-basis:8.75rem}}.story-card--secondary .story-card__info{flex-basis:calc((100% - 1.25rem) / 2);margin-left:1.25rem}@media (min-width: 576px){.story-card--secondary .story-card__info{flex-basis:calc(100% - 8.75rem - 1.25rem)}}.story-card--secondary .story-card__kicker{display:inline-block;margin-top:0}.story-card--secondary .meta-data,.story-card--secondary .meta-data__time-stamp{display:block}.story-card--secondary .meta-data__read-time{margin-top:0.3125rem}.story-card--featured .story-card__content{position:relative}.story-card--featured .meta-data__time-stamp{display:block}.story-card--featured .meta-data__read-time{margin-top:0.3125rem}@media (max-width: 575px){.story-card--featured-medium .story-card__image-link{padding-top:90%}}.story-card--featured-medium .story-card__heading{font-size:1.875rem}@media (max-width: 575px){.story-card--featured-large .story-card__image-link{padding-top:110.58%}}@media (max-width: 575px){.story-card--featured-extra-large .story-card__image-link{padding-top:127.58%}}.story-card--headline .story-card__icon,.story-card--headline-deck .story-card__icon{position:static}.story-card--headline .story-card__heading-wrapper>.story-card__icon,.story-card--headline-deck .story-card__heading-wrapper>.story-card__icon{margin:0.75rem 0.625rem 0 0}.story-card--summary .story-card__content{position:relative}.story-card--summary .story-card__icon{top:1.5rem;left:0}.story-card--summary .story-card__icon+.story-card__info .story-card__heading{margin-left:2.1875rem}.story-card--summary .story-card__heading{font-weight:500;font-size:1.125rem}.story-card--summary .meta-data{flex-direction:flex-start;margin-top:0.9375rem}.story-card--summary .meta-data__read-time{margin-left:auto}.story-card--headline-image-small{padding:0.625rem 0}.story-card--headline-image-small .story-card__icon{position:static}.story-card--headline-image-small .story-card__heading-wrapper>.story-card__icon{margin:0.9375rem 0.625rem 0 0}.story-card--headline-image-small .story-card__kicker-wrapper{position:absolute;top:0.625rem;left:0}.story-card--headline-image-small .story-card__heading{margin:0.9375rem 0 0}.story-card--headline-image-small .story-card__info{width:100%}.story-card--headline-image-small .story-card__content{display:flex;flex-flow:row nowrap}.story-card--headline-image-small .story-card__image-link{width:3.75rem;min-width:3.75rem;height:2.5rem;margin:0.9375rem 0.625rem 0 0;padding-top:0}.user-actions{display:flex;flex-wrap:wrap;box-sizing:content-box;font-weight:400;font-size:1.0625rem;font-family:"Stag","Georgia",serif}.user-actions__item{flex-basis:calc(100% / 2 - 1.25rem);padding:0.5rem;color:#c4cccb;line-height:1.45;text-align:center;border-top:2px solid #23292a;border-right:2px solid #23292a;border-bottom:none;border-left:2px solid #23292a}.user-actions__item:nth-of-type(2){border-right:none}.user-actions__item:hover{color:#38a3d7}.user-actions__premium-subscription-link{flex-basis:100%;margin-bottom:0.25rem;padding:0.625rem;color:#313c3d;font-weight:700;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center;background-color:#ecac0c;border:1px solid #ecac0c;transition:all 0.2s}@media (min-width: 576px){.user-actions__premium-subscription-link{margin:0.25rem}}.user-actions__premium-subscription-link:hover,.user-actions__premium-subscription-link:focus{color:#121617;background-color:#ecac0c;border-color:#000;opacity:1}.user-actions .accordion{border:0}.video-paywall{position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%;text-align:center;background-color:rgba(255,255,255,0.85)}.video-paywall__heading{color:#000;font-weight:400;font-size:1.5625rem}.video-paywall__call-to-action{display:inline-block;margin-top:1.25rem;padding:0.5rem 1.875rem;color:#fff;font-weight:700;font-size:1.125rem;background-color:#ecac0c;border-radius:0.25rem}@media (min-width: 576px){.video-paywall__call-to-action{padding:0.625rem 2.5rem}}.video-paywall__fine-text{margin-top:1.25rem;color:#313c3d;font-weight:700;font-size:1rem}.video-paywall__link{color:#313c3d;text-decoration:underline;transition:color 0.2s}.video-paywall__link:hover,.video-paywall__link:focus{color:#ecac0c}.video-outer{display:block;position:relative;max-width:100%}.video-wrapper{padding-top:56.25%}.video-wrapper.premium-video{padding-top:initial}.video-wrapper.premium-video .vjs-big-play-button{display:none}.video-js{width:100%;height:100%;position:absolute;top:0px;bottom:0px;right:0px;left:0px}.vcOverlay{position:absolute;top:0;bottom:0;left:0;width:100%;color:#fff;background:rgba(0,0,0,0.4)}.vcOverlay.hidden{display:none}.vcDarken{background:#000}.vcDarken,.vcImg{z-index:1;position:absolute;top:0;left:0;width:100%;height:100%}.vcImg{display:block;opacity:0.8}.vcMsg{top:15%;width:100%;color:#FFF;text-shadow:0 0 5px #000;font-size:18px}.vcMsg,.vcTicker{z-index:2;position:absolute;text-align:center}.vcTicker{top:28%;left:50%;width:100px;height:100px;margin-left:-50px}.radial-progress{width:100%;height:100%;border-radius:50%;background-color:rgba(255,255,255,0.2)}.radial-progress .circle .fill,.radial-progress .circle .mask,.radial-progress .circle .shadow{position:absolute;width:100%;height:100%;border-radius:50%}.radial-progress .circle .fill,.radial-progress .circle .mask{border-radius:50%;-webkit-backface-visibility:hidden;transition:transform 1s linear}.radial-progress .circle .mask{clip:rect(0, 100px, 100px, 50px)}.radial-progress .circle .mask .fill{clip:rect(0, 50px, 100px, 0);background-color:#fff}.radial-progress .inset{position:absolute;width:90px;height:90px;margin:5px;opacity:0.7;border-radius:50%;background-color:#000;box-shadow:6px 6px 10px rgba(0,0,0,0.2)}.radial-progress .inset .percentage{width:100%;color:#fff;border-radius:50%;background:rgba(0,0,0,0.6);text-align:center;text-shadow:0 0 5px #000;font-size:36px;line-height:90px}.radial-progress[data-progress="0"] .circle .fill,.radial-progress[data-progress="0"] .circle .mask.full{transform:rotate(180deg)}.radial-progress[data-progress="0"] .circle .fill.fix{transform:rotate(1turn)}.radial-progress[data-progress="0"] .inset .percentage:before{content:"0"}.radial-progress[data-progress="1"] .circle .fill,.radial-progress[data-progress="1"] .circle .mask.full{transform:rotate(144deg)}.radial-progress[data-progress="1"] .circle .fill.fix{transform:rotate(288deg)}.radial-progress[data-progress="1"] .inset .percentage:before{content:"1"}.radial-progress[data-progress="2"] .circle .fill,.radial-progress[data-progress="2"] .circle .mask.full{transform:rotate(108deg)}.radial-progress[data-progress="2"] .circle .fill.fix{transform:rotate(216deg)}.radial-progress[data-progress="2"] .inset .percentage:before{content:"2"}.radial-progress[data-progress="3"] .circle .fill,.radial-progress[data-progress="3"] .circle .mask.full{transform:rotate(72deg)}.radial-progress[data-progress="3"] .circle .fill.fix{transform:rotate(144deg)}.radial-progress[data-progress="3"] .inset .percentage:before{content:"3"}.radial-progress[data-progress="4"] .circle .fill,.radial-progress[data-progress="4"] .circle .mask.full{transform:rotate(36deg)}.radial-progress[data-progress="4"] .circle .fill.fix{transform:rotate(72deg)}.radial-progress[data-progress="4"] .inset .percentage:before{content:"4"}.radial-progress[data-progress="5"] .circle .fill,.radial-progress[data-progress="5"] .circle .fill.fix,.radial-progress[data-progress="5"] .circle .mask.full{transform:rotate(0deg)}.radial-progress[data-progress="5"] .inset .percentage:before{content:"5"}.vcControls{z-index:2;position:absolute;bottom:5%;width:100%;text-align:center}.vcControls div,.vcEnableAp{display:inline-block;margin:0 5px;padding:10px;overflow:hidden;border-radius:3px;background:#444;background:rgba(0,0,0,0.5);font-size:16px;line-height:18px;cursor:pointer}.vcControls div span{float:left}.vcControls .vcNever{display:block;float:none;width:96px;margin:10px auto}.vcControls .vcPlay:before,.vcControls .vcStop:before,.vcEnableAp:before{content:"";width:18px;height:18px;float:left;margin:0 7px 0 0;background:url(/pf/resources/dist/images/auto-play-sprite.png?d=153) no-repeat 0 0}.vcControls .vcPlay:before,.vcEnableAp:before{width:17px}.vcControls .vcStop:before{width:14px;background-position:-17px 0}.vcControls .vcNever{margin-top:10px;color:#999;font-size:12px;line-height:10px}.vcControls div:hover,.vcEnableAp:hover{color:#fff;background:rgba(50,50,50,0.6)}.vcEnableAp{right:10px;bottom:10%}.skipBtn,.vcEnableAp{position:absolute;color:#fff}.skipBtn{z-index:9999;top:360px;left:240px;width:120px;height:28px;border:1px solid #fff;border-radius:5px;background:transparent;font-size:15px;cursor:pointer}.skipBtn:after{content:"\e808";display:block;float:right;font:6px/18px herald-icons;-webkit-transform:rotate(-90deg)}.skipBtn:disabled{width:130px;opacity:0.5;cursor:auto}@media print{.video-outer{display:none}}.recommended-articles{max-width:640px;margin:1.25rem auto}@media (min-width: 576px){.recommended-articles{max-width:960px}}.recommended-articles__heading{color:#38a3d7;font-weight:300;text-align:center}.recommended-articles__items-wrapper{display:flex;padding:0 0.625rem 1.375rem 0.625rem}@media (max-width: 767px){.recommended-articles__items-wrapper{display:block}}.recommended-articles article[class^='story-card'],.recommended-articles div[class^='pb-ad-container']{margin-top:1.25rem;margin-right:0;margin-left:0}@media (min-width: 768px){.recommended-articles article[class^='story-card'],.recommended-articles div[class^='pb-ad-container']{width:33.33%}.recommended-articles article[class^='story-card']:nth-of-type(even),.recommended-articles div[class^='pb-ad-container']:nth-of-type(even){margin-right:1.25rem;margin-left:1.25rem}}@media print{.recommended-articles{display:none}}.section-oneroof-search-bar{width:100%;margin:2.5rem 0.625rem 0}@media (min-width: 768px){.section-oneroof-search-bar{margin:2.5rem 1.25rem 0}}@media (min-width: 992px){.section-oneroof-search-bar{margin:2.5rem 0 0}}.section-oneroof-search-bar__wrapper{width:calc(100% - 0.625rem * 2)}@media (min-width: 768px){.section-oneroof-search-bar__wrapper{width:calc(100% - 1.25rem * 2)}}@media (min-width: 992px){.section-oneroof-search-bar__wrapper{max-width:58.75rem;margin-right:auto;margin-left:auto}}.ta-module{max-width:58.75rem;margin:1.375rem auto 1rem auto;box-shadow:0 6px 18px 0 rgba(0,0,0,0.08),0 0 2px 0 rgba(0,0,0,0.06)}.ta-module *,.ta-module *::before,.ta-module *::after{box-sizing:border-box}.ta-module-header{display:flex;flex-direction:column;align-items:center;padding:1.25rem}@media (min-width: 768px){.ta-module-header{flex-direction:row;margin-bottom:0;padding:1.375rem 2rem}}.ta-module-header__icon{width:100%;max-width:13.4375rem;height:3.125rem}.ta-module-header__secondary-title{display:none;margin-left:auto;color:#4c839d;font-weight:600;font-size:0.9375rem;font-family:"Source Sans Pro","Helvetica",sans-serif;letter-spacing:1px;text-transform:uppercase}@media (min-width: 768px){.ta-module-header__secondary-title{display:block}}.ta-module__step{display:none;background-color:#004165;background-repeat:no-repeat;background-size:cover}.ta-module__step--bg-1{background-image:url(/pf/resources/dist/images/background1.jpg?d=153);background-position:top}.ta-module__step--bg-2{background-image:url(/pf/resources/dist/images/background2.jpg?d=153);background-position:center}.ta-module__step--bg-3{background-image:url(/pf/resources/dist/images/background3.jpg?d=153);background-position:center}.ta-module__step--bg-4{background-image:url(/pf/resources/dist/images/background4.jpg?d=153);background-position:center}.ta-module__step--active{display:block}@media (min-width: 768px){.ta-module__step--active{display:flex}}@media screen and (max-width: 449px){.ta-module__step{background-image:url(/pf/resources/dist/images/background1.jpg?d=153);background-position:center}}@media (min-width: 576px){.ta-module__step{padding:1.25rem}}.ta-module-question{display:flex;flex:1;flex-direction:column;justify-content:center;min-width:18.75rem;padding:1.25rem;padding-bottom:0}@media (min-width: 768px){.ta-module-question{padding-bottom:1.375rem}}.ta-module-question__currentstep{margin:0;margin-bottom:0.25rem;color:#fbc834;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase}.ta-module-question__currentstep span{color:#fff;opacity:0.7}@media (min-width: 768px){.ta-module-question__currentstep{font-size:1.25rem}}.ta-module-question__title{margin:0;color:#fff;font-weight:700;font-size:1.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.9375rem}@media (min-width: 768px){.ta-module-question__title{font-size:2.8125rem;line-height:2.875rem}}.ta-module-progress{display:none;align-items:center;padding-top:1.375rem;list-style:none}@media screen and (min-width: 450px){.ta-module-progress{display:flex}}.ta-module-progress--mobile{display:none}@media screen and (max-width: 449px){.ta-module-progress--mobile{display:flex}}.ta-module-progress__track{display:block;flex:1;height:0.125rem;background-color:#fbc834}.ta-module-progress__circle{position:relative;display:flex;width:0.875rem;height:0.875rem;padding:0.125rem;background:none;border:0.125rem solid #fbc834;border-radius:50%;outline:none;transition:box-shadow 0.15s ease-in-out}.ta-module-progress__circle:focus,.ta-module-progress__circle:hover{box-shadow:0 0 0 0.25rem rgba(251,200,52,0.5);cursor:pointer}.ta-module-progress__circle:focus::before,.ta-module-progress__circle:hover::before{background-color:#fbc834}.ta-module-progress__circle--active::before{display:block;width:100%;height:100%;background-color:#fff;border-radius:50%;transition:background-color 0.15s ease-in-out;content:''}.ta-module-progress__circle--complete{width:0.75rem;height:0.75rem;background-color:#fbc834;border:none}.ta-module-btn__arrow{width:2rem;margin-left:auto;fill:#222}.ta-module-btn{display:flex;align-items:center;width:100%;height:3.125rem;padding:1.125rem;color:#222;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;background-color:#fbc834;border:none;border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem;cursor:pointer;transition:background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);-webkit-appearance:none;-moz-appearance:none;appearance:none}.ta-module-btn:hover{background-color:#f7b905}.ta-module-btn--white{background-color:#fff;border:1px solid #313c3d}.ta-module-btn--white:hover{background-color:#e6e6e6}.ta-module-btn--tile{justify-content:center;height:100%}.ta-module-btn--tile svg{margin-left:0.625rem}.ta-module-btn:disabled{color:#ababab;background-color:#d9d9d9;cursor:default}.ta-module-btn:disabled .ta-module-btn__arrow{fill:#ababab}.ta-module-answer-1{flex:1 66.6%;padding:1.375rem 0.75rem}.ta-module-carousel{display:flex;align-content:flex-start}@media (min-width: 768px){.ta-module-carousel{width:100%}}@media screen and (min-width: 450px){.ta-module-carousel{flex-wrap:wrap}}@media screen and (max-width: 449px){.ta-module-carousel{margin-right:-0.75rem;margin-left:-0.75rem;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-color:transparent transparent;scrollbar-width:0;-ms-overflow-style:none}}.ta-module-carousel::-webkit-scrollbar{width:0}.ta-module-carousel::-webkit-scrollbar-track{background:transparent}.ta-module-carousel::-webkit-scrollbar-thumb{background:transparent;border:none}.ta-module-carousel__tile{position:relative;display:flex;flex-shrink:0;align-items:center;width:calc(33.33% - 10px);margin:5px;overflow:hidden;background-color:#fff;border-radius:0.25rem;transform:translate3d(0, 0, 0)}.ta-module-carousel__tile:hover .ta-module-carousel__image{transform:scale(1.1);transform-origin:center center}@media screen and (max-width: 449px){.ta-module-carousel__tile{width:75%;scroll-snap-align:center}.ta-module-carousel__tile:last-of-type{display:none}}.ta-module-carousel__label{position:absolute;top:0;left:0;z-index:2;display:flex;flex-direction:column;justify-content:flex-end;width:100%;height:100%;margin:0;padding:1rem;color:#fff;font-weight:700;font-size:1.0625rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center;text-transform:uppercase}.ta-module-carousel__label:hover{cursor:pointer}@media screen and (max-width: 449px){.ta-module-carousel__label{padding:1.875rem;font-size:1.375rem}}.ta-module-carousel__image{width:100%;transition:transform 0.25s cubic-bezier(0.4, 0, 0.2, 1)}.ta-module-carousel__radio{display:none}.ta-module-carousel__radio:checked ~ .ta-module-carousel__overlay .ta-module-carousel__check{opacity:1}.ta-module-carousel__radio:checked ~ .ta-module-carousel__image{transform:scale(1.1);opacity:0.6;-webkit-filter:blur(3px);filter:blur(3px)}.ta-module-carousel__overlay{position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%}.ta-module-carousel__overlay--tile-1{background:linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%)}.ta-module-carousel__overlay--tile-2{background:linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%)}.ta-module-carousel__overlay--tile-3{background:linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%)}.ta-module-carousel__overlay--tile-4{background:linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%)}.ta-module-carousel__overlay--tile-5{background:linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%)}.ta-module-carousel__check{display:flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;margin-bottom:1.5rem;background-color:#fbc834;border-radius:50%;opacity:0;transition:opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1)}.ta-module-carousel__check-icon{width:1.375rem}.ta-module-answer-1__footer .ta-module-btn{border-radius:0.25rem}@media screen and (min-width: 450px){.ta-module-answer-1__footer{display:none}}.ta-module-result__footer{max-width:58.75rem;margin:auto;padding:1rem;padding-right:0.625rem;padding-left:0.625rem}@media (min-width: 768px){.ta-module-result__footer{display:flex;padding-right:1rem;padding-left:1rem}}.ta-module-result__footer .ta-module-btn{justify-content:center;width:100%;padding-right:1.5625rem;padding-left:1.5625rem;border-radius:0.25rem}.ta-module-result__footer .ta-module-btn:not(:last-child){margin-bottom:0.5rem}@media (min-width: 768px){.ta-module-result__footer .ta-module-btn{width:auto}.ta-module-result__footer .ta-module-btn:not(:last-child){margin-right:1rem;margin-bottom:0}}.ta-module-answer-2{align-items:center;justify-content:center;width:100%;padding:1.375rem 0.75rem}@media (min-width: 768px){.ta-module-answer-2{display:flex;max-width:35rem;min-height:20.625rem}}.ta-module-select{position:relative;width:100%;box-shadow:0 6px 18px 0 rgba(0,0,0,0.08),0 0 2px 0 rgba(0,0,0,0.06)}@media (min-width: 768px){.ta-module-select{max-width:26.875rem}}.ta-module-select select{width:100%;padding:0.9375rem;padding-right:2.5rem;color:#222;font-weight:300;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;background-color:#fff;border:0;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.ta-module-select__arrow{position:absolute;top:0.75rem;right:0.625rem;width:1.5rem;height:1.5rem;pointer-events:none}.ta-module-answer-3{align-items:center;justify-content:center;width:100%;padding:1.375rem 0.75rem}@media (min-width: 768px){.ta-module-answer-3{display:flex;max-width:35rem;min-height:20.625rem}}.ta-module-checklist{width:100%}@media (min-width: 768px){.ta-module-checklist{max-width:26.875rem}}.ta-module-checklist__body{background-color:#fff;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.ta-module-checklist__item{display:flex;align-items:center;margin-right:1rem;margin-left:1rem;border-bottom:1px solid #e0e0e0}.ta-module-checklist__item:last-child{border-bottom:0}.ta-module-checklist__label{display:block;flex:1;padding-top:1rem;padding-bottom:1rem;color:#222;font-weight:300;font-family:"Source Sans Pro","Helvetica",sans-serif;cursor:pointer}.ta-module-checklist__check{width:1.5rem;height:1.5rem;opacity:0;transition:opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);fill:#054165}.ta-module-checklist__radio{display:none}.ta-module-checklist__radio:checked+.ta-module-checklist__check{opacity:1}.ta-module-result-options{flex:1;padding:1.5625rem;padding-bottom:2.8125rem}@media (max-width: 767px){.ta-module-result-options{display:flex;flex-wrap:wrap}}.ta-module-result-options .ta-module-question__title{display:block;width:100%;padding-bottom:1.5625rem}@media (min-width: 768px){.ta-module-result-options .ta-module-question__title{display:none}}.ta-module-result-options .ta-module-progress{display:flex;padding-top:0}@media (max-width: 767px){.ta-module-result-options .ta-module-progress{flex-direction:column;height:7.5rem}}@media (min-width: 768px){.ta-module-result-options .ta-module-progress{flex:1}}@media (max-width: 767px){.ta-module-result-options .ta-module-progress__track{width:0.125rem;height:auto}}.ta-module-result-options .ta-module-progress__circle{align-items:center}.ta-module-result-options .ta-module-progress__circle--left{justify-content:flex-start}.ta-module-result-options .ta-module-progress__circle--right{justify-content:flex-end}@media (max-width: 767px){.ta-module-result-options .ta-module-progress__circle--right{justify-content:flex-start}}.ta-module-result-options .ta-module-progress__circle--center{justify-content:center}@media (max-width: 767px){.ta-module-result-options .ta-module-progress__circle--center{justify-content:flex-start}}.ta-module-result-options .ta-module-progress__text{position:absolute;display:block;max-width:18.125rem;padding-left:1.25rem;overflow:hidden;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-transform:uppercase;text-overflow:ellipsis}@media (min-width: 768px){.ta-module-result-options .ta-module-progress__text{top:1.25rem;padding-left:0}}.logo-bar{padding:1rem 5rem 0.875rem;text-align:center;background-color:#f5f5f5}.logo-bar h3{display:inline;padding:0.625rem 0.9375rem;opacity:0.5}.logo-bar svg{display:inline;height:0.9375rem;padding:0.625rem 0;opacity:0.35;-webkit-filter:grayscale(100%);filter:grayscale(100%)}.logo-bar svg.nz-herald{width:10rem;height:1.25rem;padding:0.4375rem 0}.logo-bar svg.be-well{width:5.9375rem;height:1.25rem;padding:0.4375rem 0}.logo-bar svg.canvas{width:7.5rem;height:0.875rem}@media (max-width: 991px){.logo-bar{padding:1rem 0.3125rem 0.875rem;text-align:center}.logo-bar h3{display:block}}.loading-circle{display:flex;justify-content:space-around;height:2.5rem}.article-bigread__header{position:relative;width:100%;margin:0 auto;padding-top:calc(100vh - 4.0625rem)}@media (min-width: 576px){.article-bigread__header{padding-top:56.25%}}.article-bigread__header::after{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}.article-bigread__header.article-bigread--has-label::before{position:absolute;top:0;left:0;z-index:1;width:100%;height:0.0625rem;background-color:#ecac0c;content:''}.article-bigread__header .article-bigread__label{position:absolute;top:0;right:0;z-index:1;padding:0.1875rem 0.3125rem;color:#313c3d;font-weight:600;font-size:0.75rem;text-transform:uppercase;background-color:#ecac0c;border-bottom-left-radius:0.4375rem}.article-bigread__header .article-bigread__info{position:absolute;right:0;bottom:0;left:0;z-index:2;max-width:58.75rem;margin:0 auto 1.25rem auto;padding:0 0.625rem}@media (max-width: 991px){.article-bigread__header .article-bigread__info{max-width:39.375rem}}.article-bigread__header .article-bigread__heading{margin-top:0.375rem;font-weight:400;font-size:2.1875rem;font-family:"Stag","Georgia",serif;line-height:1.07}@media (min-width: 576px){.article-bigread__header .article-bigread__heading{font-size:2.8125rem}}.article-bigread__header .article-bigread__heading__link{color:#fff}.article-bigread__header .article-bigread__kicker{margin-top:0.625rem;color:#fff;font-weight:700;font-size:0.625rem;text-transform:uppercase}@media (max-width: 575px){.article-bigread__header .article-media__image{height:calc(100vh - 4.0625rem)}}.article-bigread__header+.article__action-bar{border-bottom:1px solid #000}.article-bigread__header .figure{position:absolute;top:0;width:100%}.article-bigread .article__action-bar{margin-right:0.625rem;margin-left:0.625rem;padding:0 0 0.625rem}@media (min-width: 576px){.article-bigread .article__action-bar{padding:0 0 1.25rem}}.article-bigread__wrapper{margin:0 0.625rem}.article-bigread .article__body{max-width:39.375rem;margin:0 auto;border-top:none}.article-bigread .article__body .article__action-bar{margin-right:0;margin-left:0;padding:0.625rem 0}.article-bigread .FyTUzncPOWXr .ellipsis::after{content:'...'}.article-bigread .meta-data{margin-top:0.625rem;color:#d5d5d5}.article-bigread .kTfKrEnTiuGMNFGnP{display:none;color:#fff;opacity:0}@media print{.article-bigread .article__body{max-width:none}.article-bigread .article-bigread__header::after{background-image:none}.article-bigread .article-bigread__header .article-bigread__info{position:static;max-width:none;margin:0}.article-bigread .article-bigread__heading__link{color:#1c2122}}.article-brandinsight__header-wrapper{width:100%}.article-brandinsight__header{position:relative;width:100%;margin:0 auto}.article-brandinsight__header .figure{margin-top:0}.article-brandinsight__header .article-media__caption{margin:0.3125rem 0}.article-brandinsight__header--hero-video .article-brandinsight__info{position:relative}.article-brandinsight__header--hero-image .article-brandinsight__info{position:absolute;right:0;bottom:1.6875rem;left:0;z-index:2;max-width:58.75rem;margin:0 auto 1.25rem auto;padding:0 0.625rem}@media (max-width: 991px){.article-brandinsight__header--hero-image .article-brandinsight__info{max-width:39.375rem}}.article-brandinsight__header--hero-image .article-brandinsight__heading__link{color:#fff}.article-brandinsight__header--hero-image::after{position:absolute;top:0;left:0;display:block;width:100%;height:calc(100% - 1.6875rem);background-image:linear-gradient(180deg, transparent 35%, #000);content:''}.article-brandinsight__heading{margin-top:0.375rem;font-weight:400;font-size:2.1875rem;font-family:"Stag","Georgia",serif;line-height:1.07}@media (min-width: 576px){.article-brandinsight__heading{font-size:2.8125rem}}.article-brandinsight__kicker{margin-top:0.625rem;color:#fff;font-weight:700;font-size:0.625rem;text-transform:uppercase}@media (max-width: 575px){.article-brandinsight .article-media__image{height:calc(100vh - 4.0625rem)}}.article-brandinsight .meta-data{margin-top:0.625rem;color:#d5d5d5}@media print{.article-brandinsight__header--hero-video .article-brandinsight__heading__link{color:#1c2122}.article-brandinsight__header--hero-image .article-brandinsight__info{position:static;max-width:none;margin:0 0 1.25rem 0}.article-brandinsight__header--hero-image .article-brandinsight__heading__link{color:#1c2122}.article-brandinsight__header--hero-image::after{background-image:none}}.article-shorthand{background-color:transparent}.article-shorthand__header{position:relative}.article-shorthand__header.article-shorthand__header-premium{position:relative;border-top:0.0625rem solid #ecac0c}.article-shorthand__header.article-shorthand__header-premium::before{position:absolute;top:0;right:0;z-index:1;width:auto;height:auto;padding:0.1875rem 0.3125rem;color:#333;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1;background-color:#ecac0c;border-bottom-left-radius:0.4375rem;content:'PREMIUM'}.article-shorthand__heading{position:absolute;top:50%;left:50%;margin:0;color:#fff;font-weight:400;font-size:2.1875rem;-webkit-font-kerning:normal;font-kerning:normal;text-align:center;transform:translate(-50%, -50%)}@media (min-width: 576px){.article-shorthand__heading{max-width:58.75rem;font-size:3.1875rem}}.article-shorthand__figure{width:100%;height:calc(100vh - $header-height);margin:0}@media (min-width: 576px){.article-shorthand__figure{height:auto}}.article-shorthand__figure img{width:100%}.article-shorthand__shorthandcontent{position:relative}.article-shorthand__content{position:relative}.article-shorthand .article-offer p.article-offer__price{display:flex;align-items:center;justify-content:center;font-weight:400;font-size:2.5rem;font-family:"Stag","Georgia",serif}.article-shorthand .article-offer p.article-offer__action-bar-item{width:auto;color:#000;font-weight:700;font-size:1rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1.25}.article-shorthand .article-offer a.article-offer__call-to-action{padding:0.5rem 3.75rem;color:#fff;font-weight:400;font-size:1.125rem;background-color:#ecac0c;border-bottom:none;border-radius:0.25rem}@media (min-width: 576px){.article-shorthand .article-offer a.article-offer__call-to-action{padding:0.5rem 7rem}}.article-shorthand .article-offer a.article-offer__call-to-action:hover{color:#fff;border-bottom:none}.article-shorthand .article-offer a.article-offer__call-to-action:visited{color:#fff}.article-shorthand .article-offer a.article-offer__call-to-action:visited:hover,.article-shorthand .article-offer a.article-offer__call-to-action:visited:focus{color:#fff}.article-shorthand .article-offer a.article-offer__action-bar-item-link{padding-left:0.1875rem;color:#000;text-decoration:underline;transition:color 0.2s}@media (min-width: 576px){.article-shorthand .article-offer a.article-offer__action-bar-item-link{display:table;padding-left:0}}.article-shorthand .article-offer a.article-offer__action-bar-item-link:hover,.article-shorthand .article-offer a.article-offer__action-bar-item-link:focus{color:#ecac0c}.article-shorthand .article-offer a.article-offer__action-bar-item-link:visited{color:#000}.article-shorthand .article-offer a.article-offer__action-bar-item-link:visited:hover,.article-shorthand .article-offer a.article-offer__action-bar-item-link:visited:focus{color:#ecac0c}.article-shorthand .article-offer__list-item{font-size:1rem}.article-shorthand .article-offer a{border-bottom:0}.article-shorthand .article-offer a:visited{color:inherit}.article-shorthand .article-offer p{margin:0 0 0.625rem}@media (min-width: 576px){.article-shorthand .article-offer--signed-in p.article-offer__action-bar-item{text-align:center}}@media (min-width: 576px){.article-shorthand .article-offer--signed-in a.article-offer__action-bar-item-link{display:inline-block;padding-left:0.1875rem}}.article-shorthand .FyTUzncPOWXr .ellipsis::after{content:'...'}.article-shorthand .kTfKrEnTiuGMNFGnP{display:none;color:#fff;opacity:0}.article-shorthand .Theme-Caption .article-offer a,.article-shorthand .Theme-Layer-BodyText .article-offer a:not(.Theme-Layer-BodyText-Button),.article-shorthand .Theme-Layer-TextBlock-Inner .article-offer a{border-bottom:0}.article-shorthand .Theme-Footer .Theme-FooterTopLink,.article-shorthand .Theme-Footer .Theme-FooterLogo--container{color:#38a3d7}.article-shorthand .PositionSticky.HeaderBarContainer{height:4.0625rem}@media (max-width: 767px){.container--shorthand-page .breaking-news{z-index:104}}.container--shorthand-page .container--sidebar-is-active .nav-control-overlay{width:calc(100vw - 18.75rem)}.container--shorthand-page .container--sidebar-is-active .PositionSticky.HeaderBarContainer{z-index:101}@media print{body.shorthand-embed-body{min-height:0 !important}.fusion-app--shorthand-page>.main{height:0;min-height:0}.article-shorthand{display:none;visibility:hidden}}.article-sidebar{margin-top:1.25rem}@media (min-width: 992px){.article-sidebar:first-child{margin-top:0}}@media (min-width: 992px){.article-sidebar{margin-top:0}}.article-sidebar__section{margin-top:1.875rem}.article-sidebar__section-heading{margin-top:0;margin-bottom:1.25rem;font-weight:300;font-size:1.875rem}.article-sidebar .ordered-list__item,.article-sidebar .ordered-list__item-link{font-size:0.875rem}.article-sidebar .ordered-list__item{padding-left:0}.article-sidebar .ordered-list__item-link{color:inherit}.article-sidebar .story-card,.article-sidebar .story-card--secondary{margin-bottom:0;padding-bottom:0.625rem}@media (max-width: 767px){.article-sidebar .story-card,.article-sidebar .story-card--secondary{margin-right:0;margin-left:0}}.article-sidebar .story-card:last-of-type,.article-sidebar .story-card--secondary:last-of-type{margin-bottom:0;border-bottom:none}.article-sidebar .story-card--headline,.article-sidebar .story-card--headline-image-small{border-bottom:1px solid #d5d5d5}.article-sidebar .story-card--has-label::before{top:-0.0625rem}.article-sidebar .story-card__label{top:-0.0625rem}.article-sidebar .ad{margin-top:1.25rem}.article-sidebar .ad.ad-native{margin-top:0}.article-weather__header{padding:1.25rem}@media (max-width: 575px){.article-weather__header{margin:0 0.625rem;border-bottom:1px solid #d5d5d5}}@media (min-width: 576px){.article-weather__header{position:relative;padding:3.125rem 2.5rem 2.5rem;background-position:center center;background-size:cover}}@media (min-width: 1200px){.article-weather__header{padding:3.75rem 6.25rem 2.5rem}}@media (min-width: 576px){.article-weather__header::before{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 0%, rgba(18,22,23,0.8) 100%);content:''}}@media (min-width: 576px){.article-weather__header .article-weather__forecast{margin-top:2.5rem}}@media (min-width: 576px){.article-weather__header .article-weather__forecast--secondary{margin-top:0.625rem}}@media (min-width: 576px){.article-weather__header .day-forecast__temperature{color:#fff}}@media (min-width: 576px){.article-weather__header .day-forecast__temperature--secondary{color:#9e9f9f}}@media (min-width: 576px){.article-weather__header .day-forecast__description{color:#fff}}.article-weather__header-heading,.article-weather__header-time,.article-weather__header-temperature,.article-weather__header-link,.article-weather__header-description-list,.article-weather__forecast{position:relative}.article-weather__header-heading{margin-bottom:0;color:#313c3d;font-weight:700;font-size:2rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (min-width: 576px){.article-weather__header-heading{color:#fff}}.article-weather__header-time{color:#313c3d;font-weight:700;font-size:1.125rem}@media (min-width: 576px){.article-weather__header-time{color:#fff}}.article-weather__header-temperature{color:#313c3d;font-weight:500;font-size:3rem;font-family:"Stag","Georgia",serif;line-height:1}@media (min-width: 576px){.article-weather__header-temperature{color:#fff}}.article-weather__header-link{display:flex;align-items:center;justify-content:space-between;width:calc(100% - 1.25rem * 2);margin-top:1.25rem;padding:0.9375rem 1.25rem;color:#fff;font-size:1.0625rem;background-color:#38a3d7;border-radius:0.25rem}@media (min-width: 576px){.article-weather__header-link{width:calc((100% / 3 - 1.875rem * 2 / 3 - 1.25rem * 2) * 2);font-size:1.25rem}}@media (min-width: 768px){.article-weather__header-link{width:calc(100% / 3 - 1.875rem * 2 / 3 - 1.25rem * 2)}}.article-weather__header-location-icon{width:1.25rem;height:1.25rem}.article-weather__header-description-list{margin-top:1.5625rem;margin-bottom:0}@media (min-width: 576px){.article-weather__header-description-list{color:#fff}}.article-weather__header-description-list-item{margin-top:0.3125rem;font-size:1.0625rem}.article-weather__header-description-list-title,.article-weather__header-description-list-description{display:inline-block}.article-weather__header-description-list-title{font-weight:700}.article-weather__header-description-list-description{margin-left:0.1875rem}.article-weather__header-description-list-time{font-size:1.0625rem}@media (min-width: 576px){.article-weather__forecast{display:flex;flex-wrap:wrap;align-items:center}}.article-weather__locations{padding:1.875rem 1.875rem 0}@media (min-width: 576px){.article-weather__locations{padding:2.5rem 2.5rem 0}}@media (min-width: 1200px){.article-weather__locations{padding:2.5rem 6.25rem 0}}.article-weather__locations-heading{color:#4c585d}.article-weather .day-forecast{margin-top:1.875rem}@media (min-width: 576px){.article-weather .day-forecast{flex-basis:calc(100% / 3 - 1.875rem * 2 / 3)}}@media (min-width: 576px){.article-weather .day-forecast:not(:nth-of-type(3n+1)){margin-left:1.875rem}}.article-weather__body{padding:0 0.625rem 1.875rem}@media (min-width: 576px){.article-weather__body{padding:0 2.5rem 2.5rem}}@media (min-width: 992px){.article-weather__body{display:flex;flex-wrap:wrap}}@media (min-width: 1200px){.article-weather__body{padding:0 6.25rem 2.5rem}}.article-weather__branding{display:flex;align-items:center;margin-top:2.1875rem;padding-bottom:0.625rem;border-bottom:1px solid #000}@media (min-width: 576px){.article-weather__branding{flex-basis:100%}}.article-weather__branding+.article-weather__body-main{margin-top:1.5625rem}.article-weather__branding+.article-weather__body-main+.article-weather__body-sidebar{margin-top:1.5625rem}.article-weather__branding-icon{width:5.625rem;height:1.0625rem}@media (min-width: 576px){.article-weather__branding-icon{width:8.125rem;height:1.5625rem;padding-left:0.625rem}}.article-weather__branding-fine-text{margin:0 0.9375rem;color:#9e9f9f;font-size:0.75rem;line-height:1.25}.article-weather__branding-link{color:#9e9f9f;text-decoration:underline}.article-weather__body-main{margin-top:2.5rem}@media (min-width: 992px){.article-weather__body-main{flex-basis:calc(100% / 3 * 2 - 1.25rem / 2 - 0.625rem * 2);margin-top:3.75rem}}.article-weather__body-heading--secondary{font-weight:400;font-size:2.1875rem}.article-weather__body-subheading{margin-top:1.25rem;color:#313c3d;font-weight:600;font-size:1.0625rem}.article-weather__body-description{margin-top:0.1875rem;color:#313c3d;font-size:1.0625rem}.article-weather__body-time{color:#9e9f9f}.article-weather__body-image{margin-top:0.625rem}.article-weather__body-api-wrapper strong{display:block;padding-top:1.25rem;color:#4c585d;font-weight:600;font-size:1.0625rem;line-height:1.4}.article-weather__body-api-wrapper p{margin-top:0.3125rem;margin-bottom:0;padding-bottom:1.25rem;color:#313c3d;font-size:1.0625rem;line-height:1.4}.article-weather__body-api-wrapper p:not(:last-of-type){border-bottom:1px solid #d5d5d5}.article-weather__body-sidebar{margin-top:2.5rem}@media (min-width: 992px){.article-weather__body-sidebar{flex-basis:calc(100% / 3 - 1.25rem / 2);margin-top:3.75rem;margin-left:1.25rem}}.article-weather__body-sidebar .story-card,.article-weather__body-sidebar .story-card--secondary{margin-bottom:0;padding-top:0.3125rem;padding-bottom:0.625rem}@media (max-width: 767px){.article-weather__body-sidebar .story-card,.article-weather__body-sidebar .story-card--secondary{margin-right:0;margin-left:0}}.article-weather__body-sidebar .story-card:last-of-type,.article-weather__body-sidebar .story-card--secondary:last-of-type{margin-bottom:0;border-bottom:none}.article-weather__tides-heading{font-weight:300}.article-weather__tides-subheading{margin-top:1.25rem;color:#313c3d;font-size:1.0625rem}.article-weather__tides-description-list{margin-top:0.9375rem}.article-weather__tides-description-list-item{display:flex}.article-weather__tides-description-list-item:not(:first-of-type){margin-top:0.625rem}.article-weather__tides-description-list-description{margin-left:0.3125rem;padding-left:0}.article-weather__tides-description-list-time{padding-right:0.9375rem;font-size:1.0625rem}.article-weather__body-sidebar-section{margin-top:1.875rem}.article-weather__body-sidebar-section-heading{margin-top:0;margin-bottom:1.25rem;font-weight:300;font-size:1.875rem}.article-weather__body-sidebar-section-heading--weather-news{color:#38a3d7}.article{max-width:60rem;margin:0 auto;padding:1.25rem 0.625rem 0}@media (min-width: 992px){.article{display:flex;flex-wrap:wrap;align-items:stretch;padding:2.5rem 0 0}}.article .article__header-premium{position:relative;border-top:0.0625rem solid #ecac0c}@media (min-width: 576px){.article .article__header-premium{padding-top:0.625rem}}.article .article__header-premium::before{position:absolute;top:0;right:0;z-index:1;width:auto;height:auto;padding:0.1875rem 0.3125rem;color:#333;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:1;background-color:#ecac0c;border-bottom-left-radius:0.4375rem;content:'PREMIUM'}.article .article__header-sponsored .article__kicker,.article .article__header-sponsored .article__subkicker-separator,.article .article__header-sponsored .article__subkicker{display:none}@media (min-width: 992px){.article__main{flex-basis:calc(100% / 3 * 2 - 1.25rem / 2)}}@media (max-width: 991px){.article--sidebar-hidden .article-sidebar{display:none}}@media (max-width: 575px){.article--header-has-image{margin:0;padding:0}}@media (max-width: 575px){.article--header-has-image .article__header{position:relative}}@media (max-width: 575px){.article--header-has-image .article__header-info{position:absolute;right:0;bottom:0;left:0;z-index:2;margin-bottom:1.25rem;padding-right:0.625rem;padding-left:0.625rem}.article--header-has-image .article__header-info .article__kicker,.article--header-has-image .article__header-info .article__subkicker,.article--header-has-image .article__header-info .article__subkicker-separator,.article--header-has-image .article__header-info .article__heading,.article--header-has-image .article__header-info .article__label-updated{color:#fff}.article--header-has-image .article__header-info .article__label-updated::before{background-color:#fff}}@media (max-width: 575px){.article--header-has-image .article__heading-caption{padding:0 0.625rem}}@media (max-width: 575px){.article--header-has-image .article__header .figure{margin-top:0}}@media (max-width: 575px){.article--header-has-image .article__header .figure::before,.article--header-has-image .header__figure::before{position:absolute;top:0;left:0;z-index:1;display:block;width:100%;height:100%;background-image:linear-gradient(180deg, transparent 35%, #000);content:''}}.article .article__heading-caption{display:block;margin-top:0.3125rem;margin-bottom:0.625rem;color:#4c585d;font-size:0.875rem;line-height:1.6}.article .article-media__caption.hero{display:none}@media (max-width: 575px){.article .article-sidebar{padding-right:0.625rem;padding-left:0.625rem}}@media (min-width: 992px){.article .article-sidebar{flex-basis:calc(100% / 3 - 1.25rem);margin-left:1.25rem}}.article__kicker{font-weight:700;font-size:0.8125rem;text-transform:uppercase}.article__subkicker{padding-left:0.125rem;font-weight:400;font-size:0.8125rem;text-transform:capitalize}.article__subkicker-separator{padding-left:0.125rem}.article__heading{font-weight:400}@media (max-width: 575px){.article__heading{margin-top:0.625rem;font-size:1.625rem;line-height:1.2}}@media (min-width: 576px){.article__heading{margin-top:1.25rem}}.article__label-updated{margin-left:0.625rem;font-size:0.8125rem}@media (max-width: 575px){.article .meta-data{font-weight:600}}@media (max-width: 575px){.article .meta-data__time-stamp{font-weight:600}}@media (max-width: 575px){.article .meta-data__read-time__icon{display:none}}.article .figure{margin-top:1.25rem}.article__action-bar{margin-top:1.25rem;margin-bottom:0.625rem}@media (max-width: 575px){.article__action-bar{padding:0.625rem 0.625rem 0}}@media (max-width: 575px){.article__action-bar .share-bar{padding-top:0.625rem;border-top:1px solid #000}}@media (min-width: 576px){.article__action-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.25rem}}.article__body{padding-top:1.25rem;border-top:1px solid #000}@media (max-width: 575px){.article__body{margin-right:0.625rem;margin-left:0.625rem}}.article .FyTUzncPOWXr .ellipsis::after{content:'...'}.article__subheading{margin-top:1.25rem;color:#313c3d;font-weight:400}.article__subheading--small{color:#000;font-family:inherit;text-transform:uppercase}.article__unordered-list,.article__ordered-list{margin-bottom:1.25rem;font-size:1.0625rem}.article__button{display:flex;align-items:center;justify-content:center;margin:1.25rem auto;padding:0.625rem 1rem;color:#fff;font-weight:700;font-size:0.875rem;text-align:center;text-transform:uppercase;border-radius:0.25rem}@media (min-width: 576px){.article__button{display:table}}.article__button--default{background-color:#0076b5}.article__oembed{display:flex;flex-direction:column;align-items:center}@media all and (-ms-high-contrast: active), (-ms-high-contrast: none){.article__oembed{display:inline}}.article__raw-html__top{margin-top:0.3125rem;margin-bottom:1.25rem}.article__raw-html__bottom{margin-bottom:0.625rem}.article__blockquote{margin:1.25rem 0;padding:1.25rem 0;border-top-width:2px;border-top-style:solid;border-bottom-width:2px;border-bottom-style:solid}.article__blockquote p{font-weight:500;font-size:2.1875rem;font-family:"Stag","Georgia",serif;line-height:1.15}.article__blockquote p::before{display:inline-block;margin-right:0.3125rem;line-height:0;content:open-quote}.article__blockquote p::after{margin-left:0.3125rem;line-height:0;content:close-quote}.article__blockquote footer{color:#4c585d;font-weight:400;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.article__blockquote--default{border-color:#d5d5d5}.article__print-button{display:none}@media (min-width: 576px){.article__print-button{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;color:#fff;background-color:#4c585d;border-radius:0.25rem;cursor:pointer}}.article__print-button-icon{width:1.5rem;height:1.5rem}.article--horoscope .author{display:block}.article--horoscope__date{display:block}.article--photo-gallery .article__header{width:100%;border-bottom:1px solid #000}.article--photo-gallery .gallery{max-width:60rem;margin-top:0}.article--photo-gallery .gallery::before{display:none}.article--photo-gallery .gallery__caption{padding-bottom:0;border-bottom:none}.article--photo-gallery .slick-list{width:100%}.article--photo-gallery+.section-chain.section-chain--triple-image{margin-top:1.25rem}.article--photo-gallery+.section-chain--triple-image .section-chain__wrapper{width:100%;max-width:60rem}@media (min-width: 768px){.article--photo-gallery+.section-chain--triple-image .section-chain__wrapper article[class^='story-card'],.article--photo-gallery+.section-chain--triple-image .section-chain__wrapper .ad{flex-basis:calc(100% / 3 - 1.25rem * 2 / 3 - 0.0625rem / 3)}}.article__photo-gallery-caption{margin:1.25rem 0;color:#4c585d;font-size:0.9375rem}@media (min-width: 576px){.article__photo-gallery-caption{font-size:0.875rem}}@media (max-width: 991px){.article--video-gallery{display:flex;flex-direction:column}}@media (max-width: 991px){.article--video-gallery .article__main{order:1}}@media (max-width: 575px){.article--video-gallery .article__action-bar{padding:0.625rem 0 0}}.article--video-gallery .article__body{padding-top:0}@media (max-width: 575px){.article--video-gallery .article__body{margin-right:0;margin-left:0}}@media (max-width: 991px){.article--video-gallery .article-sidebar{order:3;margin-bottom:1.25rem}}@media (max-width: 991px){.article--video-gallery .figure{order:2}}@media (min-width: 992px){.article--video-gallery .figure{width:60rem;margin-bottom:1.25rem}}.article strong{margin-bottom:1.25rem;font-weight:400;font-size:1rem;line-height:1.6}.article strong a,.article strong strong{display:inline;font-weight:300}.article i{line-height:1.6}.article .element-action-button{margin:0.625rem 0;border-top:1px solid #d5d5d5;border-bottom:1px solid #d5d5d5}@media (min-width: 576px){.article .element-action-button{padding:0 1.875rem}}.article .kTfKrEnTiuGMNFGnP{display:none;color:#fff;opacity:0}@media print{.article{padding:0}.article__main{flex-basis:100%}.article .article-sidebar,.article__action-bar .share-bar,.article__print-button{display:none}.article__header .article-media__image,.article__header .article-media__caption{display:block}.article__oembed{page-break-inside:avoid}.article__oembed iframe[src*='player.vimeo.com']{display:none}}.section-chain__header{margin-bottom:1.25rem;text-align:center}@media (min-width: 576px){.section-chain__header{margin-bottom:2.1875rem;text-align:left}}@media (min-width: 576px){.section-chain__header--has-branding{display:flex;align-items:center;justify-content:space-between}}@media (max-width: 575px){.section-chain__header--has-branding h2.section-chain__heading{display:none}}@media (min-width: 992px){.chain-main{display:flex;flex-basis:620px}}@media (min-width: 768px){.section-chain--hero-list .chain-main,.section-chain--hero-list-extra .chain-main,.section-chain--subhero .chain-main,.section-chain-with-native--subhero .chain-main,.section-chain--triple-image-with-ad .chain-main,.section-chain--hero-text-link .chain-main{display:flex;flex-wrap:wrap}}.section-chain--hero-list .chain-main article[class^='story-card'],.section-chain--hero-list-extra .chain-main article[class^='story-card'],.section-chain--subhero .chain-main article[class^='story-card'],.section-chain-with-native--subhero .chain-main article[class^='story-card'],.section-chain--triple-image-with-ad .chain-main article[class^='story-card'],.section-chain--hero-text-link .chain-main article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2)}@media (min-width: 992px){.section-chain--hero-list .chain-main article[class^='story-card'],.section-chain--hero-list-extra .chain-main article[class^='story-card'],.section-chain--subhero .chain-main article[class^='story-card'],.section-chain-with-native--subhero .chain-main article[class^='story-card'],.section-chain--triple-image-with-ad .chain-main article[class^='story-card'],.section-chain--hero-text-link .chain-main article[class^='story-card']{flex-basis:300px}}@media (max-width: 767px){.section-chain--hero-list .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--hero-list-extra .chain-main article[class^='story-card']:not(:first-of-type){margin-top:1.25rem}}@media (min-width: 768px){.section-chain--hero-list .chain-main article[class^='story-card']:nth-of-type(n+2),.section-chain--hero-list-extra .chain-main article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}}@media (max-width: 767px){.section-chain--hero-list-extra .chain-main article[class^='story-card'].story-card{margin-top:0}}@media (min-width: 768px){.section-chain--hero-list-extra .chain-main article[class^='story-card'].story-card:nth-of-type(n+6){margin-top:0}}.section-chain--hero-list .chain-main article[class^='story-card']:first-of-type,.section-chain--hero-list-extra .chain-main article[class^='story-card']:first-of-type,.section-chain--hero-text-link .chain-main article[class^='story-card']:first-of-type{flex-basis:100%}@media (min-width: 768px){.section-chain--hero-list .chain-main article[class^='story-card']:not(:first-of-type):nth-of-type(odd),.section-chain--hero-list-extra .chain-main article[class^='story-card']:not(:first-of-type):nth-of-type(odd),.section-chain--hero-text-link .chain-main article[class^='story-card']:not(:first-of-type):nth-of-type(odd){margin-left:1.25rem}}.section-chain--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--gallery-hero .chain-main article[class^='story-card']:not(:first-of-type){margin-top:1.25rem}@media (min-width: 768px){.section-chain--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:not(:first-of-type),.section-chain--gallery-hero .chain-main article[class^='story-card']:not(:first-of-type){margin-top:0}}.section-chain--subhero .chain-main article[class^='story-card']:first-of-type,.section-chain-with-native--subhero .chain-main article[class^='story-card']:first-of-type,.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:first-of-type,.section-chain--gallery-hero .chain-main article[class^='story-card']:first-of-type{margin-top:0}@media (min-width: 768px){.section-chain--subhero .chain-main article[class^='story-card']:nth-of-type(even),.section-chain-with-native--subhero .chain-main article[class^='story-card']:nth-of-type(even),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:nth-of-type(even),.section-chain--gallery-hero .chain-main article[class^='story-card']:nth-of-type(even){margin-left:1.25rem}}@media (min-width: 768px){.section-chain--subhero .chain-main article[class^='story-card']:nth-of-type(n+3),.section-chain-with-native--subhero .chain-main article[class^='story-card']:nth-of-type(n+3),.section-chain--triple-image-with-ad .chain-main article[class^='story-card']:nth-of-type(n+3),.section-chain--gallery-hero .chain-main article[class^='story-card']:nth-of-type(n+3){margin-top:1.25rem}}@media (max-width: 991px){.section-chain--gallery-hero .chain-main{display:block}}@media (max-width: 767px){.section-chain--hero-text-link .chain-main article[class^='story-card']:nth-of-type(2){margin-top:0.625rem}}@media (min-width: 768px){.section-chain--hero-text-link .chain-main article[class^='story-card']:nth-of-type(n+2):nth-of-type(-n+3){margin-top:0.625rem}}.section-chain--hero-text-link .chain-main article[class^='story-card']:first-of-type{margin-top:0}.chain-sidebar{display:block}@media (min-width: 768px){.chain-sidebar{display:flex;flex-wrap:wrap}}@media (min-width: 992px){.chain-sidebar{display:block;flex-basis:300px}}.chain-sidebar .story-card:first-of-type:not(.story-card--has-label) .story-card__kicker-wrapper{padding-top:0}@media (min-width: 768px){.chain-sidebar .story-card{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2);padding-bottom:0.625rem}}@media (min-width: 768px){.chain-sidebar .story-card:nth-child(even){margin-left:1.25rem}}@media (min-width: 992px){.chain-sidebar .story-card:nth-child(even){margin-left:0}}.section-chain--hero-list .chain-sidebar{margin-top:1.25rem}@media (min-width: 992px){.section-chain--hero-list .chain-sidebar{margin-top:0}}@media (min-width: 768px){.section-chain--hero-list .chain-sidebar .story-card:first-child{padding-top:0.3125rem}}@media (min-width: 992px){.section-chain--hero-list .chain-sidebar .story-card:first-child{padding-top:0}}.section-chain--hero-list-extra .chain-sidebar{margin-top:0}.section-chain--subhero .chain-sidebar,.section-chain-with-native--subhero .chain-sidebar,.section-chain--triple-image-with-ad .chain-sidebar,.section-chain--hero-text-link .chain-sidebar,.section-chain--gallery-hero .chain-sidebar{display:block;margin-top:1.25rem}@media (min-width: 992px){.section-chain--subhero .chain-sidebar,.section-chain-with-native--subhero .chain-sidebar,.section-chain--triple-image-with-ad .chain-sidebar,.section-chain--hero-text-link .chain-sidebar,.section-chain--gallery-hero .chain-sidebar{margin-top:0}}.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left{display:-ms-grid;display:grid;grid-gap:20px;grid-template-areas:'main' 'sidebar' 'secondary'}@media (min-width: 768px){.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left{-ms-grid-rows:auto 20px auto;grid-template-areas:'main main' 'secondary sidebar';-ms-grid-columns:1fr 20px 1fr;grid-template-columns:1fr 1fr}}@media (min-width: 992px){.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left{-ms-grid-rows:370px 20px auto;-ms-grid-columns:620px 20px 300px;grid-template:"main sidebar" 370px "secondary sidebar" auto/620px 300px}}.section-chain--triple-hero-list.section-chain .section-chain__wrapper--has-sidebar .chain-sidebar,.section-chain--triple-hero-list.section-chain .section-chain .section-chain__wrapper--has-sidebar-left .chain-sidebar{margin-left:0}.section-chain--triple-hero-list .chain-main{-ms-grid-row:1;-ms-grid-column:1;grid-area:main}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main{display:flex;flex-wrap:wrap}}.section-chain--triple-hero-list .chain-main article[class^='story-card']{flex-basis:100%}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2)}.section-chain--triple-hero-list .chain-main article[class^='story-card']:not(:first-of-type){margin-top:1.25rem}.section-chain--triple-hero-list .chain-main article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main article[class^='story-card']{flex-basis:300px}}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2);margin-left:1.25rem}.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article{padding:0;border:0}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper{flex-basis:300px}}.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card']{margin-top:1.25rem}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card']{margin-top:0}.section-chain--triple-hero-list .chain-main .chain-main__hero-wrapper article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}}.section-chain--triple-hero-list .chain-secondary{-ms-grid-row:5;-ms-grid-column:1;grid-area:secondary;align-content:start}@media (min-width: 768px){.section-chain--triple-hero-list .chain-secondary{display:flex;flex-wrap:wrap}}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']{flex-basis:100%}@media (max-width: 991px){.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:nth-of-type(n+2){margin-top:1.25rem}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:last-child{margin-top:0}}@media (min-width: 768px){.section-chain--triple-hero-list .chain-secondary article[class^='story-card']{margin-left:0}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-secondary article[class^='story-card']{flex-basis:300px}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:nth-of-type(even){margin-left:1.25rem}.section-chain--triple-hero-list .chain-secondary article[class^='story-card']:nth-of-type(n+3){margin-top:1.25rem}}.section-chain--triple-hero-list .chain-sidebar{-ms-grid-row:3;-ms-grid-column:1;grid-area:sidebar;align-content:start}@media (min-width: 768px){.section-chain--triple-hero-list .chain-main{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:3}.section-chain--triple-hero-list .chain-secondary{-ms-grid-row:3;-ms-grid-column:1}.section-chain--triple-hero-list .chain-sidebar{-ms-grid-row:3;-ms-grid-column:3}}@media (min-width: 992px){.section-chain--triple-hero-list .chain-main{-ms-grid-row:1;-ms-grid-column:1;-ms-grid-column-span:1}.section-chain--triple-hero-list .chain-secondary{-ms-grid-row:3;-ms-grid-column:1}.section-chain--triple-hero-list .chain-sidebar{-ms-grid-row:1;-ms-grid-row-span:3;-ms-grid-column:3}}.section-chain--triple-hero-list .chain-sidebar article[class^='story-card']{flex-basis:100%}@media (max-width: 575px){.section-chain--triple-hero-list .chain-sidebar article[class^='story-card']:first-of-type{margin-top:0}}@media (min-width: 768px){.section-chain--triple-hero-list .chain-sidebar article[class^='story-card']{margin-left:0}}.footer{margin:0 auto;padding:2.1875rem 2.5rem 3.125rem;font-family:"Stag Sans Book","Helvetica",sans-serif;background-color:#121617}@media (min-width: 992px){.footer{position:relative;display:flex;flex-wrap:wrap;width:calc(100% - 2.5rem * 2);padding:1.875rem 2.5rem}}@media (min-width: 992px){.footer{width:calc(100% - 5rem * 2);padding:3.75rem 5rem}}@media (max-width: 991px){.footer__logo-link{display:table;margin:0 auto 2.1875rem}}@media (min-width: 992px){.footer__logo-link{position:absolute;top:4.0625rem;right:5rem}}.footer__logo-icon{width:6.5rem;height:1.625rem}@media (min-width: 576px){.footer__navigation{display:flex;flex-wrap:wrap}}@media (min-width: 768px){.footer__navigation{flex-basis:calc(100% / 4 * 3)}}@media (min-width: 576px){.footer__navigation-inner{flex-basis:calc(100% / 3)}}.footer__navigation-link{display:table;margin-top:0.625rem;color:#fff;font-size:0.75rem;line-height:1.4}@media (min-width: 768px){.footer__navigation-link{flex-basis:calc(100% / 2);margin-top:0.3125rem}}.footer__copyright{color:#dce1e2;font-size:0.625rem;text-align:center}@media (max-width: 991px){.footer__copyright{display:block;margin-top:2.8125rem}}@media (min-width: 992px){.footer__copyright{flex-basis:calc(100% / 4);align-self:flex-end;text-align:right}}@media print{.footer{display:none}}.header{position:fixed;top:0;left:0;z-index:3;display:flex;align-items:center;width:calc(100% - 0.625rem);height:4.0625rem;padding:0 0.625rem 0 0;box-shadow:0 0.1875rem 0.3125rem rgba(28,33,34,0.3)}@media (min-width: 576px){.header{position:static;flex-wrap:wrap;box-shadow:none}}.header--myaccount{width:100%;padding:0}.header--default{background-color:#121617}.header__navigation-wrapper{display:flex}.header__navigation-toggle-button{position:relative;width:3.125rem;height:3.125rem;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.header__navigation-toggle-button-inner,.header__navigation-toggle-button-inner::before,.header__navigation-toggle-button-inner::after{position:absolute;top:1.4375rem;left:0.875rem;width:1.375rem;height:0.1875rem;background-color:#fff;transition-duration:0.2s;transition-property:none}@media (min-width: 576px){.header__navigation-toggle-button-inner,.header__navigation-toggle-button-inner::before,.header__navigation-toggle-button-inner::after{transition-duration:0.3s}}.header__navigation-toggle-button-inner::before,.header__navigation-toggle-button-inner::after{content:''}.header__navigation-toggle-button-inner::before{top:-0.4375rem;left:0}.header__navigation-toggle-button-inner::after{top:0.4375rem;left:0}.header__logo{display:flex;align-items:center;margin:0}@media (max-width: 575px){.header__logo{width:100%}}@media (min-width: 576px){.header__logo{margin-right:auto;margin-left:0.9375rem}}.header__home-link,.header__logo-link{display:flex;align-items:center;color:#fff}.header__home-link:hover,.header__home-link:focus,.header__logo-link:hover,.header__logo-link:focus{opacity:1}.header__home-link{width:3.125rem;height:3.125rem;background-color:#000}.header__logo-link{margin-left:auto}.header__logo-image{width:2.0625rem;height:2.25rem;margin:auto}@media (max-width: 575px){.header__logo-image{max-width:9.375rem}}.header__logo-image--bay-of-plenty-times{width:16.25rem;height:2rem}.header__logo-image--waikato-news{width:15rem;height:2.1875rem}.header__logo-image--hawkes-bay-today{width:10.5625rem;height:2.1875rem}.header__logo-image--horowhenua-chronicle{width:9.8125rem;height:2.1875rem}.header__logo-image--kapiti-news{width:9.5625rem;height:2.1875rem}.header__logo-image--manawatu-guardian{width:12.375rem;height:2.1875rem}.header__logo-image--northern-advocate{width:13rem;height:2.1875rem}.header__logo-image--northland-age{width:16.25rem;height:2.0625rem}.header__logo-image--rotorua-daily-post{width:16.25rem;height:1.6875rem}.header__logo-image--stratford-press{width:8.8125rem;height:2.1875rem}.header__logo-image--te-awamutu-courier{width:10.9375rem;height:2.1875rem}.header__logo-image--aucklander{width:15.875rem;height:2.1875rem}.header__logo-image--whanganui-chronicle{width:16.25rem;height:1.6875rem}.header__logo-image--trailblazers{width:14.4375rem;height:2.5rem}.header__logo-image--the-vision-is-clear{width:16.25rem;height:2.8125rem}.header__logo-image--the-country{width:15.0625rem;height:2.1875rem}.header__logo-image--eatwell{width:8.8125rem;height:2.25rem}.header__logo-text{font-weight:300;font-size:1.625rem;font-family:"Stag","Georgia",serif}.header__next-section-link{display:none}@media (min-width: 576px){.header__next-section-link{display:flex;align-items:center;color:#fff;font-weight:400;font-size:0.75rem;text-align:right}}.header__next-section-link-category{display:block;font-size:1rem;font-family:"Stag","Georgia",serif;text-align:left}.header__next-section-link-chevron{width:1.5625rem;height:1.5625rem;margin-left:0.625rem;padding:calc(0.3125rem / 2);background-color:rgba(158,159,159,0.3);border-radius:50%}.header__search{position:relative;display:none;margin-left:0.625rem}@media (min-width: 576px){.header__search{display:flex;align-items:center;justify-content:center}}.header__search-input{position:absolute;top:0;right:2rem;width:0rem;height:1.875rem;padding-left:0.625rem;color:#fff;font-weight:300;font-size:0.875rem;border:0;opacity:0;transition:width 0.1s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}.header__search-input::-webkit-input-placeholder{color:#fff}.header__search-input::-moz-placeholder{color:#fff}.header__search-input:-ms-input-placeholder{color:#fff}.header__search-input::-ms-input-placeholder{color:#fff}.header__search-input::placeholder{color:#fff}.header__search-submit{width:2rem;height:2rem;padding:0;color:#fff;border-style:solid;border-width:1px;border-radius:0.125rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.header__search-submit:hover{border-color:#fff}.header__search-icon{width:0.875rem;height:0.875rem;margin:auto}.header__search-is-active .header__search-input{width:12.5rem;opacity:1}.header__search-is-active .header__search-submit{border-color:#fff}.header__sub-btn{display:inline-block;margin:0 auto 1.25rem;padding:0.5rem 0.75rem;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-align:center;text-decoration:none;vertical-align:middle;background-color:#ecac0c;border:0.0625rem solid #ecac0c;border-radius:0.25rem;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;margin:0.625rem 0 0.625rem 0.625rem;padding:0.4375rem 0.75rem;color:#333;text-transform:uppercase;border-radius:0.125rem}.header__sub-btn:hover{background-color:#d49b0b;border-color:#d49b0b}@media (max-width: 767px){.header__sub-btn{display:none}}.header__sign-in-btn{display:inline-block;margin:0.625rem 3.125rem 0.625rem 0.625rem;padding:0.4375rem 0.75rem;color:#dce1e2;font-weight:700;font-size:14px;font-family:"Source Sans Pro","Helvetica",sans-serif;text-transform:uppercase;background-color:#121617;border:0.0625rem solid #dce1e2;border-radius:0.125rem;cursor:pointer}@media (max-width: 991px){.header__sign-in-btn{margin:0.625rem}}.header__sign-in-btn:hover{background-color:#23292a}@media (max-width: 767px){.header__sign-in-btn{display:none}}.header__close-btn{display:flex;align-items:center;justify-content:center;width:50px;height:50px;color:#fff;background-color:#38a3d7}.header__close-btn-icon{width:1.875rem;height:1.875rem}@media (min-width: 576px){.fusion-app--myaccount-page .header{position:relative;max-width:1100px;margin:0 auto}}.fusion-app--myaccount-page .header__logo{width:auto;margin-right:auto}.container--sidebar-is-active .header__navigation-toggle-button-inner{background-color:transparent}.container--sidebar-is-active .header__navigation-toggle-button-inner::before,.container--sidebar-is-active .header__navigation-toggle-button-inner::after{top:0;transition-property:all}.container--sidebar-is-active .header__navigation-toggle-button-inner::before{transform:rotate(135deg)}.container--sidebar-is-active .header__navigation-toggle-button-inner::after{transform:rotate(225deg)}@media print{.header{display:none}}.moon-phases{display:flex;flex-wrap:wrap;padding:1.25rem 0.625rem 2.5rem;background-color:#42555b}@media (min-width: 576px){.moon-phases{padding:1.25rem 1.25rem 2.5rem}}.moon-phases__heading{flex-basis:100%;color:#fff;font-weight:300;text-align:center}.moon-phases .moon{flex-basis:calc(100% / 2);margin-top:1.875rem}@media (min-width: 768px){.moon-phases .moon{flex-basis:calc(100% / 4)}}.navigation__item-button{display:flex;align-items:center;justify-content:space-between;width:100%;padding:0.625rem 1.5625rem;background-color:transparent;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.navigation__item-button .navigation__item-link{padding:0}.navigation__item-button .navigation__item-icon{transition:all 0.1s}.navigation__item-button:hover .navigation__item-link{color:#fff}.navigation__item-link{display:block;padding:0.625rem 1.5625rem;font-weight:400;font-size:1.0625rem;font-family:"Stag","Georgia",serif;line-height:1.45;opacity:1;transition:all 0.2s}.navigation__item-link-color{color:#c4cccb}.navigation__item-link-color:hover{color:#fff}.navigation__item-link:hover,.navigation__item-link:focus{color:#fff !important;opacity:1}.navigation__item-link--active{color:#38a3d7}.navigation__item-link--no-submenu:hover{background-color:#313c3d}.navigation__item-icon{width:0.3125rem;height:0.5rem;padding:0.125rem 0.1875rem;color:#4c585d;border:2px solid #4c585d;border-radius:50%}.page-not-found{padding:1.5625rem 1.875rem 17.75rem;background-color:#000;background-image:url(/pf/resources/dist/images/404-bg.png?d=153);background-repeat:no-repeat;background-position:bottom;background-size:contain}@media (min-width: 576px){.page-not-found{padding:16.5625rem 1.25rem 7rem;background-image:url(/pf/resources/dist/images/404-bg-sm.png?d=153);background-size:auto auto}}@media (min-width: 768px){.page-not-found{padding:16.5625rem 1.875rem 7rem}}@media (min-width: 992px){.page-not-found{padding:16.5625rem 2.8125rem 7rem}}@media (min-width: 1200px){.page-not-found{padding:16.5625rem 4.0625rem 7rem}}.page-not-found__heading{margin-top:0;color:#fff;font-size:4rem}@media (min-width: 576px){.page-not-found__heading{font-size:6.875rem}}.page-not-found__description{margin-bottom:0;margin-left:0.3125rem;color:#fff;font-size:1rem;font-family:"Stag","Georgia",serif;line-height:1.25}@media (min-width: 576px){.page-not-found__description{font-size:1.625rem}}.page-not-found__description:first-of-type{margin-top:0.9375rem}@media (min-width: 576px){.page-not-found__description:first-of-type{margin-top:1.5625rem}}@-webkit-keyframes loading-animation{0%{transform:translateY(19.0625rem)}100%{transform:translateY(0)}}@keyframes loading-animation{0%{transform:translateY(19.0625rem)}100%{transform:translateY(0)}}@media (min-width: 1400px){.container--sidebar-is-active .premium-toaster{margin-left:18.75rem}}.premium-toaster{position:fixed;bottom:0;z-index:2;width:68.5rem;height:17.9375rem;background:url(/pf/resources/dist/images/left.jpg?d=153) left bottom no-repeat,url(/pf/resources/dist/images/right.jpg?d=153) right bottom no-repeat;background-color:#f2f2f2;border-top:0.125rem solid #ecac0c;border-right:0.125rem solid #ecac0c;border-left:0.125rem solid #ecac0c;transition:bottom .2s cubic-bezier(0.55, 0.05, 0.67, 0.19)}@media (max-width: 1200px){.premium-toaster{width:100%}}@media (max-width: 992px){.premium-toaster{background:url(/pf/resources/dist/images/left-tab.jpg?d=153) left top no-repeat,url(/pf/resources/dist/images/right-tab.jpg?d=153) right top no-repeat;background-color:#f2f2f2}}@media (max-width: 550px){.premium-toaster{background:url(/pf/resources/dist/images/left-mob.jpg?d=153) left -0.5rem top no-repeat,url(/pf/resources/dist/images/right-mob.jpg?d=153) right -0.5rem top no-repeat;background-color:#f2f2f2}}.premium-toaster.up{bottom:0}.premium-toaster.up.load{bottom:0;-webkit-animation:loading-animation .2s;animation:loading-animation .2s}.premium-toaster.up.close{bottom:-19.0625rem}.premium-toaster.down{bottom:-13.5625rem}@media (max-width: 992px){.premium-toaster.down{bottom:-14.875rem}}.premium-toaster.down.load{bottom:-13.5625rem;-webkit-animation:loading-animation .2s;animation:loading-animation .2s}@media (max-width: 992px){.premium-toaster.down.load{bottom:-14.875rem}}.premium-toaster.down.close{bottom:-19.0625rem}.premium-toaster .btn-premium{display:inline-block;margin:0 auto 1.25rem;padding:0.5rem 0.75rem;color:#fff;font-weight:700;font-size:0.875rem;font-family:"Source Sans Pro","Helvetica",sans-serif;white-space:nowrap;text-align:center;text-decoration:none;vertical-align:middle;background-color:#ecac0c;border:0.0625rem solid #ecac0c;border-radius:0.25rem;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;font-size:0.8125rem}.premium-toaster .btn-premium:hover{background-color:#d49b0b;border-color:#d49b0b}.premium-toaster .toaster-control{position:absolute;top:-1.875rem;right:0;left:0;width:2.5rem;height:1.875rem;margin:auto;background:url(/pf/resources/dist/images/control-tab.png?d=153) bottom no-repeat;cursor:pointer}.premium-toaster .toaster-control .arrow{width:0;height:0;margin:1.375rem auto 0;border-top:0.4375rem solid #383838;border-right:0.4375rem solid transparent;border-left:0.4375rem solid transparent}.premium-toaster .toaster-control .arrow.up{border-top:none;border-bottom:0.4375rem solid #383838}.premium-toaster .header-wrap{height:4.375rem;padding:0;overflow:hidden}@media (max-width: 992px){.premium-toaster .header-wrap{height:3rem}}.premium-toaster .header-wrap .toaster-control-bar{position:absolute;top:0;left:0;width:70%;height:4.25rem}@media (max-width: 992px){.premium-toaster .header-wrap .toaster-control-bar{width:87%;height:2.875rem}}@media (max-width: 550px){.premium-toaster .header-wrap .toaster-control-bar{width:80%}}.premium-toaster .header-wrap h2{margin:1.5625rem 0 1.125rem;color:#000;font-weight:400;font-size:1.25rem;text-align:center}@media (max-width: 992px){.premium-toaster .header-wrap h2{margin-top:0.625rem;margin-bottom:-0.5rem;font-size:0.9375rem;line-height:0.9375rem}}@media (max-width: 350px){.premium-toaster .header-wrap h2{font-size:0.75rem}}.premium-toaster .header-wrap .offer-peek{position:absolute;top:1.125rem;left:2.5rem;margin:0.0625rem 0 0.3125rem}@media (max-width: 992px){.premium-toaster .header-wrap .offer-peek{position:static;margin:0;margin-top:0.375rem;text-align:center}}.premium-toaster .header-wrap .offer-peek h4{margin:0;color:#000;font-weight:600;font-size:1.125rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (max-width: 992px){.premium-toaster .header-wrap .offer-peek h4{display:inline-block;margin-right:0.1875rem;font-size:0.75rem}}@media (max-width: 350px){.premium-toaster .header-wrap .offer-peek h4{font-size:0.6875rem}}.premium-toaster .header-wrap .offer-peek p{margin:0;color:#000;font-weight:400;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (max-width: 992px){.premium-toaster .header-wrap .offer-peek p{display:inline-block}}@media (max-width: 350px){.premium-toaster .header-wrap .offer-peek p{font-size:0.6875rem}}.premium-toaster .header-wrap .btn.top{position:absolute;top:1.0625rem;right:8.75rem;color:#333;font-weight:600;font-family:"Source Sans Pro","Helvetica",sans-serif}@media (max-width: 992px){.premium-toaster .header-wrap .btn.top{display:none}}.premium-toaster .header-wrap .close{position:absolute;top:0;right:0;width:4.0625rem;height:4.0625rem;cursor:pointer;opacity:0.8}@media (max-width: 992px){.premium-toaster .header-wrap .close{width:3.25rem;height:3.25rem}}.premium-toaster .header-wrap .close:hover{opacity:1}.premium-toaster .header-wrap .close::before,.premium-toaster .header-wrap .close::after{position:absolute;top:1.5625rem;right:1.875rem;width:0.1875rem;height:1.3125rem;background-color:#1c1c1c;content:' '}@media (max-width: 992px){.premium-toaster .header-wrap .close::before,.premium-toaster .header-wrap .close::after{top:0.8125rem;right:1.625rem}}.premium-toaster .header-wrap .close::before{transform:rotate(45deg)}.premium-toaster .header-wrap .close::after{transform:rotate(-45deg)}.premium-toaster .see-all{margin:0 auto;padding-top:0.6875rem;font-weight:600;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;text-align:center}.premium-toaster .see-all a{color:#000}.premium-toaster .offer-wrap{display:flex;align-items:center;justify-content:center;width:37.5rem;margin:0 auto}@media (max-width: 992px){.premium-toaster .offer-wrap{width:100%;background-color:#f2f2f2}}.premium-toaster .offer{width:12.875rem;height:9rem;margin:0.125rem 0.5rem;padding:0.9375rem 0.875rem;text-align:center;background:#fff;border:0.0625rem solid #ecac0c;box-shadow:0.125rem 0.125rem 0.5625rem 0 #ddd}@media (max-width: 992px){.premium-toaster .offer{margin-top:1.25rem}}@media (max-width: 550px){.premium-toaster .offer:nth-child(2){display:none}}.premium-toaster .offer h2{margin:0;color:#000;font-weight:400;font-size:1.1875rem}.premium-toaster .offer .offer-title{margin:0 0 0.125rem;color:#000;font-weight:400;font-size:1.5625rem;font-family:"Stag","Georgia",serif}.premium-toaster .offer .offer-description{width:100%;margin-top:0.1875rem;margin-bottom:0.3125rem;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif;line-height:0.9375rem;text-align:center}.premium-toaster .offer .offer-pricing{width:13.125rem;min-height:3.625rem;margin:0.25rem auto;font-weight:400;font-family:"Stag","Georgia",serif}.premium-toaster .offer .offer-pricing .text-muted{width:8.4375rem;min-height:0.75rem;margin:0 auto -0.125rem;color:#777;font-size:0.75rem;line-height:0.75rem;text-align:left}.premium-toaster .offer .offer-pricing h3{margin:0}.premium-toaster .offer .offer-pricing h3 sup{top:-0.4375rem;margin-right:0.25rem;color:#000;font-weight:400;font-size:1.125rem}.premium-toaster .offer .offer-pricing h3 b{color:#000;font-weight:normal;font-size:1.625rem}.premium-toaster .offer .offer-pricing h3 sub{bottom:0;margin-left:0.3125rem;color:#000;font-weight:400;font-size:0.625rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.premium-toaster .offer .offer-pricing span{display:block;color:#ecac0c;font-weight:700;font-size:0.75rem;font-family:"Source Sans Pro","Helvetica",sans-serif}.premium-toaster .offer .btn-premium{padding:0.3125rem 1.625rem}@media print{.premium-toaster{display:none}}.search-page{max-width:38.75rem;margin:0 auto;padding:1.25rem 0.625rem 0}@media (min-width: 992px){.search-page{display:flex;flex-wrap:wrap;max-width:58.75rem;padding:2.5rem 0}}@media (min-width: 992px){.search-page__header{flex-basis:100%}}.search-page__heading{display:flex;align-items:center;justify-content:center;font-weight:700;font-size:2.1875rem}@media (max-width: 767px){.search-page__heading{display:block}}@media (max-width: 767px){.search-page__heading-text{width:100%;text-align:center}}.search-page__heading-inputs-input,.search-page__heading-inputs-submit{display:inline}@media (max-width: 767px){.search-page__heading-inputs{text-align:center}}.search-page__heading-input{width:13.75rem;color:#38a3d7;font-weight:300;font-style:italic;border-top:none;border-right:none;border-bottom:1px solid #d5d5d5;border-left:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (min-width: 768px){.search-page__heading-input{margin-left:0.5rem}}.search-page__heading-submit{margin-left:0.5rem;padding:0;background-color:transparent;border:none;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.search-page__heading-icon{width:1.5rem;height:1.5rem}.search-page__results-number{margin-top:3.125rem;color:#4c585d;font-weight:600;font-size:1.125rem}.search-page__results-number--featured{font-weight:700}@media (min-width: 992px){.search-page__results-list{flex-basis:calc(100% / 3 * 2 - 1.25rem / 2)}}.search-page__results-list .ad{margin:1.25rem 0}@media (min-width: 992px){.search-page__results-list .ad{display:none}}@media (max-width: 991px){.search-page__results-list .ad+.story-card--summary{border-top:1px solid #d5d5d5}}.search-page .story-card--summary{padding:0.625rem 0 0.9375rem;border-bottom:1px solid #d5d5d5}@media (max-width: 767px){.search-page .story-card--summary{margin-right:0;margin-left:0}}@media (max-width: 991px){.search-page__sidebar{display:none}}@media (min-width: 992px){.search-page__sidebar{flex-basis:calc(100% / 3 - 1.25rem);margin-top:0;margin-left:1.25rem}}.search-page__sidebar .ad:not(:first-of-type){margin-top:100vh}.search-page__pagination{display:flex;align-items:center;justify-content:center;margin:3.4375rem 0}@media (min-width: 992px){.search-page__pagination{margin:5rem 0}}.search-page__pagination-item{color:#9e9f9f;font-size:0.875rem}.search-page__pagination-item:not(:first-of-type){margin-left:1.5625rem}.search-page__pagination-item--current{color:#313c3d;font-weight:600}.search-page__pagination-previous,.search-page__pagination-next{display:flex;align-items:center;justify-content:center;width:3.25rem;height:2.1875rem;color:#fff;font-weight:400;font-size:0.875rem;text-transform:uppercase;background-color:#313c3d;border-radius:0.1875rem}.search-page__pagination-next{margin-left:1.5625rem}.search-page__pagination-ellipsis{margin-left:0.4375rem;color:#c4cccb}.search-page__pagination-ellipsis+.search-page__pagination-item{margin-left:0.4375rem}.section-chain{width:100%}@media (min-width: 768px){.section-chain{padding:1.25rem 1.25rem 0}}@media (min-width: 992px){.section-chain{padding:1.25rem 0}}.section-chain:not(:first-of-type){margin-top:1.25rem}@media (min-width: 992px){.section-chain:not(:first-of-type){margin-top:2.5rem}}@media (min-width: 768px){.section-chain__wrapper,.section-chain__header{width:calc(100% - 1.25rem * 2)}}@media (min-width: 992px){.section-chain__wrapper,.section-chain__header{max-width:58.75rem;margin-right:auto;margin-left:auto}}.section-chain[class*='-bg-color']{padding-top:1.25rem;padding-bottom:1.25rem}@media (min-width: 768px){.section-chain[class*='-bg-color']{padding-top:2.5rem;padding-bottom:2.5rem}}.section-chain__brand{margin-left:auto}@media (max-width: 575px){.section-chain__brand{margin-right:0.625rem;padding-top:0.625rem}}.section-chain__brand--watch-me{width:14.375rem;height:2.25rem}.section-chain__brand--brand-insights{width:3.5rem;height:3.5rem}.section-chain__brand--be-well{width:11.6875rem;height:3.125rem}.section-chain__brand--driven{width:9.3125rem;height:1.25rem}.section-chain__brand--nzme{width:5.6875rem;height:1.9375rem}.section-chain__brand--spy{width:5.375rem;height:3.5rem}.section-chain__brand--viva{width:4.6875rem;height:3.125rem}.section-chain__brand--one-roof{width:10.3125rem;height:2.625rem}.section-chain__brand--time-out{width:8.3125rem;height:1.875rem}.section-chain__brand--nzh-premium{width:10.625rem;height:3.1875rem}.section-chain__brand--eatwell{width:8.8125rem;height:2.25rem}.section-chain__brand--the-country{width:14.3125rem;height:2.625rem}.section-chain .story-card--has-label::before{top:-0.0625rem}.section-chain .story-card__label{top:-0.0625rem}.section-chain .story-card--headline,.section-chain .story-card--headline-image-small{padding-bottom:0.625rem;border-bottom:1px solid #d5d5d5}.section-chain__heading{margin-top:0;font-weight:300;font-size:1.875rem;font-family:"Stag","Georgia",serif;text-align:center;border-bottom:none}@media (min-width: 576px){.section-chain__heading{margin-left:0.625rem;text-align:left}}@media (min-width: 768px){.section-chain__heading{margin-left:0}}.section-chain__heading--has-label .section-chain__heading-link{font-style:italic;border-bottom:1px solid #d5d5d5}@media (min-width: 576px){.section-chain__heading--has-label .section-chain__heading-link{padding-right:3.125rem}}.section-chain__heading-label{display:block;font-weight:700}@media (min-width: 576px){.section-chain__heading-label{display:inline;margin-right:1.25rem}}.section-chain__heading-link--default{color:inherit}@media (min-width: 992px){.section-chain .section-chain__wrapper--has-sidebar,.section-chain .section-chain__wrapper--has-sidebar-left{display:flex;flex-wrap:wrap;align-items:flex-start}}@media (min-width: 992px){.section-chain .section-chain__wrapper--has-sidebar .chain-sidebar{margin-left:1.25rem}}@media (min-width: 768px){.section-chain .section-chain__wrapper--has-sidebar-left .chain-main{order:2}}@media (min-width: 768px){.section-chain .section-chain__wrapper--has-sidebar-left .chain-sidebar{order:1;margin-right:1.25rem}}.section-chain--white-text{color:#fff}.section-chain--white-text .section-chain__header,.section-chain--white-text .section-chain__heading,.section-chain--white-text .story-card__kicker,.section-chain--white-text .story-card__subkicker,.section-chain--white-text .story-card__subkicker-separator,.section-chain--white-text .story-card__heading,.section-chain--white-text .story-card__heading__link,.section-chain--white-text .story-card .meta-data{color:inherit}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper{display:flex;flex-wrap:wrap}}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card'],.section-chain--triple-image .section-chain__wrapper .ad{flex-basis:calc(100% / 3 - 1.25rem * 2 / 3)}}.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:not(:first-of-type),.section-chain--triple-image .section-chain__wrapper .ad:not(:first-of-type){margin-top:1.25rem}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:not(:first-of-type),.section-chain--triple-image .section-chain__wrapper .ad:not(:first-of-type){margin-top:0}}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:not(:nth-of-type(3n+1)),.section-chain--triple-image .section-chain__wrapper .ad:not(:nth-of-type(3n+1)){margin-left:1.25rem}}@media (min-width: 768px){.section-chain--triple-image .section-chain__wrapper article[class^='story-card']:nth-of-type(n+4),.section-chain--triple-image .section-chain__wrapper .ad:nth-of-type(n+4){margin-top:1.25rem}}@media (max-width: 767px){.section-chain--subhero .section-chain__wrapper .chain-sidebar,.section-chain--gallery-hero .section-chain__wrapper .chain-sidebar{margin-top:1.25rem}}.section-chain--image-row .section-chain__wrapper .story-card .meta-data,.section-chain--hero-left .section-chain__wrapper .story-card .meta-data,.section-chain--quad-small-image .section-chain__wrapper .story-card .meta-data{display:block}.section-chain--image-row .section-chain__wrapper .story-card .meta-data__read-time,.section-chain--hero-left .section-chain__wrapper .story-card .meta-data__read-time,.section-chain--quad-small-image .section-chain__wrapper .story-card .meta-data__read-time{margin-top:0.3125rem}@media (min-width: 576px){.section-chain--image-row .section-chain__wrapper .story-card__image-link,.section-chain--hero-left .section-chain__wrapper .story-card__image-link,.section-chain--quad-small-image .section-chain__wrapper .story-card__image-link{padding-top:0}}@media (min-width: 768px){.section-chain--carousel{padding:0}}@media (min-width: 576px){.section-chain--carousel .section-chain__heading{margin-left:0}}.section-chain--carousel .section-chain__header{margin-right:auto;margin-left:auto}@media (min-width: 576px){.section-chain--carousel .section-chain__header{width:calc(100% - 1.25rem * 2 - 5.625rem)}}@media (min-width: 992px){.section-chain--carousel .section-chain__header{max-width:57.75rem}}.section-chain--carousel .section-chain__wrapper{margin:0 auto}@media (min-width: 576px){.section-chain--carousel .section-chain__wrapper{width:calc(100% - 1.25rem * 2 - 4.5rem);padding:0}}.section-chain--carousel .section-chain__wrapper .story-card{border-bottom:none}.section-chain--hero-left{padding-top:1.25rem;padding-bottom:1.25rem}.section-chain--hero-left .section-chain__wrapper{display:flex;flex-wrap:wrap;align-items:flex-start}.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem);margin-top:1.25rem}@media (min-width: 768px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem / 2 - 0.0625rem / 2)}}@media (min-width: 992px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']{flex-basis:140px;max-width:8.75rem;margin-top:0;margin-left:1.25rem}}.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:first-of-type{flex-basis:100%;max-width:100%;margin-top:0;margin-left:0}@media (min-width: 992px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:first-of-type{flex-basis:620px}}.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:last-of-type{margin-left:calc(1.25rem / 2)}@media (min-width: 768px){.section-chain--hero-left .section-chain__wrapper>article[class^='story-card']:last-of-type{margin-left:1.25rem}}.section-chain--image-row .section-chain__wrapper,.section-chain--quad-small-image .section-chain__wrapper{display:flex;flex-wrap:wrap}.section-chain--image-row .section-chain__wrapper>article[class^='story-card'],.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 2 - 1.25rem);border-bottom:none}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card'],.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']{flex-basis:calc(100% / 3 - 1.25rem * 2 / 3);margin-left:1.25rem}}@media (min-width: 992px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card'],.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']{flex-basis:140px}}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:first-of-type,.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:first-of-type{margin-left:0}}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(4){margin-left:0}}@media (min-width: 992px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(4){margin-left:1.25rem}}.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3){margin-top:calc(1.25rem / 2)}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+3){margin-top:0}}@media (min-width: 768px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4){margin-top:1.25rem}}@media (min-width: 992px){.section-chain--image-row .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4),.section-chain--quad-small-image .section-chain__wrapper>article[class^='story-card']:nth-of-type(n+4){margin-top:0}}.section-chain--quad-small-image .section-chain__wrapper .ad{margin-top:1.25rem}@media (max-width: 767px){.section-chain--quad-small-image .section-chain__wrapper .ad{display:flex;flex-basis:100%;justify-content:center}}@media (min-width: 768px){.section-chain--quad-small-image .section-chain__wrapper .ad{margin-left:1.25rem}}@media (min-width: 992px){.section-chain--quad-small-image .section-chain__wrapper .ad{margin-top:0}}@media (min-width: 768px){.section-chain--gallery-hero+.section-chain--triple-image{margin-top:0}}.section-chain .placeholder{position:relative;border-bottom:none}.section-chain .placeholder--name-tip{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.section-chain .placeholder--container{box-sizing:border-box;width:100%;background-color:#f5f5f5;border:1px #d5d5d5 solid;border-radius:4px}.breaking-news+.section-chain{margin-top:0}@media (min-width: 768px){.breaking-news+.section-chain{margin-top:1.25rem}}@media (max-width: 991px){.section-chain-with-native .box-ad{display:block}}@media (min-width: 768px) and (max-width: 991px){.section-chain-with-native .box-ad{float:right;width:50%}}@media (min-width: 992px){.section-chain-with-native .box-ad .ad-container{position:absolute;z-index:2;justify-content:center;width:300px}}@media (min-width: 768px){.section-chain-with-native--subhero .chain-main-triple{display:flex;flex-wrap:wrap}}@media all and (min-width: 768px) and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: none){.section-chain-with-native--subhero .chain-main-triple{flex:1 0 100%}}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple>:not(:nth-child(3n+1)),.section-chain-with-native--subhero .chain-main-triple .non-stack>:not(:nth-child(2n+1)){margin-left:1.25rem}}.section-chain-with-native--subhero .chain-main-triple article[class^='story-card'],.section-chain-with-native--subhero .chain-main-triple .ad{flex-basis:100%;margin-top:1.25rem}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple article[class^='story-card'],.section-chain-with-native--subhero .chain-main-triple .ad{flex-basis:300px}.section-chain-with-native--subhero .chain-main-triple article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main-triple .ad:not(:first-of-type){margin-top:1.25rem}}.section-chain-with-native--subhero .chain-main-triple article[class^='story-card']:not(:first-of-type),.section-chain-with-native--subhero .chain-main-triple .ad:not(:first-of-type){margin-top:1.25rem}.section-chain-with-native--subhero .chain-main-triple .blank{border-bottom:0}@media (max-width: 991px){.section-chain-with-native--subhero .chain-main-triple .blank{display:none}}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple .stack{flex-basis:calc(100% / 3 - 1.5rem)}}.section-chain-with-native--subhero .chain-main-triple .stack article[class^='story-card']:first-of-type:not(.story-card--has-label) .story-card__kicker-wrapper{padding-top:0}.section-chain-with-native--subhero .chain-main-triple .stack article[class^='story-card']:nth-of-type(n+2){margin-top:0}.section-chain-with-native--subhero .chain-main-triple .non-stack{display:flex;flex-wrap:wrap}@media all and (-ms-high-contrast: active), (-ms-high-contrast: none){.section-chain-with-native--subhero .chain-main-triple .non-stack{flex:1 0 100%}}@media (min-width: 992px){.section-chain-with-native--subhero .chain-main-triple .non-stack{flex-basis:100%}}.section-chain-with-native--subhero .chain-main-triple .non-stack article[class^='story-card']{margin-top:0}.sidebar{position:fixed;top:4.0625rem;bottom:0;left:-100%;z-index:5;display:none;width:100%;background-color:#121617}@media (min-width: 576px){.sidebar{position:absolute;display:block;width:18.75rem}}@media (min-width: 576px) and (max-width: 1199px){.sidebar{transform:translateX(-100%)}}.sidebar .nav-control-overlay{position:absolute;left:18.75rem;width:calc(100vw - 18.75rem);height:100%;background-color:#000;opacity:0;transition-delay:0.3s;transition-duration:0.5s;transition-property:opacity}@media (max-width: 575px){.sidebar .nav-control-overlay{display:none}}@media (min-width: 1200px){.sidebar .nav-control-overlay{display:none;width:calc(68.75rem - 18.75rem)}}@media (min-width: 576px) and (max-width: 1399px){.container--sidebar-is-active .sidebar .nav-control-overlay{display:block;opacity:0.5}}.sidebar__date{display:block;margin:0 auto;padding:0.625rem 0;color:#fff;font-weight:600;text-align:center;border-top:2px solid #23292a;border-bottom:2px solid #23292a}.sidebar__search{display:flex;align-items:center;justify-content:center;padding:0.625rem 0}@media (min-width: 576px){.sidebar__search{display:none}}.sidebar__search-input{width:0rem;height:1.875rem;padding-left:0.625rem;color:#fff;font-weight:300;font-size:0.875rem;background-color:#313c3d;border:0;opacity:0;transition:width 0.1s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}.sidebar__search-input::-webkit-input-placeholder{color:#fff}.sidebar__search-input::-moz-placeholder{color:#fff}.sidebar__search-input:-ms-input-placeholder{color:#fff}.sidebar__search-input::-ms-input-placeholder{color:#fff}.sidebar__search-input::placeholder{color:#fff}.sidebar__search-submit{width:2rem;height:2rem;padding:0;color:#fff;background-color:#313c3d;border:1px solid #313c3d;border-radius:0.125rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}.sidebar__search-submit:hover{border-color:#fff}.sidebar__search-icon{width:0.875rem;height:0.875rem;margin:auto}.sidebar__search-is-active .sidebar__search-input{width:calc(100% - 2rem);opacity:1}.sidebar__search-is-active .sidebar__search-submit{border-color:#fff}.sidebar+.main{margin-top:4.0625rem}@media (min-width: 576px){.sidebar+.main{margin-top:0}}.container--sidebar-is-active .sidebar{left:0;display:block}@media (max-width: 575px){.container--sidebar-is-active .sidebar{height:calc(100vh - 4.0625rem);overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}}@media (min-width: 576px){.container--sidebar-is-active .sidebar{transform:translateX(0);transition:transform 0.2s ease;transition-duration:0.3s}}@media (min-width: 1400px){.container--sidebar-is-active .sidebar{transition-delay:0.3s}}@media (max-width: 575px){.container--sidebar-is-active .sidebar--is-fixed{height:100vh;overflow:hidden}}@media (max-width: 575px){.body--sm-sidebar-is-active{position:fixed;overflow:hidden}}@media print{.sidebar{display:none !important}}.subnavigation{position:relative}.subnavigation__item-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#313c3d}@media (max-width: 575px){.subnavigation__item-wrapper{position:fixed;top:4.0625rem;height:calc(100vh - 4.0625rem);overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;scroll-behavior:smooth;transform:translateX(100%);opacity:0;transition:transform, opacity 0.2s}}@media (min-width: 576px){.subnavigation__item-wrapper{bottom:0;display:none;width:75%}}@media (max-width: 575px){.subnavigation__item-wrapper--is-active{z-index:6;transform:translateX(0);opacity:1;transition:0.2s transform, opacity ease-in-out}}@media (min-width: 576px){.subnavigation__item-wrapper--is-active{left:100%;display:block}}.subnavigation__button-close{margin-top:0.625rem;color:#fff;background-color:transparent;border:none;transform:rotate(180deg);cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (min-width: 576px){.subnavigation__button-close{display:none}}.subnavigation__button-close .navigation__item-icon{color:#fff;border-color:#fff}.subnavigation__item-link{display:block;padding:0.625rem 1.5625rem;color:#fff;font-weight:400;font-family:"Stag","Georgia",serif;background-color:#313c3d;transition:all 0.2s}@media (min-width: 576px){.subnavigation__item-link{font-size:1rem}}.subnavigation__item-link:hover,.subnavigation__item-link:focus{color:#dce1e2;opacity:1}@media (min-width: 576px){.subnavigation__item-link:first-of-type{padding-top:0.9375rem}}@media (max-width: 575px){.subnavigation__item-link:last-of-type{margin-bottom:7.5rem}}.subnavigation:hover{background-color:#313c3d}.weather-widget{margin:2.5rem auto;padding-right:0.625rem;padding-left:0.625rem}@media (min-width: 576px){.weather-widget{max-width:58.75rem}}@media (min-width: 992px){.weather-widget{padding-right:0;padding-left:0}}@media (min-width: 576px){.weather-widget__header{position:relative;width:100%;text-align:center}}.weather-widget__heading{color:#38a3d7;font-weight:300;font-size:2.1875rem;text-align:center}@media (min-width: 576px){.weather-widget__heading{margin:0 auto}}.weather-widget__select{width:100%;height:2.1875rem;padding-right:0.625rem;padding-left:0.625rem;font-weight:300;font-size:0.875rem;background-color:#fff;background-image:url(/pf/resources/dist/fonts/chevron-dropdown.svg?d=153);background-repeat:no-repeat;background-position:center right 0.625rem;border:1px solid #d5d5d5;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (max-width: 575px){.weather-widget__select{margin:0.625rem auto 0}}@media (min-width: 576px){.weather-widget__select{position:absolute;top:0;left:0;width:calc(100% / 3 - 1.875rem / 2)}}.weather-widget__select::-ms-expand{display:none}.weather-widget__option{font-weight:300}@media (min-width: 576px){.weather-widget__forecasts{display:flex;align-items:center;justify-content:space-between}}.weather-widget__forecasts.enter{position:absolute;top:-999999px;opacity:0.01}.weather-widget__forecasts.enter-active{opacity:1;transition:opacity 0.3s}.weather-widget__forecasts.exit{opacity:1}.weather-widget__forecasts.exit-active{opacity:0.01;transition:opacity 0.3s}.weather-widget .day-forecast{margin-top:1.875rem}@media (max-width: 575px){.weather-widget .day-forecast{margin-right:0.3125rem;margin-left:0.3125rem}}@media (min-width: 576px){.weather-widget .day-forecast{flex-basis:calc(100% / 3 - 1.875rem * 2 / 3)}}@media (min-width: 576px){.weather-widget .day-forecast:not(:nth-of-type(3n+1)){margin-left:1.875rem}}body{background-color:#f5f5f5}.fusion-app{width:100%;margin:0 auto}@media (min-width: 1200px){.fusion-app{max-width:68.75rem;transition:max-width 0.2s ease}}.fusion-app--sidebar-is-active{max-width:calc(68.75rem + 18.75rem);transition:max-width 0.2s ease}.fusion-app--shorthand-page,.fusion-app--myaccount-page{max-width:100%}.fusion-app--myaccount-page{background-color:#121617}.container{position:relative;width:100%;margin:0 auto;background-color:#fff}@media (min-width: 576px) and (max-width: 991px){.container{overflow:hidden}}@media (min-width: 1200px){.container{max-width:68.75rem;transition:max-width 0.2s ease}}@media (min-width: 1400px){.container .main{position:static;width:68.75rem}}@media (min-width: 576px){.container .main,.container .footer{position:relative}}@media (min-width: 1400px){.container .main,.container .footer{transition:margin-left 0.2s ease}}@media (min-width: 1400px){.container--sidebar-is-active{max-width:1400px;transition:max-width 0.2s ease}}@media (min-width: 1400px){.container--sidebar-is-active .footer{width:calc(100% - 5rem * 2 - 18.75rem)}}@media (min-width: 1400px){.container--sidebar-is-active .main,.container--sidebar-is-active .footer{margin-left:18.75rem;transition:margin-left 0.2s ease}}.container--shorthand-page{max-width:100%}@media (min-width: 1200px){.container--shorthand-page{max-width:100%}}.container--shorthand-page .header{z-index:101}.container--shorthand-page .main,.container--shorthand-page .header,.container--shorthand-page .footer{width:100%}.container--shorthand-page .footer{box-sizing:border-box}.container--shorthand-page.container--sidebar-is-active .main{position:relative;transform:none}@media (min-width: 1400px){.container--shorthand-page.container--sidebar-is-active .main,.container--shorthand-page.container--sidebar-is-active .footer{width:calc(100vw - 18.75rem)}}@media (min-width: 576px){.container--shorthand-page.container--sidebar-is-active main::before,.container--shorthand-page.container--sidebar-is-active footer::before{z-index:102}}.container--shorthand-page.container--sidebar-is-active .sidebar{z-index:103}.container--shorthand-page.container--sidebar-is-active .navigation__item-icon{width:1rem;height:1rem}.container--myaccount-page{width:100%;background:#fff;background-repeat:no-repeat;background-size:cover}@media (min-width: 576px){.container--myaccount-page{background-image:url("https://media.nzherald.co.nz/registration/src/img/gisborne-weather-background_sm.jpg")}}@media (min-width: 1200px){.container--myaccount-page{max-width:100%}}.container--myaccount-page .main{width:100%;min-height:calc(100vh - 4.0625rem)}.section-sport{color:#50ac47}.section-sport-bg-color{background-color:#50ac47}.section-sport-shade-bg-color{background-color:#3c8135}.section-sport-bg-color-on-hover:hover{background-color:#50ac47}.section-sport-border-color{border-color:#50ac47}.section-sport-shade-border-color{border-color:#3c8135}.section-business{color:#394190}.section-business-bg-color{background-color:#394190}.section-business-shade-bg-color{background-color:#2e3045}.section-business-bg-color-on-hover:hover{background-color:#394190}.section-business-border-color{border-color:#394190}.section-business-shade-border-color{border-color:#2e3045}.section-national{color:#38a3d7}.section-national-bg-color{background-color:#38a3d7}.section-national-shade-bg-color{background-color:#2b7199}.section-national-bg-color-on-hover:hover{background-color:#38a3d7}.section-national-border-color{border-color:#38a3d7}.section-national-shade-border-color{border-color:#2b7199}.section-new-zealand{color:#38a3d7}.section-new-zealand-bg-color{background-color:#38a3d7}.section-new-zealand-shade-bg-color{background-color:#2b7199}.section-new-zealand-bg-color-on-hover:hover{background-color:#38a3d7}.section-new-zealand-border-color{border-color:#38a3d7}.section-new-zealand-shade-border-color{border-color:#2b7199}.section-world{color:#3374ba}.section-world-bg-color{background-color:#3374ba}.section-world-shade-bg-color{background-color:#255589}.section-world-bg-color-on-hover:hover{background-color:#3374ba}.section-world-border-color{border-color:#3374ba}.section-world-shade-border-color{border-color:#255589}.section-entertainment{color:#a43f82}.section-entertainment-bg-color{background-color:#a43f82}.section-entertainment-shade-bg-color{background-color:#752d5d}.section-entertainment-bg-color-on-hover:hover{background-color:#a43f82}.section-entertainment-border-color{border-color:#a43f82}.section-entertainment-shade-border-color{border-color:#752d5d}.section-lifestyle{color:#de2363}.section-lifestyle-bg-color{background-color:#de2363}.section-lifestyle-shade-bg-color{background-color:#ae1b4e}.section-lifestyle-bg-color-on-hover:hover{background-color:#de2363}.section-lifestyle-border-color{border-color:#de2363}.section-lifestyle-shade-border-color{border-color:#ae1b4e}.section-technology{color:#ef5633}.section-technology-bg-color{background-color:#ef5633}.section-technology-shade-bg-color{background-color:#c1462a}.section-technology-bg-color-on-hover:hover{background-color:#ef5633}.section-technology-border-color{border-color:#ef5633}.section-technology-shade-border-color{border-color:#c1462a}.section-travel{color:#f47d22}.section-travel-bg-color{background-color:#f47d22}.section-travel-shade-bg-color{background-color:#c7661c}.section-travel-bg-color-on-hover:hover{background-color:#f47d22}.section-travel-border-color{border-color:#f47d22}.section-travel-shade-border-color{border-color:#c7661c}.section-property{color:#30bdb0}.section-property-bg-color{background-color:#30bdb0}.section-property-shade-bg-color{background-color:#259389}.section-property-bg-color-on-hover:hover{background-color:#30bdb0}.section-property-border-color{border-color:#30bdb0}.section-property-shade-border-color{border-color:#259389}.section-northern-advocate{color:#808285}.section-northern-advocate-bg-color{background-color:#808285}.section-northern-advocate-shade-bg-color{background-color:#5f5f5f}.section-northern-advocate-bg-color-on-hover:hover{background-color:#808285}.section-northern-advocate-border-color{border-color:#808285}.section-northern-advocate-shade-border-color{border-color:#5f5f5f}.section-bay-of-plenty-times{color:#0063a4}.section-bay-of-plenty-times-bg-color{background-color:#0063a4}.section-bay-of-plenty-times-shade-bg-color{background-color:#0c4d7e}.section-bay-of-plenty-times-bg-color-on-hover:hover{background-color:#0063a4}.section-bay-of-plenty-times-border-color{border-color:#0063a4}.section-bay-of-plenty-times-shade-border-color{border-color:#0c4d7e}.section-waikato-news{color:#8b080d}.section-waikato-news-bg-color{background-color:#8b080d}.section-waikato-news-shade-bg-color{background-color:#720a0d}.section-waikato-news-bg-color-on-hover:hover{background-color:#8b080d}.section-waikato-news-border-color{border-color:#8b080d}.section-waikato-news-shade-border-color{border-color:#720a0d}.section-hawkes-bay-today{color:#0e76bc}.section-hawkes-bay-today-bg-color{background-color:#0e76bc}.section-hawkes-bay-today-shade-bg-color{background-color:#0f5b90}.section-hawkes-bay-today-bg-color-on-hover:hover{background-color:#0e76bc}.section-hawkes-bay-today-border-color{border-color:#0e76bc}.section-hawkes-bay-today-shade-border-color{border-color:#0f5b90}.section-kapiti-news{color:#30638b}.section-kapiti-news-bg-color{background-color:#30638b}.section-kapiti-news-shade-bg-color{background-color:#264c6a}.section-kapiti-news-bg-color-on-hover:hover{background-color:#30638b}.section-kapiti-news-border-color{border-color:#30638b}.section-kapiti-news-shade-border-color{border-color:#264c6a}.section-manawatu-guardian{color:#088b6c}.section-manawatu-guardian-bg-color{background-color:#088b6c}.section-manawatu-guardian-shade-bg-color{background-color:#0d6a53}.section-manawatu-guardian-bg-color-on-hover:hover{background-color:#088b6c}.section-manawatu-guardian-border-color{border-color:#088b6c}.section-manawatu-guardian-shade-border-color{border-color:#0d6a53}.section-rotorua-daily-post{color:#8b080d}.section-rotorua-daily-post-bg-color{background-color:#8b080d}.section-rotorua-daily-post-shade-bg-color{background-color:#720a0d}.section-rotorua-daily-post-bg-color-on-hover:hover{background-color:#8b080d}.section-rotorua-daily-post-border-color{border-color:#8b080d}.section-rotorua-daily-post-shade-border-color{border-color:#720a0d}.section-stratford-press{color:#8b080d}.section-stratford-press-bg-color{background-color:#8b080d}.section-stratford-press-shade-bg-color{background-color:#6e0d10}.section-stratford-press-bg-color-on-hover:hover{background-color:#8b080d}.section-stratford-press-border-color{border-color:#8b080d}.section-stratford-press-shade-border-color{border-color:#6e0d10}.section-aucklander{color:#8b080d}.section-aucklander-bg-color{background-color:#8b080d}.section-aucklander-shade-bg-color{background-color:#760709}.section-aucklander-bg-color-on-hover:hover{background-color:#8b080d}.section-aucklander-border-color{border-color:#8b080d}.section-aucklander-shade-border-color{border-color:#760709}.section-the-country{color:#469031}.section-the-country-bg-color{background-color:#469031}.section-the-country-shade-bg-color{background-color:#346a24}.section-the-country-bg-color-on-hover:hover{background-color:#469031}.section-the-country-border-color{border-color:#469031}.section-the-country-shade-border-color{border-color:#346a24}.section-whanganui-chronicle{color:#084a7a}.section-whanganui-chronicle-bg-color{background-color:#084a7a}.section-whanganui-chronicle-shade-bg-color{background-color:#053658}.section-whanganui-chronicle-bg-color-on-hover:hover{background-color:#084a7a}.section-whanganui-chronicle-border-color{border-color:#084a7a}.section-whanganui-chronicle-shade-border-color{border-color:#053658}.section-northland-age{color:#8c163d}.section-northland-age-bg-color{background-color:#8c163d}.section-northland-age-shade-bg-color{background-color:#6c1331}.section-northland-age-bg-color-on-hover:hover{background-color:#8c163d}.section-northland-age-border-color{border-color:#8c163d}.section-northland-age-shade-border-color{border-color:#6c1331}.section-horowhenua-chronicle{color:#0063a4}.section-horowhenua-chronicle-bg-color{background-color:#0063a4}.section-horowhenua-chronicle-shade-bg-color{background-color:#0e4b79}.section-horowhenua-chronicle-bg-color-on-hover:hover{background-color:#0063a4}.section-horowhenua-chronicle-border-color{border-color:#0063a4}.section-horowhenua-chronicle-shade-border-color{border-color:#0e4b79}.section-te-awamutu-courier{color:#1e9043}.section-te-awamutu-courier-bg-color{background-color:#1e9043}.section-te-awamutu-courier-shade-bg-color{background-color:#216e3a}.section-te-awamutu-courier-bg-color-on-hover:hover{background-color:#1e9043}.section-te-awamutu-courier-border-color{border-color:#1e9043}.section-te-awamutu-courier-shade-border-color{border-color:#216e3a}.section-default{color:#121617}.section-default-bg-color{background-color:#121617}.section-default-shade-bg-color{background-color:#313c3d}.section-default-bg-color-on-hover:hover{background-color:#121617}.section-default-border-color{border-color:#121617}.section-default-shade-border-color{border-color:#313c3d}.section-newstalk-zb{color:#00beeb}.section-newstalk-zb-bg-color{background-color:#00beeb}.section-newstalk-zb-bg-color-on-hover:hover{background-color:#00beeb}.section-newstalk-zb-border-color{border-color:#00beeb}.section-the-vision-is-clear{color:#009290}.section-the-vision-is-clear-bg-color{background-color:#009290}.section-the-vision-is-clear-shade-bg-color{background-color:#2ca3a1}.section-the-vision-is-clear-bg-color-on-hover:hover{background-color:#009290}.section-the-vision-is-clear-border-color{border-color:#009290}.section-the-vision-is-clear-shade-border-color{border-color:#2ca3a1}.section-trailblazers{color:#6e2053}.section-trailblazers-bg-color{background-color:#6e2053}.section-trailblazers-shade-bg-color{background-color:#313c3d}.section-trailblazers-bg-color-on-hover:hover{background-color:#6e2053}.section-trailblazers-border-color{border-color:#6e2053}.section-trailblazers-shade-border-color{border-color:#313c3d}.section-eatwell{color:#c33857}.section-eatwell-bg-color{background-color:#c33857}.section-eatwell-shade-bg-color{background-color:#9a223c}.section-eatwell-bg-color-on-hover:hover{background-color:#c33857}.section-eatwell-border-color{border-color:#c33857}.section-eatwell-shade-border-color{border-color:#9a223c}.section-recipes{color:#c33857}.section-recipes-bg-color{background-color:#c33857}.section-recipes-shade-bg-color{background-color:#9a223c}.section-recipes-bg-color-on-hover:hover{background-color:#c33857}.section-recipes-border-color{border-color:#c33857}.section-recipes-shade-border-color{border-color:#9a223c}.section-food-news{color:#c33857}.section-food-news-bg-color{background-color:#c33857}.section-food-news-shade-bg-color{background-color:#9a223c}.section-food-news-bg-color-on-hover:hover{background-color:#c33857}.section-food-news-border-color{border-color:#c33857}.section-food-news-shade-border-color{border-color:#9a223c}.section-premium{color:#ecac0c}.section-premium-bg-color{background-color:#ecac0c}.section-premium-bg-color-on-hover:hover{background-color:#ecac0c}.section-premium-border-color{border-color:#ecac0c}.section-fallback{color:#333c3d}.section-fallback-bg-color{background-color:#333c3d}.section-fallback-bg-color-on-hover:hover{background-color:#333c3d}.section-fallback-border-color{border-color:#333c3d}.section-primary{color:#1c2122}.section-primary-bg-color{background-color:#1c2122}.section-secondary{color:#f5f5f5}.section-secondary-bg-color{background-color:#f5f5f5}@-webkit-keyframes ball-spin-fade-loader{50%{opacity:0.3;transform:scale(0.4)}100%{opacity:1;transform:scale(1)}}@keyframes ball-spin-fade-loader{50%{opacity:0.3;transform:scale(0.4)}100%{opacity:1;transform:scale(1)}}.ball-spin-fade-loader{position:relative;top:-10px;left:-10px}.ball-spin-fade-loader>div:nth-child(1){top:25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.96s infinite linear;animation:ball-spin-fade-loader 1s -.96s infinite linear}.ball-spin-fade-loader>div:nth-child(2){top:17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.84s infinite linear;animation:ball-spin-fade-loader 1s -.84s infinite linear}.ball-spin-fade-loader>div:nth-child(3){top:0;left:25px;-webkit-animation:ball-spin-fade-loader 1s -.72s infinite linear;animation:ball-spin-fade-loader 1s -.72s infinite linear}.ball-spin-fade-loader>div:nth-child(4){top:-17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.6s infinite linear;animation:ball-spin-fade-loader 1s -.6s infinite linear}.ball-spin-fade-loader>div:nth-child(5){top:-25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.48s infinite linear;animation:ball-spin-fade-loader 1s -.48s infinite linear}.ball-spin-fade-loader>div:nth-child(6){top:-17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.36s infinite linear;animation:ball-spin-fade-loader 1s -.36s infinite linear}.ball-spin-fade-loader>div:nth-child(7){top:0;left:-25px;-webkit-animation:ball-spin-fade-loader 1s -.24s infinite linear;animation:ball-spin-fade-loader 1s -.24s infinite linear}.ball-spin-fade-loader>div:nth-child(8){top:17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.12s infinite linear;animation:ball-spin-fade-loader 1s -.12s infinite linear}.ball-spin-fade-loader>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute}

