
    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_3ef0696bbde7aedb216994e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_fedd14a11550e3a12f0e7064.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4a1727f7893e642f58fe1a8f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_abfa6b23b7114d05de692c6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7036232095d2605225428aea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_ed4e39d77abb093fd48ef93f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1b425531ec175cbfeadef47d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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:ff9;src:url('chunks/assets/font_963b1a576c4c8ad23193bfed.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_804902dabc441fc66cb6bf9e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-2.880000px;}
.ls15{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.292200px;}
.ls2{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.828000px;}
.ls17{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.440000px;}
.ls13{letter-spacing:1.620000px;}
.ls7{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.340000px;}
.ls5{letter-spacing:2.880000px;}
.ls9{letter-spacing:3.600000px;}
.ls8{letter-spacing:4.320000px;}
.ls6{letter-spacing:6.480000px;}
.ls1a{letter-spacing:10.800000px;}
.ls20{letter-spacing:11.520000px;}
.ls1d{letter-spacing:11.700000px;}
.ls16{letter-spacing:16.560000px;}
.ls1b{letter-spacing:194.376000px;}
.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;}
}
.ws6{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.568000px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.146400px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.447440px;}
.ws1{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.ws0{word-spacing:-12.510720px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-5.112000px;}
._7{margin-left:-4.104000px;}
._5{margin-left:-2.448000px;}
._1{margin-left:-1.157760px;}
._0{width:1.085040px;}
._4{width:2.379360px;}
._f{width:3.456000px;}
._a{width:4.680000px;}
._b{width:5.904000px;}
._e{width:7.848000px;}
._8{width:9.720000px;}
._9{width:10.805760px;}
._12{width:12.312000px;}
._17{width:13.494480px;}
._c{width:14.592000px;}
._d{width:15.720000px;}
._13{width:16.733760px;}
._14{width:19.152000px;}
._15{width:20.244000px;}
._16{width:21.384000px;}
._11{width:22.558080px;}
._18{width:23.688000px;}
._10{width:25.776000px;}
._1a{width:27.000000px;}
._1b{width:28.008000px;}
._19{width:194.376000px;}
._3{width:328.296000px;}
._2{width:1499.025840px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:31.896000px;}
.y9{bottom:51.516000px;}
.y4b{bottom:111.276000px;}
.y6f{bottom:112.356000px;}
.y6e{bottom:118.296000px;}
.y4a{bottom:129.816000px;}
.yb1{bottom:130.896000px;}
.yab{bottom:131.076000px;}
.ycb{bottom:132.516000px;}
.y8d{bottom:133.056000px;}
.yca{bottom:134.136000px;}
.y6d{bottom:135.036000px;}
.yb0{bottom:136.836000px;}
.yaa{bottom:137.016000px;}
.yc9{bottom:140.076000px;}
.y27{bottom:143.316000px;}
.y80{bottom:148.536000px;}
.y49{bottom:149.616000px;}
.y8c{bottom:151.590000px;}
.yaf{bottom:152.310000px;}
.yc3{bottom:152.670000px;}
.yb4{bottom:152.850000px;}
.yc8{bottom:154.290000px;}
.y48{bottom:155.550000px;}
.y6c{bottom:157.530000px;}
.yb3{bottom:158.790000px;}
.y6b{bottom:163.470000px;}
.y9a{bottom:167.070000px;}
.y7f{bottom:168.330000px;}
.y47{bottom:170.310000px;}
.ya9{bottom:171.390000px;}
.yc2{bottom:172.470000px;}
.yb2{bottom:173.370000px;}
.y7e{bottom:174.270000px;}
.ya8{bottom:177.330000px;}
.yc1{bottom:178.410000px;}
.y6a{bottom:179.310000px;}
.y26{bottom:186.330000px;}
.y99{bottom:186.870000px;}
.y8b{bottom:188.850000px;}
.y46{bottom:189.930000px;}
.ya7{bottom:191.910000px;}
.yc7{bottom:192.450000px;}
.y98{bottom:192.810000px;}
.yc0{bottom:193.170000px;}
.y45{bottom:195.870000px;}
.y69{bottom:198.030000px;}
.y8a{bottom:207.390000px;}
.y97{bottom:208.650000px;}
.y7d{bottom:210.090000px;}
.y44{bottom:210.630000px;}
.ybf{bottom:212.610000px;}
.y96{bottom:214.590000px;}
.y68{bottom:216.570000px;}
.y25{bottom:217.470000px;}
.yae{bottom:222.330000px;}
.yc6{bottom:223.410000px;}
.y89{bottom:226.110000px;}
.y43{bottom:230.250000px;}
.ybe{bottom:235.290000px;}
.y42{bottom:236.190000px;}
.y67{bottom:236.370000px;}
.ybd{bottom:241.230000px;}
.y66{bottom:242.310000px;}
.y88{bottom:245.910000px;}
.y24{bottom:248.430000px;}
.y41{bottom:250.410000px;}
.y87{bottom:251.850000px;}
.ya6{bottom:253.290000px;}
.yad{bottom:253.470000px;}
.ybc{bottom:255.810000px;}
.y65{bottom:256.530000px;}
.ya5{bottom:259.230000px;}
.y86{bottom:267.510000px;}
.yc5{bottom:272.550000px;}
.y85{bottom:273.450000px;}
.ya4{bottom:273.810000px;}
.ybb{bottom:275.610000px;}
.y23{bottom:279.570000px;}
.yba{bottom:281.595000px;}
.y7c{bottom:284.475000px;}
.y84{bottom:287.715000px;}
.ya3{bottom:292.395000px;}
.yb9{bottom:296.175000px;}
.y40{bottom:303.555000px;}
.y22{bottom:310.575000px;}
.ya2{bottom:311.115000px;}
.y64{bottom:315.615000px;}
.yb8{bottom:315.975000px;}
.yb7{bottom:321.915000px;}
.ya1{bottom:329.655000px;}
.y3f{bottom:334.515000px;}
.yb6{bottom:336.135000px;}
.y21{bottom:341.715000px;}
.y63{bottom:346.575000px;}
.ya0{bottom:349.455000px;}
.y9f{bottom:355.395000px;}
.y94{bottom:358.635000px;}
.y95{bottom:365.475000px;}
.y3e{bottom:365.655000px;}
.y9e{bottom:369.615000px;}
.y20{bottom:372.675000px;}
.y7b{bottom:377.715000px;}
.y61{bottom:389.595000px;}
.y62{bottom:396.435000px;}
.y3d{bottom:396.615000px;}
.y1f{bottom:403.815000px;}
.y7a{bottom:408.675000px;}
.y60{bottom:420.735000px;}
.yac{bottom:427.575000px;}
.y3b{bottom:427.755000px;}
.y3c{bottom:434.595000px;}
.y1e{bottom:434.775000px;}
.y79{bottom:439.815000px;}
.y5f{bottom:451.695000px;}
.y3a{bottom:458.715000px;}
.y78{bottom:470.775000px;}
.y1d{bottom:477.795000px;}
.y5e{bottom:482.835000px;}
.yb5{bottom:489.675000px;}
.y39{bottom:489.855000px;}
.y77{bottom:501.915000px;}
.y5d{bottom:513.795000px;}
.y9d{bottom:520.635000px;}
.y1c{bottom:520.815000px;}
.y76{bottom:532.875000px;}
.y5c{bottom:544.935000px;}
.y1b{bottom:551.955000px;}
.y38{bottom:564.015000px;}
.y74{bottom:575.925000px;}
.y75{bottom:582.765000px;}
.y1a{bottom:582.945000px;}
.y5a{bottom:587.985000px;}
.y5b{bottom:594.825000px;}
.y37{bottom:595.005000px;}
.y73{bottom:607.065000px;}
.y19{bottom:614.085000px;}
.y59{bottom:618.945000px;}
.y36{bottom:626.145000px;}
.y72{bottom:638.025000px;}
.y18{bottom:645.045000px;}
.y58{bottom:650.085000px;}
.y35{bottom:657.105000px;}
.y71{bottom:669.165000px;}
.y83{bottom:676.005000px;}
.y17{bottom:676.185000px;}
.y57{bottom:681.045000px;}
.y33{bottom:700.125000px;}
.y34{bottom:706.965000px;}
.y16{bottom:707.145000px;}
.y56{bottom:712.185000px;}
.y9c{bottom:719.025000px;}
.y32{bottom:731.265000px;}
.y15{bottom:738.285000px;}
.y55{bottom:743.145000px;}
.y93{bottom:749.985000px;}
.y31{bottom:762.225000px;}
.y14{bottom:769.245000px;}
.y54{bottom:774.285000px;}
.y9b{bottom:781.125000px;}
.y30{bottom:793.365000px;}
.y53{bottom:805.245000px;}
.y13{bottom:811.905000px;}
.y82{bottom:812.085000px;}
.y91{bottom:817.305000px;}
.y92{bottom:824.145000px;}
.y2f{bottom:824.325000px;}
.y12{bottom:832.785000px;}
.y52{bottom:836.385000px;}
.y90{bottom:848.310000px;}
.y11{bottom:853.530000px;}
.yc4{bottom:855.150000px;}
.y2e{bottom:855.510000px;}
.y51{bottom:867.390000px;}
.y10{bottom:874.230000px;}
.y8f{bottom:879.450000px;}
.y2c{bottom:898.530000px;}
.y2d{bottom:905.370000px;}
.y8e{bottom:910.410000px;}
.yf{bottom:917.250000px;}
.y2b{bottom:929.490000px;}
.y4f{bottom:941.550000px;}
.ye{bottom:948.210000px;}
.y50{bottom:948.390000px;}
.y2a{bottom:960.630000px;}
.y4e{bottom:972.510000px;}
.yd{bottom:991.230000px;}
.y29{bottom:991.590000px;}
.y4d{bottom:1003.650000px;}
.y70{bottom:1010.490000px;}
.yc{bottom:1022.370000px;}
.y28{bottom:1022.730000px;}
.y4c{bottom:1034.610000px;}
.y81{bottom:1041.450000px;}
.yb{bottom:1065.750000px;}
.y8{bottom:1101.750000px;}
.y7{bottom:1115.610000px;}
.y6{bottom:1129.470000px;}
.y5{bottom:1143.540000px;}
.y4{bottom:1161.720000px;}
.y3{bottom:1179.720000px;}
.y2{bottom:1197.900000px;}
.y1{bottom:1215.900000px;}
.he{height:41.535703px;}
.hb{height:47.344922px;}
.h2{height:48.905156px;}
.h4{height:50.312812px;}
.h3{height:51.550046px;}
.h10{height:53.573906px;}
.h11{height:58.621992px;}
.hf{height:58.651172px;}
.hd{height:59.343750px;}
.h5{height:59.439023px;}
.hc{height:64.546875px;}
.h6{height:65.884219px;}
.h9{height:70.628906px;}
.h7{height:70.664062px;}
.h8{height:72.562500px;}
.ha{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:31.860000px;}
.x1{left:127.656000px;}
.x16{left:132.876000px;}
.x7{left:136.296000px;}
.x27{left:138.096000px;}
.x9{left:157.890000px;}
.x4c{left:170.130000px;}
.x49{left:178.207500px;}
.xf{left:180.750000px;}
.x4a{left:190.470000px;}
.x8{left:198.570000px;}
.x12{left:200.167500px;}
.x10{left:206.107500px;}
.x11{left:212.250000px;}
.xa{left:226.110000px;}
.x25{left:238.687500px;}
.x3e{left:244.627500px;}
.x26{left:250.950000px;}
.x3f{left:256.890000px;}
.x46{left:266.947500px;}
.x1d{left:278.107500px;}
.x47{left:279.210000px;}
.x1e{left:284.295000px;}
.x38{left:297.592500px;}
.x1f{left:307.672500px;}
.x39{left:309.855000px;}
.x20{left:313.815000px;}
.x48{left:319.935000px;}
.x2{left:340.095000px;}
.x15{left:343.695000px;}
.x19{left:376.252500px;}
.x1a{left:382.395000px;}
.x3{left:400.395000px;}
.x2a{left:425.752500px;}
.x2b{left:438.015000px;}
.x4b{left:443.775000px;}
.x2e{left:451.672500px;}
.x21{left:453.112500px;}
.x22{left:459.255000px;}
.x17{left:461.032500px;}
.x2f{left:463.935000px;}
.x18{left:467.175000px;}
.x34{left:506.242500px;}
.x35{left:518.505000px;}
.x40{left:528.742500px;}
.x4d{left:531.465000px;}
.x41{left:541.005000px;}
.x13{left:547.642500px;}
.x44{left:552.502500px;}
.x14{left:553.785000px;}
.x45{left:564.765000px;}
.xd{left:572.325000px;}
.xc{left:586.365000px;}
.x36{left:589.042500px;}
.x2c{left:591.202500px;}
.x28{left:593.722500px;}
.x37{left:601.305000px;}
.x2d{left:603.465000px;}
.x29{left:605.985000px;}
.x3a{left:609.922500px;}
.x3b{left:622.185000px;}
.x30{left:647.002500px;}
.xb{left:654.405000px;}
.x31{left:659.265000px;}
.x32{left:698.167500px;}
.x1b{left:700.327500px;}
.x1c{left:706.470000px;}
.x33{left:710.430000px;}
.x4{left:738.510000px;}
.x3c{left:751.627500px;}
.x23{left:752.707500px;}
.x42{left:754.687500px;}
.x3d{left:763.890000px;}
.x24{left:764.970000px;}
.x43{left:766.950000px;}
.x6{left:771.810000px;}
.xe{left:786.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-2.560000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.259733pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.736000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls5{letter-spacing:2.560000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls8{letter-spacing:3.840000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:9.600000pt;}
.ls20{letter-spacing:10.240000pt;}
.ls1d{letter-spacing:10.400000pt;}
.ls16{letter-spacing:14.720000pt;}
.ls1b{letter-spacing:172.778667pt;}
.ws6{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.616000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.953280pt;}
.ws1{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.ws0{word-spacing:-11.120640pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-4.544000pt;}
._7{margin-left:-3.648000pt;}
._5{margin-left:-2.176000pt;}
._1{margin-left:-1.029120pt;}
._0{width:0.964480pt;}
._4{width:2.114987pt;}
._f{width:3.072000pt;}
._a{width:4.160000pt;}
._b{width:5.248000pt;}
._e{width:6.976000pt;}
._8{width:8.640000pt;}
._9{width:9.605120pt;}
._12{width:10.944000pt;}
._17{width:11.995093pt;}
._c{width:12.970667pt;}
._d{width:13.973333pt;}
._13{width:14.874453pt;}
._14{width:17.024000pt;}
._15{width:17.994667pt;}
._16{width:19.008000pt;}
._11{width:20.051627pt;}
._18{width:21.056000pt;}
._10{width:22.912000pt;}
._1a{width:24.000000pt;}
._1b{width:24.896000pt;}
._19{width:172.778667pt;}
._3{width:291.818667pt;}
._2{width:1332.467413pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:28.352000pt;}
.y9{bottom:45.792000pt;}
.y4b{bottom:98.912000pt;}
.y6f{bottom:99.872000pt;}
.y6e{bottom:105.152000pt;}
.y4a{bottom:115.392000pt;}
.yb1{bottom:116.352000pt;}
.yab{bottom:116.512000pt;}
.ycb{bottom:117.792000pt;}
.y8d{bottom:118.272000pt;}
.yca{bottom:119.232000pt;}
.y6d{bottom:120.032000pt;}
.yb0{bottom:121.632000pt;}
.yaa{bottom:121.792000pt;}
.yc9{bottom:124.512000pt;}
.y27{bottom:127.392000pt;}
.y80{bottom:132.032000pt;}
.y49{bottom:132.992000pt;}
.y8c{bottom:134.746667pt;}
.yaf{bottom:135.386667pt;}
.yc3{bottom:135.706667pt;}
.yb4{bottom:135.866667pt;}
.yc8{bottom:137.146667pt;}
.y48{bottom:138.266667pt;}
.y6c{bottom:140.026667pt;}
.yb3{bottom:141.146667pt;}
.y6b{bottom:145.306667pt;}
.y9a{bottom:148.506667pt;}
.y7f{bottom:149.626667pt;}
.y47{bottom:151.386667pt;}
.ya9{bottom:152.346667pt;}
.yc2{bottom:153.306667pt;}
.yb2{bottom:154.106667pt;}
.y7e{bottom:154.906667pt;}
.ya8{bottom:157.626667pt;}
.yc1{bottom:158.586667pt;}
.y6a{bottom:159.386667pt;}
.y26{bottom:165.626667pt;}
.y99{bottom:166.106667pt;}
.y8b{bottom:167.866667pt;}
.y46{bottom:168.826667pt;}
.ya7{bottom:170.586667pt;}
.yc7{bottom:171.066667pt;}
.y98{bottom:171.386667pt;}
.yc0{bottom:171.706667pt;}
.y45{bottom:174.106667pt;}
.y69{bottom:176.026667pt;}
.y8a{bottom:184.346667pt;}
.y97{bottom:185.466667pt;}
.y7d{bottom:186.746667pt;}
.y44{bottom:187.226667pt;}
.ybf{bottom:188.986667pt;}
.y96{bottom:190.746667pt;}
.y68{bottom:192.506667pt;}
.y25{bottom:193.306667pt;}
.yae{bottom:197.626667pt;}
.yc6{bottom:198.586667pt;}
.y89{bottom:200.986667pt;}
.y43{bottom:204.666667pt;}
.ybe{bottom:209.146667pt;}
.y42{bottom:209.946667pt;}
.y67{bottom:210.106667pt;}
.ybd{bottom:214.426667pt;}
.y66{bottom:215.386667pt;}
.y88{bottom:218.586667pt;}
.y24{bottom:220.826667pt;}
.y41{bottom:222.586667pt;}
.y87{bottom:223.866667pt;}
.ya6{bottom:225.146667pt;}
.yad{bottom:225.306667pt;}
.ybc{bottom:227.386667pt;}
.y65{bottom:228.026667pt;}
.ya5{bottom:230.426667pt;}
.y86{bottom:237.786667pt;}
.yc5{bottom:242.266667pt;}
.y85{bottom:243.066667pt;}
.ya4{bottom:243.386667pt;}
.ybb{bottom:244.986667pt;}
.y23{bottom:248.506667pt;}
.yba{bottom:250.306667pt;}
.y7c{bottom:252.866667pt;}
.y84{bottom:255.746667pt;}
.ya3{bottom:259.906667pt;}
.yb9{bottom:263.266667pt;}
.y40{bottom:269.826667pt;}
.y22{bottom:276.066667pt;}
.ya2{bottom:276.546667pt;}
.y64{bottom:280.546667pt;}
.yb8{bottom:280.866667pt;}
.yb7{bottom:286.146667pt;}
.ya1{bottom:293.026667pt;}
.y3f{bottom:297.346667pt;}
.yb6{bottom:298.786667pt;}
.y21{bottom:303.746667pt;}
.y63{bottom:308.066667pt;}
.ya0{bottom:310.626667pt;}
.y9f{bottom:315.906667pt;}
.y94{bottom:318.786667pt;}
.y95{bottom:324.866667pt;}
.y3e{bottom:325.026667pt;}
.y9e{bottom:328.546667pt;}
.y20{bottom:331.266667pt;}
.y7b{bottom:335.746667pt;}
.y61{bottom:346.306667pt;}
.y62{bottom:352.386667pt;}
.y3d{bottom:352.546667pt;}
.y1f{bottom:358.946667pt;}
.y7a{bottom:363.266667pt;}
.y60{bottom:373.986667pt;}
.yac{bottom:380.066667pt;}
.y3b{bottom:380.226667pt;}
.y3c{bottom:386.306667pt;}
.y1e{bottom:386.466667pt;}
.y79{bottom:390.946667pt;}
.y5f{bottom:401.506667pt;}
.y3a{bottom:407.746667pt;}
.y78{bottom:418.466667pt;}
.y1d{bottom:424.706667pt;}
.y5e{bottom:429.186667pt;}
.yb5{bottom:435.266667pt;}
.y39{bottom:435.426667pt;}
.y77{bottom:446.146667pt;}
.y5d{bottom:456.706667pt;}
.y9d{bottom:462.786667pt;}
.y1c{bottom:462.946667pt;}
.y76{bottom:473.666667pt;}
.y5c{bottom:484.386667pt;}
.y1b{bottom:490.626667pt;}
.y38{bottom:501.346667pt;}
.y74{bottom:511.933333pt;}
.y75{bottom:518.013333pt;}
.y1a{bottom:518.173333pt;}
.y5a{bottom:522.653333pt;}
.y5b{bottom:528.733333pt;}
.y37{bottom:528.893333pt;}
.y73{bottom:539.613333pt;}
.y19{bottom:545.853333pt;}
.y59{bottom:550.173333pt;}
.y36{bottom:556.573333pt;}
.y72{bottom:567.133333pt;}
.y18{bottom:573.373333pt;}
.y58{bottom:577.853333pt;}
.y35{bottom:584.093333pt;}
.y71{bottom:594.813333pt;}
.y83{bottom:600.893333pt;}
.y17{bottom:601.053333pt;}
.y57{bottom:605.373333pt;}
.y33{bottom:622.333333pt;}
.y34{bottom:628.413333pt;}
.y16{bottom:628.573333pt;}
.y56{bottom:633.053333pt;}
.y9c{bottom:639.133333pt;}
.y32{bottom:650.013333pt;}
.y15{bottom:656.253333pt;}
.y55{bottom:660.573333pt;}
.y93{bottom:666.653333pt;}
.y31{bottom:677.533333pt;}
.y14{bottom:683.773333pt;}
.y54{bottom:688.253333pt;}
.y9b{bottom:694.333333pt;}
.y30{bottom:705.213333pt;}
.y53{bottom:715.773333pt;}
.y13{bottom:721.693333pt;}
.y82{bottom:721.853333pt;}
.y91{bottom:726.493333pt;}
.y92{bottom:732.573333pt;}
.y2f{bottom:732.733333pt;}
.y12{bottom:740.253333pt;}
.y52{bottom:743.453333pt;}
.y90{bottom:754.053333pt;}
.y11{bottom:758.693333pt;}
.yc4{bottom:760.133333pt;}
.y2e{bottom:760.453333pt;}
.y51{bottom:771.013333pt;}
.y10{bottom:777.093333pt;}
.y8f{bottom:781.733333pt;}
.y2c{bottom:798.693333pt;}
.y2d{bottom:804.773333pt;}
.y8e{bottom:809.253333pt;}
.yf{bottom:815.333333pt;}
.y2b{bottom:826.213333pt;}
.y4f{bottom:836.933333pt;}
.ye{bottom:842.853333pt;}
.y50{bottom:843.013333pt;}
.y2a{bottom:853.893333pt;}
.y4e{bottom:864.453333pt;}
.yd{bottom:881.093333pt;}
.y29{bottom:881.413333pt;}
.y4d{bottom:892.133333pt;}
.y70{bottom:898.213333pt;}
.yc{bottom:908.773333pt;}
.y28{bottom:909.093333pt;}
.y4c{bottom:919.653333pt;}
.y81{bottom:925.733333pt;}
.yb{bottom:947.333333pt;}
.y8{bottom:979.333333pt;}
.y7{bottom:991.653333pt;}
.y6{bottom:1003.973333pt;}
.y5{bottom:1016.480000pt;}
.y4{bottom:1032.640000pt;}
.y3{bottom:1048.640000pt;}
.y2{bottom:1064.800000pt;}
.y1{bottom:1080.800000pt;}
.he{height:36.920625pt;}
.hb{height:42.084375pt;}
.h2{height:43.471250pt;}
.h4{height:44.722500pt;}
.h3{height:45.822263pt;}
.h10{height:47.621250pt;}
.h11{height:52.108438pt;}
.hf{height:52.134375pt;}
.hd{height:52.750000pt;}
.h5{height:52.834688pt;}
.hc{height:57.375000pt;}
.h6{height:58.563750pt;}
.h9{height:62.781250pt;}
.h7{height:62.812500pt;}
.h8{height:64.500000pt;}
.ha{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:28.320000pt;}
.x1{left:113.472000pt;}
.x16{left:118.112000pt;}
.x7{left:121.152000pt;}
.x27{left:122.752000pt;}
.x9{left:140.346667pt;}
.x4c{left:151.226667pt;}
.x49{left:158.406667pt;}
.xf{left:160.666667pt;}
.x4a{left:169.306667pt;}
.x8{left:176.506667pt;}
.x12{left:177.926667pt;}
.x10{left:183.206667pt;}
.x11{left:188.666667pt;}
.xa{left:200.986667pt;}
.x25{left:212.166667pt;}
.x3e{left:217.446667pt;}
.x26{left:223.066667pt;}
.x3f{left:228.346667pt;}
.x46{left:237.286667pt;}
.x1d{left:247.206667pt;}
.x47{left:248.186667pt;}
.x1e{left:252.706667pt;}
.x38{left:264.526667pt;}
.x1f{left:273.486667pt;}
.x39{left:275.426667pt;}
.x20{left:278.946667pt;}
.x48{left:284.386667pt;}
.x2{left:302.306667pt;}
.x15{left:305.506667pt;}
.x19{left:334.446667pt;}
.x1a{left:339.906667pt;}
.x3{left:355.906667pt;}
.x2a{left:378.446667pt;}
.x2b{left:389.346667pt;}
.x4b{left:394.466667pt;}
.x2e{left:401.486667pt;}
.x21{left:402.766667pt;}
.x22{left:408.226667pt;}
.x17{left:409.806667pt;}
.x2f{left:412.386667pt;}
.x18{left:415.266667pt;}
.x34{left:449.993333pt;}
.x35{left:460.893333pt;}
.x40{left:469.993333pt;}
.x4d{left:472.413333pt;}
.x41{left:480.893333pt;}
.x13{left:486.793333pt;}
.x44{left:491.113333pt;}
.x14{left:492.253333pt;}
.x45{left:502.013333pt;}
.xd{left:508.733333pt;}
.xc{left:521.213333pt;}
.x36{left:523.593333pt;}
.x2c{left:525.513333pt;}
.x28{left:527.753333pt;}
.x37{left:534.493333pt;}
.x2d{left:536.413333pt;}
.x29{left:538.653333pt;}
.x3a{left:542.153333pt;}
.x3b{left:553.053333pt;}
.x30{left:575.113333pt;}
.xb{left:581.693333pt;}
.x31{left:586.013333pt;}
.x32{left:620.593333pt;}
.x1b{left:622.513333pt;}
.x1c{left:627.973333pt;}
.x33{left:631.493333pt;}
.x4{left:656.453333pt;}
.x3c{left:668.113333pt;}
.x23{left:669.073333pt;}
.x42{left:670.833333pt;}
.x3d{left:679.013333pt;}
.x24{left:679.973333pt;}
.x43{left:681.733333pt;}
.x6{left:686.053333pt;}
.xe{left:699.493333pt;}
}




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