
    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_6f7ee087b65d0588b35d5562.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_f8eb98cea72a867cd9c6957f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_29840b7803937ec32c9e8e2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_440e940a9a2b5387bab46fb6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064453;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_ee9f4a3969dac5e685f87576.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_a57480e01cde2872b365b0fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_6f06a4c11ab1b4e1a76c9a1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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);}
.v2{vertical-align:-68.400000px;}
.v4{vertical-align:-64.800000px;}
.v3{vertical-align:-58.320000px;}
.v1{vertical-align:-53.280000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-2.160000px;}
.ls24{letter-spacing:-1.800000px;}
.ls12{letter-spacing:-1.176000px;}
.ls25{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.379920px;}
.ls1b{letter-spacing:0.414600px;}
.ls11{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.738000px;}
.ls28{letter-spacing:1.620000px;}
.ls8{letter-spacing:2.340000px;}
.ls10{letter-spacing:3.600000px;}
.ls1a{letter-spacing:3.900000px;}
.ls2a{letter-spacing:4.320000px;}
.ls1{letter-spacing:4.500000px;}
.ls19{letter-spacing:6.660000px;}
.lsb{letter-spacing:7.200000px;}
.ls0{letter-spacing:10.980000px;}
.ls17{letter-spacing:11.520000px;}
.ls1e{letter-spacing:13.626720px;}
.ls3{letter-spacing:14.580000px;}
.ls2{letter-spacing:15.300000px;}
.lse{letter-spacing:15.840000px;}
.ls2b{letter-spacing:16.560000px;}
.ls9{letter-spacing:17.460000px;}
.ls20{letter-spacing:18.666720px;}
.ls2c{letter-spacing:21.600000px;}
.ls29{letter-spacing:23.220000px;}
.lsf{letter-spacing:23.760000px;}
.ls16{letter-spacing:24.480000px;}
.ls1f{letter-spacing:26.820000px;}
.ls18{letter-spacing:43.122720px;}
.ls22{letter-spacing:44.820000px;}
.ls1d{letter-spacing:47.466720px;}
.ls13{letter-spacing:47.520000px;}
.ls23{letter-spacing:55.620000px;}
.ls26{letter-spacing:500.040000px;}
.ls6{letter-spacing:540.360000px;}
.ls4{letter-spacing:1349.040000px;}
.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:-16.974600px;}
.ws6{word-spacing:-16.822200px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.384000px;}
.ws0{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-3.605280px;}
._a{margin-left:-2.569680px;}
._1{margin-left:-1.195200px;}
._0{width:1.135440px;}
._2{width:2.956800px;}
._7{width:4.003920px;}
._5{width:5.318640px;}
._6{width:6.584160px;}
._12{width:7.783680px;}
._17{width:9.074880px;}
._4{width:10.330320px;}
._3{width:11.354400px;}
._20{width:12.378480px;}
._9{width:13.386240px;}
._f{width:14.484960px;}
._8{width:16.186320px;}
._e{width:17.297040px;}
._d{width:18.764640px;}
._b{width:19.900080px;}
._c{width:21.214800px;}
._1e{width:22.455360px;}
._1d{width:23.780160px;}
._19{width:25.590240px;}
._18{width:27.329760px;}
._21{width:28.331040px;}
._14{width:29.348640px;}
._13{width:30.661200px;}
._16{width:32.258880px;}
._22{width:34.024320px;}
._23{width:35.064000px;}
._24{width:39.643200px;}
._1c{width:41.569440px;}
._1b{width:43.071360px;}
._1f{width:44.817840px;}
._11{width:46.167120px;}
._10{width:47.337120px;}
._15{width:57.363840px;}
._25{width:2342.958000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.600000px;}
.y42{bottom:56.700000px;}
.yd9{bottom:93.456000px;}
.yb5{bottom:98.676000px;}
.y8d{bottom:99.036000px;}
.y41{bottom:102.096000px;}
.y7b{bottom:102.816000px;}
.yd8{bottom:108.936000px;}
.yb4{bottom:115.956000px;}
.y8c{bottom:116.316000px;}
.y40{bottom:117.576000px;}
.y7a{bottom:121.716000px;}
.yd7{bottom:124.416000px;}
.y3f{bottom:132.336000px;}
.yb3{bottom:133.236000px;}
.y8b{bottom:133.596000px;}
.y79{bottom:140.796000px;}
.y3e{bottom:145.836000px;}
.y8a{bottom:150.870000px;}
.y78{bottom:159.690000px;}
.y3d{bottom:164.910000px;}
.yb2{bottom:167.610000px;}
.y89{bottom:167.970000px;}
.y77{bottom:178.590000px;}
.y3c{bottom:183.810000px;}
.y88{bottom:185.250000px;}
.y76{bottom:197.670000px;}
.y87{bottom:202.530000px;}
.y3b{bottom:202.890000px;}
.y75{bottom:216.570000px;}
.y86{bottom:219.810000px;}
.y3a{bottom:221.790000px;}
.y74{bottom:235.650000px;}
.y85{bottom:237.090000px;}
.y39{bottom:240.690000px;}
.y84{bottom:254.370000px;}
.y73{bottom:254.550000px;}
.y38{bottom:259.770000px;}
.y83{bottom:271.470000px;}
.y72{bottom:273.630000px;}
.y37{bottom:278.670000px;}
.y82{bottom:288.750000px;}
.y71{bottom:292.530000px;}
.y36{bottom:297.750000px;}
.y81{bottom:306.030000px;}
.yd6{bottom:309.990000px;}
.y70{bottom:311.430000px;}
.y35{bottom:316.650000px;}
.y80{bottom:323.310000px;}
.y6f{bottom:330.555000px;}
.y34{bottom:335.595000px;}
.y7f{bottom:340.635000px;}
.y6e{bottom:349.455000px;}
.y33{bottom:354.675000px;}
.y7e{bottom:357.735000px;}
.y6d{bottom:368.535000px;}
.y32{bottom:373.575000px;}
.y7d{bottom:374.655000px;}
.yb1{bottom:375.015000px;}
.y6c{bottom:387.435000px;}
.y7c{bottom:391.395000px;}
.yb0{bottom:392.295000px;}
.y31{bottom:392.655000px;}
.y6b{bottom:406.335000px;}
.yaf{bottom:409.575000px;}
.y30{bottom:411.555000px;}
.y6a{bottom:425.415000px;}
.yae{bottom:426.855000px;}
.y2f{bottom:430.635000px;}
.yad{bottom:444.135000px;}
.y69{bottom:444.315000px;}
.y2e{bottom:449.535000px;}
.yac{bottom:461.235000px;}
.y68{bottom:463.395000px;}
.y2d{bottom:466.995000px;}
.yab{bottom:478.515000px;}
.y2c{bottom:480.315000px;}
.y67{bottom:482.295000px;}
.yaa{bottom:495.795000px;}
.y2b{bottom:497.595000px;}
.y66{bottom:501.195000px;}
.ya9{bottom:513.075000px;}
.y2a{bottom:514.695000px;}
.y65{bottom:520.275000px;}
.yd5{bottom:528.735000px;}
.ya8{bottom:530.355000px;}
.y29{bottom:531.975000px;}
.y64{bottom:539.175000px;}
.yd4{bottom:540.615000px;}
.ya7{bottom:547.635000px;}
.y28{bottom:549.255000px;}
.yd3{bottom:557.895000px;}
.y63{bottom:558.255000px;}
.ya6{bottom:564.735000px;}
.y27{bottom:566.535000px;}
.yd2{bottom:575.175000px;}
.y62{bottom:577.155000px;}
.ya5{bottom:582.015000px;}
.y26{bottom:583.815000px;}
.yd1{bottom:592.455000px;}
.y61{bottom:596.085000px;}
.ya4{bottom:599.325000px;}
.y25{bottom:601.125000px;}
.yd0{bottom:609.765000px;}
.y60{bottom:615.165000px;}
.ya3{bottom:616.605000px;}
.y24{bottom:618.225000px;}
.ycf{bottom:626.865000px;}
.ya2{bottom:633.885000px;}
.y5f{bottom:634.065000px;}
.y23{bottom:635.505000px;}
.yce{bottom:644.145000px;}
.ya1{bottom:651.165000px;}
.y22{bottom:652.785000px;}
.y5e{bottom:653.145000px;}
.ycd{bottom:661.425000px;}
.ya0{bottom:668.265000px;}
.y21{bottom:668.625000px;}
.y5d{bottom:672.045000px;}
.y20{bottom:680.325000px;}
.y9f{bottom:685.545000px;}
.y5c{bottom:690.945000px;}
.ycc{bottom:694.905000px;}
.y1f{bottom:697.605000px;}
.y9e{bottom:702.825000px;}
.ycb{bottom:709.305000px;}
.y5b{bottom:710.025000px;}
.y1e{bottom:714.885000px;}
.y9d{bottom:720.105000px;}
.yca{bottom:726.585000px;}
.y5a{bottom:728.925000px;}
.y1d{bottom:732.165000px;}
.y9c{bottom:737.385000px;}
.yc9{bottom:743.865000px;}
.y59{bottom:748.005000px;}
.y1c{bottom:749.445000px;}
.y9b{bottom:754.485000px;}
.yc8{bottom:760.785000px;}
.y1b{bottom:766.725000px;}
.y58{bottom:766.905000px;}
.y9a{bottom:771.765000px;}
.yc7{bottom:775.185000px;}
.y1a{bottom:783.825000px;}
.y57{bottom:785.985000px;}
.y99{bottom:788.685000px;}
.yc6{bottom:792.465000px;}
.y19{bottom:801.105000px;}
.y56{bottom:804.885000px;}
.y98{bottom:805.425000px;}
.yc5{bottom:809.745000px;}
.y18{bottom:818.385000px;}
.y97{bottom:820.185000px;}
.y55{bottom:823.785000px;}
.y17{bottom:835.665000px;}
.y96{bottom:837.285000px;}
.yc4{bottom:840.885000px;}
.y54{bottom:842.865000px;}
.y95{bottom:854.565000px;}
.yc3{bottom:857.985000px;}
.y53{bottom:861.765000px;}
.y16{bottom:864.690000px;}
.y94{bottom:871.890000px;}
.yc2{bottom:875.310000px;}
.y52{bottom:880.890000px;}
.y15{bottom:881.970000px;}
.y93{bottom:889.170000px;}
.yc1{bottom:892.590000px;}
.y14{bottom:899.070000px;}
.y51{bottom:899.790000px;}
.y92{bottom:906.450000px;}
.yc0{bottom:909.870000px;}
.y13{bottom:915.450000px;}
.y50{bottom:918.690000px;}
.y91{bottom:923.730000px;}
.ybf{bottom:927.150000px;}
.y12{bottom:928.770000px;}
.y4f{bottom:937.770000px;}
.y90{bottom:940.830000px;}
.ybe{bottom:944.430000px;}
.y11{bottom:946.050000px;}
.y4e{bottom:956.670000px;}
.y8f{bottom:958.110000px;}
.ybd{bottom:961.530000px;}
.y10{bottom:963.330000px;}
.y8e{bottom:975.390000px;}
.y4d{bottom:975.750000px;}
.ybc{bottom:978.810000px;}
.yf{bottom:992.670000px;}
.y4c{bottom:994.650000px;}
.ybb{bottom:996.090000px;}
.ye{bottom:1009.950000px;}
.yba{bottom:1013.370000px;}
.y4b{bottom:1013.550000px;}
.yd{bottom:1027.050000px;}
.yb9{bottom:1030.650000px;}
.y4a{bottom:1032.630000px;}
.yc{bottom:1044.330000px;}
.yb8{bottom:1046.850000px;}
.y49{bottom:1051.530000px;}
.yb{bottom:1061.610000px;}
.y48{bottom:1070.610000px;}
.ya{bottom:1078.890000px;}
.y47{bottom:1089.510000px;}
.yb7{bottom:1095.810000px;}
.y9{bottom:1096.170000px;}
.y46{bottom:1108.410000px;}
.y8{bottom:1113.450000px;}
.y45{bottom:1127.490000px;}
.y7{bottom:1130.580000px;}
.y44{bottom:1146.420000px;}
.yb6{bottom:1147.500000px;}
.y6{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y43{bottom:1189.260000px;}
.y4{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h5{height:17.280000px;}
.h9{height:35.332031px;}
.h7{height:40.985156px;}
.hf{height:47.344922px;}
.he{height:48.616875px;}
.h4{height:49.583118px;}
.hc{height:52.998047px;}
.h6{height:53.252930px;}
.h2{height:58.651172px;}
.hb{height:59.027344px;}
.h8{height:60.226875px;}
.h3{height:61.423863px;}
.ha{height:65.010937px;}
.hd{height:66.757500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:14.940000px;}
.w4{width:16.920000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.900000px;}
.x1b{left:79.919987px;}
.x18{left:90.719987px;}
.x8{left:98.675987px;}
.x5{left:106.415987px;}
.x17{left:133.235987px;}
.x14{left:148.895987px;}
.x28{left:159.509987px;}
.x10{left:176.069987px;}
.x26{left:193.709987px;}
.x9{left:202.709987px;}
.x2d{left:226.289987px;}
.x1{left:262.109987px;}
.x11{left:275.609987px;}
.x1e{left:302.114987px;}
.xa{left:333.794987px;}
.x27{left:340.634987px;}
.x2e{left:344.234987px;}
.x1c{left:375.194987px;}
.x16{left:376.814987px;}
.x1a{left:390.314987px;}
.xb{left:401.474987px;}
.x22{left:407.234987px;}
.x21{left:412.454987px;}
.x19{left:425.234987px;}
.x2{left:441.254987px;}
.x29{left:447.734987px;}
.x15{left:467.714987px;}
.xc{left:505.184987px;}
.x1f{left:533.084987px;}
.xd{left:551.444987px;}
.x6{left:604.364987px;}
.x7{left:622.904987px;}
.x12{left:625.064987px;}
.xf{left:635.864987px;}
.x23{left:646.844987px;}
.x24{left:665.429987px;}
.x30{left:673.349987px;}
.x1d{left:678.029987px;}
.x20{left:701.249987px;}
.x2c{left:729.869987px;}
.xe{left:767.669987px;}
.x2a{left:782.609987px;}
.x2f{left:784.769987px;}
.x3{left:786.749987px;}
.x2b{left:802.589987px;}
.x13{left:819.150000px;}
.x25{left:829.229987px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v4{vertical-align:-57.600000pt;}
.v3{vertical-align:-51.840000pt;}
.v1{vertical-align:-47.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.920000pt;}
.ls24{letter-spacing:-1.600000pt;}
.ls12{letter-spacing:-1.045333pt;}
.ls25{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.337707pt;}
.ls1b{letter-spacing:0.368533pt;}
.ls11{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.656000pt;}
.ls28{letter-spacing:1.440000pt;}
.ls8{letter-spacing:2.080000pt;}
.ls10{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:3.466667pt;}
.ls2a{letter-spacing:3.840000pt;}
.ls1{letter-spacing:4.000000pt;}
.ls19{letter-spacing:5.920000pt;}
.lsb{letter-spacing:6.400000pt;}
.ls0{letter-spacing:9.760000pt;}
.ls17{letter-spacing:10.240000pt;}
.ls1e{letter-spacing:12.112640pt;}
.ls3{letter-spacing:12.960000pt;}
.ls2{letter-spacing:13.600000pt;}
.lse{letter-spacing:14.080000pt;}
.ls2b{letter-spacing:14.720000pt;}
.ls9{letter-spacing:15.520000pt;}
.ls20{letter-spacing:16.592640pt;}
.ls2c{letter-spacing:19.200000pt;}
.ls29{letter-spacing:20.640000pt;}
.lsf{letter-spacing:21.120000pt;}
.ls16{letter-spacing:21.760000pt;}
.ls1f{letter-spacing:23.840000pt;}
.ls18{letter-spacing:38.331307pt;}
.ls22{letter-spacing:39.840000pt;}
.ls1d{letter-spacing:42.192640pt;}
.ls13{letter-spacing:42.240000pt;}
.ls23{letter-spacing:49.440000pt;}
.ls26{letter-spacing:444.480000pt;}
.ls6{letter-spacing:480.320000pt;}
.ls4{letter-spacing:1199.146667pt;}
.ws7{word-spacing:-15.088533pt;}
.ws6{word-spacing:-14.953067pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.674667pt;}
.ws0{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-3.204693pt;}
._a{margin-left:-2.284160pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.009280pt;}
._2{width:2.628267pt;}
._7{width:3.559040pt;}
._5{width:4.727680pt;}
._6{width:5.852587pt;}
._12{width:6.918827pt;}
._17{width:8.066560pt;}
._4{width:9.182507pt;}
._3{width:10.092800pt;}
._20{width:11.003093pt;}
._9{width:11.898880pt;}
._f{width:12.875520pt;}
._8{width:14.387840pt;}
._e{width:15.375147pt;}
._d{width:16.679680pt;}
._b{width:17.688960pt;}
._c{width:18.857600pt;}
._1e{width:19.960320pt;}
._1d{width:21.137920pt;}
._19{width:22.746880pt;}
._18{width:24.293120pt;}
._21{width:25.183147pt;}
._14{width:26.087680pt;}
._13{width:27.254400pt;}
._16{width:28.674560pt;}
._22{width:30.243840pt;}
._23{width:31.168000pt;}
._24{width:35.238400pt;}
._1c{width:36.950613pt;}
._1b{width:38.285653pt;}
._1f{width:39.838080pt;}
._11{width:41.037440pt;}
._10{width:42.077440pt;}
._15{width:50.990080pt;}
._25{width:2082.629333pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.200000pt;}
.y42{bottom:50.400000pt;}
.yd9{bottom:83.072000pt;}
.yb5{bottom:87.712000pt;}
.y8d{bottom:88.032000pt;}
.y41{bottom:90.752000pt;}
.y7b{bottom:91.392000pt;}
.yd8{bottom:96.832000pt;}
.yb4{bottom:103.072000pt;}
.y8c{bottom:103.392000pt;}
.y40{bottom:104.512000pt;}
.y7a{bottom:108.192000pt;}
.yd7{bottom:110.592000pt;}
.y3f{bottom:117.632000pt;}
.yb3{bottom:118.432000pt;}
.y8b{bottom:118.752000pt;}
.y79{bottom:125.152000pt;}
.y3e{bottom:129.632000pt;}
.y8a{bottom:134.106667pt;}
.y78{bottom:141.946667pt;}
.y3d{bottom:146.586667pt;}
.yb2{bottom:148.986667pt;}
.y89{bottom:149.306667pt;}
.y77{bottom:158.746667pt;}
.y3c{bottom:163.386667pt;}
.y88{bottom:164.666667pt;}
.y76{bottom:175.706667pt;}
.y87{bottom:180.026667pt;}
.y3b{bottom:180.346667pt;}
.y75{bottom:192.506667pt;}
.y86{bottom:195.386667pt;}
.y3a{bottom:197.146667pt;}
.y74{bottom:209.466667pt;}
.y85{bottom:210.746667pt;}
.y39{bottom:213.946667pt;}
.y84{bottom:226.106667pt;}
.y73{bottom:226.266667pt;}
.y38{bottom:230.906667pt;}
.y83{bottom:241.306667pt;}
.y72{bottom:243.226667pt;}
.y37{bottom:247.706667pt;}
.y82{bottom:256.666667pt;}
.y71{bottom:260.026667pt;}
.y36{bottom:264.666667pt;}
.y81{bottom:272.026667pt;}
.yd6{bottom:275.546667pt;}
.y70{bottom:276.826667pt;}
.y35{bottom:281.466667pt;}
.y80{bottom:287.386667pt;}
.y6f{bottom:293.826667pt;}
.y34{bottom:298.306667pt;}
.y7f{bottom:302.786667pt;}
.y6e{bottom:310.626667pt;}
.y33{bottom:315.266667pt;}
.y7e{bottom:317.986667pt;}
.y6d{bottom:327.586667pt;}
.y32{bottom:332.066667pt;}
.y7d{bottom:333.026667pt;}
.yb1{bottom:333.346667pt;}
.y6c{bottom:344.386667pt;}
.y7c{bottom:347.906667pt;}
.yb0{bottom:348.706667pt;}
.y31{bottom:349.026667pt;}
.y6b{bottom:361.186667pt;}
.yaf{bottom:364.066667pt;}
.y30{bottom:365.826667pt;}
.y6a{bottom:378.146667pt;}
.yae{bottom:379.426667pt;}
.y2f{bottom:382.786667pt;}
.yad{bottom:394.786667pt;}
.y69{bottom:394.946667pt;}
.y2e{bottom:399.586667pt;}
.yac{bottom:409.986667pt;}
.y68{bottom:411.906667pt;}
.y2d{bottom:415.106667pt;}
.yab{bottom:425.346667pt;}
.y2c{bottom:426.946667pt;}
.y67{bottom:428.706667pt;}
.yaa{bottom:440.706667pt;}
.y2b{bottom:442.306667pt;}
.y66{bottom:445.506667pt;}
.ya9{bottom:456.066667pt;}
.y2a{bottom:457.506667pt;}
.y65{bottom:462.466667pt;}
.yd5{bottom:469.986667pt;}
.ya8{bottom:471.426667pt;}
.y29{bottom:472.866667pt;}
.y64{bottom:479.266667pt;}
.yd4{bottom:480.546667pt;}
.ya7{bottom:486.786667pt;}
.y28{bottom:488.226667pt;}
.yd3{bottom:495.906667pt;}
.y63{bottom:496.226667pt;}
.ya6{bottom:501.986667pt;}
.y27{bottom:503.586667pt;}
.yd2{bottom:511.266667pt;}
.y62{bottom:513.026667pt;}
.ya5{bottom:517.346667pt;}
.y26{bottom:518.946667pt;}
.yd1{bottom:526.626667pt;}
.y61{bottom:529.853333pt;}
.ya4{bottom:532.733333pt;}
.y25{bottom:534.333333pt;}
.yd0{bottom:542.013333pt;}
.y60{bottom:546.813333pt;}
.ya3{bottom:548.093333pt;}
.y24{bottom:549.533333pt;}
.ycf{bottom:557.213333pt;}
.ya2{bottom:563.453333pt;}
.y5f{bottom:563.613333pt;}
.y23{bottom:564.893333pt;}
.yce{bottom:572.573333pt;}
.ya1{bottom:578.813333pt;}
.y22{bottom:580.253333pt;}
.y5e{bottom:580.573333pt;}
.ycd{bottom:587.933333pt;}
.ya0{bottom:594.013333pt;}
.y21{bottom:594.333333pt;}
.y5d{bottom:597.373333pt;}
.y20{bottom:604.733333pt;}
.y9f{bottom:609.373333pt;}
.y5c{bottom:614.173333pt;}
.ycc{bottom:617.693333pt;}
.y1f{bottom:620.093333pt;}
.y9e{bottom:624.733333pt;}
.ycb{bottom:630.493333pt;}
.y5b{bottom:631.133333pt;}
.y1e{bottom:635.453333pt;}
.y9d{bottom:640.093333pt;}
.yca{bottom:645.853333pt;}
.y5a{bottom:647.933333pt;}
.y1d{bottom:650.813333pt;}
.y9c{bottom:655.453333pt;}
.yc9{bottom:661.213333pt;}
.y59{bottom:664.893333pt;}
.y1c{bottom:666.173333pt;}
.y9b{bottom:670.653333pt;}
.yc8{bottom:676.253333pt;}
.y1b{bottom:681.533333pt;}
.y58{bottom:681.693333pt;}
.y9a{bottom:686.013333pt;}
.yc7{bottom:689.053333pt;}
.y1a{bottom:696.733333pt;}
.y57{bottom:698.653333pt;}
.y99{bottom:701.053333pt;}
.yc6{bottom:704.413333pt;}
.y19{bottom:712.093333pt;}
.y56{bottom:715.453333pt;}
.y98{bottom:715.933333pt;}
.yc5{bottom:719.773333pt;}
.y18{bottom:727.453333pt;}
.y97{bottom:729.053333pt;}
.y55{bottom:732.253333pt;}
.y17{bottom:742.813333pt;}
.y96{bottom:744.253333pt;}
.yc4{bottom:747.453333pt;}
.y54{bottom:749.213333pt;}
.y95{bottom:759.613333pt;}
.yc3{bottom:762.653333pt;}
.y53{bottom:766.013333pt;}
.y16{bottom:768.613333pt;}
.y94{bottom:775.013333pt;}
.yc2{bottom:778.053333pt;}
.y52{bottom:783.013333pt;}
.y15{bottom:783.973333pt;}
.y93{bottom:790.373333pt;}
.yc1{bottom:793.413333pt;}
.y14{bottom:799.173333pt;}
.y51{bottom:799.813333pt;}
.y92{bottom:805.733333pt;}
.yc0{bottom:808.773333pt;}
.y13{bottom:813.733333pt;}
.y50{bottom:816.613333pt;}
.y91{bottom:821.093333pt;}
.ybf{bottom:824.133333pt;}
.y12{bottom:825.573333pt;}
.y4f{bottom:833.573333pt;}
.y90{bottom:836.293333pt;}
.ybe{bottom:839.493333pt;}
.y11{bottom:840.933333pt;}
.y4e{bottom:850.373333pt;}
.y8f{bottom:851.653333pt;}
.ybd{bottom:854.693333pt;}
.y10{bottom:856.293333pt;}
.y8e{bottom:867.013333pt;}
.y4d{bottom:867.333333pt;}
.ybc{bottom:870.053333pt;}
.yf{bottom:882.373333pt;}
.y4c{bottom:884.133333pt;}
.ybb{bottom:885.413333pt;}
.ye{bottom:897.733333pt;}
.yba{bottom:900.773333pt;}
.y4b{bottom:900.933333pt;}
.yd{bottom:912.933333pt;}
.yb9{bottom:916.133333pt;}
.y4a{bottom:917.893333pt;}
.yc{bottom:928.293333pt;}
.yb8{bottom:930.533333pt;}
.y49{bottom:934.693333pt;}
.yb{bottom:943.653333pt;}
.y48{bottom:951.653333pt;}
.ya{bottom:959.013333pt;}
.y47{bottom:968.453333pt;}
.yb7{bottom:974.053333pt;}
.y9{bottom:974.373333pt;}
.y46{bottom:985.253333pt;}
.y8{bottom:989.733333pt;}
.y45{bottom:1002.213333pt;}
.y7{bottom:1004.960000pt;}
.y44{bottom:1019.040000pt;}
.yb6{bottom:1020.000000pt;}
.y6{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y43{bottom:1057.120000pt;}
.y4{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h5{height:15.360000pt;}
.h9{height:31.406250pt;}
.h7{height:36.431250pt;}
.hf{height:42.084375pt;}
.he{height:43.215000pt;}
.h4{height:44.073883pt;}
.hc{height:47.109375pt;}
.h6{height:47.335938pt;}
.h2{height:52.134375pt;}
.hb{height:52.468750pt;}
.h8{height:53.535000pt;}
.h3{height:54.598989pt;}
.ha{height:57.787500pt;}
.hd{height:59.340000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:13.280000pt;}
.w4{width:15.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.800000pt;}
.x1b{left:71.039988pt;}
.x18{left:80.639988pt;}
.x8{left:87.711988pt;}
.x5{left:94.591988pt;}
.x17{left:118.431988pt;}
.x14{left:132.351988pt;}
.x28{left:141.786655pt;}
.x10{left:156.506655pt;}
.x26{left:172.186655pt;}
.x9{left:180.186655pt;}
.x2d{left:201.146655pt;}
.x1{left:232.986655pt;}
.x11{left:244.986655pt;}
.x1e{left:268.546655pt;}
.xa{left:296.706655pt;}
.x27{left:302.786655pt;}
.x2e{left:305.986655pt;}
.x1c{left:333.506655pt;}
.x16{left:334.946655pt;}
.x1a{left:346.946655pt;}
.xb{left:356.866655pt;}
.x22{left:361.986655pt;}
.x21{left:366.626655pt;}
.x19{left:377.986655pt;}
.x2{left:392.226655pt;}
.x29{left:397.986655pt;}
.x15{left:415.746655pt;}
.xc{left:449.053322pt;}
.x1f{left:473.853322pt;}
.xd{left:490.173322pt;}
.x6{left:537.213322pt;}
.x7{left:553.693322pt;}
.x12{left:555.613322pt;}
.xf{left:565.213322pt;}
.x23{left:574.973322pt;}
.x24{left:591.493322pt;}
.x30{left:598.533322pt;}
.x1d{left:602.693322pt;}
.x20{left:623.333322pt;}
.x2c{left:648.773322pt;}
.xe{left:682.373322pt;}
.x2a{left:695.653322pt;}
.x2f{left:697.573322pt;}
.x3{left:699.333322pt;}
.x2b{left:713.413322pt;}
.x13{left:728.133333pt;}
.x25{left:737.093322pt;}
}




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