
    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_98b2dc63cb1406e8e2ee8cee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_35e9dfc624c9a8821fb1e595.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_351319103302d6aa81cd1cf9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_42e877d785673fd967d1f9d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.683000;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_05614526f48eeac264a117d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689000;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_ef88674ea5bd1a6f62701344.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_f7785c3cbb48062296e736ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_1217c038f4b5e9d27cd1b7f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_a0676b5ae45de4b5762f11a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-6.480639px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.080103px;}
.v1{vertical-align:19.441863px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.107271px;}
.ls1{letter-spacing:0.429064px;}
.ls0{letter-spacing:2.903750px;}
.ls3{letter-spacing:10.119215px;}
.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;}
}
.ws1{word-spacing:-0.085815px;}
.ws42{word-spacing:-0.059818px;}
.ws1a{word-spacing:-0.059597px;}
.ws3{word-spacing:-0.053633px;}
.ws47{word-spacing:-0.035757px;}
.ws4a{word-spacing:0.000000px;}
.ws48{word-spacing:9.976188px;}
.ws43{word-spacing:10.011944px;}
.ws8{word-spacing:10.565705px;}
.ws19{word-spacing:11.204218px;}
.wsb{word-spacing:11.262934px;}
.ws2e{word-spacing:12.336559px;}
.ws45{word-spacing:12.443417px;}
.ws44{word-spacing:12.514931px;}
.ws1c{word-spacing:12.634544px;}
.ws9{word-spacing:12.711026px;}
.ws30{word-spacing:13.051722px;}
.ws46{word-spacing:13.087042px;}
.ws24{word-spacing:13.111319px;}
.ws3b{word-spacing:13.230513px;}
.ws35{word-spacing:13.468901px;}
.ws12{word-spacing:13.730053px;}
.ws11{word-spacing:13.783686px;}
.ws1b{word-spacing:13.826482px;}
.ws3c{word-spacing:13.886079px;}
.ws4{word-spacing:13.890952px;}
.ws6{word-spacing:13.944585px;}
.ws25{word-spacing:14.064870px;}
.ws38{word-spacing:14.362854px;}
.ws23{word-spacing:14.601242px;}
.ws27{word-spacing:14.780033px;}
.ws39{word-spacing:14.899226px;}
.ws2{word-spacing:15.274268px;}
.ws14{word-spacing:15.495195px;}
.ws34{word-spacing:15.793180px;}
.ws31{word-spacing:15.971971px;}
.ws2f{word-spacing:16.091164px;}
.ws2b{word-spacing:16.329552px;}
.wsd{word-spacing:16.411704px;}
.ws1d{word-spacing:16.687134px;}
.ws16{word-spacing:16.925521px;}
.wsa{word-spacing:17.001667px;}
.ws26{word-spacing:17.104312px;}
.ws22{word-spacing:17.640684px;}
.ws41{word-spacing:17.700281px;}
.ws2a{word-spacing:17.819475px;}
.ws10{word-spacing:18.074328px;}
.ws20{word-spacing:18.117459px;}
.ws3f{word-spacing:18.415444px;}
.wsf{word-spacing:18.449759px;}
.wse{word-spacing:18.825190px;}
.ws40{word-spacing:18.832622px;}
.ws3d{word-spacing:19.130607px;}
.ws18{word-spacing:19.666979px;}
.wsc{word-spacing:20.648713px;}
.ws1e{word-spacing:20.978111px;}
.ws17{word-spacing:21.037708px;}
.ws0{word-spacing:21.196362px;}
.ws1f{word-spacing:21.216498px;}
.ws15{word-spacing:21.276095px;}
.ws37{word-spacing:21.514483px;}
.ws36{word-spacing:21.693274px;}
.ws33{word-spacing:21.931661px;}
.ws49{word-spacing:22.968151px;}
.ws32{word-spacing:24.613522px;}
.ws3a{word-spacing:25.030700px;}
.ws21{word-spacing:25.328685px;}
.ws2c{word-spacing:25.567072px;}
.ws2d{word-spacing:25.865057px;}
.ws29{word-spacing:26.043848px;}
.ws3e{word-spacing:26.759011px;}
.ws28{word-spacing:34.685399px;}
.ws13{word-spacing:77.863950px;}
.ws5{word-spacing:100.333651px;}
.ws7{word-spacing:135.463279px;}
._4{margin-left:-9.697121px;}
._3{margin-left:-7.380110px;}
._6{margin-left:-5.001018px;}
._7{margin-left:-3.711338px;}
._0{margin-left:-1.802120px;}
._2{width:1.201413px;}
._1b{width:2.231354px;}
._b{width:9.707577px;}
._12{width:11.354584px;}
._c{width:12.635990px;}
._9{width:14.277211px;}
._8{width:15.757365px;}
._5{width:16.847583px;}
._f{width:17.859796px;}
._e{width:19.780009px;}
._19{width:20.978111px;}
._1{width:22.397775px;}
._10{width:23.402634px;}
._a{width:25.003647px;}
._11{width:26.077662px;}
._16{width:27.354980px;}
._1a{width:29.616350px;}
._15{width:35.936934px;}
._d{width:37.553858px;}
._17{width:40.525896px;}
._18{width:49.694344px;}
._13{width:50.826685px;}
._14{width:52.078220px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.756944px;}
.fs3{font-size:41.717232px;}
.fs2{font-size:53.633020px;}
.fs5{font-size:59.596905px;}
.fs6{font-size:59.818229px;}
.fs1{font-size:65.554797px;}
.fs4{font-size:77.476567px;}
.fs0{font-size:85.815231px;}
.y0{bottom:0.000000px;}
.y4c{bottom:52.982694px;}
.y4b{bottom:64.938806px;}
.y4a{bottom:76.895008px;}
.y49{bottom:88.851120px;}
.y48{bottom:100.807232px;}
.y46{bottom:107.889078px;}
.y47{bottom:112.764926px;}
.y45{bottom:181.241365px;}
.y29{bottom:181.241440px;}
.y44{bottom:198.343010px;}
.y28{bottom:198.343084px;}
.y43{bottom:215.624667px;}
.y27{bottom:215.624742px;}
.y42{bottom:232.726312px;}
.y26{bottom:235.066608px;}
.y41{bottom:250.007970px;}
.y25{bottom:252.168253px;}
.y24{bottom:269.449910px;}
.y40{bottom:271.790057px;}
.y23{bottom:286.551555px;}
.y3f{bottom:289.071715px;}
.y22{bottom:305.993422px;}
.y3e{bottom:306.173360px;}
.y21{bottom:323.275079px;}
.y3d{bottom:323.455017px;}
.y20{bottom:340.376724px;}
.y3c{bottom:345.417117px;}
.y1f{bottom:357.478369px;}
.y3b{bottom:362.518762px;}
.y1e{bottom:374.760026px;}
.y3a{bottom:379.800419px;}
.y1d{bottom:391.861671px;}
.y39{bottom:396.902064px;}
.y1c{bottom:409.143328px;}
.y38{bottom:414.183722px;}
.y1b{bottom:426.244973px;}
.y37{bottom:431.285367px;}
.y1a{bottom:443.526630px;}
.y36{bottom:448.567024px;}
.y19{bottom:460.628275px;}
.y35{bottom:465.668669px;}
.y18{bottom:477.909933px;}
.y34{bottom:482.950326px;}
.y17{bottom:495.011578px;}
.y33{bottom:500.051971px;}
.y16{bottom:514.453444px;}
.y32{bottom:517.333628px;}
.y15{bottom:531.735101px;}
.y31{bottom:534.435273px;}
.y14{bottom:548.836746px;}
.y30{bottom:551.716931px;}
.y13{bottom:566.118404px;}
.y2f{bottom:573.679031px;}
.y12{bottom:583.220048px;}
.y2e{bottom:590.780676px;}
.y11{bottom:600.501706px;}
.y2d{bottom:607.882321px;}
.y10{bottom:617.603351px;}
.y2c{bottom:625.163978px;}
.y2b{bottom:642.265623px;}
.y2a{bottom:659.547280px;}
.yf{bottom:659.547370px;}
.ye{bottom:726.693788px;}
.yd{bottom:743.255370px;}
.yc{bottom:759.636946px;}
.yb{bottom:776.018522px;}
.ya{bottom:792.580103px;}
.y9{bottom:808.961679px;}
.y8{bottom:825.343255px;}
.y7{bottom:841.904837px;}
.y6{bottom:859.906572px;}
.y5{bottom:894.289870px;}
.y4{bottom:1005.720542px;}
.y3{bottom:1022.822180px;}
.y2{bottom:1082.227868px;}
.y1{bottom:1106.170167px;}
.h8{height:26.495896px;}
.h9{height:27.575999px;}
.h4{height:36.631353px;}
.h7{height:40.377304px;}
.h6{height:40.704686px;}
.h2{height:44.773926px;}
.h3{height:47.934733px;}
.h5{height:53.613784px;}
.h1{height:59.384140px;}
.h0{height:1263.000000px;}
.w1{width:892.159500px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:110.493521px;}
.x7{left:131.735465px;}
.xb{left:142.963852px;}
.x1{left:172.419041px;}
.xc{left:183.692576px;}
.x6{left:193.661148px;}
.x3{left:227.504090px;}
.x4{left:295.550327px;}
.x2{left:381.958216px;}
.x8{left:463.505883px;}
.x9{left:484.747831px;}
.xa{left:775.570455px;}
@media print{
.v2{vertical-align:-5.760568pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.960091pt;}
.v1{vertical-align:17.281656pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.095352pt;}
.ls1{letter-spacing:0.381390pt;}
.ls0{letter-spacing:2.581111pt;}
.ls3{letter-spacing:8.994858pt;}
.ws1{word-spacing:-0.076280pt;}
.ws42{word-spacing:-0.053172pt;}
.ws1a{word-spacing:-0.052975pt;}
.ws3{word-spacing:-0.047674pt;}
.ws47{word-spacing:-0.031784pt;}
.ws4a{word-spacing:0.000000pt;}
.ws48{word-spacing:8.867722pt;}
.ws43{word-spacing:8.899506pt;}
.ws8{word-spacing:9.391738pt;}
.ws19{word-spacing:9.959305pt;}
.wsb{word-spacing:10.011497pt;}
.ws2e{word-spacing:10.965831pt;}
.ws45{word-spacing:11.060815pt;}
.ws44{word-spacing:11.124383pt;}
.ws1c{word-spacing:11.230706pt;}
.ws9{word-spacing:11.298690pt;}
.ws30{word-spacing:11.601531pt;}
.ws46{word-spacing:11.632926pt;}
.ws24{word-spacing:11.654506pt;}
.ws3b{word-spacing:11.760456pt;}
.ws35{word-spacing:11.972356pt;}
.ws12{word-spacing:12.204492pt;}
.ws11{word-spacing:12.252166pt;}
.ws1b{word-spacing:12.290206pt;}
.ws3c{word-spacing:12.343181pt;}
.ws4{word-spacing:12.347513pt;}
.ws6{word-spacing:12.395187pt;}
.ws25{word-spacing:12.502106pt;}
.ws38{word-spacing:12.766982pt;}
.ws23{word-spacing:12.978882pt;}
.ws27{word-spacing:13.137807pt;}
.ws39{word-spacing:13.243757pt;}
.ws2{word-spacing:13.577127pt;}
.ws14{word-spacing:13.773507pt;}
.ws34{word-spacing:14.038382pt;}
.ws31{word-spacing:14.197307pt;}
.ws2f{word-spacing:14.303257pt;}
.ws2b{word-spacing:14.515157pt;}
.wsd{word-spacing:14.588182pt;}
.ws1d{word-spacing:14.833008pt;}
.ws16{word-spacing:15.044908pt;}
.wsa{word-spacing:15.112593pt;}
.ws26{word-spacing:15.203833pt;}
.ws22{word-spacing:15.680608pt;}
.ws41{word-spacing:15.733583pt;}
.ws2a{word-spacing:15.839533pt;}
.ws10{word-spacing:16.066069pt;}
.ws20{word-spacing:16.104408pt;}
.ws3f{word-spacing:16.369283pt;}
.wsf{word-spacing:16.399786pt;}
.wse{word-spacing:16.733502pt;}
.ws40{word-spacing:16.740109pt;}
.ws3d{word-spacing:17.004984pt;}
.ws18{word-spacing:17.481759pt;}
.wsc{word-spacing:18.354411pt;}
.ws1e{word-spacing:18.647210pt;}
.ws17{word-spacing:18.700185pt;}
.ws0{word-spacing:18.841211pt;}
.ws1f{word-spacing:18.859110pt;}
.ws15{word-spacing:18.912085pt;}
.ws37{word-spacing:19.123985pt;}
.ws36{word-spacing:19.282910pt;}
.ws33{word-spacing:19.494810pt;}
.ws49{word-spacing:20.416135pt;}
.ws32{word-spacing:21.878686pt;}
.ws3a{word-spacing:22.249511pt;}
.ws21{word-spacing:22.514386pt;}
.ws2c{word-spacing:22.726287pt;}
.ws2d{word-spacing:22.991162pt;}
.ws29{word-spacing:23.150087pt;}
.ws3e{word-spacing:23.785787pt;}
.ws28{word-spacing:30.831466pt;}
.ws13{word-spacing:69.212400pt;}
.ws5{word-spacing:89.185467pt;}
.ws7{word-spacing:120.411804pt;}
._4{margin-left:-8.619663pt;}
._3{margin-left:-6.560098pt;}
._6{margin-left:-4.445350pt;}
._7{margin-left:-3.298967pt;}
._0{margin-left:-1.601884pt;}
._2{width:1.067923pt;}
._1b{width:1.983426pt;}
._b{width:8.628957pt;}
._12{width:10.092963pt;}
._c{width:11.231991pt;}
._9{width:12.690854pt;}
._8{width:14.006546pt;}
._5{width:14.975629pt;}
._f{width:15.875374pt;}
._e{width:17.582230pt;}
._19{width:18.647210pt;}
._1{width:19.909134pt;}
._10{width:20.802341pt;}
._a{width:22.225464pt;}
._11{width:23.180144pt;}
._16{width:24.315537pt;}
._1a{width:26.325645pt;}
._15{width:31.943941pt;}
._d{width:33.381207pt;}
._17{width:36.023018pt;}
._18{width:44.172750pt;}
._13{width:45.179276pt;}
._14{width:46.291751pt;}
.fs7{font-size:31.783951pt;}
.fs3{font-size:37.081984pt;}
.fs2{font-size:47.673796pt;}
.fs5{font-size:52.975027pt;}
.fs6{font-size:53.171759pt;}
.fs1{font-size:58.270930pt;}
.fs4{font-size:68.868060pt;}
.fs0{font-size:76.280205pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:47.095728pt;}
.y4b{bottom:57.723383pt;}
.y4a{bottom:68.351118pt;}
.y49{bottom:78.978773pt;}
.y48{bottom:89.606428pt;}
.y46{bottom:95.901403pt;}
.y47{bottom:100.235490pt;}
.y45{bottom:161.103436pt;}
.y29{bottom:161.103502pt;}
.y44{bottom:176.304898pt;}
.y28{bottom:176.304964pt;}
.y43{bottom:191.666371pt;}
.y27{bottom:191.666437pt;}
.y42{bottom:206.867833pt;}
.y26{bottom:208.948096pt;}
.y41{bottom:222.229306pt;}
.y25{bottom:224.149558pt;}
.y24{bottom:239.511031pt;}
.y40{bottom:241.591162pt;}
.y23{bottom:254.712494pt;}
.y3f{bottom:256.952635pt;}
.y22{bottom:271.994153pt;}
.y3e{bottom:272.154097pt;}
.y21{bottom:287.355626pt;}
.y3d{bottom:287.515571pt;}
.y20{bottom:302.557088pt;}
.y3c{bottom:307.037438pt;}
.y1f{bottom:317.758550pt;}
.y3b{bottom:322.238900pt;}
.y1e{bottom:333.120023pt;}
.y3a{bottom:337.600373pt;}
.y1d{bottom:348.321485pt;}
.y39{bottom:352.801835pt;}
.y1c{bottom:363.682958pt;}
.y38{bottom:368.163308pt;}
.y1b{bottom:378.884421pt;}
.y37{bottom:383.364770pt;}
.y1a{bottom:394.245894pt;}
.y36{bottom:398.726243pt;}
.y19{bottom:409.447356pt;}
.y35{bottom:413.927706pt;}
.y18{bottom:424.808829pt;}
.y34{bottom:429.289179pt;}
.y17{bottom:440.010291pt;}
.y33{bottom:444.490641pt;}
.y16{bottom:457.291950pt;}
.y32{bottom:459.852114pt;}
.y15{bottom:472.653423pt;}
.y31{bottom:475.053576pt;}
.y14{bottom:487.854885pt;}
.y30{bottom:490.415049pt;}
.y13{bottom:503.216359pt;}
.y2f{bottom:509.936916pt;}
.y12{bottom:518.417821pt;}
.y2e{bottom:525.138378pt;}
.y11{bottom:533.779294pt;}
.y2d{bottom:540.339841pt;}
.y10{bottom:548.980756pt;}
.y2c{bottom:555.701314pt;}
.y2b{bottom:570.902776pt;}
.y2a{bottom:586.264249pt;}
.yf{bottom:586.264329pt;}
.ye{bottom:645.950034pt;}
.yd{bottom:660.671440pt;}
.yc{bottom:675.232841pt;}
.yb{bottom:689.794241pt;}
.ya{bottom:704.515647pt;}
.y9{bottom:719.077048pt;}
.y8{bottom:733.638449pt;}
.y7{bottom:748.359855pt;}
.y6{bottom:764.361397pt;}
.y5{bottom:794.924329pt;}
.y4{bottom:893.973815pt;}
.y3{bottom:909.175271pt;}
.y2{bottom:961.980327pt;}
.y1{bottom:983.262371pt;}
.h8{height:23.551907pt;}
.h9{height:24.511999pt;}
.h4{height:32.561203pt;}
.h7{height:35.890937pt;}
.h6{height:36.181943pt;}
.h2{height:39.799045pt;}
.h3{height:42.608651pt;}
.h5{height:47.656697pt;}
.h1{height:52.785902pt;}
.h0{height:1122.666667pt;}
.w1{width:793.030667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:98.216463pt;}
.x7{left:117.098191pt;}
.xb{left:127.078979pt;}
.x1{left:153.261370pt;}
.xc{left:163.282290pt;}
.x6{left:172.143243pt;}
.x3{left:202.225858pt;}
.x4{left:262.711402pt;}
.x2{left:339.518415pt;}
.x8{left:412.005230pt;}
.x9{left:430.886960pt;}
.xa{left:689.395960pt;}
}




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