
    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_de1aded3a67539b152dde146.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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6632c8b0e39b23c021240ef3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_2f4c41186369be5b748c9f43.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_107118f947e5b69493f693a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_579623bc6b873867a8eaa304.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1728290422782d67792709c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_e7ccd95a1079a84e1cfe7810.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891602;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v5{vertical-align:-27.360000px;}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.942000px;}
.lse{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.223800px;}
.ls16{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.058320px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.ls12{letter-spacing:1.080000px;}
.ls14{letter-spacing:2.160000px;}
.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;}
}
.ws7{word-spacing:-23.940000px;}
.ws10{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.568000px;}
.wsd{word-spacing:-17.064000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.733600px;}
.ws11{word-spacing:-13.447440px;}
.ws5{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.105360px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws9{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._a{margin-left:-8.671920px;}
._d{margin-left:-6.224400px;}
._11{margin-left:-4.788000px;}
._9{margin-left:-3.715200px;}
._13{margin-left:-2.610720px;}
._4{margin-left:-1.080000px;}
._0{width:1.379520px;}
._b{width:3.219360px;}
._12{width:4.484880px;}
._10{width:5.821200px;}
._16{width:6.912000px;}
._17{width:7.930080px;}
._18{width:9.095040px;}
._f{width:10.226880px;}
._7{width:11.952000px;}
._8{width:13.386240px;}
._19{width:14.544000px;}
._15{width:15.552000px;}
._6{width:16.676400px;}
._1c{width:19.356480px;}
._e{width:20.874240px;}
._1d{width:21.977760px;}
._20{width:25.128000px;}
._1e{width:27.000000px;}
._1f{width:28.008000px;}
._21{width:29.160000px;}
._22{width:30.684000px;}
._26{width:34.692000px;}
._25{width:35.868000px;}
._23{width:38.304000px;}
._24{width:39.312000px;}
._27{width:43.560000px;}
._1b{width:106.848000px;}
._14{width:264.757200px;}
._5{width:894.041520px;}
._c{width:973.776000px;}
._1{width:993.234240px;}
._2{width:1347.594240px;}
._1a{width:2569.416000px;}
._3{width:2704.056000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:3.960000px;}
.y3d{bottom:3.996000px;}
.y92{bottom:14.220000px;}
.y95{bottom:14.400000px;}
.y93{bottom:14.940000px;}
.y9e{bottom:16.920000px;}
.yb9{bottom:24.660000px;}
.y99{bottom:29.700000px;}
.y98{bottom:45.360000px;}
.y4{bottom:52.920000px;}
.ybb{bottom:66.060000px;}
.y3c{bottom:66.780000px;}
.ybf{bottom:86.760000px;}
.yc4{bottom:86.790000px;}
.yc3{bottom:107.310000px;}
.ybe{bottom:107.505000px;}
.y3a{bottom:110.376000px;}
.y7f{bottom:123.336000px;}
.y5c{bottom:124.596000px;}
.y75{bottom:125.496000px;}
.yc2{bottom:128.010000px;}
.y39{bottom:131.076000px;}
.y90{bottom:135.756000px;}
.yb7{bottom:141.876000px;}
.y7e{bottom:144.036000px;}
.y5b{bottom:145.296000px;}
.y74{bottom:146.196000px;}
.y38{bottom:151.770000px;}
.y8f{bottom:156.450000px;}
.yb6{bottom:162.570000px;}
.y7d{bottom:164.730000px;}
.y5a{bottom:165.990000px;}
.y73{bottom:166.890000px;}
.y37{bottom:172.470000px;}
.y8e{bottom:177.150000px;}
.yb5{bottom:183.270000px;}
.y7c{bottom:185.430000px;}
.y59{bottom:186.690000px;}
.y72{bottom:187.590000px;}
.y36{bottom:193.170000px;}
.y8d{bottom:197.850000px;}
.yb4{bottom:203.970000px;}
.y7b{bottom:206.130000px;}
.y58{bottom:207.390000px;}
.y71{bottom:208.290000px;}
.y35{bottom:213.870000px;}
.y8c{bottom:218.550000px;}
.y7a{bottom:223.590000px;}
.yb3{bottom:224.670000px;}
.yd3{bottom:226.830000px;}
.y57{bottom:228.090000px;}
.y70{bottom:228.990000px;}
.y34{bottom:234.570000px;}
.y8b{bottom:239.250000px;}
.y79{bottom:244.290000px;}
.yb2{bottom:245.370000px;}
.yd2{bottom:247.530000px;}
.y56{bottom:248.790000px;}
.y6f{bottom:249.690000px;}
.y33{bottom:255.270000px;}
.y8a{bottom:259.950000px;}
.y78{bottom:264.990000px;}
.y55{bottom:265.530000px;}
.yb1{bottom:266.070000px;}
.yd1{bottom:268.230000px;}
.y6e{bottom:270.390000px;}
.y32{bottom:275.970000px;}
.y89{bottom:280.650000px;}
.y76{bottom:286.410000px;}
.yb0{bottom:286.770000px;}
.yd0{bottom:288.750000px;}
.y6d{bottom:291.090000px;}
.y31{bottom:296.670000px;}
.y88{bottom:301.350000px;}
.yaf{bottom:307.470000px;}
.ycf{bottom:309.450000px;}
.y6c{bottom:311.790000px;}
.y30{bottom:317.370000px;}
.y87{bottom:322.050000px;}
.yae{bottom:328.170000px;}
.yce{bottom:330.150000px;}
.y6b{bottom:332.490000px;}
.y2f{bottom:338.115000px;}
.y86{bottom:342.795000px;}
.yad{bottom:348.915000px;}
.ycd{bottom:350.895000px;}
.y6a{bottom:353.235000px;}
.y2e{bottom:358.815000px;}
.y85{bottom:363.495000px;}
.yac{bottom:369.615000px;}
.ycc{bottom:371.595000px;}
.y69{bottom:373.935000px;}
.y2d{bottom:378.795000px;}
.y84{bottom:384.195000px;}
.yab{bottom:390.315000px;}
.ycb{bottom:392.295000px;}
.y68{bottom:394.635000px;}
.y2c{bottom:396.075000px;}
.y83{bottom:400.935000px;}
.yaa{bottom:411.015000px;}
.yca{bottom:412.995000px;}
.y2b{bottom:413.175000px;}
.y67{bottom:415.335000px;}
.y2a{bottom:430.455000px;}
.ya9{bottom:431.715000px;}
.yc9{bottom:433.695000px;}
.y66{bottom:436.035000px;}
.y29{bottom:447.735000px;}
.ya8{bottom:452.415000px;}
.yc8{bottom:454.395000px;}
.y65{bottom:456.735000px;}
.y28{bottom:465.015000px;}
.ya7{bottom:473.115000px;}
.yc7{bottom:475.095000px;}
.y64{bottom:477.435000px;}
.y27{bottom:482.295000px;}
.ya6{bottom:493.815000px;}
.yc6{bottom:495.795000px;}
.y63{bottom:498.135000px;}
.y26{bottom:499.575000px;}
.ya5{bottom:514.515000px;}
.yc5{bottom:516.495000px;}
.y25{bottom:516.675000px;}
.y62{bottom:518.835000px;}
.y24{bottom:533.955000px;}
.yc1{bottom:534.135000px;}
.ya4{bottom:535.215000px;}
.y61{bottom:539.535000px;}
.y23{bottom:556.455000px;}
.y60{bottom:560.235000px;}
.ya3{bottom:562.755000px;}
.y22{bottom:568.515000px;}
.ya2{bottom:576.615000px;}
.y5f{bottom:580.935000px;}
.y21{bottom:591.015000px;}
.ya1{bottom:597.315000px;}
.y5e{bottom:601.635000px;}
.y20{bottom:603.075000px;}
.ya0{bottom:618.045000px;}
.y5d{bottom:622.365000px;}
.y1f{bottom:625.425000px;}
.y9f{bottom:635.505000px;}
.y1e{bottom:637.485000px;}
.y54{bottom:643.065000px;}
.y1d{bottom:659.985000px;}
.y53{bottom:663.765000px;}
.y9d{bottom:666.645000px;}
.y1c{bottom:672.045000px;}
.yc0{bottom:678.885000px;}
.y52{bottom:684.465000px;}
.y1b{bottom:694.545000px;}
.y9c{bottom:697.605000px;}
.y51{bottom:705.165000px;}
.y1a{bottom:707.145000px;}
.y82{bottom:720.825000px;}
.y50{bottom:725.865000px;}
.y19{bottom:727.845000px;}
.y9b{bottom:728.745000px;}
.y81{bottom:741.525000px;}
.y4f{bottom:746.565000px;}
.y18{bottom:748.545000px;}
.y80{bottom:758.265000px;}
.y9a{bottom:759.705000px;}
.y4e{bottom:767.265000px;}
.y17{bottom:769.245000px;}
.ybd{bottom:782.385000px;}
.y4d{bottom:787.965000px;}
.y16{bottom:789.945000px;}
.y97{bottom:790.845000px;}
.y4c{bottom:808.665000px;}
.y15{bottom:809.925000px;}
.y14{bottom:829.365000px;}
.y4b{bottom:850.065000px;}
.y96{bottom:852.945000px;}
.y13{bottom:856.905000px;}
.y4a{bottom:870.810000px;}
.y12{bottom:884.490000px;}
.y94{bottom:884.670000px;}
.y49{bottom:891.510000px;}
.ybc{bottom:906.630000px;}
.y11{bottom:910.050000px;}
.y48{bottom:912.210000px;}
.y91{bottom:916.530000px;}
.y10{bottom:927.330000px;}
.y47{bottom:932.910000px;}
.yf{bottom:944.610000px;}
.y46{bottom:953.610000px;}
.ye{bottom:961.890000px;}
.y45{bottom:974.310000px;}
.yd{bottom:978.990000px;}
.yba{bottom:989.430000px;}
.y44{bottom:995.010000px;}
.yc{bottom:996.270000px;}
.yb{bottom:1015.710000px;}
.ya{bottom:1032.270000px;}
.y43{bottom:1036.410000px;}
.y9{bottom:1046.850000px;}
.y42{bottom:1057.110000px;}
.y8{bottom:1066.650000px;}
.yb8{bottom:1072.950000px;}
.y41{bottom:1077.810000px;}
.y7{bottom:1087.350000px;}
.y40{bottom:1098.510000px;}
.y6{bottom:1109.310000px;}
.y3f{bottom:1119.210000px;}
.y5{bottom:1137.780000px;}
.y3e{bottom:1139.940000px;}
.y3{bottom:1160.280000px;}
.y2{bottom:1177.380000px;}
.y1{bottom:1194.660000px;}
.y3b{bottom:1195.740000px;}
.hb{height:18.216000px;}
.hd{height:20.700000px;}
.h13{height:30.960000px;}
.h10{height:30.996000px;}
.hf{height:31.140000px;}
.he{height:32.400000px;}
.ha{height:33.032813px;}
.h7{height:40.985156px;}
.h16{height:41.400000px;}
.h15{height:43.246406px;}
.h6{height:50.772656px;}
.h2{height:53.573906px;}
.h3{height:59.439023px;}
.hc{height:61.171875px;}
.h11{height:62.100000px;}
.h8{height:63.000000px;}
.h4{height:64.546875px;}
.h9{height:65.970000px;}
.h12{height:70.606406px;}
.h14{height:70.726406px;}
.h17{height:82.800000px;}
.h5{height:83.790000px;}
.h19{height:103.500000px;}
.h18{height:124.236000px;}
.h1a{height:144.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:7.560000px;}
.w16{width:15.300000px;}
.w7{width:73.440000px;}
.w15{width:109.620000px;}
.w10{width:114.660000px;}
.we{width:116.856000px;}
.wf{width:119.196000px;}
.w13{width:120.816000px;}
.wd{width:127.620000px;}
.wa{width:134.676000px;}
.w8{width:134.856000px;}
.w9{width:135.000000px;}
.w14{width:141.696000px;}
.w12{width:142.056000px;}
.w11{width:166.320000px;}
.w4{width:201.810000px;}
.w5{width:208.290000px;}
.wc{width:233.850000px;}
.wb{width:244.470000px;}
.w6{width:269.670000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:5.400000px;}
.xb{left:8.100000px;}
.x10{left:9.180000px;}
.x31{left:13.320000px;}
.x30{left:17.280000px;}
.x29{left:18.540000px;}
.x2b{left:19.980000px;}
.x2a{left:22.140000px;}
.x15{left:23.220000px;}
.x32{left:25.020000px;}
.x28{left:26.100000px;}
.x20{left:28.980000px;}
.x18{left:32.220000px;}
.x22{left:38.340000px;}
.x13{left:39.960000px;}
.x25{left:41.580000px;}
.xd{left:43.020000px;}
.x27{left:47.160000px;}
.x24{left:48.240000px;}
.x12{left:49.320000px;}
.x23{left:50.580000px;}
.x16{left:53.820000px;}
.x26{left:55.080000px;}
.x17{left:58.500000px;}
.x19{left:63.000000px;}
.x1e{left:79.380000px;}
.x1c{left:81.180000px;}
.xf{left:97.380000px;}
.x5{left:106.235987px;}
.x33{left:148.715987px;}
.x4{left:194.789987px;}
.x8{left:223.949987px;}
.x2c{left:272.550000px;}
.x6{left:277.049987px;}
.xc{left:308.055000px;}
.x1{left:315.074987px;}
.x2{left:374.114987px;}
.x11{left:381.495000px;}
.x3{left:394.634987px;}
.x2d{left:414.615000px;}
.x9{left:430.815000px;}
.x1f{left:435.675000px;}
.x7{left:446.474987px;}
.xe{left:516.345000px;}
.x2e{left:535.425000px;}
.x1d{left:552.525000px;}
.x14{left:651.345000px;}
.x21{left:671.730000px;}
.x2f{left:677.130000px;}
.x1a{left:756.509987px;}
.xa{left:779.009987px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.837333pt;}
.lse{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.198933pt;}
.ls16{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.920000pt;}
.ws7{word-spacing:-21.280000pt;}
.ws10{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.616000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.096533pt;}
.ws11{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.760320pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws9{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._a{margin-left:-7.708373pt;}
._d{margin-left:-5.532800pt;}
._11{margin-left:-4.256000pt;}
._9{margin-left:-3.302400pt;}
._13{margin-left:-2.320640pt;}
._4{margin-left:-0.960000pt;}
._0{width:1.226240pt;}
._b{width:2.861653pt;}
._12{width:3.986560pt;}
._10{width:5.174400pt;}
._16{width:6.144000pt;}
._17{width:7.048960pt;}
._18{width:8.084480pt;}
._f{width:9.090560pt;}
._7{width:10.624000pt;}
._8{width:11.898880pt;}
._19{width:12.928000pt;}
._15{width:13.824000pt;}
._6{width:14.823467pt;}
._1c{width:17.205760pt;}
._e{width:18.554880pt;}
._1d{width:19.535787pt;}
._20{width:22.336000pt;}
._1e{width:24.000000pt;}
._1f{width:24.896000pt;}
._21{width:25.920000pt;}
._22{width:27.274667pt;}
._26{width:30.837333pt;}
._25{width:31.882667pt;}
._23{width:34.048000pt;}
._24{width:34.944000pt;}
._27{width:38.720000pt;}
._1b{width:94.976000pt;}
._14{width:235.339733pt;}
._5{width:794.703573pt;}
._c{width:865.578667pt;}
._1{width:882.874880pt;}
._2{width:1197.861547pt;}
._1a{width:2283.925333pt;}
._3{width:2403.605333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:3.520000pt;}
.y3d{bottom:3.552000pt;}
.y92{bottom:12.640000pt;}
.y95{bottom:12.800000pt;}
.y93{bottom:13.280000pt;}
.y9e{bottom:15.040000pt;}
.yb9{bottom:21.920000pt;}
.y99{bottom:26.400000pt;}
.y98{bottom:40.320000pt;}
.y4{bottom:47.040000pt;}
.ybb{bottom:58.720000pt;}
.y3c{bottom:59.360000pt;}
.ybf{bottom:77.120000pt;}
.yc4{bottom:77.146667pt;}
.yc3{bottom:95.386667pt;}
.ybe{bottom:95.560000pt;}
.y3a{bottom:98.112000pt;}
.y7f{bottom:109.632000pt;}
.y5c{bottom:110.752000pt;}
.y75{bottom:111.552000pt;}
.yc2{bottom:113.786667pt;}
.y39{bottom:116.512000pt;}
.y90{bottom:120.672000pt;}
.yb7{bottom:126.112000pt;}
.y7e{bottom:128.032000pt;}
.y5b{bottom:129.152000pt;}
.y74{bottom:129.952000pt;}
.y38{bottom:134.906667pt;}
.y8f{bottom:139.066667pt;}
.yb6{bottom:144.506667pt;}
.y7d{bottom:146.426667pt;}
.y5a{bottom:147.546667pt;}
.y73{bottom:148.346667pt;}
.y37{bottom:153.306667pt;}
.y8e{bottom:157.466667pt;}
.yb5{bottom:162.906667pt;}
.y7c{bottom:164.826667pt;}
.y59{bottom:165.946667pt;}
.y72{bottom:166.746667pt;}
.y36{bottom:171.706667pt;}
.y8d{bottom:175.866667pt;}
.yb4{bottom:181.306667pt;}
.y7b{bottom:183.226667pt;}
.y58{bottom:184.346667pt;}
.y71{bottom:185.146667pt;}
.y35{bottom:190.106667pt;}
.y8c{bottom:194.266667pt;}
.y7a{bottom:198.746667pt;}
.yb3{bottom:199.706667pt;}
.yd3{bottom:201.626667pt;}
.y57{bottom:202.746667pt;}
.y70{bottom:203.546667pt;}
.y34{bottom:208.506667pt;}
.y8b{bottom:212.666667pt;}
.y79{bottom:217.146667pt;}
.yb2{bottom:218.106667pt;}
.yd2{bottom:220.026667pt;}
.y56{bottom:221.146667pt;}
.y6f{bottom:221.946667pt;}
.y33{bottom:226.906667pt;}
.y8a{bottom:231.066667pt;}
.y78{bottom:235.546667pt;}
.y55{bottom:236.026667pt;}
.yb1{bottom:236.506667pt;}
.yd1{bottom:238.426667pt;}
.y6e{bottom:240.346667pt;}
.y32{bottom:245.306667pt;}
.y89{bottom:249.466667pt;}
.y76{bottom:254.586667pt;}
.yb0{bottom:254.906667pt;}
.yd0{bottom:256.666667pt;}
.y6d{bottom:258.746667pt;}
.y31{bottom:263.706667pt;}
.y88{bottom:267.866667pt;}
.yaf{bottom:273.306667pt;}
.ycf{bottom:275.066667pt;}
.y6c{bottom:277.146667pt;}
.y30{bottom:282.106667pt;}
.y87{bottom:286.266667pt;}
.yae{bottom:291.706667pt;}
.yce{bottom:293.466667pt;}
.y6b{bottom:295.546667pt;}
.y2f{bottom:300.546667pt;}
.y86{bottom:304.706667pt;}
.yad{bottom:310.146667pt;}
.ycd{bottom:311.906667pt;}
.y6a{bottom:313.986667pt;}
.y2e{bottom:318.946667pt;}
.y85{bottom:323.106667pt;}
.yac{bottom:328.546667pt;}
.ycc{bottom:330.306667pt;}
.y69{bottom:332.386667pt;}
.y2d{bottom:336.706667pt;}
.y84{bottom:341.506667pt;}
.yab{bottom:346.946667pt;}
.ycb{bottom:348.706667pt;}
.y68{bottom:350.786667pt;}
.y2c{bottom:352.066667pt;}
.y83{bottom:356.386667pt;}
.yaa{bottom:365.346667pt;}
.yca{bottom:367.106667pt;}
.y2b{bottom:367.266667pt;}
.y67{bottom:369.186667pt;}
.y2a{bottom:382.626667pt;}
.ya9{bottom:383.746667pt;}
.yc9{bottom:385.506667pt;}
.y66{bottom:387.586667pt;}
.y29{bottom:397.986667pt;}
.ya8{bottom:402.146667pt;}
.yc8{bottom:403.906667pt;}
.y65{bottom:405.986667pt;}
.y28{bottom:413.346667pt;}
.ya7{bottom:420.546667pt;}
.yc7{bottom:422.306667pt;}
.y64{bottom:424.386667pt;}
.y27{bottom:428.706667pt;}
.ya6{bottom:438.946667pt;}
.yc6{bottom:440.706667pt;}
.y63{bottom:442.786667pt;}
.y26{bottom:444.066667pt;}
.ya5{bottom:457.346667pt;}
.yc5{bottom:459.106667pt;}
.y25{bottom:459.266667pt;}
.y62{bottom:461.186667pt;}
.y24{bottom:474.626667pt;}
.yc1{bottom:474.786667pt;}
.ya4{bottom:475.746667pt;}
.y61{bottom:479.586667pt;}
.y23{bottom:494.626667pt;}
.y60{bottom:497.986667pt;}
.ya3{bottom:500.226667pt;}
.y22{bottom:505.346667pt;}
.ya2{bottom:512.546667pt;}
.y5f{bottom:516.386667pt;}
.y21{bottom:525.346667pt;}
.ya1{bottom:530.946667pt;}
.y5e{bottom:534.786667pt;}
.y20{bottom:536.066667pt;}
.ya0{bottom:549.373333pt;}
.y5d{bottom:553.213333pt;}
.y1f{bottom:555.933333pt;}
.y9f{bottom:564.893333pt;}
.y1e{bottom:566.653333pt;}
.y54{bottom:571.613333pt;}
.y1d{bottom:586.653333pt;}
.y53{bottom:590.013333pt;}
.y9d{bottom:592.573333pt;}
.y1c{bottom:597.373333pt;}
.yc0{bottom:603.453333pt;}
.y52{bottom:608.413333pt;}
.y1b{bottom:617.373333pt;}
.y9c{bottom:620.093333pt;}
.y51{bottom:626.813333pt;}
.y1a{bottom:628.573333pt;}
.y82{bottom:640.733333pt;}
.y50{bottom:645.213333pt;}
.y19{bottom:646.973333pt;}
.y9b{bottom:647.773333pt;}
.y81{bottom:659.133333pt;}
.y4f{bottom:663.613333pt;}
.y18{bottom:665.373333pt;}
.y80{bottom:674.013333pt;}
.y9a{bottom:675.293333pt;}
.y4e{bottom:682.013333pt;}
.y17{bottom:683.773333pt;}
.ybd{bottom:695.453333pt;}
.y4d{bottom:700.413333pt;}
.y16{bottom:702.173333pt;}
.y97{bottom:702.973333pt;}
.y4c{bottom:718.813333pt;}
.y15{bottom:719.933333pt;}
.y14{bottom:737.213333pt;}
.y4b{bottom:755.613333pt;}
.y96{bottom:758.173333pt;}
.y13{bottom:761.693333pt;}
.y4a{bottom:774.053333pt;}
.y12{bottom:786.213333pt;}
.y94{bottom:786.373333pt;}
.y49{bottom:792.453333pt;}
.ybc{bottom:805.893333pt;}
.y11{bottom:808.933333pt;}
.y48{bottom:810.853333pt;}
.y91{bottom:814.693333pt;}
.y10{bottom:824.293333pt;}
.y47{bottom:829.253333pt;}
.yf{bottom:839.653333pt;}
.y46{bottom:847.653333pt;}
.ye{bottom:855.013333pt;}
.y45{bottom:866.053333pt;}
.yd{bottom:870.213333pt;}
.yba{bottom:879.493333pt;}
.y44{bottom:884.453333pt;}
.yc{bottom:885.573333pt;}
.yb{bottom:902.853333pt;}
.ya{bottom:917.573333pt;}
.y43{bottom:921.253333pt;}
.y9{bottom:930.533333pt;}
.y42{bottom:939.653333pt;}
.y8{bottom:948.133333pt;}
.yb8{bottom:953.733333pt;}
.y41{bottom:958.053333pt;}
.y7{bottom:966.533333pt;}
.y40{bottom:976.453333pt;}
.y6{bottom:986.053333pt;}
.y3f{bottom:994.853333pt;}
.y5{bottom:1011.360000pt;}
.y3e{bottom:1013.280000pt;}
.y3{bottom:1031.360000pt;}
.y2{bottom:1046.560000pt;}
.y1{bottom:1061.920000pt;}
.y3b{bottom:1062.880000pt;}
.hb{height:16.192000pt;}
.hd{height:18.400000pt;}
.h13{height:27.520000pt;}
.h10{height:27.552000pt;}
.hf{height:27.680000pt;}
.he{height:28.800000pt;}
.ha{height:29.362500pt;}
.h7{height:36.431250pt;}
.h16{height:36.800000pt;}
.h15{height:38.441250pt;}
.h6{height:45.131250pt;}
.h2{height:47.621250pt;}
.h3{height:52.834688pt;}
.hc{height:54.375000pt;}
.h11{height:55.200000pt;}
.h8{height:56.000000pt;}
.h4{height:57.375000pt;}
.h9{height:58.640000pt;}
.h12{height:62.761250pt;}
.h14{height:62.867917pt;}
.h17{height:73.600000pt;}
.h5{height:74.480000pt;}
.h19{height:92.000000pt;}
.h18{height:110.432000pt;}
.h1a{height:128.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:6.720000pt;}
.w16{width:13.600000pt;}
.w7{width:65.280000pt;}
.w15{width:97.440000pt;}
.w10{width:101.920000pt;}
.we{width:103.872000pt;}
.wf{width:105.952000pt;}
.w13{width:107.392000pt;}
.wd{width:113.440000pt;}
.wa{width:119.712000pt;}
.w8{width:119.872000pt;}
.w9{width:120.000000pt;}
.w14{width:125.952000pt;}
.w12{width:126.272000pt;}
.w11{width:147.840000pt;}
.w4{width:179.386667pt;}
.w5{width:185.146667pt;}
.wc{width:207.866667pt;}
.wb{width:217.306667pt;}
.w6{width:239.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:4.800000pt;}
.xb{left:7.200000pt;}
.x10{left:8.160000pt;}
.x31{left:11.840000pt;}
.x30{left:15.360000pt;}
.x29{left:16.480000pt;}
.x2b{left:17.760000pt;}
.x2a{left:19.680000pt;}
.x15{left:20.640000pt;}
.x32{left:22.240000pt;}
.x28{left:23.200000pt;}
.x20{left:25.760000pt;}
.x18{left:28.640000pt;}
.x22{left:34.080000pt;}
.x13{left:35.520000pt;}
.x25{left:36.960000pt;}
.xd{left:38.240000pt;}
.x27{left:41.920000pt;}
.x24{left:42.880000pt;}
.x12{left:43.840000pt;}
.x23{left:44.960000pt;}
.x16{left:47.840000pt;}
.x26{left:48.960000pt;}
.x17{left:52.000000pt;}
.x19{left:56.000000pt;}
.x1e{left:70.560000pt;}
.x1c{left:72.160000pt;}
.xf{left:86.560000pt;}
.x5{left:94.431988pt;}
.x33{left:132.191988pt;}
.x4{left:173.146655pt;}
.x8{left:199.066655pt;}
.x2c{left:242.266667pt;}
.x6{left:246.266655pt;}
.xc{left:273.826667pt;}
.x1{left:280.066655pt;}
.x2{left:332.546655pt;}
.x11{left:339.106667pt;}
.x3{left:350.786655pt;}
.x2d{left:368.546667pt;}
.x9{left:382.946667pt;}
.x1f{left:387.266667pt;}
.x7{left:396.866655pt;}
.xe{left:458.973333pt;}
.x2e{left:475.933333pt;}
.x1d{left:491.133333pt;}
.x14{left:578.973333pt;}
.x21{left:597.093333pt;}
.x2f{left:601.893333pt;}
.x1a{left:672.453322pt;}
.xa{left:692.453322pt;}
}




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