
    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_70c67e7a9e1f4fdcfe180b35.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.248535;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_d8853ee45ac1f3140e9e8e44.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.248535;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_b89347b41675729b19ec7c74.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.768555;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls5{letter-spacing:-0.642000px;}
.ls4{letter-spacing:-0.541200px;}
.lsa{letter-spacing:-0.181200px;}
.ls6{letter-spacing:-0.150600px;}
.ls15{letter-spacing:-0.083400px;}
.ls18{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.057960px;}
.ls17{letter-spacing:-0.047520px;}
.ls16{letter-spacing:-0.042480px;}
.ls13{letter-spacing:-0.034560px;}
.ls9{letter-spacing:-0.025200px;}
.ls7{letter-spacing:-0.013281px;}
.ls3{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.021250px;}
.ls12{letter-spacing:0.025200px;}
.lsf{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.072000px;}
.lse{letter-spacing:0.077760px;}
.ls10{letter-spacing:0.078600px;}
.ls1e{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.178560px;}
.ls8{letter-spacing:0.178800px;}
.ls19{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.245520px;}
.ls20{letter-spacing:0.246000px;}
.ls11{letter-spacing:0.325200px;}
.ls21{letter-spacing:0.330600px;}
.lsc{letter-spacing:0.437760px;}
.ls0{letter-spacing:0.476280px;}
.ls1c{letter-spacing:0.486000px;}
.ls1d{letter-spacing:0.638280px;}
.ls1b{letter-spacing:1.718280px;}
.ls22{letter-spacing:5.678280px;}
.ls1a{letter-spacing:10.159538px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc2{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.368000px;}
.wsf{word-spacing:-18.680146px;}
.ws13{word-spacing:-17.830920px;}
.ws12{word-spacing:-17.721720px;}
.ws5{word-spacing:-17.046909px;}
.ws7{word-spacing:-17.033628px;}
.ws9{word-spacing:-16.351080px;}
.ws8{word-spacing:-16.350840px;}
.ws4{word-spacing:-16.172280px;}
.wsa{word-spacing:-16.021680px;}
.wsb{word-spacing:-15.991080px;}
.ws6{word-spacing:-15.631080px;}
.ws11{word-spacing:-15.338160px;}
.ws10{word-spacing:-15.300720px;}
.ws3{word-spacing:-14.598000px;}
.ws2{word-spacing:-14.526000px;}
.wsd{word-spacing:-13.204920px;}
.ws0{word-spacing:-12.879720px;}
.wse{word-spacing:-12.845160px;}
.wsc{word-spacing:0.000000px;}
._6{margin-left:-4.268520px;}
._8{margin-left:-2.492280px;}
._0{margin-left:-1.142280px;}
._1{width:1.509840px;}
._d{width:2.662200px;}
._7{width:3.967920px;}
._10{width:4.978440px;}
._b{width:6.189979px;}
._a{width:7.224341px;}
._4{width:8.717400px;}
._5{width:10.274896px;}
._f{width:12.253680px;}
._e{width:13.768920px;}
._14{width:14.871720px;}
._11{width:15.877080px;}
._9{width:17.374680px;}
._3{width:18.621360px;}
._2{width:19.711800px;}
._15{width:22.003920px;}
._16{width:23.519160px;}
._12{width:35.278560px;}
._13{width:38.613360px;}
._c{width:849.594000px;}
.fc4{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fsb{font-size:2.880000px;}
.fs6{font-size:6.120000px;}
.fs4{font-size:24.120000px;}
.fsf{font-size:38.880000px;}
.fs1{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fsc{font-size:63.371411px;}
.fs7{font-size:65.880000px;}
.fs10{font-size:69.442923px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:78.120000px;}
.fse{font-size:82.344887px;}
.fs8{font-size:83.880000px;}
.fs9{font-size:88.416399px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.720000px;}
.y39{bottom:3.780000px;}
.y35{bottom:4.680000px;}
.y32{bottom:7.560000px;}
.y9{bottom:13.590000px;}
.y89{bottom:14.040000px;}
.y5f{bottom:15.300000px;}
.y27{bottom:17.640000px;}
.yd{bottom:24.210000px;}
.y34{bottom:25.740000px;}
.y15{bottom:26.460000px;}
.y7{bottom:27.810000px;}
.y29{bottom:36.090000px;}
.y17{bottom:40.680000px;}
.y26{bottom:41.490000px;}
.y8{bottom:42.120000px;}
.yc{bottom:51.120000px;}
.y14{bottom:56.160000px;}
.y28{bottom:58.590000px;}
.y31{bottom:64.620000px;}
.y16{bottom:65.160000px;}
.yb{bottom:66.150000px;}
.y4{bottom:67.320000px;}
.y5d{bottom:78.750000px;}
.ya{bottom:78.840000px;}
.y25{bottom:87.120000px;}
.y3{bottom:88.470000px;}
.y30{bottom:91.710000px;}
.y13{bottom:96.660000px;}
.y87{bottom:97.920000px;}
.y5c{bottom:102.600000px;}
.y36{bottom:114.120000px;}
.y24{bottom:115.650000px;}
.y5b{bottom:118.530000px;}
.y2f{bottom:120.270000px;}
.y86{bottom:122.670000px;}
.y33{bottom:127.530000px;}
.y12{bottom:128.160000px;}
.ya3{bottom:129.510000px;}
.y23{bottom:138.240000px;}
.y5{bottom:140.490000px;}
.y5a{bottom:141.030000px;}
.y2e{bottom:147.270000px;}
.y85{bottom:147.510000px;}
.y11{bottom:159.750000px;}
.ya2{bottom:160.290000px;}
.y22{bottom:160.740000px;}
.y59{bottom:165.780000px;}
.y2a{bottom:166.680000px;}
.y2d{bottom:169.770000px;}
.y84{bottom:172.260000px;}
.y21{bottom:183.330000px;}
.y58{bottom:190.620000px;}
.ya1{bottom:191.070000px;}
.y10{bottom:191.250000px;}
.y2c{bottom:192.360000px;}
.y2b{bottom:193.890000px;}
.yf{bottom:195.750000px;}
.y83{bottom:197.100000px;}
.y20{bottom:211.860000px;}
.y57{bottom:215.370000px;}
.y82{bottom:221.850000px;}
.y1f{bottom:234.360000px;}
.y56{bottom:246.150000px;}
.y81{bottom:246.600000px;}
.y1e{bottom:256.860000px;}
.y55{bottom:270.990000px;}
.y80{bottom:271.440000px;}
.y1d{bottom:279.450000px;}
.y54{bottom:295.770000px;}
.y7f{bottom:296.220000px;}
.y1c{bottom:301.950000px;}
.y1a{bottom:313.680000px;}
.y53{bottom:320.520000px;}
.y9f{bottom:321.060000px;}
.y1b{bottom:324.480000px;}
.y7e{bottom:327.000000px;}
.y52{bottom:345.360000px;}
.y9e{bottom:345.810000px;}
.y7d{bottom:351.840000px;}
.y51{bottom:370.110000px;}
.y9d{bottom:370.560000px;}
.y19{bottom:373.980000px;}
.y7c{bottom:376.590000px;}
.y50{bottom:394.950000px;}
.y9c{bottom:395.400000px;}
.y7b{bottom:401.340000px;}
.y4f{bottom:419.700000px;}
.y9b{bottom:420.150000px;}
.y7a{bottom:426.180000px;}
.y4e{bottom:444.450000px;}
.y9a{bottom:444.900000px;}
.y79{bottom:450.930000px;}
.y99{bottom:469.740000px;}
.y4d{bottom:475.230000px;}
.y78{bottom:475.680000px;}
.y98{bottom:494.490000px;}
.y4c{bottom:500.070000px;}
.y77{bottom:500.520000px;}
.y97{bottom:519.330000px;}
.y4b{bottom:524.820000px;}
.y76{bottom:525.270000px;}
.y4a{bottom:549.660000px;}
.y75{bottom:550.110000px;}
.y49{bottom:574.410000px;}
.y74{bottom:574.860000px;}
.y73{bottom:599.610000px;}
.y48{bottom:605.190000px;}
.y96{bottom:624.450000px;}
.y47{bottom:629.940000px;}
.y72{bottom:630.390000px;}
.y95{bottom:649.200000px;}
.y46{bottom:654.780000px;}
.y71{bottom:655.230000px;}
.y94{bottom:674.040000px;}
.y45{bottom:679.560000px;}
.y70{bottom:680.010000px;}
.y93{bottom:698.820000px;}
.y44{bottom:704.400000px;}
.y6f{bottom:704.850000px;}
.ye{bottom:713.400000px;}
.y92{bottom:723.570000px;}
.y43{bottom:729.150000px;}
.y6e{bottom:729.600000px;}
.y91{bottom:748.410000px;}
.y42{bottom:753.900000px;}
.y6d{bottom:754.350000px;}
.y90{bottom:773.160000px;}
.y41{bottom:778.740000px;}
.y6c{bottom:779.190000px;}
.y8f{bottom:797.910000px;}
.y40{bottom:803.490000px;}
.y6b{bottom:803.940000px;}
.y8e{bottom:822.750000px;}
.y6a{bottom:828.780000px;}
.y3f{bottom:846.240000px;}
.y69{bottom:853.530000px;}
.y68{bottom:878.280000px;}
.y3e{bottom:890.610000px;}
.y67{bottom:903.120000px;}
.y3d{bottom:919.860000px;}
.y2{bottom:925.530000px;}
.y66{bottom:927.870000px;}
.y3c{bottom:949.200000px;}
.y65{bottom:952.620000px;}
.ya0{bottom:958.650000px;}
.y8d{bottom:977.460000px;}
.y64{bottom:983.400000px;}
.y8c{bottom:1002.210000px;}
.y6{bottom:1005.900000px;}
.y63{bottom:1008.240000px;}
.y3b{bottom:1013.550000px;}
.y8b{bottom:1027.050000px;}
.y3a{bottom:1029.210000px;}
.y62{bottom:1032.990000px;}
.y38{bottom:1044.870000px;}
.y8a{bottom:1051.800000px;}
.y61{bottom:1057.830000px;}
.y37{bottom:1060.530000px;}
.y60{bottom:1082.610000px;}
.y5e{bottom:1106.100000px;}
.y88{bottom:1106.910000px;}
.y1{bottom:1121.220000px;}
.hf{height:2.695781px;}
.h9{height:5.728535px;}
.h16{height:15.660000px;}
.h6{height:22.577168px;}
.h1d{height:28.170000px;}
.h1c{height:29.430000px;}
.h1b{height:32.361680px;}
.h14{height:39.150000px;}
.h4{height:39.425801px;}
.h15{height:50.545898px;}
.h2{height:53.241680px;}
.h8{height:56.274434px;}
.h7{height:57.060000px;}
.h11{height:59.317868px;}
.hb{height:61.665996px;}
.h19{height:63.393047px;}
.h1a{height:65.001017px;}
.h5{height:67.394531px;}
.h17{height:73.123066px;}
.h12{height:73.530000px;}
.h18{height:77.077709px;}
.hc{height:78.514629px;}
.hd{height:82.760858px;}
.he{height:86.040000px;}
.h3{height:173.460000px;}
.h13{height:207.300000px;}
.ha{height:212.130000px;}
.h10{height:339.420000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w5{width:1.439985px;}
.wd{width:26.190000px;}
.w9{width:95.400000px;}
.w3{width:156.990000px;}
.w8{width:161.460000px;}
.wb{width:318.540000px;}
.wc{width:318.630000px;}
.w7{width:355.530000px;}
.wa{width:422.310000px;}
.w6{width:513.750000px;}
.w4{width:533.910000px;}
.w2{width:893.069987px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:4.410000px;}
.x5{left:8.100000px;}
.x14{left:17.730000px;}
.xa{left:21.780000px;}
.x3{left:28.620000px;}
.x11{left:41.940000px;}
.x18{left:47.790000px;}
.xf{left:57.060000px;}
.xe{left:59.670000px;}
.x19{left:78.840000px;}
.x12{left:87.300000px;}
.x9{left:89.010000px;}
.x10{left:92.610000px;}
.x15{left:101.460000px;}
.x1a{left:102.720000px;}
.x1{left:127.619987px;}
.x2{left:142.500000px;}
.x16{left:144.360000px;}
.xc{left:148.800000px;}
.x28{left:152.099987px;}
.x1e{left:155.550000px;}
.x46{left:156.959987px;}
.x2d{left:158.399987px;}
.x22{left:162.179987px;}
.x24{left:166.229987px;}
.x58{left:177.329987px;}
.x5f{left:180.929987px;}
.x67{left:182.189987px;}
.x3a{left:185.339987px;}
.x1d{left:189.480000px;}
.x66{left:191.189987px;}
.x41{left:192.269987px;}
.x5b{left:196.049987px;}
.x20{left:199.829987px;}
.x2e{left:212.969987px;}
.x50{left:214.139987px;}
.x1f{left:219.540000px;}
.x42{left:223.949987px;}
.x54{left:227.189987px;}
.xd{left:234.810000px;}
.x37{left:238.979987px;}
.x4f{left:246.269987px;}
.x59{left:253.739987px;}
.x5a{left:257.969987px;}
.x17{left:259.230000px;}
.x3b{left:272.909987px;}
.x3e{left:278.129987px;}
.x8{left:280.740000px;}
.x4{left:284.610000px;}
.x26{left:289.739987px;}
.x6{left:292.710000px;}
.x7{left:294.150000px;}
.x29{left:301.799987px;}
.x35{left:312.779987px;}
.x43{left:326.819987px;}
.x55{left:335.729987px;}
.x47{left:343.829987px;}
.x25{left:360.299987px;}
.x30{left:362.459987px;}
.x2f{left:364.979987px;}
.x27{left:367.049987px;}
.x13{left:388.110000px;}
.x36{left:389.999987px;}
.x31{left:410.699987px;}
.x56{left:412.679987px;}
.x48{left:423.839987px;}
.x2b{left:441.119987px;}
.x1c{left:446.160000px;}
.x49{left:449.309987px;}
.x34{left:452.009987px;}
.x21{left:466.139987px;}
.x51{left:476.309987px;}
.x4b{left:481.079987px;}
.x3c{left:485.579987px;}
.x2c{left:495.569987px;}
.x4d{left:501.329987px;}
.x4c{left:530.219987px;}
.x3d{left:534.629987px;}
.x52{left:543.209987px;}
.x2a{left:547.349987px;}
.x60{left:557.159987px;}
.x53{left:577.769987px;}
.x5c{left:580.649987px;}
.x61{left:585.509987px;}
.x64{left:586.949987px;}
.x4e{left:588.749987px;}
.x38{left:590.999987px;}
.x44{left:594.599987px;}
.x32{left:603.239987px;}
.x4a{left:623.039987px;}
.x57{left:641.039987px;}
.xb{left:648.240000px;}
.x62{left:659.669987px;}
.x65{left:667.049987px;}
.x45{left:676.499987px;}
.x33{left:684.959987px;}
.x63{left:687.839987px;}
.x5d{left:689.909987px;}
.x39{left:711.419987px;}
.x23{left:726.089987px;}
.x5e{left:730.049987px;}
.x3f{left:735.180000px;}
.x1b{left:765.599987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls5{letter-spacing:-0.570667pt;}
.ls4{letter-spacing:-0.481067pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls6{letter-spacing:-0.133867pt;}
.ls15{letter-spacing:-0.074133pt;}
.ls18{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051520pt;}
.ls17{letter-spacing:-0.042240pt;}
.ls16{letter-spacing:-0.037760pt;}
.ls13{letter-spacing:-0.030720pt;}
.ls9{letter-spacing:-0.022400pt;}
.ls7{letter-spacing:-0.011806pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.018889pt;}
.ls12{letter-spacing:0.022400pt;}
.lsf{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.069120pt;}
.ls10{letter-spacing:0.069867pt;}
.ls1e{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.158720pt;}
.ls8{letter-spacing:0.158933pt;}
.ls19{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.218240pt;}
.ls20{letter-spacing:0.218667pt;}
.ls11{letter-spacing:0.289067pt;}
.ls21{letter-spacing:0.293867pt;}
.lsc{letter-spacing:0.389120pt;}
.ls0{letter-spacing:0.423360pt;}
.ls1c{letter-spacing:0.432000pt;}
.ls1d{letter-spacing:0.567360pt;}
.ls1b{letter-spacing:1.527360pt;}
.ls22{letter-spacing:5.047360pt;}
.ls1a{letter-spacing:9.030700pt;}
.ws1{word-spacing:-17.216000pt;}
.wsf{word-spacing:-16.604574pt;}
.ws13{word-spacing:-15.849707pt;}
.ws12{word-spacing:-15.752640pt;}
.ws5{word-spacing:-15.152808pt;}
.ws7{word-spacing:-15.141003pt;}
.ws9{word-spacing:-14.534293pt;}
.ws8{word-spacing:-14.534080pt;}
.ws4{word-spacing:-14.375360pt;}
.wsa{word-spacing:-14.241493pt;}
.wsb{word-spacing:-14.214293pt;}
.ws6{word-spacing:-13.894293pt;}
.ws11{word-spacing:-13.633920pt;}
.ws10{word-spacing:-13.600640pt;}
.ws3{word-spacing:-12.976000pt;}
.ws2{word-spacing:-12.912000pt;}
.wsd{word-spacing:-11.737707pt;}
.ws0{word-spacing:-11.448640pt;}
.wse{word-spacing:-11.417920pt;}
.wsc{word-spacing:0.000000pt;}
._6{margin-left:-3.794240pt;}
._8{margin-left:-2.215360pt;}
._0{margin-left:-1.015360pt;}
._1{width:1.342080pt;}
._d{width:2.366400pt;}
._7{width:3.527040pt;}
._10{width:4.425280pt;}
._b{width:5.502204pt;}
._a{width:6.421636pt;}
._4{width:7.748800pt;}
._5{width:9.133241pt;}
._f{width:10.892160pt;}
._e{width:12.239040pt;}
._14{width:13.219307pt;}
._11{width:14.112960pt;}
._9{width:15.444160pt;}
._3{width:16.552320pt;}
._2{width:17.521600pt;}
._15{width:19.559040pt;}
._16{width:20.905920pt;}
._12{width:31.358720pt;}
._13{width:34.322987pt;}
._c{width:755.194667pt;}
.fsb{font-size:2.560000pt;}
.fs6{font-size:5.440000pt;}
.fs4{font-size:21.440000pt;}
.fsf{font-size:34.560000pt;}
.fs1{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fsc{font-size:56.330143pt;}
.fs7{font-size:58.560000pt;}
.fs10{font-size:61.727043pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:69.440000pt;}
.fse{font-size:73.195455pt;}
.fs8{font-size:74.560000pt;}
.fs9{font-size:78.592355pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.640000pt;}
.y39{bottom:3.360000pt;}
.y35{bottom:4.160000pt;}
.y32{bottom:6.720000pt;}
.y9{bottom:12.080000pt;}
.y89{bottom:12.480000pt;}
.y5f{bottom:13.600000pt;}
.y27{bottom:15.680000pt;}
.yd{bottom:21.520000pt;}
.y34{bottom:22.880000pt;}
.y15{bottom:23.520000pt;}
.y7{bottom:24.720000pt;}
.y29{bottom:32.080000pt;}
.y17{bottom:36.160000pt;}
.y26{bottom:36.880000pt;}
.y8{bottom:37.440000pt;}
.yc{bottom:45.440000pt;}
.y14{bottom:49.920000pt;}
.y28{bottom:52.080000pt;}
.y31{bottom:57.440000pt;}
.y16{bottom:57.920000pt;}
.yb{bottom:58.800000pt;}
.y4{bottom:59.840000pt;}
.y5d{bottom:70.000000pt;}
.ya{bottom:70.080000pt;}
.y25{bottom:77.440000pt;}
.y3{bottom:78.640000pt;}
.y30{bottom:81.520000pt;}
.y13{bottom:85.920000pt;}
.y87{bottom:87.040000pt;}
.y5c{bottom:91.200000pt;}
.y36{bottom:101.440000pt;}
.y24{bottom:102.800000pt;}
.y5b{bottom:105.360000pt;}
.y2f{bottom:106.906667pt;}
.y86{bottom:109.040000pt;}
.y33{bottom:113.360000pt;}
.y12{bottom:113.920000pt;}
.ya3{bottom:115.120000pt;}
.y23{bottom:122.880000pt;}
.y5{bottom:124.880000pt;}
.y5a{bottom:125.360000pt;}
.y2e{bottom:130.906667pt;}
.y85{bottom:131.120000pt;}
.y11{bottom:142.000000pt;}
.ya2{bottom:142.480000pt;}
.y22{bottom:142.880000pt;}
.y59{bottom:147.360000pt;}
.y2a{bottom:148.160000pt;}
.y2d{bottom:150.906667pt;}
.y84{bottom:153.120000pt;}
.y21{bottom:162.960000pt;}
.y58{bottom:169.440000pt;}
.ya1{bottom:169.840000pt;}
.y10{bottom:170.000000pt;}
.y2c{bottom:170.986667pt;}
.y2b{bottom:172.346667pt;}
.yf{bottom:174.000000pt;}
.y83{bottom:175.200000pt;}
.y20{bottom:188.320000pt;}
.y57{bottom:191.440000pt;}
.y82{bottom:197.200000pt;}
.y1f{bottom:208.320000pt;}
.y56{bottom:218.800000pt;}
.y81{bottom:219.200000pt;}
.y1e{bottom:228.320000pt;}
.y55{bottom:240.880000pt;}
.y80{bottom:241.280000pt;}
.y1d{bottom:248.400000pt;}
.y54{bottom:262.906667pt;}
.y7f{bottom:263.306667pt;}
.y1c{bottom:268.400000pt;}
.y1a{bottom:278.826667pt;}
.y53{bottom:284.906667pt;}
.y9f{bottom:285.386667pt;}
.y1b{bottom:288.426667pt;}
.y7e{bottom:290.666667pt;}
.y52{bottom:306.986667pt;}
.y9e{bottom:307.386667pt;}
.y7d{bottom:312.746667pt;}
.y51{bottom:328.986667pt;}
.y9d{bottom:329.386667pt;}
.y19{bottom:332.426667pt;}
.y7c{bottom:334.746667pt;}
.y50{bottom:351.066667pt;}
.y9c{bottom:351.466667pt;}
.y7b{bottom:356.746667pt;}
.y4f{bottom:373.066667pt;}
.y9b{bottom:373.466667pt;}
.y7a{bottom:378.826667pt;}
.y4e{bottom:395.066667pt;}
.y9a{bottom:395.466667pt;}
.y79{bottom:400.826667pt;}
.y99{bottom:417.546667pt;}
.y4d{bottom:422.426667pt;}
.y78{bottom:422.826667pt;}
.y98{bottom:439.546667pt;}
.y4c{bottom:444.506667pt;}
.y77{bottom:444.906667pt;}
.y97{bottom:461.626667pt;}
.y4b{bottom:466.506667pt;}
.y76{bottom:466.906667pt;}
.y4a{bottom:488.586667pt;}
.y75{bottom:488.986667pt;}
.y49{bottom:510.586667pt;}
.y74{bottom:510.986667pt;}
.y73{bottom:532.986667pt;}
.y48{bottom:537.946667pt;}
.y96{bottom:555.066667pt;}
.y47{bottom:559.946667pt;}
.y72{bottom:560.346667pt;}
.y95{bottom:577.066667pt;}
.y46{bottom:582.026667pt;}
.y71{bottom:582.426667pt;}
.y94{bottom:599.146667pt;}
.y45{bottom:604.053333pt;}
.y70{bottom:604.453333pt;}
.y93{bottom:621.173333pt;}
.y44{bottom:626.133333pt;}
.y6f{bottom:626.533333pt;}
.ye{bottom:634.133333pt;}
.y92{bottom:643.173333pt;}
.y43{bottom:648.133333pt;}
.y6e{bottom:648.533333pt;}
.y91{bottom:665.253333pt;}
.y42{bottom:670.133333pt;}
.y6d{bottom:670.533333pt;}
.y90{bottom:687.253333pt;}
.y41{bottom:692.213333pt;}
.y6c{bottom:692.613333pt;}
.y8f{bottom:709.253333pt;}
.y40{bottom:714.213333pt;}
.y6b{bottom:714.613333pt;}
.y8e{bottom:731.333333pt;}
.y6a{bottom:736.693333pt;}
.y3f{bottom:752.213333pt;}
.y69{bottom:758.693333pt;}
.y68{bottom:780.693333pt;}
.y3e{bottom:791.653333pt;}
.y67{bottom:802.773333pt;}
.y3d{bottom:817.653333pt;}
.y2{bottom:822.693333pt;}
.y66{bottom:824.773333pt;}
.y3c{bottom:843.733333pt;}
.y65{bottom:846.773333pt;}
.ya0{bottom:852.133333pt;}
.y8d{bottom:868.853333pt;}
.y64{bottom:874.133333pt;}
.y8c{bottom:890.853333pt;}
.y6{bottom:894.133333pt;}
.y63{bottom:896.213333pt;}
.y3b{bottom:900.933333pt;}
.y8b{bottom:912.933333pt;}
.y3a{bottom:914.853333pt;}
.y62{bottom:918.213333pt;}
.y38{bottom:928.773333pt;}
.y8a{bottom:934.933333pt;}
.y61{bottom:940.293333pt;}
.y37{bottom:942.693333pt;}
.y60{bottom:962.320000pt;}
.y5e{bottom:983.200000pt;}
.y88{bottom:983.920000pt;}
.y1{bottom:996.640000pt;}
.hf{height:2.396250pt;}
.h9{height:5.092031pt;}
.h16{height:13.920000pt;}
.h6{height:20.068594pt;}
.h1d{height:25.040000pt;}
.h1c{height:26.160000pt;}
.h1b{height:28.765937pt;}
.h14{height:34.800000pt;}
.h4{height:35.045156pt;}
.h15{height:44.929688pt;}
.h2{height:47.325938pt;}
.h8{height:50.021719pt;}
.h7{height:50.720000pt;}
.h11{height:52.726994pt;}
.hb{height:54.814219pt;}
.h19{height:56.349375pt;}
.h1a{height:57.778682pt;}
.h5{height:59.906250pt;}
.h17{height:64.998281pt;}
.h12{height:65.360000pt;}
.h18{height:68.513519pt;}
.hc{height:69.790781pt;}
.hd{height:73.565207pt;}
.he{height:76.480000pt;}
.h3{height:154.186667pt;}
.h13{height:184.266667pt;}
.ha{height:188.560000pt;}
.h10{height:301.706667pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w5{width:1.279987pt;}
.wd{width:23.280000pt;}
.w9{width:84.800000pt;}
.w3{width:139.546667pt;}
.w8{width:143.520000pt;}
.wb{width:283.146667pt;}
.wc{width:283.226667pt;}
.w7{width:316.026667pt;}
.wa{width:375.386667pt;}
.w6{width:456.666667pt;}
.w4{width:474.586667pt;}
.w2{width:793.839988pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:3.920000pt;}
.x5{left:7.200000pt;}
.x14{left:15.760000pt;}
.xa{left:19.360000pt;}
.x3{left:25.440000pt;}
.x11{left:37.280000pt;}
.x18{left:42.480000pt;}
.xf{left:50.720000pt;}
.xe{left:53.040000pt;}
.x19{left:70.080000pt;}
.x12{left:77.600000pt;}
.x9{left:79.120000pt;}
.x10{left:82.320000pt;}
.x15{left:90.186667pt;}
.x1a{left:91.306667pt;}
.x1{left:113.439988pt;}
.x2{left:126.666667pt;}
.x16{left:128.320000pt;}
.xc{left:132.266667pt;}
.x28{left:135.199988pt;}
.x1e{left:138.266667pt;}
.x46{left:139.519988pt;}
.x2d{left:140.799988pt;}
.x22{left:144.159988pt;}
.x24{left:147.759988pt;}
.x58{left:157.626655pt;}
.x5f{left:160.826655pt;}
.x67{left:161.946655pt;}
.x3a{left:164.746655pt;}
.x1d{left:168.426667pt;}
.x66{left:169.946655pt;}
.x41{left:170.906655pt;}
.x5b{left:174.266655pt;}
.x20{left:177.626655pt;}
.x2e{left:189.306655pt;}
.x50{left:190.346655pt;}
.x1f{left:195.146667pt;}
.x42{left:199.066655pt;}
.x54{left:201.946655pt;}
.xd{left:208.720000pt;}
.x37{left:212.426655pt;}
.x4f{left:218.906655pt;}
.x59{left:225.546655pt;}
.x5a{left:229.306655pt;}
.x17{left:230.426667pt;}
.x3b{left:242.586655pt;}
.x3e{left:247.226655pt;}
.x8{left:249.546667pt;}
.x4{left:252.986667pt;}
.x26{left:257.546655pt;}
.x6{left:260.186667pt;}
.x7{left:261.466667pt;}
.x29{left:268.266655pt;}
.x35{left:278.026655pt;}
.x43{left:290.506655pt;}
.x55{left:298.426655pt;}
.x47{left:305.626655pt;}
.x25{left:320.266655pt;}
.x30{left:322.186655pt;}
.x2f{left:324.426655pt;}
.x27{left:326.266655pt;}
.x13{left:344.986667pt;}
.x36{left:346.666655pt;}
.x31{left:365.066655pt;}
.x56{left:366.826655pt;}
.x48{left:376.746655pt;}
.x2b{left:392.106655pt;}
.x1c{left:396.586667pt;}
.x49{left:399.386655pt;}
.x34{left:401.786655pt;}
.x21{left:414.346655pt;}
.x51{left:423.386655pt;}
.x4b{left:427.626655pt;}
.x3c{left:431.626655pt;}
.x2c{left:440.506655pt;}
.x4d{left:445.626655pt;}
.x4c{left:471.306655pt;}
.x3d{left:475.226655pt;}
.x52{left:482.853322pt;}
.x2a{left:486.533322pt;}
.x60{left:495.253322pt;}
.x53{left:513.573322pt;}
.x5c{left:516.133322pt;}
.x61{left:520.453322pt;}
.x64{left:521.733322pt;}
.x4e{left:523.333322pt;}
.x38{left:525.333322pt;}
.x44{left:528.533322pt;}
.x32{left:536.213322pt;}
.x4a{left:553.813322pt;}
.x57{left:569.813322pt;}
.xb{left:576.213333pt;}
.x62{left:586.373322pt;}
.x65{left:592.933322pt;}
.x45{left:601.333322pt;}
.x33{left:608.853322pt;}
.x63{left:611.413322pt;}
.x5d{left:613.253322pt;}
.x39{left:632.373322pt;}
.x23{left:645.413322pt;}
.x5e{left:648.933322pt;}
.x3f{left:653.493333pt;}
.x1b{left:680.533322pt;}
}




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