
    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_3d0103ca735893e00479c6b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_b7b759b27beaef2052839274.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_c4c54f0f9d5cb4b70aff76dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_dc66dc05b505ba67a386a27e.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3942a7a6ad8fd77121c66aeb.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws8{word-spacing:-55.944000px;}
.ws50{word-spacing:-38.869800px;}
.ws5{word-spacing:-38.657400px;}
.ws12{word-spacing:-38.446800px;}
.ws4f{word-spacing:-38.440800px;}
.ws55{word-spacing:-38.432100px;}
.ws7{word-spacing:-38.431800px;}
.ws6{word-spacing:-38.430900px;}
.ws3{word-spacing:-38.157300px;}
.ws13{word-spacing:-38.149200px;}
.ws26{word-spacing:-38.141400px;}
.ws4{word-spacing:-38.085300px;}
.ws52{word-spacing:-37.944000px;}
.ws1f{word-spacing:-37.940400px;}
.ws49{word-spacing:-37.935000px;}
.ws59{word-spacing:-37.928100px;}
.ws5c{word-spacing:-37.923600px;}
.ws57{word-spacing:-37.723500px;}
.ws14{word-spacing:-37.572300px;}
.ws2b{word-spacing:-37.425600px;}
.ws2a{word-spacing:-37.224000px;}
.wsc{word-spacing:-36.711000px;}
.ws23{word-spacing:-35.996400px;}
.ws2e{word-spacing:-35.775000px;}
.ws1c{word-spacing:-35.064000px;}
.ws38{word-spacing:-35.052600px;}
.ws1e{word-spacing:-34.556400px;}
.ws3b{word-spacing:-34.100400px;}
.ws2f{word-spacing:-33.831000px;}
.ws21{word-spacing:-33.618600px;}
.ws2{word-spacing:-33.547800px;}
.ws20{word-spacing:-33.120000px;}
.ws54{word-spacing:-33.118800px;}
.ws24{word-spacing:-32.900400px;}
.ws25{word-spacing:-32.676600px;}
.ws17{word-spacing:-31.653300px;}
.ws3e{word-spacing:-30.732600px;}
.ws4b{word-spacing:-29.999100px;}
.ws47{word-spacing:-29.515500px;}
.ws34{word-spacing:-28.800000px;}
.ws45{word-spacing:-28.567200px;}
.ws5a{word-spacing:-28.358100px;}
.ws32{word-spacing:-28.340400px;}
.ws56{word-spacing:-28.080000px;}
.ws4c{word-spacing:-27.855000px;}
.ws39{word-spacing:-27.847200px;}
.ws30{word-spacing:-26.640000px;}
.ws2d{word-spacing:-26.413200px;}
.ws4e{word-spacing:-24.268200px;}
.ws51{word-spacing:-24.264000px;}
.wsd{word-spacing:-23.523600px;}
.ws43{word-spacing:-23.034600px;}
.ws15{word-spacing:-22.229400px;}
.ws33{word-spacing:-21.594600px;}
.ws29{word-spacing:-21.384000px;}
.ws46{word-spacing:-21.378600px;}
.ws2c{word-spacing:-21.369600px;}
.ws48{word-spacing:-20.156400px;}
.ws4a{word-spacing:-19.222200px;}
.ws5b{word-spacing:-18.500400px;}
.ws18{word-spacing:-18.284100px;}
.ws1d{word-spacing:-18.139500px;}
.ws19{word-spacing:-17.189400px;}
.ws10{word-spacing:-16.560000px;}
.ws4d{word-spacing:-16.545000px;}
.ws42{word-spacing:-16.126800px;}
.ws11{word-spacing:-16.115400px;}
.ws28{word-spacing:-15.613200px;}
.ws44{word-spacing:-15.357900px;}
.ws31{word-spacing:-14.891400px;}
.ws27{word-spacing:-14.392800px;}
.ws3a{word-spacing:-12.520800px;}
.wsf{word-spacing:-12.018300px;}
.ws3d{word-spacing:-11.791800px;}
.wsa{word-spacing:-10.768800px;}
.wse{word-spacing:-10.074600px;}
.ws1a{word-spacing:-9.557100px;}
.ws58{word-spacing:-8.413200px;}
.ws36{word-spacing:-4.093200px;}
.ws53{word-spacing:-2.446800px;}
.ws22{word-spacing:0.930000px;}
.wsb{word-spacing:0.937200px;}
.ws1b{word-spacing:1.874700px;}
.ws3c{word-spacing:2.386800px;}
.ws41{word-spacing:4.330800px;}
.ws40{word-spacing:7.638600px;}
.ws16{word-spacing:10.676400px;}
.ws9{word-spacing:13.184700px;}
.ws37{word-spacing:14.407200px;}
.ws3f{word-spacing:23.763600px;}
.ws35{word-spacing:75.594000px;}
.ws1{word-spacing:1871.357400px;}
._2{margin-left:-1.382400px;}
._0{width:1.148400px;}
._14{width:17.487600px;}
._1{width:18.710400px;}
._7{width:20.310000px;}
._10{width:22.110000px;}
._11{width:23.223600px;}
._12{width:24.349200px;}
._e{width:25.385700px;}
._1c{width:26.958600px;}
._17{width:28.792800px;}
._16{width:30.678000px;}
._20{width:32.766000px;}
._8{width:33.805200px;}
._c{width:34.820400px;}
._15{width:35.971200px;}
._1f{width:37.687200px;}
._f{width:39.381000px;}
._b{width:40.902000px;}
._13{width:41.938800px;}
._a{width:45.048600px;}
._4{width:46.315200px;}
._9{width:47.972400px;}
._22{width:49.162800px;}
._19{width:53.062800px;}
._21{width:54.940800px;}
._6{width:58.050000px;}
._5{width:59.062800px;}
._1b{width:60.156000px;}
._1e{width:64.742400px;}
._d{width:67.686000px;}
._3{width:70.404600px;}
._1a{width:71.772000px;}
._1d{width:81.517200px;}
._18{width:132.938400px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y5b{bottom:100.515000px;}
.y8b{bottom:115.455000px;}
.y2b{bottom:119.775000px;}
.y5a{bottom:121.215000px;}
.y8a{bottom:136.155000px;}
.y2a{bottom:140.296500px;}
.y59{bottom:141.915000px;}
.y89{bottom:156.855000px;}
.y58{bottom:162.615000px;}
.y88{bottom:177.555000px;}
.y57{bottom:183.315000px;}
.y29{bottom:196.815000px;}
.y87{bottom:198.255000px;}
.y56{bottom:204.015000px;}
.y28{bottom:217.515000px;}
.y86{bottom:218.955000px;}
.y55{bottom:224.715000px;}
.y27{bottom:238.215000px;}
.y85{bottom:239.655000px;}
.y54{bottom:245.415000px;}
.y26{bottom:258.915000px;}
.y84{bottom:260.355000px;}
.y53{bottom:266.115000px;}
.y25{bottom:279.615000px;}
.y83{bottom:281.055000px;}
.y52{bottom:286.815000px;}
.y24{bottom:300.315000px;}
.y82{bottom:301.755000px;}
.y51{bottom:307.515000px;}
.y23{bottom:321.015000px;}
.y81{bottom:322.455000px;}
.y50{bottom:328.215000px;}
.y22{bottom:341.715000px;}
.y80{bottom:343.155000px;}
.y4f{bottom:348.915000px;}
.ya0{bottom:351.615000px;}
.y21{bottom:362.415000px;}
.y7f{bottom:363.855000px;}
.y4e{bottom:369.615000px;}
.y9f{bottom:372.315000px;}
.y20{bottom:383.115000px;}
.y7e{bottom:384.555000px;}
.y4d{bottom:390.315000px;}
.y7d{bottom:405.255000px;}
.y9e{bottom:407.955000px;}
.y4c{bottom:411.015000px;}
.y1f{bottom:424.515000px;}
.y7c{bottom:425.955000px;}
.y9d{bottom:428.655000px;}
.y4b{bottom:431.715000px;}
.y1e{bottom:445.215000px;}
.y7b{bottom:446.655000px;}
.y4a{bottom:452.415000px;}
.y9c{bottom:464.295000px;}
.y1d{bottom:465.915000px;}
.y7a{bottom:467.355000px;}
.y49{bottom:473.115000px;}
.y9b{bottom:484.996500px;}
.y1c{bottom:486.615000px;}
.y79{bottom:488.055000px;}
.y48{bottom:493.815000px;}
.y1b{bottom:507.315000px;}
.y78{bottom:508.755000px;}
.y47{bottom:514.515000px;}
.y9a{bottom:520.815000px;}
.y1a{bottom:528.015000px;}
.y77{bottom:529.455000px;}
.y46{bottom:535.215000px;}
.y99{bottom:541.515000px;}
.y19{bottom:548.715000px;}
.y76{bottom:550.155000px;}
.y45{bottom:555.915000px;}
.y18{bottom:569.415000px;}
.y75{bottom:570.855000px;}
.y44{bottom:576.615000px;}
.y98{bottom:577.155000px;}
.y17{bottom:590.115000px;}
.y74{bottom:591.555000px;}
.y43{bottom:597.315000px;}
.y16{bottom:610.815000px;}
.y73{bottom:612.255000px;}
.y97{bottom:612.795000px;}
.y42{bottom:618.015000px;}
.y15{bottom:631.515000px;}
.y72{bottom:632.955000px;}
.y41{bottom:638.715000px;}
.y96{bottom:648.615000px;}
.y14{bottom:652.215000px;}
.y71{bottom:653.655000px;}
.y40{bottom:659.415000px;}
.y95{bottom:669.315000px;}
.y70{bottom:674.355000px;}
.y3f{bottom:680.115000px;}
.y6f{bottom:695.055000px;}
.y3e{bottom:700.815000px;}
.y94{bottom:704.955000px;}
.y13{bottom:708.555000px;}
.y6e{bottom:715.755000px;}
.y3d{bottom:721.515000px;}
.y12{bottom:729.255000px;}
.y6d{bottom:736.455000px;}
.y93{bottom:740.596500px;}
.y3c{bottom:742.215000px;}
.y11{bottom:749.955000px;}
.y6c{bottom:757.155000px;}
.y92{bottom:761.295000px;}
.y3b{bottom:762.915000px;}
.y10{bottom:770.655000px;}
.y6b{bottom:777.855000px;}
.y3a{bottom:783.615000px;}
.yf{bottom:791.355000px;}
.y91{bottom:797.115000px;}
.y6a{bottom:798.555000px;}
.y39{bottom:804.315000px;}
.ye{bottom:812.055000px;}
.y69{bottom:819.255000px;}
.y38{bottom:825.015000px;}
.yd{bottom:832.755000px;}
.y68{bottom:839.955000px;}
.y37{bottom:845.715000px;}
.yc{bottom:853.455000px;}
.y67{bottom:860.655000px;}
.y36{bottom:866.415000px;}
.yb{bottom:874.155000px;}
.y66{bottom:881.355000px;}
.y35{bottom:887.115000px;}
.y90{bottom:889.095000px;}
.ya{bottom:894.855000px;}
.y65{bottom:902.055000px;}
.y34{bottom:907.815000px;}
.y64{bottom:922.755000px;}
.y8f{bottom:924.915000px;}
.y33{bottom:928.515000px;}
.y63{bottom:943.455000px;}
.y32{bottom:949.215000px;}
.y8e{bottom:960.555000px;}
.y62{bottom:964.155000px;}
.y9{bottom:966.315000px;}
.y31{bottom:969.915000px;}
.y61{bottom:984.855000px;}
.y30{bottom:990.615000px;}
.y8d{bottom:996.195000px;}
.y8{bottom:1001.955000px;}
.y60{bottom:1005.555000px;}
.y2f{bottom:1011.315000px;}
.y8c{bottom:1016.895000px;}
.y5f{bottom:1026.255000px;}
.y2e{bottom:1032.015000px;}
.y7{bottom:1037.595000px;}
.y5e{bottom:1046.955000px;}
.y2d{bottom:1052.715000px;}
.y5d{bottom:1067.655000px;}
.y2c{bottom:1073.415000px;}
.y5c{bottom:1088.355000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h5{height:44.189209px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x4{left:188.100000px;}
.x5{left:223.920000px;}
.x8{left:269.460000px;}
.x7{left:455.580000px;}
.x3{left:471.150000px;}
.x6{left:551.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws8{word-spacing:-49.728000pt;}
.ws50{word-spacing:-34.550933pt;}
.ws5{word-spacing:-34.362133pt;}
.ws12{word-spacing:-34.174933pt;}
.ws4f{word-spacing:-34.169600pt;}
.ws55{word-spacing:-34.161867pt;}
.ws7{word-spacing:-34.161600pt;}
.ws6{word-spacing:-34.160800pt;}
.ws3{word-spacing:-33.917600pt;}
.ws13{word-spacing:-33.910400pt;}
.ws26{word-spacing:-33.903467pt;}
.ws4{word-spacing:-33.853600pt;}
.ws52{word-spacing:-33.728000pt;}
.ws1f{word-spacing:-33.724800pt;}
.ws49{word-spacing:-33.720000pt;}
.ws59{word-spacing:-33.713867pt;}
.ws5c{word-spacing:-33.709867pt;}
.ws57{word-spacing:-33.532000pt;}
.ws14{word-spacing:-33.397600pt;}
.ws2b{word-spacing:-33.267200pt;}
.ws2a{word-spacing:-33.088000pt;}
.wsc{word-spacing:-32.632000pt;}
.ws23{word-spacing:-31.996800pt;}
.ws2e{word-spacing:-31.800000pt;}
.ws1c{word-spacing:-31.168000pt;}
.ws38{word-spacing:-31.157867pt;}
.ws1e{word-spacing:-30.716800pt;}
.ws3b{word-spacing:-30.311467pt;}
.ws2f{word-spacing:-30.072000pt;}
.ws21{word-spacing:-29.883200pt;}
.ws2{word-spacing:-29.820267pt;}
.ws20{word-spacing:-29.440000pt;}
.ws54{word-spacing:-29.438933pt;}
.ws24{word-spacing:-29.244800pt;}
.ws25{word-spacing:-29.045867pt;}
.ws17{word-spacing:-28.136267pt;}
.ws3e{word-spacing:-27.317867pt;}
.ws4b{word-spacing:-26.665867pt;}
.ws47{word-spacing:-26.236000pt;}
.ws34{word-spacing:-25.600000pt;}
.ws45{word-spacing:-25.393067pt;}
.ws5a{word-spacing:-25.207200pt;}
.ws32{word-spacing:-25.191467pt;}
.ws56{word-spacing:-24.960000pt;}
.ws4c{word-spacing:-24.760000pt;}
.ws39{word-spacing:-24.753067pt;}
.ws30{word-spacing:-23.680000pt;}
.ws2d{word-spacing:-23.478400pt;}
.ws4e{word-spacing:-21.571733pt;}
.ws51{word-spacing:-21.568000pt;}
.wsd{word-spacing:-20.909867pt;}
.ws43{word-spacing:-20.475200pt;}
.ws15{word-spacing:-19.759467pt;}
.ws33{word-spacing:-19.195200pt;}
.ws29{word-spacing:-19.008000pt;}
.ws46{word-spacing:-19.003200pt;}
.ws2c{word-spacing:-18.995200pt;}
.ws48{word-spacing:-17.916800pt;}
.ws4a{word-spacing:-17.086400pt;}
.ws5b{word-spacing:-16.444800pt;}
.ws18{word-spacing:-16.252533pt;}
.ws1d{word-spacing:-16.124000pt;}
.ws19{word-spacing:-15.279467pt;}
.ws10{word-spacing:-14.720000pt;}
.ws4d{word-spacing:-14.706667pt;}
.ws42{word-spacing:-14.334933pt;}
.ws11{word-spacing:-14.324800pt;}
.ws28{word-spacing:-13.878400pt;}
.ws44{word-spacing:-13.651467pt;}
.ws31{word-spacing:-13.236800pt;}
.ws27{word-spacing:-12.793600pt;}
.ws3a{word-spacing:-11.129600pt;}
.wsf{word-spacing:-10.682933pt;}
.ws3d{word-spacing:-10.481600pt;}
.wsa{word-spacing:-9.572267pt;}
.wse{word-spacing:-8.955200pt;}
.ws1a{word-spacing:-8.495200pt;}
.ws58{word-spacing:-7.478400pt;}
.ws36{word-spacing:-3.638400pt;}
.ws53{word-spacing:-2.174933pt;}
.ws22{word-spacing:0.826667pt;}
.wsb{word-spacing:0.833067pt;}
.ws1b{word-spacing:1.666400pt;}
.ws3c{word-spacing:2.121600pt;}
.ws41{word-spacing:3.849600pt;}
.ws40{word-spacing:6.789867pt;}
.ws16{word-spacing:9.490133pt;}
.ws9{word-spacing:11.719733pt;}
.ws37{word-spacing:12.806400pt;}
.ws3f{word-spacing:21.123200pt;}
.ws35{word-spacing:67.194667pt;}
.ws1{word-spacing:1663.428800pt;}
._2{margin-left:-1.228800pt;}
._0{width:1.020800pt;}
._14{width:15.544533pt;}
._1{width:16.631467pt;}
._7{width:18.053333pt;}
._10{width:19.653333pt;}
._11{width:20.643200pt;}
._12{width:21.643733pt;}
._e{width:22.565067pt;}
._1c{width:23.963200pt;}
._17{width:25.593600pt;}
._16{width:27.269333pt;}
._20{width:29.125333pt;}
._8{width:30.049067pt;}
._c{width:30.951467pt;}
._15{width:31.974400pt;}
._1f{width:33.499733pt;}
._f{width:35.005333pt;}
._b{width:36.357333pt;}
._13{width:37.278933pt;}
._a{width:40.043200pt;}
._4{width:41.169067pt;}
._9{width:42.642133pt;}
._22{width:43.700267pt;}
._19{width:47.166933pt;}
._21{width:48.836267pt;}
._6{width:51.600000pt;}
._5{width:52.500267pt;}
._1b{width:53.472000pt;}
._1e{width:57.548800pt;}
._d{width:60.165333pt;}
._3{width:62.581867pt;}
._1a{width:63.797333pt;}
._1d{width:72.459733pt;}
._18{width:118.167467pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y5b{bottom:89.346667pt;}
.y8b{bottom:102.626667pt;}
.y2b{bottom:106.466667pt;}
.y5a{bottom:107.746667pt;}
.y8a{bottom:121.026667pt;}
.y2a{bottom:124.708000pt;}
.y59{bottom:126.146667pt;}
.y89{bottom:139.426667pt;}
.y58{bottom:144.546667pt;}
.y88{bottom:157.826667pt;}
.y57{bottom:162.946667pt;}
.y29{bottom:174.946667pt;}
.y87{bottom:176.226667pt;}
.y56{bottom:181.346667pt;}
.y28{bottom:193.346667pt;}
.y86{bottom:194.626667pt;}
.y55{bottom:199.746667pt;}
.y27{bottom:211.746667pt;}
.y85{bottom:213.026667pt;}
.y54{bottom:218.146667pt;}
.y26{bottom:230.146667pt;}
.y84{bottom:231.426667pt;}
.y53{bottom:236.546667pt;}
.y25{bottom:248.546667pt;}
.y83{bottom:249.826667pt;}
.y52{bottom:254.946667pt;}
.y24{bottom:266.946667pt;}
.y82{bottom:268.226667pt;}
.y51{bottom:273.346667pt;}
.y23{bottom:285.346667pt;}
.y81{bottom:286.626667pt;}
.y50{bottom:291.746667pt;}
.y22{bottom:303.746667pt;}
.y80{bottom:305.026667pt;}
.y4f{bottom:310.146667pt;}
.ya0{bottom:312.546667pt;}
.y21{bottom:322.146667pt;}
.y7f{bottom:323.426667pt;}
.y4e{bottom:328.546667pt;}
.y9f{bottom:330.946667pt;}
.y20{bottom:340.546667pt;}
.y7e{bottom:341.826667pt;}
.y4d{bottom:346.946667pt;}
.y7d{bottom:360.226667pt;}
.y9e{bottom:362.626667pt;}
.y4c{bottom:365.346667pt;}
.y1f{bottom:377.346667pt;}
.y7c{bottom:378.626667pt;}
.y9d{bottom:381.026667pt;}
.y4b{bottom:383.746667pt;}
.y1e{bottom:395.746667pt;}
.y7b{bottom:397.026667pt;}
.y4a{bottom:402.146667pt;}
.y9c{bottom:412.706667pt;}
.y1d{bottom:414.146667pt;}
.y7a{bottom:415.426667pt;}
.y49{bottom:420.546667pt;}
.y9b{bottom:431.108000pt;}
.y1c{bottom:432.546667pt;}
.y79{bottom:433.826667pt;}
.y48{bottom:438.946667pt;}
.y1b{bottom:450.946667pt;}
.y78{bottom:452.226667pt;}
.y47{bottom:457.346667pt;}
.y9a{bottom:462.946667pt;}
.y1a{bottom:469.346667pt;}
.y77{bottom:470.626667pt;}
.y46{bottom:475.746667pt;}
.y99{bottom:481.346667pt;}
.y19{bottom:487.746667pt;}
.y76{bottom:489.026667pt;}
.y45{bottom:494.146667pt;}
.y18{bottom:506.146667pt;}
.y75{bottom:507.426667pt;}
.y44{bottom:512.546667pt;}
.y98{bottom:513.026667pt;}
.y17{bottom:524.546667pt;}
.y74{bottom:525.826667pt;}
.y43{bottom:530.946667pt;}
.y16{bottom:542.946667pt;}
.y73{bottom:544.226667pt;}
.y97{bottom:544.706667pt;}
.y42{bottom:549.346667pt;}
.y15{bottom:561.346667pt;}
.y72{bottom:562.626667pt;}
.y41{bottom:567.746667pt;}
.y96{bottom:576.546667pt;}
.y14{bottom:579.746667pt;}
.y71{bottom:581.026667pt;}
.y40{bottom:586.146667pt;}
.y95{bottom:594.946667pt;}
.y70{bottom:599.426667pt;}
.y3f{bottom:604.546667pt;}
.y6f{bottom:617.826667pt;}
.y3e{bottom:622.946667pt;}
.y94{bottom:626.626667pt;}
.y13{bottom:629.826667pt;}
.y6e{bottom:636.226667pt;}
.y3d{bottom:641.346667pt;}
.y12{bottom:648.226667pt;}
.y6d{bottom:654.626667pt;}
.y93{bottom:658.308000pt;}
.y3c{bottom:659.746667pt;}
.y11{bottom:666.626667pt;}
.y6c{bottom:673.026667pt;}
.y92{bottom:676.706667pt;}
.y3b{bottom:678.146667pt;}
.y10{bottom:685.026667pt;}
.y6b{bottom:691.426667pt;}
.y3a{bottom:696.546667pt;}
.yf{bottom:703.426667pt;}
.y91{bottom:708.546667pt;}
.y6a{bottom:709.826667pt;}
.y39{bottom:714.946667pt;}
.ye{bottom:721.826667pt;}
.y69{bottom:728.226667pt;}
.y38{bottom:733.346667pt;}
.yd{bottom:740.226667pt;}
.y68{bottom:746.626667pt;}
.y37{bottom:751.746667pt;}
.yc{bottom:758.626667pt;}
.y67{bottom:765.026667pt;}
.y36{bottom:770.146667pt;}
.yb{bottom:777.026667pt;}
.y66{bottom:783.426667pt;}
.y35{bottom:788.546667pt;}
.y90{bottom:790.306667pt;}
.ya{bottom:795.426667pt;}
.y65{bottom:801.826667pt;}
.y34{bottom:806.946667pt;}
.y64{bottom:820.226667pt;}
.y8f{bottom:822.146667pt;}
.y33{bottom:825.346667pt;}
.y63{bottom:838.626667pt;}
.y32{bottom:843.746667pt;}
.y8e{bottom:853.826667pt;}
.y62{bottom:857.026667pt;}
.y9{bottom:858.946667pt;}
.y31{bottom:862.146667pt;}
.y61{bottom:875.426667pt;}
.y30{bottom:880.546667pt;}
.y8d{bottom:885.506667pt;}
.y8{bottom:890.626667pt;}
.y60{bottom:893.826667pt;}
.y2f{bottom:898.946667pt;}
.y8c{bottom:903.906667pt;}
.y5f{bottom:912.226667pt;}
.y2e{bottom:917.346667pt;}
.y7{bottom:922.306667pt;}
.y5e{bottom:930.626667pt;}
.y2d{bottom:935.746667pt;}
.y5d{bottom:949.026667pt;}
.y2c{bottom:954.146667pt;}
.y5c{bottom:967.426667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h5{height:39.279297pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x4{left:167.200000pt;}
.x5{left:199.040000pt;}
.x8{left:239.520000pt;}
.x7{left:404.960000pt;}
.x3{left:418.800000pt;}
.x6{left:490.400000pt;}
}




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