
    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_f577a3f93eac0f68e62027ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_89a89f88b79605148c196277.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_e3eb312555f7694f5c437204.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_60fc7e05b4b4359383629be9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.108000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.360000px;}
.ls3{letter-spacing:111.720000px;}
.ls4{letter-spacing:116.040000px;}
.ls2{letter-spacing:131.880000px;}
.ls5{letter-spacing:136.200000px;}
.ls0{letter-spacing:152.040000px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.798000px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-8.424000px;}
._3{margin-left:-6.624000px;}
._d{margin-left:-5.508000px;}
._6{margin-left:-3.515280px;}
._7{margin-left:-2.178000px;}
._1{margin-left:-1.152000px;}
._4{width:1.068000px;}
._8{width:2.246880px;}
._12{width:3.672000px;}
._13{width:5.256000px;}
._10{width:6.408000px;}
._11{width:7.428000px;}
._2{width:13.248000px;}
._5{width:14.904000px;}
._0{width:15.912000px;}
._b{width:17.756400px;}
._a{width:21.700560px;}
._9{width:22.947840px;}
._f{width:43.812000px;}
._e{width:45.000000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:10.620000px;}
.y30{bottom:10.800000px;}
.y84{bottom:12.960000px;}
.y21{bottom:13.680000px;}
.y5b{bottom:14.400000px;}
.y29{bottom:15.480000px;}
.y67{bottom:15.510000px;}
.y2b{bottom:15.525000px;}
.y32{bottom:15.660000px;}
.y23{bottom:16.020000px;}
.y38{bottom:18.000000px;}
.y2e{bottom:22.320000px;}
.y89{bottom:22.365000px;}
.y25{bottom:26.100000px;}
.y82{bottom:27.180000px;}
.y9b{bottom:33.300000px;}
.y5e{bottom:33.345000px;}
.y34{bottom:33.840000px;}
.y88{bottom:33.885000px;}
.y2f{bottom:34.020000px;}
.y48{bottom:37.980000px;}
.y83{bottom:41.400000px;}
.y26{bottom:41.760000px;}
.y86{bottom:45.945000px;}
.y47{bottom:57.960000px;}
.y46{bottom:77.940000px;}
.y4a{bottom:85.860000px;}
.y45{bottom:97.920000px;}
.y9e{bottom:117.000000px;}
.y61{bottom:117.210000px;}
.y44{bottom:117.900000px;}
.y49{bottom:137.880000px;}
.y43{bottom:149.985000px;}
.y75{bottom:162.750000px;}
.y42{bottom:169.965000px;}
.y41{bottom:189.945000px;}
.y74{bottom:200.550000px;}
.y40{bottom:221.805000px;}
.y73{bottom:238.530000px;}
.y3f{bottom:241.785000px;}
.y3e{bottom:261.765000px;}
.y72{bottom:276.330000px;}
.y3d{bottom:293.805000px;}
.y59{bottom:299.055000px;}
.y3c{bottom:313.785000px;}
.y71{bottom:314.310000px;}
.y58{bottom:326.595000px;}
.y3b{bottom:345.825000px;}
.y1f{bottom:346.935000px;}
.y70{bottom:352.155000px;}
.y60{bottom:356.835000px;}
.y57{bottom:361.875000px;}
.y3a{bottom:365.805000px;}
.y1e{bottom:378.795000px;}
.y97{bottom:379.515000px;}
.y6f{bottom:389.955000px;}
.y68{bottom:390.495000px;}
.y56{bottom:397.155000px;}
.y1d{bottom:415.515000px;}
.y96{bottom:419.115000px;}
.y66{bottom:424.335000px;}
.y6e{bottom:426.675000px;}
.y55{bottom:432.465000px;}
.y1c{bottom:438.945000px;}
.y95{bottom:442.365000px;}
.y6d{bottom:450.075000px;}
.y80{bottom:450.285000px;}
.y33{bottom:451.185000px;}
.y65{bottom:458.025000px;}
.y54{bottom:467.745000px;}
.y6c{bottom:473.295000px;}
.y1b{bottom:474.225000px;}
.y94{bottom:477.645000px;}
.y9d{bottom:479.445000px;}
.y7f{bottom:487.185000px;}
.y64{bottom:491.685000px;}
.y6b{bottom:496.695000px;}
.y31{bottom:497.625000px;}
.y53{bottom:503.025000px;}
.y1a{bottom:509.505000px;}
.y7e{bottom:510.405000px;}
.y93{bottom:512.925000px;}
.ya4{bottom:513.105000px;}
.y63{bottom:525.345000px;}
.y2d{bottom:530.565000px;}
.y6a{bottom:531.615000px;}
.y52{bottom:538.305000px;}
.y19{bottom:544.785000px;}
.y7d{bottom:545.685000px;}
.ya3{bottom:546.765000px;}
.y92{bottom:548.205000px;}
.y8a{bottom:549.825000px;}
.y62{bottom:559.005000px;}
.y51{bottom:573.585000px;}
.y2c{bottom:577.185000px;}
.y18{bottom:580.065000px;}
.ya2{bottom:580.425000px;}
.y7c{bottom:580.965000px;}
.y91{bottom:583.485000px;}
.y5d{bottom:593.745000px;}
.y11{bottom:596.955000px;}
.y85{bottom:597.165000px;}
.y50{bottom:608.865000px;}
.y2a{bottom:610.125000px;}
.ya1{bottom:614.085000px;}
.y17{bottom:615.345000px;}
.y7b{bottom:616.290000px;}
.y90{bottom:618.810000px;}
.y10{bottom:627.945000px;}
.y5f{bottom:628.530000px;}
.y28{bottom:643.110000px;}
.y4f{bottom:644.190000px;}
.y87{bottom:644.550000px;}
.ya0{bottom:647.790000px;}
.y16{bottom:650.670000px;}
.y7a{bottom:651.570000px;}
.y8f{bottom:654.090000px;}
.yf{bottom:659.085000px;}
.y5c{bottom:663.270000px;}
.y24{bottom:676.050000px;}
.y4e{bottom:679.470000px;}
.y9f{bottom:681.450000px;}
.y15{bottom:685.950000px;}
.y79{bottom:686.850000px;}
.y8e{bottom:689.370000px;}
.ye{bottom:690.045000px;}
.y81{bottom:691.890000px;}
.y5a{bottom:698.010000px;}
.y36{bottom:708.405000px;}
.y4d{bottom:714.750000px;}
.y9a{bottom:716.190000px;}
.yd{bottom:721.005000px;}
.y39{bottom:721.185000px;}
.y14{bottom:721.230000px;}
.y78{bottom:722.130000px;}
.y8d{bottom:724.650000px;}
.y22{bottom:730.410000px;}
.y9c{bottom:750.930000px;}
.yc{bottom:752.145000px;}
.y4c{bottom:753.630000px;}
.y77{bottom:757.410000px;}
.y8c{bottom:759.930000px;}
.y13{bottom:760.110000px;}
.y20{bottom:765.150000px;}
.yb{bottom:783.105000px;}
.y99{bottom:785.670000px;}
.y4b{bottom:791.070000px;}
.y12{bottom:791.250000px;}
.y76{bottom:793.950000px;}
.y8b{bottom:795.390000px;}
.ya{bottom:814.245000px;}
.y98{bottom:820.440000px;}
.y9{bottom:857.265000px;}
.y8{bottom:900.330000px;}
.y7{bottom:941.010000px;}
.y6{bottom:966.750000px;}
.y5{bottom:1004.730000px;}
.y4{bottom:1030.650000px;}
.y3{bottom:1068.450000px;}
.y37{bottom:1103.550000px;}
.y2{bottom:1108.770000px;}
.y1{bottom:1139.940000px;}
.y35{bottom:1142.640000px;}
.y69{bottom:1144.080000px;}
.hb{height:29.880000px;}
.h14{height:32.040000px;}
.h21{height:32.760000px;}
.h1b{height:32.796000px;}
.h10{height:32.940000px;}
.h11{height:32.976000px;}
.hd{height:33.840000px;}
.h1a{height:34.020000px;}
.h18{height:34.056000px;}
.he{height:37.705078px;}
.h9{height:38.100586px;}
.h4{height:41.726953px;}
.ha{height:42.164648px;}
.h13{height:46.440000px;}
.h1e{height:46.476000px;}
.h12{height:46.620000px;}
.hc{height:46.736719px;}
.h3{height:48.027656px;}
.h5{height:50.273438px;}
.h2{height:50.800781px;}
.h6{height:52.417969px;}
.hf{height:54.360000px;}
.h1c{height:56.880000px;}
.h16{height:60.855469px;}
.h17{height:68.616000px;}
.h1f{height:68.760000px;}
.h1d{height:93.816000px;}
.h20{height:236.010000px;}
.h19{height:236.190000px;}
.h15{height:379.830000px;}
.h7{height:892.980000px;}
.h8{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:72.936000px;}
.w11{width:78.840000px;}
.w10{width:84.960000px;}
.w13{width:88.740000px;}
.w17{width:90.180000px;}
.wb{width:106.416000px;}
.we{width:113.220000px;}
.w15{width:118.440000px;}
.w12{width:118.656000px;}
.wd{width:124.416000px;}
.wa{width:127.440000px;}
.w14{width:128.556000px;}
.w16{width:136.836000px;}
.wc{width:197.640000px;}
.w6{width:276.510000px;}
.w9{width:359.535000px;}
.w8{width:360.975000px;}
.w7{width:550.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x18{left:9.540000px;}
.x28{left:11.160000px;}
.x26{left:13.140000px;}
.x1a{left:14.400000px;}
.x27{left:17.100000px;}
.x1f{left:19.800000px;}
.x25{left:21.060000px;}
.x20{left:22.140000px;}
.x16{left:24.660000px;}
.x22{left:26.280000px;}
.x1d{left:30.780000px;}
.x23{left:37.260000px;}
.x14{left:38.520000px;}
.x21{left:41.220000px;}
.x24{left:46.440000px;}
.x1{left:84.959987px;}
.x2{left:111.995987px;}
.x3{left:165.989987px;}
.x6{left:182.010000px;}
.x5{left:191.189981px;}
.x12{left:195.870000px;}
.xa{left:206.850000px;}
.x13{left:274.710000px;}
.xb{left:334.290000px;}
.x15{left:393.375000px;}
.xc{left:440.715000px;}
.x9{left:447.375000px;}
.x8{left:458.535000px;}
.x17{left:482.115000px;}
.x19{left:570.855000px;}
.xd{left:638.355000px;}
.x1b{left:699.405000px;}
.xe{left:762.765000px;}
.x11{left:807.809987px;}
.x1c{left:817.845000px;}
.xf{left:875.985000px;}
.x10{left:948.930000px;}
.x1e{left:954.690000px;}
.x4{left:1156.649981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls3{letter-spacing:99.306667pt;}
.ls4{letter-spacing:103.146667pt;}
.ls2{letter-spacing:117.226667pt;}
.ls5{letter-spacing:121.066667pt;}
.ls0{letter-spacing:135.146667pt;}
.ws2{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.376000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-7.488000pt;}
._3{margin-left:-5.888000pt;}
._d{margin-left:-4.896000pt;}
._6{margin-left:-3.124693pt;}
._7{margin-left:-1.936000pt;}
._1{margin-left:-1.024000pt;}
._4{width:0.949333pt;}
._8{width:1.997227pt;}
._12{width:3.264000pt;}
._13{width:4.672000pt;}
._10{width:5.696000pt;}
._11{width:6.602667pt;}
._2{width:11.776000pt;}
._5{width:13.248000pt;}
._0{width:14.144000pt;}
._b{width:15.783467pt;}
._a{width:19.289387pt;}
._9{width:20.398080pt;}
._f{width:38.944000pt;}
._e{width:40.000000pt;}
.fs2{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:9.440000pt;}
.y30{bottom:9.600000pt;}
.y84{bottom:11.520000pt;}
.y21{bottom:12.160000pt;}
.y5b{bottom:12.800000pt;}
.y29{bottom:13.760000pt;}
.y67{bottom:13.786667pt;}
.y2b{bottom:13.800000pt;}
.y32{bottom:13.920000pt;}
.y23{bottom:14.240000pt;}
.y38{bottom:16.000000pt;}
.y2e{bottom:19.840000pt;}
.y89{bottom:19.880000pt;}
.y25{bottom:23.200000pt;}
.y82{bottom:24.160000pt;}
.y9b{bottom:29.600000pt;}
.y5e{bottom:29.640000pt;}
.y34{bottom:30.080000pt;}
.y88{bottom:30.120000pt;}
.y2f{bottom:30.240000pt;}
.y48{bottom:33.760000pt;}
.y83{bottom:36.800000pt;}
.y26{bottom:37.120000pt;}
.y86{bottom:40.840000pt;}
.y47{bottom:51.520000pt;}
.y46{bottom:69.280000pt;}
.y4a{bottom:76.320000pt;}
.y45{bottom:87.040000pt;}
.y9e{bottom:104.000000pt;}
.y61{bottom:104.186667pt;}
.y44{bottom:104.800000pt;}
.y49{bottom:122.560000pt;}
.y43{bottom:133.320000pt;}
.y75{bottom:144.666667pt;}
.y42{bottom:151.080000pt;}
.y41{bottom:168.840000pt;}
.y74{bottom:178.266667pt;}
.y40{bottom:197.160000pt;}
.y73{bottom:212.026667pt;}
.y3f{bottom:214.920000pt;}
.y3e{bottom:232.680000pt;}
.y72{bottom:245.626667pt;}
.y3d{bottom:261.160000pt;}
.y59{bottom:265.826667pt;}
.y3c{bottom:278.920000pt;}
.y71{bottom:279.386667pt;}
.y58{bottom:290.306667pt;}
.y3b{bottom:307.400000pt;}
.y1f{bottom:308.386667pt;}
.y70{bottom:313.026667pt;}
.y60{bottom:317.186667pt;}
.y57{bottom:321.666667pt;}
.y3a{bottom:325.160000pt;}
.y1e{bottom:336.706667pt;}
.y97{bottom:337.346667pt;}
.y6f{bottom:346.626667pt;}
.y68{bottom:347.106667pt;}
.y56{bottom:353.026667pt;}
.y1d{bottom:369.346667pt;}
.y96{bottom:372.546667pt;}
.y66{bottom:377.186667pt;}
.y6e{bottom:379.266667pt;}
.y55{bottom:384.413333pt;}
.y1c{bottom:390.173333pt;}
.y95{bottom:393.213333pt;}
.y6d{bottom:400.066667pt;}
.y80{bottom:400.253333pt;}
.y33{bottom:401.053333pt;}
.y65{bottom:407.133333pt;}
.y54{bottom:415.773333pt;}
.y6c{bottom:420.706667pt;}
.y1b{bottom:421.533333pt;}
.y94{bottom:424.573333pt;}
.y9d{bottom:426.173333pt;}
.y7f{bottom:433.053333pt;}
.y64{bottom:437.053333pt;}
.y6b{bottom:441.506667pt;}
.y31{bottom:442.333333pt;}
.y53{bottom:447.133333pt;}
.y1a{bottom:452.893333pt;}
.y7e{bottom:453.693333pt;}
.y93{bottom:455.933333pt;}
.ya4{bottom:456.093333pt;}
.y63{bottom:466.973333pt;}
.y2d{bottom:471.613333pt;}
.y6a{bottom:472.546667pt;}
.y52{bottom:478.493333pt;}
.y19{bottom:484.253333pt;}
.y7d{bottom:485.053333pt;}
.ya3{bottom:486.013333pt;}
.y92{bottom:487.293333pt;}
.y8a{bottom:488.733333pt;}
.y62{bottom:496.893333pt;}
.y51{bottom:509.853333pt;}
.y2c{bottom:513.053333pt;}
.y18{bottom:515.613333pt;}
.ya2{bottom:515.933333pt;}
.y7c{bottom:516.413333pt;}
.y91{bottom:518.653333pt;}
.y5d{bottom:527.773333pt;}
.y11{bottom:530.626667pt;}
.y85{bottom:530.813333pt;}
.y50{bottom:541.213333pt;}
.y2a{bottom:542.333333pt;}
.ya1{bottom:545.853333pt;}
.y17{bottom:546.973333pt;}
.y7b{bottom:547.813333pt;}
.y90{bottom:550.053333pt;}
.y10{bottom:558.173333pt;}
.y5f{bottom:558.693333pt;}
.y28{bottom:571.653333pt;}
.y4f{bottom:572.613333pt;}
.y87{bottom:572.933333pt;}
.ya0{bottom:575.813333pt;}
.y16{bottom:578.373333pt;}
.y7a{bottom:579.173333pt;}
.y8f{bottom:581.413333pt;}
.yf{bottom:585.853333pt;}
.y5c{bottom:589.573333pt;}
.y24{bottom:600.933333pt;}
.y4e{bottom:603.973333pt;}
.y9f{bottom:605.733333pt;}
.y15{bottom:609.733333pt;}
.y79{bottom:610.533333pt;}
.y8e{bottom:612.773333pt;}
.ye{bottom:613.373333pt;}
.y81{bottom:615.013333pt;}
.y5a{bottom:620.453333pt;}
.y36{bottom:629.693333pt;}
.y4d{bottom:635.333333pt;}
.y9a{bottom:636.613333pt;}
.yd{bottom:640.893333pt;}
.y39{bottom:641.053333pt;}
.y14{bottom:641.093333pt;}
.y78{bottom:641.893333pt;}
.y8d{bottom:644.133333pt;}
.y22{bottom:649.253333pt;}
.y9c{bottom:667.493333pt;}
.yc{bottom:668.573333pt;}
.y4c{bottom:669.893333pt;}
.y77{bottom:673.253333pt;}
.y8c{bottom:675.493333pt;}
.y13{bottom:675.653333pt;}
.y20{bottom:680.133333pt;}
.yb{bottom:696.093333pt;}
.y99{bottom:698.373333pt;}
.y4b{bottom:703.173333pt;}
.y12{bottom:703.333333pt;}
.y76{bottom:705.733333pt;}
.y8b{bottom:707.013333pt;}
.ya{bottom:723.773333pt;}
.y98{bottom:729.280000pt;}
.y9{bottom:762.013333pt;}
.y8{bottom:800.293333pt;}
.y7{bottom:836.453333pt;}
.y6{bottom:859.333333pt;}
.y5{bottom:893.093333pt;}
.y4{bottom:916.133333pt;}
.y3{bottom:949.733333pt;}
.y37{bottom:980.933333pt;}
.y2{bottom:985.573333pt;}
.y1{bottom:1013.280000pt;}
.y35{bottom:1015.680000pt;}
.y69{bottom:1016.960000pt;}
.hb{height:26.560000pt;}
.h14{height:28.480000pt;}
.h21{height:29.120000pt;}
.h1b{height:29.152000pt;}
.h10{height:29.280000pt;}
.h11{height:29.312000pt;}
.hd{height:30.080000pt;}
.h1a{height:30.240000pt;}
.h18{height:30.272000pt;}
.he{height:33.515625pt;}
.h9{height:33.867188pt;}
.h4{height:37.090625pt;}
.ha{height:37.479688pt;}
.h13{height:41.280000pt;}
.h1e{height:41.312000pt;}
.h12{height:41.440000pt;}
.hc{height:41.543750pt;}
.h3{height:42.691250pt;}
.h5{height:44.687500pt;}
.h2{height:45.156250pt;}
.h6{height:46.593750pt;}
.hf{height:48.320000pt;}
.h1c{height:50.560000pt;}
.h16{height:54.093750pt;}
.h17{height:60.992000pt;}
.h1f{height:61.120000pt;}
.h1d{height:83.392000pt;}
.h20{height:209.786667pt;}
.h19{height:209.946667pt;}
.h15{height:337.626667pt;}
.h7{height:793.760000pt;}
.h8{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:64.832000pt;}
.w11{width:70.080000pt;}
.w10{width:75.520000pt;}
.w13{width:78.880000pt;}
.w17{width:80.160000pt;}
.wb{width:94.592000pt;}
.we{width:100.640000pt;}
.w15{width:105.280000pt;}
.w12{width:105.472000pt;}
.wd{width:110.592000pt;}
.wa{width:113.280000pt;}
.w14{width:114.272000pt;}
.w16{width:121.632000pt;}
.wc{width:175.680000pt;}
.w6{width:245.786667pt;}
.w9{width:319.586667pt;}
.w8{width:320.866667pt;}
.w7{width:489.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x18{left:8.480000pt;}
.x28{left:9.920000pt;}
.x26{left:11.680000pt;}
.x1a{left:12.800000pt;}
.x27{left:15.200000pt;}
.x1f{left:17.600000pt;}
.x25{left:18.720000pt;}
.x20{left:19.680000pt;}
.x16{left:21.920000pt;}
.x22{left:23.360000pt;}
.x1d{left:27.360000pt;}
.x23{left:33.120000pt;}
.x14{left:34.240000pt;}
.x21{left:36.640000pt;}
.x24{left:41.280000pt;}
.x1{left:75.519988pt;}
.x2{left:99.551988pt;}
.x3{left:147.546655pt;}
.x6{left:161.786667pt;}
.x5{left:169.946650pt;}
.x12{left:174.106667pt;}
.xa{left:183.866667pt;}
.x13{left:244.186667pt;}
.xb{left:297.146667pt;}
.x15{left:349.666667pt;}
.xc{left:391.746667pt;}
.x9{left:397.666667pt;}
.x8{left:407.586667pt;}
.x17{left:428.546667pt;}
.x19{left:507.426667pt;}
.xd{left:567.426667pt;}
.x1b{left:621.693333pt;}
.xe{left:678.013333pt;}
.x11{left:718.053322pt;}
.x1c{left:726.973333pt;}
.xf{left:778.653333pt;}
.x10{left:843.493333pt;}
.x1e{left:848.613333pt;}
.x4{left:1028.133317pt;}
}




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