
    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_1efbdfade4e179491ba31d02.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_3835bd2f24eef83c6f901301.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_14dfce504d014311c5447fdb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_af366fa562d78e0244b9e0f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_68d2e9ee750fb4dd6d16089d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_c336ebe78caf2fd753b2fbeb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls4{letter-spacing:-1.068000px;}
.lse{letter-spacing:-1.026000px;}
.lsc{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.457800px;}
.ls2{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028200px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.302400px;}
.lsa{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.567600px;}
.ls15{letter-spacing:0.610560px;}
.ls14{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.745280px;}
.ls17{letter-spacing:2.880000px;}
.ls18{letter-spacing:7.505280px;}
.ls1b{letter-spacing:128.082720px;}
.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;}
}
.ws3{word-spacing:-20.088000px;}
.ws4{word-spacing:-20.016000px;}
.ws12{word-spacing:-19.026720px;}
.ws13{word-spacing:-18.982320px;}
.wsa{word-spacing:-18.720120px;}
.ws14{word-spacing:-18.717120px;}
.ws11{word-spacing:-18.676920px;}
.wsc{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.wsb{word-spacing:-18.152520px;}
.wsf{word-spacing:-18.109320px;}
.wsd{word-spacing:-18.000120px;}
.ws8{word-spacing:-17.956920px;}
.ws10{word-spacing:-17.694720px;}
.ws9{word-spacing:-17.586720px;}
.ws0{word-spacing:-17.568000px;}
.wse{word-spacing:-17.388720px;}
.ws16{word-spacing:-16.613280px;}
.ws15{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.506480px;}
.ws2{word-spacing:-13.410720px;}
.ws6{word-spacing:0.000000px;}
.ws1{word-spacing:0.216000px;}
.ws5{word-spacing:19.512000px;}
._1{margin-left:-2.346929px;}
._0{margin-left:-1.160406px;}
._2{width:1.123680px;}
._3{width:2.639273px;}
._4{width:4.183381px;}
._6{width:5.783885px;}
._7{width:6.802499px;}
._b{width:7.969021px;}
._5{width:9.374365px;}
._d{width:11.226275px;}
._10{width:12.587286px;}
._11{width:14.545920px;}
._e{width:15.566400px;}
._f{width:16.969206px;}
._1c{width:18.472320px;}
._12{width:19.643766px;}
._15{width:20.672394px;}
._16{width:22.357925px;}
._13{width:23.647680px;}
._a{width:25.496123px;}
._8{width:26.506560px;}
._9{width:28.297206px;}
._21{width:30.417840px;}
._20{width:31.613040px;}
._22{width:33.584640px;}
._1a{width:36.779286px;}
._19{width:37.807680px;}
._14{width:40.340160px;}
._17{width:62.287680px;}
._18{width:63.927360px;}
._c{width:74.331840px;}
._1f{width:95.576640px;}
._1d{width:107.747280px;}
._1e{width:109.056480px;}
._1b{width:128.749440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.356000px;}
.y1{bottom:79.056000px;}
.y59{bottom:131.976000px;}
.y2f{bottom:134.496000px;}
.y3d{bottom:135.396000px;}
.y54{bottom:136.296000px;}
.y81{bottom:149.616000px;}
.y92{bottom:161.850000px;}
.y12{bottom:165.450000px;}
.y58{bottom:169.950000px;}
.y2e{bottom:172.290000px;}
.y3c{bottom:173.370000px;}
.y53{bottom:174.270000px;}
.y80{bottom:184.170000px;}
.y91{bottom:199.830000px;}
.y11{bottom:203.430000px;}
.y57{bottom:207.930000px;}
.y2d{bottom:210.270000px;}
.y3b{bottom:211.350000px;}
.y52{bottom:212.250000px;}
.y7f{bottom:218.730000px;}
.y66{bottom:222.150000px;}
.y95{bottom:227.910000px;}
.y90{bottom:237.810000px;}
.y10{bottom:241.410000px;}
.y56{bottom:245.910000px;}
.y2c{bottom:248.295000px;}
.y3a{bottom:249.375000px;}
.y51{bottom:250.275000px;}
.y7e{bottom:253.155000px;}
.y65{bottom:256.575000px;}
.y8f{bottom:272.235000px;}
.yf{bottom:279.435000px;}
.y55{bottom:285.915000px;}
.y2b{bottom:286.275000px;}
.y39{bottom:287.175000px;}
.y7d{bottom:287.715000px;}
.y50{bottom:288.255000px;}
.y64{bottom:291.135000px;}
.y9e{bottom:302.295000px;}
.ye{bottom:317.235000px;}
.y7c{bottom:322.275000px;}
.y2a{bottom:324.255000px;}
.y38{bottom:325.155000px;}
.y63{bottom:325.695000px;}
.y4f{bottom:326.235000px;}
.y9d{bottom:340.275000px;}
.y8c{bottom:342.795000px;}
.yd{bottom:355.395000px;}
.y7b{bottom:356.655000px;}
.y62{bottom:360.075000px;}
.y29{bottom:362.235000px;}
.y37{bottom:363.135000px;}
.y4e{bottom:364.035000px;}
.y9c{bottom:378.255000px;}
.y9f{bottom:378.435000px;}
.y8b{bottom:380.775000px;}
.y7a{bottom:391.215000px;}
.y61{bottom:396.795000px;}
.y28{bottom:400.035000px;}
.y36{bottom:401.115000px;}
.y9b{bottom:416.235000px;}
.y88{bottom:416.415000px;}
.y8a{bottom:418.755000px;}
.y79{bottom:425.775000px;}
.y60{bottom:434.595000px;}
.yc{bottom:436.755000px;}
.y27{bottom:438.015000px;}
.y3e{bottom:439.095000px;}
.y9a{bottom:450.435000px;}
.y87{bottom:450.615000px;}
.y89{bottom:452.955000px;}
.y78{bottom:460.155000px;}
.y5f{bottom:472.575000px;}
.y99{bottom:474.555000px;}
.y26{bottom:475.995000px;}
.y35{bottom:476.175000px;}
.y4d{bottom:476.895000px;}
.yb{bottom:478.155000px;}
.y77{bottom:494.715000px;}
.y5e{bottom:510.555000px;}
.y98{bottom:512.535000px;}
.y25{bottom:513.975000px;}
.y4c{bottom:514.875000px;}
.ya{bottom:519.585000px;}
.y76{bottom:529.125000px;}
.y5d{bottom:548.385000px;}
.y97{bottom:550.545000px;}
.y24{bottom:551.985000px;}
.y4b{bottom:552.885000px;}
.y75{bottom:563.685000px;}
.y86{bottom:581.325000px;}
.y96{bottom:584.925000px;}
.y5c{bottom:586.365000px;}
.y23{bottom:589.785000px;}
.y4a{bottom:590.865000px;}
.y74{bottom:598.245000px;}
.y9{bottom:602.385000px;}
.y85{bottom:619.305000px;}
.y5b{bottom:624.525000px;}
.y22{bottom:627.765000px;}
.y49{bottom:628.845000px;}
.y73{bottom:632.625000px;}
.y94{bottom:636.045000px;}
.y8{bottom:643.785000px;}
.y84{bottom:657.285000px;}
.y8e{bottom:661.965000px;}
.y5a{bottom:664.485000px;}
.y21{bottom:665.745000px;}
.y48{bottom:666.825000px;}
.y72{bottom:667.185000px;}
.y93{bottom:670.245000px;}
.y7{bottom:685.185000px;}
.y83{bottom:693.285000px;}
.y8d{bottom:696.345000px;}
.y71{bottom:701.745000px;}
.y33{bottom:703.725000px;}
.y20{bottom:703.905000px;}
.y47{bottom:704.625000px;}
.y6{bottom:726.585000px;}
.y70{bottom:736.125000px;}
.y32{bottom:741.705000px;}
.y1f{bottom:741.885000px;}
.y46{bottom:742.605000px;}
.y6f{bottom:770.685000px;}
.y1e{bottom:779.685000px;}
.y45{bottom:780.585000px;}
.y6e{bottom:805.290000px;}
.y5{bottom:809.430000px;}
.y31{bottom:817.530000px;}
.y1d{bottom:817.710000px;}
.y44{bottom:818.610000px;}
.y6d{bottom:839.670000px;}
.y1c{bottom:855.510000px;}
.y43{bottom:856.590000px;}
.y6c{bottom:874.230000px;}
.y30{bottom:893.490000px;}
.y1b{bottom:893.670000px;}
.y42{bottom:894.390000px;}
.y4{bottom:896.190000px;}
.y6b{bottom:908.790000px;}
.y1a{bottom:931.470000px;}
.y34{bottom:931.650000px;}
.y41{bottom:932.370000px;}
.y6a{bottom:943.170000px;}
.y3{bottom:944.610000px;}
.y19{bottom:969.450000px;}
.y40{bottom:970.350000px;}
.y69{bottom:977.730000px;}
.y18{bottom:1007.250000px;}
.y3f{bottom:1008.330000px;}
.y68{bottom:1012.290000px;}
.y17{bottom:1045.230000px;}
.y82{bottom:1045.410000px;}
.y67{bottom:1046.670000px;}
.y16{bottom:1080.552000px;}
.y15{bottom:1102.152000px;}
.y14{bottom:1123.752000px;}
.y13{bottom:1145.352000px;}
.h7{height:52.417969px;}
.h8{height:62.327813px;}
.h6{height:69.086250px;}
.h2{height:70.664062px;}
.h5{height:75.093750px;}
.h4{height:83.432812px;}
.h3{height:87.859687px;}
.h1{height:1188.000000px;}
.h0{height:1188.180000px;}
.w1{width:918.000000px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x9{left:40.674000px;}
.x2{left:127.656000px;}
.xa{left:154.650000px;}
.x3{left:162.210000px;}
.x5{left:175.890000px;}
.xd{left:180.570000px;}
.xb{left:181.650000px;}
.x7{left:190.110000px;}
.x4{left:220.170000px;}
.x6{left:373.575000px;}
.x8{left:420.555000px;}
.xc{left:772.710000px;}
.x1{left:781.710000px;}
.x10{left:786.210000px;}
.xe{left:788.910000px;}
.xf{left:789.990000px;}
.x11{left:794.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls4{letter-spacing:-0.949333pt;}
.lse{letter-spacing:-0.912000pt;}
.lsc{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.025067pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.268800pt;}
.lsa{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.504533pt;}
.ls15{letter-spacing:0.542720pt;}
.ls14{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls13{letter-spacing:1.551360pt;}
.ls17{letter-spacing:2.560000pt;}
.ls18{letter-spacing:6.671360pt;}
.ls1b{letter-spacing:113.851307pt;}
.ws3{word-spacing:-17.856000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws12{word-spacing:-16.912640pt;}
.ws13{word-spacing:-16.873173pt;}
.wsa{word-spacing:-16.640107pt;}
.ws14{word-spacing:-16.637440pt;}
.ws11{word-spacing:-16.601707pt;}
.wsc{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.wsb{word-spacing:-16.135573pt;}
.wsf{word-spacing:-16.097173pt;}
.wsd{word-spacing:-16.000107pt;}
.ws8{word-spacing:-15.961707pt;}
.ws10{word-spacing:-15.728640pt;}
.ws9{word-spacing:-15.632640pt;}
.ws0{word-spacing:-15.616000pt;}
.wse{word-spacing:-15.456640pt;}
.ws16{word-spacing:-14.767360pt;}
.ws15{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.672427pt;}
.ws2{word-spacing:-11.920640pt;}
.ws6{word-spacing:0.000000pt;}
.ws1{word-spacing:0.192000pt;}
.ws5{word-spacing:17.344000pt;}
._1{margin-left:-2.086159pt;}
._0{margin-left:-1.031472pt;}
._2{width:0.998827pt;}
._3{width:2.346020pt;}
._4{width:3.718561pt;}
._6{width:5.141231pt;}
._7{width:6.046665pt;}
._b{width:7.083575pt;}
._5{width:8.332769pt;}
._d{width:9.978911pt;}
._10{width:11.188699pt;}
._11{width:12.929707pt;}
._e{width:13.836800pt;}
._f{width:15.083739pt;}
._1c{width:16.419840pt;}
._12{width:17.461125pt;}
._15{width:18.375461pt;}
._16{width:19.873711pt;}
._13{width:21.020160pt;}
._a{width:22.663220pt;}
._8{width:23.561387pt;}
._9{width:25.153072pt;}
._21{width:27.038080pt;}
._20{width:28.100480pt;}
._22{width:29.853013pt;}
._1a{width:32.692699pt;}
._19{width:33.606827pt;}
._14{width:35.857920pt;}
._17{width:55.366827pt;}
._18{width:56.824320pt;}
._c{width:66.072747pt;}
._1f{width:84.957013pt;}
._1d{width:95.775360pt;}
._1e{width:96.939093pt;}
._1b{width:114.443947pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.872000pt;}
.y1{bottom:70.272000pt;}
.y59{bottom:117.312000pt;}
.y2f{bottom:119.552000pt;}
.y3d{bottom:120.352000pt;}
.y54{bottom:121.152000pt;}
.y81{bottom:132.992000pt;}
.y92{bottom:143.866667pt;}
.y12{bottom:147.066667pt;}
.y58{bottom:151.066667pt;}
.y2e{bottom:153.146667pt;}
.y3c{bottom:154.106667pt;}
.y53{bottom:154.906667pt;}
.y80{bottom:163.706667pt;}
.y91{bottom:177.626667pt;}
.y11{bottom:180.826667pt;}
.y57{bottom:184.826667pt;}
.y2d{bottom:186.906667pt;}
.y3b{bottom:187.866667pt;}
.y52{bottom:188.666667pt;}
.y7f{bottom:194.426667pt;}
.y66{bottom:197.466667pt;}
.y95{bottom:202.586667pt;}
.y90{bottom:211.386667pt;}
.y10{bottom:214.586667pt;}
.y56{bottom:218.586667pt;}
.y2c{bottom:220.706667pt;}
.y3a{bottom:221.666667pt;}
.y51{bottom:222.466667pt;}
.y7e{bottom:225.026667pt;}
.y65{bottom:228.066667pt;}
.y8f{bottom:241.986667pt;}
.yf{bottom:248.386667pt;}
.y55{bottom:254.146667pt;}
.y2b{bottom:254.466667pt;}
.y39{bottom:255.266667pt;}
.y7d{bottom:255.746667pt;}
.y50{bottom:256.226667pt;}
.y64{bottom:258.786667pt;}
.y9e{bottom:268.706667pt;}
.ye{bottom:281.986667pt;}
.y7c{bottom:286.466667pt;}
.y2a{bottom:288.226667pt;}
.y38{bottom:289.026667pt;}
.y63{bottom:289.506667pt;}
.y4f{bottom:289.986667pt;}
.y9d{bottom:302.466667pt;}
.y8c{bottom:304.706667pt;}
.yd{bottom:315.906667pt;}
.y7b{bottom:317.026667pt;}
.y62{bottom:320.066667pt;}
.y29{bottom:321.986667pt;}
.y37{bottom:322.786667pt;}
.y4e{bottom:323.586667pt;}
.y9c{bottom:336.226667pt;}
.y9f{bottom:336.386667pt;}
.y8b{bottom:338.466667pt;}
.y7a{bottom:347.746667pt;}
.y61{bottom:352.706667pt;}
.y28{bottom:355.586667pt;}
.y36{bottom:356.546667pt;}
.y9b{bottom:369.986667pt;}
.y88{bottom:370.146667pt;}
.y8a{bottom:372.226667pt;}
.y79{bottom:378.466667pt;}
.y60{bottom:386.306667pt;}
.yc{bottom:388.226667pt;}
.y27{bottom:389.346667pt;}
.y3e{bottom:390.306667pt;}
.y9a{bottom:400.386667pt;}
.y87{bottom:400.546667pt;}
.y89{bottom:402.626667pt;}
.y78{bottom:409.026667pt;}
.y5f{bottom:420.066667pt;}
.y99{bottom:421.826667pt;}
.y26{bottom:423.106667pt;}
.y35{bottom:423.266667pt;}
.y4d{bottom:423.906667pt;}
.yb{bottom:425.026667pt;}
.y77{bottom:439.746667pt;}
.y5e{bottom:453.826667pt;}
.y98{bottom:455.586667pt;}
.y25{bottom:456.866667pt;}
.y4c{bottom:457.666667pt;}
.ya{bottom:461.853333pt;}
.y76{bottom:470.333333pt;}
.y5d{bottom:487.453333pt;}
.y97{bottom:489.373333pt;}
.y24{bottom:490.653333pt;}
.y4b{bottom:491.453333pt;}
.y75{bottom:501.053333pt;}
.y86{bottom:516.733333pt;}
.y96{bottom:519.933333pt;}
.y5c{bottom:521.213333pt;}
.y23{bottom:524.253333pt;}
.y4a{bottom:525.213333pt;}
.y74{bottom:531.773333pt;}
.y9{bottom:535.453333pt;}
.y85{bottom:550.493333pt;}
.y5b{bottom:555.133333pt;}
.y22{bottom:558.013333pt;}
.y49{bottom:558.973333pt;}
.y73{bottom:562.333333pt;}
.y94{bottom:565.373333pt;}
.y8{bottom:572.253333pt;}
.y84{bottom:584.253333pt;}
.y8e{bottom:588.413333pt;}
.y5a{bottom:590.653333pt;}
.y21{bottom:591.773333pt;}
.y48{bottom:592.733333pt;}
.y72{bottom:593.053333pt;}
.y93{bottom:595.773333pt;}
.y7{bottom:609.053333pt;}
.y83{bottom:616.253333pt;}
.y8d{bottom:618.973333pt;}
.y71{bottom:623.773333pt;}
.y33{bottom:625.533333pt;}
.y20{bottom:625.693333pt;}
.y47{bottom:626.333333pt;}
.y6{bottom:645.853333pt;}
.y70{bottom:654.333333pt;}
.y32{bottom:659.293333pt;}
.y1f{bottom:659.453333pt;}
.y46{bottom:660.093333pt;}
.y6f{bottom:685.053333pt;}
.y1e{bottom:693.053333pt;}
.y45{bottom:693.853333pt;}
.y6e{bottom:715.813333pt;}
.y5{bottom:719.493333pt;}
.y31{bottom:726.693333pt;}
.y1d{bottom:726.853333pt;}
.y44{bottom:727.653333pt;}
.y6d{bottom:746.373333pt;}
.y1c{bottom:760.453333pt;}
.y43{bottom:761.413333pt;}
.y6c{bottom:777.093333pt;}
.y30{bottom:794.213333pt;}
.y1b{bottom:794.373333pt;}
.y42{bottom:795.013333pt;}
.y4{bottom:796.613333pt;}
.y6b{bottom:807.813333pt;}
.y1a{bottom:827.973333pt;}
.y34{bottom:828.133333pt;}
.y41{bottom:828.773333pt;}
.y6a{bottom:838.373333pt;}
.y3{bottom:839.653333pt;}
.y19{bottom:861.733333pt;}
.y40{bottom:862.533333pt;}
.y69{bottom:869.093333pt;}
.y18{bottom:895.333333pt;}
.y3f{bottom:896.293333pt;}
.y68{bottom:899.813333pt;}
.y17{bottom:929.093333pt;}
.y82{bottom:929.253333pt;}
.y67{bottom:930.373333pt;}
.y16{bottom:960.490667pt;}
.y15{bottom:979.690667pt;}
.y14{bottom:998.890667pt;}
.y13{bottom:1018.090667pt;}
.h7{height:46.593750pt;}
.h8{height:55.402500pt;}
.h6{height:61.410000pt;}
.h2{height:62.812500pt;}
.h5{height:66.750000pt;}
.h4{height:74.162500pt;}
.h3{height:78.097500pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.160000pt;}
.w1{width:816.000000pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x9{left:36.154667pt;}
.x2{left:113.472000pt;}
.xa{left:137.466667pt;}
.x3{left:144.186667pt;}
.x5{left:156.346667pt;}
.xd{left:160.506667pt;}
.xb{left:161.466667pt;}
.x7{left:168.986667pt;}
.x4{left:195.706667pt;}
.x6{left:332.066667pt;}
.x8{left:373.826667pt;}
.xc{left:686.853333pt;}
.x1{left:694.853333pt;}
.x10{left:698.853333pt;}
.xe{left:701.253333pt;}
.xf{left:702.213333pt;}
.x11{left:705.893333pt;}
}




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