
    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_fa850e3387beb9948b25c658.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_78651f891db46eddb8d17e52.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_0090a16eb222eca7ec75fef0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_476849a00b4d717378ced52d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_a2f2c09a3dae7970d97df97f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899902;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_17baaa203a368849812fcd1f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_e0e05e199a0aed94cc08d82f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:35.760000px;}
.ls8{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.864000px;}
.ls3{letter-spacing:4.392000px;}
.ls1{letter-spacing:7.860000px;}
.ls0{letter-spacing:8.436000px;}
.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;}
}
.ws10{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.568000px;}
.ws1{word-spacing:-14.162400px;}
.ws0{word-spacing:-8.496000px;}
.ws1c{word-spacing:-0.864000px;}
.ws8{word-spacing:-0.792000px;}
.ws13{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.216000px;}
.ws1b{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws18{word-spacing:0.144000px;}
.ws12{word-spacing:0.216000px;}
.wsd{word-spacing:0.288000px;}
.ws14{word-spacing:0.360000px;}
.ws1d{word-spacing:0.432000px;}
.wsb{word-spacing:0.504000px;}
.ws23{word-spacing:0.576000px;}
.ws22{word-spacing:0.720000px;}
.ws9{word-spacing:1.008000px;}
.ws20{word-spacing:2.880000px;}
.ws11{word-spacing:3.600000px;}
.ws6{word-spacing:3.720000px;}
.ws3{word-spacing:4.200000px;}
.ws21{word-spacing:4.464000px;}
.ws16{word-spacing:4.968000px;}
.ws1f{word-spacing:6.336000px;}
.ws1e{word-spacing:6.840000px;}
.ws5{word-spacing:8.400000px;}
.ws17{word-spacing:8.856000px;}
.ws1a{word-spacing:8.928000px;}
.wse{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._10{margin-left:-14.230800px;}
._6{margin-left:-11.460000px;}
._a{margin-left:-8.142000px;}
._11{margin-left:-7.122000px;}
._1{margin-left:-5.964000px;}
._9{margin-left:-4.950000px;}
._7{margin-left:-3.600000px;}
._5{margin-left:-2.424000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._c{width:3.094800px;}
._8{width:4.476000px;}
._b{width:5.898000px;}
._f{width:7.465200px;}
._4{width:8.520000px;}
._d{width:10.252800px;}
._e{width:11.520000px;}
._12{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.700000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y48{bottom:118.710000px;}
.y22{bottom:121.207500px;}
.y6d{bottom:122.792100px;}
.y47{bottom:140.004000px;}
.y6c{bottom:153.196050px;}
.y46{bottom:161.298000px;}
.y21{bottom:161.754300px;}
.y6b{bottom:171.346050px;}
.y45{bottom:182.592000px;}
.y20{bottom:183.210300px;}
.y6a{bottom:189.496050px;}
.y44{bottom:203.886000px;}
.y1f{bottom:204.666300px;}
.y69{bottom:207.646050px;}
.y43{bottom:225.180000px;}
.y68{bottom:225.796050px;}
.y1e{bottom:226.122300px;}
.y67{bottom:243.946050px;}
.y42{bottom:246.474000px;}
.y1d{bottom:247.578300px;}
.y41{bottom:267.768000px;}
.y1c{bottom:269.034300px;}
.y66{bottom:270.438000px;}
.y40{bottom:289.062000px;}
.y1b{bottom:290.490300px;}
.y65{bottom:292.344000px;}
.y3f{bottom:310.356000px;}
.y1a{bottom:311.946300px;}
.y64{bottom:314.250000px;}
.y3e{bottom:331.650000px;}
.y19{bottom:333.402300px;}
.y63{bottom:336.156000px;}
.y3d{bottom:352.944000px;}
.y18{bottom:354.858300px;}
.y62{bottom:358.062000px;}
.y3c{bottom:374.238000px;}
.y17{bottom:376.314300px;}
.y61{bottom:379.968000px;}
.y3b{bottom:395.532000px;}
.y16{bottom:397.770300px;}
.y60{bottom:401.874000px;}
.y3a{bottom:416.826000px;}
.y15{bottom:419.226300px;}
.y5f{bottom:423.780000px;}
.y39{bottom:438.120000px;}
.y14{bottom:440.682300px;}
.y5e{bottom:445.686000px;}
.y38{bottom:459.414000px;}
.y13{bottom:462.138300px;}
.y5d{bottom:467.592000px;}
.y37{bottom:480.708000px;}
.y12{bottom:483.594300px;}
.y5c{bottom:489.498000px;}
.y36{bottom:502.002000px;}
.y11{bottom:505.050300px;}
.y5b{bottom:511.404000px;}
.y35{bottom:523.296000px;}
.y10{bottom:526.506300px;}
.y5a{bottom:533.310000px;}
.y34{bottom:544.590000px;}
.yf{bottom:547.962300px;}
.y59{bottom:555.216000px;}
.y33{bottom:565.884000px;}
.ye{bottom:569.418300px;}
.y58{bottom:577.122000px;}
.y32{bottom:587.178000px;}
.yd{bottom:590.874300px;}
.y57{bottom:599.028000px;}
.yc{bottom:612.330300px;}
.y56{bottom:620.934000px;}
.y31{bottom:629.784000px;}
.yb{bottom:633.786300px;}
.y55{bottom:642.840000px;}
.y30{bottom:651.078000px;}
.ya{bottom:655.242300px;}
.y54{bottom:664.746000px;}
.y2f{bottom:672.372000px;}
.y9{bottom:676.698300px;}
.y53{bottom:686.652000px;}
.y2e{bottom:693.666000px;}
.y8{bottom:698.154300px;}
.y52{bottom:708.558000px;}
.y2d{bottom:714.960000px;}
.y51{bottom:730.464000px;}
.y2c{bottom:736.254000px;}
.y7{bottom:741.354300px;}
.y2b{bottom:757.548000px;}
.y6{bottom:763.104300px;}
.y50{bottom:774.258000px;}
.y2a{bottom:778.842000px;}
.y4f{bottom:796.164000px;}
.y29{bottom:800.136000px;}
.y4e{bottom:818.070000px;}
.y28{bottom:821.430000px;}
.y5{bottom:829.500000px;}
.y4d{bottom:839.976000px;}
.y27{bottom:842.724000px;}
.y4{bottom:859.500000px;}
.y4c{bottom:861.882000px;}
.y26{bottom:864.018000px;}
.y4b{bottom:883.788000px;}
.y25{bottom:885.312000px;}
.y3{bottom:889.500000px;}
.y4a{bottom:905.694000px;}
.y24{bottom:906.606000px;}
.y2{bottom:919.500000px;}
.y49{bottom:927.600000px;}
.y23{bottom:927.900000px;}
.h6{height:23.927813px;}
.h1{height:39.990234px;}
.h4{height:47.988281px;}
.h3{height:50.947266px;}
.h5{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x5{left:82.386000px;}
.x2{left:112.500000px;}
.x3{left:127.386000px;}
.x6{left:142.263750px;}
.x7{left:266.446950px;}
.x1{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:31.786667pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls3{letter-spacing:3.904000pt;}
.ls1{letter-spacing:6.986667pt;}
.ls0{letter-spacing:7.498667pt;}
.ws10{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.616000pt;}
.ws1{word-spacing:-12.588800pt;}
.ws0{word-spacing:-7.552000pt;}
.ws1c{word-spacing:-0.768000pt;}
.ws8{word-spacing:-0.704000pt;}
.ws13{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws1b{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws18{word-spacing:0.128000pt;}
.ws12{word-spacing:0.192000pt;}
.wsd{word-spacing:0.256000pt;}
.ws14{word-spacing:0.320000pt;}
.ws1d{word-spacing:0.384000pt;}
.wsb{word-spacing:0.448000pt;}
.ws23{word-spacing:0.512000pt;}
.ws22{word-spacing:0.640000pt;}
.ws9{word-spacing:0.896000pt;}
.ws20{word-spacing:2.560000pt;}
.ws11{word-spacing:3.200000pt;}
.ws6{word-spacing:3.306667pt;}
.ws3{word-spacing:3.733333pt;}
.ws21{word-spacing:3.968000pt;}
.ws16{word-spacing:4.416000pt;}
.ws1f{word-spacing:5.632000pt;}
.ws1e{word-spacing:6.080000pt;}
.ws5{word-spacing:7.466667pt;}
.ws17{word-spacing:7.872000pt;}
.ws1a{word-spacing:7.936000pt;}
.wse{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._10{margin-left:-12.649600pt;}
._6{margin-left:-10.186667pt;}
._a{margin-left:-7.237333pt;}
._11{margin-left:-6.330667pt;}
._1{margin-left:-5.301333pt;}
._9{margin-left:-4.400000pt;}
._7{margin-left:-3.200000pt;}
._5{margin-left:-2.154667pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._c{width:2.750933pt;}
._8{width:3.978667pt;}
._b{width:5.242667pt;}
._f{width:6.635733pt;}
._4{width:7.573333pt;}
._d{width:9.113600pt;}
._e{width:10.240000pt;}
._12{width:28.129867pt;}
.fs4{font-size:31.733333pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y48{bottom:105.520000pt;}
.y22{bottom:107.740000pt;}
.y6d{bottom:109.148533pt;}
.y47{bottom:124.448000pt;}
.y6c{bottom:136.174267pt;}
.y46{bottom:143.376000pt;}
.y21{bottom:143.781600pt;}
.y6b{bottom:152.307600pt;}
.y45{bottom:162.304000pt;}
.y20{bottom:162.853600pt;}
.y6a{bottom:168.440933pt;}
.y44{bottom:181.232000pt;}
.y1f{bottom:181.925600pt;}
.y69{bottom:184.574267pt;}
.y43{bottom:200.160000pt;}
.y68{bottom:200.707600pt;}
.y1e{bottom:200.997600pt;}
.y67{bottom:216.840933pt;}
.y42{bottom:219.088000pt;}
.y1d{bottom:220.069600pt;}
.y41{bottom:238.016000pt;}
.y1c{bottom:239.141600pt;}
.y66{bottom:240.389333pt;}
.y40{bottom:256.944000pt;}
.y1b{bottom:258.213600pt;}
.y65{bottom:259.861333pt;}
.y3f{bottom:275.872000pt;}
.y1a{bottom:277.285600pt;}
.y64{bottom:279.333333pt;}
.y3e{bottom:294.800000pt;}
.y19{bottom:296.357600pt;}
.y63{bottom:298.805333pt;}
.y3d{bottom:313.728000pt;}
.y18{bottom:315.429600pt;}
.y62{bottom:318.277333pt;}
.y3c{bottom:332.656000pt;}
.y17{bottom:334.501600pt;}
.y61{bottom:337.749333pt;}
.y3b{bottom:351.584000pt;}
.y16{bottom:353.573600pt;}
.y60{bottom:357.221333pt;}
.y3a{bottom:370.512000pt;}
.y15{bottom:372.645600pt;}
.y5f{bottom:376.693333pt;}
.y39{bottom:389.440000pt;}
.y14{bottom:391.717600pt;}
.y5e{bottom:396.165333pt;}
.y38{bottom:408.368000pt;}
.y13{bottom:410.789600pt;}
.y5d{bottom:415.637333pt;}
.y37{bottom:427.296000pt;}
.y12{bottom:429.861600pt;}
.y5c{bottom:435.109333pt;}
.y36{bottom:446.224000pt;}
.y11{bottom:448.933600pt;}
.y5b{bottom:454.581333pt;}
.y35{bottom:465.152000pt;}
.y10{bottom:468.005600pt;}
.y5a{bottom:474.053333pt;}
.y34{bottom:484.080000pt;}
.yf{bottom:487.077600pt;}
.y59{bottom:493.525333pt;}
.y33{bottom:503.008000pt;}
.ye{bottom:506.149600pt;}
.y58{bottom:512.997333pt;}
.y32{bottom:521.936000pt;}
.yd{bottom:525.221600pt;}
.y57{bottom:532.469333pt;}
.yc{bottom:544.293600pt;}
.y56{bottom:551.941333pt;}
.y31{bottom:559.808000pt;}
.yb{bottom:563.365600pt;}
.y55{bottom:571.413333pt;}
.y30{bottom:578.736000pt;}
.ya{bottom:582.437600pt;}
.y54{bottom:590.885333pt;}
.y2f{bottom:597.664000pt;}
.y9{bottom:601.509600pt;}
.y53{bottom:610.357333pt;}
.y2e{bottom:616.592000pt;}
.y8{bottom:620.581600pt;}
.y52{bottom:629.829333pt;}
.y2d{bottom:635.520000pt;}
.y51{bottom:649.301333pt;}
.y2c{bottom:654.448000pt;}
.y7{bottom:658.981600pt;}
.y2b{bottom:673.376000pt;}
.y6{bottom:678.314933pt;}
.y50{bottom:688.229333pt;}
.y2a{bottom:692.304000pt;}
.y4f{bottom:707.701333pt;}
.y29{bottom:711.232000pt;}
.y4e{bottom:727.173333pt;}
.y28{bottom:730.160000pt;}
.y5{bottom:737.333333pt;}
.y4d{bottom:746.645333pt;}
.y27{bottom:749.088000pt;}
.y4{bottom:764.000000pt;}
.y4c{bottom:766.117333pt;}
.y26{bottom:768.016000pt;}
.y4b{bottom:785.589333pt;}
.y25{bottom:786.944000pt;}
.y3{bottom:790.666667pt;}
.y4a{bottom:805.061333pt;}
.y24{bottom:805.872000pt;}
.y2{bottom:817.333333pt;}
.y49{bottom:824.533333pt;}
.y23{bottom:824.800000pt;}
.h6{height:21.269167pt;}
.h1{height:35.546875pt;}
.h4{height:42.656250pt;}
.h3{height:45.286458pt;}
.h5{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x5{left:73.232000pt;}
.x2{left:100.000000pt;}
.x3{left:113.232000pt;}
.x6{left:126.456667pt;}
.x7{left:236.841733pt;}
.x1{left:556.250000pt;}
}




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