
    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_3efb3f2a7fe7abc3c33ae456.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_3aa73469b2269d6c3d1740cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_c673b0155bf2c4ebf6421d57.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_9c82be02bd01e256fa954b84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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);}
.v2{vertical-align:-21.696000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls0{letter-spacing:2.987100px;}
.ls3{letter-spacing:2.989200px;}
.ls1{letter-spacing:7.900193px;}
.ls5{letter-spacing:21.665100px;}
.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;}
}
.ws20{word-spacing:-14.943900px;}
.ws42{word-spacing:-11.955150px;}
.ws1{word-spacing:-4.979557px;}
.ws1f{word-spacing:-3.227882px;}
.ws48{word-spacing:-2.630126px;}
.ws25{word-spacing:-2.331248px;}
.ws5f{word-spacing:-2.295389px;}
.ws1e{word-spacing:-2.151922px;}
.ws7{word-spacing:-1.865003px;}
.ws24{word-spacing:-1.853044px;}
.ws29{word-spacing:-1.793268px;}
.ws54{word-spacing:-1.530259px;}
.ws31{word-spacing:-1.434614px;}
.wsb{word-spacing:-1.291156px;}
.ws1d{word-spacing:-1.195512px;}
.ws46{word-spacing:-1.075961px;}
.wse{word-spacing:-0.812950px;}
.wsd{word-spacing:-0.765130px;}
.ws55{word-spacing:-0.639710px;}
.ws56{word-spacing:-0.621668px;}
.ws13{word-spacing:-0.526027px;}
.ws2b{word-spacing:-0.418429px;}
.ws47{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.239103px;}
.wsc{word-spacing:-0.143462px;}
.ws3{word-spacing:-0.059776px;}
.ws53{word-spacing:-0.003710px;}
.ws2{word-spacing:-0.000900px;}
.ws0{word-spacing:0.000000px;}
.ws3e{word-spacing:0.119551px;}
.ws57{word-spacing:0.143462px;}
.ws12{word-spacing:0.191282px;}
.ws39{word-spacing:0.358654px;}
.ws3b{word-spacing:0.418429px;}
.ws23{word-spacing:0.478205px;}
.ws5c{word-spacing:0.478206px;}
.ws5b{word-spacing:0.493840px;}
.ws14{word-spacing:0.621668px;}
.ws36{word-spacing:0.657532px;}
.ws11{word-spacing:0.717309px;}
.ws4b{word-spacing:0.777083px;}
.ws62{word-spacing:0.812950px;}
.ws61{word-spacing:0.816325px;}
.ws19{word-spacing:0.836858px;}
.ws37{word-spacing:1.016185px;}
.ws43{word-spacing:1.135736px;}
.ws2c{word-spacing:1.195512px;}
.ws35{word-spacing:1.374839px;}
.ws9{word-spacing:1.482439px;}
.ws32{word-spacing:1.613941px;}
.wsa{word-spacing:1.625900px;}
.ws18{word-spacing:1.673717px;}
.ws6{word-spacing:1.721542px;}
.ws52{word-spacing:1.769362px;}
.ws2e{word-spacing:2.271473px;}
.ws49{word-spacing:2.391024px;}
.ws3d{word-spacing:2.510575px;}
.ws2a{word-spacing:2.630126px;}
.ws4c{word-spacing:2.929004px;}
.ws4a{word-spacing:2.988780px;}
.ws41{word-spacing:3.048556px;}
.wsf{word-spacing:3.156160px;}
.ws22{word-spacing:3.168107px;}
.ws4f{word-spacing:3.203980px;}
.ws1b{word-spacing:3.227882px;}
.ws2f{word-spacing:3.466985px;}
.ws28{word-spacing:3.706087px;}
.ws50{word-spacing:3.794898px;}
.ws3a{word-spacing:3.825638px;}
.ws51{word-spacing:3.825648px;}
.ws38{word-spacing:3.885414px;}
.ws21{word-spacing:3.945190px;}
.ws5e{word-spacing:4.016930px;}
.ws10{word-spacing:4.112572px;}
.ws27{word-spacing:4.124516px;}
.ws58{word-spacing:4.160392px;}
.ws2d{word-spacing:4.244068px;}
.ws26{word-spacing:4.363619px;}
.ws3c{word-spacing:4.722272px;}
.ws3f{word-spacing:4.782048px;}
.ws60{word-spacing:4.829881px;}
.ws5a{word-spacing:4.877701px;}
.ws59{word-spacing:4.906075px;}
.ws1a{word-spacing:4.961375px;}
.ws1c{word-spacing:5.080926px;}
.ws8{word-spacing:5.308087px;}
.ws30{word-spacing:5.379804px;}
.ws5d{word-spacing:5.499369px;}
.ws33{word-spacing:6.037336px;}
.ws45{word-spacing:6.814418px;}
.ws34{word-spacing:7.113296px;}
.ws44{word-spacing:7.232848px;}
.ws4d{word-spacing:8.069706px;}
.ws5{word-spacing:8.607708px;}
.ws4e{word-spacing:8.966340px;}
.ws16{word-spacing:11.904091px;}
.ws40{word-spacing:14.884124px;}
.ws4{word-spacing:20.512577px;}
.ws17{word-spacing:29.828024px;}
._0{margin-left:-9.918000px;}
._5{margin-left:-7.073808px;}
._7{margin-left:-5.499355px;}
._3{margin-left:-4.339125px;}
._1{margin-left:-3.099375px;}
._2{margin-left:-1.239750px;}
._a{width:1.315063px;}
._6{width:4.284392px;}
._b{width:12.134447px;}
._10{width:13.804018px;}
._4{width:14.943900px;}
._11{width:17.664848px;}
._c{width:18.694225px;}
._14{width:19.983676px;}
._9{width:22.989159px;}
._8{width:25.249277px;}
._f{width:28.192627px;}
._d{width:29.887800px;}
._12{width:31.428306px;}
._13{width:32.852752px;}
._e{width:47.820600px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:44.233800px;}
.fs3{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y26{bottom:190.426500px;}
.y7e{bottom:192.382500px;}
.y7d{bottom:207.327000px;}
.y25{bottom:217.710000px;}
.y7c{bottom:222.271500px;}
.y50{bottom:235.611000px;}
.y24{bottom:235.621500px;}
.y7b{bottom:237.214500px;}
.y7a{bottom:252.159000px;}
.y23{bottom:253.533000px;}
.y79{bottom:267.103500px;}
.y4f{bottom:270.495000px;}
.y22{bottom:271.444500px;}
.y78{bottom:282.046500px;}
.y21{bottom:289.356000px;}
.y77{bottom:296.991000px;}
.y20{bottom:307.267500px;}
.y76{bottom:311.934000px;}
.y4e{bottom:323.311500px;}
.y1f{bottom:325.179000px;}
.y75{bottom:326.878500px;}
.y4d{bottom:341.212500px;}
.y74{bottom:341.823000px;}
.y73{bottom:356.766000px;}
.y4c{bottom:359.115000px;}
.y1e{bottom:360.384000px;}
.y72{bottom:371.710500px;}
.y4b{bottom:377.016000px;}
.y71{bottom:386.655000px;}
.y4a{bottom:394.917000px;}
.y70{bottom:401.598000px;}
.y49{bottom:412.818000px;}
.y6f{bottom:416.542500px;}
.y1d{bottom:425.149500px;}
.y48{bottom:430.719000px;}
.y6e{bottom:431.487000px;}
.y6d{bottom:446.430000px;}
.y47{bottom:448.620000px;}
.y1c{bottom:452.028000px;}
.y6c{bottom:461.374500px;}
.y46{bottom:466.521000px;}
.y1b{bottom:466.971000px;}
.y6b{bottom:476.319000px;}
.y1a{bottom:481.915500px;}
.y45{bottom:484.422000px;}
.y6a{bottom:491.262000px;}
.y19{bottom:496.860000px;}
.y44{bottom:502.323000px;}
.y69{bottom:506.206500px;}
.y18{bottom:511.803000px;}
.y43{bottom:520.224000px;}
.y68{bottom:521.149500px;}
.y17{bottom:526.747500px;}
.y67{bottom:536.094000px;}
.y42{bottom:538.125000px;}
.y16{bottom:541.692000px;}
.y66{bottom:551.038500px;}
.y41{bottom:556.026000px;}
.y15{bottom:556.635000px;}
.y65{bottom:565.981500px;}
.y14{bottom:571.579500px;}
.y40{bottom:573.927000px;}
.y64{bottom:580.926000px;}
.y13{bottom:586.522500px;}
.y3f{bottom:591.828000px;}
.y63{bottom:595.870500px;}
.y12{bottom:601.467000px;}
.y3e{bottom:609.729000px;}
.y11{bottom:616.411500px;}
.y62{bottom:624.454500px;}
.y3d{bottom:627.630000px;}
.y10{bottom:631.354500px;}
.y3c{bottom:645.532500px;}
.yf{bottom:646.299000px;}
.ye{bottom:661.243500px;}
.y3b{bottom:663.433500px;}
.y61{bottom:673.816500px;}
.yd{bottom:676.186500px;}
.y3a{bottom:681.334500px;}
.yc{bottom:691.131000px;}
.y60{bottom:691.606500px;}
.y39{bottom:699.235500px;}
.yb{bottom:706.075500px;}
.y5f{bottom:709.396500px;}
.y38{bottom:717.136500px;}
.ya{bottom:721.018500px;}
.y5e{bottom:727.186500px;}
.y37{bottom:735.037500px;}
.y9{bottom:735.963000px;}
.y36{bottom:752.938500px;}
.y5d{bottom:758.616000px;}
.y35{bottom:770.839500px;}
.y8{bottom:776.329500px;}
.y34{bottom:788.740500px;}
.y7{bottom:794.241000px;}
.y33{bottom:806.641500px;}
.y5c{bottom:807.978000px;}
.y6{bottom:812.152500px;}
.y5{bottom:817.576500px;}
.y32{bottom:824.542500px;}
.y5b{bottom:825.768000px;}
.y4{bottom:832.839000px;}
.y31{bottom:842.443500px;}
.y5a{bottom:843.558000px;}
.y30{bottom:860.344500px;}
.y59{bottom:861.348000px;}
.y2f{bottom:878.245500px;}
.y58{bottom:879.138000px;}
.y3{bottom:889.732500px;}
.y2e{bottom:896.146500px;}
.y57{bottom:896.926500px;}
.y2d{bottom:914.047500px;}
.y56{bottom:914.716500px;}
.y2{bottom:927.091500px;}
.y2c{bottom:931.950000px;}
.y55{bottom:932.506500px;}
.y2b{bottom:949.851000px;}
.y54{bottom:950.296500px;}
.y1{bottom:964.452000px;}
.y2a{bottom:967.752000px;}
.y53{bottom:968.085000px;}
.y29{bottom:985.653000px;}
.y52{bottom:985.875000px;}
.y28{bottom:1003.554000px;}
.y51{bottom:1003.665000px;}
.y27{bottom:1021.455000px;}
.hb{height:24.675533px;}
.h4{height:30.432854px;}
.h8{height:32.900573px;}
.h7{height:33.044035px;}
.h5{height:41.006062px;}
.ha{height:41.125613px;}
.h9{height:41.304940px;}
.hc{height:41.425613px;}
.h6{height:44.831700px;}
.h3{height:52.134854px;}
.h2{height:85.294800px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:183.442500px;}
.x13{left:189.420000px;}
.xe{left:195.397500px;}
.x4{left:200.139000px;}
.x2{left:207.589500px;}
.xf{left:210.342000px;}
.x10{left:215.811000px;}
.x1{left:235.918500px;}
.xb{left:249.196500px;}
.xc{left:261.151500px;}
.xa{left:285.489000px;}
.x8{left:289.996500px;}
.x5{left:320.272500px;}
.x11{left:373.921500px;}
.x3{left:380.671500px;}
.x6{left:434.917500px;}
.x9{left:524.271000px;}
.x7{left:526.090500px;}
.x12{left:698.680500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls0{letter-spacing:2.655200pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1{letter-spacing:7.022394pt;}
.ls5{letter-spacing:19.257867pt;}
.ws20{word-spacing:-13.283467pt;}
.ws42{word-spacing:-10.626800pt;}
.ws1{word-spacing:-4.426273pt;}
.ws1f{word-spacing:-2.869229pt;}
.ws48{word-spacing:-2.337890pt;}
.ws25{word-spacing:-2.072221pt;}
.ws5f{word-spacing:-2.040346pt;}
.ws1e{word-spacing:-1.912819pt;}
.ws7{word-spacing:-1.657781pt;}
.ws24{word-spacing:-1.647150pt;}
.ws29{word-spacing:-1.594016pt;}
.ws54{word-spacing:-1.360230pt;}
.ws31{word-spacing:-1.275213pt;}
.wsb{word-spacing:-1.147694pt;}
.ws1d{word-spacing:-1.062677pt;}
.ws46{word-spacing:-0.956410pt;}
.wse{word-spacing:-0.722622pt;}
.wsd{word-spacing:-0.680115pt;}
.ws55{word-spacing:-0.568631pt;}
.ws56{word-spacing:-0.552594pt;}
.ws13{word-spacing:-0.467579pt;}
.ws2b{word-spacing:-0.371937pt;}
.ws47{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.212536pt;}
.wsc{word-spacing:-0.127522pt;}
.ws3{word-spacing:-0.053134pt;}
.ws53{word-spacing:-0.003298pt;}
.ws2{word-spacing:-0.000800pt;}
.ws0{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.106268pt;}
.ws57{word-spacing:0.127522pt;}
.ws12{word-spacing:0.170029pt;}
.ws39{word-spacing:0.318803pt;}
.ws3b{word-spacing:0.371937pt;}
.ws23{word-spacing:0.425071pt;}
.ws5c{word-spacing:0.425072pt;}
.ws5b{word-spacing:0.438969pt;}
.ws14{word-spacing:0.552594pt;}
.ws36{word-spacing:0.584473pt;}
.ws11{word-spacing:0.637608pt;}
.ws4b{word-spacing:0.690740pt;}
.ws62{word-spacing:0.722622pt;}
.ws61{word-spacing:0.725622pt;}
.ws19{word-spacing:0.743874pt;}
.ws37{word-spacing:0.903276pt;}
.ws43{word-spacing:1.009543pt;}
.ws2c{word-spacing:1.062677pt;}
.ws35{word-spacing:1.222079pt;}
.ws9{word-spacing:1.317723pt;}
.ws32{word-spacing:1.434614pt;}
.wsa{word-spacing:1.445245pt;}
.ws18{word-spacing:1.487748pt;}
.ws6{word-spacing:1.530259pt;}
.ws52{word-spacing:1.572766pt;}
.ws2e{word-spacing:2.019087pt;}
.ws49{word-spacing:2.125355pt;}
.ws3d{word-spacing:2.231622pt;}
.ws2a{word-spacing:2.337890pt;}
.ws4c{word-spacing:2.603559pt;}
.ws4a{word-spacing:2.656693pt;}
.ws41{word-spacing:2.709827pt;}
.wsf{word-spacing:2.805475pt;}
.ws22{word-spacing:2.816095pt;}
.ws4f{word-spacing:2.847982pt;}
.ws1b{word-spacing:2.869229pt;}
.ws2f{word-spacing:3.081764pt;}
.ws28{word-spacing:3.294300pt;}
.ws50{word-spacing:3.373243pt;}
.ws3a{word-spacing:3.400567pt;}
.ws51{word-spacing:3.400576pt;}
.ws38{word-spacing:3.453701pt;}
.ws21{word-spacing:3.506835pt;}
.ws5e{word-spacing:3.570605pt;}
.ws10{word-spacing:3.655619pt;}
.ws27{word-spacing:3.666237pt;}
.ws58{word-spacing:3.698126pt;}
.ws2d{word-spacing:3.772505pt;}
.ws26{word-spacing:3.878772pt;}
.ws3c{word-spacing:4.197575pt;}
.ws3f{word-spacing:4.250709pt;}
.ws60{word-spacing:4.293227pt;}
.ws5a{word-spacing:4.335734pt;}
.ws59{word-spacing:4.360955pt;}
.ws1a{word-spacing:4.410111pt;}
.ws1c{word-spacing:4.516379pt;}
.ws8{word-spacing:4.718299pt;}
.ws30{word-spacing:4.782048pt;}
.ws5d{word-spacing:4.888328pt;}
.ws33{word-spacing:5.366521pt;}
.ws45{word-spacing:6.057261pt;}
.ws34{word-spacing:6.322930pt;}
.ws44{word-spacing:6.429198pt;}
.ws4d{word-spacing:7.173072pt;}
.ws5{word-spacing:7.651296pt;}
.ws4e{word-spacing:7.970080pt;}
.ws16{word-spacing:10.581414pt;}
.ws40{word-spacing:13.230333pt;}
.ws4{word-spacing:18.233402pt;}
.ws17{word-spacing:26.513799pt;}
._0{margin-left:-8.816000pt;}
._5{margin-left:-6.287829pt;}
._7{margin-left:-4.888316pt;}
._3{margin-left:-3.857000pt;}
._1{margin-left:-2.755000pt;}
._2{margin-left:-1.102000pt;}
._a{width:1.168945pt;}
._6{width:3.808349pt;}
._b{width:10.786175pt;}
._10{width:12.270238pt;}
._4{width:13.283467pt;}
._11{width:15.702087pt;}
._c{width:16.617089pt;}
._14{width:17.763268pt;}
._9{width:20.434808pt;}
._8{width:22.443802pt;}
._f{width:25.060113pt;}
._d{width:26.566933pt;}
._12{width:27.936272pt;}
._13{width:29.202446pt;}
._e{width:42.507200pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:39.318933pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:169.268000pt;}
.y7e{bottom:171.006667pt;}
.y7d{bottom:184.290667pt;}
.y25{bottom:193.520000pt;}
.y7c{bottom:197.574667pt;}
.y50{bottom:209.432000pt;}
.y24{bottom:209.441333pt;}
.y7b{bottom:210.857333pt;}
.y7a{bottom:224.141333pt;}
.y23{bottom:225.362667pt;}
.y79{bottom:237.425333pt;}
.y4f{bottom:240.440000pt;}
.y22{bottom:241.284000pt;}
.y78{bottom:250.708000pt;}
.y21{bottom:257.205333pt;}
.y77{bottom:263.992000pt;}
.y20{bottom:273.126667pt;}
.y76{bottom:277.274667pt;}
.y4e{bottom:287.388000pt;}
.y1f{bottom:289.048000pt;}
.y75{bottom:290.558667pt;}
.y4d{bottom:303.300000pt;}
.y74{bottom:303.842667pt;}
.y73{bottom:317.125333pt;}
.y4c{bottom:319.213333pt;}
.y1e{bottom:320.341333pt;}
.y72{bottom:330.409333pt;}
.y4b{bottom:335.125333pt;}
.y71{bottom:343.693333pt;}
.y4a{bottom:351.037333pt;}
.y70{bottom:356.976000pt;}
.y49{bottom:366.949333pt;}
.y6f{bottom:370.260000pt;}
.y1d{bottom:377.910667pt;}
.y48{bottom:382.861333pt;}
.y6e{bottom:383.544000pt;}
.y6d{bottom:396.826667pt;}
.y47{bottom:398.773333pt;}
.y1c{bottom:401.802667pt;}
.y6c{bottom:410.110667pt;}
.y46{bottom:414.685333pt;}
.y1b{bottom:415.085333pt;}
.y6b{bottom:423.394667pt;}
.y1a{bottom:428.369333pt;}
.y45{bottom:430.597333pt;}
.y6a{bottom:436.677333pt;}
.y19{bottom:441.653333pt;}
.y44{bottom:446.509333pt;}
.y69{bottom:449.961333pt;}
.y18{bottom:454.936000pt;}
.y43{bottom:462.421333pt;}
.y68{bottom:463.244000pt;}
.y17{bottom:468.220000pt;}
.y67{bottom:476.528000pt;}
.y42{bottom:478.333333pt;}
.y16{bottom:481.504000pt;}
.y66{bottom:489.812000pt;}
.y41{bottom:494.245333pt;}
.y15{bottom:494.786667pt;}
.y65{bottom:503.094667pt;}
.y14{bottom:508.070667pt;}
.y40{bottom:510.157333pt;}
.y64{bottom:516.378667pt;}
.y13{bottom:521.353333pt;}
.y3f{bottom:526.069333pt;}
.y63{bottom:529.662667pt;}
.y12{bottom:534.637333pt;}
.y3e{bottom:541.981333pt;}
.y11{bottom:547.921333pt;}
.y62{bottom:555.070667pt;}
.y3d{bottom:557.893333pt;}
.y10{bottom:561.204000pt;}
.y3c{bottom:573.806667pt;}
.yf{bottom:574.488000pt;}
.ye{bottom:587.772000pt;}
.y3b{bottom:589.718667pt;}
.y61{bottom:598.948000pt;}
.yd{bottom:601.054667pt;}
.y3a{bottom:605.630667pt;}
.yc{bottom:614.338667pt;}
.y60{bottom:614.761333pt;}
.y39{bottom:621.542667pt;}
.yb{bottom:627.622667pt;}
.y5f{bottom:630.574667pt;}
.y38{bottom:637.454667pt;}
.ya{bottom:640.905333pt;}
.y5e{bottom:646.388000pt;}
.y37{bottom:653.366667pt;}
.y9{bottom:654.189333pt;}
.y36{bottom:669.278667pt;}
.y5d{bottom:674.325333pt;}
.y35{bottom:685.190667pt;}
.y8{bottom:690.070667pt;}
.y34{bottom:701.102667pt;}
.y7{bottom:705.992000pt;}
.y33{bottom:717.014667pt;}
.y5c{bottom:718.202667pt;}
.y6{bottom:721.913333pt;}
.y5{bottom:726.734667pt;}
.y32{bottom:732.926667pt;}
.y5b{bottom:734.016000pt;}
.y4{bottom:740.301333pt;}
.y31{bottom:748.838667pt;}
.y5a{bottom:749.829333pt;}
.y30{bottom:764.750667pt;}
.y59{bottom:765.642667pt;}
.y2f{bottom:780.662667pt;}
.y58{bottom:781.456000pt;}
.y3{bottom:790.873333pt;}
.y2e{bottom:796.574667pt;}
.y57{bottom:797.268000pt;}
.y2d{bottom:812.486667pt;}
.y56{bottom:813.081333pt;}
.y2{bottom:824.081333pt;}
.y2c{bottom:828.400000pt;}
.y55{bottom:828.894667pt;}
.y2b{bottom:844.312000pt;}
.y54{bottom:844.708000pt;}
.y1{bottom:857.290667pt;}
.y2a{bottom:860.224000pt;}
.y53{bottom:860.520000pt;}
.y29{bottom:876.136000pt;}
.y52{bottom:876.333333pt;}
.y28{bottom:892.048000pt;}
.y51{bottom:892.146667pt;}
.y27{bottom:907.960000pt;}
.hb{height:21.933807pt;}
.h4{height:27.051426pt;}
.h8{height:29.244954pt;}
.h7{height:29.372475pt;}
.h5{height:36.449833pt;}
.ha{height:36.556100pt;}
.h9{height:36.715502pt;}
.hc{height:36.822767pt;}
.h6{height:39.850400pt;}
.h3{height:46.342093pt;}
.h2{height:75.817600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:163.060000pt;}
.x13{left:168.373333pt;}
.xe{left:173.686667pt;}
.x4{left:177.901333pt;}
.x2{left:184.524000pt;}
.xf{left:186.970667pt;}
.x10{left:191.832000pt;}
.x1{left:209.705333pt;}
.xb{left:221.508000pt;}
.xc{left:232.134667pt;}
.xa{left:253.768000pt;}
.x8{left:257.774667pt;}
.x5{left:284.686667pt;}
.x11{left:332.374667pt;}
.x3{left:338.374667pt;}
.x6{left:386.593333pt;}
.x9{left:466.018667pt;}
.x7{left:467.636000pt;}
.x12{left:621.049333pt;}
}




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