
    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_53a86d9b55e3bc4532e5aa87.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_fd7d061b5b4cc291aac1e233.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_6bca28cc0b90d3c53384d36e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9cbaa9f926ee0f8d776f6188.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:22.314000px;}
.ls2{letter-spacing:39.600000px;}
.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;}
}
.wsc{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.ws68{word-spacing:-38.863800px;}
.ws22{word-spacing:-38.661000px;}
.ws6d{word-spacing:-38.657700px;}
.ws46{word-spacing:-38.655600px;}
.ws6c{word-spacing:-38.654400px;}
.ws6b{word-spacing:-38.653200px;}
.ws43{word-spacing:-38.650200px;}
.wsa{word-spacing:-38.648700px;}
.ws6a{word-spacing:-38.637600px;}
.ws7{word-spacing:-38.577000px;}
.ws65{word-spacing:-38.446800px;}
.ws4a{word-spacing:-38.440800px;}
.ws69{word-spacing:-38.166000px;}
.wsb{word-spacing:-38.160000px;}
.ws62{word-spacing:-38.157000px;}
.ws18{word-spacing:-38.147400px;}
.ws19{word-spacing:-38.134800px;}
.ws21{word-spacing:-37.935000px;}
.ws9{word-spacing:-37.934100px;}
.ws17{word-spacing:-37.918800px;}
.ws11{word-spacing:-37.909800px;}
.ws8{word-spacing:-37.853700px;}
.ws4f{word-spacing:-37.719000px;}
.ws3a{word-spacing:-37.222200px;}
.ws39{word-spacing:-37.215600px;}
.ws40{word-spacing:-37.215000px;}
.ws27{word-spacing:-37.213200px;}
.ws61{word-spacing:-37.200600px;}
.ws30{word-spacing:-37.195500px;}
.ws1a{word-spacing:-36.720000px;}
.ws4b{word-spacing:-35.760600px;}
.ws64{word-spacing:-35.557200px;}
.ws53{word-spacing:-35.055000px;}
.ws4c{word-spacing:-34.835400px;}
.ws55{word-spacing:-34.556400px;}
.ws52{word-spacing:-34.335000px;}
.ws20{word-spacing:-34.329600px;}
.wsf{word-spacing:-34.321500px;}
.ws31{word-spacing:-33.838200px;}
.ws16{word-spacing:-33.836400px;}
.ws2b{word-spacing:-33.611400px;}
.ws2c{word-spacing:-33.608400px;}
.ws6{word-spacing:-33.547800px;}
.ws28{word-spacing:-32.899200px;}
.ws29{word-spacing:-32.889600px;}
.ws4d{word-spacing:-32.391600px;}
.ws38{word-spacing:-32.389200px;}
.ws24{word-spacing:-32.171400px;}
.ws56{word-spacing:-32.170200px;}
.ws1c{word-spacing:-31.452000px;}
.wse{word-spacing:-31.244400px;}
.ws41{word-spacing:-30.951000px;}
.ws60{word-spacing:-30.945600px;}
.ws47{word-spacing:-30.724200px;}
.ws66{word-spacing:-30.013200px;}
.ws5b{word-spacing:-30.005400px;}
.ws34{word-spacing:-29.520000px;}
.ws54{word-spacing:-29.302800px;}
.ws3c{word-spacing:-29.300100px;}
.ws5a{word-spacing:-29.295000px;}
.ws44{word-spacing:-29.293200px;}
.ws50{word-spacing:-29.083200px;}
.ws5c{word-spacing:-28.783800px;}
.ws67{word-spacing:-28.360800px;}
.ws26{word-spacing:-27.639000px;}
.ws3e{word-spacing:-26.920800px;}
.ws49{word-spacing:-26.635200px;}
.ws25{word-spacing:-26.405400px;}
.ws51{word-spacing:-25.693200px;}
.ws58{word-spacing:-24.471000px;}
.ws1f{word-spacing:-24.255000px;}
.ws5d{word-spacing:-24.244200px;}
.ws45{word-spacing:-23.754000px;}
.ws4{word-spacing:-23.687700px;}
.ws0{word-spacing:-23.390100px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.ws2a{word-spacing:-22.816800px;}
.ws1d{word-spacing:-22.095000px;}
.ws3f{word-spacing:-20.858400px;}
.ws57{word-spacing:-19.927200px;}
.ws13{word-spacing:-19.926000px;}
.ws12{word-spacing:-18.712800px;}
.ws4e{word-spacing:-18.499200px;}
.ws1e{word-spacing:-18.490500px;}
.ws3d{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.998200px;}
.ws59{word-spacing:-16.342800px;}
.ws32{word-spacing:-16.329600px;}
.ws2f{word-spacing:-15.840000px;}
.ws42{word-spacing:-14.169600px;}
.ws37{word-spacing:-14.166000px;}
.ws23{word-spacing:-12.744000px;}
.ws33{word-spacing:-12.730800px;}
.ws2d{word-spacing:-12.004200px;}
.ws14{word-spacing:-9.360000px;}
.ws36{word-spacing:-6.982200px;}
.wsd{word-spacing:-6.960600px;}
.ws5f{word-spacing:-6.486000px;}
.ws63{word-spacing:-6.254100px;}
.ws1b{word-spacing:-5.544000px;}
.ws48{word-spacing:-5.315400px;}
.ws3{word-spacing:-5.177700px;}
.ws5e{word-spacing:-4.605000px;}
.ws35{word-spacing:-3.585600px;}
.ws2e{word-spacing:0.000000px;}
.ws3b{word-spacing:22.055400px;}
.ws10{word-spacing:37.668600px;}
._16{margin-left:-2.181600px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._1c{width:2.181600px;}
._0{width:19.142100px;}
._f{width:21.001500px;}
._1d{width:22.166700px;}
._8{width:23.371500px;}
._14{width:24.943800px;}
._7{width:26.115300px;}
._1f{width:27.210000px;}
._1a{width:28.492500px;}
._1b{width:30.432900px;}
._15{width:31.439400px;}
._12{width:33.186600px;}
._20{width:34.380000px;}
._11{width:35.694900px;}
._a{width:37.133100px;}
._d{width:38.232000px;}
._e{width:39.598200px;}
._1e{width:40.903800px;}
._17{width:42.010200px;}
._19{width:43.806600px;}
._13{width:44.850000px;}
._c{width:47.790900px;}
._5{width:50.005800px;}
._6{width:51.168600px;}
._10{width:52.470900px;}
._18{width:53.611200px;}
._b{width:74.368200px;}
._9{width:94.824000px;}
._1{width:972.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;}
.y2d{bottom:138.675000px;}
.y54{bottom:156.675000px;}
.y2c{bottom:159.375000px;}
.y53{bottom:177.375000px;}
.y2b{bottom:180.075000px;}
.y52{bottom:198.075000px;}
.y2a{bottom:200.775000px;}
.y76{bottom:203.836500px;}
.y29{bottom:221.475000px;}
.y75{bottom:236.415000px;}
.y51{bottom:239.836500px;}
.y28{bottom:242.175000px;}
.y50{bottom:260.536500px;}
.y27{bottom:262.875000px;}
.y74{bottom:269.175000px;}
.y4f{bottom:281.236500px;}
.y26{bottom:283.575000px;}
.y73{bottom:301.936500px;}
.y25{bottom:304.275000px;}
.y4e{bottom:322.815000px;}
.y24{bottom:324.975000px;}
.y72{bottom:334.515000px;}
.y4d{bottom:343.515000px;}
.y4c{bottom:364.215000px;}
.y23{bottom:366.736500px;}
.y71{bottom:367.275000px;}
.y4b{bottom:384.915000px;}
.y22{bottom:387.436500px;}
.y70{bottom:400.036500px;}
.y21{bottom:408.136500px;}
.y4a{bottom:426.675000px;}
.y20{bottom:428.836500px;}
.y6f{bottom:432.615000px;}
.y49{bottom:447.375000px;}
.y1f{bottom:449.536500px;}
.y48{bottom:468.075000px;}
.y1e{bottom:470.236500px;}
.y6e{bottom:474.375000px;}
.y1d{bottom:490.936500px;}
.y6d{bottom:495.075000px;}
.y47{bottom:509.836500px;}
.y1c{bottom:511.636500px;}
.y6c{bottom:515.775000px;}
.y46{bottom:530.536500px;}
.y1b{bottom:532.336500px;}
.y6b{bottom:536.475000px;}
.y45{bottom:551.236500px;}
.y6a{bottom:557.175000px;}
.y1a{bottom:573.915000px;}
.y69{bottom:577.875000px;}
.y44{bottom:592.815000px;}
.y43{bottom:613.515000px;}
.y19{bottom:615.675000px;}
.y68{bottom:619.636500px;}
.y42{bottom:634.215000px;}
.y18{bottom:636.375000px;}
.y67{bottom:640.336500px;}
.y41{bottom:654.915000px;}
.y17{bottom:657.075000px;}
.y66{bottom:661.036500px;}
.y40{bottom:675.615000px;}
.y16{bottom:677.775000px;}
.y65{bottom:681.736500px;}
.y3f{bottom:696.315000px;}
.y15{bottom:698.475000px;}
.y64{bottom:702.436500px;}
.y3e{bottom:717.015000px;}
.y63{bottom:723.136500px;}
.y3d{bottom:737.715000px;}
.y14{bottom:739.875000px;}
.y62{bottom:743.836500px;}
.y61{bottom:764.536500px;}
.y3c{bottom:779.475000px;}
.y13{bottom:781.636500px;}
.y60{bottom:785.236500px;}
.y3b{bottom:800.175000px;}
.y12{bottom:802.336500px;}
.y5f{bottom:805.936500px;}
.y3a{bottom:820.875000px;}
.y11{bottom:823.036500px;}
.y5e{bottom:826.636500px;}
.y39{bottom:841.575000px;}
.y10{bottom:843.736500px;}
.y5d{bottom:847.336500px;}
.y38{bottom:862.275000px;}
.yf{bottom:864.436500px;}
.y37{bottom:882.975000px;}
.y5c{bottom:888.915000px;}
.y36{bottom:903.675000px;}
.ye{bottom:906.015000px;}
.y35{bottom:924.375000px;}
.y5b{bottom:924.736500px;}
.yd{bottom:941.836500px;}
.y34{bottom:945.075000px;}
.y5a{bottom:945.436500px;}
.y33{bottom:965.775000px;}
.y59{bottom:966.136500px;}
.yc{bottom:977.475000px;}
.y32{bottom:986.475000px;}
.y58{bottom:986.836500px;}
.yb{bottom:998.175000px;}
.y31{bottom:1007.175000px;}
.y57{bottom:1007.536500px;}
.y30{bottom:1027.875000px;}
.y56{bottom:1028.236500px;}
.y55{bottom:1048.936500px;}
.ya{bottom:1054.515000px;}
.y2f{bottom:1069.636500px;}
.y9{bottom:1075.215000px;}
.y2e{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:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x9{left:181.620000px;}
.x3{left:211.860000px;}
.x4{left:305.100000px;}
.x6{left:380.700000px;}
.x7{left:456.300000px;}
.x2{left:465.825000px;}
.x8{left:564.660000px;}
.x5{left:582.660000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:19.834667pt;}
.ls2{letter-spacing:35.200000pt;}
.wsc{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.ws68{word-spacing:-34.545600pt;}
.ws22{word-spacing:-34.365333pt;}
.ws6d{word-spacing:-34.362400pt;}
.ws46{word-spacing:-34.360533pt;}
.ws6c{word-spacing:-34.359467pt;}
.ws6b{word-spacing:-34.358400pt;}
.ws43{word-spacing:-34.355733pt;}
.wsa{word-spacing:-34.354400pt;}
.ws6a{word-spacing:-34.344533pt;}
.ws7{word-spacing:-34.290667pt;}
.ws65{word-spacing:-34.174933pt;}
.ws4a{word-spacing:-34.169600pt;}
.ws69{word-spacing:-33.925333pt;}
.wsb{word-spacing:-33.920000pt;}
.ws62{word-spacing:-33.917333pt;}
.ws18{word-spacing:-33.908800pt;}
.ws19{word-spacing:-33.897600pt;}
.ws21{word-spacing:-33.720000pt;}
.ws9{word-spacing:-33.719200pt;}
.ws17{word-spacing:-33.705600pt;}
.ws11{word-spacing:-33.697600pt;}
.ws8{word-spacing:-33.647733pt;}
.ws4f{word-spacing:-33.528000pt;}
.ws3a{word-spacing:-33.086400pt;}
.ws39{word-spacing:-33.080533pt;}
.ws40{word-spacing:-33.080000pt;}
.ws27{word-spacing:-33.078400pt;}
.ws61{word-spacing:-33.067200pt;}
.ws30{word-spacing:-33.062667pt;}
.ws1a{word-spacing:-32.640000pt;}
.ws4b{word-spacing:-31.787200pt;}
.ws64{word-spacing:-31.606400pt;}
.ws53{word-spacing:-31.160000pt;}
.ws4c{word-spacing:-30.964800pt;}
.ws55{word-spacing:-30.716800pt;}
.ws52{word-spacing:-30.520000pt;}
.ws20{word-spacing:-30.515200pt;}
.wsf{word-spacing:-30.508000pt;}
.ws31{word-spacing:-30.078400pt;}
.ws16{word-spacing:-30.076800pt;}
.ws2b{word-spacing:-29.876800pt;}
.ws2c{word-spacing:-29.874133pt;}
.ws6{word-spacing:-29.820267pt;}
.ws28{word-spacing:-29.243733pt;}
.ws29{word-spacing:-29.235200pt;}
.ws4d{word-spacing:-28.792533pt;}
.ws38{word-spacing:-28.790400pt;}
.ws24{word-spacing:-28.596800pt;}
.ws56{word-spacing:-28.595733pt;}
.ws1c{word-spacing:-27.957333pt;}
.wse{word-spacing:-27.772800pt;}
.ws41{word-spacing:-27.512000pt;}
.ws60{word-spacing:-27.507200pt;}
.ws47{word-spacing:-27.310400pt;}
.ws66{word-spacing:-26.678400pt;}
.ws5b{word-spacing:-26.671467pt;}
.ws34{word-spacing:-26.240000pt;}
.ws54{word-spacing:-26.046933pt;}
.ws3c{word-spacing:-26.044533pt;}
.ws5a{word-spacing:-26.040000pt;}
.ws44{word-spacing:-26.038400pt;}
.ws50{word-spacing:-25.851733pt;}
.ws5c{word-spacing:-25.585600pt;}
.ws67{word-spacing:-25.209600pt;}
.ws26{word-spacing:-24.568000pt;}
.ws3e{word-spacing:-23.929600pt;}
.ws49{word-spacing:-23.675733pt;}
.ws25{word-spacing:-23.471467pt;}
.ws51{word-spacing:-22.838400pt;}
.ws58{word-spacing:-21.752000pt;}
.ws1f{word-spacing:-21.560000pt;}
.ws5d{word-spacing:-21.550400pt;}
.ws45{word-spacing:-21.114667pt;}
.ws4{word-spacing:-21.055733pt;}
.ws0{word-spacing:-20.791200pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.ws2a{word-spacing:-20.281600pt;}
.ws1d{word-spacing:-19.640000pt;}
.ws3f{word-spacing:-18.540800pt;}
.ws57{word-spacing:-17.713067pt;}
.ws13{word-spacing:-17.712000pt;}
.ws12{word-spacing:-16.633600pt;}
.ws4e{word-spacing:-16.443733pt;}
.ws1e{word-spacing:-16.436000pt;}
.ws3d{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.998400pt;}
.ws59{word-spacing:-14.526933pt;}
.ws32{word-spacing:-14.515200pt;}
.ws2f{word-spacing:-14.080000pt;}
.ws42{word-spacing:-12.595200pt;}
.ws37{word-spacing:-12.592000pt;}
.ws23{word-spacing:-11.328000pt;}
.ws33{word-spacing:-11.316267pt;}
.ws2d{word-spacing:-10.670400pt;}
.ws14{word-spacing:-8.320000pt;}
.ws36{word-spacing:-6.206400pt;}
.wsd{word-spacing:-6.187200pt;}
.ws5f{word-spacing:-5.765333pt;}
.ws63{word-spacing:-5.559200pt;}
.ws1b{word-spacing:-4.928000pt;}
.ws48{word-spacing:-4.724800pt;}
.ws3{word-spacing:-4.602400pt;}
.ws5e{word-spacing:-4.093333pt;}
.ws35{word-spacing:-3.187200pt;}
.ws2e{word-spacing:0.000000pt;}
.ws3b{word-spacing:19.604800pt;}
.ws10{word-spacing:33.483200pt;}
._16{margin-left:-1.939200pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._1c{width:1.939200pt;}
._0{width:17.015200pt;}
._f{width:18.668000pt;}
._1d{width:19.703733pt;}
._8{width:20.774667pt;}
._14{width:22.172267pt;}
._7{width:23.213600pt;}
._1f{width:24.186667pt;}
._1a{width:25.326667pt;}
._1b{width:27.051467pt;}
._15{width:27.946133pt;}
._12{width:29.499200pt;}
._20{width:30.560000pt;}
._11{width:31.728800pt;}
._a{width:33.007200pt;}
._d{width:33.984000pt;}
._e{width:35.198400pt;}
._1e{width:36.358933pt;}
._17{width:37.342400pt;}
._19{width:38.939200pt;}
._13{width:39.866667pt;}
._c{width:42.480800pt;}
._5{width:44.449600pt;}
._6{width:45.483200pt;}
._10{width:46.640800pt;}
._18{width:47.654400pt;}
._b{width:66.105067pt;}
._9{width:84.288000pt;}
._1{width:864.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;}
.y2d{bottom:123.266667pt;}
.y54{bottom:139.266667pt;}
.y2c{bottom:141.666667pt;}
.y53{bottom:157.666667pt;}
.y2b{bottom:160.066667pt;}
.y52{bottom:176.066667pt;}
.y2a{bottom:178.466667pt;}
.y76{bottom:181.188000pt;}
.y29{bottom:196.866667pt;}
.y75{bottom:210.146667pt;}
.y51{bottom:213.188000pt;}
.y28{bottom:215.266667pt;}
.y50{bottom:231.588000pt;}
.y27{bottom:233.666667pt;}
.y74{bottom:239.266667pt;}
.y4f{bottom:249.988000pt;}
.y26{bottom:252.066667pt;}
.y73{bottom:268.388000pt;}
.y25{bottom:270.466667pt;}
.y4e{bottom:286.946667pt;}
.y24{bottom:288.866667pt;}
.y72{bottom:297.346667pt;}
.y4d{bottom:305.346667pt;}
.y4c{bottom:323.746667pt;}
.y23{bottom:325.988000pt;}
.y71{bottom:326.466667pt;}
.y4b{bottom:342.146667pt;}
.y22{bottom:344.388000pt;}
.y70{bottom:355.588000pt;}
.y21{bottom:362.788000pt;}
.y4a{bottom:379.266667pt;}
.y20{bottom:381.188000pt;}
.y6f{bottom:384.546667pt;}
.y49{bottom:397.666667pt;}
.y1f{bottom:399.588000pt;}
.y48{bottom:416.066667pt;}
.y1e{bottom:417.988000pt;}
.y6e{bottom:421.666667pt;}
.y1d{bottom:436.388000pt;}
.y6d{bottom:440.066667pt;}
.y47{bottom:453.188000pt;}
.y1c{bottom:454.788000pt;}
.y6c{bottom:458.466667pt;}
.y46{bottom:471.588000pt;}
.y1b{bottom:473.188000pt;}
.y6b{bottom:476.866667pt;}
.y45{bottom:489.988000pt;}
.y6a{bottom:495.266667pt;}
.y1a{bottom:510.146667pt;}
.y69{bottom:513.666667pt;}
.y44{bottom:526.946667pt;}
.y43{bottom:545.346667pt;}
.y19{bottom:547.266667pt;}
.y68{bottom:550.788000pt;}
.y42{bottom:563.746667pt;}
.y18{bottom:565.666667pt;}
.y67{bottom:569.188000pt;}
.y41{bottom:582.146667pt;}
.y17{bottom:584.066667pt;}
.y66{bottom:587.588000pt;}
.y40{bottom:600.546667pt;}
.y16{bottom:602.466667pt;}
.y65{bottom:605.988000pt;}
.y3f{bottom:618.946667pt;}
.y15{bottom:620.866667pt;}
.y64{bottom:624.388000pt;}
.y3e{bottom:637.346667pt;}
.y63{bottom:642.788000pt;}
.y3d{bottom:655.746667pt;}
.y14{bottom:657.666667pt;}
.y62{bottom:661.188000pt;}
.y61{bottom:679.588000pt;}
.y3c{bottom:692.866667pt;}
.y13{bottom:694.788000pt;}
.y60{bottom:697.988000pt;}
.y3b{bottom:711.266667pt;}
.y12{bottom:713.188000pt;}
.y5f{bottom:716.388000pt;}
.y3a{bottom:729.666667pt;}
.y11{bottom:731.588000pt;}
.y5e{bottom:734.788000pt;}
.y39{bottom:748.066667pt;}
.y10{bottom:749.988000pt;}
.y5d{bottom:753.188000pt;}
.y38{bottom:766.466667pt;}
.yf{bottom:768.388000pt;}
.y37{bottom:784.866667pt;}
.y5c{bottom:790.146667pt;}
.y36{bottom:803.266667pt;}
.ye{bottom:805.346667pt;}
.y35{bottom:821.666667pt;}
.y5b{bottom:821.988000pt;}
.yd{bottom:837.188000pt;}
.y34{bottom:840.066667pt;}
.y5a{bottom:840.388000pt;}
.y33{bottom:858.466667pt;}
.y59{bottom:858.788000pt;}
.yc{bottom:868.866667pt;}
.y32{bottom:876.866667pt;}
.y58{bottom:877.188000pt;}
.yb{bottom:887.266667pt;}
.y31{bottom:895.266667pt;}
.y57{bottom:895.588000pt;}
.y30{bottom:913.666667pt;}
.y56{bottom:913.988000pt;}
.y55{bottom:932.388000pt;}
.ya{bottom:937.346667pt;}
.y2f{bottom:950.788000pt;}
.y9{bottom:955.746667pt;}
.y2e{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:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x9{left:161.440000pt;}
.x3{left:188.320000pt;}
.x4{left:271.200000pt;}
.x6{left:338.400000pt;}
.x7{left:405.600000pt;}
.x2{left:414.066667pt;}
.x8{left:501.920000pt;}
.x5{left:517.920000pt;}
}




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