
    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_a039e0eeba19071f6358149f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_45c2adbfe6aee9256ffaacc4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_adddf22b08d4f57bca32afaf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_9dd84113a1e4be08e161723e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.314000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:8.430000px;}
.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;}
}
.ws14{word-spacing:-55.944000px;}
.ws1{word-spacing:-45.310800px;}
.ws0{word-spacing:-44.999400px;}
.ws70{word-spacing:-38.666400px;}
.ws6e{word-spacing:-38.661300px;}
.ws6b{word-spacing:-38.655900px;}
.ws55{word-spacing:-38.655600px;}
.ws6c{word-spacing:-38.649600px;}
.ws13{word-spacing:-38.646900px;}
.ws29{word-spacing:-38.583000px;}
.ws71{word-spacing:-38.439900px;}
.ws40{word-spacing:-38.439000px;}
.ws63{word-spacing:-38.375100px;}
.ws46{word-spacing:-38.166000px;}
.ws31{word-spacing:-38.160000px;}
.ws2{word-spacing:-38.157300px;}
.ws37{word-spacing:-38.156400px;}
.ws62{word-spacing:-38.154600px;}
.ws6f{word-spacing:-38.148300px;}
.ws69{word-spacing:-38.088000px;}
.ws2c{word-spacing:-37.944000px;}
.ws6a{word-spacing:-37.941300px;}
.ws56{word-spacing:-37.936800px;}
.ws6d{word-spacing:-37.935900px;}
.ws58{word-spacing:-37.870200px;}
.ws41{word-spacing:-37.722600px;}
.ws12{word-spacing:-37.440000px;}
.ws27{word-spacing:-36.720000px;}
.ws2a{word-spacing:-36.654000px;}
.ws8{word-spacing:-36.432000px;}
.ws47{word-spacing:-36.422400px;}
.ws39{word-spacing:-36.000000px;}
.ws2f{word-spacing:-35.784000px;}
.ws4b{word-spacing:-35.782800px;}
.ws5b{word-spacing:-35.708400px;}
.ws64{word-spacing:-35.705100px;}
.ws33{word-spacing:-35.286000px;}
.ws5a{word-spacing:-35.280000px;}
.wsf{word-spacing:-35.277000px;}
.wse{word-spacing:-35.064600px;}
.ws53{word-spacing:-35.062200px;}
.ws28{word-spacing:-35.060400px;}
.wsd{word-spacing:-35.055000px;}
.ws11{word-spacing:-34.560000px;}
.ws4a{word-spacing:-34.344000px;}
.ws1c{word-spacing:-33.840000px;}
.wsa{word-spacing:-33.616500px;}
.ws54{word-spacing:-33.613200px;}
.ws26{word-spacing:-33.120000px;}
.ws60{word-spacing:-32.904000px;}
.ws5{word-spacing:-32.396400px;}
.ws17{word-spacing:-32.190000px;}
.ws42{word-spacing:-32.184000px;}
.ws7{word-spacing:-31.686000px;}
.ws2e{word-spacing:-31.680000px;}
.ws3f{word-spacing:-31.674600px;}
.ws35{word-spacing:-31.674000px;}
.ws24{word-spacing:-31.602000px;}
.ws30{word-spacing:-30.960000px;}
.ws4{word-spacing:-30.954000px;}
.ws3{word-spacing:-30.949200px;}
.ws4c{word-spacing:-30.744000px;}
.ws9{word-spacing:-30.670200px;}
.ws5c{word-spacing:-30.240000px;}
.ws2b{word-spacing:-30.024000px;}
.ws15{word-spacing:-29.520000px;}
.ws65{word-spacing:-29.304600px;}
.ws34{word-spacing:-29.295000px;}
.ws3a{word-spacing:-29.230200px;}
.ws18{word-spacing:-28.794000px;}
.ws2d{word-spacing:-28.512000px;}
.ws45{word-spacing:-28.074600px;}
.ws10{word-spacing:-27.858000px;}
.ws57{word-spacing:-27.360000px;}
.ws3d{word-spacing:-27.356400px;}
.ws1e{word-spacing:-27.144000px;}
.ws48{word-spacing:-26.640000px;}
.ws21{word-spacing:-25.926000px;}
.ws36{word-spacing:-25.704600px;}
.ws4d{word-spacing:-25.480200px;}
.ws43{word-spacing:-25.200000px;}
.ws3b{word-spacing:-24.982200px;}
.ws1d{word-spacing:-24.480000px;}
.ws1f{word-spacing:-24.476400px;}
.ws5f{word-spacing:-24.474600px;}
.ws4f{word-spacing:-23.544000px;}
.ws38{word-spacing:-22.824000px;}
.ws3e{word-spacing:-22.104000px;}
.ws61{word-spacing:-21.600000px;}
.ws23{word-spacing:-21.555600px;}
.ws51{word-spacing:-20.883300px;}
.ws19{word-spacing:-20.880000px;}
.ws4e{word-spacing:-20.661000px;}
.ws59{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.000000px;}
.ws1a{word-spacing:-16.554600px;}
.ws22{word-spacing:-14.891400px;}
.ws16{word-spacing:-14.395500px;}
.ws32{word-spacing:-14.171400px;}
.wsb{word-spacing:-12.735000px;}
.wsc{word-spacing:-10.575000px;}
.ws5d{word-spacing:-10.080000px;}
.ws66{word-spacing:-10.074600px;}
.ws68{word-spacing:-5.751000px;}
.ws50{word-spacing:-3.600000px;}
.ws20{word-spacing:-3.384000px;}
.ws25{word-spacing:0.000000px;}
.ws52{word-spacing:13.680000px;}
.ws3c{word-spacing:14.406000px;}
.ws1b{word-spacing:73.440000px;}
.ws44{word-spacing:89.496000px;}
.ws5e{word-spacing:228.237600px;}
.ws67{word-spacing:360.210000px;}
.ws49{word-spacing:1048.314000px;}
._0{margin-left:-1.136400px;}
._5{width:1.070400px;}
._14{width:15.874200px;}
._b{width:17.120400px;}
._2{width:18.933300px;}
._15{width:20.226900px;}
._1{width:21.317100px;}
._9{width:22.358400px;}
._7{width:23.392500px;}
._4{width:25.192800px;}
._3{width:26.247600px;}
._c{width:27.654000px;}
._a{width:29.436000px;}
._17{width:30.974400px;}
._11{width:32.616000px;}
._12{width:33.616800px;}
._e{width:36.648000px;}
._f{width:38.010600px;}
._6{width:39.090000px;}
._d{width:42.763500px;}
._19{width:44.850600px;}
._8{width:46.494000px;}
._18{width:47.565600px;}
._1b{width:51.903000px;}
._13{width:53.928000px;}
._16{width:71.964000px;}
._10{width:128.016000px;}
._1a{width:417.618000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.600000px;}
.fs2{font-size:46.800000px;}
.fs5{font-size:59.700000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y58{bottom:121.215000px;}
.y89{bottom:132.375000px;}
.y57{bottom:143.355000px;}
.y22{bottom:152.715000px;}
.y88{bottom:154.696500px;}
.y56{bottom:165.675000px;}
.y87{bottom:177.015000px;}
.y6a{bottom:209.236500px;}
.y55{bottom:210.496500px;}
.y86{bottom:217.336500px;}
.y21{bottom:218.596500px;}
.y69{bottom:231.555000px;}
.y20{bottom:239.295000px;}
.y85{bottom:239.655000px;}
.y54{bottom:250.815000px;}
.y68{bottom:253.875000px;}
.y1f{bottom:259.996500px;}
.y77{bottom:264.315000px;}
.y53{bottom:273.136500px;}
.y67{bottom:276.196500px;}
.y84{bottom:279.975000px;}
.y1e{bottom:280.696500px;}
.y76{bottom:286.636500px;}
.y52{bottom:295.455000px;}
.y66{bottom:298.515000px;}
.y1d{bottom:301.396500px;}
.y75{bottom:308.955000px;}
.y51{bottom:317.775000px;}
.y1c{bottom:322.096500px;}
.y74{bottom:331.275000px;}
.y50{bottom:340.096500px;}
.y1b{bottom:342.795000px;}
.y65{bottom:343.155000px;}
.y73{bottom:353.596500px;}
.y83{bottom:360.615000px;}
.y4f{bottom:362.415000px;}
.y1a{bottom:363.496500px;}
.y43{bottom:370.155000px;}
.y72{bottom:375.915000px;}
.y82{bottom:383.115000px;}
.y19{bottom:384.196500px;}
.y4e{bottom:384.915000px;}
.y42{bottom:392.475000px;}
.y71{bottom:398.236500px;}
.y18{bottom:404.896500px;}
.y81{bottom:405.436500px;}
.y4d{bottom:407.055000px;}
.y41{bottom:414.795000px;}
.y70{bottom:420.555000px;}
.y17{bottom:425.596500px;}
.y80{bottom:427.575000px;}
.y4c{bottom:429.375000px;}
.y40{bottom:437.115000px;}
.y6f{bottom:442.875000px;}
.y16{bottom:446.295000px;}
.y7f{bottom:450.075000px;}
.y4b{bottom:451.875000px;}
.y3f{bottom:459.436500px;}
.y6e{bottom:465.375000px;}
.y15{bottom:466.996500px;}
.y7e{bottom:472.396500px;}
.y4a{bottom:474.196500px;}
.y3e{bottom:481.755000px;}
.y14{bottom:487.696500px;}
.y7d{bottom:494.715000px;}
.y49{bottom:496.515000px;}
.y3d{bottom:504.075000px;}
.y13{bottom:508.396500px;}
.y6d{bottom:510.015000px;}
.y7c{bottom:517.036500px;}
.y48{bottom:518.836500px;}
.y3c{bottom:526.396500px;}
.y6c{bottom:532.336500px;}
.y7b{bottom:539.355000px;}
.y47{bottom:541.155000px;}
.y3b{bottom:548.715000px;}
.y12{bottom:549.796500px;}
.y46{bottom:563.475000px;}
.y3a{bottom:571.215000px;}
.y6b{bottom:572.655000px;}
.y7a{bottom:579.675000px;}
.y11{bottom:584.175000px;}
.y45{bottom:603.795000px;}
.y39{bottom:615.855000px;}
.y44{bottom:644.115000px;}
.y10{bottom:651.136500px;}
.y79{bottom:660.315000px;}
.y38{bottom:660.496500px;}
.yf{bottom:673.455000px;}
.y37{bottom:681.195000px;}
.ye{bottom:695.775000px;}
.y36{bottom:701.896500px;}
.yd{bottom:718.275000px;}
.y35{bottom:722.596500px;}
.yc{bottom:740.415000px;}
.y34{bottom:743.295000px;}
.yb{bottom:762.915000px;}
.y33{bottom:763.996500px;}
.y32{bottom:784.695000px;}
.ya{bottom:785.236500px;}
.y64{bottom:804.675000px;}
.y31{bottom:805.395000px;}
.y9{bottom:807.555000px;}
.y30{bottom:826.096500px;}
.y8{bottom:829.875000px;}
.y2f{bottom:846.795000px;}
.y7{bottom:852.195000px;}
.y2e{bottom:867.496500px;}
.y6{bottom:874.515000px;}
.y2d{bottom:888.195000px;}
.y63{bottom:894.136500px;}
.y5{bottom:896.836500px;}
.y2c{bottom:908.895000px;}
.y62{bottom:916.455000px;}
.y4{bottom:919.155000px;}
.y90{bottom:927.075000px;}
.y61{bottom:938.775000px;}
.y8f{bottom:951.015000px;}
.y2b{bottom:953.536500px;}
.y60{bottom:961.095000px;}
.y3{bottom:963.975000px;}
.y8e{bottom:974.775000px;}
.y5f{bottom:983.415000px;}
.y2a{bottom:994.936500px;}
.y2{bottom:999.075000px;}
.y5e{bottom:1005.915000px;}
.y8d{bottom:1008.975000px;}
.y29{bottom:1015.636500px;}
.y1{bottom:1025.175000px;}
.y5d{bottom:1028.055000px;}
.y8c{bottom:1031.475000px;}
.y28{bottom:1036.336500px;}
.y5c{bottom:1050.375000px;}
.y8b{bottom:1053.795000px;}
.y27{bottom:1057.036500px;}
.y5b{bottom:1072.875000px;}
.y8a{bottom:1076.115000px;}
.y26{bottom:1077.736500px;}
.y5a{bottom:1095.195000px;}
.y25{bottom:1098.436500px;}
.y78{bottom:1099.515000px;}
.y59{bottom:1117.515000px;}
.y24{bottom:1119.136500px;}
.y23{bottom:1139.836500px;}
.h6{height:31.679590px;}
.h5{height:63.175781px;}
.h4{height:63.949219px;}
.h3{height:65.326992px;}
.h2{height:74.873877px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.620000px;}
.x1{left:151.020000px;}
.xc{left:154.620000px;}
.xa{left:168.120000px;}
.xe{left:172.620000px;}
.x8{left:177.120000px;}
.x6{left:181.620000px;}
.x7{left:185.220000px;}
.x5{left:191.338500px;}
.x9{left:252.000000px;}
.x2{left:257.038500px;}
.x3{left:316.080000px;}
.xd{left:343.620000px;}
.xb{left:357.120000px;}
@media print{
.v2{vertical-align:-19.834667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:7.493333pt;}
.ws14{word-spacing:-49.728000pt;}
.ws1{word-spacing:-40.276267pt;}
.ws0{word-spacing:-39.999467pt;}
.ws70{word-spacing:-34.370133pt;}
.ws6e{word-spacing:-34.365600pt;}
.ws6b{word-spacing:-34.360800pt;}
.ws55{word-spacing:-34.360533pt;}
.ws6c{word-spacing:-34.355200pt;}
.ws13{word-spacing:-34.352800pt;}
.ws29{word-spacing:-34.296000pt;}
.ws71{word-spacing:-34.168800pt;}
.ws40{word-spacing:-34.168000pt;}
.ws63{word-spacing:-34.111200pt;}
.ws46{word-spacing:-33.925333pt;}
.ws31{word-spacing:-33.920000pt;}
.ws2{word-spacing:-33.917600pt;}
.ws37{word-spacing:-33.916800pt;}
.ws62{word-spacing:-33.915200pt;}
.ws6f{word-spacing:-33.909600pt;}
.ws69{word-spacing:-33.856000pt;}
.ws2c{word-spacing:-33.728000pt;}
.ws6a{word-spacing:-33.725600pt;}
.ws56{word-spacing:-33.721600pt;}
.ws6d{word-spacing:-33.720800pt;}
.ws58{word-spacing:-33.662400pt;}
.ws41{word-spacing:-33.531200pt;}
.ws12{word-spacing:-33.280000pt;}
.ws27{word-spacing:-32.640000pt;}
.ws2a{word-spacing:-32.581333pt;}
.ws8{word-spacing:-32.384000pt;}
.ws47{word-spacing:-32.375467pt;}
.ws39{word-spacing:-32.000000pt;}
.ws2f{word-spacing:-31.808000pt;}
.ws4b{word-spacing:-31.806933pt;}
.ws5b{word-spacing:-31.740800pt;}
.ws64{word-spacing:-31.737867pt;}
.ws33{word-spacing:-31.365333pt;}
.ws5a{word-spacing:-31.360000pt;}
.wsf{word-spacing:-31.357333pt;}
.wse{word-spacing:-31.168533pt;}
.ws53{word-spacing:-31.166400pt;}
.ws28{word-spacing:-31.164800pt;}
.wsd{word-spacing:-31.160000pt;}
.ws11{word-spacing:-30.720000pt;}
.ws4a{word-spacing:-30.528000pt;}
.ws1c{word-spacing:-30.080000pt;}
.wsa{word-spacing:-29.881333pt;}
.ws54{word-spacing:-29.878400pt;}
.ws26{word-spacing:-29.440000pt;}
.ws60{word-spacing:-29.248000pt;}
.ws5{word-spacing:-28.796800pt;}
.ws17{word-spacing:-28.613333pt;}
.ws42{word-spacing:-28.608000pt;}
.ws7{word-spacing:-28.165333pt;}
.ws2e{word-spacing:-28.160000pt;}
.ws3f{word-spacing:-28.155200pt;}
.ws35{word-spacing:-28.154667pt;}
.ws24{word-spacing:-28.090667pt;}
.ws30{word-spacing:-27.520000pt;}
.ws4{word-spacing:-27.514667pt;}
.ws3{word-spacing:-27.510400pt;}
.ws4c{word-spacing:-27.328000pt;}
.ws9{word-spacing:-27.262400pt;}
.ws5c{word-spacing:-26.880000pt;}
.ws2b{word-spacing:-26.688000pt;}
.ws15{word-spacing:-26.240000pt;}
.ws65{word-spacing:-26.048533pt;}
.ws34{word-spacing:-26.040000pt;}
.ws3a{word-spacing:-25.982400pt;}
.ws18{word-spacing:-25.594667pt;}
.ws2d{word-spacing:-25.344000pt;}
.ws45{word-spacing:-24.955200pt;}
.ws10{word-spacing:-24.762667pt;}
.ws57{word-spacing:-24.320000pt;}
.ws3d{word-spacing:-24.316800pt;}
.ws1e{word-spacing:-24.128000pt;}
.ws48{word-spacing:-23.680000pt;}
.ws21{word-spacing:-23.045333pt;}
.ws36{word-spacing:-22.848533pt;}
.ws4d{word-spacing:-22.649067pt;}
.ws43{word-spacing:-22.400000pt;}
.ws3b{word-spacing:-22.206400pt;}
.ws1d{word-spacing:-21.760000pt;}
.ws1f{word-spacing:-21.756800pt;}
.ws5f{word-spacing:-21.755200pt;}
.ws4f{word-spacing:-20.928000pt;}
.ws38{word-spacing:-20.288000pt;}
.ws3e{word-spacing:-19.648000pt;}
.ws61{word-spacing:-19.200000pt;}
.ws23{word-spacing:-19.160533pt;}
.ws51{word-spacing:-18.562933pt;}
.ws19{word-spacing:-18.560000pt;}
.ws4e{word-spacing:-18.365333pt;}
.ws59{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-14.715200pt;}
.ws22{word-spacing:-13.236800pt;}
.ws16{word-spacing:-12.796000pt;}
.ws32{word-spacing:-12.596800pt;}
.wsb{word-spacing:-11.320000pt;}
.wsc{word-spacing:-9.400000pt;}
.ws5d{word-spacing:-8.960000pt;}
.ws66{word-spacing:-8.955200pt;}
.ws68{word-spacing:-5.112000pt;}
.ws50{word-spacing:-3.200000pt;}
.ws20{word-spacing:-3.008000pt;}
.ws25{word-spacing:0.000000pt;}
.ws52{word-spacing:12.160000pt;}
.ws3c{word-spacing:12.805333pt;}
.ws1b{word-spacing:65.280000pt;}
.ws44{word-spacing:79.552000pt;}
.ws5e{word-spacing:202.877867pt;}
.ws67{word-spacing:320.186667pt;}
.ws49{word-spacing:931.834667pt;}
._0{margin-left:-1.010133pt;}
._5{width:0.951467pt;}
._14{width:14.110400pt;}
._b{width:15.218133pt;}
._2{width:16.829600pt;}
._15{width:17.979467pt;}
._1{width:18.948533pt;}
._9{width:19.874133pt;}
._7{width:20.793333pt;}
._4{width:22.393600pt;}
._3{width:23.331200pt;}
._c{width:24.581333pt;}
._a{width:26.165333pt;}
._17{width:27.532800pt;}
._11{width:28.992000pt;}
._12{width:29.881600pt;}
._e{width:32.576000pt;}
._f{width:33.787200pt;}
._6{width:34.746667pt;}
._d{width:38.012000pt;}
._19{width:39.867200pt;}
._8{width:41.328000pt;}
._18{width:42.280533pt;}
._1b{width:46.136000pt;}
._13{width:47.936000pt;}
._16{width:63.968000pt;}
._10{width:113.792000pt;}
._1a{width:371.216000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.866667pt;}
.fs2{font-size:41.600000pt;}
.fs5{font-size:53.066667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:107.746667pt;}
.y89{bottom:117.666667pt;}
.y57{bottom:127.426667pt;}
.y22{bottom:135.746667pt;}
.y88{bottom:137.508000pt;}
.y56{bottom:147.266667pt;}
.y87{bottom:157.346667pt;}
.y6a{bottom:185.988000pt;}
.y55{bottom:187.108000pt;}
.y86{bottom:193.188000pt;}
.y21{bottom:194.308000pt;}
.y69{bottom:205.826667pt;}
.y20{bottom:212.706667pt;}
.y85{bottom:213.026667pt;}
.y54{bottom:222.946667pt;}
.y68{bottom:225.666667pt;}
.y1f{bottom:231.108000pt;}
.y77{bottom:234.946667pt;}
.y53{bottom:242.788000pt;}
.y67{bottom:245.508000pt;}
.y84{bottom:248.866667pt;}
.y1e{bottom:249.508000pt;}
.y76{bottom:254.788000pt;}
.y52{bottom:262.626667pt;}
.y66{bottom:265.346667pt;}
.y1d{bottom:267.908000pt;}
.y75{bottom:274.626667pt;}
.y51{bottom:282.466667pt;}
.y1c{bottom:286.308000pt;}
.y74{bottom:294.466667pt;}
.y50{bottom:302.308000pt;}
.y1b{bottom:304.706667pt;}
.y65{bottom:305.026667pt;}
.y73{bottom:314.308000pt;}
.y83{bottom:320.546667pt;}
.y4f{bottom:322.146667pt;}
.y1a{bottom:323.108000pt;}
.y43{bottom:329.026667pt;}
.y72{bottom:334.146667pt;}
.y82{bottom:340.546667pt;}
.y19{bottom:341.508000pt;}
.y4e{bottom:342.146667pt;}
.y42{bottom:348.866667pt;}
.y71{bottom:353.988000pt;}
.y18{bottom:359.908000pt;}
.y81{bottom:360.388000pt;}
.y4d{bottom:361.826667pt;}
.y41{bottom:368.706667pt;}
.y70{bottom:373.826667pt;}
.y17{bottom:378.308000pt;}
.y80{bottom:380.066667pt;}
.y4c{bottom:381.666667pt;}
.y40{bottom:388.546667pt;}
.y6f{bottom:393.666667pt;}
.y16{bottom:396.706667pt;}
.y7f{bottom:400.066667pt;}
.y4b{bottom:401.666667pt;}
.y3f{bottom:408.388000pt;}
.y6e{bottom:413.666667pt;}
.y15{bottom:415.108000pt;}
.y7e{bottom:419.908000pt;}
.y4a{bottom:421.508000pt;}
.y3e{bottom:428.226667pt;}
.y14{bottom:433.508000pt;}
.y7d{bottom:439.746667pt;}
.y49{bottom:441.346667pt;}
.y3d{bottom:448.066667pt;}
.y13{bottom:451.908000pt;}
.y6d{bottom:453.346667pt;}
.y7c{bottom:459.588000pt;}
.y48{bottom:461.188000pt;}
.y3c{bottom:467.908000pt;}
.y6c{bottom:473.188000pt;}
.y7b{bottom:479.426667pt;}
.y47{bottom:481.026667pt;}
.y3b{bottom:487.746667pt;}
.y12{bottom:488.708000pt;}
.y46{bottom:500.866667pt;}
.y3a{bottom:507.746667pt;}
.y6b{bottom:509.026667pt;}
.y7a{bottom:515.266667pt;}
.y11{bottom:519.266667pt;}
.y45{bottom:536.706667pt;}
.y39{bottom:547.426667pt;}
.y44{bottom:572.546667pt;}
.y10{bottom:578.788000pt;}
.y79{bottom:586.946667pt;}
.y38{bottom:587.108000pt;}
.yf{bottom:598.626667pt;}
.y37{bottom:605.506667pt;}
.ye{bottom:618.466667pt;}
.y36{bottom:623.908000pt;}
.yd{bottom:638.466667pt;}
.y35{bottom:642.308000pt;}
.yc{bottom:658.146667pt;}
.y34{bottom:660.706667pt;}
.yb{bottom:678.146667pt;}
.y33{bottom:679.108000pt;}
.y32{bottom:697.506667pt;}
.ya{bottom:697.988000pt;}
.y64{bottom:715.266667pt;}
.y31{bottom:715.906667pt;}
.y9{bottom:717.826667pt;}
.y30{bottom:734.308000pt;}
.y8{bottom:737.666667pt;}
.y2f{bottom:752.706667pt;}
.y7{bottom:757.506667pt;}
.y2e{bottom:771.108000pt;}
.y6{bottom:777.346667pt;}
.y2d{bottom:789.506667pt;}
.y63{bottom:794.788000pt;}
.y5{bottom:797.188000pt;}
.y2c{bottom:807.906667pt;}
.y62{bottom:814.626667pt;}
.y4{bottom:817.026667pt;}
.y90{bottom:824.066667pt;}
.y61{bottom:834.466667pt;}
.y8f{bottom:845.346667pt;}
.y2b{bottom:847.588000pt;}
.y60{bottom:854.306667pt;}
.y3{bottom:856.866667pt;}
.y8e{bottom:866.466667pt;}
.y5f{bottom:874.146667pt;}
.y2a{bottom:884.388000pt;}
.y2{bottom:888.066667pt;}
.y5e{bottom:894.146667pt;}
.y8d{bottom:896.866667pt;}
.y29{bottom:902.788000pt;}
.y1{bottom:911.266667pt;}
.y5d{bottom:913.826667pt;}
.y8c{bottom:916.866667pt;}
.y28{bottom:921.188000pt;}
.y5c{bottom:933.666667pt;}
.y8b{bottom:936.706667pt;}
.y27{bottom:939.588000pt;}
.y5b{bottom:953.666667pt;}
.y8a{bottom:956.546667pt;}
.y26{bottom:957.988000pt;}
.y5a{bottom:973.506667pt;}
.y25{bottom:976.388000pt;}
.y78{bottom:977.346667pt;}
.y59{bottom:993.346667pt;}
.y24{bottom:994.788000pt;}
.y23{bottom:1013.188000pt;}
.h6{height:28.159635pt;}
.h5{height:56.156250pt;}
.h4{height:56.843750pt;}
.h3{height:58.068438pt;}
.h2{height:66.554557pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.440000pt;}
.x1{left:134.240000pt;}
.xc{left:137.440000pt;}
.xa{left:149.440000pt;}
.xe{left:153.440000pt;}
.x8{left:157.440000pt;}
.x6{left:161.440000pt;}
.x7{left:164.640000pt;}
.x5{left:170.078667pt;}
.x9{left:224.000000pt;}
.x2{left:228.478667pt;}
.x3{left:280.960000pt;}
.xd{left:305.440000pt;}
.xb{left:317.440000pt;}
}




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