
    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_dcd050c0c72b56576f2191a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5d5b4082ae78e061aee11b96.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cac4795fdf7cd34ffefe3154.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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:-23.760879px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.920000px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.009700px;}
.ls0{letter-spacing:2.729700px;}
.ls1{letter-spacing:3.449700px;}
.ls4{letter-spacing:4.169700px;}
.ls8{letter-spacing:4.317647px;}
.lsd{letter-spacing:4.320000px;}
.lse{letter-spacing:4.320077px;}
.lsf{letter-spacing:4.320262px;}
.lsb{letter-spacing:4.320508px;}
.lsc{letter-spacing:4.321075px;}
.ls3{letter-spacing:17.997358px;}
.ls6{letter-spacing:19.285549px;}
.ls7{letter-spacing:19.289700px;}
.ls5{letter-spacing:20.729700px;}
.lsa{letter-spacing:90.002320px;}
.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;}
}
.wsf{word-spacing:-90.088398px;}
.ws3{word-spacing:-35.930158px;}
.ws4{word-spacing:-17.932800px;}
.ws9{word-spacing:-16.363650px;}
.ws10{word-spacing:-4.386509px;}
.ws1c{word-spacing:-3.536348px;}
.ws2e{word-spacing:-3.529175px;}
.ws15{word-spacing:-2.811863px;}
.ws11{word-spacing:-2.094551px;}
.ws12{word-spacing:-1.370066px;}
.ws1{word-spacing:-0.652754px;}
.ws19{word-spacing:0.000000px;}
.ws2{word-spacing:0.064558px;}
.ws5{word-spacing:0.196364px;}
.ws16{word-spacing:0.789043px;}
.ws8{word-spacing:0.916364px;}
.ws1b{word-spacing:1.506355px;}
.ws6{word-spacing:1.636365px;}
.ws28{word-spacing:2.223667px;}
.ws26{word-spacing:2.230840px;}
.ws14{word-spacing:2.948152px;}
.wsd{word-spacing:3.076366px;}
.ws13{word-spacing:3.665464px;}
.ws18{word-spacing:4.389949px;}
.ws7{word-spacing:4.516367px;}
.ws20{word-spacing:5.107261px;}
.ws1e{word-spacing:5.824573px;}
.wse{word-spacing:5.956369px;}
.ws25{word-spacing:6.549059px;}
.wsb{word-spacing:6.676369px;}
.ws27{word-spacing:7.266371px;}
.wsc{word-spacing:7.396370px;}
.ws1d{word-spacing:7.983683px;}
.ws17{word-spacing:7.990856px;}
.ws2c{word-spacing:8.708168px;}
.ws24{word-spacing:9.425480px;}
.ws1f{word-spacing:10.149965px;}
.ws1a{word-spacing:10.867277px;}
.ws2f{word-spacing:16.491003px;}
.ws21{word-spacing:16.497806px;}
.ws2d{word-spacing:16.506052px;}
.ws2a{word-spacing:16.506652px;}
.ws22{word-spacing:17.189617px;}
.ws29{word-spacing:17.217806px;}
.ws23{word-spacing:17.222167px;}
.ws30{word-spacing:17.925627px;}
.ws2b{word-spacing:17.952778px;}
.ws0{word-spacing:21.510692px;}
.wsa{word-spacing:75.534608px;}
._f{margin-left:-85.684471px;}
._4{margin-left:-17.806609px;}
._3{margin-left:-7.919124px;}
._14{margin-left:-5.771496px;}
._7{margin-left:-4.735030px;}
._1{margin-left:-2.874978px;}
._0{margin-left:-1.437489px;}
._2{width:1.078533px;}
._11{width:12.964693px;}
._10{width:14.403625px;}
._6{width:15.840013px;}
._12{width:17.294392px;}
._5{width:18.927529px;}
._c{width:20.880017px;}
._1b{width:21.892766px;}
._d{width:23.040019px;}
._8{width:24.480020px;}
._9{width:25.920022px;}
._a{width:27.354999px;}
._15{width:28.499577px;}
._18{width:29.521023px;}
._1c{width:30.967033px;}
._1a{width:33.122625px;}
._1d{width:35.284070px;}
._1e{width:36.725867px;}
._e{width:40.317522px;}
._16{width:41.754774px;}
._b{width:45.360038px;}
._13{width:47.478903px;}
._17{width:51.832965px;}
._19{width:53.277627px;}
._1f{width:57.619315px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs3{font-size:65.454600px;}
.fs4{font-size:68.862000px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y92{bottom:95.669796px;}
.y6c{bottom:95.671056px;}
.y7b{bottom:95.671202px;}
.y29{bottom:95.674908px;}
.y52{bottom:95.676033px;}
.y91{bottom:117.269854px;}
.y6b{bottom:117.271114px;}
.y7a{bottom:117.271260px;}
.y28{bottom:117.274965px;}
.y51{bottom:117.276090px;}
.y90{bottom:139.049240px;}
.y6a{bottom:139.050499px;}
.y79{bottom:139.050645px;}
.y27{bottom:139.054351px;}
.y50{bottom:139.055476px;}
.yb6{bottom:142.650998px;}
.y8f{bottom:160.649297px;}
.y69{bottom:160.650557px;}
.y78{bottom:160.650703px;}
.y26{bottom:160.654408px;}
.yb5{bottom:164.251056px;}
.y4f{bottom:169.474884px;}
.y8e{bottom:182.249355px;}
.y68{bottom:182.250614px;}
.y77{bottom:182.250760px;}
.y25{bottom:182.254466px;}
.yb4{bottom:185.851114px;}
.y4e{bottom:191.074942px;}
.y8d{bottom:204.028740px;}
.y67{bottom:204.030000px;}
.y76{bottom:204.030146px;}
.y24{bottom:204.033852px;}
.y4d{bottom:212.675000px;}
.yb3{bottom:222.572108px;}
.y8c{bottom:225.628798px;}
.y75{bottom:225.630204px;}
.y23{bottom:234.453260px;}
.y4c{bottom:234.454385px;}
.yb2{bottom:244.172166px;}
.y8b{bottom:247.228856px;}
.y74{bottom:247.230261px;}
.y66{bottom:255.330000px;}
.y22{bottom:256.053318px;}
.y4b{bottom:256.054443px;}
.yb1{bottom:265.951551px;}
.y21{bottom:277.832703px;}
.y4a{bottom:286.473852px;}
.y20{bottom:299.432761px;}
.yb0{bottom:302.491425px;}
.y49{bottom:308.253237px;}
.y73{bottom:317.430000px;}
.y8a{bottom:318.509942px;}
.y1f{bottom:321.032819px;}
.yaf{bottom:324.091482px;}
.y48{bottom:329.853295px;}
.y65{bottom:330.754140px;}
.y89{bottom:340.110000px;}
.y1e{bottom:342.812204px;}
.y47{bottom:351.453352px;}
.y64{bottom:352.354197px;}
.yae{bottom:360.810684px;}
.y1d{bottom:373.231613px;}
.y46{bottom:373.232738px;}
.y63{bottom:374.133583px;}
.yad{bottom:382.410741px;}
.y1c{bottom:394.831670px;}
.y45{bottom:394.832796px;}
.y62{bottom:395.733640px;}
.y1b{bottom:416.611056px;}
.y44{bottom:416.612181px;}
.y61{bottom:417.513026px;}
.yac{bottom:419.129942px;}
.y1a{bottom:438.211114px;}
.y60{bottom:439.113084px;}
.yab{bottom:440.730000px;}
.y43{bottom:447.031590px;}
.y19{bottom:459.811171px;}
.y5f{bottom:460.713141px;}
.y42{bottom:468.631647px;}
.y18{bottom:481.590557px;}
.yaa{bottom:488.430000px;}
.y41{bottom:490.411033px;}
.y5e{bottom:491.132550px;}
.y17{bottom:503.190614px;}
.y5d{bottom:512.911935px;}
.y40{bottom:520.830442px;}
.y16{bottom:524.970000px;}
.y5c{bottom:534.511993px;}
.y3f{bottom:542.430499px;}
.y5b{bottom:556.291379px;}
.y3e{bottom:564.030557px;}
.y15{bottom:573.930000px;}
.ya9{bottom:573.931820px;}
.y5a{bottom:577.891436px;}
.y3d{bottom:585.809942px;}
.ya8{bottom:595.711206px;}
.y3c{bottom:607.410000px;}
.y59{bottom:608.310845px;}
.ya7{bottom:617.311263px;}
.y72{bottom:621.449992px;}
.y58{bottom:630.090230px;}
.y14{bottom:637.469810px;}
.ya6{bottom:639.090649px;}
.y71{bottom:643.050050px;}
.y57{bottom:651.690288px;}
.y13{bottom:657.809827px;}
.y3b{bottom:658.350000px;}
.ya5{bottom:660.690707px;}
.y70{bottom:664.829436px;}
.y88{bottom:667.890998px;}
.y56{bottom:673.290346px;}
.y12{bottom:678.149844px;}
.ya4{bottom:682.290764px;}
.y87{bottom:689.491056px;}
.y55{bottom:695.069731px;}
.y6f{bottom:695.248844px;}
.y11{bottom:698.309860px;}
.y86{bottom:711.270442px;}
.ya3{bottom:712.891294px;}
.y6e{bottom:716.848902px;}
.y10{bottom:718.649877px;}
.y3a{bottom:731.432557px;}
.y85{bottom:732.870499px;}
.ya2{bottom:734.491352px;}
.yf{bottom:738.989894px;}
.y39{bottom:753.032615px;}
.y84{bottom:754.649885px;}
.ya1{bottom:756.091409px;}
.ye{bottom:759.329911px;}
.y54{bottom:774.090614px;}
.y38{bottom:774.632673px;}
.y83{bottom:776.249942px;}
.ya0{bottom:777.870795px;}
.yd{bottom:779.669928px;}
.y6d{bottom:792.450000px;}
.y53{bottom:795.870000px;}
.y82{bottom:797.850000px;}
.y9f{bottom:799.470852px;}
.yc{bottom:800.009945px;}
.y37{bottom:805.233203px;}
.y9e{bottom:821.070910px;}
.y36{bottom:826.833260px;}
.yb{bottom:845.549983px;}
.y81{bottom:847.350000px;}
.y35{bottom:848.433318px;}
.y9d{bottom:851.671440px;}
.y34{bottom:870.212703px;}
.ya{bottom:871.830000px;}
.y9c{bottom:873.271498px;}
.y33{bottom:891.812761px;}
.y9b{bottom:894.871555px;}
.y9{bottom:895.049983px;}
.y80{bottom:913.592147px;}
.y9a{bottom:916.650941px;}
.y8{bottom:921.330000px;}
.y32{bottom:922.232170px;}
.y7f{bottom:935.192204px;}
.y99{bottom:938.250998px;}
.y31{bottom:944.011555px;}
.y7{bottom:944.369983px;}
.y7e{bottom:956.792262px;}
.y98{bottom:960.030384px;}
.y30{bottom:965.611613px;}
.y6{bottom:970.650000px;}
.y7d{bottom:978.571647px;}
.y97{bottom:981.630442px;}
.y2f{bottom:987.211670px;}
.y5{bottom:993.869983px;}
.y7c{bottom:1000.171705px;}
.y96{bottom:1003.230499px;}
.y2e{bottom:1008.991056px;}
.y4{bottom:1020.150220px;}
.y95{bottom:1025.009885px;}
.y2d{bottom:1030.591114px;}
.y94{bottom:1046.609942px;}
.y2c{bottom:1052.370499px;}
.y3{bottom:1059.750614px;}
.y93{bottom:1068.210000px;}
.y2b{bottom:1073.970557px;}
.y2{bottom:1081.530000px;}
.y2a{bottom:1095.570614px;}
.y1{bottom:1117.350000px;}
.h5{height:46.933304px;}
.h6{height:64.240110px;}
.h7{height:65.965964px;}
.h8{height:70.400250px;}
.h4{height:72.851446px;}
.h3{height:72.853304px;}
.h2{height:86.749678px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:106.469482px;}
.xf{left:132.750000px;}
.x11{left:135.989182px;}
.xd{left:149.490000px;}
.x1{left:160.110000px;}
.xe{left:175.230518px;}
.x3{left:179.908307px;}
.x2{left:185.310000px;}
.xc{left:192.869944px;}
.x8{left:196.110000px;}
.xa{left:249.030000px;}
.x4{left:261.811038px;}
.x7{left:317.249986px;}
.x6{left:322.830000px;}
.x9{left:383.310147px;}
.xb{left:390.330109px;}
.x5{left:399.150105px;}
@media print{
.v2{vertical-align:-21.120782pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.040000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.786400pt;}
.ls0{letter-spacing:2.426400pt;}
.ls1{letter-spacing:3.066400pt;}
.ls4{letter-spacing:3.706400pt;}
.ls8{letter-spacing:3.837909pt;}
.lsd{letter-spacing:3.840000pt;}
.lse{letter-spacing:3.840068pt;}
.lsf{letter-spacing:3.840233pt;}
.lsb{letter-spacing:3.840451pt;}
.lsc{letter-spacing:3.840956pt;}
.ls3{letter-spacing:15.997652pt;}
.ls6{letter-spacing:17.142711pt;}
.ls7{letter-spacing:17.146400pt;}
.ls5{letter-spacing:18.426400pt;}
.lsa{letter-spacing:80.002063pt;}
.wsf{word-spacing:-80.078576pt;}
.ws3{word-spacing:-31.937918pt;}
.ws4{word-spacing:-15.940267pt;}
.ws9{word-spacing:-14.545467pt;}
.ws10{word-spacing:-3.899119pt;}
.ws1c{word-spacing:-3.143421pt;}
.ws2e{word-spacing:-3.137044pt;}
.ws15{word-spacing:-2.499434pt;}
.ws11{word-spacing:-1.861823pt;}
.ws12{word-spacing:-1.217836pt;}
.ws1{word-spacing:-0.580226pt;}
.ws19{word-spacing:0.000000pt;}
.ws2{word-spacing:0.057385pt;}
.ws5{word-spacing:0.174546pt;}
.ws16{word-spacing:0.701372pt;}
.ws8{word-spacing:0.814546pt;}
.ws1b{word-spacing:1.338982pt;}
.ws6{word-spacing:1.454547pt;}
.ws28{word-spacing:1.976593pt;}
.ws26{word-spacing:1.982969pt;}
.ws14{word-spacing:2.620580pt;}
.wsd{word-spacing:2.734548pt;}
.ws13{word-spacing:3.258191pt;}
.ws18{word-spacing:3.902177pt;}
.ws7{word-spacing:4.014549pt;}
.ws20{word-spacing:4.539788pt;}
.ws1e{word-spacing:5.177399pt;}
.wse{word-spacing:5.294550pt;}
.ws25{word-spacing:5.821385pt;}
.wsb{word-spacing:5.934550pt;}
.ws27{word-spacing:6.458996pt;}
.wsc{word-spacing:6.574551pt;}
.ws1d{word-spacing:7.096607pt;}
.ws17{word-spacing:7.102983pt;}
.ws2c{word-spacing:7.740593pt;}
.ws24{word-spacing:8.378204pt;}
.ws1f{word-spacing:9.022191pt;}
.ws1a{word-spacing:9.659802pt;}
.ws2f{word-spacing:14.658669pt;}
.ws21{word-spacing:14.664716pt;}
.ws2d{word-spacing:14.672046pt;}
.ws2a{word-spacing:14.672580pt;}
.ws22{word-spacing:15.279659pt;}
.ws29{word-spacing:15.304716pt;}
.ws23{word-spacing:15.308593pt;}
.ws30{word-spacing:15.933891pt;}
.ws2b{word-spacing:15.958025pt;}
.ws0{word-spacing:19.120615pt;}
.wsa{word-spacing:67.141874pt;}
._f{margin-left:-76.163975pt;}
._4{margin-left:-15.828097pt;}
._3{margin-left:-7.039222pt;}
._14{margin-left:-5.130219pt;}
._7{margin-left:-4.208916pt;}
._1{margin-left:-2.555536pt;}
._0{margin-left:-1.277768pt;}
._2{width:0.958696pt;}
._11{width:11.524172pt;}
._10{width:12.803222pt;}
._6{width:14.080012pt;}
._12{width:15.372793pt;}
._5{width:16.824470pt;}
._c{width:18.560015pt;}
._1b{width:19.460236pt;}
._d{width:20.480017pt;}
._8{width:21.760018pt;}
._9{width:23.040019pt;}
._a{width:24.315555pt;}
._15{width:25.332957pt;}
._18{width:26.240909pt;}
._1c{width:27.526251pt;}
._1a{width:29.442333pt;}
._1d{width:31.363617pt;}
._1e{width:32.645215pt;}
._e{width:35.837797pt;}
._16{width:37.115354pt;}
._b{width:40.320034pt;}
._13{width:42.203470pt;}
._17{width:46.073747pt;}
._19{width:47.357891pt;}
._1f{width:51.217169pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:58.181867pt;}
.fs4{font-size:61.210667pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:85.039819pt;}
.y6c{bottom:85.040939pt;}
.y7b{bottom:85.041068pt;}
.y29{bottom:85.044362pt;}
.y52{bottom:85.045362pt;}
.y91{bottom:104.239870pt;}
.y6b{bottom:104.240990pt;}
.y7a{bottom:104.241120pt;}
.y28{bottom:104.244413pt;}
.y51{bottom:104.245414pt;}
.y90{bottom:123.599324pt;}
.y6a{bottom:123.600444pt;}
.y79{bottom:123.600573pt;}
.y27{bottom:123.603867pt;}
.y50{bottom:123.604867pt;}
.yb6{bottom:126.800887pt;}
.y8f{bottom:142.799375pt;}
.y69{bottom:142.800495pt;}
.y78{bottom:142.800625pt;}
.y26{bottom:142.803919pt;}
.yb5{bottom:146.000939pt;}
.y4f{bottom:150.644342pt;}
.y8e{bottom:161.999427pt;}
.y68{bottom:162.000546pt;}
.y77{bottom:162.000676pt;}
.y25{bottom:162.003970pt;}
.yb4{bottom:165.200990pt;}
.y4e{bottom:169.844393pt;}
.y8d{bottom:181.358880pt;}
.y67{bottom:181.360000pt;}
.y76{bottom:181.360130pt;}
.y24{bottom:181.363424pt;}
.y4d{bottom:189.044444pt;}
.yb3{bottom:197.841874pt;}
.y8c{bottom:200.558932pt;}
.y75{bottom:200.560181pt;}
.y23{bottom:208.402898pt;}
.y4c{bottom:208.403898pt;}
.yb2{bottom:217.041925pt;}
.y8b{bottom:219.758983pt;}
.y74{bottom:219.760232pt;}
.y66{bottom:226.960000pt;}
.y22{bottom:227.602949pt;}
.y4b{bottom:227.603949pt;}
.yb1{bottom:236.401379pt;}
.y21{bottom:246.962403pt;}
.y4a{bottom:254.643424pt;}
.y20{bottom:266.162454pt;}
.yb0{bottom:268.881266pt;}
.y49{bottom:274.002877pt;}
.y73{bottom:282.160000pt;}
.y8a{bottom:283.119949pt;}
.y1f{bottom:285.362505pt;}
.yaf{bottom:288.081318pt;}
.y48{bottom:293.202929pt;}
.y65{bottom:294.003680pt;}
.y89{bottom:302.320000pt;}
.y1e{bottom:304.721959pt;}
.y47{bottom:312.402980pt;}
.y64{bottom:313.203731pt;}
.yae{bottom:320.720608pt;}
.y1d{bottom:331.761434pt;}
.y46{bottom:331.762434pt;}
.y63{bottom:332.563185pt;}
.yad{bottom:339.920659pt;}
.y1c{bottom:350.961485pt;}
.y45{bottom:350.962485pt;}
.y62{bottom:351.763236pt;}
.y1b{bottom:370.320939pt;}
.y44{bottom:370.321939pt;}
.y61{bottom:371.122690pt;}
.yac{bottom:372.559949pt;}
.y1a{bottom:389.520990pt;}
.y60{bottom:390.322741pt;}
.yab{bottom:391.760000pt;}
.y43{bottom:397.361413pt;}
.y19{bottom:408.721041pt;}
.y5f{bottom:409.522792pt;}
.y42{bottom:416.561464pt;}
.y18{bottom:428.080495pt;}
.yaa{bottom:434.160000pt;}
.y41{bottom:435.920918pt;}
.y5e{bottom:436.562266pt;}
.y17{bottom:447.280546pt;}
.y5d{bottom:455.921720pt;}
.y40{bottom:462.960393pt;}
.y16{bottom:466.640000pt;}
.y5c{bottom:475.121772pt;}
.y3f{bottom:482.160444pt;}
.y5b{bottom:494.481225pt;}
.y3e{bottom:501.360495pt;}
.y15{bottom:510.160000pt;}
.ya9{bottom:510.161618pt;}
.y5a{bottom:513.681277pt;}
.y3d{bottom:520.719949pt;}
.ya8{bottom:529.521072pt;}
.y3c{bottom:539.920000pt;}
.y59{bottom:540.720751pt;}
.ya7{bottom:548.721123pt;}
.y72{bottom:552.399993pt;}
.y58{bottom:560.080205pt;}
.y14{bottom:566.639831pt;}
.ya6{bottom:568.080577pt;}
.y71{bottom:571.600044pt;}
.y57{bottom:579.280256pt;}
.y13{bottom:584.719846pt;}
.y3b{bottom:585.200000pt;}
.ya5{bottom:587.280628pt;}
.y70{bottom:590.959498pt;}
.y88{bottom:593.680887pt;}
.y56{bottom:598.480307pt;}
.y12{bottom:602.799861pt;}
.ya4{bottom:606.480679pt;}
.y87{bottom:612.880939pt;}
.y55{bottom:617.839761pt;}
.y6f{bottom:617.998973pt;}
.y11{bottom:620.719876pt;}
.y86{bottom:632.240393pt;}
.ya3{bottom:633.681150pt;}
.y6e{bottom:637.199024pt;}
.y10{bottom:638.799891pt;}
.y3a{bottom:650.162273pt;}
.y85{bottom:651.440444pt;}
.ya2{bottom:652.881201pt;}
.yf{bottom:656.879906pt;}
.y39{bottom:669.362324pt;}
.y84{bottom:670.799898pt;}
.ya1{bottom:672.081253pt;}
.ye{bottom:674.959921pt;}
.y54{bottom:688.080546pt;}
.y38{bottom:688.562376pt;}
.y83{bottom:689.999949pt;}
.ya0{bottom:691.440707pt;}
.yd{bottom:693.039936pt;}
.y6d{bottom:704.400000pt;}
.y53{bottom:707.440000pt;}
.y82{bottom:709.200000pt;}
.y9f{bottom:710.640758pt;}
.yc{bottom:711.119951pt;}
.y37{bottom:715.762847pt;}
.y9e{bottom:729.840809pt;}
.y36{bottom:734.962898pt;}
.yb{bottom:751.599985pt;}
.y81{bottom:753.200000pt;}
.y35{bottom:754.162949pt;}
.y9d{bottom:757.041280pt;}
.y34{bottom:773.522403pt;}
.ya{bottom:774.960000pt;}
.y9c{bottom:776.241331pt;}
.y33{bottom:792.722454pt;}
.y9b{bottom:795.441382pt;}
.y9{bottom:795.599985pt;}
.y80{bottom:812.081908pt;}
.y9a{bottom:814.800836pt;}
.y8{bottom:818.960000pt;}
.y32{bottom:819.761929pt;}
.y7f{bottom:831.281959pt;}
.y99{bottom:834.000887pt;}
.y31{bottom:839.121382pt;}
.y7{bottom:839.439985pt;}
.y7e{bottom:850.482010pt;}
.y98{bottom:853.360341pt;}
.y30{bottom:858.321434pt;}
.y6{bottom:862.800000pt;}
.y7d{bottom:869.841464pt;}
.y97{bottom:872.560393pt;}
.y2f{bottom:877.521485pt;}
.y5{bottom:883.439985pt;}
.y7c{bottom:889.041516pt;}
.y96{bottom:891.760444pt;}
.y2e{bottom:896.880939pt;}
.y4{bottom:906.800195pt;}
.y95{bottom:911.119898pt;}
.y2d{bottom:916.080990pt;}
.y94{bottom:930.319949pt;}
.y2c{bottom:935.440444pt;}
.y3{bottom:942.000546pt;}
.y93{bottom:949.520000pt;}
.y2b{bottom:954.640495pt;}
.y2{bottom:961.360000pt;}
.y2a{bottom:973.840546pt;}
.y1{bottom:993.200000pt;}
.h5{height:41.718492pt;}
.h6{height:57.102320pt;}
.h7{height:58.636412pt;}
.h8{height:62.578000pt;}
.h4{height:64.756841pt;}
.h3{height:64.758492pt;}
.h2{height:77.110825pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:94.639539pt;}
.xf{left:118.000000pt;}
.x11{left:120.879273pt;}
.xd{left:132.880000pt;}
.x1{left:142.320000pt;}
.xe{left:155.760461pt;}
.x3{left:159.918495pt;}
.x2{left:164.720000pt;}
.xc{left:171.439950pt;}
.x8{left:174.320000pt;}
.xa{left:221.360000pt;}
.x4{left:232.720922pt;}
.x7{left:281.999988pt;}
.x6{left:286.960000pt;}
.x9{left:340.720131pt;}
.xb{left:346.960097pt;}
.x5{left:354.800094pt;}
}




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