
    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_cc9cb391fd5953829064bfee.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e7115f3d3ec7b8ce1c853ed3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_cf124c9e659e68c4fe0bc66c.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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_0406cf0bcdcc073e789a2cd0.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_fab14589ee76e8c4903195fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_47a6c0ed3fd96204fbb9d51c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_ae04e45bc06b4b226db0bfec.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{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);}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.119520px;}
.ls11{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.720000px;}
.ls17{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.480000px;}
.ls18{letter-spacing:6.785280px;}
.ls15{letter-spacing:9.360000px;}
.ls13{letter-spacing:12.240000px;}
.ls12{letter-spacing:22.320000px;}
.ls16{letter-spacing:39.905280px;}
.ls6{letter-spacing:71.634240px;}
.ls4{letter-spacing:72.174240px;}
.ls5{letter-spacing:92.880000px;}
.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;}
}
.wsb{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.102200px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-4.464000px;}
._5{margin-left:-3.312000px;}
._1{margin-left:-1.513680px;}
._0{width:1.135440px;}
._4{width:2.994960px;}
._b{width:4.236480px;}
._2{width:5.287440px;}
._e{width:6.419520px;}
._c{width:7.434240px;}
._6{width:8.496000px;}
._7{width:10.224000px;}
._d{width:12.168000px;}
._a{width:13.969680px;}
._9{width:15.408000px;}
._13{width:16.993680px;}
._f{width:19.225680px;}
._10{width:21.456000px;}
._11{width:22.824000px;}
._15{width:24.773760px;}
._14{width:26.486160px;}
._12{width:31.536000px;}
._16{width:70.148160px;}
._3{width:144.757920px;}
.fc8{color:transparent;}
.fc7{color:rgb(62,61,64);}
.fc4{color:rgb(68,114,196);}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(192,0,0);}
.fc0{color:rgb(0,176,240);}
.fs5{font-size:23.760000px;}
.fs3{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs2{font-size:84.240000px;}
.ye5{bottom:-44.280000px;}
.ye4{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.240000px;}
.ye3{bottom:8.280000px;}
.y33{bottom:22.005000px;}
.y5{bottom:25.560000px;}
.ye2{bottom:42.840000px;}
.ye1{bottom:60.120000px;}
.y31{bottom:60.480000px;}
.yb9{bottom:65.520000px;}
.y81{bottom:71.640000px;}
.y5d{bottom:74.880000px;}
.ye0{bottom:77.445000px;}
.y30{bottom:84.240000px;}
.yb8{bottom:84.420000px;}
.ydf{bottom:94.725000px;}
.y80{bottom:95.436000px;}
.y5c{bottom:98.676000px;}
.yb7{bottom:103.536000px;}
.y2f{bottom:108.036000px;}
.yde{bottom:111.825000px;}
.y7f{bottom:119.376000px;}
.y96{bottom:122.436000px;}
.ydd{bottom:129.105000px;}
.y5b{bottom:131.436000px;}
.y2e{bottom:131.796000px;}
.yb6{bottom:141.516000px;}
.y7e{bottom:143.136000px;}
.ydc{bottom:146.385000px;}
.y5a{bottom:155.370000px;}
.y2d{bottom:155.730000px;}
.yb5{bottom:160.410000px;}
.y7d{bottom:175.890000px;}
.y59{bottom:179.130000px;}
.yb4{bottom:179.310000px;}
.y2c{bottom:179.490000px;}
.yb3{bottom:198.390000px;}
.y7c{bottom:199.650000px;}
.y58{bottom:202.890000px;}
.y2b{bottom:203.250000px;}
.yb2{bottom:217.290000px;}
.y7b{bottom:223.590000px;}
.y57{bottom:226.650000px;}
.y2a{bottom:227.010000px;}
.yda{bottom:233.670000px;}
.yb1{bottom:236.370000px;}
.y7a{bottom:247.350000px;}
.y56{bottom:250.590000px;}
.y29{bottom:250.950000px;}
.yb0{bottom:255.270000px;}
.ydb{bottom:265.350000px;}
.y79{bottom:271.110000px;}
.yaf{bottom:274.170000px;}
.y55{bottom:274.350000px;}
.y28{bottom:274.710000px;}
.yae{bottom:293.250000px;}
.y78{bottom:294.870000px;}
.y54{bottom:298.110000px;}
.y27{bottom:307.470000px;}
.yad{bottom:312.150000px;}
.y77{bottom:318.810000px;}
.y95{bottom:321.870000px;}
.y53{bottom:330.870000px;}
.yac{bottom:331.230000px;}
.y26{bottom:332.310000px;}
.y76{bottom:342.615000px;}
.y94{bottom:345.855000px;}
.yab{bottom:350.175000px;}
.y25{bottom:356.655000px;}
.y52{bottom:363.855000px;}
.y75{bottom:366.375000px;}
.yaa{bottom:369.075000px;}
.y93{bottom:369.615000px;}
.y24{bottom:380.415000px;}
.y51{bottom:387.615000px;}
.ya9{bottom:388.155000px;}
.y74{bottom:399.135000px;}
.y92{bottom:402.375000px;}
.y23{bottom:404.175000px;}
.ya8{bottom:407.055000px;}
.y50{bottom:411.375000px;}
.y73{bottom:423.075000px;}
.y91{bottom:426.135000px;}
.y22{bottom:427.935000px;}
.y4f{bottom:435.135000px;}
.ya7{bottom:445.035000px;}
.y90{bottom:450.075000px;}
.y21{bottom:451.875000px;}
.y72{bottom:455.835000px;}
.yd9{bottom:458.715000px;}
.y4e{bottom:459.075000px;}
.ya6{bottom:463.935000px;}
.y8f{bottom:473.835000px;}
.y20{bottom:475.635000px;}
.yd8{bottom:476.355000px;}
.y71{bottom:479.595000px;}
.y4d{bottom:482.835000px;}
.ya5{bottom:483.015000px;}
.yd7{bottom:495.255000px;}
.y8e{bottom:497.595000px;}
.y1f{bottom:499.395000px;}
.ya4{bottom:501.915000px;}
.y70{bottom:503.355000px;}
.y4c{bottom:506.595000px;}
.yd6{bottom:514.335000px;}
.ya3{bottom:520.995000px;}
.y8d{bottom:521.355000px;}
.y1e{bottom:523.155000px;}
.y6f{bottom:527.115000px;}
.y4b{bottom:530.355000px;}
.yd5{bottom:533.235000px;}
.ya2{bottom:539.895000px;}
.y8c{bottom:545.115000px;}
.y1d{bottom:547.095000px;}
.y6e{bottom:551.055000px;}
.yd4{bottom:552.135000px;}
.y4a{bottom:554.115000px;}
.ya1{bottom:558.795000px;}
.y8b{bottom:569.055000px;}
.y1c{bottom:570.855000px;}
.yd3{bottom:571.215000px;}
.ya0{bottom:577.875000px;}
.y6d{bottom:583.845000px;}
.y49{bottom:587.085000px;}
.yd2{bottom:590.145000px;}
.y8a{bottom:592.845000px;}
.y1b{bottom:594.645000px;}
.y9f{bottom:596.805000px;}
.y6c{bottom:607.605000px;}
.yd1{bottom:609.225000px;}
.y48{bottom:610.845000px;}
.y9e{bottom:615.885000px;}
.y1a{bottom:618.405000px;}
.y89{bottom:625.605000px;}
.yd0{bottom:628.125000px;}
.y6b{bottom:631.365000px;}
.y47{bottom:634.605000px;}
.y9d{bottom:634.785000px;}
.y19{bottom:642.345000px;}
.ycf{bottom:647.205000px;}
.y88{bottom:649.365000px;}
.y9c{bottom:653.865000px;}
.y46{bottom:658.365000px;}
.y6a{bottom:664.305000px;}
.y18{bottom:666.105000px;}
.y9b{bottom:672.765000px;}
.y87{bottom:673.305000px;}
.y45{bottom:682.305000px;}
.yce{bottom:685.005000px;}
.y69{bottom:688.065000px;}
.y17{bottom:689.865000px;}
.y9a{bottom:691.665000px;}
.y86{bottom:697.065000px;}
.ycd{bottom:704.085000px;}
.y44{bottom:706.065000px;}
.y16{bottom:709.845000px;}
.y99{bottom:710.925000px;}
.y68{bottom:711.825000px;}
.y85{bottom:720.825000px;}
.ycc{bottom:722.985000px;}
.y15{bottom:727.125000px;}
.y43{bottom:729.825000px;}
.y98{bottom:731.625000px;}
.y67{bottom:735.585000px;}
.ycb{bottom:742.065000px;}
.y84{bottom:744.585000px;}
.y14{bottom:746.925000px;}
.y97{bottom:753.225000px;}
.y42{bottom:753.585000px;}
.y66{bottom:759.525000px;}
.yca{bottom:760.965000px;}
.y13{bottom:766.725000px;}
.y83{bottom:768.525000px;}
.y41{bottom:777.525000px;}
.yc9{bottom:779.865000px;}
.y65{bottom:783.285000px;}
.y12{bottom:786.525000px;}
.y82{bottom:792.285000px;}
.yc8{bottom:798.945000px;}
.y40{bottom:801.285000px;}
.y11{bottom:802.905000px;}
.y64{bottom:816.045000px;}
.yc7{bottom:817.845000px;}
.y32{bottom:821.625000px;}
.y3f{bottom:825.045000px;}
.yc6{bottom:836.970000px;}
.y63{bottom:839.850000px;}
.y3e{bottom:848.850000px;}
.yc5{bottom:855.870000px;}
.y62{bottom:863.790000px;}
.y3d{bottom:872.790000px;}
.yc4{bottom:874.770000px;}
.y10{bottom:877.650000px;}
.y61{bottom:887.550000px;}
.yc3{bottom:893.850000px;}
.y3c{bottom:896.550000px;}
.yf{bottom:897.090000px;}
.y60{bottom:911.310000px;}
.yc2{bottom:912.750000px;}
.y3b{bottom:920.310000px;}
.ye{bottom:922.290000px;}
.yc1{bottom:931.830000px;}
.y5f{bottom:935.070000px;}
.yd{bottom:939.390000px;}
.y3a{bottom:944.070000px;}
.yc0{bottom:950.730000px;}
.yc{bottom:956.670000px;}
.y5e{bottom:959.010000px;}
.y39{bottom:968.010000px;}
.yb{bottom:968.730000px;}
.ybf{bottom:969.630000px;}
.ya{bottom:986.010000px;}
.ybe{bottom:988.710000px;}
.y38{bottom:991.770000px;}
.y9{bottom:1007.250000px;}
.ybd{bottom:1007.610000px;}
.y37{bottom:1015.530000px;}
.y8{bottom:1025.790000px;}
.ybc{bottom:1026.690000px;}
.y36{bottom:1039.290000px;}
.ybb{bottom:1045.590000px;}
.y7{bottom:1048.650000px;}
.y35{bottom:1063.050000px;}
.yba{bottom:1064.490000px;}
.y6{bottom:1065.930000px;}
.y4{bottom:1083.600000px;}
.y3{bottom:1102.140000px;}
.y2{bottom:1119.420000px;}
.y1{bottom:1136.700000px;}
.ha{height:16.764258px;}
.h7{height:27.907031px;}
.h8{height:30.799688px;}
.he{height:36.036000px;}
.h4{height:42.164648px;}
.h1{height:42.894141px;}
.h2{height:45.549492px;}
.h3{height:47.545312px;}
.h12{height:48.224531px;}
.hf{height:48.787031px;}
.hd{height:50.800781px;}
.h9{height:51.679688px;}
.hb{height:51.996094px;}
.h11{height:52.695866px;}
.h10{height:54.878906px;}
.h5{height:59.436914px;}
.h6{height:61.189805px;}
.h14{height:65.884219px;}
.hc{height:71.613281px;}
.h13{height:160.410000px;}
.h0{height:1188.000000px;}
.w2{width:806.400000px;}
.w3{width:806.940000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:10.800000px;}
.x1{left:53.999986px;}
.x10{left:80.999986px;}
.x7{left:100.115986px;}
.x11{left:108.035986px;}
.x4{left:110.195986px;}
.x9{left:122.615986px;}
.xb{left:124.595986px;}
.xc{left:140.615986px;}
.x6{left:214.229986px;}
.x5{left:239.969986px;}
.x8{left:294.554986px;}
.xe{left:378.974986px;}
.xa{left:387.074986px;}
.x2{left:409.214986px;}
.x3{left:459.104986px;}
.xf{left:593.564986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls11{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls17{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls18{letter-spacing:6.031360pt;}
.ls15{letter-spacing:8.320000pt;}
.ls13{letter-spacing:10.880000pt;}
.ls12{letter-spacing:19.840000pt;}
.ls16{letter-spacing:35.471360pt;}
.ls6{letter-spacing:63.674880pt;}
.ls4{letter-spacing:64.154880pt;}
.ls5{letter-spacing:82.560000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.313067pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-3.968000pt;}
._5{margin-left:-2.944000pt;}
._1{margin-left:-1.345493pt;}
._0{width:1.009280pt;}
._4{width:2.662187pt;}
._b{width:3.765760pt;}
._2{width:4.699947pt;}
._e{width:5.706240pt;}
._c{width:6.608213pt;}
._6{width:7.552000pt;}
._7{width:9.088000pt;}
._d{width:10.816000pt;}
._a{width:12.417493pt;}
._9{width:13.696000pt;}
._13{width:15.105493pt;}
._f{width:17.089493pt;}
._10{width:19.072000pt;}
._11{width:20.288000pt;}
._15{width:22.021120pt;}
._14{width:23.543253pt;}
._12{width:28.032000pt;}
._16{width:62.353920pt;}
._3{width:128.673707pt;}
.fs5{font-size:21.120000pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs2{font-size:74.880000pt;}
.ye5{bottom:-39.360000pt;}
.ye4{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.880000pt;}
.ye3{bottom:7.360000pt;}
.y33{bottom:19.560000pt;}
.y5{bottom:22.720000pt;}
.ye2{bottom:38.080000pt;}
.ye1{bottom:53.440000pt;}
.y31{bottom:53.760000pt;}
.yb9{bottom:58.240000pt;}
.y81{bottom:63.680000pt;}
.y5d{bottom:66.560000pt;}
.ye0{bottom:68.840000pt;}
.y30{bottom:74.880000pt;}
.yb8{bottom:75.040000pt;}
.ydf{bottom:84.200000pt;}
.y80{bottom:84.832000pt;}
.y5c{bottom:87.712000pt;}
.yb7{bottom:92.032000pt;}
.y2f{bottom:96.032000pt;}
.yde{bottom:99.400000pt;}
.y7f{bottom:106.112000pt;}
.y96{bottom:108.832000pt;}
.ydd{bottom:114.760000pt;}
.y5b{bottom:116.832000pt;}
.y2e{bottom:117.152000pt;}
.yb6{bottom:125.792000pt;}
.y7e{bottom:127.232000pt;}
.ydc{bottom:130.120000pt;}
.y5a{bottom:138.106667pt;}
.y2d{bottom:138.426667pt;}
.yb5{bottom:142.586667pt;}
.y7d{bottom:156.346667pt;}
.y59{bottom:159.226667pt;}
.yb4{bottom:159.386667pt;}
.y2c{bottom:159.546667pt;}
.yb3{bottom:176.346667pt;}
.y7c{bottom:177.466667pt;}
.y58{bottom:180.346667pt;}
.y2b{bottom:180.666667pt;}
.yb2{bottom:193.146667pt;}
.y7b{bottom:198.746667pt;}
.y57{bottom:201.466667pt;}
.y2a{bottom:201.786667pt;}
.yda{bottom:207.706667pt;}
.yb1{bottom:210.106667pt;}
.y7a{bottom:219.866667pt;}
.y56{bottom:222.746667pt;}
.y29{bottom:223.066667pt;}
.yb0{bottom:226.906667pt;}
.ydb{bottom:235.866667pt;}
.y79{bottom:240.986667pt;}
.yaf{bottom:243.706667pt;}
.y55{bottom:243.866667pt;}
.y28{bottom:244.186667pt;}
.yae{bottom:260.666667pt;}
.y78{bottom:262.106667pt;}
.y54{bottom:264.986667pt;}
.y27{bottom:273.306667pt;}
.yad{bottom:277.466667pt;}
.y77{bottom:283.386667pt;}
.y95{bottom:286.106667pt;}
.y53{bottom:294.106667pt;}
.yac{bottom:294.426667pt;}
.y26{bottom:295.386667pt;}
.y76{bottom:304.546667pt;}
.y94{bottom:307.426667pt;}
.yab{bottom:311.266667pt;}
.y25{bottom:317.026667pt;}
.y52{bottom:323.426667pt;}
.y75{bottom:325.666667pt;}
.yaa{bottom:328.066667pt;}
.y93{bottom:328.546667pt;}
.y24{bottom:338.146667pt;}
.y51{bottom:344.546667pt;}
.ya9{bottom:345.026667pt;}
.y74{bottom:354.786667pt;}
.y92{bottom:357.666667pt;}
.y23{bottom:359.266667pt;}
.ya8{bottom:361.826667pt;}
.y50{bottom:365.666667pt;}
.y73{bottom:376.066667pt;}
.y91{bottom:378.786667pt;}
.y22{bottom:380.386667pt;}
.y4f{bottom:386.786667pt;}
.ya7{bottom:395.586667pt;}
.y90{bottom:400.066667pt;}
.y21{bottom:401.666667pt;}
.y72{bottom:405.186667pt;}
.yd9{bottom:407.746667pt;}
.y4e{bottom:408.066667pt;}
.ya6{bottom:412.386667pt;}
.y8f{bottom:421.186667pt;}
.y20{bottom:422.786667pt;}
.yd8{bottom:423.426667pt;}
.y71{bottom:426.306667pt;}
.y4d{bottom:429.186667pt;}
.ya5{bottom:429.346667pt;}
.yd7{bottom:440.226667pt;}
.y8e{bottom:442.306667pt;}
.y1f{bottom:443.906667pt;}
.ya4{bottom:446.146667pt;}
.y70{bottom:447.426667pt;}
.y4c{bottom:450.306667pt;}
.yd6{bottom:457.186667pt;}
.ya3{bottom:463.106667pt;}
.y8d{bottom:463.426667pt;}
.y1e{bottom:465.026667pt;}
.y6f{bottom:468.546667pt;}
.y4b{bottom:471.426667pt;}
.yd5{bottom:473.986667pt;}
.ya2{bottom:479.906667pt;}
.y8c{bottom:484.546667pt;}
.y1d{bottom:486.306667pt;}
.y6e{bottom:489.826667pt;}
.yd4{bottom:490.786667pt;}
.y4a{bottom:492.546667pt;}
.ya1{bottom:496.706667pt;}
.y8b{bottom:505.826667pt;}
.y1c{bottom:507.426667pt;}
.yd3{bottom:507.746667pt;}
.ya0{bottom:513.666667pt;}
.y6d{bottom:518.973333pt;}
.y49{bottom:521.853333pt;}
.yd2{bottom:524.573333pt;}
.y8a{bottom:526.973333pt;}
.y1b{bottom:528.573333pt;}
.y9f{bottom:530.493333pt;}
.y6c{bottom:540.093333pt;}
.yd1{bottom:541.533333pt;}
.y48{bottom:542.973333pt;}
.y9e{bottom:547.453333pt;}
.y1a{bottom:549.693333pt;}
.y89{bottom:556.093333pt;}
.yd0{bottom:558.333333pt;}
.y6b{bottom:561.213333pt;}
.y47{bottom:564.093333pt;}
.y9d{bottom:564.253333pt;}
.y19{bottom:570.973333pt;}
.ycf{bottom:575.293333pt;}
.y88{bottom:577.213333pt;}
.y9c{bottom:581.213333pt;}
.y46{bottom:585.213333pt;}
.y6a{bottom:590.493333pt;}
.y18{bottom:592.093333pt;}
.y9b{bottom:598.013333pt;}
.y87{bottom:598.493333pt;}
.y45{bottom:606.493333pt;}
.yce{bottom:608.893333pt;}
.y69{bottom:611.613333pt;}
.y17{bottom:613.213333pt;}
.y9a{bottom:614.813333pt;}
.y86{bottom:619.613333pt;}
.ycd{bottom:625.853333pt;}
.y44{bottom:627.613333pt;}
.y16{bottom:630.973333pt;}
.y99{bottom:631.933333pt;}
.y68{bottom:632.733333pt;}
.y85{bottom:640.733333pt;}
.ycc{bottom:642.653333pt;}
.y15{bottom:646.333333pt;}
.y43{bottom:648.733333pt;}
.y98{bottom:650.333333pt;}
.y67{bottom:653.853333pt;}
.ycb{bottom:659.613333pt;}
.y84{bottom:661.853333pt;}
.y14{bottom:663.933333pt;}
.y97{bottom:669.533333pt;}
.y42{bottom:669.853333pt;}
.y66{bottom:675.133333pt;}
.yca{bottom:676.413333pt;}
.y13{bottom:681.533333pt;}
.y83{bottom:683.133333pt;}
.y41{bottom:691.133333pt;}
.yc9{bottom:693.213333pt;}
.y65{bottom:696.253333pt;}
.y12{bottom:699.133333pt;}
.y82{bottom:704.253333pt;}
.yc8{bottom:710.173333pt;}
.y40{bottom:712.253333pt;}
.y11{bottom:713.693333pt;}
.y64{bottom:725.373333pt;}
.yc7{bottom:726.973333pt;}
.y32{bottom:730.333333pt;}
.y3f{bottom:733.373333pt;}
.yc6{bottom:743.973333pt;}
.y63{bottom:746.533333pt;}
.y3e{bottom:754.533333pt;}
.yc5{bottom:760.773333pt;}
.y62{bottom:767.813333pt;}
.y3d{bottom:775.813333pt;}
.yc4{bottom:777.573333pt;}
.y10{bottom:780.133333pt;}
.y61{bottom:788.933333pt;}
.yc3{bottom:794.533333pt;}
.y3c{bottom:796.933333pt;}
.yf{bottom:797.413333pt;}
.y60{bottom:810.053333pt;}
.yc2{bottom:811.333333pt;}
.y3b{bottom:818.053333pt;}
.ye{bottom:819.813333pt;}
.yc1{bottom:828.293333pt;}
.y5f{bottom:831.173333pt;}
.yd{bottom:835.013333pt;}
.y3a{bottom:839.173333pt;}
.yc0{bottom:845.093333pt;}
.yc{bottom:850.373333pt;}
.y5e{bottom:852.453333pt;}
.y39{bottom:860.453333pt;}
.yb{bottom:861.093333pt;}
.ybf{bottom:861.893333pt;}
.ya{bottom:876.453333pt;}
.ybe{bottom:878.853333pt;}
.y38{bottom:881.573333pt;}
.y9{bottom:895.333333pt;}
.ybd{bottom:895.653333pt;}
.y37{bottom:902.693333pt;}
.y8{bottom:911.813333pt;}
.ybc{bottom:912.613333pt;}
.y36{bottom:923.813333pt;}
.ybb{bottom:929.413333pt;}
.y7{bottom:932.133333pt;}
.y35{bottom:944.933333pt;}
.yba{bottom:946.213333pt;}
.y6{bottom:947.493333pt;}
.y4{bottom:963.200000pt;}
.y3{bottom:979.680000pt;}
.y2{bottom:995.040000pt;}
.y1{bottom:1010.400000pt;}
.ha{height:14.901562pt;}
.h7{height:24.806250pt;}
.h8{height:27.377500pt;}
.he{height:32.032000pt;}
.h4{height:37.479688pt;}
.h1{height:38.128125pt;}
.h2{height:40.488438pt;}
.h3{height:42.262500pt;}
.h12{height:42.866250pt;}
.hf{height:43.366250pt;}
.hd{height:45.156250pt;}
.h9{height:45.937500pt;}
.hb{height:46.218750pt;}
.h11{height:46.840769pt;}
.h10{height:48.781250pt;}
.h5{height:52.832812pt;}
.h6{height:54.390938pt;}
.h14{height:58.563750pt;}
.hc{height:63.656250pt;}
.h13{height:142.586667pt;}
.h0{height:1056.000000pt;}
.w2{width:716.800000pt;}
.w3{width:717.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.600000pt;}
.x1{left:47.999988pt;}
.x10{left:71.999988pt;}
.x7{left:88.991988pt;}
.x11{left:96.031988pt;}
.x4{left:97.951988pt;}
.x9{left:108.991988pt;}
.xb{left:110.751988pt;}
.xc{left:124.991988pt;}
.x6{left:190.426655pt;}
.x5{left:213.306655pt;}
.x8{left:261.826655pt;}
.xe{left:336.866655pt;}
.xa{left:344.066655pt;}
.x2{left:363.746655pt;}
.x3{left:408.093321pt;}
.xf{left:527.613321pt;}
}




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