
    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_d9ed93d51dc82c4eae51b5c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_bd69e11e8f9164956fceea1d.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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_b7b7a653023502ac9a64d29e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_47374aa9a485df6f49d68c76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.924316;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_cd5db6014447077811dfbe7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_f9a632a01371ee35b1efe239.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_7ee02def2ce415481dff6ce4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b886f0056cfc7d34d2cb9a0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_a091ec481759cc30c88ed1b5.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:50.400000px;}
.v4{vertical-align:58.740000px;}
.v3{vertical-align:75.600000px;}
.v7{vertical-align:93.060000px;}
.v2{vertical-align:96.600000px;}
.v6{vertical-align:126.000000px;}
.ls4{letter-spacing:-2.880000px;}
.ls1{letter-spacing:-0.298200px;}
.ls3{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.131400px;}
.ls2{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.360000px;}
.ls7{letter-spacing:6.480000px;}
.ls8{letter-spacing:19.440000px;}
.ls5{letter-spacing:125.621280px;}
.ls6{letter-spacing:138.384000px;}
.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;}
}
.wsd{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.120000px;}
.ws0{word-spacing:-13.447440px;}
.ws5{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:118.778160px;}
.ws7{word-spacing:139.778160px;}
.wsf{word-spacing:152.678160px;}
.ws9{word-spacing:159.578160px;}
.wse{word-spacing:173.678160px;}
.ws10{word-spacing:193.418160px;}
.wsa{word-spacing:235.607280px;}
.wsb{word-spacing:235.667280px;}
.wsc{word-spacing:235.727280px;}
.ws11{word-spacing:364.432560px;}
._11{margin-left:-9.504000px;}
._7{margin-left:-6.912000px;}
._2{margin-left:-4.320000px;}
._1{margin-left:-2.448000px;}
._3{margin-left:-1.008000px;}
._0{width:1.544400px;}
._4{width:2.928000px;}
._5{width:4.368000px;}
._6{width:5.976000px;}
._c{width:7.056000px;}
._e{width:8.640000px;}
._10{width:9.831600px;}
._f{width:10.944000px;}
._9{width:12.888000px;}
._8{width:13.968000px;}
._d{width:15.816000px;}
._a{width:19.152000px;}
._b{width:20.304000px;}
._13{width:95.922960px;}
._12{width:117.702960px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y37{bottom:7.020000px;}
.y39{bottom:7.200000px;}
.y3f{bottom:7.245000px;}
.y78{bottom:10.950000px;}
.y76{bottom:22.785000px;}
.y38{bottom:30.960000px;}
.y5c{bottom:31.140000px;}
.y35{bottom:31.680000px;}
.y75{bottom:46.950000px;}
.y5b{bottom:55.290000px;}
.y34{bottom:55.440000px;}
.y7{bottom:57.636000px;}
.y6a{bottom:73.155000px;}
.y55{bottom:79.485000px;}
.y6b{bottom:100.230000px;}
.y56{bottom:121.500000px;}
.y32{bottom:123.336000px;}
.y6c{bottom:127.335000px;}
.y45{bottom:141.156000px;}
.y31{bottom:147.096000px;}
.y6d{bottom:154.440000px;}
.y57{bottom:163.515000px;}
.y44{bottom:164.910000px;}
.y30{bottom:171.030000px;}
.y7b{bottom:178.845000px;}
.y6e{bottom:181.545000px;}
.y5d{bottom:185.550000px;}
.y43{bottom:188.850000px;}
.y2f{bottom:194.790000px;}
.y58{bottom:205.530000px;}
.y6f{bottom:208.620000px;}
.y42{bottom:212.610000px;}
.y2e{bottom:218.550000px;}
.y7a{bottom:233.070000px;}
.y70{bottom:235.725000px;}
.y41{bottom:236.370000px;}
.y2d{bottom:242.310000px;}
.y59{bottom:247.530000px;}
.y40{bottom:260.130000px;}
.y71{bottom:262.830000px;}
.y2c{bottom:266.250000px;}
.y3e{bottom:277.590000px;}
.y5a{bottom:289.545000px;}
.y72{bottom:289.950000px;}
.y2b{bottom:290.055000px;}
.y3d{bottom:302.295000px;}
.y2a{bottom:313.815000px;}
.y73{bottom:317.010000px;}
.y3c{bottom:326.775000px;}
.y29{bottom:337.575000px;}
.y79{bottom:341.460000px;}
.y74{bottom:344.130000px;}
.y3b{bottom:351.435000px;}
.y28{bottom:361.515000px;}
.y3a{bottom:375.915000px;}
.y27{bottom:385.275000px;}
.y33{bottom:400.395000px;}
.y26{bottom:409.035000px;}
.y25{bottom:432.795000px;}
.y36{bottom:448.815000px;}
.y24{bottom:456.735000px;}
.y53{bottom:468.615000px;}
.y68{bottom:478.695000px;}
.y23{bottom:480.495000px;}
.y52{bottom:492.375000px;}
.y67{bottom:502.455000px;}
.y22{bottom:504.255000px;}
.y51{bottom:516.135000px;}
.y66{bottom:526.215000px;}
.y21{bottom:528.015000px;}
.y50{bottom:540.075000px;}
.y65{bottom:550.155000px;}
.y20{bottom:551.775000px;}
.y4f{bottom:563.835000px;}
.y64{bottom:573.945000px;}
.y1f{bottom:575.745000px;}
.y4e{bottom:587.625000px;}
.y1e{bottom:599.505000px;}
.y63{bottom:600.585000px;}
.y4d{bottom:611.385000px;}
.y1d{bottom:623.265000px;}
.y62{bottom:624.345000px;}
.y4c{bottom:635.325000px;}
.y1c{bottom:647.025000px;}
.y61{bottom:648.105000px;}
.y4b{bottom:659.085000px;}
.y1b{bottom:670.965000px;}
.y60{bottom:671.865000px;}
.y4a{bottom:682.845000px;}
.y1a{bottom:694.725000px;}
.y5f{bottom:695.805000px;}
.y49{bottom:706.605000px;}
.y19{bottom:718.485000px;}
.y5e{bottom:719.565000px;}
.y48{bottom:730.365000px;}
.y69{bottom:740.520000px;}
.y18{bottom:742.245000px;}
.y77{bottom:751.500000px;}
.y47{bottom:754.305000px;}
.y17{bottom:766.185000px;}
.y46{bottom:778.065000px;}
.y16{bottom:789.945000px;}
.y54{bottom:799.920000px;}
.y15{bottom:813.705000px;}
.y14{bottom:837.465000px;}
.y13{bottom:861.450000px;}
.y12{bottom:885.210000px;}
.y11{bottom:908.970000px;}
.y10{bottom:932.730000px;}
.yf{bottom:956.670000px;}
.ye{bottom:980.430000px;}
.yd{bottom:1004.190000px;}
.yc{bottom:1027.950000px;}
.yb{bottom:1051.710000px;}
.ya{bottom:1075.650000px;}
.y9{bottom:1099.410000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.ha{height:23.760000px;}
.hc{height:23.940000px;}
.hd{height:23.976000px;}
.hb{height:47.700000px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h19{height:58.819922px;}
.h15{height:59.439023px;}
.h1a{height:59.582250px;}
.h2{height:61.189805px;}
.h18{height:61.200000px;}
.h4{height:65.884219px;}
.h8{height:70.664062px;}
.h9{height:72.180000px;}
.h5{height:72.562500px;}
.h13{height:74.953125px;}
.hf{height:82.676953px;}
.h3{height:84.898125px;}
.h12{height:86.585445px;}
.h17{height:175.736953px;}
.h10{height:179.276953px;}
.h16{height:179.336953px;}
.h11{height:208.676953px;}
.he{height:340.020000px;}
.h14{height:399.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:51.120000px;}
.w8{width:52.236000px;}
.w9{width:59.220000px;}
.w7{width:59.400000px;}
.wa{width:62.820000px;}
.wd{width:64.116000px;}
.wc{width:74.520000px;}
.wb{width:82.296000px;}
.w3{width:93.996000px;}
.w5{width:124.200000px;}
.w10{width:494.460000px;}
.w4{width:510.765000px;}
.we{width:695.700000px;}
.wf{width:727.200000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x12{left:15.480000px;}
.x11{left:17.640000px;}
.xd{left:20.376000px;}
.x13{left:22.860000px;}
.x1c{left:29.520000px;}
.x21{left:34.200000px;}
.xe{left:35.496000px;}
.x1d{left:37.620000px;}
.x20{left:49.968000px;}
.x29{left:53.136000px;}
.xc{left:72.540000px;}
.x9{left:84.959987px;}
.x22{left:94.245000px;}
.x1f{left:97.560000px;}
.x2a{left:102.450000px;}
.x23{left:107.970000px;}
.x2b{left:116.175000px;}
.x27{left:120.705000px;}
.x31{left:140.835000px;}
.x5{left:167.609987px;}
.xf{left:192.105000px;}
.x24{left:209.055000px;}
.x14{left:219.090000px;}
.x2c{left:225.750000px;}
.x32{left:250.410000px;}
.x16{left:279.210000px;}
.x1e{left:296.534987px;}
.x7{left:310.214987px;}
.x30{left:312.330000px;}
.x2f{left:317.700000px;}
.x17{left:332.175000px;}
.x2d{left:335.340000px;}
.x3{left:350.534987px;}
.x33{left:360.000000px;}
.x28{left:377.354987px;}
.x8{left:390.494987px;}
.x18{left:392.115000px;}
.x25{left:395.820000px;}
.x2e{left:429.450000px;}
.x4{left:433.874987px;}
.x6{left:446.474987px;}
.x19{left:455.655000px;}
.x2{left:457.094987px;}
.x26{left:496.905000px;}
.x1{left:510.404987px;}
.x1a{left:538.665000px;}
.x34{left:579.165000px;}
.x1b{left:613.905000px;}
.x10{left:678.750000px;}
.xb{left:747.689987px;}
.xa{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:44.800000pt;}
.v4{vertical-align:52.213333pt;}
.v3{vertical-align:67.200000pt;}
.v7{vertical-align:82.720000pt;}
.v2{vertical-align:85.866667pt;}
.v6{vertical-align:112.000000pt;}
.ls4{letter-spacing:-2.560000pt;}
.ls1{letter-spacing:-0.265067pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.116800pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.320000pt;}
.ls7{letter-spacing:5.760000pt;}
.ls8{letter-spacing:17.280000pt;}
.ls5{letter-spacing:111.663360pt;}
.ls6{letter-spacing:123.008000pt;}
.wsd{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws5{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:105.580587pt;}
.ws7{word-spacing:124.247253pt;}
.wsf{word-spacing:135.713920pt;}
.ws9{word-spacing:141.847253pt;}
.wse{word-spacing:154.380587pt;}
.ws10{word-spacing:171.927253pt;}
.wsa{word-spacing:209.428693pt;}
.wsb{word-spacing:209.482027pt;}
.wsc{word-spacing:209.535360pt;}
.ws11{word-spacing:323.940053pt;}
._11{margin-left:-8.448000pt;}
._7{margin-left:-6.144000pt;}
._2{margin-left:-3.840000pt;}
._1{margin-left:-2.176000pt;}
._3{margin-left:-0.896000pt;}
._0{width:1.372800pt;}
._4{width:2.602667pt;}
._5{width:3.882667pt;}
._6{width:5.312000pt;}
._c{width:6.272000pt;}
._e{width:7.680000pt;}
._10{width:8.739200pt;}
._f{width:9.728000pt;}
._9{width:11.456000pt;}
._8{width:12.416000pt;}
._d{width:14.058667pt;}
._a{width:17.024000pt;}
._b{width:18.048000pt;}
._13{width:85.264853pt;}
._12{width:104.624853pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.240000pt;}
.y39{bottom:6.400000pt;}
.y3f{bottom:6.440000pt;}
.y78{bottom:9.733333pt;}
.y76{bottom:20.253333pt;}
.y38{bottom:27.520000pt;}
.y5c{bottom:27.680000pt;}
.y35{bottom:28.160000pt;}
.y75{bottom:41.733333pt;}
.y5b{bottom:49.146667pt;}
.y34{bottom:49.280000pt;}
.y7{bottom:51.232000pt;}
.y6a{bottom:65.026667pt;}
.y55{bottom:70.653333pt;}
.y6b{bottom:89.093333pt;}
.y56{bottom:108.000000pt;}
.y32{bottom:109.632000pt;}
.y6c{bottom:113.186667pt;}
.y45{bottom:125.472000pt;}
.y31{bottom:130.752000pt;}
.y6d{bottom:137.280000pt;}
.y57{bottom:145.346667pt;}
.y44{bottom:146.586667pt;}
.y30{bottom:152.026667pt;}
.y7b{bottom:158.973333pt;}
.y6e{bottom:161.373333pt;}
.y5d{bottom:164.933333pt;}
.y43{bottom:167.866667pt;}
.y2f{bottom:173.146667pt;}
.y58{bottom:182.693333pt;}
.y6f{bottom:185.440000pt;}
.y42{bottom:188.986667pt;}
.y2e{bottom:194.266667pt;}
.y7a{bottom:207.173333pt;}
.y70{bottom:209.533333pt;}
.y41{bottom:210.106667pt;}
.y2d{bottom:215.386667pt;}
.y59{bottom:220.026667pt;}
.y40{bottom:231.226667pt;}
.y71{bottom:233.626667pt;}
.y2c{bottom:236.666667pt;}
.y3e{bottom:246.746667pt;}
.y5a{bottom:257.373333pt;}
.y72{bottom:257.733333pt;}
.y2b{bottom:257.826667pt;}
.y3d{bottom:268.706667pt;}
.y2a{bottom:278.946667pt;}
.y73{bottom:281.786667pt;}
.y3c{bottom:290.466667pt;}
.y29{bottom:300.066667pt;}
.y79{bottom:303.520000pt;}
.y74{bottom:305.893333pt;}
.y3b{bottom:312.386667pt;}
.y28{bottom:321.346667pt;}
.y3a{bottom:334.146667pt;}
.y27{bottom:342.466667pt;}
.y33{bottom:355.906667pt;}
.y26{bottom:363.586667pt;}
.y25{bottom:384.706667pt;}
.y36{bottom:398.946667pt;}
.y24{bottom:405.986667pt;}
.y53{bottom:416.546667pt;}
.y68{bottom:425.506667pt;}
.y23{bottom:427.106667pt;}
.y52{bottom:437.666667pt;}
.y67{bottom:446.626667pt;}
.y22{bottom:448.226667pt;}
.y51{bottom:458.786667pt;}
.y66{bottom:467.746667pt;}
.y21{bottom:469.346667pt;}
.y50{bottom:480.066667pt;}
.y65{bottom:489.026667pt;}
.y20{bottom:490.466667pt;}
.y4f{bottom:501.186667pt;}
.y64{bottom:510.173333pt;}
.y1f{bottom:511.773333pt;}
.y4e{bottom:522.333333pt;}
.y1e{bottom:532.893333pt;}
.y63{bottom:533.853333pt;}
.y4d{bottom:543.453333pt;}
.y1d{bottom:554.013333pt;}
.y62{bottom:554.973333pt;}
.y4c{bottom:564.733333pt;}
.y1c{bottom:575.133333pt;}
.y61{bottom:576.093333pt;}
.y4b{bottom:585.853333pt;}
.y1b{bottom:596.413333pt;}
.y60{bottom:597.213333pt;}
.y4a{bottom:606.973333pt;}
.y1a{bottom:617.533333pt;}
.y5f{bottom:618.493333pt;}
.y49{bottom:628.093333pt;}
.y19{bottom:638.653333pt;}
.y5e{bottom:639.613333pt;}
.y48{bottom:649.213333pt;}
.y69{bottom:658.240000pt;}
.y18{bottom:659.773333pt;}
.y77{bottom:668.000000pt;}
.y47{bottom:670.493333pt;}
.y17{bottom:681.053333pt;}
.y46{bottom:691.613333pt;}
.y16{bottom:702.173333pt;}
.y54{bottom:711.040000pt;}
.y15{bottom:723.293333pt;}
.y14{bottom:744.413333pt;}
.y13{bottom:765.733333pt;}
.y12{bottom:786.853333pt;}
.y11{bottom:807.973333pt;}
.y10{bottom:829.093333pt;}
.yf{bottom:850.373333pt;}
.ye{bottom:871.493333pt;}
.yd{bottom:892.613333pt;}
.yc{bottom:913.733333pt;}
.yb{bottom:934.853333pt;}
.ya{bottom:956.133333pt;}
.y9{bottom:977.253333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.ha{height:21.120000pt;}
.hc{height:21.280000pt;}
.hd{height:21.312000pt;}
.hb{height:42.400000pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h19{height:52.284375pt;}
.h15{height:52.834688pt;}
.h1a{height:52.962000pt;}
.h2{height:54.390938pt;}
.h18{height:54.400000pt;}
.h4{height:58.563750pt;}
.h8{height:62.812500pt;}
.h9{height:64.160000pt;}
.h5{height:64.500000pt;}
.h13{height:66.625000pt;}
.hf{height:73.490625pt;}
.h3{height:75.465000pt;}
.h12{height:76.964840pt;}
.h17{height:156.210625pt;}
.h10{height:159.357292pt;}
.h16{height:159.410625pt;}
.h11{height:185.490625pt;}
.he{height:302.240000pt;}
.h14{height:355.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:45.440000pt;}
.w8{width:46.432000pt;}
.w9{width:52.640000pt;}
.w7{width:52.800000pt;}
.wa{width:55.840000pt;}
.wd{width:56.992000pt;}
.wc{width:66.240000pt;}
.wb{width:73.152000pt;}
.w3{width:83.552000pt;}
.w5{width:110.400000pt;}
.w10{width:439.520000pt;}
.w4{width:454.013333pt;}
.we{width:618.400000pt;}
.wf{width:646.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x12{left:13.760000pt;}
.x11{left:15.680000pt;}
.xd{left:18.112000pt;}
.x13{left:20.320000pt;}
.x1c{left:26.240000pt;}
.x21{left:30.400000pt;}
.xe{left:31.552000pt;}
.x1d{left:33.440000pt;}
.x20{left:44.416000pt;}
.x29{left:47.232000pt;}
.xc{left:64.480000pt;}
.x9{left:75.519988pt;}
.x22{left:83.773333pt;}
.x1f{left:86.720000pt;}
.x2a{left:91.066667pt;}
.x23{left:95.973333pt;}
.x2b{left:103.266667pt;}
.x27{left:107.293333pt;}
.x31{left:125.186667pt;}
.x5{left:148.986655pt;}
.xf{left:170.760000pt;}
.x24{left:185.826667pt;}
.x14{left:194.746667pt;}
.x2c{left:200.666667pt;}
.x32{left:222.586667pt;}
.x16{left:248.186667pt;}
.x1e{left:263.586655pt;}
.x7{left:275.746655pt;}
.x30{left:277.626667pt;}
.x2f{left:282.400000pt;}
.x17{left:295.266667pt;}
.x2d{left:298.080000pt;}
.x3{left:311.586655pt;}
.x33{left:320.000000pt;}
.x28{left:335.426655pt;}
.x8{left:347.106655pt;}
.x18{left:348.546667pt;}
.x25{left:351.840000pt;}
.x2e{left:381.733333pt;}
.x4{left:385.666655pt;}
.x6{left:396.866655pt;}
.x19{left:405.026667pt;}
.x2{left:406.306655pt;}
.x26{left:441.693333pt;}
.x1{left:453.693322pt;}
.x1a{left:478.813333pt;}
.x34{left:514.813333pt;}
.x1b{left:545.693333pt;}
.x10{left:603.333333pt;}
.xb{left:664.613322pt;}
.xa{left:718.213322pt;}
}




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