
    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_85b9fd277c0e25591c9e4af4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.381348;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_90c447854535122478f7f92f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_da0bd048a6ee4a5defd13480.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.325195;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_c85f4e86c0de061874aed370.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.152344;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_51cb50cd9985c6f2eab50559.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083984;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_51978ebe2cb254f83c198a85.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.381348;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_a0cfe553c5dbae0ddb1a603e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.152344;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:33.120000px;}
.lsa{letter-spacing:-0.453000px;}
.lsb{letter-spacing:-0.313200px;}
.lsf{letter-spacing:-0.276000px;}
.ls19{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.043920px;}
.ls9{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.006480px;}
.ls14{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.024120px;}
.ls13{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.046800px;}
.ls3{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.057240px;}
.ls4{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.082200px;}
.ls1{letter-spacing:0.083880px;}
.ls7{letter-spacing:0.084000px;}
.ls11{letter-spacing:0.115800px;}
.ls15{letter-spacing:0.124920px;}
.ls5{letter-spacing:0.133200px;}
.ls18{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.180000px;}
.lse{letter-spacing:0.417000px;}
.ls8{letter-spacing:13.344120px;}
.ls6{letter-spacing:14.483880px;}
.ls16{letter-spacing:23.140080px;}
.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;}
}
.ws0{word-spacing:-32.292000px;}
.ws2{word-spacing:-25.778880px;}
.wsd{word-spacing:-23.256000px;}
.ws7{word-spacing:-20.779920px;}
.ws3{word-spacing:-18.022680px;}
.ws1{word-spacing:-17.975880px;}
.wsa{word-spacing:-17.931960px;}
.ws4{word-spacing:-17.662680px;}
.wse{word-spacing:-16.164000px;}
.wsc{word-spacing:-16.146000px;}
.ws8{word-spacing:-14.398320px;}
.ws9{word-spacing:-14.370120px;}
.ws5{word-spacing:-14.316120px;}
.ws6{word-spacing:-8.934120px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-1.022040px;}
._2{width:1.154880px;}
._6{width:2.392920px;}
._a{width:3.975600px;}
._b{width:5.052360px;}
._9{width:6.102360px;}
._8{width:7.373520px;}
._f{width:11.122200px;}
._10{width:12.268680px;}
._11{width:13.286520px;}
._3{width:14.492520px;}
._7{width:15.956400px;}
._5{width:17.428320px;}
._4{width:18.673200px;}
._12{width:20.067600px;}
._14{width:21.818040px;}
._13{width:22.980000px;}
._15{width:23.992920px;}
._e{width:143.028720px;}
._c{width:174.629520px;}
._d{width:198.203880px;}
._0{width:382.344120px;}
.fc1{color:rgb(34,34,38);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:11.880000px;}
.fs9{font-size:18.000000px;}
.fsa{font-size:24.120000px;}
.fs7{font-size:29.880000px;}
.fs8{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fsd{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:78.120000px;}
.fs6{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.y79{bottom:-0.093000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.510000px;}
.y80{bottom:5.130000px;}
.y7e{bottom:5.220000px;}
.y9{bottom:7.830000px;}
.y3{bottom:11.250000px;}
.y7b{bottom:20.340000px;}
.y2{bottom:27.720000px;}
.y8{bottom:42.030000px;}
.yc{bottom:57.240000px;}
.y7{bottom:63.000000px;}
.yb{bottom:77.940000px;}
.y6{bottom:82.080000px;}
.y4{bottom:92.160000px;}
.y5{bottom:95.670000px;}
.y41{bottom:100.260000px;}
.y7a{bottom:106.470000px;}
.y40{bottom:117.900000px;}
.y77{bottom:126.810000px;}
.y3f{bottom:138.960000px;}
.y76{bottom:147.780000px;}
.y78{bottom:149.493000px;}
.y3e{bottom:159.840000px;}
.y75{bottom:168.660000px;}
.y3d{bottom:180.720000px;}
.y74{bottom:189.540000px;}
.y3c{bottom:201.690000px;}
.y73{bottom:210.420000px;}
.y3b{bottom:222.600000px;}
.y72{bottom:231.420000px;}
.y3a{bottom:243.480000px;}
.y71{bottom:252.300000px;}
.y39{bottom:264.180000px;}
.y70{bottom:273.180000px;}
.y38{bottom:285.150000px;}
.y6f{bottom:294.060000px;}
.y37{bottom:306.210000px;}
.y6e{bottom:315.030000px;}
.y36{bottom:326.910000px;}
.y6d{bottom:335.910000px;}
.y35{bottom:347.790000px;}
.y6c{bottom:356.790000px;}
.y34{bottom:368.760000px;}
.y6b{bottom:377.670000px;}
.y33{bottom:389.820000px;}
.y6a{bottom:398.640000px;}
.y32{bottom:410.700000px;}
.y69{bottom:419.520000px;}
.y31{bottom:431.580000px;}
.y68{bottom:440.400000px;}
.y7d{bottom:448.230000px;}
.y30{bottom:452.550000px;}
.y67{bottom:461.280000px;}
.y2f{bottom:473.250000px;}
.y7f{bottom:480.720000px;}
.y66{bottom:482.250000px;}
.y2e{bottom:494.310000px;}
.y65{bottom:503.130000px;}
.y2d{bottom:511.590000px;}
.y2c{bottom:520.590000px;}
.y64{bottom:523.200000px;}
.y63{bottom:540.390000px;}
.y2b{bottom:544.620000px;}
.y2a{bottom:556.410000px;}
.y62{bottom:559.110000px;}
.y29{bottom:566.580000px;}
.y61{bottom:577.920000px;}
.y28{bottom:583.320000px;}
.y60{bottom:596.730000px;}
.y27{bottom:598.170000px;}
.y26{bottom:608.250000px;}
.y5f{bottom:614.190000px;}
.y25{bottom:623.280000px;}
.y5e{bottom:628.140000px;}
.y24{bottom:633.390000px;}
.y5d{bottom:646.890000px;}
.y23{bottom:650.220000px;}
.y5c{bottom:664.440000px;}
.y22{bottom:666.960000px;}
.y5b{bottom:678.300000px;}
.y21{bottom:683.520000px;}
.y5a{bottom:697.200000px;}
.y20{bottom:700.350000px;}
.y59{bottom:716.010000px;}
.y1f{bottom:717.000000px;}
.y58{bottom:733.380000px;}
.y1e{bottom:734.010000px;}
.y57{bottom:747.240000px;}
.y1d{bottom:751.470000px;}
.y56{bottom:766.140000px;}
.y1c{bottom:768.300000px;}
.y1b{bottom:784.950000px;}
.y1a{bottom:801.780000px;}
.y55{bottom:802.410000px;}
.y54{bottom:816.270000px;}
.y19{bottom:818.340000px;}
.y18{bottom:835.170000px;}
.y17{bottom:852.720000px;}
.y53{bottom:853.980000px;}
.y52{bottom:871.350000px;}
.y16{bottom:871.800000px;}
.y51{bottom:885.300000px;}
.y15{bottom:890.520000px;}
.y14{bottom:902.130000px;}
.y50{bottom:904.020000px;}
.y4f{bottom:921.480000px;}
.y13{bottom:924.990000px;}
.y4e{bottom:935.520000px;}
.y12{bottom:942.630000px;}
.y4d{bottom:954.240000px;}
.y11{bottom:955.950000px;}
.y4c{bottom:971.700000px;}
.y10{bottom:979.440000px;}
.y4b{bottom:981.600000px;}
.yf{bottom:1000.590000px;}
.y4a{bottom:1007.790000px;}
.y49{bottom:1030.650000px;}
.ye{bottom:1034.070000px;}
.y48{bottom:1046.850000px;}
.yd{bottom:1064.160000px;}
.y47{bottom:1067.760000px;}
.ya{bottom:1082.340000px;}
.y46{bottom:1087.200000px;}
.y45{bottom:1098.720000px;}
.y1{bottom:1098.900000px;}
.y44{bottom:1124.910000px;}
.y43{bottom:1148.760000px;}
.y42{bottom:1172.610000px;}
.h13{height:13.011152px;}
.h1a{height:24.930000px;}
.h19{height:25.020000px;}
.h10{height:26.416582px;}
.hd{height:32.725020px;}
.h18{height:33.388500px;}
.hc{height:36.273516px;}
.h7{height:39.427734px;}
.h14{height:46.130449px;}
.h6{height:49.469766px;}
.h5{height:50.273438px;}
.h15{height:52.223379px;}
.he{height:52.438887px;}
.hf{height:52.817344px;}
.h9{height:55.987383px;}
.h16{height:59.141602px;}
.h3{height:65.844316px;}
.h11{height:78.855469px;}
.h12{height:85.558184px;}
.hb{height:85.558887px;}
.ha{height:105.272051px;}
.h2{height:108.717000px;}
.h4{height:108.720000px;}
.h8{height:111.585938px;}
.h17{height:368.040000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:31.500000px;}
.w6{width:33.750000px;}
.w3{width:42.570000px;}
.w2{width:337.740000px;}
.w4{width:367.320000px;}
.w5{width:558.330000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x16{left:10.800000px;}
.x9{left:14.310000px;}
.x3{left:20.340000px;}
.x8{left:60.120000px;}
.x1{left:72.720000px;}
.xa{left:80.820000px;}
.xd{left:98.820000px;}
.x13{left:122.520000px;}
.x12{left:133.950000px;}
.x2{left:174.630000px;}
.x11{left:187.050000px;}
.x10{left:248.610000px;}
.x7{left:259.680000px;}
.xf{left:262.470000px;}
.x14{left:295.770000px;}
.x4{left:410.460000px;}
.xe{left:422.610000px;}
.xc{left:446.550000px;}
.x6{left:453.030000px;}
.x15{left:547.530000px;}
.xb{left:785.340000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:29.440000pt;}
.lsa{letter-spacing:-0.402667pt;}
.lsb{letter-spacing:-0.278400pt;}
.lsf{letter-spacing:-0.245333pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.039040pt;}
.ls9{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.005760pt;}
.ls14{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.021440pt;}
.ls13{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.041600pt;}
.ls3{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.050880pt;}
.ls4{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.073067pt;}
.ls1{letter-spacing:0.074560pt;}
.ls7{letter-spacing:0.074667pt;}
.ls11{letter-spacing:0.102933pt;}
.ls15{letter-spacing:0.111040pt;}
.ls5{letter-spacing:0.118400pt;}
.ls18{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.370667pt;}
.ls8{letter-spacing:11.861440pt;}
.ls6{letter-spacing:12.874560pt;}
.ls16{letter-spacing:20.568960pt;}
.ws0{word-spacing:-28.704000pt;}
.ws2{word-spacing:-22.914560pt;}
.wsd{word-spacing:-20.672000pt;}
.ws7{word-spacing:-18.471040pt;}
.ws3{word-spacing:-16.020160pt;}
.ws1{word-spacing:-15.978560pt;}
.wsa{word-spacing:-15.939520pt;}
.ws4{word-spacing:-15.700160pt;}
.wse{word-spacing:-14.368000pt;}
.wsc{word-spacing:-14.352000pt;}
.ws8{word-spacing:-12.798507pt;}
.ws9{word-spacing:-12.773440pt;}
.ws5{word-spacing:-12.725440pt;}
.ws6{word-spacing:-7.941440pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-0.908480pt;}
._2{width:1.026560pt;}
._6{width:2.127040pt;}
._a{width:3.533867pt;}
._b{width:4.490987pt;}
._9{width:5.424320pt;}
._8{width:6.554240pt;}
._f{width:9.886400pt;}
._10{width:10.905493pt;}
._11{width:11.810240pt;}
._3{width:12.882240pt;}
._7{width:14.183467pt;}
._5{width:15.491840pt;}
._4{width:16.598400pt;}
._12{width:17.837867pt;}
._14{width:19.393813pt;}
._13{width:20.426667pt;}
._15{width:21.327040pt;}
._e{width:127.136640pt;}
._c{width:155.226240pt;}
._d{width:176.181227pt;}
._0{width:339.861440pt;}
.fsc{font-size:10.560000pt;}
.fs9{font-size:16.000000pt;}
.fsa{font-size:21.440000pt;}
.fs7{font-size:26.560000pt;}
.fs8{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fsd{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:69.440000pt;}
.fs6{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.y79{bottom:-0.082667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.120000pt;}
.y80{bottom:4.560000pt;}
.y7e{bottom:4.640000pt;}
.y9{bottom:6.960000pt;}
.y3{bottom:10.000000pt;}
.y7b{bottom:18.080000pt;}
.y2{bottom:24.640000pt;}
.y8{bottom:37.360000pt;}
.yc{bottom:50.880000pt;}
.y7{bottom:56.000000pt;}
.yb{bottom:69.280000pt;}
.y6{bottom:72.960000pt;}
.y4{bottom:81.920000pt;}
.y5{bottom:85.040000pt;}
.y41{bottom:89.120000pt;}
.y7a{bottom:94.640000pt;}
.y40{bottom:104.800000pt;}
.y77{bottom:112.720000pt;}
.y3f{bottom:123.520000pt;}
.y76{bottom:131.360000pt;}
.y78{bottom:132.882667pt;}
.y3e{bottom:142.080000pt;}
.y75{bottom:149.920000pt;}
.y3d{bottom:160.640000pt;}
.y74{bottom:168.480000pt;}
.y3c{bottom:179.280000pt;}
.y73{bottom:187.040000pt;}
.y3b{bottom:197.866667pt;}
.y72{bottom:205.706667pt;}
.y3a{bottom:216.426667pt;}
.y71{bottom:224.266667pt;}
.y39{bottom:234.826667pt;}
.y70{bottom:242.826667pt;}
.y38{bottom:253.466667pt;}
.y6f{bottom:261.386667pt;}
.y37{bottom:272.186667pt;}
.y6e{bottom:280.026667pt;}
.y36{bottom:290.586667pt;}
.y6d{bottom:298.586667pt;}
.y35{bottom:309.146667pt;}
.y6c{bottom:317.146667pt;}
.y34{bottom:327.786667pt;}
.y6b{bottom:335.706667pt;}
.y33{bottom:346.506667pt;}
.y6a{bottom:354.346667pt;}
.y32{bottom:365.066667pt;}
.y69{bottom:372.906667pt;}
.y31{bottom:383.626667pt;}
.y68{bottom:391.466667pt;}
.y7d{bottom:398.426667pt;}
.y30{bottom:402.266667pt;}
.y67{bottom:410.026667pt;}
.y2f{bottom:420.666667pt;}
.y7f{bottom:427.306667pt;}
.y66{bottom:428.666667pt;}
.y2e{bottom:439.386667pt;}
.y65{bottom:447.226667pt;}
.y2d{bottom:454.746667pt;}
.y2c{bottom:462.746667pt;}
.y64{bottom:465.066667pt;}
.y63{bottom:480.346667pt;}
.y2b{bottom:484.106667pt;}
.y2a{bottom:494.586667pt;}
.y62{bottom:496.986667pt;}
.y29{bottom:503.626667pt;}
.y61{bottom:513.706667pt;}
.y28{bottom:518.506667pt;}
.y60{bottom:530.426667pt;}
.y27{bottom:531.706667pt;}
.y26{bottom:540.666667pt;}
.y5f{bottom:545.946667pt;}
.y25{bottom:554.026667pt;}
.y5e{bottom:558.346667pt;}
.y24{bottom:563.013333pt;}
.y5d{bottom:575.013333pt;}
.y23{bottom:577.973333pt;}
.y5c{bottom:590.613333pt;}
.y22{bottom:592.853333pt;}
.y5b{bottom:602.933333pt;}
.y21{bottom:607.573333pt;}
.y5a{bottom:619.733333pt;}
.y20{bottom:622.533333pt;}
.y59{bottom:636.453333pt;}
.y1f{bottom:637.333333pt;}
.y58{bottom:651.893333pt;}
.y1e{bottom:652.453333pt;}
.y57{bottom:664.213333pt;}
.y1d{bottom:667.973333pt;}
.y56{bottom:681.013333pt;}
.y1c{bottom:682.933333pt;}
.y1b{bottom:697.733333pt;}
.y1a{bottom:712.693333pt;}
.y55{bottom:713.253333pt;}
.y54{bottom:725.573333pt;}
.y19{bottom:727.413333pt;}
.y18{bottom:742.373333pt;}
.y17{bottom:757.973333pt;}
.y53{bottom:759.093333pt;}
.y52{bottom:774.533333pt;}
.y16{bottom:774.933333pt;}
.y51{bottom:786.933333pt;}
.y15{bottom:791.573333pt;}
.y14{bottom:801.893333pt;}
.y50{bottom:803.573333pt;}
.y4f{bottom:819.093333pt;}
.y13{bottom:822.213333pt;}
.y4e{bottom:831.573333pt;}
.y12{bottom:837.893333pt;}
.y4d{bottom:848.213333pt;}
.y11{bottom:849.733333pt;}
.y4c{bottom:863.733333pt;}
.y10{bottom:870.613333pt;}
.y4b{bottom:872.533333pt;}
.yf{bottom:889.413333pt;}
.y4a{bottom:895.813333pt;}
.y49{bottom:916.133333pt;}
.ye{bottom:919.173333pt;}
.y48{bottom:930.533333pt;}
.yd{bottom:945.920000pt;}
.y47{bottom:949.120000pt;}
.ya{bottom:962.080000pt;}
.y46{bottom:966.400000pt;}
.y45{bottom:976.640000pt;}
.y1{bottom:976.800000pt;}
.y44{bottom:999.920000pt;}
.y43{bottom:1021.120000pt;}
.y42{bottom:1042.320000pt;}
.h13{height:11.565469pt;}
.h1a{height:22.160000pt;}
.h19{height:22.240000pt;}
.h10{height:23.481406pt;}
.hd{height:29.088906pt;}
.h18{height:29.678667pt;}
.hc{height:32.243125pt;}
.h7{height:35.046875pt;}
.h14{height:41.004844pt;}
.h6{height:43.973125pt;}
.h5{height:44.687500pt;}
.h15{height:46.420781pt;}
.he{height:46.612344pt;}
.hf{height:46.948750pt;}
.h9{height:49.766562pt;}
.h16{height:52.570312pt;}
.h3{height:58.528281pt;}
.h11{height:70.093750pt;}
.h12{height:76.051719pt;}
.hb{height:76.052344pt;}
.ha{height:93.575156pt;}
.h2{height:96.637333pt;}
.h4{height:96.640000pt;}
.h8{height:99.187500pt;}
.h17{height:327.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:28.000000pt;}
.w6{width:30.000000pt;}
.w3{width:37.840000pt;}
.w2{width:300.213333pt;}
.w4{width:326.506667pt;}
.w5{width:496.293333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x16{left:9.600000pt;}
.x9{left:12.720000pt;}
.x3{left:18.080000pt;}
.x8{left:53.440000pt;}
.x1{left:64.640000pt;}
.xa{left:71.840000pt;}
.xd{left:87.840000pt;}
.x13{left:108.906667pt;}
.x12{left:119.066667pt;}
.x2{left:155.226667pt;}
.x11{left:166.266667pt;}
.x10{left:220.986667pt;}
.x7{left:230.826667pt;}
.xf{left:233.306667pt;}
.x14{left:262.906667pt;}
.x4{left:364.853333pt;}
.xe{left:375.653333pt;}
.xc{left:396.933333pt;}
.x6{left:402.693333pt;}
.x15{left:486.693333pt;}
.xb{left:698.080000pt;}
}




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