
    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_feab7230ab7f3f67019455e7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight: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_9faaa70e24fe0e8bc8c30015.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;font-style:normal;font-weight: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_904bc582fec8ba316c683cd7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;font-style:normal;font-weight: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_d2815d1936d0c0ce33242f4a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;font-style:normal;font-weight: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_e6ad6d9e77d009bced377e7b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;font-style:normal;font-weight: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_016953d1a832735544446c42.woff')format("woff");}.ff6{font-family:ff6;line-height:0.925781;font-style:normal;font-weight: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_1693a0fae4ef83b3950437f1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;font-style:normal;font-weight: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_ccf2e076c5d9251c6b7e41bb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;font-style:normal;font-weight: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_f834752b9bcb3fb474a7c825.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;font-style:normal;font-weight: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_bcb499ee579dd36cc37cd944.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight: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_056dec50957834956f95db55.woff')format("woff");}.ffb{font-family:ffb;line-height:0.708000;font-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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:186.000000px;}
.ls18{letter-spacing:-1.656000px;}
.ls21{letter-spacing:-1.512000px;}
.ls19{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.lsd{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.936000px;}
.ls13{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.152000px;}
.lsc{letter-spacing:1.224000px;}
.ls7{letter-spacing:1.368000px;}
.ls15{letter-spacing:1.584000px;}
.ls23{letter-spacing:1.656000px;}
.ls8{letter-spacing:1.720800px;}
.ls6{letter-spacing:1.800000px;}
.ls1{letter-spacing:4.260000px;}
.ls24{letter-spacing:4.752000px;}
.ls0{letter-spacing:8.436000px;}
.ls20{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.740000px;}
.ls3{letter-spacing:10.869436px;}
.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;}
}
.ws3f{word-spacing:-63.576000px;}
.ws3b{word-spacing:-25.320000px;}
.ws2{word-spacing:-20.448000px;}
.ws1e{word-spacing:-20.232000px;}
.ws1{word-spacing:-16.860000px;}
.ws40{word-spacing:-13.488000px;}
.ws1d{word-spacing:-8.496000px;}
.ws24{word-spacing:-1.584000px;}
.ws2a{word-spacing:-0.720000px;}
.ws7{word-spacing:0.000000px;}
.ws37{word-spacing:0.216000px;}
.ws32{word-spacing:0.360000px;}
.ws22{word-spacing:0.432000px;}
.ws23{word-spacing:0.504000px;}
.ws47{word-spacing:0.648000px;}
.ws48{word-spacing:0.720000px;}
.ws1b{word-spacing:1.152000px;}
.ws4c{word-spacing:1.440000px;}
.ws12{word-spacing:1.728000px;}
.wsa{word-spacing:1.800000px;}
.ws45{word-spacing:2.016000px;}
.ws38{word-spacing:2.952000px;}
.ws4e{word-spacing:2.976000px;}
.wsf{word-spacing:3.024000px;}
.ws3a{word-spacing:3.096000px;}
.ws4d{word-spacing:3.360000px;}
.ws44{word-spacing:3.456000px;}
.ws43{word-spacing:3.672000px;}
.ws5{word-spacing:3.720000px;}
.ws2e{word-spacing:3.960000px;}
.ws35{word-spacing:4.104000px;}
.ws4a{word-spacing:4.176000px;}
.ws1f{word-spacing:4.200000px;}
.ws36{word-spacing:4.320000px;}
.ws34{word-spacing:4.392000px;}
.wsb{word-spacing:4.464000px;}
.ws13{word-spacing:4.752000px;}
.ws3{word-spacing:4.830000px;}
.ws16{word-spacing:5.040000px;}
.ws4b{word-spacing:5.400000px;}
.wse{word-spacing:5.904000px;}
.ws19{word-spacing:5.976000px;}
.ws3d{word-spacing:6.624000px;}
.ws27{word-spacing:6.912000px;}
.ws26{word-spacing:7.056000px;}
.ws21{word-spacing:7.128000px;}
.ws3c{word-spacing:7.416000px;}
.ws33{word-spacing:7.560000px;}
.ws17{word-spacing:7.776000px;}
.ws46{word-spacing:8.064000px;}
.ws20{word-spacing:8.136000px;}
.ws1a{word-spacing:8.208000px;}
.wsd{word-spacing:8.280000px;}
.ws9{word-spacing:8.400000px;}
.ws2f{word-spacing:8.424000px;}
.ws2b{word-spacing:8.856000px;}
.ws41{word-spacing:8.928000px;}
.ws10{word-spacing:9.000000px;}
.ws39{word-spacing:9.072000px;}
.ws25{word-spacing:9.144000px;}
.ws28{word-spacing:9.216000px;}
.ws3e{word-spacing:9.360000px;}
.ws4{word-spacing:9.900000px;}
.ws18{word-spacing:9.936000px;}
.wsc{word-spacing:10.080000px;}
.ws15{word-spacing:10.152000px;}
.ws29{word-spacing:10.512000px;}
.ws31{word-spacing:10.584000px;}
.ws30{word-spacing:10.944000px;}
.ws1c{word-spacing:11.088000px;}
.ws2c{word-spacing:11.880000px;}
.ws14{word-spacing:11.952000px;}
.ws49{word-spacing:12.024000px;}
.ws2d{word-spacing:13.032000px;}
.ws42{word-spacing:13.176000px;}
.ws11{word-spacing:14.112000px;}
.ws8{word-spacing:56.280000px;}
.ws6{word-spacing:75.180000px;}
.ws0{word-spacing:146.196000px;}
._6{margin-left:-47.423400px;}
._8{margin-left:-21.420600px;}
._11{margin-left:-14.716800px;}
._7{margin-left:-11.875500px;}
._c{margin-left:-9.395400px;}
._e{margin-left:-8.106600px;}
._a{margin-left:-6.768000px;}
._2{margin-left:-5.614500px;}
._5{margin-left:-3.937500px;}
._1{margin-left:-2.304600px;}
._d{margin-left:-1.045500px;}
._b{width:1.042500px;}
._0{width:2.118300px;}
._9{width:3.823500px;}
._f{width:5.514600px;}
._10{width:10.800000px;}
._3{width:23.848500px;}
._12{width:25.002000px;}
._4{width:71.466000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs4{font-size:434.955600px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y22{bottom:78.200850px;}
.y46{bottom:117.000000px;}
.y21{bottom:119.318550px;}
.y8e{bottom:120.560250px;}
.y6b{bottom:120.796350px;}
.yb1{bottom:122.327700px;}
.yb0{bottom:137.171700px;}
.y45{bottom:139.500000px;}
.y6a{bottom:139.546350px;}
.y20{bottom:142.574550px;}
.y8d{bottom:143.654250px;}
.y69{bottom:157.696350px;}
.yaf{bottom:158.399700px;}
.y44{bottom:162.000000px;}
.y1f{bottom:165.830550px;}
.y8c{bottom:166.748250px;}
.y68{bottom:175.846350px;}
.y43{bottom:184.500000px;}
.y1e{bottom:189.086550px;}
.y8b{bottom:189.842250px;}
.y67{bottom:193.996350px;}
.yae{bottom:198.533700px;}
.y42{bottom:207.000000px;}
.y66{bottom:212.146350px;}
.y1d{bottom:212.342550px;}
.y8a{bottom:212.936250px;}
.yad{bottom:220.889700px;}
.y41{bottom:229.500000px;}
.y65{bottom:230.296350px;}
.y1c{bottom:235.598550px;}
.y89{bottom:236.030250px;}
.yac{bottom:243.245700px;}
.y64{bottom:248.446350px;}
.y40{bottom:252.000000px;}
.y1b{bottom:258.854550px;}
.yab{bottom:265.601700px;}
.y88{bottom:267.634200px;}
.y3f{bottom:274.500000px;}
.y63{bottom:275.082300px;}
.y1a{bottom:282.110550px;}
.yaa{bottom:287.957700px;}
.y87{bottom:295.578150px;}
.y62{bottom:296.988300px;}
.y3e{bottom:297.000000px;}
.y19{bottom:305.366550px;}
.ya9{bottom:310.313700px;}
.y86{bottom:318.672150px;}
.y61{bottom:318.894300px;}
.y3d{bottom:319.500000px;}
.y18{bottom:328.622550px;}
.ya8{bottom:332.669700px;}
.y60{bottom:340.800300px;}
.y85{bottom:341.766150px;}
.y3c{bottom:342.000000px;}
.y17{bottom:351.878550px;}
.ya7{bottom:355.025700px;}
.y5f{bottom:362.700300px;}
.y3b{bottom:364.500000px;}
.y84{bottom:364.860150px;}
.y16{bottom:375.134550px;}
.ya6{bottom:377.381700px;}
.y3a{bottom:387.000000px;}
.y83{bottom:387.954150px;}
.y15{bottom:398.390550px;}
.ya5{bottom:399.737700px;}
.y5e{bottom:401.874000px;}
.y39{bottom:409.500000px;}
.y82{bottom:411.048150px;}
.y14{bottom:421.646550px;}
.ya4{bottom:422.093700px;}
.y5d{bottom:423.780000px;}
.y38{bottom:432.000000px;}
.y81{bottom:434.142150px;}
.ya3{bottom:444.449700px;}
.y13{bottom:444.902550px;}
.y5c{bottom:445.686000px;}
.y37{bottom:454.500000px;}
.y80{bottom:457.236150px;}
.ya2{bottom:466.799700px;}
.y5b{bottom:467.592000px;}
.y12{bottom:468.158550px;}
.y36{bottom:477.000000px;}
.y7f{bottom:480.330150px;}
.y5a{bottom:489.498000px;}
.y11{bottom:491.414550px;}
.y35{bottom:499.500000px;}
.y7e{bottom:503.424150px;}
.ya1{bottom:506.909850px;}
.y59{bottom:511.404000px;}
.y10{bottom:514.670550px;}
.y34{bottom:522.000000px;}
.y7d{bottom:526.518150px;}
.ya0{bottom:529.265850px;}
.y58{bottom:533.310000px;}
.yf{bottom:537.926550px;}
.y33{bottom:544.500000px;}
.y7c{bottom:549.612150px;}
.y9f{bottom:551.621850px;}
.y57{bottom:555.216000px;}
.ye{bottom:561.182550px;}
.y32{bottom:567.000000px;}
.y7b{bottom:572.706150px;}
.y9e{bottom:573.977850px;}
.y56{bottom:577.122000px;}
.yd{bottom:584.438550px;}
.y31{bottom:589.500000px;}
.y7a{bottom:595.800150px;}
.y9d{bottom:596.333850px;}
.y55{bottom:599.028000px;}
.yc{bottom:607.694550px;}
.y30{bottom:612.000000px;}
.y9c{bottom:618.689850px;}
.y79{bottom:618.894150px;}
.y54{bottom:620.934000px;}
.yb{bottom:630.950550px;}
.y2f{bottom:634.500000px;}
.y9b{bottom:641.045850px;}
.y78{bottom:641.988150px;}
.y53{bottom:642.840000px;}
.ya{bottom:654.206550px;}
.y8{bottom:654.218550px;}
.ybf{bottom:654.372000px;}
.y2e{bottom:657.000000px;}
.y9a{bottom:663.401850px;}
.y52{bottom:664.746000px;}
.y77{bottom:665.087250px;}
.ybe{bottom:673.122000px;}
.y9{bottom:677.462550px;}
.y2d{bottom:679.500000px;}
.y99{bottom:685.757850px;}
.y51{bottom:686.652000px;}
.ybd{bottom:691.872000px;}
.y2c{bottom:702.000000px;}
.y98{bottom:708.113850px;}
.y50{bottom:708.558000px;}
.ybc{bottom:710.622000px;}
.y76{bottom:715.292250px;}
.y2b{bottom:724.500000px;}
.ybb{bottom:729.372000px;}
.y4f{bottom:730.464000px;}
.y97{bottom:730.469850px;}
.y75{bottom:734.642250px;}
.y2a{bottom:747.000000px;}
.y96{bottom:752.825850px;}
.y74{bottom:753.992250px;}
.yba{bottom:759.372000px;}
.y29{bottom:769.500000px;}
.y7{bottom:769.854300px;}
.y73{bottom:773.342250px;}
.y4e{bottom:774.258000px;}
.y95{bottom:775.181850px;}
.y28{bottom:792.000000px;}
.y6{bottom:792.354300px;}
.y72{bottom:792.692250px;}
.y4d{bottom:796.164000px;}
.y94{bottom:797.537850px;}
.yb9{bottom:800.628000px;}
.y71{bottom:812.042250px;}
.y27{bottom:814.500000px;}
.yb8{bottom:815.628000px;}
.y4c{bottom:818.070000px;}
.y93{bottom:819.893850px;}
.yb7{bottom:830.628000px;}
.y26{bottom:837.000000px;}
.y70{bottom:839.896050px;}
.y4b{bottom:839.976000px;}
.y92{bottom:842.249850px;}
.yb6{bottom:845.628000px;}
.y5{bottom:859.500000px;}
.yb5{bottom:860.628000px;}
.y4a{bottom:861.882000px;}
.y91{bottom:864.599850px;}
.y6f{bottom:871.500000px;}
.yb4{bottom:875.628000px;}
.y25{bottom:882.000000px;}
.y49{bottom:883.788000px;}
.y4{bottom:889.500000px;}
.yb3{bottom:890.628000px;}
.y6e{bottom:891.000000px;}
.y24{bottom:904.500000px;}
.y90{bottom:904.794000px;}
.yb2{bottom:905.628000px;}
.y48{bottom:905.694000px;}
.y6d{bottom:910.500000px;}
.y23{bottom:927.000000px;}
.y8f{bottom:927.150000px;}
.y47{bottom:927.600000px;}
.y6c{bottom:930.000000px;}
.hb{height:33.600000px;}
.h9{height:39.990234px;}
.hc{height:40.757812px;}
.h2{height:41.396484px;}
.h5{height:42.000000px;}
.ha{height:47.988281px;}
.h6{height:49.675781px;}
.h3{height:50.947266px;}
.h1{height:58.589355px;}
.h8{height:61.136719px;}
.h4{height:101.894531px;}
.h7{height:304.468920px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x5{left:82.388400px;}
.x4{left:91.856400px;}
.xa{left:97.263750px;}
.x9{left:112.495950px;}
.x8{left:127.381950px;}
.x2{left:135.010800px;}
.xb{left:142.263750px;}
.xc{left:180.531450px;}
.x3{left:254.065800px;}
.x7{left:409.607850px;}
.x6{left:625.781250px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:165.333333pt;}
.ls18{letter-spacing:-1.472000pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.832000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.024000pt;}
.lsc{letter-spacing:1.088000pt;}
.ls7{letter-spacing:1.216000pt;}
.ls15{letter-spacing:1.408000pt;}
.ls23{letter-spacing:1.472000pt;}
.ls8{letter-spacing:1.529600pt;}
.ls6{letter-spacing:1.600000pt;}
.ls1{letter-spacing:3.786667pt;}
.ls24{letter-spacing:4.224000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls20{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls3{letter-spacing:9.661721pt;}
.ws3f{word-spacing:-56.512000pt;}
.ws3b{word-spacing:-22.506667pt;}
.ws2{word-spacing:-18.176000pt;}
.ws1e{word-spacing:-17.984000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws40{word-spacing:-11.989333pt;}
.ws1d{word-spacing:-7.552000pt;}
.ws24{word-spacing:-1.408000pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws7{word-spacing:0.000000pt;}
.ws37{word-spacing:0.192000pt;}
.ws32{word-spacing:0.320000pt;}
.ws22{word-spacing:0.384000pt;}
.ws23{word-spacing:0.448000pt;}
.ws47{word-spacing:0.576000pt;}
.ws48{word-spacing:0.640000pt;}
.ws1b{word-spacing:1.024000pt;}
.ws4c{word-spacing:1.280000pt;}
.ws12{word-spacing:1.536000pt;}
.wsa{word-spacing:1.600000pt;}
.ws45{word-spacing:1.792000pt;}
.ws38{word-spacing:2.624000pt;}
.ws4e{word-spacing:2.645333pt;}
.wsf{word-spacing:2.688000pt;}
.ws3a{word-spacing:2.752000pt;}
.ws4d{word-spacing:2.986667pt;}
.ws44{word-spacing:3.072000pt;}
.ws43{word-spacing:3.264000pt;}
.ws5{word-spacing:3.306667pt;}
.ws2e{word-spacing:3.520000pt;}
.ws35{word-spacing:3.648000pt;}
.ws4a{word-spacing:3.712000pt;}
.ws1f{word-spacing:3.733333pt;}
.ws36{word-spacing:3.840000pt;}
.ws34{word-spacing:3.904000pt;}
.wsb{word-spacing:3.968000pt;}
.ws13{word-spacing:4.224000pt;}
.ws3{word-spacing:4.293333pt;}
.ws16{word-spacing:4.480000pt;}
.ws4b{word-spacing:4.800000pt;}
.wse{word-spacing:5.248000pt;}
.ws19{word-spacing:5.312000pt;}
.ws3d{word-spacing:5.888000pt;}
.ws27{word-spacing:6.144000pt;}
.ws26{word-spacing:6.272000pt;}
.ws21{word-spacing:6.336000pt;}
.ws3c{word-spacing:6.592000pt;}
.ws33{word-spacing:6.720000pt;}
.ws17{word-spacing:6.912000pt;}
.ws46{word-spacing:7.168000pt;}
.ws20{word-spacing:7.232000pt;}
.ws1a{word-spacing:7.296000pt;}
.wsd{word-spacing:7.360000pt;}
.ws9{word-spacing:7.466667pt;}
.ws2f{word-spacing:7.488000pt;}
.ws2b{word-spacing:7.872000pt;}
.ws41{word-spacing:7.936000pt;}
.ws10{word-spacing:8.000000pt;}
.ws39{word-spacing:8.064000pt;}
.ws25{word-spacing:8.128000pt;}
.ws28{word-spacing:8.192000pt;}
.ws3e{word-spacing:8.320000pt;}
.ws4{word-spacing:8.800000pt;}
.ws18{word-spacing:8.832000pt;}
.wsc{word-spacing:8.960000pt;}
.ws15{word-spacing:9.024000pt;}
.ws29{word-spacing:9.344000pt;}
.ws31{word-spacing:9.408000pt;}
.ws30{word-spacing:9.728000pt;}
.ws1c{word-spacing:9.856000pt;}
.ws2c{word-spacing:10.560000pt;}
.ws14{word-spacing:10.624000pt;}
.ws49{word-spacing:10.688000pt;}
.ws2d{word-spacing:11.584000pt;}
.ws42{word-spacing:11.712000pt;}
.ws11{word-spacing:12.544000pt;}
.ws8{word-spacing:50.026667pt;}
.ws6{word-spacing:66.826667pt;}
.ws0{word-spacing:129.952000pt;}
._6{margin-left:-42.154133pt;}
._8{margin-left:-19.040533pt;}
._11{margin-left:-13.081600pt;}
._7{margin-left:-10.556000pt;}
._c{margin-left:-8.351467pt;}
._e{margin-left:-7.205867pt;}
._a{margin-left:-6.016000pt;}
._2{margin-left:-4.990667pt;}
._5{margin-left:-3.500000pt;}
._1{margin-left:-2.048533pt;}
._d{margin-left:-0.929333pt;}
._b{width:0.926667pt;}
._0{width:1.882933pt;}
._9{width:3.398667pt;}
._f{width:4.901867pt;}
._10{width:9.600000pt;}
._3{width:21.198667pt;}
._12{width:22.224000pt;}
._4{width:63.525333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs4{font-size:386.627200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y22{bottom:69.511867pt;}
.y46{bottom:104.000000pt;}
.y21{bottom:106.060933pt;}
.y8e{bottom:107.164667pt;}
.y6b{bottom:107.374533pt;}
.yb1{bottom:108.735733pt;}
.yb0{bottom:121.930400pt;}
.y45{bottom:124.000000pt;}
.y6a{bottom:124.041200pt;}
.y20{bottom:126.732933pt;}
.y8d{bottom:127.692667pt;}
.y69{bottom:140.174533pt;}
.yaf{bottom:140.799733pt;}
.y44{bottom:144.000000pt;}
.y1f{bottom:147.404933pt;}
.y8c{bottom:148.220667pt;}
.y68{bottom:156.307867pt;}
.y43{bottom:164.000000pt;}
.y1e{bottom:168.076933pt;}
.y8b{bottom:168.748667pt;}
.y67{bottom:172.441200pt;}
.yae{bottom:176.474400pt;}
.y42{bottom:184.000000pt;}
.y66{bottom:188.574533pt;}
.y1d{bottom:188.748933pt;}
.y8a{bottom:189.276667pt;}
.yad{bottom:196.346400pt;}
.y41{bottom:204.000000pt;}
.y65{bottom:204.707867pt;}
.y1c{bottom:209.420933pt;}
.y89{bottom:209.804667pt;}
.yac{bottom:216.218400pt;}
.y64{bottom:220.841200pt;}
.y40{bottom:224.000000pt;}
.y1b{bottom:230.092933pt;}
.yab{bottom:236.090400pt;}
.y88{bottom:237.897067pt;}
.y3f{bottom:244.000000pt;}
.y63{bottom:244.517600pt;}
.y1a{bottom:250.764933pt;}
.yaa{bottom:255.962400pt;}
.y87{bottom:262.736133pt;}
.y62{bottom:263.989600pt;}
.y3e{bottom:264.000000pt;}
.y19{bottom:271.436933pt;}
.ya9{bottom:275.834400pt;}
.y86{bottom:283.264133pt;}
.y61{bottom:283.461600pt;}
.y3d{bottom:284.000000pt;}
.y18{bottom:292.108933pt;}
.ya8{bottom:295.706400pt;}
.y60{bottom:302.933600pt;}
.y85{bottom:303.792133pt;}
.y3c{bottom:304.000000pt;}
.y17{bottom:312.780933pt;}
.ya7{bottom:315.578400pt;}
.y5f{bottom:322.400267pt;}
.y3b{bottom:324.000000pt;}
.y84{bottom:324.320133pt;}
.y16{bottom:333.452933pt;}
.ya6{bottom:335.450400pt;}
.y3a{bottom:344.000000pt;}
.y83{bottom:344.848133pt;}
.y15{bottom:354.124933pt;}
.ya5{bottom:355.322400pt;}
.y5e{bottom:357.221333pt;}
.y39{bottom:364.000000pt;}
.y82{bottom:365.376133pt;}
.y14{bottom:374.796933pt;}
.ya4{bottom:375.194400pt;}
.y5d{bottom:376.693333pt;}
.y38{bottom:384.000000pt;}
.y81{bottom:385.904133pt;}
.ya3{bottom:395.066400pt;}
.y13{bottom:395.468933pt;}
.y5c{bottom:396.165333pt;}
.y37{bottom:404.000000pt;}
.y80{bottom:406.432133pt;}
.ya2{bottom:414.933067pt;}
.y5b{bottom:415.637333pt;}
.y12{bottom:416.140933pt;}
.y36{bottom:424.000000pt;}
.y7f{bottom:426.960133pt;}
.y5a{bottom:435.109333pt;}
.y11{bottom:436.812933pt;}
.y35{bottom:444.000000pt;}
.y7e{bottom:447.488133pt;}
.ya1{bottom:450.586533pt;}
.y59{bottom:454.581333pt;}
.y10{bottom:457.484933pt;}
.y34{bottom:464.000000pt;}
.y7d{bottom:468.016133pt;}
.ya0{bottom:470.458533pt;}
.y58{bottom:474.053333pt;}
.yf{bottom:478.156933pt;}
.y33{bottom:484.000000pt;}
.y7c{bottom:488.544133pt;}
.y9f{bottom:490.330533pt;}
.y57{bottom:493.525333pt;}
.ye{bottom:498.828933pt;}
.y32{bottom:504.000000pt;}
.y7b{bottom:509.072133pt;}
.y9e{bottom:510.202533pt;}
.y56{bottom:512.997333pt;}
.yd{bottom:519.500933pt;}
.y31{bottom:524.000000pt;}
.y7a{bottom:529.600133pt;}
.y9d{bottom:530.074533pt;}
.y55{bottom:532.469333pt;}
.yc{bottom:540.172933pt;}
.y30{bottom:544.000000pt;}
.y9c{bottom:549.946533pt;}
.y79{bottom:550.128133pt;}
.y54{bottom:551.941333pt;}
.yb{bottom:560.844933pt;}
.y2f{bottom:564.000000pt;}
.y9b{bottom:569.818533pt;}
.y78{bottom:570.656133pt;}
.y53{bottom:571.413333pt;}
.ya{bottom:581.516933pt;}
.y8{bottom:581.527600pt;}
.ybf{bottom:581.664000pt;}
.y2e{bottom:584.000000pt;}
.y9a{bottom:589.690533pt;}
.y52{bottom:590.885333pt;}
.y77{bottom:591.188667pt;}
.ybe{bottom:598.330667pt;}
.y9{bottom:602.188933pt;}
.y2d{bottom:604.000000pt;}
.y99{bottom:609.562533pt;}
.y51{bottom:610.357333pt;}
.ybd{bottom:614.997333pt;}
.y2c{bottom:624.000000pt;}
.y98{bottom:629.434533pt;}
.y50{bottom:629.829333pt;}
.ybc{bottom:631.664000pt;}
.y76{bottom:635.815333pt;}
.y2b{bottom:644.000000pt;}
.ybb{bottom:648.330667pt;}
.y4f{bottom:649.301333pt;}
.y97{bottom:649.306533pt;}
.y75{bottom:653.015333pt;}
.y2a{bottom:664.000000pt;}
.y96{bottom:669.178533pt;}
.y74{bottom:670.215333pt;}
.yba{bottom:674.997333pt;}
.y29{bottom:684.000000pt;}
.y7{bottom:684.314933pt;}
.y73{bottom:687.415333pt;}
.y4e{bottom:688.229333pt;}
.y95{bottom:689.050533pt;}
.y28{bottom:704.000000pt;}
.y6{bottom:704.314933pt;}
.y72{bottom:704.615333pt;}
.y4d{bottom:707.701333pt;}
.y94{bottom:708.922533pt;}
.yb9{bottom:711.669333pt;}
.y71{bottom:721.815333pt;}
.y27{bottom:724.000000pt;}
.yb8{bottom:725.002667pt;}
.y4c{bottom:727.173333pt;}
.y93{bottom:728.794533pt;}
.yb7{bottom:738.336000pt;}
.y26{bottom:744.000000pt;}
.y70{bottom:746.574267pt;}
.y4b{bottom:746.645333pt;}
.y92{bottom:748.666533pt;}
.yb6{bottom:751.669333pt;}
.y5{bottom:764.000000pt;}
.yb5{bottom:765.002667pt;}
.y4a{bottom:766.117333pt;}
.y91{bottom:768.533200pt;}
.y6f{bottom:774.666667pt;}
.yb4{bottom:778.336000pt;}
.y25{bottom:784.000000pt;}
.y49{bottom:785.589333pt;}
.y4{bottom:790.666667pt;}
.yb3{bottom:791.669333pt;}
.y6e{bottom:792.000000pt;}
.y24{bottom:804.000000pt;}
.y90{bottom:804.261333pt;}
.yb2{bottom:805.002667pt;}
.y48{bottom:805.061333pt;}
.y6d{bottom:809.333333pt;}
.y23{bottom:824.000000pt;}
.y8f{bottom:824.133333pt;}
.y47{bottom:824.533333pt;}
.y6c{bottom:826.666667pt;}
.hb{height:29.866667pt;}
.h9{height:35.546875pt;}
.hc{height:36.229167pt;}
.h2{height:36.796875pt;}
.h5{height:37.333333pt;}
.ha{height:42.656250pt;}
.h6{height:44.156250pt;}
.h3{height:45.286458pt;}
.h1{height:52.079427pt;}
.h8{height:54.343750pt;}
.h4{height:90.572917pt;}
.h7{height:270.639040pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x5{left:73.234133pt;}
.x4{left:81.650133pt;}
.xa{left:86.456667pt;}
.x9{left:99.996400pt;}
.x8{left:113.228400pt;}
.x2{left:120.009600pt;}
.xb{left:126.456667pt;}
.xc{left:160.472400pt;}
.x3{left:225.836267pt;}
.x7{left:364.095867pt;}
.x6{left:556.250000pt;}
}




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