
    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_d771cb3c505b4d0d862ab04d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_a30f1bb75a4dee32352912e6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_83b9c4d0e0c36f8ec98b351a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a50540507269e2a6845ab378.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139160;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_afc5dc39fa3a35ed7853911e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151855;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_c8b0c0f7cfb4d7e898a8becd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.151855;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0c5577d708e98964e83332c8.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.522000px;}
.ls8{letter-spacing:40.428000px;}
.ls7{letter-spacing:43.668000px;}
.ls6{letter-spacing:68.268000px;}
.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;}
}
.ws6{word-spacing:-54.000000px;}
.ws3{word-spacing:-13.590000px;}
.ws2{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.284000px;}
.ws4{word-spacing:-13.230000px;}
.ws8{word-spacing:-13.176000px;}
.ws0{word-spacing:-0.036000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-1.026000px;}
._0{width:1.054080px;}
._4{width:2.322000px;}
._1{width:3.780000px;}
._6{width:5.238000px;}
._2{width:7.182000px;}
._a{width:8.208000px;}
._9{width:9.342000px;}
._8{width:10.476000px;}
._7{width:11.880000px;}
._e{width:13.571280px;}
._5{width:15.120000px;}
._f{width:16.308000px;}
._10{width:19.656000px;}
._c{width:20.844000px;}
._b{width:22.032000px;}
._d{width:154.782000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(233,44,48);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs2{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.yf{bottom:0.720000px;}
.y9{bottom:3.330000px;}
.y13{bottom:17.640000px;}
.yb{bottom:19.530000px;}
.y7e{bottom:19.560000px;}
.ye{bottom:20.250000px;}
.y5{bottom:22.320000px;}
.y3f{bottom:35.730000px;}
.y7d{bottom:35.850000px;}
.y12{bottom:37.170000px;}
.y3e{bottom:51.930000px;}
.y7c{bottom:52.050000px;}
.y93{bottom:55.740000px;}
.y4{bottom:57.780000px;}
.y3d{bottom:68.130000px;}
.y9d{bottom:68.160000px;}
.y82{bottom:68.220000px;}
.y7b{bottom:68.250000px;}
.y92{bottom:71.940000px;}
.y3c{bottom:84.330000px;}
.y9c{bottom:84.360000px;}
.y81{bottom:84.420000px;}
.y7a{bottom:84.450000px;}
.y27{bottom:85.950000px;}
.y91{bottom:88.140000px;}
.y84{bottom:91.530000px;}
.y24{bottom:97.230000px;}
.y53{bottom:99.630000px;}
.y3b{bottom:100.530000px;}
.y9b{bottom:100.560000px;}
.y51{bottom:100.620000px;}
.y79{bottom:100.650000px;}
.y23{bottom:113.430000px;}
.y3a{bottom:116.730000px;}
.y6a{bottom:116.760000px;}
.y50{bottom:116.820000px;}
.y78{bottom:116.850000px;}
.y8f{bottom:117.810000px;}
.y22{bottom:129.630000px;}
.y6f{bottom:132.930000px;}
.y39{bottom:132.960000px;}
.y4f{bottom:133.020000px;}
.y77{bottom:133.050000px;}
.y8e{bottom:138.000000px;}
.y21{bottom:145.830000px;}
.y6e{bottom:149.130000px;}
.y38{bottom:149.160000px;}
.y4e{bottom:149.220000px;}
.y76{bottom:149.250000px;}
.y8d{bottom:158.160000px;}
.y20{bottom:162.030000px;}
.y6d{bottom:165.330000px;}
.y37{bottom:165.360000px;}
.y4d{bottom:165.420000px;}
.y75{bottom:165.450000px;}
.y8c{bottom:177.150000px;}
.y1f{bottom:178.230000px;}
.y6c{bottom:181.530000px;}
.y36{bottom:181.560000px;}
.y4c{bottom:181.620000px;}
.y74{bottom:181.650000px;}
.y8b{bottom:193.440000px;}
.y1e{bottom:194.430000px;}
.y96{bottom:197.730000px;}
.y35{bottom:197.760000px;}
.y4b{bottom:197.820000px;}
.y73{bottom:197.850000px;}
.y8a{bottom:209.640000px;}
.y1d{bottom:210.630000px;}
.y34{bottom:213.960000px;}
.y4a{bottom:214.020000px;}
.y72{bottom:214.050000px;}
.y89{bottom:225.840000px;}
.y1c{bottom:226.830000px;}
.y33{bottom:230.160000px;}
.y49{bottom:230.220000px;}
.y88{bottom:242.040000px;}
.y1b{bottom:243.030000px;}
.y32{bottom:246.360000px;}
.y48{bottom:246.420000px;}
.y87{bottom:258.240000px;}
.y1a{bottom:259.230000px;}
.y31{bottom:262.560000px;}
.y47{bottom:262.620000px;}
.y69{bottom:262.650000px;}
.y86{bottom:274.440000px;}
.y19{bottom:275.430000px;}
.y30{bottom:278.760000px;}
.y46{bottom:278.820000px;}
.y68{bottom:278.850000px;}
.y85{bottom:290.640000px;}
.y18{bottom:291.630000px;}
.y2f{bottom:294.960000px;}
.y45{bottom:295.020000px;}
.y67{bottom:295.050000px;}
.y2e{bottom:311.160000px;}
.y44{bottom:311.220000px;}
.y66{bottom:311.970000px;}
.y2d{bottom:327.360000px;}
.y43{bottom:327.450000px;}
.y65{bottom:328.890000px;}
.y2c{bottom:343.560000px;}
.y42{bottom:343.650000px;}
.y64{bottom:345.090000px;}
.y2b{bottom:359.760000px;}
.y41{bottom:359.850000px;}
.y63{bottom:361.380000px;}
.y2a{bottom:375.960000px;}
.y62{bottom:378.300000px;}
.y29{bottom:392.160000px;}
.y61{bottom:394.500000px;}
.y83{bottom:395.760000px;}
.y28{bottom:408.360000px;}
.y60{bottom:411.420000px;}
.y80{bottom:412.680000px;}
.y5f{bottom:428.340000px;}
.y5e{bottom:445.260000px;}
.y99{bottom:456.870000px;}
.y5d{bottom:461.550000px;}
.y98{bottom:473.790000px;}
.y5c{bottom:478.470000px;}
.y5b{bottom:495.390000px;}
.y26{bottom:507.990000px;}
.y5a{bottom:511.590000px;}
.y59{bottom:528.510000px;}
.y25{bottom:541.110000px;}
.y58{bottom:544.740000px;}
.y17{bottom:558.030000px;}
.y57{bottom:561.030000px;}
.y56{bottom:577.230000px;}
.y55{bottom:593.430000px;}
.y7f{bottom:607.890000px;}
.y54{bottom:609.630000px;}
.y71{bottom:624.810000px;}
.y97{bottom:701.430000px;}
.y95{bottom:718.350000px;}
.y52{bottom:722.850000px;}
.y40{bottom:739.770000px;}
.y70{bottom:852.450000px;}
.y16{bottom:863.250000px;}
.y6b{bottom:869.460000px;}
.ya1{bottom:877.200000px;}
.y11{bottom:880.260000px;}
.y15{bottom:897.180000px;}
.y14{bottom:914.100000px;}
.ya0{bottom:925.080000px;}
.yd{bottom:931.110000px;}
.y10{bottom:948.030000px;}
.y9f{bottom:962.790000px;}
.yc{bottom:964.950000px;}
.ya{bottom:981.960000px;}
.y9e{bottom:982.590000px;}
.y94{bottom:994.560000px;}
.y9a{bottom:999.060000px;}
.y90{bottom:1011.480000px;}
.y8{bottom:1015.080000px;}
.y7{bottom:1052.820000px;}
.y6{bottom:1079.550000px;}
.y3{bottom:1135.620000px;}
.y2{bottom:1173.780000px;}
.y1{bottom:1193.940000px;}
.h5{height:16.200000px;}
.h6{height:32.400000px;}
.h7{height:33.120000px;}
.h4{height:49.807617px;}
.h8{height:50.040000px;}
.hd{height:55.503491px;}
.h3{height:60.379277px;}
.h17{height:60.765293px;}
.h2{height:65.526152px;}
.h18{height:88.094355px;}
.h12{height:101.010000px;}
.h16{height:113.430000px;}
.h10{height:194.490000px;}
.h14{height:226.830000px;}
.hf{height:226.920000px;}
.he{height:243.030000px;}
.h13{height:275.490000px;}
.h11{height:303.510000px;}
.h9{height:304.500000px;}
.h15{height:356.430000px;}
.hb{height:372.720000px;}
.ha{height:421.230000px;}
.hc{height:622.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:126.840000px;}
.w6{width:137.550000px;}
.w7{width:148.140000px;}
.wa{width:211.890000px;}
.w8{width:286.320000px;}
.wb{width:360.750000px;}
.w9{width:435.180000px;}
.w5{width:573.450000px;}
.w3{width:701.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x8{left:9.270000px;}
.xa{left:34.770000px;}
.xb{left:60.960000px;}
.xc{left:87.960000px;}
.x1{left:106.379987px;}
.x3{left:212.519987px;}
.x5{left:234.300000px;}
.x6{left:372.570000px;}
.x9{left:447.000000px;}
.x7{left:521.430000px;}
.x2{left:783.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.464000pt;}
.ls8{letter-spacing:35.936000pt;}
.ls7{letter-spacing:38.816000pt;}
.ls6{letter-spacing:60.682667pt;}
.ws6{word-spacing:-48.000000pt;}
.ws3{word-spacing:-12.080000pt;}
.ws2{word-spacing:-12.016000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.808000pt;}
.ws4{word-spacing:-11.760000pt;}
.ws8{word-spacing:-11.712000pt;}
.ws0{word-spacing:-0.032000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-0.912000pt;}
._0{width:0.936960pt;}
._4{width:2.064000pt;}
._1{width:3.360000pt;}
._6{width:4.656000pt;}
._2{width:6.384000pt;}
._a{width:7.296000pt;}
._9{width:8.304000pt;}
._8{width:9.312000pt;}
._7{width:10.560000pt;}
._e{width:12.063360pt;}
._5{width:13.440000pt;}
._f{width:14.496000pt;}
._10{width:17.472000pt;}
._c{width:18.528000pt;}
._b{width:19.584000pt;}
._d{width:137.584000pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:0.640000pt;}
.y9{bottom:2.960000pt;}
.y13{bottom:15.680000pt;}
.yb{bottom:17.360000pt;}
.y7e{bottom:17.386667pt;}
.ye{bottom:18.000000pt;}
.y5{bottom:19.840000pt;}
.y3f{bottom:31.760000pt;}
.y7d{bottom:31.866667pt;}
.y12{bottom:33.040000pt;}
.y3e{bottom:46.160000pt;}
.y7c{bottom:46.266667pt;}
.y93{bottom:49.546667pt;}
.y4{bottom:51.360000pt;}
.y3d{bottom:60.560000pt;}
.y9d{bottom:60.586667pt;}
.y82{bottom:60.640000pt;}
.y7b{bottom:60.666667pt;}
.y92{bottom:63.946667pt;}
.y3c{bottom:74.960000pt;}
.y9c{bottom:74.986667pt;}
.y81{bottom:75.040000pt;}
.y7a{bottom:75.066667pt;}
.y27{bottom:76.400000pt;}
.y91{bottom:78.346667pt;}
.y84{bottom:81.360000pt;}
.y24{bottom:86.426667pt;}
.y53{bottom:88.560000pt;}
.y3b{bottom:89.360000pt;}
.y9b{bottom:89.386667pt;}
.y51{bottom:89.440000pt;}
.y79{bottom:89.466667pt;}
.y23{bottom:100.826667pt;}
.y3a{bottom:103.760000pt;}
.y6a{bottom:103.786667pt;}
.y50{bottom:103.840000pt;}
.y78{bottom:103.866667pt;}
.y8f{bottom:104.720000pt;}
.y22{bottom:115.226667pt;}
.y6f{bottom:118.160000pt;}
.y39{bottom:118.186667pt;}
.y4f{bottom:118.240000pt;}
.y77{bottom:118.266667pt;}
.y8e{bottom:122.666667pt;}
.y21{bottom:129.626667pt;}
.y6e{bottom:132.560000pt;}
.y38{bottom:132.586667pt;}
.y4e{bottom:132.640000pt;}
.y76{bottom:132.666667pt;}
.y8d{bottom:140.586667pt;}
.y20{bottom:144.026667pt;}
.y6d{bottom:146.960000pt;}
.y37{bottom:146.986667pt;}
.y4d{bottom:147.040000pt;}
.y75{bottom:147.066667pt;}
.y8c{bottom:157.466667pt;}
.y1f{bottom:158.426667pt;}
.y6c{bottom:161.360000pt;}
.y36{bottom:161.386667pt;}
.y4c{bottom:161.440000pt;}
.y74{bottom:161.466667pt;}
.y8b{bottom:171.946667pt;}
.y1e{bottom:172.826667pt;}
.y96{bottom:175.760000pt;}
.y35{bottom:175.786667pt;}
.y4b{bottom:175.840000pt;}
.y73{bottom:175.866667pt;}
.y8a{bottom:186.346667pt;}
.y1d{bottom:187.226667pt;}
.y34{bottom:190.186667pt;}
.y4a{bottom:190.240000pt;}
.y72{bottom:190.266667pt;}
.y89{bottom:200.746667pt;}
.y1c{bottom:201.626667pt;}
.y33{bottom:204.586667pt;}
.y49{bottom:204.640000pt;}
.y88{bottom:215.146667pt;}
.y1b{bottom:216.026667pt;}
.y32{bottom:218.986667pt;}
.y48{bottom:219.040000pt;}
.y87{bottom:229.546667pt;}
.y1a{bottom:230.426667pt;}
.y31{bottom:233.386667pt;}
.y47{bottom:233.440000pt;}
.y69{bottom:233.466667pt;}
.y86{bottom:243.946667pt;}
.y19{bottom:244.826667pt;}
.y30{bottom:247.786667pt;}
.y46{bottom:247.840000pt;}
.y68{bottom:247.866667pt;}
.y85{bottom:258.346667pt;}
.y18{bottom:259.226667pt;}
.y2f{bottom:262.186667pt;}
.y45{bottom:262.240000pt;}
.y67{bottom:262.266667pt;}
.y2e{bottom:276.586667pt;}
.y44{bottom:276.640000pt;}
.y66{bottom:277.306667pt;}
.y2d{bottom:290.986667pt;}
.y43{bottom:291.066667pt;}
.y65{bottom:292.346667pt;}
.y2c{bottom:305.386667pt;}
.y42{bottom:305.466667pt;}
.y64{bottom:306.746667pt;}
.y2b{bottom:319.786667pt;}
.y41{bottom:319.866667pt;}
.y63{bottom:321.226667pt;}
.y2a{bottom:334.186667pt;}
.y62{bottom:336.266667pt;}
.y29{bottom:348.586667pt;}
.y61{bottom:350.666667pt;}
.y83{bottom:351.786667pt;}
.y28{bottom:362.986667pt;}
.y60{bottom:365.706667pt;}
.y80{bottom:366.826667pt;}
.y5f{bottom:380.746667pt;}
.y5e{bottom:395.786667pt;}
.y99{bottom:406.106667pt;}
.y5d{bottom:410.266667pt;}
.y98{bottom:421.146667pt;}
.y5c{bottom:425.306667pt;}
.y5b{bottom:440.346667pt;}
.y26{bottom:451.546667pt;}
.y5a{bottom:454.746667pt;}
.y59{bottom:469.786667pt;}
.y25{bottom:480.986667pt;}
.y58{bottom:484.213333pt;}
.y17{bottom:496.026667pt;}
.y57{bottom:498.693333pt;}
.y56{bottom:513.093333pt;}
.y55{bottom:527.493333pt;}
.y7f{bottom:540.346667pt;}
.y54{bottom:541.893333pt;}
.y71{bottom:555.386667pt;}
.y97{bottom:623.493333pt;}
.y95{bottom:638.533333pt;}
.y52{bottom:642.533333pt;}
.y40{bottom:657.573333pt;}
.y70{bottom:757.733333pt;}
.y16{bottom:767.333333pt;}
.y6b{bottom:772.853333pt;}
.ya1{bottom:779.733333pt;}
.y11{bottom:782.453333pt;}
.y15{bottom:797.493333pt;}
.y14{bottom:812.533333pt;}
.ya0{bottom:822.293333pt;}
.yd{bottom:827.653333pt;}
.y10{bottom:842.693333pt;}
.y9f{bottom:855.813333pt;}
.yc{bottom:857.733333pt;}
.ya{bottom:872.853333pt;}
.y9e{bottom:873.413333pt;}
.y94{bottom:884.053333pt;}
.y9a{bottom:888.053333pt;}
.y90{bottom:899.093333pt;}
.y8{bottom:902.293333pt;}
.y7{bottom:935.840000pt;}
.y6{bottom:959.600000pt;}
.y3{bottom:1009.440000pt;}
.y2{bottom:1043.360000pt;}
.y1{bottom:1061.280000pt;}
.h5{height:14.400000pt;}
.h6{height:28.800000pt;}
.h7{height:29.440000pt;}
.h4{height:44.273438pt;}
.h8{height:44.480000pt;}
.hd{height:49.336436pt;}
.h3{height:53.670469pt;}
.h17{height:54.013594pt;}
.h2{height:58.245469pt;}
.h18{height:78.306094pt;}
.h12{height:89.786667pt;}
.h16{height:100.826667pt;}
.h10{height:172.880000pt;}
.h14{height:201.626667pt;}
.hf{height:201.706667pt;}
.he{height:216.026667pt;}
.h13{height:244.880000pt;}
.h11{height:269.786667pt;}
.h9{height:270.666667pt;}
.h15{height:316.826667pt;}
.hb{height:331.306667pt;}
.ha{height:374.426667pt;}
.hc{height:553.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.746667pt;}
.w6{width:122.266667pt;}
.w7{width:131.680000pt;}
.wa{width:188.346667pt;}
.w8{width:254.506667pt;}
.wb{width:320.666667pt;}
.w9{width:386.826667pt;}
.w5{width:509.733333pt;}
.w3{width:623.120000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x8{left:8.240000pt;}
.xa{left:30.906667pt;}
.xb{left:54.186667pt;}
.xc{left:78.186667pt;}
.x1{left:94.559988pt;}
.x3{left:188.906655pt;}
.x5{left:208.266667pt;}
.x6{left:331.173333pt;}
.x9{left:397.333333pt;}
.x7{left:463.493333pt;}
.x2{left:696.719988pt;}
}




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