
    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_098b6dfd046824bb5a0fbab5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_78efa7ba8f64fcd21ada1340.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_260f696da0e399f64caab23f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_5c42eb838ab1aa114020bf6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_cb07853a97bdee482ea6c370.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222168;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_787646df377ddefba38ba693.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148926;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_df75526a7088f560e76cd385.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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:ffa;src:url('chunks/assets/font_cc92bebf314dc35ab20f478b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_2a0d5bb1316246ea0ebc728b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.079102;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);}
.v6{vertical-align:-96.480000px;}
.va{vertical-align:-15.120000px;}
.v4{vertical-align:-13.680000px;}
.vb{vertical-align:-10.080000px;}
.v5{vertical-align:-7.920000px;}
.v1{vertical-align:-6.480000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v2{vertical-align:6.480000px;}
.v3{vertical-align:21.600000px;}
.v9{vertical-align:30.240000px;}
.ls9{letter-spacing:-21.780000px;}
.ls18{letter-spacing:-2.340000px;}
.ls1d{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.228000px;}
.lsa{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.086400px;}
.ls19{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.327000px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.447840px;}
.ls20{letter-spacing:0.522720px;}
.ls6{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.549360px;}
.ls4{letter-spacing:0.720000px;}
.lse{letter-spacing:1.440000px;}
.ls16{letter-spacing:4.140000px;}
.ls17{letter-spacing:4.860000px;}
.lsc{letter-spacing:7.639920px;}
.ls15{letter-spacing:8.460000px;}
.ls13{letter-spacing:9.180000px;}
.ls14{letter-spacing:9.900000px;}
.ls1f{letter-spacing:15.660000px;}
.ls1e{letter-spacing:17.100000px;}
.ls7{letter-spacing:20.700000px;}
.ls23{letter-spacing:21.221280px;}
.ls10{letter-spacing:21.240000px;}
.ls12{letter-spacing:23.580000px;}
.ls5{letter-spacing:168.077280px;}
.ls24{letter-spacing:257.556000px;}
.ls11{letter-spacing:340.380000px;}
.ls8{letter-spacing:487.980000px;}
.lsf{letter-spacing:758.880000px;}
.ls21{letter-spacing:781.860000px;}
.lsb{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;}
}
.ws3{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.387000px;}
.ws0{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.832000px;}
.ws2{word-spacing:-0.084240px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.002160px;}
.ws4{word-spacing:907.986720px;}
._27{margin-left:-2508.540000px;}
._28{margin-left:-2498.319360px;}
._39{margin-left:-1704.008160px;}
._2a{margin-left:-1637.688240px;}
._1f{margin-left:-1408.788720px;}
._22{margin-left:-824.070000px;}
._2e{margin-left:-779.844240px;}
._21{margin-left:-770.760000px;}
._38{margin-left:-587.880000px;}
._23{margin-left:-561.606960px;}
._16{margin-left:-523.384800px;}
._1b{margin-left:-509.045040px;}
._29{margin-left:-409.800000px;}
._34{margin-left:-404.820000px;}
._2f{margin-left:-361.477200px;}
._20{margin-left:-226.088640px;}
._25{margin-left:-214.560000px;}
._26{margin-left:-69.051360px;}
._1c{margin-left:-22.570800px;}
._36{margin-left:-20.896320px;}
._19{margin-left:-14.577120px;}
._1d{margin-left:-9.493440px;}
._1e{margin-left:-8.456400px;}
._3{margin-left:-5.812560px;}
._4{margin-left:-4.801680px;}
._c{margin-left:-2.850720px;}
._0{margin-left:-1.263600px;}
._1{width:1.017120px;}
._2{width:2.155200px;}
._10{width:3.779280px;}
._e{width:4.801680px;}
._5{width:5.896800px;}
._15{width:7.497360px;}
._14{width:8.676720px;}
._32{width:9.858960px;}
._18{width:10.864080px;}
._11{width:12.214800px;}
._2c{width:13.309920px;}
._2b{width:14.489280px;}
._6{width:15.500160px;}
._7{width:16.511040px;}
._12{width:18.015840px;}
._f{width:19.712160px;}
._2d{width:22.576320px;}
._d{width:23.839920px;}
._3b{width:29.315520px;}
._35{width:30.391200px;}
._31{width:32.348160px;}
._30{width:33.864480px;}
._1a{width:35.465040px;}
._9{width:36.475920px;}
._8{width:37.486800px;}
._13{width:42.192720px;}
._a{width:53.913600px;}
._b{width:56.105040px;}
._3c{width:57.585600px;}
._33{width:387.199200px;}
._17{width:524.160000px;}
._37{width:568.317120px;}
._3d{width:843.240000px;}
._3a{width:1200.483600px;}
._24{width:2255.246160px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y51{bottom:110.736000px;}
.y2d{bottom:111.096000px;}
.y50{bottom:134.856000px;}
.y2c{bottom:135.216000px;}
.y4f{bottom:159.150000px;}
.y2b{bottom:159.330000px;}
.y54{bottom:183.270000px;}
.y2a{bottom:183.450000px;}
.y53{bottom:207.390000px;}
.y29{bottom:207.750000px;}
.y4e{bottom:209.010000px;}
.y4d{bottom:231.510000px;}
.y28{bottom:231.870000px;}
.y4c{bottom:255.630000px;}
.y27{bottom:255.990000px;}
.y4b{bottom:279.795000px;}
.y26{bottom:280.155000px;}
.y4a{bottom:303.915000px;}
.y25{bottom:304.275000px;}
.y49{bottom:328.215000px;}
.y24{bottom:328.395000px;}
.y5f{bottom:334.335000px;}
.y48{bottom:352.335000px;}
.y23{bottom:352.515000px;}
.y47{bottom:376.455000px;}
.y22{bottom:376.815000px;}
.y5e{bottom:382.575000px;}
.y46{bottom:400.575000px;}
.y5d{bottom:406.695000px;}
.y21{bottom:412.815000px;}
.y45{bottom:424.695000px;}
.y5c{bottom:430.815000px;}
.y20{bottom:437.115000px;}
.y44{bottom:448.815000px;}
.y5b{bottom:455.115000px;}
.y1f{bottom:461.235000px;}
.y43{bottom:473.115000px;}
.y5a{bottom:479.235000px;}
.y1e{bottom:485.355000px;}
.y42{bottom:497.235000px;}
.y59{bottom:503.355000px;}
.y1d{bottom:509.475000px;}
.y41{bottom:521.355000px;}
.y58{bottom:527.475000px;}
.y1c{bottom:533.595000px;}
.y40{bottom:545.475000px;}
.y57{bottom:551.595000px;}
.y1b{bottom:557.745000px;}
.y3f{bottom:569.625000px;}
.y56{bottom:575.745000px;}
.y1a{bottom:582.045000px;}
.y3e{bottom:593.745000px;}
.y55{bottom:600.045000px;}
.y19{bottom:618.045000px;}
.y18{bottom:642.165000px;}
.y3d{bottom:666.285000px;}
.y17{bottom:666.465000px;}
.y3c{bottom:690.405000px;}
.y16{bottom:690.585000px;}
.y3b{bottom:714.525000px;}
.y15{bottom:714.705000px;}
.y3a{bottom:738.645000px;}
.y14{bottom:738.825000px;}
.y39{bottom:762.765000px;}
.y13{bottom:762.945000px;}
.y38{bottom:787.065000px;}
.y12{bottom:799.125000px;}
.y37{bottom:811.185000px;}
.y52{bottom:814.965000px;}
.y11{bottom:823.245000px;}
.y36{bottom:835.305000px;}
.y10{bottom:847.410000px;}
.y35{bottom:859.470000px;}
.yf{bottom:871.710000px;}
.y34{bottom:883.590000px;}
.ye{bottom:895.830000px;}
.y33{bottom:907.710000px;}
.yd{bottom:919.950000px;}
.y32{bottom:932.010000px;}
.yc{bottom:944.070000px;}
.y31{bottom:956.130000px;}
.yb{bottom:968.190000px;}
.y30{bottom:980.250000px;}
.ya{bottom:992.310000px;}
.y2f{bottom:1004.370000px;}
.y9{bottom:1016.430000px;}
.y2e{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h4{height:75.519844px;}
.hb{height:78.604805px;}
.hc{height:82.635820px;}
.h2{height:82.676953px;}
.ha{height:83.238047px;}
.h3{height:84.898125px;}
.h5{height:85.103789px;}
.h9{height:87.695156px;}
.h7{height:87.859687px;}
.h6{height:91.583789px;}
.h8{height:106.703789px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x3{left:90.359987px;}
.x12{left:106.595987px;}
.x10{left:112.355987px;}
.x6{left:113.975987px;}
.xa{left:127.835987px;}
.x11{left:139.355987px;}
.xb{left:144.935987px;}
.x9{left:182.549987px;}
.xd{left:188.129987px;}
.xc{left:201.989987px;}
.xf{left:211.529987px;}
.x7{left:244.289987px;}
.x8{left:290.729987px;}
.x4{left:298.334987px;}
.x2{left:430.814987px;}
.x5{left:446.474987px;}
.xe{left:547.664987px;}
@media print{
.v6{vertical-align:-85.760000pt;}
.va{vertical-align:-13.440000pt;}
.v4{vertical-align:-12.160000pt;}
.vb{vertical-align:-8.960000pt;}
.v5{vertical-align:-7.040000pt;}
.v1{vertical-align:-5.760000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v2{vertical-align:5.760000pt;}
.v3{vertical-align:19.200000pt;}
.v9{vertical-align:26.880000pt;}
.ls9{letter-spacing:-19.360000pt;}
.ls18{letter-spacing:-2.080000pt;}
.ls1d{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.202667pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.076800pt;}
.ls19{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.290667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.398080pt;}
.ls20{letter-spacing:0.464640pt;}
.ls6{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.488320pt;}
.ls4{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.280000pt;}
.ls16{letter-spacing:3.680000pt;}
.ls17{letter-spacing:4.320000pt;}
.lsc{letter-spacing:6.791040pt;}
.ls15{letter-spacing:7.520000pt;}
.ls13{letter-spacing:8.160000pt;}
.ls14{letter-spacing:8.800000pt;}
.ls1f{letter-spacing:13.920000pt;}
.ls1e{letter-spacing:15.200000pt;}
.ls7{letter-spacing:18.400000pt;}
.ls23{letter-spacing:18.863360pt;}
.ls10{letter-spacing:18.880000pt;}
.ls12{letter-spacing:20.960000pt;}
.ls5{letter-spacing:149.402027pt;}
.ls24{letter-spacing:228.938667pt;}
.ls11{letter-spacing:302.560000pt;}
.ls8{letter-spacing:433.760000pt;}
.lsf{letter-spacing:674.560000pt;}
.ls21{letter-spacing:694.986667pt;}
.lsb{letter-spacing:752.000000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.010667pt;}
.ws0{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.517333pt;}
.ws2{word-spacing:-0.074880pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.001920pt;}
.ws4{word-spacing:807.099307pt;}
._27{margin-left:-2229.813333pt;}
._28{margin-left:-2220.728320pt;}
._39{margin-left:-1514.673920pt;}
._2a{margin-left:-1455.722880pt;}
._1f{margin-left:-1252.256640pt;}
._22{margin-left:-732.506667pt;}
._2e{margin-left:-693.194880pt;}
._21{margin-left:-685.120000pt;}
._38{margin-left:-522.560000pt;}
._23{margin-left:-499.206187pt;}
._16{margin-left:-465.230933pt;}
._1b{margin-left:-452.484480pt;}
._29{margin-left:-364.266667pt;}
._34{margin-left:-359.840000pt;}
._2f{margin-left:-321.313067pt;}
._20{margin-left:-200.967680pt;}
._25{margin-left:-190.720000pt;}
._26{margin-left:-61.378987pt;}
._1c{margin-left:-20.062933pt;}
._36{margin-left:-18.574507pt;}
._19{margin-left:-12.957440pt;}
._1d{margin-left:-8.438613pt;}
._1e{margin-left:-7.516800pt;}
._3{margin-left:-5.166720pt;}
._4{margin-left:-4.268160pt;}
._c{margin-left:-2.533973pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.904107pt;}
._2{width:1.915733pt;}
._10{width:3.359360pt;}
._e{width:4.268160pt;}
._5{width:5.241600pt;}
._15{width:6.664320pt;}
._14{width:7.712640pt;}
._32{width:8.763520pt;}
._18{width:9.656960pt;}
._11{width:10.857600pt;}
._2c{width:11.831040pt;}
._2b{width:12.879360pt;}
._6{width:13.777920pt;}
._7{width:14.676480pt;}
._12{width:16.014080pt;}
._f{width:17.521920pt;}
._2d{width:20.067840pt;}
._d{width:21.191040pt;}
._3b{width:26.058240pt;}
._35{width:27.014400pt;}
._31{width:28.753920pt;}
._30{width:30.101760pt;}
._1a{width:31.524480pt;}
._9{width:32.423040pt;}
._8{width:33.321600pt;}
._13{width:37.504640pt;}
._a{width:47.923200pt;}
._b{width:49.871147pt;}
._3c{width:51.187200pt;}
._33{width:344.177067pt;}
._17{width:465.920000pt;}
._37{width:505.170773pt;}
._3d{width:749.546667pt;}
._3a{width:1067.096533pt;}
._24{width:2004.663253pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y51{bottom:98.432000pt;}
.y2d{bottom:98.752000pt;}
.y50{bottom:119.872000pt;}
.y2c{bottom:120.192000pt;}
.y4f{bottom:141.466667pt;}
.y2b{bottom:141.626667pt;}
.y54{bottom:162.906667pt;}
.y2a{bottom:163.066667pt;}
.y53{bottom:184.346667pt;}
.y29{bottom:184.666667pt;}
.y4e{bottom:185.786667pt;}
.y4d{bottom:205.786667pt;}
.y28{bottom:206.106667pt;}
.y4c{bottom:227.226667pt;}
.y27{bottom:227.546667pt;}
.y4b{bottom:248.706667pt;}
.y26{bottom:249.026667pt;}
.y4a{bottom:270.146667pt;}
.y25{bottom:270.466667pt;}
.y49{bottom:291.746667pt;}
.y24{bottom:291.906667pt;}
.y5f{bottom:297.186667pt;}
.y48{bottom:313.186667pt;}
.y23{bottom:313.346667pt;}
.y47{bottom:334.626667pt;}
.y22{bottom:334.946667pt;}
.y5e{bottom:340.066667pt;}
.y46{bottom:356.066667pt;}
.y5d{bottom:361.506667pt;}
.y21{bottom:366.946667pt;}
.y45{bottom:377.506667pt;}
.y5c{bottom:382.946667pt;}
.y20{bottom:388.546667pt;}
.y44{bottom:398.946667pt;}
.y5b{bottom:404.546667pt;}
.y1f{bottom:409.986667pt;}
.y43{bottom:420.546667pt;}
.y5a{bottom:425.986667pt;}
.y1e{bottom:431.426667pt;}
.y42{bottom:441.986667pt;}
.y59{bottom:447.426667pt;}
.y1d{bottom:452.866667pt;}
.y41{bottom:463.426667pt;}
.y58{bottom:468.866667pt;}
.y1c{bottom:474.306667pt;}
.y40{bottom:484.866667pt;}
.y57{bottom:490.306667pt;}
.y1b{bottom:495.773333pt;}
.y3f{bottom:506.333333pt;}
.y56{bottom:511.773333pt;}
.y1a{bottom:517.373333pt;}
.y3e{bottom:527.773333pt;}
.y55{bottom:533.373333pt;}
.y19{bottom:549.373333pt;}
.y18{bottom:570.813333pt;}
.y3d{bottom:592.253333pt;}
.y17{bottom:592.413333pt;}
.y3c{bottom:613.693333pt;}
.y16{bottom:613.853333pt;}
.y3b{bottom:635.133333pt;}
.y15{bottom:635.293333pt;}
.y3a{bottom:656.573333pt;}
.y14{bottom:656.733333pt;}
.y39{bottom:678.013333pt;}
.y13{bottom:678.173333pt;}
.y38{bottom:699.613333pt;}
.y12{bottom:710.333333pt;}
.y37{bottom:721.053333pt;}
.y52{bottom:724.413333pt;}
.y11{bottom:731.773333pt;}
.y36{bottom:742.493333pt;}
.y10{bottom:753.253333pt;}
.y35{bottom:763.973333pt;}
.yf{bottom:774.853333pt;}
.y34{bottom:785.413333pt;}
.ye{bottom:796.293333pt;}
.y33{bottom:806.853333pt;}
.yd{bottom:817.733333pt;}
.y32{bottom:828.453333pt;}
.yc{bottom:839.173333pt;}
.y31{bottom:849.893333pt;}
.yb{bottom:860.613333pt;}
.y30{bottom:871.333333pt;}
.ya{bottom:882.053333pt;}
.y2f{bottom:892.773333pt;}
.y9{bottom:903.493333pt;}
.y2e{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h4{height:67.128750pt;}
.hb{height:69.870937pt;}
.hc{height:73.454062pt;}
.h2{height:73.490625pt;}
.ha{height:73.989375pt;}
.h3{height:75.465000pt;}
.h5{height:75.647813pt;}
.h9{height:77.951250pt;}
.h7{height:78.097500pt;}
.h6{height:81.407813pt;}
.h8{height:94.847812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x3{left:80.319988pt;}
.x12{left:94.751988pt;}
.x10{left:99.871988pt;}
.x6{left:101.311988pt;}
.xa{left:113.631988pt;}
.x11{left:123.871988pt;}
.xb{left:128.831988pt;}
.x9{left:162.266655pt;}
.xd{left:167.226655pt;}
.xc{left:179.546655pt;}
.xf{left:188.026655pt;}
.x7{left:217.146655pt;}
.x8{left:258.426655pt;}
.x4{left:265.186655pt;}
.x2{left:382.946655pt;}
.x5{left:396.866655pt;}
.xe{left:486.813322pt;}
}




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