
    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_e3fa9596580c139a52475f29.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919922;font-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_4f0a06f8219b10e1acef6a4e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.911000;font-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_b65c4199da01130a39a9b813.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-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_b597d6a1b65f8b8820b8b5a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;font-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_75a63fc01745407cfdb7822e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.911000;font-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_f73ed25d15e48d5127fb23cd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.977000;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-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_eea967da20b7626f1eb04bb5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-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_d5c9484f624e0f15c9e47bff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.911000;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900000;font-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_fe60c162bf2523c987324461.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-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_eea967da20b7626f1eb04bb5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-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_d5c9484f624e0f15c9e47bff.woff')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-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_e3fa9596580c139a52475f29.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919922;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.fff{font-family:fff;line-height:0.900000;font-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_6eecee5b0eeba56be2fcf6e1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.900000;font-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_e9b065c3598523ce2b372fcd.woff')format("woff");}.ff11{font-family:ff11;line-height:0.900000;font-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_e3fa9596580c139a52475f29.woff')format("woff");}.ff12{font-family:ff12;line-height:0.919922;font-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_fb68df204c40f557c9dd266c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.911000;font-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_b65c4199da01130a39a9b813.woff')format("woff");}.ff14{font-family:ff14;line-height:0.900000;font-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_b597d6a1b65f8b8820b8b5a9.woff')format("woff");}.ff15{font-family:ff15;line-height:0.911000;font-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_75a63fc01745407cfdb7822e.woff')format("woff");}.ff16{font-family:ff16;line-height:0.911000;font-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_c65a6dcda0aed2ab6b90a03d.woff')format("woff");}.ff17{font-family:ff17;line-height:0.977000;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.900000;font-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_eea967da20b7626f1eb04bb5.woff')format("woff");}.ff19{font-family:ff19;line-height:0.900000;font-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_1ad2bc771f9a101cd37ef167.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.911000;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.900000;font-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_fe60c162bf2523c987324461.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.900000;font-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_eea967da20b7626f1eb04bb5.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.900000;font-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_1ad2bc771f9a101cd37ef167.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.911000;font-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_e3fa9596580c139a52475f29.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.919922;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff20{font-family:ff20;line-height:0.900000;font-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_6eecee5b0eeba56be2fcf6e1.woff')format("woff");}.ff21{font-family:ff21;line-height:0.900000;font-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_e9b065c3598523ce2b372fcd.woff')format("woff");}.ff22{font-family:ff22;line-height:0.900000;font-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_e3fa9596580c139a52475f29.woff')format("woff");}.ff23{font-family:ff23;line-height:0.919922;font-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_034764ed3a04a842843e9067.woff')format("woff");}.ff24{font-family:ff24;line-height:1.066000;font-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_b65c4199da01130a39a9b813.woff')format("woff");}.ff25{font-family:ff25;line-height:0.900000;font-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_b597d6a1b65f8b8820b8b5a9.woff')format("woff");}.ff26{font-family:ff26;line-height:0.911000;font-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_75a63fc01745407cfdb7822e.woff')format("woff");}.ff27{font-family:ff27;line-height:0.911000;font-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_3cad0bda0991714f8cba31f1.woff')format("woff");}.ff28{font-family:ff28;line-height:1.055000;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff29{font-family:ff29;line-height:0.900000;font-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_eea967da20b7626f1eb04bb5.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.900000;font-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_9b73d074b94bd07905a9dcf4.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.004000;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.900000;font-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_fe60c162bf2523c987324461.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.900000;font-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_eea967da20b7626f1eb04bb5.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.900000;font-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_9b73d074b94bd07905a9dcf4.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.004000;font-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_e3fa9596580c139a52475f29.woff')format("woff");}.ff30{font-family:ff30;line-height:0.919922;font-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_0be5f77bb0feb27fa099b04a.woff')format("woff");}.ff31{font-family:ff31;line-height:0.900000;font-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_6eecee5b0eeba56be2fcf6e1.woff')format("woff");}.ff32{font-family:ff32;line-height:0.900000;font-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_e9b065c3598523ce2b372fcd.woff')format("woff");}.ff33{font-family:ff33;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.470628px;}
.ls3{letter-spacing:2.520950px;}
.ls1{letter-spacing:4.321642px;}
.ls0{letter-spacing:8.103053px;}
.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:-89.988907px;}
.ws5{word-spacing:-71.982122px;}
.ws9{word-spacing:-37.960508px;}
.ws3{word-spacing:-30.881636px;}
.ws0{word-spacing:-30.363851px;}
.ws7{word-spacing:-22.778583px;}
.ws1{word-spacing:-18.211477px;}
.ws2{word-spacing:-16.195978px;}
.ws8{word-spacing:-13.252994px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-3299.566082px;}
._7{margin-left:-8.103143px;}
._1{margin-left:-5.341895px;}
._2{margin-left:-3.701860px;}
._a{margin-left:-2.516448px;}
._0{margin-left:-1.440382px;}
._c{width:1.537779px;}
._10{width:3.266673px;}
._8{width:4.321882px;}
._b{width:5.449933px;}
._4{width:6.462905px;}
._f{width:8.114262px;}
._6{width:9.172971px;}
._3{width:10.792772px;}
._11{width:11.909958px;}
._12{width:13.656075px;}
._17{width:14.740354px;}
._1b{width:16.789976px;}
._e{width:18.034020px;}
._18{width:19.813315px;}
._15{width:20.918482px;}
._1a{width:22.049758px;}
._16{width:23.691707px;}
._1d{width:24.821543px;}
._14{width:26.134294px;}
._9{width:27.819312px;}
._19{width:29.554581px;}
._d{width:37.522628px;}
._1c{width:39.786801px;}
._5{width:64.674744px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(59,105,102);}
.fc0{color:rgb(58,106,103);}
.fsa{font-size:42.017940px;}
.fs9{font-size:43.947388px;}
.fs7{font-size:48.018240px;}
.fs5{font-size:65.994866px;}
.fs0{font-size:66.281296px;}
.fs3{font-size:71.982122px;}
.fs8{font-size:72.027139px;}
.fsb{font-size:89.988907px;}
.fs6{font-size:90.033924px;}
.fs4{font-size:102.008436px;}
.fs2{font-size:120.015221px;}
.fs1{font-size:150.041534px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.000021px;}
.y32{bottom:0.028350px;}
.y3{bottom:0.042150px;}
.y31{bottom:13.218450px;}
.y2{bottom:19.939050px;}
.y11{bottom:23.484862px;}
.y2b{bottom:25.865458px;}
.y34{bottom:118.780896px;}
.y10{bottom:126.826531px;}
.y33{bottom:131.911502px;}
.yf{bottom:149.335012px;}
.ye{bottom:171.843493px;}
.y53{bottom:210.038768px;}
.y52{bottom:232.547249px;}
.y35{bottom:240.869696px;}
.y51{bottom:255.055730px;}
.y50{bottom:277.564211px;}
.y4f{bottom:300.072692px;}
.y4e{bottom:322.581173px;}
.y4d{bottom:345.089654px;}
.y4c{bottom:367.598135px;}
.y12{bottom:380.059329px;}
.y2a{bottom:384.954254px;}
.y4b{bottom:390.106616px;}
.y29{bottom:407.462735px;}
.y4a{bottom:412.615097px;}
.y6e{bottom:417.298016px;}
.y28{bottom:429.971216px;}
.y49{bottom:435.123578px;}
.y6d{bottom:439.806497px;}
.yc{bottom:444.067514px;}
.y27{bottom:452.479697px;}
.y48{bottom:457.632059px;}
.y6c{bottom:462.314978px;}
.yb{bottom:468.826843px;}
.y26{bottom:474.988178px;}
.y47{bottom:480.140540px;}
.y6b{bottom:484.823459px;}
.y25{bottom:497.496659px;}
.y46{bottom:502.649021px;}
.y6a{bottom:507.331940px;}
.y24{bottom:520.005140px;}
.y45{bottom:525.157502px;}
.y69{bottom:529.840421px;}
.y23{bottom:542.513621px;}
.y44{bottom:547.665983px;}
.y68{bottom:552.348902px;}
.y22{bottom:565.022102px;}
.y43{bottom:570.174464px;}
.y67{bottom:574.857383px;}
.yd{bottom:577.121474px;}
.y21{bottom:587.530583px;}
.y42{bottom:592.682945px;}
.y66{bottom:597.365864px;}
.y20{bottom:610.039064px;}
.y58{bottom:610.636724px;}
.y41{bottom:615.191426px;}
.y65{bottom:619.874345px;}
.y8{bottom:623.214497px;}
.y1f{bottom:632.547545px;}
.y40{bottom:637.699907px;}
.y64{bottom:642.382826px;}
.y57{bottom:644.662141px;}
.y1e{bottom:655.056026px;}
.y3f{bottom:660.208388px;}
.y7{bottom:660.353491px;}
.y63{bottom:664.891307px;}
.y1d{bottom:677.564507px;}
.y56{bottom:681.801134px;}
.y3e{bottom:682.716869px;}
.y62{bottom:687.399788px;}
.y6{bottom:697.492484px;}
.y1c{bottom:700.072988px;}
.y3d{bottom:705.225350px;}
.y61{bottom:709.908269px;}
.y55{bottom:718.940128px;}
.y1b{bottom:722.581469px;}
.y3c{bottom:727.733831px;}
.y60{bottom:732.416750px;}
.y5{bottom:734.631478px;}
.y1a{bottom:745.089950px;}
.y3b{bottom:750.242312px;}
.y5f{bottom:754.925231px;}
.y19{bottom:767.598431px;}
.y3a{bottom:772.750793px;}
.y5e{bottom:777.433712px;}
.y18{bottom:790.106912px;}
.y39{bottom:795.259274px;}
.y5d{bottom:799.942193px;}
.y17{bottom:812.615393px;}
.y38{bottom:817.767755px;}
.y5c{bottom:822.450674px;}
.y16{bottom:835.123874px;}
.y37{bottom:840.276236px;}
.y1{bottom:840.588000px;}
.y5b{bottom:844.959155px;}
.y15{bottom:857.632355px;}
.y36{bottom:862.784717px;}
.y5a{bottom:867.467636px;}
.y14{bottom:880.140836px;}
.y59{bottom:889.976117px;}
.y13{bottom:902.649317px;}
.y30{bottom:947.263950px;}
.y54{bottom:969.837303px;}
.y72{bottom:995.157497px;}
.y2f{bottom:1006.976297px;}
.y71{bottom:1032.296491px;}
.y2e{bottom:1044.115291px;}
.y70{bottom:1069.435484px;}
.y2d{bottom:1081.254284px;}
.y6f{bottom:1106.574478px;}
.ya{bottom:1112.940538px;}
.y2c{bottom:1118.393278px;}
.y9{bottom:1154.581228px;}
.h10{height:29.412558px;}
.hf{height:30.943425px;}
.hb{height:33.612768px;}
.h9{height:46.196406px;}
.h3{height:46.668764px;}
.h7{height:50.387486px;}
.hd{height:55.138306px;}
.hc{height:55.172789px;}
.h16{height:60.752911px;}
.h15{height:60.790905px;}
.h11{height:62.992235px;}
.ha{height:63.023747px;}
.h8{height:71.405905px;}
.h14{height:76.258734px;}
.h6{height:84.010654px;}
.h13{height:101.652892px;}
.h5{height:105.029074px;}
.h17{height:117.782604px;}
.h12{height:127.085180px;}
.he{height:199.200000px;}
.h2{height:300.488250px;}
.h4{height:1263.374979px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:271.227150px;}
.w1{width:409.654365px;}
.w0{width:893.250000px;}
.x2{left:-1.011810px;}
.x0{left:0.000000px;}
.x9{left:40.497300px;}
.x3{left:61.166115px;}
.x1{left:89.324985px;}
.xa{left:107.233901px;}
.xb{left:146.201715px;}
.x5{left:199.872300px;}
.x8{left:311.200050px;}
.xc{left:351.525845px;}
.x6{left:388.425011px;}
.xd{left:394.456586px;}
.xe{left:399.397895px;}
.x4{left:671.923500px;}
.x7{left:741.186300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.307225pt;}
.ls3{letter-spacing:2.240844pt;}
.ls1{letter-spacing:3.841459pt;}
.ls0{letter-spacing:7.202714pt;}
.ws6{word-spacing:-79.990140pt;}
.ws5{word-spacing:-63.984109pt;}
.ws9{word-spacing:-33.742674pt;}
.ws3{word-spacing:-27.450343pt;}
.ws0{word-spacing:-26.990090pt;}
.ws7{word-spacing:-20.247629pt;}
.ws1{word-spacing:-16.187979pt;}
.ws2{word-spacing:-14.396424pt;}
.ws8{word-spacing:-11.780439pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-2932.947629pt;}
._7{margin-left:-7.202794pt;}
._1{margin-left:-4.748351pt;}
._2{margin-left:-3.290542pt;}
._a{margin-left:-2.236843pt;}
._0{margin-left:-1.280339pt;}
._c{width:1.366915pt;}
._10{width:2.903709pt;}
._8{width:3.841673pt;}
._b{width:4.844385pt;}
._4{width:5.744805pt;}
._f{width:7.212678pt;}
._6{width:8.153752pt;}
._3{width:9.593575pt;}
._11{width:10.586629pt;}
._12{width:12.138734pt;}
._17{width:13.102537pt;}
._1b{width:14.924423pt;}
._e{width:16.030240pt;}
._18{width:17.611836pt;}
._15{width:18.594206pt;}
._1a{width:19.599785pt;}
._16{width:21.059295pt;}
._1d{width:22.063593pt;}
._14{width:23.230483pt;}
._9{width:24.728277pt;}
._19{width:26.270739pt;}
._d{width:33.353447pt;}
._1c{width:35.366046pt;}
._5{width:57.488661pt;}
.fsa{font-size:37.349280pt;}
.fs9{font-size:39.064345pt;}
.fs7{font-size:42.682880pt;}
.fs5{font-size:58.662103pt;}
.fs0{font-size:58.916708pt;}
.fs3{font-size:63.984109pt;}
.fs8{font-size:64.024124pt;}
.fsb{font-size:79.990140pt;}
.fs6{font-size:80.030155pt;}
.fs4{font-size:90.674165pt;}
.fs2{font-size:106.680196pt;}
.fs1{font-size:133.370253pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.000018pt;}
.y32{bottom:0.025200pt;}
.y3{bottom:0.037467pt;}
.y31{bottom:11.749733pt;}
.y2{bottom:17.723600pt;}
.y11{bottom:20.875433pt;}
.y2b{bottom:22.991518pt;}
.y34{bottom:105.583018pt;}
.y10{bottom:112.734694pt;}
.y33{bottom:117.254668pt;}
.yf{bottom:132.742233pt;}
.ye{bottom:152.749771pt;}
.y53{bottom:186.701127pt;}
.y52{bottom:206.708665pt;}
.y35{bottom:214.106397pt;}
.y51{bottom:226.716204pt;}
.y50{bottom:246.723743pt;}
.y4f{bottom:266.731281pt;}
.y4e{bottom:286.738820pt;}
.y4d{bottom:306.746359pt;}
.y4c{bottom:326.753897pt;}
.y12{bottom:337.830515pt;}
.y2a{bottom:342.181559pt;}
.y4b{bottom:346.761436pt;}
.y29{bottom:362.189097pt;}
.y4a{bottom:366.768975pt;}
.y6e{bottom:370.931569pt;}
.y28{bottom:382.196636pt;}
.y49{bottom:386.776513pt;}
.y6d{bottom:390.939108pt;}
.yc{bottom:394.726679pt;}
.y27{bottom:402.204175pt;}
.y48{bottom:406.784052pt;}
.y6c{bottom:410.946647pt;}
.yb{bottom:416.734971pt;}
.y26{bottom:422.211713pt;}
.y47{bottom:426.791591pt;}
.y6b{bottom:430.954185pt;}
.y25{bottom:442.219252pt;}
.y46{bottom:446.799129pt;}
.y6a{bottom:450.961724pt;}
.y24{bottom:462.226791pt;}
.y45{bottom:466.806668pt;}
.y69{bottom:470.969263pt;}
.y23{bottom:482.234329pt;}
.y44{bottom:486.814207pt;}
.y68{bottom:490.976801pt;}
.y22{bottom:502.241868pt;}
.y43{bottom:506.821745pt;}
.y67{bottom:510.984340pt;}
.yd{bottom:512.996866pt;}
.y21{bottom:522.249407pt;}
.y42{bottom:526.829284pt;}
.y66{bottom:530.991879pt;}
.y20{bottom:542.256945pt;}
.y58{bottom:542.788199pt;}
.y41{bottom:546.836823pt;}
.y65{bottom:550.999417pt;}
.y8{bottom:553.968442pt;}
.y1f{bottom:562.264484pt;}
.y40{bottom:566.844361pt;}
.y64{bottom:571.006956pt;}
.y57{bottom:573.033014pt;}
.y1e{bottom:582.272023pt;}
.y3f{bottom:586.851900pt;}
.y7{bottom:586.980881pt;}
.y63{bottom:591.014495pt;}
.y1d{bottom:602.279561pt;}
.y56{bottom:606.045453pt;}
.y3e{bottom:606.859439pt;}
.y62{bottom:611.022033pt;}
.y6{bottom:619.993319pt;}
.y1c{bottom:622.287100pt;}
.y3d{bottom:626.866977pt;}
.y61{bottom:631.029572pt;}
.y55{bottom:639.057892pt;}
.y1b{bottom:642.294639pt;}
.y3c{bottom:646.874516pt;}
.y60{bottom:651.037111pt;}
.y5{bottom:653.005758pt;}
.y1a{bottom:662.302177pt;}
.y3b{bottom:666.882055pt;}
.y5f{bottom:671.044649pt;}
.y19{bottom:682.309716pt;}
.y3a{bottom:686.889593pt;}
.y5e{bottom:691.052188pt;}
.y18{bottom:702.317255pt;}
.y39{bottom:706.897132pt;}
.y5d{bottom:711.059727pt;}
.y17{bottom:722.324793pt;}
.y38{bottom:726.904671pt;}
.y5c{bottom:731.067265pt;}
.y16{bottom:742.332332pt;}
.y37{bottom:746.912209pt;}
.y1{bottom:747.189333pt;}
.y5b{bottom:751.074804pt;}
.y15{bottom:762.339871pt;}
.y36{bottom:766.919748pt;}
.y5a{bottom:771.082343pt;}
.y14{bottom:782.347409pt;}
.y59{bottom:791.089881pt;}
.y13{bottom:802.354948pt;}
.y30{bottom:842.012400pt;}
.y54{bottom:862.077603pt;}
.y72{bottom:884.584442pt;}
.y2f{bottom:895.090042pt;}
.y71{bottom:917.596881pt;}
.y2e{bottom:928.102481pt;}
.y70{bottom:950.609319pt;}
.y2d{bottom:961.114919pt;}
.y6f{bottom:983.621758pt;}
.ya{bottom:989.280478pt;}
.y2c{bottom:994.127358pt;}
.y9{bottom:1026.294425pt;}
.h10{height:26.144496pt;}
.hf{height:27.505267pt;}
.hb{height:29.878016pt;}
.h9{height:41.063472pt;}
.h3{height:41.483346pt;}
.h7{height:44.788876pt;}
.hd{height:49.011827pt;}
.hc{height:49.042479pt;}
.h16{height:54.002588pt;}
.h15{height:54.036360pt;}
.h11{height:55.993098pt;}
.ha{height:56.021108pt;}
.h8{height:63.471916pt;}
.h14{height:67.785541pt;}
.h6{height:74.676137pt;}
.h13{height:90.358126pt;}
.h5{height:93.359177pt;}
.h17{height:104.695648pt;}
.h12{height:112.964604pt;}
.he{height:177.066667pt;}
.h2{height:267.100667pt;}
.h4{height:1122.999982pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:241.090800pt;}
.w1{width:364.137213pt;}
.w0{width:794.000000pt;}
.x2{left:-0.899387pt;}
.x0{left:0.000000pt;}
.x9{left:35.997600pt;}
.x3{left:54.369880pt;}
.x1{left:79.399987pt;}
.xa{left:95.319023pt;}
.xb{left:129.957080pt;}
.x5{left:177.664267pt;}
.x8{left:276.622267pt;}
.xc{left:312.467418pt;}
.x6{left:345.266676pt;}
.xd{left:350.628076pt;}
.xe{left:355.020351pt;}
.x4{left:597.265333pt;}
.x7{left:658.832267pt;}
}




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