
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_04892317970c926e07d8bb18.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e298de5e34c910e23bfb6465.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ce57ee16e707f7eb448ead93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d47263f02355b5e9f6e30c23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.685059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab459e8d211243a338ca8dd7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_058b0a7d93dc82ba292fb398.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.138184;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ca1696c63d3d8d8b0a7b419.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0235a45be3a9d3dfe862b46d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_125d4e493be4401b1e099825.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7e6a37fe14e6676432065db2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920410;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e626381cf72270e1958f1942.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_898b84126ecd7d3c44384f03.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.950684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e51784eebeaf59fc1687e226.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.950684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9bc49ab5aa76d852fb49ce67.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.075195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ef6d0d4be5b016087a1ca825.woff2')format("woff");}.fff{font-family:fff;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_14e41bbc40e0cad95e56c98f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_17a702fd2805b79c6788c80d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8b646d4ba7eb188bef233387.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.950684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1f06a3e3dfc47e9ae45065eb.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.039551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a456536f9d9c233070fd0997.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_bb7dd678b92d7746eb28270d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_47162bb00ea456e4a838a5b1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.825195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c7b6e3ad69dd7a586b0387c6.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ed19ef024ecbeaf58836151e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.950684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_42b1433d8f8b6c616c1c446a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.072754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d971ec1ad0820c69be79d540.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_3027cdaa08adb0e4b125e83f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a8c91d6a6ecbe4d8a76b3123.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.037109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_2158d7df50f13da2d685bdc9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_4cd17546a26c42dadaecc01d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_ded40ae17c75054f809ed590.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_f11d2c4eb454674db81a0b2d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_e706c7480325a3bf587e9cbc.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_32a49074b06c3e88602b9d4d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.824219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_0e8a19eacfaba12eac8b5695.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.913574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_1cbac641db8082a2ea64f105.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_954ff98e2e817ca0d31351b7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_1ae3aa00a610053c5bdb1c9a.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.680664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_61ddba1b9d8b6749e99b8b9f.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.037109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_47ce8ad3aef1819cfe4613ae.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_f038555b459b0859cd66efce.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_d39c4cb4b91ece231eeb8071.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_e05d75a4d3516ae6529c72f5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_2670dc2a2d77664130f8e9f0.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_34e9976cbbc3d1fc2a79f334.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.913574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_803baeaf908fcfc95acf61c7.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_63f3219abfe9e821f453cf56.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_3c72662c7300c4461e0dfabb.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_ffee07c53668c72ebb614de9.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.037109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_8c98188b9508c2bf4b13c05c.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_cdaf51778a875061ef17b951.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_559ed6a558f1ecc20ad4c8e1.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_e5b0b2470539b1c641a79a86.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_cb32bf777cce883f796dd8b9.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_ea2640aac7a8185b4e1f5a50.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_a285a30059c78a0bf79be6eb.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.913574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_51c8454487126d3ce3e8c904.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_6c4e083d95ae72db048f1ed2.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.680664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_a5744c8bc19aa32a20f71a85.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_8c583be4ed75b81c2498f77b.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.037109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_21ed49c11e69dad811cb45bd.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.132324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_dd36eb9cd88673243cdce24b.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_591836e9e1b804f55687ac1d.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_d8bebc6340debe44db20b4d9.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_2029ab3436365cb39be063e7.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.714355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_cb523c7db2000a38f706f346.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_9d99355b9800367ffba57504.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-5.405400px;}
.ls0{letter-spacing:-3.672000px;}
.ls2{letter-spacing:-1.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.006600px;}
.ls5{letter-spacing:0.009000px;}
.ls4{letter-spacing:0.009600px;}
.ls7{letter-spacing:0.010200px;}
.lsa{letter-spacing:0.012000px;}
.ls9{letter-spacing:0.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.000000px;}
.ws6{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.000000px;}
.ws1{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.500000px;}
.ws8{word-spacing:-0.072000px;}
.ws2{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-14.904600px;}
._e{margin-left:-13.208400px;}
._7{margin-left:-9.768000px;}
._6{margin-left:-8.136121px;}
._3{margin-left:-6.158279px;}
._4{margin-left:-5.035200px;}
._1{margin-left:-3.696000px;}
._2{margin-left:-1.900800px;}
._0{width:1.008000px;}
._8{width:2.188800px;}
._5{width:3.360000px;}
._b{width:4.612800px;}
._9{width:6.148800px;}
._f{width:7.264800px;}
._a{width:8.774400px;}
._11{width:9.806400px;}
._12{width:11.045521px;}
._c{width:12.157079px;}
._10{width:15.300000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:50.400000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:46.839450px;}
.y72{bottom:60.153600px;}
.y73{bottom:60.339450px;}
.y93{bottom:106.857300px;}
.yf0{bottom:109.485300px;}
.ybb{bottom:118.485300px;}
.ye1{bottom:120.735300px;}
.y92{bottom:129.357300px;}
.yef{bottom:131.985300px;}
.yba{bottom:137.985300px;}
.ye0{bottom:143.235300px;}
.y91{bottom:151.857300px;}
.yee{bottom:154.485300px;}
.yb9{bottom:157.485300px;}
.ydf{bottom:165.735300px;}
.yfd{bottom:172.485300px;}
.y90{bottom:174.357300px;}
.y24{bottom:175.131000px;}
.yb8{bottom:176.985300px;}
.y44{bottom:180.386850px;}
.yde{bottom:188.235300px;}
.y23{bottom:191.631000px;}
.yfc{bottom:194.985300px;}
.yb7{bottom:196.485300px;}
.y8f{bottom:196.857300px;}
.y43{bottom:196.886850px;}
.yed{bottom:199.485300px;}
.y65{bottom:202.692000px;}
.y22{bottom:208.131000px;}
.ydd{bottom:210.735300px;}
.y42{bottom:213.386850px;}
.yb6{bottom:215.985300px;}
.yfb{bottom:217.485300px;}
.y8e{bottom:219.357300px;}
.y64{bottom:219.942000px;}
.yec{bottom:221.985300px;}
.y21{bottom:226.756950px;}
.y41{bottom:229.886850px;}
.ydc{bottom:233.235300px;}
.yb5{bottom:235.485300px;}
.y63{bottom:237.192000px;}
.yfa{bottom:239.985300px;}
.y8d{bottom:241.857300px;}
.yeb{bottom:244.485300px;}
.y40{bottom:246.386850px;}
.yb4{bottom:254.985300px;}
.ydb{bottom:255.735300px;}
.y20{bottom:261.256950px;}
.yf9{bottom:262.485300px;}
.y3f{bottom:262.886850px;}
.y62{bottom:262.945950px;}
.y8c{bottom:264.357300px;}
.yea{bottom:266.985300px;}
.yb3{bottom:274.485300px;}
.y1f{bottom:277.756950px;}
.yda{bottom:278.235300px;}
.y3e{bottom:279.386850px;}
.y61{bottom:280.195950px;}
.yf8{bottom:284.985300px;}
.y8b{bottom:286.857300px;}
.ye9{bottom:289.485300px;}
.yb2{bottom:293.985300px;}
.y1e{bottom:294.256950px;}
.y3d{bottom:295.886850px;}
.yd9{bottom:300.735300px;}
.y60{bottom:305.949750px;}
.yf7{bottom:307.485300px;}
.y8a{bottom:309.357300px;}
.y1d{bottom:310.756950px;}
.ye8{bottom:311.985300px;}
.y3c{bottom:312.386850px;}
.yb1{bottom:313.485300px;}
.y5f{bottom:323.199750px;}
.yd8{bottom:323.235300px;}
.y1c{bottom:327.256950px;}
.y3b{bottom:328.886850px;}
.yf6{bottom:329.985300px;}
.y89{bottom:331.857300px;}
.yb0{bottom:332.985300px;}
.ye7{bottom:334.485300px;}
.y5e{bottom:340.449750px;}
.y1b{bottom:343.756950px;}
.y3a{bottom:345.386850px;}
.yd7{bottom:345.735300px;}
.yaf{bottom:352.485300px;}
.y88{bottom:354.357300px;}
.ye6{bottom:356.985300px;}
.y1a{bottom:360.256950px;}
.y39{bottom:361.886850px;}
.y5d{bottom:366.203700px;}
.yd6{bottom:368.235300px;}
.yae{bottom:371.985300px;}
.yf5{bottom:374.985300px;}
.y19{bottom:376.756950px;}
.y87{bottom:376.857300px;}
.y38{bottom:378.386850px;}
.ye5{bottom:379.485300px;}
.y5c{bottom:383.453700px;}
.yd5{bottom:390.735300px;}
.yad{bottom:391.485300px;}
.y18{bottom:393.256950px;}
.y37{bottom:394.886850px;}
.yf4{bottom:397.485300px;}
.y86{bottom:399.357300px;}
.y5b{bottom:400.703700px;}
.ye4{bottom:401.985300px;}
.yac{bottom:410.985300px;}
.y36{bottom:411.386850px;}
.yd4{bottom:413.235300px;}
.y17{bottom:414.008850px;}
.yf3{bottom:419.985300px;}
.y85{bottom:421.857300px;}
.ye3{bottom:424.485300px;}
.y5a{bottom:426.457650px;}
.y35{bottom:427.886850px;}
.yab{bottom:430.485300px;}
.y16{bottom:430.508850px;}
.yd3{bottom:435.735300px;}
.yf2{bottom:442.485300px;}
.y59{bottom:443.707650px;}
.y84{bottom:444.357300px;}
.y34{bottom:444.386850px;}
.ye2{bottom:446.985300px;}
.y15{bottom:447.008850px;}
.yd2{bottom:458.235300px;}
.y33{bottom:460.886850px;}
.y58{bottom:460.957650px;}
.y14{bottom:463.508850px;}
.yf1{bottom:464.985300px;}
.y83{bottom:466.857300px;}
.yaa{bottom:469.485300px;}
.y13{bottom:480.008850px;}
.yd1{bottom:480.735300px;}
.y57{bottom:486.711600px;}
.y82{bottom:489.357300px;}
.ya9{bottom:491.985300px;}
.y32{bottom:492.386850px;}
.y12{bottom:496.508850px;}
.yd0{bottom:503.235300px;}
.y56{bottom:503.961600px;}
.y31{bottom:508.886850px;}
.y1{bottom:509.843550px;}
.y81{bottom:511.857300px;}
.y11{bottom:513.008850px;}
.ya8{bottom:514.485300px;}
.y55{bottom:521.211600px;}
.y30{bottom:525.386850px;}
.ycf{bottom:525.735300px;}
.y10{bottom:529.508850px;}
.y80{bottom:534.357300px;}
.ya7{bottom:536.985300px;}
.y2f{bottom:541.886850px;}
.yf{bottom:546.008850px;}
.y54{bottom:546.965550px;}
.yce{bottom:548.235300px;}
.ya6{bottom:559.485300px;}
.ye{bottom:562.508850px;}
.y53{bottom:564.215550px;}
.ycd{bottom:570.735300px;}
.y2e{bottom:573.386850px;}
.y71{bottom:576.304200px;}
.yd{bottom:579.008850px;}
.y52{bottom:581.465550px;}
.ya5{bottom:581.985300px;}
.y2d{bottom:589.886850px;}
.y7f{bottom:591.357300px;}
.ycc{bottom:593.235300px;}
.y70{bottom:593.554200px;}
.yc{bottom:595.508850px;}
.ya4{bottom:604.485300px;}
.y2c{bottom:606.386850px;}
.y51{bottom:607.219500px;}
.y7e{bottom:608.607300px;}
.y6f{bottom:610.804200px;}
.yb{bottom:612.008850px;}
.ycb{bottom:615.735300px;}
.y2b{bottom:622.886850px;}
.y50{bottom:624.469500px;}
.y7d{bottom:625.857300px;}
.ya3{bottom:626.985300px;}
.y6e{bottom:628.054200px;}
.ya{bottom:632.760900px;}
.yca{bottom:638.235300px;}
.y2a{bottom:639.386850px;}
.y4f{bottom:641.719500px;}
.y7c{bottom:643.107300px;}
.y9{bottom:649.260900px;}
.ya2{bottom:649.485300px;}
.y6d{bottom:653.808150px;}
.yc9{bottom:660.735300px;}
.y8{bottom:665.760900px;}
.y4e{bottom:667.473450px;}
.y29{bottom:670.886850px;}
.y6c{bottom:671.058150px;}
.ya1{bottom:671.985300px;}
.y7b{bottom:677.607300px;}
.y7{bottom:682.260900px;}
.yc8{bottom:683.235300px;}
.y4d{bottom:684.723450px;}
.y28{bottom:687.386850px;}
.y6b{bottom:688.308150px;}
.ya0{bottom:694.485300px;}
.y6{bottom:700.886850px;}
.yc7{bottom:705.735300px;}
.y4c{bottom:710.477400px;}
.y6a{bottom:714.061950px;}
.y9f{bottom:716.985300px;}
.y27{bottom:718.886850px;}
.y4b{bottom:727.727400px;}
.yc6{bottom:728.235300px;}
.y5{bottom:735.386850px;}
.y7a{bottom:737.861250px;}
.y9e{bottom:739.485300px;}
.yc5{bottom:750.735300px;}
.y4{bottom:751.886850px;}
.y4a{bottom:753.481350px;}
.y9d{bottom:761.985300px;}
.y79{bottom:764.111250px;}
.y26{bottom:768.386850px;}
.y69{bottom:770.064000px;}
.y49{bottom:770.731350px;}
.yc4{bottom:773.235300px;}
.y9c{bottom:784.485300px;}
.y3{bottom:784.886850px;}
.y68{bottom:787.314000px;}
.y48{bottom:787.981350px;}
.y78{bottom:790.361250px;}
.yc3{bottom:795.735300px;}
.y25{bottom:801.386850px;}
.y2{bottom:803.512800px;}
.y67{bottom:804.564000px;}
.y9b{bottom:806.985300px;}
.y47{bottom:813.735300px;}
.y77{bottom:816.611250px;}
.yc2{bottom:818.235300px;}
.y9a{bottom:829.485300px;}
.y66{bottom:830.317950px;}
.y46{bottom:830.985300px;}
.yc1{bottom:840.735300px;}
.y99{bottom:851.985300px;}
.y76{bottom:866.861250px;}
.y98{bottom:874.485300px;}
.yc0{bottom:882.735300px;}
.y75{bottom:893.111250px;}
.y97{bottom:896.985300px;}
.ybf{bottom:902.235300px;}
.y45{bottom:917.235300px;}
.y74{bottom:919.361250px;}
.y96{bottom:919.485300px;}
.ybe{bottom:921.735300px;}
.ybd{bottom:956.884800px;}
.y94{bottom:963.546150px;}
.ybc{bottom:974.884800px;}
.h11{height:30.673828px;}
.h10{height:32.765625px;}
.h4{height:32.906250px;}
.h13{height:39.990234px;}
.hb{height:41.132812px;}
.h5{height:43.570312px;}
.h3{height:44.671875px;}
.h14{height:49.359375px;}
.h15{height:49.992188px;}
.hc{height:53.173828px;}
.he{height:53.671875px;}
.h9{height:53.818359px;}
.ha{height:54.462891px;}
.h8{height:55.839844px;}
.hd{height:59.909180px;}
.h12{height:63.808594px;}
.hf{height:65.355469px;}
.h6{height:78.175781px;}
.h2{height:103.359375px;}
.h7{height:1018.024650px;}
.h1{height:1018.500000px;}
.h0{height:1018.525650px;}
.w2{width:721.323000px;}
.w1{width:721.500000px;}
.w0{width:721.824450px;}
.x0{left:0.000000px;}
.x37{left:55.777050px;}
.x9{left:58.228350px;}
.x8{left:61.436100px;}
.xc{left:62.450700px;}
.x10{left:63.631200px;}
.x11{left:65.497950px;}
.xf{left:67.931250px;}
.x7{left:70.221450px;}
.xd{left:72.859650px;}
.xe{left:75.597150px;}
.xb{left:77.569950px;}
.x13{left:81.602550px;}
.x1f{left:87.011850px;}
.x18{left:89.053650px;}
.x33{left:91.489050px;}
.x31{left:92.555550px;}
.x2b{left:97.795350px;}
.x22{left:103.155300px;}
.x2d{left:119.055150px;}
.x32{left:123.988950px;}
.x3a{left:127.074150px;}
.x21{left:129.934500px;}
.x30{left:131.910000px;}
.x1a{left:141.689850px;}
.x5{left:147.829800px;}
.x3{left:157.914450px;}
.x4{left:162.868350px;}
.x1b{left:174.292950px;}
.x2e{left:186.240000px;}
.x12{left:187.597050px;}
.x20{left:190.126200px;}
.x14{left:194.494050px;}
.x16{left:210.269250px;}
.x38{left:211.973100px;}
.x3b{left:214.843950px;}
.xa{left:223.080300px;}
.x1c{left:226.172100px;}
.x23{left:249.772500px;}
.x1{left:253.871250px;}
.x1d{left:262.078950px;}
.x15{left:263.511600px;}
.x26{left:269.773650px;}
.x24{left:283.614150px;}
.x6{left:289.075650px;}
.x2{left:295.624650px;}
.x17{left:296.639850px;}
.x36{left:305.071200px;}
.x1e{left:307.548150px;}
.x34{left:309.917850px;}
.x29{left:316.681500px;}
.x28{left:318.108450px;}
.x25{left:332.482800px;}
.x2a{left:334.624650px;}
.x19{left:336.250350px;}
.x27{left:369.578700px;}
.x2c{left:424.777350px;}
.x35{left:435.179550px;}
.x39{left:542.077350px;}
.x2f{left:643.310550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-4.804800pt;}
.ls0{letter-spacing:-3.264000pt;}
.ls2{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.005867pt;}
.ls5{letter-spacing:0.008000pt;}
.ls4{letter-spacing:0.008533pt;}
.ls7{letter-spacing:0.009067pt;}
.lsa{letter-spacing:0.010667pt;}
.ls9{letter-spacing:0.320000pt;}
.ws5{word-spacing:-18.666667pt;}
.ws6{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws1{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws8{word-spacing:-0.064000pt;}
.ws2{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-13.248533pt;}
._e{margin-left:-11.740800pt;}
._7{margin-left:-8.682667pt;}
._6{margin-left:-7.232108pt;}
._3{margin-left:-5.474026pt;}
._4{margin-left:-4.475733pt;}
._1{margin-left:-3.285333pt;}
._2{margin-left:-1.689600pt;}
._0{width:0.896000pt;}
._8{width:1.945600pt;}
._5{width:2.986667pt;}
._b{width:4.100267pt;}
._9{width:5.465600pt;}
._f{width:6.457600pt;}
._a{width:7.799467pt;}
._11{width:8.716800pt;}
._12{width:9.818241pt;}
._c{width:10.806292pt;}
._10{width:13.600000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:44.800000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:41.635067pt;}
.y72{bottom:53.469867pt;}
.y73{bottom:53.635067pt;}
.y93{bottom:94.984267pt;}
.yf0{bottom:97.320267pt;}
.ybb{bottom:105.320267pt;}
.ye1{bottom:107.320267pt;}
.y92{bottom:114.984267pt;}
.yef{bottom:117.320267pt;}
.yba{bottom:122.653600pt;}
.ye0{bottom:127.320267pt;}
.y91{bottom:134.984267pt;}
.yee{bottom:137.320267pt;}
.yb9{bottom:139.986933pt;}
.ydf{bottom:147.320267pt;}
.yfd{bottom:153.320267pt;}
.y90{bottom:154.984267pt;}
.y24{bottom:155.672000pt;}
.yb8{bottom:157.320267pt;}
.y44{bottom:160.343867pt;}
.yde{bottom:167.320267pt;}
.y23{bottom:170.338667pt;}
.yfc{bottom:173.320267pt;}
.yb7{bottom:174.653600pt;}
.y8f{bottom:174.984267pt;}
.y43{bottom:175.010533pt;}
.yed{bottom:177.320267pt;}
.y65{bottom:180.170667pt;}
.y22{bottom:185.005333pt;}
.ydd{bottom:187.320267pt;}
.y42{bottom:189.677200pt;}
.yb6{bottom:191.986933pt;}
.yfb{bottom:193.320267pt;}
.y8e{bottom:194.984267pt;}
.y64{bottom:195.504000pt;}
.yec{bottom:197.320267pt;}
.y21{bottom:201.561733pt;}
.y41{bottom:204.343867pt;}
.ydc{bottom:207.320267pt;}
.yb5{bottom:209.320267pt;}
.y63{bottom:210.837333pt;}
.yfa{bottom:213.320267pt;}
.y8d{bottom:214.984267pt;}
.yeb{bottom:217.320267pt;}
.y40{bottom:219.010533pt;}
.yb4{bottom:226.653600pt;}
.ydb{bottom:227.320267pt;}
.y20{bottom:232.228400pt;}
.yf9{bottom:233.320267pt;}
.y3f{bottom:233.677200pt;}
.y62{bottom:233.729733pt;}
.y8c{bottom:234.984267pt;}
.yea{bottom:237.320267pt;}
.yb3{bottom:243.986933pt;}
.y1f{bottom:246.895067pt;}
.yda{bottom:247.320267pt;}
.y3e{bottom:248.343867pt;}
.y61{bottom:249.063067pt;}
.yf8{bottom:253.320267pt;}
.y8b{bottom:254.984267pt;}
.ye9{bottom:257.320267pt;}
.yb2{bottom:261.320267pt;}
.y1e{bottom:261.561733pt;}
.y3d{bottom:263.010533pt;}
.yd9{bottom:267.320267pt;}
.y60{bottom:271.955333pt;}
.yf7{bottom:273.320267pt;}
.y8a{bottom:274.984267pt;}
.y1d{bottom:276.228400pt;}
.ye8{bottom:277.320267pt;}
.y3c{bottom:277.677200pt;}
.yb1{bottom:278.653600pt;}
.y5f{bottom:287.288667pt;}
.yd8{bottom:287.320267pt;}
.y1c{bottom:290.895067pt;}
.y3b{bottom:292.343867pt;}
.yf6{bottom:293.320267pt;}
.y89{bottom:294.984267pt;}
.yb0{bottom:295.986933pt;}
.ye7{bottom:297.320267pt;}
.y5e{bottom:302.622000pt;}
.y1b{bottom:305.561733pt;}
.y3a{bottom:307.010533pt;}
.yd7{bottom:307.320267pt;}
.yaf{bottom:313.320267pt;}
.y88{bottom:314.984267pt;}
.ye6{bottom:317.320267pt;}
.y1a{bottom:320.228400pt;}
.y39{bottom:321.677200pt;}
.y5d{bottom:325.514400pt;}
.yd6{bottom:327.320267pt;}
.yae{bottom:330.653600pt;}
.yf5{bottom:333.320267pt;}
.y19{bottom:334.895067pt;}
.y87{bottom:334.984267pt;}
.y38{bottom:336.343867pt;}
.ye5{bottom:337.320267pt;}
.y5c{bottom:340.847733pt;}
.yd5{bottom:347.320267pt;}
.yad{bottom:347.986933pt;}
.y18{bottom:349.561733pt;}
.y37{bottom:351.010533pt;}
.yf4{bottom:353.320267pt;}
.y86{bottom:354.984267pt;}
.y5b{bottom:356.181067pt;}
.ye4{bottom:357.320267pt;}
.yac{bottom:365.320267pt;}
.y36{bottom:365.677200pt;}
.yd4{bottom:367.320267pt;}
.y17{bottom:368.007867pt;}
.yf3{bottom:373.320267pt;}
.y85{bottom:374.984267pt;}
.ye3{bottom:377.320267pt;}
.y5a{bottom:379.073467pt;}
.y35{bottom:380.343867pt;}
.yab{bottom:382.653600pt;}
.y16{bottom:382.674533pt;}
.yd3{bottom:387.320267pt;}
.yf2{bottom:393.320267pt;}
.y59{bottom:394.406800pt;}
.y84{bottom:394.984267pt;}
.y34{bottom:395.010533pt;}
.ye2{bottom:397.320267pt;}
.y15{bottom:397.341200pt;}
.yd2{bottom:407.320267pt;}
.y33{bottom:409.677200pt;}
.y58{bottom:409.740133pt;}
.y14{bottom:412.007867pt;}
.yf1{bottom:413.320267pt;}
.y83{bottom:414.984267pt;}
.yaa{bottom:417.320267pt;}
.y13{bottom:426.674533pt;}
.yd1{bottom:427.320267pt;}
.y57{bottom:432.632533pt;}
.y82{bottom:434.984267pt;}
.ya9{bottom:437.320267pt;}
.y32{bottom:437.677200pt;}
.y12{bottom:441.341200pt;}
.yd0{bottom:447.320267pt;}
.y56{bottom:447.965867pt;}
.y31{bottom:452.343867pt;}
.y1{bottom:453.194267pt;}
.y81{bottom:454.984267pt;}
.y11{bottom:456.007867pt;}
.ya8{bottom:457.320267pt;}
.y55{bottom:463.299200pt;}
.y30{bottom:467.010533pt;}
.ycf{bottom:467.320267pt;}
.y10{bottom:470.674533pt;}
.y80{bottom:474.984267pt;}
.ya7{bottom:477.320267pt;}
.y2f{bottom:481.677200pt;}
.yf{bottom:485.341200pt;}
.y54{bottom:486.191600pt;}
.yce{bottom:487.320267pt;}
.ya6{bottom:497.320267pt;}
.ye{bottom:500.007867pt;}
.y53{bottom:501.524933pt;}
.ycd{bottom:507.320267pt;}
.y2e{bottom:509.677200pt;}
.y71{bottom:512.270400pt;}
.yd{bottom:514.674533pt;}
.y52{bottom:516.858267pt;}
.ya5{bottom:517.320267pt;}
.y2d{bottom:524.343867pt;}
.y7f{bottom:525.650933pt;}
.ycc{bottom:527.320267pt;}
.y70{bottom:527.603733pt;}
.yc{bottom:529.341200pt;}
.ya4{bottom:537.320267pt;}
.y2c{bottom:539.010533pt;}
.y51{bottom:539.750667pt;}
.y7e{bottom:540.984267pt;}
.y6f{bottom:542.937067pt;}
.yb{bottom:544.007867pt;}
.ycb{bottom:547.320267pt;}
.y2b{bottom:553.677200pt;}
.y50{bottom:555.084000pt;}
.y7d{bottom:556.317600pt;}
.ya3{bottom:557.320267pt;}
.y6e{bottom:558.270400pt;}
.ya{bottom:562.454133pt;}
.yca{bottom:567.320267pt;}
.y2a{bottom:568.343867pt;}
.y4f{bottom:570.417333pt;}
.y7c{bottom:571.650933pt;}
.y9{bottom:577.120800pt;}
.ya2{bottom:577.320267pt;}
.y6d{bottom:581.162800pt;}
.yc9{bottom:587.320267pt;}
.y8{bottom:591.787467pt;}
.y4e{bottom:593.309733pt;}
.y29{bottom:596.343867pt;}
.y6c{bottom:596.496133pt;}
.ya1{bottom:597.320267pt;}
.y7b{bottom:602.317600pt;}
.y7{bottom:606.454133pt;}
.yc8{bottom:607.320267pt;}
.y4d{bottom:608.643067pt;}
.y28{bottom:611.010533pt;}
.y6b{bottom:611.829467pt;}
.ya0{bottom:617.320267pt;}
.y6{bottom:623.010533pt;}
.yc7{bottom:627.320267pt;}
.y4c{bottom:631.535467pt;}
.y6a{bottom:634.721733pt;}
.y9f{bottom:637.320267pt;}
.y27{bottom:639.010533pt;}
.y4b{bottom:646.868800pt;}
.yc6{bottom:647.320267pt;}
.y5{bottom:653.677200pt;}
.y7a{bottom:655.876667pt;}
.y9e{bottom:657.320267pt;}
.yc5{bottom:667.320267pt;}
.y4{bottom:668.343867pt;}
.y4a{bottom:669.761200pt;}
.y9d{bottom:677.320267pt;}
.y79{bottom:679.210000pt;}
.y26{bottom:683.010533pt;}
.y69{bottom:684.501333pt;}
.y49{bottom:685.094533pt;}
.yc4{bottom:687.320267pt;}
.y9c{bottom:697.320267pt;}
.y3{bottom:697.677200pt;}
.y68{bottom:699.834667pt;}
.y48{bottom:700.427867pt;}
.y78{bottom:702.543333pt;}
.yc3{bottom:707.320267pt;}
.y25{bottom:712.343867pt;}
.y2{bottom:714.233600pt;}
.y67{bottom:715.168000pt;}
.y9b{bottom:717.320267pt;}
.y47{bottom:723.320267pt;}
.y77{bottom:725.876667pt;}
.yc2{bottom:727.320267pt;}
.y9a{bottom:737.320267pt;}
.y66{bottom:738.060400pt;}
.y46{bottom:738.653600pt;}
.yc1{bottom:747.320267pt;}
.y99{bottom:757.320267pt;}
.y76{bottom:770.543333pt;}
.y98{bottom:777.320267pt;}
.yc0{bottom:784.653600pt;}
.y75{bottom:793.876667pt;}
.y97{bottom:797.320267pt;}
.ybf{bottom:801.986933pt;}
.y45{bottom:815.320267pt;}
.y74{bottom:817.210000pt;}
.y96{bottom:817.320267pt;}
.ybe{bottom:819.320267pt;}
.ybd{bottom:850.564267pt;}
.y94{bottom:856.485467pt;}
.ybc{bottom:866.564267pt;}
.h11{height:27.265625pt;}
.h10{height:29.125000pt;}
.h4{height:29.250000pt;}
.h13{height:35.546875pt;}
.hb{height:36.562500pt;}
.h5{height:38.729167pt;}
.h3{height:39.708333pt;}
.h14{height:43.875000pt;}
.h15{height:44.437500pt;}
.hc{height:47.265625pt;}
.he{height:47.708333pt;}
.h9{height:47.838542pt;}
.ha{height:48.411458pt;}
.h8{height:49.635417pt;}
.hd{height:53.252604pt;}
.h12{height:56.718750pt;}
.hf{height:58.093750pt;}
.h6{height:69.489583pt;}
.h2{height:91.875000pt;}
.h7{height:904.910800pt;}
.h1{height:905.333333pt;}
.h0{height:905.356133pt;}
.w2{width:641.176000pt;}
.w1{width:641.333333pt;}
.w0{width:641.621733pt;}
.x0{left:0.000000pt;}
.x37{left:49.579600pt;}
.x9{left:51.758533pt;}
.x8{left:54.609867pt;}
.xc{left:55.511733pt;}
.x10{left:56.561067pt;}
.x11{left:58.220400pt;}
.xf{left:60.383333pt;}
.x7{left:62.419067pt;}
.xd{left:64.764133pt;}
.xe{left:67.197467pt;}
.xb{left:68.951067pt;}
.x13{left:72.535600pt;}
.x1f{left:77.343867pt;}
.x18{left:79.158800pt;}
.x33{left:81.323600pt;}
.x31{left:82.271600pt;}
.x2b{left:86.929200pt;}
.x22{left:91.693600pt;}
.x2d{left:105.826800pt;}
.x32{left:110.212400pt;}
.x3a{left:112.954800pt;}
.x21{left:115.497333pt;}
.x30{left:117.253333pt;}
.x1a{left:125.946533pt;}
.x5{left:131.404267pt;}
.x3{left:140.368400pt;}
.x4{left:144.771867pt;}
.x1b{left:154.927067pt;}
.x2e{left:165.546667pt;}
.x12{left:166.752933pt;}
.x20{left:169.001067pt;}
.x14{left:172.883600pt;}
.x16{left:186.906000pt;}
.x38{left:188.420533pt;}
.x3b{left:190.972400pt;}
.xa{left:198.293600pt;}
.x1c{left:201.041867pt;}
.x23{left:222.020000pt;}
.x1{left:225.663333pt;}
.x1d{left:232.959067pt;}
.x15{left:234.232533pt;}
.x26{left:239.798800pt;}
.x24{left:252.101467pt;}
.x6{left:256.956133pt;}
.x2{left:262.777467pt;}
.x17{left:263.679867pt;}
.x36{left:271.174400pt;}
.x1e{left:273.376133pt;}
.x34{left:275.482533pt;}
.x29{left:281.494667pt;}
.x28{left:282.763067pt;}
.x25{left:295.540267pt;}
.x2a{left:297.444133pt;}
.x19{left:298.889200pt;}
.x27{left:328.514400pt;}
.x2c{left:377.579867pt;}
.x35{left:386.826267pt;}
.x39{left:481.846533pt;}
.x2f{left:571.831600pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  