
    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_28f1ba0921339b78c2c64003.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_28f1ba0921339b78c2c64003.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_7d5cadb666656366e84fcdd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_c573440601c338fa8d30c57f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_1895b4e14da39ac693b7533c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_b0e02f59eef0ca91fb7ec019.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b79d491c84a7ba5112cac5f1.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_695f5f07a1dd678332c2f356.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_809c039b67dab740e6e49990.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_6e6d5c34b6546d30447915d2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a092e9f1c9d898b90bf95c87.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5e779f85372c668e89118c78.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707000;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:ffd;src:url('chunks/assets/font_c8aa2e896a03e0f656134358.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;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:ffe;src:url('chunks/assets/font_7d5cadb666656366e84fcdd0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;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:fff;src:url('chunks/assets/font_1d93cc6c117ba8d686fb4ac5.woff2')format("woff");}.fff{font-family:fff;line-height:0.945813;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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws10{word-spacing:-5.100000px;}
.ws6{word-spacing:-2.214000px;}
.ws4{word-spacing:-2.160000px;}
.ws11{word-spacing:-1.740000px;}
.ws5{word-spacing:-0.918000px;}
.ws14{word-spacing:-0.180000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws13{word-spacing:3.300000px;}
.ws15{word-spacing:4.380000px;}
.ws7{word-spacing:4.806000px;}
.wsb{word-spacing:5.700000px;}
.ws17{word-spacing:5.880000px;}
.wsa{word-spacing:8.700000px;}
.ws9{word-spacing:10.140000px;}
.ws16{word-spacing:10.200000px;}
.ws8{word-spacing:14.940000px;}
.ws12{word-spacing:15.900000px;}
.wse{word-spacing:17.460000px;}
.ws18{word-spacing:27.240000px;}
.wsf{word-spacing:47.760000px;}
.wsc{word-spacing:48.021000px;}
.ws19{word-spacing:66.780000px;}
.wsd{word-spacing:386.314800px;}
.ws0{word-spacing:1714.377600px;}
._26{margin-left:-58.080000px;}
._b{margin-left:-24.294000px;}
._10{margin-left:-14.220000px;}
._3{margin-left:-8.262000px;}
._4{margin-left:-7.185000px;}
._11{margin-left:-6.018000px;}
._2{margin-left:-4.386000px;}
._5{margin-left:-2.920800px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._15{width:2.508000px;}
._f{width:3.666000px;}
._7{width:4.768800px;}
._6{width:6.582000px;}
._c{width:7.746000px;}
._e{width:8.922000px;}
._14{width:10.464000px;}
._1d{width:11.964000px;}
._16{width:13.608000px;}
._8{width:14.613600px;}
._a{width:17.364000px;}
._1f{width:18.588000px;}
._21{width:19.590000px;}
._17{width:20.706000px;}
._23{width:22.956000px;}
._1c{width:24.300000px;}
._13{width:26.226000px;}
._22{width:27.246000px;}
._1b{width:31.200000px;}
._18{width:32.370000px;}
._20{width:33.840000px;}
._1a{width:37.248000px;}
._19{width:38.256000px;}
._25{width:42.504000px;}
._24{width:45.474000px;}
._9{width:54.060000px;}
._1e{width:66.720000px;}
._d{width:69.000000px;}
._12{width:70.020000px;}
._27{width:72.138000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y2b{bottom:148.642650px;}
.y2a{bottom:168.142650px;}
.y29{bottom:187.642650px;}
.y28{bottom:207.142650px;}
.y27{bottom:226.642650px;}
.y26{bottom:246.142650px;}
.y25{bottom:265.642650px;}
.y59{bottom:275.705550px;}
.y58{bottom:295.205550px;}
.y24{bottom:304.642650px;}
.y57{bottom:314.705550px;}
.y23{bottom:324.142650px;}
.y56{bottom:334.205550px;}
.y22{bottom:343.642650px;}
.y55{bottom:353.705550px;}
.y21{bottom:363.142650px;}
.y54{bottom:373.205550px;}
.y20{bottom:382.642650px;}
.y53{bottom:392.705550px;}
.y1f{bottom:402.142650px;}
.y52{bottom:412.205550px;}
.y51{bottom:431.705550px;}
.y1e{bottom:441.142650px;}
.y50{bottom:451.205550px;}
.y34{bottom:456.139950px;}
.y1d{bottom:460.642650px;}
.y5c{bottom:470.705550px;}
.y33{bottom:478.639950px;}
.y1c{bottom:480.142650px;}
.y4f{bottom:490.205550px;}
.y1b{bottom:499.642650px;}
.y32{bottom:501.139950px;}
.y4e{bottom:509.705550px;}
.y1a{bottom:519.142650px;}
.y4d{bottom:529.205550px;}
.y19{bottom:538.642650px;}
.y31{bottom:541.639950px;}
.y4c{bottom:548.705550px;}
.y18{bottom:558.142650px;}
.y4b{bottom:568.205550px;}
.y17{bottom:577.642650px;}
.y30{bottom:586.639950px;}
.y4a{bottom:587.705550px;}
.y16{bottom:597.142650px;}
.y49{bottom:607.205550px;}
.y48{bottom:626.705550px;}
.y2f{bottom:627.139950px;}
.y15{bottom:636.184650px;}
.y47{bottom:646.205550px;}
.y14{bottom:655.678650px;}
.y2e{bottom:663.139950px;}
.y5b{bottom:665.705550px;}
.y13{bottom:673.674150px;}
.y46{bottom:685.205550px;}
.y12{bottom:691.669650px;}
.y2d{bottom:699.139950px;}
.y45{bottom:704.705550px;}
.y11{bottom:709.665150px;}
.y44{bottom:724.205550px;}
.y10{bottom:727.660650px;}
.y2c{bottom:735.139950px;}
.y43{bottom:743.705550px;}
.yf{bottom:745.656150px;}
.y42{bottom:763.205550px;}
.ye{bottom:763.651650px;}
.yd{bottom:781.647150px;}
.y41{bottom:782.705550px;}
.yc{bottom:799.642650px;}
.y40{bottom:802.205550px;}
.yb{bottom:817.642650px;}
.y3f{bottom:821.705550px;}
.y5a{bottom:841.205550px;}
.ya{bottom:856.657650px;}
.y3e{bottom:860.705550px;}
.y9{bottom:876.151650px;}
.y3d{bottom:880.205550px;}
.y8{bottom:894.147150px;}
.y3c{bottom:899.705550px;}
.y7{bottom:912.142650px;}
.y3b{bottom:919.205550px;}
.y6{bottom:930.142650px;}
.y3a{bottom:938.705550px;}
.y39{bottom:958.205550px;}
.y5{bottom:969.142650px;}
.y38{bottom:977.705550px;}
.y37{bottom:997.205550px;}
.y4{bottom:1024.374150px;}
.y36{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.660156px;}
.ha{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hc{height:46.200000px;}
.hb{height:50.400000px;}
.he{height:52.492611px;}
.hd{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xc{left:73.559100px;}
.xd{left:74.853150px;}
.xb{left:224.187900px;}
.xa{left:265.123950px;}
.x5{left:299.397900px;}
.x9{left:388.122450px;}
.xf{left:399.929550px;}
.x4{left:412.272150px;}
.x10{left:426.929550px;}
.x7{left:474.036450px;}
.x8{left:481.663950px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x6{left:637.415550px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws10{word-spacing:-4.533333pt;}
.ws6{word-spacing:-1.968000pt;}
.ws4{word-spacing:-1.920000pt;}
.ws11{word-spacing:-1.546667pt;}
.ws5{word-spacing:-0.816000pt;}
.ws14{word-spacing:-0.160000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws13{word-spacing:2.933333pt;}
.ws15{word-spacing:3.893333pt;}
.ws7{word-spacing:4.272000pt;}
.wsb{word-spacing:5.066667pt;}
.ws17{word-spacing:5.226667pt;}
.wsa{word-spacing:7.733333pt;}
.ws9{word-spacing:9.013333pt;}
.ws16{word-spacing:9.066667pt;}
.ws8{word-spacing:13.280000pt;}
.ws12{word-spacing:14.133333pt;}
.wse{word-spacing:15.520000pt;}
.ws18{word-spacing:24.213333pt;}
.wsf{word-spacing:42.453333pt;}
.wsc{word-spacing:42.685333pt;}
.ws19{word-spacing:59.360000pt;}
.wsd{word-spacing:343.390933pt;}
.ws0{word-spacing:1523.891200pt;}
._26{margin-left:-51.626667pt;}
._b{margin-left:-21.594667pt;}
._10{margin-left:-12.640000pt;}
._3{margin-left:-7.344000pt;}
._4{margin-left:-6.386667pt;}
._11{margin-left:-5.349333pt;}
._2{margin-left:-3.898667pt;}
._5{margin-left:-2.596267pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._15{width:2.229333pt;}
._f{width:3.258667pt;}
._7{width:4.238933pt;}
._6{width:5.850667pt;}
._c{width:6.885333pt;}
._e{width:7.930667pt;}
._14{width:9.301333pt;}
._1d{width:10.634667pt;}
._16{width:12.096000pt;}
._8{width:12.989867pt;}
._a{width:15.434667pt;}
._1f{width:16.522667pt;}
._21{width:17.413333pt;}
._17{width:18.405333pt;}
._23{width:20.405333pt;}
._1c{width:21.600000pt;}
._13{width:23.312000pt;}
._22{width:24.218667pt;}
._1b{width:27.733333pt;}
._18{width:28.773333pt;}
._20{width:30.080000pt;}
._1a{width:33.109333pt;}
._19{width:34.005333pt;}
._25{width:37.781333pt;}
._24{width:40.421333pt;}
._9{width:48.053333pt;}
._1e{width:59.306667pt;}
._d{width:61.333333pt;}
._12{width:62.240000pt;}
._27{width:64.122667pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y2b{bottom:132.126800pt;}
.y2a{bottom:149.460133pt;}
.y29{bottom:166.793467pt;}
.y28{bottom:184.126800pt;}
.y27{bottom:201.460133pt;}
.y26{bottom:218.793467pt;}
.y25{bottom:236.126800pt;}
.y59{bottom:245.071600pt;}
.y58{bottom:262.404933pt;}
.y24{bottom:270.793467pt;}
.y57{bottom:279.738267pt;}
.y23{bottom:288.126800pt;}
.y56{bottom:297.071600pt;}
.y22{bottom:305.460133pt;}
.y55{bottom:314.404933pt;}
.y21{bottom:322.793467pt;}
.y54{bottom:331.738267pt;}
.y20{bottom:340.126800pt;}
.y53{bottom:349.071600pt;}
.y1f{bottom:357.460133pt;}
.y52{bottom:366.404933pt;}
.y51{bottom:383.738267pt;}
.y1e{bottom:392.126800pt;}
.y50{bottom:401.071600pt;}
.y34{bottom:405.457733pt;}
.y1d{bottom:409.460133pt;}
.y5c{bottom:418.404933pt;}
.y33{bottom:425.457733pt;}
.y1c{bottom:426.793467pt;}
.y4f{bottom:435.738267pt;}
.y1b{bottom:444.126800pt;}
.y32{bottom:445.457733pt;}
.y4e{bottom:453.071600pt;}
.y1a{bottom:461.460133pt;}
.y4d{bottom:470.404933pt;}
.y19{bottom:478.793467pt;}
.y31{bottom:481.457733pt;}
.y4c{bottom:487.738267pt;}
.y18{bottom:496.126800pt;}
.y4b{bottom:505.071600pt;}
.y17{bottom:513.460133pt;}
.y30{bottom:521.457733pt;}
.y4a{bottom:522.404933pt;}
.y16{bottom:530.793467pt;}
.y49{bottom:539.738267pt;}
.y48{bottom:557.071600pt;}
.y2f{bottom:557.457733pt;}
.y15{bottom:565.497467pt;}
.y47{bottom:574.404933pt;}
.y14{bottom:582.825467pt;}
.y2e{bottom:589.457733pt;}
.y5b{bottom:591.738267pt;}
.y13{bottom:598.821467pt;}
.y46{bottom:609.071600pt;}
.y12{bottom:614.817467pt;}
.y2d{bottom:621.457733pt;}
.y45{bottom:626.404933pt;}
.y11{bottom:630.813467pt;}
.y44{bottom:643.738267pt;}
.y10{bottom:646.809467pt;}
.y2c{bottom:653.457733pt;}
.y43{bottom:661.071600pt;}
.yf{bottom:662.805467pt;}
.y42{bottom:678.404933pt;}
.ye{bottom:678.801467pt;}
.yd{bottom:694.797467pt;}
.y41{bottom:695.738267pt;}
.yc{bottom:710.793467pt;}
.y40{bottom:713.071600pt;}
.yb{bottom:726.793467pt;}
.y3f{bottom:730.404933pt;}
.y5a{bottom:747.738267pt;}
.ya{bottom:761.473467pt;}
.y3e{bottom:765.071600pt;}
.y9{bottom:778.801467pt;}
.y3d{bottom:782.404933pt;}
.y8{bottom:794.797467pt;}
.y3c{bottom:799.738267pt;}
.y7{bottom:810.793467pt;}
.y3b{bottom:817.071600pt;}
.y6{bottom:826.793467pt;}
.y3a{bottom:834.404933pt;}
.y39{bottom:851.738267pt;}
.y5{bottom:861.460133pt;}
.y38{bottom:869.071600pt;}
.y37{bottom:886.404933pt;}
.y4{bottom:910.554800pt;}
.y36{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.031250pt;}
.ha{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hc{height:41.066667pt;}
.hb{height:44.800000pt;}
.he{height:46.660099pt;}
.hd{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xc{left:65.385867pt;}
.xd{left:66.536133pt;}
.xb{left:199.278133pt;}
.xa{left:235.665733pt;}
.x5{left:266.131467pt;}
.x9{left:344.997733pt;}
.xf{left:355.492933pt;}
.x4{left:366.464133pt;}
.x10{left:379.492933pt;}
.x7{left:421.365733pt;}
.x8{left:428.145733pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x6{left:566.591600pt;}
}




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