
    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_c703033f8f4aeb65f868ca9a.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_e05600bb13e79390f5ebd387.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_10ab98eba23a6d704470d8ea.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_9bbe930bf211f0707a5ef9fd.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_45c4f5efec41419f5cb707e3.woff2')format("woff");}.ffa{font-family:ffa;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: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_fcbcdac547b8f8793fb93f52.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.990000;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_0c3c5db527250eb7dc64c0ec.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_fa17570957c610c4034c4efc.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_d7ca23976aee879481c82e82.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_a77b2a3bb4a38f3a81dadc67.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_48479b2da745e4412c725b44.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_f837262113c951bd32783f4e.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_2d64e2cd71080b4e46c448ae.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_e07881c8ec75776a25ac04e0.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_ffd5a1caf04ecaa26c6bb0a8.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_e70984a146c3422a213f7d9a.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_46a3ed46788a213912a84d99.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_78ef60680bc66f1ffd100e5c.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_8d89e1e0c5a9b967912ddade.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_65a34b85934465f717de34c1.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_7fdc9877bfddd5c72a1bcfd8.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.849000;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_fa7ec4d4b21a0cbe5460fccf.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.973000;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_8d89e1e0c5a9b967912ddade.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_8d89e1e0c5a9b967912ddade.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_ca8cb7dfc91e59c5c96154d8.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_8ec53037d1939edb0d80b12b.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_59150f0a4202a6534f2824f2.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_a2888a13066fe48d1341a9e3.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_67ef14458b7de65273deffe1.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_e94b94b992b9158774a76f89.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_4b07aff932189f098c4272d6.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_6734e4f157e631e56c8be022.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_80f65d5a923b68f9f7c5f0cd.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_6734e4f157e631e56c8be022.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_74412c464b4b7d7daa342274.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_1b8ae585c7fdb5e7c5de6ed0.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_63e7c5d41fea4ea0d2e584f1.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_33f017170284976e8c766f25.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_cd8277d05aed5401ad2646b2.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_65e17a3ce0178863ef7fc2ee.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_bcf297c4a67e5e5a581265d6.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_0df7356bc2c2b2dbb225d9c0.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_3989eb873afc0f1b26c76f7f.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_24b0a90bfdbe5e757a60f4d8.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_3425f2a9806044daba47c3cf.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_695d77e1be2fe688a8dd4e5b.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_3a5fed924d6bbb91316764ce.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_81efa2cbae8696dc21e211ac.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_7bd14a3e9398633220d6a2cd.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_a7e5b8dff3d71eba52b7743e.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_29ede9d3d59cd34d6398b2db.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_0a6a50571c21d17979048aff.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_b9179bbf7a97ff96913049a4.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_bf192168c2b57de16ca1ada9.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_2003dfbdf244429d99795269.woff2')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_c24bb71d47bf971cc450e5bb.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_22223c62cf061cb786f15bca.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_389b868a6df6b8ae326a4fce.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_20216266b56f7901a93af60c.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_c154af34f3d6830a80511701.woff2')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_ee90962470c1e4304b95c945.woff2')format("woff");}.ff4c{font-family:ff4c;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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,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;}
.ws9{word-spacing:-72.191250px;}
.ws8{word-spacing:-58.271400px;}
.ws5{word-spacing:-57.202200px;}
.wsa{word-spacing:-40.824000px;}
.ws4{word-spacing:-30.375000px;}
.wsb{word-spacing:-27.438750px;}
.ws2{word-spacing:-22.761000px;}
.wsc{word-spacing:-21.951000px;}
.ws3{word-spacing:-19.197000px;}
.ws7{word-spacing:-15.932700px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-24.885069px;}
._6{margin-left:-11.857612px;}
._5{margin-left:-6.922422px;}
._4{margin-left:-5.265000px;}
._1{margin-left:-3.644678px;}
._0{margin-left:-2.024048px;}
._3{margin-left:-1.018359px;}
._2{width:1.704386px;}
.fc5{color:rgb(204,82,0);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.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;}
.y4b{bottom:0.315234px;}
.y6d{bottom:0.495117px;}
.y1{bottom:0.600000px;}
.yc{bottom:0.750000px;}
.y19{bottom:3.374700px;}
.y73{bottom:3.420000px;}
.y24{bottom:3.464550px;}
.y5f{bottom:3.509700px;}
.y58{bottom:3.600000px;}
.y3f{bottom:3.645000px;}
.y36{bottom:3.689550px;}
.y50{bottom:18.000000px;}
.y35{bottom:24.120150px;}
.y3e{bottom:24.480000px;}
.y23{bottom:24.840300px;}
.y72{bottom:25.200150px;}
.y18{bottom:25.560000px;}
.y34{bottom:70.934700px;}
.y57{bottom:71.999766px;}
.y3d{bottom:72.000000px;}
.y71{bottom:72.000033px;}
.ya{bottom:72.029850px;}
.y6c{bottom:99.029850px;}
.y6b{bottom:99.030000px;}
.y56{bottom:120.374766px;}
.y9{bottom:120.405000px;}
.y6a{bottom:124.905000px;}
.y17{bottom:130.560000px;}
.y5e{bottom:142.904850px;}
.y33{bottom:142.934700px;}
.y8{bottom:146.280000px;}
.y22{bottom:157.530000px;}
.y4a{bottom:159.750000px;}
.y16{bottom:162.060000px;}
.y55{bottom:172.124766px;}
.y82{bottom:175.499883px;}
.y32{bottom:175.560000px;}
.y5d{bottom:189.180000px;}
.y21{bottom:190.155000px;}
.y49{bottom:192.375000px;}
.y54{bottom:204.749766px;}
.y87{bottom:205.905000px;}
.y15{bottom:207.060000px;}
.y81{bottom:208.124883px;}
.y31{bottom:220.560000px;}
.y85{bottom:223.874883px;}
.y3c{bottom:224.437500px;}
.y69{bottom:226.155000px;}
.y20{bottom:235.155000px;}
.y48{bottom:236.250000px;}
.y53{bottom:237.374766px;}
.y80{bottom:240.749883px;}
.y7{bottom:253.155000px;}
.y84{bottom:256.499883px;}
.y67{bottom:257.655000px;}
.y86{bottom:262.155000px;}
.y43{bottom:264.375000px;}
.y52{bottom:268.874766px;}
.y7f{bottom:273.374883px;}
.y6{bottom:285.780000px;}
.y14{bottom:285.810000px;}
.y66{bottom:290.280000px;}
.y30{bottom:292.560000px;}
.y42{bottom:297.000000px;}
.y83{bottom:301.499883px;}
.y51{bottom:313.874766px;}
.y7e{bottom:318.374883px;}
.y5{bottom:318.405000px;}
.y13{bottom:318.435000px;}
.y3a{bottom:318.937500px;}
.y68{bottom:322.905000px;}
.y2f{bottom:325.185000px;}
.y1f{bottom:327.405000px;}
.y41{bottom:329.625000px;}
.y65{bottom:335.280000px;}
.y7d{bottom:349.874883px;}
.y5c{bottom:355.530000px;}
.y4f{bottom:361.440000px;}
.y12{bottom:363.435000px;}
.y64{bottom:367.905000px;}
.y47{bottom:370.125000px;}
.y2e{bottom:370.185000px;}
.y1e{bottom:372.405000px;}
.y40{bottom:374.625000px;}
.y5a{bottom:379.155000px;}
.y5b{bottom:393.780000px;}
.y63{bottom:399.405000px;}
.y46{bottom:402.750000px;}
.y3b{bottom:413.437500px;}
.y7c{bottom:418.499883px;}
.yb{bottom:418.500000px;}
.y62{bottom:432.030000px;}
.y77{bottom:434.249883px;}
.y45{bottom:434.250000px;}
.y2d{bottom:441.060000px;}
.y11{bottom:442.185000px;}
.y4{bottom:445.530000px;}
.y7b{bottom:451.124883px;}
.y59{bottom:451.155000px;}
.y76{bottom:466.874883px;}
.y4e{bottom:470.249766px;}
.y2c{bottom:473.685000px;}
.y61{bottom:477.030000px;}
.y44{bottom:479.250000px;}
.y1d{bottom:481.530000px;}
.y7a{bottom:482.624883px;}
.y10{bottom:487.185000px;}
.y4d{bottom:502.874766px;}
.y2b{bottom:506.310000px;}
.y3{bottom:508.530000px;}
.y75{bottom:511.874883px;}
.y79{bottom:515.249883px;}
.y1c{bottom:526.530000px;}
.y74{bottom:543.374883px;}
.y2a{bottom:551.310000px;}
.y78{bottom:560.249883px;}
.yf{bottom:565.935000px;}
.y39{bottom:569.250000px;}
.y4c{bottom:574.874766px;}
.y2{bottom:589.530000px;}
.y38{bottom:601.875000px;}
.ye{bottom:610.935000px;}
.y29{bottom:623.310000px;}
.y60{bottom:624.405000px;}
.y1b{bottom:644.655000px;}
.y28{bottom:654.810000px;}
.y70{bottom:672.749883px;}
.y37{bottom:673.875000px;}
.y27{bottom:687.435000px;}
.y6f{bottom:705.374883px;}
.y26{bottom:732.435000px;}
.yd{bottom:743.685000px;}
.y6e{bottom:787.499883px;}
.y25{bottom:833.685000px;}
.hc{height:16.919850px;}
.h2c{height:16.920000px;}
.h12{height:17.279700px;}
.h17{height:17.279850px;}
.hd{height:51.384375px;}
.h3{height:58.725000px;}
.h28{height:60.532401px;}
.h1d{height:66.375000px;}
.h5{height:73.406250px;}
.hb{height:77.861250px;}
.h11{height:78.570000px;}
.h16{height:79.278750px;}
.h19{height:85.079565px;}
.h2d{height:91.757813px;}
.h20{height:94.284000px;}
.h1f{height:122.472000px;}
.h27{height:124.578000px;}
.h7{height:125.712000px;}
.h10{height:155.722500px;}
.h4{height:157.140000px;}
.h23{height:195.663600px;}
.h1e{height:199.673100px;}
.hf{height:760.500000px;}
.he{height:760.680000px;}
.h6{height:765.000000px;}
.h18{height:783.000000px;}
.h2{height:848.250000px;}
.h0{height:848.880000px;}
.h1{height:849.000000px;}
.ha{height:852.750000px;}
.h9{height:853.500000px;}
.h8{height:853.560000px;}
.h26{height:855.000000px;}
.h24{height:884.880000px;}
.h25{height:885.000000px;}
.h2b{height:896.624883px;}
.h2a{height:897.000000px;}
.h29{height:897.120000px;}
.h1c{height:937.124766px;}
.h1a{height:937.440000px;}
.h1b{height:937.500000px;}
.h15{height:942.750000px;}
.h14{height:943.500000px;}
.h13{height:943.560000px;}
.h21{height:1036.440000px;}
.h22{height:1036.500000px;}
.w3{width:9.359760px;}
.w2{width:10.439655px;}
.w6{width:12.600000px;}
.w8{width:14.759760px;}
.w7{width:16.200000px;}
.w5{width:17.279850px;}
.wa{width:18.359700px;}
.w9{width:19.439700px;}
.w1{width:117.359700px;}
.w4{width:385.875000px;}
.w0{width:1350.000000px;}
.x0{left:0.000000px;}
.x32{left:1.089000px;}
.x1d{left:47.373000px;}
.x1{left:70.875000px;}
.x1a{left:74.320230px;}
.x2{left:81.703200px;}
.x23{left:87.768000px;}
.x3b{left:91.264650px;}
.x44{left:93.411000px;}
.x15{left:100.739550px;}
.x42{left:103.289100px;}
.x13{left:105.328200px;}
.x3e{left:110.920200px;}
.x40{left:113.818350px;}
.x19{left:117.281250px;}
.x43{left:124.347600px;}
.x17{left:135.562500px;}
.x6{left:136.687500px;}
.x2e{left:138.375000px;}
.x2c{left:140.889000px;}
.x14{left:149.677500px;}
.x1b{left:169.646430px;}
.x12{left:184.201500px;}
.xc{left:192.375000px;}
.x18{left:194.203500px;}
.x2d{left:201.516000px;}
.x28{left:258.907755px;}
.x39{left:277.804500px;}
.x3f{left:290.144700px;}
.x3d{left:324.474000px;}
.x10{left:350.104500px;}
.x37{left:391.605000px;}
.x34{left:438.802500px;}
.x2b{left:457.207350px;}
.x38{left:464.572500px;}
.x29{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;}
.x45{left:556.540500px;}
.xe{left:559.512000px;}
.xd{left:567.808500px;}
.xa{left:592.524000px;}
.x7{left:616.320000px;}
.x2f{left:621.157500px;}
.x3{left:624.463200px;}
.x3a{left:687.657000px;}
.xb{left:692.209500px;}
.xf{left:719.911500px;}
.x3c{left:721.933500px;}
.x16{left:886.429500px;}
.x22{left:893.250000px;}
.x41{left:916.804500px;}
.x25{left:927.228000px;}
.x26{left:938.917455px;}
.x24{left:958.974000px;}
.x27{left:996.837255px;}
.x30{left:1020.147000px;}
.x4{left:1142.665500px;}
.x35{left:1309.320000px;}
.x36{left:1310.400000px;}
.x2a{left:1312.560000px;}
.x33{left:1314.000000px;}
.x31{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;}
.ws9{word-spacing:-64.170000pt;}
.ws8{word-spacing:-51.796800pt;}
.ws5{word-spacing:-50.846400pt;}
.wsa{word-spacing:-36.288000pt;}
.ws4{word-spacing:-27.000000pt;}
.wsb{word-spacing:-24.390000pt;}
.ws2{word-spacing:-20.232000pt;}
.wsc{word-spacing:-19.512000pt;}
.ws3{word-spacing:-17.064000pt;}
.ws7{word-spacing:-14.162400pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-22.120061pt;}
._6{margin-left:-10.540099pt;}
._5{margin-left:-6.153264pt;}
._4{margin-left:-4.680000pt;}
._1{margin-left:-3.239714pt;}
._0{margin-left:-1.799154pt;}
._3{margin-left:-0.905208pt;}
._2{width:1.515010pt;}
.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;}
.y4b{bottom:0.280208pt;}
.y6d{bottom:0.440104pt;}
.y1{bottom:0.533333pt;}
.yc{bottom:0.666667pt;}
.y19{bottom:2.999733pt;}
.y73{bottom:3.040000pt;}
.y24{bottom:3.079600pt;}
.y5f{bottom:3.119733pt;}
.y58{bottom:3.200000pt;}
.y3f{bottom:3.240000pt;}
.y36{bottom:3.279600pt;}
.y50{bottom:16.000000pt;}
.y35{bottom:21.440133pt;}
.y3e{bottom:21.760000pt;}
.y23{bottom:22.080267pt;}
.y72{bottom:22.400133pt;}
.y18{bottom:22.720000pt;}
.y34{bottom:63.053067pt;}
.y57{bottom:63.999792pt;}
.y3d{bottom:64.000000pt;}
.y71{bottom:64.000029pt;}
.ya{bottom:64.026533pt;}
.y6c{bottom:88.026533pt;}
.y6b{bottom:88.026667pt;}
.y56{bottom:106.999792pt;}
.y9{bottom:107.026667pt;}
.y6a{bottom:111.026667pt;}
.y17{bottom:116.053333pt;}
.y5e{bottom:127.026533pt;}
.y33{bottom:127.053067pt;}
.y8{bottom:130.026667pt;}
.y22{bottom:140.026667pt;}
.y4a{bottom:142.000000pt;}
.y16{bottom:144.053333pt;}
.y55{bottom:152.999792pt;}
.y82{bottom:155.999896pt;}
.y32{bottom:156.053333pt;}
.y5d{bottom:168.160000pt;}
.y21{bottom:169.026667pt;}
.y49{bottom:171.000000pt;}
.y54{bottom:181.999792pt;}
.y87{bottom:183.026667pt;}
.y15{bottom:184.053333pt;}
.y81{bottom:184.999896pt;}
.y31{bottom:196.053333pt;}
.y85{bottom:198.999896pt;}
.y3c{bottom:199.500000pt;}
.y69{bottom:201.026667pt;}
.y20{bottom:209.026667pt;}
.y48{bottom:210.000000pt;}
.y53{bottom:210.999792pt;}
.y80{bottom:213.999896pt;}
.y7{bottom:225.026667pt;}
.y84{bottom:227.999896pt;}
.y67{bottom:229.026667pt;}
.y86{bottom:233.026667pt;}
.y43{bottom:235.000000pt;}
.y52{bottom:238.999792pt;}
.y7f{bottom:242.999896pt;}
.y6{bottom:254.026667pt;}
.y14{bottom:254.053333pt;}
.y66{bottom:258.026667pt;}
.y30{bottom:260.053333pt;}
.y42{bottom:264.000000pt;}
.y83{bottom:267.999896pt;}
.y51{bottom:278.999792pt;}
.y7e{bottom:282.999896pt;}
.y5{bottom:283.026667pt;}
.y13{bottom:283.053333pt;}
.y3a{bottom:283.500000pt;}
.y68{bottom:287.026667pt;}
.y2f{bottom:289.053333pt;}
.y1f{bottom:291.026667pt;}
.y41{bottom:293.000000pt;}
.y65{bottom:298.026667pt;}
.y7d{bottom:310.999896pt;}
.y5c{bottom:316.026667pt;}
.y4f{bottom:321.280000pt;}
.y12{bottom:323.053333pt;}
.y64{bottom:327.026667pt;}
.y47{bottom:329.000000pt;}
.y2e{bottom:329.053333pt;}
.y1e{bottom:331.026667pt;}
.y40{bottom:333.000000pt;}
.y5a{bottom:337.026667pt;}
.y5b{bottom:350.026667pt;}
.y63{bottom:355.026667pt;}
.y46{bottom:358.000000pt;}
.y3b{bottom:367.500000pt;}
.y7c{bottom:371.999896pt;}
.yb{bottom:372.000000pt;}
.y62{bottom:384.026667pt;}
.y77{bottom:385.999896pt;}
.y45{bottom:386.000000pt;}
.y2d{bottom:392.053333pt;}
.y11{bottom:393.053333pt;}
.y4{bottom:396.026667pt;}
.y7b{bottom:400.999896pt;}
.y59{bottom:401.026667pt;}
.y76{bottom:414.999896pt;}
.y4e{bottom:417.999792pt;}
.y2c{bottom:421.053333pt;}
.y61{bottom:424.026667pt;}
.y44{bottom:426.000000pt;}
.y1d{bottom:428.026667pt;}
.y7a{bottom:428.999896pt;}
.y10{bottom:433.053333pt;}
.y4d{bottom:446.999792pt;}
.y2b{bottom:450.053333pt;}
.y3{bottom:452.026667pt;}
.y75{bottom:454.999896pt;}
.y79{bottom:457.999896pt;}
.y1c{bottom:468.026667pt;}
.y74{bottom:482.999896pt;}
.y2a{bottom:490.053333pt;}
.y78{bottom:497.999896pt;}
.yf{bottom:503.053333pt;}
.y39{bottom:506.000000pt;}
.y4c{bottom:510.999792pt;}
.y2{bottom:524.026667pt;}
.y38{bottom:535.000000pt;}
.ye{bottom:543.053333pt;}
.y29{bottom:554.053333pt;}
.y60{bottom:555.026667pt;}
.y1b{bottom:573.026667pt;}
.y28{bottom:582.053333pt;}
.y70{bottom:597.999896pt;}
.y37{bottom:599.000000pt;}
.y27{bottom:611.053333pt;}
.y6f{bottom:626.999896pt;}
.y26{bottom:651.053333pt;}
.yd{bottom:661.053333pt;}
.y6e{bottom:699.999896pt;}
.y25{bottom:741.053333pt;}
.hc{height:15.039867pt;}
.h2c{height:15.040000pt;}
.h12{height:15.359733pt;}
.h17{height:15.359867pt;}
.hd{height:45.675000pt;}
.h3{height:52.200000pt;}
.h28{height:53.806579pt;}
.h1d{height:59.000000pt;}
.h5{height:65.250000pt;}
.hb{height:69.210000pt;}
.h11{height:69.840000pt;}
.h16{height:70.470000pt;}
.h19{height:75.626280pt;}
.h2d{height:81.562500pt;}
.h20{height:83.808000pt;}
.h1f{height:108.864000pt;}
.h27{height:110.736000pt;}
.h7{height:111.744000pt;}
.h10{height:138.420000pt;}
.h4{height:139.680000pt;}
.h23{height:173.923200pt;}
.h1e{height:177.487200pt;}
.hf{height:676.000000pt;}
.he{height:676.160000pt;}
.h6{height:680.000000pt;}
.h18{height:696.000000pt;}
.h2{height:754.000000pt;}
.h0{height:754.560000pt;}
.h1{height:754.666667pt;}
.ha{height:758.000000pt;}
.h9{height:758.666667pt;}
.h8{height:758.720000pt;}
.h26{height:760.000000pt;}
.h24{height:786.560000pt;}
.h25{height:786.666667pt;}
.h2b{height:796.999896pt;}
.h2a{height:797.333333pt;}
.h29{height:797.440000pt;}
.h1c{height:832.999792pt;}
.h1a{height:833.280000pt;}
.h1b{height:833.333333pt;}
.h15{height:838.000000pt;}
.h14{height:838.666667pt;}
.h13{height:838.720000pt;}
.h21{height:921.280000pt;}
.h22{height:921.333333pt;}
.w3{width:8.319787pt;}
.w2{width:9.279693pt;}
.w6{width:11.200000pt;}
.w8{width:13.119787pt;}
.w7{width:14.400000pt;}
.w5{width:15.359867pt;}
.wa{width:16.319733pt;}
.w9{width:17.279733pt;}
.w1{width:104.319733pt;}
.w4{width:343.000000pt;}
.w0{width:1200.000000pt;}
.x0{left:0.000000pt;}
.x32{left:0.968000pt;}
.x1d{left:42.109333pt;}
.x1{left:63.000000pt;}
.x1a{left:66.062427pt;}
.x2{left:72.625067pt;}
.x23{left:78.016000pt;}
.x3b{left:81.124133pt;}
.x44{left:83.032000pt;}
.x15{left:89.546267pt;}
.x42{left:91.812533pt;}
.x13{left:93.625067pt;}
.x3e{left:98.595733pt;}
.x40{left:101.171867pt;}
.x19{left:104.250000pt;}
.x43{left:110.531200pt;}
.x17{left:120.500000pt;}
.x6{left:121.500000pt;}
.x2e{left:123.000000pt;}
.x2c{left:125.234667pt;}
.x14{left:133.046667pt;}
.x1b{left:150.796827pt;}
.x12{left:163.734667pt;}
.xc{left:171.000000pt;}
.x18{left:172.625333pt;}
.x2d{left:179.125333pt;}
.x28{left:230.140227pt;}
.x39{left:246.937333pt;}
.x3f{left:257.906400pt;}
.x3d{left:288.421333pt;}
.x10{left:311.204000pt;}
.x37{left:348.093333pt;}
.x34{left:390.046667pt;}
.x2b{left:406.406533pt;}
.x38{left:412.953333pt;}
.x29{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;}
.x45{left:494.702667pt;}
.xe{left:497.344000pt;}
.xd{left:504.718667pt;}
.xa{left:526.688000pt;}
.x7{left:547.840000pt;}
.x2f{left:552.140000pt;}
.x3{left:555.078400pt;}
.x3a{left:611.250667pt;}
.xb{left:615.297333pt;}
.xf{left:639.921333pt;}
.x3c{left:641.718667pt;}
.x16{left:787.937333pt;}
.x22{left:794.000000pt;}
.x41{left:814.937333pt;}
.x25{left:824.202667pt;}
.x26{left:834.593293pt;}
.x24{left:852.421333pt;}
.x27{left:886.077560pt;}
.x30{left:906.797333pt;}
.x4{left:1015.702667pt;}
.x35{left:1163.840000pt;}
.x36{left:1164.800000pt;}
.x2a{left:1166.720000pt;}
.x33{left:1168.000000pt;}
.x31{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; }
  