
    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_70d10ca677aca0672c9968eb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c9c83fd1181e48cb9d36571b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b4a2e3a2a8d9edc4dcb04bfe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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;}
.ls6{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.360000px;}
.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:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-5.112000px;}
._e{margin-left:-3.960000px;}
._b{margin-left:-2.952000px;}
._5{margin-left:-1.872000px;}
._2{width:1.008000px;}
._1{width:2.160000px;}
._3{width:3.960000px;}
._4{width:5.544000px;}
._14{width:6.768000px;}
._13{width:7.920000px;}
._8{width:9.360000px;}
._9{width:11.304000px;}
._a{width:12.456000px;}
._d{width:13.560000px;}
._7{width:15.336000px;}
._6{width:16.416000px;}
._c{width:19.008000px;}
._1e{width:20.016000px;}
._1b{width:21.600000px;}
._1a{width:22.824000px;}
._22{width:23.904000px;}
._1d{width:24.984000px;}
._1c{width:25.992000px;}
._29{width:27.072000px;}
._12{width:28.296000px;}
._10{width:29.880000px;}
._11{width:31.248000px;}
._25{width:37.872000px;}
._23{width:40.032000px;}
._24{width:41.040000px;}
._2d{width:42.120000px;}
._2e{width:43.344000px;}
._1f{width:44.784000px;}
._20{width:45.864000px;}
._28{width:47.376000px;}
._27{width:48.384000px;}
._21{width:53.784000px;}
._17{width:78.816000px;}
._19{width:87.624000px;}
._2c{width:100.440000px;}
._2b{width:101.664000px;}
._2a{width:124.848000px;}
._2f{width:232.128000px;}
._26{width:236.448000px;}
._18{width:347.040000px;}
._16{width:408.456000px;}
._0{width:846.120000px;}
._15{width:1218.216000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:47.880000px;}
.fs2{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:115.740000px;}
.y60{bottom:117.540000px;}
.yb3{bottom:128.790000px;}
.y7b{bottom:131.580000px;}
.y32{bottom:133.020000px;}
.y31{bottom:138.240000px;}
.yc5{bottom:139.500000px;}
.yb8{bottom:148.590000px;}
.yb2{bottom:152.640000px;}
.y7a{bottom:155.430000px;}
.y5f{bottom:162.360000px;}
.yc4{bottom:163.350000px;}
.y8c{bottom:168.030000px;}
.y4a{bottom:173.880000px;}
.y30{bottom:175.050000px;}
.yb1{bottom:176.400000px;}
.y79{bottom:179.190000px;}
.ya0{bottom:181.980000px;}
.y5e{bottom:186.120000px;}
.yea{bottom:191.700000px;}
.y8b{bottom:191.790000px;}
.yb7{bottom:193.410000px;}
.y49{bottom:194.850000px;}
.yb0{bottom:200.160000px;}
.y48{bottom:201.600000px;}
.y78{bottom:203.040000px;}
.y9f{bottom:205.830000px;}
.yc3{bottom:208.170000px;}
.ye9{bottom:215.580000px;}
.y2f{bottom:215.670000px;}
.y77{bottom:226.830000px;}
.y9e{bottom:229.620000px;}
.y5d{bottom:230.970000px;}
.yb6{bottom:238.260000px;}
.ye8{bottom:239.340000px;}
.y2e{bottom:239.430000px;}
.y47{bottom:239.700000px;}
.yaf{bottom:245.010000px;}
.yc2{bottom:252.930000px;}
.y5c{bottom:254.730000px;}
.y2d{bottom:263.190000px;}
.yae{bottom:268.860000px;}
.y76{bottom:271.650000px;}
.y9d{bottom:274.440000px;}
.y5b{bottom:278.580000px;}
.y8a{bottom:284.250000px;}
.ye7{bottom:286.950000px;}
.y2c{bottom:287.040000px;}
.y10{bottom:290.370000px;}
.yad{bottom:292.620000px;}
.yc1{bottom:293.970000px;}
.y75{bottom:295.410000px;}
.y9c{bottom:298.290000px;}
.y5a{bottom:302.340000px;}
.ye6{bottom:310.800000px;}
.y74{bottom:319.260000px;}
.yf2{bottom:323.310000px;}
.y46{bottom:323.490000px;}
.y89{bottom:329.070000px;}
.y2b{bottom:331.860000px;}
.yf{bottom:335.190000px;}
.yac{bottom:337.440000px;}
.y73{bottom:343.020000px;}
.y59{bottom:347.160000px;}
.y45{bottom:347.340000px;}
.ye5{bottom:355.620000px;}
.yab{bottom:361.290000px;}
.y72{bottom:366.870000px;}
.yf1{bottom:368.130000px;}
.y58{bottom:371.010000px;}
.y44{bottom:371.100000px;}
.y88{bottom:373.800000px;}
.y2a{bottom:376.680000px;}
.ye4{bottom:379.380000px;}
.ye{bottom:380.010000px;}
.y9b{bottom:387.840000px;}
.y71{bottom:390.630000px;}
.y57{bottom:394.770000px;}
.y87{bottom:397.650000px;}
.y29{bottom:400.440000px;}
.ye3{bottom:403.230000px;}
.yaa{bottom:406.020000px;}
.y9a{bottom:411.690000px;}
.yf0{bottom:412.860000px;}
.y43{bottom:415.920000px;}
.y56{bottom:418.620000px;}
.y28{bottom:424.290000px;}
.yd{bottom:424.740000px;}
.ye2{bottom:426.990000px;}
.ya9{bottom:429.870000px;}
.y70{bottom:435.450000px;}
.y55{bottom:442.380000px;}
.y86{bottom:442.470000px;}
.y27{bottom:448.050000px;}
.y99{bottom:456.420000px;}
.y42{bottom:456.870000px;}
.ycf{bottom:457.050000px;}
.yef{bottom:457.680000px;}
.y6f{bottom:459.300000px;}
.y54{bottom:466.230000px;}
.yc{bottom:469.560000px;}
.y26{bottom:471.810000px;}
.ya8{bottom:474.690000px;}
.yce{bottom:480.810000px;}
.y53{bottom:489.990000px;}
.y85{bottom:490.080000px;}
.ye1{bottom:495.570000px;}
.y25{bottom:495.660000px;}
.y98{bottom:501.240000px;}
.yee{bottom:502.500000px;}
.y6e{bottom:504.030000px;}
.ycd{bottom:504.660000px;}
.ydc{bottom:512.490000px;}
.y52{bottom:513.750000px;}
.y84{bottom:513.840000px;}
.yb{bottom:514.380000px;}
.ya7{bottom:519.420000px;}
.yed{bottom:526.350000px;}
.ycc{bottom:528.420000px;}
.y24{bottom:540.480000px;}
.y97{bottom:546.060000px;}
.y6d{bottom:548.850000px;}
.ydb{bottom:557.310000px;}
.y51{bottom:558.570000px;}
.y83{bottom:558.660000px;}
.ya{bottom:559.200000px;}
.y23{bottom:564.240000px;}
.yec{bottom:571.080000px;}
.ycb{bottom:573.240000px;}
.y50{bottom:582.420000px;}
.ya6{bottom:588.090000px;}
.yc0{bottom:590.250000px;}
.y96{bottom:590.880000px;}
.y6c{bottom:593.670000px;}
.yca{bottom:597.000000px;}
.yda{bottom:602.040000px;}
.y9{bottom:604.020000px;}
.y4f{bottom:606.180000px;}
.y82{bottom:606.270000px;}
.ye0{bottom:608.970000px;}
.y22{bottom:609.060000px;}
.ya5{bottom:611.850000px;}
.yeb{bottom:612.030000px;}
.ybf{bottom:614.100000px;}
.y4e{bottom:630.030000px;}
.ydf{bottom:632.850000px;}
.y21{bottom:632.940000px;}
.y95{bottom:635.730000px;}
.y6b{bottom:638.520000px;}
.yc9{bottom:641.850000px;}
.yd9{bottom:646.890000px;}
.y8{bottom:648.780000px;}
.y81{bottom:651.120000px;}
.yde{bottom:656.610000px;}
.ya4{bottom:656.700000px;}
.ybe{bottom:658.950000px;}
.y94{bottom:659.490000px;}
.y7{bottom:672.630000px;}
.y4d{bottom:674.880000px;}
.y20{bottom:677.670000px;}
.ya3{bottom:680.460000px;}
.ybd{bottom:682.710000px;}
.y6a{bottom:683.340000px;}
.yc8{bottom:686.670000px;}
.yd8{bottom:691.710000px;}
.y80{bottom:695.940000px;}
.y6{bottom:696.390000px;}
.ydd{bottom:697.560000px;}
.y93{bottom:704.310000px;}
.y4c{bottom:719.610000px;}
.y1f{bottom:722.490000px;}
.yb5{bottom:725.280000px;}
.ybc{bottom:727.530000px;}
.yc7{bottom:727.620000px;}
.y69{bottom:728.070000px;}
.yd7{bottom:736.530000px;}
.y7f{bottom:740.670000px;}
.y5{bottom:741.210000px;}
.y1e{bottom:746.340000px;}
.y92{bottom:749.130000px;}
.y68{bottom:751.920000px;}
.y4b{bottom:760.560000px;}
.y41{bottom:761.730000px;}
.y7e{bottom:764.520000px;}
.ybb{bottom:772.350000px;}
.ya2{bottom:772.890000px;}
.yd6{bottom:781.350000px;}
.y40{bottom:785.490000px;}
.y4{bottom:786.030000px;}
.y7d{bottom:788.280000px;}
.y1d{bottom:791.070000px;}
.y91{bottom:793.950000px;}
.yba{bottom:796.110000px;}
.y67{bottom:796.740000px;}
.y3f{bottom:809.340000px;}
.y7c{bottom:812.130000px;}
.y90{bottom:817.710000px;}
.y66{bottom:820.500000px;}
.yd5{bottom:826.080000px;}
.y3{bottom:830.850000px;}
.y3e{bottom:833.100000px;}
.y1c{bottom:835.890000px;}
.yb9{bottom:837.060000px;}
.y8f{bottom:841.560000px;}
.y65{bottom:844.350000px;}
.y1b{bottom:859.740000px;}
.yb4{bottom:865.320000px;}
.yd4{bottom:870.900000px;}
.y2{bottom:875.670000px;}
.y3d{bottom:877.920000px;}
.y1a{bottom:883.500000px;}
.y8e{bottom:886.290000px;}
.y64{bottom:889.080000px;}
.y1{bottom:895.560000px;}
.y3c{bottom:901.680000px;}
.y19{bottom:907.350000px;}
.y8d{bottom:910.140000px;}
.yd3{bottom:915.720000px;}
.y3b{bottom:925.530000px;}
.y63{bottom:933.900000px;}
.y3a{bottom:949.290000px;}
.y18{bottom:952.080000px;}
.ya1{bottom:954.960000px;}
.yd2{bottom:960.540000px;}
.y39{bottom:973.140000px;}
.y17{bottom:975.930000px;}
.y62{bottom:978.720000px;}
.y38{bottom:996.900000px;}
.y16{bottom:999.690000px;}
.y61{bottom:1002.570000px;}
.yd1{bottom:1005.360000px;}
.y37{bottom:1020.750000px;}
.y15{bottom:1023.540000px;}
.y36{bottom:1044.510000px;}
.y14{bottom:1047.300000px;}
.yd0{bottom:1050.180000px;}
.y35{bottom:1068.390000px;}
.y13{bottom:1071.180000px;}
.y34{bottom:1092.150000px;}
.y12{bottom:1094.940000px;}
.y33{bottom:1116.000000px;}
.y11{bottom:1139.760000px;}
.h4{height:38.158594px;}
.h7{height:46.991602px;}
.h5{height:59.004492px;}
.h6{height:64.546875px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:180.749987px;}
.x11{left:185.609987px;}
.x15{left:186.779987px;}
.x5{left:202.799987px;}
.x6{left:212.789987px;}
.x3{left:234.029987px;}
.xb{left:278.579987px;}
.xa{left:343.289987px;}
.x4{left:354.809987px;}
.x9{left:356.789987px;}
.x7{left:372.749987px;}
.x10{left:396.779987px;}
.xc{left:404.699987px;}
.x8{left:412.709987px;}
.x2{left:456.269987px;}
.x19{left:527.279987px;}
.x1a{left:587.579987px;}
.x1{left:630.629987px;}
.x12{left:649.799973px;}
.x18{left:651.059987px;}
.x13{left:658.799987px;}
.xe{left:669.059973px;}
.xf{left:678.059987px;}
.x1b{left:734.309987px;}
.x1c{left:747.809987px;}
.x17{left:754.559987px;}
.x16{left:765.809987px;}
.x14{left:818.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.320000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-4.544000pt;}
._e{margin-left:-3.520000pt;}
._b{margin-left:-2.624000pt;}
._5{margin-left:-1.664000pt;}
._2{width:0.896000pt;}
._1{width:1.920000pt;}
._3{width:3.520000pt;}
._4{width:4.928000pt;}
._14{width:6.016000pt;}
._13{width:7.040000pt;}
._8{width:8.320000pt;}
._9{width:10.048000pt;}
._a{width:11.072000pt;}
._d{width:12.053333pt;}
._7{width:13.632000pt;}
._6{width:14.592000pt;}
._c{width:16.896000pt;}
._1e{width:17.792000pt;}
._1b{width:19.200000pt;}
._1a{width:20.288000pt;}
._22{width:21.248000pt;}
._1d{width:22.208000pt;}
._1c{width:23.104000pt;}
._29{width:24.064000pt;}
._12{width:25.152000pt;}
._10{width:26.560000pt;}
._11{width:27.776000pt;}
._25{width:33.664000pt;}
._23{width:35.584000pt;}
._24{width:36.480000pt;}
._2d{width:37.440000pt;}
._2e{width:38.528000pt;}
._1f{width:39.808000pt;}
._20{width:40.768000pt;}
._28{width:42.112000pt;}
._27{width:43.008000pt;}
._21{width:47.808000pt;}
._17{width:70.058667pt;}
._19{width:77.888000pt;}
._2c{width:89.280000pt;}
._2b{width:90.368000pt;}
._2a{width:110.976000pt;}
._2f{width:206.336000pt;}
._26{width:210.176000pt;}
._18{width:308.480000pt;}
._16{width:363.072000pt;}
._0{width:752.106667pt;}
._15{width:1082.858667pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.560000pt;}
.fs2{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:102.880000pt;}
.y60{bottom:104.480000pt;}
.yb3{bottom:114.480000pt;}
.y7b{bottom:116.960000pt;}
.y32{bottom:118.240000pt;}
.y31{bottom:122.880000pt;}
.yc5{bottom:124.000000pt;}
.yb8{bottom:132.080000pt;}
.yb2{bottom:135.680000pt;}
.y7a{bottom:138.160000pt;}
.y5f{bottom:144.320000pt;}
.yc4{bottom:145.200000pt;}
.y8c{bottom:149.360000pt;}
.y4a{bottom:154.560000pt;}
.y30{bottom:155.600000pt;}
.yb1{bottom:156.800000pt;}
.y79{bottom:159.280000pt;}
.ya0{bottom:161.760000pt;}
.y5e{bottom:165.440000pt;}
.yea{bottom:170.400000pt;}
.y8b{bottom:170.480000pt;}
.yb7{bottom:171.920000pt;}
.y49{bottom:173.200000pt;}
.yb0{bottom:177.920000pt;}
.y48{bottom:179.200000pt;}
.y78{bottom:180.480000pt;}
.y9f{bottom:182.960000pt;}
.yc3{bottom:185.040000pt;}
.ye9{bottom:191.626667pt;}
.y2f{bottom:191.706667pt;}
.y77{bottom:201.626667pt;}
.y9e{bottom:204.106667pt;}
.y5d{bottom:205.306667pt;}
.yb6{bottom:211.786667pt;}
.ye8{bottom:212.746667pt;}
.y2e{bottom:212.826667pt;}
.y47{bottom:213.066667pt;}
.yaf{bottom:217.786667pt;}
.yc2{bottom:224.826667pt;}
.y5c{bottom:226.426667pt;}
.y2d{bottom:233.946667pt;}
.yae{bottom:238.986667pt;}
.y76{bottom:241.466667pt;}
.y9d{bottom:243.946667pt;}
.y5b{bottom:247.626667pt;}
.y8a{bottom:252.666667pt;}
.ye7{bottom:255.066667pt;}
.y2c{bottom:255.146667pt;}
.y10{bottom:258.106667pt;}
.yad{bottom:260.106667pt;}
.yc1{bottom:261.306667pt;}
.y75{bottom:262.586667pt;}
.y9c{bottom:265.146667pt;}
.y5a{bottom:268.746667pt;}
.ye6{bottom:276.266667pt;}
.y74{bottom:283.786667pt;}
.yf2{bottom:287.386667pt;}
.y46{bottom:287.546667pt;}
.y89{bottom:292.506667pt;}
.y2b{bottom:294.986667pt;}
.yf{bottom:297.946667pt;}
.yac{bottom:299.946667pt;}
.y73{bottom:304.906667pt;}
.y59{bottom:308.586667pt;}
.y45{bottom:308.746667pt;}
.ye5{bottom:316.106667pt;}
.yab{bottom:321.146667pt;}
.y72{bottom:326.106667pt;}
.yf1{bottom:327.226667pt;}
.y58{bottom:329.786667pt;}
.y44{bottom:329.866667pt;}
.y88{bottom:332.266667pt;}
.y2a{bottom:334.826667pt;}
.ye4{bottom:337.226667pt;}
.ye{bottom:337.786667pt;}
.y9b{bottom:344.746667pt;}
.y71{bottom:347.226667pt;}
.y57{bottom:350.906667pt;}
.y87{bottom:353.466667pt;}
.y29{bottom:355.946667pt;}
.ye3{bottom:358.426667pt;}
.yaa{bottom:360.906667pt;}
.y9a{bottom:365.946667pt;}
.yf0{bottom:366.986667pt;}
.y43{bottom:369.706667pt;}
.y56{bottom:372.106667pt;}
.y28{bottom:377.146667pt;}
.yd{bottom:377.546667pt;}
.ye2{bottom:379.546667pt;}
.ya9{bottom:382.106667pt;}
.y70{bottom:387.066667pt;}
.y55{bottom:393.226667pt;}
.y86{bottom:393.306667pt;}
.y27{bottom:398.266667pt;}
.y99{bottom:405.706667pt;}
.y42{bottom:406.106667pt;}
.ycf{bottom:406.266667pt;}
.yef{bottom:406.826667pt;}
.y6f{bottom:408.266667pt;}
.y54{bottom:414.426667pt;}
.yc{bottom:417.386667pt;}
.y26{bottom:419.386667pt;}
.ya8{bottom:421.946667pt;}
.yce{bottom:427.386667pt;}
.y53{bottom:435.546667pt;}
.y85{bottom:435.626667pt;}
.ye1{bottom:440.506667pt;}
.y25{bottom:440.586667pt;}
.y98{bottom:445.546667pt;}
.yee{bottom:446.666667pt;}
.y6e{bottom:448.026667pt;}
.ycd{bottom:448.586667pt;}
.ydc{bottom:455.546667pt;}
.y52{bottom:456.666667pt;}
.y84{bottom:456.746667pt;}
.yb{bottom:457.226667pt;}
.ya7{bottom:461.706667pt;}
.yed{bottom:467.866667pt;}
.ycc{bottom:469.706667pt;}
.y24{bottom:480.426667pt;}
.y97{bottom:485.386667pt;}
.y6d{bottom:487.866667pt;}
.ydb{bottom:495.386667pt;}
.y51{bottom:496.506667pt;}
.y83{bottom:496.586667pt;}
.ya{bottom:497.066667pt;}
.y23{bottom:501.546667pt;}
.yec{bottom:507.626667pt;}
.ycb{bottom:509.546667pt;}
.y50{bottom:517.706667pt;}
.ya6{bottom:522.746667pt;}
.yc0{bottom:524.666667pt;}
.y96{bottom:525.226667pt;}
.y6c{bottom:527.706667pt;}
.yca{bottom:530.666667pt;}
.yda{bottom:535.146667pt;}
.y9{bottom:536.906667pt;}
.y4f{bottom:538.826667pt;}
.y82{bottom:538.906667pt;}
.ye0{bottom:541.306667pt;}
.y22{bottom:541.386667pt;}
.ya5{bottom:543.866667pt;}
.yeb{bottom:544.026667pt;}
.ybf{bottom:545.866667pt;}
.y4e{bottom:560.026667pt;}
.ydf{bottom:562.533333pt;}
.y21{bottom:562.613333pt;}
.y95{bottom:565.093333pt;}
.y6b{bottom:567.573333pt;}
.yc9{bottom:570.533333pt;}
.yd9{bottom:575.013333pt;}
.y8{bottom:576.693333pt;}
.y81{bottom:578.773333pt;}
.yde{bottom:583.653333pt;}
.ya4{bottom:583.733333pt;}
.ybe{bottom:585.733333pt;}
.y94{bottom:586.213333pt;}
.y7{bottom:597.893333pt;}
.y4d{bottom:599.893333pt;}
.y20{bottom:602.373333pt;}
.ya3{bottom:604.853333pt;}
.ybd{bottom:606.853333pt;}
.y6a{bottom:607.413333pt;}
.yc8{bottom:610.373333pt;}
.yd8{bottom:614.853333pt;}
.y80{bottom:618.613333pt;}
.y6{bottom:619.013333pt;}
.ydd{bottom:620.053333pt;}
.y93{bottom:626.053333pt;}
.y4c{bottom:639.653333pt;}
.y1f{bottom:642.213333pt;}
.yb5{bottom:644.693333pt;}
.ybc{bottom:646.693333pt;}
.yc7{bottom:646.773333pt;}
.y69{bottom:647.173333pt;}
.yd7{bottom:654.693333pt;}
.y7f{bottom:658.373333pt;}
.y5{bottom:658.853333pt;}
.y1e{bottom:663.413333pt;}
.y92{bottom:665.893333pt;}
.y68{bottom:668.373333pt;}
.y4b{bottom:676.053333pt;}
.y41{bottom:677.093333pt;}
.y7e{bottom:679.573333pt;}
.ybb{bottom:686.533333pt;}
.ya2{bottom:687.013333pt;}
.yd6{bottom:694.533333pt;}
.y40{bottom:698.213333pt;}
.y4{bottom:698.693333pt;}
.y7d{bottom:700.693333pt;}
.y1d{bottom:703.173333pt;}
.y91{bottom:705.733333pt;}
.yba{bottom:707.653333pt;}
.y67{bottom:708.213333pt;}
.y3f{bottom:719.413333pt;}
.y7c{bottom:721.893333pt;}
.y90{bottom:726.853333pt;}
.y66{bottom:729.333333pt;}
.yd5{bottom:734.293333pt;}
.y3{bottom:738.533333pt;}
.y3e{bottom:740.533333pt;}
.y1c{bottom:743.013333pt;}
.yb9{bottom:744.053333pt;}
.y8f{bottom:748.053333pt;}
.y65{bottom:750.533333pt;}
.y1b{bottom:764.213333pt;}
.yb4{bottom:769.173333pt;}
.yd4{bottom:774.133333pt;}
.y2{bottom:778.373333pt;}
.y3d{bottom:780.373333pt;}
.y1a{bottom:785.333333pt;}
.y8e{bottom:787.813333pt;}
.y64{bottom:790.293333pt;}
.y1{bottom:796.053333pt;}
.y3c{bottom:801.493333pt;}
.y19{bottom:806.533333pt;}
.y8d{bottom:809.013333pt;}
.yd3{bottom:813.973333pt;}
.y3b{bottom:822.693333pt;}
.y63{bottom:830.133333pt;}
.y3a{bottom:843.813333pt;}
.y18{bottom:846.293333pt;}
.ya1{bottom:848.853333pt;}
.yd2{bottom:853.813333pt;}
.y39{bottom:865.013333pt;}
.y17{bottom:867.493333pt;}
.y62{bottom:869.973333pt;}
.y38{bottom:886.133333pt;}
.y16{bottom:888.613333pt;}
.y61{bottom:891.173333pt;}
.yd1{bottom:893.653333pt;}
.y37{bottom:907.333333pt;}
.y15{bottom:909.813333pt;}
.y36{bottom:928.453333pt;}
.y14{bottom:930.933333pt;}
.yd0{bottom:933.493333pt;}
.y35{bottom:949.680000pt;}
.y13{bottom:952.160000pt;}
.y34{bottom:970.800000pt;}
.y12{bottom:973.280000pt;}
.y33{bottom:992.000000pt;}
.y11{bottom:1013.120000pt;}
.h4{height:33.918750pt;}
.h7{height:41.770312pt;}
.h5{height:52.448437pt;}
.h6{height:57.375000pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:160.666655pt;}
.x11{left:164.986655pt;}
.x15{left:166.026655pt;}
.x5{left:180.266655pt;}
.x6{left:189.146655pt;}
.x3{left:208.026655pt;}
.xb{left:247.626655pt;}
.xa{left:305.146655pt;}
.x4{left:315.386655pt;}
.x9{left:317.146655pt;}
.x7{left:331.333322pt;}
.x10{left:352.693322pt;}
.xc{left:359.733322pt;}
.x8{left:366.853322pt;}
.x2{left:405.573322pt;}
.x19{left:468.693322pt;}
.x1a{left:522.293322pt;}
.x1{left:560.559988pt;}
.x12{left:577.599976pt;}
.x18{left:578.719988pt;}
.x13{left:585.599988pt;}
.xe{left:594.719976pt;}
.xf{left:602.719988pt;}
.x1b{left:652.719988pt;}
.x1c{left:664.719988pt;}
.x17{left:670.719988pt;}
.x16{left:680.719988pt;}
.x14{left:727.599988pt;}
}




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