
    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_da20875ea540524c33b28d38.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042000;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_9382fbe3175cb8e2b50a06a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.031000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.602900px;}
.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;}
}
.ws41{word-spacing:-15.930000px;}
.ws5c{word-spacing:-2.408486px;}
.ws20{word-spacing:-2.341584px;}
.ws38{word-spacing:-2.274682px;}
.ws15{word-spacing:-2.207779px;}
.ws2a{word-spacing:-2.140877px;}
.ws81{word-spacing:-2.007072px;}
.ws32{word-spacing:-1.940170px;}
.ws2f{word-spacing:-1.739462px;}
.ws95{word-spacing:-1.672560px;}
.ws66{word-spacing:-1.605658px;}
.ws21{word-spacing:-1.471853px;}
.ws71{word-spacing:-1.404950px;}
.ws40{word-spacing:-1.271146px;}
.ws98{word-spacing:-1.137341px;}
.ws43{word-spacing:-1.070438px;}
.ws46{word-spacing:-0.936634px;}
.ws30{word-spacing:-0.869731px;}
.ws36{word-spacing:-0.735926px;}
.ws90{word-spacing:-0.669024px;}
.wsb{word-spacing:-0.602122px;}
.ws11{word-spacing:-0.535219px;}
.ws82{word-spacing:-0.468317px;}
.ws3{word-spacing:-0.401414px;}
.ws39{word-spacing:-0.200707px;}
.ws4d{word-spacing:-0.133805px;}
.ws1{word-spacing:0.000000px;}
.ws4c{word-spacing:0.133805px;}
.ws1d{word-spacing:0.200707px;}
.ws77{word-spacing:0.334512px;}
.ws61{word-spacing:0.401414px;}
.wsf{word-spacing:0.468317px;}
.ws94{word-spacing:0.535219px;}
.ws14{word-spacing:0.669024px;}
.ws78{word-spacing:0.735926px;}
.ws45{word-spacing:0.802829px;}
.ws80{word-spacing:0.936634px;}
.ws6f{word-spacing:1.003536px;}
.ws60{word-spacing:1.070438px;}
.ws25{word-spacing:1.137341px;}
.ws8a{word-spacing:1.204243px;}
.ws99{word-spacing:1.338048px;}
.ws7c{word-spacing:1.404950px;}
.ws2{word-spacing:1.612033px;}
.ws91{word-spacing:1.672560px;}
.ws1a{word-spacing:1.739462px;}
.wse{word-spacing:2.007072px;}
.ws79{word-spacing:2.073974px;}
.ws2e{word-spacing:2.207779px;}
.ws26{word-spacing:2.274682px;}
.ws4{word-spacing:2.341584px;}
.wsc{word-spacing:2.475389px;}
.ws7a{word-spacing:2.542291px;}
.ws6{word-spacing:2.676096px;}
.ws3b{word-spacing:2.809901px;}
.ws4b{word-spacing:2.876803px;}
.ws7b{word-spacing:2.943706px;}
.ws5{word-spacing:3.077510px;}
.ws9b{word-spacing:3.144413px;}
.ws3a{word-spacing:3.211315px;}
.ws62{word-spacing:3.278218px;}
.ws73{word-spacing:3.345120px;}
.ws8d{word-spacing:3.478925px;}
.ws31{word-spacing:3.545827px;}
.ws13{word-spacing:3.612730px;}
.ws34{word-spacing:3.880339px;}
.ws48{word-spacing:3.947242px;}
.ws97{word-spacing:4.014144px;}
.ws86{word-spacing:4.081046px;}
.ws52{word-spacing:4.147949px;}
.ws5b{word-spacing:4.348656px;}
.ws1c{word-spacing:4.415558px;}
.ws75{word-spacing:4.482461px;}
.ws18{word-spacing:4.549363px;}
.ws37{word-spacing:4.683168px;}
.ws33{word-spacing:4.950778px;}
.wsd{word-spacing:5.017680px;}
.ws1e{word-spacing:5.084582px;}
.ws93{word-spacing:5.151485px;}
.ws6d{word-spacing:5.419094px;}
.ws1b{word-spacing:5.485997px;}
.ws8{word-spacing:5.753606px;}
.ws6e{word-spacing:5.820509px;}
.ws70{word-spacing:5.887411px;}
.ws57{word-spacing:5.954314px;}
.ws92{word-spacing:6.155021px;}
.ws67{word-spacing:6.221923px;}
.ws27{word-spacing:6.355728px;}
.ws72{word-spacing:6.489533px;}
.ws89{word-spacing:6.556435px;}
.ws96{word-spacing:6.690240px;}
.ws5f{word-spacing:6.824045px;}
.ws1f{word-spacing:7.024752px;}
.ws55{word-spacing:7.225459px;}
.ws50{word-spacing:7.292362px;}
.ws88{word-spacing:7.626874px;}
.ws47{word-spacing:7.760678px;}
.ws35{word-spacing:7.827581px;}
.ws4f{word-spacing:8.028288px;}
.ws5e{word-spacing:8.162093px;}
.ws22{word-spacing:8.228995px;}
.ws68{word-spacing:8.429702px;}
.ws4a{word-spacing:8.630410px;}
.ws87{word-spacing:8.764214px;}
.ws8f{word-spacing:8.831117px;}
.ws9c{word-spacing:8.898019px;}
.ws7d{word-spacing:9.433238px;}
.ws7{word-spacing:9.500141px;}
.ws3f{word-spacing:9.567043px;}
.ws5d{word-spacing:9.633946px;}
.ws53{word-spacing:9.767750px;}
.ws8e{word-spacing:9.901555px;}
.ws2d{word-spacing:10.035360px;}
.ws19{word-spacing:10.102262px;}
.ws76{word-spacing:10.302970px;}
.ws2b{word-spacing:10.503677px;}
.ws2c{word-spacing:10.704384px;}
.ws10{word-spacing:10.771286px;}
.ws24{word-spacing:10.971994px;}
.ws54{word-spacing:11.038896px;}
.ws83{word-spacing:11.373408px;}
.ws65{word-spacing:11.440310px;}
.ws6a{word-spacing:11.574115px;}
.ws7e{word-spacing:11.707920px;}
.ws74{word-spacing:11.774822px;}
.ws44{word-spacing:12.109334px;}
.ws5a{word-spacing:12.243139px;}
.ws12{word-spacing:12.310042px;}
.ws6c{word-spacing:12.376944px;}
.ws4e{word-spacing:12.711456px;}
.ws51{word-spacing:12.845261px;}
.ws3e{word-spacing:12.912163px;}
.ws28{word-spacing:13.246675px;}
.ws23{word-spacing:13.781894px;}
.ws64{word-spacing:13.848797px;}
.ws56{word-spacing:13.982602px;}
.ws16{word-spacing:15.053040px;}
.ws63{word-spacing:15.186845px;}
.ws3d{word-spacing:15.454454px;}
.ws7f{word-spacing:15.655162px;}
.ws58{word-spacing:15.788966px;}
.ws69{word-spacing:15.855869px;}
.ws6b{word-spacing:16.190381px;}
.ws9a{word-spacing:16.457990px;}
.ws17{word-spacing:16.524893px;}
.ws8c{word-spacing:16.993210px;}
.wsa{word-spacing:17.327722px;}
.ws85{word-spacing:17.461526px;}
.ws29{word-spacing:18.866477px;}
.ws49{word-spacing:19.803110px;}
.ws84{word-spacing:19.936915px;}
.ws3c{word-spacing:20.672842px;}
.ws59{word-spacing:21.208061px;}
.ws8b{word-spacing:25.824326px;}
.ws9{word-spacing:33.785712px;}
.ws42{word-spacing:815.106240px;}
.ws0{word-spacing:910.657566px;}
._0{margin-left:-95.567142px;}
._4{margin-left:-5.862240px;}
._1{margin-left:-1.261591px;}
._3{width:3.108566px;}
._2{width:8.247566px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.418000px;}
.fs2{font-size:44.604000px;}
.fs1{font-size:63.720000px;}
.fs4{font-size:66.902400px;}
.fs3{font-size:70.088400px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.780750px;}
.y27{bottom:110.550750px;}
.y75{bottom:110.551500px;}
.y4a{bottom:111.016350px;}
.y74{bottom:129.126000px;}
.y49{bottom:129.766350px;}
.y26{bottom:129.865800px;}
.y73{bottom:147.700500px;}
.y48{bottom:148.516200px;}
.y25{bottom:149.181000px;}
.y72{bottom:166.275000px;}
.y47{bottom:167.266200px;}
.y24{bottom:168.496050px;}
.y71{bottom:184.849500px;}
.y46{bottom:186.016200px;}
.y23{bottom:187.811250px;}
.y70{bottom:203.424000px;}
.y45{bottom:204.766050px;}
.y22{bottom:207.126300px;}
.y6f{bottom:221.998500px;}
.y44{bottom:223.516050px;}
.y21{bottom:226.441500px;}
.y6e{bottom:240.573000px;}
.y43{bottom:242.266050px;}
.y20{bottom:245.756550px;}
.y6d{bottom:259.147500px;}
.y42{bottom:261.016050px;}
.y1f{bottom:265.071600px;}
.y6c{bottom:277.722000px;}
.y41{bottom:279.765900px;}
.y1e{bottom:284.386800px;}
.y6b{bottom:296.296500px;}
.y40{bottom:298.515900px;}
.y1d{bottom:303.701850px;}
.y6a{bottom:314.871000px;}
.y3f{bottom:317.265900px;}
.y1c{bottom:323.017050px;}
.y69{bottom:333.445500px;}
.y3e{bottom:336.015750px;}
.y1b{bottom:342.332100px;}
.y68{bottom:352.020000px;}
.y3d{bottom:354.765750px;}
.y1a{bottom:361.647300px;}
.y67{bottom:370.594500px;}
.y3c{bottom:373.515750px;}
.y19{bottom:380.962350px;}
.y66{bottom:389.169000px;}
.y3b{bottom:392.265600px;}
.y18{bottom:400.277550px;}
.y65{bottom:407.743500px;}
.y3a{bottom:411.015600px;}
.y17{bottom:419.592600px;}
.y64{bottom:426.318000px;}
.y39{bottom:429.765600px;}
.y16{bottom:438.907800px;}
.y63{bottom:444.892500px;}
.y38{bottom:448.515450px;}
.y15{bottom:458.222850px;}
.y62{bottom:463.467000px;}
.y37{bottom:467.265450px;}
.y14{bottom:477.537900px;}
.y61{bottom:482.041500px;}
.y36{bottom:486.015450px;}
.y13{bottom:496.853100px;}
.y60{bottom:500.616000px;}
.y35{bottom:504.765450px;}
.y9e{bottom:508.110150px;}
.y8a{bottom:508.110300px;}
.y12{bottom:516.168150px;}
.y5f{bottom:519.190500px;}
.y34{bottom:523.515300px;}
.y9d{bottom:525.750600px;}
.y89{bottom:527.238750px;}
.y11{bottom:535.483350px;}
.y5e{bottom:537.764850px;}
.y33{bottom:542.265300px;}
.y9c{bottom:543.390900px;}
.y88{bottom:546.367200px;}
.y10{bottom:554.798400px;}
.y5d{bottom:556.339350px;}
.y32{bottom:561.015150px;}
.y9b{bottom:561.031350px;}
.y87{bottom:565.495650px;}
.yf{bottom:574.113600px;}
.y5c{bottom:574.913850px;}
.y31{bottom:579.765150px;}
.y86{bottom:584.624100px;}
.ye{bottom:593.428650px;}
.y5b{bottom:593.488350px;}
.y9a{bottom:595.679700px;}
.y30{bottom:598.515150px;}
.y85{bottom:603.752550px;}
.y5a{bottom:612.062850px;}
.yd{bottom:612.743700px;}
.y99{bottom:614.117100px;}
.y2f{bottom:617.265150px;}
.y84{bottom:622.881000px;}
.y59{bottom:630.637500px;}
.yc{bottom:632.058900px;}
.y98{bottom:632.554650px;}
.y2e{bottom:636.015000px;}
.y83{bottom:642.009450px;}
.y58{bottom:649.212000px;}
.y97{bottom:650.992050px;}
.yb{bottom:651.373950px;}
.y2d{bottom:654.765000px;}
.y82{bottom:661.137900px;}
.y57{bottom:667.786350px;}
.y96{bottom:669.429600px;}
.ya{bottom:670.689150px;}
.y2c{bottom:673.514850px;}
.y81{bottom:680.266350px;}
.y56{bottom:686.360850px;}
.y95{bottom:687.867000px;}
.y9{bottom:690.004200px;}
.y2b{bottom:692.264850px;}
.y80{bottom:699.394800px;}
.y55{bottom:704.935350px;}
.y94{bottom:706.304550px;}
.y8{bottom:709.319400px;}
.y2a{bottom:711.014850px;}
.y7f{bottom:718.523400px;}
.y54{bottom:723.509850px;}
.y93{bottom:724.741950px;}
.y7{bottom:728.634450px;}
.y29{bottom:729.764850px;}
.y7e{bottom:737.651850px;}
.y53{bottom:742.084500px;}
.y92{bottom:743.179500px;}
.y6{bottom:747.949650px;}
.y28{bottom:748.514700px;}
.y7d{bottom:756.780300px;}
.y52{bottom:760.659000px;}
.y91{bottom:761.617050px;}
.y5{bottom:767.264700px;}
.y7c{bottom:775.908750px;}
.y51{bottom:779.233500px;}
.y90{bottom:780.054450px;}
.y7b{bottom:795.037200px;}
.y50{bottom:797.807850px;}
.y8f{bottom:798.492000px;}
.y7a{bottom:814.165650px;}
.y4f{bottom:816.382350px;}
.y8e{bottom:816.929550px;}
.y79{bottom:833.294100px;}
.y4e{bottom:834.956850px;}
.y8d{bottom:835.367100px;}
.y78{bottom:852.422550px;}
.y4d{bottom:853.531350px;}
.y8c{bottom:853.804500px;}
.y4{bottom:870.622650px;}
.y77{bottom:871.551000px;}
.y4c{bottom:872.105850px;}
.y8b{bottom:872.242050px;}
.y3{bottom:890.169000px;}
.y76{bottom:890.679450px;}
.y4b{bottom:890.680350px;}
.y1{bottom:933.710250px;}
.h3{height:36.664488px;}
.h6{height:51.676920px;}
.h2{height:52.377840px;}
.h5{height:54.993773px;}
.h4{height:57.612665px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:89.290500px;}
.x5{left:106.299000px;}
.x2{left:119.055000px;}
.x6{left:136.063500px;}
.x4{left:363.542250px;}
.x7{left:380.550750px;}
.x3{left:393.306750px;}
.x8{left:410.315250px;}
.x9{left:421.724850px;}
.xa{left:491.975700px;}
.xb{left:507.013800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.424800pt;}
.ws41{word-spacing:-14.160000pt;}
.ws5c{word-spacing:-2.140877pt;}
.ws20{word-spacing:-2.081408pt;}
.ws38{word-spacing:-2.021939pt;}
.ws15{word-spacing:-1.962470pt;}
.ws2a{word-spacing:-1.903002pt;}
.ws81{word-spacing:-1.784064pt;}
.ws32{word-spacing:-1.724595pt;}
.ws2f{word-spacing:-1.546189pt;}
.ws95{word-spacing:-1.486720pt;}
.ws66{word-spacing:-1.427251pt;}
.ws21{word-spacing:-1.308314pt;}
.ws71{word-spacing:-1.248845pt;}
.ws40{word-spacing:-1.129907pt;}
.ws98{word-spacing:-1.010970pt;}
.ws43{word-spacing:-0.951501pt;}
.ws46{word-spacing:-0.832563pt;}
.ws30{word-spacing:-0.773094pt;}
.ws36{word-spacing:-0.654157pt;}
.ws90{word-spacing:-0.594688pt;}
.wsb{word-spacing:-0.535219pt;}
.ws11{word-spacing:-0.475750pt;}
.ws82{word-spacing:-0.416282pt;}
.ws3{word-spacing:-0.356813pt;}
.ws39{word-spacing:-0.178406pt;}
.ws4d{word-spacing:-0.118938pt;}
.ws1{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.118938pt;}
.ws1d{word-spacing:0.178406pt;}
.ws77{word-spacing:0.297344pt;}
.ws61{word-spacing:0.356813pt;}
.wsf{word-spacing:0.416282pt;}
.ws94{word-spacing:0.475750pt;}
.ws14{word-spacing:0.594688pt;}
.ws78{word-spacing:0.654157pt;}
.ws45{word-spacing:0.713626pt;}
.ws80{word-spacing:0.832563pt;}
.ws6f{word-spacing:0.892032pt;}
.ws60{word-spacing:0.951501pt;}
.ws25{word-spacing:1.010970pt;}
.ws8a{word-spacing:1.070438pt;}
.ws99{word-spacing:1.189376pt;}
.ws7c{word-spacing:1.248845pt;}
.ws2{word-spacing:1.432918pt;}
.ws91{word-spacing:1.486720pt;}
.ws1a{word-spacing:1.546189pt;}
.wse{word-spacing:1.784064pt;}
.ws79{word-spacing:1.843533pt;}
.ws2e{word-spacing:1.962470pt;}
.ws26{word-spacing:2.021939pt;}
.ws4{word-spacing:2.081408pt;}
.wsc{word-spacing:2.200346pt;}
.ws7a{word-spacing:2.259814pt;}
.ws6{word-spacing:2.378752pt;}
.ws3b{word-spacing:2.497690pt;}
.ws4b{word-spacing:2.557158pt;}
.ws7b{word-spacing:2.616627pt;}
.ws5{word-spacing:2.735565pt;}
.ws9b{word-spacing:2.795034pt;}
.ws3a{word-spacing:2.854502pt;}
.ws62{word-spacing:2.913971pt;}
.ws73{word-spacing:2.973440pt;}
.ws8d{word-spacing:3.092378pt;}
.ws31{word-spacing:3.151846pt;}
.ws13{word-spacing:3.211315pt;}
.ws34{word-spacing:3.449190pt;}
.ws48{word-spacing:3.508659pt;}
.ws97{word-spacing:3.568128pt;}
.ws86{word-spacing:3.627597pt;}
.ws52{word-spacing:3.687066pt;}
.ws5b{word-spacing:3.865472pt;}
.ws1c{word-spacing:3.924941pt;}
.ws75{word-spacing:3.984410pt;}
.ws18{word-spacing:4.043878pt;}
.ws37{word-spacing:4.162816pt;}
.ws33{word-spacing:4.400691pt;}
.wsd{word-spacing:4.460160pt;}
.ws1e{word-spacing:4.519629pt;}
.ws93{word-spacing:4.579098pt;}
.ws6d{word-spacing:4.816973pt;}
.ws1b{word-spacing:4.876442pt;}
.ws8{word-spacing:5.114317pt;}
.ws6e{word-spacing:5.173786pt;}
.ws70{word-spacing:5.233254pt;}
.ws57{word-spacing:5.292723pt;}
.ws92{word-spacing:5.471130pt;}
.ws67{word-spacing:5.530598pt;}
.ws27{word-spacing:5.649536pt;}
.ws72{word-spacing:5.768474pt;}
.ws89{word-spacing:5.827942pt;}
.ws96{word-spacing:5.946880pt;}
.ws5f{word-spacing:6.065818pt;}
.ws1f{word-spacing:6.244224pt;}
.ws55{word-spacing:6.422630pt;}
.ws50{word-spacing:6.482099pt;}
.ws88{word-spacing:6.779443pt;}
.ws47{word-spacing:6.898381pt;}
.ws35{word-spacing:6.957850pt;}
.ws4f{word-spacing:7.136256pt;}
.ws5e{word-spacing:7.255194pt;}
.ws22{word-spacing:7.314662pt;}
.ws68{word-spacing:7.493069pt;}
.ws4a{word-spacing:7.671475pt;}
.ws87{word-spacing:7.790413pt;}
.ws8f{word-spacing:7.849882pt;}
.ws9c{word-spacing:7.909350pt;}
.ws7d{word-spacing:8.385101pt;}
.ws7{word-spacing:8.444570pt;}
.ws3f{word-spacing:8.504038pt;}
.ws5d{word-spacing:8.563507pt;}
.ws53{word-spacing:8.682445pt;}
.ws8e{word-spacing:8.801382pt;}
.ws2d{word-spacing:8.920320pt;}
.ws19{word-spacing:8.979789pt;}
.ws76{word-spacing:9.158195pt;}
.ws2b{word-spacing:9.336602pt;}
.ws2c{word-spacing:9.515008pt;}
.ws10{word-spacing:9.574477pt;}
.ws24{word-spacing:9.752883pt;}
.ws54{word-spacing:9.812352pt;}
.ws83{word-spacing:10.109696pt;}
.ws65{word-spacing:10.169165pt;}
.ws6a{word-spacing:10.288102pt;}
.ws7e{word-spacing:10.407040pt;}
.ws74{word-spacing:10.466509pt;}
.ws44{word-spacing:10.763853pt;}
.ws5a{word-spacing:10.882790pt;}
.ws12{word-spacing:10.942259pt;}
.ws6c{word-spacing:11.001728pt;}
.ws4e{word-spacing:11.299072pt;}
.ws51{word-spacing:11.418010pt;}
.ws3e{word-spacing:11.477478pt;}
.ws28{word-spacing:11.774822pt;}
.ws23{word-spacing:12.250573pt;}
.ws64{word-spacing:12.310042pt;}
.ws56{word-spacing:12.428979pt;}
.ws16{word-spacing:13.380480pt;}
.ws63{word-spacing:13.499418pt;}
.ws3d{word-spacing:13.737293pt;}
.ws7f{word-spacing:13.915699pt;}
.ws58{word-spacing:14.034637pt;}
.ws69{word-spacing:14.094106pt;}
.ws6b{word-spacing:14.391450pt;}
.ws9a{word-spacing:14.629325pt;}
.ws17{word-spacing:14.688794pt;}
.ws8c{word-spacing:15.105075pt;}
.wsa{word-spacing:15.402419pt;}
.ws85{word-spacing:15.521357pt;}
.ws29{word-spacing:16.770202pt;}
.ws49{word-spacing:17.602765pt;}
.ws84{word-spacing:17.721702pt;}
.ws3c{word-spacing:18.375859pt;}
.ws59{word-spacing:18.851610pt;}
.ws8b{word-spacing:22.954957pt;}
.ws9{word-spacing:30.031744pt;}
.ws42{word-spacing:724.538880pt;}
.ws0{word-spacing:809.473392pt;}
._0{margin-left:-84.948571pt;}
._4{margin-left:-5.210880pt;}
._1{margin-left:-1.121414pt;}
._3{width:2.763170pt;}
._2{width:7.331170pt;}
.fs0{font-size:36.816000pt;}
.fs2{font-size:39.648000pt;}
.fs1{font-size:56.640000pt;}
.fs4{font-size:59.468800pt;}
.fs3{font-size:62.300800pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.694000pt;}
.y27{bottom:98.267333pt;}
.y75{bottom:98.268000pt;}
.y4a{bottom:98.681200pt;}
.y74{bottom:114.778667pt;}
.y49{bottom:115.347867pt;}
.y26{bottom:115.436267pt;}
.y73{bottom:131.289333pt;}
.y48{bottom:132.014400pt;}
.y25{bottom:132.605333pt;}
.y72{bottom:147.800000pt;}
.y47{bottom:148.681067pt;}
.y24{bottom:149.774267pt;}
.y71{bottom:164.310667pt;}
.y46{bottom:165.347733pt;}
.y23{bottom:166.943333pt;}
.y70{bottom:180.821333pt;}
.y45{bottom:182.014267pt;}
.y22{bottom:184.112267pt;}
.y6f{bottom:197.332000pt;}
.y44{bottom:198.680933pt;}
.y21{bottom:201.281333pt;}
.y6e{bottom:213.842667pt;}
.y43{bottom:215.347600pt;}
.y20{bottom:218.450267pt;}
.y6d{bottom:230.353333pt;}
.y42{bottom:232.014267pt;}
.y1f{bottom:235.619200pt;}
.y6c{bottom:246.864000pt;}
.y41{bottom:248.680800pt;}
.y1e{bottom:252.788267pt;}
.y6b{bottom:263.374667pt;}
.y40{bottom:265.347467pt;}
.y1d{bottom:269.957200pt;}
.y6a{bottom:279.885333pt;}
.y3f{bottom:282.014133pt;}
.y1c{bottom:287.126267pt;}
.y69{bottom:296.396000pt;}
.y3e{bottom:298.680667pt;}
.y1b{bottom:304.295200pt;}
.y68{bottom:312.906667pt;}
.y3d{bottom:315.347333pt;}
.y1a{bottom:321.464267pt;}
.y67{bottom:329.417333pt;}
.y3c{bottom:332.014000pt;}
.y19{bottom:338.633200pt;}
.y66{bottom:345.928000pt;}
.y3b{bottom:348.680533pt;}
.y18{bottom:355.802267pt;}
.y65{bottom:362.438667pt;}
.y3a{bottom:365.347200pt;}
.y17{bottom:372.971200pt;}
.y64{bottom:378.949333pt;}
.y39{bottom:382.013867pt;}
.y16{bottom:390.140267pt;}
.y63{bottom:395.460000pt;}
.y38{bottom:398.680400pt;}
.y15{bottom:407.309200pt;}
.y62{bottom:411.970667pt;}
.y37{bottom:415.347067pt;}
.y14{bottom:424.478133pt;}
.y61{bottom:428.481333pt;}
.y36{bottom:432.013733pt;}
.y13{bottom:441.647200pt;}
.y60{bottom:444.992000pt;}
.y35{bottom:448.680400pt;}
.y9e{bottom:451.653467pt;}
.y8a{bottom:451.653600pt;}
.y12{bottom:458.816133pt;}
.y5f{bottom:461.502667pt;}
.y34{bottom:465.346933pt;}
.y9d{bottom:467.333867pt;}
.y89{bottom:468.656667pt;}
.y11{bottom:475.985200pt;}
.y5e{bottom:478.013200pt;}
.y33{bottom:482.013600pt;}
.y9c{bottom:483.014133pt;}
.y88{bottom:485.659733pt;}
.y10{bottom:493.154133pt;}
.y5d{bottom:494.523867pt;}
.y32{bottom:498.680133pt;}
.y9b{bottom:498.694533pt;}
.y87{bottom:502.662800pt;}
.yf{bottom:510.323200pt;}
.y5c{bottom:511.034533pt;}
.y31{bottom:515.346800pt;}
.y86{bottom:519.665867pt;}
.ye{bottom:527.492133pt;}
.y5b{bottom:527.545200pt;}
.y9a{bottom:529.493067pt;}
.y30{bottom:532.013467pt;}
.y85{bottom:536.668933pt;}
.y5a{bottom:544.055867pt;}
.yd{bottom:544.661067pt;}
.y99{bottom:545.881867pt;}
.y2f{bottom:548.680133pt;}
.y84{bottom:553.672000pt;}
.y59{bottom:560.566667pt;}
.yc{bottom:561.830133pt;}
.y98{bottom:562.270800pt;}
.y2e{bottom:565.346667pt;}
.y83{bottom:570.675067pt;}
.y58{bottom:577.077333pt;}
.y97{bottom:578.659600pt;}
.yb{bottom:578.999067pt;}
.y2d{bottom:582.013333pt;}
.y82{bottom:587.678133pt;}
.y57{bottom:593.587867pt;}
.y96{bottom:595.048533pt;}
.ya{bottom:596.168133pt;}
.y2c{bottom:598.679867pt;}
.y81{bottom:604.681200pt;}
.y56{bottom:610.098533pt;}
.y95{bottom:611.437333pt;}
.y9{bottom:613.337067pt;}
.y2b{bottom:615.346533pt;}
.y80{bottom:621.684267pt;}
.y55{bottom:626.609200pt;}
.y94{bottom:627.826267pt;}
.y8{bottom:630.506133pt;}
.y2a{bottom:632.013200pt;}
.y7f{bottom:638.687467pt;}
.y54{bottom:643.119867pt;}
.y93{bottom:644.215067pt;}
.y7{bottom:647.675067pt;}
.y29{bottom:648.679867pt;}
.y7e{bottom:655.690533pt;}
.y53{bottom:659.630667pt;}
.y92{bottom:660.604000pt;}
.y6{bottom:664.844133pt;}
.y28{bottom:665.346400pt;}
.y7d{bottom:672.693600pt;}
.y52{bottom:676.141333pt;}
.y91{bottom:676.992933pt;}
.y5{bottom:682.013067pt;}
.y7c{bottom:689.696667pt;}
.y51{bottom:692.652000pt;}
.y90{bottom:693.381733pt;}
.y7b{bottom:706.699733pt;}
.y50{bottom:709.162533pt;}
.y8f{bottom:709.770667pt;}
.y7a{bottom:723.702800pt;}
.y4f{bottom:725.673200pt;}
.y8e{bottom:726.159600pt;}
.y79{bottom:740.705867pt;}
.y4e{bottom:742.183867pt;}
.y8d{bottom:742.548533pt;}
.y78{bottom:757.708933pt;}
.y4d{bottom:758.694533pt;}
.y8c{bottom:758.937333pt;}
.y4{bottom:773.886800pt;}
.y77{bottom:774.712000pt;}
.y4c{bottom:775.205200pt;}
.y8b{bottom:775.326267pt;}
.y3{bottom:791.261333pt;}
.y76{bottom:791.715067pt;}
.y4b{bottom:791.715867pt;}
.y1{bottom:829.964667pt;}
.h3{height:32.590656pt;}
.h6{height:45.935040pt;}
.h2{height:46.558080pt;}
.h5{height:48.883354pt;}
.h4{height:51.211258pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:79.369333pt;}
.x5{left:94.488000pt;}
.x2{left:105.826667pt;}
.x6{left:120.945333pt;}
.x4{left:323.148667pt;}
.x7{left:338.267333pt;}
.x3{left:349.606000pt;}
.x8{left:364.724667pt;}
.x9{left:374.866533pt;}
.xa{left:437.311733pt;}
.xb{left:450.678933pt;}
}




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