
    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_913a2af69df432960a177956.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.072754;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_38b2481cfe7ced2992fc4880.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.072754;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_e8967239abf0f757e80f55aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_bb6c0f0d210b62b8ea111886.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_d6168de9e13f788e26253205.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-3.240000px;}
.ls10{letter-spacing:-1.494000px;}
.lsb{letter-spacing:-1.404000px;}
.ls14{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-1.182000px;}
.lsc{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.930000px;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.134720px;}
.ls2{letter-spacing:1.330560px;}
.ls1{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls3{letter-spacing:2.050560px;}
.ls12{letter-spacing:15.066720px;}
.ls11{letter-spacing:44.010720px;}
.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:-16.560000px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.446000px;}
.ws8{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2598.546000px;}
._8{margin-left:-1590.192000px;}
._5{margin-left:-1366.159680px;}
._7{margin-left:-989.210880px;}
._9{margin-left:-575.213760px;}
._6{margin-left:-8.213760px;}
._c{margin-left:-7.176960px;}
._a{margin-left:-5.333280px;}
._b{margin-left:-3.643200px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.604000px;}
._d{width:4.008000px;}
._13{width:5.971680px;}
._12{width:7.443360px;}
._10{width:8.640000px;}
._11{width:10.450800px;}
._14{width:11.761200px;}
._e{width:12.808800px;}
._f{width:13.846320px;}
._15{width:16.809840px;}
._17{width:18.518400px;}
._16{width:19.697040px;}
._1f{width:26.671680px;}
._1d{width:27.925200px;}
._1e{width:29.707200px;}
._1b{width:30.941280px;}
._1c{width:32.020560px;}
._1a{width:66.437280px;}
._19{width:70.491600px;}
._18{width:71.825760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.300000px;}
.y35{bottom:88.956000px;}
.ya9{bottom:92.736000px;}
.y6c{bottom:94.536000px;}
.y75{bottom:103.536000px;}
.y34{bottom:108.936000px;}
.ya8{bottom:112.536000px;}
.y6b{bottom:114.336000px;}
.y74{bottom:123.336000px;}
.y33{bottom:128.736000px;}
.ya7{bottom:132.336000px;}
.y6a{bottom:134.316000px;}
.y73{bottom:143.316000px;}
.y32{bottom:148.536000px;}
.ya6{bottom:152.310000px;}
.y69{bottom:154.110000px;}
.y72{bottom:163.110000px;}
.y31{bottom:168.330000px;}
.ya5{bottom:172.110000px;}
.y68{bottom:173.910000px;}
.y71{bottom:182.910000px;}
.y30{bottom:188.130000px;}
.ya4{bottom:191.910000px;}
.y67{bottom:193.710000px;}
.y70{bottom:202.710000px;}
.y2f{bottom:208.110000px;}
.ya3{bottom:211.710000px;}
.y66{bottom:213.510000px;}
.y6f{bottom:222.510000px;}
.y2e{bottom:227.910000px;}
.ya2{bottom:231.510000px;}
.y65{bottom:233.490000px;}
.y6e{bottom:242.490000px;}
.y2d{bottom:247.710000px;}
.ya1{bottom:251.490000px;}
.y84{bottom:253.290000px;}
.y64{bottom:262.290000px;}
.y2c{bottom:267.510000px;}
.ya0{bottom:271.290000px;}
.y83{bottom:273.090000px;}
.y63{bottom:282.090000px;}
.y2b{bottom:287.310000px;}
.y9f{bottom:291.090000px;}
.y82{bottom:292.890000px;}
.y62{bottom:301.890000px;}
.y2a{bottom:307.290000px;}
.y9e{bottom:310.890000px;}
.y81{bottom:312.690000px;}
.y61{bottom:321.690000px;}
.y29{bottom:327.090000px;}
.y9d{bottom:330.735000px;}
.y80{bottom:332.715000px;}
.y60{bottom:341.715000px;}
.y28{bottom:346.935000px;}
.y9c{bottom:350.715000px;}
.y7f{bottom:352.515000px;}
.y5f{bottom:361.515000px;}
.y27{bottom:366.735000px;}
.y9b{bottom:370.515000px;}
.y7e{bottom:372.315000px;}
.y5e{bottom:381.315000px;}
.y26{bottom:386.535000px;}
.y9a{bottom:390.315000px;}
.y7d{bottom:392.115000px;}
.y5d{bottom:401.115000px;}
.y25{bottom:406.515000px;}
.y99{bottom:410.115000px;}
.y5c{bottom:420.915000px;}
.y24{bottom:426.315000px;}
.y98{bottom:429.915000px;}
.y5b{bottom:440.895000px;}
.y23{bottom:446.115000px;}
.y97{bottom:449.895000px;}
.y5a{bottom:460.695000px;}
.y22{bottom:465.915000px;}
.y96{bottom:469.695000px;}
.y59{bottom:480.495000px;}
.y21{bottom:485.715000px;}
.y95{bottom:489.495000px;}
.y58{bottom:500.295000px;}
.y20{bottom:505.695000px;}
.y94{bottom:509.295000px;}
.y57{bottom:520.095000px;}
.y1f{bottom:525.495000px;}
.y93{bottom:529.095000px;}
.y56{bottom:540.075000px;}
.y1e{bottom:545.295000px;}
.y92{bottom:549.075000px;}
.y55{bottom:559.875000px;}
.y1d{bottom:565.095000px;}
.y91{bottom:568.875000px;}
.y54{bottom:579.675000px;}
.y1c{bottom:584.895000px;}
.y90{bottom:588.675000px;}
.y53{bottom:599.505000px;}
.y1b{bottom:607.065000px;}
.y8f{bottom:608.505000px;}
.y52{bottom:619.305000px;}
.y8e{bottom:628.305000px;}
.y1a{bottom:635.865000px;}
.y51{bottom:639.285000px;}
.y8d{bottom:648.285000px;}
.y19{bottom:655.665000px;}
.y50{bottom:659.085000px;}
.y8c{bottom:668.085000px;}
.y18{bottom:675.645000px;}
.y4f{bottom:678.885000px;}
.y8b{bottom:687.885000px;}
.y17{bottom:695.445000px;}
.y4e{bottom:698.685000px;}
.y8a{bottom:707.685000px;}
.y16{bottom:715.245000px;}
.y4d{bottom:718.485000px;}
.y89{bottom:727.485000px;}
.y15{bottom:735.045000px;}
.y4c{bottom:738.465000px;}
.y88{bottom:747.465000px;}
.y14{bottom:754.845000px;}
.y4b{bottom:758.265000px;}
.y87{bottom:767.265000px;}
.y13{bottom:774.825000px;}
.y4a{bottom:778.065000px;}
.y86{bottom:787.065000px;}
.y12{bottom:794.625000px;}
.y49{bottom:797.865000px;}
.y85{bottom:806.865000px;}
.y11{bottom:814.425000px;}
.y6d{bottom:817.665000px;}
.y48{bottom:826.665000px;}
.y10{bottom:834.225000px;}
.y7c{bottom:837.645000px;}
.y47{bottom:846.645000px;}
.yf{bottom:854.025000px;}
.y7b{bottom:857.445000px;}
.y46{bottom:866.490000px;}
.ye{bottom:876.210000px;}
.y7a{bottom:877.290000px;}
.y45{bottom:886.290000px;}
.yd{bottom:896.010000px;}
.y79{bottom:897.090000px;}
.y44{bottom:906.090000px;}
.y78{bottom:916.890000px;}
.yc{bottom:921.210000px;}
.y43{bottom:925.890000px;}
.yb{bottom:935.790000px;}
.y77{bottom:936.870000px;}
.y42{bottom:945.870000px;}
.y76{bottom:956.670000px;}
.ya{bottom:960.810000px;}
.y41{bottom:965.670000px;}
.y9{bottom:975.930000px;}
.y40{bottom:985.470000px;}
.y8{bottom:997.710000px;}
.y3f{bottom:1005.270000px;}
.y7{bottom:1022.730000px;}
.y3e{bottom:1025.070000px;}
.y3d{bottom:1045.050000px;}
.y5{bottom:1061.070000px;}
.y3c{bottom:1064.850000px;}
.y3b{bottom:1084.650000px;}
.y4{bottom:1091.850000px;}
.y3a{bottom:1104.450000px;}
.y3{bottom:1122.810000px;}
.y39{bottom:1124.250000px;}
.y38{bottom:1144.260000px;}
.y2{bottom:1153.620000px;}
.y37{bottom:1164.060000px;}
.y1{bottom:1184.400000px;}
.y36{bottom:1193.400000px;}
.h6{height:32.425313px;}
.h7{height:49.838906px;}
.h8{height:51.210352px;}
.h3{height:55.243125px;}
.h2{height:56.763281px;}
.h5{height:59.545547px;}
.h4{height:82.059961px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x2{left:80.999987px;}
.x3{left:108.035987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-2.880000pt;}
.ls10{letter-spacing:-1.328000pt;}
.lsb{letter-spacing:-1.248000pt;}
.ls14{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-1.050667pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.826667pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls2{letter-spacing:1.182720pt;}
.ls1{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls3{letter-spacing:1.822720pt;}
.ls12{letter-spacing:13.392640pt;}
.ls11{letter-spacing:39.120640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.952000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-2309.818667pt;}
._8{margin-left:-1413.504000pt;}
._5{margin-left:-1214.364160pt;}
._7{margin-left:-879.298560pt;}
._9{margin-left:-511.301120pt;}
._6{margin-left:-7.301120pt;}
._c{margin-left:-6.379520pt;}
._a{margin-left:-4.740693pt;}
._b{margin-left:-3.238400pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.314667pt;}
._d{width:3.562667pt;}
._13{width:5.308160pt;}
._12{width:6.616320pt;}
._10{width:7.680000pt;}
._11{width:9.289600pt;}
._14{width:10.454400pt;}
._e{width:11.385600pt;}
._f{width:12.307840pt;}
._15{width:14.942080pt;}
._17{width:16.460800pt;}
._16{width:17.508480pt;}
._1f{width:23.708160pt;}
._1d{width:24.822400pt;}
._1e{width:26.406400pt;}
._1b{width:27.503360pt;}
._1c{width:28.462720pt;}
._1a{width:59.055360pt;}
._19{width:62.659200pt;}
._18{width:63.845120pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.600000pt;}
.y35{bottom:79.072000pt;}
.ya9{bottom:82.432000pt;}
.y6c{bottom:84.032000pt;}
.y75{bottom:92.032000pt;}
.y34{bottom:96.832000pt;}
.ya8{bottom:100.032000pt;}
.y6b{bottom:101.632000pt;}
.y74{bottom:109.632000pt;}
.y33{bottom:114.432000pt;}
.ya7{bottom:117.632000pt;}
.y6a{bottom:119.392000pt;}
.y73{bottom:127.392000pt;}
.y32{bottom:132.032000pt;}
.ya6{bottom:135.386667pt;}
.y69{bottom:136.986667pt;}
.y72{bottom:144.986667pt;}
.y31{bottom:149.626667pt;}
.ya5{bottom:152.986667pt;}
.y68{bottom:154.586667pt;}
.y71{bottom:162.586667pt;}
.y30{bottom:167.226667pt;}
.ya4{bottom:170.586667pt;}
.y67{bottom:172.186667pt;}
.y70{bottom:180.186667pt;}
.y2f{bottom:184.986667pt;}
.ya3{bottom:188.186667pt;}
.y66{bottom:189.786667pt;}
.y6f{bottom:197.786667pt;}
.y2e{bottom:202.586667pt;}
.ya2{bottom:205.786667pt;}
.y65{bottom:207.546667pt;}
.y6e{bottom:215.546667pt;}
.y2d{bottom:220.186667pt;}
.ya1{bottom:223.546667pt;}
.y84{bottom:225.146667pt;}
.y64{bottom:233.146667pt;}
.y2c{bottom:237.786667pt;}
.ya0{bottom:241.146667pt;}
.y83{bottom:242.746667pt;}
.y63{bottom:250.746667pt;}
.y2b{bottom:255.386667pt;}
.y9f{bottom:258.746667pt;}
.y82{bottom:260.346667pt;}
.y62{bottom:268.346667pt;}
.y2a{bottom:273.146667pt;}
.y9e{bottom:276.346667pt;}
.y81{bottom:277.946667pt;}
.y61{bottom:285.946667pt;}
.y29{bottom:290.746667pt;}
.y9d{bottom:293.986667pt;}
.y80{bottom:295.746667pt;}
.y60{bottom:303.746667pt;}
.y28{bottom:308.386667pt;}
.y9c{bottom:311.746667pt;}
.y7f{bottom:313.346667pt;}
.y5f{bottom:321.346667pt;}
.y27{bottom:325.986667pt;}
.y9b{bottom:329.346667pt;}
.y7e{bottom:330.946667pt;}
.y5e{bottom:338.946667pt;}
.y26{bottom:343.586667pt;}
.y9a{bottom:346.946667pt;}
.y7d{bottom:348.546667pt;}
.y5d{bottom:356.546667pt;}
.y25{bottom:361.346667pt;}
.y99{bottom:364.546667pt;}
.y5c{bottom:374.146667pt;}
.y24{bottom:378.946667pt;}
.y98{bottom:382.146667pt;}
.y5b{bottom:391.906667pt;}
.y23{bottom:396.546667pt;}
.y97{bottom:399.906667pt;}
.y5a{bottom:409.506667pt;}
.y22{bottom:414.146667pt;}
.y96{bottom:417.506667pt;}
.y59{bottom:427.106667pt;}
.y21{bottom:431.746667pt;}
.y95{bottom:435.106667pt;}
.y58{bottom:444.706667pt;}
.y20{bottom:449.506667pt;}
.y94{bottom:452.706667pt;}
.y57{bottom:462.306667pt;}
.y1f{bottom:467.106667pt;}
.y93{bottom:470.306667pt;}
.y56{bottom:480.066667pt;}
.y1e{bottom:484.706667pt;}
.y92{bottom:488.066667pt;}
.y55{bottom:497.666667pt;}
.y1d{bottom:502.306667pt;}
.y91{bottom:505.666667pt;}
.y54{bottom:515.266667pt;}
.y1c{bottom:519.906667pt;}
.y90{bottom:523.266667pt;}
.y53{bottom:532.893333pt;}
.y1b{bottom:539.613333pt;}
.y8f{bottom:540.893333pt;}
.y52{bottom:550.493333pt;}
.y8e{bottom:558.493333pt;}
.y1a{bottom:565.213333pt;}
.y51{bottom:568.253333pt;}
.y8d{bottom:576.253333pt;}
.y19{bottom:582.813333pt;}
.y50{bottom:585.853333pt;}
.y8c{bottom:593.853333pt;}
.y18{bottom:600.573333pt;}
.y4f{bottom:603.453333pt;}
.y8b{bottom:611.453333pt;}
.y17{bottom:618.173333pt;}
.y4e{bottom:621.053333pt;}
.y8a{bottom:629.053333pt;}
.y16{bottom:635.773333pt;}
.y4d{bottom:638.653333pt;}
.y89{bottom:646.653333pt;}
.y15{bottom:653.373333pt;}
.y4c{bottom:656.413333pt;}
.y88{bottom:664.413333pt;}
.y14{bottom:670.973333pt;}
.y4b{bottom:674.013333pt;}
.y87{bottom:682.013333pt;}
.y13{bottom:688.733333pt;}
.y4a{bottom:691.613333pt;}
.y86{bottom:699.613333pt;}
.y12{bottom:706.333333pt;}
.y49{bottom:709.213333pt;}
.y85{bottom:717.213333pt;}
.y11{bottom:723.933333pt;}
.y6d{bottom:726.813333pt;}
.y48{bottom:734.813333pt;}
.y10{bottom:741.533333pt;}
.y7c{bottom:744.573333pt;}
.y47{bottom:752.573333pt;}
.yf{bottom:759.133333pt;}
.y7b{bottom:762.173333pt;}
.y46{bottom:770.213333pt;}
.ye{bottom:778.853333pt;}
.y7a{bottom:779.813333pt;}
.y45{bottom:787.813333pt;}
.yd{bottom:796.453333pt;}
.y79{bottom:797.413333pt;}
.y44{bottom:805.413333pt;}
.y78{bottom:815.013333pt;}
.yc{bottom:818.853333pt;}
.y43{bottom:823.013333pt;}
.yb{bottom:831.813333pt;}
.y77{bottom:832.773333pt;}
.y42{bottom:840.773333pt;}
.y76{bottom:850.373333pt;}
.ya{bottom:854.053333pt;}
.y41{bottom:858.373333pt;}
.y9{bottom:867.493333pt;}
.y40{bottom:875.973333pt;}
.y8{bottom:886.853333pt;}
.y3f{bottom:893.573333pt;}
.y7{bottom:909.093333pt;}
.y3e{bottom:911.173333pt;}
.y3d{bottom:928.933333pt;}
.y5{bottom:943.173333pt;}
.y3c{bottom:946.533333pt;}
.y3b{bottom:964.133333pt;}
.y4{bottom:970.533333pt;}
.y3a{bottom:981.733333pt;}
.y3{bottom:998.053333pt;}
.y39{bottom:999.333333pt;}
.y38{bottom:1017.120000pt;}
.y2{bottom:1025.440000pt;}
.y37{bottom:1034.720000pt;}
.y1{bottom:1052.800000pt;}
.y36{bottom:1060.800000pt;}
.h6{height:28.822500pt;}
.h7{height:44.301250pt;}
.h8{height:45.520312pt;}
.h3{height:49.105000pt;}
.h2{height:50.456250pt;}
.h5{height:52.929375pt;}
.h4{height:72.942188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x2{left:71.999988pt;}
.x3{left:96.031988pt;}
}




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