
    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_55fcb0470ef83a82c9261526.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a9982dbb5577693c69c1ee7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_212ae61d0723dd96c93f0450.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6289f59e94cad117df00438e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_e5ee77d30428b5ea563e47b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_1e3de8b5732487542ff193d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_6769bb0fb4077c5d225606cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850098;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_afe9c1beb5ad4712d9d987eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_2d6819c21f8d2d3b42292e76.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6b5f2f1aae03973107f70854.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls9{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.840000px;}
.ls1{letter-spacing:28.620000px;}
.ls4{letter-spacing:32.947200px;}
.ls3{letter-spacing:36.547200px;}
.lsb{letter-spacing:37.440000px;}
.ls7{letter-spacing:54.864000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.595840px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.324800px;}
._1{width:1.330080px;}
._14{width:2.476800px;}
._1b{width:3.902400px;}
._b{width:4.996800px;}
._a{width:6.696000px;}
._15{width:8.136000px;}
._1f{width:9.216000px;}
._19{width:10.368000px;}
._10{width:11.376000px;}
._c{width:12.384000px;}
._1e{width:13.464000px;}
._9{width:14.952000px;}
._18{width:15.973920px;}
._4{width:16.992000px;}
._1a{width:19.045920px;}
._11{width:20.476800px;}
._7{width:21.672000px;}
._6{width:23.544000px;}
._8{width:24.805920px;}
._5{width:26.484240px;}
._3{width:28.489680px;}
._2{width:29.877120px;}
._12{width:31.000800px;}
._13{width:32.904000px;}
._25{width:34.500000px;}
._d{width:35.544000px;}
._e{width:36.792000px;}
._22{width:38.316000px;}
._20{width:46.512000px;}
._21{width:47.568000px;}
._23{width:51.744000px;}
._1c{width:62.136000px;}
._1d{width:63.216000px;}
._16{width:85.392000px;}
._17{width:86.472000px;}
._24{width:96.408000px;}
._f{width:312.307200px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y5b{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:10.080000px;}
.y44{bottom:14.580000px;}
.y4{bottom:57.420000px;}
.y3{bottom:76.896000px;}
.y2{bottom:95.796000px;}
.y1{bottom:115.416000px;}
.y25{bottom:142.776000px;}
.y58{bottom:143.316000px;}
.y42{bottom:144.576000px;}
.y89{bottom:151.050000px;}
.y24{bottom:162.570000px;}
.y9d{bottom:163.470000px;}
.y57{bottom:174.450000px;}
.y88{bottom:182.190000px;}
.y23{bottom:183.270000px;}
.y75{bottom:184.170000px;}
.y41{bottom:190.470000px;}
.y22{bottom:203.610000px;}
.y56{bottom:205.410000px;}
.y9c{bottom:209.550000px;}
.y87{bottom:213.150000px;}
.y74{bottom:215.310000px;}
.y40{bottom:221.610000px;}
.y21{bottom:223.230000px;}
.y55{bottom:236.550000px;}
.y9b{bottom:240.510000px;}
.y20{bottom:243.930000px;}
.y86{bottom:244.290000px;}
.y73{bottom:246.270000px;}
.y3f{bottom:252.570000px;}
.y1f{bottom:264.630000px;}
.y54{bottom:267.510000px;}
.y85{bottom:275.250000px;}
.y72{bottom:277.230000px;}
.y3e{bottom:283.710000px;}
.y1e{bottom:285.330000px;}
.y9a{bottom:286.590000px;}
.y53{bottom:304.590000px;}
.y1d{bottom:306.570000px;}
.y84{bottom:312.330000px;}
.y99{bottom:317.775000px;}
.y71{bottom:320.475000px;}
.y3d{bottom:320.835000px;}
.y52{bottom:341.715000px;}
.y83{bottom:343.335000px;}
.y1c{bottom:344.775000px;}
.y98{bottom:348.735000px;}
.y3c{bottom:351.795000px;}
.y70{bottom:363.495000px;}
.y82{bottom:375.555000px;}
.y51{bottom:378.795000px;}
.y1b{bottom:379.155000px;}
.y97{bottom:379.695000px;}
.y3b{bottom:382.935000px;}
.y6f{bottom:400.575000px;}
.y96{bottom:404.535000px;}
.y81{bottom:407.955000px;}
.y1a{bottom:412.995000px;}
.y3a{bottom:413.895000px;}
.y50{bottom:415.695000px;}
.y6e{bottom:431.535000px;}
.y19{bottom:432.435000px;}
.y80{bottom:440.355000px;}
.y39{bottom:445.035000px;}
.y4f{bottom:452.775000px;}
.y18{bottom:453.135000px;}
.y6d{bottom:462.675000px;}
.y7f{bottom:472.755000px;}
.y95{bottom:474.555000px;}
.y38{bottom:475.995000px;}
.y17{bottom:488.955000px;}
.y4e{bottom:489.855000px;}
.y6c{bottom:493.635000px;}
.y7e{bottom:503.895000px;}
.y94{bottom:505.695000px;}
.y37{bottom:507.135000px;}
.y16{bottom:509.655000px;}
.y4d{bottom:526.935000px;}
.y15{bottom:530.355000px;}
.y6b{bottom:530.715000px;}
.y7d{bottom:534.855000px;}
.y93{bottom:536.655000px;}
.y43{bottom:537.735000px;}
.y36{bottom:538.095000px;}
.y14{bottom:551.055000px;}
.y4c{bottom:553.575000px;}
.y6a{bottom:561.675000px;}
.y7c{bottom:565.995000px;}
.y92{bottom:567.795000px;}
.y13{bottom:571.785000px;}
.y35{bottom:575.205000px;}
.y4b{bottom:580.425000px;}
.y69{bottom:592.845000px;}
.y12{bottom:593.025000px;}
.y7b{bottom:596.985000px;}
.y91{bottom:598.785000px;}
.y34{bottom:606.165000px;}
.ya7{bottom:611.925000px;}
.y68{bottom:623.805000px;}
.y7a{bottom:628.125000px;}
.y90{bottom:629.925000px;}
.y11{bottom:631.185000px;}
.y33{bottom:637.305000px;}
.y67{bottom:654.945000px;}
.ya6{bottom:657.105000px;}
.y79{bottom:659.085000px;}
.y8f{bottom:660.885000px;}
.y10{bottom:665.925000px;}
.y32{bottom:668.265000px;}
.y66{bottom:685.905000px;}
.ya5{bottom:688.065000px;}
.y78{bottom:690.225000px;}
.y8e{bottom:692.025000px;}
.y31{bottom:699.405000px;}
.yf{bottom:701.565000px;}
.y65{bottom:717.045000px;}
.ya4{bottom:719.205000px;}
.ye{bottom:722.265000px;}
.y77{bottom:722.625000px;}
.y8d{bottom:722.985000px;}
.y30{bottom:730.365000px;}
.y64{bottom:754.125000px;}
.yd{bottom:758.085000px;}
.y2f{bottom:761.505000px;}
.ya3{bottom:765.285000px;}
.yc{bottom:778.785000px;}
.y63{bottom:785.085000px;}
.y2e{bottom:792.465000px;}
.ya2{bottom:796.245000px;}
.y59{bottom:797.145000px;}
.yb{bottom:814.965000px;}
.y62{bottom:816.225000px;}
.y8c{bottom:818.385000px;}
.y2d{bottom:823.650000px;}
.ya1{bottom:827.430000px;}
.y61{bottom:847.230000px;}
.y4a{bottom:852.270000px;}
.ya{bottom:854.790000px;}
.y2c{bottom:860.730000px;}
.ya0{bottom:873.330000px;}
.y60{bottom:880.530000px;}
.y9{bottom:882.510000px;}
.y49{bottom:883.230000px;}
.y8b{bottom:888.450000px;}
.y2b{bottom:891.690000px;}
.y9f{bottom:904.470000px;}
.y48{bottom:914.370000px;}
.y8a{bottom:919.410000px;}
.y2a{bottom:922.830000px;}
.y8{bottom:924.990000px;}
.y9e{bottom:935.430000px;}
.y47{bottom:945.330000px;}
.y5f{bottom:950.550000px;}
.y29{bottom:953.790000px;}
.y7{bottom:967.470000px;}
.y76{bottom:975.570000px;}
.y46{bottom:976.470000px;}
.y5e{bottom:981.510000px;}
.y28{bottom:984.750000px;}
.y6{bottom:995.370000px;}
.y45{bottom:1007.430000px;}
.y5d{bottom:1012.650000px;}
.y27{bottom:1015.890000px;}
.y5{bottom:1040.550000px;}
.y26{bottom:1040.730000px;}
.y5c{bottom:1043.610000px;}
.h9{height:26.856000px;}
.h8{height:31.356000px;}
.h7{height:52.628906px;}
.h3{height:55.825312px;}
.h2{height:59.383125px;}
.h6{height:61.575820px;}
.h1{height:64.546875px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1188.000000px;}
.w3{width:431.025000px;}
.w2{width:482.685000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:6.480000px;}
.x9{left:16.560000px;}
.x1{left:127.655986px;}
.xe{left:154.649986px;}
.x2{left:170.129986px;}
.xa{left:185.805000px;}
.x3{left:191.009986px;}
.x6{left:238.530000px;}
.x8{left:264.810000px;}
.x5{left:309.314986px;}
.xc{left:347.114986px;}
.x4{left:445.394986px;}
.xb{left:454.754986px;}
.xd{left:668.264986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.746667pt;}
.ls1{letter-spacing:25.440000pt;}
.ls4{letter-spacing:29.286400pt;}
.ls3{letter-spacing:32.486400pt;}
.lsb{letter-spacing:33.280000pt;}
.ls7{letter-spacing:48.768000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.974080pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.182293pt;}
._14{width:2.201600pt;}
._1b{width:3.468800pt;}
._b{width:4.441600pt;}
._a{width:5.952000pt;}
._15{width:7.232000pt;}
._1f{width:8.192000pt;}
._19{width:9.216000pt;}
._10{width:10.112000pt;}
._c{width:11.008000pt;}
._1e{width:11.968000pt;}
._9{width:13.290667pt;}
._18{width:14.199040pt;}
._4{width:15.104000pt;}
._1a{width:16.929707pt;}
._11{width:18.201600pt;}
._7{width:19.264000pt;}
._6{width:20.928000pt;}
._8{width:22.049707pt;}
._5{width:23.541547pt;}
._3{width:25.324160pt;}
._2{width:26.557440pt;}
._12{width:27.556267pt;}
._13{width:29.248000pt;}
._25{width:30.666667pt;}
._d{width:31.594667pt;}
._e{width:32.704000pt;}
._22{width:34.058667pt;}
._20{width:41.344000pt;}
._21{width:42.282667pt;}
._23{width:45.994667pt;}
._1c{width:55.232000pt;}
._1d{width:56.192000pt;}
._16{width:75.904000pt;}
._17{width:76.864000pt;}
._24{width:85.696000pt;}
._f{width:277.606400pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y5b{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:8.960000pt;}
.y44{bottom:12.960000pt;}
.y4{bottom:51.040000pt;}
.y3{bottom:68.352000pt;}
.y2{bottom:85.152000pt;}
.y1{bottom:102.592000pt;}
.y25{bottom:126.912000pt;}
.y58{bottom:127.392000pt;}
.y42{bottom:128.512000pt;}
.y89{bottom:134.266667pt;}
.y24{bottom:144.506667pt;}
.y9d{bottom:145.306667pt;}
.y57{bottom:155.066667pt;}
.y88{bottom:161.946667pt;}
.y23{bottom:162.906667pt;}
.y75{bottom:163.706667pt;}
.y41{bottom:169.306667pt;}
.y22{bottom:180.986667pt;}
.y56{bottom:182.586667pt;}
.y9c{bottom:186.266667pt;}
.y87{bottom:189.466667pt;}
.y74{bottom:191.386667pt;}
.y40{bottom:196.986667pt;}
.y21{bottom:198.426667pt;}
.y55{bottom:210.266667pt;}
.y9b{bottom:213.786667pt;}
.y20{bottom:216.826667pt;}
.y86{bottom:217.146667pt;}
.y73{bottom:218.906667pt;}
.y3f{bottom:224.506667pt;}
.y1f{bottom:235.226667pt;}
.y54{bottom:237.786667pt;}
.y85{bottom:244.666667pt;}
.y72{bottom:246.426667pt;}
.y3e{bottom:252.186667pt;}
.y1e{bottom:253.626667pt;}
.y9a{bottom:254.746667pt;}
.y53{bottom:270.746667pt;}
.y1d{bottom:272.506667pt;}
.y84{bottom:277.626667pt;}
.y99{bottom:282.466667pt;}
.y71{bottom:284.866667pt;}
.y3d{bottom:285.186667pt;}
.y52{bottom:303.746667pt;}
.y83{bottom:305.186667pt;}
.y1c{bottom:306.466667pt;}
.y98{bottom:309.986667pt;}
.y3c{bottom:312.706667pt;}
.y70{bottom:323.106667pt;}
.y82{bottom:333.826667pt;}
.y51{bottom:336.706667pt;}
.y1b{bottom:337.026667pt;}
.y97{bottom:337.506667pt;}
.y3b{bottom:340.386667pt;}
.y6f{bottom:356.066667pt;}
.y96{bottom:359.586667pt;}
.y81{bottom:362.626667pt;}
.y1a{bottom:367.106667pt;}
.y3a{bottom:367.906667pt;}
.y50{bottom:369.506667pt;}
.y6e{bottom:383.586667pt;}
.y19{bottom:384.386667pt;}
.y80{bottom:391.426667pt;}
.y39{bottom:395.586667pt;}
.y4f{bottom:402.466667pt;}
.y18{bottom:402.786667pt;}
.y6d{bottom:411.266667pt;}
.y7f{bottom:420.226667pt;}
.y95{bottom:421.826667pt;}
.y38{bottom:423.106667pt;}
.y17{bottom:434.626667pt;}
.y4e{bottom:435.426667pt;}
.y6c{bottom:438.786667pt;}
.y7e{bottom:447.906667pt;}
.y94{bottom:449.506667pt;}
.y37{bottom:450.786667pt;}
.y16{bottom:453.026667pt;}
.y4d{bottom:468.386667pt;}
.y15{bottom:471.426667pt;}
.y6b{bottom:471.746667pt;}
.y7d{bottom:475.426667pt;}
.y93{bottom:477.026667pt;}
.y43{bottom:477.986667pt;}
.y36{bottom:478.306667pt;}
.y14{bottom:489.826667pt;}
.y4c{bottom:492.066667pt;}
.y6a{bottom:499.266667pt;}
.y7c{bottom:503.106667pt;}
.y92{bottom:504.706667pt;}
.y13{bottom:508.253333pt;}
.y35{bottom:511.293333pt;}
.y4b{bottom:515.933333pt;}
.y69{bottom:526.973333pt;}
.y12{bottom:527.133333pt;}
.y7b{bottom:530.653333pt;}
.y91{bottom:532.253333pt;}
.y34{bottom:538.813333pt;}
.ya7{bottom:543.933333pt;}
.y68{bottom:554.493333pt;}
.y7a{bottom:558.333333pt;}
.y90{bottom:559.933333pt;}
.y11{bottom:561.053333pt;}
.y33{bottom:566.493333pt;}
.y67{bottom:582.173333pt;}
.ya6{bottom:584.093333pt;}
.y79{bottom:585.853333pt;}
.y8f{bottom:587.453333pt;}
.y10{bottom:591.933333pt;}
.y32{bottom:594.013333pt;}
.y66{bottom:609.693333pt;}
.ya5{bottom:611.613333pt;}
.y78{bottom:613.533333pt;}
.y8e{bottom:615.133333pt;}
.y31{bottom:621.693333pt;}
.yf{bottom:623.613333pt;}
.y65{bottom:637.373333pt;}
.ya4{bottom:639.293333pt;}
.ye{bottom:642.013333pt;}
.y77{bottom:642.333333pt;}
.y8d{bottom:642.653333pt;}
.y30{bottom:649.213333pt;}
.y64{bottom:670.333333pt;}
.yd{bottom:673.853333pt;}
.y2f{bottom:676.893333pt;}
.ya3{bottom:680.253333pt;}
.yc{bottom:692.253333pt;}
.y63{bottom:697.853333pt;}
.y2e{bottom:704.413333pt;}
.ya2{bottom:707.773333pt;}
.y59{bottom:708.573333pt;}
.yb{bottom:724.413333pt;}
.y62{bottom:725.533333pt;}
.y8c{bottom:727.453333pt;}
.y2d{bottom:732.133333pt;}
.ya1{bottom:735.493333pt;}
.y61{bottom:753.093333pt;}
.y4a{bottom:757.573333pt;}
.ya{bottom:759.813333pt;}
.y2c{bottom:765.093333pt;}
.ya0{bottom:776.293333pt;}
.y60{bottom:782.693333pt;}
.y9{bottom:784.453333pt;}
.y49{bottom:785.093333pt;}
.y8b{bottom:789.733333pt;}
.y2b{bottom:792.613333pt;}
.y9f{bottom:803.973333pt;}
.y48{bottom:812.773333pt;}
.y8a{bottom:817.253333pt;}
.y2a{bottom:820.293333pt;}
.y8{bottom:822.213333pt;}
.y9e{bottom:831.493333pt;}
.y47{bottom:840.293333pt;}
.y5f{bottom:844.933333pt;}
.y29{bottom:847.813333pt;}
.y7{bottom:859.973333pt;}
.y76{bottom:867.173333pt;}
.y46{bottom:867.973333pt;}
.y5e{bottom:872.453333pt;}
.y28{bottom:875.333333pt;}
.y6{bottom:884.773333pt;}
.y45{bottom:895.493333pt;}
.y5d{bottom:900.133333pt;}
.y27{bottom:903.013333pt;}
.y5{bottom:924.933333pt;}
.y26{bottom:925.093333pt;}
.y5c{bottom:927.653333pt;}
.h9{height:23.872000pt;}
.h8{height:27.872000pt;}
.h7{height:46.781250pt;}
.h3{height:49.622500pt;}
.h2{height:52.785000pt;}
.h6{height:54.734062pt;}
.h1{height:57.375000pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1056.000000pt;}
.w3{width:383.133333pt;}
.w2{width:429.053333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:5.760000pt;}
.x9{left:14.720000pt;}
.x1{left:113.471988pt;}
.xe{left:137.466655pt;}
.x2{left:151.226655pt;}
.xa{left:165.160000pt;}
.x3{left:169.786655pt;}
.x6{left:212.026667pt;}
.x8{left:235.386667pt;}
.x5{left:274.946655pt;}
.xc{left:308.546655pt;}
.x4{left:395.906655pt;}
.xb{left:404.226655pt;}
.xd{left:594.013321pt;}
}




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