﻿/* offside-js 1.4.0 26-03-2018
* Minimal JavaScript kit without library dependencies to push things off-canvas using just class manipulation
* https://github.com/toomuchdesign/offside.git
*
* by Andrea Carraro
* Available under the MIT license
*/

/* Off-canvas element CSS */
.offside {
    position: fixed; /* Does not play well with some old browsers (see: README) */
    width: 200px;
    height: 100%;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

/* Left off-canvas elements default status: out of the page */
.offside,
.offside--left {
    left: -200px;
}

/* Right off-canvas elements default status: out of the page */
.offside--right {
    left: auto;
    right: -200px;
}

/*
 * Left off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--left.is-open,
.offside-js--is-left .offside-sliding-element {
    -webkit-transform: translate3d(200px, 0, 0);
    -moz-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    -o-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
}

/*
 * Right off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--right.is-open,
.offside-js--is-right .offside-sliding-element {
    -webkit-transform: translate3d(-200px, 0, 0);
    -moz-transform: translate3d(-200px, 0, 0);
    -ms-transform: translate3d(-200px, 0, 0);
    -o-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
}

/* Elements Transitions */
.offside-js--interact .offside,
.offside-js--interact .offside-sliding-element {
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
    
    /* improves performance issues on mobile*/
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

/* Body overflow */
.offside-js--init {
    overflow-x: hidden;
}



/* Fallback movements for browser not supporting CSS 3d Transitions
----------------------------------------------- */

/* Modernizr false negative csstransforms3d fix, reset CSS 3d Transitions */
.no-csstransforms3d .offside {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.no-csstransforms3d .offside-sliding-element {
    overflow-x: hidden;
    position: relative;
}

/* Element is open: off-canvas element slides in */
.no-csstransforms3d .offside--left.is-open {
    left: 0;
}

.no-csstransforms3d .offside--right.is-open {
    right: 0;
}

/* Element is open: container elements slide out */
.no-csstransforms3d > .offside-js--is-left .offside-sliding-element {
    right: -200px;
}

.no-csstransforms3d > .offside-js--is-right .offside-sliding-element {
    left: -200px;
}
/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #399998;--teal: #20c997;--cyan: #17a2b8;--white: #ffffff;--gray: #6c757d;--gray-dark: #343a40;--primary: #399998;--secondary: #ffffff;--success: #399998;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(61,66,75,0)}article,figcaption,figure,footer,header,main,nav{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5{margin-top:0;margin-bottom:.75rem}p{margin-top:0;margin-bottom:1rem}ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}a{color:#3d424b;text-decoration:none;background-color:rgba(0,0,0,0)}a:hover{color:#399998;text-decoration:none}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{margin-bottom:.75rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}hr{margin-top:1.5rem;margin-bottom:1.5rem;border:0;border-top:1px solid rgba(61,66,75,.1)}small,.small{font-size:0.875em;font-weight:400}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.blockquote{margin-bottom:1.5rem;font-size:1.25rem}.img-fluid{max-width:100%;height:auto}.figure{display:inline-block}.container,.container-fluid{width:100%;padding-right:0;padding-left:0;margin-right:auto;margin-left:auto}@media(min-width: 576px){.container{max-width:540px}}@media(min-width: 768px){.container{max-width:720px}}@media(min-width: 992px){.container{max-width:960px}}@media(min-width: 1200px){.container{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:0;margin-left:0}.col-xl-3,.col-lg-12,.col-lg-9,.col-lg-6,.col-lg-4,.col-md-10,.col-md-6,.col-sm-12,.col,.col-12,.col-10,.col-6{position:relative;width:100%;padding-right:0;padding-left:0}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-6{flex:0 0 50%;max-width:50%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-12{flex:0 0 100%;max-width:100%}@media(min-width: 576px){.col-sm-12{flex:0 0 100%;max-width:100%}}@media(min-width: 768px){.col-md-6{flex:0 0 50%;max-width:50%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}}@media(min-width: 992px){.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-12{flex:0 0 100%;max-width:100%}}@media(min-width: 1200px){.col-xl-3{flex:0 0 25%;max-width:25%}}.table{width:100%;margin-bottom:1.5rem;color:#212529}.table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:rgba(0,0,0,0);border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#81d0cf;outline:0;box-shadow:0 0 0 .2rem rgba(57,153,152,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{appearance:none}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}textarea.form-control{height:auto}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(57,153,152,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled{pointer-events:none}.btn-primary{color:#fff;background-color:#399998;border-color:#399998}.btn-primary:hover{color:#fff;background-color:#2f7d7c;border-color:#2b7473}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#2f7d7c;border-color:#2b7473;box-shadow:0 0 0 .2rem rgba(87,168,167,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#399998;border-color:#399998}.btn-primary:not(:disabled):not(.disabled):active{color:#fff;background-color:#2b7473;border-color:#286b6a}.btn-primary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2rem rgba(87,168,167,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.dropdown,.header .menu-item-has-children{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu,.header .sub-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(61,66,75,.15);border-radius:.25rem}.dropdown-item,.header .sub-menu .menu-item a{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.header .sub-menu .menu-item a:hover,.dropdown-item:focus,.header .sub-menu .menu-item a:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item:active,.header .sub-menu .menu-item a:active{color:#fff;text-decoration:none;background-color:#399998}.dropdown-item.disabled,.header .sub-menu .menu-item a.disabled,.dropdown-item:disabled,.header .sub-menu .menu-item a:disabled{color:#adb5bd;pointer-events:none;background-color:rgba(0,0,0,0)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.form-control:focus{z-index:3}.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append{display:flex}.input-group-append .btn{position:relative;z-index:2}.input-group-append .btn:focus{z-index:3}.input-group-append .btn+.btn{margin-left:-1px}.input-group-append{margin-left:-1px}.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(61,66,75,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:.25rem}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#3d424b;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#3d424b;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:rgba(0,0,0,0);border:0}a.close.disabled{pointer-events:none}@keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.bg-transparent{background-color:rgba(0,0,0,0) !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-0{border:0 !important}.rounded-circle{border-radius:50% !important}.d-none{display:none !important}.d-block{display:block !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}@media(min-width: 768px){.d-md-flex{display:flex !important}}@media(min-width: 992px){.d-lg-none{display:none !important}}@media(min-width: 1200px){.d-xl-none{display:none !important}.d-xl-flex{display:flex !important}}.flex-row{flex-direction:row !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.align-items-center{align-items:center !important}.align-self-center{align-self:center !important}@media(min-width: 768px){.align-items-md-center{align-items:center !important}}@media(min-width: 1200px){.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}}.float-left{float:left !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(61,66,75,.075) !important}.shadow{box-shadow:0 .5rem 1rem rgba(61,66,75,.15) !important}.w-100{width:100% !important}.h-100{height:100% !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mb-0{margin-bottom:0 !important}.my-1{margin-top:.375rem !important}.mr-1,.mx-1{margin-right:.375rem !important}.mb-1,.my-1{margin-bottom:.375rem !important}.mx-1{margin-left:.375rem !important}.m-2{margin:.75rem !important}.mt-2,.my-2{margin-top:.75rem !important}.mr-2,.mx-2{margin-right:.75rem !important}.mb-2,.my-2{margin-bottom:.75rem !important}.mx-2{margin-left:.75rem !important}.mt-3{margin-top:1.5rem !important}.mr-3,.mx-3{margin-right:1.5rem !important}.mb-3{margin-bottom:1.5rem !important}.mx-3{margin-left:1.5rem !important}.mt-4{margin-top:2.25rem !important}.mb-4{margin-bottom:2.25rem !important}.ml-4{margin-left:2.25rem !important}.p-0{padding:0 !important}.py-1{padding-top:.375rem !important}.pr-1{padding-right:.375rem !important}.py-1{padding-bottom:.375rem !important}.pl-1{padding-left:.375rem !important}.p-2{padding:.75rem !important}.pt-2,.py-2{padding-top:.75rem !important}.px-2{padding-right:.75rem !important}.py-2{padding-bottom:.75rem !important}.px-2{padding-left:.75rem !important}.p-3{padding:1.5rem !important}.pt-3,.py-3{padding-top:1.5rem !important}.px-3{padding-right:1.5rem !important}.pb-3,.py-3{padding-bottom:1.5rem !important}.px-3{padding-left:1.5rem !important}.py-4{padding-top:2.25rem !important}.py-4{padding-bottom:2.25rem !important}.pb-5{padding-bottom:4.5rem !important}.mx-auto{margin-right:auto !important}.mx-auto{margin-left:auto !important}@media(min-width: 768px){.m-md-0{margin:0 !important}.mr-md-4,.mx-md-4{margin-right:2.25rem !important}.mb-md-4{margin-bottom:2.25rem !important}.mx-md-4{margin-left:2.25rem !important}.mx-md-5{margin-right:4.5rem !important}.mx-md-5{margin-left:4.5rem !important}.pr-md-1{padding-right:.375rem !important}.pl-md-1{padding-left:.375rem !important}.p-md-4{padding:2.25rem !important}.py-md-4{padding-top:2.25rem !important}.py-md-4{padding-bottom:2.25rem !important}.py-md-5{padding-top:4.5rem !important}.py-md-5{padding-bottom:4.5rem !important}}@media(min-width: 992px){.mb-lg-0{margin-bottom:0 !important}.mb-lg-2{margin-bottom:.75rem !important}.mb-lg-3{margin-bottom:1.5rem !important}.pr-lg-0{padding-right:0 !important}.pl-lg-0{padding-left:0 !important}.pr-lg-1{padding-right:.375rem !important}.pl-lg-1{padding-left:.375rem !important}}@media(min-width: 1200px){.mb-xl-1{margin-bottom:.375rem !important}.mb-xl-3{margin-bottom:1.5rem !important}.pt-xl-5{padding-top:4.5rem !important}.px-xl-5{padding-right:4.5rem !important}.px-xl-5{padding-left:4.5rem !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-right{text-align:right !important}.text-center{text-align:center !important}.text-uppercase{text-transform:uppercase !important}.font-weight-bold{font-weight:700 !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#399998 !important}a.text-primary:hover,a.text-primary:focus{color:#246161 !important}.text-muted{color:#6c757d !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}blockquote{border:1px solid #adb5bd;page-break-inside:avoid}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.table{border-collapse:collapse !important}.table td{background-color:#fff !important}}@media(min-width: 768px){.gutters-10{margin-right:-5px;margin-left:-5px}.gutters-10>.col,.gutters-10>[class*=col-]{padding-right:5px;padding-left:5px}}@media(min-width: 768px){.gutters-20{margin-right:-10px;margin-left:-10px}.gutters-20>.col,.gutters-20>[class*=col-]{padding-right:10px;padding-left:10px}}@media(min-width: 992px){.gutters-50{margin-right:-25px;margin-left:-25px}.gutters-50>.col,.gutters-50>[class*=col-]{padding-right:25px;padding-left:25px}}.frame{width:100%;height:100%;overflow:hidden;position:relative}.frame img{object-fit:cover;width:100%;height:100%}.lh-1{line-height:1}.ls-n05{letter-spacing:-0.5px}#container{background-color:#fff;max-width:1060px}@media screen and (min-width: 601px){.admin-bar .header{top:46px}}@media screen and (min-width: 783px){.admin-bar .header{top:32px}}.header{background-color:#fff;border-top:solid 4px #399998;left:0;top:0;z-index:100;position:sticky;transition:top .3s linear}.header.hidden{top:-100px}.header__hamburger .hamburger{--height-hamb: 21px;height:var(--height-hamb);width:var(--height-hamb);cursor:pointer;background:rgba(0,0,0,0);border:0;padding:0}.header__hamburger .hamburger__box{height:var(--height-hamb);width:var(--height-hamb)}.header__hamburger .hamburger__box span{height:calc(var(--height-hamb)/3);left:0}.header__hamburger .hamburger__box span:nth-child(1){top:0}.header__hamburger .hamburger__box span:nth-child(2){top:calc(var(--height-hamb)/3)}.header__hamburger .hamburger__box span:nth-child(3){top:calc(var(--height-hamb)/3*2)}.header__hamburger .hamburger__box span:after{background-color:#3d424b;content:"";display:block;height:40%;position:relative;top:50%;transform:translateY(-50%)}.header__hamburger .hamburger:focus{outline:none}.header__brand svg{height:28px;fill:#3d424b}.header__brand svg .dot{fill:#e83e8c}.header__search svg{fill:#3d424b}.header__search button{padding:0;background:rgba(0,0,0,0);border:0}.header__search button:focus{outline:none}.header__form-search{background-color:#212529;top:0}.header__form-search .form-control{background-color:#212529;height:56px}.header__form-search .form-control:focus{background-color:#212529;color:#fff}.header__form-search .btn svg{fill:#fff}.header__nav{background-color:rgba(61,66,75,.1);font-size:min(1.2vw,22px)}.header__nav li:after{background-color:#399998;border-radius:50%;content:"";display:inline-block;height:8px;margin:0 1rem;width:8px}.header__nav li:last-child:after{display:none}.header__nav li a{color:#3d424b;text-decoration:none;padding:.4rem 0;border-top:3px solid rgba(0,0,0,0);border-bottom:3px solid rgba(0,0,0,0)}.header__nav li a:hover{border-bottom:3px solid #3d424b}.header__nav li .sub-menu{margin:0;left:-10px;border:0;box-shadow:1px 1px 4px rgba(0,0,0,.15)}.header__nav li .sub-menu li{width:100%}.header__nav li .sub-menu li:after{display:none}.header .menu-item-has-children:hover>.sub-menu{display:block}@media(min-width: 992px){.header__brand svg{height:50px}.header__hamburger .hamburger{--height-hamb: 36px}.header__search svg{height:40px;width:40px}}@media(min-width: 1200px){.header__hamburger,.header__search{width:50px}}.subheader__nav li{border:0;border-bottom:4px solid rgba(61,66,75,.1);font-weight:bold}.subheader__nav li:hover{box-shadow:inset 0 -5px 0 rgba(61,66,75,.1)}.subheader__nav li:hover a{color:#000}.subheader__nav li a{color:#495057}.admin-bar .offcanvas-menu{top:46px}@media screen and (min-width: 783px){.admin-bar .offcanvas-menu{top:32px}}.offcanvas-menu{background:#212529;display:none}.offcanvas-menu li{flex-direction:column;border-left:solid 4px #399998;width:100%}.offcanvas-menu a{display:block;width:100%;color:#adb5bd;padding:15px 20px;text-decoration:none}.offcanvas-menu ul:first-child{margin-top:10px}.offcanvas-menu .sub-menu{padding-left:20px}.offcanvas-menu .sub-menu li{width:100%;border-left:solid 2px #343a40;font-size:.85rem}.site-overlay{z-index:101;position:fixed;top:0;right:0;bottom:0;left:0;background-color:#fff;visibility:hidden;opacity:0}.offside-js--is-open .site-overlay{visibility:visible;opacity:.7}.offside-js--is-open .offcanvas-menu{display:block}body.ad-free [data-ad-manager-id],body.ad-free [data-ad-sense],body.ad-free [data-outbrain-id],body.ad-free .gn-adunit-container{display:none}[data-ad-manager-id=skin-mb],[data-ad-manager-id=skin-dk],[data-ad-manager-id=interstitial-mb],[data-ad-manager-id=interstitial-dk],[data-ad-manager-id=top-anchor],[data-ad-manager-id=bottom-anchor]{height:0}.article__body .adv,.article__body [data-ad-manager-id^=article-],.article__body [data-ad-sense],.article__body [data-quiz-ad],.article__body .gn-adunit-container{margin:0 0 1rem 0;text-align:center;background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.1) 11.11%, rgba(75, 75, 75, 0.1) 11.11%, rgba(75, 75, 75, 0.1) 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 61.11%, rgba(75, 75, 75, 0.1) 61.11%, rgba(75, 75, 75, 0.1) 100%);background-size:12.73px 12.73px}.article__body .adv>*,.article__body [data-ad-manager-id^=article-]>*,.article__body [data-ad-sense]>*,.article__body [data-quiz-ad]>*,.article__body .gn-adunit-container>*{position:sticky;position:-webkit-sticky;top:25%}@media(min-width: 992px){.article__body .adv,.article__body [data-ad-manager-id^=article-],.article__body [data-ad-sense],.article__body [data-quiz-ad],.article__body .gn-adunit-container{margin-bottom:2rem}}div[id$=-outstream-wrapper]{height:auto;display:none}div[id$=-outstream-wrapper][class$=-visible]{display:block}@media screen and (orientation: portrait){div[id$=-outstream-wrapper]{width:90%}}@media screen and (orientation: landscape){div[id$=-outstream-wrapper]{width:25%}}div[data-outbrain-id=AR_1]{min-height:1100px}div[data-outbrain-id=AR_3]{min-width:300px;min-height:250px}.article__body .OUTBRAIN a{box-shadow:none}.article__body .OUTBRAIN a:hover{box-shadow:none}.footer__follow{background-color:#399998;font-size:18px;letter-spacing:2px}.footer__follow ul li svg{fill:#fff;height:25px;width:25px}.footer__follow ul li svg:hover{fill:#3d424b}@media(min-width: 992px){.footer__info svg{width:350px}}@media(min-width: 1200px){.footer__follow{font-size:24px}.footer__follow ul li svg{height:50px;width:50px}}.category__description.truncate{overflow:hidden;max-height:250px;position:relative}.category__description.truncate:hover:after{background-color:#399998}.category__description.truncate:after{content:"Continua a leggere ▼";position:absolute;top:250px;width:100%;height:50px;margin-top:-50px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:bold;background:#495057;border-top:15px solid #fff;cursor:pointer}.category__description.truncate.opened{max-height:none;cursor:auto}.category__description.truncate.opened:after{display:none}.category__description a{color:#399998}.category__description *{max-width:100%}.category__description img,.category__description table{width:100%;height:auto !important}.loop .meta a{color:#399998}@media(min-width: 768px){.loop .meta a{white-space:nowrap}}.loop h2{border-bottom:2px solid #399998}.loop .item p,.loop .item time{font-size:14px}.loop .item:hover h3 a{color:#399998}.loop .item.style-1 .frame{width:100px;height:140px}.loop .item.style-1 h3{font-size:20px}.loop .item.style-2 .frame{width:100%;height:340px}.loop .item.style-2 h3{font-size:22px}.loop .item.style-3 .frame{width:100px;height:140px}.loop .item.style-3 h3{font-size:17px}.loop .item.style-4 .frame{width:100%;height:250px}.loop .item.style-4 h3{font-size:21px}.loop .item.style-5 .frame{width:100%;height:150px}.loop .item.style-5 h3{font-size:21px}.card{border:0}.card img{transition:transform .3s ease,opacity .3s}.card .card-img-overlay{background:linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);display:flex;align-items:flex-end}.card .card-img-overlay h3{font-size:1rem;line-height:1.2;text-shadow:1px 1px 1px rgba(0,0,0,.3)}.card.card-lg{height:288px}.card.card-lg h3{font-size:1.5rem;line-height:1}.card.card-sm{height:140px}.card:hover img{transform:scale3d(1.1, 1.1, 1)}@media(min-width: 992px){.card.card-lg{height:452px}.card.card-sm{height:220px}}@media(max-width: 991.98px){.card.card-sm h3{font-size:.75rem}}.nav-links .page-numbers{display:inline-flex;margin:0;padding:0}.nav-links .page-numbers li{display:inline-block;line-height:1;list-style-type:none}.nav-links .page-numbers li span.current{background-color:#399998;border:solid 1px #399998;color:#fff}.nav-links .page-numbers li .page-numbers{border:solid 1px #e9ecef;font-weight:bold;margin:0 1px;padding:10px}.nav-links .page-numbers li .page-numbers:hover:not(.dots){background-color:#399998;border:solid 1px #399998;color:#fff}.nav-links .page-numbers li .page-numbers.dots{border:none;padding:10px 2px;color:#adb5bd;line-height:11px}.article{word-break:break-word}.article>*{margin-left:.75rem;margin-right:.75rem}.article__header h1{font-size:26px}.article__header .h2{font-size:18px}.article__author{font-size:13px;line-height:1.2}.article__share{background-color:#fff;border-top-left-radius:10px;box-shadow:0 0 5px rgba(61,66,75,.5);bottom:0;height:50px;right:0;z-index:1}.article__share a{color:#495057;font-weight:700}.article__share a svg{fill:#495057;height:18px;width:18px}.article__share-popup{background-color:#fff;border-top-left-radius:10px;border-top-right-radius:10px;bottom:0;box-shadow:0 0 5px rgba(61,66,75,.5);left:0;right:0;z-index:5}.article__share-popup svg{fill:#495057}.article__share-popup a{color:#495057}.article__share-popup .close{background-color:rgba(0,0,0,0);line-height:1;right:0;top:0}.article__share-popup .close span{line-height:1}.article__share-overlay{background-color:rgba(61,66,75,.5);height:100%;width:100%;z-index:1;top:0}.article__breadcrumb{font-size:12px;z-index:1}.article__breadcrumb li:last-child{flex:1}.article__breadcrumb li:before{display:inline !important}.article__body{margin:0}.article__body>*{margin-left:.75rem;margin-right:.75rem}.article__body>p{font-size:18px;overflow-wrap:break-word}.article__body>p:first-child::first-letter{color:#399998;float:left;font-size:60px;font-weight:700;line-height:.35;padding-top:18px;padding-right:10px;padding-left:3px}.article__body>p img{width:100%;height:auto}.article__body h2,.article__body h3{font-weight:bold}.article__body h2{font-size:1.5rem}.article__body h3{font-size:1.2rem}.article__body blockquote{clear:both;font-size:18px;padding-left:2rem;position:relative}.article__body blockquote p{margin:0;padding-left:13px;font-style:italic;border-left:1px solid #dee2e6}.article__body blockquote::before{color:#399998;content:'"';font-size:50px;position:absolute;line-height:50px;left:.2rem}.article__body ol,.article__body ul{list-style-type:none;padding-left:30px}.article__body li{color:#212529;font-size:18px;line-height:1.6;margin-bottom:5px;position:relative}.article__body li::before{background-color:#399998;margin-right:10px}.article__body li:last-child{margin-bottom:0}.article__body ol li{counter-increment:step-counter}.article__body ol li::before{position:absolute;top:4px;left:-30px;border-radius:50%;color:#fff;content:counter(step-counter);font-size:70%;font-weight:bold;padding:0 7px}.article__body ul li::before{position:absolute;top:12px;left:-20px;border-radius:50%;content:"";display:block;height:8px;width:8px}.article__body a{box-shadow:inset 0 -4px 0 rgba(57,153,152,.5);background-color:rgba(0,0,0,0);color:#212529;font-weight:bold;overflow-wrap:break-word;text-decoration:none;transition:all .1s ease-in-out;word-break:break-word;word-wrap:break-word}.article__body a:hover{box-shadow:inset 0 -50px 0 rgba(57,153,152,.5)}.article__body figure{margin:0 0 1rem}.article__body img{max-width:100%;height:auto}.article__body iframe{max-width:100%}.article__body .wp-caption-text,.article__body figcaption{font-size:.7rem;color:#6c757d;margin:.5rem 0 1rem 0}.article .post-page-numbers{background:#399998;color:#fff;display:inline-block;font-size:18px;font-weight:bold;padding:15px 30px;margin:1rem .75rem;border-radius:30px}.article .post-page-numbers:hover{background:rgba(57,153,152,.8)}@media(min-width: 768px){.article__share-popup{border-top-right-radius:0;left:auto;width:350px}}@media(min-width: 992px){.article__header h1{font-size:40px}.article__header .h2{font-size:28px}.article__body>p{font-size:22px;margin-bottom:2rem;position:relative}.article__body>p:first-child::first-letter{font-size:111px;line-height:.55;padding-top:18px;padding-right:10px;padding-left:3px}.article__body>p img{width:100%}.article__body h2,.article__body h3{margin-bottom:1rem}.article__body h2{font-size:2rem}.article__body h3{font-size:1.5rem}.article__body blockquote{font-size:20px;margin-bottom:40px;padding:0 2rem}.article__body blockquote::after{right:0}.article__body blockquote::before{left:0}.article__body ol,.article__body ul{margin-bottom:20px}.article__body li{font-size:20px;margin:0 0 10px 0}}@media(min-width: 1200px){.article__author{font-size:15px}}.page__body img{width:100%;height:auto}.page__body a{box-shadow:inset 0 -4px 0 rgba(57,153,152,.5);background-color:rgba(0,0,0,0);color:#212529;font-weight:bold;overflow-wrap:break-word;text-decoration:none;transition:all .1s ease-in-out;word-break:break-word;word-wrap:break-word}.page__body a:hover{box-shadow:inset 0 -50px 0 rgba(57,153,152,.5)}.youtube-embed,div[data-jw-player]{position:relative;display:block;height:0;padding:0 0 56.25% 0;overflow:hidden}.youtube-embed iframe,div[data-jw-player] iframe{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.instagram-media,.twitter-tweet,.youtube-embed,div[data-jw-player],div[data-just-watch]{margin-bottom:1rem !important;max-width:100% !important}@media(min-width: 992px){.instagram-media,.twitter-tweet,.youtube-embed,div[data-jw-player],div[data-just-watch]{margin-bottom:2rem !important}}div[data-just-watch] input[type=checkbox]{display:none}div[data-just-watch] input[type=checkbox]:checked~.card{display:block}div[data-just-watch] label{margin:0;font-weight:bold}div[data-just-watch] .dropdown-toggle::after{margin-left:1rem}div[data-just-watch] .card{display:none;border-bottom:3px solid #399998;background:#e9ecef}.comment-list .comment{border-bottom:1px solid #dee2e6;padding:1rem 0;font-size:.9rem}.comment-list .comment .children{list-style:none;border-left:5px solid #dee2e6;margin-top:1rem;margin-left:15px;padding-left:20px}.comment-list .comment .children .comment:last-child{border:0}.comment-list .comment .reply a{color:#399998}.comment-list .comment .comment-respond{border-left:5px solid #399998;margin-top:1rem;margin-left:15px;padding-left:20px}.comment-list .comment .comment-respond .comment-reply-title small{margin-left:1rem;font-size:.8rem}.comment-list .comment .comment-respond .comment-reply-title small a{color:#399998}.comment-list .comment-author .avatar{border-radius:50%}.comment-list .comment-author .fn{font-style:normal;font-weight:bold}.comment-list .comment-meta a{color:#adb5bd;line-height:2}.creative-commons{position:absolute;top:0;right:0;z-index:3;font-size:10px;padding:3px 5px}.creative-commons--icon{color:#fff;text-shadow:1px 1px 0 #3d424b;font-weight:bold;opacity:.35;cursor:pointer}.creative-commons:active div,.creative-commons:hover div{display:block !important}.creative-commons div{position:absolute;top:0;right:0;z-index:2;background:#dee2e6;padding:4px 8px;color:#3d424b;width:100px;border-bottom-left-radius:5px;word-break:break-all}.creative-commons div a{text-decoration:underline}div#iubenda-cs-banner{max-height:30%;top:auto !important;bottom:0}div#iubenda-cs-banner .iubenda-cs-content #iubenda-cs-title{margin-bottom:8px !important}div#iubenda-cs-banner .iubenda-cs-content .iubenda-banner-content{padding-bottom:8px !important}@media(min-width: 640px){div#iubenda-cs-banner .iubenda-cs-content .iubenda-banner-content{padding-right:0 !important}}div#iubenda-cs-banner .iubenda-cs-content #iubenda-cs-paragraph{font-size:11px;column-count:4}@media(max-width: 999px){div#iubenda-cs-banner .iubenda-cs-content #iubenda-cs-paragraph{column-count:2}}@media(max-width: 639px){div#iubenda-cs-banner .iubenda-cs-content #iubenda-cs-paragraph{width:500%;column-count:6}}div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-rationale{margin:0 !important;width:100% !important;height:100% !important}@media(min-width: 640px){div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-rationale{flex-direction:row !important}}div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-content{height:200px !important}div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-opt-group{flex-direction:column-reverse !important;margin:0 !important}@media(min-width: 640px){div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-opt-group{margin:10px !important}div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-opt-group>div{flex:1 !important}div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-opt-group button{width:140px !important;height:50px !important}}div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-opt-group .iubenda-cs-opt-group-consent{flex:1.3;margin-left:0 !important;width:100%}div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-opt-group .iubenda-cs-opt-group-consent button{min-width:40% !important}@media(max-width: 639px){div#iubenda-cs-banner .iubenda-cs-content .iubenda-cs-opt-group{flex-direction:row-reverse !important}}

/*# sourceURL=main-inline-css */