
    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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_535b5c94f496b8f39f4910b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_6a6ab1b22a04dba968c85504.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_25ed8e3db179a1f50d3049b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_40065aa4e10cb118d6f30a60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.859375;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_94a4983e4d355c34106db785.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772949;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_1853793ea1907337b4874b7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_f4eb45ce2edb5870f1fd3c08.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-60.480000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v3{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.106800px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.233280px;}
.ls0{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.648000px;}
.ls6{letter-spacing:1.338000px;}
.ls2{letter-spacing:15.480000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws9{word-spacing:-20.664000px;}
.ws0{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.800000px;}
.ws2{word-spacing:-17.951280px;}
.ws1{word-spacing:-16.613280px;}
.ws4{word-spacing:-13.410720px;}
.ws7{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-12.480000px;}
._1{margin-left:-1.008000px;}
._2{width:1.368000px;}
._3{width:2.372880px;}
._12{width:3.585600px;}
._11{width:4.625520px;}
._10{width:6.454080px;}
._b{width:8.611200px;}
._c{width:10.517760px;}
._d{width:11.838960px;}
._e{width:13.919040px;}
._f{width:14.975280px;}
._14{width:19.676880px;}
._13{width:20.728800px;}
._8{width:24.202800px;}
._9{width:25.577280px;}
._a{width:26.801760px;}
._4{width:101.676000px;}
._5{width:149.412000px;}
._6{width:390.156000px;}
._0{width:1003.806720px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:0.180000px;}
.y59{bottom:4.125000px;}
.y5c{bottom:4.131000px;}
.y1b{bottom:4.140000px;}
.y15{bottom:4.155000px;}
.y5e{bottom:11.175000px;}
.yc{bottom:12.240000px;}
.y6{bottom:16.920000px;}
.y7{bottom:20.880000px;}
.ye{bottom:21.060000px;}
.yb{bottom:24.300000px;}
.y58{bottom:24.825000px;}
.y5b{bottom:24.831000px;}
.y13{bottom:24.840000px;}
.y18{bottom:24.855000px;}
.y5{bottom:33.480000px;}
.ya{bottom:36.360000px;}
.y57{bottom:45.525000px;}
.y12{bottom:45.540000px;}
.y9{bottom:48.456000px;}
.y4{bottom:50.040000px;}
.y8{bottom:60.516000px;}
.y56{bottom:66.225000px;}
.y2{bottom:66.276000px;}
.y55{bottom:86.925000px;}
.y3a{bottom:104.205000px;}
.y54{bottom:107.445000px;}
.y5a{bottom:122.265000px;}
.y39{bottom:124.185000px;}
.y53{bottom:128.145000px;}
.y38{bottom:141.285000px;}
.y52{bottom:149.025000px;}
.y92{bottom:152.310000px;}
.y21{bottom:164.565000px;}
.y37{bottom:167.610000px;}
.y51{bottom:169.590000px;}
.y91{bottom:174.450000px;}
.y36{bottom:184.890000px;}
.y50{bottom:190.290000px;}
.y90{bottom:196.410000px;}
.y35{bottom:202.170000px;}
.y4f{bottom:211.170000px;}
.y8f{bottom:217.650000px;}
.y34{bottom:219.450000px;}
.y4e{bottom:231.690000px;}
.y33{bottom:236.550000px;}
.y8e{bottom:238.350000px;}
.y4d{bottom:252.390000px;}
.y8d{bottom:259.050000px;}
.y32{bottom:262.830000px;}
.y4c{bottom:273.090000px;}
.y8c{bottom:276.345000px;}
.y31{bottom:280.110000px;}
.y4b{bottom:293.790000px;}
.y30{bottom:306.390000px;}
.y4a{bottom:314.490000px;}
.y8b{bottom:318.465000px;}
.y2f{bottom:323.670000px;}
.y49{bottom:335.190000px;}
.y8a{bottom:339.915000px;}
.y2e{bottom:340.950000px;}
.y48{bottom:355.890000px;}
.y89{bottom:361.335000px;}
.y2d{bottom:367.050000px;}
.y47{bottom:376.590000px;}
.y88{bottom:382.755000px;}
.y2c{bottom:384.330000px;}
.y46{bottom:397.290000px;}
.y87{bottom:404.355000px;}
.y2b{bottom:410.610000px;}
.y45{bottom:417.990000px;}
.y86{bottom:425.775000px;}
.y2a{bottom:427.890000px;}
.y44{bottom:438.720000px;}
.y29{bottom:454.200000px;}
.y43{bottom:459.420000px;}
.y85{bottom:467.895000px;}
.y42{bottom:480.120000px;}
.y28{bottom:480.480000px;}
.y84{bottom:489.315000px;}
.y27{bottom:497.580000px;}
.y41{bottom:500.820000px;}
.y83{bottom:510.735000px;}
.y26{bottom:514.860000px;}
.y40{bottom:521.520000px;}
.y82{bottom:536.295000px;}
.y25{bottom:541.140000px;}
.y3f{bottom:542.220000px;}
.y81{bottom:556.275000px;}
.y24{bottom:558.420000px;}
.y3e{bottom:562.920000px;}
.y80{bottom:573.555000px;}
.y3d{bottom:583.620000px;}
.y7f{bottom:590.835000px;}
.y23{bottom:599.280000px;}
.y3c{bottom:604.320000px;}
.y7e{bottom:608.145000px;}
.y22{bottom:619.980000px;}
.y3b{bottom:623.940000px;}
.y7d{bottom:625.245000px;}
.y7c{bottom:642.705000px;}
.y7b{bottom:659.805000px;}
.y7a{bottom:677.085000px;}
.y79{bottom:694.365000px;}
.y78{bottom:711.825000px;}
.y77{bottom:728.745000px;}
.y76{bottom:746.025000px;}
.y75{bottom:763.305000px;}
.y74{bottom:780.585000px;}
.y73{bottom:797.865000px;}
.y72{bottom:814.965000px;}
.y20{bottom:826.665000px;}
.y71{bottom:832.245000px;}
.y1f{bottom:847.365000px;}
.y70{bottom:849.705000px;}
.y6f{bottom:866.850000px;}
.y1e{bottom:868.110000px;}
.y6e{bottom:884.130000px;}
.y5d{bottom:887.355000px;}
.y1d{bottom:888.810000px;}
.y6d{bottom:901.410000px;}
.y1c{bottom:909.510000px;}
.y6c{bottom:918.510000px;}
.y1a{bottom:926.775000px;}
.y19{bottom:926.790000px;}
.y6b{bottom:935.970000px;}
.y6a{bottom:953.070000px;}
.y69{bottom:970.350000px;}
.y68{bottom:987.810000px;}
.y17{bottom:989.595000px;}
.y16{bottom:989.610000px;}
.y67{bottom:1004.910000px;}
.y66{bottom:1022.010000px;}
.y65{bottom:1039.470000px;}
.y14{bottom:1052.415000px;}
.y11{bottom:1052.430000px;}
.y64{bottom:1056.570000px;}
.y63{bottom:1073.850000px;}
.y62{bottom:1091.130000px;}
.y61{bottom:1108.410000px;}
.y10{bottom:1119.390000px;}
.y60{bottom:1125.510000px;}
.yf{bottom:1140.120000px;}
.y5f{bottom:1143.000000px;}
.y3{bottom:1183.680000px;}
.y1{bottom:1192.860000px;}
.he{height:20.685000px;}
.h10{height:20.721000px;}
.hd{height:28.440000px;}
.hf{height:41.385000px;}
.hc{height:41.391000px;}
.h2{height:49.113281px;}
.hb{height:56.320312px;}
.h9{height:62.085000px;}
.h7{height:62.091000px;}
.h8{height:62.100000px;}
.h3{height:62.327813px;}
.h4{height:63.180000px;}
.h6{height:70.245000px;}
.h5{height:75.093750px;}
.ha{height:636.540000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:137.511000px;}
.wa{width:137.520000px;}
.w5{width:156.435000px;}
.w6{width:156.450000px;}
.wf{width:196.401000px;}
.w3{width:337.395000px;}
.w2{width:398.955000px;}
.w4{width:445.440000px;}
.w10{width:450.435000px;}
.wd{width:452.085000px;}
.w7{width:539.565000px;}
.w8{width:539.580000px;}
.wb{width:605.295000px;}
.we{width:647.550000px;}
.wc{width:743.535000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:7.725000px;}
.x3{left:10.785000px;}
.xb{left:12.960000px;}
.x11{left:14.925000px;}
.x4{left:19.620000px;}
.xf{left:21.051000px;}
.xe{left:71.445000px;}
.x17{left:75.420000px;}
.xd{left:106.785000px;}
.x14{left:119.925000px;}
.xc{left:127.656000px;}
.x2{left:147.105000px;}
.x8{left:159.885000px;}
.x1{left:191.550000px;}
.x15{left:209.550000px;}
.x1f{left:234.030000px;}
.x10{left:245.025000px;}
.x18{left:258.690000px;}
.x1d{left:294.690000px;}
.x6{left:300.675000px;}
.xa{left:317.055000px;}
.x1b{left:320.430000px;}
.x1c{left:352.695000px;}
.x1a{left:383.835000px;}
.x19{left:392.835000px;}
.x12{left:398.235000px;}
.x13{left:416.235000px;}
.x5{left:438.195000px;}
.x16{left:442.875000px;}
.x7{left:478.365000px;}
.x1e{left:765.150000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-53.760000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v3{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.207360pt;}
.ls0{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls6{letter-spacing:1.189333pt;}
.ls2{letter-spacing:13.760000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws9{word-spacing:-18.368000pt;}
.ws0{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.600000pt;}
.ws2{word-spacing:-15.956693pt;}
.ws1{word-spacing:-14.767360pt;}
.ws4{word-spacing:-11.920640pt;}
.ws7{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-11.093333pt;}
._1{margin-left:-0.896000pt;}
._2{width:1.216000pt;}
._3{width:2.109227pt;}
._12{width:3.187200pt;}
._11{width:4.111573pt;}
._10{width:5.736960pt;}
._b{width:7.654400pt;}
._c{width:9.349120pt;}
._d{width:10.523520pt;}
._e{width:12.372480pt;}
._f{width:13.311360pt;}
._14{width:17.490560pt;}
._13{width:18.425600pt;}
._8{width:21.513600pt;}
._9{width:22.735360pt;}
._a{width:23.823787pt;}
._4{width:90.378667pt;}
._5{width:132.810667pt;}
._6{width:346.805333pt;}
._0{width:892.272640pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.160000pt;}
.y59{bottom:3.666667pt;}
.y5c{bottom:3.672000pt;}
.y1b{bottom:3.680000pt;}
.y15{bottom:3.693333pt;}
.y5e{bottom:9.933333pt;}
.yc{bottom:10.880000pt;}
.y6{bottom:15.040000pt;}
.y7{bottom:18.560000pt;}
.ye{bottom:18.720000pt;}
.yb{bottom:21.600000pt;}
.y58{bottom:22.066667pt;}
.y5b{bottom:22.072000pt;}
.y13{bottom:22.080000pt;}
.y18{bottom:22.093333pt;}
.y5{bottom:29.760000pt;}
.ya{bottom:32.320000pt;}
.y57{bottom:40.466667pt;}
.y12{bottom:40.480000pt;}
.y9{bottom:43.072000pt;}
.y4{bottom:44.480000pt;}
.y8{bottom:53.792000pt;}
.y56{bottom:58.866667pt;}
.y2{bottom:58.912000pt;}
.y55{bottom:77.266667pt;}
.y3a{bottom:92.626667pt;}
.y54{bottom:95.506667pt;}
.y5a{bottom:108.680000pt;}
.y39{bottom:110.386667pt;}
.y53{bottom:113.906667pt;}
.y38{bottom:125.586667pt;}
.y52{bottom:132.466667pt;}
.y92{bottom:135.386667pt;}
.y21{bottom:146.280000pt;}
.y37{bottom:148.986667pt;}
.y51{bottom:150.746667pt;}
.y91{bottom:155.066667pt;}
.y36{bottom:164.346667pt;}
.y50{bottom:169.146667pt;}
.y90{bottom:174.586667pt;}
.y35{bottom:179.706667pt;}
.y4f{bottom:187.706667pt;}
.y8f{bottom:193.466667pt;}
.y34{bottom:195.066667pt;}
.y4e{bottom:205.946667pt;}
.y33{bottom:210.266667pt;}
.y8e{bottom:211.866667pt;}
.y4d{bottom:224.346667pt;}
.y8d{bottom:230.266667pt;}
.y32{bottom:233.626667pt;}
.y4c{bottom:242.746667pt;}
.y8c{bottom:245.640000pt;}
.y31{bottom:248.986667pt;}
.y4b{bottom:261.146667pt;}
.y30{bottom:272.346667pt;}
.y4a{bottom:279.546667pt;}
.y8b{bottom:283.080000pt;}
.y2f{bottom:287.706667pt;}
.y49{bottom:297.946667pt;}
.y8a{bottom:302.146667pt;}
.y2e{bottom:303.066667pt;}
.y48{bottom:316.346667pt;}
.y89{bottom:321.186667pt;}
.y2d{bottom:326.266667pt;}
.y47{bottom:334.746667pt;}
.y88{bottom:340.226667pt;}
.y2c{bottom:341.626667pt;}
.y46{bottom:353.146667pt;}
.y87{bottom:359.426667pt;}
.y2b{bottom:364.986667pt;}
.y45{bottom:371.546667pt;}
.y86{bottom:378.466667pt;}
.y2a{bottom:380.346667pt;}
.y44{bottom:389.973333pt;}
.y29{bottom:403.733333pt;}
.y43{bottom:408.373333pt;}
.y85{bottom:415.906667pt;}
.y42{bottom:426.773333pt;}
.y28{bottom:427.093333pt;}
.y84{bottom:434.946667pt;}
.y27{bottom:442.293333pt;}
.y41{bottom:445.173333pt;}
.y83{bottom:453.986667pt;}
.y26{bottom:457.653333pt;}
.y40{bottom:463.573333pt;}
.y82{bottom:476.706667pt;}
.y25{bottom:481.013333pt;}
.y3f{bottom:481.973333pt;}
.y81{bottom:494.466667pt;}
.y24{bottom:496.373333pt;}
.y3e{bottom:500.373333pt;}
.y80{bottom:509.826667pt;}
.y3d{bottom:518.773333pt;}
.y7f{bottom:525.186667pt;}
.y23{bottom:532.693333pt;}
.y3c{bottom:537.173333pt;}
.y7e{bottom:540.573333pt;}
.y22{bottom:551.093333pt;}
.y3b{bottom:554.613333pt;}
.y7d{bottom:555.773333pt;}
.y7c{bottom:571.293333pt;}
.y7b{bottom:586.493333pt;}
.y7a{bottom:601.853333pt;}
.y79{bottom:617.213333pt;}
.y78{bottom:632.733333pt;}
.y77{bottom:647.773333pt;}
.y76{bottom:663.133333pt;}
.y75{bottom:678.493333pt;}
.y74{bottom:693.853333pt;}
.y73{bottom:709.213333pt;}
.y72{bottom:724.413333pt;}
.y20{bottom:734.813333pt;}
.y71{bottom:739.773333pt;}
.y1f{bottom:753.213333pt;}
.y70{bottom:755.293333pt;}
.y6f{bottom:770.533333pt;}
.y1e{bottom:771.653333pt;}
.y6e{bottom:785.893333pt;}
.y5d{bottom:788.760000pt;}
.y1d{bottom:790.053333pt;}
.y6d{bottom:801.253333pt;}
.y1c{bottom:808.453333pt;}
.y6c{bottom:816.453333pt;}
.y1a{bottom:823.800000pt;}
.y19{bottom:823.813333pt;}
.y6b{bottom:831.973333pt;}
.y6a{bottom:847.173333pt;}
.y69{bottom:862.533333pt;}
.y68{bottom:878.053333pt;}
.y17{bottom:879.640000pt;}
.y16{bottom:879.653333pt;}
.y67{bottom:893.253333pt;}
.y66{bottom:908.453333pt;}
.y65{bottom:923.973333pt;}
.y14{bottom:935.480000pt;}
.y11{bottom:935.493333pt;}
.y64{bottom:939.173333pt;}
.y63{bottom:954.533333pt;}
.y62{bottom:969.893333pt;}
.y61{bottom:985.253333pt;}
.y10{bottom:995.013333pt;}
.y60{bottom:1000.453333pt;}
.yf{bottom:1013.440000pt;}
.y5f{bottom:1016.000000pt;}
.y3{bottom:1052.160000pt;}
.y1{bottom:1060.320000pt;}
.he{height:18.386667pt;}
.h10{height:18.418667pt;}
.hd{height:25.280000pt;}
.hf{height:36.786667pt;}
.hc{height:36.792000pt;}
.h2{height:43.656250pt;}
.hb{height:50.062500pt;}
.h9{height:55.186667pt;}
.h7{height:55.192000pt;}
.h8{height:55.200000pt;}
.h3{height:55.402500pt;}
.h4{height:56.160000pt;}
.h6{height:62.440000pt;}
.h5{height:66.750000pt;}
.ha{height:565.813333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:122.232000pt;}
.wa{width:122.240000pt;}
.w5{width:139.053333pt;}
.w6{width:139.066667pt;}
.wf{width:174.578667pt;}
.w3{width:299.906667pt;}
.w2{width:354.626667pt;}
.w4{width:395.946667pt;}
.w10{width:400.386667pt;}
.wd{width:401.853333pt;}
.w7{width:479.613333pt;}
.w8{width:479.626667pt;}
.wb{width:538.040000pt;}
.we{width:575.600000pt;}
.wc{width:660.920000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:6.866667pt;}
.x3{left:9.586667pt;}
.xb{left:11.520000pt;}
.x11{left:13.266667pt;}
.x4{left:17.440000pt;}
.xf{left:18.712000pt;}
.xe{left:63.506667pt;}
.x17{left:67.040000pt;}
.xd{left:94.920000pt;}
.x14{left:106.600000pt;}
.xc{left:113.472000pt;}
.x2{left:130.760000pt;}
.x8{left:142.120000pt;}
.x1{left:170.266667pt;}
.x15{left:186.266667pt;}
.x1f{left:208.026667pt;}
.x10{left:217.800000pt;}
.x18{left:229.946667pt;}
.x1d{left:261.946667pt;}
.x6{left:267.266667pt;}
.xa{left:281.826667pt;}
.x1b{left:284.826667pt;}
.x1c{left:313.506667pt;}
.x1a{left:341.186667pt;}
.x19{left:349.186667pt;}
.x12{left:353.986667pt;}
.x13{left:369.986667pt;}
.x5{left:389.506667pt;}
.x16{left:393.666667pt;}
.x7{left:425.213333pt;}
.x1e{left:680.133333pt;}
}




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