
    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_22922e330d3ab99ed4d41c96.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b75cf383e9cff70b8ad81aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861328;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_68214256a07c6aec1cfa1ebc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_98b8d5428ce4e947615147ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7e4b562669d08837e93c3647.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_2a42ecf8c3ab837905088e30.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_a94857ca0edd44758ba51f63.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9259c6c0ab93016493001be6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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);}
.v1{vertical-align:-84.960000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.318000px;}
.ls17{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.158400px;}
.lsd{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.720000px;}
.lse{letter-spacing:4.320000px;}
.ls0{letter-spacing:10.080000px;}
.lsc{letter-spacing:10.224000px;}
.lsf{letter-spacing:10.944000px;}
.lsb{letter-spacing:14.544000px;}
.ls1{letter-spacing:41.184000px;}
.ls14{letter-spacing:53.400000px;}
.ls2{letter-spacing:54.144000px;}
.ls12{letter-spacing:57.000000px;}
.ls13{letter-spacing:57.720000px;}
.ls11{letter-spacing:61.320000px;}
.ls16{letter-spacing:65.640000px;}
.lsa{letter-spacing:66.216000px;}
.ls10{letter-spacing:66.960000px;}
.ls3{letter-spacing:110.160000px;}
.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;}
}
.ws3{word-spacing:-19.900080px;}
.ws6{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.496000px;}
.ws8{word-spacing:-17.280000px;}
.ws9{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.144320px;}
._1{width:1.080000px;}
._5{width:2.160000px;}
._10{width:3.288000px;}
._c{width:4.680000px;}
._13{width:5.688000px;}
._8{width:7.320000px;}
._9{width:8.692320px;}
._2{width:9.720000px;}
._3{width:10.800000px;}
._4{width:12.168000px;}
._15{width:13.528320px;}
._14{width:14.544000px;}
._d{width:15.696000px;}
._a{width:16.704000px;}
._12{width:20.376000px;}
._11{width:22.392000px;}
._6{width:31.104000px;}
._7{width:32.184000px;}
._f{width:35.716320px;}
._e{width:36.792000px;}
._18{width:125.244000px;}
._16{width:139.644000px;}
._19{width:160.956000px;}
._17{width:194.400000px;}
._b{width:997.356000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.yb5{bottom:-13.500000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:0.180000px;}
.y9e{bottom:0.540000px;}
.y9c{bottom:0.900000px;}
.yb1{bottom:1.440000px;}
.ya9{bottom:1.620000px;}
.y93{bottom:2.880000px;}
.ya0{bottom:3.780000px;}
.ya2{bottom:3.960000px;}
.y3{bottom:4.500000px;}
.y98{bottom:4.680000px;}
.yac{bottom:6.120000px;}
.yb4{bottom:6.480000px;}
.ya4{bottom:7.200000px;}
.y94{bottom:17.280000px;}
.ya6{bottom:17.820000px;}
.ya8{bottom:18.900000px;}
.yab{bottom:23.580000px;}
.yaf{bottom:34.380000px;}
.y2{bottom:52.920000px;}
.y1{bottom:57.420000px;}
.y37{bottom:88.560000px;}
.y36{bottom:95.400000px;}
.y35{bottom:105.840000px;}
.y91{bottom:106.560000px;}
.y34{bottom:112.680000px;}
.y33{bottom:123.840000px;}
.y90{bottom:142.920000px;}
.y8f{bottom:163.620000px;}
.y66{bottom:165.960000px;}
.y8e{bottom:184.350000px;}
.y65{bottom:186.690000px;}
.y32{bottom:200.010000px;}
.y8d{bottom:205.050000px;}
.y64{bottom:207.390000px;}
.y31{bottom:220.710000px;}
.y8c{bottom:225.750000px;}
.y63{bottom:228.090000px;}
.y30{bottom:241.410000px;}
.y8b{bottom:246.450000px;}
.y62{bottom:248.790000px;}
.y2f{bottom:262.110000px;}
.y61{bottom:269.490000px;}
.y2e{bottom:282.810000px;}
.y8a{bottom:287.850000px;}
.y60{bottom:290.190000px;}
.y2d{bottom:303.510000px;}
.y89{bottom:308.550000px;}
.y5f{bottom:310.890000px;}
.y2c{bottom:324.210000px;}
.y88{bottom:329.250000px;}
.y5e{bottom:331.590000px;}
.y2b{bottom:344.910000px;}
.y87{bottom:349.950000px;}
.y5d{bottom:352.290000px;}
.y2a{bottom:365.610000px;}
.y86{bottom:370.650000px;}
.y5c{bottom:372.990000px;}
.y85{bottom:391.350000px;}
.y5b{bottom:393.690000px;}
.y29{bottom:407.910000px;}
.y84{bottom:412.050000px;}
.y5a{bottom:414.390000px;}
.y28{bottom:428.655000px;}
.y83{bottom:432.975000px;}
.y59{bottom:435.135000px;}
.y27{bottom:449.355000px;}
.y82{bottom:454.395000px;}
.y58{bottom:455.835000px;}
.y26{bottom:470.055000px;}
.y81{bottom:475.635000px;}
.y57{bottom:476.535000px;}
.y25{bottom:490.755000px;}
.y80{bottom:496.335000px;}
.y56{bottom:497.235000px;}
.yb3{bottom:504.435000px;}
.y24{bottom:511.275000px;}
.y7f{bottom:517.035000px;}
.y55{bottom:517.935000px;}
.y23{bottom:531.975000px;}
.y7e{bottom:537.735000px;}
.y54{bottom:538.815000px;}
.yb2{bottom:540.795000px;}
.y22{bottom:552.675000px;}
.y7d{bottom:558.435000px;}
.y53{bottom:560.055000px;}
.y21{bottom:573.375000px;}
.y7c{bottom:579.135000px;}
.y52{bottom:580.755000px;}
.yb0{bottom:583.095000px;}
.yae{bottom:589.935000px;}
.y20{bottom:594.075000px;}
.y7b{bottom:599.835000px;}
.y51{bottom:601.455000px;}
.y1f{bottom:614.775000px;}
.y7a{bottom:620.535000px;}
.y50{bottom:622.155000px;}
.y1e{bottom:635.475000px;}
.y79{bottom:641.235000px;}
.y4f{bottom:642.855000px;}
.y1d{bottom:656.175000px;}
.y4e{bottom:663.585000px;}
.y1c{bottom:676.905000px;}
.yad{bottom:679.245000px;}
.y78{bottom:682.665000px;}
.y4d{bottom:684.285000px;}
.y1b{bottom:698.505000px;}
.y77{bottom:703.365000px;}
.y4c{bottom:704.985000px;}
.y1a{bottom:719.385000px;}
.y76{bottom:724.065000px;}
.y4b{bottom:725.685000px;}
.y9b{bottom:730.905000px;}
.y19{bottom:740.805000px;}
.y75{bottom:744.765000px;}
.y4a{bottom:746.385000px;}
.y18{bottom:762.045000px;}
.y74{bottom:765.465000px;}
.y49{bottom:767.085000px;}
.yaa{bottom:776.625000px;}
.y17{bottom:782.745000px;}
.y73{bottom:786.165000px;}
.y48{bottom:787.785000px;}
.y16{bottom:803.445000px;}
.ya5{bottom:805.965000px;}
.y72{bottom:806.865000px;}
.y47{bottom:808.485000px;}
.y14{bottom:824.325000px;}
.y71{bottom:827.565000px;}
.y46{bottom:829.185000px;}
.ya7{bottom:829.365000px;}
.y15{bottom:832.605000px;}
.y13{bottom:845.565000px;}
.y99{bottom:848.085000px;}
.y70{bottom:848.265000px;}
.y12{bottom:866.265000px;}
.y6f{bottom:868.965000px;}
.y45{bottom:870.585000px;}
.ya3{bottom:872.565000px;}
.y11{bottom:886.965000px;}
.y6e{bottom:889.665000px;}
.y44{bottom:891.285000px;}
.y95{bottom:893.625000px;}
.ya1{bottom:903.390000px;}
.y10{bottom:907.710000px;}
.y6d{bottom:910.410000px;}
.y43{bottom:912.030000px;}
.y97{bottom:922.470000px;}
.yf{bottom:928.410000px;}
.y6c{bottom:931.290000px;}
.y42{bottom:932.730000px;}
.y9f{bottom:939.030000px;}
.ye{bottom:949.110000px;}
.y6b{bottom:952.890000px;}
.y41{bottom:953.430000px;}
.yd{bottom:969.810000px;}
.y40{bottom:973.950000px;}
.y96{bottom:987.990000px;}
.yc{bottom:990.510000px;}
.y3f{bottom:994.650000px;}
.yb{bottom:1011.210000px;}
.y3e{bottom:1015.350000px;}
.y6a{bottom:1015.710000px;}
.ya{bottom:1031.910000px;}
.y3d{bottom:1036.050000px;}
.y69{bottom:1036.950000px;}
.y9d{bottom:1041.270000px;}
.y92{bottom:1046.310000px;}
.y9{bottom:1052.610000px;}
.y3c{bottom:1057.110000px;}
.y68{bottom:1057.650000px;}
.y8{bottom:1073.310000px;}
.y3b{bottom:1078.350000px;}
.y7{bottom:1094.010000px;}
.y3a{bottom:1099.050000px;}
.y6{bottom:1114.710000px;}
.y39{bottom:1119.750000px;}
.y4{bottom:1136.670000px;}
.y38{bottom:1140.450000px;}
.y5{bottom:1144.980000px;}
.y67{bottom:1148.760000px;}
.hf{height:13.680000px;}
.h11{height:14.025000px;}
.h10{height:14.400000px;}
.h1a{height:14.925000px;}
.hb{height:16.365000px;}
.hd{height:16.380000px;}
.h12{height:17.625000px;}
.h13{height:17.977500px;}
.h18{height:18.360000px;}
.he{height:18.705000px;}
.h1b{height:19.965000px;}
.h1c{height:20.505000px;}
.h3{height:20.698500px;}
.h14{height:21.060000px;}
.hc{height:30.765000px;}
.h15{height:31.320000px;}
.h16{height:32.400000px;}
.h17{height:37.080000px;}
.h8{height:38.158594px;}
.h6{height:47.344922px;}
.h19{height:47.865000px;}
.h4{height:57.544805px;}
.h9{height:58.651172px;}
.h2{height:70.664062px;}
.h7{height:74.004654px;}
.ha{height:74.953125px;}
.h5{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w14{width:48.094500px;}
.we{width:53.460000px;}
.w12{width:67.860000px;}
.wd{width:69.840000px;}
.w6{width:70.725000px;}
.wf{width:81.720000px;}
.wb{width:82.114500px;}
.w4{width:85.140000px;}
.w5{width:87.336000px;}
.w15{width:92.914500px;}
.w13{width:93.096000px;}
.wa{width:95.434500px;}
.w7{width:97.905000px;}
.w8{width:97.950000px;}
.w10{width:100.260000px;}
.w18{width:104.925000px;}
.w19{width:117.381000px;}
.w16{width:122.602500px;}
.wc{width:126.754500px;}
.w17{width:135.036000px;}
.w11{width:137.550000px;}
.w9{width:144.900000px;}
.w3{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.800000px;}
.x1c{left:21.061500px;}
.x16{left:30.421500px;}
.x1b{left:49.501500px;}
.x1{left:106.236000px;}
.xc{left:111.096000px;}
.x1d{left:125.866500px;}
.x5{left:127.476000px;}
.x8{left:138.276000px;}
.x9{left:159.330000px;}
.x6{left:229.708125px;}
.x7{left:235.830000px;}
.xf{left:241.275000px;}
.x1e{left:284.835000px;}
.x3{left:290.413125px;}
.x4{left:296.535000px;}
.xb{left:322.275000px;}
.x11{left:357.915000px;}
.xa{left:392.115000px;}
.x1f{left:401.520000px;}
.x13{left:419.880000px;}
.x12{left:452.820000px;}
.x20{left:498.900000px;}
.x15{left:558.495000px;}
.xd{left:572.908125px;}
.xe{left:579.030000px;}
.x1a{left:597.930000px;}
.x14{left:637.530000px;}
.x17{left:750.240000px;}
.x2{left:777.780000px;}
.x19{left:792.720000px;}
.x18{left:797.580000px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.282667pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.140800pt;}
.lsd{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.640000pt;}
.lse{letter-spacing:3.840000pt;}
.ls0{letter-spacing:8.960000pt;}
.lsc{letter-spacing:9.088000pt;}
.lsf{letter-spacing:9.728000pt;}
.lsb{letter-spacing:12.928000pt;}
.ls1{letter-spacing:36.608000pt;}
.ls14{letter-spacing:47.466667pt;}
.ls2{letter-spacing:48.128000pt;}
.ls12{letter-spacing:50.666667pt;}
.ls13{letter-spacing:51.306667pt;}
.ls11{letter-spacing:54.506667pt;}
.ls16{letter-spacing:58.346667pt;}
.lsa{letter-spacing:58.858667pt;}
.ls10{letter-spacing:59.520000pt;}
.ls3{letter-spacing:97.920000pt;}
.ws3{word-spacing:-17.688960pt;}
.ws6{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.552000pt;}
.ws8{word-spacing:-15.360000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.017173pt;}
._1{width:0.960000pt;}
._5{width:1.920000pt;}
._10{width:2.922667pt;}
._c{width:4.160000pt;}
._13{width:5.056000pt;}
._8{width:6.506667pt;}
._9{width:7.726507pt;}
._2{width:8.640000pt;}
._3{width:9.600000pt;}
._4{width:10.816000pt;}
._15{width:12.025173pt;}
._14{width:12.928000pt;}
._d{width:13.952000pt;}
._a{width:14.848000pt;}
._12{width:18.112000pt;}
._11{width:19.904000pt;}
._6{width:27.648000pt;}
._7{width:28.608000pt;}
._f{width:31.747840pt;}
._e{width:32.704000pt;}
._18{width:111.328000pt;}
._16{width:124.128000pt;}
._19{width:143.072000pt;}
._17{width:172.800000pt;}
._b{width:886.538667pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.yb5{bottom:-12.000000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:0.160000pt;}
.y9e{bottom:0.480000pt;}
.y9c{bottom:0.800000pt;}
.yb1{bottom:1.280000pt;}
.ya9{bottom:1.440000pt;}
.y93{bottom:2.560000pt;}
.ya0{bottom:3.360000pt;}
.ya2{bottom:3.520000pt;}
.y3{bottom:4.000000pt;}
.y98{bottom:4.160000pt;}
.yac{bottom:5.440000pt;}
.yb4{bottom:5.760000pt;}
.ya4{bottom:6.400000pt;}
.y94{bottom:15.360000pt;}
.ya6{bottom:15.840000pt;}
.ya8{bottom:16.800000pt;}
.yab{bottom:20.960000pt;}
.yaf{bottom:30.560000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:51.040000pt;}
.y37{bottom:78.720000pt;}
.y36{bottom:84.800000pt;}
.y35{bottom:94.080000pt;}
.y91{bottom:94.720000pt;}
.y34{bottom:100.160000pt;}
.y33{bottom:110.080000pt;}
.y90{bottom:127.040000pt;}
.y8f{bottom:145.440000pt;}
.y66{bottom:147.520000pt;}
.y8e{bottom:163.866667pt;}
.y65{bottom:165.946667pt;}
.y32{bottom:177.786667pt;}
.y8d{bottom:182.266667pt;}
.y64{bottom:184.346667pt;}
.y31{bottom:196.186667pt;}
.y8c{bottom:200.666667pt;}
.y63{bottom:202.746667pt;}
.y30{bottom:214.586667pt;}
.y8b{bottom:219.066667pt;}
.y62{bottom:221.146667pt;}
.y2f{bottom:232.986667pt;}
.y61{bottom:239.546667pt;}
.y2e{bottom:251.386667pt;}
.y8a{bottom:255.866667pt;}
.y60{bottom:257.946667pt;}
.y2d{bottom:269.786667pt;}
.y89{bottom:274.266667pt;}
.y5f{bottom:276.346667pt;}
.y2c{bottom:288.186667pt;}
.y88{bottom:292.666667pt;}
.y5e{bottom:294.746667pt;}
.y2b{bottom:306.586667pt;}
.y87{bottom:311.066667pt;}
.y5d{bottom:313.146667pt;}
.y2a{bottom:324.986667pt;}
.y86{bottom:329.466667pt;}
.y5c{bottom:331.546667pt;}
.y85{bottom:347.866667pt;}
.y5b{bottom:349.946667pt;}
.y29{bottom:362.586667pt;}
.y84{bottom:366.266667pt;}
.y5a{bottom:368.346667pt;}
.y28{bottom:381.026667pt;}
.y83{bottom:384.866667pt;}
.y59{bottom:386.786667pt;}
.y27{bottom:399.426667pt;}
.y82{bottom:403.906667pt;}
.y58{bottom:405.186667pt;}
.y26{bottom:417.826667pt;}
.y81{bottom:422.786667pt;}
.y57{bottom:423.586667pt;}
.y25{bottom:436.226667pt;}
.y80{bottom:441.186667pt;}
.y56{bottom:441.986667pt;}
.yb3{bottom:448.386667pt;}
.y24{bottom:454.466667pt;}
.y7f{bottom:459.586667pt;}
.y55{bottom:460.386667pt;}
.y23{bottom:472.866667pt;}
.y7e{bottom:477.986667pt;}
.y54{bottom:478.946667pt;}
.yb2{bottom:480.706667pt;}
.y22{bottom:491.266667pt;}
.y7d{bottom:496.386667pt;}
.y53{bottom:497.826667pt;}
.y21{bottom:509.666667pt;}
.y7c{bottom:514.786667pt;}
.y52{bottom:516.226667pt;}
.yb0{bottom:518.306667pt;}
.yae{bottom:524.386667pt;}
.y20{bottom:528.066667pt;}
.y7b{bottom:533.186667pt;}
.y51{bottom:534.626667pt;}
.y1f{bottom:546.466667pt;}
.y7a{bottom:551.586667pt;}
.y50{bottom:553.026667pt;}
.y1e{bottom:564.866667pt;}
.y79{bottom:569.986667pt;}
.y4f{bottom:571.426667pt;}
.y1d{bottom:583.266667pt;}
.y4e{bottom:589.853333pt;}
.y1c{bottom:601.693333pt;}
.yad{bottom:603.773333pt;}
.y78{bottom:606.813333pt;}
.y4d{bottom:608.253333pt;}
.y1b{bottom:620.893333pt;}
.y77{bottom:625.213333pt;}
.y4c{bottom:626.653333pt;}
.y1a{bottom:639.453333pt;}
.y76{bottom:643.613333pt;}
.y4b{bottom:645.053333pt;}
.y9b{bottom:649.693333pt;}
.y19{bottom:658.493333pt;}
.y75{bottom:662.013333pt;}
.y4a{bottom:663.453333pt;}
.y18{bottom:677.373333pt;}
.y74{bottom:680.413333pt;}
.y49{bottom:681.853333pt;}
.yaa{bottom:690.333333pt;}
.y17{bottom:695.773333pt;}
.y73{bottom:698.813333pt;}
.y48{bottom:700.253333pt;}
.y16{bottom:714.173333pt;}
.ya5{bottom:716.413333pt;}
.y72{bottom:717.213333pt;}
.y47{bottom:718.653333pt;}
.y14{bottom:732.733333pt;}
.y71{bottom:735.613333pt;}
.y46{bottom:737.053333pt;}
.ya7{bottom:737.213333pt;}
.y15{bottom:740.093333pt;}
.y13{bottom:751.613333pt;}
.y99{bottom:753.853333pt;}
.y70{bottom:754.013333pt;}
.y12{bottom:770.013333pt;}
.y6f{bottom:772.413333pt;}
.y45{bottom:773.853333pt;}
.ya3{bottom:775.613333pt;}
.y11{bottom:788.413333pt;}
.y6e{bottom:790.813333pt;}
.y44{bottom:792.253333pt;}
.y95{bottom:794.333333pt;}
.ya1{bottom:803.013333pt;}
.y10{bottom:806.853333pt;}
.y6d{bottom:809.253333pt;}
.y43{bottom:810.693333pt;}
.y97{bottom:819.973333pt;}
.yf{bottom:825.253333pt;}
.y6c{bottom:827.813333pt;}
.y42{bottom:829.093333pt;}
.y9f{bottom:834.693333pt;}
.ye{bottom:843.653333pt;}
.y6b{bottom:847.013333pt;}
.y41{bottom:847.493333pt;}
.yd{bottom:862.053333pt;}
.y40{bottom:865.733333pt;}
.y96{bottom:878.213333pt;}
.yc{bottom:880.453333pt;}
.y3f{bottom:884.133333pt;}
.yb{bottom:898.853333pt;}
.y3e{bottom:902.533333pt;}
.y6a{bottom:902.853333pt;}
.ya{bottom:917.253333pt;}
.y3d{bottom:920.933333pt;}
.y69{bottom:921.733333pt;}
.y9d{bottom:925.573333pt;}
.y92{bottom:930.053333pt;}
.y9{bottom:935.653333pt;}
.y3c{bottom:939.653333pt;}
.y68{bottom:940.133333pt;}
.y8{bottom:954.053333pt;}
.y3b{bottom:958.533333pt;}
.y7{bottom:972.453333pt;}
.y3a{bottom:976.933333pt;}
.y6{bottom:990.853333pt;}
.y39{bottom:995.333333pt;}
.y4{bottom:1010.373333pt;}
.y38{bottom:1013.733333pt;}
.y5{bottom:1017.760000pt;}
.y67{bottom:1021.120000pt;}
.hf{height:12.160000pt;}
.h11{height:12.466667pt;}
.h10{height:12.800000pt;}
.h1a{height:13.266667pt;}
.hb{height:14.546667pt;}
.hd{height:14.560000pt;}
.h12{height:15.666667pt;}
.h13{height:15.980000pt;}
.h18{height:16.320000pt;}
.he{height:16.626667pt;}
.h1b{height:17.746667pt;}
.h1c{height:18.226667pt;}
.h3{height:18.398667pt;}
.h14{height:18.720000pt;}
.hc{height:27.346667pt;}
.h15{height:27.840000pt;}
.h16{height:28.800000pt;}
.h17{height:32.960000pt;}
.h8{height:33.918750pt;}
.h6{height:42.084375pt;}
.h19{height:42.546667pt;}
.h4{height:51.150937pt;}
.h9{height:52.134375pt;}
.h2{height:62.812500pt;}
.h7{height:65.781915pt;}
.ha{height:66.625000pt;}
.h5{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w14{width:42.750667pt;}
.we{width:47.520000pt;}
.w12{width:60.320000pt;}
.wd{width:62.080000pt;}
.w6{width:62.866667pt;}
.wf{width:72.640000pt;}
.wb{width:72.990667pt;}
.w4{width:75.680000pt;}
.w5{width:77.632000pt;}
.w15{width:82.590667pt;}
.w13{width:82.752000pt;}
.wa{width:84.830667pt;}
.w7{width:87.026667pt;}
.w8{width:87.066667pt;}
.w10{width:89.120000pt;}
.w18{width:93.266667pt;}
.w19{width:104.338667pt;}
.w16{width:108.980000pt;}
.wc{width:112.670667pt;}
.w17{width:120.032000pt;}
.w11{width:122.266667pt;}
.w9{width:128.800000pt;}
.w3{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.600000pt;}
.x1c{left:18.721333pt;}
.x16{left:27.041333pt;}
.x1b{left:44.001333pt;}
.x1{left:94.432000pt;}
.xc{left:98.752000pt;}
.x1d{left:111.881333pt;}
.x5{left:113.312000pt;}
.x8{left:122.912000pt;}
.x9{left:141.626667pt;}
.x6{left:204.185000pt;}
.x7{left:209.626667pt;}
.xf{left:214.466667pt;}
.x1e{left:253.186667pt;}
.x3{left:258.145000pt;}
.x4{left:263.586667pt;}
.xb{left:286.466667pt;}
.x11{left:318.146667pt;}
.xa{left:348.546667pt;}
.x1f{left:356.906667pt;}
.x13{left:373.226667pt;}
.x12{left:402.506667pt;}
.x20{left:443.466667pt;}
.x15{left:496.440000pt;}
.xd{left:509.251667pt;}
.xe{left:514.693333pt;}
.x1a{left:531.493333pt;}
.x14{left:566.693333pt;}
.x17{left:666.880000pt;}
.x2{left:691.360000pt;}
.x19{left:704.640000pt;}
.x18{left:708.960000pt;}
}




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