
    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_7dd90ae75e705b644fea8079.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_0054cb47aa30d58cb0123fac.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2c9876839d9b711adf7a5ccf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095215;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_186f8fba35a93d5b60724ad2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095215;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4485a4b5c740241767eaecba.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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(0.372800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372800,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.lsd{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.341400px;}
.lsa{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.378600px;}
.lse{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.ls1a{letter-spacing:11.520000px;}
.ls2{letter-spacing:13.680000px;}
.ls13{letter-spacing:16.560000px;}
.ls10{letter-spacing:21.600000px;}
.ls9{letter-spacing:62.261280px;}
.lsb{letter-spacing:64.421280px;}
.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:-23.921280px;}
.wsa{word-spacing:-21.438600px;}
.ws7{word-spacing:-21.060000px;}
.ws13{word-spacing:-21.041280px;}
.wse{word-spacing:-20.718600px;}
.ws14{word-spacing:-18.792000px;}
.ws3{word-spacing:-18.720000px;}
.ws17{word-spacing:-18.576000px;}
.ws10{word-spacing:-18.432000px;}
.ws18{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws16{word-spacing:-17.280000px;}
.wsb{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.733600px;}
.ws11{word-spacing:-13.860000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-4.344000px;}
._c{margin-left:-3.174720px;}
._0{margin-left:-1.457280px;}
._1{width:1.583520px;}
._13{width:2.597280px;}
._6{width:3.648000px;}
._7{width:4.776000px;}
._8{width:5.928480px;}
._10{width:7.488000px;}
._14{width:8.493600px;}
._b{width:9.504000px;}
._d{width:10.512000px;}
._5{width:12.441840px;}
._4{width:14.076720px;}
._a{width:15.803280px;}
._16{width:16.913280px;}
._1a{width:18.002640px;}
._f{width:19.440000px;}
._e{width:20.664000px;}
._19{width:21.790560px;}
._15{width:22.824000px;}
._18{width:24.048000px;}
._12{width:25.704000px;}
._11{width:26.712000px;}
._17{width:28.245120px;}
._21{width:30.672000px;}
._22{width:32.489760px;}
._2{width:36.741840px;}
._3{width:37.929360px;}
._20{width:51.590880px;}
._1f{width:52.985280px;}
._1d{width:87.384000px;}
._1e{width:89.016480px;}
._1b{width:95.904000px;}
._1c{width:97.128000px;}
._23{width:250.632000px;}
._24{width:251.712480px;}
.fc2{color:rgb(4,98,193);}
.fc1{color:rgb(0,0,9);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:82.800000px;}
.y3{bottom:87.300000px;}
.y2{bottom:106.380000px;}
.y1{bottom:125.280000px;}
.y7a{bottom:154.110000px;}
.y59{bottom:156.090000px;}
.ye0{bottom:156.990000px;}
.y8d{bottom:159.330000px;}
.y107{bottom:163.110000px;}
.yb2{bottom:166.350000px;}
.y4d{bottom:167.070000px;}
.yd2{bottom:169.230000px;}
.y2e{bottom:175.350000px;}
.y8c{bottom:175.890000px;}
.y106{bottom:183.270000px;}
.y79{bottom:185.070000px;}
.y58{bottom:187.050000px;}
.yc1{bottom:187.230000px;}
.ydf{bottom:188.130000px;}
.y8b{bottom:192.450000px;}
.yb1{bottom:197.310000px;}
.y4c{bottom:198.210000px;}
.yd1{bottom:200.370000px;}
.y2d{bottom:203.250000px;}
.y105{bottom:203.790000px;}
.y78{bottom:216.210000px;}
.y57{bottom:218.190000px;}
.yde{bottom:219.090000px;}
.y8a{bottom:220.170000px;}
.y104{bottom:226.110000px;}
.yb0{bottom:228.450000px;}
.y4b{bottom:229.170000px;}
.y2c{bottom:231.150000px;}
.yd0{bottom:231.330000px;}
.y103{bottom:246.090000px;}
.y77{bottom:247.170000px;}
.y56{bottom:249.150000px;}
.yc0{bottom:249.330000px;}
.ydd{bottom:250.230000px;}
.y89{bottom:251.310000px;}
.y2b{bottom:258.870000px;}
.yaf{bottom:259.410000px;}
.y4a{bottom:260.310000px;}
.ycf{bottom:262.470000px;}
.y102{bottom:266.070000px;}
.ydc{bottom:270.210000px;}
.y2a{bottom:278.130000px;}
.y76{bottom:278.310000px;}
.y55{bottom:280.290000px;}
.y88{bottom:282.270000px;}
.y101{bottom:288.750000px;}
.yae{bottom:290.550000px;}
.y49{bottom:291.270000px;}
.yce{bottom:293.430000px;}
.y29{bottom:298.830000px;}
.ydb{bottom:300.990000px;}
.y100{bottom:308.550000px;}
.y75{bottom:309.270000px;}
.y54{bottom:311.250000px;}
.ybf{bottom:311.430000px;}
.y87{bottom:313.410000px;}
.yda{bottom:317.550000px;}
.y28{bottom:319.530000px;}
.yad{bottom:321.510000px;}
.y48{bottom:322.410000px;}
.ycd{bottom:324.570000px;}
.yff{bottom:330.330000px;}
.yd9{bottom:334.290000px;}
.y27{bottom:340.230000px;}
.y74{bottom:340.410000px;}
.y53{bottom:342.390000px;}
.y86{bottom:344.370000px;}
.yfe{bottom:350.130000px;}
.yd8{bottom:350.850000px;}
.yac{bottom:352.650000px;}
.y47{bottom:353.370000px;}
.ycc{bottom:355.530000px;}
.y26{bottom:360.930000px;}
.yd7{bottom:367.590000px;}
.yfd{bottom:369.930000px;}
.y73{bottom:371.370000px;}
.y52{bottom:373.350000px;}
.ybe{bottom:373.530000px;}
.y85{bottom:375.510000px;}
.y25{bottom:381.630000px;}
.yab{bottom:383.610000px;}
.yd6{bottom:384.330000px;}
.y46{bottom:384.510000px;}
.ycb{bottom:386.670000px;}
.yfc{bottom:389.955000px;}
.yd5{bottom:400.935000px;}
.y24{bottom:402.375000px;}
.y72{bottom:402.555000px;}
.y51{bottom:404.535000px;}
.y84{bottom:406.515000px;}
.yfb{bottom:409.935000px;}
.yaa{bottom:414.795000px;}
.y45{bottom:415.515000px;}
.yca{bottom:417.675000px;}
.y23{bottom:423.075000px;}
.yfa{bottom:432.255000px;}
.y71{bottom:433.515000px;}
.yd4{bottom:434.415000px;}
.ya9{bottom:434.775000px;}
.ybd{bottom:434.955000px;}
.y50{bottom:435.495000px;}
.y83{bottom:437.655000px;}
.y22{bottom:443.775000px;}
.y44{bottom:446.655000px;}
.yc9{bottom:448.635000px;}
.yd3{bottom:450.975000px;}
.yf9{bottom:452.415000px;}
.y21{bottom:464.475000px;}
.y70{bottom:464.655000px;}
.ya8{bottom:466.275000px;}
.y4f{bottom:466.635000px;}
.y82{bottom:468.615000px;}
.yf8{bottom:472.755000px;}
.y43{bottom:477.615000px;}
.ybc{bottom:477.795000px;}
.yc8{bottom:479.775000px;}
.ya7{bottom:483.015000px;}
.y20{bottom:485.175000px;}
.yf7{bottom:492.555000px;}
.y6f{bottom:495.615000px;}
.y4e{bottom:496.875000px;}
.ya6{bottom:499.575000px;}
.y81{bottom:499.755000px;}
.y1f{bottom:505.875000px;}
.y42{bottom:508.755000px;}
.yc7{bottom:510.735000px;}
.yf6{bottom:512.535000px;}
.ya5{bottom:516.315000px;}
.y121{bottom:521.895000px;}
.y1e{bottom:526.575000px;}
.y80{bottom:530.715000px;}
.ya4{bottom:532.875000px;}
.yf5{bottom:535.395000px;}
.y41{bottom:539.715000px;}
.ybb{bottom:539.895000px;}
.y120{bottom:541.695000px;}
.yc6{bottom:541.875000px;}
.y6e{bottom:546.375000px;}
.y1d{bottom:547.275000px;}
.ya3{bottom:549.615000px;}
.yf4{bottom:555.195000px;}
.y11f{bottom:561.495000px;}
.y7f{bottom:561.855000px;}
.y6d{bottom:563.115000px;}
.ya2{bottom:567.255000px;}
.y1c{bottom:567.975000px;}
.y40{bottom:570.855000px;}
.yc5{bottom:572.835000px;}
.yf3{bottom:575.715000px;}
.y6c{bottom:579.855000px;}
.y11e{bottom:581.835000px;}
.y1b{bottom:588.495000px;}
.y7e{bottom:592.815000px;}
.yf2{bottom:596.055000px;}
.y6b{bottom:596.415000px;}
.y3f{bottom:601.815000px;}
.yba{bottom:601.995000px;}
.yc4{bottom:603.975000px;}
.ya1{bottom:609.015000px;}
.y1a{bottom:609.195000px;}
.y6a{bottom:613.155000px;}
.yf1{bottom:618.015000px;}
.y7d{bottom:623.955000px;}
.y19{bottom:629.895000px;}
.y3e{bottom:632.955000px;}
.yc3{bottom:634.935000px;}
.yf0{bottom:637.995000px;}
.ya0{bottom:640.185000px;}
.y11d{bottom:644.325000px;}
.y69{bottom:646.485000px;}
.y18{bottom:650.625000px;}
.y7c{bottom:654.945000px;}
.yef{bottom:657.825000px;}
.y68{bottom:663.225000px;}
.y3d{bottom:663.945000px;}
.yb9{bottom:664.125000px;}
.y11c{bottom:664.665000px;}
.yc2{bottom:666.105000px;}
.y9f{bottom:671.145000px;}
.y17{bottom:671.325000px;}
.yee{bottom:677.985000px;}
.y7b{bottom:685.185000px;}
.y11b{bottom:686.985000px;}
.y16{bottom:692.025000px;}
.y3c{bottom:695.085000px;}
.y67{bottom:697.065000px;}
.yed{bottom:701.205000px;}
.y9e{bottom:702.285000px;}
.y11a{bottom:706.965000px;}
.y15{bottom:712.725000px;}
.y3b{bottom:726.045000px;}
.yb8{bottom:726.225000px;}
.y119{bottom:726.765000px;}
.y66{bottom:728.205000px;}
.y9d{bottom:733.245000px;}
.y14{bottom:733.425000px;}
.yec{bottom:735.045000px;}
.y118{bottom:746.745000px;}
.y13{bottom:754.125000px;}
.y3a{bottom:757.185000px;}
.y65{bottom:759.165000px;}
.y9c{bottom:764.385000px;}
.yeb{bottom:766.185000px;}
.y117{bottom:769.965000px;}
.y12{bottom:774.825000px;}
.y39{bottom:788.145000px;}
.yb7{bottom:788.325000px;}
.y116{bottom:789.765000px;}
.y64{bottom:790.305000px;}
.y11{bottom:794.625000px;}
.y9b{bottom:795.345000px;}
.yea{bottom:797.145000px;}
.yb6{bottom:808.305000px;}
.y115{bottom:809.745000px;}
.y10{bottom:814.605000px;}
.y38{bottom:819.285000px;}
.y63{bottom:821.265000px;}
.y9a{bottom:826.485000px;}
.ye9{bottom:828.285000px;}
.y114{bottom:832.425000px;}
.yf{bottom:836.385000px;}
.yb5{bottom:840.165000px;}
.y37{bottom:850.245000px;}
.y62{bottom:852.405000px;}
.ye{bottom:857.085000px;}
.y99{bottom:857.445000px;}
.ye8{bottom:859.245000px;}
.y113{bottom:872.205000px;}
.yd{bottom:877.785000px;}
.y36{bottom:881.385000px;}
.y61{bottom:883.365000px;}
.y98{bottom:888.585000px;}
.ye7{bottom:890.385000px;}
.y112{bottom:892.185000px;}
.yc{bottom:898.530000px;}
.y35{bottom:912.390000px;}
.y60{bottom:914.550000px;}
.y111{bottom:916.890000px;}
.yb{bottom:919.230000px;}
.y97{bottom:919.590000px;}
.ye6{bottom:921.390000px;}
.y110{bottom:936.690000px;}
.ya{bottom:941.190000px;}
.y34{bottom:943.530000px;}
.y5f{bottom:945.510000px;}
.y96{bottom:950.730000px;}
.ye5{bottom:952.530000px;}
.y10f{bottom:956.490000px;}
.y9{bottom:968.730000px;}
.y33{bottom:974.490000px;}
.y5e{bottom:976.650000px;}
.y10e{bottom:977.730000px;}
.y95{bottom:981.690000px;}
.ye4{bottom:983.490000px;}
.y8{bottom:996.450000px;}
.y10d{bottom:998.970000px;}
.y94{bottom:1002.210000px;}
.y32{bottom:1005.630000px;}
.y5d{bottom:1007.610000px;}
.ye3{bottom:1014.630000px;}
.y10c{bottom:1018.950000px;}
.y93{bottom:1021.470000px;}
.y7{bottom:1023.990000px;}
.y31{bottom:1036.590000px;}
.y92{bottom:1037.850000px;}
.y5c{bottom:1038.750000px;}
.y10b{bottom:1038.930000px;}
.ye2{bottom:1045.590000px;}
.y6{bottom:1051.530000px;}
.y91{bottom:1054.410000px;}
.y10a{bottom:1059.090000px;}
.ye1{bottom:1066.830000px;}
.y30{bottom:1067.730000px;}
.y5b{bottom:1069.710000px;}
.y90{bottom:1070.970000px;}
.y5{bottom:1079.250000px;}
.y109{bottom:1081.590000px;}
.y8f{bottom:1087.530000px;}
.yb4{bottom:1091.670000px;}
.y2f{bottom:1097.970000px;}
.y5a{bottom:1100.850000px;}
.y108{bottom:1101.570000px;}
.yb3{bottom:1103.550000px;}
.y8e{bottom:1104.090000px;}
.h9{height:10.972969px;}
.h3{height:53.573906px;}
.h2{height:59.383125px;}
.h7{height:63.316406px;}
.h6{height:64.546875px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h4{height:85.847344px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x3{left:122.795987px;}
.x5{left:148.715987px;}
.x4{left:218.189987px;}
.x6{left:222.329987px;}
.x7{left:269.534987px;}
.xa{left:303.014987px;}
.x9{left:319.214987px;}
.x8{left:362.054987px;}
.xb{left:400.394987px;}
.x2{left:797.759987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.303467pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:10.240000pt;}
.ls2{letter-spacing:12.160000pt;}
.ls13{letter-spacing:14.720000pt;}
.ls10{letter-spacing:19.200000pt;}
.ls9{letter-spacing:55.343360pt;}
.lsb{letter-spacing:57.263360pt;}
.ws0{word-spacing:-21.263360pt;}
.wsa{word-spacing:-19.056533pt;}
.ws7{word-spacing:-18.720000pt;}
.ws13{word-spacing:-18.703360pt;}
.wse{word-spacing:-18.416533pt;}
.ws14{word-spacing:-16.704000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws17{word-spacing:-16.512000pt;}
.ws10{word-spacing:-16.384000pt;}
.ws18{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws16{word-spacing:-15.360000pt;}
.wsb{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.096533pt;}
.ws11{word-spacing:-12.320000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-3.861333pt;}
._c{margin-left:-2.821973pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.407573pt;}
._13{width:2.308693pt;}
._6{width:3.242667pt;}
._7{width:4.245333pt;}
._8{width:5.269760pt;}
._10{width:6.656000pt;}
._14{width:7.549867pt;}
._b{width:8.448000pt;}
._d{width:9.344000pt;}
._5{width:11.059413pt;}
._4{width:12.512640pt;}
._a{width:14.047360pt;}
._16{width:15.034027pt;}
._1a{width:16.002347pt;}
._f{width:17.280000pt;}
._e{width:18.368000pt;}
._19{width:19.369387pt;}
._15{width:20.288000pt;}
._18{width:21.376000pt;}
._12{width:22.848000pt;}
._11{width:23.744000pt;}
._17{width:25.106773pt;}
._21{width:27.264000pt;}
._22{width:28.879787pt;}
._2{width:32.659413pt;}
._3{width:33.714987pt;}
._20{width:45.858560pt;}
._1f{width:47.098027pt;}
._1d{width:77.674667pt;}
._1e{width:79.125760pt;}
._1b{width:85.248000pt;}
._1c{width:86.336000pt;}
._23{width:222.784000pt;}
._24{width:223.744427pt;}
.fs5{font-size:10.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:73.600000pt;}
.y3{bottom:77.600000pt;}
.y2{bottom:94.560000pt;}
.y1{bottom:111.360000pt;}
.y7a{bottom:136.986667pt;}
.y59{bottom:138.746667pt;}
.ye0{bottom:139.546667pt;}
.y8d{bottom:141.626667pt;}
.y107{bottom:144.986667pt;}
.yb2{bottom:147.866667pt;}
.y4d{bottom:148.506667pt;}
.yd2{bottom:150.426667pt;}
.y2e{bottom:155.866667pt;}
.y8c{bottom:156.346667pt;}
.y106{bottom:162.906667pt;}
.y79{bottom:164.506667pt;}
.y58{bottom:166.266667pt;}
.yc1{bottom:166.426667pt;}
.ydf{bottom:167.226667pt;}
.y8b{bottom:171.066667pt;}
.yb1{bottom:175.386667pt;}
.y4c{bottom:176.186667pt;}
.yd1{bottom:178.106667pt;}
.y2d{bottom:180.666667pt;}
.y105{bottom:181.146667pt;}
.y78{bottom:192.186667pt;}
.y57{bottom:193.946667pt;}
.yde{bottom:194.746667pt;}
.y8a{bottom:195.706667pt;}
.y104{bottom:200.986667pt;}
.yb0{bottom:203.066667pt;}
.y4b{bottom:203.706667pt;}
.y2c{bottom:205.466667pt;}
.yd0{bottom:205.626667pt;}
.y103{bottom:218.746667pt;}
.y77{bottom:219.706667pt;}
.y56{bottom:221.466667pt;}
.yc0{bottom:221.626667pt;}
.ydd{bottom:222.426667pt;}
.y89{bottom:223.386667pt;}
.y2b{bottom:230.106667pt;}
.yaf{bottom:230.586667pt;}
.y4a{bottom:231.386667pt;}
.ycf{bottom:233.306667pt;}
.y102{bottom:236.506667pt;}
.ydc{bottom:240.186667pt;}
.y2a{bottom:247.226667pt;}
.y76{bottom:247.386667pt;}
.y55{bottom:249.146667pt;}
.y88{bottom:250.906667pt;}
.y101{bottom:256.666667pt;}
.yae{bottom:258.266667pt;}
.y49{bottom:258.906667pt;}
.yce{bottom:260.826667pt;}
.y29{bottom:265.626667pt;}
.ydb{bottom:267.546667pt;}
.y100{bottom:274.266667pt;}
.y75{bottom:274.906667pt;}
.y54{bottom:276.666667pt;}
.ybf{bottom:276.826667pt;}
.y87{bottom:278.586667pt;}
.yda{bottom:282.266667pt;}
.y28{bottom:284.026667pt;}
.yad{bottom:285.786667pt;}
.y48{bottom:286.586667pt;}
.ycd{bottom:288.506667pt;}
.yff{bottom:293.626667pt;}
.yd9{bottom:297.146667pt;}
.y27{bottom:302.426667pt;}
.y74{bottom:302.586667pt;}
.y53{bottom:304.346667pt;}
.y86{bottom:306.106667pt;}
.yfe{bottom:311.226667pt;}
.yd8{bottom:311.866667pt;}
.yac{bottom:313.466667pt;}
.y47{bottom:314.106667pt;}
.ycc{bottom:316.026667pt;}
.y26{bottom:320.826667pt;}
.yd7{bottom:326.746667pt;}
.yfd{bottom:328.826667pt;}
.y73{bottom:330.106667pt;}
.y52{bottom:331.866667pt;}
.ybe{bottom:332.026667pt;}
.y85{bottom:333.786667pt;}
.y25{bottom:339.226667pt;}
.yab{bottom:340.986667pt;}
.yd6{bottom:341.626667pt;}
.y46{bottom:341.786667pt;}
.ycb{bottom:343.706667pt;}
.yfc{bottom:346.626667pt;}
.yd5{bottom:356.386667pt;}
.y24{bottom:357.666667pt;}
.y72{bottom:357.826667pt;}
.y51{bottom:359.586667pt;}
.y84{bottom:361.346667pt;}
.yfb{bottom:364.386667pt;}
.yaa{bottom:368.706667pt;}
.y45{bottom:369.346667pt;}
.yca{bottom:371.266667pt;}
.y23{bottom:376.066667pt;}
.yfa{bottom:384.226667pt;}
.y71{bottom:385.346667pt;}
.yd4{bottom:386.146667pt;}
.ya9{bottom:386.466667pt;}
.ybd{bottom:386.626667pt;}
.y50{bottom:387.106667pt;}
.y83{bottom:389.026667pt;}
.y22{bottom:394.466667pt;}
.y44{bottom:397.026667pt;}
.yc9{bottom:398.786667pt;}
.yd3{bottom:400.866667pt;}
.yf9{bottom:402.146667pt;}
.y21{bottom:412.866667pt;}
.y70{bottom:413.026667pt;}
.ya8{bottom:414.466667pt;}
.y4f{bottom:414.786667pt;}
.y82{bottom:416.546667pt;}
.yf8{bottom:420.226667pt;}
.y43{bottom:424.546667pt;}
.ybc{bottom:424.706667pt;}
.yc8{bottom:426.466667pt;}
.ya7{bottom:429.346667pt;}
.y20{bottom:431.266667pt;}
.yf7{bottom:437.826667pt;}
.y6f{bottom:440.546667pt;}
.y4e{bottom:441.666667pt;}
.ya6{bottom:444.066667pt;}
.y81{bottom:444.226667pt;}
.y1f{bottom:449.666667pt;}
.y42{bottom:452.226667pt;}
.yc7{bottom:453.986667pt;}
.yf6{bottom:455.586667pt;}
.ya5{bottom:458.946667pt;}
.y121{bottom:463.906667pt;}
.y1e{bottom:468.066667pt;}
.y80{bottom:471.746667pt;}
.ya4{bottom:473.666667pt;}
.yf5{bottom:475.906667pt;}
.y41{bottom:479.746667pt;}
.ybb{bottom:479.906667pt;}
.y120{bottom:481.506667pt;}
.yc6{bottom:481.666667pt;}
.y6e{bottom:485.666667pt;}
.y1d{bottom:486.466667pt;}
.ya3{bottom:488.546667pt;}
.yf4{bottom:493.506667pt;}
.y11f{bottom:499.106667pt;}
.y7f{bottom:499.426667pt;}
.y6d{bottom:500.546667pt;}
.ya2{bottom:504.226667pt;}
.y1c{bottom:504.866667pt;}
.y40{bottom:507.426667pt;}
.yc5{bottom:509.186667pt;}
.yf3{bottom:511.746667pt;}
.y6c{bottom:515.426667pt;}
.y11e{bottom:517.186667pt;}
.y1b{bottom:523.106667pt;}
.y7e{bottom:526.946667pt;}
.yf2{bottom:529.826667pt;}
.y6b{bottom:530.146667pt;}
.y3f{bottom:534.946667pt;}
.yba{bottom:535.106667pt;}
.yc4{bottom:536.866667pt;}
.ya1{bottom:541.346667pt;}
.y1a{bottom:541.506667pt;}
.y6a{bottom:545.026667pt;}
.yf1{bottom:549.346667pt;}
.y7d{bottom:554.626667pt;}
.y19{bottom:559.906667pt;}
.y3e{bottom:562.626667pt;}
.yc3{bottom:564.386667pt;}
.yf0{bottom:567.106667pt;}
.ya0{bottom:569.053333pt;}
.y11d{bottom:572.733333pt;}
.y69{bottom:574.653333pt;}
.y18{bottom:578.333333pt;}
.y7c{bottom:582.173333pt;}
.yef{bottom:584.733333pt;}
.y68{bottom:589.533333pt;}
.y3d{bottom:590.173333pt;}
.yb9{bottom:590.333333pt;}
.y11c{bottom:590.813333pt;}
.yc2{bottom:592.093333pt;}
.y9f{bottom:596.573333pt;}
.y17{bottom:596.733333pt;}
.yee{bottom:602.653333pt;}
.y7b{bottom:609.053333pt;}
.y11b{bottom:610.653333pt;}
.y16{bottom:615.133333pt;}
.y3c{bottom:617.853333pt;}
.y67{bottom:619.613333pt;}
.yed{bottom:623.293333pt;}
.y9e{bottom:624.253333pt;}
.y11a{bottom:628.413333pt;}
.y15{bottom:633.533333pt;}
.y3b{bottom:645.373333pt;}
.yb8{bottom:645.533333pt;}
.y119{bottom:646.013333pt;}
.y66{bottom:647.293333pt;}
.y9d{bottom:651.773333pt;}
.y14{bottom:651.933333pt;}
.yec{bottom:653.373333pt;}
.y118{bottom:663.773333pt;}
.y13{bottom:670.333333pt;}
.y3a{bottom:673.053333pt;}
.y65{bottom:674.813333pt;}
.y9c{bottom:679.453333pt;}
.yeb{bottom:681.053333pt;}
.y117{bottom:684.413333pt;}
.y12{bottom:688.733333pt;}
.y39{bottom:700.573333pt;}
.yb7{bottom:700.733333pt;}
.y116{bottom:702.013333pt;}
.y64{bottom:702.493333pt;}
.y11{bottom:706.333333pt;}
.y9b{bottom:706.973333pt;}
.yea{bottom:708.573333pt;}
.yb6{bottom:718.493333pt;}
.y115{bottom:719.773333pt;}
.y10{bottom:724.093333pt;}
.y38{bottom:728.253333pt;}
.y63{bottom:730.013333pt;}
.y9a{bottom:734.653333pt;}
.ye9{bottom:736.253333pt;}
.y114{bottom:739.933333pt;}
.yf{bottom:743.453333pt;}
.yb5{bottom:746.813333pt;}
.y37{bottom:755.773333pt;}
.y62{bottom:757.693333pt;}
.ye{bottom:761.853333pt;}
.y99{bottom:762.173333pt;}
.ye8{bottom:763.773333pt;}
.y113{bottom:775.293333pt;}
.yd{bottom:780.253333pt;}
.y36{bottom:783.453333pt;}
.y61{bottom:785.213333pt;}
.y98{bottom:789.853333pt;}
.ye7{bottom:791.453333pt;}
.y112{bottom:793.053333pt;}
.yc{bottom:798.693333pt;}
.y35{bottom:811.013333pt;}
.y60{bottom:812.933333pt;}
.y111{bottom:815.013333pt;}
.yb{bottom:817.093333pt;}
.y97{bottom:817.413333pt;}
.ye6{bottom:819.013333pt;}
.y110{bottom:832.613333pt;}
.ya{bottom:836.613333pt;}
.y34{bottom:838.693333pt;}
.y5f{bottom:840.453333pt;}
.y96{bottom:845.093333pt;}
.ye5{bottom:846.693333pt;}
.y10f{bottom:850.213333pt;}
.y9{bottom:861.093333pt;}
.y33{bottom:866.213333pt;}
.y5e{bottom:868.133333pt;}
.y10e{bottom:869.093333pt;}
.y95{bottom:872.613333pt;}
.ye4{bottom:874.213333pt;}
.y8{bottom:885.733333pt;}
.y10d{bottom:887.973333pt;}
.y94{bottom:890.853333pt;}
.y32{bottom:893.893333pt;}
.y5d{bottom:895.653333pt;}
.ye3{bottom:901.893333pt;}
.y10c{bottom:905.733333pt;}
.y93{bottom:907.973333pt;}
.y7{bottom:910.213333pt;}
.y31{bottom:921.413333pt;}
.y92{bottom:922.533333pt;}
.y5c{bottom:923.333333pt;}
.y10b{bottom:923.493333pt;}
.ye2{bottom:929.413333pt;}
.y6{bottom:934.693333pt;}
.y91{bottom:937.253333pt;}
.y10a{bottom:941.413333pt;}
.ye1{bottom:948.293333pt;}
.y30{bottom:949.093333pt;}
.y5b{bottom:950.853333pt;}
.y90{bottom:951.973333pt;}
.y5{bottom:959.333333pt;}
.y109{bottom:961.413333pt;}
.y8f{bottom:966.693333pt;}
.yb4{bottom:970.373333pt;}
.y2f{bottom:975.973333pt;}
.y5a{bottom:978.533333pt;}
.y108{bottom:979.173333pt;}
.yb3{bottom:980.933333pt;}
.y8e{bottom:981.413333pt;}
.h9{height:9.753750pt;}
.h3{height:47.621250pt;}
.h2{height:52.785000pt;}
.h7{height:56.281250pt;}
.h6{height:57.375000pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h4{height:76.308750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x3{left:109.151988pt;}
.x5{left:132.191988pt;}
.x4{left:193.946655pt;}
.x6{left:197.626655pt;}
.x7{left:239.586655pt;}
.xa{left:269.346655pt;}
.x9{left:283.746655pt;}
.x8{left:321.826655pt;}
.xb{left:355.906655pt;}
.x2{left:709.119988pt;}
}




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