
    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_cb9ace1aa4ac1677b8094af5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965820;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_eade1c19052597b06d61ea31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_4ae94b4639e871e3fad67695.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960938;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_a96b6fb091f2ad9569e7e60f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_d651372cea18f49e63d07a9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.029785;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_d7ee57a307bd36342259d558.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.029785;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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_50062175fac461f9da65d8a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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:ffa;src:url('chunks/assets/font_abf2f9a96f0b5e195c0cac85.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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:ffb;src:url('chunks/assets/font_91c9be7512c07c3029da700c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.786133;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.368400px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.193200px;}
.ls3{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.720000px;}
.ls1{letter-spacing:5.616000px;}
.ls12{letter-spacing:36.120000px;}
.ls0{letter-spacing:85.536000px;}
.lsb{letter-spacing:120.384000px;}
.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:-72.000000px;}
.ws5{word-spacing:-25.920000px;}
.ws3{word-spacing:-25.848000px;}
.wsd{word-spacing:-25.776000px;}
.wsb{word-spacing:-25.704000px;}
.ws7{word-spacing:-25.632000px;}
.ws4{word-spacing:-25.344000px;}
.wsa{word-spacing:-25.272000px;}
.ws9{word-spacing:-25.200000px;}
.wsc{word-spacing:-25.128000px;}
.wse{word-spacing:-25.056000px;}
.ws0{word-spacing:-24.624000px;}
.ws1{word-spacing:-23.509680px;}
.ws2{word-spacing:-22.948080px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-1.008000px;}
._2{width:1.020000px;}
._18{width:2.100000px;}
._8{width:3.168000px;}
._7{width:4.176000px;}
._16{width:5.256000px;}
._11{width:7.104000px;}
._d{width:8.640000px;}
._e{width:9.864000px;}
._14{width:10.944000px;}
._1e{width:12.816000px;}
._b{width:14.832000px;}
._0{width:16.284000px;}
._15{width:17.928000px;}
._9{width:18.936000px;}
._a{width:20.016000px;}
._c{width:21.456000px;}
._1b{width:22.608000px;}
._1c{width:24.108000px;}
._12{width:26.568000px;}
._13{width:27.852000px;}
._19{width:29.316000px;}
._21{width:30.420000px;}
._17{width:31.464000px;}
._1f{width:33.912000px;}
._20{width:35.064000px;}
._f{width:36.216000px;}
._10{width:37.296000px;}
._1a{width:38.376000px;}
._3{width:40.176000px;}
._1d{width:41.256000px;}
._23{width:42.768000px;}
._24{width:46.224000px;}
._27{width:48.672000px;}
._22{width:50.040000px;}
._25{width:51.120000px;}
._26{width:52.188000px;}
._6{width:54.792000px;}
._5{width:55.992000px;}
._2a{width:75.384000px;}
._29{width:76.716000px;}
._28{width:90.720000px;}
._1{width:187.776000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:97.200000px;}
.y71{bottom:118.800000px;}
.y56{bottom:118.980000px;}
.y33{bottom:119.160000px;}
.y70{bottom:140.580000px;}
.y32{bottom:140.940000px;}
.y6f{bottom:162.540000px;}
.y31{bottom:162.900000px;}
.y6e{bottom:184.320000px;}
.y30{bottom:184.680000px;}
.y7c{bottom:185.040000px;}
.y6d{bottom:206.280000px;}
.y2f{bottom:206.640000px;}
.y7b{bottom:207.000000px;}
.y6c{bottom:228.270000px;}
.y2e{bottom:228.630000px;}
.y7a{bottom:228.810000px;}
.y6b{bottom:250.050000px;}
.y2d{bottom:250.410000px;}
.y79{bottom:250.770000px;}
.y6a{bottom:272.010000px;}
.y2c{bottom:272.370000px;}
.y63{bottom:272.550000px;}
.y69{bottom:293.790000px;}
.y55{bottom:294.150000px;}
.y2b{bottom:294.330000px;}
.y78{bottom:294.510000px;}
.y68{bottom:315.750000px;}
.y54{bottom:316.110000px;}
.y2a{bottom:316.290000px;}
.y67{bottom:337.710000px;}
.y53{bottom:337.890000px;}
.y29{bottom:338.070000px;}
.y77{bottom:338.250000px;}
.y52{bottom:359.850000px;}
.y28{bottom:360.030000px;}
.y51{bottom:381.630000px;}
.y27{bottom:381.810000px;}
.y76{bottom:381.990000px;}
.y50{bottom:403.590000px;}
.y26{bottom:403.770000px;}
.y75{bottom:403.950000px;}
.y4f{bottom:425.370000px;}
.y25{bottom:425.550000px;}
.y74{bottom:425.730000px;}
.y4e{bottom:447.375000px;}
.y62{bottom:447.555000px;}
.y24{bottom:447.735000px;}
.y4d{bottom:469.155000px;}
.y61{bottom:469.335000px;}
.y23{bottom:469.515000px;}
.y73{bottom:469.695000px;}
.y4c{bottom:491.115000px;}
.y60{bottom:491.295000px;}
.y22{bottom:491.475000px;}
.y4b{bottom:512.895000px;}
.y5f{bottom:513.075000px;}
.y21{bottom:513.255000px;}
.y4a{bottom:534.855000px;}
.y5e{bottom:535.035000px;}
.y20{bottom:535.215000px;}
.y49{bottom:556.815000px;}
.y1f{bottom:556.995000px;}
.y48{bottom:578.595000px;}
.y5d{bottom:578.775000px;}
.y1e{bottom:578.955000px;}
.y47{bottom:600.555000px;}
.y5c{bottom:600.735000px;}
.y1d{bottom:600.915000px;}
.y46{bottom:622.335000px;}
.y5b{bottom:622.515000px;}
.y1c{bottom:622.695000px;}
.y45{bottom:644.295000px;}
.y5a{bottom:644.475000px;}
.y1b{bottom:644.655000px;}
.y44{bottom:666.075000px;}
.y59{bottom:666.255000px;}
.y1a{bottom:666.435000px;}
.y43{bottom:688.065000px;}
.y58{bottom:688.245000px;}
.y19{bottom:688.425000px;}
.y42{bottom:710.025000px;}
.y18{bottom:710.205000px;}
.y41{bottom:731.985000px;}
.y17{bottom:732.165000px;}
.y40{bottom:753.765000px;}
.y16{bottom:753.945000px;}
.y3f{bottom:775.725000px;}
.y15{bottom:775.905000px;}
.y3e{bottom:797.505000px;}
.y14{bottom:797.685000px;}
.y3d{bottom:819.465000px;}
.y13{bottom:819.645000px;}
.y3c{bottom:841.245000px;}
.y12{bottom:841.425000px;}
.y3b{bottom:863.205000px;}
.y11{bottom:863.385000px;}
.y3a{bottom:884.985000px;}
.y10{bottom:885.165000px;}
.y39{bottom:906.945000px;}
.yf{bottom:907.125000px;}
.y38{bottom:928.950000px;}
.ye{bottom:929.130000px;}
.yd{bottom:950.730000px;}
.y72{bottom:950.910000px;}
.yc{bottom:970.710000px;}
.y57{bottom:972.690000px;}
.y37{bottom:972.870000px;}
.yb{bottom:990.870000px;}
.y66{bottom:994.470000px;}
.y36{bottom:994.650000px;}
.ya{bottom:1010.850000px;}
.y65{bottom:1016.430000px;}
.y35{bottom:1016.610000px;}
.y9{bottom:1031.010000px;}
.y34{bottom:1038.390000px;}
.y8{bottom:1048.830000px;}
.y7{bottom:1060.350000px;}
.y6{bottom:1082.130000px;}
.y5{bottom:1104.090000px;}
.y4{bottom:1125.870000px;}
.y3{bottom:1148.730000px;}
.y2{bottom:1170.720000px;}
.y1{bottom:1191.780000px;}
.h5{height:22.975313px;}
.h3{height:49.113281px;}
.h6{height:54.208125px;}
.h4{height:54.703125px;}
.h2{height:55.054688px;}
.h7{height:58.921875px;}
.h8{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.xf{left:159.690000px;}
.x2{left:179.490000px;}
.xd{left:180.750000px;}
.x3{left:294.195000px;}
.xc{left:390.495000px;}
.x7{left:393.555000px;}
.xa{left:398.775000px;}
.x8{left:438.375000px;}
.x6{left:461.625000px;}
.xe{left:505.005000px;}
.x9{left:566.385000px;}
.xb{left:636.450000px;}
.x5{left:647.250000px;}
.x4{left:829.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.327467pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.171733pt;}
.ls3{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls1{letter-spacing:4.992000pt;}
.ls12{letter-spacing:32.106667pt;}
.ls0{letter-spacing:76.032000pt;}
.lsb{letter-spacing:107.008000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws5{word-spacing:-23.040000pt;}
.ws3{word-spacing:-22.976000pt;}
.wsd{word-spacing:-22.912000pt;}
.wsb{word-spacing:-22.848000pt;}
.ws7{word-spacing:-22.784000pt;}
.ws4{word-spacing:-22.528000pt;}
.wsa{word-spacing:-22.464000pt;}
.ws9{word-spacing:-22.400000pt;}
.wsc{word-spacing:-22.336000pt;}
.wse{word-spacing:-22.272000pt;}
.ws0{word-spacing:-21.888000pt;}
.ws1{word-spacing:-20.897493pt;}
.ws2{word-spacing:-20.398293pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-0.896000pt;}
._2{width:0.906667pt;}
._18{width:1.866667pt;}
._8{width:2.816000pt;}
._7{width:3.712000pt;}
._16{width:4.672000pt;}
._11{width:6.314667pt;}
._d{width:7.680000pt;}
._e{width:8.768000pt;}
._14{width:9.728000pt;}
._1e{width:11.392000pt;}
._b{width:13.184000pt;}
._0{width:14.474667pt;}
._15{width:15.936000pt;}
._9{width:16.832000pt;}
._a{width:17.792000pt;}
._c{width:19.072000pt;}
._1b{width:20.096000pt;}
._1c{width:21.429333pt;}
._12{width:23.616000pt;}
._13{width:24.757333pt;}
._19{width:26.058667pt;}
._21{width:27.040000pt;}
._17{width:27.968000pt;}
._1f{width:30.144000pt;}
._20{width:31.168000pt;}
._f{width:32.192000pt;}
._10{width:33.152000pt;}
._1a{width:34.112000pt;}
._3{width:35.712000pt;}
._1d{width:36.672000pt;}
._23{width:38.016000pt;}
._24{width:41.088000pt;}
._27{width:43.264000pt;}
._22{width:44.480000pt;}
._25{width:45.440000pt;}
._26{width:46.389333pt;}
._6{width:48.704000pt;}
._5{width:49.770667pt;}
._2a{width:67.008000pt;}
._29{width:68.192000pt;}
._28{width:80.640000pt;}
._1{width:166.912000pt;}
.fs1{font-size:26.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:86.400000pt;}
.y71{bottom:105.600000pt;}
.y56{bottom:105.760000pt;}
.y33{bottom:105.920000pt;}
.y70{bottom:124.960000pt;}
.y32{bottom:125.280000pt;}
.y6f{bottom:144.480000pt;}
.y31{bottom:144.800000pt;}
.y6e{bottom:163.840000pt;}
.y30{bottom:164.160000pt;}
.y7c{bottom:164.480000pt;}
.y6d{bottom:183.360000pt;}
.y2f{bottom:183.680000pt;}
.y7b{bottom:184.000000pt;}
.y6c{bottom:202.906667pt;}
.y2e{bottom:203.226667pt;}
.y7a{bottom:203.386667pt;}
.y6b{bottom:222.266667pt;}
.y2d{bottom:222.586667pt;}
.y79{bottom:222.906667pt;}
.y6a{bottom:241.786667pt;}
.y2c{bottom:242.106667pt;}
.y63{bottom:242.266667pt;}
.y69{bottom:261.146667pt;}
.y55{bottom:261.466667pt;}
.y2b{bottom:261.626667pt;}
.y78{bottom:261.786667pt;}
.y68{bottom:280.666667pt;}
.y54{bottom:280.986667pt;}
.y2a{bottom:281.146667pt;}
.y67{bottom:300.186667pt;}
.y53{bottom:300.346667pt;}
.y29{bottom:300.506667pt;}
.y77{bottom:300.666667pt;}
.y52{bottom:319.866667pt;}
.y28{bottom:320.026667pt;}
.y51{bottom:339.226667pt;}
.y27{bottom:339.386667pt;}
.y76{bottom:339.546667pt;}
.y50{bottom:358.746667pt;}
.y26{bottom:358.906667pt;}
.y75{bottom:359.066667pt;}
.y4f{bottom:378.106667pt;}
.y25{bottom:378.266667pt;}
.y74{bottom:378.426667pt;}
.y4e{bottom:397.666667pt;}
.y62{bottom:397.826667pt;}
.y24{bottom:397.986667pt;}
.y4d{bottom:417.026667pt;}
.y61{bottom:417.186667pt;}
.y23{bottom:417.346667pt;}
.y73{bottom:417.506667pt;}
.y4c{bottom:436.546667pt;}
.y60{bottom:436.706667pt;}
.y22{bottom:436.866667pt;}
.y4b{bottom:455.906667pt;}
.y5f{bottom:456.066667pt;}
.y21{bottom:456.226667pt;}
.y4a{bottom:475.426667pt;}
.y5e{bottom:475.586667pt;}
.y20{bottom:475.746667pt;}
.y49{bottom:494.946667pt;}
.y1f{bottom:495.106667pt;}
.y48{bottom:514.306667pt;}
.y5d{bottom:514.466667pt;}
.y1e{bottom:514.626667pt;}
.y47{bottom:533.826667pt;}
.y5c{bottom:533.986667pt;}
.y1d{bottom:534.146667pt;}
.y46{bottom:553.186667pt;}
.y5b{bottom:553.346667pt;}
.y1c{bottom:553.506667pt;}
.y45{bottom:572.706667pt;}
.y5a{bottom:572.866667pt;}
.y1b{bottom:573.026667pt;}
.y44{bottom:592.066667pt;}
.y59{bottom:592.226667pt;}
.y1a{bottom:592.386667pt;}
.y43{bottom:611.613333pt;}
.y58{bottom:611.773333pt;}
.y19{bottom:611.933333pt;}
.y42{bottom:631.133333pt;}
.y18{bottom:631.293333pt;}
.y41{bottom:650.653333pt;}
.y17{bottom:650.813333pt;}
.y40{bottom:670.013333pt;}
.y16{bottom:670.173333pt;}
.y3f{bottom:689.533333pt;}
.y15{bottom:689.693333pt;}
.y3e{bottom:708.893333pt;}
.y14{bottom:709.053333pt;}
.y3d{bottom:728.413333pt;}
.y13{bottom:728.573333pt;}
.y3c{bottom:747.773333pt;}
.y12{bottom:747.933333pt;}
.y3b{bottom:767.293333pt;}
.y11{bottom:767.453333pt;}
.y3a{bottom:786.653333pt;}
.y10{bottom:786.813333pt;}
.y39{bottom:806.173333pt;}
.yf{bottom:806.333333pt;}
.y38{bottom:825.733333pt;}
.ye{bottom:825.893333pt;}
.yd{bottom:845.093333pt;}
.y72{bottom:845.253333pt;}
.yc{bottom:862.853333pt;}
.y57{bottom:864.613333pt;}
.y37{bottom:864.773333pt;}
.yb{bottom:880.773333pt;}
.y66{bottom:883.973333pt;}
.y36{bottom:884.133333pt;}
.ya{bottom:898.533333pt;}
.y65{bottom:903.493333pt;}
.y35{bottom:903.653333pt;}
.y9{bottom:916.453333pt;}
.y34{bottom:923.013333pt;}
.y8{bottom:932.293333pt;}
.y7{bottom:942.533333pt;}
.y6{bottom:961.893333pt;}
.y5{bottom:981.413333pt;}
.y4{bottom:1000.773333pt;}
.y3{bottom:1021.093333pt;}
.y2{bottom:1040.640000pt;}
.y1{bottom:1059.360000pt;}
.h5{height:20.422500pt;}
.h3{height:43.656250pt;}
.h6{height:48.185000pt;}
.h4{height:48.625000pt;}
.h2{height:48.937500pt;}
.h7{height:52.375000pt;}
.h8{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.xf{left:141.946667pt;}
.x2{left:159.546667pt;}
.xd{left:160.666667pt;}
.x3{left:261.506667pt;}
.xc{left:347.106667pt;}
.x7{left:349.826667pt;}
.xa{left:354.466667pt;}
.x8{left:389.666667pt;}
.x6{left:410.333333pt;}
.xe{left:448.893333pt;}
.x9{left:503.453333pt;}
.xb{left:565.733333pt;}
.x5{left:575.333333pt;}
.x4{left:737.280000pt;}
}




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