
    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_b5a61bbebe1a9bb08fc2de24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_db2e8800f76c10993ce66d90.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_7f64d0bae95c309cc5a8a512.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_109caa7ec439caef760fc194.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_a1ece7435a0dd0ed26332ec4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_303c0e932ee3eb1a2470f414.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_a1ece7435a0dd0ed26332ec4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_bee8b4804e9331f0553a32f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958000;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_d43fca6d05b9a5363f62eb63.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_7cb3316794332f9e8ddd7d0b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_93e2f7c416108081bb531488.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958000;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_45a57375e3c9e21b5a76213a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_560e2803a5905bc193db1193.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_3ea6f8e47d41bcd67d3444e2.woff2')format("woff");}.fff{font-family:fff;line-height:0.958000;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_5077cb4046cf561ca6280659.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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_7cb3316794332f9e8ddd7d0b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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_ca8783ff3f24fb053bf2af1b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;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_5077cb4046cf561ca6280659.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969000;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_7cb3316794332f9e8ddd7d0b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938965;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_b891c5b3eb9db3d9fca366fd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958000;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_b9ea64b038fb0ba99b8f56e3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.969000;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_add69c634142ef57578e31a8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.923500;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_e1aa03406ee2495da9772bad.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958000;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_a64d066cbacbb5d99b294b8d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.969000;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_b4c85710dd03521189464fbe.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;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_6f0ced784b02eceb23e37838.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958000;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_85ea5b994cd70c766bc58c47.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.969000;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_b4c85710dd03521189464fbe.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938965;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_d526e889df91b5a671183edd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958000;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_078127ec8a2ddf397a420546.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.969000;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_1d68b6408fb9217849b3d137.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.956500;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_d750613d16a7e560400a2cd1.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.958000;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_a7b60b01adac9272aed15bb9.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.969000;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_892e84fd7ee6b07afea0aee6.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.958000;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_4d706d2dabd32eaac056f19b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.969000;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_b4c85710dd03521189464fbe.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938965;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_dcf87207b188a105afa710b0.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.958000;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_4d706d2dabd32eaac056f19b.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.969000;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_befcdee0410989f0ea603b4b.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.958000;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_4d706d2dabd32eaac056f19b.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.969000;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_5663c2ede11f23fe724a2675.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.958000;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_7aa4940f81fc58b1d686cc98.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.969000;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_b4c85710dd03521189464fbe.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938965;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;}
.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);}
.m1{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);}
.v1{vertical-align:-1.286997px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:82.834032px;}
.ls4{letter-spacing:82.836308px;}
.ls1{letter-spacing:83.986029px;}
.ls2{letter-spacing:84.000000px;}
.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;}
}
.ws3{word-spacing:-28.224000px;}
.ws4{word-spacing:-19.944000px;}
.ws5{word-spacing:-18.528000px;}
.ws2{word-spacing:-18.527962px;}
.ws1{word-spacing:-0.156000px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-21.419956px;}
._7{margin-left:-10.763978px;}
._4{margin-left:-8.208002px;}
._6{margin-left:-6.724800px;}
._5{margin-left:-5.328000px;}
._3{margin-left:-3.960000px;}
._1{margin-left:-2.771994px;}
._0{margin-left:-1.007998px;}
.fc4{color:rgb(28,54,120);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(243,243,243);}
.fsa{font-size:67.200000px;}
.fsb{font-size:71.999854px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:83.999829px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:95.999805px;}
.fs9{font-size:96.000000px;}
.fs7{font-size:113.999768px;}
.fs5{font-size:117.600000px;}
.fs8{font-size:155.999400px;}
.fs3{font-size:155.999683px;}
.fs1{font-size:251.999488px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.001215px;}
.y2{bottom:21.062827px;}
.ye{bottom:21.062835px;}
.y2e{bottom:91.690035px;}
.y63{bottom:100.094816px;}
.y2b{bottom:102.368685px;}
.y5f{bottom:105.813585px;}
.y2d{bottom:113.056035px;}
.y5e{bottom:121.941585px;}
.y2a{bottom:123.734685px;}
.y2c{bottom:134.422035px;}
.y5d{bottom:138.069585px;}
.y3b{bottom:142.334730px;}
.y39{bottom:145.949385px;}
.y5c{bottom:154.197585px;}
.y44{bottom:156.734701px;}
.y29{bottom:170.081535px;}
.y5b{bottom:170.325585px;}
.y5a{bottom:186.453585px;}
.y28{bottom:191.447535px;}
.y38{bottom:195.249135px;}
.y5{bottom:199.582714px;}
.y49{bottom:199.934085px;}
.y3a{bottom:199.934613px;}
.y59{bottom:202.581585px;}
.y27{bottom:212.813535px;}
.y43{bottom:214.334584px;}
.y37{bottom:216.615135px;}
.y58{bottom:218.709585px;}
.y14{bottom:233.842785px;}
.y26{bottom:234.179535px;}
.y57{bottom:234.837585px;}
.y36{bottom:237.981135px;}
.y42{bottom:243.134525px;}
.y56{bottom:250.965585px;}
.y13{bottom:255.208785px;}
.yb{bottom:257.534496px;}
.y3e{bottom:265.814479px;}
.y55{bottom:267.093585px;}
.y41{bottom:271.934467px;}
.y12{bottom:276.574785px;}
.y35{bottom:280.731135px;}
.y54{bottom:283.221585px;}
.y25{bottom:284.882085px;}
.yd{bottom:286.334438px;}
.y62{bottom:288.734433px;}
.y11{bottom:297.940785px;}
.y53{bottom:299.349585px;}
.y40{bottom:300.734408px;}
.y34{bottom:302.097135px;}
.y24{bottom:306.248085px;}
.y4{bottom:311.533186px;}
.y48{bottom:315.134085px;}
.ya{bottom:315.134379px;}
.y52{bottom:315.477585px;}
.y3d{bottom:317.114375px;}
.y23{bottom:327.614085px;}
.y3f{bottom:329.534350px;}
.y51{bottom:331.605585px;}
.y9{bottom:343.934321px;}
.y61{bottom:346.334316px;}
.y50{bottom:347.733585px;}
.y33{bottom:354.671985px;}
.y17{bottom:362.932485px;}
.y4f{bottom:363.861585px;}
.y3c{bottom:368.414271px;}
.y22{bottom:368.739585px;}
.y47{bottom:372.734085px;}
.yc{bottom:372.734262px;}
.y32{bottom:376.037985px;}
.y4e{bottom:379.989585px;}
.y16{bottom:384.298485px;}
.y4d{bottom:396.117585px;}
.y3{bottom:399.985007px;}
.y8{bottom:401.534203px;}
.y15{bottom:405.664485px;}
.y4c{bottom:412.245585px;}
.y4b{bottom:428.373585px;}
.y46{bottom:430.334085px;}
.y7{bottom:430.334145px;}
.y60{bottom:434.234137px;}
.y31{bottom:435.363435px;}
.y21{bottom:437.173785px;}
.y4a{bottom:444.501585px;}
.y1c{bottom:447.852285px;}
.y30{bottom:456.729435px;}
.y20{bottom:458.539785px;}
.y1b{bottom:469.218285px;}
.y1f{bottom:479.905785px;}
.y1a{bottom:490.584285px;}
.y1e{bottom:501.271785px;}
.y45{bottom:505.933935px;}
.y6{bottom:505.933991px;}
.y2f{bottom:506.232585px;}
.y19{bottom:511.950285px;}
.y10{bottom:520.874835px;}
.y1d{bottom:522.637785px;}
.y18{bottom:552.313035px;}
.yf{bottom:556.154835px;}
.h14{height:52.113600px;}
.ha{height:52.453125px;}
.h13{height:65.953125px;}
.h15{height:70.663919px;}
.hb{height:70.664062px;}
.hf{height:74.351849px;}
.hc{height:74.447849px;}
.h2{height:82.441239px;}
.h7{height:82.441406px;}
.hd{height:84.701828px;}
.h8{height:87.024000px;}
.h5{height:94.218559px;}
.h11{height:94.218750px;}
.h12{height:94.221150px;}
.he{height:111.884538px;}
.h9{height:115.417969px;}
.h10{height:153.104880px;}
.h6{height:153.105158px;}
.h3{height:186.479621px;}
.h4{height:247.323716px;}
.h1{height:607.498785px;}
.h0{height:607.500000px;}
.w1{width:1079.997840px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:46.939800px;}
.x7{left:62.680950px;}
.x1{left:64.125170px;}
.x9{left:66.152100px;}
.x6{left:68.152950px;}
.x8{left:75.154950px;}
.x3{left:76.632294px;}
.x2a{left:84.656828px;}
.x2{left:96.280304px;}
.x29{left:118.124760px;}
.x4{left:130.632185px;}
.x26{left:247.728697px;}
.x28{left:253.926084px;}
.x1d{left:300.388350px;}
.x17{left:305.359050px;}
.x16{left:306.367050px;}
.x1a{left:313.242450px;}
.xb{left:315.883050px;}
.x1c{left:322.888350px;}
.xc{left:325.387050px;}
.xe{left:326.413050px;}
.xd{left:328.897050px;}
.x27{left:333.941021px;}
.x15{left:341.899050px;}
.x1b{left:356.262450px;}
.x14{left:398.311050px;}
.xa{left:407.057250px;}
.x1e{left:484.107900px;}
.x11{left:491.108400px;}
.x18{left:498.290250px;}
.x12{left:508.622400px;}
.x10{left:514.130400px;}
.x19{left:516.470250px;}
.x13{left:518.126400px;}
.xf{left:528.638400px;}
.x1f{left:539.637900px;}
.x25{left:721.005300px;}
.x24{left:723.124800px;}
.x23{left:732.426300px;}
.x21{left:740.424300px;}
.x22{left:776.946300px;}
.x20{left:819.903900px;}
@media print{
.v1{vertical-align:-1.143998pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:73.630250pt;}
.ls4{letter-spacing:73.632274pt;}
.ls1{letter-spacing:74.654248pt;}
.ls2{letter-spacing:74.666667pt;}
.ws3{word-spacing:-25.088000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws5{word-spacing:-16.469333pt;}
.ws2{word-spacing:-16.469300pt;}
.ws1{word-spacing:-0.138666pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-19.039961pt;}
._7{margin-left:-9.567981pt;}
._4{margin-left:-7.296002pt;}
._6{margin-left:-5.977600pt;}
._5{margin-left:-4.736000pt;}
._3{margin-left:-3.520000pt;}
._1{margin-left:-2.463995pt;}
._0{margin-left:-0.895998pt;}
.fsa{font-size:59.733333pt;}
.fsb{font-size:63.999870pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.666515pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333160pt;}
.fs9{font-size:85.333333pt;}
.fs7{font-size:101.333127pt;}
.fs5{font-size:104.533333pt;}
.fs8{font-size:138.666133pt;}
.fs3{font-size:138.666385pt;}
.fs1{font-size:223.999545pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.001080pt;}
.y2{bottom:18.722513pt;}
.ye{bottom:18.722520pt;}
.y2e{bottom:81.502253pt;}
.y63{bottom:88.973170pt;}
.y2b{bottom:90.994387pt;}
.y5f{bottom:94.056520pt;}
.y2d{bottom:100.494253pt;}
.y5e{bottom:108.392520pt;}
.y2a{bottom:109.986387pt;}
.y2c{bottom:119.486253pt;}
.y5d{bottom:122.728520pt;}
.y3b{bottom:126.519760pt;}
.y39{bottom:129.732787pt;}
.y5c{bottom:137.064520pt;}
.y44{bottom:139.319734pt;}
.y29{bottom:151.183587pt;}
.y5b{bottom:151.400520pt;}
.y5a{bottom:165.736520pt;}
.y28{bottom:170.175587pt;}
.y38{bottom:173.554787pt;}
.y5{bottom:177.406857pt;}
.y49{bottom:177.719187pt;}
.y3a{bottom:177.719656pt;}
.y59{bottom:180.072520pt;}
.y27{bottom:189.167587pt;}
.y43{bottom:190.519630pt;}
.y37{bottom:192.546787pt;}
.y58{bottom:194.408520pt;}
.y14{bottom:207.860253pt;}
.y26{bottom:208.159587pt;}
.y57{bottom:208.744520pt;}
.y36{bottom:211.538787pt;}
.y42{bottom:216.119578pt;}
.y56{bottom:223.080520pt;}
.y13{bottom:226.852253pt;}
.yb{bottom:228.919552pt;}
.y3e{bottom:236.279537pt;}
.y55{bottom:237.416520pt;}
.y41{bottom:241.719526pt;}
.y12{bottom:245.844253pt;}
.y35{bottom:249.538787pt;}
.y54{bottom:251.752520pt;}
.y25{bottom:253.228520pt;}
.yd{bottom:254.519500pt;}
.y62{bottom:256.652829pt;}
.y11{bottom:264.836253pt;}
.y53{bottom:266.088520pt;}
.y40{bottom:267.319474pt;}
.y34{bottom:268.530787pt;}
.y24{bottom:272.220520pt;}
.y4{bottom:276.918388pt;}
.y48{bottom:280.119187pt;}
.ya{bottom:280.119448pt;}
.y52{bottom:280.424520pt;}
.y3d{bottom:281.879444pt;}
.y23{bottom:291.212520pt;}
.y3f{bottom:292.919422pt;}
.y51{bottom:294.760520pt;}
.y9{bottom:305.719396pt;}
.y61{bottom:307.852725pt;}
.y50{bottom:309.096520pt;}
.y33{bottom:315.263987pt;}
.y17{bottom:322.606653pt;}
.y4f{bottom:323.432520pt;}
.y3c{bottom:327.479352pt;}
.y22{bottom:327.768520pt;}
.y47{bottom:331.319187pt;}
.yc{bottom:331.319344pt;}
.y32{bottom:334.255987pt;}
.y4e{bottom:337.768520pt;}
.y16{bottom:341.598653pt;}
.y4d{bottom:352.104520pt;}
.y3{bottom:355.542228pt;}
.y8{bottom:356.919292pt;}
.y15{bottom:360.590653pt;}
.y4c{bottom:366.440520pt;}
.y4b{bottom:380.776520pt;}
.y46{bottom:382.519187pt;}
.y7{bottom:382.519240pt;}
.y60{bottom:385.985900pt;}
.y31{bottom:386.989720pt;}
.y21{bottom:388.598920pt;}
.y4a{bottom:395.112520pt;}
.y1c{bottom:398.090920pt;}
.y30{bottom:405.981720pt;}
.y20{bottom:407.590920pt;}
.y1b{bottom:417.082920pt;}
.y1f{bottom:426.582920pt;}
.y1a{bottom:436.074920pt;}
.y1e{bottom:445.574920pt;}
.y45{bottom:449.719053pt;}
.y6{bottom:449.719103pt;}
.y2f{bottom:449.984520pt;}
.y19{bottom:455.066920pt;}
.y10{bottom:462.999853pt;}
.y1d{bottom:464.566920pt;}
.y18{bottom:490.944920pt;}
.yf{bottom:494.359853pt;}
.h14{height:46.323200pt;}
.ha{height:46.625000pt;}
.h13{height:58.625000pt;}
.h15{height:62.812372pt;}
.hb{height:62.812500pt;}
.hf{height:66.090532pt;}
.hc{height:66.175866pt;}
.h2{height:73.281101pt;}
.h7{height:73.281250pt;}
.hd{height:75.290514pt;}
.h8{height:77.354667pt;}
.h5{height:83.749830pt;}
.h11{height:83.750000pt;}
.h12{height:83.752133pt;}
.he{height:99.452923pt;}
.h9{height:102.593750pt;}
.h10{height:136.093227pt;}
.h6{height:136.093473pt;}
.h3{height:165.759663pt;}
.h4{height:219.843303pt;}
.h1{height:539.998920pt;}
.h0{height:540.000000pt;}
.w1{width:959.998080pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:41.724267pt;}
.x7{left:55.716400pt;}
.x1{left:57.000151pt;}
.x9{left:58.801867pt;}
.x6{left:60.580400pt;}
.x8{left:66.804400pt;}
.x3{left:68.117595pt;}
.x2a{left:75.250514pt;}
.x2{left:85.582493pt;}
.x29{left:104.999787pt;}
.x4{left:116.117497pt;}
.x26{left:220.203286pt;}
.x28{left:225.712075pt;}
.x1d{left:267.011867pt;}
.x17{left:271.430267pt;}
.x16{left:272.326267pt;}
.x1a{left:278.437733pt;}
.xb{left:280.784933pt;}
.x1c{left:287.011867pt;}
.xc{left:289.232933pt;}
.xe{left:290.144933pt;}
.xd{left:292.352933pt;}
.x27{left:296.836463pt;}
.x15{left:303.910267pt;}
.x1b{left:316.677733pt;}
.x14{left:354.054267pt;}
.xa{left:361.828667pt;}
.x1e{left:430.318133pt;}
.x11{left:436.540800pt;}
.x18{left:442.924667pt;}
.x12{left:452.108800pt;}
.x10{left:457.004800pt;}
.x19{left:459.084667pt;}
.x13{left:460.556800pt;}
.xf{left:469.900800pt;}
.x1f{left:479.678133pt;}
.x25{left:640.893600pt;}
.x24{left:642.777600pt;}
.x23{left:651.045600pt;}
.x21{left:658.154933pt;}
.x22{left:690.618933pt;}
.x20{left:728.803467pt;}
}




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