
    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_363fa5202e502ea557843216.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_474fae0afefc36e2113bded7.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ba20eaf67e2c7f298e910b12.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_23f6dff43b9808e92fe2ff16.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-12.389922px;}
.v5{vertical-align:-7.433898px;}
.v1{vertical-align:-5.759766px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760132px;}
.v7{vertical-align:7.623960px;}
.v8{vertical-align:9.529812px;}
.v4{vertical-align:23.759946px;}
.v2{vertical-align:27.359988px;}
.ls11{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.143675px;}
.lsd{letter-spacing:0.143770px;}
.lsc{letter-spacing:0.257811px;}
.ls19{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.998179px;}
.ls9{letter-spacing:1.110109px;}
.ls7{letter-spacing:1.110115px;}
.ls6{letter-spacing:1.226052px;}
.ls8{letter-spacing:1.239024px;}
.lsf{letter-spacing:1.239113px;}
.lse{letter-spacing:8.672833px;}
.lsa{letter-spacing:8.672928px;}
.ls18{letter-spacing:12.418039px;}
.ls15{letter-spacing:13.137948px;}
.ls17{letter-spacing:13.137954px;}
.ls16{letter-spacing:13.857862px;}
.ls14{letter-spacing:13.857868px;}
.ls0{letter-spacing:16.015942px;}
.ls3{letter-spacing:20.156796px;}
.ls2{letter-spacing:20.156802px;}
.ls1{letter-spacing:25.196381px;}
.ls13{letter-spacing:25.196387px;}
.ls4{letter-spacing:25.196477px;}
.ls12{letter-spacing:25.403542px;}
.lsb{letter-spacing:437.768031px;}
.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;}
}
.ws7{word-spacing:-33.197515px;}
.ws6{word-spacing:-32.199336px;}
.ws5{word-spacing:-16.560000px;}
.ws1d{word-spacing:-13.824000px;}
.ws12{word-spacing:-13.500000px;}
.ws8{word-spacing:-10.514322px;}
.ws1{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.911904px;}
.ws9{word-spacing:-9.907488px;}
.wsf{word-spacing:-9.053396px;}
.wsa{word-spacing:-8.049834px;}
.ws10{word-spacing:-7.623912px;}
.wse{word-spacing:-6.814434px;}
.ws11{word-spacing:-5.241440px;}
.ws1b{word-spacing:-0.362052px;}
.ws1c{word-spacing:-0.362046px;}
.ws4{word-spacing:-0.005127px;}
.ws14{word-spacing:0.000000px;}
.ws16{word-spacing:0.034550px;}
.ws13{word-spacing:0.041117px;}
.ws15{word-spacing:0.091983px;}
.ws1e{word-spacing:0.357868px;}
.ws17{word-spacing:0.754416px;}
.wsb{word-spacing:0.770716px;}
.ws1a{word-spacing:9.922356px;}
.ws19{word-spacing:12.082189px;}
.ws18{word-spacing:14.961990px;}
.ws0{word-spacing:16.806092px;}
.ws2{word-spacing:27.433796px;}
.ws3{word-spacing:33.364778px;}
.wsd{word-spacing:422.431338px;}
._11{margin-left:-338.869102px;}
._10{margin-left:-306.136876px;}
._12{margin-left:-289.394894px;}
._f{margin-left:-3.321150px;}
._0{margin-left:-1.549451px;}
._2{width:1.003028px;}
._3{width:2.290117px;}
._e{width:3.378240px;}
._a{width:4.901760px;}
._c{width:5.967150px;}
._6{width:7.177100px;}
._5{width:8.876160px;}
._7{width:10.532160px;}
._d{width:12.121920px;}
._13{width:14.885057px;}
._4{width:18.030300px;}
._1{width:19.996073px;}
._15{width:21.331361px;}
._b{width:22.592576px;}
._17{width:23.627705px;}
._9{width:26.725846px;}
._8{width:27.931371px;}
._14{width:34.647779px;}
._16{width:37.982437px;}
.fc5{color:transparent;}
.fc3{color:rgb(255,10,10);}
.fc2{color:rgb(0,129,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:20.965758px;}
.fsa{font-size:27.257736px;}
.fsd{font-size:30.495648px;}
.fs6{font-size:32.199336px;}
.fsb{font-size:36.213582px;}
.fs7{font-size:37.153080px;}
.fs8{font-size:39.629952px;}
.fs9{font-size:39.647616px;}
.fs5{font-size:41.760000px;}
.fsc{font-size:45.743472px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000029px;}
.y2e{bottom:13.961511px;}
.y40{bottom:16.380000px;}
.y37{bottom:19.000748px;}
.y2c{bottom:27.665707px;}
.y3f{bottom:35.819998px;}
.y21{bottom:38.761064px;}
.y22{bottom:54.358743px;}
.y23{bottom:69.956423px;}
.y24{bottom:85.554194px;}
.y3e{bottom:93.240026px;}
.y25{bottom:101.151871px;}
.y30{bottom:111.327182px;}
.y2d{bottom:116.201517px;}
.y26{bottom:116.749665px;}
.y3c{bottom:122.607968px;}
.y27{bottom:132.347344px;}
.y3a{bottom:142.371067px;}
.y28{bottom:147.945115px;}
.y38{bottom:150.264332px;}
.y31{bottom:154.800026px;}
.y20{bottom:155.340025px;}
.y33{bottom:155.880024px;}
.y29{bottom:163.542795px;}
.y2a{bottom:179.140475px;}
.y39{bottom:180.229678px;}
.y3b{bottom:188.044277px;}
.y2b{bottom:194.738268px;}
.y3d{bottom:198.440983px;}
.y36{bottom:201.014828px;}
.y35{bottom:213.204204px;}
.y32{bottom:223.396881px;}
.y34{bottom:224.904026px;}
.y2f{bottom:266.760022px;}
.y1f{bottom:411.119997px;}
.y1e{bottom:430.020006px;}
.y1d{bottom:449.100007px;}
.y1c{bottom:467.999972px;}
.y5d{bottom:473.399981px;}
.y1b{bottom:487.079973px;}
.y5c{bottom:492.839969px;}
.y1a{bottom:505.979982px;}
.y5b{bottom:512.280002px;}
.y19{bottom:524.879991px;}
.y5a{bottom:531.719988px;}
.y18{bottom:543.959994px;}
.y59{bottom:552.059985px;}
.y17{bottom:562.860003px;}
.y16{bottom:581.940004px;}
.y15{bottom:600.839969px;}
.y58{bottom:604.259966px;}
.y14{bottom:619.919970px;}
.y57{bottom:623.159974px;}
.y56{bottom:642.059985px;}
.y13{bottom:643.139986px;}
.y55{bottom:661.139986px;}
.y12{bottom:680.579973px;}
.y54{bottom:684.539995px;}
.y11{bottom:699.479982px;}
.y10{bottom:718.379991px;}
.y53{bottom:721.799989px;}
.yf{bottom:737.459994px;}
.y52{bottom:740.699998px;}
.ye{bottom:756.360003px;}
.y51{bottom:759.780002px;}
.y50{bottom:778.679964px;}
.yd{bottom:779.760012px;}
.y4f{bottom:797.760012px;}
.y4e{bottom:816.659974px;}
.yc{bottom:826.019961px;}
.y4d{bottom:835.559939px;}
.yb{bottom:845.100007px;}
.y4c{bottom:854.639986px;}
.ya{bottom:863.999972px;}
.y4b{bottom:873.539949px;}
.y9{bottom:883.080020px;}
.y4a{bottom:892.619997px;}
.y8{bottom:901.979982px;}
.y49{bottom:911.519961px;}
.y7{bottom:921.059939px;}
.y48{bottom:930.420015px;}
.y47{bottom:949.499972px;}
.y46{bottom:968.399936px;}
.y6{bottom:978.299990px;}
.y45{bottom:987.479982px;}
.y5{bottom:995.580020px;}
.y44{bottom:1006.379946px;}
.y4{bottom:1012.859957px;}
.y43{bottom:1025.280001px;}
.y3{bottom:1039.499971px;}
.y42{bottom:1044.359956px;}
.y41{bottom:1063.260012px;}
.y2{bottom:1087.739931px;}
.hb{height:21.901209px;}
.h10{height:24.300000px;}
.h18{height:24.631601px;}
.h19{height:30.733895px;}
.h17{height:31.113602px;}
.h12{height:31.601887px;}
.h16{height:35.541650px;}
.hc{height:35.999999px;}
.hd{height:36.463716px;}
.h14{height:38.911967px;}
.hf{height:39.939561px;}
.h1c{height:52.998047px;}
.h1b{height:54.421875px;}
.h1a{height:56.879998px;}
.h5{height:58.621992px;}
.h6{height:64.978594px;}
.h9{height:65.010938px;}
.h8{height:66.757500px;}
.h7{height:68.324754px;}
.h4{height:72.562500px;}
.h3{height:84.898125px;}
.h11{height:118.439997px;}
.he{height:126.539997px;}
.h15{height:236.699994px;}
.ha{height:237.419994px;}
.h13{height:238.859994px;}
.h2{height:1262.879971px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:24.480000px;}
.w7{width:27.720000px;}
.w5{width:28.260000px;}
.w9{width:31.320000px;}
.wb{width:48.239998px;}
.w8{width:51.299999px;}
.wa{width:55.619999px;}
.w6{width:86.759998px;}
.wd{width:187.199995px;}
.wf{width:291.239993px;}
.w3{width:402.659991px;}
.wc{width:404.099991px;}
.we{width:420.119991px;}
.w2{width:892.979981px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:4.600409px;}
.xf{left:5.883347px;}
.x19{left:10.377003px;}
.x1e{left:11.519997px;}
.x9{left:38.379420px;}
.x8{left:42.359778px;}
.x7{left:46.964022px;}
.x1c{left:57.660054px;}
.x1a{left:77.338857px;}
.x6{left:84.959999px;}
.x1{left:88.740000px;}
.xe{left:97.739998px;}
.x17{left:111.674355px;}
.x1d{left:120.089863px;}
.x1b{left:125.405140px;}
.x11{left:158.939997px;}
.x1f{left:180.179995px;}
.xa{left:185.219995px;}
.x12{left:192.059996px;}
.x2{left:212.939987px;}
.x3{left:223.740006px;}
.x13{left:248.759994px;}
.x10{left:258.839994px;}
.x14{left:285.659994px;}
.xc{left:289.979994px;}
.x4{left:304.019989px;}
.x5{left:329.219994px;}
.x15{left:346.679992px;}
.x16{left:376.019991px;}
.xd{left:394.739991px;}
.x20{left:497.159989px;}
.x18{left:549.179988px;}
@media print{
.v6{vertical-align:-11.013264pt;}
.v5{vertical-align:-6.607909pt;}
.v1{vertical-align:-5.119792pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120117pt;}
.v7{vertical-align:6.776853pt;}
.v8{vertical-align:8.470944pt;}
.v4{vertical-align:21.119952pt;}
.v2{vertical-align:24.319989pt;}
.ls11{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.127711pt;}
.lsd{letter-spacing:0.127796pt;}
.lsc{letter-spacing:0.229165pt;}
.ls19{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.887271pt;}
.ls9{letter-spacing:0.986764pt;}
.ls7{letter-spacing:0.986769pt;}
.ls6{letter-spacing:1.089824pt;}
.ls8{letter-spacing:1.101354pt;}
.lsf{letter-spacing:1.101434pt;}
.lse{letter-spacing:7.709185pt;}
.lsa{letter-spacing:7.709269pt;}
.ls18{letter-spacing:11.038257pt;}
.ls15{letter-spacing:11.678176pt;}
.ls17{letter-spacing:11.678181pt;}
.ls16{letter-spacing:12.318099pt;}
.ls14{letter-spacing:12.318105pt;}
.ls0{letter-spacing:14.236393pt;}
.ls3{letter-spacing:17.917152pt;}
.ls2{letter-spacing:17.917157pt;}
.ls1{letter-spacing:22.396783pt;}
.ls13{letter-spacing:22.396788pt;}
.ls4{letter-spacing:22.396868pt;}
.ls12{letter-spacing:22.580926pt;}
.lsb{letter-spacing:389.127139pt;}
.ws7{word-spacing:-29.508903pt;}
.ws6{word-spacing:-28.621632pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-12.288000pt;}
.ws12{word-spacing:-12.000000pt;}
.ws8{word-spacing:-9.346064pt;}
.ws1{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.810581pt;}
.ws9{word-spacing:-8.806656pt;}
.wsf{word-spacing:-8.047463pt;}
.wsa{word-spacing:-7.155408pt;}
.ws10{word-spacing:-6.776811pt;}
.wse{word-spacing:-6.057275pt;}
.ws11{word-spacing:-4.659057pt;}
.ws1b{word-spacing:-0.321824pt;}
.ws1c{word-spacing:-0.321819pt;}
.ws4{word-spacing:-0.004558pt;}
.ws14{word-spacing:0.000000pt;}
.ws16{word-spacing:0.030711pt;}
.ws13{word-spacing:0.036548pt;}
.ws15{word-spacing:0.081762pt;}
.ws1e{word-spacing:0.318105pt;}
.ws17{word-spacing:0.670592pt;}
.wsb{word-spacing:0.685081pt;}
.ws1a{word-spacing:8.819872pt;}
.ws19{word-spacing:10.739723pt;}
.ws18{word-spacing:13.299546pt;}
.ws0{word-spacing:14.938748pt;}
.ws2{word-spacing:24.385596pt;}
.ws3{word-spacing:29.657581pt;}
.wsd{word-spacing:375.494522pt;}
._11{margin-left:-301.216980pt;}
._10{margin-left:-272.121667pt;}
._12{margin-left:-257.239906pt;}
._f{margin-left:-2.952133pt;}
._0{margin-left:-1.377290pt;}
._2{width:0.891580pt;}
._3{width:2.035660pt;}
._e{width:3.002880pt;}
._a{width:4.357120pt;}
._c{width:5.304133pt;}
._6{width:6.379645pt;}
._5{width:7.889920pt;}
._7{width:9.361920pt;}
._d{width:10.775040pt;}
._13{width:13.231161pt;}
._4{width:16.026934pt;}
._1{width:17.774287pt;}
._15{width:18.961210pt;}
._b{width:20.082290pt;}
._17{width:21.002405pt;}
._9{width:23.756308pt;}
._8{width:24.827886pt;}
._14{width:30.798026pt;}
._16{width:33.762166pt;}
.fse{font-size:18.636229pt;}
.fsa{font-size:24.229099pt;}
.fsd{font-size:27.107243pt;}
.fs6{font-size:28.621632pt;}
.fsb{font-size:32.189851pt;}
.fs7{font-size:33.024960pt;}
.fs8{font-size:35.226624pt;}
.fs9{font-size:35.242325pt;}
.fs5{font-size:37.120000pt;}
.fsc{font-size:40.660864pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000025pt;}
.y2e{bottom:12.410232pt;}
.y40{bottom:14.560000pt;}
.y37{bottom:16.889553pt;}
.y2c{bottom:24.591740pt;}
.y3f{bottom:31.839999pt;}
.y21{bottom:34.454279pt;}
.y22{bottom:48.318883pt;}
.y23{bottom:62.183487pt;}
.y24{bottom:76.048172pt;}
.y3e{bottom:82.880023pt;}
.y25{bottom:89.912775pt;}
.y30{bottom:98.957495pt;}
.y2d{bottom:103.290237pt;}
.y26{bottom:103.777480pt;}
.y3c{bottom:108.984860pt;}
.y27{bottom:117.642084pt;}
.y3a{bottom:126.552060pt;}
.y28{bottom:131.506769pt;}
.y38{bottom:133.568295pt;}
.y31{bottom:137.600023pt;}
.y20{bottom:138.080023pt;}
.y33{bottom:138.560021pt;}
.y29{bottom:145.371373pt;}
.y2a{bottom:159.235977pt;}
.y39{bottom:160.204159pt;}
.y3b{bottom:167.150468pt;}
.y2b{bottom:173.100683pt;}
.y3d{bottom:176.391985pt;}
.y36{bottom:178.679847pt;}
.y35{bottom:189.514848pt;}
.y32{bottom:198.575005pt;}
.y34{bottom:199.914689pt;}
.y2f{bottom:237.120020pt;}
.y1f{bottom:365.439997pt;}
.y1e{bottom:382.240005pt;}
.y1d{bottom:399.200007pt;}
.y1c{bottom:415.999975pt;}
.y5d{bottom:420.799983pt;}
.y1b{bottom:432.959976pt;}
.y5c{bottom:438.079972pt;}
.y1a{bottom:449.759984pt;}
.y5b{bottom:455.360001pt;}
.y19{bottom:466.559992pt;}
.y5a{bottom:472.639989pt;}
.y18{bottom:483.519995pt;}
.y59{bottom:490.719987pt;}
.y17{bottom:500.320003pt;}
.y16{bottom:517.280004pt;}
.y15{bottom:534.079972pt;}
.y58{bottom:537.119969pt;}
.y14{bottom:551.039973pt;}
.y57{bottom:553.919977pt;}
.y56{bottom:570.719987pt;}
.y13{bottom:571.679988pt;}
.y55{bottom:587.679988pt;}
.y12{bottom:604.959976pt;}
.y54{bottom:608.479996pt;}
.y11{bottom:621.759984pt;}
.y10{bottom:638.559992pt;}
.y53{bottom:641.599991pt;}
.yf{bottom:655.519995pt;}
.y52{bottom:658.399999pt;}
.ye{bottom:672.320003pt;}
.y51{bottom:675.360001pt;}
.y50{bottom:692.159968pt;}
.yd{bottom:693.120011pt;}
.y4f{bottom:709.120011pt;}
.y4e{bottom:725.919977pt;}
.yc{bottom:734.239965pt;}
.y4d{bottom:742.719945pt;}
.yb{bottom:751.200007pt;}
.y4c{bottom:759.679988pt;}
.ya{bottom:767.999975pt;}
.y4b{bottom:776.479955pt;}
.y9{bottom:784.960017pt;}
.y4a{bottom:793.439997pt;}
.y8{bottom:801.759984pt;}
.y49{bottom:810.239965pt;}
.y7{bottom:818.719945pt;}
.y48{bottom:827.040013pt;}
.y47{bottom:843.999975pt;}
.y46{bottom:860.799943pt;}
.y6{bottom:869.599991pt;}
.y45{bottom:877.759984pt;}
.y5{bottom:884.960017pt;}
.y44{bottom:894.559952pt;}
.y4{bottom:900.319961pt;}
.y43{bottom:911.360001pt;}
.y3{bottom:923.999975pt;}
.y42{bottom:928.319961pt;}
.y41{bottom:945.120011pt;}
.y2{bottom:966.879939pt;}
.hb{height:19.467741pt;}
.h10{height:21.600000pt;}
.h18{height:21.894757pt;}
.h19{height:27.319018pt;}
.h17{height:27.656535pt;}
.h12{height:28.090567pt;}
.h16{height:31.592578pt;}
.hc{height:31.999999pt;}
.hd{height:32.412192pt;}
.h14{height:34.588415pt;}
.hf{height:35.501832pt;}
.h1c{height:47.109375pt;}
.h1b{height:48.375000pt;}
.h1a{height:50.559999pt;}
.h5{height:52.108438pt;}
.h6{height:57.758750pt;}
.h9{height:57.787500pt;}
.h8{height:59.340000pt;}
.h7{height:60.733114pt;}
.h4{height:64.500000pt;}
.h3{height:75.465000pt;}
.h11{height:105.279997pt;}
.he{height:112.479997pt;}
.h15{height:210.399995pt;}
.ha{height:211.039995pt;}
.h13{height:212.319995pt;}
.h2{height:1122.559975pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:21.760000pt;}
.w7{width:24.640000pt;}
.w5{width:25.120000pt;}
.w9{width:27.840000pt;}
.wb{width:42.879999pt;}
.w8{width:45.599999pt;}
.wa{width:49.439999pt;}
.w6{width:77.119999pt;}
.wd{width:166.399996pt;}
.wf{width:258.879993pt;}
.w3{width:357.919992pt;}
.wc{width:359.199992pt;}
.we{width:373.439992pt;}
.w2{width:793.759983pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.089252pt;}
.xf{left:5.229641pt;}
.x19{left:9.224003pt;}
.x1e{left:10.239997pt;}
.x9{left:34.115040pt;}
.x8{left:37.653136pt;}
.x7{left:41.745797pt;}
.x1c{left:51.253381pt;}
.x1a{left:68.745651pt;}
.x6{left:75.519999pt;}
.x1{left:78.880000pt;}
.xe{left:86.879999pt;}
.x17{left:99.266093pt;}
.x1d{left:106.746545pt;}
.x1b{left:111.471236pt;}
.x11{left:141.279997pt;}
.x1f{left:160.159996pt;}
.xa{left:164.639996pt;}
.x12{left:170.719996pt;}
.x2{left:189.279988pt;}
.x3{left:198.880005pt;}
.x13{left:221.119995pt;}
.x10{left:230.079995pt;}
.x14{left:253.919995pt;}
.xc{left:257.759995pt;}
.x4{left:270.239991pt;}
.x5{left:292.639995pt;}
.x15{left:308.159993pt;}
.x16{left:334.239992pt;}
.xd{left:350.879992pt;}
.x20{left:441.919991pt;}
.x18{left:488.159989pt;}
}




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