
    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_208721e170331d9d8fc562d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_752780a71f234109275aa3b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943848;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_88d8dd7a1ffff51873b6d57a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.714000;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_3d341dfa4b5412f1bc471e53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945312;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_9adf32e0b811cc66e6d434ab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_14d9c2bb247e7a8b98e13a2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734375;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;}
.m1{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,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);}
.ve{vertical-align:-39.114000px;}
.v5{vertical-align:-34.020000px;}
.vd{vertical-align:-28.230000px;}
.vc{vertical-align:-26.022000px;}
.v8{vertical-align:-25.002000px;}
.v9{vertical-align:-12.408000px;}
.vb{vertical-align:-10.506000px;}
.v6{vertical-align:-7.308000px;}
.vf{vertical-align:-4.758000px;}
.v3{vertical-align:-3.744000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:12.408000px;}
.v4{vertical-align:16.158000px;}
.v7{vertical-align:18.198000px;}
.v2{vertical-align:27.660000px;}
.v1{vertical-align:52.992000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:59.105304px;}
.ls2{letter-spacing:63.426252px;}
.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;}
}
.ws10{word-spacing:-53.188986px;}
.ws0{word-spacing:-43.202028px;}
.ws7{word-spacing:-36.559014px;}
.ws11{word-spacing:-33.261606px;}
.ws6{word-spacing:-29.916000px;}
.ws1{word-spacing:-25.104510px;}
.ws4{word-spacing:-24.921690px;}
.ws8{word-spacing:-21.251994px;}
.ws3{word-spacing:-12.043872px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:2571.339846px;}
.wsf{word-spacing:2587.659846px;}
.wsa{word-spacing:2588.517846px;}
.wsb{word-spacing:2602.287846px;}
.wsc{word-spacing:2602.461846px;}
.wsd{word-spacing:2613.519846px;}
.wse{word-spacing:2631.885846px;}
.ws5{word-spacing:2782.278000px;}
._13{margin-left:-2435.034132px;}
._2{margin-left:-17.274762px;}
._16{margin-left:-13.500000px;}
._a{margin-left:-11.697300px;}
._3{margin-left:-9.662070px;}
._10{margin-left:-8.532000px;}
._15{margin-left:-7.524432px;}
._d{margin-left:-6.156000px;}
._5{margin-left:-3.953868px;}
._17{margin-left:-2.771622px;}
._0{margin-left:-1.583784px;}
._1{width:1.055856px;}
._e{width:162.852000px;}
._b{width:393.798000px;}
._4{width:490.317408px;}
._7{width:525.183408px;}
._11{width:854.694582px;}
._8{width:867.450582px;}
._6{width:902.316582px;}
._c{width:977.508000px;}
._9{width:1138.071432px;}
._f{width:1496.304000px;}
._12{width:2278.938000px;}
._14{width:2444.238000px;}
.fc7{color:rgb(42,96,153);}
.fc3{color:transparent;}
.fc5{color:rgb(255,255,0);}
.fc2{color:rgb(41,44,110);}
.fc6{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(204,204,204);}
.fs4{font-size:29.970000px;}
.fs6{font-size:48.564000px;}
.fs10{font-size:48.642000px;}
.fsb{font-size:54.084000px;}
.fse{font-size:76.722000px;}
.fsf{font-size:78.066000px;}
.fs5{font-size:84.018000px;}
.fs8{font-size:89.970000px;}
.fs3{font-size:90.630000px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:120.078000px;}
.fsa{font-size:126.030000px;}
.fsd{font-size:131.982000px;}
.fs9{font-size:144.054000px;}
.fs1{font-size:155.964000px;}
.fsc{font-size:168.036000px;}
.fs11{font-size:192.018000px;}
.fs0{font-size:263.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.yd{bottom:11.481000px;}
.yc{bottom:11.523000px;}
.y87{bottom:53.661000px;}
.y53{bottom:55.063500px;}
.y2d{bottom:60.591000px;}
.y22{bottom:62.377500px;}
.y72{bottom:64.503000px;}
.ye{bottom:64.545000px;}
.y75{bottom:65.182500px;}
.y10{bottom:69.094500px;}
.y74{bottom:73.006500px;}
.y76{bottom:73.687500px;}
.y6f{bottom:87.804000px;}
.y2c{bottom:90.822000px;}
.y30{bottom:92.439000px;}
.y21{bottom:92.608500px;}
.yb{bottom:100.585500px;}
.y71{bottom:101.410500px;}
.y4e{bottom:101.622000px;}
.ya{bottom:108.595500px;}
.y73{bottom:109.914000px;}
.y86{bottom:117.184500px;}
.y6e{bottom:118.035000px;}
.y44{bottom:131.683500px;}
.y47{bottom:140.188500px;}
.y29{bottom:146.268000px;}
.y78{bottom:156.175500px;}
.y43{bottom:161.916000px;}
.y23{bottom:162.553500px;}
.y24{bottom:164.338500px;}
.y7a{bottom:164.679000px;}
.y46{bottom:170.419500px;}
.y9{bottom:173.949000px;}
.y4c{bottom:177.138000px;}
.y85{bottom:186.619500px;}
.y42{bottom:192.147000px;}
.y77{bottom:193.083000px;}
.y45{bottom:200.650500px;}
.y79{bottom:201.586500px;}
.y14{bottom:236.622000px;}
.y84{bottom:236.793000px;}
.y8{bottom:239.301000px;}
.y16{bottom:245.127000px;}
.y50{bottom:248.740500px;}
.y41{bottom:256.522500px;}
.y13{bottom:261.624000px;}
.y15{bottom:270.127500px;}
.y51{bottom:271.446000px;}
.y83{bottom:286.966500px;}
.y39{bottom:322.980000px;}
.y40{bottom:331.483500px;}
.y82{bottom:337.138500px;}
.y1e{bottom:340.923000px;}
.y4d{bottom:345.813000px;}
.y7{bottom:346.239000px;}
.y1f{bottom:349.428000px;}
.y20{bottom:349.597500px;}
.y38{bottom:357.718500px;}
.y3f{bottom:366.222000px;}
.y6{bottom:381.699000px;}
.y81{bottom:387.312000px;}
.y37{bottom:392.457000px;}
.y4f{bottom:392.925000px;}
.y3e{bottom:400.960500px;}
.y25{bottom:426.175500px;}
.y36{bottom:427.195500px;}
.y11{bottom:431.277000px;}
.y26{bottom:434.679000px;}
.y3d{bottom:435.699000px;}
.y5d{bottom:436.083000px;}
.y80{bottom:437.485500px;}
.y12{bottom:439.782000px;}
.y28{bottom:441.099000px;}
.y35{bottom:461.934000px;}
.y5c{bottom:466.314000px;}
.y3c{bottom:470.439000px;}
.y3{bottom:483.661500px;}
.y52{bottom:485.958000px;}
.y7f{bottom:487.659000px;}
.y34{bottom:490.422000px;}
.y5{bottom:492.294000px;}
.y5b{bottom:496.545000px;}
.y3b{bottom:498.927000px;}
.y1c{bottom:522.312000px;}
.y1d{bottom:530.944500px;}
.y33{bottom:531.411000px;}
.y27{bottom:536.344500px;}
.y7e{bottom:537.832500px;}
.y63{bottom:539.022000px;}
.y3a{bottom:539.916000px;}
.y56{bottom:543.274500px;}
.y64{bottom:547.527000px;}
.y57{bottom:551.778000px;}
.y2{bottom:561.048000px;}
.yf{bottom:565.299000px;}
.y4{bottom:569.679000px;}
.y4a{bottom:593.235000px;}
.y7b{bottom:601.356000px;}
.y4b{bottom:601.738500px;}
.y2e{bottom:603.270000px;}
.y2a{bottom:603.567000px;}
.y17{bottom:606.841500px;}
.y59{bottom:607.564500px;}
.y1a{bottom:607.819500px;}
.y7d{bottom:608.074500px;}
.y48{bottom:608.584500px;}
.y7c{bottom:609.861000px;}
.y61{bottom:610.668000px;}
.y2f{bottom:611.773500px;}
.y2b{bottom:612.072000px;}
.y54{bottom:614.962500px;}
.y18{bottom:615.345000px;}
.y5a{bottom:616.068000px;}
.y1b{bottom:616.323000px;}
.y6c{bottom:616.749000px;}
.y49{bottom:617.088000px;}
.y62{bottom:619.171500px;}
.y6a{bottom:619.980000px;}
.y31{bottom:621.468000px;}
.y65{bottom:621.553500px;}
.y55{bottom:623.466000px;}
.y67{bottom:624.274500px;}
.y6d{bottom:625.252500px;}
.y5e{bottom:625.848000px;}
.y19{bottom:627.888000px;}
.y6b{bottom:628.483500px;}
.y32{bottom:629.971500px;}
.y66{bottom:630.057000px;}
.y70{bottom:631.162500px;}
.y69{bottom:631.503000px;}
.y68{bottom:632.778000px;}
.y5f{bottom:634.351500px;}
.y60{bottom:635.797500px;}
.y58{bottom:639.751500px;}
.h7{height:21.398580px;}
.h8{height:37.927500px;}
.h18{height:53.501437px;}
.h12{height:54.521438px;}
.h13{height:54.527437px;}
.h17{height:57.482191px;}
.he{height:61.864816px;}
.hc{height:66.247441px;}
.h9{height:67.403112px;}
.hb{height:79.207031px;}
.ha{height:79.523438px;}
.h5{height:88.416809px;}
.h10{height:90.413437px;}
.h11{height:92.799434px;}
.h15{height:96.795393px;}
.h16{height:97.182059px;}
.hd{height:105.648979px;}
.h19{height:106.071012px;}
.hf{height:114.383754px;}
.h4{height:114.840680px;}
.h6{height:119.725418px;}
.h14{height:123.237340px;}
.h1a{height:140.825701px;}
.h3{height:211.764088px;}
.h2{height:669.556500px;}
.h0{height:669.600000px;}
.h1{height:669.750000px;}
.w2{width:1190.125500px;}
.w0{width:1190.168504px;}
.w1{width:1190.250000px;}
.x0{left:0.000000px;}
.x28{left:9.949500px;}
.x3c{left:13.180500px;}
.x42{left:14.881500px;}
.xb{left:16.753500px;}
.x27{left:18.453000px;}
.xe{left:20.622000px;}
.x3b{left:21.685500px;}
.x3f{left:23.046000px;}
.x14{left:25.171500px;}
.x36{left:27.255000px;}
.x29{left:28.743000px;}
.x39{left:30.019500px;}
.x20{left:31.507500px;}
.x13{left:33.675000px;}
.x2d{left:37.246500px;}
.x1d{left:38.736000px;}
.x1f{left:40.011000px;}
.x21{left:41.413500px;}
.x1c{left:45.028500px;}
.x49{left:52.341000px;}
.x2a{left:54.255000px;}
.x26{left:59.569500px;}
.x3a{left:62.334000px;}
.x2c{left:63.609000px;}
.x17{left:74.622000px;}
.x24{left:78.874500px;}
.x16{left:83.125500px;}
.x23{left:87.378000px;}
.x12{left:89.547000px;}
.x38{left:90.991500px;}
.x41{left:95.286000px;}
.x11{left:98.050500px;}
.x37{left:99.496500px;}
.x40{left:103.791000px;}
.x19{left:129.387000px;}
.x18{left:137.892000px;}
.x10{left:160.341000px;}
.xf{left:168.846000px;}
.xd{left:173.013000px;}
.x2f{left:183.982500px;}
.x3{left:187.470000px;}
.x1{left:196.101000px;}
.x7{left:206.560500px;}
.xa{left:265.444500px;}
.x32{left:272.806500px;}
.x4{left:283.947000px;}
.x2{left:292.578000px;}
.x1e{left:390.756000px;}
.x8{left:410.569500px;}
.x9{left:444.246000px;}
.x1a{left:453.259500px;}
.x4a{left:467.886000px;}
.x5{left:469.246500px;}
.x2b{left:471.330000px;}
.x34{left:484.257000px;}
.x6{left:486.553500px;}
.x30{left:530.475000px;}
.x25{left:578.565000px;}
.x15{left:643.024500px;}
.x4b{left:658.290000px;}
.x48{left:679.294500px;}
.x47{left:687.798000px;}
.x33{left:698.343000px;}
.x2e{left:708.250500px;}
.x3d{left:764.547000px;}
.x3e{left:768.841500px;}
.x45{left:772.582500px;}
.x43{left:774.028500px;}
.x44{left:775.092000px;}
.x31{left:779.938500px;}
.x46{left:850.734000px;}
.x35{left:877.096500px;}
.x1b{left:923.059500px;}
.xc{left:1005.888000px;}
.x22{left:1059.973500px;}
@media print{
.ve{vertical-align:-34.768000pt;}
.v5{vertical-align:-30.240000pt;}
.vd{vertical-align:-25.093333pt;}
.vc{vertical-align:-23.130667pt;}
.v8{vertical-align:-22.224000pt;}
.v9{vertical-align:-11.029333pt;}
.vb{vertical-align:-9.338667pt;}
.v6{vertical-align:-6.496000pt;}
.vf{vertical-align:-4.229333pt;}
.v3{vertical-align:-3.328000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:11.029333pt;}
.v4{vertical-align:14.362667pt;}
.v7{vertical-align:16.176000pt;}
.v2{vertical-align:24.586667pt;}
.v1{vertical-align:47.104000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:52.538048pt;}
.ls2{letter-spacing:56.378891pt;}
.ws10{word-spacing:-47.279099pt;}
.ws0{word-spacing:-38.401803pt;}
.ws7{word-spacing:-32.496901pt;}
.ws11{word-spacing:-29.565872pt;}
.ws6{word-spacing:-26.592000pt;}
.ws1{word-spacing:-22.315120pt;}
.ws4{word-spacing:-22.152613pt;}
.ws8{word-spacing:-18.890661pt;}
.ws3{word-spacing:-10.705664pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:2285.635419pt;}
.wsf{word-spacing:2300.142085pt;}
.wsa{word-spacing:2300.904752pt;}
.wsb{word-spacing:2313.144752pt;}
.wsc{word-spacing:2313.299419pt;}
.wsd{word-spacing:2323.128752pt;}
.wse{word-spacing:2339.454085pt;}
.ws5{word-spacing:2473.136000pt;}
._13{margin-left:-2164.474784pt;}
._2{margin-left:-15.355344pt;}
._16{margin-left:-12.000000pt;}
._a{margin-left:-10.397600pt;}
._3{margin-left:-8.588507pt;}
._10{margin-left:-7.584000pt;}
._15{margin-left:-6.688384pt;}
._d{margin-left:-5.472000pt;}
._5{margin-left:-3.514549pt;}
._17{margin-left:-2.463664pt;}
._0{margin-left:-1.407808pt;}
._1{width:0.938539pt;}
._e{width:144.757333pt;}
._b{width:350.042667pt;}
._4{width:435.837696pt;}
._7{width:466.829696pt;}
._11{width:759.728517pt;}
._8{width:771.067184pt;}
._6{width:802.059184pt;}
._c{width:868.896000pt;}
._9{width:1011.619051pt;}
._f{width:1330.048000pt;}
._12{width:2025.722667pt;}
._14{width:2172.656000pt;}
.fs4{font-size:26.640000pt;}
.fs6{font-size:43.168000pt;}
.fs10{font-size:43.237333pt;}
.fsb{font-size:48.074667pt;}
.fse{font-size:68.197333pt;}
.fsf{font-size:69.392000pt;}
.fs5{font-size:74.682667pt;}
.fs8{font-size:79.973333pt;}
.fs3{font-size:80.560000pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:106.736000pt;}
.fsa{font-size:112.026667pt;}
.fsd{font-size:117.317333pt;}
.fs9{font-size:128.048000pt;}
.fs1{font-size:138.634667pt;}
.fsc{font-size:149.365333pt;}
.fs11{font-size:170.682667pt;}
.fs0{font-size:234.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.yd{bottom:10.205333pt;}
.yc{bottom:10.242667pt;}
.y87{bottom:47.698667pt;}
.y53{bottom:48.945333pt;}
.y2d{bottom:53.858667pt;}
.y22{bottom:55.446667pt;}
.y72{bottom:57.336000pt;}
.ye{bottom:57.373333pt;}
.y75{bottom:57.940000pt;}
.y10{bottom:61.417333pt;}
.y74{bottom:64.894667pt;}
.y76{bottom:65.500000pt;}
.y6f{bottom:78.048000pt;}
.y2c{bottom:80.730667pt;}
.y30{bottom:82.168000pt;}
.y21{bottom:82.318667pt;}
.yb{bottom:89.409333pt;}
.y71{bottom:90.142667pt;}
.y4e{bottom:90.330667pt;}
.ya{bottom:96.529333pt;}
.y73{bottom:97.701333pt;}
.y86{bottom:104.164000pt;}
.y6e{bottom:104.920000pt;}
.y44{bottom:117.052000pt;}
.y47{bottom:124.612000pt;}
.y29{bottom:130.016000pt;}
.y78{bottom:138.822667pt;}
.y43{bottom:143.925333pt;}
.y23{bottom:144.492000pt;}
.y24{bottom:146.078667pt;}
.y7a{bottom:146.381333pt;}
.y46{bottom:151.484000pt;}
.y9{bottom:154.621333pt;}
.y4c{bottom:157.456000pt;}
.y85{bottom:165.884000pt;}
.y42{bottom:170.797333pt;}
.y77{bottom:171.629333pt;}
.y45{bottom:178.356000pt;}
.y79{bottom:179.188000pt;}
.y14{bottom:210.330667pt;}
.y84{bottom:210.482667pt;}
.y8{bottom:212.712000pt;}
.y16{bottom:217.890667pt;}
.y50{bottom:221.102667pt;}
.y41{bottom:228.020000pt;}
.y13{bottom:232.554667pt;}
.y15{bottom:240.113333pt;}
.y51{bottom:241.285333pt;}
.y83{bottom:255.081333pt;}
.y39{bottom:287.093333pt;}
.y40{bottom:294.652000pt;}
.y82{bottom:299.678667pt;}
.y1e{bottom:303.042667pt;}
.y4d{bottom:307.389333pt;}
.y7{bottom:307.768000pt;}
.y1f{bottom:310.602667pt;}
.y20{bottom:310.753333pt;}
.y38{bottom:317.972000pt;}
.y3f{bottom:325.530667pt;}
.y6{bottom:339.288000pt;}
.y81{bottom:344.277333pt;}
.y37{bottom:348.850667pt;}
.y4f{bottom:349.266667pt;}
.y3e{bottom:356.409333pt;}
.y25{bottom:378.822667pt;}
.y36{bottom:379.729333pt;}
.y11{bottom:383.357333pt;}
.y26{bottom:386.381333pt;}
.y3d{bottom:387.288000pt;}
.y5d{bottom:387.629333pt;}
.y80{bottom:388.876000pt;}
.y12{bottom:390.917333pt;}
.y28{bottom:392.088000pt;}
.y35{bottom:410.608000pt;}
.y5c{bottom:414.501333pt;}
.y3c{bottom:418.168000pt;}
.y3{bottom:429.921333pt;}
.y52{bottom:431.962667pt;}
.y7f{bottom:433.474667pt;}
.y34{bottom:435.930667pt;}
.y5{bottom:437.594667pt;}
.y5b{bottom:441.373333pt;}
.y3b{bottom:443.490667pt;}
.y1c{bottom:464.277333pt;}
.y1d{bottom:471.950667pt;}
.y33{bottom:472.365333pt;}
.y27{bottom:476.750667pt;}
.y7e{bottom:478.073333pt;}
.y63{bottom:479.130667pt;}
.y3a{bottom:479.925333pt;}
.y56{bottom:482.910667pt;}
.y64{bottom:486.690667pt;}
.y57{bottom:490.469333pt;}
.y2{bottom:498.709333pt;}
.yf{bottom:502.488000pt;}
.y4{bottom:506.381333pt;}
.y4a{bottom:527.320000pt;}
.y7b{bottom:534.538667pt;}
.y4b{bottom:534.878667pt;}
.y2e{bottom:536.240000pt;}
.y2a{bottom:536.504000pt;}
.y17{bottom:539.414667pt;}
.y59{bottom:540.057333pt;}
.y1a{bottom:540.284000pt;}
.y7d{bottom:540.510667pt;}
.y48{bottom:540.964000pt;}
.y7c{bottom:542.098667pt;}
.y61{bottom:542.816000pt;}
.y2f{bottom:543.798667pt;}
.y2b{bottom:544.064000pt;}
.y54{bottom:546.633333pt;}
.y18{bottom:546.973333pt;}
.y5a{bottom:547.616000pt;}
.y1b{bottom:547.842667pt;}
.y6c{bottom:548.221333pt;}
.y49{bottom:548.522667pt;}
.y62{bottom:550.374667pt;}
.y6a{bottom:551.093333pt;}
.y31{bottom:552.416000pt;}
.y65{bottom:552.492000pt;}
.y55{bottom:554.192000pt;}
.y67{bottom:554.910667pt;}
.y6d{bottom:555.780000pt;}
.y5e{bottom:556.309333pt;}
.y19{bottom:558.122667pt;}
.y6b{bottom:558.652000pt;}
.y32{bottom:559.974667pt;}
.y66{bottom:560.050667pt;}
.y70{bottom:561.033333pt;}
.y69{bottom:561.336000pt;}
.y68{bottom:562.469333pt;}
.y5f{bottom:563.868000pt;}
.y60{bottom:565.153333pt;}
.y58{bottom:568.668000pt;}
.h7{height:19.020960pt;}
.h8{height:33.713333pt;}
.h18{height:47.556833pt;}
.h12{height:48.463500pt;}
.h13{height:48.468833pt;}
.h17{height:51.095281pt;}
.he{height:54.990948pt;}
.hc{height:58.886615pt;}
.h9{height:59.913878pt;}
.hb{height:70.406250pt;}
.ha{height:70.687500pt;}
.h5{height:78.592719pt;}
.h10{height:80.367500pt;}
.h11{height:82.488385pt;}
.h15{height:86.040349pt;}
.h16{height:86.384052pt;}
.hd{height:93.910203pt;}
.h19{height:94.285344pt;}
.hf{height:101.674448pt;}
.h4{height:102.080604pt;}
.h6{height:106.422594pt;}
.h14{height:109.544302pt;}
.h1a{height:125.178401pt;}
.h3{height:188.234745pt;}
.h2{height:595.161333pt;}
.h0{height:595.200000pt;}
.h1{height:595.333333pt;}
.w2{width:1057.889333pt;}
.w0{width:1057.927559pt;}
.w1{width:1058.000000pt;}
.x0{left:0.000000pt;}
.x28{left:8.844000pt;}
.x3c{left:11.716000pt;}
.x42{left:13.228000pt;}
.xb{left:14.892000pt;}
.x27{left:16.402667pt;}
.xe{left:18.330667pt;}
.x3b{left:19.276000pt;}
.x3f{left:20.485333pt;}
.x14{left:22.374667pt;}
.x36{left:24.226667pt;}
.x29{left:25.549333pt;}
.x39{left:26.684000pt;}
.x20{left:28.006667pt;}
.x13{left:29.933333pt;}
.x2d{left:33.108000pt;}
.x1d{left:34.432000pt;}
.x1f{left:35.565333pt;}
.x21{left:36.812000pt;}
.x1c{left:40.025333pt;}
.x49{left:46.525333pt;}
.x2a{left:48.226667pt;}
.x26{left:52.950667pt;}
.x3a{left:55.408000pt;}
.x2c{left:56.541333pt;}
.x17{left:66.330667pt;}
.x24{left:70.110667pt;}
.x16{left:73.889333pt;}
.x23{left:77.669333pt;}
.x12{left:79.597333pt;}
.x38{left:80.881333pt;}
.x41{left:84.698667pt;}
.x11{left:87.156000pt;}
.x37{left:88.441333pt;}
.x40{left:92.258667pt;}
.x19{left:115.010667pt;}
.x18{left:122.570667pt;}
.x10{left:142.525333pt;}
.xf{left:150.085333pt;}
.xd{left:153.789333pt;}
.x2f{left:163.540000pt;}
.x3{left:166.640000pt;}
.x1{left:174.312000pt;}
.x7{left:183.609333pt;}
.xa{left:235.950667pt;}
.x32{left:242.494667pt;}
.x4{left:252.397333pt;}
.x2{left:260.069333pt;}
.x1e{left:347.338667pt;}
.x8{left:364.950667pt;}
.x9{left:394.885333pt;}
.x1a{left:402.897333pt;}
.x4a{left:415.898667pt;}
.x5{left:417.108000pt;}
.x2b{left:418.960000pt;}
.x34{left:430.450667pt;}
.x6{left:432.492000pt;}
.x30{left:471.533333pt;}
.x25{left:514.280000pt;}
.x15{left:571.577333pt;}
.x4b{left:585.146667pt;}
.x48{left:603.817333pt;}
.x47{left:611.376000pt;}
.x33{left:620.749333pt;}
.x2e{left:629.556000pt;}
.x3d{left:679.597333pt;}
.x3e{left:683.414667pt;}
.x45{left:686.740000pt;}
.x43{left:688.025333pt;}
.x44{left:688.970667pt;}
.x31{left:693.278667pt;}
.x46{left:756.208000pt;}
.x35{left:779.641333pt;}
.x1b{left:820.497333pt;}
.xc{left:894.122667pt;}
.x22{left:942.198667pt;}
}




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