
    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_98cdaa87d655ad374de5c94c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_810962acce73948285850f4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.070312;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;}
.v2{vertical-align:33.120000px;}
.v1{vertical-align:48.982320px;}
.ls13{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.336960px;}
.lsb{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.241200px;}
.ls1b{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.192960px;}
.ls11{letter-spacing:-0.191520px;}
.ls10{letter-spacing:-0.167760px;}
.ls1a{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.119520px;}
.ls19{letter-spacing:-0.084240px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.096480px;}
.lsd{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.131760px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.336960px;}
.ls5{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.864000px;}
.ls9{letter-spacing:1.584000px;}
.ls20{letter-spacing:1.872000px;}
.ls17{letter-spacing:32.544000px;}
.ls1c{letter-spacing:36.144000px;}
.ls1d{letter-spacing:39.744000px;}
.ls18{letter-spacing:62.064000px;}
.ls1e{letter-spacing:91.584000px;}
.ls16{letter-spacing:92.304000px;}
.ls3{letter-spacing:435.229920px;}
.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;}
}
.ws1{word-spacing:-26.621280px;}
.ws0{word-spacing:-26.429760px;}
.ws25{word-spacing:-23.755680px;}
.ws26{word-spacing:-23.334480px;}
.ws2{word-spacing:-23.081760px;}
.ws37{word-spacing:-21.888000px;}
.ws5{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws27{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws29{word-spacing:-19.872000px;}
.ws2a{word-spacing:-19.800000px;}
.ws28{word-spacing:-19.584000px;}
.ws6{word-spacing:-19.296000px;}
.ws36{word-spacing:-13.410720px;}
.ws33{word-spacing:-2.304000px;}
.ws24{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.360720px;}
.wsb{word-spacing:-0.298800px;}
.ws3b{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.241200px;}
.ws9{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.108000px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:0.059760px;}
.ws13{word-spacing:0.191520px;}
.ws10{word-spacing:0.241200px;}
.ws11{word-spacing:0.335520px;}
.ws22{word-spacing:0.432000px;}
.wse{word-spacing:0.482400px;}
.wsf{word-spacing:0.530640px;}
.ws8{word-spacing:0.540000px;}
.ws1b{word-spacing:0.576000px;}
.ws2b{word-spacing:0.673920px;}
.ws38{word-spacing:0.702000px;}
.ws41{word-spacing:0.720000px;}
.ws19{word-spacing:1.296000px;}
.ws17{word-spacing:2.016000px;}
.ws1c{word-spacing:3.456000px;}
.ws1a{word-spacing:4.176000px;}
.ws21{word-spacing:4.896000px;}
.ws23{word-spacing:7.056000px;}
.ws1e{word-spacing:8.496000px;}
.ws2f{word-spacing:9.216000px;}
.ws32{word-spacing:9.936000px;}
.ws44{word-spacing:10.656000px;}
.ws3c{word-spacing:12.096000px;}
.ws34{word-spacing:12.816000px;}
.ws14{word-spacing:13.536000px;}
.ws1d{word-spacing:18.576000px;}
.ws42{word-spacing:20.016000px;}
.ws1f{word-spacing:22.176000px;}
.ws35{word-spacing:26.496000px;}
.ws15{word-spacing:28.656000px;}
.ws31{word-spacing:29.376000px;}
.ws45{word-spacing:31.536000px;}
.ws30{word-spacing:33.696000px;}
.ws20{word-spacing:35.856000px;}
.ws39{word-spacing:36.576000px;}
.ws3a{word-spacing:37.296000px;}
.ws16{word-spacing:38.016000px;}
.ws40{word-spacing:39.456000px;}
.ws43{word-spacing:41.616000px;}
.ws2e{word-spacing:48.816000px;}
.ws3d{word-spacing:53.136000px;}
.ws2d{word-spacing:55.296000px;}
.ws2c{word-spacing:55.728000px;}
.ws3f{word-spacing:61.776000px;}
.ws3e{word-spacing:63.216000px;}
._3{margin-left:-2.979360px;}
._1{margin-left:-1.188000px;}
._0{width:1.080000px;}
._2{width:2.134080px;}
._4{width:3.303360px;}
._5{width:22.644000px;}
._9{width:38.088000px;}
._8{width:41.688000px;}
._7{width:55.584000px;}
._6{width:142.112880px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs6{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:45.540000px;}
.y6{bottom:46.074420px;}
.y5{bottom:63.360000px;}
.y4{bottom:79.920000px;}
.y4f{bottom:109.980000px;}
.y4e{bottom:130.680000px;}
.y6a{bottom:143.820000px;}
.y4d{bottom:169.380000px;}
.y2a{bottom:178.020000px;}
.y4c{bottom:190.080000px;}
.y29{bottom:198.720000px;}
.y28{bottom:219.420000px;}
.y4b{bottom:228.780000px;}
.y27{bottom:239.940000px;}
.y4a{bottom:249.480000px;}
.y26{bottom:288.360000px;}
.y49{bottom:304.920000px;}
.y25{bottom:309.060000px;}
.y24{bottom:329.760000px;}
.y48{bottom:346.500000px;}
.y47{bottom:367.200000px;}
.y23{bottom:370.260000px;}
.y46{bottom:387.900000px;}
.y22{bottom:390.960000px;}
.y45{bottom:409.680000px;}
.y21{bottom:411.660000px;}
.y44{bottom:430.380000px;}
.y20{bottom:432.360000px;}
.y1f{bottom:453.060000px;}
.y43{bottom:470.160000px;}
.y42{bottom:490.860000px;}
.y69{bottom:492.480000px;}
.y1e{bottom:496.080000px;}
.y68{bottom:513.180000px;}
.y1d{bottom:516.780000px;}
.y41{bottom:529.560000px;}
.y1c{bottom:537.480000px;}
.y40{bottom:550.260000px;}
.y67{bottom:551.880000px;}
.y1b{bottom:558.180000px;}
.y3f{bottom:570.960000px;}
.y66{bottom:572.580000px;}
.y1a{bottom:578.880000px;}
.y65{bottom:593.280000px;}
.y19{bottom:599.580000px;}
.y3e{bottom:613.620000px;}
.y64{bottom:631.980000px;}
.y3d{bottom:634.140000px;}
.y18{bottom:641.160000px;}
.y63{bottom:652.680000px;}
.y17{bottom:661.860000px;}
.y3c{bottom:676.080000px;}
.y16{bottom:682.560000px;}
.y62{bottom:694.980000px;}
.y15{bottom:703.260000px;}
.y3b{bottom:714.780000px;}
.y61{bottom:715.680000px;}
.y14{bottom:723.960000px;}
.y3a{bottom:735.480000px;}
.y60{bottom:736.200000px;}
.y39{bottom:756.180000px;}
.y13{bottom:773.280000px;}
.y5f{bottom:775.620000px;}
.y38{bottom:776.880000px;}
.y5e{bottom:796.320000px;}
.y37{bottom:797.580000px;}
.y12{bottom:814.860000px;}
.y5d{bottom:817.020000px;}
.y36{bottom:834.120000px;}
.y5c{bottom:837.720000px;}
.y11{bottom:841.326480px;}
.y35{bottom:854.820000px;}
.y5b{bottom:858.420000px;}
.y10{bottom:868.857480px;}
.y34{bottom:875.520000px;}
.yf{bottom:896.580000px;}
.y5a{bottom:897.120000px;}
.y33{bottom:914.220000px;}
.y59{bottom:917.820000px;}
.y32{bottom:934.920000px;}
.y58{bottom:938.520000px;}
.ye{bottom:946.439640px;}
.y57{bottom:959.220000px;}
.yd{bottom:971.645040px;}
.y31{bottom:973.620000px;}
.y56{bottom:979.920000px;}
.yc{bottom:992.340000px;}
.y30{bottom:994.320000px;}
.y55{bottom:1000.620000px;}
.y2f{bottom:1015.020000px;}
.yb{bottom:1025.814420px;}
.y9{bottom:1026.351000px;}
.y54{bottom:1039.320000px;}
.ya{bottom:1055.880000px;}
.y8{bottom:1060.920000px;}
.y2e{bottom:1074.426300px;}
.y53{bottom:1078.020000px;}
.y2d{bottom:1098.540000px;}
.y52{bottom:1098.720000px;}
.y7{bottom:1104.658560px;}
.y51{bottom:1119.420000px;}
.y2c{bottom:1140.120000px;}
.y3{bottom:1142.280000px;}
.y2{bottom:1149.120000px;}
.y1{bottom:1183.680000px;}
.y50{bottom:1199.520000px;}
.h8{height:35.120039px;}
.h4{height:41.479805px;}
.h6{height:43.506914px;}
.h5{height:46.432617px;}
.hc{height:61.329023px;}
.hb{height:61.910156px;}
.ha{height:69.715898px;}
.hd{height:74.599805px;}
.h3{height:78.626953px;}
.h7{height:87.538008px;}
.h2{height:95.924883px;}
.h9{height:171.116187px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.380000px;}
.x6{left:160.200000px;}
.x7{left:195.822720px;}
.x1{left:201.960000px;}
.x8{left:227.878380px;}
.x5{left:510.480000px;}
.x2{left:535.140000px;}
.xa{left:707.935500px;}
.x9{left:735.840000px;}
.x4{left:750.420000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.v1{vertical-align:43.539840pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.299520pt;}
.lsb{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.214400pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.171520pt;}
.ls11{letter-spacing:-0.170240pt;}
.ls10{letter-spacing:-0.149120pt;}
.ls1a{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.106240pt;}
.ls19{letter-spacing:-0.074880pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.085760pt;}
.lsd{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.117120pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.299520pt;}
.ls5{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls9{letter-spacing:1.408000pt;}
.ls20{letter-spacing:1.664000pt;}
.ls17{letter-spacing:28.928000pt;}
.ls1c{letter-spacing:32.128000pt;}
.ls1d{letter-spacing:35.328000pt;}
.ls18{letter-spacing:55.168000pt;}
.ls1e{letter-spacing:81.408000pt;}
.ls16{letter-spacing:82.048000pt;}
.ls3{letter-spacing:386.871040pt;}
.ws1{word-spacing:-23.663360pt;}
.ws0{word-spacing:-23.493120pt;}
.ws25{word-spacing:-21.116160pt;}
.ws26{word-spacing:-20.741760pt;}
.ws2{word-spacing:-20.517120pt;}
.ws37{word-spacing:-19.456000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws27{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws29{word-spacing:-17.664000pt;}
.ws2a{word-spacing:-17.600000pt;}
.ws28{word-spacing:-17.408000pt;}
.ws6{word-spacing:-17.152000pt;}
.ws36{word-spacing:-11.920640pt;}
.ws33{word-spacing:-2.048000pt;}
.ws24{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.320640pt;}
.wsb{word-spacing:-0.265600pt;}
.ws3b{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.214400pt;}
.ws9{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.096000pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053120pt;}
.ws13{word-spacing:0.170240pt;}
.ws10{word-spacing:0.214400pt;}
.ws11{word-spacing:0.298240pt;}
.ws22{word-spacing:0.384000pt;}
.wse{word-spacing:0.428800pt;}
.wsf{word-spacing:0.471680pt;}
.ws8{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.512000pt;}
.ws2b{word-spacing:0.599040pt;}
.ws38{word-spacing:0.624000pt;}
.ws41{word-spacing:0.640000pt;}
.ws19{word-spacing:1.152000pt;}
.ws17{word-spacing:1.792000pt;}
.ws1c{word-spacing:3.072000pt;}
.ws1a{word-spacing:3.712000pt;}
.ws21{word-spacing:4.352000pt;}
.ws23{word-spacing:6.272000pt;}
.ws1e{word-spacing:7.552000pt;}
.ws2f{word-spacing:8.192000pt;}
.ws32{word-spacing:8.832000pt;}
.ws44{word-spacing:9.472000pt;}
.ws3c{word-spacing:10.752000pt;}
.ws34{word-spacing:11.392000pt;}
.ws14{word-spacing:12.032000pt;}
.ws1d{word-spacing:16.512000pt;}
.ws42{word-spacing:17.792000pt;}
.ws1f{word-spacing:19.712000pt;}
.ws35{word-spacing:23.552000pt;}
.ws15{word-spacing:25.472000pt;}
.ws31{word-spacing:26.112000pt;}
.ws45{word-spacing:28.032000pt;}
.ws30{word-spacing:29.952000pt;}
.ws20{word-spacing:31.872000pt;}
.ws39{word-spacing:32.512000pt;}
.ws3a{word-spacing:33.152000pt;}
.ws16{word-spacing:33.792000pt;}
.ws40{word-spacing:35.072000pt;}
.ws43{word-spacing:36.992000pt;}
.ws2e{word-spacing:43.392000pt;}
.ws3d{word-spacing:47.232000pt;}
.ws2d{word-spacing:49.152000pt;}
.ws2c{word-spacing:49.536000pt;}
.ws3f{word-spacing:54.912000pt;}
.ws3e{word-spacing:56.192000pt;}
._3{margin-left:-2.648320pt;}
._1{margin-left:-1.056000pt;}
._0{width:0.960000pt;}
._2{width:1.896960pt;}
._4{width:2.936320pt;}
._5{width:20.128000pt;}
._9{width:33.856000pt;}
._8{width:37.056000pt;}
._7{width:49.408000pt;}
._6{width:126.322560pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs6{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:40.480000pt;}
.y6{bottom:40.955040pt;}
.y5{bottom:56.320000pt;}
.y4{bottom:71.040000pt;}
.y4f{bottom:97.760000pt;}
.y4e{bottom:116.160000pt;}
.y6a{bottom:127.840000pt;}
.y4d{bottom:150.560000pt;}
.y2a{bottom:158.240000pt;}
.y4c{bottom:168.960000pt;}
.y29{bottom:176.640000pt;}
.y28{bottom:195.040000pt;}
.y4b{bottom:203.360000pt;}
.y27{bottom:213.280000pt;}
.y4a{bottom:221.760000pt;}
.y26{bottom:256.320000pt;}
.y49{bottom:271.040000pt;}
.y25{bottom:274.720000pt;}
.y24{bottom:293.120000pt;}
.y48{bottom:308.000000pt;}
.y47{bottom:326.400000pt;}
.y23{bottom:329.120000pt;}
.y46{bottom:344.800000pt;}
.y22{bottom:347.520000pt;}
.y45{bottom:364.160000pt;}
.y21{bottom:365.920000pt;}
.y44{bottom:382.560000pt;}
.y20{bottom:384.320000pt;}
.y1f{bottom:402.720000pt;}
.y43{bottom:417.920000pt;}
.y42{bottom:436.320000pt;}
.y69{bottom:437.760000pt;}
.y1e{bottom:440.960000pt;}
.y68{bottom:456.160000pt;}
.y1d{bottom:459.360000pt;}
.y41{bottom:470.720000pt;}
.y1c{bottom:477.760000pt;}
.y40{bottom:489.120000pt;}
.y67{bottom:490.560000pt;}
.y1b{bottom:496.160000pt;}
.y3f{bottom:507.520000pt;}
.y66{bottom:508.960000pt;}
.y1a{bottom:514.560000pt;}
.y65{bottom:527.360000pt;}
.y19{bottom:532.960000pt;}
.y3e{bottom:545.440000pt;}
.y64{bottom:561.760000pt;}
.y3d{bottom:563.680000pt;}
.y18{bottom:569.920000pt;}
.y63{bottom:580.160000pt;}
.y17{bottom:588.320000pt;}
.y3c{bottom:600.960000pt;}
.y16{bottom:606.720000pt;}
.y62{bottom:617.760000pt;}
.y15{bottom:625.120000pt;}
.y3b{bottom:635.360000pt;}
.y61{bottom:636.160000pt;}
.y14{bottom:643.520000pt;}
.y3a{bottom:653.760000pt;}
.y60{bottom:654.400000pt;}
.y39{bottom:672.160000pt;}
.y13{bottom:687.360000pt;}
.y5f{bottom:689.440000pt;}
.y38{bottom:690.560000pt;}
.y5e{bottom:707.840000pt;}
.y37{bottom:708.960000pt;}
.y12{bottom:724.320000pt;}
.y5d{bottom:726.240000pt;}
.y36{bottom:741.440000pt;}
.y5c{bottom:744.640000pt;}
.y11{bottom:747.845760pt;}
.y35{bottom:759.840000pt;}
.y5b{bottom:763.040000pt;}
.y10{bottom:772.317760pt;}
.y34{bottom:778.240000pt;}
.yf{bottom:796.960000pt;}
.y5a{bottom:797.440000pt;}
.y33{bottom:812.640000pt;}
.y59{bottom:815.840000pt;}
.y32{bottom:831.040000pt;}
.y58{bottom:834.240000pt;}
.ye{bottom:841.279680pt;}
.y57{bottom:852.640000pt;}
.yd{bottom:863.684480pt;}
.y31{bottom:865.440000pt;}
.y56{bottom:871.040000pt;}
.yc{bottom:882.080000pt;}
.y30{bottom:883.840000pt;}
.y55{bottom:889.440000pt;}
.y2f{bottom:902.240000pt;}
.yb{bottom:911.835040pt;}
.y9{bottom:912.312000pt;}
.y54{bottom:923.840000pt;}
.ya{bottom:938.560000pt;}
.y8{bottom:943.040000pt;}
.y2e{bottom:955.045600pt;}
.y53{bottom:958.240000pt;}
.y2d{bottom:976.480000pt;}
.y52{bottom:976.640000pt;}
.y7{bottom:981.918720pt;}
.y51{bottom:995.040000pt;}
.y2c{bottom:1013.440000pt;}
.y3{bottom:1015.360000pt;}
.y2{bottom:1021.440000pt;}
.y1{bottom:1052.160000pt;}
.y50{bottom:1066.240000pt;}
.h8{height:31.217812pt;}
.h4{height:36.870937pt;}
.h6{height:38.672812pt;}
.h5{height:41.273438pt;}
.hc{height:54.514687pt;}
.hb{height:55.031250pt;}
.ha{height:61.969687pt;}
.hd{height:66.310937pt;}
.h3{height:69.890625pt;}
.h7{height:77.811562pt;}
.h2{height:85.266562pt;}
.h9{height:152.103278pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.560000pt;}
.x6{left:142.400000pt;}
.x7{left:174.064640pt;}
.x1{left:179.520000pt;}
.x8{left:202.558560pt;}
.x5{left:453.760000pt;}
.x2{left:475.680000pt;}
.xa{left:629.276000pt;}
.x9{left:654.080000pt;}
.x4{left:667.040000pt;}
}




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