
    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_22cea6622fc848f3c9f21383.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.177734;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_b23f195056c9f70a2a75c661.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.177734;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_0b0f370daa250317be5d6ec0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187012;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_222cc78ffd742ea3808e30f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.187012;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_edb30b41fc798caf30121fa6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.158691;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_226ce8fc91e67b43b4347315.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.158691;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_cf3763bda0156bfd80520efc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.183594;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_deeadd8275f6c43f0d63e33e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.183594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.758000px;}
.ls2c{letter-spacing:-1.458000px;}
.ls7{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-0.972000px;}
.lse{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.466800px;}
.ls15{letter-spacing:-0.325200px;}
.ls12{letter-spacing:-0.319800px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.141120px;}
.lsf{letter-spacing:0.247680px;}
.ls23{letter-spacing:0.250560px;}
.ls1f{letter-spacing:0.319680px;}
.ls24{letter-spacing:0.385800px;}
.ls25{letter-spacing:0.385920px;}
.ls8{letter-spacing:0.423360px;}
.ls16{letter-spacing:0.466560px;}
.ls28{letter-spacing:0.469440px;}
.ls17{letter-spacing:0.486720px;}
.ls14{letter-spacing:0.590400px;}
.ls3{letter-spacing:0.646560px;}
.ls1{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.731520px;}
.ls2b{letter-spacing:0.732000px;}
.ls2{letter-spacing:0.750240px;}
.ls0{letter-spacing:0.840000px;}
.ls1b{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.440000px;}
.ls1c{letter-spacing:1.926720px;}
.lsc{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.520000px;}
.ls10{letter-spacing:3.600000px;}
.lsa{letter-spacing:3.612000px;}
.ls19{letter-spacing:3.960000px;}
.ls20{letter-spacing:3.972000px;}
.ls1d{letter-spacing:4.140000px;}
.lsd{letter-spacing:5.040000px;}
.ls26{letter-spacing:5.400000px;}
.ls4{letter-spacing:6.480000px;}
.ls21{letter-spacing:6.660000px;}
.ls9{letter-spacing:7.920000px;}
.ls27{letter-spacing:11.160000px;}
.ls2a{letter-spacing:31.320000px;}
.ls29{letter-spacing:32.760000px;}
.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;}
}
.wsd{word-spacing:-15.852000px;}
.ws6{word-spacing:-15.543360px;}
.ws8{word-spacing:-15.505800px;}
.wsa{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.148000px;}
.ws0{word-spacing:-13.752000px;}
.ws1{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.662000px;}
.ws3{word-spacing:-12.240000px;}
.ws9{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-5.800800px;}
._e{margin-left:-4.333440px;}
._9{margin-left:-3.087840px;}
._0{margin-left:-2.079360px;}
._2{margin-left:-1.021920px;}
._1{width:1.472160px;}
._a{width:2.587680px;}
._5{width:3.726720px;}
._6{width:5.466240px;}
._7{width:6.592320px;}
._8{width:8.466240px;}
._d{width:10.272960px;}
._c{width:11.633760px;}
._b{width:12.861600px;}
._12{width:14.065920px;}
._10{width:16.296480px;}
._f{width:17.300640px;}
._14{width:19.013760px;}
._15{width:20.079360px;}
._13{width:21.553920px;}
._16{width:22.921920px;}
._4{width:24.215040px;}
._3{width:25.727040px;}
._19{width:32.907360px;}
._17{width:34.109520px;}
._1a{width:35.209920px;}
._18{width:59.484000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.y5{bottom:88.596000px;}
.y4{bottom:105.516000px;}
.y59{bottom:122.076000px;}
.y2b{bottom:123.516000px;}
.yd6{bottom:136.512000px;}
.yb6{bottom:137.232000px;}
.ya7{bottom:138.672000px;}
.y58{bottom:139.032000px;}
.y57{bottom:141.912000px;}
.y2a{bottom:145.152000px;}
.yb4{bottom:155.235000px;}
.y56{bottom:155.955000px;}
.yb3{bottom:158.115000px;}
.y55{bottom:158.835000px;}
.yd2{bottom:159.195000px;}
.ya6{bottom:159.915000px;}
.y29{bottom:166.395000px;}
.yb2{bottom:172.155000px;}
.y54{bottom:172.515000px;}
.yb1{bottom:175.035000px;}
.y53{bottom:175.395000px;}
.yad{bottom:175.755000px;}
.yd5{bottom:179.355000px;}
.y75{bottom:180.075000px;}
.yd1{bottom:180.795000px;}
.ya5{bottom:181.515000px;}
.y28{bottom:187.635000px;}
.y63{bottom:189.435000px;}
.yb0{bottom:191.955000px;}
.y52{bottom:192.315000px;}
.yd4{bottom:200.955000px;}
.y74{bottom:201.675000px;}
.yd0{bottom:202.395000px;}
.ya4{bottom:202.755000px;}
.y62{bottom:205.995000px;}
.y27{bottom:208.515000px;}
.y61{bottom:208.875000px;}
.y77{bottom:209.235000px;}
.yd3{bottom:222.555000px;}
.y60{bottom:222.915000px;}
.ya3{bottom:223.275000px;}
.ycf{bottom:223.635000px;}
.yac{bottom:226.515000px;}
.y26{bottom:229.395000px;}
.y5f{bottom:239.835000px;}
.y50{bottom:243.825000px;}
.y73{bottom:244.545000px;}
.yce{bottom:245.265000px;}
.y51{bottom:247.425000px;}
.y25{bottom:251.025000px;}
.y5e{bottom:256.425000px;}
.y4f{bottom:265.425000px;}
.y72{bottom:265.785000px;}
.ycd{bottom:266.505000px;}
.y96{bottom:268.665000px;}
.y24{bottom:272.265000px;}
.y5d{bottom:273.345000px;}
.y4e{bottom:286.665000px;}
.y71{bottom:287.385000px;}
.ycc{bottom:288.105000px;}
.y95{bottom:289.905000px;}
.yae{bottom:290.265000px;}
.y5c{bottom:293.145000px;}
.y23{bottom:293.865000px;}
.y4d{bottom:308.265000px;}
.y70{bottom:308.985000px;}
.ycb{bottom:309.345000px;}
.y94{bottom:311.505000px;}
.y22{bottom:315.465000px;}
.y4c{bottom:329.505000px;}
.y6f{bottom:330.225000px;}
.yca{bottom:330.945000px;}
.y93{bottom:332.745000px;}
.y21{bottom:336.705000px;}
.y4b{bottom:351.150000px;}
.y6e{bottom:351.870000px;}
.yc9{bottom:352.230000px;}
.y92{bottom:354.390000px;}
.y20{bottom:358.350000px;}
.y4a{bottom:372.390000px;}
.y6d{bottom:373.110000px;}
.yc8{bottom:373.830000px;}
.y91{bottom:375.630000px;}
.y5b{bottom:375.990000px;}
.y1f{bottom:379.590000px;}
.y49{bottom:393.990000px;}
.y6c{bottom:394.710000px;}
.yc7{bottom:395.070000px;}
.y90{bottom:397.230000px;}
.yab{bottom:398.310000px;}
.y1e{bottom:401.190000px;}
.y48{bottom:415.230000px;}
.y6b{bottom:415.950000px;}
.yc6{bottom:416.670000px;}
.y8f{bottom:418.470000px;}
.y1d{bottom:422.430000px;}
.y47{bottom:436.830000px;}
.y6a{bottom:437.550000px;}
.yc5{bottom:438.270000px;}
.y8d{bottom:440.070000px;}
.y8e{bottom:443.670000px;}
.y1c{bottom:444.030000px;}
.y46{bottom:458.430000px;}
.y69{bottom:458.790000px;}
.yc4{bottom:459.510000px;}
.y8c{bottom:461.340000px;}
.y1b{bottom:465.300000px;}
.y45{bottom:479.700000px;}
.y68{bottom:480.420000px;}
.yc3{bottom:481.140000px;}
.y8b{bottom:482.940000px;}
.y5a{bottom:483.300000px;}
.y1a{bottom:486.900000px;}
.y44{bottom:501.300000px;}
.y67{bottom:501.660000px;}
.yc2{bottom:502.380000px;}
.y8a{bottom:504.540000px;}
.y19{bottom:508.140000px;}
.y43{bottom:522.540000px;}
.y66{bottom:523.260000px;}
.yc1{bottom:523.980000px;}
.y89{bottom:525.780000px;}
.y18{bottom:529.740000px;}
.y42{bottom:544.140000px;}
.y65{bottom:544.860000px;}
.yc0{bottom:545.220000px;}
.y88{bottom:547.380000px;}
.y17{bottom:550.980000px;}
.y41{bottom:565.380000px;}
.y64{bottom:565.740000px;}
.ya2{bottom:566.100000px;}
.ybf{bottom:566.820000px;}
.y87{bottom:568.620000px;}
.y16{bottom:571.890000px;}
.y40{bottom:587.010000px;}
.ya1{bottom:587.730000px;}
.ybe{bottom:588.090000px;}
.y86{bottom:590.250000px;}
.y15{bottom:593.490000px;}
.y3f{bottom:608.250000px;}
.ya0{bottom:608.970000px;}
.ybd{bottom:609.690000px;}
.y85{bottom:611.130000px;}
.y14{bottom:611.850000px;}
.y3e{bottom:629.850000px;}
.y9f{bottom:630.570000px;}
.ybc{bottom:630.930000px;}
.y13{bottom:631.650000px;}
.y84{bottom:632.370000px;}
.y76{bottom:633.450000px;}
.y3d{bottom:651.090000px;}
.y9e{bottom:651.810000px;}
.ybb{bottom:652.530000px;}
.y12{bottom:653.250000px;}
.y83{bottom:653.970000px;}
.y3c{bottom:672.690000px;}
.y9d{bottom:673.410000px;}
.yba{bottom:674.130000px;}
.y11{bottom:674.490000px;}
.y82{bottom:675.210000px;}
.y3b{bottom:694.335000px;}
.y9c{bottom:694.695000px;}
.yb9{bottom:695.415000px;}
.y10{bottom:696.135000px;}
.y81{bottom:696.855000px;}
.y3a{bottom:715.575000px;}
.y9b{bottom:716.295000px;}
.yb8{bottom:717.015000px;}
.yf{bottom:717.375000px;}
.y80{bottom:717.735000px;}
.yaf{bottom:719.175000px;}
.ye{bottom:736.455000px;}
.y39{bottom:737.175000px;}
.y9a{bottom:737.535000px;}
.yb7{bottom:738.255000px;}
.y7f{bottom:738.615000px;}
.yd{bottom:753.735000px;}
.y38{bottom:758.415000px;}
.y99{bottom:759.135000px;}
.y7e{bottom:759.495000px;}
.yd9{bottom:759.855000px;}
.yc{bottom:775.335000px;}
.y37{bottom:780.015000px;}
.yb5{bottom:780.375000px;}
.y7d{bottom:780.735000px;}
.yd8{bottom:781.095000px;}
.yb{bottom:796.965000px;}
.y36{bottom:801.285000px;}
.yd7{bottom:801.645000px;}
.y7c{bottom:802.005000px;}
.ya{bottom:821.085000px;}
.y35{bottom:822.885000px;}
.y7b{bottom:823.605000px;}
.y34{bottom:844.125000px;}
.y79{bottom:844.845000px;}
.y7a{bottom:848.445000px;}
.y9{bottom:849.525000px;}
.y33{bottom:865.725000px;}
.y78{bottom:866.085000px;}
.y98{bottom:866.445000px;}
.y8{bottom:870.765000px;}
.y31{bottom:886.965000px;}
.y97{bottom:887.325000px;}
.yaa{bottom:887.685000px;}
.y32{bottom:890.565000px;}
.y7{bottom:892.365000px;}
.y2f{bottom:908.610000px;}
.ya9{bottom:909.330000px;}
.y30{bottom:912.210000px;}
.y6{bottom:913.650000px;}
.y2e{bottom:930.210000px;}
.ya8{bottom:930.570000px;}
.y3{bottom:932.010000px;}
.y2d{bottom:948.570000px;}
.y2{bottom:948.930000px;}
.y2c{bottom:965.130000px;}
.y1{bottom:965.490000px;}
.ha{height:32.572266px;}
.h9{height:35.178047px;}
.h7{height:37.783828px;}
.h3{height:49.402969px;}
.hc{height:49.456406px;}
.h4{height:49.509844px;}
.h8{height:54.042188px;}
.hd{height:54.603281px;}
.hb{height:54.662344px;}
.h5{height:54.721406px;}
.h6{height:81.063281px;}
.h1{height:1062.750000px;}
.h2{height:1063.079908px;}
.h0{height:1063.080000px;}
.w1{width:705.750000px;}
.w3{width:705.959979px;}
.w2{width:705.959989px;}
.w0{width:705.960000px;}
.x0{left:0.000000px;}
.x6{left:84.995989px;}
.x15{left:89.675989px;}
.x28{left:94.355989px;}
.xb{left:106.235989px;}
.x2d{left:115.991989px;}
.x2f{left:127.511989px;}
.xe{left:130.031979px;}
.x2e{left:131.111979px;}
.xf{left:135.071989px;}
.x1f{left:136.871979px;}
.x20{left:141.911989px;}
.x7{left:207.104989px;}
.x1{left:224.384989px;}
.x9{left:244.184989px;}
.x16{left:249.224989px;}
.xa{left:262.589989px;}
.x8{left:267.269989px;}
.xc{left:275.909989px;}
.x26{left:281.309979px;}
.x24{left:285.989979px;}
.x27{left:291.389989px;}
.x25{left:296.069989px;}
.x14{left:301.109989px;}
.x30{left:306.509989px;}
.x12{left:310.109979px;}
.x13{left:315.149989px;}
.x23{left:346.139989px;}
.x5{left:349.379989px;}
.x4{left:352.979989px;}
.xd{left:363.419989px;}
.x2b{left:370.979979px;}
.x10{left:374.579979px;}
.x11{left:379.619989px;}
.x2c{left:381.059989px;}
.x19{left:385.379979px;}
.x1a{left:390.419989px;}
.x2{left:396.539989px;}
.x1d{left:435.089979px;}
.x1e{left:440.129989px;}
.x1b{left:462.809979px;}
.x1c{left:467.849989px;}
.x3{left:477.974989px;}
.x17{left:501.374979px;}
.x18{left:506.414989px;}
.x21{left:515.414979px;}
.x22{left:520.454989px;}
.x29{left:552.884979px;}
.x2a{left:562.964989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.562667pt;}
.ls2c{letter-spacing:-1.296000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-0.864000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.414933pt;}
.ls15{letter-spacing:-0.289067pt;}
.ls12{letter-spacing:-0.284267pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.125440pt;}
.lsf{letter-spacing:0.220160pt;}
.ls23{letter-spacing:0.222720pt;}
.ls1f{letter-spacing:0.284160pt;}
.ls24{letter-spacing:0.342933pt;}
.ls25{letter-spacing:0.343040pt;}
.ls8{letter-spacing:0.376320pt;}
.ls16{letter-spacing:0.414720pt;}
.ls28{letter-spacing:0.417280pt;}
.ls17{letter-spacing:0.432640pt;}
.ls14{letter-spacing:0.524800pt;}
.ls3{letter-spacing:0.574720pt;}
.ls1{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.650240pt;}
.ls2b{letter-spacing:0.650667pt;}
.ls2{letter-spacing:0.666880pt;}
.ls0{letter-spacing:0.746667pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.712640pt;}
.lsc{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:2.240000pt;}
.ls10{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.210667pt;}
.ls19{letter-spacing:3.520000pt;}
.ls20{letter-spacing:3.530667pt;}
.ls1d{letter-spacing:3.680000pt;}
.lsd{letter-spacing:4.480000pt;}
.ls26{letter-spacing:4.800000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls21{letter-spacing:5.920000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls27{letter-spacing:9.920000pt;}
.ls2a{letter-spacing:27.840000pt;}
.ls29{letter-spacing:29.120000pt;}
.wsd{word-spacing:-14.090667pt;}
.ws6{word-spacing:-13.816320pt;}
.ws8{word-spacing:-13.782933pt;}
.wsa{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.025067pt;}
.wsc{word-spacing:-12.576000pt;}
.ws0{word-spacing:-12.224000pt;}
.ws1{word-spacing:-12.160000pt;}
.wsb{word-spacing:-12.144000pt;}
.ws3{word-spacing:-10.880000pt;}
.ws9{word-spacing:-10.560000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-5.156267pt;}
._e{margin-left:-3.851947pt;}
._9{margin-left:-2.744747pt;}
._0{margin-left:-1.848320pt;}
._2{margin-left:-0.908373pt;}
._1{width:1.308587pt;}
._a{width:2.300160pt;}
._5{width:3.312640pt;}
._6{width:4.858880pt;}
._7{width:5.859840pt;}
._8{width:7.525547pt;}
._d{width:9.131520pt;}
._c{width:10.341120pt;}
._b{width:11.432533pt;}
._12{width:12.503040pt;}
._10{width:14.485760pt;}
._f{width:15.378347pt;}
._14{width:16.901120pt;}
._15{width:17.848320pt;}
._13{width:19.159040pt;}
._16{width:20.375040pt;}
._4{width:21.524480pt;}
._3{width:22.868480pt;}
._19{width:29.250987pt;}
._17{width:30.319573pt;}
._1a{width:31.297707pt;}
._18{width:52.874667pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:78.752000pt;}
.y4{bottom:93.792000pt;}
.y59{bottom:108.512000pt;}
.y2b{bottom:109.792000pt;}
.yd6{bottom:121.344000pt;}
.yb6{bottom:121.984000pt;}
.ya7{bottom:123.264000pt;}
.y58{bottom:123.584000pt;}
.y57{bottom:126.144000pt;}
.y2a{bottom:129.024000pt;}
.yb4{bottom:137.986667pt;}
.y56{bottom:138.626667pt;}
.yb3{bottom:140.546667pt;}
.y55{bottom:141.186667pt;}
.yd2{bottom:141.506667pt;}
.ya6{bottom:142.146667pt;}
.y29{bottom:147.906667pt;}
.yb2{bottom:153.026667pt;}
.y54{bottom:153.346667pt;}
.yb1{bottom:155.586667pt;}
.y53{bottom:155.906667pt;}
.yad{bottom:156.226667pt;}
.yd5{bottom:159.426667pt;}
.y75{bottom:160.066667pt;}
.yd1{bottom:160.706667pt;}
.ya5{bottom:161.346667pt;}
.y28{bottom:166.786667pt;}
.y63{bottom:168.386667pt;}
.yb0{bottom:170.626667pt;}
.y52{bottom:170.946667pt;}
.yd4{bottom:178.626667pt;}
.y74{bottom:179.266667pt;}
.yd0{bottom:179.906667pt;}
.ya4{bottom:180.226667pt;}
.y62{bottom:183.106667pt;}
.y27{bottom:185.346667pt;}
.y61{bottom:185.666667pt;}
.y77{bottom:185.986667pt;}
.yd3{bottom:197.826667pt;}
.y60{bottom:198.146667pt;}
.ya3{bottom:198.466667pt;}
.ycf{bottom:198.786667pt;}
.yac{bottom:201.346667pt;}
.y26{bottom:203.906667pt;}
.y5f{bottom:213.186667pt;}
.y50{bottom:216.733333pt;}
.y73{bottom:217.373333pt;}
.yce{bottom:218.013333pt;}
.y51{bottom:219.933333pt;}
.y25{bottom:223.133333pt;}
.y5e{bottom:227.933333pt;}
.y4f{bottom:235.933333pt;}
.y72{bottom:236.253333pt;}
.ycd{bottom:236.893333pt;}
.y96{bottom:238.813333pt;}
.y24{bottom:242.013333pt;}
.y5d{bottom:242.973333pt;}
.y4e{bottom:254.813333pt;}
.y71{bottom:255.453333pt;}
.ycc{bottom:256.093333pt;}
.y95{bottom:257.693333pt;}
.yae{bottom:258.013333pt;}
.y5c{bottom:260.573333pt;}
.y23{bottom:261.213333pt;}
.y4d{bottom:274.013333pt;}
.y70{bottom:274.653333pt;}
.ycb{bottom:274.973333pt;}
.y94{bottom:276.893333pt;}
.y22{bottom:280.413333pt;}
.y4c{bottom:292.893333pt;}
.y6f{bottom:293.533333pt;}
.yca{bottom:294.173333pt;}
.y93{bottom:295.773333pt;}
.y21{bottom:299.293333pt;}
.y4b{bottom:312.133333pt;}
.y6e{bottom:312.773333pt;}
.yc9{bottom:313.093333pt;}
.y92{bottom:315.013333pt;}
.y20{bottom:318.533333pt;}
.y4a{bottom:331.013333pt;}
.y6d{bottom:331.653333pt;}
.yc8{bottom:332.293333pt;}
.y91{bottom:333.893333pt;}
.y5b{bottom:334.213333pt;}
.y1f{bottom:337.413333pt;}
.y49{bottom:350.213333pt;}
.y6c{bottom:350.853333pt;}
.yc7{bottom:351.173333pt;}
.y90{bottom:353.093333pt;}
.yab{bottom:354.053333pt;}
.y1e{bottom:356.613333pt;}
.y48{bottom:369.093333pt;}
.y6b{bottom:369.733333pt;}
.yc6{bottom:370.373333pt;}
.y8f{bottom:371.973333pt;}
.y1d{bottom:375.493333pt;}
.y47{bottom:388.293333pt;}
.y6a{bottom:388.933333pt;}
.yc5{bottom:389.573333pt;}
.y8d{bottom:391.173333pt;}
.y8e{bottom:394.373333pt;}
.y1c{bottom:394.693333pt;}
.y46{bottom:407.493333pt;}
.y69{bottom:407.813333pt;}
.yc4{bottom:408.453333pt;}
.y8c{bottom:410.080000pt;}
.y1b{bottom:413.600000pt;}
.y45{bottom:426.400000pt;}
.y68{bottom:427.040000pt;}
.yc3{bottom:427.680000pt;}
.y8b{bottom:429.280000pt;}
.y5a{bottom:429.600000pt;}
.y1a{bottom:432.800000pt;}
.y44{bottom:445.600000pt;}
.y67{bottom:445.920000pt;}
.yc2{bottom:446.560000pt;}
.y8a{bottom:448.480000pt;}
.y19{bottom:451.680000pt;}
.y43{bottom:464.480000pt;}
.y66{bottom:465.120000pt;}
.yc1{bottom:465.760000pt;}
.y89{bottom:467.360000pt;}
.y18{bottom:470.880000pt;}
.y42{bottom:483.680000pt;}
.y65{bottom:484.320000pt;}
.yc0{bottom:484.640000pt;}
.y88{bottom:486.560000pt;}
.y17{bottom:489.760000pt;}
.y41{bottom:502.560000pt;}
.y64{bottom:502.880000pt;}
.ya2{bottom:503.200000pt;}
.ybf{bottom:503.840000pt;}
.y87{bottom:505.440000pt;}
.y16{bottom:508.346667pt;}
.y40{bottom:521.786667pt;}
.ya1{bottom:522.426667pt;}
.ybe{bottom:522.746667pt;}
.y86{bottom:524.666667pt;}
.y15{bottom:527.546667pt;}
.y3f{bottom:540.666667pt;}
.ya0{bottom:541.306667pt;}
.ybd{bottom:541.946667pt;}
.y85{bottom:543.226667pt;}
.y14{bottom:543.866667pt;}
.y3e{bottom:559.866667pt;}
.y9f{bottom:560.506667pt;}
.ybc{bottom:560.826667pt;}
.y13{bottom:561.466667pt;}
.y84{bottom:562.106667pt;}
.y76{bottom:563.066667pt;}
.y3d{bottom:578.746667pt;}
.y9e{bottom:579.386667pt;}
.ybb{bottom:580.026667pt;}
.y12{bottom:580.666667pt;}
.y83{bottom:581.306667pt;}
.y3c{bottom:597.946667pt;}
.y9d{bottom:598.586667pt;}
.yba{bottom:599.226667pt;}
.y11{bottom:599.546667pt;}
.y82{bottom:600.186667pt;}
.y3b{bottom:617.186667pt;}
.y9c{bottom:617.506667pt;}
.yb9{bottom:618.146667pt;}
.y10{bottom:618.786667pt;}
.y81{bottom:619.426667pt;}
.y3a{bottom:636.066667pt;}
.y9b{bottom:636.706667pt;}
.yb8{bottom:637.346667pt;}
.yf{bottom:637.666667pt;}
.y80{bottom:637.986667pt;}
.yaf{bottom:639.266667pt;}
.ye{bottom:654.626667pt;}
.y39{bottom:655.266667pt;}
.y9a{bottom:655.586667pt;}
.yb7{bottom:656.226667pt;}
.y7f{bottom:656.546667pt;}
.yd{bottom:669.986667pt;}
.y38{bottom:674.146667pt;}
.y99{bottom:674.786667pt;}
.y7e{bottom:675.106667pt;}
.yd9{bottom:675.426667pt;}
.yc{bottom:689.186667pt;}
.y37{bottom:693.346667pt;}
.yb5{bottom:693.666667pt;}
.y7d{bottom:693.986667pt;}
.yd8{bottom:694.306667pt;}
.yb{bottom:708.413333pt;}
.y36{bottom:712.253333pt;}
.yd7{bottom:712.573333pt;}
.y7c{bottom:712.893333pt;}
.ya{bottom:729.853333pt;}
.y35{bottom:731.453333pt;}
.y7b{bottom:732.093333pt;}
.y34{bottom:750.333333pt;}
.y79{bottom:750.973333pt;}
.y7a{bottom:754.173333pt;}
.y9{bottom:755.133333pt;}
.y33{bottom:769.533333pt;}
.y78{bottom:769.853333pt;}
.y98{bottom:770.173333pt;}
.y8{bottom:774.013333pt;}
.y31{bottom:788.413333pt;}
.y97{bottom:788.733333pt;}
.yaa{bottom:789.053333pt;}
.y32{bottom:791.613333pt;}
.y7{bottom:793.213333pt;}
.y2f{bottom:807.653333pt;}
.ya9{bottom:808.293333pt;}
.y30{bottom:810.853333pt;}
.y6{bottom:812.133333pt;}
.y2e{bottom:826.853333pt;}
.ya8{bottom:827.173333pt;}
.y3{bottom:828.453333pt;}
.y2d{bottom:843.173333pt;}
.y2{bottom:843.493333pt;}
.y2c{bottom:857.893333pt;}
.y1{bottom:858.213333pt;}
.ha{height:28.953125pt;}
.h9{height:31.269375pt;}
.h7{height:33.585625pt;}
.h3{height:43.913750pt;}
.hc{height:43.961250pt;}
.h4{height:44.008750pt;}
.h8{height:48.037500pt;}
.hd{height:48.536250pt;}
.hb{height:48.588750pt;}
.h5{height:48.641250pt;}
.h6{height:72.056250pt;}
.h1{height:944.666667pt;}
.h2{height:944.959919pt;}
.h0{height:944.960000pt;}
.w1{width:627.333333pt;}
.w3{width:627.519981pt;}
.w2{width:627.519991pt;}
.w0{width:627.520000pt;}
.x0{left:0.000000pt;}
.x6{left:75.551991pt;}
.x15{left:79.711991pt;}
.x28{left:83.871991pt;}
.xb{left:94.431991pt;}
.x2d{left:103.103991pt;}
.x2f{left:113.343991pt;}
.xe{left:115.583981pt;}
.x2e{left:116.543981pt;}
.xf{left:120.063991pt;}
.x1f{left:121.663981pt;}
.x20{left:126.143991pt;}
.x7{left:184.093324pt;}
.x1{left:199.453324pt;}
.x9{left:217.053324pt;}
.x16{left:221.533324pt;}
.xa{left:233.413324pt;}
.x8{left:237.573324pt;}
.xc{left:245.253324pt;}
.x26{left:250.053315pt;}
.x24{left:254.213315pt;}
.x27{left:259.013324pt;}
.x25{left:263.173324pt;}
.x14{left:267.653324pt;}
.x30{left:272.453324pt;}
.x12{left:275.653315pt;}
.x13{left:280.133324pt;}
.x23{left:307.679991pt;}
.x5{left:310.559991pt;}
.x4{left:313.759991pt;}
.xd{left:323.039991pt;}
.x2b{left:329.759981pt;}
.x10{left:332.959981pt;}
.x11{left:337.439991pt;}
.x2c{left:338.719991pt;}
.x19{left:342.559981pt;}
.x1a{left:347.039991pt;}
.x2{left:352.479991pt;}
.x1d{left:386.746648pt;}
.x1e{left:391.226657pt;}
.x1b{left:411.386648pt;}
.x1c{left:415.866657pt;}
.x3{left:424.866657pt;}
.x17{left:445.666648pt;}
.x18{left:450.146657pt;}
.x21{left:458.146648pt;}
.x22{left:462.626657pt;}
.x29{left:491.453315pt;}
.x2a{left:500.413324pt;}
}




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