
    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_2a664936eabf898b39a6c94e.woff')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_9f03ae8a313133d7eb9a22e2.woff')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_a223a7e2a7dac776684e9184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_c264c1366a0a4134d422a81c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db980cb8d21d721a5ed169f3.woff')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_9416b18bb8633c0e092ad570.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ef51ab6d274a5b62eb90c557.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fbaa866925ee8f587f4f45bc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_24bec1f35706e4574b3bb98d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.995117;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_3375240af0d543287614761a.woff')format("woff");}.ffa{font-family:ffa;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;}
.v4{vertical-align:-9.360000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v3{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.696000px;}
.ls2a{letter-spacing:-0.690000px;}
.ls34{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.072000px;}
.ls2e{letter-spacing:-0.045360px;}
.ls11{letter-spacing:-0.037440px;}
.ls28{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.006480px;}
.ls29{letter-spacing:0.008640px;}
.ls1e{letter-spacing:0.010080px;}
.ls15{letter-spacing:0.018000px;}
.ls2c{letter-spacing:0.023040px;}
.ls7{letter-spacing:0.028080px;}
.ls20{letter-spacing:0.076320px;}
.ls23{letter-spacing:0.083520px;}
.ls1f{letter-spacing:0.154080px;}
.lsc{letter-spacing:0.172080px;}
.ls37{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.208080px;}
.ls21{letter-spacing:0.269280px;}
.ls8{letter-spacing:0.274320px;}
.ls12{letter-spacing:0.291600px;}
.ls19{letter-spacing:0.321840px;}
.ls9{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.378600px;}
.ls5{letter-spacing:0.378720px;}
.ls1b{letter-spacing:0.465840px;}
.ls18{letter-spacing:0.484560px;}
.ls14{letter-spacing:0.522720px;}
.ls2{letter-spacing:0.720000px;}
.ls26{letter-spacing:1.260000px;}
.ls13{letter-spacing:1.980000px;}
.ls38{letter-spacing:2.160000px;}
.ls2f{letter-spacing:2.700000px;}
.ls1c{letter-spacing:3.420000px;}
.ls27{letter-spacing:7.740000px;}
.ls32{letter-spacing:9.180000px;}
.ls25{letter-spacing:10.620000px;}
.lsb{letter-spacing:11.340000px;}
.lsa{letter-spacing:14.220000px;}
.ls36{letter-spacing:17.280000px;}
.ls24{letter-spacing:19.260000px;}
.ls35{letter-spacing:33.984000px;}
.ls6{letter-spacing:34.380000px;}
.ls31{letter-spacing:40.140000px;}
.ls0{letter-spacing:43.200000px;}
.ls16{letter-spacing:44.460000px;}
.ls17{letter-spacing:44.640000px;}
.ls1a{letter-spacing:63.180000px;}
.ls4{letter-spacing:66.780000px;}
.ls30{letter-spacing:71.100000px;}
.ls33{letter-spacing:95.580000px;}
.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;}
}
.wsf{word-spacing:-21.438600px;}
.ws7{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.351600px;}
.ws5{word-spacing:-21.088080px;}
.wse{word-spacing:-21.083040px;}
.ws4{word-spacing:-21.060000px;}
.wsb{word-spacing:-21.031920px;}
.ws9{word-spacing:-21.022560px;}
.ws10{word-spacing:-21.014640px;}
.ws8{word-spacing:-20.988000px;}
.wsc{word-spacing:-20.370000px;}
.wsd{word-spacing:-20.364000px;}
.ws6{word-spacing:-20.304000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._1{width:1.239600px;}
._11{width:3.144000px;}
._e{width:4.536000px;}
._4{width:6.336000px;}
._3{width:7.862400px;}
._2{width:9.192000px;}
._c{width:11.180400px;}
._5{width:12.528000px;}
._12{width:13.839600px;}
._1a{width:15.078960px;}
._19{width:16.679520px;}
._17{width:18.662400px;}
._10{width:20.088000px;}
._f{width:21.672000px;}
._d{width:23.184000px;}
._7{width:24.624000px;}
._8{width:25.632000px;}
._13{width:26.640000px;}
._2f{width:28.725840px;}
._2c{width:29.853120px;}
._26{width:30.922320px;}
._20{width:31.926960px;}
._1c{width:33.523920px;}
._1b{width:34.562640px;}
._21{width:37.201440px;}
._2b{width:38.455920px;}
._2e{width:40.182480px;}
._27{width:43.636320px;}
._b{width:45.072000px;}
._23{width:48.610800px;}
._22{width:53.683200px;}
._16{width:59.978880px;}
._24{width:61.747920px;}
._25{width:63.348480px;}
._28{width:64.998000px;}
._18{width:66.128400px;}
._14{width:67.981680px;}
._2a{width:70.508880px;}
._29{width:71.554320px;}
._2d{width:72.903840px;}
._1e{width:75.283200px;}
._1d{width:76.405680px;}
._9{width:82.872000px;}
._a{width:84.156000px;}
._15{width:86.316960px;}
._1f{width:87.385920px;}
._30{width:95.359680px;}
._6{width:139.464000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y7b{bottom:71.136000px;}
.y33{bottom:71.496000px;}
.y9b{bottom:71.676000px;}
.y57{bottom:72.216000px;}
.y7a{bottom:98.856000px;}
.y32{bottom:99.216000px;}
.y9a{bottom:99.396000px;}
.y56{bottom:99.936000px;}
.y79{bottom:126.576000px;}
.y31{bottom:126.936000px;}
.y99{bottom:127.116000px;}
.y55{bottom:127.836000px;}
.y78{bottom:154.470000px;}
.y30{bottom:154.830000px;}
.y98{bottom:155.010000px;}
.y54{bottom:155.550000px;}
.y2f{bottom:179.670000px;}
.y77{bottom:182.190000px;}
.y97{bottom:182.730000px;}
.y53{bottom:183.450000px;}
.y2e{bottom:196.230000px;}
.y76{bottom:209.910000px;}
.y96{bottom:210.450000px;}
.y52{bottom:211.530000px;}
.y2d{bottom:216.930000px;}
.yb9{bottom:230.430000px;}
.y2c{bottom:237.630000px;}
.y75{bottom:237.810000px;}
.y95{bottom:238.350000px;}
.y51{bottom:239.430000px;}
.yb8{bottom:258.150000px;}
.y2b{bottom:258.330000px;}
.y74{bottom:265.530000px;}
.y94{bottom:266.070000px;}
.y50{bottom:267.150000px;}
.y2a{bottom:279.030000px;}
.yb7{bottom:285.915000px;}
.y73{bottom:293.295000px;}
.y93{bottom:293.835000px;}
.y4f{bottom:294.915000px;}
.y29{bottom:299.775000px;}
.yb6{bottom:313.815000px;}
.y28{bottom:320.475000px;}
.y72{bottom:321.015000px;}
.y92{bottom:321.555000px;}
.y4e{bottom:322.635000px;}
.y27{bottom:341.175000px;}
.yb5{bottom:341.535000px;}
.y71{bottom:348.915000px;}
.y91{bottom:349.455000px;}
.y4d{bottom:350.535000px;}
.y26{bottom:361.875000px;}
.yb4{bottom:369.255000px;}
.y70{bottom:376.635000px;}
.y90{bottom:377.175000px;}
.y4c{bottom:378.255000px;}
.y25{bottom:382.575000px;}
.yb3{bottom:397.155000px;}
.y24{bottom:403.275000px;}
.y6f{bottom:404.355000px;}
.y8f{bottom:404.895000px;}
.y4b{bottom:405.975000px;}
.y23{bottom:423.975000px;}
.yb2{bottom:424.875000px;}
.y6e{bottom:432.255000px;}
.y8e{bottom:432.795000px;}
.y4a{bottom:433.875000px;}
.y22{bottom:444.675000px;}
.yb1{bottom:452.595000px;}
.y6d{bottom:459.975000px;}
.y8d{bottom:460.515000px;}
.y49{bottom:461.595000px;}
.y21{bottom:465.375000px;}
.yb0{bottom:480.315000px;}
.y20{bottom:486.075000px;}
.y6c{bottom:487.695000px;}
.y8c{bottom:488.235000px;}
.y48{bottom:489.495000px;}
.yaf{bottom:503.895000px;}
.y1f{bottom:506.775000px;}
.y6b{bottom:515.415000px;}
.y8b{bottom:515.955000px;}
.y47{bottom:517.575000px;}
.yae{bottom:524.595000px;}
.y1e{bottom:527.475000px;}
.y6a{bottom:543.315000px;}
.y8a{bottom:543.855000px;}
.yad{bottom:545.295000px;}
.y46{bottom:545.475000px;}
.y1d{bottom:548.175000px;}
.yac{bottom:566.025000px;}
.y1c{bottom:568.905000px;}
.y69{bottom:571.065000px;}
.y89{bottom:571.605000px;}
.y45{bottom:573.225000px;}
.yab{bottom:586.725000px;}
.y1b{bottom:589.605000px;}
.y68{bottom:598.785000px;}
.y88{bottom:599.325000px;}
.y44{bottom:600.945000px;}
.yaa{bottom:607.425000px;}
.y1a{bottom:610.305000px;}
.y67{bottom:626.505000px;}
.y87{bottom:627.405000px;}
.ya9{bottom:628.125000px;}
.y43{bottom:628.845000px;}
.y19{bottom:631.005000px;}
.ya8{bottom:648.825000px;}
.y18{bottom:651.705000px;}
.y66{bottom:654.585000px;}
.y86{bottom:655.485000px;}
.y42{bottom:656.565000px;}
.ya7{bottom:669.525000px;}
.y17{bottom:672.405000px;}
.y65{bottom:682.845000px;}
.y85{bottom:683.205000px;}
.y41{bottom:684.285000px;}
.ya6{bottom:690.225000px;}
.y16{bottom:693.105000px;}
.y84{bottom:710.925000px;}
.y64{bottom:711.105000px;}
.y40{bottom:712.005000px;}
.y15{bottom:713.805000px;}
.ya5{bottom:731.625000px;}
.y14{bottom:734.505000px;}
.y83{bottom:738.825000px;}
.y63{bottom:739.365000px;}
.y3f{bottom:739.905000px;}
.ya4{bottom:752.325000px;}
.y13{bottom:755.205000px;}
.y82{bottom:766.545000px;}
.y62{bottom:767.085000px;}
.y3e{bottom:767.625000px;}
.ya3{bottom:773.025000px;}
.y12{bottom:775.905000px;}
.ya2{bottom:793.725000px;}
.y81{bottom:794.265000px;}
.y61{bottom:794.805000px;}
.y3d{bottom:795.345000px;}
.y11{bottom:796.605000px;}
.ya1{bottom:814.425000px;}
.y10{bottom:817.305000px;}
.y80{bottom:821.985000px;}
.y60{bottom:822.525000px;}
.y3c{bottom:823.065000px;}
.ya0{bottom:835.125000px;}
.yf{bottom:838.005000px;}
.y7f{bottom:849.930000px;}
.y5f{bottom:850.470000px;}
.y3b{bottom:851.010000px;}
.y9f{bottom:855.870000px;}
.ye{bottom:858.750000px;}
.y9e{bottom:876.570000px;}
.y7e{bottom:877.650000px;}
.y5e{bottom:878.190000px;}
.y3a{bottom:878.730000px;}
.yd{bottom:879.450000px;}
.y9d{bottom:897.270000px;}
.yc{bottom:900.150000px;}
.y7d{bottom:905.550000px;}
.y5d{bottom:905.910000px;}
.y39{bottom:906.450000px;}
.y9c{bottom:916.350000px;}
.y5c{bottom:933.810000px;}
.y38{bottom:934.350000px;}
.yb{bottom:941.550000px;}
.y5b{bottom:961.530000px;}
.y7c{bottom:961.710000px;}
.y37{bottom:962.070000px;}
.ya{bottom:962.250000px;}
.y9{bottom:982.950000px;}
.y5a{bottom:989.250000px;}
.y36{bottom:989.790000px;}
.y8{bottom:1003.650000px;}
.y59{bottom:1016.970000px;}
.y35{bottom:1017.510000px;}
.y7{bottom:1024.890000px;}
.y58{bottom:1045.050000px;}
.y34{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.hc{height:40.985156px;}
.ha{height:52.998047px;}
.h5{height:57.997266px;}
.h8{height:59.343750px;}
.h7{height:70.628906px;}
.he{height:70.664062px;}
.h6{height:72.562500px;}
.hd{height:74.004654px;}
.hb{height:74.244727px;}
.h9{height:74.681367px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.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;}
.xd{left:79.199987px;}
.x1{left:84.959987px;}
.xe{left:106.235987px;}
.x4{left:111.635987px;}
.xb{left:117.035987px;}
.x5{left:128.195987px;}
.xa{left:138.995987px;}
.x8{left:200.549987px;}
.x9{left:201.989987px;}
.x6{left:206.309987px;}
.xc{left:361.514987px;}
.x2{left:409.035000px;}
.x7{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v4{vertical-align:-8.320000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v3{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.618667pt;}
.ls2a{letter-spacing:-0.613333pt;}
.ls34{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls2e{letter-spacing:-0.040320pt;}
.ls11{letter-spacing:-0.033280pt;}
.ls28{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.005760pt;}
.ls29{letter-spacing:0.007680pt;}
.ls1e{letter-spacing:0.008960pt;}
.ls15{letter-spacing:0.016000pt;}
.ls2c{letter-spacing:0.020480pt;}
.ls7{letter-spacing:0.024960pt;}
.ls20{letter-spacing:0.067840pt;}
.ls23{letter-spacing:0.074240pt;}
.ls1f{letter-spacing:0.136960pt;}
.lsc{letter-spacing:0.152960pt;}
.ls37{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.184960pt;}
.ls21{letter-spacing:0.239360pt;}
.ls8{letter-spacing:0.243840pt;}
.ls12{letter-spacing:0.259200pt;}
.ls19{letter-spacing:0.286080pt;}
.ls9{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.336533pt;}
.ls5{letter-spacing:0.336640pt;}
.ls1b{letter-spacing:0.414080pt;}
.ls18{letter-spacing:0.430720pt;}
.ls14{letter-spacing:0.464640pt;}
.ls2{letter-spacing:0.640000pt;}
.ls26{letter-spacing:1.120000pt;}
.ls13{letter-spacing:1.760000pt;}
.ls38{letter-spacing:1.920000pt;}
.ls2f{letter-spacing:2.400000pt;}
.ls1c{letter-spacing:3.040000pt;}
.ls27{letter-spacing:6.880000pt;}
.ls32{letter-spacing:8.160000pt;}
.ls25{letter-spacing:9.440000pt;}
.lsb{letter-spacing:10.080000pt;}
.lsa{letter-spacing:12.640000pt;}
.ls36{letter-spacing:15.360000pt;}
.ls24{letter-spacing:17.120000pt;}
.ls35{letter-spacing:30.208000pt;}
.ls6{letter-spacing:30.560000pt;}
.ls31{letter-spacing:35.680000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls16{letter-spacing:39.520000pt;}
.ls17{letter-spacing:39.680000pt;}
.ls1a{letter-spacing:56.160000pt;}
.ls4{letter-spacing:59.360000pt;}
.ls30{letter-spacing:63.200000pt;}
.ls33{letter-spacing:84.960000pt;}
.wsf{word-spacing:-19.056533pt;}
.ws7{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.979200pt;}
.ws5{word-spacing:-18.744960pt;}
.wse{word-spacing:-18.740480pt;}
.ws4{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.686720pt;}
.ws10{word-spacing:-18.679680pt;}
.ws8{word-spacing:-18.656000pt;}
.wsc{word-spacing:-18.106667pt;}
.wsd{word-spacing:-18.101333pt;}
.ws6{word-spacing:-18.048000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.101867pt;}
._11{width:2.794667pt;}
._e{width:4.032000pt;}
._4{width:5.632000pt;}
._3{width:6.988800pt;}
._2{width:8.170667pt;}
._c{width:9.938133pt;}
._5{width:11.136000pt;}
._12{width:12.301867pt;}
._1a{width:13.403520pt;}
._19{width:14.826240pt;}
._17{width:16.588800pt;}
._10{width:17.856000pt;}
._f{width:19.264000pt;}
._d{width:20.608000pt;}
._7{width:21.888000pt;}
._8{width:22.784000pt;}
._13{width:23.680000pt;}
._2f{width:25.534080pt;}
._2c{width:26.536107pt;}
._26{width:27.486507pt;}
._20{width:28.379520pt;}
._1c{width:29.799040pt;}
._1b{width:30.722347pt;}
._21{width:33.067947pt;}
._2b{width:34.183040pt;}
._2e{width:35.717760pt;}
._27{width:38.787840pt;}
._b{width:40.064000pt;}
._23{width:43.209600pt;}
._22{width:47.718400pt;}
._16{width:53.314560pt;}
._24{width:54.887040pt;}
._25{width:56.309760pt;}
._28{width:57.776000pt;}
._18{width:58.780800pt;}
._14{width:60.428160pt;}
._2a{width:62.674560pt;}
._29{width:63.603840pt;}
._2d{width:64.803413pt;}
._1e{width:66.918400pt;}
._1d{width:67.916160pt;}
._9{width:73.664000pt;}
._a{width:74.805333pt;}
._15{width:76.726187pt;}
._1f{width:77.676373pt;}
._30{width:84.764160pt;}
._6{width:123.968000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y7b{bottom:63.232000pt;}
.y33{bottom:63.552000pt;}
.y9b{bottom:63.712000pt;}
.y57{bottom:64.192000pt;}
.y7a{bottom:87.872000pt;}
.y32{bottom:88.192000pt;}
.y9a{bottom:88.352000pt;}
.y56{bottom:88.832000pt;}
.y79{bottom:112.512000pt;}
.y31{bottom:112.832000pt;}
.y99{bottom:112.992000pt;}
.y55{bottom:113.632000pt;}
.y78{bottom:137.306667pt;}
.y30{bottom:137.626667pt;}
.y98{bottom:137.786667pt;}
.y54{bottom:138.266667pt;}
.y2f{bottom:159.706667pt;}
.y77{bottom:161.946667pt;}
.y97{bottom:162.426667pt;}
.y53{bottom:163.066667pt;}
.y2e{bottom:174.426667pt;}
.y76{bottom:186.586667pt;}
.y96{bottom:187.066667pt;}
.y52{bottom:188.026667pt;}
.y2d{bottom:192.826667pt;}
.yb9{bottom:204.826667pt;}
.y2c{bottom:211.226667pt;}
.y75{bottom:211.386667pt;}
.y95{bottom:211.866667pt;}
.y51{bottom:212.826667pt;}
.yb8{bottom:229.466667pt;}
.y2b{bottom:229.626667pt;}
.y74{bottom:236.026667pt;}
.y94{bottom:236.506667pt;}
.y50{bottom:237.466667pt;}
.y2a{bottom:248.026667pt;}
.yb7{bottom:254.146667pt;}
.y73{bottom:260.706667pt;}
.y93{bottom:261.186667pt;}
.y4f{bottom:262.146667pt;}
.y29{bottom:266.466667pt;}
.yb6{bottom:278.946667pt;}
.y28{bottom:284.866667pt;}
.y72{bottom:285.346667pt;}
.y92{bottom:285.826667pt;}
.y4e{bottom:286.786667pt;}
.y27{bottom:303.266667pt;}
.yb5{bottom:303.586667pt;}
.y71{bottom:310.146667pt;}
.y91{bottom:310.626667pt;}
.y4d{bottom:311.586667pt;}
.y26{bottom:321.666667pt;}
.yb4{bottom:328.226667pt;}
.y70{bottom:334.786667pt;}
.y90{bottom:335.266667pt;}
.y4c{bottom:336.226667pt;}
.y25{bottom:340.066667pt;}
.yb3{bottom:353.026667pt;}
.y24{bottom:358.466667pt;}
.y6f{bottom:359.426667pt;}
.y8f{bottom:359.906667pt;}
.y4b{bottom:360.866667pt;}
.y23{bottom:376.866667pt;}
.yb2{bottom:377.666667pt;}
.y6e{bottom:384.226667pt;}
.y8e{bottom:384.706667pt;}
.y4a{bottom:385.666667pt;}
.y22{bottom:395.266667pt;}
.yb1{bottom:402.306667pt;}
.y6d{bottom:408.866667pt;}
.y8d{bottom:409.346667pt;}
.y49{bottom:410.306667pt;}
.y21{bottom:413.666667pt;}
.yb0{bottom:426.946667pt;}
.y20{bottom:432.066667pt;}
.y6c{bottom:433.506667pt;}
.y8c{bottom:433.986667pt;}
.y48{bottom:435.106667pt;}
.yaf{bottom:447.906667pt;}
.y1f{bottom:450.466667pt;}
.y6b{bottom:458.146667pt;}
.y8b{bottom:458.626667pt;}
.y47{bottom:460.066667pt;}
.yae{bottom:466.306667pt;}
.y1e{bottom:468.866667pt;}
.y6a{bottom:482.946667pt;}
.y8a{bottom:483.426667pt;}
.yad{bottom:484.706667pt;}
.y46{bottom:484.866667pt;}
.y1d{bottom:487.266667pt;}
.yac{bottom:503.133333pt;}
.y1c{bottom:505.693333pt;}
.y69{bottom:507.613333pt;}
.y89{bottom:508.093333pt;}
.y45{bottom:509.533333pt;}
.yab{bottom:521.533333pt;}
.y1b{bottom:524.093333pt;}
.y68{bottom:532.253333pt;}
.y88{bottom:532.733333pt;}
.y44{bottom:534.173333pt;}
.yaa{bottom:539.933333pt;}
.y1a{bottom:542.493333pt;}
.y67{bottom:556.893333pt;}
.y87{bottom:557.693333pt;}
.ya9{bottom:558.333333pt;}
.y43{bottom:558.973333pt;}
.y19{bottom:560.893333pt;}
.ya8{bottom:576.733333pt;}
.y18{bottom:579.293333pt;}
.y66{bottom:581.853333pt;}
.y86{bottom:582.653333pt;}
.y42{bottom:583.613333pt;}
.ya7{bottom:595.133333pt;}
.y17{bottom:597.693333pt;}
.y65{bottom:606.973333pt;}
.y85{bottom:607.293333pt;}
.y41{bottom:608.253333pt;}
.ya6{bottom:613.533333pt;}
.y16{bottom:616.093333pt;}
.y84{bottom:631.933333pt;}
.y64{bottom:632.093333pt;}
.y40{bottom:632.893333pt;}
.y15{bottom:634.493333pt;}
.ya5{bottom:650.333333pt;}
.y14{bottom:652.893333pt;}
.y83{bottom:656.733333pt;}
.y63{bottom:657.213333pt;}
.y3f{bottom:657.693333pt;}
.ya4{bottom:668.733333pt;}
.y13{bottom:671.293333pt;}
.y82{bottom:681.373333pt;}
.y62{bottom:681.853333pt;}
.y3e{bottom:682.333333pt;}
.ya3{bottom:687.133333pt;}
.y12{bottom:689.693333pt;}
.ya2{bottom:705.533333pt;}
.y81{bottom:706.013333pt;}
.y61{bottom:706.493333pt;}
.y3d{bottom:706.973333pt;}
.y11{bottom:708.093333pt;}
.ya1{bottom:723.933333pt;}
.y10{bottom:726.493333pt;}
.y80{bottom:730.653333pt;}
.y60{bottom:731.133333pt;}
.y3c{bottom:731.613333pt;}
.ya0{bottom:742.333333pt;}
.yf{bottom:744.893333pt;}
.y7f{bottom:755.493333pt;}
.y5f{bottom:755.973333pt;}
.y3b{bottom:756.453333pt;}
.y9f{bottom:760.773333pt;}
.ye{bottom:763.333333pt;}
.y9e{bottom:779.173333pt;}
.y7e{bottom:780.133333pt;}
.y5e{bottom:780.613333pt;}
.y3a{bottom:781.093333pt;}
.yd{bottom:781.733333pt;}
.y9d{bottom:797.573333pt;}
.yc{bottom:800.133333pt;}
.y7d{bottom:804.933333pt;}
.y5d{bottom:805.253333pt;}
.y39{bottom:805.733333pt;}
.y9c{bottom:814.533333pt;}
.y5c{bottom:830.053333pt;}
.y38{bottom:830.533333pt;}
.yb{bottom:836.933333pt;}
.y5b{bottom:854.693333pt;}
.y7c{bottom:854.853333pt;}
.y37{bottom:855.173333pt;}
.ya{bottom:855.333333pt;}
.y9{bottom:873.733333pt;}
.y5a{bottom:879.333333pt;}
.y36{bottom:879.813333pt;}
.y8{bottom:892.133333pt;}
.y59{bottom:903.973333pt;}
.y35{bottom:904.453333pt;}
.y7{bottom:911.013333pt;}
.y58{bottom:928.933333pt;}
.y34{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.hc{height:36.431250pt;}
.ha{height:47.109375pt;}
.h5{height:51.553125pt;}
.h8{height:52.750000pt;}
.h7{height:62.781250pt;}
.he{height:62.812500pt;}
.h6{height:64.500000pt;}
.hd{height:65.781915pt;}
.hb{height:65.995312pt;}
.h9{height:66.383437pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.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;}
.xd{left:70.399988pt;}
.x1{left:75.519988pt;}
.xe{left:94.431988pt;}
.x4{left:99.231988pt;}
.xb{left:104.031988pt;}
.x5{left:113.951988pt;}
.xa{left:123.551988pt;}
.x8{left:178.266655pt;}
.x9{left:179.546655pt;}
.x6{left:183.386655pt;}
.xc{left:321.346655pt;}
.x2{left:363.586667pt;}
.x7{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; }
  