
    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_492c20a9566be2705be87106.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9705082a7fc1965d83784c25.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_59696f277d274681dac8de9d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b83369762aa1b2052df0dd7b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_90b9e39bcff175d4599ca135.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a0e5b83d9c7a77dcac035f0.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fbf8b24d10bf6b12aa347569.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:ff8;src:url('chunks/assets/font_441937f8c87527749dad44b7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_441937f8c87527749dad44b7.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls3{letter-spacing:-1.188000px;}
.ls6{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.528000px;}
.ls2{letter-spacing:-0.462000px;}
.lsc{letter-spacing:-0.396000px;}
.ls4{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.264000px;}
.ls9{letter-spacing:-0.198000px;}
.ls1{letter-spacing:-0.132000px;}
.lsb{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-54.000000px;}
.ws3b{word-spacing:-16.500000px;}
.ws3a{word-spacing:-16.104000px;}
.ws2{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws7{word-spacing:-3.300000px;}
.wsb{word-spacing:-3.102000px;}
.ws18{word-spacing:-2.970000px;}
.ws32{word-spacing:-2.706000px;}
.ws27{word-spacing:-2.508000px;}
.ws3c{word-spacing:-2.310000px;}
.ws6{word-spacing:-2.280000px;}
.ws5{word-spacing:-2.268000px;}
.ws1f{word-spacing:-2.214000px;}
.ws35{word-spacing:-2.160000px;}
.ws43{word-spacing:-2.046000px;}
.ws44{word-spacing:-1.914000px;}
.ws33{word-spacing:-1.386000px;}
.ws22{word-spacing:-1.254000px;}
.wse{word-spacing:-1.056000px;}
.ws4{word-spacing:-0.972000px;}
.ws11{word-spacing:-0.396000px;}
.ws28{word-spacing:-0.198000px;}
.ws37{word-spacing:-0.162000px;}
.ws3{word-spacing:0.000000px;}
.ws45{word-spacing:0.132000px;}
.ws39{word-spacing:0.270000px;}
.ws13{word-spacing:0.330000px;}
.ws46{word-spacing:0.528000px;}
.ws1a{word-spacing:0.858000px;}
.ws2b{word-spacing:1.188000px;}
.wsc{word-spacing:1.584000px;}
.ws8{word-spacing:1.650000px;}
.ws29{word-spacing:1.980000px;}
.ws9{word-spacing:2.244000px;}
.wsa{word-spacing:2.508000px;}
.ws40{word-spacing:2.574000px;}
.ws1d{word-spacing:3.102000px;}
.ws42{word-spacing:3.498000px;}
.ws15{word-spacing:3.630000px;}
.ws36{word-spacing:3.726000px;}
.ws2e{word-spacing:4.422000px;}
.ws14{word-spacing:4.620000px;}
.ws3f{word-spacing:5.280000px;}
.ws31{word-spacing:5.610000px;}
.ws16{word-spacing:5.676000px;}
.ws30{word-spacing:6.006000px;}
.ws19{word-spacing:6.204000px;}
.ws2a{word-spacing:6.336000px;}
.wsf{word-spacing:6.600000px;}
.ws3d{word-spacing:6.930000px;}
.ws10{word-spacing:6.996000px;}
.ws20{word-spacing:7.128000px;}
.ws17{word-spacing:7.326000px;}
.wsd{word-spacing:7.590000px;}
.ws1b{word-spacing:8.118000px;}
.ws12{word-spacing:8.646000px;}
.ws2f{word-spacing:9.108000px;}
.ws1c{word-spacing:9.372000px;}
.ws2c{word-spacing:9.570000px;}
.ws24{word-spacing:10.956000px;}
.ws26{word-spacing:11.748000px;}
.ws23{word-spacing:12.342000px;}
.ws3e{word-spacing:12.540000px;}
.ws41{word-spacing:12.606000px;}
.ws34{word-spacing:12.690000px;}
.ws38{word-spacing:13.338000px;}
.ws2d{word-spacing:14.982000px;}
.ws25{word-spacing:15.444000px;}
.ws1e{word-spacing:17.658000px;}
.ws21{word-spacing:248.698800px;}
._8{margin-left:-27.456000px;}
._4{margin-left:-12.210000px;}
._7{margin-left:-7.711200px;}
._1{margin-left:-4.914000px;}
._2{margin-left:-3.846600px;}
._0{margin-left:-2.014200px;}
._6{margin-left:-1.004400px;}
._5{width:1.188000px;}
._3{width:3.504600px;}
._9{width:4.620000px;}
._f{width:7.524000px;}
._b{width:179.706000px;}
._a{width:232.712400px;}
._c{width:397.975800px;}
._d{width:398.977200px;}
._e{width:411.475200px;}
.fc3{color:rgb(177,86,56);}
.fc2{color:rgb(198,56,54);}
.fc1{color:rgb(133,138,141);}
.fc0{color:rgb(27,24,26);}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.631050px;}
.y28{bottom:128.314950px;}
.y50{bottom:144.180900px;}
.y27{bottom:149.314950px;}
.y4f{bottom:161.430900px;}
.y26{bottom:170.314950px;}
.y4e{bottom:178.680900px;}
.y25{bottom:191.314950px;}
.y24{bottom:212.314950px;}
.y4d{bottom:228.460500px;}
.y23{bottom:233.314950px;}
.y4c{bottom:246.324750px;}
.y22{bottom:254.314950px;}
.y4b{bottom:264.189150px;}
.y21{bottom:275.314950px;}
.y4a{bottom:282.053400px;}
.y20{bottom:296.314950px;}
.y49{bottom:299.917650px;}
.y1f{bottom:317.314950px;}
.y48{bottom:317.781900px;}
.y1e{bottom:338.314950px;}
.y47{bottom:344.150250px;}
.y1d{bottom:359.314950px;}
.y46{bottom:369.478350px;}
.y1c{bottom:380.314950px;}
.y45{bottom:386.728350px;}
.y2c{bottom:401.314950px;}
.y44{bottom:403.978350px;}
.y1b{bottom:422.314950px;}
.y2b{bottom:443.314950px;}
.y2a{bottom:464.314950px;}
.y1a{bottom:485.314950px;}
.y19{bottom:506.314950px;}
.y18{bottom:527.314950px;}
.y17{bottom:548.314950px;}
.y30{bottom:551.173050px;}
.y2f{bottom:568.423050px;}
.y16{bottom:569.314950px;}
.y2e{bottom:585.673050px;}
.y15{bottom:590.314950px;}
.y2d{bottom:602.923050px;}
.y14{bottom:611.314950px;}
.y13{bottom:632.314950px;}
.y12{bottom:653.314950px;}
.y11{bottom:674.314950px;}
.y10{bottom:695.314950px;}
.y43{bottom:716.314950px;}
.y42{bottom:737.314950px;}
.y41{bottom:758.314950px;}
.yf{bottom:772.564800px;}
.y63{bottom:774.705000px;}
.y40{bottom:779.314950px;}
.ye{bottom:790.564800px;}
.y62{bottom:792.569250px;}
.y3f{bottom:800.314950px;}
.yd{bottom:808.564800px;}
.y61{bottom:810.433500px;}
.y3e{bottom:821.314950px;}
.yc{bottom:826.564800px;}
.y60{bottom:828.297750px;}
.y3d{bottom:842.314950px;}
.yb{bottom:844.564800px;}
.y5f{bottom:846.162150px;}
.y3c{bottom:863.314950px;}
.y5e{bottom:864.026400px;}
.y5d{bottom:881.890650px;}
.y3b{bottom:884.314950px;}
.y5c{bottom:899.755050px;}
.y3a{bottom:905.314950px;}
.y5b{bottom:917.619300px;}
.ya{bottom:922.092450px;}
.y39{bottom:926.314950px;}
.y5a{bottom:935.483550px;}
.y38{bottom:947.314950px;}
.y59{bottom:953.347800px;}
.y37{bottom:968.314950px;}
.y58{bottom:971.212050px;}
.y57{bottom:989.076450px;}
.y36{bottom:989.314950px;}
.y9{bottom:994.612050px;}
.y56{bottom:1006.940700px;}
.y35{bottom:1010.314950px;}
.y55{bottom:1024.804950px;}
.y34{bottom:1031.314950px;}
.y54{bottom:1051.173300px;}
.y33{bottom:1052.314950px;}
.y32{bottom:1073.314950px;}
.y53{bottom:1076.501400px;}
.y8{bottom:1082.502300px;}
.y52{bottom:1093.751400px;}
.y64{bottom:1094.314950px;}
.y7{bottom:1100.502300px;}
.y51{bottom:1111.001400px;}
.y31{bottom:1115.314950px;}
.y6{bottom:1118.502300px;}
.y5{bottom:1136.502300px;}
.y4{bottom:1163.006250px;}
.y3{bottom:1181.006250px;}
.y29{bottom:1189.226850px;}
.y2{bottom:1199.006250px;}
.h9{height:33.351562px;}
.h8{height:37.520508px;}
.h3{height:39.313477px;}
.h2{height:41.689453px;}
.h6{height:45.858398px;}
.h4{height:52.417969px;}
.h7{height:56.929688px;}
.h5{height:73.195312px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:127.559100px;}
.x10{left:157.322850px;}
.xb{left:170.078700px;}
.xa{left:191.338650px;}
.xe{left:233.831700px;}
.xc{left:244.488150px;}
.xf{left:293.811000px;}
.xd{left:296.574750px;}
.x1{left:442.706700px;}
.x5{left:534.564000px;}
.x2{left:539.026650px;}
.x4{left:568.274550px;}
.x8{left:571.300200px;}
.x6{left:595.834800px;}
.x7{left:666.597750px;}
.x3{left:695.878500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.056000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.469333pt;}
.ls2{letter-spacing:-0.410667pt;}
.lsc{letter-spacing:-0.352000pt;}
.ls4{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls9{letter-spacing:-0.176000pt;}
.ls1{letter-spacing:-0.117333pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws3b{word-spacing:-14.666667pt;}
.ws3a{word-spacing:-14.314667pt;}
.ws2{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws7{word-spacing:-2.933333pt;}
.wsb{word-spacing:-2.757333pt;}
.ws18{word-spacing:-2.640000pt;}
.ws32{word-spacing:-2.405333pt;}
.ws27{word-spacing:-2.229333pt;}
.ws3c{word-spacing:-2.053333pt;}
.ws6{word-spacing:-2.026667pt;}
.ws5{word-spacing:-2.016000pt;}
.ws1f{word-spacing:-1.968000pt;}
.ws35{word-spacing:-1.920000pt;}
.ws43{word-spacing:-1.818667pt;}
.ws44{word-spacing:-1.701333pt;}
.ws33{word-spacing:-1.232000pt;}
.ws22{word-spacing:-1.114667pt;}
.wse{word-spacing:-0.938667pt;}
.ws4{word-spacing:-0.864000pt;}
.ws11{word-spacing:-0.352000pt;}
.ws28{word-spacing:-0.176000pt;}
.ws37{word-spacing:-0.144000pt;}
.ws3{word-spacing:0.000000pt;}
.ws45{word-spacing:0.117333pt;}
.ws39{word-spacing:0.240000pt;}
.ws13{word-spacing:0.293333pt;}
.ws46{word-spacing:0.469333pt;}
.ws1a{word-spacing:0.762667pt;}
.ws2b{word-spacing:1.056000pt;}
.wsc{word-spacing:1.408000pt;}
.ws8{word-spacing:1.466667pt;}
.ws29{word-spacing:1.760000pt;}
.ws9{word-spacing:1.994667pt;}
.wsa{word-spacing:2.229333pt;}
.ws40{word-spacing:2.288000pt;}
.ws1d{word-spacing:2.757333pt;}
.ws42{word-spacing:3.109333pt;}
.ws15{word-spacing:3.226667pt;}
.ws36{word-spacing:3.312000pt;}
.ws2e{word-spacing:3.930667pt;}
.ws14{word-spacing:4.106667pt;}
.ws3f{word-spacing:4.693333pt;}
.ws31{word-spacing:4.986667pt;}
.ws16{word-spacing:5.045333pt;}
.ws30{word-spacing:5.338667pt;}
.ws19{word-spacing:5.514667pt;}
.ws2a{word-spacing:5.632000pt;}
.wsf{word-spacing:5.866667pt;}
.ws3d{word-spacing:6.160000pt;}
.ws10{word-spacing:6.218667pt;}
.ws20{word-spacing:6.336000pt;}
.ws17{word-spacing:6.512000pt;}
.wsd{word-spacing:6.746667pt;}
.ws1b{word-spacing:7.216000pt;}
.ws12{word-spacing:7.685333pt;}
.ws2f{word-spacing:8.096000pt;}
.ws1c{word-spacing:8.330667pt;}
.ws2c{word-spacing:8.506667pt;}
.ws24{word-spacing:9.738667pt;}
.ws26{word-spacing:10.442667pt;}
.ws23{word-spacing:10.970667pt;}
.ws3e{word-spacing:11.146667pt;}
.ws41{word-spacing:11.205333pt;}
.ws34{word-spacing:11.280000pt;}
.ws38{word-spacing:11.856000pt;}
.ws2d{word-spacing:13.317333pt;}
.ws25{word-spacing:13.728000pt;}
.ws1e{word-spacing:15.696000pt;}
.ws21{word-spacing:221.065600pt;}
._8{margin-left:-24.405333pt;}
._4{margin-left:-10.853333pt;}
._7{margin-left:-6.854400pt;}
._1{margin-left:-4.368000pt;}
._2{margin-left:-3.419200pt;}
._0{margin-left:-1.790400pt;}
._6{margin-left:-0.892800pt;}
._5{width:1.056000pt;}
._3{width:3.115200pt;}
._9{width:4.106667pt;}
._f{width:6.688000pt;}
._b{width:159.738667pt;}
._a{width:206.855467pt;}
._c{width:353.756267pt;}
._d{width:354.646400pt;}
._e{width:365.755733pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.227600pt;}
.y28{bottom:114.057733pt;}
.y50{bottom:128.160800pt;}
.y27{bottom:132.724400pt;}
.y4f{bottom:143.494133pt;}
.y26{bottom:151.391067pt;}
.y4e{bottom:158.827467pt;}
.y25{bottom:170.057733pt;}
.y24{bottom:188.724400pt;}
.y4d{bottom:203.076000pt;}
.y23{bottom:207.391067pt;}
.y4c{bottom:218.955333pt;}
.y22{bottom:226.057733pt;}
.y4b{bottom:234.834800pt;}
.y21{bottom:244.724400pt;}
.y4a{bottom:250.714133pt;}
.y20{bottom:263.391067pt;}
.y49{bottom:266.593467pt;}
.y1f{bottom:282.057733pt;}
.y48{bottom:282.472800pt;}
.y1e{bottom:300.724400pt;}
.y47{bottom:305.911333pt;}
.y1d{bottom:319.391067pt;}
.y46{bottom:328.425200pt;}
.y1c{bottom:338.057733pt;}
.y45{bottom:343.758533pt;}
.y2c{bottom:356.724400pt;}
.y44{bottom:359.091867pt;}
.y1b{bottom:375.391067pt;}
.y2b{bottom:394.057733pt;}
.y2a{bottom:412.724400pt;}
.y1a{bottom:431.391067pt;}
.y19{bottom:450.057733pt;}
.y18{bottom:468.724400pt;}
.y17{bottom:487.391067pt;}
.y30{bottom:489.931600pt;}
.y2f{bottom:505.264933pt;}
.y16{bottom:506.057733pt;}
.y2e{bottom:520.598267pt;}
.y15{bottom:524.724400pt;}
.y2d{bottom:535.931600pt;}
.y14{bottom:543.391067pt;}
.y13{bottom:562.057733pt;}
.y12{bottom:580.724400pt;}
.y11{bottom:599.391067pt;}
.y10{bottom:618.057733pt;}
.y43{bottom:636.724400pt;}
.y42{bottom:655.391067pt;}
.y41{bottom:674.057733pt;}
.yf{bottom:686.724267pt;}
.y63{bottom:688.626667pt;}
.y40{bottom:692.724400pt;}
.ye{bottom:702.724267pt;}
.y62{bottom:704.506000pt;}
.y3f{bottom:711.391067pt;}
.yd{bottom:718.724267pt;}
.y61{bottom:720.385333pt;}
.y3e{bottom:730.057733pt;}
.yc{bottom:734.724267pt;}
.y60{bottom:736.264667pt;}
.y3d{bottom:748.724400pt;}
.yb{bottom:750.724267pt;}
.y5f{bottom:752.144133pt;}
.y3c{bottom:767.391067pt;}
.y5e{bottom:768.023467pt;}
.y5d{bottom:783.902800pt;}
.y3b{bottom:786.057733pt;}
.y5c{bottom:799.782267pt;}
.y3a{bottom:804.724400pt;}
.y5b{bottom:815.661600pt;}
.ya{bottom:819.637733pt;}
.y39{bottom:823.391067pt;}
.y5a{bottom:831.540933pt;}
.y38{bottom:842.057733pt;}
.y59{bottom:847.420267pt;}
.y37{bottom:860.724400pt;}
.y58{bottom:863.299600pt;}
.y57{bottom:879.179067pt;}
.y36{bottom:879.391067pt;}
.y9{bottom:884.099600pt;}
.y56{bottom:895.058400pt;}
.y35{bottom:898.057733pt;}
.y55{bottom:910.937733pt;}
.y34{bottom:916.724400pt;}
.y54{bottom:934.376267pt;}
.y33{bottom:935.391067pt;}
.y32{bottom:954.057733pt;}
.y53{bottom:956.890133pt;}
.y8{bottom:962.224267pt;}
.y52{bottom:972.223467pt;}
.y64{bottom:972.724400pt;}
.y7{bottom:978.224267pt;}
.y51{bottom:987.556800pt;}
.y31{bottom:991.391067pt;}
.y6{bottom:994.224267pt;}
.y5{bottom:1010.224267pt;}
.y4{bottom:1033.783333pt;}
.y3{bottom:1049.783333pt;}
.y29{bottom:1057.090533pt;}
.y2{bottom:1065.783333pt;}
.h9{height:29.645833pt;}
.h8{height:33.351562pt;}
.h3{height:34.945312pt;}
.h2{height:37.057292pt;}
.h6{height:40.763021pt;}
.h4{height:46.593750pt;}
.h7{height:50.604167pt;}
.h5{height:65.062500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:113.385867pt;}
.x10{left:139.842533pt;}
.xb{left:151.181067pt;}
.xa{left:170.078800pt;}
.xe{left:207.850400pt;}
.xc{left:217.322800pt;}
.xf{left:261.165333pt;}
.xd{left:263.622000pt;}
.x1{left:393.517067pt;}
.x5{left:475.168000pt;}
.x2{left:479.134800pt;}
.x4{left:505.132933pt;}
.x8{left:507.822400pt;}
.x6{left:529.630933pt;}
.x7{left:592.531333pt;}
.x3{left:618.558667pt;}
}




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