
    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_9f99d7e78471ff2f0ab4b38c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d998df655259137c65afee44.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4aa7e6f68eea1cffdedc0c53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_81b82f9142242502a5a19923.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_a3a7bbc8c7ac82094ed41073.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.924000px;}
.ls12{letter-spacing:-0.774000px;}
.ls1e{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.457800px;}
.ls17{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.208200px;}
.ls10{letter-spacing:-0.206400px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.511800px;}
.lsb{letter-spacing:0.756000px;}
.ls11{letter-spacing:0.828000px;}
.ls2{letter-spacing:0.900000px;}
.ls29{letter-spacing:1.566720px;}
.ls1a{letter-spacing:1.620000px;}
.ls5{letter-spacing:2.340000px;}
.ls19{letter-spacing:3.780000px;}
.ls22{letter-spacing:5.220000px;}
.ls15{letter-spacing:7.866720px;}
.ls28{letter-spacing:10.260000px;}
.ls2c{letter-spacing:11.466720px;}
.ls1b{letter-spacing:12.420000px;}
.ls1f{letter-spacing:13.860000px;}
.ls1d{letter-spacing:15.300000px;}
.ls1c{letter-spacing:16.020000px;}
.ls4{letter-spacing:18.180000px;}
.ls20{letter-spacing:19.620000px;}
.ls23{letter-spacing:22.986720px;}
.ls25{letter-spacing:23.706720px;}
.ls24{letter-spacing:27.306720px;}
.ls0{letter-spacing:31.626720px;}
.ls2b{letter-spacing:41.706720px;}
.ls2a{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsa{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._18{margin-left:-15.312480px;}
._19{margin-left:-11.546640px;}
._7{margin-left:-9.325680px;}
._8{margin-left:-4.743840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.917200px;}
._f{width:3.978000px;}
._9{width:5.169360px;}
._a{width:6.240240px;}
._c{width:7.410240px;}
._11{width:8.485920px;}
._12{width:10.039680px;}
._10{width:11.354400px;}
._e{width:12.430080px;}
._d{width:13.864320px;}
._1a{width:16.300080px;}
._14{width:17.354880px;}
._13{width:18.585360px;}
._15{width:19.720800px;}
._16{width:21.060000px;}
._17{width:22.433520px;}
._1c{width:24.262560px;}
._23{width:25.647600px;}
._21{width:26.951760px;}
._20{width:28.037520px;}
._1f{width:29.521440px;}
._1b{width:33.883920px;}
._1e{width:43.565040px;}
._22{width:65.377440px;}
._1d{width:67.289760px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y87{bottom:5.760000px;}
.y8b{bottom:5.940000px;}
.yc4{bottom:10.800000px;}
.ya5{bottom:25.560000px;}
.y9a{bottom:25.590000px;}
.y8f{bottom:25.740000px;}
.y9c{bottom:26.460000px;}
.yc3{bottom:30.600000px;}
.yc0{bottom:34.950000px;}
.ya4{bottom:45.360000px;}
.y99{bottom:45.390000px;}
.y8e{bottom:45.540000px;}
.y93{bottom:45.585000px;}
.yc2{bottom:50.430000px;}
.y6{bottom:60.300000px;}
.ya3{bottom:65.160000px;}
.y8d{bottom:65.340000px;}
.y98{bottom:65.370000px;}
.y92{bottom:65.385000px;}
.yc1{bottom:70.410000px;}
.ya2{bottom:85.140000px;}
.y97{bottom:85.170000px;}
.y91{bottom:85.185000px;}
.yb9{bottom:88.380000px;}
.y35{bottom:89.820000px;}
.ybe{bottom:94.320000px;}
.y6f{bottom:95.040000px;}
.y9b{bottom:102.420000px;}
.yb4{bottom:103.140000px;}
.ya1{bottom:104.940000px;}
.y96{bottom:104.970000px;}
.ya8{bottom:104.985000px;}
.yb3{bottom:105.165000px;}
.y34{bottom:109.620000px;}
.ybd{bottom:114.300000px;}
.y33{bottom:114.840000px;}
.ybf{bottom:120.780000px;}
.y9d{bottom:122.940000px;}
.ya0{bottom:124.740000px;}
.y95{bottom:124.770000px;}
.ya7{bottom:124.785000px;}
.yab{bottom:124.920000px;}
.yb8{bottom:124.950000px;}
.yb2{bottom:124.965000px;}
.y85{bottom:128.160000px;}
.y32{bottom:129.600000px;}
.ybc{bottom:134.100000px;}
.y6e{bottom:134.820000px;}
.y88{bottom:143.640000px;}
.yb0{bottom:144.540000px;}
.yaa{bottom:144.720000px;}
.yb7{bottom:144.750000px;}
.y31{bottom:149.400000px;}
.ybb{bottom:153.930000px;}
.y30{bottom:154.650000px;}
.yaf{bottom:164.520000px;}
.yb6{bottom:164.550000px;}
.y69{bottom:167.970000px;}
.y2f{bottom:169.230000px;}
.yba{bottom:173.730000px;}
.yae{bottom:184.320000px;}
.yb5{bottom:184.350000px;}
.y2e{bottom:189.030000px;}
.y68{bottom:193.530000px;}
.y2d{bottom:194.250000px;}
.yad{bottom:204.120000px;}
.y2c{bottom:207.570000px;}
.y7f{bottom:208.830000px;}
.y67{bottom:213.510000px;}
.y7e{bottom:228.810000px;}
.y66{bottom:233.310000px;}
.y7d{bottom:234.030000px;}
.y7c{bottom:248.610000px;}
.y65{bottom:253.110000px;}
.y7b{bottom:268.410000px;}
.y64{bottom:272.910000px;}
.y7a{bottom:273.630000px;}
.y94{bottom:283.170000px;}
.y83{bottom:286.950000px;}
.y79{bottom:288.210000px;}
.y63{bottom:292.710000px;}
.y2b{bottom:301.170000px;}
.yb1{bottom:302.250000px;}
.y78{bottom:308.010000px;}
.y62{bottom:312.690000px;}
.y77{bottom:313.230000px;}
.y2a{bottom:320.970000px;}
.y76{bottom:326.550000px;}
.y61{bottom:332.490000px;}
.y29{bottom:340.950000px;}
.y60{bottom:352.290000px;}
.y75{bottom:357.510000px;}
.y28{bottom:360.750000px;}
.y90{bottom:363.270000px;}
.y5f{bottom:372.090000px;}
.y27{bottom:380.550000px;}
.y5e{bottom:391.890000px;}
.y26{bottom:400.350000px;}
.y89{bottom:405.615000px;}
.y5d{bottom:411.915000px;}
.y25{bottom:420.195000px;}
.y5c{bottom:431.715000px;}
.y6d{bottom:436.935000px;}
.y24{bottom:440.175000px;}
.yac{bottom:441.975000px;}
.y5b{bottom:451.515000px;}
.y74{bottom:456.735000px;}
.y22{bottom:459.975000px;}
.y8c{bottom:463.215000px;}
.y23{bottom:465.195000px;}
.y5a{bottom:471.315000px;}
.y21{bottom:479.775000px;}
.y59{bottom:491.115000px;}
.y1f{bottom:499.575000px;}
.y20{bottom:504.795000px;}
.y58{bottom:511.095000px;}
.y1e{bottom:519.375000px;}
.y57{bottom:530.895000px;}
.y1c{bottom:539.355000px;}
.y8a{bottom:543.315000px;}
.y1d{bottom:544.575000px;}
.y56{bottom:550.695000px;}
.y1b{bottom:559.155000px;}
.y86{bottom:564.015000px;}
.y55{bottom:570.495000px;}
.y82{bottom:575.715000px;}
.y1a{bottom:578.955000px;}
.y54{bottom:590.295000px;}
.y53{bottom:610.275000px;}
.y81{bottom:615.495000px;}
.y19{bottom:620.895000px;}
.y52{bottom:630.075000px;}
.y73{bottom:635.295000px;}
.y18{bottom:649.725000px;}
.y51{bottom:649.905000px;}
.ya9{bottom:660.885000px;}
.y17{bottom:669.525000px;}
.y50{bottom:669.705000px;}
.y6c{bottom:674.925000px;}
.y16{bottom:689.505000px;}
.y15{bottom:709.305000px;}
.y4f{bottom:709.485000px;}
.y14{bottom:729.105000px;}
.y4e{bottom:729.285000px;}
.y6b{bottom:734.505000px;}
.y13{bottom:748.905000px;}
.y4d{bottom:749.085000px;}
.y72{bottom:754.305000px;}
.y12{bottom:768.705000px;}
.y4c{bottom:768.885000px;}
.y6a{bottom:774.105000px;}
.y11{bottom:788.685000px;}
.y10{bottom:808.485000px;}
.y4b{bottom:808.665000px;}
.y84{bottom:813.885000px;}
.ya6{bottom:820.365000px;}
.yf{bottom:828.285000px;}
.y4a{bottom:828.465000px;}
.ye{bottom:848.085000px;}
.y49{bottom:848.265000px;}
.yd{bottom:867.885000px;}
.y48{bottom:868.065000px;}
.y47{bottom:887.865000px;}
.yc{bottom:890.025000px;}
.y46{bottom:907.890000px;}
.y71{bottom:913.110000px;}
.yb{bottom:915.090000px;}
.y45{bottom:927.690000px;}
.ya{bottom:930.210000px;}
.y44{bottom:947.490000px;}
.y9{bottom:951.630000px;}
.y9f{bottom:960.090000px;}
.y43{bottom:967.290000px;}
.y8{bottom:975.030000px;}
.y42{bottom:987.090000px;}
.y80{bottom:992.310000px;}
.y7{bottom:1006.710000px;}
.y41{bottom:1007.070000px;}
.y40{bottom:1026.870000px;}
.y3f{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.y3e{bottom:1066.470000px;}
.y4{bottom:1081.950000px;}
.y3c{bottom:1086.270000px;}
.y3d{bottom:1091.490000px;}
.y9e{bottom:1099.590000px;}
.y3b{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y3a{bottom:1126.050000px;}
.y70{bottom:1131.270000px;}
.y2{bottom:1143.690000px;}
.y38{bottom:1145.850000px;}
.y39{bottom:1151.100000px;}
.y37{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y36{bottom:1193.220000px;}
.h1b{height:2.010938px;}
.hd{height:19.800000px;}
.hf{height:19.980000px;}
.h7{height:27.147656px;}
.h13{height:40.500000px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.hb{height:49.255313px;}
.h6{height:53.224453px;}
.ha{height:65.884219px;}
.h2{height:67.565039px;}
.hc{height:67.824844px;}
.h10{height:79.380000px;}
.h14{height:79.416000px;}
.h1a{height:84.456000px;}
.h11{height:99.216000px;}
.h15{height:138.780000px;}
.h12{height:138.816000px;}
.h18{height:138.996000px;}
.h16{height:158.760000px;}
.h19{height:198.390000px;}
.h17{height:218.190000px;}
.he{height:419.655000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.476000px;}
.w5{width:150.660000px;}
.w9{width:210.810000px;}
.w7{width:242.895000px;}
.w6{width:352.875000px;}
.wa{width:581.010000px;}
.w8{width:748.050000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:7.560000px;}
.x3e{left:22.725000px;}
.x41{left:45.900000px;}
.x1{left:54.179987px;}
.xa{left:58.859987px;}
.x24{left:63.719987px;}
.x3f{left:70.199987px;}
.x2{left:75.599987px;}
.x40{left:80.999987px;}
.x3b{left:91.656000px;}
.x37{left:96.515987px;}
.x2f{left:102.815973px;}
.x35{left:107.135987px;}
.x30{left:112.535987px;}
.x36{left:128.555987px;}
.x42{left:190.290000px;}
.x25{left:196.589973px;}
.x26{left:206.309987px;}
.x3c{left:243.030000px;}
.x7{left:246.809973px;}
.x8{left:251.669987px;}
.x2d{left:257.609973px;}
.x2e{left:267.374987px;}
.x9{left:270.074987px;}
.x19{left:286.094973px;}
.x1a{left:295.814987px;}
.x11{left:335.054973px;}
.x12{left:339.914987px;}
.xd{left:365.834973px;}
.x15{left:368.534973px;}
.xe{left:370.694987px;}
.x16{left:373.394987px;}
.x2b{left:418.754973px;}
.x2c{left:428.474987px;}
.x23{left:442.694973px;}
.x13{left:449.024973px;}
.xf{left:451.544973px;}
.x14{left:453.884987px;}
.x10{left:456.404987px;}
.x1f{left:502.304973px;}
.x20{left:512.024987px;}
.x38{left:551.444973px;}
.x31{left:554.684973px;}
.x39{left:561.164987px;}
.x32{left:564.404987px;}
.x5{left:569.804973px;}
.x6{left:574.664987px;}
.x17{left:576.824973px;}
.x18{left:586.544987px;}
.x3d{left:596.805000px;}
.x27{left:602.024973px;}
.x28{left:611.744987px;}
.x33{left:633.929973px;}
.x34{left:643.649987px;}
.x29{left:689.549973px;}
.x2a{left:699.269987px;}
.x3{left:726.089973px;}
.x1d{left:727.349973px;}
.x4{left:730.949987px;}
.x1e{left:737.069987px;}
.xb{left:787.289973px;}
.xc{left:792.149987px;}
.x1b{left:794.849973px;}
.x1c{left:804.569987px;}
.x21{left:829.439973px;}
.x22{left:839.159987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.821333pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.185067pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.454933pt;}
.lsb{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls29{letter-spacing:1.392640pt;}
.ls1a{letter-spacing:1.440000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls19{letter-spacing:3.360000pt;}
.ls22{letter-spacing:4.640000pt;}
.ls15{letter-spacing:6.992640pt;}
.ls28{letter-spacing:9.120000pt;}
.ls2c{letter-spacing:10.192640pt;}
.ls1b{letter-spacing:11.040000pt;}
.ls1f{letter-spacing:12.320000pt;}
.ls1d{letter-spacing:13.600000pt;}
.ls1c{letter-spacing:14.240000pt;}
.ls4{letter-spacing:16.160000pt;}
.ls20{letter-spacing:17.440000pt;}
.ls23{letter-spacing:20.432640pt;}
.ls25{letter-spacing:21.072640pt;}
.ls24{letter-spacing:24.272640pt;}
.ls0{letter-spacing:28.112640pt;}
.ls2b{letter-spacing:37.072640pt;}
.ls2a{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsa{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._18{margin-left:-13.611093pt;}
._19{margin-left:-10.263680pt;}
._7{margin-left:-8.289493pt;}
._8{margin-left:-4.216747pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.593067pt;}
._f{width:3.536000pt;}
._9{width:4.594987pt;}
._a{width:5.546880pt;}
._c{width:6.586880pt;}
._11{width:7.543040pt;}
._12{width:8.924160pt;}
._10{width:10.092800pt;}
._e{width:11.048960pt;}
._d{width:12.323840pt;}
._1a{width:14.488960pt;}
._14{width:15.426560pt;}
._13{width:16.520320pt;}
._15{width:17.529600pt;}
._16{width:18.720000pt;}
._17{width:19.940907pt;}
._1c{width:21.566720pt;}
._23{width:22.797867pt;}
._21{width:23.957120pt;}
._20{width:24.922240pt;}
._1f{width:26.241280pt;}
._1b{width:30.119040pt;}
._1e{width:38.724480pt;}
._22{width:58.113280pt;}
._1d{width:59.813120pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:5.120000pt;}
.y8b{bottom:5.280000pt;}
.yc4{bottom:9.600000pt;}
.ya5{bottom:22.720000pt;}
.y9a{bottom:22.746667pt;}
.y8f{bottom:22.880000pt;}
.y9c{bottom:23.520000pt;}
.yc3{bottom:27.200000pt;}
.yc0{bottom:31.066667pt;}
.ya4{bottom:40.320000pt;}
.y99{bottom:40.346667pt;}
.y8e{bottom:40.480000pt;}
.y93{bottom:40.520000pt;}
.yc2{bottom:44.826667pt;}
.y6{bottom:53.600000pt;}
.ya3{bottom:57.920000pt;}
.y8d{bottom:58.080000pt;}
.y98{bottom:58.106667pt;}
.y92{bottom:58.120000pt;}
.yc1{bottom:62.586667pt;}
.ya2{bottom:75.680000pt;}
.y97{bottom:75.706667pt;}
.y91{bottom:75.720000pt;}
.yb9{bottom:78.560000pt;}
.y35{bottom:79.840000pt;}
.ybe{bottom:83.840000pt;}
.y6f{bottom:84.480000pt;}
.y9b{bottom:91.040000pt;}
.yb4{bottom:91.680000pt;}
.ya1{bottom:93.280000pt;}
.y96{bottom:93.306667pt;}
.ya8{bottom:93.320000pt;}
.yb3{bottom:93.480000pt;}
.y34{bottom:97.440000pt;}
.ybd{bottom:101.600000pt;}
.y33{bottom:102.080000pt;}
.ybf{bottom:107.360000pt;}
.y9d{bottom:109.280000pt;}
.ya0{bottom:110.880000pt;}
.y95{bottom:110.906667pt;}
.ya7{bottom:110.920000pt;}
.yab{bottom:111.040000pt;}
.yb8{bottom:111.066667pt;}
.yb2{bottom:111.080000pt;}
.y85{bottom:113.920000pt;}
.y32{bottom:115.200000pt;}
.ybc{bottom:119.200000pt;}
.y6e{bottom:119.840000pt;}
.y88{bottom:127.680000pt;}
.yb0{bottom:128.480000pt;}
.yaa{bottom:128.640000pt;}
.yb7{bottom:128.666667pt;}
.y31{bottom:132.800000pt;}
.ybb{bottom:136.826667pt;}
.y30{bottom:137.466667pt;}
.yaf{bottom:146.240000pt;}
.yb6{bottom:146.266667pt;}
.y69{bottom:149.306667pt;}
.y2f{bottom:150.426667pt;}
.yba{bottom:154.426667pt;}
.yae{bottom:163.840000pt;}
.yb5{bottom:163.866667pt;}
.y2e{bottom:168.026667pt;}
.y68{bottom:172.026667pt;}
.y2d{bottom:172.666667pt;}
.yad{bottom:181.440000pt;}
.y2c{bottom:184.506667pt;}
.y7f{bottom:185.626667pt;}
.y67{bottom:189.786667pt;}
.y7e{bottom:203.386667pt;}
.y66{bottom:207.386667pt;}
.y7d{bottom:208.026667pt;}
.y7c{bottom:220.986667pt;}
.y65{bottom:224.986667pt;}
.y7b{bottom:238.586667pt;}
.y64{bottom:242.586667pt;}
.y7a{bottom:243.226667pt;}
.y94{bottom:251.706667pt;}
.y83{bottom:255.066667pt;}
.y79{bottom:256.186667pt;}
.y63{bottom:260.186667pt;}
.y2b{bottom:267.706667pt;}
.yb1{bottom:268.666667pt;}
.y78{bottom:273.786667pt;}
.y62{bottom:277.946667pt;}
.y77{bottom:278.426667pt;}
.y2a{bottom:285.306667pt;}
.y76{bottom:290.266667pt;}
.y61{bottom:295.546667pt;}
.y29{bottom:303.066667pt;}
.y60{bottom:313.146667pt;}
.y75{bottom:317.786667pt;}
.y28{bottom:320.666667pt;}
.y90{bottom:322.906667pt;}
.y5f{bottom:330.746667pt;}
.y27{bottom:338.266667pt;}
.y5e{bottom:348.346667pt;}
.y26{bottom:355.866667pt;}
.y89{bottom:360.546667pt;}
.y5d{bottom:366.146667pt;}
.y25{bottom:373.506667pt;}
.y5c{bottom:383.746667pt;}
.y6d{bottom:388.386667pt;}
.y24{bottom:391.266667pt;}
.yac{bottom:392.866667pt;}
.y5b{bottom:401.346667pt;}
.y74{bottom:405.986667pt;}
.y22{bottom:408.866667pt;}
.y8c{bottom:411.746667pt;}
.y23{bottom:413.506667pt;}
.y5a{bottom:418.946667pt;}
.y21{bottom:426.466667pt;}
.y59{bottom:436.546667pt;}
.y1f{bottom:444.066667pt;}
.y20{bottom:448.706667pt;}
.y58{bottom:454.306667pt;}
.y1e{bottom:461.666667pt;}
.y57{bottom:471.906667pt;}
.y1c{bottom:479.426667pt;}
.y8a{bottom:482.946667pt;}
.y1d{bottom:484.066667pt;}
.y56{bottom:489.506667pt;}
.y1b{bottom:497.026667pt;}
.y86{bottom:501.346667pt;}
.y55{bottom:507.106667pt;}
.y82{bottom:511.746667pt;}
.y1a{bottom:514.626667pt;}
.y54{bottom:524.706667pt;}
.y53{bottom:542.466667pt;}
.y81{bottom:547.106667pt;}
.y19{bottom:551.906667pt;}
.y52{bottom:560.066667pt;}
.y73{bottom:564.706667pt;}
.y18{bottom:577.533333pt;}
.y51{bottom:577.693333pt;}
.ya9{bottom:587.453333pt;}
.y17{bottom:595.133333pt;}
.y50{bottom:595.293333pt;}
.y6c{bottom:599.933333pt;}
.y16{bottom:612.893333pt;}
.y15{bottom:630.493333pt;}
.y4f{bottom:630.653333pt;}
.y14{bottom:648.093333pt;}
.y4e{bottom:648.253333pt;}
.y6b{bottom:652.893333pt;}
.y13{bottom:665.693333pt;}
.y4d{bottom:665.853333pt;}
.y72{bottom:670.493333pt;}
.y12{bottom:683.293333pt;}
.y4c{bottom:683.453333pt;}
.y6a{bottom:688.093333pt;}
.y11{bottom:701.053333pt;}
.y10{bottom:718.653333pt;}
.y4b{bottom:718.813333pt;}
.y84{bottom:723.453333pt;}
.ya6{bottom:729.213333pt;}
.yf{bottom:736.253333pt;}
.y4a{bottom:736.413333pt;}
.ye{bottom:753.853333pt;}
.y49{bottom:754.013333pt;}
.yd{bottom:771.453333pt;}
.y48{bottom:771.613333pt;}
.y47{bottom:789.213333pt;}
.yc{bottom:791.133333pt;}
.y46{bottom:807.013333pt;}
.y71{bottom:811.653333pt;}
.yb{bottom:813.413333pt;}
.y45{bottom:824.613333pt;}
.ya{bottom:826.853333pt;}
.y44{bottom:842.213333pt;}
.y9{bottom:845.893333pt;}
.y9f{bottom:853.413333pt;}
.y43{bottom:859.813333pt;}
.y8{bottom:866.693333pt;}
.y42{bottom:877.413333pt;}
.y80{bottom:882.053333pt;}
.y7{bottom:894.853333pt;}
.y41{bottom:895.173333pt;}
.y40{bottom:912.773333pt;}
.y3f{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.y3e{bottom:947.973333pt;}
.y4{bottom:961.733333pt;}
.y3c{bottom:965.573333pt;}
.y3d{bottom:970.213333pt;}
.y9e{bottom:977.413333pt;}
.y3b{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y3a{bottom:1000.933333pt;}
.y70{bottom:1005.573333pt;}
.y2{bottom:1016.613333pt;}
.y38{bottom:1018.533333pt;}
.y39{bottom:1023.200000pt;}
.y37{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y36{bottom:1060.640000pt;}
.h1b{height:1.787500pt;}
.hd{height:17.600000pt;}
.hf{height:17.760000pt;}
.h7{height:24.131250pt;}
.h13{height:36.000000pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.hb{height:43.782500pt;}
.h6{height:47.310625pt;}
.ha{height:58.563750pt;}
.h2{height:60.057813pt;}
.hc{height:60.288750pt;}
.h10{height:70.560000pt;}
.h14{height:70.592000pt;}
.h1a{height:75.072000pt;}
.h11{height:88.192000pt;}
.h15{height:123.360000pt;}
.h12{height:123.392000pt;}
.h18{height:123.552000pt;}
.h16{height:141.120000pt;}
.h19{height:176.346667pt;}
.h17{height:193.946667pt;}
.he{height:373.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.312000pt;}
.w5{width:133.920000pt;}
.w9{width:187.386667pt;}
.w7{width:215.906667pt;}
.w6{width:313.666667pt;}
.wa{width:516.453333pt;}
.w8{width:664.933333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:6.720000pt;}
.x3e{left:20.200000pt;}
.x41{left:40.800000pt;}
.x1{left:48.159988pt;}
.xa{left:52.319988pt;}
.x24{left:56.639988pt;}
.x3f{left:62.399988pt;}
.x2{left:67.199988pt;}
.x40{left:71.999988pt;}
.x3b{left:81.472000pt;}
.x37{left:85.791988pt;}
.x2f{left:91.391976pt;}
.x35{left:95.231988pt;}
.x30{left:100.031988pt;}
.x36{left:114.271988pt;}
.x42{left:169.146667pt;}
.x25{left:174.746643pt;}
.x26{left:183.386655pt;}
.x3c{left:216.026667pt;}
.x7{left:219.386643pt;}
.x8{left:223.706655pt;}
.x2d{left:228.986643pt;}
.x2e{left:237.666655pt;}
.x9{left:240.066655pt;}
.x19{left:254.306643pt;}
.x1a{left:262.946655pt;}
.x11{left:297.826643pt;}
.x12{left:302.146655pt;}
.xd{left:325.186643pt;}
.x15{left:327.586643pt;}
.xe{left:329.506655pt;}
.x16{left:331.906655pt;}
.x2b{left:372.226643pt;}
.x2c{left:380.866655pt;}
.x23{left:393.506643pt;}
.x13{left:399.133310pt;}
.xf{left:401.373310pt;}
.x14{left:403.453322pt;}
.x10{left:405.693322pt;}
.x1f{left:446.493310pt;}
.x20{left:455.133322pt;}
.x38{left:490.173310pt;}
.x31{left:493.053310pt;}
.x39{left:498.813322pt;}
.x32{left:501.693322pt;}
.x5{left:506.493310pt;}
.x6{left:510.813322pt;}
.x17{left:512.733310pt;}
.x18{left:521.373322pt;}
.x3d{left:530.493333pt;}
.x27{left:535.133310pt;}
.x28{left:543.773322pt;}
.x33{left:563.493310pt;}
.x34{left:572.133322pt;}
.x29{left:612.933310pt;}
.x2a{left:621.573322pt;}
.x3{left:645.413310pt;}
.x1d{left:646.533310pt;}
.x4{left:649.733322pt;}
.x1e{left:655.173322pt;}
.xb{left:699.813310pt;}
.xc{left:704.133322pt;}
.x1b{left:706.533310pt;}
.x1c{left:715.173322pt;}
.x21{left:737.279976pt;}
.x22{left:745.919988pt;}
}




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