
    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_dcb2844a6df021ca0f27e448.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_0d348cd46193f6dc1959bdf8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c5c564fc2c77c4638f58842.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_1affafdd364760a1dd389afd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db5a8feb54038c1ef0f44814.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_07e925c633533be5674c5a34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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:ff7;src:url('chunks/assets/font_0cdf13a32e311b38326b8f1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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:ff8;src:url('chunks/assets/font_e5749003288b2af9b92d6871.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.709473;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:ff9;src:url('chunks/assets/font_56e6ef5860069f26883de246.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.250560,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250560,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250560,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.251949,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251949,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251949,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-82.080000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.360000px;}
.ls7{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.171359px;}
.ls4{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.109440px;}
.lsa{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.978731px;}
.ls9{letter-spacing:5.040000px;}
.ls8{letter-spacing:194.376000px;}
.ls0{letter-spacing:273.600000px;}
.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;}
}
.ws8{word-spacing:-63.104302px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.450800px;}
.ws3{word-spacing:-12.420000px;}
.ws9{word-spacing:-0.063104px;}
.ws7{word-spacing:-0.063017px;}
.wsf{word-spacing:-0.048408px;}
.ws10{word-spacing:-0.048262px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:70.897371px;}
._5{margin-left:-9.576000px;}
._1{margin-left:-7.476000px;}
._4{margin-left:-5.544000px;}
._14{margin-left:-4.480405px;}
._2{margin-left:-3.381120px;}
._6{margin-left:-2.085120px;}
._0{margin-left:-1.010880px;}
._3{width:1.056000px;}
._7{width:2.520000px;}
._8{width:3.585120px;}
._b{width:5.120640px;}
._e{width:6.555360px;}
._f{width:8.230560px;}
._10{width:9.536640px;}
._12{width:10.728000px;}
._c{width:12.312000px;}
._d{width:13.392000px;}
._13{width:14.640000px;}
._a{width:19.046880px;}
._9{width:20.181120px;}
._11{width:21.497760px;}
._15{width:26.496000px;}
._16{width:27.739200px;}
._17{width:73.936684px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.712003px;}
.fs6{font-size:30.912454px;}
.fs7{font-size:37.338001px;}
.fs8{font-size:37.629076px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:48.261719px;}
.fs9{font-size:48.407967px;}
.fs4{font-size:63.016900px;}
.fs5{font-size:63.104302px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y35{bottom:7.770485px;}
.y36{bottom:12.730990px;}
.y4d{bottom:16.809009px;}
.y46{bottom:31.610901px;}
.y47{bottom:46.528618px;}
.y51{bottom:56.290733px;}
.y4f{bottom:68.273254px;}
.y50{bottom:68.456473px;}
.y48{bottom:92.946168px;}
.y4c{bottom:100.850876px;}
.y22{bottom:137.916000px;}
.y49{bottom:139.254238px;}
.y21{bottom:169.050000px;}
.y4a{bottom:185.671788px;}
.y20{bottom:200.010000px;}
.y1f{bottom:230.970000px;}
.y4b{bottom:232.090925px;}
.y34{bottom:250.048613px;}
.y1e{bottom:262.110000px;}
.y1d{bottom:293.070000px;}
.y44{bottom:310.890000px;}
.y1c{bottom:324.210000px;}
.y43{bottom:331.410000px;}
.y33{bottom:345.360584px;}
.y32{bottom:347.414532px;}
.y42{bottom:350.355000px;}
.y1b{bottom:355.215000px;}
.y41{bottom:369.435000px;}
.y1a{bottom:386.355000px;}
.y40{bottom:388.335000px;}
.y30{bottom:400.215000px;}
.y3f{bottom:407.235000px;}
.y19{bottom:417.315000px;}
.y2f{bottom:421.995000px;}
.y3e{bottom:426.315000px;}
.y3d{bottom:445.215000px;}
.y2e{bottom:447.195000px;}
.y31{bottom:447.359996px;}
.y18{bottom:448.455000px;}
.y3c{bottom:474.915000px;}
.y17{bottom:479.415000px;}
.y16{bottom:510.555000px;}
.y3b{bottom:513.075000px;}
.y15{bottom:541.515000px;}
.y3a{bottom:549.975000px;}
.y39{bottom:571.755000px;}
.y14{bottom:572.655000px;}
.y38{bottom:593.535000px;}
.y13{bottom:603.645000px;}
.y37{bottom:626.685000px;}
.y4e{bottom:626.729996px;}
.y45{bottom:627.835848px;}
.y12{bottom:634.785000px;}
.y11{bottom:665.745000px;}
.y10{bottom:696.885000px;}
.yf{bottom:727.845000px;}
.ye{bottom:758.985000px;}
.yd{bottom:797.685000px;}
.yc{bottom:818.565000px;}
.y2d{bottom:829.725000px;}
.yb{bottom:839.265000px;}
.ya{bottom:859.965000px;}
.y2c{bottom:860.685000px;}
.y9{bottom:880.710000px;}
.y2b{bottom:891.870000px;}
.y8{bottom:921.930000px;}
.y2a{bottom:922.830000px;}
.y7{bottom:942.990000px;}
.y29{bottom:953.970000px;}
.y6{bottom:963.870000px;}
.y28{bottom:984.930000px;}
.y5{bottom:1003.110000px;}
.y27{bottom:1016.070000px;}
.y4{bottom:1026.870000px;}
.y26{bottom:1047.030000px;}
.y3{bottom:1066.650000px;}
.y25{bottom:1078.170000px;}
.y24{bottom:1109.130000px;}
.y2{bottom:1109.310000px;}
.y1{bottom:1137.210000px;}
.y23{bottom:1140.300000px;}
.hc{height:22.505112px;}
.hd{height:27.183085px;}
.he{height:27.394996px;}
.h11{height:33.439150px;}
.h10{height:33.540481px;}
.h8{height:43.662588px;}
.h9{height:43.723147px;}
.ha{height:49.992188px;}
.h6{height:65.010937px;}
.h5{height:66.757500px;}
.h4{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:84.898125px;}
.hb{height:264.929893px;}
.h7{height:367.680004px;}
.hf{height:529.869273px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:332.343787px;}
.w4{width:479.311994px;}
.w2{width:551.068800px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:17.554340px;}
.x19{left:31.892220px;}
.x18{left:57.225572px;}
.x17{left:61.224498px;}
.xf{left:127.656000px;}
.x1{left:137.916000px;}
.x14{left:140.921108px;}
.x4{left:146.916000px;}
.xd{left:149.256000px;}
.x8{left:160.590000px;}
.x1b{left:164.226747px;}
.x13{left:190.501225px;}
.xc{left:191.910000px;}
.x10{left:194.024998px;}
.x6{left:198.930000px;}
.x1c{left:207.944998px;}
.x16{left:246.335003px;}
.x9{left:273.135000px;}
.x7{left:276.015000px;}
.x1d{left:278.426245px;}
.x1e{left:295.244723px;}
.x1f{left:313.189308px;}
.xa{left:318.495000px;}
.x11{left:329.369232px;}
.xb{left:381.495000px;}
.x2{left:386.355000px;}
.x5{left:420.045000px;}
.x12{left:422.527432px;}
.x3{left:446.505000px;}
.x15{left:687.390000px;}
.xe{left:745.380000px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.152319pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.097280pt;}
.lsa{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.758872pt;}
.ls9{letter-spacing:4.480000pt;}
.ls8{letter-spacing:172.778667pt;}
.ls0{letter-spacing:243.200000pt;}
.ws8{word-spacing:-56.092713pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.622933pt;}
.ws3{word-spacing:-11.040000pt;}
.ws9{word-spacing:-0.056093pt;}
.ws7{word-spacing:-0.056015pt;}
.wsf{word-spacing:-0.043029pt;}
.ws10{word-spacing:-0.042899pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:63.019886pt;}
._5{margin-left:-8.512000pt;}
._1{margin-left:-6.645333pt;}
._4{margin-left:-4.928000pt;}
._14{margin-left:-3.982583pt;}
._2{margin-left:-3.005440pt;}
._6{margin-left:-1.853440pt;}
._0{margin-left:-0.898560pt;}
._3{width:0.938667pt;}
._7{width:2.240000pt;}
._8{width:3.186773pt;}
._b{width:4.551680pt;}
._e{width:5.826987pt;}
._f{width:7.316053pt;}
._10{width:8.477013pt;}
._12{width:9.536000pt;}
._c{width:10.944000pt;}
._d{width:11.904000pt;}
._13{width:13.013333pt;}
._a{width:16.930560pt;}
._9{width:17.938773pt;}
._11{width:19.109120pt;}
._15{width:23.552000pt;}
._16{width:24.657067pt;}
._17{width:65.721497pt;}
.fsb{font-size:27.299558pt;}
.fs6{font-size:27.477737pt;}
.fs7{font-size:33.189334pt;}
.fs8{font-size:33.448067pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:42.899306pt;}
.fs9{font-size:43.029304pt;}
.fs4{font-size:56.015022pt;}
.fs5{font-size:56.092713pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:6.907097pt;}
.y36{bottom:11.316436pt;}
.y4d{bottom:14.941342pt;}
.y46{bottom:28.098579pt;}
.y47{bottom:41.358771pt;}
.y51{bottom:50.036207pt;}
.y4f{bottom:60.687337pt;}
.y50{bottom:60.850198pt;}
.y48{bottom:82.618816pt;}
.y4c{bottom:89.645223pt;}
.y22{bottom:122.592000pt;}
.y49{bottom:123.781545pt;}
.y21{bottom:150.266667pt;}
.y4a{bottom:165.041589pt;}
.y20{bottom:177.786667pt;}
.y1f{bottom:205.306667pt;}
.y4b{bottom:206.303044pt;}
.y34{bottom:222.265434pt;}
.y1e{bottom:232.986667pt;}
.y1d{bottom:260.506667pt;}
.y44{bottom:276.346667pt;}
.y1c{bottom:288.186667pt;}
.y43{bottom:294.586667pt;}
.y33{bottom:306.987186pt;}
.y32{bottom:308.812917pt;}
.y42{bottom:311.426667pt;}
.y1b{bottom:315.746667pt;}
.y41{bottom:328.386667pt;}
.y1a{bottom:343.426667pt;}
.y40{bottom:345.186667pt;}
.y30{bottom:355.746667pt;}
.y3f{bottom:361.986667pt;}
.y19{bottom:370.946667pt;}
.y2f{bottom:375.106667pt;}
.y3e{bottom:378.946667pt;}
.y3d{bottom:395.746667pt;}
.y2e{bottom:397.506667pt;}
.y31{bottom:397.653330pt;}
.y18{bottom:398.626667pt;}
.y3c{bottom:422.146667pt;}
.y17{bottom:426.146667pt;}
.y16{bottom:453.826667pt;}
.y3b{bottom:456.066667pt;}
.y15{bottom:481.346667pt;}
.y3a{bottom:488.866667pt;}
.y39{bottom:508.226667pt;}
.y14{bottom:509.026667pt;}
.y38{bottom:527.586667pt;}
.y13{bottom:536.573333pt;}
.y37{bottom:557.053333pt;}
.y4e{bottom:557.093330pt;}
.y45{bottom:558.076309pt;}
.y12{bottom:564.253333pt;}
.y11{bottom:591.773333pt;}
.y10{bottom:619.453333pt;}
.yf{bottom:646.973333pt;}
.ye{bottom:674.653333pt;}
.yd{bottom:709.053333pt;}
.yc{bottom:727.613333pt;}
.y2d{bottom:737.533333pt;}
.yb{bottom:746.013333pt;}
.ya{bottom:764.413333pt;}
.y2c{bottom:765.053333pt;}
.y9{bottom:782.853333pt;}
.y2b{bottom:792.773333pt;}
.y8{bottom:819.493333pt;}
.y2a{bottom:820.293333pt;}
.y7{bottom:838.213333pt;}
.y29{bottom:847.973333pt;}
.y6{bottom:856.773333pt;}
.y28{bottom:875.493333pt;}
.y5{bottom:891.653333pt;}
.y27{bottom:903.173333pt;}
.y4{bottom:912.773333pt;}
.y26{bottom:930.693333pt;}
.y3{bottom:948.133333pt;}
.y25{bottom:958.373333pt;}
.y24{bottom:985.893333pt;}
.y2{bottom:986.053333pt;}
.y1{bottom:1010.853333pt;}
.y23{bottom:1013.600000pt;}
.hc{height:20.004544pt;}
.hd{height:24.162743pt;}
.he{height:24.351108pt;}
.h11{height:29.723689pt;}
.h10{height:29.813761pt;}
.h8{height:38.811190pt;}
.h9{height:38.865019pt;}
.ha{height:44.437500pt;}
.h6{height:57.787500pt;}
.h5{height:59.340000pt;}
.h4{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:75.465000pt;}
.hb{height:235.493239pt;}
.h7{height:326.826670pt;}
.hf{height:470.994909pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:295.416699pt;}
.w4{width:426.055106pt;}
.w2{width:489.838933pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:15.603858pt;}
.x19{left:28.348640pt;}
.x18{left:50.867175pt;}
.x17{left:54.421776pt;}
.xf{left:113.472000pt;}
.x1{left:122.592000pt;}
.x14{left:125.263207pt;}
.x4{left:130.592000pt;}
.xd{left:132.672000pt;}
.x8{left:142.746667pt;}
.x1b{left:145.979331pt;}
.x13{left:169.334422pt;}
.xc{left:170.586667pt;}
.x10{left:172.466665pt;}
.x6{left:176.826667pt;}
.x1c{left:184.839998pt;}
.x16{left:218.964447pt;}
.x9{left:242.786667pt;}
.x7{left:245.346667pt;}
.x1d{left:247.489996pt;}
.x1e{left:262.439754pt;}
.x1f{left:278.390496pt;}
.xa{left:283.106667pt;}
.x11{left:292.772651pt;}
.xb{left:339.106667pt;}
.x2{left:343.426667pt;}
.x5{left:373.373333pt;}
.x12{left:375.579940pt;}
.x3{left:396.893333pt;}
.x15{left:611.013333pt;}
.xe{left:662.560000pt;}
}




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