
    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_71cbe2cc82a3389642f1caaf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_2c8c8c3e4d7a14d467270046.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056641;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_4a72cc6ae23c7e638d6cf2ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056641;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_69714f72dbb7cf7db7092fff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_3d2c326956bcc96d07fcfb49.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_5e41541098bf59826b7716d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.038880px;}
.ls8{letter-spacing:0.049680px;}
.ls5{letter-spacing:0.063600px;}
.lsd{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.187200px;}
.lse{letter-spacing:0.206640px;}
.ls9{letter-spacing:0.209520px;}
.lsc{letter-spacing:0.255600px;}
.ls7{letter-spacing:0.348000px;}
.lsf{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.362400px;}
.ls1{letter-spacing:0.369360px;}
.ls2{letter-spacing:1.252800px;}
.ls4{letter-spacing:2.724000px;}
.ls0{letter-spacing:3.264000px;}
.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:-18.532800px;}
.ws1{word-spacing:-17.836800px;}
.ws0{word-spacing:-17.296800px;}
.ws8{word-spacing:-16.200000px;}
.ws7{word-spacing:-15.840000px;}
.ws3{word-spacing:-14.572800px;}
.ws4{word-spacing:-13.147200px;}
.ws5{word-spacing:-10.612800px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.708800px;}
._8{margin-left:-3.585600px;}
._7{margin-left:-2.211120px;}
._5{margin-left:-1.080000px;}
._4{width:1.164000px;}
._0{width:2.691360px;}
._2{width:3.877920px;}
._3{width:5.129280px;}
._1{width:6.172080px;}
._a{width:8.067600px;}
._9{width:9.143280px;}
._10{width:10.840800px;}
._b{width:11.983200px;}
._11{width:13.204800px;}
._6{width:14.342400px;}
._f{width:25.338240px;}
._d{width:35.261040px;}
._c{width:36.453600px;}
._e{width:851.632800px;}
.fc8{color:transparent;}
.fc6{color:rgb(127,95,82);}
.fc5{color:rgb(177,156,125);}
.fc3{color:rgb(66,0,0);}
.fc1{color:rgb(134,0,0);}
.fc7{color:rgb(128,128,128);}
.fc4{color:rgb(50,50,50);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.fs1{font-size:192.240000px;}
.fsb{font-size:228.240000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.420000px;}
.y5c{bottom:7.380000px;}
.y1{bottom:66.420000px;}
.y32{bottom:94.356000px;}
.y31{bottom:125.316000px;}
.y2b{bottom:135.936000px;}
.y30{bottom:148.896000px;}
.y2a{bottom:156.270000px;}
.yb0{bottom:171.570000px;}
.y29{bottom:176.430000px;}
.y88{bottom:182.550000px;}
.yaf{bottom:195.870000px;}
.y28{bottom:196.770000px;}
.y87{bottom:206.670000px;}
.y27{bottom:216.930000px;}
.yae{bottom:220.170000px;}
.y86{bottom:230.970000px;}
.y5a{bottom:236.370000px;}
.y26{bottom:237.090000px;}
.yad{bottom:244.470000px;}
.y85{bottom:255.270000px;}
.y25{bottom:257.430000px;}
.y59{bottom:260.670000px;}
.yac{bottom:268.590000px;}
.y24{bottom:277.590000px;}
.y84{bottom:279.570000px;}
.y58{bottom:284.790000px;}
.yab{bottom:292.890000px;}
.y23{bottom:297.750000px;}
.y83{bottom:303.870000px;}
.y57{bottom:309.090000px;}
.yaa{bottom:317.190000px;}
.y22{bottom:318.090000px;}
.y82{bottom:327.990000px;}
.y56{bottom:333.390000px;}
.y21{bottom:338.295000px;}
.ya9{bottom:341.535000px;}
.y81{bottom:352.335000px;}
.y55{bottom:357.735000px;}
.y20{bottom:358.455000px;}
.ya8{bottom:365.835000px;}
.y80{bottom:376.635000px;}
.y1f{bottom:379.875000px;}
.y54{bottom:382.035000px;}
.ya7{bottom:390.135000px;}
.y7f{bottom:400.935000px;}
.y53{bottom:406.155000px;}
.ya6{bottom:414.255000px;}
.y1e{bottom:422.535000px;}
.y1d{bottom:424.155000px;}
.y7e{bottom:425.235000px;}
.y52{bottom:430.455000px;}
.ya5{bottom:438.555000px;}
.y1c{bottom:444.315000px;}
.y7d{bottom:449.535000px;}
.y51{bottom:454.755000px;}
.y1b{bottom:462.135000px;}
.ya4{bottom:462.855000px;}
.y7c{bottom:473.655000px;}
.y1a{bottom:476.715000px;}
.y50{bottom:479.055000px;}
.ya3{bottom:487.155000px;}
.y19{bottom:496.875000px;}
.y7b{bottom:497.955000px;}
.y4f{bottom:503.355000px;}
.ya2{bottom:511.455000px;}
.y18{bottom:517.215000px;}
.y7a{bottom:522.255000px;}
.y4e{bottom:527.655000px;}
.ya1{bottom:535.755000px;}
.y17{bottom:537.375000px;}
.y79{bottom:546.555000px;}
.y4d{bottom:551.775000px;}
.y16{bottom:557.715000px;}
.ya0{bottom:559.875000px;}
.y78{bottom:570.855000px;}
.y4c{bottom:576.075000px;}
.y15{bottom:577.875000px;}
.y9f{bottom:584.175000px;}
.y77{bottom:595.155000px;}
.y14{bottom:598.035000px;}
.y4b{bottom:600.375000px;}
.y9e{bottom:608.505000px;}
.y13{bottom:618.405000px;}
.y76{bottom:619.305000px;}
.y4a{bottom:624.705000px;}
.y9d{bottom:632.805000px;}
.y12{bottom:638.565000px;}
.y75{bottom:643.605000px;}
.y49{bottom:649.005000px;}
.y9c{bottom:657.105000px;}
.y11{bottom:658.725000px;}
.y74{bottom:667.905000px;}
.y48{bottom:673.305000px;}
.y10{bottom:679.065000px;}
.y9b{bottom:681.225000px;}
.y73{bottom:692.205000px;}
.y47{bottom:697.425000px;}
.yf{bottom:700.485000px;}
.y9a{bottom:705.525000px;}
.y72{bottom:716.505000px;}
.y46{bottom:721.725000px;}
.y99{bottom:729.825000px;}
.y71{bottom:740.625000px;}
.ye{bottom:742.605000px;}
.y45{bottom:746.025000px;}
.y98{bottom:754.125000px;}
.yd{bottom:762.765000px;}
.y70{bottom:764.925000px;}
.y44{bottom:770.325000px;}
.y97{bottom:778.425000px;}
.yc{bottom:785.445000px;}
.y6f{bottom:789.225000px;}
.y43{bottom:794.625000px;}
.y96{bottom:802.725000px;}
.y6e{bottom:813.525000px;}
.yb{bottom:814.245000px;}
.y42{bottom:818.745000px;}
.y95{bottom:826.845000px;}
.y6d{bottom:837.825000px;}
.ya{bottom:842.865000px;}
.y41{bottom:843.045000px;}
.y94{bottom:851.145000px;}
.y5b{bottom:860.145000px;}
.y6c{bottom:862.125000px;}
.y40{bottom:867.345000px;}
.y9{bottom:870.630000px;}
.y93{bottom:875.490000px;}
.y6b{bottom:886.290000px;}
.y3f{bottom:891.690000px;}
.y92{bottom:899.790000px;}
.y8{bottom:907.170000px;}
.y6a{bottom:910.590000px;}
.y3e{bottom:915.990000px;}
.y91{bottom:924.090000px;}
.y69{bottom:934.890000px;}
.y7{bottom:938.850000px;}
.y3d{bottom:939.030000px;}
.y90{bottom:948.210000px;}
.y3c{bottom:959.190000px;}
.y8f{bottom:972.510000px;}
.y3b{bottom:979.530000px;}
.y68{bottom:983.490000px;}
.y6{bottom:990.510000px;}
.y8e{bottom:996.810000px;}
.y3a{bottom:999.690000px;}
.y67{bottom:1007.610000px;}
.y5{bottom:1012.650000px;}
.y39{bottom:1019.850000px;}
.y8d{bottom:1021.110000px;}
.y66{bottom:1031.910000px;}
.y4{bottom:1032.270000px;}
.y38{bottom:1040.190000px;}
.y8c{bottom:1045.410000px;}
.y3{bottom:1053.510000px;}
.y65{bottom:1056.210000px;}
.y37{bottom:1060.350000px;}
.y8b{bottom:1069.710000px;}
.y64{bottom:1080.510000px;}
.y36{bottom:1080.690000px;}
.y2{bottom:1089.510000px;}
.y8a{bottom:1093.830000px;}
.y35{bottom:1100.850000px;}
.y63{bottom:1104.810000px;}
.y89{bottom:1118.130000px;}
.y34{bottom:1121.010000px;}
.y62{bottom:1125.330000px;}
.y61{bottom:1142.820000px;}
.y60{bottom:1157.040000px;}
.y2f{bottom:1158.840000px;}
.y5f{bottom:1178.100000px;}
.y2e{bottom:1179.900000px;}
.y5e{bottom:1195.740000px;}
.y2d{bottom:1197.360000px;}
.y5d{bottom:1213.740000px;}
.y2c{bottom:1215.180000px;}
.hc{height:17.640000px;}
.ha{height:31.324219px;}
.hd{height:48.636000px;}
.h6{height:51.998203px;}
.h5{height:53.645625px;}
.h4{height:56.084062px;}
.hb{height:57.636562px;}
.h2{height:62.648438px;}
.h9{height:73.298672px;}
.h8{height:78.310547px;}
.h7{height:91.441406px;}
.h3{height:162.765703px;}
.he{height:198.595547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:67.320000px;}
.w4{width:313.635000px;}
.w3{width:324.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:10.620000px;}
.xd{left:31.854000px;}
.x2{left:127.655987px;}
.xb{left:159.509987px;}
.xc{left:194.969987px;}
.x9{left:296.715000px;}
.x6{left:415.154987px;}
.x8{left:451.875000px;}
.x1{left:462.494987px;}
.x4{left:473.144987px;}
.xa{left:499.964987px;}
.x5{left:505.004987px;}
.xe{left:611.744987px;}
.x3{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.034560pt;}
.ls8{letter-spacing:0.044160pt;}
.ls5{letter-spacing:0.056533pt;}
.lsd{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.166400pt;}
.lse{letter-spacing:0.183680pt;}
.ls9{letter-spacing:0.186240pt;}
.lsc{letter-spacing:0.227200pt;}
.ls7{letter-spacing:0.309333pt;}
.lsf{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.322133pt;}
.ls1{letter-spacing:0.328320pt;}
.ls2{letter-spacing:1.113600pt;}
.ls4{letter-spacing:2.421333pt;}
.ls0{letter-spacing:2.901333pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-15.854933pt;}
.ws0{word-spacing:-15.374933pt;}
.ws8{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws3{word-spacing:-12.953600pt;}
.ws4{word-spacing:-11.686400pt;}
.ws5{word-spacing:-9.433600pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-4.185600pt;}
._8{margin-left:-3.187200pt;}
._7{margin-left:-1.965440pt;}
._5{margin-left:-0.960000pt;}
._4{width:1.034667pt;}
._0{width:2.392320pt;}
._2{width:3.447040pt;}
._3{width:4.559360pt;}
._1{width:5.486293pt;}
._a{width:7.171200pt;}
._9{width:8.127360pt;}
._10{width:9.636267pt;}
._b{width:10.651733pt;}
._11{width:11.737600pt;}
._6{width:12.748800pt;}
._f{width:22.522880pt;}
._d{width:31.343147pt;}
._c{width:32.403200pt;}
._e{width:757.006933pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.fs1{font-size:170.880000pt;}
.fsb{font-size:202.880000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:3.040000pt;}
.y5c{bottom:6.560000pt;}
.y1{bottom:59.040000pt;}
.y32{bottom:83.872000pt;}
.y31{bottom:111.392000pt;}
.y2b{bottom:120.832000pt;}
.y30{bottom:132.352000pt;}
.y2a{bottom:138.906667pt;}
.yb0{bottom:152.506667pt;}
.y29{bottom:156.826667pt;}
.y88{bottom:162.266667pt;}
.yaf{bottom:174.106667pt;}
.y28{bottom:174.906667pt;}
.y87{bottom:183.706667pt;}
.y27{bottom:192.826667pt;}
.yae{bottom:195.706667pt;}
.y86{bottom:205.306667pt;}
.y5a{bottom:210.106667pt;}
.y26{bottom:210.746667pt;}
.yad{bottom:217.306667pt;}
.y85{bottom:226.906667pt;}
.y25{bottom:228.826667pt;}
.y59{bottom:231.706667pt;}
.yac{bottom:238.746667pt;}
.y24{bottom:246.746667pt;}
.y84{bottom:248.506667pt;}
.y58{bottom:253.146667pt;}
.yab{bottom:260.346667pt;}
.y23{bottom:264.666667pt;}
.y83{bottom:270.106667pt;}
.y57{bottom:274.746667pt;}
.yaa{bottom:281.946667pt;}
.y22{bottom:282.746667pt;}
.y82{bottom:291.546667pt;}
.y56{bottom:296.346667pt;}
.y21{bottom:300.706667pt;}
.ya9{bottom:303.586667pt;}
.y81{bottom:313.186667pt;}
.y55{bottom:317.986667pt;}
.y20{bottom:318.626667pt;}
.ya8{bottom:325.186667pt;}
.y80{bottom:334.786667pt;}
.y1f{bottom:337.666667pt;}
.y54{bottom:339.586667pt;}
.ya7{bottom:346.786667pt;}
.y7f{bottom:356.386667pt;}
.y53{bottom:361.026667pt;}
.ya6{bottom:368.226667pt;}
.y1e{bottom:375.586667pt;}
.y1d{bottom:377.026667pt;}
.y7e{bottom:377.986667pt;}
.y52{bottom:382.626667pt;}
.ya5{bottom:389.826667pt;}
.y1c{bottom:394.946667pt;}
.y7d{bottom:399.586667pt;}
.y51{bottom:404.226667pt;}
.y1b{bottom:410.786667pt;}
.ya4{bottom:411.426667pt;}
.y7c{bottom:421.026667pt;}
.y1a{bottom:423.746667pt;}
.y50{bottom:425.826667pt;}
.ya3{bottom:433.026667pt;}
.y19{bottom:441.666667pt;}
.y7b{bottom:442.626667pt;}
.y4f{bottom:447.426667pt;}
.ya2{bottom:454.626667pt;}
.y18{bottom:459.746667pt;}
.y7a{bottom:464.226667pt;}
.y4e{bottom:469.026667pt;}
.ya1{bottom:476.226667pt;}
.y17{bottom:477.666667pt;}
.y79{bottom:485.826667pt;}
.y4d{bottom:490.466667pt;}
.y16{bottom:495.746667pt;}
.ya0{bottom:497.666667pt;}
.y78{bottom:507.426667pt;}
.y4c{bottom:512.066667pt;}
.y15{bottom:513.666667pt;}
.y9f{bottom:519.266667pt;}
.y77{bottom:529.026667pt;}
.y14{bottom:531.586667pt;}
.y4b{bottom:533.666667pt;}
.y9e{bottom:540.893333pt;}
.y13{bottom:549.693333pt;}
.y76{bottom:550.493333pt;}
.y4a{bottom:555.293333pt;}
.y9d{bottom:562.493333pt;}
.y12{bottom:567.613333pt;}
.y75{bottom:572.093333pt;}
.y49{bottom:576.893333pt;}
.y9c{bottom:584.093333pt;}
.y11{bottom:585.533333pt;}
.y74{bottom:593.693333pt;}
.y48{bottom:598.493333pt;}
.y10{bottom:603.613333pt;}
.y9b{bottom:605.533333pt;}
.y73{bottom:615.293333pt;}
.y47{bottom:619.933333pt;}
.yf{bottom:622.653333pt;}
.y9a{bottom:627.133333pt;}
.y72{bottom:636.893333pt;}
.y46{bottom:641.533333pt;}
.y99{bottom:648.733333pt;}
.y71{bottom:658.333333pt;}
.ye{bottom:660.093333pt;}
.y45{bottom:663.133333pt;}
.y98{bottom:670.333333pt;}
.yd{bottom:678.013333pt;}
.y70{bottom:679.933333pt;}
.y44{bottom:684.733333pt;}
.y97{bottom:691.933333pt;}
.yc{bottom:698.173333pt;}
.y6f{bottom:701.533333pt;}
.y43{bottom:706.333333pt;}
.y96{bottom:713.533333pt;}
.y6e{bottom:723.133333pt;}
.yb{bottom:723.773333pt;}
.y42{bottom:727.773333pt;}
.y95{bottom:734.973333pt;}
.y6d{bottom:744.733333pt;}
.ya{bottom:749.213333pt;}
.y41{bottom:749.373333pt;}
.y94{bottom:756.573333pt;}
.y5b{bottom:764.573333pt;}
.y6c{bottom:766.333333pt;}
.y40{bottom:770.973333pt;}
.y9{bottom:773.893333pt;}
.y93{bottom:778.213333pt;}
.y6b{bottom:787.813333pt;}
.y3f{bottom:792.613333pt;}
.y92{bottom:799.813333pt;}
.y8{bottom:806.373333pt;}
.y6a{bottom:809.413333pt;}
.y3e{bottom:814.213333pt;}
.y91{bottom:821.413333pt;}
.y69{bottom:831.013333pt;}
.y7{bottom:834.533333pt;}
.y3d{bottom:834.693333pt;}
.y90{bottom:842.853333pt;}
.y3c{bottom:852.613333pt;}
.y8f{bottom:864.453333pt;}
.y3b{bottom:870.693333pt;}
.y68{bottom:874.213333pt;}
.y6{bottom:880.453333pt;}
.y8e{bottom:886.053333pt;}
.y3a{bottom:888.613333pt;}
.y67{bottom:895.653333pt;}
.y5{bottom:900.133333pt;}
.y39{bottom:906.533333pt;}
.y8d{bottom:907.653333pt;}
.y66{bottom:917.253333pt;}
.y4{bottom:917.573333pt;}
.y38{bottom:924.613333pt;}
.y8c{bottom:929.253333pt;}
.y3{bottom:936.453333pt;}
.y65{bottom:938.853333pt;}
.y37{bottom:942.533333pt;}
.y8b{bottom:950.853333pt;}
.y64{bottom:960.453333pt;}
.y36{bottom:960.613333pt;}
.y2{bottom:968.453333pt;}
.y8a{bottom:972.293333pt;}
.y35{bottom:978.533333pt;}
.y63{bottom:982.053333pt;}
.y89{bottom:993.893333pt;}
.y34{bottom:996.453333pt;}
.y62{bottom:1000.293333pt;}
.y61{bottom:1015.840000pt;}
.y60{bottom:1028.480000pt;}
.y2f{bottom:1030.080000pt;}
.y5f{bottom:1047.200000pt;}
.y2e{bottom:1048.800000pt;}
.y5e{bottom:1062.880000pt;}
.y2d{bottom:1064.320000pt;}
.y5d{bottom:1078.880000pt;}
.y2c{bottom:1080.160000pt;}
.hc{height:15.680000pt;}
.ha{height:27.843750pt;}
.hd{height:43.232000pt;}
.h6{height:46.220625pt;}
.h5{height:47.685000pt;}
.h4{height:49.852500pt;}
.hb{height:51.232500pt;}
.h2{height:55.687500pt;}
.h9{height:65.154375pt;}
.h8{height:69.609375pt;}
.h7{height:81.281250pt;}
.h3{height:144.680625pt;}
.he{height:176.529375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:59.840000pt;}
.w4{width:278.786667pt;}
.w3{width:288.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.440000pt;}
.xd{left:28.314667pt;}
.x2{left:113.471988pt;}
.xb{left:141.786655pt;}
.xc{left:173.306655pt;}
.x9{left:263.746667pt;}
.x6{left:369.026655pt;}
.x8{left:401.666667pt;}
.x1{left:411.106655pt;}
.x4{left:420.573322pt;}
.xa{left:444.413322pt;}
.x5{left:448.893322pt;}
.xe{left:543.773322pt;}
.x3{left:680.453322pt;}
}




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