
    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_a53853c3900ddbdd04c6e791.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e388d523edcb367a87e91c2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_cb47596dd5074eb869f81f49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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_ff25298091f2c78f8bdbd824.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718000;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_10b3806b7b80fa3bd31aebc7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_b030901eee130f81805d3986.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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_ff25298091f2c78f8bdbd824.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.718000;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:ffa;src:url('chunks/assets/font_cb47596dd5074eb869f81f49.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.918000;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.098000px;}
.v1{vertical-align:21.962400px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.480000px;}
.ls3{letter-spacing:2.400000px;}
.ls4{letter-spacing:2.999400px;}
.ls2{letter-spacing:3.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;}
}
.ws1a{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.400000px;}
.ws2{word-spacing:-9.619500px;}
.ws3{word-spacing:-7.870500px;}
.ws35{word-spacing:-3.300000px;}
.ws16{word-spacing:-2.940000px;}
.wsd{word-spacing:-2.820000px;}
.ws5{word-spacing:-2.400000px;}
.ws15{word-spacing:-2.220000px;}
.ws31{word-spacing:-2.040000px;}
.ws2f{word-spacing:-1.920000px;}
.ws32{word-spacing:-1.560000px;}
.ws13{word-spacing:-1.260000px;}
.ws21{word-spacing:-1.020000px;}
.ws4{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.660000px;}
.ws2e{word-spacing:-0.600000px;}
.ws19{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
.ws2d{word-spacing:0.060000px;}
.ws29{word-spacing:0.660000px;}
.ws25{word-spacing:1.080000px;}
.ws11{word-spacing:1.140000px;}
.ws26{word-spacing:1.200000px;}
.ws18{word-spacing:1.620000px;}
.ws23{word-spacing:1.740000px;}
.ws9{word-spacing:2.280000px;}
.ws30{word-spacing:2.700000px;}
.ws2c{word-spacing:3.360000px;}
.wsa{word-spacing:3.600000px;}
.ws12{word-spacing:3.900000px;}
.ws27{word-spacing:3.960000px;}
.ws22{word-spacing:4.680000px;}
.ws6{word-spacing:5.040000px;}
.ws14{word-spacing:5.820000px;}
.ws28{word-spacing:5.880000px;}
.ws2a{word-spacing:5.940000px;}
.ws20{word-spacing:6.360000px;}
.wse{word-spacing:6.720000px;}
.ws33{word-spacing:6.960000px;}
.ws8{word-spacing:7.200000px;}
.ws2b{word-spacing:7.620000px;}
.ws7{word-spacing:8.280000px;}
.ws10{word-spacing:8.700000px;}
.ws24{word-spacing:8.940000px;}
.wsb{word-spacing:10.260000px;}
.ws1b{word-spacing:12.000000px;}
.ws1c{word-spacing:13.380000px;}
.wsc{word-spacing:14.160000px;}
.ws34{word-spacing:17.280000px;}
.ws1f{word-spacing:19.980000px;}
.ws1d{word-spacing:38.250000px;}
.ws1e{word-spacing:1057.806000px;}
._5{margin-left:-6.047400px;}
._3{margin-left:-3.900000px;}
._2{margin-left:-2.544600px;}
._0{margin-left:-1.296000px;}
._4{width:1.326000px;}
._1{width:2.400600px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.482000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:89.534850px;}
.y4{bottom:97.125005px;}
.y3e{bottom:100.339350px;}
.y1f{bottom:139.264499px;}
.y3d{bottom:141.325950px;}
.y3c{bottom:160.825950px;}
.y62{bottom:176.416500px;}
.y3b{bottom:180.325950px;}
.y61{bottom:195.916500px;}
.y16{bottom:196.933500px;}
.y3a{bottom:199.829700px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y39{bottom:219.329700px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y60{bottom:234.916500px;}
.y38{bottom:238.829700px;}
.y5f{bottom:254.416500px;}
.y37{bottom:258.329700px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y5e{bottom:273.916500px;}
.y36{bottom:277.829700px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y5d{bottom:293.416500px;}
.y35{bottom:297.329700px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y5c{bottom:312.916500px;}
.y34{bottom:316.829700px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y5b{bottom:332.416500px;}
.y33{bottom:336.329700px;}
.yd{bottom:348.133500px;}
.y5a{bottom:351.916500px;}
.y32{bottom:355.829700px;}
.y59{bottom:371.416500px;}
.y31{bottom:375.329700px;}
.yc{bottom:386.785499px;}
.y58{bottom:390.916500px;}
.y30{bottom:394.829700px;}
.yb{bottom:408.044999px;}
.y57{bottom:410.416500px;}
.y2f{bottom:414.329700px;}
.y56{bottom:429.916500px;}
.y2e{bottom:433.829700px;}
.y55{bottom:449.416500px;}
.y2d{bottom:453.329700px;}
.y54{bottom:468.916500px;}
.y2c{bottom:472.829700px;}
.y53{bottom:488.416500px;}
.y2b{bottom:492.329700px;}
.y52{bottom:507.916500px;}
.y2a{bottom:511.829700px;}
.ya{bottom:520.864502px;}
.y51{bottom:527.416500px;}
.y29{bottom:531.329700px;}
.y9{bottom:538.864499px;}
.y50{bottom:546.916500px;}
.y28{bottom:550.829700px;}
.y8{bottom:556.864499px;}
.y4f{bottom:566.416500px;}
.y27{bottom:570.329700px;}
.y4e{bottom:585.916500px;}
.y26{bottom:589.829700px;}
.y4d{bottom:605.416500px;}
.y25{bottom:609.329700px;}
.y4c{bottom:624.916500px;}
.y24{bottom:628.829700px;}
.y4b{bottom:644.416500px;}
.y7{bottom:645.510000px;}
.y4a{bottom:663.916500px;}
.y6{bottom:666.771000px;}
.y49{bottom:683.416500px;}
.y48{bottom:702.916500px;}
.y47{bottom:722.416500px;}
.y5{bottom:726.298500px;}
.y46{bottom:741.916500px;}
.y23{bottom:752.309700px;}
.y3{bottom:752.599495px;}
.y45{bottom:761.416500px;}
.y44{bottom:780.916500px;}
.y43{bottom:800.416500px;}
.y42{bottom:819.916500px;}
.y22{bottom:837.628350px;}
.y41{bottom:839.416500px;}
.y40{bottom:858.916500px;}
.y2{bottom:879.369000px;}
.y20{bottom:914.732250px;}
.y21{bottom:915.756750px;}
.y1{bottom:966.726000px;}
.h12{height:22.037400px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hd{height:33.600000px;}
.hc{height:37.800000px;}
.h10{height:42.000000px;}
.h7{height:45.960000px;}
.he{height:46.202400px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h11{height:48.897000px;}
.hf{height:53.400000px;}
.h2{height:55.152000px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.ha{height:977.953500px;}
.hb{height:978.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:637.500000px;}
.w2{width:637.794021px;}
.w3{width:637.795500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.039350px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:181.643100px;}
.x4{left:203.484001px;}
.x8{left:381.869850px;}
.x3{left:454.959000px;}
.x5{left:532.505850px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.642667pt;}
.v1{vertical-align:19.522133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls3{letter-spacing:2.133333pt;}
.ls4{letter-spacing:2.666133pt;}
.ls2{letter-spacing:2.666667pt;}
.ws1a{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.800000pt;}
.ws2{word-spacing:-8.550667pt;}
.ws3{word-spacing:-6.996000pt;}
.ws35{word-spacing:-2.933333pt;}
.ws16{word-spacing:-2.613333pt;}
.wsd{word-spacing:-2.506667pt;}
.ws5{word-spacing:-2.133333pt;}
.ws15{word-spacing:-1.973333pt;}
.ws31{word-spacing:-1.813333pt;}
.ws2f{word-spacing:-1.706667pt;}
.ws32{word-spacing:-1.386667pt;}
.ws13{word-spacing:-1.120000pt;}
.ws21{word-spacing:-0.906667pt;}
.ws4{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.586667pt;}
.ws2e{word-spacing:-0.533333pt;}
.ws19{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.053333pt;}
.ws29{word-spacing:0.586667pt;}
.ws25{word-spacing:0.960000pt;}
.ws11{word-spacing:1.013333pt;}
.ws26{word-spacing:1.066667pt;}
.ws18{word-spacing:1.440000pt;}
.ws23{word-spacing:1.546667pt;}
.ws9{word-spacing:2.026667pt;}
.ws30{word-spacing:2.400000pt;}
.ws2c{word-spacing:2.986667pt;}
.wsa{word-spacing:3.200000pt;}
.ws12{word-spacing:3.466667pt;}
.ws27{word-spacing:3.520000pt;}
.ws22{word-spacing:4.160000pt;}
.ws6{word-spacing:4.480000pt;}
.ws14{word-spacing:5.173333pt;}
.ws28{word-spacing:5.226667pt;}
.ws2a{word-spacing:5.280000pt;}
.ws20{word-spacing:5.653333pt;}
.wse{word-spacing:5.973333pt;}
.ws33{word-spacing:6.186667pt;}
.ws8{word-spacing:6.400000pt;}
.ws2b{word-spacing:6.773333pt;}
.ws7{word-spacing:7.360000pt;}
.ws10{word-spacing:7.733333pt;}
.ws24{word-spacing:7.946667pt;}
.wsb{word-spacing:9.120000pt;}
.ws1b{word-spacing:10.666667pt;}
.ws1c{word-spacing:11.893333pt;}
.wsc{word-spacing:12.586667pt;}
.ws34{word-spacing:15.360000pt;}
.ws1f{word-spacing:17.760000pt;}
.ws1d{word-spacing:34.000000pt;}
.ws1e{word-spacing:940.272000pt;}
._5{margin-left:-5.375467pt;}
._3{margin-left:-3.466667pt;}
._2{margin-left:-2.261867pt;}
._0{margin-left:-1.152000pt;}
._4{width:1.178667pt;}
._1{width:2.133867pt;}
.fsa{font-size:27.984000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:79.586533pt;}
.y4{bottom:86.333337pt;}
.y3e{bottom:89.190533pt;}
.y1f{bottom:123.790666pt;}
.y3d{bottom:125.623067pt;}
.y3c{bottom:142.956400pt;}
.y62{bottom:156.814667pt;}
.y3b{bottom:160.289733pt;}
.y61{bottom:174.148000pt;}
.y16{bottom:175.052000pt;}
.y3a{bottom:177.626400pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y39{bottom:194.959733pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y60{bottom:208.814667pt;}
.y38{bottom:212.293067pt;}
.y5f{bottom:226.148000pt;}
.y37{bottom:229.626400pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y5e{bottom:243.481333pt;}
.y36{bottom:246.959733pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y5d{bottom:260.814667pt;}
.y35{bottom:264.293067pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y5c{bottom:278.148000pt;}
.y34{bottom:281.626400pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y5b{bottom:295.481333pt;}
.y33{bottom:298.959733pt;}
.yd{bottom:309.452000pt;}
.y5a{bottom:312.814667pt;}
.y32{bottom:316.293067pt;}
.y59{bottom:330.148000pt;}
.y31{bottom:333.626400pt;}
.yc{bottom:343.809333pt;}
.y58{bottom:347.481333pt;}
.y30{bottom:350.959733pt;}
.yb{bottom:362.706666pt;}
.y57{bottom:364.814667pt;}
.y2f{bottom:368.293067pt;}
.y56{bottom:382.148000pt;}
.y2e{bottom:385.626400pt;}
.y55{bottom:399.481333pt;}
.y2d{bottom:402.959733pt;}
.y54{bottom:416.814667pt;}
.y2c{bottom:420.293067pt;}
.y53{bottom:434.148000pt;}
.y2b{bottom:437.626400pt;}
.y52{bottom:451.481333pt;}
.y2a{bottom:454.959733pt;}
.ya{bottom:462.990669pt;}
.y51{bottom:468.814667pt;}
.y29{bottom:472.293067pt;}
.y9{bottom:478.990666pt;}
.y50{bottom:486.148000pt;}
.y28{bottom:489.626400pt;}
.y8{bottom:494.990666pt;}
.y4f{bottom:503.481333pt;}
.y27{bottom:506.959733pt;}
.y4e{bottom:520.814667pt;}
.y26{bottom:524.293067pt;}
.y4d{bottom:538.148000pt;}
.y25{bottom:541.626400pt;}
.y4c{bottom:555.481333pt;}
.y24{bottom:558.959733pt;}
.y4b{bottom:572.814667pt;}
.y7{bottom:573.786667pt;}
.y4a{bottom:590.148000pt;}
.y6{bottom:592.685334pt;}
.y49{bottom:607.481333pt;}
.y48{bottom:624.814667pt;}
.y47{bottom:642.148000pt;}
.y5{bottom:645.598667pt;}
.y46{bottom:659.481333pt;}
.y23{bottom:668.719733pt;}
.y3{bottom:668.977329pt;}
.y45{bottom:676.814667pt;}
.y44{bottom:694.148000pt;}
.y43{bottom:711.481333pt;}
.y42{bottom:728.814667pt;}
.y22{bottom:744.558533pt;}
.y41{bottom:746.148000pt;}
.y40{bottom:763.481333pt;}
.y2{bottom:781.661334pt;}
.y20{bottom:813.095333pt;}
.y21{bottom:814.006000pt;}
.y1{bottom:859.312000pt;}
.h12{height:19.588800pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hd{height:29.866667pt;}
.hc{height:33.600000pt;}
.h10{height:37.333333pt;}
.h7{height:40.853333pt;}
.he{height:41.068800pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h11{height:43.464000pt;}
.hf{height:47.466667pt;}
.h2{height:49.024000pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.ha{height:869.292000pt;}
.hb{height:869.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:566.666667pt;}
.w2{width:566.928019pt;}
.w3{width:566.929333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.590533pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:161.460533pt;}
.x4{left:180.874667pt;}
.x8{left:339.439867pt;}
.x3{left:404.408000pt;}
.x5{left:473.338533pt;}
}




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