
    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_0cebb99bed53393f3ce53d3a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6bc8e6f3987e72677571f6e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_4c5482704a6fcc0901186d9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_93f6ca0101058e847aba012a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_f630888dd48b2e19f33c0ba4.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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:-17.982000px;}
.v3{vertical-align:-4.962000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.975000px;}
.ls4{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.462000px;}
.ls9{letter-spacing:-0.330000px;}
.ls11{letter-spacing:-0.316800px;}
.lsb{letter-spacing:-0.310200px;}
.lsf{letter-spacing:-0.303600px;}
.lsd{letter-spacing:-0.297000px;}
.lsa{letter-spacing:-0.290400px;}
.lsc{letter-spacing:-0.283800px;}
.lse{letter-spacing:-0.277200px;}
.ls10{letter-spacing:-0.264000px;}
.ls14{letter-spacing:-0.066000px;}
.ls12{letter-spacing:-0.046200px;}
.ls8{letter-spacing:-0.039600px;}
.ls13{letter-spacing:-0.033000px;}
.ls7{letter-spacing:-0.026400px;}
.ls16{letter-spacing:-0.019800px;}
.ls6{letter-spacing:-0.006600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006600px;}
.ls3{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.030000px;}
.ls15{letter-spacing:18.186000px;}
.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:-16.500000px;}
.ws12{word-spacing:-16.170000px;}
.ws8{word-spacing:-16.038000px;}
.ws7{word-spacing:-14.400000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-7.870500px;}
.wsc{word-spacing:-3.399000px;}
.wsa{word-spacing:-1.626000px;}
.wsb{word-spacing:-0.805200px;}
.ws11{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws17{word-spacing:0.112200px;}
.ws16{word-spacing:0.132000px;}
.ws9{word-spacing:1.152000px;}
.ws4{word-spacing:1.966800px;}
.ws15{word-spacing:2.758800px;}
.wsf{word-spacing:2.798400px;}
.ws5{word-spacing:3.016200px;}
.ws13{word-spacing:3.194400px;}
.ws18{word-spacing:3.312000px;}
.ws19{word-spacing:3.318000px;}
.wse{word-spacing:3.854400px;}
.wsd{word-spacing:3.874200px;}
.ws14{word-spacing:5.867400px;}
.ws1a{word-spacing:5.933400px;}
.ws10{word-spacing:7.794000px;}
.ws6{word-spacing:755.487600px;}
._f{margin-left:-19.199400px;}
._4{margin-left:-18.123600px;}
._c{margin-left:-16.239600px;}
._2{margin-left:-7.273200px;}
._e{margin-left:-5.629800px;}
._0{margin-left:-3.643200px;}
._3{margin-left:-2.310000px;}
._a{margin-left:-1.188000px;}
._1{width:1.973400px;}
._6{width:3.016200px;}
._9{width:4.131600px;}
._5{width:5.359200px;}
._b{width:6.765000px;}
._8{width:8.203800px;}
._7{width:9.358800px;}
._d{width:11.347200px;}
._11{width:16.968000px;}
._10{width:18.186000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fs2{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:84.691800px;}
.y47{bottom:93.100800px;}
.y70{bottom:96.559800px;}
.y46{bottom:111.100800px;}
.y1f{bottom:115.585800px;}
.y6f{bottom:116.359800px;}
.y97{bottom:128.359800px;}
.y45{bottom:129.100800px;}
.y6e{bottom:136.159800px;}
.y44{bottom:147.100800px;}
.y96{bottom:148.159800px;}
.y6d{bottom:155.959800px;}
.y1e{bottom:157.720500px;}
.y95{bottom:167.959800px;}
.y6c{bottom:175.759800px;}
.y1d{bottom:177.520500px;}
.y43{bottom:178.600800px;}
.y94{bottom:187.759800px;}
.y6b{bottom:195.559800px;}
.y1c{bottom:197.320500px;}
.y42{bottom:198.400800px;}
.y93{bottom:207.559800px;}
.y1b{bottom:217.120500px;}
.y92{bottom:227.359800px;}
.y6a{bottom:235.159800px;}
.y1a{bottom:236.920500px;}
.y41{bottom:238.000800px;}
.y91{bottom:247.159800px;}
.y69{bottom:253.159800px;}
.y19{bottom:256.720500px;}
.y40{bottom:257.800800px;}
.y90{bottom:266.959800px;}
.y68{bottom:271.159800px;}
.y3f{bottom:275.800800px;}
.y18{bottom:276.520500px;}
.y8f{bottom:286.760400px;}
.y67{bottom:289.159800px;}
.y3e{bottom:293.800800px;}
.y17{bottom:296.320500px;}
.y8e{bottom:306.560400px;}
.y66{bottom:307.159800px;}
.y3d{bottom:311.800800px;}
.y16{bottom:316.120500px;}
.y65{bottom:325.159800px;}
.y8d{bottom:326.360400px;}
.y3c{bottom:329.800800px;}
.y15{bottom:335.920500px;}
.yb4{bottom:338.200650px;}
.y64{bottom:343.159800px;}
.y8c{bottom:346.160400px;}
.y3b{bottom:347.800800px;}
.y14{bottom:355.720500px;}
.yb3{bottom:358.000650px;}
.y63{bottom:361.159800px;}
.y8b{bottom:365.960400px;}
.y13{bottom:375.520500px;}
.yb2{bottom:377.800650px;}
.y62{bottom:379.159800px;}
.y3a{bottom:379.300800px;}
.y8a{bottom:385.760400px;}
.y12{bottom:395.320500px;}
.y61{bottom:397.159800px;}
.yb1{bottom:397.600650px;}
.y39{bottom:399.100800px;}
.y89{bottom:405.560400px;}
.y11{bottom:415.120500px;}
.y60{bottom:415.159800px;}
.yb0{bottom:417.400650px;}
.y38{bottom:418.900800px;}
.y88{bottom:425.360400px;}
.y10{bottom:434.920500px;}
.yaf{bottom:437.200650px;}
.y37{bottom:438.700800px;}
.y87{bottom:445.160400px;}
.y5f{bottom:446.660250px;}
.yf{bottom:454.720500px;}
.yae{bottom:457.000650px;}
.y36{bottom:458.500800px;}
.y86{bottom:464.960400px;}
.y5e{bottom:466.460250px;}
.ye{bottom:474.520500px;}
.yad{bottom:476.800650px;}
.y35{bottom:478.300800px;}
.y85{bottom:484.760400px;}
.y5d{bottom:486.260250px;}
.yd{bottom:494.320500px;}
.yac{bottom:496.600650px;}
.y34{bottom:498.100800px;}
.y84{bottom:504.560400px;}
.y5c{bottom:506.060250px;}
.yc{bottom:514.120500px;}
.yab{bottom:516.400650px;}
.y33{bottom:517.900800px;}
.y83{bottom:524.360400px;}
.y5b{bottom:525.860250px;}
.yb{bottom:533.920500px;}
.yaa{bottom:536.200650px;}
.y32{bottom:537.700800px;}
.y82{bottom:544.160400px;}
.y5a{bottom:545.660250px;}
.ya{bottom:553.720500px;}
.ya9{bottom:556.000650px;}
.y31{bottom:557.500800px;}
.y81{bottom:563.960400px;}
.y59{bottom:565.460250px;}
.y9{bottom:573.520500px;}
.ya8{bottom:575.800650px;}
.y30{bottom:577.300800px;}
.y80{bottom:583.760400px;}
.y58{bottom:585.260250px;}
.y8{bottom:593.320500px;}
.ya7{bottom:595.600650px;}
.y2f{bottom:597.100800px;}
.y7f{bottom:603.560400px;}
.y57{bottom:605.060250px;}
.y7{bottom:613.120500px;}
.ya6{bottom:615.400650px;}
.y2e{bottom:616.900800px;}
.y7e{bottom:623.360400px;}
.y56{bottom:624.860250px;}
.ya5{bottom:635.200650px;}
.y2d{bottom:636.700800px;}
.y7d{bottom:643.160400px;}
.y55{bottom:644.660250px;}
.y6{bottom:652.720500px;}
.ya4{bottom:655.000650px;}
.y2c{bottom:656.500800px;}
.y7c{bottom:662.960400px;}
.y54{bottom:664.460250px;}
.ya3{bottom:674.800650px;}
.y2b{bottom:676.300800px;}
.y7b{bottom:682.760400px;}
.y53{bottom:684.260250px;}
.ya2{bottom:694.600650px;}
.y2a{bottom:696.100800px;}
.y7a{bottom:702.560400px;}
.y52{bottom:704.060250px;}
.ya1{bottom:714.400650px;}
.y29{bottom:715.900800px;}
.y79{bottom:722.360400px;}
.y51{bottom:723.860250px;}
.ya0{bottom:734.200650px;}
.y78{bottom:742.160400px;}
.y50{bottom:743.660250px;}
.y5{bottom:753.520650px;}
.y28{bottom:755.500650px;}
.y77{bottom:761.960400px;}
.y4f{bottom:763.460250px;}
.y4{bottom:773.321550px;}
.y9f{bottom:773.800350px;}
.y27{bottom:775.300650px;}
.y76{bottom:781.760400px;}
.y4e{bottom:783.260250px;}
.y9e{bottom:791.800350px;}
.y26{bottom:793.300650px;}
.y75{bottom:801.560400px;}
.y4d{bottom:803.060250px;}
.y9d{bottom:809.800350px;}
.y25{bottom:811.300650px;}
.y74{bottom:821.360400px;}
.y4c{bottom:822.860250px;}
.y9c{bottom:827.800350px;}
.y24{bottom:829.300650px;}
.y73{bottom:841.160400px;}
.y4b{bottom:842.660250px;}
.y9b{bottom:845.800350px;}
.y23{bottom:847.300650px;}
.y3{bottom:852.521550px;}
.y72{bottom:860.960400px;}
.y4a{bottom:862.460250px;}
.y9a{bottom:863.800350px;}
.y22{bottom:865.300650px;}
.y2{bottom:872.321550px;}
.y71{bottom:880.760400px;}
.y99{bottom:881.800350px;}
.y49{bottom:882.260250px;}
.y21{bottom:883.300650px;}
.y48{bottom:925.742700px;}
.y98{bottom:926.758650px;}
.y20{bottom:927.999150px;}
.h7{height:29.399836px;}
.hb{height:37.303711px;}
.h2{height:47.961914px;}
.h8{height:48.329016px;}
.h9{height:52.646484px;}
.ha{height:52.792969px;}
.hc{height:53.291016px;}
.h4{height:56.150528px;}
.h5{height:57.911133px;}
.h6{height:58.072266px;}
.h3{height:58.620117px;}
.h0{height:979.179300px;}
.h1{height:979.500000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.x1{left:94.974150px;}
.x9{left:99.225150px;}
.x4{left:128.990700px;}
.x8{left:133.241550px;}
.x3{left:144.928050px;}
.x5{left:150.250050px;}
.xa{left:154.501050px;}
.x7{left:165.518550px;}
.xb{left:302.221050px;}
.x2{left:494.343450px;}
.x6{left:570.823050px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v3{vertical-align:-4.410667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.533333pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.410667pt;}
.ls9{letter-spacing:-0.293333pt;}
.ls11{letter-spacing:-0.281600pt;}
.lsb{letter-spacing:-0.275733pt;}
.lsf{letter-spacing:-0.269867pt;}
.lsd{letter-spacing:-0.264000pt;}
.lsa{letter-spacing:-0.258133pt;}
.lsc{letter-spacing:-0.252267pt;}
.lse{letter-spacing:-0.246400pt;}
.ls10{letter-spacing:-0.234667pt;}
.ls14{letter-spacing:-0.058667pt;}
.ls12{letter-spacing:-0.041067pt;}
.ls8{letter-spacing:-0.035200pt;}
.ls13{letter-spacing:-0.029333pt;}
.ls7{letter-spacing:-0.023467pt;}
.ls16{letter-spacing:-0.017600pt;}
.ls6{letter-spacing:-0.005867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005867pt;}
.ls3{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.026667pt;}
.ls15{letter-spacing:16.165333pt;}
.ws1{word-spacing:-14.666667pt;}
.ws12{word-spacing:-14.373333pt;}
.ws8{word-spacing:-14.256000pt;}
.ws7{word-spacing:-12.800000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-6.996000pt;}
.wsc{word-spacing:-3.021333pt;}
.wsa{word-spacing:-1.445333pt;}
.wsb{word-spacing:-0.715733pt;}
.ws11{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws17{word-spacing:0.099733pt;}
.ws16{word-spacing:0.117333pt;}
.ws9{word-spacing:1.024000pt;}
.ws4{word-spacing:1.748267pt;}
.ws15{word-spacing:2.452267pt;}
.wsf{word-spacing:2.487467pt;}
.ws5{word-spacing:2.681067pt;}
.ws13{word-spacing:2.839467pt;}
.ws18{word-spacing:2.944000pt;}
.ws19{word-spacing:2.949333pt;}
.wse{word-spacing:3.426133pt;}
.wsd{word-spacing:3.443733pt;}
.ws14{word-spacing:5.215467pt;}
.ws1a{word-spacing:5.274133pt;}
.ws10{word-spacing:6.928000pt;}
.ws6{word-spacing:671.544533pt;}
._f{margin-left:-17.066133pt;}
._4{margin-left:-16.109867pt;}
._c{margin-left:-14.435200pt;}
._2{margin-left:-6.465067pt;}
._e{margin-left:-5.004267pt;}
._0{margin-left:-3.238400pt;}
._3{margin-left:-2.053333pt;}
._a{margin-left:-1.056000pt;}
._1{width:1.754133pt;}
._6{width:2.681067pt;}
._9{width:3.672533pt;}
._5{width:4.763733pt;}
._b{width:6.013333pt;}
._8{width:7.292267pt;}
._7{width:8.318933pt;}
._d{width:10.086400pt;}
._11{width:15.082667pt;}
._10{width:16.165333pt;}
.fs3{font-size:27.984000pt;}
.fs2{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.281600pt;}
.y47{bottom:82.756267pt;}
.y70{bottom:85.830933pt;}
.y46{bottom:98.756267pt;}
.y1f{bottom:102.742933pt;}
.y6f{bottom:103.430933pt;}
.y97{bottom:114.097600pt;}
.y45{bottom:114.756267pt;}
.y6e{bottom:121.030933pt;}
.y44{bottom:130.756267pt;}
.y96{bottom:131.697600pt;}
.y6d{bottom:138.630933pt;}
.y1e{bottom:140.196000pt;}
.y95{bottom:149.297600pt;}
.y6c{bottom:156.230933pt;}
.y1d{bottom:157.796000pt;}
.y43{bottom:158.756267pt;}
.y94{bottom:166.897600pt;}
.y6b{bottom:173.830933pt;}
.y1c{bottom:175.396000pt;}
.y42{bottom:176.356267pt;}
.y93{bottom:184.497600pt;}
.y1b{bottom:192.996000pt;}
.y92{bottom:202.097600pt;}
.y6a{bottom:209.030933pt;}
.y1a{bottom:210.596000pt;}
.y41{bottom:211.556267pt;}
.y91{bottom:219.697600pt;}
.y69{bottom:225.030933pt;}
.y19{bottom:228.196000pt;}
.y40{bottom:229.156267pt;}
.y90{bottom:237.297600pt;}
.y68{bottom:241.030933pt;}
.y3f{bottom:245.156267pt;}
.y18{bottom:245.796000pt;}
.y8f{bottom:254.898133pt;}
.y67{bottom:257.030933pt;}
.y3e{bottom:261.156267pt;}
.y17{bottom:263.396000pt;}
.y8e{bottom:272.498133pt;}
.y66{bottom:273.030933pt;}
.y3d{bottom:277.156267pt;}
.y16{bottom:280.996000pt;}
.y65{bottom:289.030933pt;}
.y8d{bottom:290.098133pt;}
.y3c{bottom:293.156267pt;}
.y15{bottom:298.596000pt;}
.yb4{bottom:300.622800pt;}
.y64{bottom:305.030933pt;}
.y8c{bottom:307.698133pt;}
.y3b{bottom:309.156267pt;}
.y14{bottom:316.196000pt;}
.yb3{bottom:318.222800pt;}
.y63{bottom:321.030933pt;}
.y8b{bottom:325.298133pt;}
.y13{bottom:333.796000pt;}
.yb2{bottom:335.822800pt;}
.y62{bottom:337.030933pt;}
.y3a{bottom:337.156267pt;}
.y8a{bottom:342.898133pt;}
.y12{bottom:351.396000pt;}
.y61{bottom:353.030933pt;}
.yb1{bottom:353.422800pt;}
.y39{bottom:354.756267pt;}
.y89{bottom:360.498133pt;}
.y11{bottom:368.996000pt;}
.y60{bottom:369.030933pt;}
.yb0{bottom:371.022800pt;}
.y38{bottom:372.356267pt;}
.y88{bottom:378.098133pt;}
.y10{bottom:386.596000pt;}
.yaf{bottom:388.622800pt;}
.y37{bottom:389.956267pt;}
.y87{bottom:395.698133pt;}
.y5f{bottom:397.031333pt;}
.yf{bottom:404.196000pt;}
.yae{bottom:406.222800pt;}
.y36{bottom:407.556267pt;}
.y86{bottom:413.298133pt;}
.y5e{bottom:414.631333pt;}
.ye{bottom:421.796000pt;}
.yad{bottom:423.822800pt;}
.y35{bottom:425.156267pt;}
.y85{bottom:430.898133pt;}
.y5d{bottom:432.231333pt;}
.yd{bottom:439.396000pt;}
.yac{bottom:441.422800pt;}
.y34{bottom:442.756267pt;}
.y84{bottom:448.498133pt;}
.y5c{bottom:449.831333pt;}
.yc{bottom:456.996000pt;}
.yab{bottom:459.022800pt;}
.y33{bottom:460.356267pt;}
.y83{bottom:466.098133pt;}
.y5b{bottom:467.431333pt;}
.yb{bottom:474.596000pt;}
.yaa{bottom:476.622800pt;}
.y32{bottom:477.956267pt;}
.y82{bottom:483.698133pt;}
.y5a{bottom:485.031333pt;}
.ya{bottom:492.196000pt;}
.ya9{bottom:494.222800pt;}
.y31{bottom:495.556267pt;}
.y81{bottom:501.298133pt;}
.y59{bottom:502.631333pt;}
.y9{bottom:509.796000pt;}
.ya8{bottom:511.822800pt;}
.y30{bottom:513.156267pt;}
.y80{bottom:518.898133pt;}
.y58{bottom:520.231333pt;}
.y8{bottom:527.396000pt;}
.ya7{bottom:529.422800pt;}
.y2f{bottom:530.756267pt;}
.y7f{bottom:536.498133pt;}
.y57{bottom:537.831333pt;}
.y7{bottom:544.996000pt;}
.ya6{bottom:547.022800pt;}
.y2e{bottom:548.356267pt;}
.y7e{bottom:554.098133pt;}
.y56{bottom:555.431333pt;}
.ya5{bottom:564.622800pt;}
.y2d{bottom:565.956267pt;}
.y7d{bottom:571.698133pt;}
.y55{bottom:573.031333pt;}
.y6{bottom:580.196000pt;}
.ya4{bottom:582.222800pt;}
.y2c{bottom:583.556267pt;}
.y7c{bottom:589.298133pt;}
.y54{bottom:590.631333pt;}
.ya3{bottom:599.822800pt;}
.y2b{bottom:601.156267pt;}
.y7b{bottom:606.898133pt;}
.y53{bottom:608.231333pt;}
.ya2{bottom:617.422800pt;}
.y2a{bottom:618.756267pt;}
.y7a{bottom:624.498133pt;}
.y52{bottom:625.831333pt;}
.ya1{bottom:635.022800pt;}
.y29{bottom:636.356267pt;}
.y79{bottom:642.098133pt;}
.y51{bottom:643.431333pt;}
.ya0{bottom:652.622800pt;}
.y78{bottom:659.698133pt;}
.y50{bottom:661.031333pt;}
.y5{bottom:669.796133pt;}
.y28{bottom:671.556133pt;}
.y77{bottom:677.298133pt;}
.y4f{bottom:678.631333pt;}
.y4{bottom:687.396933pt;}
.y9f{bottom:687.822533pt;}
.y27{bottom:689.156133pt;}
.y76{bottom:694.898133pt;}
.y4e{bottom:696.231333pt;}
.y9e{bottom:703.822533pt;}
.y26{bottom:705.156133pt;}
.y75{bottom:712.498133pt;}
.y4d{bottom:713.831333pt;}
.y9d{bottom:719.822533pt;}
.y25{bottom:721.156133pt;}
.y74{bottom:730.098133pt;}
.y4c{bottom:731.431333pt;}
.y9c{bottom:735.822533pt;}
.y24{bottom:737.156133pt;}
.y73{bottom:747.698133pt;}
.y4b{bottom:749.031333pt;}
.y9b{bottom:751.822533pt;}
.y23{bottom:753.156133pt;}
.y3{bottom:757.796933pt;}
.y72{bottom:765.298133pt;}
.y4a{bottom:766.631333pt;}
.y9a{bottom:767.822533pt;}
.y22{bottom:769.156133pt;}
.y2{bottom:775.396933pt;}
.y71{bottom:782.898133pt;}
.y99{bottom:783.822533pt;}
.y49{bottom:784.231333pt;}
.y21{bottom:785.156133pt;}
.y48{bottom:822.882400pt;}
.y98{bottom:823.785467pt;}
.y20{bottom:824.888133pt;}
.h7{height:26.133187pt;}
.hb{height:33.158854pt;}
.h2{height:42.632812pt;}
.h8{height:42.959125pt;}
.h9{height:46.796875pt;}
.ha{height:46.927083pt;}
.hc{height:47.369792pt;}
.h4{height:49.911581pt;}
.h5{height:51.476562pt;}
.h6{height:51.619792pt;}
.h3{height:52.106771pt;}
.h0{height:870.381600pt;}
.h1{height:870.666667pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.x1{left:84.421467pt;}
.x9{left:88.200133pt;}
.x4{left:114.658400pt;}
.x8{left:118.436933pt;}
.x3{left:128.824933pt;}
.x5{left:133.555600pt;}
.xa{left:137.334267pt;}
.x7{left:147.127600pt;}
.xb{left:268.640933pt;}
.x2{left:439.416400pt;}
.x6{left:507.398267pt;}
}




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