
    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_3fd1876466e3bb0e6d24cc72.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_3e1b5e0a04178c36b520979e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_1aed33e31e98476eb979909c.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_393fdae3b7c6379ef9d4e3d5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e32e38b603b10afc1d180ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689453;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_2f9516e0b8c253b07e917990.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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:27.360000px;}
.ls2{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.900000px;}
.lsa{letter-spacing:2.340000px;}
.ls9{letter-spacing:5.220000px;}
.ls5{letter-spacing:7.920000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-1.261440px;}
._e{width:1.224000px;}
._14{width:2.448000px;}
._11{width:3.456000px;}
._15{width:4.968000px;}
._a{width:6.336000px;}
._8{width:8.064000px;}
._9{width:9.072000px;}
._12{width:10.224000px;}
._13{width:11.232000px;}
._16{width:12.360000px;}
._17{width:13.848000px;}
._c{width:14.901120px;}
._b{width:16.093440px;}
._18{width:18.496800px;}
._19{width:19.570320px;}
._7{width:20.875200px;}
._6{width:21.936000px;}
._1a{width:23.352000px;}
._10{width:24.840000px;}
._1e{width:25.848000px;}
._20{width:27.144000px;}
._1c{width:28.728000px;}
._1d{width:29.880000px;}
._1b{width:31.536000px;}
._d{width:33.840000px;}
._26{width:34.957440px;}
._f{width:36.000000px;}
._21{width:44.352000px;}
._22{width:45.720000px;}
._1f{width:49.968000px;}
._25{width:87.309360px;}
._24{width:88.385040px;}
._23{width:126.511920px;}
._4{width:430.176000px;}
._3{width:431.256000px;}
._1{width:623.640000px;}
._0{width:1344.396000px;}
._5{width:2703.336000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:27.036000px;}
.y3{bottom:57.060000px;}
.y2{bottom:77.796000px;}
.y34{bottom:109.476000px;}
.y33{bottom:114.696000px;}
.y89{bottom:124.956000px;}
.y32{bottom:126.756000px;}
.y31{bottom:131.976000px;}
.y30{bottom:144.036000px;}
.y5b{bottom:144.756000px;}
.y2f{bottom:149.256000px;}
.y88{bottom:155.910000px;}
.y2e{bottom:161.130000px;}
.y57{bottom:161.850000px;}
.y2d{bottom:166.350000px;}
.y2c{bottom:178.410000px;}
.y66{bottom:179.130000px;}
.y65{bottom:183.630000px;}
.y56{bottom:187.050000px;}
.y2b{bottom:195.690000px;}
.y6b{bottom:196.410000px;}
.y72{bottom:200.910000px;}
.y2a{bottom:212.970000px;}
.y71{bottom:213.690000px;}
.y55{bottom:218.010000px;}
.y64{bottom:218.190000px;}
.y5a{bottom:224.850000px;}
.y29{bottom:230.250000px;}
.y63{bottom:230.970000px;}
.y79{bottom:235.470000px;}
.y28{bottom:247.530000px;}
.y53{bottom:249.150000px;}
.y78{bottom:252.750000px;}
.y54{bottom:255.990000px;}
.y27{bottom:264.630000px;}
.y77{bottom:265.350000px;}
.y26{bottom:269.850000px;}
.y52{bottom:280.110000px;}
.y87{bottom:281.910000px;}
.y25{bottom:282.630000px;}
.y86{bottom:299.190000px;}
.y51{bottom:311.250000px;}
.y85{bottom:316.470000px;}
.y59{bottom:318.090000px;}
.y24{bottom:320.970000px;}
.y84{bottom:321.690000px;}
.y83{bottom:333.750000px;}
.y4f{bottom:342.255000px;}
.y50{bottom:349.095000px;}
.y82{bottom:351.075000px;}
.y22{bottom:351.975000px;}
.y23{bottom:358.815000px;}
.y81{bottom:368.175000px;}
.y4e{bottom:373.395000px;}
.y62{bottom:380.235000px;}
.y21{bottom:383.115000px;}
.y80{bottom:385.455000px;}
.y7f{bottom:402.735000px;}
.y4d{bottom:404.355000px;}
.y7e{bottom:407.955000px;}
.y76{bottom:411.195000px;}
.y20{bottom:414.075000px;}
.y7d{bottom:420.735000px;}
.y4c{bottom:435.495000px;}
.y5e{bottom:442.335000px;}
.y1e{bottom:445.215000px;}
.y1f{bottom:452.055000px;}
.y4b{bottom:466.455000px;}
.y70{bottom:473.295000px;}
.y1d{bottom:476.175000px;}
.y4a{bottom:497.595000px;}
.y75{bottom:504.435000px;}
.y1c{bottom:507.315000px;}
.y49{bottom:528.555000px;}
.y6e{bottom:535.395000px;}
.y1a{bottom:538.275000px;}
.y1b{bottom:545.115000px;}
.y48{bottom:559.695000px;}
.y68{bottom:566.535000px;}
.y19{bottom:569.415000px;}
.y47{bottom:590.655000px;}
.y6f{bottom:597.495000px;}
.y18{bottom:600.375000px;}
.y46{bottom:621.645000px;}
.y74{bottom:628.485000px;}
.y16{bottom:631.545000px;}
.y17{bottom:638.385000px;}
.y45{bottom:652.785000px;}
.y61{bottom:659.625000px;}
.y15{bottom:662.505000px;}
.y44{bottom:683.745000px;}
.y7c{bottom:690.585000px;}
.y14{bottom:693.645000px;}
.y43{bottom:714.885000px;}
.y6c{bottom:721.725000px;}
.y13{bottom:724.605000px;}
.y42{bottom:745.845000px;}
.y6a{bottom:752.685000px;}
.y12{bottom:755.745000px;}
.y41{bottom:776.985000px;}
.y69{bottom:783.825000px;}
.y11{bottom:794.445000px;}
.y40{bottom:807.945000px;}
.y7b{bottom:814.785000px;}
.y10{bottom:833.145000px;}
.y3f{bottom:839.085000px;}
.y73{bottom:845.925000px;}
.yf{bottom:853.845000px;}
.y3e{bottom:870.045000px;}
.ye{bottom:874.590000px;}
.y6d{bottom:876.930000px;}
.yd{bottom:895.290000px;}
.y3c{bottom:901.230000px;}
.y3d{bottom:908.070000px;}
.yc{bottom:915.810000px;}
.y3b{bottom:932.190000px;}
.yb{bottom:936.510000px;}
.y60{bottom:939.030000px;}
.ya{bottom:957.210000px;}
.y3a{bottom:963.330000px;}
.y67{bottom:970.170000px;}
.y9{bottom:977.910000px;}
.y39{bottom:994.290000px;}
.y58{bottom:1001.130000px;}
.y8{bottom:1016.610000px;}
.y38{bottom:1025.430000px;}
.y5d{bottom:1032.270000px;}
.y7{bottom:1055.310000px;}
.y37{bottom:1056.390000px;}
.y5c{bottom:1063.230000px;}
.y6{bottom:1076.010000px;}
.y36{bottom:1087.530000px;}
.y7a{bottom:1094.370000px;}
.y4{bottom:1118.490000px;}
.y5{bottom:1124.430000px;}
.y5f{bottom:1125.330000px;}
.y1{bottom:1194.480000px;}
.h7{height:34.855313px;}
.h5{height:42.845977px;}
.h6{height:43.246406px;}
.h8{height:53.573906px;}
.h9{height:56.765625px;}
.h2{height:59.383125px;}
.ha{height:63.351562px;}
.h4{height:63.949219px;}
.h3{height:64.546875px;}
.hb{height:70.606406px;}
.hc{height:70.786406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x11{left:111.275987px;}
.x1e{left:116.135987px;}
.x5{left:143.675987px;}
.x5f{left:149.435973px;}
.x7{left:159.509987px;}
.x60{left:161.669987px;}
.x18{left:164.369973px;}
.x19{left:170.489987px;}
.x49{left:172.289973px;}
.x4a{left:184.529987px;}
.x69{left:189.389973px;}
.x56{left:192.449973px;}
.x31{left:197.129973px;}
.x52{left:202.349973px;}
.x57{left:204.689987px;}
.x32{left:209.369987px;}
.x53{left:214.589987px;}
.x68{left:226.109987px;}
.x6a{left:233.849973px;}
.x41{left:237.809973px;}
.x6{left:246.269987px;}
.x42{left:250.049987px;}
.x5b{left:265.709973px;}
.x25{left:275.429973px;}
.x5c{left:277.994987px;}
.x37{left:284.114973px;}
.x26{left:287.714987px;}
.x50{left:292.214973px;}
.x38{left:296.354987px;}
.x51{left:304.454987px;}
.x5a{left:309.134987px;}
.x10{left:322.454987px;}
.xc{left:331.814973px;}
.x1f{left:332.894973px;}
.x4b{left:336.674973px;}
.xd{left:337.934987px;}
.x20{left:345.134987px;}
.x4c{left:348.914987px;}
.x2b{left:371.594973px;}
.x61{left:378.434973px;}
.x2c{left:383.834987px;}
.x62{left:390.674987px;}
.x43{left:392.834973px;}
.x44{left:405.074987px;}
.x47{left:409.034973px;}
.x29{left:419.834973px;}
.x48{left:421.274987px;}
.x39{left:423.614973px;}
.x2a{left:432.074987px;}
.x3a{left:435.854987px;}
.x35{left:439.634973px;}
.x6f{left:445.394973px;}
.x36{left:451.874987px;}
.x4e{left:455.114973px;}
.x70{left:457.634987px;}
.x5d{left:462.314973px;}
.x4f{left:467.384987px;}
.x5e{left:474.584987px;}
.x3f{left:483.404973px;}
.x8{left:487.724973px;}
.x54{left:490.784973px;}
.x9{left:493.844987px;}
.x40{left:495.644987px;}
.x55{left:503.024987px;}
.xe{left:507.344973px;}
.x6b{left:509.864973px;}
.xf{left:513.464987px;}
.x58{left:516.884973px;}
.x6c{left:522.104987px;}
.x1c{left:525.164973px;}
.x59{left:529.124987px;}
.x1d{left:537.404987px;}
.x33{left:547.664973px;}
.x3b{left:557.564973px;}
.x34{left:559.904987px;}
.x3c{left:569.804987px;}
.x4d{left:581.144987px;}
.x13{left:605.264973px;}
.x14{left:611.384987px;}
.x2{left:618.044987px;}
.x65{left:622.364973px;}
.x1a{left:625.604973px;}
.x45{left:632.084973px;}
.x66{left:634.604987px;}
.x1b{left:637.844987px;}
.x46{left:644.324987px;}
.x6d{left:661.649973px;}
.x63{left:667.769973px;}
.x67{left:672.629973px;}
.x6e{left:673.889987px;}
.x3d{left:675.869973px;}
.x64{left:680.009987px;}
.x2d{left:684.149973px;}
.x3e{left:688.109987px;}
.x2e{left:696.389987px;}
.x2f{left:710.789973px;}
.x23{left:715.829973px;}
.x30{left:723.029987px;}
.x24{left:728.069987px;}
.x27{left:731.489973px;}
.x28{left:743.729987px;}
.x15{left:755.429973px;}
.x16{left:761.549987px;}
.x21{left:770.189973px;}
.xa{left:771.269973px;}
.x17{left:775.409973px;}
.xb{left:777.389987px;}
.x3{left:780.629973px;}
.x22{left:782.429987px;}
.x4{left:786.749987px;}
.x12{left:849.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.800000pt;}
.lsa{letter-spacing:2.080000pt;}
.ls9{letter-spacing:4.640000pt;}
.ls5{letter-spacing:7.040000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-1.121280pt;}
._e{width:1.088000pt;}
._14{width:2.176000pt;}
._11{width:3.072000pt;}
._15{width:4.416000pt;}
._a{width:5.632000pt;}
._8{width:7.168000pt;}
._9{width:8.064000pt;}
._12{width:9.088000pt;}
._13{width:9.984000pt;}
._16{width:10.986667pt;}
._17{width:12.309333pt;}
._c{width:13.245440pt;}
._b{width:14.305280pt;}
._18{width:16.441600pt;}
._19{width:17.395840pt;}
._7{width:18.555733pt;}
._6{width:19.498667pt;}
._1a{width:20.757333pt;}
._10{width:22.080000pt;}
._1e{width:22.976000pt;}
._20{width:24.128000pt;}
._1c{width:25.536000pt;}
._1d{width:26.560000pt;}
._1b{width:28.032000pt;}
._d{width:30.080000pt;}
._26{width:31.073280pt;}
._f{width:32.000000pt;}
._21{width:39.424000pt;}
._22{width:40.640000pt;}
._1f{width:44.416000pt;}
._25{width:77.608320pt;}
._24{width:78.564480pt;}
._23{width:112.455040pt;}
._4{width:382.378667pt;}
._3{width:383.338667pt;}
._1{width:554.346667pt;}
._0{width:1195.018667pt;}
._5{width:2402.965333pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:24.032000pt;}
.y3{bottom:50.720000pt;}
.y2{bottom:69.152000pt;}
.y34{bottom:97.312000pt;}
.y33{bottom:101.952000pt;}
.y89{bottom:111.072000pt;}
.y32{bottom:112.672000pt;}
.y31{bottom:117.312000pt;}
.y30{bottom:128.032000pt;}
.y5b{bottom:128.672000pt;}
.y2f{bottom:132.672000pt;}
.y88{bottom:138.586667pt;}
.y2e{bottom:143.226667pt;}
.y57{bottom:143.866667pt;}
.y2d{bottom:147.866667pt;}
.y2c{bottom:158.586667pt;}
.y66{bottom:159.226667pt;}
.y65{bottom:163.226667pt;}
.y56{bottom:166.266667pt;}
.y2b{bottom:173.946667pt;}
.y6b{bottom:174.586667pt;}
.y72{bottom:178.586667pt;}
.y2a{bottom:189.306667pt;}
.y71{bottom:189.946667pt;}
.y55{bottom:193.786667pt;}
.y64{bottom:193.946667pt;}
.y5a{bottom:199.866667pt;}
.y29{bottom:204.666667pt;}
.y63{bottom:205.306667pt;}
.y79{bottom:209.306667pt;}
.y28{bottom:220.026667pt;}
.y53{bottom:221.466667pt;}
.y78{bottom:224.666667pt;}
.y54{bottom:227.546667pt;}
.y27{bottom:235.226667pt;}
.y77{bottom:235.866667pt;}
.y26{bottom:239.866667pt;}
.y52{bottom:248.986667pt;}
.y87{bottom:250.586667pt;}
.y25{bottom:251.226667pt;}
.y86{bottom:265.946667pt;}
.y51{bottom:276.666667pt;}
.y85{bottom:281.306667pt;}
.y59{bottom:282.746667pt;}
.y24{bottom:285.306667pt;}
.y84{bottom:285.946667pt;}
.y83{bottom:296.666667pt;}
.y4f{bottom:304.226667pt;}
.y50{bottom:310.306667pt;}
.y82{bottom:312.066667pt;}
.y22{bottom:312.866667pt;}
.y23{bottom:318.946667pt;}
.y81{bottom:327.266667pt;}
.y4e{bottom:331.906667pt;}
.y62{bottom:337.986667pt;}
.y21{bottom:340.546667pt;}
.y80{bottom:342.626667pt;}
.y7f{bottom:357.986667pt;}
.y4d{bottom:359.426667pt;}
.y7e{bottom:362.626667pt;}
.y76{bottom:365.506667pt;}
.y20{bottom:368.066667pt;}
.y7d{bottom:373.986667pt;}
.y4c{bottom:387.106667pt;}
.y5e{bottom:393.186667pt;}
.y1e{bottom:395.746667pt;}
.y1f{bottom:401.826667pt;}
.y4b{bottom:414.626667pt;}
.y70{bottom:420.706667pt;}
.y1d{bottom:423.266667pt;}
.y4a{bottom:442.306667pt;}
.y75{bottom:448.386667pt;}
.y1c{bottom:450.946667pt;}
.y49{bottom:469.826667pt;}
.y6e{bottom:475.906667pt;}
.y1a{bottom:478.466667pt;}
.y1b{bottom:484.546667pt;}
.y48{bottom:497.506667pt;}
.y68{bottom:503.586667pt;}
.y19{bottom:506.146667pt;}
.y47{bottom:525.026667pt;}
.y6f{bottom:531.106667pt;}
.y18{bottom:533.666667pt;}
.y46{bottom:552.573333pt;}
.y74{bottom:558.653333pt;}
.y16{bottom:561.373333pt;}
.y17{bottom:567.453333pt;}
.y45{bottom:580.253333pt;}
.y61{bottom:586.333333pt;}
.y15{bottom:588.893333pt;}
.y44{bottom:607.773333pt;}
.y7c{bottom:613.853333pt;}
.y14{bottom:616.573333pt;}
.y43{bottom:635.453333pt;}
.y6c{bottom:641.533333pt;}
.y13{bottom:644.093333pt;}
.y42{bottom:662.973333pt;}
.y6a{bottom:669.053333pt;}
.y12{bottom:671.773333pt;}
.y41{bottom:690.653333pt;}
.y69{bottom:696.733333pt;}
.y11{bottom:706.173333pt;}
.y40{bottom:718.173333pt;}
.y7b{bottom:724.253333pt;}
.y10{bottom:740.573333pt;}
.y3f{bottom:745.853333pt;}
.y73{bottom:751.933333pt;}
.yf{bottom:758.973333pt;}
.y3e{bottom:773.373333pt;}
.ye{bottom:777.413333pt;}
.y6d{bottom:779.493333pt;}
.yd{bottom:795.813333pt;}
.y3c{bottom:801.093333pt;}
.y3d{bottom:807.173333pt;}
.yc{bottom:814.053333pt;}
.y3b{bottom:828.613333pt;}
.yb{bottom:832.453333pt;}
.y60{bottom:834.693333pt;}
.ya{bottom:850.853333pt;}
.y3a{bottom:856.293333pt;}
.y67{bottom:862.373333pt;}
.y9{bottom:869.253333pt;}
.y39{bottom:883.813333pt;}
.y58{bottom:889.893333pt;}
.y8{bottom:903.653333pt;}
.y38{bottom:911.493333pt;}
.y5d{bottom:917.573333pt;}
.y7{bottom:938.053333pt;}
.y37{bottom:939.013333pt;}
.y5c{bottom:945.093333pt;}
.y6{bottom:956.453333pt;}
.y36{bottom:966.693333pt;}
.y7a{bottom:972.773333pt;}
.y4{bottom:994.213333pt;}
.y5{bottom:999.493333pt;}
.y5f{bottom:1000.293333pt;}
.y1{bottom:1061.760000pt;}
.h7{height:30.982500pt;}
.h5{height:38.085312pt;}
.h6{height:38.441250pt;}
.h8{height:47.621250pt;}
.h9{height:50.458333pt;}
.h2{height:52.785000pt;}
.ha{height:56.312500pt;}
.h4{height:56.843750pt;}
.h3{height:57.375000pt;}
.hb{height:62.761250pt;}
.hc{height:62.921250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x11{left:98.911988pt;}
.x1e{left:103.231988pt;}
.x5{left:127.711988pt;}
.x5f{left:132.831976pt;}
.x7{left:141.786655pt;}
.x60{left:143.706655pt;}
.x18{left:146.106643pt;}
.x19{left:151.546655pt;}
.x49{left:153.146643pt;}
.x4a{left:164.026655pt;}
.x69{left:168.346643pt;}
.x56{left:171.066643pt;}
.x31{left:175.226643pt;}
.x52{left:179.866643pt;}
.x57{left:181.946655pt;}
.x32{left:186.106655pt;}
.x53{left:190.746655pt;}
.x68{left:200.986655pt;}
.x6a{left:207.866643pt;}
.x41{left:211.386643pt;}
.x6{left:218.906655pt;}
.x42{left:222.266655pt;}
.x5b{left:236.186643pt;}
.x25{left:244.826643pt;}
.x5c{left:247.106655pt;}
.x37{left:252.546643pt;}
.x26{left:255.746655pt;}
.x50{left:259.746643pt;}
.x38{left:263.426655pt;}
.x51{left:270.626655pt;}
.x5a{left:274.786655pt;}
.x10{left:286.626655pt;}
.xc{left:294.946643pt;}
.x1f{left:295.906643pt;}
.x4b{left:299.266643pt;}
.xd{left:300.386655pt;}
.x20{left:306.786655pt;}
.x4c{left:310.146655pt;}
.x2b{left:330.306643pt;}
.x61{left:336.386643pt;}
.x2c{left:341.186655pt;}
.x62{left:347.266655pt;}
.x43{left:349.186643pt;}
.x44{left:360.066655pt;}
.x47{left:363.586643pt;}
.x29{left:373.186643pt;}
.x48{left:374.466655pt;}
.x39{left:376.546643pt;}
.x2a{left:384.066655pt;}
.x3a{left:387.426655pt;}
.x35{left:390.786643pt;}
.x6f{left:395.906643pt;}
.x36{left:401.666655pt;}
.x4e{left:404.546643pt;}
.x70{left:406.786655pt;}
.x5d{left:410.946643pt;}
.x4f{left:415.453322pt;}
.x5e{left:421.853322pt;}
.x3f{left:429.693310pt;}
.x8{left:433.533310pt;}
.x54{left:436.253310pt;}
.x9{left:438.973322pt;}
.x40{left:440.573322pt;}
.x55{left:447.133322pt;}
.xe{left:450.973310pt;}
.x6b{left:453.213310pt;}
.xf{left:456.413322pt;}
.x58{left:459.453310pt;}
.x6c{left:464.093322pt;}
.x1c{left:466.813310pt;}
.x59{left:470.333322pt;}
.x1d{left:477.693322pt;}
.x33{left:486.813310pt;}
.x3b{left:495.613310pt;}
.x34{left:497.693322pt;}
.x3c{left:506.493322pt;}
.x4d{left:516.573322pt;}
.x13{left:538.013310pt;}
.x14{left:543.453322pt;}
.x2{left:549.373322pt;}
.x65{left:553.213310pt;}
.x1a{left:556.093310pt;}
.x45{left:561.853310pt;}
.x66{left:564.093322pt;}
.x1b{left:566.973322pt;}
.x46{left:572.733322pt;}
.x6d{left:588.133310pt;}
.x63{left:593.573310pt;}
.x67{left:597.893310pt;}
.x6e{left:599.013322pt;}
.x3d{left:600.773310pt;}
.x64{left:604.453322pt;}
.x2d{left:608.133310pt;}
.x3e{left:611.653322pt;}
.x2e{left:619.013322pt;}
.x2f{left:631.813310pt;}
.x23{left:636.293310pt;}
.x30{left:642.693322pt;}
.x24{left:647.173322pt;}
.x27{left:650.213310pt;}
.x28{left:661.093322pt;}
.x15{left:671.493310pt;}
.x16{left:676.933322pt;}
.x21{left:684.613310pt;}
.xa{left:685.573310pt;}
.x17{left:689.253310pt;}
.xb{left:691.013322pt;}
.x3{left:693.893310pt;}
.x22{left:695.493322pt;}
.x4{left:699.333322pt;}
.x12{left:755.093333pt;}
}




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