
    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_823f4c6b336e08b607a96a16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_98e57e20d6216a78bda1fa43.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_ef85f86efed8cbcb0950f80c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012000px;}
.ls0{letter-spacing:1.470000px;}
.ls2{letter-spacing:1.482000px;}
.ls7{letter-spacing:1.494000px;}
.ls8{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.518000px;}
.ls6{letter-spacing:3.012000px;}
.lsf{letter-spacing:4.494000px;}
.ls3{letter-spacing:4.506000px;}
.lsb{letter-spacing:4.512000px;}
.lsc{letter-spacing:7.500000px;}
.ls5{letter-spacing:9.000000px;}
.ls9{letter-spacing:10.500000px;}
.lse{letter-spacing:16.506000px;}
.ls4{letter-spacing:17.994000px;}
.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;}
}
.ws32{word-spacing:-17.322000px;}
.ws1f{word-spacing:-17.154000px;}
.ws26{word-spacing:-17.124000px;}
.ws21{word-spacing:-17.028000px;}
.ws28{word-spacing:-16.956000px;}
.ws1e{word-spacing:-16.902000px;}
.ws27{word-spacing:-16.848000px;}
.ws1{word-spacing:-16.830000px;}
.ws1d{word-spacing:-16.794000px;}
.ws14{word-spacing:-16.788000px;}
.ws35{word-spacing:-16.776000px;}
.ws37{word-spacing:-16.686000px;}
.ws13{word-spacing:-16.668000px;}
.ws2a{word-spacing:-16.632000px;}
.ws20{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.500000px;}
.wsf{word-spacing:-16.494000px;}
.ws16{word-spacing:-16.488000px;}
.ws33{word-spacing:-16.476000px;}
.ws34{word-spacing:-16.470000px;}
.ws36{word-spacing:-16.386000px;}
.ws19{word-spacing:-16.338000px;}
.ws17{word-spacing:-16.218000px;}
.ws2e{word-spacing:-16.212000px;}
.ws2c{word-spacing:-16.206000px;}
.ws22{word-spacing:-16.200000px;}
.ws2f{word-spacing:-16.194000px;}
.ws10{word-spacing:-16.170000px;}
.ws29{word-spacing:-16.056000px;}
.ws18{word-spacing:-15.984000px;}
.ws25{word-spacing:-15.954000px;}
.ws15{word-spacing:-15.930000px;}
.ws12{word-spacing:-15.918000px;}
.ws31{word-spacing:-15.840000px;}
.ws24{word-spacing:-15.510000px;}
.ws0{word-spacing:-14.250000px;}
.wsd{word-spacing:-14.244000px;}
.wse{word-spacing:-13.968000px;}
.ws1c{word-spacing:-13.848000px;}
.ws1a{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.230000px;}
.ws1b{word-spacing:-12.375000px;}
.ws4{word-spacing:-11.994000px;}
.ws2b{word-spacing:-1.428000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.510000px;}
.ws30{word-spacing:0.798000px;}
.ws23{word-spacing:0.852000px;}
.ws2d{word-spacing:1.104000px;}
.ws6{word-spacing:1.212000px;}
.wsb{word-spacing:1.362000px;}
.ws5{word-spacing:1.800000px;}
.ws8{word-spacing:1.980000px;}
.ws9{word-spacing:2.136000px;}
.ws7{word-spacing:2.148000px;}
.wsc{word-spacing:3.960000px;}
._1a{margin-left:-10.524000px;}
._15{margin-left:-8.865000px;}
._1{margin-left:-7.506000px;}
._5{margin-left:-5.994000px;}
._17{margin-left:-4.488000px;}
._8{margin-left:-3.021000px;}
._3{margin-left:-1.512000px;}
._2{width:1.512000px;}
._d{width:3.081000px;}
._b{width:4.155000px;}
._9{width:5.925000px;}
._c{width:7.464000px;}
._14{width:9.120000px;}
._18{width:10.356000px;}
._13{width:12.030000px;}
._6{width:13.059000px;}
._e{width:14.622000px;}
._1b{width:16.530000px;}
._7{width:17.655000px;}
._f{width:19.323000px;}
._a{width:20.673000px;}
._19{width:22.524000px;}
._12{width:24.042000px;}
._4{width:47.784000px;}
._10{width:49.458000px;}
._0{width:69.012000px;}
._16{width:1028.700000px;}
._11{width:1270.296000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs5{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:19.234245px;}
.y51{bottom:21.859245px;}
.y7a{bottom:30.484245px;}
.y23{bottom:33.484245px;}
.y50{bottom:39.109245px;}
.y22{bottom:47.734245px;}
.y20{bottom:55.234245px;}
.y4f{bottom:56.359245px;}
.y21{bottom:61.984245px;}
.y79{bottom:64.984245px;}
.y1f{bottom:72.484245px;}
.y4e{bottom:73.609245px;}
.y53{bottom:76.234245px;}
.y78{bottom:82.234245px;}
.y1e{bottom:89.734245px;}
.y52{bottom:90.484245px;}
.y4d{bottom:90.859245px;}
.y77{bottom:99.484245px;}
.y4b{bottom:108.109245px;}
.y1d{bottom:115.609245px;}
.y76{bottom:116.734245px;}
.y4a{bottom:125.359245px;}
.y75{bottom:133.984245px;}
.y49{bottom:142.609245px;}
.y74{bottom:151.234245px;}
.y48{bottom:159.859245px;}
.y73{bottom:168.484245px;}
.y47{bottom:177.109245px;}
.y72{bottom:185.734245px;}
.y1c{bottom:188.734245px;}
.y46{bottom:194.359245px;}
.y71{bottom:202.984245px;}
.y1b{bottom:209.734245px;}
.y45{bottom:211.609245px;}
.y70{bottom:220.234245px;}
.y1a{bottom:224.734245px;}
.y44{bottom:228.859245px;}
.y6f{bottom:237.484245px;}
.y19{bottom:239.734245px;}
.y43{bottom:246.109245px;}
.y18{bottom:254.734245px;}
.y42{bottom:263.359245px;}
.y17{bottom:269.734245px;}
.y6e{bottom:271.984245px;}
.y41{bottom:280.609245px;}
.y16{bottom:284.734245px;}
.y6d{bottom:289.234245px;}
.y40{bottom:297.859245px;}
.y15{bottom:299.734245px;}
.y6c{bottom:306.484245px;}
.y14{bottom:314.734245px;}
.y3f{bottom:315.109245px;}
.y6b{bottom:323.734245px;}
.y13{bottom:329.734245px;}
.y3e{bottom:332.359245px;}
.y6a{bottom:340.984245px;}
.y3d{bottom:349.609245px;}
.y69{bottom:358.234245px;}
.y12{bottom:359.734245px;}
.y3c{bottom:366.859245px;}
.y68{bottom:375.484245px;}
.y3b{bottom:384.109245px;}
.y67{bottom:392.734245px;}
.y11{bottom:395.734245px;}
.y3a{bottom:401.359245px;}
.y66{bottom:409.984245px;}
.y10{bottom:416.734245px;}
.y39{bottom:418.609245px;}
.y65{bottom:427.234245px;}
.yf{bottom:431.734245px;}
.y38{bottom:435.859245px;}
.y64{bottom:444.484245px;}
.ye{bottom:446.734245px;}
.y37{bottom:453.109245px;}
.yd{bottom:461.734245px;}
.y36{bottom:470.359245px;}
.yc{bottom:476.734245px;}
.y63{bottom:478.984245px;}
.y35{bottom:487.609245px;}
.yb{bottom:491.734245px;}
.y62{bottom:496.234245px;}
.y34{bottom:504.859245px;}
.ya{bottom:506.734245px;}
.y61{bottom:513.484245px;}
.y9{bottom:521.734245px;}
.y33{bottom:522.109245px;}
.y60{bottom:530.734245px;}
.y8{bottom:536.734245px;}
.y32{bottom:539.359245px;}
.y5f{bottom:547.984245px;}
.y31{bottom:556.609245px;}
.y5e{bottom:565.234245px;}
.y7{bottom:566.734245px;}
.y30{bottom:573.859245px;}
.y5d{bottom:582.484245px;}
.y2f{bottom:591.109245px;}
.y5c{bottom:599.734245px;}
.y2e{bottom:608.359245px;}
.y5b{bottom:616.984245px;}
.y2d{bottom:625.609245px;}
.y54{bottom:634.234245px;}
.y2c{bottom:642.859245px;}
.y5a{bottom:651.484245px;}
.y2b{bottom:660.109245px;}
.y59{bottom:668.734245px;}
.y2a{bottom:677.359245px;}
.y58{bottom:685.984245px;}
.y29{bottom:694.609245px;}
.y6{bottom:700.609245px;}
.y4c{bottom:703.234245px;}
.y28{bottom:711.859245px;}
.y5{bottom:714.859245px;}
.y57{bottom:720.484245px;}
.y27{bottom:729.109245px;}
.y4{bottom:732.859245px;}
.y56{bottom:737.734245px;}
.y26{bottom:746.359245px;}
.y55{bottom:754.984245px;}
.y25{bottom:763.609245px;}
.y3{bottom:777.859245px;}
.y24{bottom:780.859245px;}
.y2{bottom:829.609245px;}
.h3{height:51.216000px;}
.h2{height:57.618000px;}
.h9{height:58.536000px;}
.h6{height:60.819000px;}
.h7{height:61.788000px;}
.h5{height:70.422000px;}
.h8{height:71.544000px;}
.ha{height:75.316500px;}
.h4{height:102.432000px;}
.h0{height:858.484245px;}
.h1{height:858.750000px;}
.w1{width:552.750000px;}
.w0{width:552.980325px;}
.x0{left:0.000000px;}
.x1{left:31.167825px;}
.x3{left:53.229825px;}
.x2{left:383.667825px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.010667pt;}
.ls0{letter-spacing:1.306667pt;}
.ls2{letter-spacing:1.317333pt;}
.ls7{letter-spacing:1.328000pt;}
.ls8{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.349333pt;}
.ls6{letter-spacing:2.677333pt;}
.lsf{letter-spacing:3.994667pt;}
.ls3{letter-spacing:4.005333pt;}
.lsb{letter-spacing:4.010667pt;}
.lsc{letter-spacing:6.666667pt;}
.ls5{letter-spacing:8.000000pt;}
.ls9{letter-spacing:9.333333pt;}
.lse{letter-spacing:14.672000pt;}
.ls4{letter-spacing:15.994667pt;}
.ws32{word-spacing:-15.397333pt;}
.ws1f{word-spacing:-15.248000pt;}
.ws26{word-spacing:-15.221333pt;}
.ws21{word-spacing:-15.136000pt;}
.ws28{word-spacing:-15.072000pt;}
.ws1e{word-spacing:-15.024000pt;}
.ws27{word-spacing:-14.976000pt;}
.ws1{word-spacing:-14.960000pt;}
.ws1d{word-spacing:-14.928000pt;}
.ws14{word-spacing:-14.922667pt;}
.ws35{word-spacing:-14.912000pt;}
.ws37{word-spacing:-14.832000pt;}
.ws13{word-spacing:-14.816000pt;}
.ws2a{word-spacing:-14.784000pt;}
.ws20{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.666667pt;}
.wsf{word-spacing:-14.661333pt;}
.ws16{word-spacing:-14.656000pt;}
.ws33{word-spacing:-14.645333pt;}
.ws34{word-spacing:-14.640000pt;}
.ws36{word-spacing:-14.565333pt;}
.ws19{word-spacing:-14.522667pt;}
.ws17{word-spacing:-14.416000pt;}
.ws2e{word-spacing:-14.410667pt;}
.ws2c{word-spacing:-14.405333pt;}
.ws22{word-spacing:-14.400000pt;}
.ws2f{word-spacing:-14.394667pt;}
.ws10{word-spacing:-14.373333pt;}
.ws29{word-spacing:-14.272000pt;}
.ws18{word-spacing:-14.208000pt;}
.ws25{word-spacing:-14.181333pt;}
.ws15{word-spacing:-14.160000pt;}
.ws12{word-spacing:-14.149333pt;}
.ws31{word-spacing:-14.080000pt;}
.ws24{word-spacing:-13.786667pt;}
.ws0{word-spacing:-12.666667pt;}
.wsd{word-spacing:-12.661333pt;}
.wse{word-spacing:-12.416000pt;}
.ws1c{word-spacing:-12.309333pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.760000pt;}
.ws1b{word-spacing:-11.000000pt;}
.ws4{word-spacing:-10.661333pt;}
.ws2b{word-spacing:-1.269333pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.453333pt;}
.ws30{word-spacing:0.709333pt;}
.ws23{word-spacing:0.757333pt;}
.ws2d{word-spacing:0.981333pt;}
.ws6{word-spacing:1.077333pt;}
.wsb{word-spacing:1.210667pt;}
.ws5{word-spacing:1.600000pt;}
.ws8{word-spacing:1.760000pt;}
.ws9{word-spacing:1.898667pt;}
.ws7{word-spacing:1.909333pt;}
.wsc{word-spacing:3.520000pt;}
._1a{margin-left:-9.354667pt;}
._15{margin-left:-7.880000pt;}
._1{margin-left:-6.672000pt;}
._5{margin-left:-5.328000pt;}
._17{margin-left:-3.989333pt;}
._8{margin-left:-2.685333pt;}
._3{margin-left:-1.344000pt;}
._2{width:1.344000pt;}
._d{width:2.738667pt;}
._b{width:3.693333pt;}
._9{width:5.266667pt;}
._c{width:6.634667pt;}
._14{width:8.106667pt;}
._18{width:9.205333pt;}
._13{width:10.693333pt;}
._6{width:11.608000pt;}
._e{width:12.997333pt;}
._1b{width:14.693333pt;}
._7{width:15.693333pt;}
._f{width:17.176000pt;}
._a{width:18.376000pt;}
._19{width:20.021333pt;}
._12{width:21.370667pt;}
._4{width:42.474667pt;}
._10{width:43.962667pt;}
._0{width:61.344000pt;}
._16{width:914.400000pt;}
._11{width:1129.152000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:17.097107pt;}
.y51{bottom:19.430440pt;}
.y7a{bottom:27.097107pt;}
.y23{bottom:29.763773pt;}
.y50{bottom:34.763773pt;}
.y22{bottom:42.430440pt;}
.y20{bottom:49.097107pt;}
.y4f{bottom:50.097107pt;}
.y21{bottom:55.097107pt;}
.y79{bottom:57.763773pt;}
.y1f{bottom:64.430440pt;}
.y4e{bottom:65.430440pt;}
.y53{bottom:67.763773pt;}
.y78{bottom:73.097107pt;}
.y1e{bottom:79.763773pt;}
.y52{bottom:80.430440pt;}
.y4d{bottom:80.763773pt;}
.y77{bottom:88.430440pt;}
.y4b{bottom:96.097107pt;}
.y1d{bottom:102.763773pt;}
.y76{bottom:103.763773pt;}
.y4a{bottom:111.430440pt;}
.y75{bottom:119.097107pt;}
.y49{bottom:126.763773pt;}
.y74{bottom:134.430440pt;}
.y48{bottom:142.097107pt;}
.y73{bottom:149.763773pt;}
.y47{bottom:157.430440pt;}
.y72{bottom:165.097107pt;}
.y1c{bottom:167.763773pt;}
.y46{bottom:172.763773pt;}
.y71{bottom:180.430440pt;}
.y1b{bottom:186.430440pt;}
.y45{bottom:188.097107pt;}
.y70{bottom:195.763773pt;}
.y1a{bottom:199.763773pt;}
.y44{bottom:203.430440pt;}
.y6f{bottom:211.097107pt;}
.y19{bottom:213.097107pt;}
.y43{bottom:218.763773pt;}
.y18{bottom:226.430440pt;}
.y42{bottom:234.097107pt;}
.y17{bottom:239.763773pt;}
.y6e{bottom:241.763773pt;}
.y41{bottom:249.430440pt;}
.y16{bottom:253.097107pt;}
.y6d{bottom:257.097107pt;}
.y40{bottom:264.763773pt;}
.y15{bottom:266.430440pt;}
.y6c{bottom:272.430440pt;}
.y14{bottom:279.763773pt;}
.y3f{bottom:280.097107pt;}
.y6b{bottom:287.763773pt;}
.y13{bottom:293.097107pt;}
.y3e{bottom:295.430440pt;}
.y6a{bottom:303.097107pt;}
.y3d{bottom:310.763773pt;}
.y69{bottom:318.430440pt;}
.y12{bottom:319.763773pt;}
.y3c{bottom:326.097107pt;}
.y68{bottom:333.763773pt;}
.y3b{bottom:341.430440pt;}
.y67{bottom:349.097107pt;}
.y11{bottom:351.763773pt;}
.y3a{bottom:356.763773pt;}
.y66{bottom:364.430440pt;}
.y10{bottom:370.430440pt;}
.y39{bottom:372.097107pt;}
.y65{bottom:379.763773pt;}
.yf{bottom:383.763773pt;}
.y38{bottom:387.430440pt;}
.y64{bottom:395.097107pt;}
.ye{bottom:397.097107pt;}
.y37{bottom:402.763773pt;}
.yd{bottom:410.430440pt;}
.y36{bottom:418.097107pt;}
.yc{bottom:423.763773pt;}
.y63{bottom:425.763773pt;}
.y35{bottom:433.430440pt;}
.yb{bottom:437.097107pt;}
.y62{bottom:441.097107pt;}
.y34{bottom:448.763773pt;}
.ya{bottom:450.430440pt;}
.y61{bottom:456.430440pt;}
.y9{bottom:463.763773pt;}
.y33{bottom:464.097107pt;}
.y60{bottom:471.763773pt;}
.y8{bottom:477.097107pt;}
.y32{bottom:479.430440pt;}
.y5f{bottom:487.097107pt;}
.y31{bottom:494.763773pt;}
.y5e{bottom:502.430440pt;}
.y7{bottom:503.763773pt;}
.y30{bottom:510.097107pt;}
.y5d{bottom:517.763773pt;}
.y2f{bottom:525.430440pt;}
.y5c{bottom:533.097107pt;}
.y2e{bottom:540.763773pt;}
.y5b{bottom:548.430440pt;}
.y2d{bottom:556.097107pt;}
.y54{bottom:563.763773pt;}
.y2c{bottom:571.430440pt;}
.y5a{bottom:579.097107pt;}
.y2b{bottom:586.763773pt;}
.y59{bottom:594.430440pt;}
.y2a{bottom:602.097107pt;}
.y58{bottom:609.763773pt;}
.y29{bottom:617.430440pt;}
.y6{bottom:622.763773pt;}
.y4c{bottom:625.097107pt;}
.y28{bottom:632.763773pt;}
.y5{bottom:635.430440pt;}
.y57{bottom:640.430440pt;}
.y27{bottom:648.097107pt;}
.y4{bottom:651.430440pt;}
.y56{bottom:655.763773pt;}
.y26{bottom:663.430440pt;}
.y55{bottom:671.097107pt;}
.y25{bottom:678.763773pt;}
.y3{bottom:691.430440pt;}
.y24{bottom:694.097107pt;}
.y2{bottom:737.430440pt;}
.h3{height:45.525333pt;}
.h2{height:51.216000pt;}
.h9{height:52.032000pt;}
.h6{height:54.061333pt;}
.h7{height:54.922667pt;}
.h5{height:62.597333pt;}
.h8{height:63.594667pt;}
.ha{height:66.948000pt;}
.h4{height:91.050667pt;}
.h0{height:763.097107pt;}
.h1{height:763.333333pt;}
.w1{width:491.333333pt;}
.w0{width:491.538067pt;}
.x0{left:0.000000pt;}
.x1{left:27.704733pt;}
.x3{left:47.315400pt;}
.x2{left:341.038067pt;}
}




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