
    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_ccb0dda16253df6f4547591a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_56565c6515d7f4a23a19d44b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908691;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_ca8918fef6ccd4366ef5c9d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_fca7d7b7c00a205611b1e5b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062500;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;}
.ls11{letter-spacing:-0.167760px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.138240px;}
.lsc{letter-spacing:-0.131760px;}
.ls4{letter-spacing:-0.119880px;}
.ls2{letter-spacing:-0.114120px;}
.ls9{letter-spacing:-0.083880px;}
.lse{letter-spacing:-0.065880px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.047880px;}
.ls6{letter-spacing:0.065880px;}
.lsa{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.119880px;}
.ls5{letter-spacing:0.120240px;}
.lsf{letter-spacing:0.131760px;}
.ls7{letter-spacing:0.143640px;}
.lsd{letter-spacing:0.167760px;}
.ls10{letter-spacing:0.197640px;}
.ls12{letter-spacing:0.263520px;}
.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:-27.212760px;}
.ws7{word-spacing:-19.124640px;}
.ws5{word-spacing:-18.873000px;}
.wsa{word-spacing:-15.086520px;}
.ws1c{word-spacing:-15.020640px;}
.ws9{word-spacing:-14.954760px;}
.ws18{word-spacing:-14.888880px;}
.ws8{word-spacing:-14.823000px;}
.ws6{word-spacing:-14.757120px;}
.ws4{word-spacing:-13.587120px;}
.ws14{word-spacing:-0.263520px;}
.ws3{word-spacing:-0.228240px;}
.ws16{word-spacing:-0.197640px;}
.ws1a{word-spacing:-0.167760px;}
.ws2{word-spacing:-0.144000px;}
.wsc{word-spacing:-0.143640px;}
.ws15{word-spacing:-0.131760px;}
.ws10{word-spacing:-0.083880px;}
.ws13{word-spacing:-0.065880px;}
.wsd{word-spacing:-0.047880px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.065880px;}
.wsf{word-spacing:0.083880px;}
.wsb{word-spacing:0.120240px;}
.ws19{word-spacing:0.131760px;}
.wse{word-spacing:0.144000px;}
.ws11{word-spacing:0.167760px;}
.ws12{word-spacing:0.197640px;}
.ws1b{word-spacing:0.251640px;}
.ws17{word-spacing:0.329400px;}
._4{margin-left:-12.729528px;}
._3{margin-left:-11.116584px;}
._2{margin-left:-1.238472px;}
._1{width:1.168128px;}
._0{width:849.127320px;}
.fc8{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc7{color:rgb(0,112,192);}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(153,255,51);}
.fc2{color:rgb(146,208,80);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs5{font-size:69.120000px;}
.fsb{font-size:72.000000px;}
.fsa{font-size:83.880000px;}
.fs4{font-size:114.120000px;}
.fs6{font-size:119.880000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:209.880000px;}
.fs1{font-size:450.000000px;}
.y21{bottom:-85.050000px;}
.y0{bottom:0.000000px;}
.y48{bottom:4.410000px;}
.y54{bottom:4.500000px;}
.y2d{bottom:7.110000px;}
.y23{bottom:14.670000px;}
.y2f{bottom:17.730000px;}
.y51{bottom:24.570000px;}
.y25{bottom:25.920000px;}
.y1f{bottom:39.330000px;}
.y59{bottom:44.730000px;}
.y35{bottom:57.690000px;}
.y34{bottom:77.386860px;}
.y30{bottom:83.880000px;}
.y44{bottom:84.960000px;}
.y2a{bottom:87.660000px;}
.y33{bottom:95.753520px;}
.y32{bottom:114.030000px;}
.y1d{bottom:124.629930px;}
.y31{bottom:132.750000px;}
.y29{bottom:134.442000px;}
.y94{bottom:153.006120px;}
.y1c{bottom:162.790920px;}
.y93{bottom:176.130000px;}
.y28{bottom:185.022000px;}
.y68{bottom:190.080630px;}
.y7e{bottom:195.655410px;}
.y1b{bottom:200.951910px;}
.y53{bottom:216.180000px;}
.y67{bottom:224.190000px;}
.y2c{bottom:225.000000px;}
.y92{bottom:226.440000px;}
.y27{bottom:235.530000px;}
.y50{bottom:236.340000px;}
.y1a{bottom:239.112900px;}
.y7d{bottom:240.832620px;}
.y66{bottom:258.756750px;}
.y52{bottom:260.910000px;}
.y91{bottom:276.840000px;}
.y19{bottom:277.273890px;}
.y7c{bottom:286.009830px;}
.y26{bottom:286.110000px;}
.y2b{bottom:290.610000px;}
.y65{bottom:299.520000px;}
.y4f{bottom:310.140000px;}
.y18{bottom:315.434880px;}
.y90{bottom:327.150000px;}
.y7b{bottom:331.285860px;}
.y4e{bottom:344.606400px;}
.y17{bottom:353.595870px;}
.y4d{bottom:367.730280px;}
.y20{bottom:371.700000px;}
.y7a{bottom:376.463070px;}
.y8f{bottom:377.550000px;}
.y4c{bottom:386.539020px;}
.y16{bottom:391.756860px;}
.y79{bottom:421.739100px;}
.y8e{bottom:427.860000px;}
.y15{bottom:429.917850px;}
.y64{bottom:432.450000px;}
.y63{bottom:466.650000px;}
.y78{bottom:466.916310px;}
.y14{bottom:468.078840px;}
.y4b{bottom:473.121810px;}
.y8d{bottom:478.260000px;}
.y4a{bottom:496.344510px;}
.y62{bottom:501.120810px;}
.y13{bottom:506.239830px;}
.y43{bottom:512.010000px;}
.y77{bottom:512.093520px;}
.y61{bottom:526.945770px;}
.y8c{bottom:528.570000px;}
.y47{bottom:536.580000px;}
.y49{bottom:536.580720px;}
.y12{bottom:544.400820px;}
.y46{bottom:556.740000px;}
.y76{bottom:557.369550px;}
.y45{bottom:576.900000px;}
.y8b{bottom:578.970000px;}
.y11{bottom:582.561810px;}
.y75{bottom:602.546760px;}
.y10{bottom:620.805150px;}
.y60{bottom:623.608200px;}
.y42{bottom:627.210000px;}
.y8a{bottom:629.280000px;}
.y5f{bottom:646.830900px;}
.y74{bottom:647.723970px;}
.yf{bottom:658.966140px;}
.y41{bottom:661.320000px;}
.y5e{bottom:672.030000px;}
.y89{bottom:679.680000px;}
.y73{bottom:693.000000px;}
.y40{bottom:695.880000px;}
.ye{bottom:697.127130px;}
.y5d{bottom:714.421710px;}
.y3f{bottom:721.710000px;}
.y72{bottom:723.150000px;}
.y88{bottom:729.990000px;}
.yd{bottom:735.288120px;}
.y5c{bottom:748.267560px;}
.y71{bottom:757.350000px;}
.yc{bottom:773.449110px;}
.y87{bottom:780.390000px;}
.y70{bottom:799.840710px;}
.yb{bottom:811.610100px;}
.y86{bottom:830.700000px;}
.y6f{bottom:833.587740px;}
.y3e{bottom:845.820000px;}
.ya{bottom:849.771090px;}
.y5b{bottom:877.590000px;}
.y85{bottom:881.100000px;}
.y9{bottom:887.932080px;}
.y3d{bottom:889.110000px;}
.y58{bottom:892.980000px;}
.y5a{bottom:917.550000px;}
.y8{bottom:926.093070px;}
.y84{bottom:931.410000px;}
.y3c{bottom:934.476390px;}
.y6e{bottom:935.010000px;}
.y2e{bottom:938.070000px;}
.y7{bottom:964.254060px;}
.y3b{bottom:965.160000px;}
.y24{bottom:967.500000px;}
.y6d{bottom:980.280000px;}
.y83{bottom:981.810000px;}
.y57{bottom:986.940000px;}
.y3a{bottom:996.480000px;}
.y6{bottom:1002.415050px;}
.y6c{bottom:1014.390000px;}
.y56{bottom:1021.410000px;}
.y39{bottom:1029.240000px;}
.y82{bottom:1032.116310px;}
.y22{bottom:1035.990000px;}
.y5{bottom:1040.576040px;}
.y6b{bottom:1048.950000px;}
.y55{bottom:1062.180000px;}
.y81{bottom:1070.277300px;}
.y38{bottom:1070.910000px;}
.y6a{bottom:1074.690000px;}
.y4{bottom:1078.737030px;}
.y80{bottom:1093.500000px;}
.y37{bottom:1111.860000px;}
.y3{bottom:1116.898020px;}
.y7f{bottom:1136.700000px;}
.y69{bottom:1140.921900px;}
.y36{bottom:1145.250000px;}
.y2{bottom:1155.059010px;}
.y1e{bottom:1170.244350px;}
.y1{bottom:1193.220000px;}
.h16{height:20.161500px;}
.ha{height:33.750000px;}
.hb{height:33.838500px;}
.hf{height:39.486973px;}
.h15{height:40.230000px;}
.h10{height:44.534180px;}
.he{height:49.581387px;}
.h2{height:54.331699px;}
.h1a{height:54.346459px;}
.h12{height:59.378906px;}
.h18{height:59.478574px;}
.h17{height:60.390000px;}
.hc{height:62.403750px;}
.h19{height:69.173186px;}
.h11{height:69.176426px;}
.h14{height:69.190826px;}
.h6{height:75.060000px;}
.hd{height:98.865879px;}
.h13{height:100.620000px;}
.h9{height:102.306797px;}
.h8{height:118.757812px;}
.h4{height:120.060000px;}
.h7{height:188.154141px;}
.h5{height:403.417969px;}
.h3{height:535.861500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:169.650000px;}
.w9{width:190.530000px;}
.wb{width:191.070000px;}
.w7{width:212.310000px;}
.wc{width:212.401500px;}
.we{width:212.670000px;}
.wa{width:233.550000px;}
.w8{width:234.180000px;}
.wf{width:254.700000px;}
.w6{width:297.810000px;}
.w4{width:299.610000px;}
.w3{width:311.398500px;}
.w5{width:312.030000px;}
.w2{width:848.070000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.010000px;}
.x9{left:17.010000px;}
.x7{left:18.180000px;}
.x4{left:22.410000px;}
.x6{left:26.820000px;}
.x10{left:28.350000px;}
.x8{left:32.670000px;}
.x12{left:34.110000px;}
.xf{left:48.870000px;}
.x1{left:54.000000px;}
.x11{left:83.160000px;}
.x18{left:127.620000px;}
.x1b{left:135.630000px;}
.x15{left:149.760000px;}
.x28{left:180.720000px;}
.x1f{left:206.825760px;}
.x23{left:222.120000px;}
.x19{left:229.320000px;}
.x29{left:235.614510px;}
.x2a{left:258.219540px;}
.x2c{left:262.624590px;}
.x2b{left:265.320000px;}
.x24{left:297.270000px;}
.x25{left:305.370000px;}
.x20{left:319.410000px;}
.x2{left:329.049000px;}
.x3{left:330.300000px;}
.x1c{left:339.930000px;}
.x1d{left:348.030000px;}
.x21{left:361.530000px;}
.xe{left:381.240000px;}
.x16{left:411.387210px;}
.x17{left:442.694700px;}
.x14{left:446.490000px;}
.xc{left:450.882000px;}
.xb{left:464.130000px;}
.xd{left:487.494000px;}
.x26{left:509.940000px;}
.xa{left:513.270000px;}
.x27{left:518.040000px;}
.x22{left:552.600000px;}
.x13{left:574.110000px;}
.x1e{left:582.210000px;}
.x5{left:837.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.149120pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.122880pt;}
.lsc{letter-spacing:-0.117120pt;}
.ls4{letter-spacing:-0.106560pt;}
.ls2{letter-spacing:-0.101440pt;}
.ls9{letter-spacing:-0.074560pt;}
.lse{letter-spacing:-0.058560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.042560pt;}
.ls6{letter-spacing:0.058560pt;}
.lsa{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106560pt;}
.ls5{letter-spacing:0.106880pt;}
.lsf{letter-spacing:0.117120pt;}
.ls7{letter-spacing:0.127680pt;}
.lsd{letter-spacing:0.149120pt;}
.ls10{letter-spacing:0.175680pt;}
.ls12{letter-spacing:0.234240pt;}
.ws0{word-spacing:-24.189120pt;}
.ws7{word-spacing:-16.999680pt;}
.ws5{word-spacing:-16.776000pt;}
.wsa{word-spacing:-13.410240pt;}
.ws1c{word-spacing:-13.351680pt;}
.ws9{word-spacing:-13.293120pt;}
.ws18{word-spacing:-13.234560pt;}
.ws8{word-spacing:-13.176000pt;}
.ws6{word-spacing:-13.117440pt;}
.ws4{word-spacing:-12.077440pt;}
.ws14{word-spacing:-0.234240pt;}
.ws3{word-spacing:-0.202880pt;}
.ws16{word-spacing:-0.175680pt;}
.ws1a{word-spacing:-0.149120pt;}
.ws2{word-spacing:-0.128000pt;}
.wsc{word-spacing:-0.127680pt;}
.ws15{word-spacing:-0.117120pt;}
.ws10{word-spacing:-0.074560pt;}
.ws13{word-spacing:-0.058560pt;}
.wsd{word-spacing:-0.042560pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.058560pt;}
.wsf{word-spacing:0.074560pt;}
.wsb{word-spacing:0.106880pt;}
.ws19{word-spacing:0.117120pt;}
.wse{word-spacing:0.128000pt;}
.ws11{word-spacing:0.149120pt;}
.ws12{word-spacing:0.175680pt;}
.ws1b{word-spacing:0.223680pt;}
.ws17{word-spacing:0.292800pt;}
._4{margin-left:-11.315136pt;}
._3{margin-left:-9.881408pt;}
._2{margin-left:-1.100864pt;}
._1{width:1.038336pt;}
._0{width:754.779840pt;}
.fs8{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs5{font-size:61.440000pt;}
.fsb{font-size:64.000000pt;}
.fsa{font-size:74.560000pt;}
.fs4{font-size:101.440000pt;}
.fs6{font-size:106.560000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:186.560000pt;}
.fs1{font-size:400.000000pt;}
.y21{bottom:-75.600000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:3.920000pt;}
.y54{bottom:4.000000pt;}
.y2d{bottom:6.320000pt;}
.y23{bottom:13.040000pt;}
.y2f{bottom:15.760000pt;}
.y51{bottom:21.840000pt;}
.y25{bottom:23.040000pt;}
.y1f{bottom:34.960000pt;}
.y59{bottom:39.760000pt;}
.y35{bottom:51.280000pt;}
.y34{bottom:68.788320pt;}
.y30{bottom:74.560000pt;}
.y44{bottom:75.520000pt;}
.y2a{bottom:77.920000pt;}
.y33{bottom:85.114240pt;}
.y32{bottom:101.360000pt;}
.y1d{bottom:110.782160pt;}
.y31{bottom:118.000000pt;}
.y29{bottom:119.504000pt;}
.y94{bottom:136.005440pt;}
.y1c{bottom:144.703040pt;}
.y93{bottom:156.560000pt;}
.y28{bottom:164.464000pt;}
.y68{bottom:168.960560pt;}
.y7e{bottom:173.915920pt;}
.y1b{bottom:178.623920pt;}
.y53{bottom:192.160000pt;}
.y67{bottom:199.280000pt;}
.y2c{bottom:200.000000pt;}
.y92{bottom:201.280000pt;}
.y27{bottom:209.360000pt;}
.y50{bottom:210.080000pt;}
.y1a{bottom:212.544800pt;}
.y7d{bottom:214.073440pt;}
.y66{bottom:230.006000pt;}
.y52{bottom:231.920000pt;}
.y91{bottom:246.080000pt;}
.y19{bottom:246.465680pt;}
.y7c{bottom:254.230960pt;}
.y26{bottom:254.320000pt;}
.y2b{bottom:258.320000pt;}
.y65{bottom:266.240000pt;}
.y4f{bottom:275.680000pt;}
.y18{bottom:280.386560pt;}
.y90{bottom:290.800000pt;}
.y7b{bottom:294.476320pt;}
.y4e{bottom:306.316800pt;}
.y17{bottom:314.307440pt;}
.y4d{bottom:326.871360pt;}
.y20{bottom:330.400000pt;}
.y7a{bottom:334.633840pt;}
.y8f{bottom:335.600000pt;}
.y4c{bottom:343.590240pt;}
.y16{bottom:348.228320pt;}
.y79{bottom:374.879200pt;}
.y8e{bottom:380.320000pt;}
.y15{bottom:382.149200pt;}
.y64{bottom:384.400000pt;}
.y63{bottom:414.800000pt;}
.y78{bottom:415.036720pt;}
.y14{bottom:416.070080pt;}
.y4b{bottom:420.552720pt;}
.y8d{bottom:425.120000pt;}
.y4a{bottom:441.195120pt;}
.y62{bottom:445.440720pt;}
.y13{bottom:449.990960pt;}
.y43{bottom:455.120000pt;}
.y77{bottom:455.194240pt;}
.y61{bottom:468.396240pt;}
.y8c{bottom:469.840000pt;}
.y47{bottom:476.960000pt;}
.y49{bottom:476.960640pt;}
.y12{bottom:483.911840pt;}
.y46{bottom:494.880000pt;}
.y76{bottom:495.439600pt;}
.y45{bottom:512.800000pt;}
.y8b{bottom:514.640000pt;}
.y11{bottom:517.832720pt;}
.y75{bottom:535.597120pt;}
.y10{bottom:551.826800pt;}
.y60{bottom:554.318400pt;}
.y42{bottom:557.520000pt;}
.y8a{bottom:559.360000pt;}
.y5f{bottom:574.960800pt;}
.y74{bottom:575.754640pt;}
.yf{bottom:585.747680pt;}
.y41{bottom:587.840000pt;}
.y5e{bottom:597.360000pt;}
.y89{bottom:604.160000pt;}
.y73{bottom:616.000000pt;}
.y40{bottom:618.560000pt;}
.ye{bottom:619.668560pt;}
.y5d{bottom:635.041520pt;}
.y3f{bottom:641.520000pt;}
.y72{bottom:642.800000pt;}
.y88{bottom:648.880000pt;}
.yd{bottom:653.589440pt;}
.y5c{bottom:665.126720pt;}
.y71{bottom:673.200000pt;}
.yc{bottom:687.510320pt;}
.y87{bottom:693.680000pt;}
.y70{bottom:710.969520pt;}
.yb{bottom:721.431200pt;}
.y86{bottom:738.400000pt;}
.y6f{bottom:740.966880pt;}
.y3e{bottom:751.840000pt;}
.ya{bottom:755.352080pt;}
.y5b{bottom:780.080000pt;}
.y85{bottom:783.200000pt;}
.y9{bottom:789.272960pt;}
.y3d{bottom:790.320000pt;}
.y58{bottom:793.760000pt;}
.y5a{bottom:815.600000pt;}
.y8{bottom:823.193840pt;}
.y84{bottom:827.920000pt;}
.y3c{bottom:830.645680pt;}
.y6e{bottom:831.120000pt;}
.y2e{bottom:833.840000pt;}
.y7{bottom:857.114720pt;}
.y3b{bottom:857.920000pt;}
.y24{bottom:860.000000pt;}
.y6d{bottom:871.360000pt;}
.y83{bottom:872.720000pt;}
.y57{bottom:877.280000pt;}
.y3a{bottom:885.760000pt;}
.y6{bottom:891.035600pt;}
.y6c{bottom:901.680000pt;}
.y56{bottom:907.920000pt;}
.y39{bottom:914.880000pt;}
.y82{bottom:917.436720pt;}
.y22{bottom:920.880000pt;}
.y5{bottom:924.956480pt;}
.y6b{bottom:932.400000pt;}
.y55{bottom:944.160000pt;}
.y81{bottom:951.357600pt;}
.y38{bottom:951.920000pt;}
.y6a{bottom:955.280000pt;}
.y4{bottom:958.877360pt;}
.y80{bottom:972.000000pt;}
.y37{bottom:988.320000pt;}
.y3{bottom:992.798240pt;}
.y7f{bottom:1010.400000pt;}
.y69{bottom:1014.152800pt;}
.y36{bottom:1018.000000pt;}
.y2{bottom:1026.719120pt;}
.y1e{bottom:1040.217200pt;}
.y1{bottom:1060.640000pt;}
.h16{height:17.921333pt;}
.ha{height:30.000000pt;}
.hb{height:30.078667pt;}
.hf{height:35.099531pt;}
.h15{height:35.760000pt;}
.h10{height:39.585938pt;}
.he{height:44.072344pt;}
.h2{height:48.294844pt;}
.h1a{height:48.307964pt;}
.h12{height:52.781250pt;}
.h18{height:52.869844pt;}
.h17{height:53.680000pt;}
.hc{height:55.470000pt;}
.h19{height:61.487276pt;}
.h11{height:61.490156pt;}
.h14{height:61.502956pt;}
.h6{height:66.720000pt;}
.hd{height:87.880781pt;}
.h13{height:89.440000pt;}
.h9{height:90.939375pt;}
.h8{height:105.562500pt;}
.h4{height:106.720000pt;}
.h7{height:167.248125pt;}
.h5{height:358.593750pt;}
.h3{height:476.321333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:150.800000pt;}
.w9{width:169.360000pt;}
.wb{width:169.840000pt;}
.w7{width:188.720000pt;}
.wc{width:188.801333pt;}
.we{width:189.040000pt;}
.wa{width:207.600000pt;}
.w8{width:208.160000pt;}
.wf{width:226.400000pt;}
.w6{width:264.720000pt;}
.w4{width:266.320000pt;}
.w3{width:276.798667pt;}
.w5{width:277.360000pt;}
.w2{width:753.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.120000pt;}
.x9{left:15.120000pt;}
.x7{left:16.160000pt;}
.x4{left:19.920000pt;}
.x6{left:23.840000pt;}
.x10{left:25.200000pt;}
.x8{left:29.040000pt;}
.x12{left:30.320000pt;}
.xf{left:43.440000pt;}
.x1{left:48.000000pt;}
.x11{left:73.920000pt;}
.x18{left:113.440000pt;}
.x1b{left:120.560000pt;}
.x15{left:133.120000pt;}
.x28{left:160.640000pt;}
.x1f{left:183.845120pt;}
.x23{left:197.440000pt;}
.x19{left:203.840000pt;}
.x29{left:209.435120pt;}
.x2a{left:229.528480pt;}
.x2c{left:233.444080pt;}
.x2b{left:235.840000pt;}
.x24{left:264.240000pt;}
.x25{left:271.440000pt;}
.x20{left:283.920000pt;}
.x2{left:292.488000pt;}
.x3{left:293.600000pt;}
.x1c{left:302.160000pt;}
.x1d{left:309.360000pt;}
.x21{left:321.360000pt;}
.xe{left:338.880000pt;}
.x16{left:365.677520pt;}
.x17{left:393.506400pt;}
.x14{left:396.880000pt;}
.xc{left:400.784000pt;}
.xb{left:412.560000pt;}
.xd{left:433.328000pt;}
.x26{left:453.280000pt;}
.xa{left:456.240000pt;}
.x27{left:460.480000pt;}
.x22{left:491.200000pt;}
.x13{left:510.320000pt;}
.x1e{left:517.520000pt;}
.x5{left:744.240000pt;}
}




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