
    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_35e2e4d6e415f866205125d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_10c9d27421b917f9364ba4ae.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_e8be1c511edf6c2e8e9f5f16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_674fcf51769b3c50ce0dfdaa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_2fe1c87d5314a200cd4b4a30.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_8ae086ba3d740eeb07f12734.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_f825666103b78b3308ccb0db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951172;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_f9bfbeb59815d5bf874506e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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:ff9;src:url('chunks/assets/font_bade7a65291342a72b1fe672.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3a30a3835b9e77273a024205.woff2')format("woff");}.ffb{font-family:ffb;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;}
.ls1f{letter-spacing:-1.572000px;}
.ls8{letter-spacing:-1.296000px;}
.lsb{letter-spacing:-1.200000px;}
.ls1e{letter-spacing:-0.924000px;}
.ls19{letter-spacing:-0.828000px;}
.lsc{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.552000px;}
.ls13{letter-spacing:-0.372000px;}
.ls4{letter-spacing:-0.276000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls1a{letter-spacing:0.552000px;}
.ls7{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.660000px;}
.ls14{letter-spacing:1.200000px;}
.lse{letter-spacing:1.380000px;}
.ls1d{letter-spacing:4.260000px;}
.lsa{letter-spacing:9.000000px;}
.ls16{letter-spacing:17.400000px;}
.ls15{letter-spacing:17.460000px;}
.ls2{letter-spacing:18.600000px;}
.ls1b{letter-spacing:43.800000px;}
.ls11{letter-spacing:47.400000px;}
.ls6{letter-spacing:48.600000px;}
.ls9{letter-spacing:57.000000px;}
.lsf{letter-spacing:64.200000px;}
.ls18{letter-spacing:151.800000px;}
.ls17{letter-spacing:151.920000px;}
.ls10{letter-spacing:167.448000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-60.000000px;}
.ws9{word-spacing:-21.600000px;}
.ws8{word-spacing:-21.552000px;}
.ws0{word-spacing:-21.000000px;}
.ws6{word-spacing:-20.628000px;}
.ws5{word-spacing:-20.448000px;}
.ws7{word-spacing:-20.172000px;}
.wsa{word-spacing:-20.076000px;}
.ws4{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.704000px;}
.wsb{word-spacing:-19.428000px;}
.ws1{word-spacing:0.000000px;}
._38{margin-left:-48.402000px;}
._21{margin-left:-5.124000px;}
._1b{margin-left:-3.870000px;}
._3{margin-left:-2.412000px;}
._1{margin-left:-1.320000px;}
._0{width:1.650000px;}
._12{width:2.676000px;}
._15{width:3.822000px;}
._1a{width:5.490000px;}
._e{width:6.534000px;}
._10{width:7.638000px;}
._f{width:8.688000px;}
._22{width:9.756000px;}
._d{width:11.616000px;}
._c{width:12.660000px;}
._27{width:13.686000px;}
._23{width:14.772000px;}
._b{width:15.882000px;}
._16{width:17.670000px;}
._14{width:18.708000px;}
._13{width:19.968000px;}
._20{width:22.008000px;}
._2b{width:23.754000px;}
._39{width:24.756000px;}
._11{width:25.848000px;}
._8{width:27.348000px;}
._6{width:28.368000px;}
._7{width:29.460000px;}
._25{width:30.636000px;}
._24{width:32.262000px;}
._a{width:33.288000px;}
._9{width:34.332000px;}
._1c{width:36.174000px;}
._2c{width:37.524000px;}
._3f{width:39.792000px;}
._40{width:41.274000px;}
._41{width:42.774000px;}
._4{width:44.688000px;}
._5{width:46.590000px;}
._34{width:47.604000px;}
._1d{width:48.900000px;}
._1e{width:50.448000px;}
._32{width:51.492000px;}
._31{width:52.680000px;}
._19{width:53.772000px;}
._18{width:55.326000px;}
._17{width:56.688000px;}
._28{width:58.104000px;}
._30{width:60.168000px;}
._33{width:63.186000px;}
._2a{width:65.574000px;}
._29{width:66.756000px;}
._1f{width:67.764000px;}
._42{width:69.180000px;}
._37{width:70.458000px;}
._35{width:71.628000px;}
._36{width:72.642000px;}
._3c{width:74.004000px;}
._2f{width:76.020000px;}
._2e{width:77.322000px;}
._2d{width:78.606000px;}
._48{width:80.652000px;}
._47{width:81.732000px;}
._45{width:90.474000px;}
._46{width:91.746000px;}
._26{width:94.056000px;}
._3a{width:106.008000px;}
._3b{width:108.300000px;}
._3e{width:109.356000px;}
._3d{width:110.604000px;}
._44{width:138.798000px;}
._43{width:140.622000px;}
._2{width:152.124000px;}
._49{width:158.004000px;}
._4a{width:159.252000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:6.300000px;}
.y35{bottom:16.800000px;}
.y30{bottom:16.845000px;}
.y2c{bottom:17.100000px;}
.y49{bottom:17.115000px;}
.y4c{bottom:17.130000px;}
.y45{bottom:17.685000px;}
.y4f{bottom:17.700000px;}
.y4{bottom:31.237500px;}
.y3d{bottom:52.792500px;}
.y34{bottom:53.100000px;}
.y48{bottom:53.115000px;}
.y2b{bottom:53.130000px;}
.y2f{bottom:53.145000px;}
.y40{bottom:53.385000px;}
.y38{bottom:53.400000px;}
.y52{bottom:53.437500px;}
.y4b{bottom:53.445000px;}
.y4e{bottom:53.700000px;}
.y44{bottom:53.985000px;}
.y3{bottom:57.337500px;}
.y33{bottom:89.400000px;}
.y55{bottom:89.430000px;}
.y2e{bottom:89.445000px;}
.y3f{bottom:89.685000px;}
.y37{bottom:89.700000px;}
.y51{bottom:89.737500px;}
.y3c{bottom:106.837500px;}
.y22{bottom:122.737500px;}
.y32{bottom:125.700000px;}
.y54{bottom:125.730000px;}
.y50{bottom:127.537500px;}
.y21{bottom:159.030000px;}
.y3b{bottom:192.375000px;}
.y20{bottom:195.075000px;}
.y1f{bottom:231.375000px;}
.y4d{bottom:249.975000px;}
.y1e{bottom:267.675000px;}
.y1d{bottom:303.675000px;}
.y3a{bottom:314.475000px;}
.y4a{bottom:336.375000px;}
.y1c{bottom:340.005000px;}
.y29{bottom:375.720000px;}
.y1b{bottom:376.320000px;}
.y1a{bottom:412.620000px;}
.y47{bottom:422.505000px;}
.y39{bottom:436.605000px;}
.y19{bottom:448.620000px;}
.y18{bottom:484.920000px;}
.y17{bottom:521.250000px;}
.y58{bottom:539.550000px;}
.y46{bottom:544.650000px;}
.y16{bottom:556.950000px;}
.y26{bottom:557.550000px;}
.y36{bottom:558.750000px;}
.y57{bottom:575.850000px;}
.y15{bottom:593.550000px;}
.y56{bottom:612.150000px;}
.y14{bottom:629.850000px;}
.y53{bottom:631.350000px;}
.y13{bottom:666.150000px;}
.y31{bottom:681.180000px;}
.y12{bottom:702.480000px;}
.y43{bottom:703.095000px;}
.y11{bottom:738.480000px;}
.y10{bottom:774.795000px;}
.y42{bottom:789.780000px;}
.y27{bottom:810.480000px;}
.yf{bottom:811.080000px;}
.y2d{bottom:839.580000px;}
.ye{bottom:847.425000px;}
.y28{bottom:882.825000px;}
.yd{bottom:883.425000px;}
.y41{bottom:911.925000px;}
.yc{bottom:919.725000px;}
.yb{bottom:956.025000px;}
.y2a{bottom:961.725000px;}
.ya{bottom:992.325000px;}
.y9{bottom:1028.355000px;}
.y3e{bottom:1034.070000px;}
.y8{bottom:1064.070000px;}
.y25{bottom:1064.670000px;}
.y7{bottom:1100.370000px;}
.y24{bottom:1100.955000px;}
.y6{bottom:1136.655000px;}
.y23{bottom:1137.255000px;}
.y2{bottom:1185.900000px;}
.y1{bottom:1204.800000px;}
.h5{height:21.900000px;}
.h2{height:46.567383px;}
.h8{height:63.902344px;}
.h4{height:65.645508px;}
.h3{height:66.515625px;}
.h11{height:72.037500px;}
.hc{height:72.337500px;}
.h14{height:72.637500px;}
.h15{height:72.900000px;}
.h12{height:73.200000px;}
.ha{height:74.033203px;}
.h7{height:82.400391px;}
.h9{height:82.441406px;}
.h6{height:84.656250px;}
.hb{height:86.338763px;}
.h10{height:108.600000px;}
.hd{height:108.637500px;}
.hf{height:108.900000px;}
.h16{height:108.937500px;}
.he{height:144.900000px;}
.h13{height:144.937500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:60.000000px;}
.w4{width:680.625000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:4.500000px;}
.xd{left:9.000000px;}
.x5{left:17.400000px;}
.xc{left:117.037500px;}
.x3{left:127.537487px;}
.x1{left:192.374987px;}
.xa{left:223.274987px;}
.x6{left:228.374987px;}
.x2{left:302.504987px;}
.x9{left:323.504987px;}
.xb{left:336.719987px;}
.x4{left:448.650000px;}
.x8{left:466.949987px;}
.x7{left:515.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.397333pt;}
.ls8{letter-spacing:-1.152000pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls1e{letter-spacing:-0.821333pt;}
.ls19{letter-spacing:-0.736000pt;}
.lsc{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.490667pt;}
.ls13{letter-spacing:-0.330667pt;}
.ls4{letter-spacing:-0.245333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls1a{letter-spacing:0.490667pt;}
.ls7{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls14{letter-spacing:1.066667pt;}
.lse{letter-spacing:1.226667pt;}
.ls1d{letter-spacing:3.786667pt;}
.lsa{letter-spacing:8.000000pt;}
.ls16{letter-spacing:15.466667pt;}
.ls15{letter-spacing:15.520000pt;}
.ls2{letter-spacing:16.533333pt;}
.ls1b{letter-spacing:38.933333pt;}
.ls11{letter-spacing:42.133333pt;}
.ls6{letter-spacing:43.200000pt;}
.ls9{letter-spacing:50.666667pt;}
.lsf{letter-spacing:57.066667pt;}
.ls18{letter-spacing:134.933333pt;}
.ls17{letter-spacing:135.040000pt;}
.ls10{letter-spacing:148.842667pt;}
.ws2{word-spacing:-53.333333pt;}
.ws9{word-spacing:-19.200000pt;}
.ws8{word-spacing:-19.157333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws6{word-spacing:-18.336000pt;}
.ws5{word-spacing:-18.176000pt;}
.ws7{word-spacing:-17.930667pt;}
.wsa{word-spacing:-17.845333pt;}
.ws4{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.514667pt;}
.wsb{word-spacing:-17.269333pt;}
.ws1{word-spacing:0.000000pt;}
._38{margin-left:-43.024000pt;}
._21{margin-left:-4.554667pt;}
._1b{margin-left:-3.440000pt;}
._3{margin-left:-2.144000pt;}
._1{margin-left:-1.173333pt;}
._0{width:1.466667pt;}
._12{width:2.378667pt;}
._15{width:3.397333pt;}
._1a{width:4.880000pt;}
._e{width:5.808000pt;}
._10{width:6.789333pt;}
._f{width:7.722667pt;}
._22{width:8.672000pt;}
._d{width:10.325333pt;}
._c{width:11.253333pt;}
._27{width:12.165333pt;}
._23{width:13.130667pt;}
._b{width:14.117333pt;}
._16{width:15.706667pt;}
._14{width:16.629333pt;}
._13{width:17.749333pt;}
._20{width:19.562667pt;}
._2b{width:21.114667pt;}
._39{width:22.005333pt;}
._11{width:22.976000pt;}
._8{width:24.309333pt;}
._6{width:25.216000pt;}
._7{width:26.186667pt;}
._25{width:27.232000pt;}
._24{width:28.677333pt;}
._a{width:29.589333pt;}
._9{width:30.517333pt;}
._1c{width:32.154667pt;}
._2c{width:33.354667pt;}
._3f{width:35.370667pt;}
._40{width:36.688000pt;}
._41{width:38.021333pt;}
._4{width:39.722667pt;}
._5{width:41.413333pt;}
._34{width:42.314667pt;}
._1d{width:43.466667pt;}
._1e{width:44.842667pt;}
._32{width:45.770667pt;}
._31{width:46.826667pt;}
._19{width:47.797333pt;}
._18{width:49.178667pt;}
._17{width:50.389333pt;}
._28{width:51.648000pt;}
._30{width:53.482667pt;}
._33{width:56.165333pt;}
._2a{width:58.288000pt;}
._29{width:59.338667pt;}
._1f{width:60.234667pt;}
._42{width:61.493333pt;}
._37{width:62.629333pt;}
._35{width:63.669333pt;}
._36{width:64.570667pt;}
._3c{width:65.781333pt;}
._2f{width:67.573333pt;}
._2e{width:68.730667pt;}
._2d{width:69.872000pt;}
._48{width:71.690667pt;}
._47{width:72.650667pt;}
._45{width:80.421333pt;}
._46{width:81.552000pt;}
._26{width:83.605333pt;}
._3a{width:94.229333pt;}
._3b{width:96.266667pt;}
._3e{width:97.205333pt;}
._3d{width:98.314667pt;}
._44{width:123.376000pt;}
._43{width:124.997333pt;}
._2{width:135.221333pt;}
._49{width:140.448000pt;}
._4a{width:141.557333pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.600000pt;}
.y35{bottom:14.933333pt;}
.y30{bottom:14.973333pt;}
.y2c{bottom:15.200000pt;}
.y49{bottom:15.213333pt;}
.y4c{bottom:15.226667pt;}
.y45{bottom:15.720000pt;}
.y4f{bottom:15.733333pt;}
.y4{bottom:27.766667pt;}
.y3d{bottom:46.926667pt;}
.y34{bottom:47.200000pt;}
.y48{bottom:47.213333pt;}
.y2b{bottom:47.226667pt;}
.y2f{bottom:47.240000pt;}
.y40{bottom:47.453333pt;}
.y38{bottom:47.466667pt;}
.y52{bottom:47.500000pt;}
.y4b{bottom:47.506667pt;}
.y4e{bottom:47.733333pt;}
.y44{bottom:47.986667pt;}
.y3{bottom:50.966667pt;}
.y33{bottom:79.466667pt;}
.y55{bottom:79.493333pt;}
.y2e{bottom:79.506667pt;}
.y3f{bottom:79.720000pt;}
.y37{bottom:79.733333pt;}
.y51{bottom:79.766667pt;}
.y3c{bottom:94.966667pt;}
.y22{bottom:109.100000pt;}
.y32{bottom:111.733333pt;}
.y54{bottom:111.760000pt;}
.y50{bottom:113.366667pt;}
.y21{bottom:141.360000pt;}
.y3b{bottom:171.000000pt;}
.y20{bottom:173.400000pt;}
.y1f{bottom:205.666667pt;}
.y4d{bottom:222.200000pt;}
.y1e{bottom:237.933333pt;}
.y1d{bottom:269.933333pt;}
.y3a{bottom:279.533333pt;}
.y4a{bottom:299.000000pt;}
.y1c{bottom:302.226667pt;}
.y29{bottom:333.973333pt;}
.y1b{bottom:334.506667pt;}
.y1a{bottom:366.773333pt;}
.y47{bottom:375.560000pt;}
.y39{bottom:388.093333pt;}
.y19{bottom:398.773333pt;}
.y18{bottom:431.040000pt;}
.y17{bottom:463.333333pt;}
.y58{bottom:479.600000pt;}
.y46{bottom:484.133333pt;}
.y16{bottom:495.066667pt;}
.y26{bottom:495.600000pt;}
.y36{bottom:496.666667pt;}
.y57{bottom:511.866667pt;}
.y15{bottom:527.600000pt;}
.y56{bottom:544.133333pt;}
.y14{bottom:559.866667pt;}
.y53{bottom:561.200000pt;}
.y13{bottom:592.133333pt;}
.y31{bottom:605.493333pt;}
.y12{bottom:624.426667pt;}
.y43{bottom:624.973333pt;}
.y11{bottom:656.426667pt;}
.y10{bottom:688.706667pt;}
.y42{bottom:702.026667pt;}
.y27{bottom:720.426667pt;}
.yf{bottom:720.960000pt;}
.y2d{bottom:746.293333pt;}
.ye{bottom:753.266667pt;}
.y28{bottom:784.733333pt;}
.yd{bottom:785.266667pt;}
.y41{bottom:810.600000pt;}
.yc{bottom:817.533333pt;}
.yb{bottom:849.800000pt;}
.y2a{bottom:854.866667pt;}
.ya{bottom:882.066667pt;}
.y9{bottom:914.093333pt;}
.y3e{bottom:919.173333pt;}
.y8{bottom:945.840000pt;}
.y25{bottom:946.373333pt;}
.y7{bottom:978.106667pt;}
.y24{bottom:978.626667pt;}
.y6{bottom:1010.360000pt;}
.y23{bottom:1010.893333pt;}
.y2{bottom:1054.133333pt;}
.y1{bottom:1070.933333pt;}
.h5{height:19.466667pt;}
.h2{height:41.393229pt;}
.h8{height:56.802083pt;}
.h4{height:58.351562pt;}
.h3{height:59.125000pt;}
.h11{height:64.033333pt;}
.hc{height:64.300000pt;}
.h14{height:64.566667pt;}
.h15{height:64.800000pt;}
.h12{height:65.066667pt;}
.ha{height:65.807292pt;}
.h7{height:73.244792pt;}
.h9{height:73.281250pt;}
.h6{height:75.250000pt;}
.hb{height:76.745567pt;}
.h10{height:96.533333pt;}
.hd{height:96.566667pt;}
.hf{height:96.800000pt;}
.h16{height:96.833333pt;}
.he{height:128.800000pt;}
.h13{height:128.833333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:53.333333pt;}
.w4{width:605.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:4.000000pt;}
.xd{left:8.000000pt;}
.x5{left:15.466667pt;}
.xc{left:104.033333pt;}
.x3{left:113.366655pt;}
.x1{left:170.999988pt;}
.xa{left:198.466655pt;}
.x6{left:202.999988pt;}
.x2{left:268.893322pt;}
.x9{left:287.559988pt;}
.xb{left:299.306655pt;}
.x4{left:398.800000pt;}
.x8{left:415.066655pt;}
.x7{left:458.266655pt;}
}




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