
    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_3e88c78e8c5b59e53a32a2b0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_80169e0980f6603d16e8b57a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_878e819aab53b2485b14dc3c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f0d87c920c5780c7a4c74cdf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_ad87ea9bdcc1a4fe5f422168.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_782ceefc12988d782ec738e6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9804e8e48ada71e4a67cdeca.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902344;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_46fd3966bf48dc3a5c381d77.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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;}
.ls17{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000001px;}
.ls8{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.720000px;}
.ls15{letter-spacing:2.088000px;}
.ls13{letter-spacing:2.808000px;}
.ls0{letter-spacing:3.528000px;}
.ls2{letter-spacing:4.968000px;}
.lsc{letter-spacing:9.288000px;}
.ls1d{letter-spacing:10.008000px;}
.ls1c{letter-spacing:10.188000px;}
.ls10{letter-spacing:11.448000px;}
.ls12{letter-spacing:12.168000px;}
.lsb{letter-spacing:13.608000px;}
.lsf{letter-spacing:15.768000px;}
.lsd{letter-spacing:15.948000px;}
.ls1b{letter-spacing:18.648000px;}
.ls3{letter-spacing:19.368000px;}
.ls14{letter-spacing:20.808000px;}
.lsa{letter-spacing:25.128000px;}
.ls5{letter-spacing:37.368000px;}
.ls1{letter-spacing:39.528000px;}
.ls1a{letter-spacing:51.768000px;}
.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:-20.304000px;}
.ws7{word-spacing:-20.232001px;}
.ws1{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.944000px;}
.ws6{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.784000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-5.400000px;}
._a{margin-left:-3.528000px;}
._c{margin-left:-2.520000px;}
._2{margin-left:-1.080000px;}
._4{width:1.164000px;}
._6{width:2.520000px;}
._7{width:3.744000px;}
._3{width:4.896000px;}
._f{width:6.048000px;}
._e{width:7.200000px;}
._19{width:8.856000px;}
._24{width:9.864000px;}
._1f{width:11.016000px;}
._12{width:12.024000px;}
._1a{width:13.536000px;}
._5{width:14.544000px;}
._11{width:15.768000px;}
._10{width:17.676000px;}
._d{width:19.056000px;}
._14{width:21.312000px;}
._22{width:22.968000px;}
._18{width:24.120000px;}
._13{width:25.632000px;}
._b{width:26.784000px;}
._17{width:28.584000px;}
._1d{width:30.456000px;}
._1e{width:31.584000px;}
._1b{width:32.904000px;}
._1c{width:34.044000px;}
._23{width:35.076000px;}
._9{width:37.692000px;}
._8{width:39.348000px;}
._25{width:40.608000px;}
._26{width:41.772000px;}
._21{width:50.916000px;}
._20{width:52.056000px;}
._16{width:53.928000px;}
._0{width:175.260000px;}
._1{width:423.300000px;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.836000px;}
.y1{bottom:68.256000px;}
.y28{bottom:88.416000px;}
.y27{bottom:111.096000px;}
.y24{bottom:116.316000px;}
.ya0{bottom:132.876000px;}
.y4a{bottom:143.136000px;}
.y23{bottom:146.736000px;}
.y85{bottom:151.050000px;}
.yac{bottom:153.210000px;}
.y9f{bottom:163.110000px;}
.y49{bottom:173.190000px;}
.yab{bottom:173.370000px;}
.y22{bottom:176.790000px;}
.y84{bottom:181.290000px;}
.y69{bottom:182.910000px;}
.y9e{bottom:193.350000px;}
.yaa{bottom:193.530000px;}
.y48{bottom:203.610000px;}
.y21{bottom:207.030000px;}
.y83{bottom:211.530000px;}
.y68{bottom:213.150000px;}
.ya9{bottom:213.690000px;}
.y9d{bottom:223.590000px;}
.y47{bottom:233.850000px;}
.y20{bottom:237.270000px;}
.y82{bottom:241.770000px;}
.y67{bottom:243.390000px;}
.ya8{bottom:243.930000px;}
.y9c{bottom:253.830000px;}
.y46{bottom:264.090000px;}
.y1f{bottom:267.510000px;}
.y81{bottom:272.010000px;}
.y66{bottom:273.675000px;}
.ya7{bottom:274.215000px;}
.y9b{bottom:284.115000px;}
.y45{bottom:294.375000px;}
.y1e{bottom:297.795000px;}
.y80{bottom:302.115000px;}
.y65{bottom:303.915000px;}
.ya6{bottom:304.455000px;}
.y9a{bottom:314.175000px;}
.y44{bottom:324.615000px;}
.y1d{bottom:328.035000px;}
.y7f{bottom:332.355000px;}
.y64{bottom:334.155000px;}
.ya5{bottom:334.695000px;}
.y99{bottom:344.415000px;}
.y43{bottom:354.855000px;}
.y1c{bottom:358.095000px;}
.y7e{bottom:362.595000px;}
.y63{bottom:364.395000px;}
.ya4{bottom:364.755000px;}
.y98{bottom:374.655000px;}
.y42{bottom:384.915000px;}
.y1b{bottom:388.515000px;}
.y7d{bottom:392.655000px;}
.y62{bottom:394.455000px;}
.ya3{bottom:394.995000px;}
.y97{bottom:404.895000px;}
.y41{bottom:415.155000px;}
.y1a{bottom:418.935000px;}
.y7c{bottom:423.075000px;}
.y61{bottom:424.875000px;}
.ya2{bottom:425.235000px;}
.y96{bottom:435.135000px;}
.y40{bottom:440.355000px;}
.y19{bottom:449.355000px;}
.y7b{bottom:453.135000px;}
.y60{bottom:455.295000px;}
.ya1{bottom:455.475000px;}
.y95{bottom:465.375000px;}
.y3f{bottom:465.555000px;}
.y18{bottom:479.955000px;}
.y7a{bottom:483.555000px;}
.y5f{bottom:485.715000px;}
.y94{bottom:495.615000px;}
.y3e{bottom:495.795000px;}
.y17{bottom:510.195000px;}
.y79{bottom:514.155000px;}
.y5e{bottom:515.955000px;}
.y93{bottom:525.855000px;}
.y3d{bottom:526.035000px;}
.y16{bottom:540.435000px;}
.y78{bottom:544.215000px;}
.y5d{bottom:546.195000px;}
.y92{bottom:555.945000px;}
.y3c{bottom:556.305000px;}
.y15{bottom:570.705000px;}
.y77{bottom:574.845000px;}
.y5c{bottom:576.465000px;}
.y91{bottom:586.185000px;}
.y3b{bottom:586.545000px;}
.y14{bottom:600.945000px;}
.y76{bottom:604.905000px;}
.y5b{bottom:606.525000px;}
.y90{bottom:616.425000px;}
.y3a{bottom:616.605000px;}
.y13{bottom:631.185000px;}
.y75{bottom:635.325000px;}
.y5a{bottom:636.765000px;}
.y8f{bottom:646.665000px;}
.y39{bottom:646.845000px;}
.y12{bottom:661.245000px;}
.y74{bottom:665.745000px;}
.y59{bottom:667.005000px;}
.y8e{bottom:676.905000px;}
.y38{bottom:677.085000px;}
.y11{bottom:691.485000px;}
.y73{bottom:696.165000px;}
.y58{bottom:697.245000px;}
.y8d{bottom:707.145000px;}
.y37{bottom:707.325000px;}
.y10{bottom:721.545000px;}
.y72{bottom:726.585000px;}
.y57{bottom:727.485000px;}
.y8c{bottom:737.385000px;}
.y36{bottom:737.565000px;}
.yf{bottom:752.145000px;}
.y71{bottom:757.005000px;}
.y56{bottom:757.725000px;}
.y8b{bottom:767.445000px;}
.y35{bottom:767.805000px;}
.ye{bottom:782.565000px;}
.y70{bottom:787.425000px;}
.y55{bottom:787.965000px;}
.y8a{bottom:797.685000px;}
.y34{bottom:798.045000px;}
.yd{bottom:813.165000px;}
.y6f{bottom:817.665000px;}
.y54{bottom:818.205000px;}
.y89{bottom:827.925000px;}
.y33{bottom:828.105000px;}
.yc{bottom:843.270000px;}
.y6e{bottom:847.770000px;}
.y53{bottom:848.310000px;}
.y88{bottom:858.210000px;}
.y32{bottom:858.390000px;}
.yb{bottom:873.510000px;}
.y6d{bottom:878.190000px;}
.y52{bottom:878.550000px;}
.y87{bottom:888.450000px;}
.y31{bottom:888.630000px;}
.ya{bottom:903.750000px;}
.y51{bottom:908.790000px;}
.y86{bottom:918.510000px;}
.y30{bottom:918.870000px;}
.y9{bottom:933.990000px;}
.y50{bottom:939.030000px;}
.y2f{bottom:949.110000px;}
.y8{bottom:964.230000px;}
.y4f{bottom:969.270000px;}
.y2e{bottom:979.350000px;}
.y7{bottom:994.470000px;}
.y4e{bottom:999.510000px;}
.y2d{bottom:1009.590000px;}
.y6{bottom:1024.710000px;}
.y6c{bottom:1029.570000px;}
.y4d{bottom:1029.750000px;}
.y2c{bottom:1039.830000px;}
.y5{bottom:1054.950000px;}
.y6b{bottom:1059.810000px;}
.y4c{bottom:1059.990000px;}
.y2b{bottom:1069.890000px;}
.y4{bottom:1085.010000px;}
.y4b{bottom:1090.050000px;}
.y2a{bottom:1095.090000px;}
.y3{bottom:1117.590000px;}
.y6a{bottom:1120.110000px;}
.y29{bottom:1120.290000px;}
.y26{bottom:1182.240000px;}
.y25{bottom:1203.840000px;}
.h5{height:40.961602px;}
.h4{height:61.136719px;}
.h2{height:70.664062px;}
.h3{height:71.529961px;}
.h6{height:74.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x2{left:181.650000px;}
.x3{left:253.830000px;}
.x8{left:545.325000px;}
.x7{left:551.985000px;}
.x6{left:633.885000px;}
.x9{left:638.565000px;}
.x5{left:678.030000px;}
.x4{left:808.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000001pt;}
.ls8{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.856000pt;}
.ls13{letter-spacing:2.496000pt;}
.ls0{letter-spacing:3.136000pt;}
.ls2{letter-spacing:4.416000pt;}
.lsc{letter-spacing:8.256000pt;}
.ls1d{letter-spacing:8.896000pt;}
.ls1c{letter-spacing:9.056000pt;}
.ls10{letter-spacing:10.176000pt;}
.ls12{letter-spacing:10.816000pt;}
.lsb{letter-spacing:12.096000pt;}
.lsf{letter-spacing:14.016000pt;}
.lsd{letter-spacing:14.176000pt;}
.ls1b{letter-spacing:16.576000pt;}
.ls3{letter-spacing:17.216000pt;}
.ls14{letter-spacing:18.496000pt;}
.lsa{letter-spacing:22.336000pt;}
.ls5{letter-spacing:33.216000pt;}
.ls1{letter-spacing:35.136000pt;}
.ls1a{letter-spacing:46.016000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.984001pt;}
.ws1{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.728000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.808000pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-4.800000pt;}
._a{margin-left:-3.136000pt;}
._c{margin-left:-2.240000pt;}
._2{margin-left:-0.960000pt;}
._4{width:1.034667pt;}
._6{width:2.240000pt;}
._7{width:3.328000pt;}
._3{width:4.352000pt;}
._f{width:5.376000pt;}
._e{width:6.400000pt;}
._19{width:7.872000pt;}
._24{width:8.768000pt;}
._1f{width:9.792000pt;}
._12{width:10.688000pt;}
._1a{width:12.032000pt;}
._5{width:12.928000pt;}
._11{width:14.016000pt;}
._10{width:15.712000pt;}
._d{width:16.938667pt;}
._14{width:18.944000pt;}
._22{width:20.416000pt;}
._18{width:21.440000pt;}
._13{width:22.784000pt;}
._b{width:23.808000pt;}
._17{width:25.408000pt;}
._1d{width:27.072000pt;}
._1e{width:28.074667pt;}
._1b{width:29.248000pt;}
._1c{width:30.261333pt;}
._23{width:31.178667pt;}
._9{width:33.504000pt;}
._8{width:34.976000pt;}
._25{width:36.096000pt;}
._26{width:37.130667pt;}
._21{width:45.258667pt;}
._20{width:46.272000pt;}
._16{width:47.936000pt;}
._0{width:155.786667pt;}
._1{width:376.266667pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.632000pt;}
.y1{bottom:60.672000pt;}
.y28{bottom:78.592000pt;}
.y27{bottom:98.752000pt;}
.y24{bottom:103.392000pt;}
.ya0{bottom:118.112000pt;}
.y4a{bottom:127.232000pt;}
.y23{bottom:130.432000pt;}
.y85{bottom:134.266667pt;}
.yac{bottom:136.186667pt;}
.y9f{bottom:144.986667pt;}
.y49{bottom:153.946667pt;}
.yab{bottom:154.106667pt;}
.y22{bottom:157.146667pt;}
.y84{bottom:161.146667pt;}
.y69{bottom:162.586667pt;}
.y9e{bottom:171.866667pt;}
.yaa{bottom:172.026667pt;}
.y48{bottom:180.986667pt;}
.y21{bottom:184.026667pt;}
.y83{bottom:188.026667pt;}
.y68{bottom:189.466667pt;}
.ya9{bottom:189.946667pt;}
.y9d{bottom:198.746667pt;}
.y47{bottom:207.866667pt;}
.y20{bottom:210.906667pt;}
.y82{bottom:214.906667pt;}
.y67{bottom:216.346667pt;}
.ya8{bottom:216.826667pt;}
.y9c{bottom:225.626667pt;}
.y46{bottom:234.746667pt;}
.y1f{bottom:237.786667pt;}
.y81{bottom:241.786667pt;}
.y66{bottom:243.266667pt;}
.ya7{bottom:243.746667pt;}
.y9b{bottom:252.546667pt;}
.y45{bottom:261.666667pt;}
.y1e{bottom:264.706667pt;}
.y80{bottom:268.546667pt;}
.y65{bottom:270.146667pt;}
.ya6{bottom:270.626667pt;}
.y9a{bottom:279.266667pt;}
.y44{bottom:288.546667pt;}
.y1d{bottom:291.586667pt;}
.y7f{bottom:295.426667pt;}
.y64{bottom:297.026667pt;}
.ya5{bottom:297.506667pt;}
.y99{bottom:306.146667pt;}
.y43{bottom:315.426667pt;}
.y1c{bottom:318.306667pt;}
.y7e{bottom:322.306667pt;}
.y63{bottom:323.906667pt;}
.ya4{bottom:324.226667pt;}
.y98{bottom:333.026667pt;}
.y42{bottom:342.146667pt;}
.y1b{bottom:345.346667pt;}
.y7d{bottom:349.026667pt;}
.y62{bottom:350.626667pt;}
.ya3{bottom:351.106667pt;}
.y97{bottom:359.906667pt;}
.y41{bottom:369.026667pt;}
.y1a{bottom:372.386667pt;}
.y7c{bottom:376.066667pt;}
.y61{bottom:377.666667pt;}
.ya2{bottom:377.986667pt;}
.y96{bottom:386.786667pt;}
.y40{bottom:391.426667pt;}
.y19{bottom:399.426667pt;}
.y7b{bottom:402.786667pt;}
.y60{bottom:404.706667pt;}
.ya1{bottom:404.866667pt;}
.y95{bottom:413.666667pt;}
.y3f{bottom:413.826667pt;}
.y18{bottom:426.626667pt;}
.y7a{bottom:429.826667pt;}
.y5f{bottom:431.746667pt;}
.y94{bottom:440.546667pt;}
.y3e{bottom:440.706667pt;}
.y17{bottom:453.506667pt;}
.y79{bottom:457.026667pt;}
.y5e{bottom:458.626667pt;}
.y93{bottom:467.426667pt;}
.y3d{bottom:467.586667pt;}
.y16{bottom:480.386667pt;}
.y78{bottom:483.746667pt;}
.y5d{bottom:485.506667pt;}
.y92{bottom:494.173333pt;}
.y3c{bottom:494.493333pt;}
.y15{bottom:507.293333pt;}
.y77{bottom:510.973333pt;}
.y5c{bottom:512.413333pt;}
.y91{bottom:521.053333pt;}
.y3b{bottom:521.373333pt;}
.y14{bottom:534.173333pt;}
.y76{bottom:537.693333pt;}
.y5b{bottom:539.133333pt;}
.y90{bottom:547.933333pt;}
.y3a{bottom:548.093333pt;}
.y13{bottom:561.053333pt;}
.y75{bottom:564.733333pt;}
.y5a{bottom:566.013333pt;}
.y8f{bottom:574.813333pt;}
.y39{bottom:574.973333pt;}
.y12{bottom:587.773333pt;}
.y74{bottom:591.773333pt;}
.y59{bottom:592.893333pt;}
.y8e{bottom:601.693333pt;}
.y38{bottom:601.853333pt;}
.y11{bottom:614.653333pt;}
.y73{bottom:618.813333pt;}
.y58{bottom:619.773333pt;}
.y8d{bottom:628.573333pt;}
.y37{bottom:628.733333pt;}
.y10{bottom:641.373333pt;}
.y72{bottom:645.853333pt;}
.y57{bottom:646.653333pt;}
.y8c{bottom:655.453333pt;}
.y36{bottom:655.613333pt;}
.yf{bottom:668.573333pt;}
.y71{bottom:672.893333pt;}
.y56{bottom:673.533333pt;}
.y8b{bottom:682.173333pt;}
.y35{bottom:682.493333pt;}
.ye{bottom:695.613333pt;}
.y70{bottom:699.933333pt;}
.y55{bottom:700.413333pt;}
.y8a{bottom:709.053333pt;}
.y34{bottom:709.373333pt;}
.yd{bottom:722.813333pt;}
.y6f{bottom:726.813333pt;}
.y54{bottom:727.293333pt;}
.y89{bottom:735.933333pt;}
.y33{bottom:736.093333pt;}
.yc{bottom:749.573333pt;}
.y6e{bottom:753.573333pt;}
.y53{bottom:754.053333pt;}
.y88{bottom:762.853333pt;}
.y32{bottom:763.013333pt;}
.yb{bottom:776.453333pt;}
.y6d{bottom:780.613333pt;}
.y52{bottom:780.933333pt;}
.y87{bottom:789.733333pt;}
.y31{bottom:789.893333pt;}
.ya{bottom:803.333333pt;}
.y51{bottom:807.813333pt;}
.y86{bottom:816.453333pt;}
.y30{bottom:816.773333pt;}
.y9{bottom:830.213333pt;}
.y50{bottom:834.693333pt;}
.y2f{bottom:843.653333pt;}
.y8{bottom:857.093333pt;}
.y4f{bottom:861.573333pt;}
.y2e{bottom:870.533333pt;}
.y7{bottom:883.973333pt;}
.y4e{bottom:888.453333pt;}
.y2d{bottom:897.413333pt;}
.y6{bottom:910.853333pt;}
.y6c{bottom:915.173333pt;}
.y4d{bottom:915.333333pt;}
.y2c{bottom:924.293333pt;}
.y5{bottom:937.733333pt;}
.y6b{bottom:942.053333pt;}
.y4c{bottom:942.213333pt;}
.y2b{bottom:951.013333pt;}
.y4{bottom:964.453333pt;}
.y4b{bottom:968.933333pt;}
.y2a{bottom:973.413333pt;}
.y3{bottom:993.413333pt;}
.y6a{bottom:995.653333pt;}
.y29{bottom:995.813333pt;}
.y26{bottom:1050.880000pt;}
.y25{bottom:1070.080000pt;}
.h5{height:36.410312pt;}
.h4{height:54.343750pt;}
.h2{height:62.812500pt;}
.h3{height:63.582187pt;}
.h6{height:66.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x2{left:161.466667pt;}
.x3{left:225.626667pt;}
.x8{left:484.733333pt;}
.x7{left:490.653333pt;}
.x6{left:563.453333pt;}
.x9{left:567.613333pt;}
.x5{left:602.693333pt;}
.x4{left:718.373333pt;}
}




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