
    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_4231c7ff5f9ae2493c73a0ad.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf218c2154b76ba50b4925d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_1b6fc864898bb42c40c08c6e.woff2')format("woff");}.ff3{font-family:ff3;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);}
.v7{vertical-align:-69.840000px;}
.v8{vertical-align:-50.400000px;}
.v1{vertical-align:-15.552000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.620000px;}
.v4{vertical-align:13.800000px;}
.v3{vertical-align:25.500000px;}
.v5{vertical-align:49.560000px;}
.v6{vertical-align:69.840000px;}
.ls10{letter-spacing:-27.000000px;}
.ls11{letter-spacing:-0.333600px;}
.lsd{letter-spacing:-0.106800px;}
.lsc{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.162600px;}
.lsa{letter-spacing:0.190080px;}
.ls8{letter-spacing:0.250560px;}
.lsf{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.774000px;}
.lsb{letter-spacing:46.405440px;}
.ls0{letter-spacing:51.192000px;}
.ls3{letter-spacing:146.473440px;}
.ls2{letter-spacing:152.113440px;}
.ls9{letter-spacing:186.033600px;}
.ls1{letter-spacing:186.084000px;}
.ls7{letter-spacing:186.108000px;}
.ls4{letter-spacing:453.228000px;}
.ls5{letter-spacing:453.948000px;}
.ls6{letter-spacing:653.388000px;}
.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;}
}
.ws2f{word-spacing:-83.466720px;}
.ws0{word-spacing:-66.693312px;}
.ws23{word-spacing:-66.653280px;}
.ws46{word-spacing:-66.546480px;}
.ws2e{word-spacing:-43.434720px;}
.ws14{word-spacing:-0.412920px;}
.ws6{word-spacing:-0.159840px;}
.ws1b{word-spacing:-0.039840px;}
.ws47{word-spacing:0.000000px;}
.ws24{word-spacing:0.012720px;}
.ws8{word-spacing:0.093600px;}
.ws13{word-spacing:0.094320px;}
.ws33{word-spacing:0.107280px;}
.ws32{word-spacing:0.146880px;}
.ws2{word-spacing:0.293760px;}
.ws30{word-spacing:0.400320px;}
.ws4{word-spacing:0.506880px;}
.ws27{word-spacing:0.547920px;}
.ws1a{word-spacing:0.586800px;}
.ws44{word-spacing:0.587520px;}
.ws3{word-spacing:0.827280px;}
.ws16{word-spacing:0.827520px;}
.ws25{word-spacing:0.867600px;}
.ws1d{word-spacing:0.880560px;}
.ws31{word-spacing:0.880800px;}
.ws11{word-spacing:0.907200px;}
.ws34{word-spacing:0.960480px;}
.ws7{word-spacing:1.000080px;}
.ws19{word-spacing:1.013760px;}
.ws15{word-spacing:1.040160px;}
.ws12{word-spacing:1.134240px;}
.ws2d{word-spacing:1.146960px;}
.ws1e{word-spacing:1.153440px;}
.ws9{word-spacing:1.253520px;}
.ws1c{word-spacing:1.294560px;}
.ws17{word-spacing:1.314000px;}
.ws18{word-spacing:1.414080px;}
.ws5{word-spacing:1.547520px;}
.ws22{word-spacing:1.693440px;}
.ws43{word-spacing:2.119680px;}
.ws26{word-spacing:2.306160px;}
.ws45{word-spacing:2.533680px;}
.ws21{word-spacing:2.574000px;}
.ws1{word-spacing:2.587440px;}
.ws20{word-spacing:2.654640px;}
.ws28{word-spacing:3.140640px;}
.ws2a{word-spacing:5.333760px;}
.ws29{word-spacing:5.346720px;}
.ws2b{word-spacing:5.454240px;}
.ws2c{word-spacing:5.548080px;}
.ws40{word-spacing:20.971440px;}
.ws36{word-spacing:22.627080px;}
.ws3f{word-spacing:22.667040px;}
.ws3b{word-spacing:22.721040px;}
.ws37{word-spacing:22.814400px;}
.ws3c{word-spacing:22.827600px;}
.ws39{word-spacing:22.854960px;}
.ws3a{word-spacing:23.147280px;}
.ws3e{word-spacing:23.201280px;}
.ws35{word-spacing:23.373360px;}
.ws41{word-spacing:23.388480px;}
.ws38{word-spacing:23.454000px;}
.ws42{word-spacing:23.548080px;}
.ws3d{word-spacing:24.094080px;}
.wsa{word-spacing:28.333440px;}
.wsf{word-spacing:28.373760px;}
.ws10{word-spacing:28.494240px;}
.wsc{word-spacing:28.640160px;}
.wsb{word-spacing:28.907520px;}
.wse{word-spacing:28.960560px;}
.wsd{word-spacing:29.807280px;}
.ws1f{word-spacing:56.386800px;}
._10{margin-left:-24.759600px;}
._15{margin-left:-18.714960px;}
._b{margin-left:-16.979280px;}
._14{margin-left:-13.666320px;}
._11{margin-left:-12.510000px;}
._2{margin-left:-10.692000px;}
._12{margin-left:-7.703280px;}
._0{margin-left:-4.158000px;}
._7{margin-left:-3.002400px;}
._f{margin-left:-1.923840px;}
._1{width:1.146000px;}
._6{width:2.157840px;}
._16{width:4.377120px;}
._c{width:67.920240px;}
._8{width:68.973840px;}
._d{width:70.600800px;}
._e{width:73.853760px;}
._13{width:91.151280px;}
._a{width:96.267600px;}
._9{width:407.442000px;}
._3{width:732.078000px;}
._4{width:2001.048000px;}
._5{width:3602.160000px;}
.fc3{color:transparent;}
.fc2{color:rgb(98,15,204);}
.fc1{color:rgb(0,113,98);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:112.320000px;}
.fs5{font-size:120.240000px;}
.fs8{font-size:156.240000px;}
.fsa{font-size:167.760000px;}
.fsb{font-size:192.240000px;}
.fsc{font-size:192.384000px;}
.fs0{font-size:198.000000px;}
.fs2{font-size:216.000000px;}
.fs7{font-size:234.000000px;}
.fs3{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs4{font-size:300.240000px;}
.fs6{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:2.130000px;}
.y2f{bottom:25.890000px;}
.y1{bottom:82.476000px;}
.y2b{bottom:386.820000px;}
.y2a{bottom:422.850000px;}
.y29{bottom:577.080000px;}
.y28{bottom:649.080000px;}
.y27{bottom:721.080000px;}
.y26{bottom:793.080000px;}
.y25{bottom:865.080000px;}
.y24{bottom:1009.080000px;}
.y5e{bottom:1010.595000px;}
.y5d{bottom:1076.790000px;}
.y23{bottom:1081.080000px;}
.y22{bottom:1153.080000px;}
.y21{bottom:1225.080000px;}
.y20{bottom:1297.080000px;}
.y32{bottom:1396.470000px;}
.y5c{bottom:1564.815000px;}
.y4d{bottom:1582.665000px;}
.y5b{bottom:1636.845000px;}
.y4c{bottom:1654.665000px;}
.y5a{bottom:1708.845000px;}
.y4b{bottom:1726.710000px;}
.y11{bottom:1737.795000px;}
.y59{bottom:1780.845000px;}
.y4a{bottom:1798.710000px;}
.y10{bottom:1809.795000px;}
.y58{bottom:1852.845000px;}
.y49{bottom:1870.710000px;}
.y3f{bottom:1875.165000px;}
.yf{bottom:1881.795000px;}
.y57{bottom:1924.845000px;}
.y48{bottom:1942.710000px;}
.y3e{bottom:1947.165000px;}
.ye{bottom:1953.795000px;}
.y47{bottom:2014.710000px;}
.y3d{bottom:2019.165000px;}
.yd{bottom:2025.795000px;}
.y56{bottom:2038.530000px;}
.y46{bottom:2086.710000px;}
.y3c{bottom:2091.210000px;}
.yc{bottom:2097.795000px;}
.y55{bottom:2110.530000px;}
.y3b{bottom:2163.210000px;}
.yb{bottom:2169.795000px;}
.y54{bottom:2182.530000px;}
.y45{bottom:2226.165000px;}
.y3a{bottom:2235.210000px;}
.y53{bottom:2254.530000px;}
.y44{bottom:2298.165000px;}
.y39{bottom:2307.210000px;}
.y52{bottom:2326.530000px;}
.ya{bottom:2368.110000px;}
.y43{bottom:2370.165000px;}
.y38{bottom:2379.210000px;}
.y51{bottom:2398.530000px;}
.y9{bottom:2440.110000px;}
.y42{bottom:2442.210000px;}
.y50{bottom:2470.530000px;}
.y8{bottom:2512.110000px;}
.y37{bottom:2529.900000px;}
.y4f{bottom:2542.575000px;}
.y1b{bottom:2579.400000px;}
.y7{bottom:2584.110000px;}
.y36{bottom:2601.900000px;}
.y4e{bottom:2614.575000px;}
.y1a{bottom:2651.400000px;}
.y6{bottom:2656.110000px;}
.y1e{bottom:2722.680000px;}
.y19{bottom:2723.400000px;}
.y16{bottom:2760.300000px;}
.y1d{bottom:2794.710000px;}
.y18{bottom:2795.400000px;}
.y15{bottom:2832.300000px;}
.y5{bottom:2832.765000px;}
.y1c{bottom:2866.710000px;}
.y17{bottom:2867.400000px;}
.y14{bottom:2904.300000px;}
.y4{bottom:2904.765000px;}
.y1f{bottom:2972.700000px;}
.y13{bottom:2976.300000px;}
.y3{bottom:2976.765000px;}
.y2{bottom:3071.805000px;}
.y12{bottom:3453.690000px;}
.y35{bottom:3606.810000px;}
.y34{bottom:3678.840000px;}
.y33{bottom:3750.840000px;}
.y31{bottom:3848.430000px;}
.y41{bottom:4036.320000px;}
.y40{bottom:4086.720000px;}
.y30{bottom:4169.130000px;}
.y2e{bottom:4301.100000px;}
.y2c{bottom:4468.860000px;}
.h8{height:90.180000px;}
.ha{height:113.940000px;}
.hd{height:124.568437px;}
.h7{height:125.406562px;}
.he{height:200.500313px;}
.hf{height:200.650500px;}
.h3{height:226.901250px;}
.h2{height:234.660375px;}
.hb{height:244.054688px;}
.h4{height:250.062187px;}
.hc{height:250.212375px;}
.h6{height:274.841250px;}
.h5{height:313.140938px;}
.h9{height:500.875313px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w4{width:2174.580000px;}
.w3{width:2235.780000px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.xf{left:-8.070000px;}
.x0{left:0.000000px;}
.x7{left:81.395947px;}
.x1{left:86.075947px;}
.xc{left:98.243947px;}
.xd{left:165.749947px;}
.x4{left:220.319947px;}
.x3{left:222.764947px;}
.x15{left:230.654947px;}
.x5{left:287.819947px;}
.x2{left:289.049947px;}
.x6{left:290.264947px;}
.xe{left:668.880000px;}
.x10{left:702.360000px;}
.x8{left:1040.684947px;}
.x11{left:1108.184947px;}
.xb{left:1759.574947px;}
.x12{left:1831.469947px;}
.x9{left:1839.269947px;}
.x13{left:1898.969947px;}
.xa{left:2669.114947px;}
.x14{left:2736.614947px;}
@media print{
.v7{vertical-align:-62.080000pt;}
.v8{vertical-align:-44.800000pt;}
.v1{vertical-align:-13.824000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.440000pt;}
.v4{vertical-align:12.266667pt;}
.v3{vertical-align:22.666667pt;}
.v5{vertical-align:44.053333pt;}
.v6{vertical-align:62.080000pt;}
.ls10{letter-spacing:-24.000000pt;}
.ls11{letter-spacing:-0.296533pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.144533pt;}
.lsa{letter-spacing:0.168960pt;}
.ls8{letter-spacing:0.222720pt;}
.lsf{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.688000pt;}
.lsb{letter-spacing:41.249280pt;}
.ls0{letter-spacing:45.504000pt;}
.ls3{letter-spacing:130.198613pt;}
.ls2{letter-spacing:135.211947pt;}
.ls9{letter-spacing:165.363200pt;}
.ls1{letter-spacing:165.408000pt;}
.ls7{letter-spacing:165.429333pt;}
.ls4{letter-spacing:402.869333pt;}
.ls5{letter-spacing:403.509333pt;}
.ls6{letter-spacing:580.789333pt;}
.ws2f{word-spacing:-74.192640pt;}
.ws0{word-spacing:-59.282944pt;}
.ws23{word-spacing:-59.247360pt;}
.ws46{word-spacing:-59.152427pt;}
.ws2e{word-spacing:-38.608640pt;}
.ws14{word-spacing:-0.367040pt;}
.ws6{word-spacing:-0.142080pt;}
.ws1b{word-spacing:-0.035413pt;}
.ws47{word-spacing:0.000000pt;}
.ws24{word-spacing:0.011307pt;}
.ws8{word-spacing:0.083200pt;}
.ws13{word-spacing:0.083840pt;}
.ws33{word-spacing:0.095360pt;}
.ws32{word-spacing:0.130560pt;}
.ws2{word-spacing:0.261120pt;}
.ws30{word-spacing:0.355840pt;}
.ws4{word-spacing:0.450560pt;}
.ws27{word-spacing:0.487040pt;}
.ws1a{word-spacing:0.521600pt;}
.ws44{word-spacing:0.522240pt;}
.ws3{word-spacing:0.735360pt;}
.ws16{word-spacing:0.735573pt;}
.ws25{word-spacing:0.771200pt;}
.ws1d{word-spacing:0.782720pt;}
.ws31{word-spacing:0.782933pt;}
.ws11{word-spacing:0.806400pt;}
.ws34{word-spacing:0.853760pt;}
.ws7{word-spacing:0.888960pt;}
.ws19{word-spacing:0.901120pt;}
.ws15{word-spacing:0.924587pt;}
.ws12{word-spacing:1.008213pt;}
.ws2d{word-spacing:1.019520pt;}
.ws1e{word-spacing:1.025280pt;}
.ws9{word-spacing:1.114240pt;}
.ws1c{word-spacing:1.150720pt;}
.ws17{word-spacing:1.168000pt;}
.ws18{word-spacing:1.256960pt;}
.ws5{word-spacing:1.375573pt;}
.ws22{word-spacing:1.505280pt;}
.ws43{word-spacing:1.884160pt;}
.ws26{word-spacing:2.049920pt;}
.ws45{word-spacing:2.252160pt;}
.ws21{word-spacing:2.288000pt;}
.ws1{word-spacing:2.299947pt;}
.ws20{word-spacing:2.359680pt;}
.ws28{word-spacing:2.791680pt;}
.ws2a{word-spacing:4.741120pt;}
.ws29{word-spacing:4.752640pt;}
.ws2b{word-spacing:4.848213pt;}
.ws2c{word-spacing:4.931627pt;}
.ws40{word-spacing:18.641280pt;}
.ws36{word-spacing:20.112960pt;}
.ws3f{word-spacing:20.148480pt;}
.ws3b{word-spacing:20.196480pt;}
.ws37{word-spacing:20.279467pt;}
.ws3c{word-spacing:20.291200pt;}
.ws39{word-spacing:20.315520pt;}
.ws3a{word-spacing:20.575360pt;}
.ws3e{word-spacing:20.623360pt;}
.ws35{word-spacing:20.776320pt;}
.ws41{word-spacing:20.789760pt;}
.ws38{word-spacing:20.848000pt;}
.ws42{word-spacing:20.931627pt;}
.ws3d{word-spacing:21.416960pt;}
.wsa{word-spacing:25.185280pt;}
.wsf{word-spacing:25.221120pt;}
.ws10{word-spacing:25.328213pt;}
.wsc{word-spacing:25.457920pt;}
.wsb{word-spacing:25.695573pt;}
.wse{word-spacing:25.742720pt;}
.wsd{word-spacing:26.495360pt;}
.ws1f{word-spacing:50.121600pt;}
._10{margin-left:-22.008533pt;}
._15{margin-left:-16.635520pt;}
._b{margin-left:-15.092693pt;}
._14{margin-left:-12.147840pt;}
._11{margin-left:-11.120000pt;}
._2{margin-left:-9.504000pt;}
._12{margin-left:-6.847360pt;}
._0{margin-left:-3.696000pt;}
._7{margin-left:-2.668800pt;}
._f{margin-left:-1.710080pt;}
._1{width:1.018667pt;}
._6{width:1.918080pt;}
._16{width:3.890773pt;}
._c{width:60.373547pt;}
._8{width:61.310080pt;}
._d{width:62.756267pt;}
._e{width:65.647787pt;}
._13{width:81.023360pt;}
._a{width:85.571200pt;}
._9{width:362.170667pt;}
._3{width:650.736000pt;}
._4{width:1778.709333pt;}
._5{width:3201.920000pt;}
.fs9{font-size:99.840000pt;}
.fs5{font-size:106.880000pt;}
.fs8{font-size:138.880000pt;}
.fsa{font-size:149.120000pt;}
.fsb{font-size:170.880000pt;}
.fsc{font-size:171.008000pt;}
.fs0{font-size:176.000000pt;}
.fs2{font-size:192.000000pt;}
.fs7{font-size:208.000000pt;}
.fs3{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs4{font-size:266.880000pt;}
.fs6{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:1.893333pt;}
.y2f{bottom:23.013333pt;}
.y1{bottom:73.312000pt;}
.y2b{bottom:343.840000pt;}
.y2a{bottom:375.866667pt;}
.y29{bottom:512.960000pt;}
.y28{bottom:576.960000pt;}
.y27{bottom:640.960000pt;}
.y26{bottom:704.960000pt;}
.y25{bottom:768.960000pt;}
.y24{bottom:896.960000pt;}
.y5e{bottom:898.306667pt;}
.y5d{bottom:957.146667pt;}
.y23{bottom:960.960000pt;}
.y22{bottom:1024.960000pt;}
.y21{bottom:1088.960000pt;}
.y20{bottom:1152.960000pt;}
.y32{bottom:1241.306667pt;}
.y5c{bottom:1390.946667pt;}
.y4d{bottom:1406.813333pt;}
.y5b{bottom:1454.973333pt;}
.y4c{bottom:1470.813333pt;}
.y5a{bottom:1518.973333pt;}
.y4b{bottom:1534.853333pt;}
.y11{bottom:1544.706667pt;}
.y59{bottom:1582.973333pt;}
.y4a{bottom:1598.853333pt;}
.y10{bottom:1608.706667pt;}
.y58{bottom:1646.973333pt;}
.y49{bottom:1662.853333pt;}
.y3f{bottom:1666.813333pt;}
.yf{bottom:1672.706667pt;}
.y57{bottom:1710.973333pt;}
.y48{bottom:1726.853333pt;}
.y3e{bottom:1730.813333pt;}
.ye{bottom:1736.706667pt;}
.y47{bottom:1790.853333pt;}
.y3d{bottom:1794.813333pt;}
.yd{bottom:1800.706667pt;}
.y56{bottom:1812.026667pt;}
.y46{bottom:1854.853333pt;}
.y3c{bottom:1858.853333pt;}
.yc{bottom:1864.706667pt;}
.y55{bottom:1876.026667pt;}
.y3b{bottom:1922.853333pt;}
.yb{bottom:1928.706667pt;}
.y54{bottom:1940.026667pt;}
.y45{bottom:1978.813333pt;}
.y3a{bottom:1986.853333pt;}
.y53{bottom:2004.026667pt;}
.y44{bottom:2042.813333pt;}
.y39{bottom:2050.853333pt;}
.y52{bottom:2068.026667pt;}
.ya{bottom:2104.986667pt;}
.y43{bottom:2106.813333pt;}
.y38{bottom:2114.853333pt;}
.y51{bottom:2132.026667pt;}
.y9{bottom:2168.986667pt;}
.y42{bottom:2170.853333pt;}
.y50{bottom:2196.026667pt;}
.y8{bottom:2232.986667pt;}
.y37{bottom:2248.800000pt;}
.y4f{bottom:2260.066667pt;}
.y1b{bottom:2292.800000pt;}
.y7{bottom:2296.986667pt;}
.y36{bottom:2312.800000pt;}
.y4e{bottom:2324.066667pt;}
.y1a{bottom:2356.800000pt;}
.y6{bottom:2360.986667pt;}
.y1e{bottom:2420.160000pt;}
.y19{bottom:2420.800000pt;}
.y16{bottom:2453.600000pt;}
.y1d{bottom:2484.186667pt;}
.y18{bottom:2484.800000pt;}
.y15{bottom:2517.600000pt;}
.y5{bottom:2518.013333pt;}
.y1c{bottom:2548.186667pt;}
.y17{bottom:2548.800000pt;}
.y14{bottom:2581.600000pt;}
.y4{bottom:2582.013333pt;}
.y1f{bottom:2642.400000pt;}
.y13{bottom:2645.600000pt;}
.y3{bottom:2646.013333pt;}
.y2{bottom:2730.493333pt;}
.y12{bottom:3069.946667pt;}
.y35{bottom:3206.053333pt;}
.y34{bottom:3270.080000pt;}
.y33{bottom:3334.080000pt;}
.y31{bottom:3420.826667pt;}
.y41{bottom:3587.840000pt;}
.y40{bottom:3632.640000pt;}
.y30{bottom:3705.893333pt;}
.y2e{bottom:3823.200000pt;}
.y2c{bottom:3972.320000pt;}
.h8{height:80.160000pt;}
.ha{height:101.280000pt;}
.hd{height:110.727500pt;}
.h7{height:111.472500pt;}
.he{height:178.222500pt;}
.hf{height:178.356000pt;}
.h3{height:201.690000pt;}
.h2{height:208.587000pt;}
.hb{height:216.937500pt;}
.h4{height:222.277500pt;}
.hc{height:222.411000pt;}
.h6{height:244.303333pt;}
.h5{height:278.347500pt;}
.h9{height:445.222500pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w4{width:1932.960000pt;}
.w3{width:1987.360000pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.xf{left:-7.173333pt;}
.x0{left:0.000000pt;}
.x7{left:72.351953pt;}
.x1{left:76.511953pt;}
.xc{left:87.327953pt;}
.xd{left:147.333286pt;}
.x4{left:195.839953pt;}
.x3{left:198.013286pt;}
.x15{left:205.026619pt;}
.x5{left:255.839953pt;}
.x2{left:256.933286pt;}
.x6{left:258.013286pt;}
.xe{left:594.560000pt;}
.x10{left:624.320000pt;}
.x8{left:925.053286pt;}
.x11{left:985.053286pt;}
.xb{left:1564.066619pt;}
.x12{left:1627.973286pt;}
.x9{left:1634.906619pt;}
.x13{left:1687.973286pt;}
.xa{left:2372.546619pt;}
.x14{left:2432.546619pt;}
}




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