
    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_16e6a51b0259f539db9cd62a.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_5c1ab6596fbdf5071c56c9a9.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_3f4666136ef518c522deea73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b210638dc0d13ce7ebf38ace.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_aca20a28cdd2b48a3de111fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2d606a688bfd327f26214664.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f8ae67f95b971a244273434e.woff2')format("woff");}.ff7{font-family:ff7;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;}
.wsf{word-spacing:-55.944000px;}
.ws42{word-spacing:-38.869800px;}
.ws4c{word-spacing:-38.857800px;}
.ws4a{word-spacing:-38.660400px;}
.ws20{word-spacing:-38.656800px;}
.ws2d{word-spacing:-38.640900px;}
.ws19{word-spacing:-38.448000px;}
.ws24{word-spacing:-38.444400px;}
.ws6{word-spacing:-38.444100px;}
.ws3{word-spacing:-38.434500px;}
.ws5{word-spacing:-38.432100px;}
.ws33{word-spacing:-38.160000px;}
.ws3c{word-spacing:-38.154600px;}
.ws35{word-spacing:-38.154000px;}
.ws1c{word-spacing:-38.143800px;}
.ws44{word-spacing:-37.944000px;}
.ws7{word-spacing:-37.941900px;}
.ws46{word-spacing:-37.940100px;}
.ws9{word-spacing:-37.937700px;}
.ws28{word-spacing:-37.935000px;}
.ws39{word-spacing:-37.926000px;}
.ws41{word-spacing:-37.720800px;}
.ws16{word-spacing:-37.711200px;}
.ws8{word-spacing:-37.647900px;}
.ws4{word-spacing:-37.426500px;}
.ws17{word-spacing:-37.209000px;}
.ws2f{word-spacing:-36.498600px;}
.ws49{word-spacing:-36.495900px;}
.wse{word-spacing:-36.491400px;}
.ws3d{word-spacing:-36.282600px;}
.ws31{word-spacing:-35.776800px;}
.ws11{word-spacing:-35.557200px;}
.ws48{word-spacing:-33.602400px;}
.ws2{word-spacing:-33.547800px;}
.ws1b{word-spacing:-32.181000px;}
.ws18{word-spacing:-32.171400px;}
.ws3f{word-spacing:-32.165400px;}
.wsc{word-spacing:-31.443000px;}
.ws3e{word-spacing:-30.742800px;}
.ws4b{word-spacing:-30.742200px;}
.wsd{word-spacing:-30.733200px;}
.ws3b{word-spacing:-29.075400px;}
.ws36{word-spacing:-28.582800px;}
.ws38{word-spacing:-28.566000px;}
.ws2c{word-spacing:-27.860400px;}
.ws3a{word-spacing:-26.416800px;}
.ws13{word-spacing:-25.704000px;}
.ws26{word-spacing:-25.688100px;}
.ws21{word-spacing:-25.185600px;}
.ws1e{word-spacing:-24.971400px;}
.ws40{word-spacing:-24.474600px;}
.ws12{word-spacing:-24.030600px;}
.ws34{word-spacing:-23.544600px;}
.wsa{word-spacing:-22.820400px;}
.ws25{word-spacing:-22.314600px;}
.ws1d{word-spacing:-19.440600px;}
.ws15{word-spacing:-19.215600px;}
.ws1a{word-spacing:-18.696600px;}
.ws23{word-spacing:-16.547400px;}
.ws27{word-spacing:-14.900400px;}
.ws14{word-spacing:-14.171400px;}
.ws30{word-spacing:-14.170800px;}
.ws2b{word-spacing:-14.167800px;}
.ws32{word-spacing:-13.663800px;}
.ws10{word-spacing:-12.736800px;}
.ws47{word-spacing:-12.029100px;}
.ws22{word-spacing:-10.787400px;}
.ws37{word-spacing:-10.576800px;}
.ws2e{word-spacing:-10.576200px;}
.ws45{word-spacing:-9.144000px;}
.ws43{word-spacing:-6.957900px;}
.ws1f{word-spacing:-5.756400px;}
.ws29{word-spacing:-0.500400px;}
.wsb{word-spacing:3.100800px;}
.ws2a{word-spacing:7.200000px;}
.ws1{word-spacing:1871.357400px;}
._2{margin-left:-1.239600px;}
._0{width:1.148400px;}
._1{width:18.648000px;}
._b{width:20.064000px;}
._6{width:21.778800px;}
._18{width:23.672400px;}
._4{width:25.780200px;}
._5{width:26.839800px;}
._14{width:27.929400px;}
._11{width:29.466000px;}
._8{width:31.614000px;}
._7{width:32.977800px;}
._3{width:34.354800px;}
._a{width:38.340000px;}
._e{width:40.592400px;}
._9{width:42.874200px;}
._13{width:43.984800px;}
._17{width:45.227100px;}
._d{width:46.852800px;}
._16{width:50.161200px;}
._c{width:51.266400px;}
._f{width:56.454000px;}
._10{width:64.731600px;}
._12{width:91.002000px;}
._15{width:158.400000px;}
.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;}
.y6{bottom:4.455000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y31{bottom:119.775000px;}
.y30{bottom:140.296500px;}
.y2f{bottom:160.996500px;}
.y2e{bottom:181.696500px;}
.y2d{bottom:202.396500px;}
.y2c{bottom:238.215000px;}
.y2b{bottom:258.915000px;}
.y2a{bottom:279.615000px;}
.y50{bottom:290.955000px;}
.y29{bottom:300.315000px;}
.y4f{bottom:311.655000px;}
.y4e{bottom:332.355000px;}
.y28{bottom:335.955000px;}
.y4d{bottom:353.055000px;}
.y27{bottom:356.655000px;}
.y4c{bottom:373.755000px;}
.y26{bottom:377.355000px;}
.y4b{bottom:394.455000px;}
.y25{bottom:398.055000px;}
.y4a{bottom:415.155000px;}
.y24{bottom:433.696500px;}
.y49{bottom:435.855000px;}
.y23{bottom:454.396500px;}
.y48{bottom:456.555000px;}
.y22{bottom:475.096500px;}
.y47{bottom:477.255000px;}
.y21{bottom:495.796500px;}
.y46{bottom:497.955000px;}
.y20{bottom:531.615000px;}
.y45{bottom:533.596500px;}
.y1f{bottom:552.315000px;}
.y44{bottom:569.415000px;}
.y1e{bottom:573.015000px;}
.y43{bottom:590.115000px;}
.y1d{bottom:608.655000px;}
.y42{bottom:610.815000px;}
.y1c{bottom:629.355000px;}
.y41{bottom:631.515000px;}
.y1b{bottom:650.055000px;}
.y40{bottom:652.215000px;}
.y1a{bottom:685.695000px;}
.y3f{bottom:687.855000px;}
.y19{bottom:706.396500px;}
.y3e{bottom:708.555000px;}
.y18{bottom:727.096500px;}
.y3d{bottom:729.255000px;}
.y17{bottom:747.795000px;}
.y3c{bottom:764.895000px;}
.y16{bottom:768.496500px;}
.y3b{bottom:785.596500px;}
.y15{bottom:789.195000px;}
.y3a{bottom:806.295000px;}
.y14{bottom:809.895000px;}
.y39{bottom:826.996500px;}
.y13{bottom:845.715000px;}
.y38{bottom:862.815000px;}
.y12{bottom:866.415000px;}
.y11{bottom:887.115000px;}
.y37{bottom:898.455000px;}
.y10{bottom:907.815000px;}
.y36{bottom:919.155000px;}
.yf{bottom:928.515000px;}
.ye{bottom:949.215000px;}
.y35{bottom:954.795000px;}
.yd{bottom:990.615000px;}
.yc{bottom:1011.315000px;}
.yb{bottom:1032.015000px;}
.ya{bottom:1052.715000px;}
.y34{bottom:1067.655000px;}
.y9{bottom:1073.415000px;}
.y33{bottom:1088.355000px;}
.y8{bottom:1094.115000px;}
.y32{bottom:1109.055000px;}
.y7{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.y5{bottom:1189.200000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h7{height:48.761719px;}
.h6{height:48.796875px;}
.h8{height:49.992188px;}
.h9{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;}
.xb{left:138.238500px;}
.x2{left:150.120000px;}
.x1{left:153.000000px;}
.x4{left:255.600000px;}
.x6{left:413.638500px;}
.xa{left:451.260000px;}
.x3{left:471.150000px;}
.x8{left:477.360000px;}
.x9{left:602.100000px;}
.x7{left:612.180000px;}
.x5{left:673.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.wsf{word-spacing:-49.728000pt;}
.ws42{word-spacing:-34.550933pt;}
.ws4c{word-spacing:-34.540267pt;}
.ws4a{word-spacing:-34.364800pt;}
.ws20{word-spacing:-34.361600pt;}
.ws2d{word-spacing:-34.347467pt;}
.ws19{word-spacing:-34.176000pt;}
.ws24{word-spacing:-34.172800pt;}
.ws6{word-spacing:-34.172533pt;}
.ws3{word-spacing:-34.164000pt;}
.ws5{word-spacing:-34.161867pt;}
.ws33{word-spacing:-33.920000pt;}
.ws3c{word-spacing:-33.915200pt;}
.ws35{word-spacing:-33.914667pt;}
.ws1c{word-spacing:-33.905600pt;}
.ws44{word-spacing:-33.728000pt;}
.ws7{word-spacing:-33.726133pt;}
.ws46{word-spacing:-33.724533pt;}
.ws9{word-spacing:-33.722400pt;}
.ws28{word-spacing:-33.720000pt;}
.ws39{word-spacing:-33.712000pt;}
.ws41{word-spacing:-33.529600pt;}
.ws16{word-spacing:-33.521067pt;}
.ws8{word-spacing:-33.464800pt;}
.ws4{word-spacing:-33.268000pt;}
.ws17{word-spacing:-33.074667pt;}
.ws2f{word-spacing:-32.443200pt;}
.ws49{word-spacing:-32.440800pt;}
.wse{word-spacing:-32.436800pt;}
.ws3d{word-spacing:-32.251200pt;}
.ws31{word-spacing:-31.801600pt;}
.ws11{word-spacing:-31.606400pt;}
.ws48{word-spacing:-29.868800pt;}
.ws2{word-spacing:-29.820267pt;}
.ws1b{word-spacing:-28.605333pt;}
.ws18{word-spacing:-28.596800pt;}
.ws3f{word-spacing:-28.591467pt;}
.wsc{word-spacing:-27.949333pt;}
.ws3e{word-spacing:-27.326933pt;}
.ws4b{word-spacing:-27.326400pt;}
.wsd{word-spacing:-27.318400pt;}
.ws3b{word-spacing:-25.844800pt;}
.ws36{word-spacing:-25.406933pt;}
.ws38{word-spacing:-25.392000pt;}
.ws2c{word-spacing:-24.764800pt;}
.ws3a{word-spacing:-23.481600pt;}
.ws13{word-spacing:-22.848000pt;}
.ws26{word-spacing:-22.833867pt;}
.ws21{word-spacing:-22.387200pt;}
.ws1e{word-spacing:-22.196800pt;}
.ws40{word-spacing:-21.755200pt;}
.ws12{word-spacing:-21.360533pt;}
.ws34{word-spacing:-20.928533pt;}
.wsa{word-spacing:-20.284800pt;}
.ws25{word-spacing:-19.835200pt;}
.ws1d{word-spacing:-17.280533pt;}
.ws15{word-spacing:-17.080533pt;}
.ws1a{word-spacing:-16.619200pt;}
.ws23{word-spacing:-14.708800pt;}
.ws27{word-spacing:-13.244800pt;}
.ws14{word-spacing:-12.596800pt;}
.ws30{word-spacing:-12.596267pt;}
.ws2b{word-spacing:-12.593600pt;}
.ws32{word-spacing:-12.145600pt;}
.ws10{word-spacing:-11.321600pt;}
.ws47{word-spacing:-10.692533pt;}
.ws22{word-spacing:-9.588800pt;}
.ws37{word-spacing:-9.401600pt;}
.ws2e{word-spacing:-9.401067pt;}
.ws45{word-spacing:-8.128000pt;}
.ws43{word-spacing:-6.184800pt;}
.ws1f{word-spacing:-5.116800pt;}
.ws29{word-spacing:-0.444800pt;}
.wsb{word-spacing:2.756267pt;}
.ws2a{word-spacing:6.400000pt;}
.ws1{word-spacing:1663.428800pt;}
._2{margin-left:-1.101867pt;}
._0{width:1.020800pt;}
._1{width:16.576000pt;}
._b{width:17.834667pt;}
._6{width:19.358933pt;}
._18{width:21.042133pt;}
._4{width:22.915733pt;}
._5{width:23.857600pt;}
._14{width:24.826133pt;}
._11{width:26.192000pt;}
._8{width:28.101333pt;}
._7{width:29.313600pt;}
._3{width:30.537600pt;}
._a{width:34.080000pt;}
._e{width:36.082133pt;}
._9{width:38.110400pt;}
._13{width:39.097600pt;}
._17{width:40.201867pt;}
._d{width:41.646933pt;}
._16{width:44.587733pt;}
._c{width:45.570133pt;}
._f{width:50.181333pt;}
._10{width:57.539200pt;}
._12{width:80.890667pt;}
._15{width:140.800000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.960000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y31{bottom:106.466667pt;}
.y30{bottom:124.708000pt;}
.y2f{bottom:143.108000pt;}
.y2e{bottom:161.508000pt;}
.y2d{bottom:179.908000pt;}
.y2c{bottom:211.746667pt;}
.y2b{bottom:230.146667pt;}
.y2a{bottom:248.546667pt;}
.y50{bottom:258.626667pt;}
.y29{bottom:266.946667pt;}
.y4f{bottom:277.026667pt;}
.y4e{bottom:295.426667pt;}
.y28{bottom:298.626667pt;}
.y4d{bottom:313.826667pt;}
.y27{bottom:317.026667pt;}
.y4c{bottom:332.226667pt;}
.y26{bottom:335.426667pt;}
.y4b{bottom:350.626667pt;}
.y25{bottom:353.826667pt;}
.y4a{bottom:369.026667pt;}
.y24{bottom:385.508000pt;}
.y49{bottom:387.426667pt;}
.y23{bottom:403.908000pt;}
.y48{bottom:405.826667pt;}
.y22{bottom:422.308000pt;}
.y47{bottom:424.226667pt;}
.y21{bottom:440.708000pt;}
.y46{bottom:442.626667pt;}
.y20{bottom:472.546667pt;}
.y45{bottom:474.308000pt;}
.y1f{bottom:490.946667pt;}
.y44{bottom:506.146667pt;}
.y1e{bottom:509.346667pt;}
.y43{bottom:524.546667pt;}
.y1d{bottom:541.026667pt;}
.y42{bottom:542.946667pt;}
.y1c{bottom:559.426667pt;}
.y41{bottom:561.346667pt;}
.y1b{bottom:577.826667pt;}
.y40{bottom:579.746667pt;}
.y1a{bottom:609.506667pt;}
.y3f{bottom:611.426667pt;}
.y19{bottom:627.908000pt;}
.y3e{bottom:629.826667pt;}
.y18{bottom:646.308000pt;}
.y3d{bottom:648.226667pt;}
.y17{bottom:664.706667pt;}
.y3c{bottom:679.906667pt;}
.y16{bottom:683.108000pt;}
.y3b{bottom:698.308000pt;}
.y15{bottom:701.506667pt;}
.y3a{bottom:716.706667pt;}
.y14{bottom:719.906667pt;}
.y39{bottom:735.108000pt;}
.y13{bottom:751.746667pt;}
.y38{bottom:766.946667pt;}
.y12{bottom:770.146667pt;}
.y11{bottom:788.546667pt;}
.y37{bottom:798.626667pt;}
.y10{bottom:806.946667pt;}
.y36{bottom:817.026667pt;}
.yf{bottom:825.346667pt;}
.ye{bottom:843.746667pt;}
.y35{bottom:848.706667pt;}
.yd{bottom:880.546667pt;}
.yc{bottom:898.946667pt;}
.yb{bottom:917.346667pt;}
.ya{bottom:935.746667pt;}
.y34{bottom:949.026667pt;}
.y9{bottom:954.146667pt;}
.y33{bottom:967.426667pt;}
.y8{bottom:972.546667pt;}
.y32{bottom:985.826667pt;}
.y7{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.y5{bottom:1057.066667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h7{height:43.343750pt;}
.h6{height:43.375000pt;}
.h8{height:44.437500pt;}
.h9{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;}
.xb{left:122.878667pt;}
.x2{left:133.440000pt;}
.x1{left:136.000000pt;}
.x4{left:227.200000pt;}
.x6{left:367.678667pt;}
.xa{left:401.120000pt;}
.x3{left:418.800000pt;}
.x8{left:424.320000pt;}
.x9{left:535.200000pt;}
.x7{left:544.160000pt;}
.x5{left:598.720000pt;}
}




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