
    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_c6d3b80591a99ed16d2b01e1.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_360d9738a6f2c26e49566784.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a3b02ee38b6b69a30381354.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_9cf5207aa1f5f228d9894473.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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:-179.040000px;}
.v3{vertical-align:-159.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:224.220000px;}
.ls11{letter-spacing:-6.540000px;}
.ls15{letter-spacing:-0.378600px;}
.ls16{letter-spacing:-0.350400px;}
.lsc{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.178800px;}
.lsf{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.037440px;}
.ls13{letter-spacing:-0.028080px;}
.ls14{letter-spacing:-0.018720px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018720px;}
.lsa{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.270600px;}
.lsb{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.313800px;}
.ls6{letter-spacing:0.313920px;}
.ls4{letter-spacing:0.325440px;}
.ls12{letter-spacing:0.341400px;}
.ls3{letter-spacing:59.760000px;}
.ls2{letter-spacing:65.070720px;}
.ls8{letter-spacing:192.372000px;}
.ls0{letter-spacing:192.384000px;}
.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;}
}
.ws8{word-spacing:-73.458720px;}
.ws1{word-spacing:-61.649280px;}
.ws9{word-spacing:-61.470480px;}
.ws6{word-spacing:-60.048000px;}
.ws3{word-spacing:-55.044000px;}
.ws5{word-spacing:-53.442720px;}
.ws1b{word-spacing:-23.418720px;}
.ws1a{word-spacing:-23.390640px;}
.wsf{word-spacing:-23.381280px;}
.ws27{word-spacing:-23.068320px;}
.ws12{word-spacing:-2.422080px;}
.ws24{word-spacing:-2.234160px;}
.ws19{word-spacing:-2.202480px;}
.ws15{word-spacing:-2.192400px;}
.ws22{word-spacing:-2.024640px;}
.ws26{word-spacing:-1.846800px;}
.wsd{word-spacing:-1.806480px;}
.ws13{word-spacing:-1.725120px;}
.ws1c{word-spacing:-1.627200px;}
.ws18{word-spacing:-1.453680px;}
.ws16{word-spacing:-1.402560px;}
.ws23{word-spacing:-1.098720px;}
.ws10{word-spacing:-1.061280px;}
.ws1e{word-spacing:-1.051920px;}
.wse{word-spacing:-0.907200px;}
.ws11{word-spacing:-0.846000px;}
.ws1f{word-spacing:-0.701280px;}
.ws20{word-spacing:-0.682560px;}
.ws4{word-spacing:-0.497760px;}
.ws17{word-spacing:-0.453600px;}
.ws1d{word-spacing:-0.369360px;}
.ws2{word-spacing:-0.234000px;}
.ws25{word-spacing:-0.221280px;}
.ws2a{word-spacing:0.000000px;}
.ws14{word-spacing:0.444960px;}
.ws21{word-spacing:0.694080px;}
.wsa{word-spacing:1.565760px;}
.ws28{word-spacing:2.702880px;}
.wsb{word-spacing:2.730480px;}
.ws29{word-spacing:2.967840px;}
.wsc{word-spacing:122.437440px;}
.ws0{word-spacing:1436.133600px;}
.ws7{word-spacing:5172.551520px;}
._c{margin-left:-24.096240px;}
._1b{margin-left:-19.289520px;}
._3{margin-left:-16.632000px;}
._6{margin-left:-14.256000px;}
._1{margin-left:-12.171600px;}
._18{margin-left:-10.932480px;}
._16{margin-left:-9.687600px;}
._b{margin-left:-8.648640px;}
._10{margin-left:-7.371360px;}
._0{margin-left:-5.564160px;}
._12{margin-left:-4.080240px;}
._e{margin-left:-2.341440px;}
._5{margin-left:-1.193040px;}
._2{width:1.391040px;}
._7{width:2.983680px;}
._8{width:4.026960px;}
._11{width:17.127360px;}
._14{width:18.353520px;}
._15{width:19.471680px;}
._f{width:20.570880px;}
._13{width:21.867120px;}
._d{width:22.971600px;}
._17{width:24.544800px;}
._1a{width:60.258240px;}
._9{width:63.719040px;}
._a{width:65.255040px;}
._19{width:98.906400px;}
._4{width:1093.464000px;}
.fc5{color:transparent;}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,0);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:84.240000px;}
.fs4{font-size:167.760000px;}
.fs5{font-size:192.240000px;}
.fs2{font-size:198.000000px;}
.fs3{font-size:216.000000px;}
.fs1{font-size:221.760000px;}
.fs8{font-size:221.904000px;}
.fs7{font-size:239.760000px;}
.fs6{font-size:264.240000px;}
.fs0{font-size:347.760000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:117.252000px;}
.y5e{bottom:124.200000px;}
.y57{bottom:128.340000px;}
.y4e{bottom:142.452000px;}
.y4d{bottom:172.695000px;}
.y56{bottom:194.940000px;}
.y4c{bottom:202.965000px;}
.y4b{bottom:228.165000px;}
.y5d{bottom:236.490000px;}
.y4a{bottom:258.405000px;}
.y55{bottom:261.540000px;}
.y49{bottom:283.605000px;}
.y48{bottom:313.845000px;}
.y54{bottom:328.140000px;}
.y47{bottom:339.045000px;}
.y46{bottom:369.285000px;}
.y45{bottom:394.485000px;}
.y53{bottom:394.740000px;}
.y44{bottom:424.725000px;}
.y43{bottom:449.925000px;}
.y52{bottom:461.340000px;}
.y42{bottom:480.165000px;}
.y41{bottom:510.405000px;}
.y51{bottom:527.940000px;}
.y40{bottom:535.605000px;}
.y3f{bottom:560.805000px;}
.y3e{bottom:591.045000px;}
.y3d{bottom:616.245000px;}
.y3c{bottom:646.485000px;}
.y50{bottom:661.170000px;}
.y3b{bottom:671.685000px;}
.y58{bottom:811.950000px;}
.y2f{bottom:812.340000px;}
.y14{bottom:1067.250000px;}
.y8{bottom:1091.775000px;}
.y5{bottom:1112.370000px;}
.y4{bottom:1113.735000px;}
.y13{bottom:1118.370000px;}
.y7{bottom:1149.195000px;}
.y12{bottom:1169.670000px;}
.y3{bottom:1171.155000px;}
.y6{bottom:1206.615000px;}
.y11{bottom:1265.730000px;}
.y29{bottom:1289.055000px;}
.y10{bottom:1317.030000px;}
.y28{bottom:1355.655000px;}
.yf{bottom:1368.150000px;}
.ye{bottom:1419.450000px;}
.yd{bottom:1470.780000px;}
.y27{bottom:1488.885000px;}
.y26{bottom:1555.485000px;}
.yc{bottom:1653.840000px;}
.y25{bottom:1688.685000px;}
.yb{bottom:1704.960000px;}
.y1a{bottom:1714.830000px;}
.y24{bottom:1755.285000px;}
.ya{bottom:1756.260000px;}
.y19{bottom:1765.950000px;}
.y9{bottom:1807.560000px;}
.y18{bottom:1817.250000px;}
.y23{bottom:1821.885000px;}
.y17{bottom:1868.370000px;}
.y22{bottom:1888.485000px;}
.y16{bottom:1919.670000px;}
.y21{bottom:1955.085000px;}
.y15{bottom:1970.970000px;}
.y5c{bottom:2041.020000px;}
.y20{bottom:2088.285000px;}
.y1f{bottom:2154.885000px;}
.y1e{bottom:2221.485000px;}
.y1d{bottom:2288.130000px;}
.y5b{bottom:2405.775000px;}
.y1c{bottom:2421.330000px;}
.y5a{bottom:2472.375000px;}
.y1b{bottom:2487.930000px;}
.y59{bottom:2538.975000px;}
.y5f{bottom:2683.290000px;}
.y35{bottom:2880.900000px;}
.y3a{bottom:2905.200000px;}
.y34{bottom:2943.000000px;}
.y39{bottom:2971.800000px;}
.y33{bottom:3005.100000px;}
.y38{bottom:3038.400000px;}
.y32{bottom:3067.200000px;}
.y37{bottom:3105.030000px;}
.y31{bottom:3129.300000px;}
.y36{bottom:3171.630000px;}
.y30{bottom:3191.400000px;}
.y2e{bottom:3332.880000px;}
.y2d{bottom:3480.840000px;}
.y2c{bottom:3558.600000px;}
.y2b{bottom:3636.360000px;}
.y2a{bottom:3713.220000px;}
.y2{bottom:3854.985000px;}
.y1{bottom:3959.385000px;}
.h9{height:87.859687px;}
.h4{height:206.507812px;}
.h5{height:225.281250px;}
.h2{height:231.288750px;}
.h8{height:231.438937px;}
.h7{height:250.062187px;}
.h6{height:275.594063px;}
.h1{height:362.702812px;}
.ha{height:395.100000px;}
.h3{height:455.508750px;}
.h0{height:4252.500000px;}
.w2{width:1001.520000px;}
.w1{width:3401.999949px;}
.w0{width:3402.000000px;}
.x0{left:0.000000px;}
.xa{left:104.903949px;}
.x23{left:113.183949px;}
.x21{left:116.603949px;}
.x2c{left:119.447949px;}
.x22{left:126.503949px;}
.xc{left:131.003949px;}
.xb{left:132.623949px;}
.x2f{left:157.214949px;}
.x9{left:180.689949px;}
.x1e{left:186.509949px;}
.x24{left:234.869949px;}
.x2e{left:242.894949px;}
.x1{left:267.329949px;}
.xd{left:428.864949px;}
.x10{left:437.144949px;}
.xf{left:459.104949px;}
.xe{left:486.644949px;}
.x11{left:496.364949px;}
.x1f{left:502.484949px;}
.x30{left:561.854949px;}
.x31{left:609.014985px;}
.x2{left:753.014949px;}
.x20{left:775.334949px;}
.x14{left:1014.449949px;}
.x13{left:1051.709949px;}
.x18{left:1070.894949px;}
.x17{left:1081.334949px;}
.x16{left:1082.774949px;}
.x19{left:1087.634949px;}
.x15{left:1093.784949px;}
.x1a{left:1121.324949px;}
.x12{left:1141.169949px;}
.x32{left:1495.184949px;}
.x25{left:1561.289949px;}
.x1c{left:1564.814949px;}
.x28{left:1577.849949px;}
.x27{left:1594.769949px;}
.x1d{left:1632.314949px;}
.x3{left:1641.389949px;}
.x26{left:1655.069949px;}
.x1b{left:1672.454949px;}
.x4{left:1679.369949px;}
.x29{left:1958.009949px;}
.x2a{left:2101.649949px;}
.x2b{left:2155.649949px;}
.x5{left:2207.444949px;}
.x2d{left:2478.704949px;}
.x6{left:2814.194949px;}
.x7{left:2901.674949px;}
.x8{left:2906.354949px;}
@media print{
.v2{vertical-align:-159.146667pt;}
.v3{vertical-align:-141.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:199.306667pt;}
.ls11{letter-spacing:-5.813333pt;}
.ls15{letter-spacing:-0.336533pt;}
.ls16{letter-spacing:-0.311467pt;}
.lsc{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.158933pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.033280pt;}
.ls13{letter-spacing:-0.024960pt;}
.ls14{letter-spacing:-0.016640pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016640pt;}
.lsa{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.240533pt;}
.lsb{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.278933pt;}
.ls6{letter-spacing:0.279040pt;}
.ls4{letter-spacing:0.289280pt;}
.ls12{letter-spacing:0.303467pt;}
.ls3{letter-spacing:53.120000pt;}
.ls2{letter-spacing:57.840640pt;}
.ls8{letter-spacing:170.997333pt;}
.ls0{letter-spacing:171.008000pt;}
.ws8{word-spacing:-65.296640pt;}
.ws1{word-spacing:-54.799360pt;}
.ws9{word-spacing:-54.640427pt;}
.ws6{word-spacing:-53.376000pt;}
.ws3{word-spacing:-48.928000pt;}
.ws5{word-spacing:-47.504640pt;}
.ws1b{word-spacing:-20.816640pt;}
.ws1a{word-spacing:-20.791680pt;}
.wsf{word-spacing:-20.783360pt;}
.ws27{word-spacing:-20.505173pt;}
.ws12{word-spacing:-2.152960pt;}
.ws24{word-spacing:-1.985920pt;}
.ws19{word-spacing:-1.957760pt;}
.ws15{word-spacing:-1.948800pt;}
.ws22{word-spacing:-1.799680pt;}
.ws26{word-spacing:-1.641600pt;}
.wsd{word-spacing:-1.605760pt;}
.ws13{word-spacing:-1.533440pt;}
.ws1c{word-spacing:-1.446400pt;}
.ws18{word-spacing:-1.292160pt;}
.ws16{word-spacing:-1.246720pt;}
.ws23{word-spacing:-0.976640pt;}
.ws10{word-spacing:-0.943360pt;}
.ws1e{word-spacing:-0.935040pt;}
.wse{word-spacing:-0.806400pt;}
.ws11{word-spacing:-0.752000pt;}
.ws1f{word-spacing:-0.623360pt;}
.ws20{word-spacing:-0.606720pt;}
.ws4{word-spacing:-0.442453pt;}
.ws17{word-spacing:-0.403200pt;}
.ws1d{word-spacing:-0.328320pt;}
.ws2{word-spacing:-0.208000pt;}
.ws25{word-spacing:-0.196693pt;}
.ws2a{word-spacing:0.000000pt;}
.ws14{word-spacing:0.395520pt;}
.ws21{word-spacing:0.616960pt;}
.wsa{word-spacing:1.391787pt;}
.ws28{word-spacing:2.402560pt;}
.wsb{word-spacing:2.427093pt;}
.ws29{word-spacing:2.638080pt;}
.wsc{word-spacing:108.833280pt;}
.ws0{word-spacing:1276.563200pt;}
.ws7{word-spacing:4597.823573pt;}
._c{margin-left:-21.418880pt;}
._1b{margin-left:-17.146240pt;}
._3{margin-left:-14.784000pt;}
._6{margin-left:-12.672000pt;}
._1{margin-left:-10.819200pt;}
._18{margin-left:-9.717760pt;}
._16{margin-left:-8.611200pt;}
._b{margin-left:-7.687680pt;}
._10{margin-left:-6.552320pt;}
._0{margin-left:-4.945920pt;}
._12{margin-left:-3.626880pt;}
._e{margin-left:-2.081280pt;}
._5{margin-left:-1.060480pt;}
._2{width:1.236480pt;}
._7{width:2.652160pt;}
._8{width:3.579520pt;}
._11{width:15.224320pt;}
._14{width:16.314240pt;}
._15{width:17.308160pt;}
._f{width:18.285227pt;}
._13{width:19.437440pt;}
._d{width:20.419200pt;}
._17{width:21.817600pt;}
._1a{width:53.562880pt;}
._9{width:56.639147pt;}
._a{width:58.004480pt;}
._19{width:87.916800pt;}
._4{width:971.968000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:149.120000pt;}
.fs5{font-size:170.880000pt;}
.fs2{font-size:176.000000pt;}
.fs3{font-size:192.000000pt;}
.fs1{font-size:197.120000pt;}
.fs8{font-size:197.248000pt;}
.fs7{font-size:213.120000pt;}
.fs6{font-size:234.880000pt;}
.fs0{font-size:309.120000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:104.224000pt;}
.y5e{bottom:110.400000pt;}
.y57{bottom:114.080000pt;}
.y4e{bottom:126.624000pt;}
.y4d{bottom:153.506667pt;}
.y56{bottom:173.280000pt;}
.y4c{bottom:180.413333pt;}
.y4b{bottom:202.813333pt;}
.y5d{bottom:210.213333pt;}
.y4a{bottom:229.693333pt;}
.y55{bottom:232.480000pt;}
.y49{bottom:252.093333pt;}
.y48{bottom:278.973333pt;}
.y54{bottom:291.680000pt;}
.y47{bottom:301.373333pt;}
.y46{bottom:328.253333pt;}
.y45{bottom:350.653333pt;}
.y53{bottom:350.880000pt;}
.y44{bottom:377.533333pt;}
.y43{bottom:399.933333pt;}
.y52{bottom:410.080000pt;}
.y42{bottom:426.813333pt;}
.y41{bottom:453.693333pt;}
.y51{bottom:469.280000pt;}
.y40{bottom:476.093333pt;}
.y3f{bottom:498.493333pt;}
.y3e{bottom:525.373333pt;}
.y3d{bottom:547.773333pt;}
.y3c{bottom:574.653333pt;}
.y50{bottom:587.706667pt;}
.y3b{bottom:597.053333pt;}
.y58{bottom:721.733333pt;}
.y2f{bottom:722.080000pt;}
.y14{bottom:948.666667pt;}
.y8{bottom:970.466667pt;}
.y5{bottom:988.773333pt;}
.y4{bottom:989.986667pt;}
.y13{bottom:994.106667pt;}
.y7{bottom:1021.506667pt;}
.y12{bottom:1039.706667pt;}
.y3{bottom:1041.026667pt;}
.y6{bottom:1072.546667pt;}
.y11{bottom:1125.093333pt;}
.y29{bottom:1145.826667pt;}
.y10{bottom:1170.693333pt;}
.y28{bottom:1205.026667pt;}
.yf{bottom:1216.133333pt;}
.ye{bottom:1261.733333pt;}
.yd{bottom:1307.360000pt;}
.y27{bottom:1323.453333pt;}
.y26{bottom:1382.653333pt;}
.yc{bottom:1470.080000pt;}
.y25{bottom:1501.053333pt;}
.yb{bottom:1515.520000pt;}
.y1a{bottom:1524.293333pt;}
.y24{bottom:1560.253333pt;}
.ya{bottom:1561.120000pt;}
.y19{bottom:1569.733333pt;}
.y9{bottom:1606.720000pt;}
.y18{bottom:1615.333333pt;}
.y23{bottom:1619.453333pt;}
.y17{bottom:1660.773333pt;}
.y22{bottom:1678.653333pt;}
.y16{bottom:1706.373333pt;}
.y21{bottom:1737.853333pt;}
.y15{bottom:1751.973333pt;}
.y5c{bottom:1814.240000pt;}
.y20{bottom:1856.253333pt;}
.y1f{bottom:1915.453333pt;}
.y1e{bottom:1974.653333pt;}
.y1d{bottom:2033.893333pt;}
.y5b{bottom:2138.466667pt;}
.y1c{bottom:2152.293333pt;}
.y5a{bottom:2197.666667pt;}
.y1b{bottom:2211.493333pt;}
.y59{bottom:2256.866667pt;}
.y5f{bottom:2385.146667pt;}
.y35{bottom:2560.800000pt;}
.y3a{bottom:2582.400000pt;}
.y34{bottom:2616.000000pt;}
.y39{bottom:2641.600000pt;}
.y33{bottom:2671.200000pt;}
.y38{bottom:2700.800000pt;}
.y32{bottom:2726.400000pt;}
.y37{bottom:2760.026667pt;}
.y31{bottom:2781.600000pt;}
.y36{bottom:2819.226667pt;}
.y30{bottom:2836.800000pt;}
.y2e{bottom:2962.560000pt;}
.y2d{bottom:3094.080000pt;}
.y2c{bottom:3163.200000pt;}
.y2b{bottom:3232.320000pt;}
.y2a{bottom:3300.640000pt;}
.y2{bottom:3426.653333pt;}
.y1{bottom:3519.453333pt;}
.h9{height:78.097500pt;}
.h4{height:183.562500pt;}
.h5{height:200.250000pt;}
.h2{height:205.590000pt;}
.h8{height:205.723500pt;}
.h7{height:222.277500pt;}
.h6{height:244.972500pt;}
.h1{height:322.402500pt;}
.ha{height:351.200000pt;}
.h3{height:404.896667pt;}
.h0{height:3780.000000pt;}
.w2{width:890.240000pt;}
.w1{width:3023.999955pt;}
.w0{width:3024.000000pt;}
.x0{left:0.000000pt;}
.xa{left:93.247955pt;}
.x23{left:100.607955pt;}
.x21{left:103.647955pt;}
.x2c{left:106.175955pt;}
.x22{left:112.447955pt;}
.xc{left:116.447955pt;}
.xb{left:117.887955pt;}
.x2f{left:139.746622pt;}
.x9{left:160.613288pt;}
.x1e{left:165.786622pt;}
.x24{left:208.773288pt;}
.x2e{left:215.906622pt;}
.x1{left:237.626622pt;}
.xd{left:381.213288pt;}
.x10{left:388.573288pt;}
.xf{left:408.093288pt;}
.xe{left:432.573288pt;}
.x11{left:441.213288pt;}
.x1f{left:446.653288pt;}
.x30{left:499.426622pt;}
.x31{left:541.346653pt;}
.x2{left:669.346622pt;}
.x20{left:689.186622pt;}
.x14{left:901.733288pt;}
.x13{left:934.853288pt;}
.x18{left:951.906622pt;}
.x17{left:961.186622pt;}
.x16{left:962.466622pt;}
.x19{left:966.786622pt;}
.x15{left:972.253288pt;}
.x1a{left:996.733288pt;}
.x12{left:1014.373288pt;}
.x32{left:1329.053288pt;}
.x25{left:1387.813288pt;}
.x1c{left:1390.946622pt;}
.x28{left:1402.533288pt;}
.x27{left:1417.573288pt;}
.x1d{left:1450.946622pt;}
.x3{left:1459.013288pt;}
.x26{left:1471.173288pt;}
.x1b{left:1486.626622pt;}
.x4{left:1492.773288pt;}
.x29{left:1740.453288pt;}
.x2a{left:1868.133288pt;}
.x2b{left:1916.133288pt;}
.x5{left:1962.173288pt;}
.x2d{left:2203.293288pt;}
.x6{left:2501.506622pt;}
.x7{left:2579.266622pt;}
.x8{left:2583.426622pt;}
}




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