
    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_c343614b53ef9b95b836dcce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122070;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_98bb65b0d86193af83429b9f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982000;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_635fa0b4d5293516c584e80a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_6944050ce3083175c1731527.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.790000;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_101e12f2661ab129e4d075d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.790000;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_3625953859155106190f078b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_68f8204196368072b18a5992.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.122070;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_85cf959078d4238a2bf90aab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783000;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_30d4430d1e3205e352dd07a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953000;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_a547b63f66a2575bdecdad04.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.114258;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_0f01397254898189e17052e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983000;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_2a2b11ab61aeed6e627184ad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.983000;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_e1c347729fa5725b97f38077.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976000;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_a5d7a726b9784824aa8c3e5f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.122070;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_76bb3b6d58e13c98ba5220fc.woff2')format("woff");}.fff{font-family:fff;line-height:1.110352;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_88e022fbbd8a382a6e884c95.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.109375;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_69057aec0f33dd00c5f7f7f0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.110352;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_905c047be10ddb469b8430d2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.790000;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_1028536e29125c53918f9829.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.122070;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_8264ac1bfb1f5fb594b759ec.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.122070;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_68dab9c829ae3fdbc627722d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.109375;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_478630866c406c662695a6f2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.761000;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_540014c5e958820ffd01f709.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.983000;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_f8e48178eadea4853dc5dfde.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.960000;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_13ec5d4069f7d9c84ccb08dc.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.864000;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_46a3ed46788a213912a84d99.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.983000;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_8dab2e9576bb9db42744ae44.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.122070;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_e1b30118e635368355c55551.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.122070;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_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.770000;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_e603f56f5594e27dd3e6037b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.953000;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_e57fe58cbc37ec65d6398822.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.114258;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_f90dedd9f3fbacad44d573aa.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.114258;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_f90dedd9f3fbacad44d573aa.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.114258;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_46109778817c10a6252ac4f0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.114258;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_49ea3834520816f372179328.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.114258;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_f90dedd9f3fbacad44d573aa.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.114258;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_adec4417254af8aad1713579.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.114258;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_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.770000;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_e94b94b992b9158774a76f89.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.800000;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_644b0149631bb17845229540.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.114258;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_a82ad95773e74724744bd8e0.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.114258;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_b1611c474017aa9fd80eddfe.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.114258;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_f4298cd82a9d746fa3022eb1.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.114258;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_b1611c474017aa9fd80eddfe.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.114258;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_d7676e4c3a2a501a6ac85300.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.114258;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_fcbf3ca613185c346df0042a.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.114258;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_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.770000;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_74412c464b4b7d7daa342274.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.790000;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_cea7eba3b117639fcc611620.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.114258;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_1ca95ebe5e6eeb87d29c4ff7.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.114258;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_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.770000;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_33f017170284976e8c766f25.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.794000;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_4634d416543e6df55d5e9ce3.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.114258;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_f94396fcd13995cdc8c5c438.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.114258;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_8ac7d59907bf522fd372f6c3.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.114258;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_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.770000;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_24b0a90bfdbe5e757a60f4d8.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.953000;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_f94396fcd13995cdc8c5c438.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.114258;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_f9718cc061529c0a2f673ea6.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.114258;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_3a5fed924d6bbb91316764ce.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.975000;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_81efa2cbae8696dc21e211ac.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.783000;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_7bd14a3e9398633220d6a2cd.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.980000;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_2d3173d4c4a73bc5b940a187.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.122070;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_c97e787051b48c0e95ec1d93.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.122070;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_cb213f2a1a45dec26fd63ebf.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.110352;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_bf192168c2b57de16ca1ada9.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.783000;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_5d141689559d5b8435b8cc25.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.122070;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:ff44;src:url('chunks/assets/font_ed9ae79e7215cd4594425d9e.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.114258;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:ff45;src:url('chunks/assets/font_797aa65b0d73a64df164e561.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.122070;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:ff46;src:url('chunks/assets/font_389b868a6df6b8ae326a4fce.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.983000;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:ff47;src:url('chunks/assets/font_5dfea5ef8cca470cc38eaa37.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.109375;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:ff48;src:url('chunks/assets/font_864b77d07c1e5d62ef812865.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.110352;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:ff49;src:url('chunks/assets/font_2930bda56623c058540a9744.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.115234;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;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.020280px;}
.ls5{letter-spacing:0.021600px;}
.ls4{letter-spacing:0.072540px;}
.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;}
}
.ws6{word-spacing:-115.506000px;}
.ws1{word-spacing:-106.596000px;}
.ws5{word-spacing:-57.202200px;}
.ws4{word-spacing:-30.375000px;}
.ws9{word-spacing:-27.438750px;}
.ws2{word-spacing:-22.761000px;}
.wsa{word-spacing:-21.951000px;}
.ws3{word-spacing:-19.197000px;}
.ws8{word-spacing:-18.769219px;}
.ws7{word-spacing:-15.932700px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-37.714693px;}
._8{margin-left:-24.885069px;}
._7{margin-left:-11.857612px;}
._9{margin-left:-8.315917px;}
._6{margin-left:-6.922422px;}
._4{margin-left:-5.265000px;}
._1{margin-left:-3.646470px;}
._0{margin-left:-2.023975px;}
._3{margin-left:-1.017615px;}
._2{width:1.051545px;}
._5{width:2.293588px;}
.fc4{color:rgb(255,255,255);}
.fc3{color:transparent;}
.fc2{color:rgb(60,65,81);}
.fc1{color:rgb(30,154,176);}
.fc0{color:rgb(255,117,24);}
.fs5{font-size:56.700000px;}
.fs0{font-size:64.800000px;}
.fs9{font-size:66.794374px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:101.250000px;}
.fs6{font-size:113.895000px;}
.fs8{font-size:121.500000px;}
.fs3{font-size:162.000000px;}
.fs1{font-size:202.500000px;}
.fs7{font-size:267.300000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.150000px;}
.y65{bottom:0.495117px;}
.y1{bottom:0.600000px;}
.yc{bottom:0.750000px;}
.y19{bottom:3.374700px;}
.y6b{bottom:3.420000px;}
.y24{bottom:3.464550px;}
.y57{bottom:3.509700px;}
.y56{bottom:3.600000px;}
.y3f{bottom:3.645000px;}
.y36{bottom:3.689550px;}
.y4d{bottom:19.125000px;}
.y35{bottom:24.120150px;}
.y3e{bottom:24.480000px;}
.y23{bottom:24.840300px;}
.y6a{bottom:25.200150px;}
.y18{bottom:25.560000px;}
.y34{bottom:70.934700px;}
.y3d{bottom:72.000000px;}
.y69{bottom:72.000033px;}
.ya{bottom:72.029850px;}
.y53{bottom:72.030000px;}
.y64{bottom:99.029850px;}
.y9{bottom:120.405000px;}
.y63{bottom:124.904850px;}
.y62{bottom:124.905000px;}
.y17{bottom:130.560000px;}
.y33{bottom:142.934700px;}
.y8{bottom:146.280000px;}
.y22{bottom:157.530000px;}
.y4a{bottom:159.750000px;}
.y16{bottom:162.060000px;}
.y52{bottom:172.155000px;}
.y32{bottom:175.560000px;}
.y21{bottom:190.155000px;}
.y77{bottom:192.374883px;}
.y49{bottom:192.375000px;}
.y51{bottom:204.780000px;}
.y7a{bottom:205.905000px;}
.y15{bottom:207.060000px;}
.y31{bottom:220.560000px;}
.y78{bottom:223.874883px;}
.y3c{bottom:224.437500px;}
.y76{bottom:224.999883px;}
.y61{bottom:226.155000px;}
.y20{bottom:235.155000px;}
.y48{bottom:236.250000px;}
.y50{bottom:237.405000px;}
.y7{bottom:253.155000px;}
.y75{bottom:256.499883px;}
.y5f{bottom:257.655000px;}
.y79{bottom:262.155000px;}
.y43{bottom:264.375000px;}
.y4f{bottom:270.030000px;}
.y6{bottom:285.780000px;}
.y14{bottom:285.810000px;}
.y5e{bottom:290.280000px;}
.y30{bottom:292.560000px;}
.y42{bottom:297.000000px;}
.y74{bottom:301.499883px;}
.y4e{bottom:315.030000px;}
.y5{bottom:318.405000px;}
.y13{bottom:318.435000px;}
.y3a{bottom:318.937500px;}
.y60{bottom:322.905000px;}
.y2f{bottom:325.185000px;}
.y1f{bottom:327.405000px;}
.y41{bottom:329.625000px;}
.y73{bottom:332.999883px;}
.y5d{bottom:335.280000px;}
.y4c{bottom:361.305000px;}
.y12{bottom:363.435000px;}
.y5c{bottom:367.905000px;}
.y47{bottom:370.125000px;}
.y2e{bottom:370.185000px;}
.y1e{bottom:372.405000px;}
.y40{bottom:374.625000px;}
.y55{bottom:379.155000px;}
.y5b{bottom:399.405000px;}
.y46{bottom:402.750000px;}
.y3b{bottom:413.437500px;}
.yb{bottom:418.500000px;}
.y5a{bottom:432.030000px;}
.y45{bottom:434.250000px;}
.y6f{bottom:435.374883px;}
.y2d{bottom:441.060000px;}
.y11{bottom:442.185000px;}
.y4{bottom:445.530000px;}
.y72{bottom:451.124883px;}
.y54{bottom:451.155000px;}
.y6e{bottom:466.874883px;}
.y2c{bottom:473.685000px;}
.y59{bottom:477.030000px;}
.y44{bottom:479.250000px;}
.y1d{bottom:481.530000px;}
.y71{bottom:482.624883px;}
.y10{bottom:487.185000px;}
.y4b{bottom:488.280000px;}
.y2b{bottom:506.310000px;}
.y3{bottom:508.530000px;}
.y6d{bottom:511.874883px;}
.y1c{bottom:526.530000px;}
.y70{bottom:527.624883px;}
.y6c{bottom:543.374883px;}
.y2a{bottom:551.310000px;}
.yf{bottom:565.935000px;}
.y39{bottom:569.250000px;}
.y2{bottom:589.530000px;}
.y38{bottom:601.875000px;}
.ye{bottom:610.935000px;}
.y29{bottom:623.310000px;}
.y58{bottom:624.405000px;}
.y1b{bottom:644.655000px;}
.y28{bottom:654.810000px;}
.y68{bottom:672.749883px;}
.y37{bottom:673.875000px;}
.y27{bottom:687.435000px;}
.y67{bottom:705.374883px;}
.y26{bottom:732.435000px;}
.yd{bottom:743.685000px;}
.y66{bottom:787.499883px;}
.y25{bottom:833.685000px;}
.hc{height:16.919850px;}
.h2a{height:16.920000px;}
.h12{height:17.279700px;}
.h16{height:17.279850px;}
.hd{height:51.384375px;}
.h3{height:58.725000px;}
.h26{height:60.532401px;}
.h1c{height:67.500000px;}
.h5{height:73.406250px;}
.hb{height:77.861250px;}
.h11{height:78.570000px;}
.h18{height:85.079565px;}
.h2b{height:91.757813px;}
.h1f{height:94.284000px;}
.h1e{height:122.472000px;}
.h25{height:124.578000px;}
.h7{height:125.712000px;}
.h1b{height:152.685000px;}
.h10{height:155.722500px;}
.h4{height:157.140000px;}
.h1d{height:199.673100px;}
.hf{height:760.500000px;}
.he{height:760.680000px;}
.h6{height:765.000000px;}
.h17{height:783.000000px;}
.h2{height:848.250000px;}
.h0{height:848.880000px;}
.h1{height:849.000000px;}
.h1a{height:850.500000px;}
.h19{height:850.680000px;}
.ha{height:852.750000px;}
.h9{height:853.500000px;}
.h8{height:853.560000px;}
.h24{height:855.000000px;}
.h22{height:884.880000px;}
.h23{height:885.000000px;}
.h29{height:896.624883px;}
.h28{height:897.000000px;}
.h27{height:897.120000px;}
.h15{height:942.750000px;}
.h14{height:943.500000px;}
.h13{height:943.560000px;}
.h20{height:1036.440000px;}
.h21{height:1036.500000px;}
.w3{width:9.359760px;}
.w2{width:10.439655px;}
.w6{width:12.600000px;}
.w7{width:16.200000px;}
.w5{width:17.279850px;}
.w9{width:18.359700px;}
.w8{width:19.439700px;}
.w1{width:77.040000px;}
.w4{width:385.875000px;}
.w0{width:1350.000000px;}
.x0{left:0.000000px;}
.x2d{left:1.089000px;}
.x1d{left:47.373000px;}
.x1{left:70.875000px;}
.x1a{left:74.320230px;}
.x2{left:81.703500px;}
.x42{left:93.411000px;}
.x23{left:97.453500px;}
.x40{left:103.289100px;}
.x13{left:105.328200px;}
.x3b{left:110.920200px;}
.x3d{left:113.818350px;}
.x19{left:117.281250px;}
.x41{left:124.347600px;}
.x17{left:133.066500px;}
.x3e{left:135.139500px;}
.x6{left:136.687500px;}
.x14{left:149.677500px;}
.x1b{left:169.646430px;}
.x12{left:184.201500px;}
.xc{left:192.375000px;}
.x18{left:194.203500px;}
.x28{left:258.907755px;}
.x33{left:277.804500px;}
.x3c{left:290.144700px;}
.x37{left:313.032000px;}
.x3a{left:324.474000px;}
.x15{left:342.052050px;}
.x10{left:350.104500px;}
.x31{left:391.605000px;}
.x2e{left:438.802500px;}
.x32{left:464.572500px;}
.x2a{left:477.474000px;}
.x1c{left:482.625000px;}
.x20{left:485.244450px;}
.x9{left:492.855000px;}
.x21{left:500.080395px;}
.x5{left:536.151000px;}
.x1f{left:547.048500px;}
.x1e{left:553.746000px;}
.x43{left:556.540500px;}
.xe{left:559.512000px;}
.xd{left:567.808500px;}
.xa{left:592.524000px;}
.x3{left:624.463500px;}
.x7{left:636.480000px;}
.x34{left:687.657000px;}
.xb{left:692.209500px;}
.xf{left:719.911500px;}
.x29{left:754.311255px;}
.x16{left:886.429500px;}
.x22{left:893.250000px;}
.x3f{left:916.804500px;}
.x25{left:927.228000px;}
.x26{left:938.917455px;}
.x24{left:958.974000px;}
.x27{left:996.837255px;}
.x35{left:1044.316500px;}
.x38{left:1053.282000px;}
.x36{left:1137.322500px;}
.x4{left:1190.320500px;}
.x39{left:1258.647000px;}
.x2f{left:1309.320000px;}
.x30{left:1310.400000px;}
.x2b{left:1312.560000px;}
.x2c{left:1316.160000px;}
.x8{left:1318.320000px;}
.x11{left:1319.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.018027pt;}
.ls5{letter-spacing:0.019200pt;}
.ls4{letter-spacing:0.064480pt;}
.ws6{word-spacing:-102.672000pt;}
.ws1{word-spacing:-94.752000pt;}
.ws5{word-spacing:-50.846400pt;}
.ws4{word-spacing:-27.000000pt;}
.ws9{word-spacing:-24.390000pt;}
.ws2{word-spacing:-20.232000pt;}
.wsa{word-spacing:-19.512000pt;}
.ws3{word-spacing:-17.064000pt;}
.ws8{word-spacing:-16.683750pt;}
.ws7{word-spacing:-14.162400pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-33.524172pt;}
._8{margin-left:-22.120061pt;}
._7{margin-left:-10.540099pt;}
._9{margin-left:-7.391926pt;}
._6{margin-left:-6.153264pt;}
._4{margin-left:-4.680000pt;}
._1{margin-left:-3.241307pt;}
._0{margin-left:-1.799089pt;}
._3{margin-left:-0.904547pt;}
._2{width:0.934707pt;}
._5{width:2.038745pt;}
.fs5{font-size:50.400000pt;}
.fs0{font-size:57.600000pt;}
.fs9{font-size:59.372777pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:90.000000pt;}
.fs6{font-size:101.240000pt;}
.fs8{font-size:108.000000pt;}
.fs3{font-size:144.000000pt;}
.fs1{font-size:180.000000pt;}
.fs7{font-size:237.600000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.133333pt;}
.y65{bottom:0.440104pt;}
.y1{bottom:0.533333pt;}
.yc{bottom:0.666667pt;}
.y19{bottom:2.999733pt;}
.y6b{bottom:3.040000pt;}
.y24{bottom:3.079600pt;}
.y57{bottom:3.119733pt;}
.y56{bottom:3.200000pt;}
.y3f{bottom:3.240000pt;}
.y36{bottom:3.279600pt;}
.y4d{bottom:17.000000pt;}
.y35{bottom:21.440133pt;}
.y3e{bottom:21.760000pt;}
.y23{bottom:22.080267pt;}
.y6a{bottom:22.400133pt;}
.y18{bottom:22.720000pt;}
.y34{bottom:63.053067pt;}
.y3d{bottom:64.000000pt;}
.y69{bottom:64.000029pt;}
.ya{bottom:64.026533pt;}
.y53{bottom:64.026667pt;}
.y64{bottom:88.026533pt;}
.y9{bottom:107.026667pt;}
.y63{bottom:111.026533pt;}
.y62{bottom:111.026667pt;}
.y17{bottom:116.053333pt;}
.y33{bottom:127.053067pt;}
.y8{bottom:130.026667pt;}
.y22{bottom:140.026667pt;}
.y4a{bottom:142.000000pt;}
.y16{bottom:144.053333pt;}
.y52{bottom:153.026667pt;}
.y32{bottom:156.053333pt;}
.y21{bottom:169.026667pt;}
.y77{bottom:170.999896pt;}
.y49{bottom:171.000000pt;}
.y51{bottom:182.026667pt;}
.y7a{bottom:183.026667pt;}
.y15{bottom:184.053333pt;}
.y31{bottom:196.053333pt;}
.y78{bottom:198.999896pt;}
.y3c{bottom:199.500000pt;}
.y76{bottom:199.999896pt;}
.y61{bottom:201.026667pt;}
.y20{bottom:209.026667pt;}
.y48{bottom:210.000000pt;}
.y50{bottom:211.026667pt;}
.y7{bottom:225.026667pt;}
.y75{bottom:227.999896pt;}
.y5f{bottom:229.026667pt;}
.y79{bottom:233.026667pt;}
.y43{bottom:235.000000pt;}
.y4f{bottom:240.026667pt;}
.y6{bottom:254.026667pt;}
.y14{bottom:254.053333pt;}
.y5e{bottom:258.026667pt;}
.y30{bottom:260.053333pt;}
.y42{bottom:264.000000pt;}
.y74{bottom:267.999896pt;}
.y4e{bottom:280.026667pt;}
.y5{bottom:283.026667pt;}
.y13{bottom:283.053333pt;}
.y3a{bottom:283.500000pt;}
.y60{bottom:287.026667pt;}
.y2f{bottom:289.053333pt;}
.y1f{bottom:291.026667pt;}
.y41{bottom:293.000000pt;}
.y73{bottom:295.999896pt;}
.y5d{bottom:298.026667pt;}
.y4c{bottom:321.160000pt;}
.y12{bottom:323.053333pt;}
.y5c{bottom:327.026667pt;}
.y47{bottom:329.000000pt;}
.y2e{bottom:329.053333pt;}
.y1e{bottom:331.026667pt;}
.y40{bottom:333.000000pt;}
.y55{bottom:337.026667pt;}
.y5b{bottom:355.026667pt;}
.y46{bottom:358.000000pt;}
.y3b{bottom:367.500000pt;}
.yb{bottom:372.000000pt;}
.y5a{bottom:384.026667pt;}
.y45{bottom:386.000000pt;}
.y6f{bottom:386.999896pt;}
.y2d{bottom:392.053333pt;}
.y11{bottom:393.053333pt;}
.y4{bottom:396.026667pt;}
.y72{bottom:400.999896pt;}
.y54{bottom:401.026667pt;}
.y6e{bottom:414.999896pt;}
.y2c{bottom:421.053333pt;}
.y59{bottom:424.026667pt;}
.y44{bottom:426.000000pt;}
.y1d{bottom:428.026667pt;}
.y71{bottom:428.999896pt;}
.y10{bottom:433.053333pt;}
.y4b{bottom:434.026667pt;}
.y2b{bottom:450.053333pt;}
.y3{bottom:452.026667pt;}
.y6d{bottom:454.999896pt;}
.y1c{bottom:468.026667pt;}
.y70{bottom:468.999896pt;}
.y6c{bottom:482.999896pt;}
.y2a{bottom:490.053333pt;}
.yf{bottom:503.053333pt;}
.y39{bottom:506.000000pt;}
.y2{bottom:524.026667pt;}
.y38{bottom:535.000000pt;}
.ye{bottom:543.053333pt;}
.y29{bottom:554.053333pt;}
.y58{bottom:555.026667pt;}
.y1b{bottom:573.026667pt;}
.y28{bottom:582.053333pt;}
.y68{bottom:597.999896pt;}
.y37{bottom:599.000000pt;}
.y27{bottom:611.053333pt;}
.y67{bottom:626.999896pt;}
.y26{bottom:651.053333pt;}
.yd{bottom:661.053333pt;}
.y66{bottom:699.999896pt;}
.y25{bottom:741.053333pt;}
.hc{height:15.039867pt;}
.h2a{height:15.040000pt;}
.h12{height:15.359733pt;}
.h16{height:15.359867pt;}
.hd{height:45.675000pt;}
.h3{height:52.200000pt;}
.h26{height:53.806579pt;}
.h1c{height:60.000000pt;}
.h5{height:65.250000pt;}
.hb{height:69.210000pt;}
.h11{height:69.840000pt;}
.h18{height:75.626280pt;}
.h2b{height:81.562500pt;}
.h1f{height:83.808000pt;}
.h1e{height:108.864000pt;}
.h25{height:110.736000pt;}
.h7{height:111.744000pt;}
.h1b{height:135.720000pt;}
.h10{height:138.420000pt;}
.h4{height:139.680000pt;}
.h1d{height:177.487200pt;}
.hf{height:676.000000pt;}
.he{height:676.160000pt;}
.h6{height:680.000000pt;}
.h17{height:696.000000pt;}
.h2{height:754.000000pt;}
.h0{height:754.560000pt;}
.h1{height:754.666667pt;}
.h1a{height:756.000000pt;}
.h19{height:756.160000pt;}
.ha{height:758.000000pt;}
.h9{height:758.666667pt;}
.h8{height:758.720000pt;}
.h24{height:760.000000pt;}
.h22{height:786.560000pt;}
.h23{height:786.666667pt;}
.h29{height:796.999896pt;}
.h28{height:797.333333pt;}
.h27{height:797.440000pt;}
.h15{height:838.000000pt;}
.h14{height:838.666667pt;}
.h13{height:838.720000pt;}
.h20{height:921.280000pt;}
.h21{height:921.333333pt;}
.w3{width:8.319787pt;}
.w2{width:9.279693pt;}
.w6{width:11.200000pt;}
.w7{width:14.400000pt;}
.w5{width:15.359867pt;}
.w9{width:16.319733pt;}
.w8{width:17.279733pt;}
.w1{width:68.480000pt;}
.w4{width:343.000000pt;}
.w0{width:1200.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:0.968000pt;}
.x1d{left:42.109333pt;}
.x1{left:63.000000pt;}
.x1a{left:66.062427pt;}
.x2{left:72.625333pt;}
.x42{left:83.032000pt;}
.x23{left:86.625333pt;}
.x40{left:91.812533pt;}
.x13{left:93.625067pt;}
.x3b{left:98.595733pt;}
.x3d{left:101.171867pt;}
.x19{left:104.250000pt;}
.x41{left:110.531200pt;}
.x17{left:118.281333pt;}
.x3e{left:120.124000pt;}
.x6{left:121.500000pt;}
.x14{left:133.046667pt;}
.x1b{left:150.796827pt;}
.x12{left:163.734667pt;}
.xc{left:171.000000pt;}
.x18{left:172.625333pt;}
.x28{left:230.140227pt;}
.x33{left:246.937333pt;}
.x3c{left:257.906400pt;}
.x37{left:278.250667pt;}
.x3a{left:288.421333pt;}
.x15{left:304.046267pt;}
.x10{left:311.204000pt;}
.x31{left:348.093333pt;}
.x2e{left:390.046667pt;}
.x32{left:412.953333pt;}
.x2a{left:424.421333pt;}
.x1c{left:429.000000pt;}
.x20{left:431.328400pt;}
.x9{left:438.093333pt;}
.x21{left:444.515907pt;}
.x5{left:476.578667pt;}
.x1f{left:486.265333pt;}
.x1e{left:492.218667pt;}
.x43{left:494.702667pt;}
.xe{left:497.344000pt;}
.xd{left:504.718667pt;}
.xa{left:526.688000pt;}
.x3{left:555.078667pt;}
.x7{left:565.760000pt;}
.x34{left:611.250667pt;}
.xb{left:615.297333pt;}
.xf{left:639.921333pt;}
.x29{left:670.498893pt;}
.x16{left:787.937333pt;}
.x22{left:794.000000pt;}
.x3f{left:814.937333pt;}
.x25{left:824.202667pt;}
.x26{left:834.593293pt;}
.x24{left:852.421333pt;}
.x27{left:886.077560pt;}
.x35{left:928.281333pt;}
.x38{left:936.250667pt;}
.x36{left:1010.953333pt;}
.x4{left:1058.062667pt;}
.x39{left:1118.797333pt;}
.x2f{left:1163.840000pt;}
.x30{left:1164.800000pt;}
.x2b{left:1166.720000pt;}
.x2c{left:1169.920000pt;}
.x8{left:1171.840000pt;}
.x11{left:1172.800000pt;}
}




    .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; }
  