
    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_08910e80b217d1f52be45a05.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_0e00cd46b1f43dbae0f89f9a.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;}
.ls1d{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-0.594000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.336960px;}
.lsa{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.287280px;}
.lse{letter-spacing:-0.241200px;}
.ls1c{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.192960px;}
.ls11{letter-spacing:-0.191520px;}
.lsf{letter-spacing:-0.167760px;}
.ls14{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.119520px;}
.ls15{letter-spacing:-0.084240px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.096480px;}
.lsc{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.131760px;}
.ls13{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.336960px;}
.ls5{letter-spacing:0.766080px;}
.ls1a{letter-spacing:7.344000px;}
.ls19{letter-spacing:15.264000px;}
.ls18{letter-spacing:16.704000px;}
.ls8{letter-spacing:32.544000px;}
.ls7{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;}
}
.ws0{word-spacing:-26.334000px;}
.ws2{word-spacing:-23.081760px;}
.ws4{word-spacing:-20.304000px;}
.ws3{word-spacing:-20.160000px;}
.ws1{word-spacing:-20.016000px;}
.ws20{word-spacing:-19.872000px;}
.ws2e{word-spacing:-19.800000px;}
.ws31{word-spacing:-19.440000px;}
.ws2f{word-spacing:-18.576000px;}
.ws1f{word-spacing:-15.012000px;}
.ws30{word-spacing:-13.410720px;}
.ws26{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.360720px;}
.ws8{word-spacing:-0.298800px;}
.wsf{word-spacing:-0.241200px;}
.ws7{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.059760px;}
.ws37{word-spacing:0.144000px;}
.ws10{word-spacing:0.191520px;}
.wsd{word-spacing:0.241200px;}
.wse{word-spacing:0.335520px;}
.ws22{word-spacing:0.421200px;}
.ws35{word-spacing:0.432000px;}
.wsb{word-spacing:0.482400px;}
.wsc{word-spacing:0.530640px;}
.ws6{word-spacing:0.540000px;}
.ws32{word-spacing:0.702000px;}
.ws38{word-spacing:1.296000px;}
.ws1d{word-spacing:2.016000px;}
.ws13{word-spacing:2.736000px;}
.ws28{word-spacing:3.456000px;}
.ws29{word-spacing:3.888000px;}
.ws2a{word-spacing:4.176000px;}
.ws2b{word-spacing:4.896000px;}
.ws12{word-spacing:5.616000px;}
.ws27{word-spacing:6.336000px;}
.ws17{word-spacing:7.056000px;}
.ws1b{word-spacing:7.776000px;}
.ws2d{word-spacing:8.064000px;}
.ws25{word-spacing:8.496000px;}
.ws24{word-spacing:9.216000px;}
.ws23{word-spacing:9.648000px;}
.ws1e{word-spacing:9.936000px;}
.ws18{word-spacing:10.656000px;}
.ws36{word-spacing:11.376000px;}
.ws19{word-spacing:12.096000px;}
.ws14{word-spacing:13.536000px;}
.ws11{word-spacing:14.256000px;}
.ws16{word-spacing:14.976000px;}
.ws33{word-spacing:16.416000px;}
.ws21{word-spacing:18.576000px;}
.ws2c{word-spacing:19.296000px;}
.ws34{word-spacing:20.016000px;}
.ws1a{word-spacing:21.456000px;}
.ws1c{word-spacing:27.936000px;}
._5{margin-left:-2.880000px;}
._1{margin-left:-1.188000px;}
._0{width:1.080000px;}
._2{width:2.134080px;}
._4{width:142.112880px;}
._3{width:674.496720px;}
.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;}
.y30{bottom:45.540000px;}
.y6{bottom:46.074420px;}
.y5{bottom:63.360000px;}
.y4{bottom:79.920000px;}
.y5c{bottom:131.760000px;}
.y2f{bottom:140.220000px;}
.y5b{bottom:152.460000px;}
.y2e{bottom:160.920000px;}
.y5a{bottom:173.160000px;}
.y2d{bottom:181.620000px;}
.y59{bottom:193.860000px;}
.y2c{bottom:202.320000px;}
.y58{bottom:214.560000px;}
.y2b{bottom:223.020000px;}
.y57{bottom:235.260000px;}
.y2a{bottom:243.720000px;}
.y56{bottom:255.960000px;}
.y29{bottom:264.420000px;}
.y55{bottom:276.660000px;}
.y28{bottom:285.120000px;}
.y54{bottom:297.360000px;}
.y27{bottom:305.820000px;}
.y53{bottom:318.060000px;}
.y26{bottom:326.520000px;}
.y52{bottom:338.760000px;}
.y25{bottom:347.220000px;}
.y51{bottom:359.460000px;}
.y24{bottom:367.920000px;}
.y50{bottom:380.160000px;}
.y23{bottom:388.620000px;}
.y22{bottom:409.320000px;}
.y4f{bottom:419.400000px;}
.y21{bottom:430.020000px;}
.y20{bottom:450.720000px;}
.y4e{bottom:460.980000px;}
.y1f{bottom:471.420000px;}
.y4d{bottom:481.680000px;}
.y1e{bottom:492.120000px;}
.y4c{bottom:502.380000px;}
.y1d{bottom:512.820000px;}
.y4b{bottom:523.080000px;}
.y1c{bottom:533.520000px;}
.y4a{bottom:543.780000px;}
.y49{bottom:564.480000px;}
.y1b{bottom:572.760000px;}
.y48{bottom:585.180000px;}
.y47{bottom:605.880000px;}
.y1a{bottom:614.340000px;}
.y73{bottom:622.620000px;}
.y46{bottom:626.580000px;}
.y19{bottom:635.040000px;}
.y72{bottom:643.320000px;}
.y45{bottom:647.280000px;}
.y18{bottom:655.740000px;}
.y71{bottom:664.020000px;}
.y44{bottom:667.980000px;}
.y17{bottom:676.440000px;}
.y70{bottom:684.720000px;}
.y43{bottom:688.680000px;}
.y16{bottom:697.140000px;}
.y6f{bottom:705.420000px;}
.y15{bottom:717.840000px;}
.y6e{bottom:726.120000px;}
.y42{bottom:727.920000px;}
.y14{bottom:738.540000px;}
.y6d{bottom:746.820000px;}
.y13{bottom:759.240000px;}
.y6c{bottom:767.520000px;}
.y41{bottom:769.500000px;}
.y12{bottom:779.940000px;}
.y6b{bottom:788.220000px;}
.y40{bottom:790.200000px;}
.y11{bottom:806.589000px;}
.y6a{bottom:808.920000px;}
.y3f{bottom:810.900000px;}
.y69{bottom:829.620000px;}
.y3e{bottom:831.600000px;}
.y10{bottom:834.120000px;}
.y68{bottom:850.320000px;}
.y3d{bottom:852.300000px;}
.y67{bottom:871.020000px;}
.y3c{bottom:873.000000px;}
.yf{bottom:880.367400px;}
.y66{bottom:891.720000px;}
.y3b{bottom:893.700000px;}
.y65{bottom:912.420000px;}
.y3a{bottom:914.400000px;}
.ye{bottom:914.750460px;}
.y64{bottom:933.120000px;}
.y39{bottom:935.100000px;}
.yd{bottom:949.314420px;}
.y63{bottom:953.820000px;}
.y38{bottom:955.800000px;}
.y62{bottom:974.520000px;}
.y37{bottom:976.500000px;}
.yc{bottom:979.380000px;}
.y61{bottom:995.220000px;}
.y36{bottom:997.200000px;}
.y60{bottom:1015.920000px;}
.yb{bottom:1025.814420px;}
.y9{bottom:1026.351000px;}
.y35{bottom:1036.440000px;}
.y5f{bottom:1036.620000px;}
.ya{bottom:1055.880000px;}
.y5e{bottom:1057.320000px;}
.y8{bottom:1060.920000px;}
.y34{bottom:1078.020000px;}
.y33{bottom:1098.720000px;}
.y7{bottom:1104.658560px;}
.y32{bottom:1119.420000px;}
.y31{bottom:1140.120000px;}
.y3{bottom:1142.280000px;}
.y2{bottom:1149.120000px;}
.y1{bottom:1183.680000px;}
.y5d{bottom:1199.520000px;}
.h8{height:35.120039px;}
.h4{height:41.479805px;}
.h6{height:43.506914px;}
.h5{height:46.432617px;}
.hc{height:52.417969px;}
.hd{height:61.329023px;}
.hb{height:61.910156px;}
.ha{height:69.715898px;}
.he{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;}
.x5{left:106.380000px;}
.x8{left:129.791160px;}
.x7{left:143.820000px;}
.x9{left:159.480000px;}
.x1{left:201.960000px;}
.x6{left:510.480000px;}
.x2{left:535.140000px;}
.xb{left:707.935500px;}
.xa{left:735.840000px;}
.x4{left:750.420000px;}
.x3{left:786.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.v1{vertical-align:43.539840pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.528000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.299520pt;}
.lsa{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.255360pt;}
.lse{letter-spacing:-0.214400pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.171520pt;}
.ls11{letter-spacing:-0.170240pt;}
.lsf{letter-spacing:-0.149120pt;}
.ls14{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.106240pt;}
.ls15{letter-spacing:-0.074880pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.085760pt;}
.lsc{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.117120pt;}
.ls13{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.299520pt;}
.ls5{letter-spacing:0.680960pt;}
.ls1a{letter-spacing:6.528000pt;}
.ls19{letter-spacing:13.568000pt;}
.ls18{letter-spacing:14.848000pt;}
.ls8{letter-spacing:28.928000pt;}
.ls7{letter-spacing:82.048000pt;}
.ls3{letter-spacing:386.871040pt;}
.ws0{word-spacing:-23.408000pt;}
.ws2{word-spacing:-20.517120pt;}
.ws4{word-spacing:-18.048000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws20{word-spacing:-17.664000pt;}
.ws2e{word-spacing:-17.600000pt;}
.ws31{word-spacing:-17.280000pt;}
.ws2f{word-spacing:-16.512000pt;}
.ws1f{word-spacing:-13.344000pt;}
.ws30{word-spacing:-11.920640pt;}
.ws26{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.320640pt;}
.ws8{word-spacing:-0.265600pt;}
.wsf{word-spacing:-0.214400pt;}
.ws7{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053120pt;}
.ws37{word-spacing:0.128000pt;}
.ws10{word-spacing:0.170240pt;}
.wsd{word-spacing:0.214400pt;}
.wse{word-spacing:0.298240pt;}
.ws22{word-spacing:0.374400pt;}
.ws35{word-spacing:0.384000pt;}
.wsb{word-spacing:0.428800pt;}
.wsc{word-spacing:0.471680pt;}
.ws6{word-spacing:0.480000pt;}
.ws32{word-spacing:0.624000pt;}
.ws38{word-spacing:1.152000pt;}
.ws1d{word-spacing:1.792000pt;}
.ws13{word-spacing:2.432000pt;}
.ws28{word-spacing:3.072000pt;}
.ws29{word-spacing:3.456000pt;}
.ws2a{word-spacing:3.712000pt;}
.ws2b{word-spacing:4.352000pt;}
.ws12{word-spacing:4.992000pt;}
.ws27{word-spacing:5.632000pt;}
.ws17{word-spacing:6.272000pt;}
.ws1b{word-spacing:6.912000pt;}
.ws2d{word-spacing:7.168000pt;}
.ws25{word-spacing:7.552000pt;}
.ws24{word-spacing:8.192000pt;}
.ws23{word-spacing:8.576000pt;}
.ws1e{word-spacing:8.832000pt;}
.ws18{word-spacing:9.472000pt;}
.ws36{word-spacing:10.112000pt;}
.ws19{word-spacing:10.752000pt;}
.ws14{word-spacing:12.032000pt;}
.ws11{word-spacing:12.672000pt;}
.ws16{word-spacing:13.312000pt;}
.ws33{word-spacing:14.592000pt;}
.ws21{word-spacing:16.512000pt;}
.ws2c{word-spacing:17.152000pt;}
.ws34{word-spacing:17.792000pt;}
.ws1a{word-spacing:19.072000pt;}
.ws1c{word-spacing:24.832000pt;}
._5{margin-left:-2.560000pt;}
._1{margin-left:-1.056000pt;}
._0{width:0.960000pt;}
._2{width:1.896960pt;}
._4{width:126.322560pt;}
._3{width:599.552640pt;}
.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;}
.y30{bottom:40.480000pt;}
.y6{bottom:40.955040pt;}
.y5{bottom:56.320000pt;}
.y4{bottom:71.040000pt;}
.y5c{bottom:117.120000pt;}
.y2f{bottom:124.640000pt;}
.y5b{bottom:135.520000pt;}
.y2e{bottom:143.040000pt;}
.y5a{bottom:153.920000pt;}
.y2d{bottom:161.440000pt;}
.y59{bottom:172.320000pt;}
.y2c{bottom:179.840000pt;}
.y58{bottom:190.720000pt;}
.y2b{bottom:198.240000pt;}
.y57{bottom:209.120000pt;}
.y2a{bottom:216.640000pt;}
.y56{bottom:227.520000pt;}
.y29{bottom:235.040000pt;}
.y55{bottom:245.920000pt;}
.y28{bottom:253.440000pt;}
.y54{bottom:264.320000pt;}
.y27{bottom:271.840000pt;}
.y53{bottom:282.720000pt;}
.y26{bottom:290.240000pt;}
.y52{bottom:301.120000pt;}
.y25{bottom:308.640000pt;}
.y51{bottom:319.520000pt;}
.y24{bottom:327.040000pt;}
.y50{bottom:337.920000pt;}
.y23{bottom:345.440000pt;}
.y22{bottom:363.840000pt;}
.y4f{bottom:372.800000pt;}
.y21{bottom:382.240000pt;}
.y20{bottom:400.640000pt;}
.y4e{bottom:409.760000pt;}
.y1f{bottom:419.040000pt;}
.y4d{bottom:428.160000pt;}
.y1e{bottom:437.440000pt;}
.y4c{bottom:446.560000pt;}
.y1d{bottom:455.840000pt;}
.y4b{bottom:464.960000pt;}
.y1c{bottom:474.240000pt;}
.y4a{bottom:483.360000pt;}
.y49{bottom:501.760000pt;}
.y1b{bottom:509.120000pt;}
.y48{bottom:520.160000pt;}
.y47{bottom:538.560000pt;}
.y1a{bottom:546.080000pt;}
.y73{bottom:553.440000pt;}
.y46{bottom:556.960000pt;}
.y19{bottom:564.480000pt;}
.y72{bottom:571.840000pt;}
.y45{bottom:575.360000pt;}
.y18{bottom:582.880000pt;}
.y71{bottom:590.240000pt;}
.y44{bottom:593.760000pt;}
.y17{bottom:601.280000pt;}
.y70{bottom:608.640000pt;}
.y43{bottom:612.160000pt;}
.y16{bottom:619.680000pt;}
.y6f{bottom:627.040000pt;}
.y15{bottom:638.080000pt;}
.y6e{bottom:645.440000pt;}
.y42{bottom:647.040000pt;}
.y14{bottom:656.480000pt;}
.y6d{bottom:663.840000pt;}
.y13{bottom:674.880000pt;}
.y6c{bottom:682.240000pt;}
.y41{bottom:684.000000pt;}
.y12{bottom:693.280000pt;}
.y6b{bottom:700.640000pt;}
.y40{bottom:702.400000pt;}
.y11{bottom:716.968000pt;}
.y6a{bottom:719.040000pt;}
.y3f{bottom:720.800000pt;}
.y69{bottom:737.440000pt;}
.y3e{bottom:739.200000pt;}
.y10{bottom:741.440000pt;}
.y68{bottom:755.840000pt;}
.y3d{bottom:757.600000pt;}
.y67{bottom:774.240000pt;}
.y3c{bottom:776.000000pt;}
.yf{bottom:782.548800pt;}
.y66{bottom:792.640000pt;}
.y3b{bottom:794.400000pt;}
.y65{bottom:811.040000pt;}
.y3a{bottom:812.800000pt;}
.ye{bottom:813.111520pt;}
.y64{bottom:829.440000pt;}
.y39{bottom:831.200000pt;}
.yd{bottom:843.835040pt;}
.y63{bottom:847.840000pt;}
.y38{bottom:849.600000pt;}
.y62{bottom:866.240000pt;}
.y37{bottom:868.000000pt;}
.yc{bottom:870.560000pt;}
.y61{bottom:884.640000pt;}
.y36{bottom:886.400000pt;}
.y60{bottom:903.040000pt;}
.yb{bottom:911.835040pt;}
.y9{bottom:912.312000pt;}
.y35{bottom:921.280000pt;}
.y5f{bottom:921.440000pt;}
.ya{bottom:938.560000pt;}
.y5e{bottom:939.840000pt;}
.y8{bottom:943.040000pt;}
.y34{bottom:958.240000pt;}
.y33{bottom:976.640000pt;}
.y7{bottom:981.918720pt;}
.y32{bottom:995.040000pt;}
.y31{bottom:1013.440000pt;}
.y3{bottom:1015.360000pt;}
.y2{bottom:1021.440000pt;}
.y1{bottom:1052.160000pt;}
.y5d{bottom:1066.240000pt;}
.h8{height:31.217812pt;}
.h4{height:36.870937pt;}
.h6{height:38.672812pt;}
.h5{height:41.273438pt;}
.hc{height:46.593750pt;}
.hd{height:54.514687pt;}
.hb{height:55.031250pt;}
.ha{height:61.969687pt;}
.he{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;}
.x5{left:94.560000pt;}
.x8{left:115.369920pt;}
.x7{left:127.840000pt;}
.x9{left:141.760000pt;}
.x1{left:179.520000pt;}
.x6{left:453.760000pt;}
.x2{left:475.680000pt;}
.xb{left:629.276000pt;}
.xa{left:654.080000pt;}
.x4{left:667.040000pt;}
.x3{left:699.360000pt;}
}




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