
    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_8be49ae3e24fe4594b995cff.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9b98ea85290e3265f3b56d93.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a34936e197f607919ad38e05.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_3969de1d66bffbfb23b5cdea.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4d472044b85644526af89e11.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_be0dc2d3e262a7abd6fe1931.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_d4b8f9286d25bef5fdbfe46a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_faf56dfe70f8563125ca9f64.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_776d95743b9fb963ce237a08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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:ffb;src:url('chunks/assets/font_4f48c95fcac1ff3078953594.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.690000px;}
.ls17{letter-spacing:-0.450000px;}
.ls19{letter-spacing:-0.229800px;}
.ls8{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.058320px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.360000px;}
.ls1c{letter-spacing:2.880000px;}
.ls16{letter-spacing:5.580000px;}
.ls15{letter-spacing:7.020000px;}
.ls18{letter-spacing:9.180000px;}
.lsc{letter-spacing:9.900000px;}
.lsd{letter-spacing:10.620000px;}
.ls10{letter-spacing:13.500000px;}
.ls12{letter-spacing:14.400000px;}
.ls5{letter-spacing:15.269760px;}
.ls11{letter-spacing:17.820000px;}
.ls2{letter-spacing:26.789760px;}
.ls3{letter-spacing:27.180000px;}
.ls4{letter-spacing:27.509760px;}
.lse{letter-spacing:30.780000px;}
.lsb{letter-spacing:32.940000px;}
.ls1{letter-spacing:33.120000px;}
.ls1a{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.ls1b{letter-spacing:46.026720px;}
.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;}
}
.ws7{word-spacing:-22.500000px;}
.ws8{word-spacing:-22.050000px;}
.ws6{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.097440px;}
.ws4{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.370000px;}
.ws9{word-spacing:-18.808440px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._6{width:1.164000px;}
._c{width:2.245440px;}
._8{width:3.369600px;}
._e{width:4.464720px;}
._3{width:5.616000px;}
._4{width:6.768000px;}
._5{width:7.992000px;}
._13{width:9.519120px;}
._12{width:10.758240px;}
._1a{width:11.926800px;}
._d{width:13.141440px;}
._10{width:14.320800px;}
._16{width:16.089840px;}
._1b{width:17.486640px;}
._19{width:19.182240px;}
._22{width:20.705760px;}
._b{width:22.239360px;}
._7{width:24.045360px;}
._f{width:25.608960px;}
._15{width:26.704080px;}
._9{width:27.799200px;}
._14{width:29.484000px;}
._18{width:30.663360px;}
._17{width:32.332800px;}
._2{width:33.384000px;}
._a{width:36.812880px;}
._24{width:37.992240px;}
._25{width:39.003600px;}
._1d{width:40.266720px;}
._1e{width:41.354400px;}
._27{width:43.215120px;}
._26{width:44.226000px;}
._23{width:45.321120px;}
._1f{width:46.326240px;}
._21{width:47.478960px;}
._1c{width:49.196160px;}
._11{width:51.217920px;}
._20{width:52.282080px;}
._1{width:104.544000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y6a{bottom:81.036000px;}
.y2a{bottom:81.396000px;}
.yb0{bottom:95.256000px;}
.y82{bottom:96.876000px;}
.y4c{bottom:99.216000px;}
.ya3{bottom:101.196000px;}
.y69{bottom:108.756000px;}
.y29{bottom:109.116000px;}
.yaf{bottom:122.976000px;}
.y81{bottom:124.596000px;}
.y4b{bottom:126.936000px;}
.ya2{bottom:128.916000px;}
.y68{bottom:136.476000px;}
.y28{bottom:136.836000px;}
.yae{bottom:150.690000px;}
.y80{bottom:152.490000px;}
.y4a{bottom:154.650000px;}
.ya1{bottom:156.630000px;}
.y67{bottom:164.370000px;}
.y27{bottom:164.730000px;}
.yad{bottom:178.410000px;}
.y7f{bottom:180.210000px;}
.y49{bottom:182.370000px;}
.ya0{bottom:184.350000px;}
.y66{bottom:192.090000px;}
.y26{bottom:192.450000px;}
.yac{bottom:206.310000px;}
.y7e{bottom:207.930000px;}
.y48{bottom:210.270000px;}
.y9f{bottom:212.250000px;}
.y65{bottom:219.810000px;}
.y25{bottom:220.170000px;}
.yab{bottom:234.030000px;}
.y7d{bottom:235.650000px;}
.y47{bottom:237.990000px;}
.y9e{bottom:239.970000px;}
.y64{bottom:247.710000px;}
.y24{bottom:247.890000px;}
.yaa{bottom:261.750000px;}
.y7c{bottom:263.550000px;}
.y46{bottom:265.710000px;}
.y9d{bottom:268.230000px;}
.y63{bottom:275.430000px;}
.y23{bottom:275.790000px;}
.ya9{bottom:289.515000px;}
.y7b{bottom:291.315000px;}
.y45{bottom:293.655000px;}
.y9c{bottom:297.615000px;}
.y62{bottom:303.195000px;}
.y22{bottom:303.555000px;}
.ya8{bottom:317.415000px;}
.y7a{bottom:319.035000px;}
.y44{bottom:321.375000px;}
.y9b{bottom:325.335000px;}
.y61{bottom:330.915000px;}
.y21{bottom:331.275000px;}
.ya7{bottom:345.135000px;}
.y79{bottom:346.935000px;}
.y43{bottom:349.095000px;}
.y9a{bottom:353.055000px;}
.y60{bottom:358.815000px;}
.y20{bottom:359.175000px;}
.ya6{bottom:372.855000px;}
.y78{bottom:374.655000px;}
.y42{bottom:376.815000px;}
.y99{bottom:380.775000px;}
.y5f{bottom:386.535000px;}
.y1f{bottom:386.895000px;}
.ya5{bottom:400.755000px;}
.y77{bottom:402.375000px;}
.y41{bottom:403.635000px;}
.y98{bottom:408.675000px;}
.y5e{bottom:414.255000px;}
.y1e{bottom:414.615000px;}
.y40{bottom:428.475000px;}
.y76{bottom:430.095000px;}
.y97{bottom:436.395000px;}
.y5d{bottom:441.975000px;}
.y1d{bottom:442.335000px;}
.y3f{bottom:456.195000px;}
.y75{bottom:457.995000px;}
.y96{bottom:464.115000px;}
.y5c{bottom:469.875000px;}
.y1c{bottom:470.235000px;}
.y3e{bottom:483.915000px;}
.y74{bottom:485.715000px;}
.y95{bottom:491.835000px;}
.y5b{bottom:497.595000px;}
.y1b{bottom:497.955000px;}
.y3d{bottom:511.815000px;}
.ya4{bottom:512.895000px;}
.y73{bottom:513.435000px;}
.y94{bottom:519.735000px;}
.y5a{bottom:525.315000px;}
.y1a{bottom:525.675000px;}
.y3c{bottom:539.535000px;}
.y72{bottom:541.155000px;}
.y93{bottom:547.455000px;}
.y59{bottom:553.215000px;}
.y19{bottom:553.575000px;}
.y3b{bottom:567.285000px;}
.y71{bottom:569.085000px;}
.y92{bottom:575.205000px;}
.y58{bottom:580.965000px;}
.y18{bottom:581.325000px;}
.y3a{bottom:595.185000px;}
.y70{bottom:596.805000px;}
.y91{bottom:603.105000px;}
.y57{bottom:608.685000px;}
.y17{bottom:609.045000px;}
.ybc{bottom:609.945000px;}
.y39{bottom:622.905000px;}
.y6f{bottom:624.525000px;}
.y90{bottom:630.825000px;}
.y56{bottom:636.405000px;}
.y16{bottom:636.765000px;}
.ybb{bottom:636.945000px;}
.y38{bottom:650.625000px;}
.y6e{bottom:652.425000px;}
.y8f{bottom:658.545000px;}
.yba{bottom:660.165000px;}
.y55{bottom:664.305000px;}
.y15{bottom:664.665000px;}
.y37{bottom:678.345000px;}
.y6d{bottom:680.145000px;}
.yb9{bottom:683.925000px;}
.y8e{bottom:686.265000px;}
.y54{bottom:690.945000px;}
.y14{bottom:692.385000px;}
.y36{bottom:706.245000px;}
.yb8{bottom:707.505000px;}
.y6c{bottom:707.865000px;}
.y53{bottom:714.705000px;}
.y13{bottom:720.105000px;}
.yb7{bottom:728.205000px;}
.y35{bottom:733.965000px;}
.y6b{bottom:735.585000px;}
.y52{bottom:738.465000px;}
.y8d{bottom:744.405000px;}
.y12{bottom:747.825000px;}
.yb6{bottom:748.905000px;}
.y34{bottom:761.685000px;}
.y51{bottom:763.485000px;}
.yb5{bottom:769.605000px;}
.y11{bottom:771.405000px;}
.y8c{bottom:774.105000px;}
.y33{bottom:789.405000px;}
.yb4{bottom:790.305000px;}
.y50{bottom:791.205000px;}
.y10{bottom:792.105000px;}
.y8b{bottom:803.985000px;}
.yb3{bottom:811.005000px;}
.yf{bottom:812.805000px;}
.y32{bottom:817.305000px;}
.y4f{bottom:818.925000px;}
.yb2{bottom:831.705000px;}
.ye{bottom:833.505000px;}
.y8a{bottom:833.685000px;}
.y31{bottom:845.025000px;}
.y4e{bottom:846.825000px;}
.yb1{bottom:853.890000px;}
.yd{bottom:854.250000px;}
.y89{bottom:863.430000px;}
.y30{bottom:874.050000px;}
.y4d{bottom:874.590000px;}
.yc{bottom:874.950000px;}
.y88{bottom:893.310000px;}
.yb{bottom:895.650000px;}
.y2f{bottom:902.310000px;}
.y87{bottom:923.010000px;}
.y2e{bottom:930.030000px;}
.ya{bottom:937.050000px;}
.y86{bottom:952.710000px;}
.y9{bottom:957.750000px;}
.y2d{bottom:957.930000px;}
.y8{bottom:978.450000px;}
.y85{bottom:983.130000px;}
.y2c{bottom:985.650000px;}
.y7{bottom:999.150000px;}
.y84{bottom:1011.390000px;}
.y2b{bottom:1013.370000px;}
.y6{bottom:1019.850000px;}
.y83{bottom:1039.830000px;}
.y5{bottom:1041.270000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.he{height:52.998047px;}
.h7{height:54.878906px;}
.h9{height:58.819922px;}
.hd{height:62.841797px;}
.h10{height:65.884219px;}
.h6{height:70.628906px;}
.h8{height:70.664062px;}
.h5{height:72.562500px;}
.hf{height:74.004654px;}
.hb{height:82.635820px;}
.h2{height:82.676953px;}
.ha{height:83.787539px;}
.h4{height:84.898125px;}
.hc{height:88.330078px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.xb{left:110.915987px;}
.x9{left:138.095987px;}
.xa{left:169.949987px;}
.x4{left:180.389987px;}
.x7{left:287.714987px;}
.x6{left:292.394987px;}
.x8{left:361.334987px;}
.x2{left:409.035000px;}
.x5{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.613333pt;}
.ls17{letter-spacing:-0.400000pt;}
.ls19{letter-spacing:-0.204267pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls16{letter-spacing:4.960000pt;}
.ls15{letter-spacing:6.240000pt;}
.ls18{letter-spacing:8.160000pt;}
.lsc{letter-spacing:8.800000pt;}
.lsd{letter-spacing:9.440000pt;}
.ls10{letter-spacing:12.000000pt;}
.ls12{letter-spacing:12.800000pt;}
.ls5{letter-spacing:13.573120pt;}
.ls11{letter-spacing:15.840000pt;}
.ls2{letter-spacing:23.813120pt;}
.ls3{letter-spacing:24.160000pt;}
.ls4{letter-spacing:24.453120pt;}
.lse{letter-spacing:27.360000pt;}
.lsb{letter-spacing:29.280000pt;}
.ls1{letter-spacing:29.440000pt;}
.ls1a{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls1b{letter-spacing:40.912640pt;}
.ws7{word-spacing:-20.000000pt;}
.ws8{word-spacing:-19.600000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.753280pt;}
.ws4{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.106667pt;}
.ws9{word-spacing:-16.718613pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._6{width:1.034667pt;}
._c{width:1.995947pt;}
._8{width:2.995200pt;}
._e{width:3.968640pt;}
._3{width:4.992000pt;}
._4{width:6.016000pt;}
._5{width:7.104000pt;}
._13{width:8.461440pt;}
._12{width:9.562880pt;}
._1a{width:10.601600pt;}
._d{width:11.681280pt;}
._10{width:12.729600pt;}
._16{width:14.302080pt;}
._1b{width:15.543680pt;}
._19{width:17.050880pt;}
._22{width:18.405120pt;}
._b{width:19.768320pt;}
._7{width:21.373653pt;}
._f{width:22.763520pt;}
._15{width:23.736960pt;}
._9{width:24.710400pt;}
._14{width:26.208000pt;}
._18{width:27.256320pt;}
._17{width:28.740267pt;}
._2{width:29.674667pt;}
._a{width:32.722560pt;}
._24{width:33.770880pt;}
._25{width:34.669867pt;}
._1d{width:35.792640pt;}
._1e{width:36.759467pt;}
._27{width:38.413440pt;}
._26{width:39.312000pt;}
._23{width:40.285440pt;}
._1f{width:41.178880pt;}
._21{width:42.203520pt;}
._1c{width:43.729920pt;}
._11{width:45.527040pt;}
._20{width:46.472960pt;}
._1{width:92.928000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y6a{bottom:72.032000pt;}
.y2a{bottom:72.352000pt;}
.yb0{bottom:84.672000pt;}
.y82{bottom:86.112000pt;}
.y4c{bottom:88.192000pt;}
.ya3{bottom:89.952000pt;}
.y69{bottom:96.672000pt;}
.y29{bottom:96.992000pt;}
.yaf{bottom:109.312000pt;}
.y81{bottom:110.752000pt;}
.y4b{bottom:112.832000pt;}
.ya2{bottom:114.592000pt;}
.y68{bottom:121.312000pt;}
.y28{bottom:121.632000pt;}
.yae{bottom:133.946667pt;}
.y80{bottom:135.546667pt;}
.y4a{bottom:137.466667pt;}
.ya1{bottom:139.226667pt;}
.y67{bottom:146.106667pt;}
.y27{bottom:146.426667pt;}
.yad{bottom:158.586667pt;}
.y7f{bottom:160.186667pt;}
.y49{bottom:162.106667pt;}
.ya0{bottom:163.866667pt;}
.y66{bottom:170.746667pt;}
.y26{bottom:171.066667pt;}
.yac{bottom:183.386667pt;}
.y7e{bottom:184.826667pt;}
.y48{bottom:186.906667pt;}
.y9f{bottom:188.666667pt;}
.y65{bottom:195.386667pt;}
.y25{bottom:195.706667pt;}
.yab{bottom:208.026667pt;}
.y7d{bottom:209.466667pt;}
.y47{bottom:211.546667pt;}
.y9e{bottom:213.306667pt;}
.y64{bottom:220.186667pt;}
.y24{bottom:220.346667pt;}
.yaa{bottom:232.666667pt;}
.y7c{bottom:234.266667pt;}
.y46{bottom:236.186667pt;}
.y9d{bottom:238.426667pt;}
.y63{bottom:244.826667pt;}
.y23{bottom:245.146667pt;}
.ya9{bottom:257.346667pt;}
.y7b{bottom:258.946667pt;}
.y45{bottom:261.026667pt;}
.y9c{bottom:264.546667pt;}
.y62{bottom:269.506667pt;}
.y22{bottom:269.826667pt;}
.ya8{bottom:282.146667pt;}
.y7a{bottom:283.586667pt;}
.y44{bottom:285.666667pt;}
.y9b{bottom:289.186667pt;}
.y61{bottom:294.146667pt;}
.y21{bottom:294.466667pt;}
.ya7{bottom:306.786667pt;}
.y79{bottom:308.386667pt;}
.y43{bottom:310.306667pt;}
.y9a{bottom:313.826667pt;}
.y60{bottom:318.946667pt;}
.y20{bottom:319.266667pt;}
.ya6{bottom:331.426667pt;}
.y78{bottom:333.026667pt;}
.y42{bottom:334.946667pt;}
.y99{bottom:338.466667pt;}
.y5f{bottom:343.586667pt;}
.y1f{bottom:343.906667pt;}
.ya5{bottom:356.226667pt;}
.y77{bottom:357.666667pt;}
.y41{bottom:358.786667pt;}
.y98{bottom:363.266667pt;}
.y5e{bottom:368.226667pt;}
.y1e{bottom:368.546667pt;}
.y40{bottom:380.866667pt;}
.y76{bottom:382.306667pt;}
.y97{bottom:387.906667pt;}
.y5d{bottom:392.866667pt;}
.y1d{bottom:393.186667pt;}
.y3f{bottom:405.506667pt;}
.y75{bottom:407.106667pt;}
.y96{bottom:412.546667pt;}
.y5c{bottom:417.666667pt;}
.y1c{bottom:417.986667pt;}
.y3e{bottom:430.146667pt;}
.y74{bottom:431.746667pt;}
.y95{bottom:437.186667pt;}
.y5b{bottom:442.306667pt;}
.y1b{bottom:442.626667pt;}
.y3d{bottom:454.946667pt;}
.ya4{bottom:455.906667pt;}
.y73{bottom:456.386667pt;}
.y94{bottom:461.986667pt;}
.y5a{bottom:466.946667pt;}
.y1a{bottom:467.266667pt;}
.y3c{bottom:479.586667pt;}
.y72{bottom:481.026667pt;}
.y93{bottom:486.626667pt;}
.y59{bottom:491.746667pt;}
.y19{bottom:492.066667pt;}
.y3b{bottom:504.253333pt;}
.y71{bottom:505.853333pt;}
.y92{bottom:511.293333pt;}
.y58{bottom:516.413333pt;}
.y18{bottom:516.733333pt;}
.y3a{bottom:529.053333pt;}
.y70{bottom:530.493333pt;}
.y91{bottom:536.093333pt;}
.y57{bottom:541.053333pt;}
.y17{bottom:541.373333pt;}
.ybc{bottom:542.173333pt;}
.y39{bottom:553.693333pt;}
.y6f{bottom:555.133333pt;}
.y90{bottom:560.733333pt;}
.y56{bottom:565.693333pt;}
.y16{bottom:566.013333pt;}
.ybb{bottom:566.173333pt;}
.y38{bottom:578.333333pt;}
.y6e{bottom:579.933333pt;}
.y8f{bottom:585.373333pt;}
.yba{bottom:586.813333pt;}
.y55{bottom:590.493333pt;}
.y15{bottom:590.813333pt;}
.y37{bottom:602.973333pt;}
.y6d{bottom:604.573333pt;}
.yb9{bottom:607.933333pt;}
.y8e{bottom:610.013333pt;}
.y54{bottom:614.173333pt;}
.y14{bottom:615.453333pt;}
.y36{bottom:627.773333pt;}
.yb8{bottom:628.893333pt;}
.y6c{bottom:629.213333pt;}
.y53{bottom:635.293333pt;}
.y13{bottom:640.093333pt;}
.yb7{bottom:647.293333pt;}
.y35{bottom:652.413333pt;}
.y6b{bottom:653.853333pt;}
.y52{bottom:656.413333pt;}
.y8d{bottom:661.693333pt;}
.y12{bottom:664.733333pt;}
.yb6{bottom:665.693333pt;}
.y34{bottom:677.053333pt;}
.y51{bottom:678.653333pt;}
.yb5{bottom:684.093333pt;}
.y11{bottom:685.693333pt;}
.y8c{bottom:688.093333pt;}
.y33{bottom:701.693333pt;}
.yb4{bottom:702.493333pt;}
.y50{bottom:703.293333pt;}
.y10{bottom:704.093333pt;}
.y8b{bottom:714.653333pt;}
.yb3{bottom:720.893333pt;}
.yf{bottom:722.493333pt;}
.y32{bottom:726.493333pt;}
.y4f{bottom:727.933333pt;}
.yb2{bottom:739.293333pt;}
.ye{bottom:740.893333pt;}
.y8a{bottom:741.053333pt;}
.y31{bottom:751.133333pt;}
.y4e{bottom:752.733333pt;}
.yb1{bottom:759.013333pt;}
.yd{bottom:759.333333pt;}
.y89{bottom:767.493333pt;}
.y30{bottom:776.933333pt;}
.y4d{bottom:777.413333pt;}
.yc{bottom:777.733333pt;}
.y88{bottom:794.053333pt;}
.yb{bottom:796.133333pt;}
.y2f{bottom:802.053333pt;}
.y87{bottom:820.453333pt;}
.y2e{bottom:826.693333pt;}
.ya{bottom:832.933333pt;}
.y86{bottom:846.853333pt;}
.y9{bottom:851.333333pt;}
.y2d{bottom:851.493333pt;}
.y8{bottom:869.733333pt;}
.y85{bottom:873.893333pt;}
.y2c{bottom:876.133333pt;}
.y7{bottom:888.133333pt;}
.y84{bottom:899.013333pt;}
.y2b{bottom:900.773333pt;}
.y6{bottom:906.533333pt;}
.y83{bottom:924.293333pt;}
.y5{bottom:925.573333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.he{height:47.109375pt;}
.h7{height:48.781250pt;}
.h9{height:52.284375pt;}
.hd{height:55.859375pt;}
.h10{height:58.563750pt;}
.h6{height:62.781250pt;}
.h8{height:62.812500pt;}
.h5{height:64.500000pt;}
.hf{height:65.781915pt;}
.hb{height:73.454062pt;}
.h2{height:73.490625pt;}
.ha{height:74.477812pt;}
.h4{height:75.465000pt;}
.hc{height:78.515625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.xb{left:98.591988pt;}
.x9{left:122.751988pt;}
.xa{left:151.066655pt;}
.x4{left:160.346655pt;}
.x7{left:255.746655pt;}
.x6{left:259.906655pt;}
.x8{left:321.186655pt;}
.x2{left:363.586667pt;}
.x5{left:396.866655pt;}
}




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