
    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_ab12df5bc7ffe44d88fed38b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_2b425c692d5cb3af728e338c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c2c28002b0d7a112154bf7d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_070fce58e193d00c33622ff7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f973c883c4398fae77df1747.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747559;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsd{letter-spacing:-0.513600px;}
.lsc{letter-spacing:-0.220200px;}
.ls9{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.045360px;}
.ls11{letter-spacing:-0.013320px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.013320px;}
.ls2{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.103800px;}
.ls3{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.lse{letter-spacing:0.237600px;}
.ls13{letter-spacing:16.406640px;}
.ls5{letter-spacing:36.926640px;}
.ls4{letter-spacing:41.148000px;}
.ls12{letter-spacing:46.286640px;}
.ls0{letter-spacing:61.290000px;}
.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;}
}
.ws6{word-spacing:-60.120000px;}
.ws2{word-spacing:-16.424640px;}
.wsb{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.wsd{word-spacing:-15.016680px;}
.ws8{word-spacing:-14.876400px;}
.ws9{word-spacing:-14.809800px;}
.wsa{word-spacing:-14.516400px;}
.ws5{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.150000px;}
.ws1{word-spacing:-11.970000px;}
.ws3{word-spacing:-10.530000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.325160px;}
._9{width:2.344680px;}
._8{width:3.366720px;}
._a{width:4.386240px;}
._c{width:5.640120px;}
._b{width:6.853680px;}
._13{width:8.176320px;}
._17{width:9.258480px;}
._6{width:10.521000px;}
._7{width:11.843640px;}
._11{width:12.925800px;}
._26{width:14.007960px;}
._14{width:16.745040px;}
._18{width:17.757000px;}
._e{width:18.846000px;}
._1d{width:19.951560px;}
._19{width:21.110400px;}
._10{width:22.266000px;}
._16{width:23.567040px;}
._22{width:24.622560px;}
._21{width:25.876080px;}
._f{width:27.270000px;}
._23{width:28.436760px;}
._d{width:30.132000px;}
._12{width:31.382640px;}
._15{width:32.885640px;}
._1a{width:34.208280px;}
._1b{width:35.530920px;}
._24{width:37.360080px;}
._25{width:38.401920px;}
._29{width:39.543120px;}
._2b{width:43.827480px;}
._1c{width:45.450720px;}
._27{width:47.970000px;}
._28{width:49.418640px;}
._2c{width:51.055200px;}
._2a{width:52.403400px;}
._2f{width:53.627040px;}
._2e{width:54.709200px;}
._33{width:55.911600px;}
._4{width:60.342600px;}
._30{width:62.362320px;}
._1e{width:66.853440px;}
._1f{width:69.739200px;}
._20{width:71.422560px;}
._31{width:72.956160px;}
._2d{width:81.342360px;}
._32{width:118.195920px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._5{width:864.210000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y35{bottom:2.970000px;}
.y16{bottom:3.240000px;}
.y2d{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y7a{bottom:9.540000px;}
.y7f{bottom:9.570000px;}
.y33{bottom:9.630000px;}
.y9{bottom:14.040000px;}
.y85{bottom:16.380000px;}
.y80{bottom:16.410000px;}
.y5{bottom:16.470000px;}
.y90{bottom:16.500000px;}
.yb8{bottom:19.260000px;}
.y2b{bottom:19.350000px;}
.y79{bottom:23.310000px;}
.y7e{bottom:23.340000px;}
.y87{bottom:23.400000px;}
.y32{bottom:25.200000px;}
.y7b{bottom:30.240000px;}
.y81{bottom:30.270000px;}
.yb7{bottom:33.120000px;}
.y7{bottom:35.550000px;}
.y2a{bottom:35.820000px;}
.y8a{bottom:37.080000px;}
.y31{bottom:40.680000px;}
.y83{bottom:44.010000px;}
.y88{bottom:44.100000px;}
.yb6{bottom:46.890000px;}
.y29{bottom:51.300000px;}
.y30{bottom:56.250000px;}
.y3{bottom:58.140000px;}
.yb5{bottom:60.660000px;}
.y28{bottom:66.870000px;}
.y2f{bottom:71.730000px;}
.yb4{bottom:74.520000px;}
.y27{bottom:82.380000px;}
.y26{bottom:97.950000px;}
.y34{bottom:106.200000px;}
.y25{bottom:113.430000px;}
.ya6{bottom:115.470000px;}
.yaf{bottom:120.870000px;}
.y76{bottom:124.020000px;}
.y3e{bottom:126.990000px;}
.y24{bottom:129.000000px;}
.ya5{bottom:132.660000px;}
.yae{bottom:138.060000px;}
.y75{bottom:141.210000px;}
.y3d{bottom:144.270000px;}
.ya4{bottom:149.940000px;}
.yad{bottom:155.340000px;}
.y74{bottom:158.520000px;}
.y3c{bottom:161.580000px;}
.ya3{bottom:167.250000px;}
.yac{bottom:172.650000px;}
.y73{bottom:175.800000px;}
.y3b{bottom:178.770000px;}
.y22{bottom:180.450000px;}
.ya2{bottom:184.440000px;}
.yab{bottom:189.840000px;}
.y72{bottom:192.990000px;}
.y3a{bottom:196.050000px;}
.y21{bottom:197.640000px;}
.ya1{bottom:201.720000px;}
.yaa{bottom:207.120000px;}
.y71{bottom:210.270000px;}
.y39{bottom:212.970000px;}
.y20{bottom:214.920000px;}
.ya0{bottom:218.910000px;}
.ya9{bottom:224.400000px;}
.y70{bottom:227.460000px;}
.y38{bottom:228.810000px;}
.y1f{bottom:232.200000px;}
.y9f{bottom:236.190000px;}
.ya8{bottom:241.590000px;}
.y6f{bottom:244.740000px;}
.y37{bottom:246.090000px;}
.y1e{bottom:249.390000px;}
.y9e{bottom:253.470000px;}
.ya7{bottom:255.630000px;}
.yb3{bottom:260.490000px;}
.y6e{bottom:262.020000px;}
.y36{bottom:263.010000px;}
.y1d{bottom:266.670000px;}
.y9d{bottom:270.660000px;}
.y17{bottom:276.330000px;}
.y6d{bottom:279.210000px;}
.y1c{bottom:283.860000px;}
.y9c{bottom:287.940000px;}
.y6c{bottom:296.490000px;}
.y1b{bottom:301.170000px;}
.y9b{bottom:305.220000px;}
.y6b{bottom:313.770000px;}
.y1a{bottom:318.450000px;}
.y9a{bottom:322.410000px;}
.y6a{bottom:330.960000px;}
.y19{bottom:335.640000px;}
.y99{bottom:339.690000px;}
.yb2{bottom:346.890000px;}
.y69{bottom:348.240000px;}
.y18{bottom:352.920000px;}
.y98{bottom:356.970000px;}
.yb1{bottom:361.470000px;}
.y68{bottom:365.520000px;}
.y97{bottom:374.160000px;}
.y67{bottom:382.710000px;}
.y96{bottom:391.440000px;}
.y2e{bottom:395.850000px;}
.y66{bottom:399.990000px;}
.y95{bottom:408.720000px;}
.y65{bottom:417.270000px;}
.yb0{bottom:417.360000px;}
.y94{bottom:425.910000px;}
.y64{bottom:434.460000px;}
.y93{bottom:440.670000px;}
.y63{bottom:451.740000px;}
.y62{bottom:469.020000px;}
.y2c{bottom:480.900000px;}
.y92{bottom:482.880000px;}
.y61{bottom:486.210000px;}
.y23{bottom:501.690000px;}
.y60{bottom:503.490000px;}
.y5f{bottom:520.770000px;}
.y91{bottom:525.000000px;}
.y5e{bottom:537.960000px;}
.y5d{bottom:555.240000px;}
.y8f{bottom:567.120000px;}
.y5c{bottom:572.430000px;}
.y5b{bottom:589.740000px;}
.y5a{bottom:607.020000px;}
.y8e{bottom:609.270000px;}
.y59{bottom:624.210000px;}
.y58{bottom:641.490000px;}
.y15{bottom:644.010000px;}
.y8d{bottom:651.480000px;}
.y57{bottom:658.770000px;}
.y56{bottom:675.960000px;}
.y14{bottom:678.570000px;}
.y55{bottom:693.240000px;}
.y8c{bottom:693.600000px;}
.y13{bottom:702.960000px;}
.y54{bottom:710.520000px;}
.y53{bottom:727.710000px;}
.y8b{bottom:735.720000px;}
.y12{bottom:736.620000px;}
.y52{bottom:744.990000px;}
.y11{bottom:753.900000px;}
.y51{bottom:762.270000px;}
.y10{bottom:771.180000px;}
.y89{bottom:777.930000px;}
.y50{bottom:779.460000px;}
.yf{bottom:783.510000px;}
.y4f{bottom:796.740000px;}
.ye{bottom:808.260000px;}
.y4e{bottom:814.020000px;}
.y4d{bottom:831.210000px;}
.y86{bottom:833.820000px;}
.yd{bottom:839.310000px;}
.y4c{bottom:848.490000px;}
.y4b{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y4a{bottom:882.960000px;}
.y84{bottom:889.800000px;}
.y49{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y48{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y82{bottom:931.920000px;}
.y47{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y46{bottom:951.990000px;}
.y45{bottom:969.180000px;}
.y44{bottom:986.460000px;}
.y7d{bottom:987.900000px;}
.y43{bottom:1003.770000px;}
.y42{bottom:1020.960000px;}
.y78{bottom:1030.050000px;}
.y41{bottom:1038.240000px;}
.y40{bottom:1055.520000px;}
.y77{bottom:1072.170000px;}
.y3f{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h20{height:13.770000px;}
.h19{height:13.860000px;}
.he{height:17.280000px;}
.h14{height:20.070000px;}
.h3{height:27.630000px;}
.hc{height:28.115859px;}
.h22{height:33.244805px;}
.h1a{height:33.782520px;}
.h5{height:34.624160px;}
.h18{height:38.100586px;}
.h16{height:39.049805px;}
.h6{height:39.082324px;}
.h12{height:39.999023px;}
.h1b{height:41.400000px;}
.h1c{height:41.430000px;}
.hf{height:42.418652px;}
.h4{height:43.475449px;}
.h1f{height:43.769004px;}
.h13{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:47.640762px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.h1d{height:55.170000px;}
.h1e{height:55.260000px;}
.ha{height:76.201172px;}
.hd{height:78.099609px;}
.h15{height:84.330000px;}
.h21{height:85.680000px;}
.h17{height:118.800000px;}
.h11{height:141.600000px;}
.h7{height:153.930000px;}
.h10{height:366.960000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.wd{width:67.710000px;}
.w8{width:77.760000px;}
.wa{width:140.040000px;}
.w7{width:165.540000px;}
.w9{width:181.830000px;}
.wb{width:228.630000px;}
.w6{width:233.040000px;}
.we{width:289.830000px;}
.wc{width:358.260000px;}
.w5{width:575.610000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.570000px;}
.x3{left:8.640000px;}
.x2d{left:10.710000px;}
.x22{left:12.690000px;}
.x23{left:14.220000px;}
.x3b{left:15.300000px;}
.x27{left:16.380000px;}
.x28{left:17.460000px;}
.x2f{left:18.810000px;}
.x11{left:20.070000px;}
.x24{left:21.330000px;}
.x2b{left:22.590000px;}
.x21{left:24.840000px;}
.x1a{left:26.190000px;}
.x25{left:27.990000px;}
.x32{left:29.070000px;}
.x30{left:31.320000px;}
.x2a{left:32.400000px;}
.x15{left:33.930000px;}
.x2c{left:35.280000px;}
.x36{left:36.540000px;}
.x20{left:39.240000px;}
.x13{left:40.410000px;}
.x14{left:42.390000px;}
.x6{left:45.540000px;}
.x29{left:49.140000px;}
.x31{left:50.670000px;}
.x3a{left:52.830000px;}
.x2{left:53.999986px;}
.x38{left:55.890000px;}
.x9{left:58.049986px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x39{left:61.830000px;}
.x16{left:65.429986px;}
.x33{left:67.230000px;}
.x26{left:68.490000px;}
.x42{left:69.600000px;}
.x1c{left:78.840000px;}
.x1f{left:80.640000px;}
.x35{left:81.810000px;}
.x37{left:83.790000px;}
.x3d{left:88.199986px;}
.x2e{left:92.160000px;}
.x41{left:93.270000px;}
.x40{left:94.620000px;}
.x34{left:97.470000px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.xf{left:168.599986px;}
.xd{left:197.759986px;}
.xc{left:214.499986px;}
.x19{left:232.140000px;}
.xe{left:237.719986px;}
.xa{left:269.489986px;}
.x1b{left:310.620000px;}
.x3c{left:438.959986px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.x3f{left:472.620000px;}
.x18{left:478.229986px;}
.x1d{left:493.170000px;}
.x3e{left:526.559986px;}
.x43{left:541.050000px;}
.x10{left:629.430000px;}
.x1e{left:633.930000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.lsd{letter-spacing:-0.456533pt;}
.lsc{letter-spacing:-0.195733pt;}
.ls9{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.040320pt;}
.ls11{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011840pt;}
.ls2{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.092267pt;}
.ls3{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.211200pt;}
.ls13{letter-spacing:14.583680pt;}
.ls5{letter-spacing:32.823680pt;}
.ls4{letter-spacing:36.576000pt;}
.ls12{letter-spacing:41.143680pt;}
.ls0{letter-spacing:54.480000pt;}
.ws6{word-spacing:-53.440000pt;}
.ws2{word-spacing:-14.599680pt;}
.wsb{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.wsd{word-spacing:-13.348160pt;}
.ws8{word-spacing:-13.223467pt;}
.ws9{word-spacing:-13.164267pt;}
.wsa{word-spacing:-12.903467pt;}
.ws5{word-spacing:-12.000000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws3{word-spacing:-9.360000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:1.177920pt;}
._9{width:2.084160pt;}
._8{width:2.992640pt;}
._a{width:3.898880pt;}
._c{width:5.013440pt;}
._b{width:6.092160pt;}
._13{width:7.267840pt;}
._17{width:8.229760pt;}
._6{width:9.352000pt;}
._7{width:10.527680pt;}
._11{width:11.489600pt;}
._26{width:12.451520pt;}
._14{width:14.884480pt;}
._18{width:15.784000pt;}
._e{width:16.752000pt;}
._1d{width:17.734720pt;}
._19{width:18.764800pt;}
._10{width:19.792000pt;}
._16{width:20.948480pt;}
._22{width:21.886720pt;}
._21{width:23.000960pt;}
._f{width:24.240000pt;}
._23{width:25.277120pt;}
._d{width:26.784000pt;}
._12{width:27.895680pt;}
._15{width:29.231680pt;}
._1a{width:30.407360pt;}
._1b{width:31.583040pt;}
._24{width:33.208960pt;}
._25{width:34.135040pt;}
._29{width:35.149440pt;}
._2b{width:38.957760pt;}
._1c{width:40.400640pt;}
._27{width:42.640000pt;}
._28{width:43.927680pt;}
._2c{width:45.382400pt;}
._2a{width:46.580800pt;}
._2f{width:47.668480pt;}
._2e{width:48.630400pt;}
._33{width:49.699200pt;}
._4{width:53.637867pt;}
._30{width:55.433173pt;}
._1e{width:59.425280pt;}
._1f{width:61.990400pt;}
._20{width:63.486720pt;}
._31{width:64.849920pt;}
._2d{width:72.304320pt;}
._32{width:105.063040pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._5{width:768.186667pt;}
.fs3{font-size:26.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y35{bottom:2.640000pt;}
.y16{bottom:2.880000pt;}
.y2d{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y7a{bottom:8.480000pt;}
.y7f{bottom:8.506667pt;}
.y33{bottom:8.560000pt;}
.y9{bottom:12.480000pt;}
.y85{bottom:14.560000pt;}
.y80{bottom:14.586667pt;}
.y5{bottom:14.640000pt;}
.y90{bottom:14.666667pt;}
.yb8{bottom:17.120000pt;}
.y2b{bottom:17.200000pt;}
.y79{bottom:20.720000pt;}
.y7e{bottom:20.746667pt;}
.y87{bottom:20.800000pt;}
.y32{bottom:22.400000pt;}
.y7b{bottom:26.880000pt;}
.y81{bottom:26.906667pt;}
.yb7{bottom:29.440000pt;}
.y7{bottom:31.600000pt;}
.y2a{bottom:31.840000pt;}
.y8a{bottom:32.960000pt;}
.y31{bottom:36.160000pt;}
.y83{bottom:39.120000pt;}
.y88{bottom:39.200000pt;}
.yb6{bottom:41.680000pt;}
.y29{bottom:45.600000pt;}
.y30{bottom:50.000000pt;}
.y3{bottom:51.680000pt;}
.yb5{bottom:53.920000pt;}
.y28{bottom:59.440000pt;}
.y2f{bottom:63.760000pt;}
.yb4{bottom:66.240000pt;}
.y27{bottom:73.226667pt;}
.y26{bottom:87.066667pt;}
.y34{bottom:94.400000pt;}
.y25{bottom:100.826667pt;}
.ya6{bottom:102.640000pt;}
.yaf{bottom:107.440000pt;}
.y76{bottom:110.240000pt;}
.y3e{bottom:112.880000pt;}
.y24{bottom:114.666667pt;}
.ya5{bottom:117.920000pt;}
.yae{bottom:122.720000pt;}
.y75{bottom:125.520000pt;}
.y3d{bottom:128.240000pt;}
.ya4{bottom:133.280000pt;}
.yad{bottom:138.080000pt;}
.y74{bottom:140.906667pt;}
.y3c{bottom:143.626667pt;}
.ya3{bottom:148.666667pt;}
.yac{bottom:153.466667pt;}
.y73{bottom:156.266667pt;}
.y3b{bottom:158.906667pt;}
.y22{bottom:160.400000pt;}
.ya2{bottom:163.946667pt;}
.yab{bottom:168.746667pt;}
.y72{bottom:171.546667pt;}
.y3a{bottom:174.266667pt;}
.y21{bottom:175.680000pt;}
.ya1{bottom:179.306667pt;}
.yaa{bottom:184.106667pt;}
.y71{bottom:186.906667pt;}
.y39{bottom:189.306667pt;}
.y20{bottom:191.040000pt;}
.ya0{bottom:194.586667pt;}
.ya9{bottom:199.466667pt;}
.y70{bottom:202.186667pt;}
.y38{bottom:203.386667pt;}
.y1f{bottom:206.400000pt;}
.y9f{bottom:209.946667pt;}
.ya8{bottom:214.746667pt;}
.y6f{bottom:217.546667pt;}
.y37{bottom:218.746667pt;}
.y1e{bottom:221.680000pt;}
.y9e{bottom:225.306667pt;}
.ya7{bottom:227.226667pt;}
.yb3{bottom:231.546667pt;}
.y6e{bottom:232.906667pt;}
.y36{bottom:233.786667pt;}
.y1d{bottom:237.040000pt;}
.y9d{bottom:240.586667pt;}
.y17{bottom:245.626667pt;}
.y6d{bottom:248.186667pt;}
.y1c{bottom:252.320000pt;}
.y9c{bottom:255.946667pt;}
.y6c{bottom:263.546667pt;}
.y1b{bottom:267.706667pt;}
.y9b{bottom:271.306667pt;}
.y6b{bottom:278.906667pt;}
.y1a{bottom:283.066667pt;}
.y9a{bottom:286.586667pt;}
.y6a{bottom:294.186667pt;}
.y19{bottom:298.346667pt;}
.y99{bottom:301.946667pt;}
.yb2{bottom:308.346667pt;}
.y69{bottom:309.546667pt;}
.y18{bottom:313.706667pt;}
.y98{bottom:317.306667pt;}
.yb1{bottom:321.306667pt;}
.y68{bottom:324.906667pt;}
.y97{bottom:332.586667pt;}
.y67{bottom:340.186667pt;}
.y96{bottom:347.946667pt;}
.y2e{bottom:351.866667pt;}
.y66{bottom:355.546667pt;}
.y95{bottom:363.306667pt;}
.y65{bottom:370.906667pt;}
.yb0{bottom:370.986667pt;}
.y94{bottom:378.586667pt;}
.y64{bottom:386.186667pt;}
.y93{bottom:391.706667pt;}
.y63{bottom:401.546667pt;}
.y62{bottom:416.906667pt;}
.y2c{bottom:427.466667pt;}
.y92{bottom:429.226667pt;}
.y61{bottom:432.186667pt;}
.y23{bottom:445.946667pt;}
.y60{bottom:447.546667pt;}
.y5f{bottom:462.906667pt;}
.y91{bottom:466.666667pt;}
.y5e{bottom:478.186667pt;}
.y5d{bottom:493.546667pt;}
.y8f{bottom:504.106667pt;}
.y5c{bottom:508.826667pt;}
.y5b{bottom:524.213333pt;}
.y5a{bottom:539.573333pt;}
.y8e{bottom:541.573333pt;}
.y59{bottom:554.853333pt;}
.y58{bottom:570.213333pt;}
.y15{bottom:572.453333pt;}
.y8d{bottom:579.093333pt;}
.y57{bottom:585.573333pt;}
.y56{bottom:600.853333pt;}
.y14{bottom:603.173333pt;}
.y55{bottom:616.213333pt;}
.y8c{bottom:616.533333pt;}
.y13{bottom:624.853333pt;}
.y54{bottom:631.573333pt;}
.y53{bottom:646.853333pt;}
.y8b{bottom:653.973333pt;}
.y12{bottom:654.773333pt;}
.y52{bottom:662.213333pt;}
.y11{bottom:670.133333pt;}
.y51{bottom:677.573333pt;}
.y10{bottom:685.493333pt;}
.y89{bottom:691.493333pt;}
.y50{bottom:692.853333pt;}
.yf{bottom:696.453333pt;}
.y4f{bottom:708.213333pt;}
.ye{bottom:718.453333pt;}
.y4e{bottom:723.573333pt;}
.y4d{bottom:738.853333pt;}
.y86{bottom:741.173333pt;}
.yd{bottom:746.053333pt;}
.y4c{bottom:754.213333pt;}
.y4b{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y4a{bottom:784.853333pt;}
.y84{bottom:790.933333pt;}
.y49{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y48{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y82{bottom:828.373333pt;}
.y47{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y46{bottom:846.213333pt;}
.y45{bottom:861.493333pt;}
.y44{bottom:876.853333pt;}
.y7d{bottom:878.133333pt;}
.y43{bottom:892.240000pt;}
.y42{bottom:907.520000pt;}
.y78{bottom:915.600000pt;}
.y41{bottom:922.880000pt;}
.y40{bottom:938.240000pt;}
.y77{bottom:953.040000pt;}
.y3f{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h20{height:12.240000pt;}
.h19{height:12.320000pt;}
.he{height:15.360000pt;}
.h14{height:17.840000pt;}
.h3{height:24.560000pt;}
.hc{height:24.991875pt;}
.h22{height:29.550937pt;}
.h1a{height:30.028906pt;}
.h5{height:30.777031pt;}
.h18{height:33.867188pt;}
.h16{height:34.710938pt;}
.h6{height:34.739844pt;}
.h12{height:35.554688pt;}
.h1b{height:36.800000pt;}
.h1c{height:36.826667pt;}
.hf{height:37.705469pt;}
.h4{height:38.644844pt;}
.h1f{height:38.905781pt;}
.h13{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:42.347344pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.h1d{height:49.040000pt;}
.h1e{height:49.120000pt;}
.ha{height:67.734375pt;}
.hd{height:69.421875pt;}
.h15{height:74.960000pt;}
.h21{height:76.160000pt;}
.h17{height:105.600000pt;}
.h11{height:125.866667pt;}
.h7{height:136.826667pt;}
.h10{height:326.186667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.wd{width:60.186667pt;}
.w8{width:69.120000pt;}
.wa{width:124.480000pt;}
.w7{width:147.146667pt;}
.w9{width:161.626667pt;}
.wb{width:203.226667pt;}
.w6{width:207.146667pt;}
.we{width:257.626667pt;}
.wc{width:318.453333pt;}
.w5{width:511.653333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.840000pt;}
.x3{left:7.680000pt;}
.x2d{left:9.520000pt;}
.x22{left:11.280000pt;}
.x23{left:12.640000pt;}
.x3b{left:13.600000pt;}
.x27{left:14.560000pt;}
.x28{left:15.520000pt;}
.x2f{left:16.720000pt;}
.x11{left:17.840000pt;}
.x24{left:18.960000pt;}
.x2b{left:20.080000pt;}
.x21{left:22.080000pt;}
.x1a{left:23.280000pt;}
.x25{left:24.880000pt;}
.x32{left:25.840000pt;}
.x30{left:27.840000pt;}
.x2a{left:28.800000pt;}
.x15{left:30.160000pt;}
.x2c{left:31.360000pt;}
.x36{left:32.480000pt;}
.x20{left:34.880000pt;}
.x13{left:35.920000pt;}
.x14{left:37.680000pt;}
.x6{left:40.480000pt;}
.x29{left:43.680000pt;}
.x31{left:45.040000pt;}
.x3a{left:46.960000pt;}
.x2{left:47.999988pt;}
.x38{left:49.680000pt;}
.x9{left:51.599988pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x39{left:54.960000pt;}
.x16{left:58.159988pt;}
.x33{left:59.760000pt;}
.x26{left:60.880000pt;}
.x42{left:61.866667pt;}
.x1c{left:70.080000pt;}
.x1f{left:71.680000pt;}
.x35{left:72.720000pt;}
.x37{left:74.480000pt;}
.x3d{left:78.399988pt;}
.x2e{left:81.920000pt;}
.x41{left:82.906667pt;}
.x40{left:84.106667pt;}
.x34{left:86.640000pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.xf{left:149.866655pt;}
.xd{left:175.786655pt;}
.xc{left:190.666655pt;}
.x19{left:206.346667pt;}
.xe{left:211.306655pt;}
.xa{left:239.546655pt;}
.x1b{left:276.106667pt;}
.x3c{left:390.186655pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.x3f{left:420.106667pt;}
.x18{left:425.093321pt;}
.x1d{left:438.373333pt;}
.x3e{left:468.053321pt;}
.x43{left:480.933333pt;}
.x10{left:559.493333pt;}
.x1e{left:563.493333pt;}
.x7{left:722.160000pt;}
}




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