
    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_acf2729651e74b9fd5854a9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_5fe4a80483cf3fca78cf5c23.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_493749af5c6d93247c823a73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_d0802f092c74b3489fe33108.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.212400px;}
.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;}
}
.ws48{word-spacing:-55.944000px;}
.ws53{word-spacing:-40.748400px;}
.ws6{word-spacing:-40.536000px;}
.ws4e{word-spacing:-38.573400px;}
.ws47{word-spacing:-38.439000px;}
.wsa{word-spacing:-38.093100px;}
.ws9{word-spacing:-38.085900px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.930500px;}
.ws4f{word-spacing:-37.927800px;}
.ws4a{word-spacing:-37.867200px;}
.ws64{word-spacing:-37.639800px;}
.ws2f{word-spacing:-36.498600px;}
.ws23{word-spacing:-32.169600px;}
.ws6b{word-spacing:-23.250600px;}
.ws63{word-spacing:-23.237400px;}
.ws8{word-spacing:-23.232600px;}
.ws5{word-spacing:-23.226600px;}
.ws70{word-spacing:-23.035500px;}
.ws7a{word-spacing:-22.753500px;}
.ws35{word-spacing:-22.750200px;}
.ws32{word-spacing:-22.741200px;}
.ws22{word-spacing:-22.737600px;}
.ws14{word-spacing:-22.734000px;}
.ws69{word-spacing:-22.540200px;}
.ws6c{word-spacing:-22.538400px;}
.ws40{word-spacing:-22.536000px;}
.ws50{word-spacing:-22.533300px;}
.ws73{word-spacing:-22.531500px;}
.ws57{word-spacing:-22.527900px;}
.ws67{word-spacing:-22.527000px;}
.ws72{word-spacing:-22.525200px;}
.ws1e{word-spacing:-22.519800px;}
.ws75{word-spacing:-22.321500px;}
.ws55{word-spacing:-22.314600px;}
.ws4c{word-spacing:-22.313700px;}
.ws7{word-spacing:-22.299000px;}
.ws3{word-spacing:-22.293000px;}
.ws34{word-spacing:-22.032000px;}
.ws4b{word-spacing:-22.029300px;}
.ws60{word-spacing:-21.816000px;}
.ws59{word-spacing:-21.814200px;}
.ws29{word-spacing:-21.803400px;}
.ws30{word-spacing:-21.286800px;}
.ws6d{word-spacing:-21.096000px;}
.ws6a{word-spacing:-20.382000px;}
.ws62{word-spacing:-20.373900px;}
.ws2d{word-spacing:-20.350200px;}
.ws3e{word-spacing:-19.878000px;}
.ws19{word-spacing:-19.854300px;}
.ws2c{word-spacing:-19.852800px;}
.ws7c{word-spacing:-19.654200px;}
.ws10{word-spacing:-19.430700px;}
.ws17{word-spacing:-19.428000px;}
.ws11{word-spacing:-19.146000px;}
.ws71{word-spacing:-18.936000px;}
.ws77{word-spacing:-18.216000px;}
.ws3f{word-spacing:-18.207000px;}
.ws15{word-spacing:-17.762400px;}
.ws24{word-spacing:-17.494200px;}
.ws45{word-spacing:-17.478900px;}
.ws79{word-spacing:-16.777500px;}
.ws37{word-spacing:-16.774200px;}
.ws7b{word-spacing:-16.771500px;}
.ws1c{word-spacing:-16.761600px;}
.ws74{word-spacing:-16.545600px;}
.wse{word-spacing:-15.832800px;}
.ws65{word-spacing:-15.544500px;}
.ws38{word-spacing:-15.336000px;}
.ws5c{word-spacing:-14.832000px;}
.ws76{word-spacing:-14.614200px;}
.ws3a{word-spacing:-13.894200px;}
.ws6f{word-spacing:-13.892400px;}
.ws68{word-spacing:-13.891500px;}
.ws1f{word-spacing:-13.674000px;}
.ws6e{word-spacing:-13.161900px;}
.ws12{word-spacing:-12.220200px;}
.ws13{word-spacing:-11.022000px;}
.ws1a{word-spacing:-10.474200px;}
.ws5d{word-spacing:-10.282800px;}
.ws46{word-spacing:-9.848700px;}
.ws31{word-spacing:-9.772800px;}
.ws26{word-spacing:-9.568200px;}
.ws44{word-spacing:-9.567000px;}
.ws3b{word-spacing:-9.563700px;}
.ws58{word-spacing:-9.066600px;}
.ws36{word-spacing:-9.054900px;}
.ws42{word-spacing:-8.860200px;}
.ws43{word-spacing:-8.136000px;}
.ws28{word-spacing:-8.131200px;}
.wsd{word-spacing:-8.121600px;}
.ws61{word-spacing:-8.060400px;}
.ws52{word-spacing:-7.414200px;}
.ws78{word-spacing:-5.972400px;}
.ws49{word-spacing:-4.816800px;}
.ws27{word-spacing:-4.032000px;}
.ws3d{word-spacing:-4.027200px;}
.ws3c{word-spacing:-4.015500px;}
.ws5a{word-spacing:-3.091500px;}
.ws16{word-spacing:-3.090600px;}
.ws1d{word-spacing:-0.426600px;}
.ws4d{word-spacing:0.000000px;}
.ws1b{word-spacing:0.721200px;}
.ws20{word-spacing:1.241100px;}
.ws39{word-spacing:2.667600px;}
.ws33{word-spacing:2.678400px;}
.ws2a{word-spacing:4.611600px;}
.wsb{word-spacing:5.754000px;}
.ws54{word-spacing:6.989400px;}
.ws2e{word-spacing:7.489800px;}
.ws7d{word-spacing:7.706700px;}
.ws25{word-spacing:9.153000px;}
.ws5b{word-spacing:9.864000px;}
.ws18{word-spacing:10.378800px;}
.ws66{word-spacing:10.667700px;}
.ws41{word-spacing:16.356600px;}
.ws5e{word-spacing:17.505000px;}
.ws2b{word-spacing:17.789400px;}
.ws21{word-spacing:17.813400px;}
.wsf{word-spacing:20.172600px;}
.wsc{word-spacing:20.890800px;}
.ws5f{word-spacing:32.407200px;}
.ws51{word-spacing:71.060700px;}
.ws56{word-spacing:76.818000px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.257600px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._15{width:20.273400px;}
._c{width:21.723000px;}
._7{width:22.742700px;}
._e{width:24.801600px;}
._6{width:25.992000px;}
._18{width:27.798600px;}
._8{width:29.448000px;}
._9{width:31.542000px;}
._16{width:32.671200px;}
._5{width:33.901200px;}
._1e{width:35.625600px;}
._1d{width:36.644400px;}
._13{width:37.659600px;}
._a{width:39.002400px;}
._f{width:41.313600px;}
._d{width:42.338400px;}
._17{width:44.503200px;}
._1a{width:47.154000px;}
._14{width:49.174200px;}
._12{width:50.839800px;}
._b{width:51.966000px;}
._1c{width:53.402400px;}
._19{width:58.243800px;}
._10{width:59.538000px;}
._11{width:60.960600px;}
._3{width:62.430000px;}
._4{width:63.559200px;}
._1b{width:74.071800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:7.365000px;}
.y52{bottom:7.411500px;}
.y4c{bottom:7.455000px;}
.y4e{bottom:7.500000px;}
.y5f{bottom:7.530000px;}
.y68{bottom:7.545000px;}
.y70{bottom:7.546500px;}
.y59{bottom:7.590000px;}
.y80{bottom:8.700000px;}
.y4{bottom:12.240000px;}
.y6a{bottom:28.111500px;}
.y4b{bottom:28.155000px;}
.y55{bottom:28.200000px;}
.y5e{bottom:28.230000px;}
.y67{bottom:28.245000px;}
.y7a{bottom:28.246500px;}
.y58{bottom:28.290000px;}
.y7f{bottom:29.400000px;}
.y66{bottom:48.765000px;}
.y4a{bottom:48.855000px;}
.y5d{bottom:48.930000px;}
.y6f{bottom:48.946500px;}
.y74{bottom:48.990000px;}
.y7e{bottom:50.100000px;}
.y3{bottom:63.975000px;}
.y6e{bottom:69.465000px;}
.y49{bottom:69.555000px;}
.y5c{bottom:69.630000px;}
.y79{bottom:69.645000px;}
.y73{bottom:69.690000px;}
.y5b{bottom:90.150000px;}
.y78{bottom:90.165000px;}
.y72{bottom:90.211500px;}
.y48{bottom:90.255000px;}
.y57{bottom:115.425000px;}
.y29{bottom:120.675000px;}
.y7d{bottom:135.375000px;}
.y28{bottom:141.375000px;}
.y9c{bottom:161.896500px;}
.y27{bottom:162.075000px;}
.y56{bottom:165.150000px;}
.y9b{bottom:182.596500px;}
.y26{bottom:182.775000px;}
.y54{bottom:194.175000px;}
.y9a{bottom:203.295000px;}
.y25{bottom:203.475000px;}
.y7c{bottom:207.000000px;}
.y99{bottom:223.996500px;}
.y24{bottom:224.175000px;}
.y53{bottom:243.900000px;}
.y23{bottom:244.875000px;}
.y98{bottom:265.575000px;}
.y97{bottom:286.275000px;}
.y22{bottom:286.636500px;}
.y51{bottom:293.625000px;}
.y7b{bottom:298.125000px;}
.y21{bottom:307.336500px;}
.y4f{bottom:322.650000px;}
.y77{bottom:327.150000px;}
.y20{bottom:328.036500px;}
.y96{bottom:348.736500px;}
.y4d{bottom:351.675000px;}
.y1f{bottom:369.615000px;}
.y47{bottom:380.700000px;}
.y1e{bottom:390.315000px;}
.y95{bottom:390.496500px;}
.y1d{bottom:411.015000px;}
.y94{bottom:411.196500px;}
.y1c{bottom:431.715000px;}
.y76{bottom:438.975000px;}
.y1b{bottom:452.415000px;}
.y93{bottom:452.775000px;}
.y1a{bottom:473.115000px;}
.y92{bottom:473.475000px;}
.y75{bottom:488.700000px;}
.y19{bottom:493.815000px;}
.y91{bottom:494.175000px;}
.y18{bottom:514.515000px;}
.y46{bottom:517.396500px;}
.y71{bottom:517.725000px;}
.y17{bottom:535.215000px;}
.y90{bottom:535.936500px;}
.y45{bottom:538.096500px;}
.y8f{bottom:556.636500px;}
.y16{bottom:576.975000px;}
.y44{bottom:579.675000px;}
.y15{bottom:597.675000px;}
.y8e{bottom:598.396500px;}
.y43{bottom:600.375000px;}
.y14{bottom:618.375000px;}
.y42{bottom:621.075000px;}
.y6d{bottom:629.550000px;}
.y13{bottom:639.075000px;}
.y8d{bottom:639.975000px;}
.y41{bottom:641.775000px;}
.y12{bottom:659.775000px;}
.y8c{bottom:660.675000px;}
.y40{bottom:662.475000px;}
.y11{bottom:680.475000px;}
.y3f{bottom:683.175000px;}
.y10{bottom:701.175000px;}
.y8b{bottom:702.436500px;}
.y3e{bottom:703.875000px;}
.y6c{bottom:720.675000px;}
.yf{bottom:721.875000px;}
.y8a{bottom:723.136500px;}
.y3d{bottom:724.575000px;}
.ye{bottom:742.575000px;}
.y3c{bottom:745.275000px;}
.y6b{bottom:749.700000px;}
.y89{bottom:764.895000px;}
.y3b{bottom:765.975000px;}
.yd{bottom:784.336500px;}
.y88{bottom:785.596500px;}
.y3a{bottom:786.675000px;}
.y69{bottom:799.425000px;}
.yc{bottom:805.036500px;}
.y39{bottom:807.375000px;}
.y87{bottom:827.175000px;}
.y38{bottom:828.075000px;}
.y86{bottom:847.875000px;}
.y37{bottom:848.775000px;}
.y65{bottom:849.150000px;}
.y36{bottom:869.475000px;}
.y85{bottom:889.636500px;}
.y35{bottom:890.175000px;}
.yb{bottom:909.436500px;}
.ya1{bottom:909.975000px;}
.y84{bottom:910.336500px;}
.y34{bottom:910.875000px;}
.y64{bottom:919.575000px;}
.y33{bottom:931.575000px;}
.y63{bottom:948.600000px;}
.ya{bottom:951.195000px;}
.ya0{bottom:951.736500px;}
.y83{bottom:952.095000px;}
.y32{bottom:952.275000px;}
.y31{bottom:972.975000px;}
.y62{bottom:977.625000px;}
.y9{bottom:992.775000px;}
.y9f{bottom:993.495000px;}
.y30{bottom:993.675000px;}
.y61{bottom:1006.650000px;}
.y9e{bottom:1014.195000px;}
.y2f{bottom:1014.375000px;}
.y8{bottom:1034.536500px;}
.y2e{bottom:1035.075000px;}
.y60{bottom:1035.675000px;}
.y82{bottom:1055.775000px;}
.y5a{bottom:1064.625000px;}
.y7{bottom:1076.295000px;}
.y81{bottom:1076.475000px;}
.y2d{bottom:1076.836500px;}
.y9d{bottom:1097.175000px;}
.y2c{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2b{bottom:1118.236500px;}
.y2a{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h7{height:28.950000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h8{height:49.650000px;}
.h9{height:49.725000px;}
.h5{height:50.027344px;}
.ha{height:70.350000px;}
.hc{height:71.550000px;}
.hb{height:91.050000px;}
.h6{height:111.750000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w4{width:126.900000px;}
.w3{width:165.525000px;}
.w6{width:166.500000px;}
.w5{width:197.775000px;}
.w2{width:710.175000px;}
.w7{width:783.300000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xe{left:49.575000px;}
.xf{left:75.525000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xc{left:149.760000px;}
.x2{left:160.560000px;}
.x6{left:168.660000px;}
.x10{left:215.025000px;}
.xd{left:237.960000px;}
.xa{left:241.920000px;}
.x7{left:339.660000px;}
.x11{left:341.850000px;}
.x9{left:344.700000px;}
.x5{left:355.680000px;}
.xb{left:364.138500px;}
.x8{left:418.138500px;}
.x12{left:539.550000px;}
.x13{left:666.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.188800pt;}
.ws48{word-spacing:-49.728000pt;}
.ws53{word-spacing:-36.220800pt;}
.ws6{word-spacing:-36.032000pt;}
.ws4e{word-spacing:-34.287467pt;}
.ws47{word-spacing:-34.168000pt;}
.wsa{word-spacing:-33.860533pt;}
.ws9{word-spacing:-33.854133pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.716000pt;}
.ws4f{word-spacing:-33.713600pt;}
.ws4a{word-spacing:-33.659733pt;}
.ws64{word-spacing:-33.457600pt;}
.ws2f{word-spacing:-32.443200pt;}
.ws23{word-spacing:-28.595200pt;}
.ws6b{word-spacing:-20.667200pt;}
.ws63{word-spacing:-20.655467pt;}
.ws8{word-spacing:-20.651200pt;}
.ws5{word-spacing:-20.645867pt;}
.ws70{word-spacing:-20.476000pt;}
.ws7a{word-spacing:-20.225333pt;}
.ws35{word-spacing:-20.222400pt;}
.ws32{word-spacing:-20.214400pt;}
.ws22{word-spacing:-20.211200pt;}
.ws14{word-spacing:-20.208000pt;}
.ws69{word-spacing:-20.035733pt;}
.ws6c{word-spacing:-20.034133pt;}
.ws40{word-spacing:-20.032000pt;}
.ws50{word-spacing:-20.029600pt;}
.ws73{word-spacing:-20.028000pt;}
.ws57{word-spacing:-20.024800pt;}
.ws67{word-spacing:-20.024000pt;}
.ws72{word-spacing:-20.022400pt;}
.ws1e{word-spacing:-20.017600pt;}
.ws75{word-spacing:-19.841333pt;}
.ws55{word-spacing:-19.835200pt;}
.ws4c{word-spacing:-19.834400pt;}
.ws7{word-spacing:-19.821333pt;}
.ws3{word-spacing:-19.816000pt;}
.ws34{word-spacing:-19.584000pt;}
.ws4b{word-spacing:-19.581600pt;}
.ws60{word-spacing:-19.392000pt;}
.ws59{word-spacing:-19.390400pt;}
.ws29{word-spacing:-19.380800pt;}
.ws30{word-spacing:-18.921600pt;}
.ws6d{word-spacing:-18.752000pt;}
.ws6a{word-spacing:-18.117333pt;}
.ws62{word-spacing:-18.110133pt;}
.ws2d{word-spacing:-18.089067pt;}
.ws3e{word-spacing:-17.669333pt;}
.ws19{word-spacing:-17.648267pt;}
.ws2c{word-spacing:-17.646933pt;}
.ws7c{word-spacing:-17.470400pt;}
.ws10{word-spacing:-17.271733pt;}
.ws17{word-spacing:-17.269333pt;}
.ws11{word-spacing:-17.018667pt;}
.ws71{word-spacing:-16.832000pt;}
.ws77{word-spacing:-16.192000pt;}
.ws3f{word-spacing:-16.184000pt;}
.ws15{word-spacing:-15.788800pt;}
.ws24{word-spacing:-15.550400pt;}
.ws45{word-spacing:-15.536800pt;}
.ws79{word-spacing:-14.913333pt;}
.ws37{word-spacing:-14.910400pt;}
.ws7b{word-spacing:-14.908000pt;}
.ws1c{word-spacing:-14.899200pt;}
.ws74{word-spacing:-14.707200pt;}
.wse{word-spacing:-14.073600pt;}
.ws65{word-spacing:-13.817333pt;}
.ws38{word-spacing:-13.632000pt;}
.ws5c{word-spacing:-13.184000pt;}
.ws76{word-spacing:-12.990400pt;}
.ws3a{word-spacing:-12.350400pt;}
.ws6f{word-spacing:-12.348800pt;}
.ws68{word-spacing:-12.348000pt;}
.ws1f{word-spacing:-12.154667pt;}
.ws6e{word-spacing:-11.699467pt;}
.ws12{word-spacing:-10.862400pt;}
.ws13{word-spacing:-9.797333pt;}
.ws1a{word-spacing:-9.310400pt;}
.ws5d{word-spacing:-9.140267pt;}
.ws46{word-spacing:-8.754400pt;}
.ws31{word-spacing:-8.686933pt;}
.ws26{word-spacing:-8.505067pt;}
.ws44{word-spacing:-8.504000pt;}
.ws3b{word-spacing:-8.501067pt;}
.ws58{word-spacing:-8.059200pt;}
.ws36{word-spacing:-8.048800pt;}
.ws42{word-spacing:-7.875733pt;}
.ws43{word-spacing:-7.232000pt;}
.ws28{word-spacing:-7.227733pt;}
.wsd{word-spacing:-7.219200pt;}
.ws61{word-spacing:-7.164800pt;}
.ws52{word-spacing:-6.590400pt;}
.ws78{word-spacing:-5.308800pt;}
.ws49{word-spacing:-4.281600pt;}
.ws27{word-spacing:-3.584000pt;}
.ws3d{word-spacing:-3.579733pt;}
.ws3c{word-spacing:-3.569333pt;}
.ws5a{word-spacing:-2.748000pt;}
.ws16{word-spacing:-2.747200pt;}
.ws1d{word-spacing:-0.379200pt;}
.ws4d{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.641067pt;}
.ws20{word-spacing:1.103200pt;}
.ws39{word-spacing:2.371200pt;}
.ws33{word-spacing:2.380800pt;}
.ws2a{word-spacing:4.099200pt;}
.wsb{word-spacing:5.114667pt;}
.ws54{word-spacing:6.212800pt;}
.ws2e{word-spacing:6.657600pt;}
.ws7d{word-spacing:6.850400pt;}
.ws25{word-spacing:8.136000pt;}
.ws5b{word-spacing:8.768000pt;}
.ws18{word-spacing:9.225600pt;}
.ws66{word-spacing:9.482400pt;}
.ws41{word-spacing:14.539200pt;}
.ws5e{word-spacing:15.560000pt;}
.ws2b{word-spacing:15.812800pt;}
.ws21{word-spacing:15.834133pt;}
.wsf{word-spacing:17.931200pt;}
.wsc{word-spacing:18.569600pt;}
.ws5f{word-spacing:28.806400pt;}
.ws51{word-spacing:63.165067pt;}
.ws56{word-spacing:68.282667pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.117867pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._15{width:18.020800pt;}
._c{width:19.309333pt;}
._7{width:20.215733pt;}
._e{width:22.045867pt;}
._6{width:23.104000pt;}
._18{width:24.709867pt;}
._8{width:26.176000pt;}
._9{width:28.037333pt;}
._16{width:29.041067pt;}
._5{width:30.134400pt;}
._1e{width:31.667200pt;}
._1d{width:32.572800pt;}
._13{width:33.475200pt;}
._a{width:34.668800pt;}
._f{width:36.723200pt;}
._d{width:37.634133pt;}
._17{width:39.558400pt;}
._1a{width:41.914667pt;}
._14{width:43.710400pt;}
._12{width:45.190933pt;}
._b{width:46.192000pt;}
._1c{width:47.468800pt;}
._19{width:51.772267pt;}
._10{width:52.922667pt;}
._11{width:54.187200pt;}
._3{width:55.493333pt;}
._4{width:56.497067pt;}
._1b{width:65.841600pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:6.546667pt;}
.y52{bottom:6.588000pt;}
.y4c{bottom:6.626667pt;}
.y4e{bottom:6.666667pt;}
.y5f{bottom:6.693333pt;}
.y68{bottom:6.706667pt;}
.y70{bottom:6.708000pt;}
.y59{bottom:6.746667pt;}
.y80{bottom:7.733333pt;}
.y4{bottom:10.880000pt;}
.y6a{bottom:24.988000pt;}
.y4b{bottom:25.026667pt;}
.y55{bottom:25.066667pt;}
.y5e{bottom:25.093333pt;}
.y67{bottom:25.106667pt;}
.y7a{bottom:25.108000pt;}
.y58{bottom:25.146667pt;}
.y7f{bottom:26.133333pt;}
.y66{bottom:43.346667pt;}
.y4a{bottom:43.426667pt;}
.y5d{bottom:43.493333pt;}
.y6f{bottom:43.508000pt;}
.y74{bottom:43.546667pt;}
.y7e{bottom:44.533333pt;}
.y3{bottom:56.866667pt;}
.y6e{bottom:61.746667pt;}
.y49{bottom:61.826667pt;}
.y5c{bottom:61.893333pt;}
.y79{bottom:61.906667pt;}
.y73{bottom:61.946667pt;}
.y5b{bottom:80.133333pt;}
.y78{bottom:80.146667pt;}
.y72{bottom:80.188000pt;}
.y48{bottom:80.226667pt;}
.y57{bottom:102.600000pt;}
.y29{bottom:107.266667pt;}
.y7d{bottom:120.333333pt;}
.y28{bottom:125.666667pt;}
.y9c{bottom:143.908000pt;}
.y27{bottom:144.066667pt;}
.y56{bottom:146.800000pt;}
.y9b{bottom:162.308000pt;}
.y26{bottom:162.466667pt;}
.y54{bottom:172.600000pt;}
.y9a{bottom:180.706667pt;}
.y25{bottom:180.866667pt;}
.y7c{bottom:184.000000pt;}
.y99{bottom:199.108000pt;}
.y24{bottom:199.266667pt;}
.y53{bottom:216.800000pt;}
.y23{bottom:217.666667pt;}
.y98{bottom:236.066667pt;}
.y97{bottom:254.466667pt;}
.y22{bottom:254.788000pt;}
.y51{bottom:261.000000pt;}
.y7b{bottom:265.000000pt;}
.y21{bottom:273.188000pt;}
.y4f{bottom:286.800000pt;}
.y77{bottom:290.800000pt;}
.y20{bottom:291.588000pt;}
.y96{bottom:309.988000pt;}
.y4d{bottom:312.600000pt;}
.y1f{bottom:328.546667pt;}
.y47{bottom:338.400000pt;}
.y1e{bottom:346.946667pt;}
.y95{bottom:347.108000pt;}
.y1d{bottom:365.346667pt;}
.y94{bottom:365.508000pt;}
.y1c{bottom:383.746667pt;}
.y76{bottom:390.200000pt;}
.y1b{bottom:402.146667pt;}
.y93{bottom:402.466667pt;}
.y1a{bottom:420.546667pt;}
.y92{bottom:420.866667pt;}
.y75{bottom:434.400000pt;}
.y19{bottom:438.946667pt;}
.y91{bottom:439.266667pt;}
.y18{bottom:457.346667pt;}
.y46{bottom:459.908000pt;}
.y71{bottom:460.200000pt;}
.y17{bottom:475.746667pt;}
.y90{bottom:476.388000pt;}
.y45{bottom:478.308000pt;}
.y8f{bottom:494.788000pt;}
.y16{bottom:512.866667pt;}
.y44{bottom:515.266667pt;}
.y15{bottom:531.266667pt;}
.y8e{bottom:531.908000pt;}
.y43{bottom:533.666667pt;}
.y14{bottom:549.666667pt;}
.y42{bottom:552.066667pt;}
.y6d{bottom:559.600000pt;}
.y13{bottom:568.066667pt;}
.y8d{bottom:568.866667pt;}
.y41{bottom:570.466667pt;}
.y12{bottom:586.466667pt;}
.y8c{bottom:587.266667pt;}
.y40{bottom:588.866667pt;}
.y11{bottom:604.866667pt;}
.y3f{bottom:607.266667pt;}
.y10{bottom:623.266667pt;}
.y8b{bottom:624.388000pt;}
.y3e{bottom:625.666667pt;}
.y6c{bottom:640.600000pt;}
.yf{bottom:641.666667pt;}
.y8a{bottom:642.788000pt;}
.y3d{bottom:644.066667pt;}
.ye{bottom:660.066667pt;}
.y3c{bottom:662.466667pt;}
.y6b{bottom:666.400000pt;}
.y89{bottom:679.906667pt;}
.y3b{bottom:680.866667pt;}
.yd{bottom:697.188000pt;}
.y88{bottom:698.308000pt;}
.y3a{bottom:699.266667pt;}
.y69{bottom:710.600000pt;}
.yc{bottom:715.588000pt;}
.y39{bottom:717.666667pt;}
.y87{bottom:735.266667pt;}
.y38{bottom:736.066667pt;}
.y86{bottom:753.666667pt;}
.y37{bottom:754.466667pt;}
.y65{bottom:754.800000pt;}
.y36{bottom:772.866667pt;}
.y85{bottom:790.788000pt;}
.y35{bottom:791.266667pt;}
.yb{bottom:808.388000pt;}
.ya1{bottom:808.866667pt;}
.y84{bottom:809.188000pt;}
.y34{bottom:809.666667pt;}
.y64{bottom:817.400000pt;}
.y33{bottom:828.066667pt;}
.y63{bottom:843.200000pt;}
.ya{bottom:845.506667pt;}
.ya0{bottom:845.988000pt;}
.y83{bottom:846.306667pt;}
.y32{bottom:846.466667pt;}
.y31{bottom:864.866667pt;}
.y62{bottom:869.000000pt;}
.y9{bottom:882.466667pt;}
.y9f{bottom:883.106667pt;}
.y30{bottom:883.266667pt;}
.y61{bottom:894.800000pt;}
.y9e{bottom:901.506667pt;}
.y2f{bottom:901.666667pt;}
.y8{bottom:919.588000pt;}
.y2e{bottom:920.066667pt;}
.y60{bottom:920.600000pt;}
.y82{bottom:938.466667pt;}
.y5a{bottom:946.333333pt;}
.y7{bottom:956.706667pt;}
.y81{bottom:956.866667pt;}
.y2d{bottom:957.188000pt;}
.y9d{bottom:975.266667pt;}
.y2c{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2b{bottom:993.988000pt;}
.y2a{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h7{height:25.733333pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h8{height:44.133333pt;}
.h9{height:44.200000pt;}
.h5{height:44.468750pt;}
.ha{height:62.533333pt;}
.hc{height:63.600000pt;}
.hb{height:80.933333pt;}
.h6{height:99.333333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w4{width:112.800000pt;}
.w3{width:147.133333pt;}
.w6{width:148.000000pt;}
.w5{width:175.800000pt;}
.w2{width:631.266667pt;}
.w7{width:696.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xe{left:44.066667pt;}
.xf{left:67.133333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xc{left:133.120000pt;}
.x2{left:142.720000pt;}
.x6{left:149.920000pt;}
.x10{left:191.133333pt;}
.xd{left:211.520000pt;}
.xa{left:215.040000pt;}
.x7{left:301.920000pt;}
.x11{left:303.866667pt;}
.x9{left:306.400000pt;}
.x5{left:316.160000pt;}
.xb{left:323.678667pt;}
.x8{left:371.678667pt;}
.x12{left:479.600000pt;}
.x13{left:592.333333pt;}
}




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