
    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_0aac2064ee7ac15efb100dac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_e12f062599b193b51ca25d33.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d11153ebaa0939b6d9c4fa39.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_a89fc6da200bc8acd97b1823.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_35a43ebcfcab016a637e585b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e4aeb4110a6e4bc41bcce7e5.woff2')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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_b985e27fe68a0480d6543ae1.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls6{letter-spacing:-0.270600px;}
.ls7{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.094800px;}
.ls3{letter-spacing:-0.050400px;}
.ls5{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.043920px;}
.ls13{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.126600px;}
.ls15{letter-spacing:0.126720px;}
.lsa{letter-spacing:0.129600px;}
.ls14{letter-spacing:0.141000px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.239040px;}
.ls8{letter-spacing:0.328200px;}
.lsd{letter-spacing:0.348000px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.532800px;}
.lse{letter-spacing:0.708000px;}
.ls16{letter-spacing:0.709200px;}
.lsc{letter-spacing:0.762000px;}
.lsb{letter-spacing:23.572800px;}
.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:-13.909200px;}
.ws0{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.288200px;}
.wsc{word-spacing:-13.276800px;}
.ws10{word-spacing:-13.273800px;}
.ws4{word-spacing:-13.191120px;}
.wse{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.ws5{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.342200px;}
.ws1{word-spacing:-9.187200px;}
.wsa{word-spacing:-9.092400px;}
.ws2{word-spacing:-8.553600px;}
.ws3{word-spacing:-8.503200px;}
.ws7{word-spacing:-7.920000px;}
.ws6{word-spacing:-7.884000px;}
.ws8{word-spacing:0.000000px;}
._19{margin-left:-2.666160px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.584320px;}
._c{width:4.273680px;}
._10{width:6.245040px;}
._9{width:7.716480px;}
._f{width:8.964000px;}
._1a{width:10.000320px;}
._b{width:11.003280px;}
._1d{width:12.123840px;}
._e{width:15.005760px;}
._8{width:16.493760px;}
._7{width:17.688960px;}
._16{width:19.087680px;}
._12{width:20.258640px;}
._11{width:22.170960px;}
._1b{width:23.485680px;}
._1c{width:24.894240px;}
._13{width:26.481120px;}
._14{width:28.864080px;}
._15{width:29.939760px;}
._1f{width:38.468880px;}
._20{width:39.900480px;}
._1e{width:41.540640px;}
._d{width:42.608880px;}
._17{width:46.898280px;}
._a{width:71.652240px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._5{width:194.469840px;}
._6{width:202.852800px;}
._18{width:1056.007200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y54{bottom:-19.620000px;}
.y0{bottom:0.000000px;}
.y53{bottom:1.080000px;}
.ybd{bottom:3.420000px;}
.y52{bottom:19.800000px;}
.yc0{bottom:20.880000px;}
.ybc{bottom:21.060000px;}
.y51{bottom:30.240000px;}
.ybf{bottom:38.520000px;}
.yc9{bottom:38.700000px;}
.y50{bottom:40.860000px;}
.y4f{bottom:51.300000px;}
.y7{bottom:56.520000px;}
.y4e{bottom:68.940000px;}
.y6{bottom:70.596000px;}
.yfb{bottom:114.156000px;}
.y91{bottom:117.576000px;}
.ye4{bottom:118.116000px;}
.yaa{bottom:120.456000px;}
.y114{bottom:120.636000px;}
.yc5{bottom:121.896000px;}
.y4d{bottom:123.120000px;}
.y3f{bottom:127.116000px;}
.yfa{bottom:131.796000px;}
.ye3{bottom:133.956000px;}
.y90{bottom:135.036000px;}
.ya9{bottom:138.096000px;}
.y113{bottom:138.276000px;}
.y4c{bottom:142.560000px;}
.y3e{bottom:144.756000px;}
.yf9{bottom:149.256000px;}
.ye2{bottom:149.616000px;}
.y8f{bottom:152.670000px;}
.ya8{bottom:155.550000px;}
.y112{bottom:155.730000px;}
.y4b{bottom:156.600000px;}
.y3d{bottom:162.210000px;}
.ye1{bottom:165.450000px;}
.yf8{bottom:166.890000px;}
.y8e{bottom:170.310000px;}
.y4a{bottom:170.820000px;}
.ya7{bottom:173.190000px;}
.y111{bottom:173.370000px;}
.yc4{bottom:173.550000px;}
.y3c{bottom:179.850000px;}
.ye0{bottom:181.290000px;}
.yf7{bottom:184.530000px;}
.y49{bottom:184.905000px;}
.y8d{bottom:187.770000px;}
.ya6{bottom:190.830000px;}
.y110{bottom:191.010000px;}
.ydf{bottom:197.130000px;}
.y3b{bottom:197.490000px;}
.y48{bottom:198.945000px;}
.yf6{bottom:201.990000px;}
.y8c{bottom:205.410000px;}
.ya5{bottom:208.290000px;}
.y10f{bottom:208.470000px;}
.yde{bottom:212.970000px;}
.y47{bottom:214.245000px;}
.y3a{bottom:215.130000px;}
.yf5{bottom:219.630000px;}
.y8b{bottom:223.050000px;}
.yc3{bottom:225.210000px;}
.ya4{bottom:225.930000px;}
.y10e{bottom:226.110000px;}
.ydd{bottom:228.810000px;}
.y39{bottom:232.590000px;}
.y46{bottom:233.685000px;}
.yf4{bottom:236.910000px;}
.y8a{bottom:240.510000px;}
.ya3{bottom:243.570000px;}
.y10d{bottom:243.750000px;}
.ydc{bottom:244.650000px;}
.y45{bottom:247.725000px;}
.y38{bottom:250.230000px;}
.y89{bottom:258.150000px;}
.ydb{bottom:260.490000px;}
.ya2{bottom:261.030000px;}
.y10c{bottom:261.210000px;}
.y44{bottom:261.765000px;}
.yf3{bottom:267.690000px;}
.y37{bottom:267.870000px;}
.y88{bottom:275.790000px;}
.y43{bottom:275.985000px;}
.yda{bottom:276.330000px;}
.ya1{bottom:278.670000px;}
.y10b{bottom:278.850000px;}
.y36{bottom:285.330000px;}
.y42{bottom:290.025000px;}
.yd9{bottom:292.170000px;}
.y87{bottom:293.430000px;}
.yc2{bottom:294.510000px;}
.ya0{bottom:296.310000px;}
.y10a{bottom:296.490000px;}
.y35{bottom:302.970000px;}
.y41{bottom:304.425000px;}
.yd8{bottom:308.010000px;}
.y86{bottom:310.890000px;}
.y9f{bottom:313.950000px;}
.y109{bottom:314.130000px;}
.y34{bottom:320.610000px;}
.yd7{bottom:323.850000px;}
.y85{bottom:328.530000px;}
.y9e{bottom:331.410000px;}
.y108{bottom:331.590000px;}
.y33{bottom:338.115000px;}
.yd6{bottom:339.735000px;}
.y84{bottom:346.215000px;}
.y9d{bottom:349.095000px;}
.y107{bottom:349.275000px;}
.yd5{bottom:355.575000px;}
.y32{bottom:355.755000px;}
.y83{bottom:363.675000px;}
.yc1{bottom:363.855000px;}
.y9c{bottom:366.735000px;}
.y106{bottom:366.915000px;}
.yd4{bottom:371.235000px;}
.y31{bottom:373.395000px;}
.y82{bottom:381.315000px;}
.y9b{bottom:384.195000px;}
.y105{bottom:384.375000px;}
.yd3{bottom:387.075000px;}
.y30{bottom:391.035000px;}
.y81{bottom:398.955000px;}
.y9a{bottom:401.835000px;}
.y104{bottom:402.015000px;}
.yd2{bottom:402.915000px;}
.y2f{bottom:408.495000px;}
.ybe{bottom:415.515000px;}
.y80{bottom:416.415000px;}
.yd1{bottom:418.755000px;}
.y99{bottom:419.475000px;}
.y103{bottom:419.655000px;}
.y2e{bottom:426.135000px;}
.y7f{bottom:434.055000px;}
.yd0{bottom:434.595000px;}
.y98{bottom:436.935000px;}
.y102{bottom:437.115000px;}
.y2d{bottom:443.775000px;}
.y7e{bottom:451.695000px;}
.y97{bottom:454.575000px;}
.y101{bottom:454.755000px;}
.y2c{bottom:461.235000px;}
.ycf{bottom:468.075000px;}
.y7d{bottom:469.335000px;}
.y96{bottom:472.215000px;}
.y100{bottom:472.395000px;}
.y2b{bottom:478.875000px;}
.ybb{bottom:484.635000px;}
.y7c{bottom:486.795000px;}
.y95{bottom:489.495000px;}
.yff{bottom:490.035000px;}
.y2a{bottom:496.515000px;}
.yce{bottom:500.655000px;}
.y7b{bottom:504.435000px;}
.y94{bottom:505.515000px;}
.yfe{bottom:507.495000px;}
.y29{bottom:513.975000px;}
.y7a{bottom:522.075000px;}
.y93{bottom:523.155000px;}
.yfd{bottom:525.135000px;}
.ycd{bottom:531.435000px;}
.y28{bottom:531.615000px;}
.yba{bottom:531.975000px;}
.y92{bottom:537.375000px;}
.y79{bottom:540.075000px;}
.yfc{bottom:542.775000px;}
.y27{bottom:549.255000px;}
.y78{bottom:560.235000px;}
.yb9{bottom:565.815000px;}
.yf2{bottom:566.355000px;}
.y26{bottom:566.895000px;}
.y77{bottom:577.875000px;}
.yf1{bottom:583.995000px;}
.y25{bottom:584.355000px;}
.y76{bottom:595.515000px;}
.yb8{bottom:600.015000px;}
.yf0{bottom:601.455000px;}
.y24{bottom:601.995000px;}
.y75{bottom:613.005000px;}
.yb7{bottom:617.505000px;}
.yef{bottom:619.125000px;}
.y23{bottom:619.665000px;}
.y74{bottom:630.645000px;}
.yb6{bottom:635.145000px;}
.yee{bottom:636.765000px;}
.y22{bottom:637.125000px;}
.y73{bottom:648.285000px;}
.yb5{bottom:652.785000px;}
.yed{bottom:654.225000px;}
.y21{bottom:656.925000px;}
.y72{bottom:665.745000px;}
.yb4{bottom:670.245000px;}
.yec{bottom:671.865000px;}
.y20{bottom:674.565000px;}
.y71{bottom:683.385000px;}
.y40{bottom:685.905000px;}
.yb3{bottom:687.885000px;}
.yeb{bottom:689.505000px;}
.y1f{bottom:692.205000px;}
.y70{bottom:701.025000px;}
.yb2{bottom:705.525000px;}
.yea{bottom:707.145000px;}
.y1e{bottom:709.845000px;}
.y6f{bottom:718.665000px;}
.yb1{bottom:723.165000px;}
.ye9{bottom:724.605000px;}
.y1d{bottom:727.305000px;}
.y6e{bottom:736.125000px;}
.yb0{bottom:740.625000px;}
.ye8{bottom:742.245000px;}
.y1c{bottom:744.945000px;}
.y6d{bottom:753.765000px;}
.yaf{bottom:758.265000px;}
.ye7{bottom:759.885000px;}
.y1b{bottom:762.585000px;}
.y6c{bottom:771.405000px;}
.yae{bottom:775.905000px;}
.y1a{bottom:780.045000px;}
.y6b{bottom:788.865000px;}
.ye6{bottom:791.925000px;}
.yad{bottom:793.365000px;}
.y19{bottom:797.685000px;}
.y6a{bottom:806.505000px;}
.yac{bottom:811.005000px;}
.y18{bottom:815.325000px;}
.y69{bottom:824.145000px;}
.y17{bottom:832.785000px;}
.y68{bottom:841.605000px;}
.yab{bottom:843.045000px;}
.ycc{bottom:846.645000px;}
.y16{bottom:850.425000px;}
.y67{bottom:859.245000px;}
.y15{bottom:868.065000px;}
.y66{bottom:876.930000px;}
.y14{bottom:885.750000px;}
.ycb{bottom:886.470000px;}
.y65{bottom:894.570000px;}
.y13{bottom:903.210000px;}
.y64{bottom:912.030000px;}
.y12{bottom:920.850000px;}
.y63{bottom:929.670000px;}
.yca{bottom:938.130000px;}
.y11{bottom:938.490000px;}
.y62{bottom:947.310000px;}
.y10{bottom:955.950000px;}
.y61{bottom:964.770000px;}
.yf{bottom:973.590000px;}
.y60{bottom:982.410000px;}
.ye{bottom:991.230000px;}
.y5f{bottom:1000.050000px;}
.yc8{bottom:1007.250000px;}
.yd{bottom:1009.050000px;}
.y5e{bottom:1017.510000px;}
.yc{bottom:1031.910000px;}
.y5d{bottom:1035.150000px;}
.yb{bottom:1045.950000px;}
.y5c{bottom:1052.790000px;}
.ya{bottom:1065.390000px;}
.y5b{bottom:1070.430000px;}
.yc7{bottom:1076.550000px;}
.y9{bottom:1085.370000px;}
.y5a{bottom:1087.890000px;}
.y59{bottom:1105.530000px;}
.y8{bottom:1108.230000px;}
.y58{bottom:1123.170000px;}
.yc6{bottom:1128.210000px;}
.y5{bottom:1133.250000px;}
.y57{bottom:1140.660000px;}
.ye5{bottom:1142.100000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y56{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y55{bottom:1197.540000px;}
.h11{height:17.676000px;}
.hb{height:30.480469px;}
.hf{height:35.100000px;}
.hd{height:35.280000px;}
.h7{height:35.477578px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.he{height:52.740000px;}
.h10{height:52.776000px;}
.h12{height:52.920000px;}
.h6{height:56.084062px;}
.hc{height:58.819922px;}
.h5{height:65.837812px;}
.h9{height:317.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:120.060000px;}
.w5{width:152.670000px;}
.w3{width:208.110000px;}
.w4{width:344.055000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:6.840000px;}
.x17{left:32.400000px;}
.x16{left:35.640000px;}
.x14{left:50.580000px;}
.x1{left:108.035987px;}
.x4{left:114.515987px;}
.x2{left:116.135987px;}
.x9{left:134.994000px;}
.x20{left:140.075987px;}
.x5{left:143.675987px;}
.x12{left:153.585000px;}
.x8{left:162.029987px;}
.x11{left:163.470000px;}
.xf{left:294.194987px;}
.x1f{left:302.114987px;}
.x1d{left:322.454987px;}
.x1a{left:325.514987px;}
.x7{left:336.494987px;}
.x10{left:348.194987px;}
.xc{left:349.634987px;}
.x6{left:356.114987px;}
.x1b{left:389.234987px;}
.xd{left:390.674987px;}
.x3{left:446.474987px;}
.xa{left:484.304987px;}
.x13{left:508.965000px;}
.x15{left:663.090000px;}
.xb{left:669.749987px;}
.xe{left:705.389987px;}
.x19{left:722.129987px;}
.x1e{left:729.329987px;}
.x1c{left:759.389987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls6{letter-spacing:-0.240533pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.084267pt;}
.ls3{letter-spacing:-0.044800pt;}
.ls5{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.039040pt;}
.ls13{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.112533pt;}
.ls15{letter-spacing:0.112640pt;}
.lsa{letter-spacing:0.115200pt;}
.ls14{letter-spacing:0.125333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.212480pt;}
.ls8{letter-spacing:0.291733pt;}
.lsd{letter-spacing:0.309333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.473600pt;}
.lse{letter-spacing:0.629333pt;}
.ls16{letter-spacing:0.630400pt;}
.lsc{letter-spacing:0.677333pt;}
.lsb{letter-spacing:20.953600pt;}
.wsd{word-spacing:-12.363733pt;}
.ws0{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.811733pt;}
.wsc{word-spacing:-11.801600pt;}
.ws10{word-spacing:-11.798933pt;}
.ws4{word-spacing:-11.725440pt;}
.wse{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.ws5{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.193067pt;}
.ws1{word-spacing:-8.166400pt;}
.wsa{word-spacing:-8.082133pt;}
.ws2{word-spacing:-7.603200pt;}
.ws3{word-spacing:-7.558400pt;}
.ws7{word-spacing:-7.040000pt;}
.ws6{word-spacing:-7.008000pt;}
.ws8{word-spacing:0.000000pt;}
._19{margin-left:-2.369920pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:2.297173pt;}
._c{width:3.798827pt;}
._10{width:5.551147pt;}
._9{width:6.859093pt;}
._f{width:7.968000pt;}
._1a{width:8.889173pt;}
._b{width:9.780693pt;}
._1d{width:10.776747pt;}
._e{width:13.338453pt;}
._8{width:14.661120pt;}
._7{width:15.723520pt;}
._16{width:16.966827pt;}
._12{width:18.007680pt;}
._11{width:19.707520pt;}
._1b{width:20.876160pt;}
._1c{width:22.128213pt;}
._13{width:23.538773pt;}
._14{width:25.656960pt;}
._15{width:26.613120pt;}
._1f{width:34.194560pt;}
._20{width:35.467093pt;}
._1e{width:36.925013pt;}
._d{width:37.874560pt;}
._17{width:41.687360pt;}
._a{width:63.690880pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._5{width:172.862080pt;}
._6{width:180.313600pt;}
._18{width:938.673067pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y54{bottom:-17.440000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:0.960000pt;}
.ybd{bottom:3.040000pt;}
.y52{bottom:17.600000pt;}
.yc0{bottom:18.560000pt;}
.ybc{bottom:18.720000pt;}
.y51{bottom:26.880000pt;}
.ybf{bottom:34.240000pt;}
.yc9{bottom:34.400000pt;}
.y50{bottom:36.320000pt;}
.y4f{bottom:45.600000pt;}
.y7{bottom:50.240000pt;}
.y4e{bottom:61.280000pt;}
.y6{bottom:62.752000pt;}
.yfb{bottom:101.472000pt;}
.y91{bottom:104.512000pt;}
.ye4{bottom:104.992000pt;}
.yaa{bottom:107.072000pt;}
.y114{bottom:107.232000pt;}
.yc5{bottom:108.352000pt;}
.y4d{bottom:109.440000pt;}
.y3f{bottom:112.992000pt;}
.yfa{bottom:117.152000pt;}
.ye3{bottom:119.072000pt;}
.y90{bottom:120.032000pt;}
.ya9{bottom:122.752000pt;}
.y113{bottom:122.912000pt;}
.y4c{bottom:126.720000pt;}
.y3e{bottom:128.672000pt;}
.yf9{bottom:132.672000pt;}
.ye2{bottom:132.992000pt;}
.y8f{bottom:135.706667pt;}
.ya8{bottom:138.266667pt;}
.y112{bottom:138.426667pt;}
.y4b{bottom:139.200000pt;}
.y3d{bottom:144.186667pt;}
.ye1{bottom:147.066667pt;}
.yf8{bottom:148.346667pt;}
.y8e{bottom:151.386667pt;}
.y4a{bottom:151.840000pt;}
.ya7{bottom:153.946667pt;}
.y111{bottom:154.106667pt;}
.yc4{bottom:154.266667pt;}
.y3c{bottom:159.866667pt;}
.ye0{bottom:161.146667pt;}
.yf7{bottom:164.026667pt;}
.y49{bottom:164.360000pt;}
.y8d{bottom:166.906667pt;}
.ya6{bottom:169.626667pt;}
.y110{bottom:169.786667pt;}
.ydf{bottom:175.226667pt;}
.y3b{bottom:175.546667pt;}
.y48{bottom:176.840000pt;}
.yf6{bottom:179.546667pt;}
.y8c{bottom:182.586667pt;}
.ya5{bottom:185.146667pt;}
.y10f{bottom:185.306667pt;}
.yde{bottom:189.306667pt;}
.y47{bottom:190.440000pt;}
.y3a{bottom:191.226667pt;}
.yf5{bottom:195.226667pt;}
.y8b{bottom:198.266667pt;}
.yc3{bottom:200.186667pt;}
.ya4{bottom:200.826667pt;}
.y10e{bottom:200.986667pt;}
.ydd{bottom:203.386667pt;}
.y39{bottom:206.746667pt;}
.y46{bottom:207.720000pt;}
.yf4{bottom:210.586667pt;}
.y8a{bottom:213.786667pt;}
.ya3{bottom:216.506667pt;}
.y10d{bottom:216.666667pt;}
.ydc{bottom:217.466667pt;}
.y45{bottom:220.200000pt;}
.y38{bottom:222.426667pt;}
.y89{bottom:229.466667pt;}
.ydb{bottom:231.546667pt;}
.ya2{bottom:232.026667pt;}
.y10c{bottom:232.186667pt;}
.y44{bottom:232.680000pt;}
.yf3{bottom:237.946667pt;}
.y37{bottom:238.106667pt;}
.y88{bottom:245.146667pt;}
.y43{bottom:245.320000pt;}
.yda{bottom:245.626667pt;}
.ya1{bottom:247.706667pt;}
.y10b{bottom:247.866667pt;}
.y36{bottom:253.626667pt;}
.y42{bottom:257.800000pt;}
.yd9{bottom:259.706667pt;}
.y87{bottom:260.826667pt;}
.yc2{bottom:261.786667pt;}
.ya0{bottom:263.386667pt;}
.y10a{bottom:263.546667pt;}
.y35{bottom:269.306667pt;}
.y41{bottom:270.600000pt;}
.yd8{bottom:273.786667pt;}
.y86{bottom:276.346667pt;}
.y9f{bottom:279.066667pt;}
.y109{bottom:279.226667pt;}
.y34{bottom:284.986667pt;}
.yd7{bottom:287.866667pt;}
.y85{bottom:292.026667pt;}
.y9e{bottom:294.586667pt;}
.y108{bottom:294.746667pt;}
.y33{bottom:300.546667pt;}
.yd6{bottom:301.986667pt;}
.y84{bottom:307.746667pt;}
.y9d{bottom:310.306667pt;}
.y107{bottom:310.466667pt;}
.yd5{bottom:316.066667pt;}
.y32{bottom:316.226667pt;}
.y83{bottom:323.266667pt;}
.yc1{bottom:323.426667pt;}
.y9c{bottom:325.986667pt;}
.y106{bottom:326.146667pt;}
.yd4{bottom:329.986667pt;}
.y31{bottom:331.906667pt;}
.y82{bottom:338.946667pt;}
.y9b{bottom:341.506667pt;}
.y105{bottom:341.666667pt;}
.yd3{bottom:344.066667pt;}
.y30{bottom:347.586667pt;}
.y81{bottom:354.626667pt;}
.y9a{bottom:357.186667pt;}
.y104{bottom:357.346667pt;}
.yd2{bottom:358.146667pt;}
.y2f{bottom:363.106667pt;}
.ybe{bottom:369.346667pt;}
.y80{bottom:370.146667pt;}
.yd1{bottom:372.226667pt;}
.y99{bottom:372.866667pt;}
.y103{bottom:373.026667pt;}
.y2e{bottom:378.786667pt;}
.y7f{bottom:385.826667pt;}
.yd0{bottom:386.306667pt;}
.y98{bottom:388.386667pt;}
.y102{bottom:388.546667pt;}
.y2d{bottom:394.466667pt;}
.y7e{bottom:401.506667pt;}
.y97{bottom:404.066667pt;}
.y101{bottom:404.226667pt;}
.y2c{bottom:409.986667pt;}
.ycf{bottom:416.066667pt;}
.y7d{bottom:417.186667pt;}
.y96{bottom:419.746667pt;}
.y100{bottom:419.906667pt;}
.y2b{bottom:425.666667pt;}
.ybb{bottom:430.786667pt;}
.y7c{bottom:432.706667pt;}
.y95{bottom:435.106667pt;}
.yff{bottom:435.586667pt;}
.y2a{bottom:441.346667pt;}
.yce{bottom:445.026667pt;}
.y7b{bottom:448.386667pt;}
.y94{bottom:449.346667pt;}
.yfe{bottom:451.106667pt;}
.y29{bottom:456.866667pt;}
.y7a{bottom:464.066667pt;}
.y93{bottom:465.026667pt;}
.yfd{bottom:466.786667pt;}
.ycd{bottom:472.386667pt;}
.y28{bottom:472.546667pt;}
.yba{bottom:472.866667pt;}
.y92{bottom:477.666667pt;}
.y79{bottom:480.066667pt;}
.yfc{bottom:482.466667pt;}
.y27{bottom:488.226667pt;}
.y78{bottom:497.986667pt;}
.yb9{bottom:502.946667pt;}
.yf2{bottom:503.426667pt;}
.y26{bottom:503.906667pt;}
.y77{bottom:513.666667pt;}
.yf1{bottom:519.106667pt;}
.y25{bottom:519.426667pt;}
.y76{bottom:529.346667pt;}
.yb8{bottom:533.346667pt;}
.yf0{bottom:534.626667pt;}
.y24{bottom:535.106667pt;}
.y75{bottom:544.893333pt;}
.yb7{bottom:548.893333pt;}
.yef{bottom:550.333333pt;}
.y23{bottom:550.813333pt;}
.y74{bottom:560.573333pt;}
.yb6{bottom:564.573333pt;}
.yee{bottom:566.013333pt;}
.y22{bottom:566.333333pt;}
.y73{bottom:576.253333pt;}
.yb5{bottom:580.253333pt;}
.yed{bottom:581.533333pt;}
.y21{bottom:583.933333pt;}
.y72{bottom:591.773333pt;}
.yb4{bottom:595.773333pt;}
.yec{bottom:597.213333pt;}
.y20{bottom:599.613333pt;}
.y71{bottom:607.453333pt;}
.y40{bottom:609.693333pt;}
.yb3{bottom:611.453333pt;}
.yeb{bottom:612.893333pt;}
.y1f{bottom:615.293333pt;}
.y70{bottom:623.133333pt;}
.yb2{bottom:627.133333pt;}
.yea{bottom:628.573333pt;}
.y1e{bottom:630.973333pt;}
.y6f{bottom:638.813333pt;}
.yb1{bottom:642.813333pt;}
.ye9{bottom:644.093333pt;}
.y1d{bottom:646.493333pt;}
.y6e{bottom:654.333333pt;}
.yb0{bottom:658.333333pt;}
.ye8{bottom:659.773333pt;}
.y1c{bottom:662.173333pt;}
.y6d{bottom:670.013333pt;}
.yaf{bottom:674.013333pt;}
.ye7{bottom:675.453333pt;}
.y1b{bottom:677.853333pt;}
.y6c{bottom:685.693333pt;}
.yae{bottom:689.693333pt;}
.y1a{bottom:693.373333pt;}
.y6b{bottom:701.213333pt;}
.ye6{bottom:703.933333pt;}
.yad{bottom:705.213333pt;}
.y19{bottom:709.053333pt;}
.y6a{bottom:716.893333pt;}
.yac{bottom:720.893333pt;}
.y18{bottom:724.733333pt;}
.y69{bottom:732.573333pt;}
.y17{bottom:740.253333pt;}
.y68{bottom:748.093333pt;}
.yab{bottom:749.373333pt;}
.ycc{bottom:752.573333pt;}
.y16{bottom:755.933333pt;}
.y67{bottom:763.773333pt;}
.y15{bottom:771.613333pt;}
.y66{bottom:779.493333pt;}
.y14{bottom:787.333333pt;}
.ycb{bottom:787.973333pt;}
.y65{bottom:795.173333pt;}
.y13{bottom:802.853333pt;}
.y64{bottom:810.693333pt;}
.y12{bottom:818.533333pt;}
.y63{bottom:826.373333pt;}
.yca{bottom:833.893333pt;}
.y11{bottom:834.213333pt;}
.y62{bottom:842.053333pt;}
.y10{bottom:849.733333pt;}
.y61{bottom:857.573333pt;}
.yf{bottom:865.413333pt;}
.y60{bottom:873.253333pt;}
.ye{bottom:881.093333pt;}
.y5f{bottom:888.933333pt;}
.yc8{bottom:895.333333pt;}
.yd{bottom:896.933333pt;}
.y5e{bottom:904.453333pt;}
.yc{bottom:917.253333pt;}
.y5d{bottom:920.133333pt;}
.yb{bottom:929.733333pt;}
.y5c{bottom:935.813333pt;}
.ya{bottom:947.013333pt;}
.y5b{bottom:951.493333pt;}
.yc7{bottom:956.933333pt;}
.y9{bottom:964.773333pt;}
.y5a{bottom:967.013333pt;}
.y59{bottom:982.693333pt;}
.y8{bottom:985.093333pt;}
.y58{bottom:998.373333pt;}
.yc6{bottom:1002.853333pt;}
.y5{bottom:1007.333333pt;}
.y57{bottom:1013.920000pt;}
.ye5{bottom:1015.200000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y56{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y55{bottom:1064.480000pt;}
.h11{height:15.712000pt;}
.hb{height:27.093750pt;}
.hf{height:31.200000pt;}
.hd{height:31.360000pt;}
.h7{height:31.535625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.he{height:46.880000pt;}
.h10{height:46.912000pt;}
.h12{height:47.040000pt;}
.h6{height:49.852500pt;}
.hc{height:52.284375pt;}
.h5{height:58.522500pt;}
.h9{height:281.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:106.720000pt;}
.w5{width:135.706667pt;}
.w3{width:184.986667pt;}
.w4{width:305.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.080000pt;}
.x17{left:28.800000pt;}
.x16{left:31.680000pt;}
.x14{left:44.960000pt;}
.x1{left:96.031988pt;}
.x4{left:101.791988pt;}
.x2{left:103.231988pt;}
.x9{left:119.994667pt;}
.x20{left:124.511988pt;}
.x5{left:127.711988pt;}
.x12{left:136.520000pt;}
.x8{left:144.026655pt;}
.x11{left:145.306667pt;}
.xf{left:261.506655pt;}
.x1f{left:268.546655pt;}
.x1d{left:286.626655pt;}
.x1a{left:289.346655pt;}
.x7{left:299.106655pt;}
.x10{left:309.506655pt;}
.xc{left:310.786655pt;}
.x6{left:316.546655pt;}
.x1b{left:345.986655pt;}
.xd{left:347.266655pt;}
.x3{left:396.866655pt;}
.xa{left:430.493322pt;}
.x13{left:452.413333pt;}
.x15{left:589.413333pt;}
.xb{left:595.333322pt;}
.xe{left:627.013322pt;}
.x19{left:641.893322pt;}
.x1e{left:648.293322pt;}
.x1c{left:675.013322pt;}
}




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