
    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_a9a6b54a5a0d5b7560e56dbb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c05d0baae4fd70bb89c282b1.woff')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_7faf1f551c3be944f27de218.woff')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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_82929c5d60c4ece6e2eeef37.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_df6ff0d3966bcb3bd16ce152.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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;}
.ls5{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.576000px;}
.ls7{letter-spacing:6.480000px;}
.ls1{letter-spacing:33.984000px;}
.ls3{letter-spacing:54.864000px;}
.ls4{letter-spacing:64.026720px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-59.760000px;}
.ws6{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-4.824000px;}
._8{margin-left:-3.384000px;}
._6{margin-left:-2.304000px;}
._0{margin-left:-1.080000px;}
._1{width:1.560000px;}
._19{width:2.592000px;}
._b{width:3.600000px;}
._3{width:5.544000px;}
._2{width:6.624000px;}
._10{width:7.704000px;}
._c{width:9.432000px;}
._9{width:10.584000px;}
._a{width:11.736000px;}
._d{width:13.224000px;}
._e{width:14.544000px;}
._f{width:15.984000px;}
._5{width:16.992000px;}
._4{width:19.236000px;}
._1a{width:20.880000px;}
._18{width:21.960000px;}
._11{width:23.328000px;}
._12{width:24.360000px;}
._17{width:25.728000px;}
._1d{width:26.832000px;}
._1e{width:28.812000px;}
._1b{width:30.096000px;}
._1c{width:31.272000px;}
._15{width:32.472000px;}
._16{width:33.696000px;}
._21{width:34.992000px;}
._1f{width:36.422400px;}
._20{width:38.916000px;}
._23{width:40.380000px;}
._13{width:51.912000px;}
._14{width:52.932000px;}
._22{width:73.656000px;}
._24{width:846.300000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:7.020000px;}
.ya7{bottom:7.200000px;}
.ya9{bottom:30.780000px;}
.yac{bottom:30.960000px;}
.yae{bottom:30.990000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y29{bottom:107.136000px;}
.y83{bottom:109.116000px;}
.y96{bottom:111.996000px;}
.y6d{bottom:116.136000px;}
.ya3{bottom:123.876000px;}
.ybb{bottom:129.816000px;}
.y28{bottom:131.076000px;}
.y82{bottom:132.876000px;}
.y4a{bottom:135.936000px;}
.y6c{bottom:140.076000px;}
.ya2{bottom:147.816000px;}
.yba{bottom:153.750000px;}
.y27{bottom:154.830000px;}
.y81{bottom:156.810000px;}
.y49{bottom:159.690000px;}
.y6b{bottom:163.830000px;}
.ya1{bottom:171.570000px;}
.yb9{bottom:177.510000px;}
.y26{bottom:178.590000px;}
.y80{bottom:180.570000px;}
.y48{bottom:183.450000px;}
.y6a{bottom:187.590000px;}
.ya0{bottom:195.330000px;}
.yb8{bottom:201.270000px;}
.y25{bottom:202.350000px;}
.y47{bottom:203.610000px;}
.y7f{bottom:204.330000px;}
.y95{bottom:207.210000px;}
.y69{bottom:211.350000px;}
.y46{bottom:219.090000px;}
.yb7{bottom:225.030000px;}
.y24{bottom:226.110000px;}
.y7e{bottom:228.090000px;}
.y94{bottom:231.150000px;}
.y68{bottom:235.110000px;}
.y45{bottom:243.030000px;}
.yb6{bottom:248.790000px;}
.y23{bottom:250.050000px;}
.y7d{bottom:252.030000px;}
.y93{bottom:254.910000px;}
.y67{bottom:260.310000px;}
.y44{bottom:266.790000px;}
.yb5{bottom:272.730000px;}
.y22{bottom:273.810000px;}
.y92{bottom:275.070000px;}
.y7c{bottom:275.790000px;}
.y66{bottom:284.070000px;}
.y9f{bottom:286.950000px;}
.y43{bottom:290.550000px;}
.yb4{bottom:296.535000px;}
.y21{bottom:297.615000px;}
.y7b{bottom:299.595000px;}
.y9e{bottom:302.475000px;}
.y65{bottom:308.055000px;}
.y42{bottom:314.355000px;}
.yb3{bottom:320.295000px;}
.y20{bottom:321.375000px;}
.y7a{bottom:323.355000px;}
.y9d{bottom:326.415000px;}
.y64{bottom:331.815000px;}
.y41{bottom:334.695000px;}
.y91{bottom:338.295000px;}
.yb2{bottom:340.455000px;}
.y1f{bottom:345.315000px;}
.y79{bottom:347.295000px;}
.yb1{bottom:349.635000px;}
.y40{bottom:350.175000px;}
.y63{bottom:355.575000px;}
.y90{bottom:362.055000px;}
.y1e{bottom:369.075000px;}
.y78{bottom:371.055000px;}
.y3f{bottom:373.935000px;}
.y62{bottom:379.155000px;}
.y8f{bottom:385.815000px;}
.y1d{bottom:392.835000px;}
.y77{bottom:394.815000px;}
.y3e{bottom:397.695000px;}
.yb0{bottom:398.055000px;}
.y61{bottom:404.535000px;}
.y8e{bottom:409.575000px;}
.y76{bottom:414.615000px;}
.y1c{bottom:416.595000px;}
.y3d{bottom:421.455000px;}
.y60{bottom:428.295000px;}
.y8d{bottom:433.515000px;}
.y1b{bottom:436.935000px;}
.y3c{bottom:445.395000px;}
.yaf{bottom:446.475000px;}
.y5f{bottom:452.055000px;}
.y1a{bottom:452.415000px;}
.ybf{bottom:453.675000px;}
.y8c{bottom:457.275000px;}
.y3b{bottom:469.155000px;}
.y5e{bottom:475.815000px;}
.y19{bottom:476.175000px;}
.y8b{bottom:481.035000px;}
.y3a{bottom:492.915000px;}
.yad{bottom:494.715000px;}
.y18{bottom:496.335000px;}
.y5d{bottom:499.755000px;}
.y8a{bottom:504.795000px;}
.y17{bottom:511.815000px;}
.y39{bottom:516.675000px;}
.y5c{bottom:523.545000px;}
.ybd{bottom:524.985000px;}
.y89{bottom:528.765000px;}
.y16{bottom:535.785000px;}
.y38{bottom:540.645000px;}
.yab{bottom:543.165000px;}
.y5b{bottom:547.125000px;}
.y88{bottom:552.525000px;}
.y15{bottom:559.545000px;}
.y37{bottom:564.405000px;}
.y5a{bottom:572.325000px;}
.y87{bottom:576.285000px;}
.y14{bottom:583.305000px;}
.y36{bottom:588.165000px;}
.ya8{bottom:591.585000px;}
.y59{bottom:596.265000px;}
.y86{bottom:600.045000px;}
.y13{bottom:607.065000px;}
.y35{bottom:611.925000px;}
.y58{bottom:620.025000px;}
.y85{bottom:623.985000px;}
.y12{bottom:631.005000px;}
.y34{bottom:635.865000px;}
.ya6{bottom:639.825000px;}
.y57{bottom:643.785000px;}
.y84{bottom:647.745000px;}
.y11{bottom:654.765000px;}
.y33{bottom:659.625000px;}
.y56{bottom:667.545000px;}
.y75{bottom:671.505000px;}
.y10{bottom:678.525000px;}
.y32{bottom:683.385000px;}
.ya5{bottom:691.665000px;}
.y55{bottom:692.745000px;}
.y74{bottom:695.265000px;}
.yf{bottom:702.285000px;}
.y31{bottom:707.145000px;}
.y54{bottom:716.505000px;}
.y73{bottom:719.025000px;}
.ye{bottom:726.045000px;}
.y30{bottom:731.085000px;}
.y53{bottom:740.265000px;}
.y72{bottom:742.965000px;}
.yd{bottom:749.985000px;}
.y2f{bottom:754.890000px;}
.y52{bottom:764.250000px;}
.y71{bottom:766.770000px;}
.yc{bottom:773.790000px;}
.y2e{bottom:778.650000px;}
.y51{bottom:787.830000px;}
.y70{bottom:790.530000px;}
.yb{bottom:797.550000px;}
.y2d{bottom:802.410000px;}
.y50{bottom:813.030000px;}
.y6f{bottom:814.290000px;}
.ya{bottom:821.310000px;}
.ya4{bottom:822.570000px;}
.y2c{bottom:826.350000px;}
.y4f{bottom:836.790000px;}
.y6e{bottom:838.230000px;}
.y9{bottom:845.250000px;}
.y2b{bottom:846.510000px;}
.y9c{bottom:850.110000px;}
.y4e{bottom:860.730000px;}
.y2a{bottom:861.990000px;}
.y8{bottom:865.410000px;}
.ybe{bottom:870.270000px;}
.y9b{bottom:873.870000px;}
.y4d{bottom:884.490000px;}
.y7{bottom:885.750000px;}
.ybc{bottom:894.030000px;}
.y9a{bottom:897.630000px;}
.y4c{bottom:908.250000px;}
.y6{bottom:909.510000px;}
.y99{bottom:921.390000px;}
.y4b{bottom:932.010000px;}
.y5{bottom:933.450000px;}
.y98{bottom:945.330000px;}
.y4{bottom:957.210000px;}
.y97{bottom:965.490000px;}
.y3{bottom:980.970000px;}
.h7{height:23.940000px;}
.h5{height:25.400391px;}
.h6{height:32.273438px;}
.h8{height:47.520000px;}
.h9{height:47.700000px;}
.ha{height:47.736000px;}
.h3{height:50.800781px;}
.h4{height:64.546875px;}
.h2{height:67.824844px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w3{width:201.090000px;}
.w4{width:380.595000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x8{left:95.075988px;}
.x9{left:122.075988px;}
.xa{left:149.075988px;}
.x7{left:171.029988px;}
.x4{left:190.649988px;}
.xd{left:297.615000px;}
.x5{left:313.994988px;}
.x6{left:315.614988px;}
.x3{left:330.914988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.xb{left:605.489988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls7{letter-spacing:5.760000pt;}
.ls1{letter-spacing:30.208000pt;}
.ls3{letter-spacing:48.768000pt;}
.ls4{letter-spacing:56.912640pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws6{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-4.288000pt;}
._8{margin-left:-3.008000pt;}
._6{margin-left:-2.048000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.386667pt;}
._19{width:2.304000pt;}
._b{width:3.200000pt;}
._3{width:4.928000pt;}
._2{width:5.888000pt;}
._10{width:6.848000pt;}
._c{width:8.384000pt;}
._9{width:9.408000pt;}
._a{width:10.432000pt;}
._d{width:11.754667pt;}
._e{width:12.928000pt;}
._f{width:14.208000pt;}
._5{width:15.104000pt;}
._4{width:17.098667pt;}
._1a{width:18.560000pt;}
._18{width:19.520000pt;}
._11{width:20.736000pt;}
._12{width:21.653333pt;}
._17{width:22.869333pt;}
._1d{width:23.850667pt;}
._1e{width:25.610667pt;}
._1b{width:26.752000pt;}
._1c{width:27.797333pt;}
._15{width:28.864000pt;}
._16{width:29.952000pt;}
._21{width:31.104000pt;}
._1f{width:32.375467pt;}
._20{width:34.592000pt;}
._23{width:35.893333pt;}
._13{width:46.144000pt;}
._14{width:47.050667pt;}
._22{width:65.472000pt;}
._24{width:752.266667pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:6.240000pt;}
.ya7{bottom:6.400000pt;}
.ya9{bottom:27.360000pt;}
.yac{bottom:27.520000pt;}
.yae{bottom:27.546667pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y29{bottom:95.232000pt;}
.y83{bottom:96.992000pt;}
.y96{bottom:99.552000pt;}
.y6d{bottom:103.232000pt;}
.ya3{bottom:110.112000pt;}
.ybb{bottom:115.392000pt;}
.y28{bottom:116.512000pt;}
.y82{bottom:118.112000pt;}
.y4a{bottom:120.832000pt;}
.y6c{bottom:124.512000pt;}
.ya2{bottom:131.392000pt;}
.yba{bottom:136.666667pt;}
.y27{bottom:137.626667pt;}
.y81{bottom:139.386667pt;}
.y49{bottom:141.946667pt;}
.y6b{bottom:145.626667pt;}
.ya1{bottom:152.506667pt;}
.yb9{bottom:157.786667pt;}
.y26{bottom:158.746667pt;}
.y80{bottom:160.506667pt;}
.y48{bottom:163.066667pt;}
.y6a{bottom:166.746667pt;}
.ya0{bottom:173.626667pt;}
.yb8{bottom:178.906667pt;}
.y25{bottom:179.866667pt;}
.y47{bottom:180.986667pt;}
.y7f{bottom:181.626667pt;}
.y95{bottom:184.186667pt;}
.y69{bottom:187.866667pt;}
.y46{bottom:194.746667pt;}
.yb7{bottom:200.026667pt;}
.y24{bottom:200.986667pt;}
.y7e{bottom:202.746667pt;}
.y94{bottom:205.466667pt;}
.y68{bottom:208.986667pt;}
.y45{bottom:216.026667pt;}
.yb6{bottom:221.146667pt;}
.y23{bottom:222.266667pt;}
.y7d{bottom:224.026667pt;}
.y93{bottom:226.586667pt;}
.y67{bottom:231.386667pt;}
.y44{bottom:237.146667pt;}
.yb5{bottom:242.426667pt;}
.y22{bottom:243.386667pt;}
.y92{bottom:244.506667pt;}
.y7c{bottom:245.146667pt;}
.y66{bottom:252.506667pt;}
.y9f{bottom:255.066667pt;}
.y43{bottom:258.266667pt;}
.yb4{bottom:263.586667pt;}
.y21{bottom:264.546667pt;}
.y7b{bottom:266.306667pt;}
.y9e{bottom:268.866667pt;}
.y65{bottom:273.826667pt;}
.y42{bottom:279.426667pt;}
.yb3{bottom:284.706667pt;}
.y20{bottom:285.666667pt;}
.y7a{bottom:287.426667pt;}
.y9d{bottom:290.146667pt;}
.y64{bottom:294.946667pt;}
.y41{bottom:297.506667pt;}
.y91{bottom:300.706667pt;}
.yb2{bottom:302.626667pt;}
.y1f{bottom:306.946667pt;}
.y79{bottom:308.706667pt;}
.yb1{bottom:310.786667pt;}
.y40{bottom:311.266667pt;}
.y63{bottom:316.066667pt;}
.y90{bottom:321.826667pt;}
.y1e{bottom:328.066667pt;}
.y78{bottom:329.826667pt;}
.y3f{bottom:332.386667pt;}
.y62{bottom:337.026667pt;}
.y8f{bottom:342.946667pt;}
.y1d{bottom:349.186667pt;}
.y77{bottom:350.946667pt;}
.y3e{bottom:353.506667pt;}
.yb0{bottom:353.826667pt;}
.y61{bottom:359.586667pt;}
.y8e{bottom:364.066667pt;}
.y76{bottom:368.546667pt;}
.y1c{bottom:370.306667pt;}
.y3d{bottom:374.626667pt;}
.y60{bottom:380.706667pt;}
.y8d{bottom:385.346667pt;}
.y1b{bottom:388.386667pt;}
.y3c{bottom:395.906667pt;}
.yaf{bottom:396.866667pt;}
.y5f{bottom:401.826667pt;}
.y1a{bottom:402.146667pt;}
.ybf{bottom:403.266667pt;}
.y8c{bottom:406.466667pt;}
.y3b{bottom:417.026667pt;}
.y5e{bottom:422.946667pt;}
.y19{bottom:423.266667pt;}
.y8b{bottom:427.586667pt;}
.y3a{bottom:438.146667pt;}
.yad{bottom:439.746667pt;}
.y18{bottom:441.186667pt;}
.y5d{bottom:444.226667pt;}
.y8a{bottom:448.706667pt;}
.y17{bottom:454.946667pt;}
.y39{bottom:459.266667pt;}
.y5c{bottom:465.373333pt;}
.ybd{bottom:466.653333pt;}
.y89{bottom:470.013333pt;}
.y16{bottom:476.253333pt;}
.y38{bottom:480.573333pt;}
.yab{bottom:482.813333pt;}
.y5b{bottom:486.333333pt;}
.y88{bottom:491.133333pt;}
.y15{bottom:497.373333pt;}
.y37{bottom:501.693333pt;}
.y5a{bottom:508.733333pt;}
.y87{bottom:512.253333pt;}
.y14{bottom:518.493333pt;}
.y36{bottom:522.813333pt;}
.ya8{bottom:525.853333pt;}
.y59{bottom:530.013333pt;}
.y86{bottom:533.373333pt;}
.y13{bottom:539.613333pt;}
.y35{bottom:543.933333pt;}
.y58{bottom:551.133333pt;}
.y85{bottom:554.653333pt;}
.y12{bottom:560.893333pt;}
.y34{bottom:565.213333pt;}
.ya6{bottom:568.733333pt;}
.y57{bottom:572.253333pt;}
.y84{bottom:575.773333pt;}
.y11{bottom:582.013333pt;}
.y33{bottom:586.333333pt;}
.y56{bottom:593.373333pt;}
.y75{bottom:596.893333pt;}
.y10{bottom:603.133333pt;}
.y32{bottom:607.453333pt;}
.ya5{bottom:614.813333pt;}
.y55{bottom:615.773333pt;}
.y74{bottom:618.013333pt;}
.yf{bottom:624.253333pt;}
.y31{bottom:628.573333pt;}
.y54{bottom:636.893333pt;}
.y73{bottom:639.133333pt;}
.ye{bottom:645.373333pt;}
.y30{bottom:649.853333pt;}
.y53{bottom:658.013333pt;}
.y72{bottom:660.413333pt;}
.yd{bottom:666.653333pt;}
.y2f{bottom:671.013333pt;}
.y52{bottom:679.333333pt;}
.y71{bottom:681.573333pt;}
.yc{bottom:687.813333pt;}
.y2e{bottom:692.133333pt;}
.y51{bottom:700.293333pt;}
.y70{bottom:702.693333pt;}
.yb{bottom:708.933333pt;}
.y2d{bottom:713.253333pt;}
.y50{bottom:722.693333pt;}
.y6f{bottom:723.813333pt;}
.ya{bottom:730.053333pt;}
.ya4{bottom:731.173333pt;}
.y2c{bottom:734.533333pt;}
.y4f{bottom:743.813333pt;}
.y6e{bottom:745.093333pt;}
.y9{bottom:751.333333pt;}
.y2b{bottom:752.453333pt;}
.y9c{bottom:755.653333pt;}
.y4e{bottom:765.093333pt;}
.y2a{bottom:766.213333pt;}
.y8{bottom:769.253333pt;}
.ybe{bottom:773.573333pt;}
.y9b{bottom:776.773333pt;}
.y4d{bottom:786.213333pt;}
.y7{bottom:787.333333pt;}
.ybc{bottom:794.693333pt;}
.y9a{bottom:797.893333pt;}
.y4c{bottom:807.333333pt;}
.y6{bottom:808.453333pt;}
.y99{bottom:819.013333pt;}
.y4b{bottom:828.453333pt;}
.y5{bottom:829.733333pt;}
.y98{bottom:840.293333pt;}
.y4{bottom:850.853333pt;}
.y97{bottom:858.213333pt;}
.y3{bottom:871.973333pt;}
.h7{height:21.280000pt;}
.h5{height:22.578125pt;}
.h6{height:28.687500pt;}
.h8{height:42.240000pt;}
.h9{height:42.400000pt;}
.ha{height:42.432000pt;}
.h3{height:45.156250pt;}
.h4{height:57.375000pt;}
.h2{height:60.288750pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w3{width:178.746667pt;}
.w4{width:338.306667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x8{left:84.511990pt;}
.x9{left:108.511990pt;}
.xa{left:132.511990pt;}
.x7{left:152.026656pt;}
.x4{left:169.466656pt;}
.xd{left:264.546667pt;}
.x5{left:279.106656pt;}
.x6{left:280.546656pt;}
.x3{left:294.146656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.xb{left:538.213323pt;}
}




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