
    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_fb74a1303b5c91daa952d5c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_95bec69f5d1ad9b5a09716bb.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_869d8fa2a341a4f5cf70ff87.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b93ab82d86148fd9ff88a204.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_900c8b5bbd7240da14e9dbab.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a852bc482027d4034e21d1a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6bbd6457d28ca10cf7ddbf7d.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.869760px;}
.lsc{letter-spacing:3.600000px;}
.ls9{letter-spacing:14.400000px;}
.lsd{letter-spacing:32.400000px;}
.ls0{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-2.766000px;}
._0{margin-left:-1.683360px;}
._1{width:1.434000px;}
._b{width:2.442000px;}
._12{width:3.552000px;}
._6{width:4.737360px;}
._2{width:5.952000px;}
._3{width:7.128000px;}
._4{width:8.166000px;}
._5{width:9.720000px;}
._7{width:11.376000px;}
._16{width:12.468000px;}
._8{width:13.536000px;}
._9{width:14.832000px;}
._17{width:15.840000px;}
._a{width:16.896000px;}
._10{width:19.368000px;}
._11{width:20.393280px;}
._f{width:21.531360px;}
._1d{width:22.640640px;}
._13{width:23.688000px;}
._18{width:25.032000px;}
._1e{width:26.808000px;}
._1a{width:27.908640px;}
._19{width:29.547360px;}
._1b{width:30.838560px;}
._c{width:32.328000px;}
._d{width:33.558000px;}
._e{width:34.953360px;}
._25{width:36.563280px;}
._15{width:37.944000px;}
._1c{width:38.970000px;}
._23{width:40.320000px;}
._24{width:42.192000px;}
._31{width:44.136000px;}
._21{width:46.152000px;}
._14{width:51.624000px;}
._2d{width:53.928000px;}
._26{width:55.224000px;}
._27{width:56.238000px;}
._28{width:65.808000px;}
._29{width:66.948000px;}
._2c{width:72.108000px;}
._1f{width:77.592000px;}
._32{width:82.041360px;}
._33{width:83.376000px;}
._2a{width:105.552000px;}
._2b{width:106.848000px;}
._2f{width:139.680000px;}
._30{width:141.408000px;}
._2e{width:285.564000px;}
._20{width:1476.480000px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(68,114,196);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y10{bottom:-3.975000px;}
.y0{bottom:0.000000px;}
.y9{bottom:1.980000px;}
.y59{bottom:22.140000px;}
.y5d{bottom:22.320000px;}
.y6c{bottom:22.485000px;}
.y58{bottom:22.500000px;}
.y14{bottom:25.020000px;}
.yf{bottom:43.770000px;}
.y6e{bottom:45.885000px;}
.y57{bottom:45.900000px;}
.y5c{bottom:46.080000px;}
.y6b{bottom:46.245000px;}
.y62{bottom:46.260000px;}
.y8{bottom:52.740000px;}
.y13{bottom:53.280000px;}
.y60{bottom:61.245000px;}
.y69{bottom:69.645000px;}
.y66{bottom:69.660000px;}
.y6a{bottom:70.005000px;}
.y5b{bottom:70.020000px;}
.ye{bottom:79.950000px;}
.y5f{bottom:85.185000px;}
.y12{bottom:96.120000px;}
.y7{bottom:102.780000px;}
.ybc{bottom:112.140000px;}
.y11{bottom:112.860000px;}
.y9e{bottom:114.840000px;}
.y48{bottom:115.380000px;}
.y70{bottom:118.080000px;}
.y36{bottom:125.820000px;}
.y55{bottom:133.740000px;}
.yd{bottom:137.910000px;}
.y4f{bottom:138.780000px;}
.ybb{bottom:143.280000px;}
.y6f{bottom:144.900000px;}
.y97{bottom:145.440000px;}
.y87{bottom:145.980000px;}
.y47{bottom:146.520000px;}
.y35{bottom:156.780000px;}
.y54{bottom:164.700000px;}
.y7c{bottom:171.720000px;}
.yba{bottom:174.240000px;}
.y96{bottom:176.400000px;}
.y86{bottom:176.940000px;}
.y46{bottom:177.480000px;}
.y34{bottom:187.920000px;}
.yc{bottom:189.750000px;}
.y53{bottom:195.840000px;}
.y7b{bottom:202.860000px;}
.yb9{bottom:205.380000px;}
.y95{bottom:207.540000px;}
.y85{bottom:208.080000px;}
.y45{bottom:208.620000px;}
.y33{bottom:218.910000px;}
.y52{bottom:226.830000px;}
.y7a{bottom:229.530000px;}
.yb8{bottom:236.370000px;}
.y94{bottom:238.530000px;}
.y84{bottom:239.070000px;}
.y44{bottom:239.610000px;}
.yb{bottom:241.410000px;}
.y32{bottom:250.050000px;}
.y51{bottom:257.970000px;}
.yb7{bottom:267.510000px;}
.y74{bottom:267.690000px;}
.y78{bottom:269.130000px;}
.y93{bottom:269.670000px;}
.y83{bottom:270.210000px;}
.y79{bottom:270.390000px;}
.y43{bottom:270.750000px;}
.y75{bottom:275.970000px;}
.y31{bottom:281.010000px;}
.y77{bottom:281.370000px;}
.y76{bottom:282.810000px;}
.y50{bottom:288.930000px;}
.y73{bottom:295.770000px;}
.yb6{bottom:298.650000px;}
.y92{bottom:300.630000px;}
.y82{bottom:301.170000px;}
.y42{bottom:301.710000px;}
.y6d{bottom:306.765000px;}
.y30{bottom:312.150000px;}
.y72{bottom:316.830000px;}
.yb5{bottom:330.150000px;}
.y91{bottom:331.770000px;}
.y81{bottom:332.310000px;}
.y41{bottom:332.850000px;}
.y2f{bottom:343.110000px;}
.yb4{bottom:361.290000px;}
.y90{bottom:362.730000px;}
.y80{bottom:363.270000px;}
.y40{bottom:363.810000px;}
.y68{bottom:369.405000px;}
.y2e{bottom:374.250000px;}
.yb3{bottom:392.790000px;}
.y8f{bottom:393.870000px;}
.y7f{bottom:394.410000px;}
.y3f{bottom:394.950000px;}
.y2d{bottom:405.210000px;}
.yb2{bottom:423.750000px;}
.y8e{bottom:424.830000px;}
.y9d{bottom:425.370000px;}
.y7e{bottom:425.550000px;}
.y3e{bottom:425.910000px;}
.ya{bottom:431.145000px;}
.y2c{bottom:436.170000px;}
.yb1{bottom:454.935000px;}
.y67{bottom:455.835000px;}
.y8d{bottom:456.015000px;}
.y7d{bottom:456.555000px;}
.y3d{bottom:456.915000px;}
.y2b{bottom:467.355000px;}
.yb0{bottom:485.895000px;}
.y8c{bottom:486.975000px;}
.y9c{bottom:487.515000px;}
.y3c{bottom:488.055000px;}
.y2a{bottom:498.315000px;}
.yaf{bottom:517.035000px;}
.y8b{bottom:518.115000px;}
.y65{bottom:518.475000px;}
.y3b{bottom:519.015000px;}
.y29{bottom:529.455000px;}
.yae{bottom:547.995000px;}
.y8a{bottom:549.615000px;}
.y3a{bottom:550.155000px;}
.y28{bottom:560.415000px;}
.yad{bottom:578.955000px;}
.y89{bottom:580.575000px;}
.y39{bottom:581.115000px;}
.y27{bottom:591.555000px;}
.y64{bottom:604.875000px;}
.yac{bottom:610.095000px;}
.y9b{bottom:611.715000px;}
.y88{bottom:611.895000px;}
.y38{bottom:612.255000px;}
.y26{bottom:612.435000px;}
.yab{bottom:641.055000px;}
.y9a{bottom:642.675000px;}
.y25{bottom:643.215000px;}
.yaa{bottom:672.375000px;}
.y99{bottom:673.815000px;}
.y24{bottom:674.355000px;}
.y63{bottom:691.305000px;}
.ya9{bottom:703.725000px;}
.y98{bottom:704.985000px;}
.y23{bottom:705.345000px;}
.y6{bottom:723.705000px;}
.y5{bottom:734.145000px;}
.ya8{bottom:734.865000px;}
.y22{bottom:736.485000px;}
.y4{bottom:755.025000px;}
.ya7{bottom:766.005000px;}
.y4e{bottom:767.085000px;}
.y21{bottom:767.445000px;}
.y61{bottom:777.705000px;}
.ya6{bottom:797.505000px;}
.y4d{bottom:798.225000px;}
.y20{bottom:798.585000px;}
.y3{bottom:811.005000px;}
.ya5{bottom:828.465000px;}
.y4c{bottom:829.185000px;}
.y1f{bottom:829.545000px;}
.ya4{bottom:859.605000px;}
.y49{bottom:860.325000px;}
.y1e{bottom:860.685000px;}
.y5e{bottom:864.105000px;}
.ya3{bottom:890.745000px;}
.y4b{bottom:891.285000px;}
.y1d{bottom:891.645000px;}
.ya2{bottom:922.290000px;}
.y4a{bottom:922.470000px;}
.y1c{bottom:922.830000px;}
.ya1{bottom:953.250000px;}
.y1b{bottom:953.790000px;}
.y5a{bottom:965.670000px;}
.ya0{bottom:984.390000px;}
.y1a{bottom:984.930000px;}
.y9f{bottom:1015.530000px;}
.y19{bottom:1015.890000px;}
.y18{bottom:1047.030000px;}
.y56{bottom:1053.510000px;}
.y71{bottom:1077.630000px;}
.y17{bottom:1077.990000px;}
.y16{bottom:1109.130000px;}
.y37{bottom:1139.730000px;}
.y15{bottom:1140.090000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.h2{height:50.229844px;}
.he{height:62.625000px;}
.h14{height:64.546875px;}
.hd{height:70.628906px;}
.h3{height:70.664062px;}
.hc{height:72.562500px;}
.h9{height:82.635820px;}
.hb{height:82.676953px;}
.hf{height:86.385000px;}
.h11{height:86.400000px;}
.h13{height:86.421000px;}
.h12{height:86.430000px;}
.h10{height:101.542500px;}
.h6{height:105.996094px;}
.h5{height:108.843750px;}
.ha{height:115.245000px;}
.h8{height:121.179375px;}
.h4{height:127.800000px;}
.h7{height:269.355000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:137.505000px;}
.w9{width:137.511000px;}
.wa{width:137.520000px;}
.w7{width:164.355000px;}
.w5{width:169.215000px;}
.w6{width:182.910000px;}
.w2{width:579.690000px;}
.w3{width:587.070000px;}
.w4{width:592.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:9.360000px;}
.x17{left:12.591000px;}
.x1c{left:15.465000px;}
.x31{left:21.240000px;}
.x27{left:22.305000px;}
.x2b{left:24.471000px;}
.xa{left:26.265000px;}
.x2f{left:27.351000px;}
.x9{left:29.325000px;}
.x22{left:35.985000px;}
.x23{left:38.145000px;}
.x30{left:41.220000px;}
.x29{left:43.740000px;}
.x1a{left:45.360000px;}
.x1f{left:46.800000px;}
.x1d{left:48.945000px;}
.x2c{left:50.580000px;}
.x2e{left:53.265000px;}
.x26{left:54.360000px;}
.x20{left:58.125000px;}
.x32{left:64.980000px;}
.x25{left:66.045000px;}
.x2a{left:68.775000px;}
.x21{left:69.840000px;}
.x6{left:79.005000px;}
.x24{left:82.245000px;}
.x18{left:84.585000px;}
.x2d{left:91.440000px;}
.x16{left:119.565000px;}
.x2{left:127.656000px;}
.x5{left:141.330000px;}
.x10{left:146.550000px;}
.x4{left:158.445000px;}
.x8{left:160.425000px;}
.x14{left:163.110000px;}
.xe{left:173.205000px;}
.xf{left:175.710000px;}
.xc{left:180.570000px;}
.xb{left:222.690000px;}
.x19{left:288.795000px;}
.x7{left:289.860000px;}
.xd{left:293.460000px;}
.x12{left:396.435000px;}
.x34{left:404.535000px;}
.x3d{left:409.575000px;}
.x13{left:416.955000px;}
.x3e{left:428.115000px;}
.x3{left:446.505000px;}
.x1b{left:471.720000px;}
.x1e{left:636.090000px;}
.x35{left:681.450000px;}
.x33{left:741.030000px;}
.x15{left:748.770000px;}
.x38{left:753.630000px;}
.x11{left:757.230000px;}
.x3a{left:764.430000px;}
.x1{left:765.510000px;}
.x3c{left:767.310000px;}
.x3b{left:768.570000px;}
.x39{left:771.270000px;}
.x36{left:774.870000px;}
.x37{left:780.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.773120pt;}
.lsc{letter-spacing:3.200000pt;}
.ls9{letter-spacing:12.800000pt;}
.lsd{letter-spacing:28.800000pt;}
.ls0{letter-spacing:754.831787pt;}
.ws0{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-2.458667pt;}
._0{margin-left:-1.496320pt;}
._1{width:1.274667pt;}
._b{width:2.170667pt;}
._12{width:3.157333pt;}
._6{width:4.210987pt;}
._2{width:5.290667pt;}
._3{width:6.336000pt;}
._4{width:7.258667pt;}
._5{width:8.640000pt;}
._7{width:10.112000pt;}
._16{width:11.082667pt;}
._8{width:12.032000pt;}
._9{width:13.184000pt;}
._17{width:14.080000pt;}
._a{width:15.018667pt;}
._10{width:17.216000pt;}
._11{width:18.127360pt;}
._f{width:19.138987pt;}
._1d{width:20.125013pt;}
._13{width:21.056000pt;}
._18{width:22.250667pt;}
._1e{width:23.829333pt;}
._1a{width:24.807680pt;}
._19{width:26.264320pt;}
._1b{width:27.412053pt;}
._c{width:28.736000pt;}
._d{width:29.829333pt;}
._e{width:31.069653pt;}
._25{width:32.500693pt;}
._15{width:33.728000pt;}
._1c{width:34.640000pt;}
._23{width:35.840000pt;}
._24{width:37.504000pt;}
._31{width:39.232000pt;}
._21{width:41.024000pt;}
._14{width:45.888000pt;}
._2d{width:47.936000pt;}
._26{width:49.088000pt;}
._27{width:49.989333pt;}
._28{width:58.496000pt;}
._29{width:59.509333pt;}
._2c{width:64.096000pt;}
._1f{width:68.970667pt;}
._32{width:72.925653pt;}
._33{width:74.112000pt;}
._2a{width:93.824000pt;}
._2b{width:94.976000pt;}
._2f{width:124.160000pt;}
._30{width:125.696000pt;}
._2e{width:253.834667pt;}
._20{width:1312.426667pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y10{bottom:-3.533333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:1.760000pt;}
.y59{bottom:19.680000pt;}
.y5d{bottom:19.840000pt;}
.y6c{bottom:19.986667pt;}
.y58{bottom:20.000000pt;}
.y14{bottom:22.240000pt;}
.yf{bottom:38.906667pt;}
.y6e{bottom:40.786667pt;}
.y57{bottom:40.800000pt;}
.y5c{bottom:40.960000pt;}
.y6b{bottom:41.106667pt;}
.y62{bottom:41.120000pt;}
.y8{bottom:46.880000pt;}
.y13{bottom:47.360000pt;}
.y60{bottom:54.440000pt;}
.y69{bottom:61.906667pt;}
.y66{bottom:61.920000pt;}
.y6a{bottom:62.226667pt;}
.y5b{bottom:62.240000pt;}
.ye{bottom:71.066667pt;}
.y5f{bottom:75.720000pt;}
.y12{bottom:85.440000pt;}
.y7{bottom:91.360000pt;}
.ybc{bottom:99.680000pt;}
.y11{bottom:100.320000pt;}
.y9e{bottom:102.080000pt;}
.y48{bottom:102.560000pt;}
.y70{bottom:104.960000pt;}
.y36{bottom:111.840000pt;}
.y55{bottom:118.880000pt;}
.yd{bottom:122.586667pt;}
.y4f{bottom:123.360000pt;}
.ybb{bottom:127.360000pt;}
.y6f{bottom:128.800000pt;}
.y97{bottom:129.280000pt;}
.y87{bottom:129.760000pt;}
.y47{bottom:130.240000pt;}
.y35{bottom:139.360000pt;}
.y54{bottom:146.400000pt;}
.y7c{bottom:152.640000pt;}
.yba{bottom:154.880000pt;}
.y96{bottom:156.800000pt;}
.y86{bottom:157.280000pt;}
.y46{bottom:157.760000pt;}
.y34{bottom:167.040000pt;}
.yc{bottom:168.666667pt;}
.y53{bottom:174.080000pt;}
.y7b{bottom:180.320000pt;}
.yb9{bottom:182.560000pt;}
.y95{bottom:184.480000pt;}
.y85{bottom:184.960000pt;}
.y45{bottom:185.440000pt;}
.y33{bottom:194.586667pt;}
.y52{bottom:201.626667pt;}
.y7a{bottom:204.026667pt;}
.yb8{bottom:210.106667pt;}
.y94{bottom:212.026667pt;}
.y84{bottom:212.506667pt;}
.y44{bottom:212.986667pt;}
.yb{bottom:214.586667pt;}
.y32{bottom:222.266667pt;}
.y51{bottom:229.306667pt;}
.yb7{bottom:237.786667pt;}
.y74{bottom:237.946667pt;}
.y78{bottom:239.226667pt;}
.y93{bottom:239.706667pt;}
.y83{bottom:240.186667pt;}
.y79{bottom:240.346667pt;}
.y43{bottom:240.666667pt;}
.y75{bottom:245.306667pt;}
.y31{bottom:249.786667pt;}
.y77{bottom:250.106667pt;}
.y76{bottom:251.386667pt;}
.y50{bottom:256.826667pt;}
.y73{bottom:262.906667pt;}
.yb6{bottom:265.466667pt;}
.y92{bottom:267.226667pt;}
.y82{bottom:267.706667pt;}
.y42{bottom:268.186667pt;}
.y6d{bottom:272.680000pt;}
.y30{bottom:277.466667pt;}
.y72{bottom:281.626667pt;}
.yb5{bottom:293.466667pt;}
.y91{bottom:294.906667pt;}
.y81{bottom:295.386667pt;}
.y41{bottom:295.866667pt;}
.y2f{bottom:304.986667pt;}
.yb4{bottom:321.146667pt;}
.y90{bottom:322.426667pt;}
.y80{bottom:322.906667pt;}
.y40{bottom:323.386667pt;}
.y68{bottom:328.360000pt;}
.y2e{bottom:332.666667pt;}
.yb3{bottom:349.146667pt;}
.y8f{bottom:350.106667pt;}
.y7f{bottom:350.586667pt;}
.y3f{bottom:351.066667pt;}
.y2d{bottom:360.186667pt;}
.yb2{bottom:376.666667pt;}
.y8e{bottom:377.626667pt;}
.y9d{bottom:378.106667pt;}
.y7e{bottom:378.266667pt;}
.y3e{bottom:378.586667pt;}
.ya{bottom:383.240000pt;}
.y2c{bottom:387.706667pt;}
.yb1{bottom:404.386667pt;}
.y67{bottom:405.186667pt;}
.y8d{bottom:405.346667pt;}
.y7d{bottom:405.826667pt;}
.y3d{bottom:406.146667pt;}
.y2b{bottom:415.426667pt;}
.yb0{bottom:431.906667pt;}
.y8c{bottom:432.866667pt;}
.y9c{bottom:433.346667pt;}
.y3c{bottom:433.826667pt;}
.y2a{bottom:442.946667pt;}
.yaf{bottom:459.586667pt;}
.y8b{bottom:460.546667pt;}
.y65{bottom:460.866667pt;}
.y3b{bottom:461.346667pt;}
.y29{bottom:470.626667pt;}
.yae{bottom:487.106667pt;}
.y8a{bottom:488.546667pt;}
.y3a{bottom:489.026667pt;}
.y28{bottom:498.146667pt;}
.yad{bottom:514.626667pt;}
.y89{bottom:516.066667pt;}
.y39{bottom:516.546667pt;}
.y27{bottom:525.826667pt;}
.y64{bottom:537.666667pt;}
.yac{bottom:542.306667pt;}
.y9b{bottom:543.746667pt;}
.y88{bottom:543.906667pt;}
.y38{bottom:544.226667pt;}
.y26{bottom:544.386667pt;}
.yab{bottom:569.826667pt;}
.y9a{bottom:571.266667pt;}
.y25{bottom:571.746667pt;}
.yaa{bottom:597.666667pt;}
.y99{bottom:598.946667pt;}
.y24{bottom:599.426667pt;}
.y63{bottom:614.493333pt;}
.ya9{bottom:625.533333pt;}
.y98{bottom:626.653333pt;}
.y23{bottom:626.973333pt;}
.y6{bottom:643.293333pt;}
.y5{bottom:652.573333pt;}
.ya8{bottom:653.213333pt;}
.y22{bottom:654.653333pt;}
.y4{bottom:671.133333pt;}
.ya7{bottom:680.893333pt;}
.y4e{bottom:681.853333pt;}
.y21{bottom:682.173333pt;}
.y61{bottom:691.293333pt;}
.ya6{bottom:708.893333pt;}
.y4d{bottom:709.533333pt;}
.y20{bottom:709.853333pt;}
.y3{bottom:720.893333pt;}
.ya5{bottom:736.413333pt;}
.y4c{bottom:737.053333pt;}
.y1f{bottom:737.373333pt;}
.ya4{bottom:764.093333pt;}
.y49{bottom:764.733333pt;}
.y1e{bottom:765.053333pt;}
.y5e{bottom:768.093333pt;}
.ya3{bottom:791.773333pt;}
.y4b{bottom:792.253333pt;}
.y1d{bottom:792.573333pt;}
.ya2{bottom:819.813333pt;}
.y4a{bottom:819.973333pt;}
.y1c{bottom:820.293333pt;}
.ya1{bottom:847.333333pt;}
.y1b{bottom:847.813333pt;}
.y5a{bottom:858.373333pt;}
.ya0{bottom:875.013333pt;}
.y1a{bottom:875.493333pt;}
.y9f{bottom:902.693333pt;}
.y19{bottom:903.013333pt;}
.y18{bottom:930.693333pt;}
.y56{bottom:936.453333pt;}
.y71{bottom:957.893333pt;}
.y17{bottom:958.213333pt;}
.y16{bottom:985.893333pt;}
.y37{bottom:1013.093333pt;}
.y15{bottom:1013.413333pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.h2{height:44.648750pt;}
.he{height:55.666667pt;}
.h14{height:57.375000pt;}
.hd{height:62.781250pt;}
.h3{height:62.812500pt;}
.hc{height:64.500000pt;}
.h9{height:73.454062pt;}
.hb{height:73.490625pt;}
.hf{height:76.786667pt;}
.h11{height:76.800000pt;}
.h13{height:76.818667pt;}
.h12{height:76.826667pt;}
.h10{height:90.260000pt;}
.h6{height:94.218750pt;}
.h5{height:96.750000pt;}
.ha{height:102.440000pt;}
.h8{height:107.715000pt;}
.h4{height:113.600000pt;}
.h7{height:239.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:122.226667pt;}
.w9{width:122.232000pt;}
.wa{width:122.240000pt;}
.w7{width:146.093333pt;}
.w5{width:150.413333pt;}
.w6{width:162.586667pt;}
.w2{width:515.280000pt;}
.w3{width:521.840000pt;}
.w4{width:526.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:8.320000pt;}
.x17{left:11.192000pt;}
.x1c{left:13.746667pt;}
.x31{left:18.880000pt;}
.x27{left:19.826667pt;}
.x2b{left:21.752000pt;}
.xa{left:23.346667pt;}
.x2f{left:24.312000pt;}
.x9{left:26.066667pt;}
.x22{left:31.986667pt;}
.x23{left:33.906667pt;}
.x30{left:36.640000pt;}
.x29{left:38.880000pt;}
.x1a{left:40.320000pt;}
.x1f{left:41.600000pt;}
.x1d{left:43.506667pt;}
.x2c{left:44.960000pt;}
.x2e{left:47.346667pt;}
.x26{left:48.320000pt;}
.x20{left:51.666667pt;}
.x32{left:57.760000pt;}
.x25{left:58.706667pt;}
.x2a{left:61.133333pt;}
.x21{left:62.080000pt;}
.x6{left:70.226667pt;}
.x24{left:73.106667pt;}
.x18{left:75.186667pt;}
.x2d{left:81.280000pt;}
.x16{left:106.280000pt;}
.x2{left:113.472000pt;}
.x5{left:125.626667pt;}
.x10{left:130.266667pt;}
.x4{left:140.840000pt;}
.x8{left:142.600000pt;}
.x14{left:144.986667pt;}
.xe{left:153.960000pt;}
.xf{left:156.186667pt;}
.xc{left:160.506667pt;}
.xb{left:197.946667pt;}
.x19{left:256.706667pt;}
.x7{left:257.653333pt;}
.xd{left:260.853333pt;}
.x12{left:352.386667pt;}
.x34{left:359.586667pt;}
.x3d{left:364.066667pt;}
.x13{left:370.626667pt;}
.x3e{left:380.546667pt;}
.x3{left:396.893333pt;}
.x1b{left:419.306667pt;}
.x1e{left:565.413333pt;}
.x35{left:605.733333pt;}
.x33{left:658.693333pt;}
.x15{left:665.573333pt;}
.x38{left:669.893333pt;}
.x11{left:673.093333pt;}
.x3a{left:679.493333pt;}
.x1{left:680.453333pt;}
.x3c{left:682.053333pt;}
.x3b{left:683.173333pt;}
.x39{left:685.573333pt;}
.x36{left:688.773333pt;}
.x37{left:694.213333pt;}
}




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