
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_369001f010ca8ed4a0358ec5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_34277b2bdcada1582a2aedd7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_0149c2e1bb3850eb928b116c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_3f7a9678f5b9850a1968d540.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_76be5151b2c9d4008c5fe38d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_3f292ac698a9c3a71182d899.woff')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.067200px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.020160px;}
.lsb{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls12{letter-spacing:47.726640px;}
.ls11{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9{word-spacing:-60.120000px;}
.ws6{word-spacing:-13.399800px;}
.ws4{word-spacing:-13.275600px;}
.ws8{word-spacing:-13.275360px;}
.wsa{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:3.327120px;}
._8{margin-left:-3.893039px;}
._3{margin-left:-2.721120px;}
._0{margin-left:-1.110000px;}
._2{width:1.174236px;}
._7{width:2.817688px;}
._5{width:4.415398px;}
._4{width:5.591400px;}
._a{width:7.122000px;}
._9{width:8.311405px;}
._6{width:9.739200px;}
._10{width:11.183282px;}
._c{width:14.877600px;}
._d{width:16.711800px;}
._11{width:18.638760px;}
._e{width:20.080080px;}
._f{width:21.162240px;}
._b{width:22.725600px;}
._1b{width:24.393000px;}
._19{width:25.911720px;}
._12{width:28.977840px;}
._15{width:31.863600px;}
._13{width:33.896880px;}
._1d{width:34.929720px;}
._18{width:43.286400px;}
._2e{width:44.516640px;}
._24{width:45.631080px;}
._2d{width:46.713240px;}
._1{width:53.950956px;}
._2b{width:57.174120px;}
._17{width:63.727200px;}
._28{width:64.837200px;}
._26{width:65.891520px;}
._14{width:72.384480px;}
._21{width:77.374440px;}
._16{width:78.516720px;}
._1e{width:82.123920px;}
._33{width:91.382400px;}
._1a{width:92.584800px;}
._25{width:102.712800px;}
._2a{width:117.053640px;}
._29{width:153.606600px;}
._2c{width:202.724640px;}
._27{width:211.502160px;}
._23{width:227.914920px;}
._20{width:235.369800px;}
._1f{width:253.465920px;}
._22{width:291.822480px;}
._1c{width:294.407640px;}
._31{width:346.832280px;}
._32{width:347.854320px;}
._2f{width:413.385120px;}
._30{width:1103.442480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y98{bottom:7.830000px;}
.ya1{bottom:7.860000px;}
.y9d{bottom:7.920000px;}
.y99{bottom:16.650000px;}
.y9c{bottom:16.740000px;}
.y97{bottom:25.470000px;}
.ya0{bottom:25.500000px;}
.yc0{bottom:34.200000px;}
.yc4{bottom:34.290000px;}
.ybf{bottom:43.020000px;}
.yc2{bottom:43.050000px;}
.yc5{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y90{bottom:119.910000px;}
.y58{bottom:123.330000px;}
.ycd{bottom:124.320000px;}
.y73{bottom:130.620000px;}
.y57{bottom:140.880000px;}
.ycc{bottom:141.870000px;}
.yb0{bottom:142.320000px;}
.yef{bottom:145.920000px;}
.y72{bottom:148.260000px;}
.y8f{bottom:155.550000px;}
.y56{bottom:158.430000px;}
.yaf{bottom:159.870000px;}
.yee{bottom:163.470000px;}
.y71{bottom:165.810000px;}
.ycb{bottom:168.510000px;}
.y8e{bottom:173.100000px;}
.y55{bottom:176.070000px;}
.yae{bottom:177.510000px;}
.y70{bottom:183.360000px;}
.yed{bottom:190.020000px;}
.y8d{bottom:190.650000px;}
.y54{bottom:193.620000px;}
.yad{bottom:195.060000px;}
.y6f{bottom:201.000000px;}
.y24{bottom:203.700000px;}
.yca{bottom:204.060000px;}
.yec{bottom:207.660000px;}
.y8c{bottom:208.290000px;}
.yac{bottom:212.610000px;}
.y6e{bottom:218.550000px;}
.y53{bottom:220.260000px;}
.y23{bottom:221.340000px;}
.yc9{bottom:221.610000px;}
.yeb{bottom:225.210000px;}
.y8b{bottom:225.840000px;}
.yab{bottom:230.250000px;}
.y22{bottom:238.890000px;}
.yc8{bottom:239.250000px;}
.yea{bottom:242.850000px;}
.y8a{bottom:243.480000px;}
.y6d{bottom:245.190000px;}
.yaa{bottom:247.800000px;}
.y52{bottom:255.810000px;}
.y21{bottom:256.440000px;}
.y89{bottom:261.030000px;}
.ya9{bottom:265.440000px;}
.yc7{bottom:265.800000px;}
.ye9{bottom:269.400000px;}
.y51{bottom:273.360000px;}
.y20{bottom:274.080000px;}
.y88{bottom:278.580000px;}
.y6c{bottom:280.740000px;}
.ya8{bottom:282.990000px;}
.ye8{bottom:286.950000px;}
.y50{bottom:291.000000px;}
.y1f{bottom:291.630000px;}
.y87{bottom:296.220000px;}
.y6b{bottom:298.290000px;}
.ye7{bottom:304.590000px;}
.y4f{bottom:308.550000px;}
.y1e{bottom:309.270000px;}
.ya7{bottom:309.540000px;}
.yc6{bottom:310.440000px;}
.y86{bottom:313.770000px;}
.y6a{bottom:315.930000px;}
.y4e{bottom:326.190000px;}
.y1d{bottom:326.820000px;}
.ye6{bottom:331.500000px;}
.y69{bottom:333.480000px;}
.y85{bottom:340.410000px;}
.y4d{bottom:343.740000px;}
.y1c{bottom:344.370000px;}
.ya6{bottom:345.180000px;}
.y68{bottom:351.120000px;}
.y4c{bottom:361.290000px;}
.ya5{bottom:362.730000px;}
.y67{bottom:368.670000px;}
.y1b{bottom:371.010000px;}
.yc3{bottom:373.260000px;}
.y84{bottom:375.960000px;}
.y4b{bottom:378.930000px;}
.ye5{bottom:379.740000px;}
.ya4{bottom:380.370000px;}
.y66{bottom:386.220000px;}
.y83{bottom:393.510000px;}
.y4a{bottom:396.480000px;}
.ye4{bottom:397.290000px;}
.ya3{bottom:397.920000px;}
.y65{bottom:403.860000px;}
.y1a{bottom:406.560000px;}
.y82{bottom:411.150000px;}
.ye3{bottom:414.930000px;}
.y49{bottom:423.120000px;}
.y19{bottom:424.200000px;}
.ya2{bottom:424.470000px;}
.y81{bottom:428.700000px;}
.y64{bottom:430.410000px;}
.ye2{bottom:432.480000px;}
.yc1{bottom:436.170000px;}
.y18{bottom:441.750000px;}
.ye1{bottom:450.120000px;}
.y80{bottom:455.250000px;}
.y48{bottom:458.670000px;}
.y17{bottom:459.300000px;}
.y63{bottom:466.050000px;}
.ye0{bottom:467.670000px;}
.y9f{bottom:469.110000px;}
.y47{bottom:476.250000px;}
.y16{bottom:476.970000px;}
.y62{bottom:483.630000px;}
.ydf{bottom:485.250000px;}
.y46{bottom:493.890000px;}
.ybe{bottom:499.110000px;}
.y61{bottom:501.180000px;}
.y7f{bottom:502.170000px;}
.yde{bottom:502.890000px;}
.y15{bottom:503.520000px;}
.y45{bottom:511.440000px;}
.yff{bottom:514.140000px;}
.y9e{bottom:514.410000px;}
.y60{bottom:518.820000px;}
.ydd{bottom:520.440000px;}
.y44{bottom:529.080000px;}
.yfe{bottom:531.690000px;}
.y7e{bottom:534.390000px;}
.y5f{bottom:545.370000px;}
.y43{bottom:546.630000px;}
.ydc{bottom:547.080000px;}
.yfd{bottom:549.330000px;}
.y14{bottom:550.410000px;}
.y9b{bottom:559.680000px;}
.ybd{bottom:561.930000px;}
.y42{bottom:564.180000px;}
.yfc{bottom:566.880000px;}
.y13{bottom:568.320000px;}
.y41{bottom:581.820000px;}
.y5e{bottom:592.260000px;}
.yfb{bottom:593.430000px;}
.ydb{bottom:593.880000px;}
.y40{bottom:599.370000px;}
.y9a{bottom:605.040000px;}
.y12{bottom:605.310000px;}
.yfa{bottom:611.070000px;}
.yda{bottom:611.430000px;}
.y3f{bottom:617.010000px;}
.y11{bottom:622.860000px;}
.y5d{bottom:624.390000px;}
.ybc{bottom:628.620000px;}
.yd9{bottom:629.070000px;}
.yf9{bottom:637.620000px;}
.y10{bottom:640.500000px;}
.y3e{bottom:643.560000px;}
.yd8{bottom:646.620000px;}
.y96{bottom:650.310000px;}
.yf8{bottom:655.260000px;}
.yf{bottom:658.050000px;}
.ybb{bottom:664.260000px;}
.yf7{bottom:672.810000px;}
.ye{bottom:675.600000px;}
.y3d{bottom:679.110000px;}
.yba{bottom:681.810000px;}
.yf6{bottom:690.360000px;}
.yd{bottom:693.240000px;}
.y3c{bottom:696.750000px;}
.yb9{bottom:699.360000px;}
.yc{bottom:710.790000px;}
.y3b{bottom:714.300000px;}
.y95{bottom:717.000000px;}
.yb{bottom:728.430000px;}
.y3a{bottom:731.940000px;}
.yb8{bottom:734.550000px;}
.yb7{bottom:752.190000px;}
.y94{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.y39{bottom:758.490000px;}
.yf5{bottom:761.190000px;}
.yb6{bottom:769.740000px;}
.y93{bottom:770.190000px;}
.yd7{bottom:778.740000px;}
.yb5{bottom:787.290000px;}
.y92{bottom:787.740000px;}
.yf4{bottom:796.290000px;}
.y9{bottom:803.580000px;}
.yb4{bottom:804.930000px;}
.y38{bottom:805.290000px;}
.yf3{bottom:813.930000px;}
.yd6{bottom:814.290000px;}
.yb3{bottom:822.480000px;}
.y37{bottom:822.930000px;}
.yd5{bottom:831.930000px;}
.y8{bottom:839.130000px;}
.yb2{bottom:840.030000px;}
.y36{bottom:840.480000px;}
.yd4{bottom:849.480000px;}
.y35{bottom:858.030000px;}
.yb1{bottom:866.670000px;}
.yd3{bottom:867.030000px;}
.y7{bottom:874.950000px;}
.y34{bottom:875.670000px;}
.yd2{bottom:884.670000px;}
.y33{bottom:893.220000px;}
.y7d{bottom:902.220000px;}
.y32{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y7c{bottom:919.860000px;}
.y31{bottom:928.410000px;}
.y7b{bottom:937.410000px;}
.y5{bottom:947.040000px;}
.y30{bottom:954.960000px;}
.yf2{bottom:963.960000px;}
.y7a{bottom:972.600000px;}
.y91{bottom:972.960000px;}
.yd1{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y79{bottom:990.150000px;}
.y2f{bottom:990.600000px;}
.yf1{bottom:999.150000px;}
.y78{bottom:1007.790000px;}
.y2e{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.yf0{bottom:1016.820000px;}
.yd0{bottom:1017.180000px;}
.y77{bottom:1025.370000px;}
.y2d{bottom:1025.820000px;}
.ycf{bottom:1034.820000px;}
.y76{bottom:1042.920000px;}
.y2c{bottom:1043.370000px;}
.yce{bottom:1052.370000px;}
.y75{bottom:1060.560000px;}
.y2b{bottom:1060.920000px;}
.y5c{bottom:1069.920000px;}
.y2a{bottom:1078.560000px;}
.y74{bottom:1087.110000px;}
.y5b{bottom:1087.560000px;}
.y29{bottom:1096.110000px;}
.y5a{bottom:1105.110000px;}
.y28{bottom:1113.750000px;}
.y59{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h9{height:44.190000px;}
.ha{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:61.740000px;}
.hc{height:61.770000px;}
.he{height:61.793886px;}
.hd{height:61.830000px;}
.h8{height:62.585859px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:133.320000px;}
.w7{width:153.480000px;}
.w4{width:168.120000px;}
.w5{width:172.110000px;}
.w9{width:178.410000px;}
.w8{width:208.980000px;}
.wa{width:212.400000px;}
.w6{width:279.720000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:6.930000px;}
.x1{left:68.040000px;}
.x8{left:69.210000px;}
.xe{left:111.239987px;}
.x2{left:202.799987px;}
.x7{left:223.499987px;}
.x5{left:227.639987px;}
.xa{left:371.730000px;}
.xc{left:432.750000px;}
.xb{left:544.380000px;}
.xd{left:611.700000px;}
.x6{left:725.639987px;}
.x4{left:779.909987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.059733pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.017920pt;}
.lsb{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls12{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws9{word-spacing:-53.440000pt;}
.ws6{word-spacing:-11.910933pt;}
.ws4{word-spacing:-11.800533pt;}
.ws8{word-spacing:-11.800320pt;}
.wsa{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:2.957440pt;}
._8{margin-left:-3.460479pt;}
._3{margin-left:-2.418774pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.043765pt;}
._7{width:2.504612pt;}
._5{width:3.924798pt;}
._4{width:4.970134pt;}
._a{width:6.330667pt;}
._9{width:7.387916pt;}
._6{width:8.657066pt;}
._10{width:9.940695pt;}
._c{width:13.224534pt;}
._d{width:14.854933pt;}
._11{width:16.567787pt;}
._e{width:17.848960pt;}
._f{width:18.810880pt;}
._b{width:20.200534pt;}
._1b{width:21.682666pt;}
._19{width:23.032640pt;}
._12{width:25.758080pt;}
._15{width:28.323200pt;}
._13{width:30.130560pt;}
._1d{width:31.048640pt;}
._18{width:38.476800pt;}
._2e{width:39.570347pt;}
._24{width:40.560960pt;}
._2d{width:41.522880pt;}
._1{width:47.956405pt;}
._2b{width:50.821440pt;}
._17{width:56.646400pt;}
._28{width:57.633067pt;}
._26{width:58.570240pt;}
._14{width:64.341760pt;}
._21{width:68.777280pt;}
._16{width:69.792640pt;}
._1e{width:72.999040pt;}
._33{width:81.228800pt;}
._1a{width:82.297600pt;}
._25{width:91.300267pt;}
._2a{width:104.047680pt;}
._29{width:136.539200pt;}
._2c{width:180.199680pt;}
._27{width:188.001920pt;}
._23{width:202.591040pt;}
._20{width:209.217600pt;}
._1f{width:225.303040pt;}
._22{width:259.397760pt;}
._1c{width:261.695680pt;}
._31{width:308.295360pt;}
._32{width:309.203840pt;}
._2f{width:367.453440pt;}
._30{width:980.837760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:6.960000pt;}
.ya1{bottom:6.986667pt;}
.y9d{bottom:7.040000pt;}
.y99{bottom:14.800000pt;}
.y9c{bottom:14.880000pt;}
.y97{bottom:22.640000pt;}
.ya0{bottom:22.666667pt;}
.yc0{bottom:30.400000pt;}
.yc4{bottom:30.480000pt;}
.ybf{bottom:38.240000pt;}
.yc2{bottom:38.266667pt;}
.yc5{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y90{bottom:106.586667pt;}
.y58{bottom:109.626667pt;}
.ycd{bottom:110.506667pt;}
.y73{bottom:116.106667pt;}
.y57{bottom:125.226667pt;}
.ycc{bottom:126.106667pt;}
.yb0{bottom:126.506667pt;}
.yef{bottom:129.706667pt;}
.y72{bottom:131.786667pt;}
.y8f{bottom:138.266667pt;}
.y56{bottom:140.826667pt;}
.yaf{bottom:142.106667pt;}
.yee{bottom:145.306667pt;}
.y71{bottom:147.386667pt;}
.ycb{bottom:149.786667pt;}
.y8e{bottom:153.866667pt;}
.y55{bottom:156.506667pt;}
.yae{bottom:157.786667pt;}
.y70{bottom:162.986667pt;}
.yed{bottom:168.906667pt;}
.y8d{bottom:169.466667pt;}
.y54{bottom:172.106667pt;}
.yad{bottom:173.386667pt;}
.y6f{bottom:178.666667pt;}
.y24{bottom:181.066667pt;}
.yca{bottom:181.386667pt;}
.yec{bottom:184.586667pt;}
.y8c{bottom:185.146667pt;}
.yac{bottom:188.986667pt;}
.y6e{bottom:194.266667pt;}
.y53{bottom:195.786667pt;}
.y23{bottom:196.746667pt;}
.yc9{bottom:196.986667pt;}
.yeb{bottom:200.186667pt;}
.y8b{bottom:200.746667pt;}
.yab{bottom:204.666667pt;}
.y22{bottom:212.346667pt;}
.yc8{bottom:212.666667pt;}
.yea{bottom:215.866667pt;}
.y8a{bottom:216.426667pt;}
.y6d{bottom:217.946667pt;}
.yaa{bottom:220.266667pt;}
.y52{bottom:227.386667pt;}
.y21{bottom:227.946667pt;}
.y89{bottom:232.026667pt;}
.ya9{bottom:235.946667pt;}
.yc7{bottom:236.266667pt;}
.ye9{bottom:239.466667pt;}
.y51{bottom:242.986667pt;}
.y20{bottom:243.626667pt;}
.y88{bottom:247.626667pt;}
.y6c{bottom:249.546667pt;}
.ya8{bottom:251.546667pt;}
.ye8{bottom:255.066667pt;}
.y50{bottom:258.666667pt;}
.y1f{bottom:259.226667pt;}
.y87{bottom:263.306667pt;}
.y6b{bottom:265.146667pt;}
.ye7{bottom:270.746667pt;}
.y4f{bottom:274.266667pt;}
.y1e{bottom:274.906667pt;}
.ya7{bottom:275.146667pt;}
.yc6{bottom:275.946667pt;}
.y86{bottom:278.906667pt;}
.y6a{bottom:280.826667pt;}
.y4e{bottom:289.946667pt;}
.y1d{bottom:290.506667pt;}
.ye6{bottom:294.666667pt;}
.y69{bottom:296.426667pt;}
.y85{bottom:302.586667pt;}
.y4d{bottom:305.546667pt;}
.y1c{bottom:306.106667pt;}
.ya6{bottom:306.826667pt;}
.y68{bottom:312.106667pt;}
.y4c{bottom:321.146667pt;}
.ya5{bottom:322.426667pt;}
.y67{bottom:327.706667pt;}
.y1b{bottom:329.786667pt;}
.yc3{bottom:331.786667pt;}
.y84{bottom:334.186667pt;}
.y4b{bottom:336.826667pt;}
.ye5{bottom:337.546667pt;}
.ya4{bottom:338.106667pt;}
.y66{bottom:343.306667pt;}
.y83{bottom:349.786667pt;}
.y4a{bottom:352.426667pt;}
.ye4{bottom:353.146667pt;}
.ya3{bottom:353.706667pt;}
.y65{bottom:358.986667pt;}
.y1a{bottom:361.386667pt;}
.y82{bottom:365.466667pt;}
.ye3{bottom:368.826667pt;}
.y49{bottom:376.106667pt;}
.y19{bottom:377.066667pt;}
.ya2{bottom:377.306667pt;}
.y81{bottom:381.066667pt;}
.y64{bottom:382.586667pt;}
.ye2{bottom:384.426667pt;}
.yc1{bottom:387.706667pt;}
.y18{bottom:392.666667pt;}
.ye1{bottom:400.106667pt;}
.y80{bottom:404.666667pt;}
.y48{bottom:407.706667pt;}
.y17{bottom:408.266667pt;}
.y63{bottom:414.266667pt;}
.ye0{bottom:415.706667pt;}
.y9f{bottom:416.986667pt;}
.y47{bottom:423.333333pt;}
.y16{bottom:423.973333pt;}
.y62{bottom:429.893333pt;}
.ydf{bottom:431.333333pt;}
.y46{bottom:439.013333pt;}
.ybe{bottom:443.653333pt;}
.y61{bottom:445.493333pt;}
.y7f{bottom:446.373333pt;}
.yde{bottom:447.013333pt;}
.y15{bottom:447.573333pt;}
.y45{bottom:454.613333pt;}
.yff{bottom:457.013333pt;}
.y9e{bottom:457.253333pt;}
.y60{bottom:461.173333pt;}
.ydd{bottom:462.613333pt;}
.y44{bottom:470.293333pt;}
.yfe{bottom:472.613333pt;}
.y7e{bottom:475.013333pt;}
.y5f{bottom:484.773333pt;}
.y43{bottom:485.893333pt;}
.ydc{bottom:486.293333pt;}
.yfd{bottom:488.293333pt;}
.y14{bottom:489.253333pt;}
.y9b{bottom:497.493333pt;}
.ybd{bottom:499.493333pt;}
.y42{bottom:501.493333pt;}
.yfc{bottom:503.893333pt;}
.y13{bottom:505.173333pt;}
.y41{bottom:517.173333pt;}
.y5e{bottom:526.453333pt;}
.yfb{bottom:527.493333pt;}
.ydb{bottom:527.893333pt;}
.y40{bottom:532.773333pt;}
.y9a{bottom:537.813333pt;}
.y12{bottom:538.053333pt;}
.yfa{bottom:543.173333pt;}
.yda{bottom:543.493333pt;}
.y3f{bottom:548.453333pt;}
.y11{bottom:553.653333pt;}
.y5d{bottom:555.013333pt;}
.ybc{bottom:558.773333pt;}
.yd9{bottom:559.173333pt;}
.yf9{bottom:566.773333pt;}
.y10{bottom:569.333333pt;}
.y3e{bottom:572.053333pt;}
.yd8{bottom:574.773333pt;}
.y96{bottom:578.053333pt;}
.yf8{bottom:582.453333pt;}
.yf{bottom:584.933333pt;}
.ybb{bottom:590.453333pt;}
.yf7{bottom:598.053333pt;}
.ye{bottom:600.533333pt;}
.y3d{bottom:603.653333pt;}
.yba{bottom:606.053333pt;}
.yf6{bottom:613.653333pt;}
.yd{bottom:616.213333pt;}
.y3c{bottom:619.333333pt;}
.yb9{bottom:621.653333pt;}
.yc{bottom:631.813333pt;}
.y3b{bottom:634.933333pt;}
.y95{bottom:637.333333pt;}
.yb{bottom:647.493333pt;}
.y3a{bottom:650.613333pt;}
.yb8{bottom:652.933333pt;}
.yb7{bottom:668.613333pt;}
.y94{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.y39{bottom:674.213333pt;}
.yf5{bottom:676.613333pt;}
.yb6{bottom:684.213333pt;}
.y93{bottom:684.613333pt;}
.yd7{bottom:692.213333pt;}
.yb5{bottom:699.813333pt;}
.y92{bottom:700.213333pt;}
.yf4{bottom:707.813333pt;}
.y9{bottom:714.293333pt;}
.yb4{bottom:715.493333pt;}
.y38{bottom:715.813333pt;}
.yf3{bottom:723.493333pt;}
.yd6{bottom:723.813333pt;}
.yb3{bottom:731.093333pt;}
.y37{bottom:731.493333pt;}
.yd5{bottom:739.493333pt;}
.y8{bottom:745.893333pt;}
.yb2{bottom:746.693333pt;}
.y36{bottom:747.093333pt;}
.yd4{bottom:755.093333pt;}
.y35{bottom:762.693333pt;}
.yb1{bottom:770.373333pt;}
.yd3{bottom:770.693333pt;}
.y7{bottom:777.733333pt;}
.y34{bottom:778.373333pt;}
.yd2{bottom:786.373333pt;}
.y33{bottom:793.973333pt;}
.y7d{bottom:801.973333pt;}
.y32{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y7c{bottom:817.653333pt;}
.y31{bottom:825.253333pt;}
.y7b{bottom:833.253333pt;}
.y5{bottom:841.813333pt;}
.y30{bottom:848.853333pt;}
.yf2{bottom:856.853333pt;}
.y7a{bottom:864.533333pt;}
.y91{bottom:864.853333pt;}
.yd1{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y79{bottom:880.133333pt;}
.y2f{bottom:880.533333pt;}
.yf1{bottom:888.133333pt;}
.y78{bottom:895.813333pt;}
.y2e{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.yf0{bottom:903.840000pt;}
.yd0{bottom:904.160000pt;}
.y77{bottom:911.440000pt;}
.y2d{bottom:911.840000pt;}
.ycf{bottom:919.840000pt;}
.y76{bottom:927.040000pt;}
.y2c{bottom:927.440000pt;}
.yce{bottom:935.440000pt;}
.y75{bottom:942.720000pt;}
.y2b{bottom:943.040000pt;}
.y5c{bottom:951.040000pt;}
.y2a{bottom:958.720000pt;}
.y74{bottom:966.320000pt;}
.y5b{bottom:966.720000pt;}
.y29{bottom:974.320000pt;}
.y5a{bottom:982.320000pt;}
.y28{bottom:990.000000pt;}
.y59{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h9{height:39.280000pt;}
.ha{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:54.880000pt;}
.hc{height:54.906667pt;}
.he{height:54.927899pt;}
.hd{height:54.960000pt;}
.h8{height:55.631875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:118.506667pt;}
.w7{width:136.426667pt;}
.w4{width:149.440000pt;}
.w5{width:152.986667pt;}
.w9{width:158.586667pt;}
.w8{width:185.760000pt;}
.wa{width:188.800000pt;}
.w6{width:248.640000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.160000pt;}
.x1{left:60.480000pt;}
.x8{left:61.520000pt;}
.xe{left:98.879988pt;}
.x2{left:180.266655pt;}
.x7{left:198.666655pt;}
.x5{left:202.346655pt;}
.xa{left:330.426667pt;}
.xc{left:384.666667pt;}
.xb{left:483.893333pt;}
.xd{left:543.733333pt;}
.x6{left:645.013322pt;}
.x4{left:693.253322pt;}
.x3{left:704.053322pt;}
}




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