
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_2c5c1fb6b6ca0f6d6207210e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_a846deb608a11180e3876374.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_4a933c0d55ebb280c3fd7368.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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:17.982000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.006600px;}
.ls3{letter-spacing:0.010800px;}
.ls2{letter-spacing:0.013200px;}
.ls6{letter-spacing:2.280000px;}
.ls4{letter-spacing:3.696000px;}
.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:-30.000000px;}
.ws0{word-spacing:-22.500000px;}
.ws8{word-spacing:-18.696000px;}
.ws6{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws9{word-spacing:-15.006000px;}
.wsa{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.510800px;}
.ws2{word-spacing:-13.500000px;}
.ws7{word-spacing:-7.870500px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:4.276245px;}
._0{margin-left:-9.120000px;}
._20{margin-left:-7.587600px;}
._1b{margin-left:-4.234800px;}
._f{margin-left:-3.036600px;}
._d{margin-left:-1.933800px;}
._6{width:1.023000px;}
._3{width:2.270400px;}
._9{width:3.696000px;}
._b{width:5.154600px;}
._c{width:6.157800px;}
._12{width:8.052000px;}
._1{width:9.188400px;}
._8{width:10.269600px;}
._e{width:11.972400px;}
._10{width:13.879800px;}
._7{width:15.430800px;}
._21{width:16.662000px;}
._4{width:17.853000px;}
._1f{width:18.924000px;}
._11{width:20.110200px;}
._15{width:21.516000px;}
._18{width:23.383800px;}
._14{width:24.472800px;}
._a{width:25.693800px;}
._2{width:27.046800px;}
._5{width:28.228200px;}
._16{width:29.343600px;}
._1c{width:31.310400px;}
._1e{width:32.742600px;}
._13{width:35.989800px;}
._19{width:37.543200px;}
._1a{width:43.012200px;}
._1d{width:47.249400px;}
._17{width:51.546000px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:31.482000px;}
.fs8{font-size:42.857160px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:43.765350px;}
.yc{bottom:56.834700px;}
.y12{bottom:59.965350px;}
.y4a{bottom:60.295200px;}
.y49{bottom:108.000300px;}
.y9f{bottom:112.379850px;}
.y87{bottom:112.464900px;}
.y14{bottom:113.480850px;}
.y63{bottom:121.224000px;}
.y48{bottom:127.800300px;}
.y9e{bottom:132.179850px;}
.y86{bottom:132.264900px;}
.y62{bottom:141.024000px;}
.y7a{bottom:146.268000px;}
.y47{bottom:147.600300px;}
.y9d{bottom:151.980000px;}
.y85{bottom:152.065500px;}
.y61{bottom:160.824000px;}
.y35{bottom:163.404000px;}
.y79{bottom:166.068000px;}
.y46{bottom:167.400000px;}
.y9c{bottom:171.780000px;}
.y84{bottom:171.865500px;}
.y60{bottom:180.624000px;}
.y34{bottom:183.204000px;}
.y78{bottom:185.868000px;}
.y45{bottom:187.200000px;}
.y9b{bottom:191.580000px;}
.y83{bottom:191.665500px;}
.y5f{bottom:200.424000px;}
.y33{bottom:203.004000px;}
.y77{bottom:205.668000px;}
.y9a{bottom:211.380000px;}
.y82{bottom:211.465500px;}
.y44{bottom:219.756000px;}
.y5e{bottom:220.224000px;}
.y32{bottom:222.804000px;}
.y76{bottom:225.468000px;}
.y99{bottom:231.180000px;}
.y81{bottom:231.265500px;}
.y5d{bottom:240.024000px;}
.y31{bottom:242.604000px;}
.y75{bottom:245.268000px;}
.y98{bottom:250.980000px;}
.y5c{bottom:259.824000px;}
.y30{bottom:262.404000px;}
.y74{bottom:265.068000px;}
.y97{bottom:270.780000px;}
.y5b{bottom:279.624000px;}
.ya5{bottom:279.904500px;}
.y2f{bottom:282.204000px;}
.y73{bottom:284.868000px;}
.y43{bottom:299.424000px;}
.y2e{bottom:302.004000px;}
.y96{bottom:303.336000px;}
.y72{bottom:304.668000px;}
.y42{bottom:319.224000px;}
.y2d{bottom:321.804000px;}
.y95{bottom:323.136000px;}
.y71{bottom:324.468000px;}
.y41{bottom:339.024000px;}
.y2c{bottom:341.604000px;}
.y94{bottom:342.936000px;}
.y70{bottom:357.024000px;}
.y40{bottom:358.824000px;}
.y2b{bottom:361.404000px;}
.y93{bottom:362.736000px;}
.y3f{bottom:378.624000px;}
.y2a{bottom:381.204000px;}
.y92{bottom:382.536000px;}
.y7d{bottom:392.193000px;}
.y3e{bottom:398.424000px;}
.y29{bottom:401.004000px;}
.y91{bottom:402.336000px;}
.y7c{bottom:408.393000px;}
.y3d{bottom:418.224000px;}
.y28{bottom:420.804000px;}
.y90{bottom:422.136000px;}
.y7b{bottom:424.593000px;}
.y6f{bottom:436.692000px;}
.y3c{bottom:438.024000px;}
.y27{bottom:440.604000px;}
.y8f{bottom:441.936000px;}
.y6e{bottom:456.492000px;}
.y3b{bottom:457.824000px;}
.y26{bottom:460.404000px;}
.y8e{bottom:461.736000px;}
.y6d{bottom:476.292000px;}
.y3a{bottom:477.624000px;}
.y25{bottom:480.204000px;}
.y8d{bottom:481.536000px;}
.y6c{bottom:496.092000px;}
.y39{bottom:497.424000px;}
.y24{bottom:500.004000px;}
.y8c{bottom:501.336000px;}
.y6b{bottom:515.892000px;}
.y38{bottom:517.224000px;}
.y23{bottom:519.804000px;}
.y8b{bottom:521.136000px;}
.y6a{bottom:535.692000px;}
.y37{bottom:537.024000px;}
.y22{bottom:539.604000px;}
.y8a{bottom:540.936000px;}
.y69{bottom:555.492000px;}
.y36{bottom:556.824000px;}
.y21{bottom:559.404000px;}
.y89{bottom:573.492000px;}
.y68{bottom:575.292000px;}
.y20{bottom:579.204000px;}
.y67{bottom:595.092000px;}
.y1f{bottom:599.004000px;}
.yb7{bottom:613.347000px;}
.y66{bottom:614.892000px;}
.y1e{bottom:618.804000px;}
.y4f{bottom:624.204000px;}
.yb6{bottom:631.347000px;}
.y65{bottom:634.692000px;}
.y1d{bottom:638.604000px;}
.y4e{bottom:640.404000px;}
.y64{bottom:654.492000px;}
.ycf{bottom:654.846000px;}
.y4d{bottom:656.604000px;}
.yb{bottom:657.114000px;}
.yb5{bottom:657.850500px;}
.y1c{bottom:658.404000px;}
.ya1{bottom:667.761000px;}
.ya4{bottom:669.171000px;}
.yce{bottom:672.846000px;}
.yb4{bottom:675.850500px;}
.ya{bottom:676.914000px;}
.ya0{bottom:683.961000px;}
.ya3{bottom:685.371000px;}
.ycd{bottom:690.846000px;}
.y1b{bottom:690.960000px;}
.yb3{bottom:693.850500px;}
.y9{bottom:696.714000px;}
.ya2{bottom:701.571000px;}
.ycc{bottom:708.846000px;}
.yb2{bottom:711.850500px;}
.y8{bottom:716.514000px;}
.ycb{bottom:726.846000px;}
.y7{bottom:736.314000px;}
.yb1{bottom:738.354000px;}
.y80{bottom:743.251500px;}
.yca{bottom:744.846000px;}
.y4c{bottom:751.593000px;}
.y6{bottom:756.114000px;}
.yb0{bottom:756.354000px;}
.y7f{bottom:759.451500px;}
.yc9{bottom:762.846000px;}
.y4b{bottom:767.793000px;}
.yaf{bottom:774.354000px;}
.y7e{bottom:775.651500px;}
.y5{bottom:775.914000px;}
.yc8{bottom:780.846000px;}
.yae{bottom:792.354000px;}
.y4{bottom:795.714000px;}
.yad{bottom:810.354000px;}
.yc7{bottom:811.602000px;}
.y3{bottom:815.514000px;}
.yac{bottom:845.362500px;}
.yc6{bottom:866.409000px;}
.y5a{bottom:872.674500px;}
.yc5{bottom:884.409000px;}
.y59{bottom:892.474500px;}
.y11{bottom:895.635000px;}
.yc4{bottom:902.409000px;}
.y58{bottom:912.274500px;}
.y10{bottom:913.635000px;}
.yc3{bottom:920.409000px;}
.yab{bottom:925.030500px;}
.y57{bottom:932.074500px;}
.yc2{bottom:938.409000px;}
.yaa{bottom:944.830500px;}
.yf{bottom:949.635000px;}
.y56{bottom:951.874500px;}
.yc1{bottom:956.409000px;}
.ya9{bottom:964.630500px;}
.y55{bottom:971.674500px;}
.yc0{bottom:982.914000px;}
.ya8{bottom:984.430500px;}
.y54{bottom:991.474500px;}
.ye{bottom:992.835000px;}
.ybf{bottom:1000.914000px;}
.ya7{bottom:1004.230500px;}
.y53{bottom:1011.274500px;}
.ybe{bottom:1018.914000px;}
.ya6{bottom:1024.030500px;}
.yd{bottom:1028.835000px;}
.y52{bottom:1031.074500px;}
.ybd{bottom:1036.914000px;}
.y88{bottom:1043.830500px;}
.y51{bottom:1050.874500px;}
.ybc{bottom:1054.914000px;}
.y1a{bottom:1063.630500px;}
.y50{bottom:1070.674500px;}
.ybb{bottom:1072.914000px;}
.y19{bottom:1083.430500px;}
.yba{bottom:1099.417500px;}
.y2{bottom:1100.785500px;}
.y18{bottom:1103.230500px;}
.yb9{bottom:1117.417500px;}
.y17{bottom:1123.030500px;}
.y16{bottom:1142.830500px;}
.yb8{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.y15{bottom:1204.695000px;}
.ha{height:39.313477px;}
.h9{height:39.366211px;}
.hc{height:40.901757px;}
.h8{height:43.535156px;}
.he{height:43.681641px;}
.hd{height:43.740234px;}
.h4{height:48.049805px;}
.h5{height:48.114258px;}
.h7{height:52.417969px;}
.hb{height:52.488281px;}
.h3{height:65.610352px;}
.h6{height:87.480469px;}
.h2{height:171.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:44.645700px;}
.xd{left:46.771650px;}
.x4{left:108.000000px;}
.x8{left:121.981350px;}
.x11{left:125.007900px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x2{left:131.834700px;}
.xb{left:161.433000px;}
.xc{left:330.685500px;}
.xa{left:366.727500px;}
.x9{left:396.888000px;}
.x6{left:467.716500px;}
.x12{left:484.725000px;}
.x5{left:488.976000px;}
.xf{left:655.272000px;}
.x10{left:833.893500px;}
.x7{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.005867pt;}
.ls3{letter-spacing:0.009600pt;}
.ls2{letter-spacing:0.011733pt;}
.ls6{letter-spacing:2.026667pt;}
.ls4{letter-spacing:3.285333pt;}
.ws1{word-spacing:-26.666667pt;}
.ws0{word-spacing:-20.000000pt;}
.ws8{word-spacing:-16.618667pt;}
.ws6{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws9{word-spacing:-13.338667pt;}
.wsa{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.009600pt;}
.ws2{word-spacing:-12.000000pt;}
.ws7{word-spacing:-6.996000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:3.801107pt;}
._0{margin-left:-8.106667pt;}
._20{margin-left:-6.744533pt;}
._1b{margin-left:-3.764267pt;}
._f{margin-left:-2.699200pt;}
._d{margin-left:-1.718933pt;}
._6{width:0.909333pt;}
._3{width:2.018133pt;}
._9{width:3.285333pt;}
._b{width:4.581867pt;}
._c{width:5.473600pt;}
._12{width:7.157333pt;}
._1{width:8.167467pt;}
._8{width:9.128533pt;}
._e{width:10.642133pt;}
._10{width:12.337600pt;}
._7{width:13.716267pt;}
._21{width:14.810667pt;}
._4{width:15.869333pt;}
._1f{width:16.821333pt;}
._11{width:17.875733pt;}
._15{width:19.125333pt;}
._18{width:20.785600pt;}
._14{width:21.753600pt;}
._a{width:22.838933pt;}
._2{width:24.041600pt;}
._5{width:25.091733pt;}
._16{width:26.083200pt;}
._1c{width:27.831467pt;}
._1e{width:29.104533pt;}
._13{width:31.990933pt;}
._19{width:33.371733pt;}
._1a{width:38.233067pt;}
._1d{width:41.999467pt;}
._17{width:45.818667pt;}
.fs7{font-size:27.984000pt;}
.fs8{font-size:38.095253pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:38.902533pt;}
.yc{bottom:50.519733pt;}
.y12{bottom:53.302533pt;}
.y4a{bottom:53.595733pt;}
.y49{bottom:96.000267pt;}
.y9f{bottom:99.893200pt;}
.y87{bottom:99.968800pt;}
.y14{bottom:100.871867pt;}
.y63{bottom:107.754667pt;}
.y48{bottom:113.600267pt;}
.y9e{bottom:117.493200pt;}
.y86{bottom:117.568800pt;}
.y62{bottom:125.354667pt;}
.y7a{bottom:130.016000pt;}
.y47{bottom:131.200267pt;}
.y9d{bottom:135.093333pt;}
.y85{bottom:135.169333pt;}
.y61{bottom:142.954667pt;}
.y35{bottom:145.248000pt;}
.y79{bottom:147.616000pt;}
.y46{bottom:148.800000pt;}
.y9c{bottom:152.693333pt;}
.y84{bottom:152.769333pt;}
.y60{bottom:160.554667pt;}
.y34{bottom:162.848000pt;}
.y78{bottom:165.216000pt;}
.y45{bottom:166.400000pt;}
.y9b{bottom:170.293333pt;}
.y83{bottom:170.369333pt;}
.y5f{bottom:178.154667pt;}
.y33{bottom:180.448000pt;}
.y77{bottom:182.816000pt;}
.y9a{bottom:187.893333pt;}
.y82{bottom:187.969333pt;}
.y44{bottom:195.338667pt;}
.y5e{bottom:195.754667pt;}
.y32{bottom:198.048000pt;}
.y76{bottom:200.416000pt;}
.y99{bottom:205.493333pt;}
.y81{bottom:205.569333pt;}
.y5d{bottom:213.354667pt;}
.y31{bottom:215.648000pt;}
.y75{bottom:218.016000pt;}
.y98{bottom:223.093333pt;}
.y5c{bottom:230.954667pt;}
.y30{bottom:233.248000pt;}
.y74{bottom:235.616000pt;}
.y97{bottom:240.693333pt;}
.y5b{bottom:248.554667pt;}
.ya5{bottom:248.804000pt;}
.y2f{bottom:250.848000pt;}
.y73{bottom:253.216000pt;}
.y43{bottom:266.154667pt;}
.y2e{bottom:268.448000pt;}
.y96{bottom:269.632000pt;}
.y72{bottom:270.816000pt;}
.y42{bottom:283.754667pt;}
.y2d{bottom:286.048000pt;}
.y95{bottom:287.232000pt;}
.y71{bottom:288.416000pt;}
.y41{bottom:301.354667pt;}
.y2c{bottom:303.648000pt;}
.y94{bottom:304.832000pt;}
.y70{bottom:317.354667pt;}
.y40{bottom:318.954667pt;}
.y2b{bottom:321.248000pt;}
.y93{bottom:322.432000pt;}
.y3f{bottom:336.554667pt;}
.y2a{bottom:338.848000pt;}
.y92{bottom:340.032000pt;}
.y7d{bottom:348.616000pt;}
.y3e{bottom:354.154667pt;}
.y29{bottom:356.448000pt;}
.y91{bottom:357.632000pt;}
.y7c{bottom:363.016000pt;}
.y3d{bottom:371.754667pt;}
.y28{bottom:374.048000pt;}
.y90{bottom:375.232000pt;}
.y7b{bottom:377.416000pt;}
.y6f{bottom:388.170667pt;}
.y3c{bottom:389.354667pt;}
.y27{bottom:391.648000pt;}
.y8f{bottom:392.832000pt;}
.y6e{bottom:405.770667pt;}
.y3b{bottom:406.954667pt;}
.y26{bottom:409.248000pt;}
.y8e{bottom:410.432000pt;}
.y6d{bottom:423.370667pt;}
.y3a{bottom:424.554667pt;}
.y25{bottom:426.848000pt;}
.y8d{bottom:428.032000pt;}
.y6c{bottom:440.970667pt;}
.y39{bottom:442.154667pt;}
.y24{bottom:444.448000pt;}
.y8c{bottom:445.632000pt;}
.y6b{bottom:458.570667pt;}
.y38{bottom:459.754667pt;}
.y23{bottom:462.048000pt;}
.y8b{bottom:463.232000pt;}
.y6a{bottom:476.170667pt;}
.y37{bottom:477.354667pt;}
.y22{bottom:479.648000pt;}
.y8a{bottom:480.832000pt;}
.y69{bottom:493.770667pt;}
.y36{bottom:494.954667pt;}
.y21{bottom:497.248000pt;}
.y89{bottom:509.770667pt;}
.y68{bottom:511.370667pt;}
.y20{bottom:514.848000pt;}
.y67{bottom:528.970667pt;}
.y1f{bottom:532.448000pt;}
.yb7{bottom:545.197333pt;}
.y66{bottom:546.570667pt;}
.y1e{bottom:550.048000pt;}
.y4f{bottom:554.848000pt;}
.yb6{bottom:561.197333pt;}
.y65{bottom:564.170667pt;}
.y1d{bottom:567.648000pt;}
.y4e{bottom:569.248000pt;}
.y64{bottom:581.770667pt;}
.ycf{bottom:582.085333pt;}
.y4d{bottom:583.648000pt;}
.yb{bottom:584.101333pt;}
.yb5{bottom:584.756000pt;}
.y1c{bottom:585.248000pt;}
.ya1{bottom:593.565333pt;}
.ya4{bottom:594.818667pt;}
.yce{bottom:598.085333pt;}
.yb4{bottom:600.756000pt;}
.ya{bottom:601.701333pt;}
.ya0{bottom:607.965333pt;}
.ya3{bottom:609.218667pt;}
.ycd{bottom:614.085333pt;}
.y1b{bottom:614.186667pt;}
.yb3{bottom:616.756000pt;}
.y9{bottom:619.301333pt;}
.ya2{bottom:623.618667pt;}
.ycc{bottom:630.085333pt;}
.yb2{bottom:632.756000pt;}
.y8{bottom:636.901333pt;}
.ycb{bottom:646.085333pt;}
.y7{bottom:654.501333pt;}
.yb1{bottom:656.314667pt;}
.y80{bottom:660.668000pt;}
.yca{bottom:662.085333pt;}
.y4c{bottom:668.082667pt;}
.y6{bottom:672.101333pt;}
.yb0{bottom:672.314667pt;}
.y7f{bottom:675.068000pt;}
.yc9{bottom:678.085333pt;}
.y4b{bottom:682.482667pt;}
.yaf{bottom:688.314667pt;}
.y7e{bottom:689.468000pt;}
.y5{bottom:689.701333pt;}
.yc8{bottom:694.085333pt;}
.yae{bottom:704.314667pt;}
.y4{bottom:707.301333pt;}
.yad{bottom:720.314667pt;}
.yc7{bottom:721.424000pt;}
.y3{bottom:724.901333pt;}
.yac{bottom:751.433333pt;}
.yc6{bottom:770.141333pt;}
.y5a{bottom:775.710667pt;}
.yc5{bottom:786.141333pt;}
.y59{bottom:793.310667pt;}
.y11{bottom:796.120000pt;}
.yc4{bottom:802.141333pt;}
.y58{bottom:810.910667pt;}
.y10{bottom:812.120000pt;}
.yc3{bottom:818.141333pt;}
.yab{bottom:822.249333pt;}
.y57{bottom:828.510667pt;}
.yc2{bottom:834.141333pt;}
.yaa{bottom:839.849333pt;}
.yf{bottom:844.120000pt;}
.y56{bottom:846.110667pt;}
.yc1{bottom:850.141333pt;}
.ya9{bottom:857.449333pt;}
.y55{bottom:863.710667pt;}
.yc0{bottom:873.701333pt;}
.ya8{bottom:875.049333pt;}
.y54{bottom:881.310667pt;}
.ye{bottom:882.520000pt;}
.ybf{bottom:889.701333pt;}
.ya7{bottom:892.649333pt;}
.y53{bottom:898.910667pt;}
.ybe{bottom:905.701333pt;}
.ya6{bottom:910.249333pt;}
.yd{bottom:914.520000pt;}
.y52{bottom:916.510667pt;}
.ybd{bottom:921.701333pt;}
.y88{bottom:927.849333pt;}
.y51{bottom:934.110667pt;}
.ybc{bottom:937.701333pt;}
.y1a{bottom:945.449333pt;}
.y50{bottom:951.710667pt;}
.ybb{bottom:953.701333pt;}
.y19{bottom:963.049333pt;}
.yba{bottom:977.260000pt;}
.y2{bottom:978.476000pt;}
.y18{bottom:980.649333pt;}
.yb9{bottom:993.260000pt;}
.y17{bottom:998.249333pt;}
.y16{bottom:1015.849333pt;}
.yb8{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.y15{bottom:1070.840000pt;}
.ha{height:34.945312pt;}
.h9{height:34.992188pt;}
.hc{height:36.357117pt;}
.h8{height:38.697917pt;}
.he{height:38.828125pt;}
.hd{height:38.880208pt;}
.h4{height:42.710938pt;}
.h5{height:42.768229pt;}
.h7{height:46.593750pt;}
.hb{height:46.656250pt;}
.h3{height:58.320312pt;}
.h6{height:77.760417pt;}
.h2{height:152.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:39.685067pt;}
.xd{left:41.574800pt;}
.x4{left:96.000000pt;}
.x8{left:108.427867pt;}
.x11{left:111.118133pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x2{left:117.186400pt;}
.xb{left:143.496000pt;}
.xc{left:293.942667pt;}
.xa{left:325.980000pt;}
.x9{left:352.789333pt;}
.x6{left:415.748000pt;}
.x12{left:430.866667pt;}
.x5{left:434.645333pt;}
.xf{left:582.464000pt;}
.x10{left:741.238667pt;}
.x7{left:743.128000pt;}
}




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