
    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_c351ff2713b687262fcb2605.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_ed412867fbbd0bfa1c03c239.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_a39a898ee7191703d1924049.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_9c8d58ceb3e3d313c0a53fe2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.103200px;}
.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;}
}
.ws4{word-spacing:-55.944000px;}
.ws1{word-spacing:-39.880800px;}
.ws2{word-spacing:-39.599700px;}
.ws6{word-spacing:-39.385800px;}
.ws61{word-spacing:-38.862000px;}
.ws7{word-spacing:-38.794500px;}
.ws6d{word-spacing:-38.664000px;}
.ws3b{word-spacing:-38.662200px;}
.ws56{word-spacing:-38.656500px;}
.ws15{word-spacing:-38.655000px;}
.ws37{word-spacing:-38.654400px;}
.ws5b{word-spacing:-38.652000px;}
.ws54{word-spacing:-38.590800px;}
.ws58{word-spacing:-38.583000px;}
.ws68{word-spacing:-38.448000px;}
.ws29{word-spacing:-38.439000px;}
.ws45{word-spacing:-38.379300px;}
.ws33{word-spacing:-38.357700px;}
.ws2a{word-spacing:-38.348100px;}
.ws1f{word-spacing:-38.286300px;}
.ws2f{word-spacing:-38.166000px;}
.ws9{word-spacing:-38.160000px;}
.ws49{word-spacing:-38.157900px;}
.ws6c{word-spacing:-38.157300px;}
.ws13{word-spacing:-38.156400px;}
.ws67{word-spacing:-38.154600px;}
.ws30{word-spacing:-38.154000px;}
.ws4f{word-spacing:-38.152800px;}
.ws32{word-spacing:-38.151900px;}
.ws51{word-spacing:-38.148600px;}
.ws14{word-spacing:-38.147400px;}
.wsa{word-spacing:-38.138700px;}
.ws53{word-spacing:-38.138400px;}
.ws4b{word-spacing:-38.136600px;}
.ws41{word-spacing:-37.948200px;}
.ws22{word-spacing:-37.944000px;}
.ws6b{word-spacing:-37.941300px;}
.ws2c{word-spacing:-37.940400px;}
.ws64{word-spacing:-37.936200px;}
.ws8{word-spacing:-37.930500px;}
.ws6a{word-spacing:-37.925100px;}
.ws34{word-spacing:-37.868400px;}
.ws3{word-spacing:-37.717200px;}
.ws52{word-spacing:-37.440000px;}
.ws4d{word-spacing:-37.436400px;}
.ws18{word-spacing:-37.224000px;}
.ws23{word-spacing:-37.195200px;}
.ws10{word-spacing:-36.720000px;}
.ws4e{word-spacing:-36.478200px;}
.ws43{word-spacing:-36.000000px;}
.ws48{word-spacing:-35.996400px;}
.ws27{word-spacing:-34.556400px;}
.ws1d{word-spacing:-33.612900px;}
.ws26{word-spacing:-33.534900px;}
.ws11{word-spacing:-32.900400px;}
.ws44{word-spacing:-32.178600px;}
.ws1a{word-spacing:-31.812300px;}
.ws5c{word-spacing:-31.680000px;}
.ws5e{word-spacing:-31.454100px;}
.ws3e{word-spacing:-31.450200px;}
.ws46{word-spacing:-31.447500px;}
.ws3c{word-spacing:-30.240000px;}
.ws40{word-spacing:-30.026400px;}
.ws28{word-spacing:-30.022200px;}
.ws3f{word-spacing:-29.801700px;}
.ws62{word-spacing:-29.520000px;}
.ws39{word-spacing:-28.574100px;}
.ws42{word-spacing:-28.086000px;}
.ws57{word-spacing:-28.080000px;}
.ws24{word-spacing:-27.360000px;}
.ws69{word-spacing:-27.143100px;}
.ws47{word-spacing:-27.140400px;}
.ws4c{word-spacing:-26.928000px;}
.ws35{word-spacing:-26.421900px;}
.ws55{word-spacing:-26.350800px;}
.wse{word-spacing:-26.334900px;}
.ws66{word-spacing:-25.916400px;}
.ws2e{word-spacing:-25.700400px;}
.ws0{word-spacing:-25.229700px;}
.ws59{word-spacing:-25.176600px;}
.ws5{word-spacing:-25.148400px;}
.ws21{word-spacing:-24.984000px;}
.ws1c{word-spacing:-24.978000px;}
.ws20{word-spacing:-24.480000px;}
.ws5d{word-spacing:-24.247500px;}
.ws2b{word-spacing:-24.035400px;}
.ws16{word-spacing:-23.544000px;}
.ws17{word-spacing:-23.176500px;}
.ws65{word-spacing:-23.040000px;}
.ws5f{word-spacing:-23.034000px;}
.ws31{word-spacing:-22.807800px;}
.ws2d{word-spacing:-22.100400px;}
.ws3a{word-spacing:-21.383100px;}
.ws12{word-spacing:-21.380400px;}
.ws60{word-spacing:-21.377400px;}
.ws38{word-spacing:-20.880000px;}
.ws19{word-spacing:-19.284300px;}
.ws25{word-spacing:-14.891100px;}
.ws4a{word-spacing:-14.175000px;}
.ws3d{word-spacing:-14.096100px;}
.wsc{word-spacing:-13.452300px;}
.ws63{word-spacing:-13.447800px;}
.wsb{word-spacing:-12.744000px;}
.ws36{word-spacing:-11.520000px;}
.wsf{word-spacing:-11.282400px;}
.ws1e{word-spacing:-8.422200px;}
.wsd{word-spacing:-7.920000px;}
.ws1b{word-spacing:-3.378300px;}
.ws50{word-spacing:-1.717200px;}
.ws5a{word-spacing:-1.008000px;}
._0{margin-left:-1.367100px;}
._2{width:1.207800px;}
._1a{width:17.200200px;}
._1{width:18.353100px;}
._a{width:19.778400px;}
._9{width:20.880000px;}
._13{width:22.676400px;}
._7{width:24.112800px;}
._d{width:25.311000px;}
._c{width:26.355600px;}
._14{width:27.422400px;}
._17{width:28.445400px;}
._11{width:29.626200px;}
._5{width:30.726900px;}
._f{width:32.121300px;}
._15{width:33.165900px;}
._16{width:34.249800px;}
._8{width:35.632800px;}
._b{width:37.868400px;}
._12{width:42.172800px;}
._18{width:43.250100px;}
._3{width:44.268300px;}
._6{width:45.842400px;}
._4{width:46.943100px;}
._10{width:48.814200px;}
._e{width:54.450900px;}
._19{width:55.933200px;}
._1b{width:73.440000px;}
.fc3{color:transparent;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.700000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.225000px;}
.y5{bottom:55.350000px;}
.y2c{bottom:94.036500px;}
.y6a{bottom:96.196500px;}
.y69{bottom:116.896500px;}
.y52{bottom:118.336500px;}
.y2b{bottom:129.675000px;}
.y68{bottom:137.596500px;}
.y51{bottom:139.036500px;}
.y2a{bottom:150.375000px;}
.y67{bottom:173.236500px;}
.y50{bottom:174.675000px;}
.y29{bottom:186.196500px;}
.y4f{bottom:195.375000px;}
.y66{bottom:208.875000px;}
.y4e{bottom:216.075000px;}
.y28{bottom:221.836500px;}
.y65{bottom:229.575000px;}
.y4d{bottom:236.775000px;}
.y27{bottom:242.536500px;}
.y4c{bottom:257.475000px;}
.y26{bottom:263.236500px;}
.y64{bottom:265.396500px;}
.y4b{bottom:278.175000px;}
.y25{bottom:283.936500px;}
.y63{bottom:301.036500px;}
.y24{bottom:304.636500px;}
.y4a{bottom:313.996500px;}
.y23{bottom:325.336500px;}
.y62{bottom:336.675000px;}
.y22{bottom:346.036500px;}
.y49{bottom:349.636500px;}
.y48{bottom:370.336500px;}
.y61{bottom:372.496500px;}
.y21{bottom:387.795000px;}
.y47{bottom:391.036500px;}
.y60{bottom:408.136500px;}
.y46{bottom:411.736500px;}
.y5f{bottom:428.836500px;}
.y20{bottom:429.375000px;}
.y45{bottom:447.375000px;}
.y1f{bottom:450.075000px;}
.y5e{bottom:464.475000px;}
.y44{bottom:468.075000px;}
.y1e{bottom:485.896500px;}
.y43{bottom:488.775000px;}
.y79{bottom:496.695000px;}
.y5d{bottom:500.296500px;}
.y1d{bottom:506.596500px;}
.y42{bottom:509.475000px;}
.y5c{bottom:520.996500px;}
.y1c{bottom:527.296500px;}
.y41{bottom:530.175000px;}
.y78{bottom:532.336500px;}
.y5b{bottom:541.695000px;}
.y1b{bottom:547.996500px;}
.y40{bottom:550.875000px;}
.y77{bottom:567.975000px;}
.y1a{bottom:568.695000px;}
.y5a{bottom:577.336500px;}
.y3f{bottom:586.695000px;}
.y19{bottom:589.396500px;}
.y76{bottom:603.795000px;}
.y3e{bottom:607.396500px;}
.y18{bottom:610.096500px;}
.y59{bottom:612.975000px;}
.y75{bottom:624.496500px;}
.y3d{bottom:628.096500px;}
.y17{bottom:630.795000px;}
.y3c{bottom:648.795000px;}
.y16{bottom:651.496500px;}
.y74{bottom:660.136500px;}
.y3b{bottom:669.496500px;}
.y15{bottom:687.136500px;}
.y73{bottom:695.775000px;}
.y3a{bottom:705.136500px;}
.y72{bottom:716.475000px;}
.y14{bottom:722.775000px;}
.y39{bottom:725.836500px;}
.y13{bottom:743.475000px;}
.y38{bottom:746.536500px;}
.y71{bottom:752.295000px;}
.y58{bottom:761.475000px;}
.y12{bottom:764.175000px;}
.y37{bottom:767.236500px;}
.y11{bottom:784.875000px;}
.y70{bottom:787.936500px;}
.y57{bottom:797.295000px;}
.y36{bottom:802.875000px;}
.y10{bottom:805.575000px;}
.y56{bottom:817.996500px;}
.y6f{bottom:823.575000px;}
.yf{bottom:826.275000px;}
.y35{bottom:838.695000px;}
.ye{bottom:846.975000px;}
.y55{bottom:853.636500px;}
.y34{bottom:859.395000px;}
.yd{bottom:867.675000px;}
.y54{bottom:874.336500px;}
.y6e{bottom:880.095000px;}
.yc{bottom:888.375000px;}
.y33{bottom:895.036500px;}
.y6d{bottom:900.795000px;}
.y32{bottom:915.736500px;}
.yb{bottom:930.136500px;}
.y31{bottom:936.436500px;}
.ya{bottom:950.836500px;}
.y53{bottom:957.136500px;}
.y9{bottom:971.536500px;}
.y30{bottom:972.075000px;}
.y6c{bottom:977.836500px;}
.y2f{bottom:992.775000px;}
.y6b{bottom:998.536500px;}
.y8{bottom:1013.295000px;}
.y2e{bottom:1013.475000px;}
.y2d{bottom:1034.175000px;}
.y7{bottom:1054.875000px;}
.y4{bottom:1110.675000px;}
.y3{bottom:1146.495000px;}
.y2{bottom:1167.195000px;}
.y1{bottom:1217.055000px;}
.h5{height:17.550000px;}
.h6{height:40.976689px;}
.h4{height:48.796875px;}
.h3{height:50.027344px;}
.h2{height:67.217725px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:70.575000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.630000px;}
.x4{left:127.950000px;}
.x9{left:147.238500px;}
.x3{left:150.120000px;}
.x1{left:153.900000px;}
.x2{left:158.038500px;}
.x6{left:217.080000px;}
.x8{left:403.200000px;}
.x7{left:571.500000px;}
.xa{left:659.520000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.091733pt;}
.ws4{word-spacing:-49.728000pt;}
.ws1{word-spacing:-35.449600pt;}
.ws2{word-spacing:-35.199733pt;}
.ws6{word-spacing:-35.009600pt;}
.ws61{word-spacing:-34.544000pt;}
.ws7{word-spacing:-34.484000pt;}
.ws6d{word-spacing:-34.368000pt;}
.ws3b{word-spacing:-34.366400pt;}
.ws56{word-spacing:-34.361333pt;}
.ws15{word-spacing:-34.360000pt;}
.ws37{word-spacing:-34.359467pt;}
.ws5b{word-spacing:-34.357333pt;}
.ws54{word-spacing:-34.302933pt;}
.ws58{word-spacing:-34.296000pt;}
.ws68{word-spacing:-34.176000pt;}
.ws29{word-spacing:-34.168000pt;}
.ws45{word-spacing:-34.114933pt;}
.ws33{word-spacing:-34.095733pt;}
.ws2a{word-spacing:-34.087200pt;}
.ws1f{word-spacing:-34.032267pt;}
.ws2f{word-spacing:-33.925333pt;}
.ws9{word-spacing:-33.920000pt;}
.ws49{word-spacing:-33.918133pt;}
.ws6c{word-spacing:-33.917600pt;}
.ws13{word-spacing:-33.916800pt;}
.ws67{word-spacing:-33.915200pt;}
.ws30{word-spacing:-33.914667pt;}
.ws4f{word-spacing:-33.913600pt;}
.ws32{word-spacing:-33.912800pt;}
.ws51{word-spacing:-33.909867pt;}
.ws14{word-spacing:-33.908800pt;}
.wsa{word-spacing:-33.901067pt;}
.ws53{word-spacing:-33.900800pt;}
.ws4b{word-spacing:-33.899200pt;}
.ws41{word-spacing:-33.731733pt;}
.ws22{word-spacing:-33.728000pt;}
.ws6b{word-spacing:-33.725600pt;}
.ws2c{word-spacing:-33.724800pt;}
.ws64{word-spacing:-33.721067pt;}
.ws8{word-spacing:-33.716000pt;}
.ws6a{word-spacing:-33.711200pt;}
.ws34{word-spacing:-33.660800pt;}
.ws3{word-spacing:-33.526400pt;}
.ws52{word-spacing:-33.280000pt;}
.ws4d{word-spacing:-33.276800pt;}
.ws18{word-spacing:-33.088000pt;}
.ws23{word-spacing:-33.062400pt;}
.ws10{word-spacing:-32.640000pt;}
.ws4e{word-spacing:-32.425067pt;}
.ws43{word-spacing:-32.000000pt;}
.ws48{word-spacing:-31.996800pt;}
.ws27{word-spacing:-30.716800pt;}
.ws1d{word-spacing:-29.878133pt;}
.ws26{word-spacing:-29.808800pt;}
.ws11{word-spacing:-29.244800pt;}
.ws44{word-spacing:-28.603200pt;}
.ws1a{word-spacing:-28.277600pt;}
.ws5c{word-spacing:-28.160000pt;}
.ws5e{word-spacing:-27.959200pt;}
.ws3e{word-spacing:-27.955733pt;}
.ws46{word-spacing:-27.953333pt;}
.ws3c{word-spacing:-26.880000pt;}
.ws40{word-spacing:-26.690133pt;}
.ws28{word-spacing:-26.686400pt;}
.ws3f{word-spacing:-26.490400pt;}
.ws62{word-spacing:-26.240000pt;}
.ws39{word-spacing:-25.399200pt;}
.ws42{word-spacing:-24.965333pt;}
.ws57{word-spacing:-24.960000pt;}
.ws24{word-spacing:-24.320000pt;}
.ws69{word-spacing:-24.127200pt;}
.ws47{word-spacing:-24.124800pt;}
.ws4c{word-spacing:-23.936000pt;}
.ws35{word-spacing:-23.486133pt;}
.ws55{word-spacing:-23.422933pt;}
.wse{word-spacing:-23.408800pt;}
.ws66{word-spacing:-23.036800pt;}
.ws2e{word-spacing:-22.844800pt;}
.ws0{word-spacing:-22.426400pt;}
.ws59{word-spacing:-22.379200pt;}
.ws5{word-spacing:-22.354133pt;}
.ws21{word-spacing:-22.208000pt;}
.ws1c{word-spacing:-22.202667pt;}
.ws20{word-spacing:-21.760000pt;}
.ws5d{word-spacing:-21.553333pt;}
.ws2b{word-spacing:-21.364800pt;}
.ws16{word-spacing:-20.928000pt;}
.ws17{word-spacing:-20.601333pt;}
.ws65{word-spacing:-20.480000pt;}
.ws5f{word-spacing:-20.474667pt;}
.ws31{word-spacing:-20.273600pt;}
.ws2d{word-spacing:-19.644800pt;}
.ws3a{word-spacing:-19.007200pt;}
.ws12{word-spacing:-19.004800pt;}
.ws60{word-spacing:-19.002133pt;}
.ws38{word-spacing:-18.560000pt;}
.ws19{word-spacing:-17.141600pt;}
.ws25{word-spacing:-13.236533pt;}
.ws4a{word-spacing:-12.600000pt;}
.ws3d{word-spacing:-12.529867pt;}
.wsc{word-spacing:-11.957600pt;}
.ws63{word-spacing:-11.953600pt;}
.wsb{word-spacing:-11.328000pt;}
.ws36{word-spacing:-10.240000pt;}
.wsf{word-spacing:-10.028800pt;}
.ws1e{word-spacing:-7.486400pt;}
.wsd{word-spacing:-7.040000pt;}
.ws1b{word-spacing:-3.002933pt;}
.ws50{word-spacing:-1.526400pt;}
.ws5a{word-spacing:-0.896000pt;}
._0{margin-left:-1.215200pt;}
._2{width:1.073600pt;}
._1a{width:15.289067pt;}
._1{width:16.313867pt;}
._a{width:17.580800pt;}
._9{width:18.560000pt;}
._13{width:20.156800pt;}
._7{width:21.433600pt;}
._d{width:22.498667pt;}
._c{width:23.427200pt;}
._14{width:24.375467pt;}
._17{width:25.284800pt;}
._11{width:26.334400pt;}
._5{width:27.312800pt;}
._f{width:28.552267pt;}
._15{width:29.480800pt;}
._16{width:30.444267pt;}
._8{width:31.673600pt;}
._b{width:33.660800pt;}
._12{width:37.486933pt;}
._18{width:38.444533pt;}
._3{width:39.349600pt;}
._6{width:40.748800pt;}
._4{width:41.727200pt;}
._10{width:43.390400pt;}
._e{width:48.400800pt;}
._19{width:49.718400pt;}
._1b{width:65.280000pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.866667pt;}
.y5{bottom:49.200000pt;}
.y2c{bottom:83.588000pt;}
.y6a{bottom:85.508000pt;}
.y69{bottom:103.908000pt;}
.y52{bottom:105.188000pt;}
.y2b{bottom:115.266667pt;}
.y68{bottom:122.308000pt;}
.y51{bottom:123.588000pt;}
.y2a{bottom:133.666667pt;}
.y67{bottom:153.988000pt;}
.y50{bottom:155.266667pt;}
.y29{bottom:165.508000pt;}
.y4f{bottom:173.666667pt;}
.y66{bottom:185.666667pt;}
.y4e{bottom:192.066667pt;}
.y28{bottom:197.188000pt;}
.y65{bottom:204.066667pt;}
.y4d{bottom:210.466667pt;}
.y27{bottom:215.588000pt;}
.y4c{bottom:228.866667pt;}
.y26{bottom:233.988000pt;}
.y64{bottom:235.908000pt;}
.y4b{bottom:247.266667pt;}
.y25{bottom:252.388000pt;}
.y63{bottom:267.588000pt;}
.y24{bottom:270.788000pt;}
.y4a{bottom:279.108000pt;}
.y23{bottom:289.188000pt;}
.y62{bottom:299.266667pt;}
.y22{bottom:307.588000pt;}
.y49{bottom:310.788000pt;}
.y48{bottom:329.188000pt;}
.y61{bottom:331.108000pt;}
.y21{bottom:344.706667pt;}
.y47{bottom:347.588000pt;}
.y60{bottom:362.788000pt;}
.y46{bottom:365.988000pt;}
.y5f{bottom:381.188000pt;}
.y20{bottom:381.666667pt;}
.y45{bottom:397.666667pt;}
.y1f{bottom:400.066667pt;}
.y5e{bottom:412.866667pt;}
.y44{bottom:416.066667pt;}
.y1e{bottom:431.908000pt;}
.y43{bottom:434.466667pt;}
.y79{bottom:441.506667pt;}
.y5d{bottom:444.708000pt;}
.y1d{bottom:450.308000pt;}
.y42{bottom:452.866667pt;}
.y5c{bottom:463.108000pt;}
.y1c{bottom:468.708000pt;}
.y41{bottom:471.266667pt;}
.y78{bottom:473.188000pt;}
.y5b{bottom:481.506667pt;}
.y1b{bottom:487.108000pt;}
.y40{bottom:489.666667pt;}
.y77{bottom:504.866667pt;}
.y1a{bottom:505.506667pt;}
.y5a{bottom:513.188000pt;}
.y3f{bottom:521.506667pt;}
.y19{bottom:523.908000pt;}
.y76{bottom:536.706667pt;}
.y3e{bottom:539.908000pt;}
.y18{bottom:542.308000pt;}
.y59{bottom:544.866667pt;}
.y75{bottom:555.108000pt;}
.y3d{bottom:558.308000pt;}
.y17{bottom:560.706667pt;}
.y3c{bottom:576.706667pt;}
.y16{bottom:579.108000pt;}
.y74{bottom:586.788000pt;}
.y3b{bottom:595.108000pt;}
.y15{bottom:610.788000pt;}
.y73{bottom:618.466667pt;}
.y3a{bottom:626.788000pt;}
.y72{bottom:636.866667pt;}
.y14{bottom:642.466667pt;}
.y39{bottom:645.188000pt;}
.y13{bottom:660.866667pt;}
.y38{bottom:663.588000pt;}
.y71{bottom:668.706667pt;}
.y58{bottom:676.866667pt;}
.y12{bottom:679.266667pt;}
.y37{bottom:681.988000pt;}
.y11{bottom:697.666667pt;}
.y70{bottom:700.388000pt;}
.y57{bottom:708.706667pt;}
.y36{bottom:713.666667pt;}
.y10{bottom:716.066667pt;}
.y56{bottom:727.108000pt;}
.y6f{bottom:732.066667pt;}
.yf{bottom:734.466667pt;}
.y35{bottom:745.506667pt;}
.ye{bottom:752.866667pt;}
.y55{bottom:758.788000pt;}
.y34{bottom:763.906667pt;}
.yd{bottom:771.266667pt;}
.y54{bottom:777.188000pt;}
.y6e{bottom:782.306667pt;}
.yc{bottom:789.666667pt;}
.y33{bottom:795.588000pt;}
.y6d{bottom:800.706667pt;}
.y32{bottom:813.988000pt;}
.yb{bottom:826.788000pt;}
.y31{bottom:832.388000pt;}
.ya{bottom:845.188000pt;}
.y53{bottom:850.788000pt;}
.y9{bottom:863.588000pt;}
.y30{bottom:864.066667pt;}
.y6c{bottom:869.188000pt;}
.y2f{bottom:882.466667pt;}
.y6b{bottom:887.588000pt;}
.y8{bottom:900.706667pt;}
.y2e{bottom:900.866667pt;}
.y2d{bottom:919.266667pt;}
.y7{bottom:937.666667pt;}
.y4{bottom:987.266667pt;}
.y3{bottom:1019.106667pt;}
.y2{bottom:1037.506667pt;}
.y1{bottom:1081.826667pt;}
.h5{height:15.600000pt;}
.h6{height:36.423724pt;}
.h4{height:43.375000pt;}
.h3{height:44.468750pt;}
.h2{height:59.749089pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:62.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.226667pt;}
.x4{left:113.733333pt;}
.x9{left:130.878667pt;}
.x3{left:133.440000pt;}
.x1{left:136.800000pt;}
.x2{left:140.478667pt;}
.x6{left:192.960000pt;}
.x8{left:358.400000pt;}
.x7{left:508.000000pt;}
.xa{left:586.240000pt;}
}




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