
    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_a2b4f0ce46caab65a01682cf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de252c2d83105aec50fdaa17.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_50529f143054817aeb96dc64.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_b33ad212d0bc82131dc7401a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_38e9bc4114e82e90b9e00d75.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-0.943920px;}
.ls20{letter-spacing:-0.905280px;}
.ls1a{letter-spacing:-0.800400px;}
.ls23{letter-spacing:-0.761760px;}
.ls16{letter-spacing:-0.662400px;}
.ls18{letter-spacing:-0.381432px;}
.ls1d{letter-spacing:-0.280968px;}
.ls1f{letter-spacing:-0.241224px;}
.ls1b{letter-spacing:-0.210864px;}
.ls15{letter-spacing:-0.140208px;}
.ls1e{letter-spacing:-0.100464px;}
.ls17{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.241224px;}
.ls0{letter-spacing:0.280858px;}
.ls19{letter-spacing:0.280968px;}
.ls22{letter-spacing:0.381432px;}
.ls1{letter-spacing:0.521971px;}
.ls26{letter-spacing:0.522192px;}
.ls1c{letter-spacing:0.527160px;}
.ls27{letter-spacing:0.563040px;}
.lsd{letter-spacing:0.586886px;}
.ls28{letter-spacing:0.662400px;}
.lsc{letter-spacing:0.943258px;}
.ls2c{letter-spacing:0.943920px;}
.ls2d{letter-spacing:1.225440px;}
.ls9{letter-spacing:1.605658px;}
.ls29{letter-spacing:2.268058px;}
.ls2b{letter-spacing:2.908378px;}
.ls13{letter-spacing:2.930458px;}
.ls8{letter-spacing:3.592858px;}
.ls25{letter-spacing:3.593520px;}
.ls4{letter-spacing:4.917658px;}
.ls2a{letter-spacing:6.904858px;}
.lsa{letter-spacing:8.229658px;}
.lsb{letter-spacing:8.892058px;}
.ls6{letter-spacing:10.216858px;}
.ls14{letter-spacing:10.879258px;}
.ls7{letter-spacing:12.866458px;}
.ls3{letter-spacing:13.528858px;}
.ls5{letter-spacing:14.191258px;}
.ls2{letter-spacing:15.516058px;}
.lse{letter-spacing:16.840858px;}
.ls11{letter-spacing:21.477658px;}
.ls12{letter-spacing:23.464858px;}
.ls10{letter-spacing:28.101658px;}
.lsf{letter-spacing:30.088858px;}
.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;}
}
.ws1a{word-spacing:-17.885462px;}
.ws16{word-spacing:-17.603942px;}
.ws17{word-spacing:-17.504582px;}
.ws15{word-spacing:-17.463734px;}
.ws10{word-spacing:-17.322974px;}
.ws12{word-spacing:-17.222510px;}
.ws14{word-spacing:-17.182766px;}
.wsd{word-spacing:-16.941542px;}
.wsb{word-spacing:-16.841078px;}
.wsf{word-spacing:-16.801334px;}
.wsc{word-spacing:-16.700318px;}
.ws9{word-spacing:-16.660574px;}
.wsa{word-spacing:-16.560110px;}
.ws18{word-spacing:-16.279142px;}
.ws13{word-spacing:-16.179782px;}
.ws11{word-spacing:-16.036262px;}
.wse{word-spacing:-15.997622px;}
.ws7{word-spacing:-11.207698px;}
.ws8{word-spacing:-10.680538px;}
.ws4{word-spacing:-8.751739px;}
.ws3{word-spacing:-8.470771px;}
.ws0{word-spacing:-8.330563px;}
.ws6{word-spacing:-8.259907px;}
.ws2{word-spacing:-8.089339px;}
.ws1{word-spacing:-7.808371px;}
.ws5{word-spacing:-7.670371px;}
.ws19{word-spacing:0.000000px;}
._19{margin-left:-6.881894px;}
._1a{margin-left:-5.488205px;}
._12{margin-left:-4.477382px;}
._11{margin-left:-3.412685px;}
._1{margin-left:-1.190112px;}
._0{width:1.364102px;}
._a{width:2.512704px;}
._2{width:4.124875px;}
._3{width:5.393261px;}
._10{width:6.446146px;}
._9{width:7.486334px;}
._f{width:8.844144px;}
._e{width:10.147968px;}
._b{width:11.433024px;}
._c{width:12.436781px;}
._d{width:14.552045px;}
._7{width:18.878069px;}
._4{width:19.903795px;}
._5{width:21.037824px;}
._6{width:22.499299px;}
._17{width:23.589720px;}
._8{width:25.338566px;}
._18{width:27.384058px;}
._16{width:29.106960px;}
._1b{width:30.505728px;}
._1c{width:33.435082px;}
._14{width:36.869184px;}
._15{width:38.091533px;}
._13{width:139.442266px;}
._1e{width:778.214458px;}
._1d{width:2324.844000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:30.470400px;}
.fs1{font-size:38.419200px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:44.380800px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:60.940800px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.980800px;}
.y7{bottom:3.312000px;}
.y43{bottom:4.140000px;}
.y4{bottom:14.407200px;}
.y42{bottom:18.712800px;}
.y48{bottom:19.375200px;}
.y4b{bottom:19.540800px;}
.y60{bottom:20.865600px;}
.y3{bottom:25.833600px;}
.y4d{bottom:29.642400px;}
.y2{bottom:37.260000px;}
.y4e{bottom:39.744000px;}
.y36{bottom:43.050000px;}
.y47{bottom:53.323200px;}
.y4a{bottom:53.488800px;}
.y5f{bottom:54.648000px;}
.y5c{bottom:55.476000px;}
.y35{bottom:58.050000px;}
.y32{bottom:68.260320px;}
.y34{bottom:73.050000px;}
.y53{bottom:73.857600px;}
.y33{bottom:83.550000px;}
.y31{bottom:85.813920px;}
.y5b{bottom:89.258400px;}
.y8{bottom:101.025000px;}
.y52{bottom:107.640000px;}
.y30{bottom:122.245920px;}
.y51{bottom:141.588000px;}
.y2f{bottom:156.685200px;}
.y2e{bottom:174.238800px;}
.y2d{bottom:191.792400px;}
.y2c{bottom:211.830000px;}
.y2b{bottom:229.549200px;}
.y2a{bottom:247.102800px;}
.y66{bottom:252.567600px;}
.y29{bottom:264.697800px;}
.y28{bottom:282.251400px;}
.y65{bottom:289.206600px;}
.y27{bottom:299.970600px;}
.y64{bottom:309.409800px;}
.y26{bottom:317.524200px;}
.y25{bottom:335.077800px;}
.y63{bottom:343.026600px;}
.y24{bottom:352.631400px;}
.y62{bottom:376.974600px;}
.y23{bottom:389.229000px;}
.y22{bottom:409.432200px;}
.y21{bottom:429.469800px;}
.y20{bottom:449.673000px;}
.y1f{bottom:483.289800px;}
.y5a{bottom:493.069200px;}
.y1e{bottom:517.237800px;}
.y61{bottom:528.342000px;}
.y1d{bottom:537.965400px;}
.y59{bottom:551.875800px;}
.y5e{bottom:563.614800px;}
.y1c{bottom:571.913400px;}
.y5d{bottom:598.887600px;}
.y1b{bottom:605.695800px;}
.y45{bottom:607.517400px;}
.y1a{bottom:626.064600px;}
.y19{bottom:641.796600px;}
.y44{bottom:641.962200px;}
.y18{bottom:654.382200px;}
.y50{bottom:667.970400px;}
.y17{bottom:674.916600px;}
.y58{bottom:703.243200px;}
.y16{bottom:708.533400px;}
.y40{bottom:730.723800px;}
.y57{bottom:738.516000px;}
.y15{bottom:742.481400px;}
.y14{bottom:762.684600px;}
.y3f{bottom:765.003000px;}
.y56{bottom:773.788800px;}
.y41{bottom:778.260000px;}
.y13{bottom:782.763600px;}
.y4f{bottom:797.336400px;}
.y3e{bottom:799.158000px;}
.y55{bottom:809.061600px;}
.y12{bottom:816.546000px;}
.y3d{bottom:833.271600px;}
.y11{bottom:836.749200px;}
.y54{bottom:844.334400px;}
.y10{bottom:856.786800px;}
.y3c{bottom:867.550800px;}
.yf{bottom:876.990000px;}
.y3b{bottom:885.104400px;}
.ye{bottom:897.027600px;}
.y4c{bottom:914.093400px;}
.y3a{bottom:919.218000px;}
.yd{bottom:930.644400px;}
.y39{bottom:936.771600px;}
.yc{bottom:951.013200px;}
.y38{bottom:954.325200px;}
.y49{bottom:969.403800px;}
.yb{bottom:971.050800px;}
.y37{bottom:990.922800px;}
.ya{bottom:991.088400px;}
.y6f{bottom:1006.500000px;}
.y6e{bottom:1029.000000px;}
.y46{bottom:1038.624600px;}
.y6d{bottom:1044.000000px;}
.y6c{bottom:1059.000000px;}
.y6b{bottom:1074.000000px;}
.y6a{bottom:1089.000000px;}
.y9{bottom:1097.762400px;}
.y69{bottom:1113.000000px;}
.y68{bottom:1137.000000px;}
.y67{bottom:1161.000000px;}
.y1{bottom:1165.833000px;}
.y6{bottom:1220.481000px;}
.h4{height:12.916800px;}
.ha{height:29.145600px;}
.h3{height:31.779675px;}
.h10{height:33.782400px;}
.h13{height:33.815520px;}
.h11{height:33.948000px;}
.h5{height:40.070025px;}
.h9{height:43.804688px;}
.h2{height:44.712000px;}
.hb{height:46.287788px;}
.he{height:53.985600px;}
.h7{height:60.613481px;}
.h16{height:62.578125px;}
.h8{height:63.559350px;}
.hc{height:67.730400px;}
.hd{height:67.896000px;}
.h14{height:69.088320px;}
.h15{height:87.609375px;}
.h12{height:139.628400px;}
.hf{height:210.146400px;}
.h6{height:1161.849600px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:54.681120px;}
.wc{width:83.131200px;}
.w9{width:83.793600px;}
.w2{width:131.353920px;}
.w8{width:230.418600px;}
.wb{width:231.081000px;}
.wa{width:324.976200px;}
.w7{width:640.678800px;}
.w6{width:642.003600px;}
.w5{width:662.372400px;}
.w4{width:821.541588px;}
.wd{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.324800px;}
.xb{left:3.312000px;}
.x16{left:4.504320px;}
.x14{left:12.254400px;}
.x13{left:33.616800px;}
.x5{left:35.715012px;}
.x17{left:37.260000px;}
.x18{left:41.565600px;}
.x4{left:53.033400px;}
.x9{left:55.500000px;}
.x11{left:69.579600px;}
.x6{left:78.163188px;}
.xa{left:114.375000px;}
.x7{left:117.277908px;}
.xe{left:118.349400px;}
.x10{left:143.934000px;}
.x8{left:157.678788px;}
.x1a{left:205.845000px;}
.xf{left:230.087400px;}
.xc{left:289.703400px;}
.xd{left:321.001800px;}
.x12{left:349.430400px;}
.x15{left:434.052000px;}
.x19{left:443.325000px;}
.x1{left:629.156400px;}
.x3{left:636.608400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-0.839040pt;}
.ls20{letter-spacing:-0.804693pt;}
.ls1a{letter-spacing:-0.711467pt;}
.ls23{letter-spacing:-0.677120pt;}
.ls16{letter-spacing:-0.588800pt;}
.ls18{letter-spacing:-0.339051pt;}
.ls1d{letter-spacing:-0.249749pt;}
.ls1f{letter-spacing:-0.214421pt;}
.ls1b{letter-spacing:-0.187435pt;}
.ls15{letter-spacing:-0.124629pt;}
.ls1e{letter-spacing:-0.089301pt;}
.ls17{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.214421pt;}
.ls0{letter-spacing:0.249651pt;}
.ls19{letter-spacing:0.249749pt;}
.ls22{letter-spacing:0.339051pt;}
.ls1{letter-spacing:0.463974pt;}
.ls26{letter-spacing:0.464171pt;}
.ls1c{letter-spacing:0.468587pt;}
.ls27{letter-spacing:0.500480pt;}
.lsd{letter-spacing:0.521677pt;}
.ls28{letter-spacing:0.588800pt;}
.lsc{letter-spacing:0.838451pt;}
.ls2c{letter-spacing:0.839040pt;}
.ls2d{letter-spacing:1.089280pt;}
.ls9{letter-spacing:1.427251pt;}
.ls29{letter-spacing:2.016051pt;}
.ls2b{letter-spacing:2.585225pt;}
.ls13{letter-spacing:2.604851pt;}
.ls8{letter-spacing:3.193651pt;}
.ls25{letter-spacing:3.194240pt;}
.ls4{letter-spacing:4.371251pt;}
.ls2a{letter-spacing:6.137651pt;}
.lsa{letter-spacing:7.315251pt;}
.lsb{letter-spacing:7.904051pt;}
.ls6{letter-spacing:9.081651pt;}
.ls14{letter-spacing:9.670451pt;}
.ls7{letter-spacing:11.436851pt;}
.ls3{letter-spacing:12.025651pt;}
.ls5{letter-spacing:12.614451pt;}
.ls2{letter-spacing:13.792051pt;}
.lse{letter-spacing:14.969651pt;}
.ls11{letter-spacing:19.091251pt;}
.ls12{letter-spacing:20.857651pt;}
.ls10{letter-spacing:24.979251pt;}
.lsf{letter-spacing:26.745651pt;}
.ws1a{word-spacing:-15.898189pt;}
.ws16{word-spacing:-15.647949pt;}
.ws17{word-spacing:-15.559629pt;}
.ws15{word-spacing:-15.523319pt;}
.ws10{word-spacing:-15.398199pt;}
.ws12{word-spacing:-15.308898pt;}
.ws14{word-spacing:-15.273570pt;}
.wsd{word-spacing:-15.059149pt;}
.wsb{word-spacing:-14.969847pt;}
.wsf{word-spacing:-14.934519pt;}
.wsc{word-spacing:-14.844727pt;}
.ws9{word-spacing:-14.809399pt;}
.wsa{word-spacing:-14.720098pt;}
.ws18{word-spacing:-14.470349pt;}
.ws13{word-spacing:-14.382029pt;}
.ws11{word-spacing:-14.254455pt;}
.wse{word-spacing:-14.220109pt;}
.ws7{word-spacing:-9.962398pt;}
.ws8{word-spacing:-9.493811pt;}
.ws4{word-spacing:-7.779324pt;}
.ws3{word-spacing:-7.529574pt;}
.ws0{word-spacing:-7.404945pt;}
.ws6{word-spacing:-7.342140pt;}
.ws2{word-spacing:-7.190524pt;}
.ws1{word-spacing:-6.940774pt;}
.ws5{word-spacing:-6.818108pt;}
.ws19{word-spacing:0.000000pt;}
._19{margin-left:-6.117239pt;}
._1a{margin-left:-4.878404pt;}
._12{margin-left:-3.979895pt;}
._11{margin-left:-3.033498pt;}
._1{margin-left:-1.057877pt;}
._0{width:1.212535pt;}
._a{width:2.233515pt;}
._2{width:3.666556pt;}
._3{width:4.794010pt;}
._10{width:5.729907pt;}
._9{width:6.654519pt;}
._f{width:7.861461pt;}
._e{width:9.020416pt;}
._b{width:10.162688pt;}
._c{width:11.054916pt;}
._d{width:12.935151pt;}
._7{width:16.780506pt;}
._4{width:17.692262pt;}
._5{width:18.700288pt;}
._6{width:19.999377pt;}
._17{width:20.968640pt;}
._8{width:22.523170pt;}
._18{width:24.341385pt;}
._16{width:25.872853pt;}
._1b{width:27.116203pt;}
._1c{width:29.720073pt;}
._14{width:32.772608pt;}
._15{width:33.859140pt;}
._13{width:123.948681pt;}
._1e{width:691.746185pt;}
._1d{width:2066.528000pt;}
.fs0{font-size:27.084800pt;}
.fs1{font-size:34.150400pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:39.449600pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:54.169600pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.649600pt;}
.y7{bottom:2.944000pt;}
.y43{bottom:3.680000pt;}
.y4{bottom:12.806400pt;}
.y42{bottom:16.633600pt;}
.y48{bottom:17.222400pt;}
.y4b{bottom:17.369600pt;}
.y60{bottom:18.547200pt;}
.y3{bottom:22.963200pt;}
.y4d{bottom:26.348800pt;}
.y2{bottom:33.120000pt;}
.y4e{bottom:35.328000pt;}
.y36{bottom:38.266667pt;}
.y47{bottom:47.398400pt;}
.y4a{bottom:47.545600pt;}
.y5f{bottom:48.576000pt;}
.y5c{bottom:49.312000pt;}
.y35{bottom:51.600000pt;}
.y32{bottom:60.675840pt;}
.y34{bottom:64.933333pt;}
.y53{bottom:65.651200pt;}
.y33{bottom:74.266667pt;}
.y31{bottom:76.279040pt;}
.y5b{bottom:79.340800pt;}
.y8{bottom:89.800000pt;}
.y52{bottom:95.680000pt;}
.y30{bottom:108.663040pt;}
.y51{bottom:125.856000pt;}
.y2f{bottom:139.275733pt;}
.y2e{bottom:154.878933pt;}
.y2d{bottom:170.482133pt;}
.y2c{bottom:188.293333pt;}
.y2b{bottom:204.043733pt;}
.y2a{bottom:219.646933pt;}
.y66{bottom:224.504533pt;}
.y29{bottom:235.286933pt;}
.y28{bottom:250.890133pt;}
.y65{bottom:257.072533pt;}
.y27{bottom:266.640533pt;}
.y64{bottom:275.030933pt;}
.y26{bottom:282.243733pt;}
.y25{bottom:297.846933pt;}
.y63{bottom:304.912533pt;}
.y24{bottom:313.450133pt;}
.y62{bottom:335.088533pt;}
.y23{bottom:345.981333pt;}
.y22{bottom:363.939733pt;}
.y21{bottom:381.750933pt;}
.y20{bottom:399.709333pt;}
.y1f{bottom:429.590933pt;}
.y5a{bottom:438.283733pt;}
.y1e{bottom:459.766933pt;}
.y61{bottom:469.637333pt;}
.y1d{bottom:478.191467pt;}
.y59{bottom:490.556267pt;}
.y5e{bottom:500.990933pt;}
.y1c{bottom:508.367467pt;}
.y5d{bottom:532.344533pt;}
.y1b{bottom:538.396267pt;}
.y45{bottom:540.015467pt;}
.y1a{bottom:556.501867pt;}
.y19{bottom:570.485867pt;}
.y44{bottom:570.633067pt;}
.y18{bottom:581.673067pt;}
.y50{bottom:593.751467pt;}
.y17{bottom:599.925867pt;}
.y58{bottom:625.105067pt;}
.y16{bottom:629.807467pt;}
.y40{bottom:649.532267pt;}
.y57{bottom:656.458667pt;}
.y15{bottom:659.983467pt;}
.y14{bottom:677.941867pt;}
.y3f{bottom:680.002667pt;}
.y56{bottom:687.812267pt;}
.y41{bottom:691.786667pt;}
.y13{bottom:695.789867pt;}
.y4f{bottom:708.743467pt;}
.y3e{bottom:710.362667pt;}
.y55{bottom:719.165867pt;}
.y12{bottom:725.818667pt;}
.y3d{bottom:740.685867pt;}
.y11{bottom:743.777067pt;}
.y54{bottom:750.519467pt;}
.y10{bottom:761.588267pt;}
.y3c{bottom:771.156267pt;}
.yf{bottom:779.546667pt;}
.y3b{bottom:786.759467pt;}
.ye{bottom:797.357867pt;}
.y4c{bottom:812.527467pt;}
.y3a{bottom:817.082667pt;}
.yd{bottom:827.239467pt;}
.y39{bottom:832.685867pt;}
.yc{bottom:845.345067pt;}
.y38{bottom:848.289067pt;}
.y49{bottom:861.692267pt;}
.yb{bottom:863.156267pt;}
.y37{bottom:880.820267pt;}
.ya{bottom:880.967467pt;}
.y6f{bottom:894.666667pt;}
.y6e{bottom:914.666667pt;}
.y46{bottom:923.221867pt;}
.y6d{bottom:928.000000pt;}
.y6c{bottom:941.333333pt;}
.y6b{bottom:954.666667pt;}
.y6a{bottom:968.000000pt;}
.y9{bottom:975.788800pt;}
.y69{bottom:989.333333pt;}
.y68{bottom:1010.666667pt;}
.y67{bottom:1032.000000pt;}
.y1{bottom:1036.296000pt;}
.y6{bottom:1084.872000pt;}
.h4{height:11.481600pt;}
.ha{height:25.907200pt;}
.h3{height:28.248600pt;}
.h10{height:30.028800pt;}
.h13{height:30.058240pt;}
.h11{height:30.176000pt;}
.h5{height:35.617800pt;}
.h9{height:38.937500pt;}
.h2{height:39.744000pt;}
.hb{height:41.144700pt;}
.he{height:47.987200pt;}
.h7{height:53.878650pt;}
.h16{height:55.625000pt;}
.h8{height:56.497200pt;}
.hc{height:60.204800pt;}
.hd{height:60.352000pt;}
.h14{height:61.411840pt;}
.h15{height:77.875000pt;}
.h12{height:124.114133pt;}
.hf{height:186.796800pt;}
.h6{height:1032.755200pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:48.605440pt;}
.wc{width:73.894400pt;}
.w9{width:74.483200pt;}
.w2{width:116.759040pt;}
.w8{width:204.816533pt;}
.wb{width:205.405333pt;}
.wa{width:288.867733pt;}
.w7{width:569.492267pt;}
.w6{width:570.669867pt;}
.w5{width:588.775467pt;}
.w4{width:730.259189pt;}
.wd{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.177600pt;}
.xb{left:2.944000pt;}
.x16{left:4.003840pt;}
.x14{left:10.892800pt;}
.x13{left:29.881600pt;}
.x5{left:31.746678pt;}
.x17{left:33.120000pt;}
.x18{left:36.947200pt;}
.x4{left:47.140800pt;}
.x9{left:49.333333pt;}
.x11{left:61.848533pt;}
.x6{left:69.478389pt;}
.xa{left:101.666667pt;}
.x7{left:104.247029pt;}
.xe{left:105.199467pt;}
.x10{left:127.941333pt;}
.x8{left:140.158922pt;}
.x1a{left:182.973333pt;}
.xf{left:204.522133pt;}
.xc{left:257.514133pt;}
.xd{left:285.334933pt;}
.x12{left:310.604800pt;}
.x15{left:385.824000pt;}
.x19{left:394.066667pt;}
.x1{left:559.250133pt;}
.x3{left:565.874133pt;}
}




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