
    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_b1791b34ea8ca53b98c3aaba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bdc8e97cec3ab3be9d548c48.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7382ca65c79d56d878a61863.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_f52f72f8de411b4e365c7360.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_832a2f8c94eae8471d589242.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f03906c014fc721c65f6758b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7913b9311f228f87afd98a2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_d8746e1a127a5fc63d89a59e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6413a533ebf1203b7b93c977.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lsf{letter-spacing:-0.750000px;}
.ls5{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.712800px;}
.ls1{letter-spacing:0.750000px;}
.ls10{letter-spacing:0.997920px;}
.ls3{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.260000px;}
.ls11{letter-spacing:3.240000px;}
.lse{letter-spacing:16.904160px;}
.lsc{letter-spacing:53.624160px;}
.lsa{letter-spacing:73.894560px;}
.ls4{letter-spacing:135.704160px;}
.ls6{letter-spacing:142.328160px;}
.ls8{letter-spacing:162.466560px;}
.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;}
}
.ws4{word-spacing:-18.900000px;}
.ws1{word-spacing:-18.570000px;}
.ws3{word-spacing:-17.820000px;}
.ws5{word-spacing:-17.070000px;}
.ws0{word-spacing:-15.132960px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-5.397840px;}
._d{margin-left:-4.227120px;}
._1{margin-left:-2.410560px;}
._0{margin-left:-1.339200px;}
._3{width:1.283040px;}
._2{width:2.300400px;}
._5{width:3.764880px;}
._4{width:5.530560px;}
._7{width:6.821760px;}
._b{width:8.398080px;}
._1a{width:9.411600px;}
._c{width:10.524000px;}
._14{width:11.689920px;}
._15{width:13.104240px;}
._19{width:14.739840px;}
._13{width:15.798240px;}
._12{width:16.806960px;}
._6{width:19.515120px;}
._8{width:20.912400px;}
._20{width:22.174560px;}
._f{width:23.222160px;}
._11{width:24.306480px;}
._10{width:25.416720px;}
._1e{width:26.573520px;}
._17{width:27.686880px;}
._18{width:28.743120px;}
._16{width:30.546720px;}
._1b{width:32.850480px;}
._1f{width:37.679040px;}
._a{width:42.055680px;}
._9{width:43.322640px;}
._1d{width:45.057120px;}
._1c{width:68.568000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.960000px;}
.fs0{font-size:71.280000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.040000px;}
.y73{bottom:-51.885000px;}
.y69{bottom:-51.840000px;}
.y60{bottom:-47.010000px;}
.y6d{bottom:-29.700000px;}
.y64{bottom:-25.920000px;}
.y5c{bottom:-18.360000px;}
.y72{bottom:-17.325000px;}
.y68{bottom:-17.280000px;}
.y5f{bottom:-13.500000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:4.320000px;}
.y67{bottom:5.400000px;}
.y5b{bottom:7.560000px;}
.y59{bottom:8.100000px;}
.y63{bottom:8.640000px;}
.y5e{bottom:9.720000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.340000px;}
.y4c{bottom:13.500000px;}
.y55{bottom:19.440000px;}
.y6f{bottom:23.760000px;}
.y51{bottom:24.840000px;}
.y46{bottom:25.380000px;}
.y48{bottom:25.950000px;}
.y71{bottom:27.540000px;}
.y6b{bottom:27.570000px;}
.y66{bottom:28.110000px;}
.y62{bottom:31.320000px;}
.y4b{bottom:34.605000px;}
.y4e{bottom:35.130000px;}
.y57{bottom:35.670000px;}
.y54{bottom:39.990000px;}
.y50{bottom:45.390000px;}
.y45{bottom:45.930000px;}
.y53{bottom:45.945000px;}
.y4a{bottom:55.125000px;}
.y8{bottom:57.276000px;}
.y5{bottom:73.476000px;}
.y34{bottom:108.036000px;}
.y33{bottom:131.832000px;}
.y32{bottom:155.595000px;}
.y31{bottom:179.355000px;}
.y30{bottom:203.115000px;}
.y43{bottom:226.365000px;}
.y2f{bottom:226.905000px;}
.y2e{bottom:250.125000px;}
.y40{bottom:250.665000px;}
.y52{bottom:265.245000px;}
.y49{bottom:267.405000px;}
.y42{bottom:273.885000px;}
.y2d{bottom:274.425000px;}
.y2c{bottom:298.230000px;}
.y3f{bottom:321.450000px;}
.y2b{bottom:321.990000px;}
.y4f{bottom:344.130000px;}
.y2a{bottom:345.750000px;}
.y56{bottom:355.470000px;}
.y47{bottom:356.550000px;}
.y29{bottom:369.510000px;}
.y28{bottom:393.840000px;}
.y27{bottom:417.600000px;}
.y44{bottom:432.720000px;}
.y4d{bottom:437.580000px;}
.y26{bottom:441.360000px;}
.y25{bottom:465.120000px;}
.y24{bottom:488.910000px;}
.y23{bottom:512.670000px;}
.y22{bottom:536.430000px;}
.y21{bottom:560.235000px;}
.y20{bottom:583.995000px;}
.y75{bottom:607.215000px;}
.y1f{bottom:607.755000px;}
.y1e{bottom:631.515000px;}
.y1d{bottom:655.305000px;}
.y41{bottom:679.065000px;}
.y1c{bottom:679.605000px;}
.y1b{bottom:702.825000px;}
.y3e{bottom:703.365000px;}
.y6e{bottom:722.850000px;}
.y70{bottom:725.550000px;}
.y1a{bottom:726.630000px;}
.y3d{bottom:727.170000px;}
.y19{bottom:750.930000px;}
.y18{bottom:774.690000px;}
.y65{bottom:783.330000px;}
.y6a{bottom:784.950000px;}
.y17{bottom:798.450000px;}
.y16{bottom:822.240000px;}
.y15{bottom:846.000000px;}
.y61{bottom:851.400000px;}
.y14{bottom:869.760000px;}
.y13{bottom:893.550000px;}
.y5a{bottom:912.990000px;}
.y5d{bottom:913.530000px;}
.y12{bottom:917.310000px;}
.y11{bottom:940.530000px;}
.y3c{bottom:941.070000px;}
.y10{bottom:964.290000px;}
.y3b{bottom:964.830000px;}
.y58{bottom:971.895000px;}
.y77{bottom:988.635000px;}
.yf{bottom:989.175000px;}
.y76{bottom:1012.395000px;}
.ye{bottom:1012.935000px;}
.yd{bottom:1036.155000px;}
.y3a{bottom:1036.695000px;}
.yc{bottom:1059.945000px;}
.y39{bottom:1060.485000px;}
.y38{bottom:1084.245000px;}
.yb{bottom:1086.405000px;}
.y37{bottom:1108.005000px;}
.ya{bottom:1117.725000px;}
.y36{bottom:1131.765000px;}
.y9{bottom:1149.630000px;}
.y74{bottom:1155.030000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1194.990000px;}
.y3{bottom:1210.650000px;}
.y2{bottom:1227.420000px;}
.y1{bottom:1246.320000px;}
.hf{height:25.380000px;}
.h10{height:26.460000px;}
.h5{height:27.000000px;}
.h16{height:43.740000px;}
.h14{height:43.776000px;}
.h15{height:44.280000px;}
.h13{height:44.316000px;}
.h12{height:47.556000px;}
.h9{height:49.770703px;}
.h7{height:50.775820px;}
.hb{height:52.102617px;}
.h4{height:54.421875px;}
.h3{height:67.483125px;}
.ha{height:69.922617px;}
.h6{height:69.957422px;}
.hd{height:70.776000px;}
.hc{height:71.316000px;}
.h2{height:71.836875px;}
.he{height:73.264608px;}
.h11{height:82.676953px;}
.h8{height:95.782500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:103.716000px;}
.w6{width:162.645000px;}
.wa{width:291.780000px;}
.wb{width:292.320000px;}
.w8{width:293.940000px;}
.w5{width:298.800000px;}
.w3{width:299.340000px;}
.w9{width:312.300000px;}
.w7{width:386.895000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:11.340000px;}
.x19{left:12.960000px;}
.x30{left:16.740000px;}
.x2a{left:18.360000px;}
.x37{left:24.300000px;}
.x33{left:27.576000px;}
.x1c{left:31.365000px;}
.x1d{left:32.985000px;}
.x14{left:34.560000px;}
.x26{left:36.750000px;}
.x8{left:39.420000px;}
.x20{left:40.530000px;}
.x18{left:42.156000px;}
.x1a{left:45.933000px;}
.x1e{left:48.105000px;}
.x15{left:49.713000px;}
.x28{left:51.333000px;}
.x17{left:54.033000px;}
.x2b{left:55.125000px;}
.x35{left:56.205000px;}
.x5{left:95.652000px;}
.x31{left:100.515000px;}
.x13{left:106.452000px;}
.xf{left:111.311987px;}
.x2d{left:117.792000px;}
.x36{left:118.872000px;}
.x32{left:119.952000px;}
.x27{left:121.032000px;}
.x12{left:128.051987px;}
.x3a{left:138.311987px;}
.x2e{left:145.878000px;}
.xd{left:148.607987px;}
.x39{left:149.687987px;}
.x2c{left:156.135000px;}
.xb{left:159.404987px;}
.xa{left:165.884987px;}
.x23{left:182.084987px;}
.x3{left:189.644987px;}
.x24{left:202.604987px;}
.x10{left:221.549987px;}
.xc{left:226.409987px;}
.x25{left:245.850000px;}
.x6{left:290.703000px;}
.x11{left:322.019987px;}
.x2{left:333.389987px;}
.x4{left:342.569987px;}
.x1b{left:365.250000px;}
.xe{left:366.869987px;}
.x7{left:394.995000px;}
.x22{left:446.324987px;}
.x29{left:465.765000px;}
.x2f{left:467.385000px;}
.x34{left:473.325000px;}
.x38{left:475.485000px;}
.x9{left:498.705000px;}
.x1f{left:617.580000px;}
.x21{left:618.660000px;}
.x1{left:797.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.666667pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.633600pt;}
.ls1{letter-spacing:0.666667pt;}
.ls10{letter-spacing:0.887040pt;}
.ls3{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.120000pt;}
.ls11{letter-spacing:2.880000pt;}
.lse{letter-spacing:15.025920pt;}
.lsc{letter-spacing:47.665920pt;}
.lsa{letter-spacing:65.684053pt;}
.ls4{letter-spacing:120.625920pt;}
.ls6{letter-spacing:126.513920pt;}
.ls8{letter-spacing:144.414720pt;}
.ws4{word-spacing:-16.800000pt;}
.ws1{word-spacing:-16.506667pt;}
.ws3{word-spacing:-15.840000pt;}
.ws5{word-spacing:-15.173333pt;}
.ws0{word-spacing:-13.451520pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-4.798080pt;}
._d{margin-left:-3.757440pt;}
._1{margin-left:-2.142720pt;}
._0{margin-left:-1.190400pt;}
._3{width:1.140480pt;}
._2{width:2.044800pt;}
._5{width:3.346560pt;}
._4{width:4.916053pt;}
._7{width:6.063787pt;}
._b{width:7.464960pt;}
._1a{width:8.365867pt;}
._c{width:9.354667pt;}
._14{width:10.391040pt;}
._15{width:11.648213pt;}
._19{width:13.102080pt;}
._13{width:14.042880pt;}
._12{width:14.939520pt;}
._6{width:17.346773pt;}
._8{width:18.588800pt;}
._20{width:19.710720pt;}
._f{width:20.641920pt;}
._11{width:21.605760pt;}
._10{width:22.592640pt;}
._1e{width:23.620907pt;}
._17{width:24.610560pt;}
._18{width:25.549440pt;}
._16{width:27.152640pt;}
._1b{width:29.200427pt;}
._1f{width:33.492480pt;}
._a{width:37.382827pt;}
._9{width:38.509013pt;}
._1d{width:40.050773pt;}
._1c{width:60.949333pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:59.520000pt;}
.fs0{font-size:63.360000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:84.480000pt;}
.y73{bottom:-46.120000pt;}
.y69{bottom:-46.080000pt;}
.y60{bottom:-41.786667pt;}
.y6d{bottom:-26.400000pt;}
.y64{bottom:-23.040000pt;}
.y5c{bottom:-16.320000pt;}
.y72{bottom:-15.400000pt;}
.y68{bottom:-15.360000pt;}
.y5f{bottom:-12.000000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:3.840000pt;}
.y67{bottom:4.800000pt;}
.y5b{bottom:6.720000pt;}
.y59{bottom:7.200000pt;}
.y63{bottom:7.680000pt;}
.y5e{bottom:8.640000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:10.080000pt;}
.y4c{bottom:12.000000pt;}
.y55{bottom:17.280000pt;}
.y6f{bottom:21.120000pt;}
.y51{bottom:22.080000pt;}
.y46{bottom:22.560000pt;}
.y48{bottom:23.066667pt;}
.y71{bottom:24.480000pt;}
.y6b{bottom:24.506667pt;}
.y66{bottom:24.986667pt;}
.y62{bottom:27.840000pt;}
.y4b{bottom:30.760000pt;}
.y4e{bottom:31.226667pt;}
.y57{bottom:31.706667pt;}
.y54{bottom:35.546667pt;}
.y50{bottom:40.346667pt;}
.y45{bottom:40.826667pt;}
.y53{bottom:40.840000pt;}
.y4a{bottom:49.000000pt;}
.y8{bottom:50.912000pt;}
.y5{bottom:65.312000pt;}
.y34{bottom:96.032000pt;}
.y33{bottom:117.184000pt;}
.y32{bottom:138.306667pt;}
.y31{bottom:159.426667pt;}
.y30{bottom:180.546667pt;}
.y43{bottom:201.213333pt;}
.y2f{bottom:201.693333pt;}
.y2e{bottom:222.333333pt;}
.y40{bottom:222.813333pt;}
.y52{bottom:235.773333pt;}
.y49{bottom:237.693333pt;}
.y42{bottom:243.453333pt;}
.y2d{bottom:243.933333pt;}
.y2c{bottom:265.093333pt;}
.y3f{bottom:285.733333pt;}
.y2b{bottom:286.213333pt;}
.y4f{bottom:305.893333pt;}
.y2a{bottom:307.333333pt;}
.y56{bottom:315.973333pt;}
.y47{bottom:316.933333pt;}
.y29{bottom:328.453333pt;}
.y28{bottom:350.080000pt;}
.y27{bottom:371.200000pt;}
.y44{bottom:384.640000pt;}
.y4d{bottom:388.960000pt;}
.y26{bottom:392.320000pt;}
.y25{bottom:413.440000pt;}
.y24{bottom:434.586667pt;}
.y23{bottom:455.706667pt;}
.y22{bottom:476.826667pt;}
.y21{bottom:497.986667pt;}
.y20{bottom:519.106667pt;}
.y75{bottom:539.746667pt;}
.y1f{bottom:540.226667pt;}
.y1e{bottom:561.346667pt;}
.y1d{bottom:582.493333pt;}
.y41{bottom:603.613333pt;}
.y1c{bottom:604.093333pt;}
.y1b{bottom:624.733333pt;}
.y3e{bottom:625.213333pt;}
.y6e{bottom:642.533333pt;}
.y70{bottom:644.933333pt;}
.y1a{bottom:645.893333pt;}
.y3d{bottom:646.373333pt;}
.y19{bottom:667.493333pt;}
.y18{bottom:688.613333pt;}
.y65{bottom:696.293333pt;}
.y6a{bottom:697.733333pt;}
.y17{bottom:709.733333pt;}
.y16{bottom:730.880000pt;}
.y15{bottom:752.000000pt;}
.y61{bottom:756.800000pt;}
.y14{bottom:773.120000pt;}
.y13{bottom:794.266667pt;}
.y5a{bottom:811.546667pt;}
.y5d{bottom:812.026667pt;}
.y12{bottom:815.386667pt;}
.y11{bottom:836.026667pt;}
.y3c{bottom:836.506667pt;}
.y10{bottom:857.146667pt;}
.y3b{bottom:857.626667pt;}
.y58{bottom:863.906667pt;}
.y77{bottom:878.786667pt;}
.yf{bottom:879.266667pt;}
.y76{bottom:899.906667pt;}
.ye{bottom:900.386667pt;}
.yd{bottom:921.026667pt;}
.y3a{bottom:921.506667pt;}
.yc{bottom:942.173333pt;}
.y39{bottom:942.653333pt;}
.y38{bottom:963.773333pt;}
.yb{bottom:965.693333pt;}
.y37{bottom:984.893333pt;}
.ya{bottom:993.533333pt;}
.y36{bottom:1006.013333pt;}
.y9{bottom:1021.893333pt;}
.y74{bottom:1026.693333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.213333pt;}
.y3{bottom:1076.133333pt;}
.y2{bottom:1091.040000pt;}
.y1{bottom:1107.840000pt;}
.hf{height:22.560000pt;}
.h10{height:23.520000pt;}
.h5{height:24.000000pt;}
.h16{height:38.880000pt;}
.h14{height:38.912000pt;}
.h15{height:39.360000pt;}
.h13{height:39.392000pt;}
.h12{height:42.272000pt;}
.h9{height:44.240625pt;}
.h7{height:45.134063pt;}
.hb{height:46.313437pt;}
.h4{height:48.375000pt;}
.h3{height:59.985000pt;}
.ha{height:62.153437pt;}
.h6{height:62.184375pt;}
.hd{height:62.912000pt;}
.hc{height:63.392000pt;}
.h2{height:63.855000pt;}
.he{height:65.124096pt;}
.h11{height:73.490625pt;}
.h8{height:85.140000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:92.192000pt;}
.w6{width:144.573333pt;}
.wa{width:259.360000pt;}
.wb{width:259.840000pt;}
.w8{width:261.280000pt;}
.w5{width:265.600000pt;}
.w3{width:266.080000pt;}
.w9{width:277.600000pt;}
.w7{width:343.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:10.080000pt;}
.x19{left:11.520000pt;}
.x30{left:14.880000pt;}
.x2a{left:16.320000pt;}
.x37{left:21.600000pt;}
.x33{left:24.512000pt;}
.x1c{left:27.880000pt;}
.x1d{left:29.320000pt;}
.x14{left:30.720000pt;}
.x26{left:32.666667pt;}
.x8{left:35.040000pt;}
.x20{left:36.026667pt;}
.x18{left:37.472000pt;}
.x1a{left:40.829333pt;}
.x1e{left:42.760000pt;}
.x15{left:44.189333pt;}
.x28{left:45.629333pt;}
.x17{left:48.029333pt;}
.x2b{left:49.000000pt;}
.x35{left:49.960000pt;}
.x5{left:85.024000pt;}
.x31{left:89.346667pt;}
.x13{left:94.624000pt;}
.xf{left:98.943988pt;}
.x2d{left:104.704000pt;}
.x36{left:105.664000pt;}
.x32{left:106.624000pt;}
.x27{left:107.584000pt;}
.x12{left:113.823988pt;}
.x3a{left:122.943988pt;}
.x2e{left:129.669333pt;}
.xd{left:132.095988pt;}
.x39{left:133.055988pt;}
.x2c{left:138.786667pt;}
.xb{left:141.693322pt;}
.xa{left:147.453322pt;}
.x23{left:161.853322pt;}
.x3{left:168.573322pt;}
.x24{left:180.093322pt;}
.x10{left:196.933322pt;}
.xc{left:201.253322pt;}
.x25{left:218.533333pt;}
.x6{left:258.402667pt;}
.x11{left:286.239988pt;}
.x2{left:296.346655pt;}
.x4{left:304.506655pt;}
.x1b{left:324.666667pt;}
.xe{left:326.106655pt;}
.x7{left:351.106667pt;}
.x22{left:396.733322pt;}
.x29{left:414.013333pt;}
.x2f{left:415.453333pt;}
.x34{left:420.733333pt;}
.x38{left:422.653333pt;}
.x9{left:443.293333pt;}
.x1f{left:548.960000pt;}
.x21{left:549.920000pt;}
.x1{left:708.893322pt;}
}




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