
    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_1b3d0c28b93ae6095dd6fd93.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_afd2fa1ba2ec0d077ac087a0.woff2')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_0d3003a5ad42e071c079b223.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_ebacb5e76d20c085dbe9de96.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_a8db91492e2d327ea3f9bcef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_e60b636e55adcc582365bc11.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3b53a7f9c6f014f14a3f6b23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_f516363a646c5885e5bfe353.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.lsd{letter-spacing:-0.720000px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.lse{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.lsa{letter-spacing:3.600000px;}
.ls11{letter-spacing:5.040000px;}
.ls13{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.480000px;}
.lsf{letter-spacing:7.920000px;}
.ls4{letter-spacing:11.520000px;}
.ls8{letter-spacing:12.240000px;}
.ls3{letter-spacing:12.960000px;}
.ls7{letter-spacing:20.880000px;}
.ls9{letter-spacing:21.600000px;}
.ls12{letter-spacing:28.080000px;}
.ls18{letter-spacing:33.840000px;}
.ls10{letter-spacing:33.984000px;}
.lsb{letter-spacing:36.000000px;}
.lsc{letter-spacing:36.720000px;}
.ls19{letter-spacing:45.360000px;}
.ls1b{letter-spacing:52.560000px;}
.ls1c{letter-spacing:54.144000px;}
.ls2{letter-spacing:59.309760px;}
.ls1a{letter-spacing:64.026720px;}
.ls1{letter-spacing:93.029760px;}
.ls15{letter-spacing:169.146720px;}
.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:-59.760000px;}
.ws4{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.080000px;}
._b{width:2.120880px;}
._2{width:3.340560px;}
._a{width:4.350960px;}
._1a{width:5.554080px;}
._d{width:7.128000px;}
._12{width:8.946000px;}
._e{width:10.944000px;}
._8{width:12.672000px;}
._9{width:13.752000px;}
._14{width:15.048000px;}
._17{width:16.848000px;}
._3{width:19.992000px;}
._13{width:21.528000px;}
._1f{width:22.896000px;}
._6{width:24.192000px;}
._7{width:25.704000px;}
._10{width:26.856000px;}
._c{width:28.296000px;}
._1e{width:29.520000px;}
._16{width:31.104000px;}
._f{width:32.400000px;}
._28{width:33.498000px;}
._27{width:34.632000px;}
._1b{width:36.288000px;}
._1c{width:37.806000px;}
._2d{width:38.826000px;}
._26{width:40.104000px;}
._25{width:41.328000px;}
._29{width:42.336000px;}
._11{width:44.640000px;}
._1d{width:45.852000px;}
._15{width:48.096000px;}
._24{width:51.768000px;}
._5{width:54.126000px;}
._4{width:55.224000px;}
._19{width:56.592000px;}
._18{width:57.600000px;}
._20{width:58.896000px;}
._22{width:72.162000px;}
._21{width:73.656000px;}
._2c{width:81.432000px;}
._2b{width:82.656000px;}
._23{width:84.168000px;}
._2a{width:121.896000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.260000px;}
.y7{bottom:11.340000px;}
.y8{bottom:55.440000px;}
.y5{bottom:57.600000px;}
.y35{bottom:101.376000px;}
.y62{bottom:109.296000px;}
.y34{bottom:125.136000px;}
.y61{bottom:133.056000px;}
.y33{bottom:148.896000px;}
.y60{bottom:156.810000px;}
.y32{bottom:172.650000px;}
.y5f{bottom:180.570000px;}
.y31{bottom:196.590000px;}
.y5e{bottom:204.510000px;}
.y30{bottom:220.350000px;}
.y5d{bottom:228.270000px;}
.y2f{bottom:244.110000px;}
.y5c{bottom:252.030000px;}
.y2e{bottom:267.870000px;}
.y5b{bottom:275.790000px;}
.y2d{bottom:291.810000px;}
.y5a{bottom:299.730000px;}
.y2c{bottom:315.570000px;}
.y59{bottom:323.490000px;}
.y2b{bottom:339.375000px;}
.y58{bottom:347.295000px;}
.y2a{bottom:363.135000px;}
.y57{bottom:371.055000px;}
.y29{bottom:387.075000px;}
.y56{bottom:394.995000px;}
.y28{bottom:410.835000px;}
.y55{bottom:418.755000px;}
.y27{bottom:434.595000px;}
.y54{bottom:442.515000px;}
.y26{bottom:458.355000px;}
.y53{bottom:466.275000px;}
.y25{bottom:482.295000px;}
.y52{bottom:490.215000px;}
.y24{bottom:506.055000px;}
.y51{bottom:513.975000px;}
.y23{bottom:529.815000px;}
.y50{bottom:537.735000px;}
.y22{bottom:553.575000px;}
.y4f{bottom:561.495000px;}
.y21{bottom:577.335000px;}
.y4e{bottom:585.435000px;}
.y20{bottom:601.275000px;}
.y4d{bottom:609.225000px;}
.y1f{bottom:625.065000px;}
.y4c{bottom:632.985000px;}
.y1e{bottom:648.825000px;}
.y4b{bottom:656.745000px;}
.y1d{bottom:672.585000px;}
.y4a{bottom:680.685000px;}
.y1c{bottom:696.525000px;}
.y49{bottom:704.445000px;}
.y1b{bottom:720.285000px;}
.y48{bottom:728.205000px;}
.y1a{bottom:744.045000px;}
.y47{bottom:751.965000px;}
.y19{bottom:767.805000px;}
.y46{bottom:775.725000px;}
.y18{bottom:791.745000px;}
.y45{bottom:799.665000px;}
.y17{bottom:815.505000px;}
.y44{bottom:823.425000px;}
.y16{bottom:839.265000px;}
.y43{bottom:847.185000px;}
.y15{bottom:863.025000px;}
.y42{bottom:870.990000px;}
.y14{bottom:887.010000px;}
.y41{bottom:894.930000px;}
.y13{bottom:910.770000px;}
.y40{bottom:918.690000px;}
.y12{bottom:934.530000px;}
.y3f{bottom:942.450000px;}
.y11{bottom:958.290000px;}
.y3e{bottom:966.210000px;}
.y10{bottom:982.230000px;}
.y3d{bottom:990.150000px;}
.yf{bottom:1005.990000px;}
.y3c{bottom:1013.910000px;}
.ye{bottom:1029.750000px;}
.y3b{bottom:1037.670000px;}
.yd{bottom:1053.510000px;}
.y3a{bottom:1061.430000px;}
.yc{bottom:1077.270000px;}
.y39{bottom:1085.370000px;}
.yb{bottom:1101.210000px;}
.y38{bottom:1109.130000px;}
.ya{bottom:1124.970000px;}
.y37{bottom:1132.890000px;}
.y9{bottom:1151.100000px;}
.y36{bottom:1156.680000px;}
.y4{bottom:1178.640000px;}
.y3{bottom:1195.560000px;}
.y2{bottom:1212.300000px;}
.y1{bottom:1229.040000px;}
.h6{height:4.806563px;}
.h3{height:27.036000px;}
.h2{height:38.100586px;}
.ha{height:49.992188px;}
.h8{height:50.800781px;}
.h9{height:51.996094px;}
.h4{height:60.082031px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.x5{left:87.660000px;}
.xa{left:95.795987px;}
.x2{left:101.375987px;}
.x10{left:122.795987px;}
.x12{left:127.835987px;}
.x1{left:141.515987px;}
.xf{left:148.895987px;}
.xb{left:188.309987px;}
.x3{left:206.489987px;}
.xe{left:295.814987px;}
.x6{left:297.795000px;}
.xc{left:369.974987px;}
.xd{left:372.494987px;}
.x7{left:393.915000px;}
.x4{left:446.474987px;}
.x11{left:473.144987px;}
.x9{left:500.145000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.760000pt;}
.lsf{letter-spacing:7.040000pt;}
.ls4{letter-spacing:10.240000pt;}
.ls8{letter-spacing:10.880000pt;}
.ls3{letter-spacing:11.520000pt;}
.ls7{letter-spacing:18.560000pt;}
.ls9{letter-spacing:19.200000pt;}
.ls12{letter-spacing:24.960000pt;}
.ls18{letter-spacing:30.080000pt;}
.ls10{letter-spacing:30.208000pt;}
.lsb{letter-spacing:32.000000pt;}
.lsc{letter-spacing:32.640000pt;}
.ls19{letter-spacing:40.320000pt;}
.ls1b{letter-spacing:46.720000pt;}
.ls1c{letter-spacing:48.128000pt;}
.ls2{letter-spacing:52.719787pt;}
.ls1a{letter-spacing:56.912640pt;}
.ls1{letter-spacing:82.693120pt;}
.ls15{letter-spacing:150.352640pt;}
.ws3{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.960000pt;}
._b{width:1.885227pt;}
._2{width:2.969387pt;}
._a{width:3.867520pt;}
._1a{width:4.936960pt;}
._d{width:6.336000pt;}
._12{width:7.952000pt;}
._e{width:9.728000pt;}
._8{width:11.264000pt;}
._9{width:12.224000pt;}
._14{width:13.376000pt;}
._17{width:14.976000pt;}
._3{width:17.770667pt;}
._13{width:19.136000pt;}
._1f{width:20.352000pt;}
._6{width:21.504000pt;}
._7{width:22.848000pt;}
._10{width:23.872000pt;}
._c{width:25.152000pt;}
._1e{width:26.240000pt;}
._16{width:27.648000pt;}
._f{width:28.800000pt;}
._28{width:29.776000pt;}
._27{width:30.784000pt;}
._1b{width:32.256000pt;}
._1c{width:33.605333pt;}
._2d{width:34.512000pt;}
._26{width:35.648000pt;}
._25{width:36.736000pt;}
._29{width:37.632000pt;}
._11{width:39.680000pt;}
._1d{width:40.757333pt;}
._15{width:42.752000pt;}
._24{width:46.016000pt;}
._5{width:48.112000pt;}
._4{width:49.088000pt;}
._19{width:50.304000pt;}
._18{width:51.200000pt;}
._20{width:52.352000pt;}
._22{width:64.144000pt;}
._21{width:65.472000pt;}
._2c{width:72.384000pt;}
._2b{width:73.472000pt;}
._23{width:74.816000pt;}
._2a{width:108.352000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.120000pt;}
.y7{bottom:10.080000pt;}
.y8{bottom:49.280000pt;}
.y5{bottom:51.200000pt;}
.y35{bottom:90.112000pt;}
.y62{bottom:97.152000pt;}
.y34{bottom:111.232000pt;}
.y61{bottom:118.272000pt;}
.y33{bottom:132.352000pt;}
.y60{bottom:139.386667pt;}
.y32{bottom:153.466667pt;}
.y5f{bottom:160.506667pt;}
.y31{bottom:174.746667pt;}
.y5e{bottom:181.786667pt;}
.y30{bottom:195.866667pt;}
.y5d{bottom:202.906667pt;}
.y2f{bottom:216.986667pt;}
.y5c{bottom:224.026667pt;}
.y2e{bottom:238.106667pt;}
.y5b{bottom:245.146667pt;}
.y2d{bottom:259.386667pt;}
.y5a{bottom:266.426667pt;}
.y2c{bottom:280.506667pt;}
.y59{bottom:287.546667pt;}
.y2b{bottom:301.666667pt;}
.y58{bottom:308.706667pt;}
.y2a{bottom:322.786667pt;}
.y57{bottom:329.826667pt;}
.y29{bottom:344.066667pt;}
.y56{bottom:351.106667pt;}
.y28{bottom:365.186667pt;}
.y55{bottom:372.226667pt;}
.y27{bottom:386.306667pt;}
.y54{bottom:393.346667pt;}
.y26{bottom:407.426667pt;}
.y53{bottom:414.466667pt;}
.y25{bottom:428.706667pt;}
.y52{bottom:435.746667pt;}
.y24{bottom:449.826667pt;}
.y51{bottom:456.866667pt;}
.y23{bottom:470.946667pt;}
.y50{bottom:477.986667pt;}
.y22{bottom:492.066667pt;}
.y4f{bottom:499.106667pt;}
.y21{bottom:513.186667pt;}
.y4e{bottom:520.386667pt;}
.y20{bottom:534.466667pt;}
.y4d{bottom:541.533333pt;}
.y1f{bottom:555.613333pt;}
.y4c{bottom:562.653333pt;}
.y1e{bottom:576.733333pt;}
.y4b{bottom:583.773333pt;}
.y1d{bottom:597.853333pt;}
.y4a{bottom:605.053333pt;}
.y1c{bottom:619.133333pt;}
.y49{bottom:626.173333pt;}
.y1b{bottom:640.253333pt;}
.y48{bottom:647.293333pt;}
.y1a{bottom:661.373333pt;}
.y47{bottom:668.413333pt;}
.y19{bottom:682.493333pt;}
.y46{bottom:689.533333pt;}
.y18{bottom:703.773333pt;}
.y45{bottom:710.813333pt;}
.y17{bottom:724.893333pt;}
.y44{bottom:731.933333pt;}
.y16{bottom:746.013333pt;}
.y43{bottom:753.053333pt;}
.y15{bottom:767.133333pt;}
.y42{bottom:774.213333pt;}
.y14{bottom:788.453333pt;}
.y41{bottom:795.493333pt;}
.y13{bottom:809.573333pt;}
.y40{bottom:816.613333pt;}
.y12{bottom:830.693333pt;}
.y3f{bottom:837.733333pt;}
.y11{bottom:851.813333pt;}
.y3e{bottom:858.853333pt;}
.y10{bottom:873.093333pt;}
.y3d{bottom:880.133333pt;}
.yf{bottom:894.213333pt;}
.y3c{bottom:901.253333pt;}
.ye{bottom:915.333333pt;}
.y3b{bottom:922.373333pt;}
.yd{bottom:936.453333pt;}
.y3a{bottom:943.493333pt;}
.yc{bottom:957.573333pt;}
.y39{bottom:964.773333pt;}
.yb{bottom:978.853333pt;}
.y38{bottom:985.893333pt;}
.ya{bottom:999.973333pt;}
.y37{bottom:1007.013333pt;}
.y9{bottom:1023.200000pt;}
.y36{bottom:1028.160000pt;}
.y4{bottom:1047.680000pt;}
.y3{bottom:1062.720000pt;}
.y2{bottom:1077.600000pt;}
.y1{bottom:1092.480000pt;}
.h6{height:4.272500pt;}
.h3{height:24.032000pt;}
.h2{height:33.867188pt;}
.ha{height:44.437500pt;}
.h8{height:45.156250pt;}
.h9{height:46.218750pt;}
.h4{height:53.406250pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.x5{left:77.920000pt;}
.xa{left:85.151988pt;}
.x2{left:90.111988pt;}
.x10{left:109.151988pt;}
.x12{left:113.631988pt;}
.x1{left:125.791988pt;}
.xf{left:132.351988pt;}
.xb{left:167.386655pt;}
.x3{left:183.546655pt;}
.xe{left:262.946655pt;}
.x6{left:264.706667pt;}
.xc{left:328.866655pt;}
.xd{left:331.106655pt;}
.x7{left:350.146667pt;}
.x4{left:396.866655pt;}
.x11{left:420.573322pt;}
.x9{left:444.573333pt;}
}




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