
    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_2035cf4e88944a16a5878344.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_c339dae21b8c9031a8ac156b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_7bfe083c2ef8dd09eb207f66.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_bc20975df19ebdded5d245b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_34c9a456aecbb80e401c58d9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8472ecfd94368b2cb2fa8330.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_01ce8cbd34e42b9a86a59126.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6d6f282b21563600de0bda29.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966797;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_1acdcb537594b6f23921b356.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.027360px;}
.ls4{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.252720px;}
.ls9{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:12.060000px;}
.ls6{letter-spacing:14.940000px;}
.lsa{letter-spacing:18.341280px;}
.ls3{letter-spacing:19.980000px;}
.lsd{letter-spacing:41.381280px;}
.ls5{letter-spacing:45.701280px;}
.lsb{letter-spacing:46.421280px;}
.ls8{letter-spacing:122.741280px;}
.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:-84.240000px;}
.ws0{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.312720px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:0.000000px;}
._36{margin-left:-5.054400px;}
._30{margin-left:-3.790800px;}
._5{margin-left:-2.779920px;}
._1{margin-left:-1.010880px;}
._0{width:1.244880px;}
._2c{width:3.032640px;}
._d{width:4.043520px;}
._39{width:5.157360px;}
._2a{width:6.560640px;}
._13{width:7.613040px;}
._12{width:8.618880px;}
._1f{width:9.687600px;}
._29{width:10.717200px;}
._32{width:11.980800px;}
._26{width:13.141440px;}
._27{width:14.152320px;}
._16{width:16.174080px;}
._17{width:17.184960px;}
._37{width:18.968160px;}
._28{width:20.049120px;}
._31{width:22.074240px;}
._3c{width:23.097120px;}
._4{width:24.261120px;}
._38{width:26.619840px;}
._15{width:28.388880px;}
._35{width:29.820960px;}
._34{width:31.084560px;}
._33{width:32.179680px;}
._3b{width:33.359040px;}
._21{width:34.538400px;}
._7{width:36.644400px;}
._2d{width:39.340080px;}
._1b{width:40.940640px;}
._e{width:42.372720px;}
._3a{width:44.478720px;}
._2e{width:46.079280px;}
._2f{width:47.807760px;}
._18{width:51.470640px;}
._c{width:52.734240px;}
._3e{width:54.755280px;}
._14{width:55.935360px;}
._20{width:57.451680px;}
._3d{width:59.051520px;}
._11{width:64.190880px;}
._41{width:66.886560px;}
._2{width:84.155760px;}
._f{width:85.335120px;}
._6{width:91.484640px;}
._3f{width:99.655920px;}
._40{width:100.751040px;}
._b{width:102.688560px;}
._3{width:109.933200px;}
._1a{width:112.039200px;}
._1e{width:133.436160px;}
._19{width:141.944400px;}
._22{width:143.629200px;}
._1d{width:153.569520px;}
._a{width:162.667440px;}
._25{width:185.917680px;}
._1c{width:193.415040px;}
._24{width:208.578240px;}
._8{width:227.279520px;}
._9{width:236.967120px;}
._10{width:274.790880px;}
._23{width:278.581680px;}
._2b{width:344.878560px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.yf{bottom:8.100000px;}
.y18{bottom:8.280000px;}
.y29{bottom:35.814000px;}
.y16{bottom:35.820000px;}
.y2e{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y24{bottom:63.540000px;}
.y28{bottom:63.714000px;}
.y15{bottom:63.720000px;}
.y27{bottom:91.434000px;}
.y14{bottom:91.440000px;}
.y23{bottom:91.485000px;}
.y70{bottom:113.976000px;}
.y13{bottom:119.160000px;}
.y26{bottom:119.196000px;}
.y22{bottom:119.205000px;}
.y2d{bottom:119.340000px;}
.y6f{bottom:141.696000px;}
.y12{bottom:146.880000px;}
.y4c{bottom:146.916000px;}
.y21{bottom:146.925000px;}
.y2c{bottom:147.060000px;}
.y6e{bottom:169.410000px;}
.y4b{bottom:174.630000px;}
.y11{bottom:174.780000px;}
.y2b{bottom:174.810000px;}
.y20{bottom:174.825000px;}
.y6d{bottom:197.130000px;}
.y4a{bottom:202.530000px;}
.y1f{bottom:202.545000px;}
.y6c{bottom:225.030000px;}
.y49{bottom:230.250000px;}
.y1e{bottom:230.265000px;}
.y25{bottom:230.970000px;}
.y6b{bottom:252.750000px;}
.y48{bottom:257.970000px;}
.y1d{bottom:257.985000px;}
.y8a{bottom:258.690000px;}
.y19{bottom:259.590000px;}
.y6a{bottom:280.470000px;}
.y47{bottom:285.870000px;}
.y1c{bottom:285.885000px;}
.y89{bottom:286.590000px;}
.y69{bottom:308.190000px;}
.y46{bottom:313.590000px;}
.y1b{bottom:313.605000px;}
.y88{bottom:314.310000px;}
.y68{bottom:336.090000px;}
.y1a{bottom:341.325000px;}
.y45{bottom:341.355000px;}
.y87{bottom:342.075000px;}
.y67{bottom:363.855000px;}
.y44{bottom:369.075000px;}
.y86{bottom:369.975000px;}
.y66{bottom:391.575000px;}
.y43{bottom:396.975000px;}
.y85{bottom:397.695000px;}
.y65{bottom:419.475000px;}
.y42{bottom:424.695000px;}
.y84{bottom:425.415000px;}
.y64{bottom:447.195000px;}
.y41{bottom:452.415000px;}
.y83{bottom:453.135000px;}
.y63{bottom:474.915000px;}
.y40{bottom:480.135000px;}
.y82{bottom:481.035000px;}
.y62{bottom:502.635000px;}
.y3f{bottom:508.035000px;}
.y81{bottom:508.755000px;}
.y61{bottom:530.535000px;}
.y3e{bottom:535.755000px;}
.y80{bottom:536.475000px;}
.y60{bottom:558.255000px;}
.y3d{bottom:563.475000px;}
.y7f{bottom:564.195000px;}
.y5f{bottom:585.975000px;}
.y3c{bottom:591.375000px;}
.y7e{bottom:592.095000px;}
.y5e{bottom:613.905000px;}
.y3b{bottom:619.125000px;}
.y7d{bottom:619.845000px;}
.y17{bottom:621.285000px;}
.y5d{bottom:641.625000px;}
.y3a{bottom:646.845000px;}
.y7c{bottom:647.565000px;}
.y10{bottom:649.905000px;}
.y5c{bottom:669.345000px;}
.y39{bottom:674.565000px;}
.y7b{bottom:675.465000px;}
.y5b{bottom:697.065000px;}
.y38{bottom:702.465000px;}
.y7a{bottom:703.185000px;}
.y5a{bottom:724.965000px;}
.y37{bottom:730.185000px;}
.y79{bottom:730.905000px;}
.y59{bottom:752.685000px;}
.y36{bottom:757.905000px;}
.y78{bottom:758.625000px;}
.y58{bottom:780.405000px;}
.y35{bottom:785.805000px;}
.y77{bottom:786.525000px;}
.y57{bottom:809.745000px;}
.y34{bottom:813.525000px;}
.y76{bottom:814.245000px;}
.y56{bottom:837.465000px;}
.y33{bottom:841.245000px;}
.y75{bottom:841.965000px;}
.ye{bottom:845.025000px;}
.y55{bottom:866.805000px;}
.y32{bottom:868.965000px;}
.y74{bottom:869.865000px;}
.yd{bottom:881.790000px;}
.y54{bottom:894.390000px;}
.y31{bottom:896.910000px;}
.y73{bottom:897.630000px;}
.yc{bottom:909.510000px;}
.y53{bottom:923.910000px;}
.y30{bottom:924.630000px;}
.y72{bottom:925.350000px;}
.yb{bottom:937.230000px;}
.y52{bottom:951.450000px;}
.y2f{bottom:952.350000px;}
.y71{bottom:953.070000px;}
.ya{bottom:965.130000px;}
.y2a{bottom:971.970000px;}
.y51{bottom:980.970000px;}
.y9{bottom:994.110000px;}
.y50{bottom:1008.690000px;}
.y8{bottom:1025.790000px;}
.y4f{bottom:1036.410000px;}
.y7{bottom:1057.470000px;}
.y4e{bottom:1064.130000px;}
.y6{bottom:1089.330000px;}
.y4d{bottom:1092.030000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.hc{height:27.720000px;}
.h8{height:27.756000px;}
.ha{height:27.900000px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.h5{height:61.041094px;}
.hf{height:61.329023px;}
.h7{height:61.575820px;}
.h10{height:64.496250px;}
.h6{height:67.565039px;}
.hd{height:111.060000px;}
.h9{height:194.400000px;}
.he{height:194.430000px;}
.hb{height:360.975000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x3{left:18.900000px;}
.xd{left:63.894000px;}
.x1{left:95.795987px;}
.x5{left:99.395987px;}
.xf{left:122.795987px;}
.x6{left:124.235987px;}
.x11{left:127.835987px;}
.xe{left:148.895987px;}
.x10{left:159.689987px;}
.xa{left:270.569987px;}
.x9{left:296.174987px;}
.x7{left:340.094987px;}
.x2{left:421.815000px;}
.x4{left:446.474987px;}
.xc{left:574.305000px;}
.x8{left:674.789987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024320pt;}
.ls4{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.224640pt;}
.ls9{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:10.720000pt;}
.ls6{letter-spacing:13.280000pt;}
.lsa{letter-spacing:16.303360pt;}
.ls3{letter-spacing:17.760000pt;}
.lsd{letter-spacing:36.783360pt;}
.ls5{letter-spacing:40.623360pt;}
.lsb{letter-spacing:41.263360pt;}
.ls8{letter-spacing:109.103360pt;}
.ws3{word-spacing:-74.880000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.944640pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:0.000000pt;}
._36{margin-left:-4.492800pt;}
._30{margin-left:-3.369600pt;}
._5{margin-left:-2.471040pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.106560pt;}
._2c{width:2.695680pt;}
._d{width:3.594240pt;}
._39{width:4.584320pt;}
._2a{width:5.831680pt;}
._13{width:6.767147pt;}
._12{width:7.661227pt;}
._1f{width:8.611200pt;}
._29{width:9.526400pt;}
._32{width:10.649600pt;}
._26{width:11.681280pt;}
._27{width:12.579840pt;}
._16{width:14.376960pt;}
._17{width:15.275520pt;}
._37{width:16.860587pt;}
._28{width:17.821440pt;}
._31{width:19.621547pt;}
._3c{width:20.530773pt;}
._4{width:21.565440pt;}
._38{width:23.662080pt;}
._15{width:25.234560pt;}
._35{width:26.507520pt;}
._34{width:27.630720pt;}
._33{width:28.604160pt;}
._3b{width:29.652480pt;}
._21{width:30.700800pt;}
._7{width:32.572800pt;}
._2d{width:34.968960pt;}
._1b{width:36.391680pt;}
._e{width:37.664640pt;}
._3a{width:39.536640pt;}
._2e{width:40.959360pt;}
._2f{width:42.495787pt;}
._18{width:45.751680pt;}
._c{width:46.874880pt;}
._3e{width:48.671360pt;}
._14{width:49.720320pt;}
._20{width:51.068160pt;}
._3d{width:52.490240pt;}
._11{width:57.058560pt;}
._41{width:59.454720pt;}
._2{width:74.805120pt;}
._f{width:75.853440pt;}
._6{width:81.319680pt;}
._3f{width:88.583040pt;}
._40{width:89.556480pt;}
._b{width:91.278720pt;}
._3{width:97.718400pt;}
._1a{width:99.590400pt;}
._1e{width:118.609920pt;}
._19{width:126.172800pt;}
._22{width:127.670400pt;}
._1d{width:136.506240pt;}
._a{width:144.593280pt;}
._25{width:165.260160pt;}
._1c{width:171.924480pt;}
._24{width:185.402880pt;}
._8{width:202.026240pt;}
._9{width:210.637440pt;}
._10{width:244.258560pt;}
._23{width:247.628160pt;}
._2b{width:306.558720pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.yf{bottom:7.200000pt;}
.y18{bottom:7.360000pt;}
.y29{bottom:31.834667pt;}
.y16{bottom:31.840000pt;}
.y2e{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y24{bottom:56.480000pt;}
.y28{bottom:56.634667pt;}
.y15{bottom:56.640000pt;}
.y27{bottom:81.274667pt;}
.y14{bottom:81.280000pt;}
.y23{bottom:81.320000pt;}
.y70{bottom:101.312000pt;}
.y13{bottom:105.920000pt;}
.y26{bottom:105.952000pt;}
.y22{bottom:105.960000pt;}
.y2d{bottom:106.080000pt;}
.y6f{bottom:125.952000pt;}
.y12{bottom:130.560000pt;}
.y4c{bottom:130.592000pt;}
.y21{bottom:130.600000pt;}
.y2c{bottom:130.720000pt;}
.y6e{bottom:150.586667pt;}
.y4b{bottom:155.226667pt;}
.y11{bottom:155.360000pt;}
.y2b{bottom:155.386667pt;}
.y20{bottom:155.400000pt;}
.y6d{bottom:175.226667pt;}
.y4a{bottom:180.026667pt;}
.y1f{bottom:180.040000pt;}
.y6c{bottom:200.026667pt;}
.y49{bottom:204.666667pt;}
.y1e{bottom:204.680000pt;}
.y25{bottom:205.306667pt;}
.y6b{bottom:224.666667pt;}
.y48{bottom:229.306667pt;}
.y1d{bottom:229.320000pt;}
.y8a{bottom:229.946667pt;}
.y19{bottom:230.746667pt;}
.y6a{bottom:249.306667pt;}
.y47{bottom:254.106667pt;}
.y1c{bottom:254.120000pt;}
.y89{bottom:254.746667pt;}
.y69{bottom:273.946667pt;}
.y46{bottom:278.746667pt;}
.y1b{bottom:278.760000pt;}
.y88{bottom:279.386667pt;}
.y68{bottom:298.746667pt;}
.y1a{bottom:303.400000pt;}
.y45{bottom:303.426667pt;}
.y87{bottom:304.066667pt;}
.y67{bottom:323.426667pt;}
.y44{bottom:328.066667pt;}
.y86{bottom:328.866667pt;}
.y66{bottom:348.066667pt;}
.y43{bottom:352.866667pt;}
.y85{bottom:353.506667pt;}
.y65{bottom:372.866667pt;}
.y42{bottom:377.506667pt;}
.y84{bottom:378.146667pt;}
.y64{bottom:397.506667pt;}
.y41{bottom:402.146667pt;}
.y83{bottom:402.786667pt;}
.y63{bottom:422.146667pt;}
.y40{bottom:426.786667pt;}
.y82{bottom:427.586667pt;}
.y62{bottom:446.786667pt;}
.y3f{bottom:451.586667pt;}
.y81{bottom:452.226667pt;}
.y61{bottom:471.586667pt;}
.y3e{bottom:476.226667pt;}
.y80{bottom:476.866667pt;}
.y60{bottom:496.226667pt;}
.y3d{bottom:500.866667pt;}
.y7f{bottom:501.506667pt;}
.y5f{bottom:520.866667pt;}
.y3c{bottom:525.666667pt;}
.y7e{bottom:526.306667pt;}
.y5e{bottom:545.693333pt;}
.y3b{bottom:550.333333pt;}
.y7d{bottom:550.973333pt;}
.y17{bottom:552.253333pt;}
.y5d{bottom:570.333333pt;}
.y3a{bottom:574.973333pt;}
.y7c{bottom:575.613333pt;}
.y10{bottom:577.693333pt;}
.y5c{bottom:594.973333pt;}
.y39{bottom:599.613333pt;}
.y7b{bottom:600.413333pt;}
.y5b{bottom:619.613333pt;}
.y38{bottom:624.413333pt;}
.y7a{bottom:625.053333pt;}
.y5a{bottom:644.413333pt;}
.y37{bottom:649.053333pt;}
.y79{bottom:649.693333pt;}
.y59{bottom:669.053333pt;}
.y36{bottom:673.693333pt;}
.y78{bottom:674.333333pt;}
.y58{bottom:693.693333pt;}
.y35{bottom:698.493333pt;}
.y77{bottom:699.133333pt;}
.y57{bottom:719.773333pt;}
.y34{bottom:723.133333pt;}
.y76{bottom:723.773333pt;}
.y56{bottom:744.413333pt;}
.y33{bottom:747.773333pt;}
.y75{bottom:748.413333pt;}
.ye{bottom:751.133333pt;}
.y55{bottom:770.493333pt;}
.y32{bottom:772.413333pt;}
.y74{bottom:773.213333pt;}
.yd{bottom:783.813333pt;}
.y54{bottom:795.013333pt;}
.y31{bottom:797.253333pt;}
.y73{bottom:797.893333pt;}
.yc{bottom:808.453333pt;}
.y53{bottom:821.253333pt;}
.y30{bottom:821.893333pt;}
.y72{bottom:822.533333pt;}
.yb{bottom:833.093333pt;}
.y52{bottom:845.733333pt;}
.y2f{bottom:846.533333pt;}
.y71{bottom:847.173333pt;}
.ya{bottom:857.893333pt;}
.y2a{bottom:863.973333pt;}
.y51{bottom:871.973333pt;}
.y9{bottom:883.653333pt;}
.y50{bottom:896.613333pt;}
.y8{bottom:911.813333pt;}
.y4f{bottom:921.253333pt;}
.y7{bottom:939.973333pt;}
.y4e{bottom:945.893333pt;}
.y6{bottom:968.293333pt;}
.y4d{bottom:970.693333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.hc{height:24.640000pt;}
.h8{height:24.672000pt;}
.ha{height:24.800000pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.h5{height:54.258750pt;}
.hf{height:54.514687pt;}
.h7{height:54.734062pt;}
.h10{height:57.330000pt;}
.h6{height:60.057813pt;}
.hd{height:98.720000pt;}
.h9{height:172.800000pt;}
.he{height:172.826667pt;}
.hb{height:320.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x3{left:16.800000pt;}
.xd{left:56.794667pt;}
.x1{left:85.151988pt;}
.x5{left:88.351988pt;}
.xf{left:109.151988pt;}
.x6{left:110.431988pt;}
.x11{left:113.631988pt;}
.xe{left:132.351988pt;}
.x10{left:141.946655pt;}
.xa{left:240.506655pt;}
.x9{left:263.266655pt;}
.x7{left:302.306655pt;}
.x2{left:374.946667pt;}
.x4{left:396.866655pt;}
.xc{left:510.493333pt;}
.x8{left:599.813322pt;}
}




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