
    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_52449a9d55423aca4a7c628f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_c764bf2372bb9b20f2fee1ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043457;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_e85d732e03be81700ac0d078.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_174500fb2021874b9476a6db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.043457;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.260400px;}
.ls8{letter-spacing:-0.148800px;}
.ls4{letter-spacing:-0.010800px;}
.ls7{letter-spacing:-0.001440px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.132600px;}
.lse{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.309000px;}
.ls3{letter-spacing:0.328800px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.364800px;}
.lsa{letter-spacing:0.666000px;}
.ls1{letter-spacing:17.092800px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws9{word-spacing:-13.813200px;}
.ws8{word-spacing:-13.512000px;}
.ws0{word-spacing:-13.476000px;}
.wsd{word-spacing:-13.456200px;}
.wsc{word-spacing:-13.345200px;}
.ws4{word-spacing:-13.279800px;}
.ws1{word-spacing:-13.147200px;}
.ws6{word-spacing:-13.145760px;}
.ws7{word-spacing:-12.998400px;}
.wsb{word-spacing:-12.886800px;}
.ws3{word-spacing:-12.841800px;}
.wsa{word-spacing:-12.373200px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-2.631840px;}
._3{margin-left:-1.279680px;}
._0{width:1.195200px;}
._11{width:2.748960px;}
._4{width:4.541760px;}
._e{width:6.125040px;}
._10{width:7.952880px;}
._8{width:8.964000px;}
._9{width:9.969600px;}
._2{width:11.414160px;}
._d{width:14.261760px;}
._1{width:15.477840px;}
._c{width:16.792560px;}
._b{width:18.406080px;}
._f{width:20.127600px;}
._15{width:21.334320px;}
._7{width:23.002560px;}
._6{width:24.277440px;}
._12{width:25.338240px;}
._5{width:26.350320px;}
._13{width:27.511200px;}
._14{width:28.782720px;}
._16{width:30.955680px;}
._19{width:32.569200px;}
._1e{width:34.481520px;}
._1f{width:35.616960px;}
._18{width:41.113440px;}
._20{width:42.190560px;}
._17{width:44.461440px;}
._1c{width:45.810720px;}
._1d{width:47.031120px;}
._1a{width:49.302000px;}
._a{width:100.971120px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.140000px;}
.y4{bottom:56.880000px;}
.y61{bottom:90.900000px;}
.y9a{bottom:98.100000px;}
.y32{bottom:99.000000px;}
.yba{bottom:100.620000px;}
.y60{bottom:108.540000px;}
.y99{bottom:115.740000px;}
.y31{bottom:116.460000px;}
.yb9{bottom:118.080000px;}
.y5f{bottom:126.000000px;}
.y98{bottom:133.380000px;}
.y30{bottom:134.460000px;}
.yb8{bottom:135.720000px;}
.y5e{bottom:143.640000px;}
.y97{bottom:151.020000px;}
.yb7{bottom:153.360000px;}
.y2f{bottom:153.540000px;}
.y5d{bottom:161.280000px;}
.ye2{bottom:165.780000px;}
.y96{bottom:168.480000px;}
.yb6{bottom:170.820000px;}
.y2e{bottom:171.360000px;}
.y5c{bottom:178.740000px;}
.y95{bottom:186.120000px;}
.yb5{bottom:188.460000px;}
.y2d{bottom:190.440000px;}
.yf6{bottom:193.140000px;}
.ye1{bottom:195.480000px;}
.y5b{bottom:196.380000px;}
.y94{bottom:203.760000px;}
.yb4{bottom:206.100000px;}
.y2c{bottom:207.900000px;}
.yf5{bottom:210.780000px;}
.ye0{bottom:212.940000px;}
.y5a{bottom:214.020000px;}
.y93{bottom:221.220000px;}
.yb3{bottom:223.740000px;}
.y2b{bottom:225.540000px;}
.yf4{bottom:228.240000px;}
.ydf{bottom:230.580000px;}
.y59{bottom:231.480000px;}
.y92{bottom:238.890000px;}
.yb2{bottom:241.230000px;}
.yf3{bottom:245.910000px;}
.yde{bottom:248.250000px;}
.y58{bottom:249.150000px;}
.y2a{bottom:255.090000px;}
.y91{bottom:256.530000px;}
.yb1{bottom:258.870000px;}
.y57{bottom:266.790000px;}
.y29{bottom:272.730000px;}
.y90{bottom:273.990000px;}
.ydd{bottom:277.770000px;}
.y56{bottom:284.430000px;}
.yb0{bottom:285.510000px;}
.y28{bottom:290.370000px;}
.y8f{bottom:291.630000px;}
.ydc{bottom:295.410000px;}
.y55{bottom:301.890000px;}
.yaf{bottom:302.970000px;}
.y27{bottom:308.010000px;}
.y8e{bottom:309.270000px;}
.y54{bottom:319.530000px;}
.yae{bottom:320.610000px;}
.ydb{bottom:324.930000px;}
.y26{bottom:325.470000px;}
.y8d{bottom:326.730000px;}
.y53{bottom:337.170000px;}
.yad{bottom:338.250000px;}
.y25{bottom:343.110000px;}
.y52{bottom:354.630000px;}
.yac{bottom:355.710000px;}
.y24{bottom:360.750000px;}
.yda{bottom:372.090000px;}
.y51{bottom:372.270000px;}
.yab{bottom:373.350000px;}
.y23{bottom:378.210000px;}
.yd9{bottom:389.730000px;}
.y50{bottom:389.910000px;}
.yaa{bottom:390.990000px;}
.y22{bottom:395.850000px;}
.y4f{bottom:407.370000px;}
.y8c{bottom:408.630000px;}
.y21{bottom:413.490000px;}
.yd8{bottom:419.250000px;}
.y4e{bottom:425.010000px;}
.y8b{bottom:426.090000px;}
.y20{bottom:430.950000px;}
.yd7{bottom:436.890000px;}
.y8a{bottom:443.730000px;}
.y1f{bottom:448.590000px;}
.yd6{bottom:454.530000px;}
.y89{bottom:461.370000px;}
.y1e{bottom:466.275000px;}
.y88{bottom:478.875000px;}
.y1d{bottom:483.915000px;}
.yd5{bottom:484.095000px;}
.y87{bottom:496.515000px;}
.y1c{bottom:501.375000px;}
.yd4{bottom:501.735000px;}
.y4d{bottom:506.775000px;}
.y86{bottom:514.155000px;}
.y1b{bottom:519.015000px;}
.yd3{bottom:519.375000px;}
.y4c{bottom:524.415000px;}
.y85{bottom:531.615000px;}
.y1a{bottom:536.655000px;}
.y4b{bottom:542.055000px;}
.yd2{bottom:548.895000px;}
.y84{bottom:549.255000px;}
.y19{bottom:554.115000px;}
.y4a{bottom:559.515000px;}
.yd1{bottom:566.535000px;}
.y83{bottom:566.895000px;}
.y18{bottom:571.755000px;}
.y49{bottom:577.155000px;}
.yd0{bottom:583.995000px;}
.y82{bottom:584.355000px;}
.yf2{bottom:587.955000px;}
.y17{bottom:589.395000px;}
.y48{bottom:594.795000px;}
.y81{bottom:601.995000px;}
.y16{bottom:606.855000px;}
.y47{bottom:612.255000px;}
.ycf{bottom:613.695000px;}
.yf1{bottom:617.475000px;}
.y80{bottom:619.635000px;}
.y15{bottom:624.495000px;}
.y46{bottom:629.895000px;}
.yce{bottom:631.155000px;}
.y7f{bottom:637.275000px;}
.y14{bottom:642.135000px;}
.yf0{bottom:647.175000px;}
.y45{bottom:647.535000px;}
.ycd{bottom:648.795000px;}
.y7e{bottom:654.735000px;}
.y13{bottom:659.595000px;}
.y44{bottom:665.175000px;}
.y7d{bottom:672.375000px;}
.yef{bottom:676.695000px;}
.y12{bottom:677.235000px;}
.ycc{bottom:678.315000px;}
.y43{bottom:682.635000px;}
.y7c{bottom:690.015000px;}
.y11{bottom:694.905000px;}
.ycb{bottom:695.985000px;}
.y42{bottom:700.305000px;}
.yee{bottom:706.425000px;}
.y7b{bottom:707.505000px;}
.y10{bottom:712.545000px;}
.yca{bottom:713.625000px;}
.ya9{bottom:716.505000px;}
.y41{bottom:717.945000px;}
.y7a{bottom:725.145000px;}
.ya8{bottom:734.145000px;}
.y40{bottom:735.405000px;}
.yed{bottom:735.945000px;}
.yf{bottom:742.065000px;}
.y79{bottom:742.785000px;}
.yc9{bottom:743.145000px;}
.ya7{bottom:751.785000px;}
.y3f{bottom:753.045000px;}
.ye{bottom:759.705000px;}
.y78{bottom:760.245000px;}
.yc8{bottom:760.785000px;}
.yec{bottom:765.465000px;}
.ya6{bottom:769.245000px;}
.y3e{bottom:770.685000px;}
.yd{bottom:777.165000px;}
.y77{bottom:777.885000px;}
.yc7{bottom:778.425000px;}
.ya5{bottom:786.885000px;}
.y3d{bottom:788.145000px;}
.yc{bottom:794.805000px;}
.yeb{bottom:795.165000px;}
.y76{bottom:795.525000px;}
.ya4{bottom:804.525000px;}
.y3c{bottom:805.785000px;}
.yc6{bottom:807.945000px;}
.yb{bottom:812.445000px;}
.y75{bottom:813.165000px;}
.ya3{bottom:822.165000px;}
.y3b{bottom:823.425000px;}
.yea{bottom:824.685000px;}
.yc5{bottom:825.585000px;}
.ya{bottom:829.905000px;}
.y74{bottom:830.625000px;}
.ya2{bottom:839.625000px;}
.y3a{bottom:841.065000px;}
.y9{bottom:847.545000px;}
.y73{bottom:848.265000px;}
.ye9{bottom:854.205000px;}
.yc4{bottom:855.105000px;}
.ya1{bottom:857.265000px;}
.y39{bottom:858.525000px;}
.y8{bottom:865.185000px;}
.y72{bottom:865.905000px;}
.yc3{bottom:872.745000px;}
.ya0{bottom:874.905000px;}
.y38{bottom:876.165000px;}
.y7{bottom:882.825000px;}
.y71{bottom:883.365000px;}
.ye8{bottom:883.905000px;}
.y9f{bottom:892.365000px;}
.y37{bottom:893.805000px;}
.y6{bottom:900.285000px;}
.y70{bottom:901.005000px;}
.yc2{bottom:902.265000px;}
.y9e{bottom:910.005000px;}
.y36{bottom:911.265000px;}
.ye7{bottom:913.425000px;}
.y5{bottom:917.925000px;}
.y6f{bottom:918.645000px;}
.yc1{bottom:919.905000px;}
.y9d{bottom:927.690000px;}
.y35{bottom:928.950000px;}
.y6e{bottom:936.150000px;}
.ye6{bottom:942.990000px;}
.y9c{bottom:945.150000px;}
.y34{bottom:946.590000px;}
.yc0{bottom:949.470000px;}
.y6d{bottom:953.790000px;}
.y9b{bottom:962.790000px;}
.y33{bottom:964.050000px;}
.ybf{bottom:967.110000px;}
.ye5{bottom:972.690000px;}
.y6c{bottom:980.430000px;}
.ybe{bottom:996.630000px;}
.y6b{bottom:998.070000px;}
.ye4{bottom:1002.210000px;}
.ybd{bottom:1014.270000px;}
.y6a{bottom:1015.530000px;}
.ye3{bottom:1031.910000px;}
.y69{bottom:1033.170000px;}
.ybc{bottom:1043.790000px;}
.y68{bottom:1050.810000px;}
.ybb{bottom:1061.430000px;}
.y67{bottom:1068.270000px;}
.y66{bottom:1085.910000px;}
.y65{bottom:1103.550000px;}
.y64{bottom:1121.010000px;}
.y63{bottom:1138.650000px;}
.y62{bottom:1156.320000px;}
.y3{bottom:1175.220000px;}
.y1{bottom:1191.420000px;}
.h2{height:18.360000px;}
.h3{height:42.894141px;}
.h4{height:47.545312px;}
.h5{height:49.313672px;}
.h6{height:54.660937px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:319.035000px;}
.w3{width:360.645000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x2{left:7.956000px;}
.x1{left:77.040000px;}
.x5{left:84.996000px;}
.x3{left:396.075000px;}
.x6{left:454.245000px;}
.x7{left:467.745000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.231467pt;}
.ls8{letter-spacing:-0.132267pt;}
.ls4{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:-0.001280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.274667pt;}
.ls3{letter-spacing:0.292267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.324267pt;}
.lsa{letter-spacing:0.592000pt;}
.ls1{letter-spacing:15.193600pt;}
.ws2{word-spacing:-58.880000pt;}
.ws9{word-spacing:-12.278400pt;}
.ws8{word-spacing:-12.010667pt;}
.ws0{word-spacing:-11.978667pt;}
.wsd{word-spacing:-11.961067pt;}
.wsc{word-spacing:-11.862400pt;}
.ws4{word-spacing:-11.804267pt;}
.ws1{word-spacing:-11.686400pt;}
.ws6{word-spacing:-11.685120pt;}
.ws7{word-spacing:-11.554133pt;}
.wsb{word-spacing:-11.454933pt;}
.ws3{word-spacing:-11.414933pt;}
.wsa{word-spacing:-10.998400pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-2.339413pt;}
._3{margin-left:-1.137493pt;}
._0{width:1.062400pt;}
._11{width:2.443520pt;}
._4{width:4.037120pt;}
._e{width:5.444480pt;}
._10{width:7.069227pt;}
._8{width:7.968000pt;}
._9{width:8.861867pt;}
._2{width:10.145920pt;}
._d{width:12.677120pt;}
._1{width:13.758080pt;}
._c{width:14.926720pt;}
._b{width:16.360960pt;}
._f{width:17.891200pt;}
._15{width:18.963840pt;}
._7{width:20.446720pt;}
._6{width:21.579947pt;}
._12{width:22.522880pt;}
._5{width:23.422507pt;}
._13{width:24.454400pt;}
._14{width:25.584640pt;}
._16{width:27.516160pt;}
._19{width:28.950400pt;}
._1e{width:30.650240pt;}
._1f{width:31.659520pt;}
._18{width:36.545280pt;}
._20{width:37.502720pt;}
._17{width:39.521280pt;}
._1c{width:40.720640pt;}
._1d{width:41.805440pt;}
._1a{width:43.824000pt;}
._a{width:89.752107pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.680000pt;}
.y4{bottom:50.560000pt;}
.y61{bottom:80.800000pt;}
.y9a{bottom:87.200000pt;}
.y32{bottom:88.000000pt;}
.yba{bottom:89.440000pt;}
.y60{bottom:96.480000pt;}
.y99{bottom:102.880000pt;}
.y31{bottom:103.520000pt;}
.yb9{bottom:104.960000pt;}
.y5f{bottom:112.000000pt;}
.y98{bottom:118.560000pt;}
.y30{bottom:119.520000pt;}
.yb8{bottom:120.640000pt;}
.y5e{bottom:127.680000pt;}
.y97{bottom:134.240000pt;}
.yb7{bottom:136.320000pt;}
.y2f{bottom:136.480000pt;}
.y5d{bottom:143.360000pt;}
.ye2{bottom:147.360000pt;}
.y96{bottom:149.760000pt;}
.yb6{bottom:151.840000pt;}
.y2e{bottom:152.320000pt;}
.y5c{bottom:158.880000pt;}
.y95{bottom:165.440000pt;}
.yb5{bottom:167.520000pt;}
.y2d{bottom:169.280000pt;}
.yf6{bottom:171.680000pt;}
.ye1{bottom:173.760000pt;}
.y5b{bottom:174.560000pt;}
.y94{bottom:181.120000pt;}
.yb4{bottom:183.200000pt;}
.y2c{bottom:184.800000pt;}
.yf5{bottom:187.360000pt;}
.ye0{bottom:189.280000pt;}
.y5a{bottom:190.240000pt;}
.y93{bottom:196.640000pt;}
.yb3{bottom:198.880000pt;}
.y2b{bottom:200.480000pt;}
.yf4{bottom:202.880000pt;}
.ydf{bottom:204.960000pt;}
.y59{bottom:205.760000pt;}
.y92{bottom:212.346667pt;}
.yb2{bottom:214.426667pt;}
.yf3{bottom:218.586667pt;}
.yde{bottom:220.666667pt;}
.y58{bottom:221.466667pt;}
.y2a{bottom:226.746667pt;}
.y91{bottom:228.026667pt;}
.yb1{bottom:230.106667pt;}
.y57{bottom:237.146667pt;}
.y29{bottom:242.426667pt;}
.y90{bottom:243.546667pt;}
.ydd{bottom:246.906667pt;}
.y56{bottom:252.826667pt;}
.yb0{bottom:253.786667pt;}
.y28{bottom:258.106667pt;}
.y8f{bottom:259.226667pt;}
.ydc{bottom:262.586667pt;}
.y55{bottom:268.346667pt;}
.yaf{bottom:269.306667pt;}
.y27{bottom:273.786667pt;}
.y8e{bottom:274.906667pt;}
.y54{bottom:284.026667pt;}
.yae{bottom:284.986667pt;}
.ydb{bottom:288.826667pt;}
.y26{bottom:289.306667pt;}
.y8d{bottom:290.426667pt;}
.y53{bottom:299.706667pt;}
.yad{bottom:300.666667pt;}
.y25{bottom:304.986667pt;}
.y52{bottom:315.226667pt;}
.yac{bottom:316.186667pt;}
.y24{bottom:320.666667pt;}
.yda{bottom:330.746667pt;}
.y51{bottom:330.906667pt;}
.yab{bottom:331.866667pt;}
.y23{bottom:336.186667pt;}
.yd9{bottom:346.426667pt;}
.y50{bottom:346.586667pt;}
.yaa{bottom:347.546667pt;}
.y22{bottom:351.866667pt;}
.y4f{bottom:362.106667pt;}
.y8c{bottom:363.226667pt;}
.y21{bottom:367.546667pt;}
.yd8{bottom:372.666667pt;}
.y4e{bottom:377.786667pt;}
.y8b{bottom:378.746667pt;}
.y20{bottom:383.066667pt;}
.yd7{bottom:388.346667pt;}
.y8a{bottom:394.426667pt;}
.y1f{bottom:398.746667pt;}
.yd6{bottom:404.026667pt;}
.y89{bottom:410.106667pt;}
.y1e{bottom:414.466667pt;}
.y88{bottom:425.666667pt;}
.y1d{bottom:430.146667pt;}
.yd5{bottom:430.306667pt;}
.y87{bottom:441.346667pt;}
.y1c{bottom:445.666667pt;}
.yd4{bottom:445.986667pt;}
.y4d{bottom:450.466667pt;}
.y86{bottom:457.026667pt;}
.y1b{bottom:461.346667pt;}
.yd3{bottom:461.666667pt;}
.y4c{bottom:466.146667pt;}
.y85{bottom:472.546667pt;}
.y1a{bottom:477.026667pt;}
.y4b{bottom:481.826667pt;}
.yd2{bottom:487.906667pt;}
.y84{bottom:488.226667pt;}
.y19{bottom:492.546667pt;}
.y4a{bottom:497.346667pt;}
.yd1{bottom:503.586667pt;}
.y83{bottom:503.906667pt;}
.y18{bottom:508.226667pt;}
.y49{bottom:513.026667pt;}
.yd0{bottom:519.106667pt;}
.y82{bottom:519.426667pt;}
.yf2{bottom:522.626667pt;}
.y17{bottom:523.906667pt;}
.y48{bottom:528.706667pt;}
.y81{bottom:535.106667pt;}
.y16{bottom:539.426667pt;}
.y47{bottom:544.226667pt;}
.ycf{bottom:545.506667pt;}
.yf1{bottom:548.866667pt;}
.y80{bottom:550.786667pt;}
.y15{bottom:555.106667pt;}
.y46{bottom:559.906667pt;}
.yce{bottom:561.026667pt;}
.y7f{bottom:566.466667pt;}
.y14{bottom:570.786667pt;}
.yf0{bottom:575.266667pt;}
.y45{bottom:575.586667pt;}
.ycd{bottom:576.706667pt;}
.y7e{bottom:581.986667pt;}
.y13{bottom:586.306667pt;}
.y44{bottom:591.266667pt;}
.y7d{bottom:597.666667pt;}
.yef{bottom:601.506667pt;}
.y12{bottom:601.986667pt;}
.ycc{bottom:602.946667pt;}
.y43{bottom:606.786667pt;}
.y7c{bottom:613.346667pt;}
.y11{bottom:617.693333pt;}
.ycb{bottom:618.653333pt;}
.y42{bottom:622.493333pt;}
.yee{bottom:627.933333pt;}
.y7b{bottom:628.893333pt;}
.y10{bottom:633.373333pt;}
.yca{bottom:634.333333pt;}
.ya9{bottom:636.893333pt;}
.y41{bottom:638.173333pt;}
.y7a{bottom:644.573333pt;}
.ya8{bottom:652.573333pt;}
.y40{bottom:653.693333pt;}
.yed{bottom:654.173333pt;}
.yf{bottom:659.613333pt;}
.y79{bottom:660.253333pt;}
.yc9{bottom:660.573333pt;}
.ya7{bottom:668.253333pt;}
.y3f{bottom:669.373333pt;}
.ye{bottom:675.293333pt;}
.y78{bottom:675.773333pt;}
.yc8{bottom:676.253333pt;}
.yec{bottom:680.413333pt;}
.ya6{bottom:683.773333pt;}
.y3e{bottom:685.053333pt;}
.yd{bottom:690.813333pt;}
.y77{bottom:691.453333pt;}
.yc7{bottom:691.933333pt;}
.ya5{bottom:699.453333pt;}
.y3d{bottom:700.573333pt;}
.yc{bottom:706.493333pt;}
.yeb{bottom:706.813333pt;}
.y76{bottom:707.133333pt;}
.ya4{bottom:715.133333pt;}
.y3c{bottom:716.253333pt;}
.yc6{bottom:718.173333pt;}
.yb{bottom:722.173333pt;}
.y75{bottom:722.813333pt;}
.ya3{bottom:730.813333pt;}
.y3b{bottom:731.933333pt;}
.yea{bottom:733.053333pt;}
.yc5{bottom:733.853333pt;}
.ya{bottom:737.693333pt;}
.y74{bottom:738.333333pt;}
.ya2{bottom:746.333333pt;}
.y3a{bottom:747.613333pt;}
.y9{bottom:753.373333pt;}
.y73{bottom:754.013333pt;}
.ye9{bottom:759.293333pt;}
.yc4{bottom:760.093333pt;}
.ya1{bottom:762.013333pt;}
.y39{bottom:763.133333pt;}
.y8{bottom:769.053333pt;}
.y72{bottom:769.693333pt;}
.yc3{bottom:775.773333pt;}
.ya0{bottom:777.693333pt;}
.y38{bottom:778.813333pt;}
.y7{bottom:784.733333pt;}
.y71{bottom:785.213333pt;}
.ye8{bottom:785.693333pt;}
.y9f{bottom:793.213333pt;}
.y37{bottom:794.493333pt;}
.y6{bottom:800.253333pt;}
.y70{bottom:800.893333pt;}
.yc2{bottom:802.013333pt;}
.y9e{bottom:808.893333pt;}
.y36{bottom:810.013333pt;}
.ye7{bottom:811.933333pt;}
.y5{bottom:815.933333pt;}
.y6f{bottom:816.573333pt;}
.yc1{bottom:817.693333pt;}
.y9d{bottom:824.613333pt;}
.y35{bottom:825.733333pt;}
.y6e{bottom:832.133333pt;}
.ye6{bottom:838.213333pt;}
.y9c{bottom:840.133333pt;}
.y34{bottom:841.413333pt;}
.yc0{bottom:843.973333pt;}
.y6d{bottom:847.813333pt;}
.y9b{bottom:855.813333pt;}
.y33{bottom:856.933333pt;}
.ybf{bottom:859.653333pt;}
.ye5{bottom:864.613333pt;}
.y6c{bottom:871.493333pt;}
.ybe{bottom:885.893333pt;}
.y6b{bottom:887.173333pt;}
.ye4{bottom:890.853333pt;}
.ybd{bottom:901.573333pt;}
.y6a{bottom:902.693333pt;}
.ye3{bottom:917.253333pt;}
.y69{bottom:918.373333pt;}
.ybc{bottom:927.813333pt;}
.y68{bottom:934.053333pt;}
.ybb{bottom:943.493333pt;}
.y67{bottom:949.573333pt;}
.y66{bottom:965.253333pt;}
.y65{bottom:980.933333pt;}
.y64{bottom:996.453333pt;}
.y63{bottom:1012.133333pt;}
.y62{bottom:1027.840000pt;}
.y3{bottom:1044.640000pt;}
.y1{bottom:1059.040000pt;}
.h2{height:16.320000pt;}
.h3{height:38.128125pt;}
.h4{height:42.262500pt;}
.h5{height:43.834375pt;}
.h6{height:48.587500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:283.586667pt;}
.w3{width:320.573333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x2{left:7.072000pt;}
.x1{left:68.480000pt;}
.x5{left:75.552000pt;}
.x3{left:352.066667pt;}
.x6{left:403.773333pt;}
.x7{left:415.773333pt;}
}




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