
    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_03f064650c0bc1032709ea5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_3aaf1f75ecd9eff019e19d5f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc7a7691bfdf25d3109673fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_824398ae60a0943ed7197ae1.woff2')format("woff");}.ff4{font-family:ff4;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);}
.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;}
.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;}
}
.ws59{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.ws5b{word-spacing:-38.860800px;}
.ws8{word-spacing:-38.668200px;}
.ws5e{word-spacing:-38.661300px;}
.ws53{word-spacing:-38.661000px;}
.ws57{word-spacing:-38.652300px;}
.ws58{word-spacing:-38.444100px;}
.ws7{word-spacing:-38.358300px;}
.ws3b{word-spacing:-38.162400px;}
.ws9{word-spacing:-38.160000px;}
.ws1f{word-spacing:-38.156400px;}
.wsa{word-spacing:-38.148300px;}
.ws56{word-spacing:-37.944000px;}
.ws5d{word-spacing:-37.932300px;}
.ws49{word-spacing:-37.860300px;}
.ws54{word-spacing:-37.651500px;}
.wsd{word-spacing:-37.440000px;}
.ws32{word-spacing:-37.222200px;}
.ws41{word-spacing:-36.999900px;}
.wsc{word-spacing:-36.720000px;}
.ws2e{word-spacing:-36.716400px;}
.ws4e{word-spacing:-36.504000px;}
.ws14{word-spacing:-36.502200px;}
.ws37{word-spacing:-36.491400px;}
.ws1a{word-spacing:-35.998800px;}
.ws43{word-spacing:-35.996400px;}
.ws4a{word-spacing:-35.286000px;}
.ws45{word-spacing:-35.060400px;}
.ws5c{word-spacing:-35.057700px;}
.ws10{word-spacing:-35.052300px;}
.ws4d{word-spacing:-34.986300px;}
.ws1b{word-spacing:-34.346400px;}
.ws47{word-spacing:-34.338600px;}
.ws13{word-spacing:-33.842400px;}
.ws29{word-spacing:-33.840000px;}
.wsf{word-spacing:-33.600600px;}
.ws6{word-spacing:-33.547800px;}
.ws2f{word-spacing:-33.544800px;}
.ws2a{word-spacing:-33.122400px;}
.ws1c{word-spacing:-32.900400px;}
.ws19{word-spacing:-32.895000px;}
.wse{word-spacing:-32.892000px;}
.ws11{word-spacing:-32.180400px;}
.ws4f{word-spacing:-31.676400px;}
.ws3a{word-spacing:-31.466400px;}
.ws27{word-spacing:-31.458600px;}
.ws28{word-spacing:-30.951000px;}
.ws4b{word-spacing:-30.945000px;}
.ws39{word-spacing:-30.740400px;}
.ws18{word-spacing:-30.731400px;}
.ws3c{word-spacing:-30.522600px;}
.ws17{word-spacing:-30.456600px;}
.ws52{word-spacing:-30.240000px;}
.ws48{word-spacing:-30.236400px;}
.ws3e{word-spacing:-30.013200px;}
.ws33{word-spacing:-29.517300px;}
.ws3f{word-spacing:-29.516400px;}
.ws34{word-spacing:-29.300400px;}
.ws25{word-spacing:-29.295900px;}
.ws24{word-spacing:-29.291400px;}
.ws3d{word-spacing:-28.796400px;}
.ws15{word-spacing:-28.576800px;}
.ws2d{word-spacing:-28.086000px;}
.ws21{word-spacing:-28.080000px;}
.ws16{word-spacing:-28.076400px;}
.ws4c{word-spacing:-27.140400px;}
.ws1d{word-spacing:-26.643300px;}
.ws22{word-spacing:-26.430000px;}
.ws40{word-spacing:-26.424000px;}
.ws36{word-spacing:-26.411400px;}
.ws42{word-spacing:-26.335200px;}
.ws30{word-spacing:-25.700400px;}
.ws51{word-spacing:-24.916200px;}
.ws2b{word-spacing:-24.483300px;}
.ws46{word-spacing:-24.474600px;}
.ws1e{word-spacing:-24.251400px;}
.ws23{word-spacing:-24.041700px;}
.ws35{word-spacing:-24.039900px;}
.ws4{word-spacing:-23.687700px;}
.ws0{word-spacing:-23.390100px;}
.ws31{word-spacing:-23.328000px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.ws50{word-spacing:-22.093200px;}
.ws12{word-spacing:-21.596400px;}
.ws2c{word-spacing:-20.876400px;}
.ws5f{word-spacing:-20.814000px;}
.ws5a{word-spacing:-20.663100px;}
.ws26{word-spacing:-19.936800px;}
.ws38{word-spacing:-19.722600px;}
.ws20{word-spacing:-19.218600px;}
.ws55{word-spacing:-16.332300px;}
.ws44{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.837300px;}
.ws3{word-spacing:-5.177700px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._7{width:17.190900px;}
._0{width:19.142100px;}
._6{width:20.304000px;}
._c{width:21.378600px;}
._9{width:22.515300px;}
._8{width:24.324000px;}
._a{width:25.825200px;}
._f{width:27.073200px;}
._d{width:28.425600px;}
._e{width:29.573400px;}
._10{width:31.129800px;}
._13{width:32.248800px;}
._b{width:33.328800px;}
._14{width:35.116200px;}
._12{width:37.090200px;}
._11{width:38.287800px;}
._5{width:41.754600px;}
._1{width:954.360000px;}
._2{width:1025.700300px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(227,108,9);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.575000px;}
.y7{bottom:72.900000px;}
.y36{bottom:122.836500px;}
.y35{bottom:143.536500px;}
.y5e{bottom:152.175000px;}
.y34{bottom:164.236500px;}
.y5d{bottom:172.875000px;}
.y33{bottom:184.936500px;}
.y32{bottom:205.636500px;}
.y31{bottom:226.336500px;}
.y30{bottom:247.036500px;}
.y5c{bottom:258.915000px;}
.y2f{bottom:267.736500px;}
.y5b{bottom:279.615000px;}
.y2e{bottom:288.436500px;}
.y5a{bottom:300.315000px;}
.y2d{bottom:309.136500px;}
.y2c{bottom:329.836500px;}
.y59{bottom:333.075000px;}
.y2b{bottom:350.536500px;}
.y2a{bottom:371.236500px;}
.y58{bottom:386.536500px;}
.y29{bottom:391.936500px;}
.y57{bottom:407.236500px;}
.y28{bottom:412.636500px;}
.y56{bottom:427.936500px;}
.y27{bottom:433.336500px;}
.y55{bottom:448.636500px;}
.y26{bottom:454.036500px;}
.y54{bottom:469.336500px;}
.y25{bottom:474.736500px;}
.y53{bottom:490.036500px;}
.y24{bottom:495.436500px;}
.y52{bottom:510.736500px;}
.y23{bottom:516.136500px;}
.y51{bottom:531.436500px;}
.y22{bottom:536.836500px;}
.y50{bottom:552.136500px;}
.y21{bottom:557.536500px;}
.y4f{bottom:572.836500px;}
.y20{bottom:578.236500px;}
.y4e{bottom:593.536500px;}
.y1f{bottom:598.936500px;}
.y4d{bottom:614.236500px;}
.y1e{bottom:619.636500px;}
.y4c{bottom:634.936500px;}
.y1d{bottom:640.336500px;}
.y4b{bottom:655.636500px;}
.y1c{bottom:661.036500px;}
.y4a{bottom:676.336500px;}
.y1b{bottom:681.736500px;}
.y49{bottom:697.036500px;}
.y1a{bottom:702.436500px;}
.y48{bottom:717.736500px;}
.y19{bottom:723.136500px;}
.y47{bottom:738.436500px;}
.y18{bottom:743.836500px;}
.y46{bottom:759.136500px;}
.y17{bottom:764.536500px;}
.y45{bottom:779.836500px;}
.y16{bottom:785.236500px;}
.y44{bottom:800.536500px;}
.y15{bottom:805.936500px;}
.y43{bottom:821.236500px;}
.y14{bottom:826.636500px;}
.y42{bottom:841.936500px;}
.y13{bottom:847.336500px;}
.y41{bottom:862.636500px;}
.y12{bottom:868.036500px;}
.y40{bottom:883.336500px;}
.y11{bottom:888.736500px;}
.y3f{bottom:904.036500px;}
.y10{bottom:909.436500px;}
.y3e{bottom:924.736500px;}
.yf{bottom:930.136500px;}
.y3d{bottom:945.436500px;}
.ye{bottom:950.836500px;}
.y3c{bottom:966.136500px;}
.yd{bottom:971.536500px;}
.y3b{bottom:986.836500px;}
.yc{bottom:1001.236500px;}
.y3a{bottom:1007.536500px;}
.y39{bottom:1028.236500px;}
.yb{bottom:1030.936500px;}
.y38{bottom:1048.936500px;}
.ya{bottom:1060.636500px;}
.y37{bottom:1069.636500px;}
.y9{bottom:1090.155000px;}
.y6{bottom:1131.915000px;}
.y5{bottom:1152.615000px;}
.y4{bottom:1173.315000px;}
.y3{bottom:1194.015000px;}
.y2{bottom:1214.715000px;}
.y1{bottom:1235.415000px;}
.h3{height:20.175000px;}
.h4{height:45.225146px;}
.h5{height:48.796875px;}
.h2{height:49.042969px;}
.h6{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x8{left:159.120000px;}
.x7{left:180.720000px;}
.x3{left:258.838500px;}
.x5{left:430.380000px;}
.x2{left:470.025000px;}
.x6{left:603.720000px;}
.x4{left:730.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws59{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.ws5b{word-spacing:-34.542933pt;}
.ws8{word-spacing:-34.371733pt;}
.ws5e{word-spacing:-34.365600pt;}
.ws53{word-spacing:-34.365333pt;}
.ws57{word-spacing:-34.357600pt;}
.ws58{word-spacing:-34.172533pt;}
.ws7{word-spacing:-34.096267pt;}
.ws3b{word-spacing:-33.922133pt;}
.ws9{word-spacing:-33.920000pt;}
.ws1f{word-spacing:-33.916800pt;}
.wsa{word-spacing:-33.909600pt;}
.ws56{word-spacing:-33.728000pt;}
.ws5d{word-spacing:-33.717600pt;}
.ws49{word-spacing:-33.653600pt;}
.ws54{word-spacing:-33.468000pt;}
.wsd{word-spacing:-33.280000pt;}
.ws32{word-spacing:-33.086400pt;}
.ws41{word-spacing:-32.888800pt;}
.wsc{word-spacing:-32.640000pt;}
.ws2e{word-spacing:-32.636800pt;}
.ws4e{word-spacing:-32.448000pt;}
.ws14{word-spacing:-32.446400pt;}
.ws37{word-spacing:-32.436800pt;}
.ws1a{word-spacing:-31.998933pt;}
.ws43{word-spacing:-31.996800pt;}
.ws4a{word-spacing:-31.365333pt;}
.ws45{word-spacing:-31.164800pt;}
.ws5c{word-spacing:-31.162400pt;}
.ws10{word-spacing:-31.157600pt;}
.ws4d{word-spacing:-31.098933pt;}
.ws1b{word-spacing:-30.530133pt;}
.ws47{word-spacing:-30.523200pt;}
.ws13{word-spacing:-30.082133pt;}
.ws29{word-spacing:-30.080000pt;}
.wsf{word-spacing:-29.867200pt;}
.ws6{word-spacing:-29.820267pt;}
.ws2f{word-spacing:-29.817600pt;}
.ws2a{word-spacing:-29.442133pt;}
.ws1c{word-spacing:-29.244800pt;}
.ws19{word-spacing:-29.240000pt;}
.wse{word-spacing:-29.237333pt;}
.ws11{word-spacing:-28.604800pt;}
.ws4f{word-spacing:-28.156800pt;}
.ws3a{word-spacing:-27.970133pt;}
.ws27{word-spacing:-27.963200pt;}
.ws28{word-spacing:-27.512000pt;}
.ws4b{word-spacing:-27.506667pt;}
.ws39{word-spacing:-27.324800pt;}
.ws18{word-spacing:-27.316800pt;}
.ws3c{word-spacing:-27.131200pt;}
.ws17{word-spacing:-27.072533pt;}
.ws52{word-spacing:-26.880000pt;}
.ws48{word-spacing:-26.876800pt;}
.ws3e{word-spacing:-26.678400pt;}
.ws33{word-spacing:-26.237600pt;}
.ws3f{word-spacing:-26.236800pt;}
.ws34{word-spacing:-26.044800pt;}
.ws25{word-spacing:-26.040800pt;}
.ws24{word-spacing:-26.036800pt;}
.ws3d{word-spacing:-25.596800pt;}
.ws15{word-spacing:-25.401600pt;}
.ws2d{word-spacing:-24.965333pt;}
.ws21{word-spacing:-24.960000pt;}
.ws16{word-spacing:-24.956800pt;}
.ws4c{word-spacing:-24.124800pt;}
.ws1d{word-spacing:-23.682933pt;}
.ws22{word-spacing:-23.493333pt;}
.ws40{word-spacing:-23.488000pt;}
.ws36{word-spacing:-23.476800pt;}
.ws42{word-spacing:-23.409067pt;}
.ws30{word-spacing:-22.844800pt;}
.ws51{word-spacing:-22.147733pt;}
.ws2b{word-spacing:-21.762933pt;}
.ws46{word-spacing:-21.755200pt;}
.ws1e{word-spacing:-21.556800pt;}
.ws23{word-spacing:-21.370400pt;}
.ws35{word-spacing:-21.368800pt;}
.ws4{word-spacing:-21.055733pt;}
.ws0{word-spacing:-20.791200pt;}
.ws31{word-spacing:-20.736000pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.ws50{word-spacing:-19.638400pt;}
.ws12{word-spacing:-19.196800pt;}
.ws2c{word-spacing:-18.556800pt;}
.ws5f{word-spacing:-18.501333pt;}
.ws5a{word-spacing:-18.367200pt;}
.ws26{word-spacing:-17.721600pt;}
.ws38{word-spacing:-17.531200pt;}
.ws20{word-spacing:-17.083200pt;}
.ws55{word-spacing:-14.517600pt;}
.ws44{word-spacing:-14.080000pt;}
.wsb{word-spacing:-14.077600pt;}
.ws3{word-spacing:-4.602400pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._7{width:15.280800pt;}
._0{width:17.015200pt;}
._6{width:18.048000pt;}
._c{width:19.003200pt;}
._9{width:20.013600pt;}
._8{width:21.621333pt;}
._a{width:22.955733pt;}
._f{width:24.065067pt;}
._d{width:25.267200pt;}
._e{width:26.287467pt;}
._10{width:27.670933pt;}
._13{width:28.665600pt;}
._b{width:29.625600pt;}
._14{width:31.214400pt;}
._12{width:32.969067pt;}
._11{width:34.033600pt;}
._5{width:37.115200pt;}
._1{width:848.320000pt;}
._2{width:911.733600pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.066667pt;}
.y7{bottom:64.800000pt;}
.y36{bottom:109.188000pt;}
.y35{bottom:127.588000pt;}
.y5e{bottom:135.266667pt;}
.y34{bottom:145.988000pt;}
.y5d{bottom:153.666667pt;}
.y33{bottom:164.388000pt;}
.y32{bottom:182.788000pt;}
.y31{bottom:201.188000pt;}
.y30{bottom:219.588000pt;}
.y5c{bottom:230.146667pt;}
.y2f{bottom:237.988000pt;}
.y5b{bottom:248.546667pt;}
.y2e{bottom:256.388000pt;}
.y5a{bottom:266.946667pt;}
.y2d{bottom:274.788000pt;}
.y2c{bottom:293.188000pt;}
.y59{bottom:296.066667pt;}
.y2b{bottom:311.588000pt;}
.y2a{bottom:329.988000pt;}
.y58{bottom:343.588000pt;}
.y29{bottom:348.388000pt;}
.y57{bottom:361.988000pt;}
.y28{bottom:366.788000pt;}
.y56{bottom:380.388000pt;}
.y27{bottom:385.188000pt;}
.y55{bottom:398.788000pt;}
.y26{bottom:403.588000pt;}
.y54{bottom:417.188000pt;}
.y25{bottom:421.988000pt;}
.y53{bottom:435.588000pt;}
.y24{bottom:440.388000pt;}
.y52{bottom:453.988000pt;}
.y23{bottom:458.788000pt;}
.y51{bottom:472.388000pt;}
.y22{bottom:477.188000pt;}
.y50{bottom:490.788000pt;}
.y21{bottom:495.588000pt;}
.y4f{bottom:509.188000pt;}
.y20{bottom:513.988000pt;}
.y4e{bottom:527.588000pt;}
.y1f{bottom:532.388000pt;}
.y4d{bottom:545.988000pt;}
.y1e{bottom:550.788000pt;}
.y4c{bottom:564.388000pt;}
.y1d{bottom:569.188000pt;}
.y4b{bottom:582.788000pt;}
.y1c{bottom:587.588000pt;}
.y4a{bottom:601.188000pt;}
.y1b{bottom:605.988000pt;}
.y49{bottom:619.588000pt;}
.y1a{bottom:624.388000pt;}
.y48{bottom:637.988000pt;}
.y19{bottom:642.788000pt;}
.y47{bottom:656.388000pt;}
.y18{bottom:661.188000pt;}
.y46{bottom:674.788000pt;}
.y17{bottom:679.588000pt;}
.y45{bottom:693.188000pt;}
.y16{bottom:697.988000pt;}
.y44{bottom:711.588000pt;}
.y15{bottom:716.388000pt;}
.y43{bottom:729.988000pt;}
.y14{bottom:734.788000pt;}
.y42{bottom:748.388000pt;}
.y13{bottom:753.188000pt;}
.y41{bottom:766.788000pt;}
.y12{bottom:771.588000pt;}
.y40{bottom:785.188000pt;}
.y11{bottom:789.988000pt;}
.y3f{bottom:803.588000pt;}
.y10{bottom:808.388000pt;}
.y3e{bottom:821.988000pt;}
.yf{bottom:826.788000pt;}
.y3d{bottom:840.388000pt;}
.ye{bottom:845.188000pt;}
.y3c{bottom:858.788000pt;}
.yd{bottom:863.588000pt;}
.y3b{bottom:877.188000pt;}
.yc{bottom:889.988000pt;}
.y3a{bottom:895.588000pt;}
.y39{bottom:913.988000pt;}
.yb{bottom:916.388000pt;}
.y38{bottom:932.388000pt;}
.ya{bottom:942.788000pt;}
.y37{bottom:950.788000pt;}
.y9{bottom:969.026667pt;}
.y6{bottom:1006.146667pt;}
.y5{bottom:1024.546667pt;}
.y4{bottom:1042.946667pt;}
.y3{bottom:1061.346667pt;}
.y2{bottom:1079.746667pt;}
.y1{bottom:1098.146667pt;}
.h3{height:17.933333pt;}
.h4{height:40.200130pt;}
.h5{height:43.375000pt;}
.h2{height:43.593750pt;}
.h6{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x8{left:141.440000pt;}
.x7{left:160.640000pt;}
.x3{left:230.078667pt;}
.x5{left:382.560000pt;}
.x2{left:417.800000pt;}
.x6{left:536.640000pt;}
.x4{left:649.600000pt;}
}




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