
    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_e724363d0fcec662a2496fa2.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_2924ee83d85fa1bd5dca0adb.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_22505aea4252f8f820f0a569.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_7bb26be75cee0f448275fdcc.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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e63ff277925be9ee230c4430.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2f7951acb79d076023973086.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_29ba65e5309312ae94d14c62.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.341400px;}
.lsa{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:1.980000px;}
.ls8{letter-spacing:21.197280px;}
.ls9{letter-spacing:24.797280px;}
.ls3{letter-spacing:64.002720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws7{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.097440px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-21.031920px;}
.ws4{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-5.222880px;}
._8{margin-left:-4.079280px;}
._1{margin-left:-2.733120px;}
._0{margin-left:-1.312080px;}
._4{width:1.006080px;}
._7{width:2.611440px;}
._6{width:3.670800px;}
._d{width:5.679840px;}
._5{width:6.791040px;}
._f{width:8.193600px;}
._10{width:10.157280px;}
._15{width:11.456640px;}
._11{width:13.225680px;}
._c{width:14.996160px;}
._9{width:16.511040px;}
._a{width:17.743680px;}
._b{width:19.689840px;}
._19{width:23.081760px;}
._12{width:24.261120px;}
._1a{width:25.945920px;}
._18{width:27.967680px;}
._14{width:32.921760px;}
._13{width:33.948720px;}
._16{width:35.296560px;}
._17{width:37.943520px;}
._1b{width:64.612080px;}
._1c{width:65.924160px;}
._2{width:641.856000px;}
._3{width:1830.720000px;}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.y6{bottom:-25.020000px;}
.y2a{bottom:-4.350000px;}
.y82{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:5.940000px;}
.y83{bottom:6.645000px;}
.y5{bottom:10.830000px;}
.ya{bottom:12.240000px;}
.y3f{bottom:16.740000px;}
.y7b{bottom:16.905000px;}
.y7d{bottom:17.085000px;}
.y41{bottom:17.100000px;}
.y43{bottom:17.280000px;}
.y2{bottom:20.340000px;}
.y84{bottom:30.585000px;}
.y7{bottom:31.500000px;}
.y4{bottom:47.010000px;}
.y7a{bottom:53.130000px;}
.yc{bottom:59.400000px;}
.y28{bottom:82.410000px;}
.y87{bottom:131.040000px;}
.y26{bottom:131.400000px;}
.y70{bottom:138.240000px;}
.y3c{bottom:139.860000px;}
.y86{bottom:167.220000px;}
.y25{bottom:167.580000px;}
.y6f{bottom:174.450000px;}
.y3b{bottom:176.070000px;}
.y85{bottom:203.610000px;}
.y24{bottom:203.790000px;}
.y57{bottom:207.030000px;}
.y6e{bottom:210.630000px;}
.y3a{bottom:212.250000px;}
.y81{bottom:223.425000px;}
.y80{bottom:233.505000px;}
.y23{bottom:239.970000px;}
.y56{bottom:243.210000px;}
.y6d{bottom:246.990000px;}
.y39{bottom:248.610000px;}
.y7f{bottom:273.825000px;}
.y22{bottom:276.330000px;}
.y55{bottom:279.390000px;}
.y6c{bottom:283.170000px;}
.y38{bottom:284.790000px;}
.y7e{bottom:310.905000px;}
.y21{bottom:312.510000px;}
.y54{bottom:315.570000px;}
.y6b{bottom:319.350000px;}
.y37{bottom:320.970000px;}
.y7c{bottom:347.805000px;}
.y20{bottom:348.690000px;}
.y53{bottom:351.930000px;}
.y6a{bottom:355.530000px;}
.y36{bottom:357.150000px;}
.y79{bottom:384.705000px;}
.y1f{bottom:384.870000px;}
.y52{bottom:388.110000px;}
.y69{bottom:391.890000px;}
.y35{bottom:393.510000px;}
.y1e{bottom:420.735000px;}
.y51{bottom:424.335000px;}
.y68{bottom:427.755000px;}
.y8c{bottom:428.115000px;}
.y34{bottom:429.735000px;}
.y1d{bottom:457.455000px;}
.y50{bottom:460.515000px;}
.y67{bottom:464.295000px;}
.y33{bottom:465.555000px;}
.y78{bottom:474.735000px;}
.y1c{bottom:493.635000px;}
.y4f{bottom:496.695000px;}
.y66{bottom:500.475000px;}
.y32{bottom:501.735000px;}
.y77{bottom:511.095000px;}
.y1b{bottom:529.815000px;}
.y4e{bottom:533.055000px;}
.y8b{bottom:536.475000px;}
.y65{bottom:536.835000px;}
.y31{bottom:538.455000px;}
.y76{bottom:547.635000px;}
.y1a{bottom:565.995000px;}
.y4d{bottom:569.235000px;}
.y64{bottom:573.015000px;}
.y30{bottom:574.635000px;}
.y75{bottom:583.815000px;}
.y19{bottom:602.355000px;}
.y4c{bottom:605.415000px;}
.y2f{bottom:605.775000px;}
.y63{bottom:608.835000px;}
.y8a{bottom:609.195000px;}
.y74{bottom:619.995000px;}
.y18{bottom:638.535000px;}
.y4b{bottom:641.595000px;}
.y62{bottom:645.375000px;}
.y73{bottom:655.815000px;}
.y17{bottom:674.745000px;}
.y4a{bottom:677.985000px;}
.y61{bottom:681.585000px;}
.y72{bottom:692.565000px;}
.y16{bottom:710.925000px;}
.y49{bottom:713.805000px;}
.y60{bottom:717.945000px;}
.y71{bottom:723.705000px;}
.y15{bottom:747.285000px;}
.y48{bottom:749.985000px;}
.y5f{bottom:754.125000px;}
.y14{bottom:783.465000px;}
.y47{bottom:786.525000px;}
.y5e{bottom:789.945000px;}
.y89{bottom:790.305000px;}
.y13{bottom:819.645000px;}
.y46{bottom:822.885000px;}
.y5d{bottom:826.485000px;}
.y12{bottom:855.825000px;}
.y45{bottom:859.065000px;}
.y5c{bottom:862.845000px;}
.y44{bottom:878.865000px;}
.y11{bottom:892.005000px;}
.y5b{bottom:899.025000px;}
.y42{bottom:915.810000px;}
.y10{bottom:928.410000px;}
.y5a{bottom:935.250000px;}
.y40{bottom:952.890000px;}
.yf{bottom:964.590000px;}
.y59{bottom:971.070000px;}
.y88{bottom:971.430000px;}
.y3e{bottom:989.790000px;}
.ye{bottom:1000.410000px;}
.y58{bottom:1007.430000px;}
.y2e{bottom:1007.790000px;}
.yd{bottom:1031.910000px;}
.y27{bottom:1033.560000px;}
.y3d{bottom:1043.610000px;}
.y2d{bottom:1043.970000px;}
.y29{bottom:1079.790000px;}
.y2c{bottom:1080.150000px;}
.y2b{bottom:1116.330000px;}
.y3{bottom:1148.190000px;}
.y1{bottom:1171.260000px;}
.y9{bottom:1195.920000px;}
.h12{height:2.826563px;}
.h6{height:25.380000px;}
.hd{height:36.165000px;}
.hf{height:36.202500px;}
.he{height:36.345000px;}
.h2{height:40.320000px;}
.h11{height:49.665000px;}
.h7{height:58.651172px;}
.ha{height:58.819922px;}
.h4{height:66.450000px;}
.h10{height:72.561000px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.h13{height:86.585445px;}
.hb{height:101.880000px;}
.h8{height:110.700000px;}
.hc{height:145.125000px;}
.h9{height:182.039062px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wf{width:40.860000px;}
.w10{width:46.065000px;}
.w5{width:122.400000px;}
.wd{width:124.545000px;}
.wc{width:135.921000px;}
.w3{width:163.830000px;}
.w4{width:169.230000px;}
.wb{width:169.410000px;}
.w7{width:183.441000px;}
.w2{width:188.481000px;}
.we{width:216.381000px;}
.w8{width:249.330000px;}
.wa{width:253.995000px;}
.w9{width:272.940000px;}
.w6{width:693.900000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2d{left:1.071000px;}
.xf{left:6.696000px;}
.x1d{left:7.740000px;}
.x7{left:14.940000px;}
.x4{left:23.940000px;}
.x1a{left:56.340000px;}
.x1c{left:83.865000px;}
.x6{left:100.476000px;}
.x1{left:106.425000px;}
.x5{left:108.036000px;}
.x13{left:109.476000px;}
.x2c{left:111.285000px;}
.x1e{left:116.136000px;}
.x17{left:127.476000px;}
.x15{left:133.416000px;}
.x27{left:134.856000px;}
.xd{left:153.570000px;}
.x20{left:157.890000px;}
.xb{left:189.390000px;}
.x25{left:195.870000px;}
.x18{left:214.050000px;}
.x2f{left:218.550000px;}
.x26{left:244.650000px;}
.xa{left:251.850000px;}
.x28{left:255.090000px;}
.x23{left:267.735000px;}
.x21{left:282.315000px;}
.x19{left:285.555000px;}
.x9{left:316.155000px;}
.x10{left:324.435000px;}
.x1f{left:326.235000px;}
.x22{left:339.735000px;}
.x11{left:346.965000px;}
.xe{left:353.955000px;}
.x29{left:356.115000px;}
.x2e{left:366.015000px;}
.x14{left:368.355000px;}
.x16{left:383.115000px;}
.xc{left:447.405000px;}
.x2a{left:526.260000px;}
.x1b{left:535.620000px;}
.x24{left:580.245000px;}
.x3{left:643.830000px;}
.x2{left:648.150000px;}
.x2b{left:662.910000px;}
.x8{left:795.750000px;}
.x12{left:802.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.303467pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:1.760000pt;}
.ls8{letter-spacing:18.842027pt;}
.ls9{letter-spacing:22.042027pt;}
.ls3{letter-spacing:56.891307pt;}
.ws5{word-spacing:-53.120000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.753280pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-4.642560pt;}
._8{margin-left:-3.626027pt;}
._1{margin-left:-2.429440pt;}
._0{margin-left:-1.166293pt;}
._4{width:0.894293pt;}
._7{width:2.321280pt;}
._6{width:3.262933pt;}
._d{width:5.048747pt;}
._5{width:6.036480pt;}
._f{width:7.283200pt;}
._10{width:9.028693pt;}
._15{width:10.183680pt;}
._11{width:11.756160pt;}
._c{width:13.329920pt;}
._9{width:14.676480pt;}
._a{width:15.772160pt;}
._b{width:17.502080pt;}
._19{width:20.517120pt;}
._12{width:21.565440pt;}
._1a{width:23.063040pt;}
._18{width:24.860160pt;}
._14{width:29.263787pt;}
._13{width:30.176640pt;}
._16{width:31.374720pt;}
._17{width:33.727573pt;}
._1b{width:57.432960pt;}
._1c{width:58.599253pt;}
._2{width:570.538667pt;}
._3{width:1627.306667pt;}
.fs4{font-size:2.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.y6{bottom:-22.240000pt;}
.y2a{bottom:-3.866667pt;}
.y82{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:5.280000pt;}
.y83{bottom:5.906667pt;}
.y5{bottom:9.626667pt;}
.ya{bottom:10.880000pt;}
.y3f{bottom:14.880000pt;}
.y7b{bottom:15.026667pt;}
.y7d{bottom:15.186667pt;}
.y41{bottom:15.200000pt;}
.y43{bottom:15.360000pt;}
.y2{bottom:18.080000pt;}
.y84{bottom:27.186667pt;}
.y7{bottom:28.000000pt;}
.y4{bottom:41.786667pt;}
.y7a{bottom:47.226667pt;}
.yc{bottom:52.800000pt;}
.y28{bottom:73.253333pt;}
.y87{bottom:116.480000pt;}
.y26{bottom:116.800000pt;}
.y70{bottom:122.880000pt;}
.y3c{bottom:124.320000pt;}
.y86{bottom:148.640000pt;}
.y25{bottom:148.960000pt;}
.y6f{bottom:155.066667pt;}
.y3b{bottom:156.506667pt;}
.y85{bottom:180.986667pt;}
.y24{bottom:181.146667pt;}
.y57{bottom:184.026667pt;}
.y6e{bottom:187.226667pt;}
.y3a{bottom:188.666667pt;}
.y81{bottom:198.600000pt;}
.y80{bottom:207.560000pt;}
.y23{bottom:213.306667pt;}
.y56{bottom:216.186667pt;}
.y6d{bottom:219.546667pt;}
.y39{bottom:220.986667pt;}
.y7f{bottom:243.400000pt;}
.y22{bottom:245.626667pt;}
.y55{bottom:248.346667pt;}
.y6c{bottom:251.706667pt;}
.y38{bottom:253.146667pt;}
.y7e{bottom:276.360000pt;}
.y21{bottom:277.786667pt;}
.y54{bottom:280.506667pt;}
.y6b{bottom:283.866667pt;}
.y37{bottom:285.306667pt;}
.y7c{bottom:309.160000pt;}
.y20{bottom:309.946667pt;}
.y53{bottom:312.826667pt;}
.y6a{bottom:316.026667pt;}
.y36{bottom:317.466667pt;}
.y79{bottom:341.960000pt;}
.y1f{bottom:342.106667pt;}
.y52{bottom:344.986667pt;}
.y69{bottom:348.346667pt;}
.y35{bottom:349.786667pt;}
.y1e{bottom:373.986667pt;}
.y51{bottom:377.186667pt;}
.y68{bottom:380.226667pt;}
.y8c{bottom:380.546667pt;}
.y34{bottom:381.986667pt;}
.y1d{bottom:406.626667pt;}
.y50{bottom:409.346667pt;}
.y67{bottom:412.706667pt;}
.y33{bottom:413.826667pt;}
.y78{bottom:421.986667pt;}
.y1c{bottom:438.786667pt;}
.y4f{bottom:441.506667pt;}
.y66{bottom:444.866667pt;}
.y32{bottom:445.986667pt;}
.y77{bottom:454.306667pt;}
.y1b{bottom:470.946667pt;}
.y4e{bottom:473.826667pt;}
.y8b{bottom:476.866667pt;}
.y65{bottom:477.186667pt;}
.y31{bottom:478.626667pt;}
.y76{bottom:486.786667pt;}
.y1a{bottom:503.106667pt;}
.y4d{bottom:505.986667pt;}
.y64{bottom:509.346667pt;}
.y30{bottom:510.786667pt;}
.y75{bottom:518.946667pt;}
.y19{bottom:535.426667pt;}
.y4c{bottom:538.146667pt;}
.y2f{bottom:538.466667pt;}
.y63{bottom:541.186667pt;}
.y8a{bottom:541.506667pt;}
.y74{bottom:551.106667pt;}
.y18{bottom:567.586667pt;}
.y4b{bottom:570.306667pt;}
.y62{bottom:573.666667pt;}
.y73{bottom:582.946667pt;}
.y17{bottom:599.773333pt;}
.y4a{bottom:602.653333pt;}
.y61{bottom:605.853333pt;}
.y72{bottom:615.613333pt;}
.y16{bottom:631.933333pt;}
.y49{bottom:634.493333pt;}
.y60{bottom:638.173333pt;}
.y71{bottom:643.293333pt;}
.y15{bottom:664.253333pt;}
.y48{bottom:666.653333pt;}
.y5f{bottom:670.333333pt;}
.y14{bottom:696.413333pt;}
.y47{bottom:699.133333pt;}
.y5e{bottom:702.173333pt;}
.y89{bottom:702.493333pt;}
.y13{bottom:728.573333pt;}
.y46{bottom:731.453333pt;}
.y5d{bottom:734.653333pt;}
.y12{bottom:760.733333pt;}
.y45{bottom:763.613333pt;}
.y5c{bottom:766.973333pt;}
.y44{bottom:781.213333pt;}
.y11{bottom:792.893333pt;}
.y5b{bottom:799.133333pt;}
.y42{bottom:814.053333pt;}
.y10{bottom:825.253333pt;}
.y5a{bottom:831.333333pt;}
.y40{bottom:847.013333pt;}
.yf{bottom:857.413333pt;}
.y59{bottom:863.173333pt;}
.y88{bottom:863.493333pt;}
.y3e{bottom:879.813333pt;}
.ye{bottom:889.253333pt;}
.y58{bottom:895.493333pt;}
.y2e{bottom:895.813333pt;}
.yd{bottom:917.253333pt;}
.y27{bottom:918.720000pt;}
.y3d{bottom:927.653333pt;}
.y2d{bottom:927.973333pt;}
.y29{bottom:959.813333pt;}
.y2c{bottom:960.133333pt;}
.y2b{bottom:992.293333pt;}
.y3{bottom:1020.613333pt;}
.y1{bottom:1041.120000pt;}
.y9{bottom:1063.040000pt;}
.h12{height:2.512500pt;}
.h6{height:22.560000pt;}
.hd{height:32.146667pt;}
.hf{height:32.180000pt;}
.he{height:32.306667pt;}
.h2{height:35.840000pt;}
.h11{height:44.146667pt;}
.h7{height:52.134375pt;}
.ha{height:52.284375pt;}
.h4{height:59.066667pt;}
.h10{height:64.498667pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.h13{height:76.964840pt;}
.hb{height:90.560000pt;}
.h8{height:98.400000pt;}
.hc{height:129.000000pt;}
.h9{height:161.812500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wf{width:36.320000pt;}
.w10{width:40.946667pt;}
.w5{width:108.800000pt;}
.wd{width:110.706667pt;}
.wc{width:120.818667pt;}
.w3{width:145.626667pt;}
.w4{width:150.426667pt;}
.wb{width:150.586667pt;}
.w7{width:163.058667pt;}
.w2{width:167.538667pt;}
.we{width:192.338667pt;}
.w8{width:221.626667pt;}
.wa{width:225.773333pt;}
.w9{width:242.613333pt;}
.w6{width:616.800000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2d{left:0.952000pt;}
.xf{left:5.952000pt;}
.x1d{left:6.880000pt;}
.x7{left:13.280000pt;}
.x4{left:21.280000pt;}
.x1a{left:50.080000pt;}
.x1c{left:74.546667pt;}
.x6{left:89.312000pt;}
.x1{left:94.600000pt;}
.x5{left:96.032000pt;}
.x13{left:97.312000pt;}
.x2c{left:98.920000pt;}
.x1e{left:103.232000pt;}
.x17{left:113.312000pt;}
.x15{left:118.592000pt;}
.x27{left:119.872000pt;}
.xd{left:136.506667pt;}
.x20{left:140.346667pt;}
.xb{left:168.346667pt;}
.x25{left:174.106667pt;}
.x18{left:190.266667pt;}
.x2f{left:194.266667pt;}
.x26{left:217.466667pt;}
.xa{left:223.866667pt;}
.x28{left:226.746667pt;}
.x23{left:237.986667pt;}
.x21{left:250.946667pt;}
.x19{left:253.826667pt;}
.x9{left:281.026667pt;}
.x10{left:288.386667pt;}
.x1f{left:289.986667pt;}
.x22{left:301.986667pt;}
.x11{left:308.413333pt;}
.xe{left:314.626667pt;}
.x29{left:316.546667pt;}
.x2e{left:325.346667pt;}
.x14{left:327.426667pt;}
.x16{left:340.546667pt;}
.xc{left:397.693333pt;}
.x2a{left:467.786667pt;}
.x1b{left:476.106667pt;}
.x24{left:515.773333pt;}
.x3{left:572.293333pt;}
.x2{left:576.133333pt;}
.x2b{left:589.253333pt;}
.x8{left:707.333333pt;}
.x12{left:713.440000pt;}
}




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