
    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_e7f7d92519936df8b17ae914.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_d82e46b588f63ff6460787bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916000;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_57c8fbaba1d4403518e4daf3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_915d782248dcc996af5a6236.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_387ad903f99e8a22d4e9780c.woff2')format("woff");}.ff5{font-family:ff5;line-height:2.409000;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_016435ce405a98f412765f42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_c02263cc7b8f6f50d23d7986.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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);}
.v4{vertical-align:-39.270000px;}
.v6{vertical-align:-19.524000px;}
.v3{vertical-align:-13.812000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v9{vertical-align:40.752000px;}
.v8{vertical-align:92.322000px;}
.v7{vertical-align:94.908000px;}
.v2{vertical-align:131.562000px;}
.va{vertical-align:132.864000px;}
.v5{vertical-align:135.450000px;}
.ls1a{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.002700px;}
.ls2c{letter-spacing:0.003239px;}
.lsa{letter-spacing:1.502161px;}
.ls2b{letter-spacing:1.508161px;}
.ls19{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.993700px;}
.ls27{letter-spacing:7.264869px;}
.ls5{letter-spacing:7.275225px;}
.ls15{letter-spacing:9.035412px;}
.ls17{letter-spacing:9.041412px;}
.ls16{letter-spacing:9.086700px;}
.ls14{letter-spacing:9.092700px;}
.ls20{letter-spacing:10.667412px;}
.ls1f{letter-spacing:10.718700px;}
.ls13{letter-spacing:12.554706px;}
.ls11{letter-spacing:12.557412px;}
.ls10{letter-spacing:12.560712px;}
.ls12{letter-spacing:12.614700px;}
.ls2d{letter-spacing:13.610706px;}
.ls28{letter-spacing:13.616712px;}
.ls29{letter-spacing:13.619412px;}
.ls2a{letter-spacing:13.676700px;}
.lsb{letter-spacing:14.486706px;}
.ls8{letter-spacing:14.489412px;}
.ls7{letter-spacing:14.492712px;}
.ls2{letter-spacing:14.495412px;}
.ls25{letter-spacing:14.537412px;}
.ls18{letter-spacing:14.540700px;}
.ls9{letter-spacing:14.546700px;}
.ls1{letter-spacing:14.547239px;}
.ls24{letter-spacing:14.588700px;}
.ls1b{letter-spacing:16.358700px;}
.lse{letter-spacing:16.391412px;}
.ls23{letter-spacing:16.442700px;}
.ls22{letter-spacing:16.937412px;}
.ls21{letter-spacing:16.988700px;}
.ls30{letter-spacing:17.135412px;}
.ls2f{letter-spacing:17.186700px;}
.ls1e{letter-spacing:20.762700px;}
.ls31{letter-spacing:21.122700px;}
.lsf{letter-spacing:23.625239px;}
.ls2e{letter-spacing:29.882700px;}
.ls26{letter-spacing:29.884869px;}
.lsc{letter-spacing:29.888700px;}
.ls3{letter-spacing:59.774700px;}
.ls1d{letter-spacing:59.780700px;}
.ls1c{letter-spacing:72.674712px;}
.lsd{letter-spacing:85.202700px;}
.ls4{letter-spacing:85.208700px;}
.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:-65.454600px;}
.wsf{word-spacing:-51.820407px;}
.ws1{word-spacing:-16.363650px;}
.ws15{word-spacing:-2.094547px;}
.ws1a{word-spacing:-1.112728px;}
.ws28{word-spacing:-0.981819px;}
.ws27{word-spacing:-0.972188px;}
.ws1f{word-spacing:-0.916364px;}
.ws6{word-spacing:-0.065455px;}
.ws19{word-spacing:-0.005100px;}
.wse{word-spacing:-0.000692px;}
.ws17{word-spacing:-0.000217px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:0.002048px;}
.ws11{word-spacing:0.065455px;}
.ws23{word-spacing:0.077824px;}
.ws18{word-spacing:0.968371px;}
.ws1e{word-spacing:1.112728px;}
.ws1c{word-spacing:1.178183px;}
.ws2{word-spacing:2.160002px;}
.wsd{word-spacing:3.600003px;}
.ws4{word-spacing:3.927276px;}
.ws5{word-spacing:3.966926px;}
.ws7{word-spacing:3.992731px;}
.ws21{word-spacing:4.385458px;}
.ws29{word-spacing:4.778186px;}
.ws12{word-spacing:7.263208px;}
.ws13{word-spacing:7.265461px;}
.ws22{word-spacing:10.666295px;}
.ws16{word-spacing:13.539700px;}
.ws1d{word-spacing:17.448427px;}
.ws3{word-spacing:20.225471px;}
.ws20{word-spacing:20.683654px;}
.ws14{word-spacing:26.644838px;}
.ws26{word-spacing:28.384838px;}
.wsc{word-spacing:32.008838px;}
.ws1b{word-spacing:38.939861px;}
.ws24{word-spacing:43.396400px;}
.wsb{word-spacing:68.825861px;}
.ws9{word-spacing:68.858239px;}
.ws25{word-spacing:85.118056px;}
.wsa{word-spacing:94.254624px;}
._5{margin-left:-21.816018px;}
._8{margin-left:-5.379840px;}
._a{margin-left:-2.976140px;}
._0{margin-left:-1.802045px;}
._1{width:3.626305px;}
._2{width:5.459752px;}
._4{width:9.032735px;}
._b{width:21.181634px;}
._6{width:22.581837px;}
._3{width:31.831031px;}
._7{width:59.760050px;}
._9{width:85.221889px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs0{font-size:65.454600px;}
.y0{bottom:0.000000px;}
.y32{bottom:156.157500px;}
.y31{bottom:200.989500px;}
.y30{bottom:217.428000px;}
.y2f{bottom:222.309000px;}
.y2e{bottom:246.829500px;}
.y2c{bottom:281.647500px;}
.y2d{bottom:291.783000px;}
.y2b{bottom:301.971000px;}
.y56{bottom:312.861000px;}
.y2a{bottom:315.510000px;}
.y55{bottom:333.184500px;}
.y29{bottom:334.368000px;}
.y28{bottom:354.693000px;}
.y53{bottom:369.397500px;}
.y54{bottom:379.533000px;}
.y26{bottom:385.252500px;}
.y52{bottom:389.721000px;}
.y51{bottom:403.260000px;}
.y22{bottom:405.550500px;}
.y25{bottom:405.576000px;}
.y23{bottom:409.003500px;}
.y50{bottom:425.422500px;}
.y24{bottom:425.899500px;}
.y27{bottom:438.441000px;}
.y21{bottom:445.164000px;}
.y4f{bottom:445.746000px;}
.y20{bottom:465.487500px;}
.y4e{bottom:479.061000px;}
.y4d{bottom:489.196500px;}
.y1f{bottom:496.507500px;}
.y1e{bottom:516.831000px;}
.y4c{bottom:518.647500px;}
.y1d{bottom:537.154500px;}
.y4b{bottom:538.971000px;}
.y1c{bottom:557.478000px;}
.y4a{bottom:572.745000px;}
.y1a{bottom:590.476500px;}
.y49{bottom:593.068500px;}
.y1b{bottom:610.774500px;}
.y19{bottom:610.800000px;}
.y48{bottom:613.392000px;}
.y18{bottom:631.123500px;}
.y47{bottom:633.717000px;}
.y17{bottom:644.319000px;}
.y16{bottom:664.069500px;}
.y45{bottom:668.905500px;}
.y46{bottom:679.042500px;}
.y44{bottom:689.230500px;}
.y14{bottom:697.068000px;}
.y43{bottom:702.769500px;}
.y15{bottom:707.203500px;}
.y13{bottom:717.391500px;}
.y42{bottom:724.932000px;}
.y12{bottom:730.930500px;}
.y41{bottom:745.255500px;}
.y11{bottom:750.337500px;}
.y40{bottom:765.579000px;}
.y10{bottom:770.661000px;}
.y3f{bottom:799.353000px;}
.ye{bottom:800.811000px;}
.ya{bottom:821.109000px;}
.yd{bottom:821.134500px;}
.yb{bottom:824.562000px;}
.y3d{bottom:834.543000px;}
.yc{bottom:841.459500px;}
.y3e{bottom:844.678500px;}
.yf{bottom:853.999500px;}
.y3c{bottom:854.866500px;}
.y9{bottom:860.722500px;}
.y3b{bottom:868.405500px;}
.y8{bottom:881.046000px;}
.y3a{bottom:890.568000px;}
.y39{bottom:910.891500px;}
.y7{bottom:912.066000px;}
.y6{bottom:932.389500px;}
.y38{bottom:946.081500px;}
.y37{bottom:966.405000px;}
.y35{bottom:969.832500px;}
.y36{bottom:986.730000px;}
.y5{bottom:995.233500px;}
.y34{bottom:999.270000px;}
.y4{bottom:1015.557000px;}
.y33{bottom:1022.431500px;}
.y3{bottom:1035.880500px;}
.y2{bottom:1056.204000px;}
.y1{bottom:1060.000500px;}
.h8{height:3.272730px;}
.hd{height:28.787846px;}
.ha{height:35.278950px;}
.he{height:37.013299px;}
.h2{height:45.032765px;}
.h5{height:45.356765px;}
.h3{height:45.362765px;}
.h6{height:46.669130px;}
.hb{height:47.455130px;}
.h9{height:49.090950px;}
.h4{height:56.660573px;}
.h11{height:95.594730px;}
.h10{height:98.180730px;}
.h7{height:134.834730px;}
.h12{height:136.136730px;}
.hc{height:138.722730px;}
.hf{height:138.728730px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:150.519000px;}
.x1{left:153.702000px;}
.x23{left:168.751500px;}
.x26{left:170.974500px;}
.x6{left:175.924500px;}
.x2a{left:191.428500px;}
.xe{left:193.260000px;}
.x5{left:225.039000px;}
.x24{left:245.434500px;}
.x32{left:251.916000px;}
.x14{left:268.327500px;}
.x3{left:273.229500px;}
.x4{left:277.320000px;}
.x2d{left:314.563500px;}
.x8{left:322.890000px;}
.x36{left:330.501000px;}
.x2e{left:338.677500px;}
.x20{left:342.757500px;}
.x2f{left:351.598500px;}
.x9{left:382.131000px;}
.x15{left:386.130000px;}
.xa{left:389.527500px;}
.x37{left:391.287000px;}
.xf{left:394.417500px;}
.x11{left:397.693500px;}
.x16{left:399.051000px;}
.x1b{left:407.448000px;}
.x12{left:410.614500px;}
.x21{left:411.771000px;}
.xb{left:419.514000px;}
.x10{left:424.150500px;}
.x1c{left:437.433000px;}
.xc{left:441.303000px;}
.x27{left:446.071500px;}
.x33{left:447.661500px;}
.x1d{left:459.223500px;}
.x25{left:465.327000px;}
.x28{left:467.860500px;}
.x13{left:471.193500px;}
.x22{left:472.557000px;}
.x1a{left:474.754500px;}
.x7{left:477.075000px;}
.x19{left:478.348500px;}
.x30{left:485.071500px;}
.x17{left:486.385500px;}
.x18{left:495.471000px;}
.x2c{left:498.004500px;}
.x1e{left:510.717000px;}
.x29{left:519.355500px;}
.xd{left:528.637500px;}
.x38{left:532.930500px;}
.x31{left:545.650500px;}
.x2b{left:622.371000px;}
.x34{left:665.145000px;}
.x1f{left:719.569500px;}
.x35{left:767.403000px;}
@media print{
.v4{vertical-align:-34.906667pt;}
.v6{vertical-align:-17.354667pt;}
.v3{vertical-align:-12.277333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v9{vertical-align:36.224000pt;}
.v8{vertical-align:82.064000pt;}
.v7{vertical-align:84.362667pt;}
.v2{vertical-align:116.944000pt;}
.va{vertical-align:118.101333pt;}
.v5{vertical-align:120.400000pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.002400pt;}
.ls2c{letter-spacing:0.002879pt;}
.lsa{letter-spacing:1.335254pt;}
.ls2b{letter-spacing:1.340587pt;}
.ls19{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.661067pt;}
.ls27{letter-spacing:6.457661pt;}
.ls5{letter-spacing:6.466867pt;}
.ls15{letter-spacing:8.031477pt;}
.ls17{letter-spacing:8.036811pt;}
.ls16{letter-spacing:8.077067pt;}
.ls14{letter-spacing:8.082400pt;}
.ls20{letter-spacing:9.482144pt;}
.ls1f{letter-spacing:9.527733pt;}
.ls13{letter-spacing:11.159739pt;}
.ls11{letter-spacing:11.162144pt;}
.ls10{letter-spacing:11.165077pt;}
.ls12{letter-spacing:11.213067pt;}
.ls2d{letter-spacing:12.098405pt;}
.ls28{letter-spacing:12.103744pt;}
.ls29{letter-spacing:12.106144pt;}
.ls2a{letter-spacing:12.157067pt;}
.lsb{letter-spacing:12.877072pt;}
.ls8{letter-spacing:12.879477pt;}
.ls7{letter-spacing:12.882411pt;}
.ls2{letter-spacing:12.884811pt;}
.ls25{letter-spacing:12.922144pt;}
.ls18{letter-spacing:12.925067pt;}
.ls9{letter-spacing:12.930400pt;}
.ls1{letter-spacing:12.930879pt;}
.ls24{letter-spacing:12.967733pt;}
.ls1b{letter-spacing:14.541067pt;}
.lse{letter-spacing:14.570144pt;}
.ls23{letter-spacing:14.615733pt;}
.ls22{letter-spacing:15.055477pt;}
.ls21{letter-spacing:15.101067pt;}
.ls30{letter-spacing:15.231477pt;}
.ls2f{letter-spacing:15.277067pt;}
.ls1e{letter-spacing:18.455733pt;}
.ls31{letter-spacing:18.775733pt;}
.lsf{letter-spacing:21.000213pt;}
.ls2e{letter-spacing:26.562400pt;}
.ls26{letter-spacing:26.564328pt;}
.lsc{letter-spacing:26.567733pt;}
.ls3{letter-spacing:53.133067pt;}
.ls1d{letter-spacing:53.138400pt;}
.ls1c{letter-spacing:64.599744pt;}
.lsd{letter-spacing:75.735733pt;}
.ls4{letter-spacing:75.741067pt;}
.ws8{word-spacing:-58.181867pt;}
.wsf{word-spacing:-46.062584pt;}
.ws1{word-spacing:-14.545467pt;}
.ws15{word-spacing:-1.861820pt;}
.ws1a{word-spacing:-0.989092pt;}
.ws28{word-spacing:-0.872728pt;}
.ws27{word-spacing:-0.864167pt;}
.ws1f{word-spacing:-0.814546pt;}
.ws6{word-spacing:-0.058182pt;}
.ws19{word-spacing:-0.004533pt;}
.wse{word-spacing:-0.000615pt;}
.ws17{word-spacing:-0.000193pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:0.001820pt;}
.ws11{word-spacing:0.058182pt;}
.ws23{word-spacing:0.069177pt;}
.ws18{word-spacing:0.860774pt;}
.ws1e{word-spacing:0.989092pt;}
.ws1c{word-spacing:1.047274pt;}
.ws2{word-spacing:1.920002pt;}
.wsd{word-spacing:3.200003pt;}
.ws4{word-spacing:3.490912pt;}
.ws5{word-spacing:3.526156pt;}
.ws7{word-spacing:3.549094pt;}
.ws21{word-spacing:3.898185pt;}
.ws29{word-spacing:4.247276pt;}
.ws12{word-spacing:6.456185pt;}
.ws13{word-spacing:6.458187pt;}
.ws22{word-spacing:9.481151pt;}
.ws16{word-spacing:12.035289pt;}
.ws1d{word-spacing:15.509713pt;}
.ws3{word-spacing:17.978197pt;}
.ws20{word-spacing:18.385470pt;}
.ws14{word-spacing:23.684300pt;}
.ws26{word-spacing:25.230967pt;}
.wsc{word-spacing:28.452300pt;}
.ws1b{word-spacing:34.613210pt;}
.ws24{word-spacing:38.574578pt;}
.wsb{word-spacing:61.178543pt;}
.ws9{word-spacing:61.207324pt;}
.ws25{word-spacing:75.660494pt;}
.wsa{word-spacing:83.781888pt;}
._5{margin-left:-19.392016pt;}
._8{margin-left:-4.782080pt;}
._a{margin-left:-2.645458pt;}
._0{margin-left:-1.601818pt;}
._1{width:3.223382pt;}
._2{width:4.853113pt;}
._4{width:8.029098pt;}
._b{width:18.828119pt;}
._6{width:20.072744pt;}
._3{width:28.294250pt;}
._7{width:53.120044pt;}
._9{width:75.752790pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs0{font-size:58.181867pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:138.806667pt;}
.y31{bottom:178.657333pt;}
.y30{bottom:193.269333pt;}
.y2f{bottom:197.608000pt;}
.y2e{bottom:219.404000pt;}
.y2c{bottom:250.353333pt;}
.y2d{bottom:259.362667pt;}
.y2b{bottom:268.418667pt;}
.y56{bottom:278.098667pt;}
.y2a{bottom:280.453333pt;}
.y55{bottom:296.164000pt;}
.y29{bottom:297.216000pt;}
.y28{bottom:315.282667pt;}
.y53{bottom:328.353333pt;}
.y54{bottom:337.362667pt;}
.y26{bottom:342.446667pt;}
.y52{bottom:346.418667pt;}
.y51{bottom:358.453333pt;}
.y22{bottom:360.489333pt;}
.y25{bottom:360.512000pt;}
.y23{bottom:363.558667pt;}
.y50{bottom:378.153333pt;}
.y24{bottom:378.577333pt;}
.y27{bottom:389.725333pt;}
.y21{bottom:395.701333pt;}
.y4f{bottom:396.218667pt;}
.y20{bottom:413.766667pt;}
.y4e{bottom:425.832000pt;}
.y4d{bottom:434.841333pt;}
.y1f{bottom:441.340000pt;}
.y1e{bottom:459.405333pt;}
.y4c{bottom:461.020000pt;}
.y1d{bottom:477.470667pt;}
.y4b{bottom:479.085333pt;}
.y1c{bottom:495.536000pt;}
.y4a{bottom:509.106667pt;}
.y1a{bottom:524.868000pt;}
.y49{bottom:527.172000pt;}
.y1b{bottom:542.910667pt;}
.y19{bottom:542.933333pt;}
.y48{bottom:545.237333pt;}
.y18{bottom:560.998667pt;}
.y47{bottom:563.304000pt;}
.y17{bottom:572.728000pt;}
.y16{bottom:590.284000pt;}
.y45{bottom:594.582667pt;}
.y46{bottom:603.593333pt;}
.y44{bottom:612.649333pt;}
.y14{bottom:619.616000pt;}
.y43{bottom:624.684000pt;}
.y15{bottom:628.625333pt;}
.y13{bottom:637.681333pt;}
.y42{bottom:644.384000pt;}
.y12{bottom:649.716000pt;}
.y41{bottom:662.449333pt;}
.y11{bottom:666.966667pt;}
.y40{bottom:680.514667pt;}
.y10{bottom:685.032000pt;}
.y3f{bottom:710.536000pt;}
.ye{bottom:711.832000pt;}
.ya{bottom:729.874667pt;}
.yd{bottom:729.897333pt;}
.yb{bottom:732.944000pt;}
.y3d{bottom:741.816000pt;}
.yc{bottom:747.964000pt;}
.y3e{bottom:750.825333pt;}
.yf{bottom:759.110667pt;}
.y3c{bottom:759.881333pt;}
.y9{bottom:765.086667pt;}
.y3b{bottom:771.916000pt;}
.y8{bottom:783.152000pt;}
.y3a{bottom:791.616000pt;}
.y39{bottom:809.681333pt;}
.y7{bottom:810.725333pt;}
.y6{bottom:828.790667pt;}
.y38{bottom:840.961333pt;}
.y37{bottom:859.026667pt;}
.y35{bottom:862.073333pt;}
.y36{bottom:877.093333pt;}
.y5{bottom:884.652000pt;}
.y34{bottom:888.240000pt;}
.y4{bottom:902.717333pt;}
.y33{bottom:908.828000pt;}
.y3{bottom:920.782667pt;}
.y2{bottom:938.848000pt;}
.y1{bottom:942.222667pt;}
.h8{height:2.909093pt;}
.hd{height:25.589197pt;}
.ha{height:31.359067pt;}
.he{height:32.900710pt;}
.h2{height:40.029124pt;}
.h5{height:40.317124pt;}
.h3{height:40.322458pt;}
.h6{height:41.483671pt;}
.hb{height:42.182338pt;}
.h9{height:43.636400pt;}
.h4{height:50.364954pt;}
.h11{height:84.973093pt;}
.h10{height:87.271760pt;}
.h7{height:119.853093pt;}
.h12{height:121.010427pt;}
.hc{height:123.309093pt;}
.hf{height:123.314427pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:133.794667pt;}
.x1{left:136.624000pt;}
.x23{left:150.001333pt;}
.x26{left:151.977333pt;}
.x6{left:156.377333pt;}
.x2a{left:170.158667pt;}
.xe{left:171.786667pt;}
.x5{left:200.034667pt;}
.x24{left:218.164000pt;}
.x32{left:223.925333pt;}
.x14{left:238.513333pt;}
.x3{left:242.870667pt;}
.x4{left:246.506667pt;}
.x2d{left:279.612000pt;}
.x8{left:287.013333pt;}
.x36{left:293.778667pt;}
.x2e{left:301.046667pt;}
.x20{left:304.673333pt;}
.x2f{left:312.532000pt;}
.x9{left:339.672000pt;}
.x15{left:343.226667pt;}
.xa{left:346.246667pt;}
.x37{left:347.810667pt;}
.xf{left:350.593333pt;}
.x11{left:353.505333pt;}
.x16{left:354.712000pt;}
.x1b{left:362.176000pt;}
.x12{left:364.990667pt;}
.x21{left:366.018667pt;}
.xb{left:372.901333pt;}
.x10{left:377.022667pt;}
.x1c{left:388.829333pt;}
.xc{left:392.269333pt;}
.x27{left:396.508000pt;}
.x33{left:397.921333pt;}
.x1d{left:408.198667pt;}
.x25{left:413.624000pt;}
.x28{left:415.876000pt;}
.x13{left:418.838667pt;}
.x22{left:420.050667pt;}
.x1a{left:422.004000pt;}
.x7{left:424.066667pt;}
.x19{left:425.198667pt;}
.x30{left:431.174667pt;}
.x17{left:432.342667pt;}
.x18{left:440.418667pt;}
.x2c{left:442.670667pt;}
.x1e{left:453.970667pt;}
.x29{left:461.649333pt;}
.xd{left:469.900000pt;}
.x38{left:473.716000pt;}
.x31{left:485.022667pt;}
.x2b{left:553.218667pt;}
.x34{left:591.240000pt;}
.x1f{left:639.617333pt;}
.x35{left:682.136000pt;}
}




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