
    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_fe04cacd277af52f1e5c4d9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_76ea5632e2eb54541e87c852.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_ab0431a900920b2f3598928c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_e0a0d2e097c77b2868211963.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_811c2adf1ddedbba605c773f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.177876px;}
.ls3{letter-spacing:-0.086400px;}
.ls6{letter-spacing:-0.046872px;}
.ls5{letter-spacing:-0.039060px;}
.ls7{letter-spacing:-0.031248px;}
.ls16{letter-spacing:-0.021600px;}
.ls18{letter-spacing:-0.006588px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.007200px;}
.ls13{letter-spacing:0.013176px;}
.ls1e{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.019764px;}
.ls1f{letter-spacing:0.021600px;}
.lsc{letter-spacing:0.026352px;}
.ls4{letter-spacing:0.028800px;}
.lsa{letter-spacing:0.032940px;}
.ls1{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.039528px;}
.ls20{letter-spacing:0.043200px;}
.ls10{letter-spacing:0.046116px;}
.lse{letter-spacing:0.052704px;}
.ls11{letter-spacing:0.059292px;}
.lsf{letter-spacing:0.065880px;}
.ls15{letter-spacing:0.072468px;}
.ls0{letter-spacing:0.079056px;}
.lsb{letter-spacing:0.085644px;}
.ls9{letter-spacing:0.092232px;}
.ls14{letter-spacing:0.098820px;}
.ls17{letter-spacing:0.111996px;}
.ls1a{letter-spacing:0.144936px;}
.ls1b{letter-spacing:0.177876px;}
.ls1c{letter-spacing:53.784000px;}
.ls8{letter-spacing:846.000000px;}
.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;}
}
.ws0{word-spacing:-36.000000px;}
.ws2a{word-spacing:-18.000000px;}
.ws23{word-spacing:-15.481800px;}
.ws1c{word-spacing:-14.763708px;}
.ws21{word-spacing:-13.676688px;}
.ws15{word-spacing:-13.320936px;}
.wsd{word-spacing:-8.274528px;}
.ws2d{word-spacing:-5.402160px;}
.wsa{word-spacing:-5.059584px;}
.ws27{word-spacing:-4.769712px;}
.ws25{word-spacing:-4.736772px;}
.ws22{word-spacing:-4.677480px;}
.ws16{word-spacing:-4.670892px;}
.ws19{word-spacing:-4.657716px;}
.ws1f{word-spacing:-4.637952px;}
.ws24{word-spacing:-4.321728px;}
.ws2b{word-spacing:-3.959388px;}
.ws28{word-spacing:-3.952800px;}
.ws1d{word-spacing:-3.221532px;}
.ws2c{word-spacing:-2.872368px;}
.ws9{word-spacing:-2.523204px;}
.ws29{word-spacing:-1.087020px;}
.ws26{word-spacing:-0.362340px;}
.ws3{word-spacing:-0.273600px;}
.ws8{word-spacing:-0.242172px;}
.ws30{word-spacing:-0.064800px;}
.ws5{word-spacing:-0.054684px;}
.ws7{word-spacing:-0.046872px;}
.ws33{word-spacing:-0.043200px;}
.ws6{word-spacing:-0.039060px;}
.ws31{word-spacing:-0.036000px;}
.ws4{word-spacing:-0.028800px;}
.ws32{word-spacing:-0.021600px;}
.ws37{word-spacing:-0.014400px;}
.ws2e{word-spacing:-0.007200px;}
.ws1e{word-spacing:-0.006588px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.006588px;}
.ws11{word-spacing:0.013176px;}
.ws20{word-spacing:0.019764px;}
.ws34{word-spacing:0.021600px;}
.ws13{word-spacing:0.026352px;}
.ws18{word-spacing:0.032940px;}
.ws12{word-spacing:0.039528px;}
.ws14{word-spacing:0.046116px;}
.ws1a{word-spacing:0.052704px;}
.wsb{word-spacing:0.059292px;}
.wse{word-spacing:0.065880px;}
.ws10{word-spacing:0.072468px;}
.ws1b{word-spacing:0.079056px;}
.wsc{word-spacing:0.098820px;}
.ws2{word-spacing:0.172800px;}
.ws2f{word-spacing:0.180000px;}
.ws17{word-spacing:0.428220px;}
.ws36{word-spacing:18.640800px;}
.ws35{word-spacing:18.698400px;}
._a{margin-left:-16.450236px;}
._9{margin-left:-14.487012px;}
._8{margin-left:-13.123296px;}
._7{margin-left:-12.016512px;}
._4{margin-left:-10.804320px;}
._c{margin-left:-9.690948px;}
._b{margin-left:-8.281116px;}
._2{margin-left:-7.088688px;}
._5{margin-left:-4.684068px;}
._3{margin-left:-3.241296px;}
._6{margin-left:-1.350540px;}
._0{width:1.310400px;}
._1{width:5.586624px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:263.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.721170px;}
.y1f{bottom:77.700450px;}
.y1{bottom:77.880450px;}
.y6a{bottom:116.670792px;}
.y44{bottom:119.099325px;}
.y69{bottom:146.010450px;}
.y43{bottom:148.350045px;}
.y1e{bottom:174.900450px;}
.y68{bottom:175.350792px;}
.y42{bottom:177.689703px;}
.y67{bottom:204.690450px;}
.y41{bottom:207.029361px;}
.y1d{bottom:207.210600px;}
.y1c{bottom:229.440450px;}
.y66{bottom:233.941548px;}
.y40{bottom:236.369019px;}
.y1b{bottom:250.140450px;}
.y3f{bottom:258.148947px;}
.y65{bottom:263.281206px;}
.y1a{bottom:270.840450px;}
.y3e{bottom:287.488605px;}
.y19{bottom:291.540450px;}
.y64{bottom:292.620864px;}
.y18{bottom:312.508737px;}
.y63{bottom:314.400792px;}
.y3d{bottom:316.828263px;}
.y17{bottom:334.919412px;}
.y62{bottom:343.740450px;}
.y3c{bottom:346.078983px;}
.y16{bottom:357.330087px;}
.y61{bottom:373.080600px;}
.y3b{bottom:375.418641px;}
.y15{bottom:379.830600px;}
.y60{bottom:402.420315px;}
.y3a{bottom:404.758299px;}
.y14{bottom:412.136652px;}
.y5f{bottom:431.671035px;}
.y39{bottom:434.097957px;}
.y80{bottom:452.190450px;}
.y5e{bottom:453.541548px;}
.y38{bottom:463.348677px;}
.y5d{bottom:482.881206px;}
.y37{bottom:485.219190px;}
.y13{bottom:488.008749px;}
.y7f{bottom:490.980450px;}
.y5c{bottom:504.661134px;}
.y36{bottom:514.558848px;}
.y5b{bottom:534.000792px;}
.y35{bottom:536.338776px;}
.y7e{bottom:537.150450px;}
.y34{bottom:558.209289px;}
.y5a{bottom:563.340450px;}
.y12{bottom:563.880846px;}
.y7d{bottom:568.200450px;}
.y33{bottom:587.460009px;}
.y59{bottom:592.589559px;}
.y7c{bottom:599.160450px;}
.y32{bottom:609.330522px;}
.y58{bottom:621.929217px;}
.y7b{bottom:630.210450px;}
.y11{bottom:633.360450px;}
.y31{bottom:638.670180px;}
.y57{bottom:643.799730px;}
.y7a{bottom:661.260450px;}
.y30{bottom:667.920900px;}
.y56{bottom:673.050450px;}
.y10{bottom:674.760450px;}
.y79{bottom:692.310450px;}
.y55{bottom:694.920450px;}
.y2f{bottom:697.260558px;}
.yf{bottom:716.160450px;}
.y78{bottom:723.360450px;}
.y54{bottom:724.262112px;}
.y2e{bottom:726.600216px;}
.y53{bottom:746.042040px;}
.y2d{bottom:748.380144px;}
.y77{bottom:754.410450px;}
.ye{bottom:757.560450px;}
.y52{bottom:775.381698px;}
.y2c{bottom:777.719802px;}
.y76{bottom:785.460450px;}
.y2b{bottom:799.590315px;}
.y51{bottom:804.721356px;}
.yd{bottom:805.350450px;}
.y75{bottom:816.510450px;}
.y50{bottom:826.501284px;}
.y2a{bottom:828.841035px;}
.y29{bottom:850.711548px;}
.y74{bottom:855.030450px;}
.y4f{bottom:855.840942px;}
.y28{bottom:880.051206px;}
.yc{bottom:881.310450px;}
.y4e{bottom:885.180600px;}
.y73{bottom:893.910450px;}
.y27{bottom:901.831134px;}
.yb{bottom:912.450450px;}
.y4d{bottom:914.431548px;}
.y26{bottom:931.170792px;}
.y72{bottom:932.700450px;}
.ya{bottom:932.970450px;}
.y4c{bottom:943.771206px;}
.y9{bottom:953.670450px;}
.y25{bottom:960.510450px;}
.y71{bottom:971.670450px;}
.y4b{bottom:973.110864px;}
.y8{bottom:984.810450px;}
.y24{bottom:989.760792px;}
.y4a{bottom:994.890792px;}
.y70{bottom:1002.450414px;}
.y7{bottom:1015.860450px;}
.y23{bottom:1019.100450px;}
.y49{bottom:1024.230450px;}
.y6f{bottom:1031.701134px;}
.y6{bottom:1046.910450px;}
.y48{bottom:1053.570450px;}
.y22{bottom:1056.450450px;}
.y6e{bottom:1061.040792px;}
.y5{bottom:1077.960450px;}
.y21{bottom:1080.120450px;}
.y47{bottom:1082.911143px;}
.y6d{bottom:1090.380450px;}
.y4{bottom:1109.010450px;}
.y6c{bottom:1112.160450px;}
.y46{bottom:1112.161863px;}
.y20{bottom:1139.880450px;}
.y3{bottom:1140.060450px;}
.y6b{bottom:1141.500450px;}
.y45{bottom:1141.501521px;}
.h2{height:43.909277px;}
.h1{height:44.809980px;}
.ha{height:57.805840px;}
.h5{height:63.175781px;}
.h3{height:63.351562px;}
.h8{height:68.545723px;}
.h9{height:68.736445px;}
.h4{height:72.562500px;}
.hb{height:75.093750px;}
.h7{height:126.351562px;}
.h6{height:231.539238px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x16{left:117.000000px;}
.x2{left:127.619829px;}
.x12{left:144.450693px;}
.x8{left:149.130000px;}
.x14{left:151.018236px;}
.x15{left:153.628731px;}
.x13{left:160.649892px;}
.x9{left:171.180000px;}
.x5{left:267.660000px;}
.xb{left:328.230000px;}
.x6{left:338.490000px;}
.xc{left:346.320639px;}
.xa{left:360.630000px;}
.xe{left:371.520000px;}
.xd{left:399.690270px;}
.x11{left:422.550000px;}
.xf{left:440.640000px;}
.x1{left:442.350000px;}
.x10{left:446.490000px;}
.x7{left:447.660000px;}
.x3{left:638.910000px;}
.x4{left:640.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.158112pt;}
.ls3{letter-spacing:-0.076800pt;}
.ls6{letter-spacing:-0.041664pt;}
.ls5{letter-spacing:-0.034720pt;}
.ls7{letter-spacing:-0.027776pt;}
.ls16{letter-spacing:-0.019200pt;}
.ls18{letter-spacing:-0.005856pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.006400pt;}
.ls13{letter-spacing:0.011712pt;}
.ls1e{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.017568pt;}
.ls1f{letter-spacing:0.019200pt;}
.lsc{letter-spacing:0.023424pt;}
.ls4{letter-spacing:0.025600pt;}
.lsa{letter-spacing:0.029280pt;}
.ls1{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.035136pt;}
.ls20{letter-spacing:0.038400pt;}
.ls10{letter-spacing:0.040992pt;}
.lse{letter-spacing:0.046848pt;}
.ls11{letter-spacing:0.052704pt;}
.lsf{letter-spacing:0.058560pt;}
.ls15{letter-spacing:0.064416pt;}
.ls0{letter-spacing:0.070272pt;}
.lsb{letter-spacing:0.076128pt;}
.ls9{letter-spacing:0.081984pt;}
.ls14{letter-spacing:0.087840pt;}
.ls17{letter-spacing:0.099552pt;}
.ls1a{letter-spacing:0.128832pt;}
.ls1b{letter-spacing:0.158112pt;}
.ls1c{letter-spacing:47.808000pt;}
.ls8{letter-spacing:752.000000pt;}
.ws0{word-spacing:-32.000000pt;}
.ws2a{word-spacing:-16.000000pt;}
.ws23{word-spacing:-13.761600pt;}
.ws1c{word-spacing:-13.123296pt;}
.ws21{word-spacing:-12.157056pt;}
.ws15{word-spacing:-11.840832pt;}
.wsd{word-spacing:-7.355136pt;}
.ws2d{word-spacing:-4.801920pt;}
.wsa{word-spacing:-4.497408pt;}
.ws27{word-spacing:-4.239744pt;}
.ws25{word-spacing:-4.210464pt;}
.ws22{word-spacing:-4.157760pt;}
.ws16{word-spacing:-4.151904pt;}
.ws19{word-spacing:-4.140192pt;}
.ws1f{word-spacing:-4.122624pt;}
.ws24{word-spacing:-3.841536pt;}
.ws2b{word-spacing:-3.519456pt;}
.ws28{word-spacing:-3.513600pt;}
.ws1d{word-spacing:-2.863584pt;}
.ws2c{word-spacing:-2.553216pt;}
.ws9{word-spacing:-2.242848pt;}
.ws29{word-spacing:-0.966240pt;}
.ws26{word-spacing:-0.322080pt;}
.ws3{word-spacing:-0.243200pt;}
.ws8{word-spacing:-0.215264pt;}
.ws30{word-spacing:-0.057600pt;}
.ws5{word-spacing:-0.048608pt;}
.ws7{word-spacing:-0.041664pt;}
.ws33{word-spacing:-0.038400pt;}
.ws6{word-spacing:-0.034720pt;}
.ws31{word-spacing:-0.032000pt;}
.ws4{word-spacing:-0.025600pt;}
.ws32{word-spacing:-0.019200pt;}
.ws37{word-spacing:-0.012800pt;}
.ws2e{word-spacing:-0.006400pt;}
.ws1e{word-spacing:-0.005856pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.005856pt;}
.ws11{word-spacing:0.011712pt;}
.ws20{word-spacing:0.017568pt;}
.ws34{word-spacing:0.019200pt;}
.ws13{word-spacing:0.023424pt;}
.ws18{word-spacing:0.029280pt;}
.ws12{word-spacing:0.035136pt;}
.ws14{word-spacing:0.040992pt;}
.ws1a{word-spacing:0.046848pt;}
.wsb{word-spacing:0.052704pt;}
.wse{word-spacing:0.058560pt;}
.ws10{word-spacing:0.064416pt;}
.ws1b{word-spacing:0.070272pt;}
.wsc{word-spacing:0.087840pt;}
.ws2{word-spacing:0.153600pt;}
.ws2f{word-spacing:0.160000pt;}
.ws17{word-spacing:0.380640pt;}
.ws36{word-spacing:16.569600pt;}
.ws35{word-spacing:16.620800pt;}
._a{margin-left:-14.622432pt;}
._9{margin-left:-12.877344pt;}
._8{margin-left:-11.665152pt;}
._7{margin-left:-10.681344pt;}
._4{margin-left:-9.603840pt;}
._c{margin-left:-8.614176pt;}
._b{margin-left:-7.360992pt;}
._2{margin-left:-6.301056pt;}
._5{margin-left:-4.163616pt;}
._3{margin-left:-2.881152pt;}
._6{margin-left:-1.200480pt;}
._0{width:1.164800pt;}
._1{width:4.965888pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:234.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.307707pt;}
.y1f{bottom:69.067067pt;}
.y1{bottom:69.227067pt;}
.y6a{bottom:103.707371pt;}
.y44{bottom:105.866067pt;}
.y69{bottom:129.787067pt;}
.y43{bottom:131.866707pt;}
.y1e{bottom:155.467067pt;}
.y68{bottom:155.867371pt;}
.y42{bottom:157.946403pt;}
.y67{bottom:181.947067pt;}
.y41{bottom:184.026099pt;}
.y1d{bottom:184.187200pt;}
.y1c{bottom:203.947067pt;}
.y66{bottom:207.948043pt;}
.y40{bottom:210.105795pt;}
.y1b{bottom:222.347067pt;}
.y3f{bottom:229.465731pt;}
.y65{bottom:234.027739pt;}
.y1a{bottom:240.747067pt;}
.y3e{bottom:255.545427pt;}
.y19{bottom:259.147067pt;}
.y64{bottom:260.107435pt;}
.y18{bottom:277.785544pt;}
.y63{bottom:279.467371pt;}
.y3d{bottom:281.625123pt;}
.y17{bottom:297.706144pt;}
.y62{bottom:305.547067pt;}
.y3c{bottom:307.625763pt;}
.y16{bottom:317.626744pt;}
.y61{bottom:331.627200pt;}
.y3b{bottom:333.705459pt;}
.y15{bottom:337.627200pt;}
.y60{bottom:357.706947pt;}
.y3a{bottom:359.785155pt;}
.y14{bottom:366.343691pt;}
.y5f{bottom:383.707587pt;}
.y39{bottom:385.864851pt;}
.y80{bottom:401.947067pt;}
.y5e{bottom:403.148043pt;}
.y38{bottom:411.865491pt;}
.y5d{bottom:429.227739pt;}
.y37{bottom:431.305947pt;}
.y13{bottom:433.785555pt;}
.y7f{bottom:436.427067pt;}
.y5c{bottom:448.587675pt;}
.y36{bottom:457.385643pt;}
.y5b{bottom:474.667371pt;}
.y35{bottom:476.745579pt;}
.y7e{bottom:477.467067pt;}
.y34{bottom:496.186035pt;}
.y5a{bottom:500.747067pt;}
.y12{bottom:501.227419pt;}
.y7d{bottom:505.067067pt;}
.y33{bottom:522.186675pt;}
.y59{bottom:526.746275pt;}
.y7c{bottom:532.587067pt;}
.y32{bottom:541.627131pt;}
.y58{bottom:552.825971pt;}
.y7b{bottom:560.187067pt;}
.y11{bottom:562.987067pt;}
.y31{bottom:567.706827pt;}
.y57{bottom:572.266427pt;}
.y7a{bottom:587.787067pt;}
.y30{bottom:593.707467pt;}
.y56{bottom:598.267067pt;}
.y10{bottom:599.787067pt;}
.y79{bottom:615.387067pt;}
.y55{bottom:617.707067pt;}
.y2f{bottom:619.787163pt;}
.yf{bottom:636.587067pt;}
.y78{bottom:642.987067pt;}
.y54{bottom:643.788544pt;}
.y2e{bottom:645.866859pt;}
.y53{bottom:663.148480pt;}
.y2d{bottom:665.226795pt;}
.y77{bottom:670.587067pt;}
.ye{bottom:673.387067pt;}
.y52{bottom:689.228176pt;}
.y2c{bottom:691.306491pt;}
.y76{bottom:698.187067pt;}
.y2b{bottom:710.746947pt;}
.y51{bottom:715.307872pt;}
.yd{bottom:715.867067pt;}
.y75{bottom:725.787067pt;}
.y50{bottom:734.667808pt;}
.y2a{bottom:736.747587pt;}
.y29{bottom:756.188043pt;}
.y74{bottom:760.027067pt;}
.y4f{bottom:760.747504pt;}
.y28{bottom:782.267739pt;}
.yc{bottom:783.387067pt;}
.y4e{bottom:786.827200pt;}
.y73{bottom:794.587067pt;}
.y27{bottom:801.627675pt;}
.yb{bottom:811.067067pt;}
.y4d{bottom:812.828043pt;}
.y26{bottom:827.707371pt;}
.y72{bottom:829.067067pt;}
.ya{bottom:829.307067pt;}
.y4c{bottom:838.907739pt;}
.y9{bottom:847.707067pt;}
.y25{bottom:853.787067pt;}
.y71{bottom:863.707067pt;}
.y4b{bottom:864.987435pt;}
.y8{bottom:875.387067pt;}
.y24{bottom:879.787371pt;}
.y4a{bottom:884.347371pt;}
.y70{bottom:891.067035pt;}
.y7{bottom:902.987067pt;}
.y23{bottom:905.867067pt;}
.y49{bottom:910.427067pt;}
.y6f{bottom:917.067675pt;}
.y6{bottom:930.587067pt;}
.y48{bottom:936.507067pt;}
.y22{bottom:939.067067pt;}
.y6e{bottom:943.147371pt;}
.y5{bottom:958.187067pt;}
.y21{bottom:960.107067pt;}
.y47{bottom:962.587683pt;}
.y6d{bottom:969.227067pt;}
.y4{bottom:985.787067pt;}
.y6c{bottom:988.587067pt;}
.y46{bottom:988.588323pt;}
.y20{bottom:1013.227067pt;}
.y3{bottom:1013.387067pt;}
.y6b{bottom:1014.667067pt;}
.y45{bottom:1014.668019pt;}
.h2{height:39.030469pt;}
.h1{height:39.831094pt;}
.ha{height:51.382969pt;}
.h5{height:56.156250pt;}
.h3{height:56.312500pt;}
.h8{height:60.929531pt;}
.h9{height:61.099063pt;}
.h4{height:64.500000pt;}
.hb{height:66.750000pt;}
.h7{height:112.312500pt;}
.h6{height:205.812656pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x16{left:104.000000pt;}
.x2{left:113.439848pt;}
.x12{left:128.400616pt;}
.x8{left:132.560000pt;}
.x14{left:134.238432pt;}
.x15{left:136.558872pt;}
.x13{left:142.799904pt;}
.x9{left:152.160000pt;}
.x5{left:237.920000pt;}
.xb{left:291.760000pt;}
.x6{left:300.880000pt;}
.xc{left:307.840568pt;}
.xa{left:320.560000pt;}
.xe{left:330.240000pt;}
.xd{left:355.280240pt;}
.x11{left:375.600000pt;}
.xf{left:391.680000pt;}
.x1{left:393.200000pt;}
.x10{left:396.880000pt;}
.x7{left:397.920000pt;}
.x3{left:567.920000pt;}
.x4{left:568.960000pt;}
}




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