
    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_b2dfdb2e97d86646ce6f5131.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_53a5ecf74cb3766e33c928c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_dc964b607004ee437775aa31.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d12ac2a5b068a818e615125c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_472a110458dda44575c94c6a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_2df50c38e267cd887fc51cb7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_4d112c92639048b5031d1ecc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a66dcb6c2faac60c98a5fdf4.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.230469;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_5363cea489df6e1ae6c0c563.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v8{vertical-align:-8.640000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v1{vertical-align:23.760000px;}
.v9{vertical-align:34.560000px;}
.v4{vertical-align:36.000000px;}
.v3{vertical-align:42.480000px;}
.v6{vertical-align:46.080000px;}
.va{vertical-align:71.280000px;}
.ls6{letter-spacing:-0.942000px;}
.ls5{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.321000px;}
.lsb{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.058320px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.045360px;}
.ls1b{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.087120px;}
.ls1f{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.273600px;}
.lsc{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385200px;}
.ls1c{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.761040px;}
.ls20{letter-spacing:0.936000px;}
.ls11{letter-spacing:1.468080px;}
.ls17{letter-spacing:1.792800px;}
.ls14{letter-spacing:4.593600px;}
.ls13{letter-spacing:5.392800px;}
.ls15{letter-spacing:8.395920px;}
.ls1a{letter-spacing:11.520000px;}
.lse{letter-spacing:20.520000px;}
.lsf{letter-spacing:109.656000px;}
.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;}
}
.ws13{word-spacing:-72.000000px;}
.ws17{word-spacing:-18.936000px;}
.ws15{word-spacing:-18.576000px;}
.ws14{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.856000px;}
.wsd{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws1{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.447440px;}
.ws5{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.105360px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.wsf{word-spacing:-11.246400px;}
.wse{word-spacing:-10.925400px;}
.ws9{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
.ws12{word-spacing:99.786960px;}
.ws10{word-spacing:105.276960px;}
._22{margin-left:-17.280000px;}
._1b{margin-left:-5.111520px;}
._7{margin-left:-3.525840px;}
._12{margin-left:-2.452320px;}
._1{margin-left:-1.240560px;}
._0{width:1.379520px;}
._9{width:2.684160px;}
._a{width:3.691920px;}
._18{width:4.784160px;}
._13{width:6.048000px;}
._6{width:7.316400px;}
._17{width:8.522880px;}
._f{width:9.864000px;}
._8{width:11.234880px;}
._d{width:12.640320px;}
._e{width:14.459760px;}
._11{width:15.792480px;}
._14{width:16.982640px;}
._10{width:19.296000px;}
._1c{width:20.376000px;}
._1d{width:21.504960px;}
._23{width:23.112000px;}
._c{width:25.472160px;}
._30{width:29.376000px;}
._2f{width:30.384000px;}
._19{width:31.824000px;}
._1a{width:32.976000px;}
._29{width:34.200000px;}
._2a{width:44.064000px;}
._2b{width:45.072000px;}
._2c{width:62.424000px;}
._2d{width:69.768000px;}
._1e{width:94.082400px;}
._28{width:97.560000px;}
._21{width:99.516960px;}
._24{width:114.192000px;}
._25{width:115.344000px;}
._26{width:116.448000px;}
._27{width:129.384000px;}
._15{width:171.403680px;}
._1f{width:194.400000px;}
._20{width:195.960000px;}
._16{width:324.300000px;}
._5{width:888.498960px;}
._b{width:973.776000px;}
._2{width:993.234240px;}
._2e{width:997.776000px;}
._3{width:1347.594240px;}
._4{width:2704.056000px;}
.fc2{color:transparent;}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs6{font-size:53.884673px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.996000px;}
.y4{bottom:52.920000px;}
.y39{bottom:66.780000px;}
.y8e{bottom:111.456000px;}
.y6b{bottom:125.496000px;}
.y37{bottom:127.656000px;}
.yc4{bottom:130.176000px;}
.y8d{bottom:132.156000px;}
.y6a{bottom:146.196000px;}
.y36{bottom:148.356000px;}
.yd2{bottom:149.256000px;}
.yc3{bottom:150.870000px;}
.y8c{bottom:152.850000px;}
.y69{bottom:166.890000px;}
.y35{bottom:169.050000px;}
.yd1{bottom:169.950000px;}
.yc2{bottom:171.570000px;}
.y8b{bottom:173.550000px;}
.y68{bottom:187.590000px;}
.y34{bottom:189.750000px;}
.yd0{bottom:190.650000px;}
.yc1{bottom:192.270000px;}
.y8a{bottom:194.250000px;}
.y97{bottom:194.430000px;}
.y67{bottom:208.290000px;}
.yc0{bottom:209.010000px;}
.y33{bottom:210.450000px;}
.ycf{bottom:211.350000px;}
.y89{bottom:214.950000px;}
.y96{bottom:215.130000px;}
.yb4{bottom:217.470000px;}
.y66{bottom:228.990000px;}
.y32{bottom:231.150000px;}
.yce{bottom:232.050000px;}
.y88{bottom:235.650000px;}
.y95{bottom:235.830000px;}
.yb3{bottom:238.170000px;}
.y65{bottom:249.690000px;}
.y31{bottom:251.850000px;}
.ycd{bottom:252.750000px;}
.y87{bottom:256.350000px;}
.y94{bottom:256.530000px;}
.yb2{bottom:258.870000px;}
.y64{bottom:270.390000px;}
.y30{bottom:272.550000px;}
.ycc{bottom:273.450000px;}
.y93{bottom:277.230000px;}
.y86{bottom:278.490000px;}
.yb1{bottom:279.570000px;}
.y63{bottom:291.090000px;}
.y2f{bottom:293.250000px;}
.ycb{bottom:294.150000px;}
.y92{bottom:297.930000px;}
.yb0{bottom:300.270000px;}
.y85{bottom:303.150000px;}
.y84{bottom:305.310000px;}
.y62{bottom:311.790000px;}
.y2e{bottom:313.950000px;}
.yca{bottom:314.850000px;}
.y91{bottom:318.630000px;}
.yaf{bottom:320.970000px;}
.y82{bottom:321.150000px;}
.y83{bottom:332.130000px;}
.y61{bottom:332.490000px;}
.y2d{bottom:334.650000px;}
.yc9{bottom:335.550000px;}
.y90{bottom:339.375000px;}
.yae{bottom:341.715000px;}
.y81{bottom:350.355000px;}
.y60{bottom:353.235000px;}
.y2c{bottom:355.395000px;}
.y8f{bottom:356.115000px;}
.yc8{bottom:356.295000px;}
.yad{bottom:362.415000px;}
.y80{bottom:371.055000px;}
.y5f{bottom:373.935000px;}
.y2b{bottom:376.095000px;}
.yc7{bottom:376.995000px;}
.yac{bottom:383.115000px;}
.y7f{bottom:391.755000px;}
.y5e{bottom:394.635000px;}
.y2a{bottom:396.795000px;}
.yc6{bottom:397.695000px;}
.yab{bottom:403.815000px;}
.y7e{bottom:412.275000px;}
.yc5{bottom:414.435000px;}
.y5d{bottom:415.335000px;}
.y29{bottom:417.495000px;}
.yaa{bottom:424.515000px;}
.y7d{bottom:432.975000px;}
.y5c{bottom:436.035000px;}
.y28{bottom:438.195000px;}
.ya9{bottom:445.215000px;}
.y7c{bottom:453.675000px;}
.y5b{bottom:456.735000px;}
.y27{bottom:458.895000px;}
.ya8{bottom:465.915000px;}
.y7b{bottom:474.375000px;}
.y5a{bottom:477.435000px;}
.y26{bottom:479.595000px;}
.ya7{bottom:486.615000px;}
.y7a{bottom:495.075000px;}
.y59{bottom:498.135000px;}
.y25{bottom:500.295000px;}
.ya6{bottom:507.315000px;}
.y79{bottom:515.775000px;}
.y58{bottom:518.835000px;}
.y24{bottom:520.995000px;}
.ya5{bottom:528.015000px;}
.y78{bottom:536.475000px;}
.y57{bottom:539.535000px;}
.y23{bottom:541.695000px;}
.ya4{bottom:548.715000px;}
.y77{bottom:557.175000px;}
.y56{bottom:560.235000px;}
.y22{bottom:562.395000px;}
.ya3{bottom:569.415000px;}
.y76{bottom:577.875000px;}
.y55{bottom:580.935000px;}
.y21{bottom:583.095000px;}
.ybf{bottom:586.875000px;}
.ya2{bottom:590.115000px;}
.y75{bottom:594.975000px;}
.y54{bottom:601.635000px;}
.y20{bottom:603.825000px;}
.y74{bottom:604.005000px;}
.ybe{bottom:607.605000px;}
.ya1{bottom:610.845000px;}
.y53{bottom:622.365000px;}
.y1f{bottom:624.345000px;}
.ybd{bottom:628.305000px;}
.y73{bottom:630.105000px;}
.ya0{bottom:631.545000px;}
.y52{bottom:643.065000px;}
.y1e{bottom:645.045000px;}
.ybc{bottom:649.005000px;}
.y72{bottom:650.805000px;}
.y9f{bottom:652.245000px;}
.y51{bottom:663.765000px;}
.y1d{bottom:665.025000px;}
.ybb{bottom:669.705000px;}
.y71{bottom:671.505000px;}
.y9e{bottom:672.945000px;}
.y1c{bottom:682.305000px;}
.y50{bottom:684.465000px;}
.yba{bottom:690.405000px;}
.y70{bottom:692.205000px;}
.y9d{bottom:693.645000px;}
.y1b{bottom:699.585000px;}
.y4f{bottom:705.165000px;}
.yb9{bottom:711.105000px;}
.y6f{bottom:712.725000px;}
.y9c{bottom:714.345000px;}
.y1a{bottom:716.865000px;}
.y4e{bottom:725.865000px;}
.yb8{bottom:731.805000px;}
.y6e{bottom:733.425000px;}
.y19{bottom:734.145000px;}
.y9b{bottom:735.045000px;}
.y4d{bottom:746.565000px;}
.yb7{bottom:752.505000px;}
.y6d{bottom:752.865000px;}
.y9a{bottom:755.745000px;}
.y18{bottom:756.645000px;}
.y6c{bottom:761.865000px;}
.y4c{bottom:767.265000px;}
.y17{bottom:768.525000px;}
.yb6{bottom:773.205000px;}
.y99{bottom:776.445000px;}
.y16{bottom:786.525000px;}
.y4b{bottom:787.965000px;}
.yb5{bottom:790.125000px;}
.y98{bottom:793.185000px;}
.y15{bottom:807.225000px;}
.y4a{bottom:808.665000px;}
.y14{bottom:827.205000px;}
.y49{bottom:829.365000px;}
.y13{bottom:846.465000px;}
.y48{bottom:850.065000px;}
.y47{bottom:870.810000px;}
.y12{bottom:874.230000px;}
.y46{bottom:891.510000px;}
.y11{bottom:901.770000px;}
.y45{bottom:912.210000px;}
.y10{bottom:927.330000px;}
.y44{bottom:932.910000px;}
.yf{bottom:944.610000px;}
.y43{bottom:953.610000px;}
.ye{bottom:961.890000px;}
.y42{bottom:974.310000px;}
.yd{bottom:978.990000px;}
.y41{bottom:995.010000px;}
.yc{bottom:996.270000px;}
.yb{bottom:1015.710000px;}
.ya{bottom:1032.270000px;}
.y40{bottom:1036.410000px;}
.y9{bottom:1046.850000px;}
.y3f{bottom:1057.110000px;}
.y8{bottom:1066.650000px;}
.y3e{bottom:1077.810000px;}
.y7{bottom:1087.350000px;}
.y3d{bottom:1098.510000px;}
.y6{bottom:1109.310000px;}
.y3c{bottom:1119.210000px;}
.y5{bottom:1137.780000px;}
.y3b{bottom:1139.940000px;}
.y3{bottom:1160.280000px;}
.y2{bottom:1177.380000px;}
.y1{bottom:1194.660000px;}
.y38{bottom:1195.740000px;}
.hd{height:18.216000px;}
.hb{height:29.892656px;}
.h7{height:40.985156px;}
.h12{height:49.175026px;}
.h2{height:49.838906px;}
.h6{height:50.772656px;}
.h8{height:52.290000px;}
.h3{height:59.439023px;}
.h4{height:60.046875px;}
.hc{height:61.171875px;}
.h9{height:63.000000px;}
.h17{height:65.707031px;}
.ha{height:65.970000px;}
.h14{height:73.210430px;}
.h13{height:73.930430px;}
.h5{height:83.790000px;}
.h15{height:95.085703px;}
.he{height:115.690430px;}
.h11{height:119.290430px;}
.h16{height:133.171875px;}
.hf{height:139.113281px;}
.h10{height:139.233281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:15.300000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.235987px;}
.x16{left:138.275987px;}
.xa{left:185.069987px;}
.xb{left:188.489987px;}
.x4{left:194.789987px;}
.x8{left:223.949987px;}
.x10{left:231.329987px;}
.x11{left:275.609987px;}
.x6{left:277.049987px;}
.x12{left:282.134987px;}
.xc{left:285.734987px;}
.xd{left:292.214987px;}
.x1{left:311.294987px;}
.xe{left:329.114987px;}
.xf{left:335.594987px;}
.x13{left:344.774987px;}
.x14{left:351.254987px;}
.x2{left:374.114987px;}
.x3{left:394.634987px;}
.x9{left:430.815000px;}
.x7{left:446.474987px;}
.x15{left:787.289987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v8{vertical-align:-7.680000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v1{vertical-align:21.120000pt;}
.v9{vertical-align:30.720000pt;}
.v4{vertical-align:32.000000pt;}
.v3{vertical-align:37.760000pt;}
.v6{vertical-align:40.960000pt;}
.va{vertical-align:63.360000pt;}
.ls6{letter-spacing:-0.837333pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.285333pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.040320pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.077440pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.243200pt;}
.lsc{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.342400pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.676480pt;}
.ls20{letter-spacing:0.832000pt;}
.ls11{letter-spacing:1.304960pt;}
.ls17{letter-spacing:1.593600pt;}
.ls14{letter-spacing:4.083200pt;}
.ls13{letter-spacing:4.793600pt;}
.ls15{letter-spacing:7.463040pt;}
.ls1a{letter-spacing:10.240000pt;}
.lse{letter-spacing:18.240000pt;}
.lsf{letter-spacing:97.472000pt;}
.ws13{word-spacing:-64.000000pt;}
.ws17{word-spacing:-16.832000pt;}
.ws15{word-spacing:-16.512000pt;}
.ws14{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.872000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws1{word-spacing:-12.960000pt;}
.wsc{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.760320pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.wsf{word-spacing:-9.996800pt;}
.wse{word-spacing:-9.711467pt;}
.ws9{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
.ws12{word-spacing:88.699520pt;}
.ws10{word-spacing:93.579520pt;}
._22{margin-left:-15.360000pt;}
._1b{margin-left:-4.543573pt;}
._7{margin-left:-3.134080pt;}
._12{margin-left:-2.179840pt;}
._1{margin-left:-1.102720pt;}
._0{width:1.226240pt;}
._9{width:2.385920pt;}
._a{width:3.281707pt;}
._18{width:4.252587pt;}
._13{width:5.376000pt;}
._6{width:6.503467pt;}
._17{width:7.575893pt;}
._f{width:8.768000pt;}
._8{width:9.986560pt;}
._d{width:11.235840pt;}
._e{width:12.853120pt;}
._11{width:14.037760pt;}
._14{width:15.095680pt;}
._10{width:17.152000pt;}
._1c{width:18.112000pt;}
._1d{width:19.115520pt;}
._23{width:20.544000pt;}
._c{width:22.641920pt;}
._30{width:26.112000pt;}
._2f{width:27.008000pt;}
._19{width:28.288000pt;}
._1a{width:29.312000pt;}
._29{width:30.400000pt;}
._2a{width:39.168000pt;}
._2b{width:40.064000pt;}
._2c{width:55.488000pt;}
._2d{width:62.016000pt;}
._1e{width:83.628800pt;}
._28{width:86.720000pt;}
._21{width:88.459520pt;}
._24{width:101.504000pt;}
._25{width:102.528000pt;}
._26{width:103.509333pt;}
._27{width:115.008000pt;}
._15{width:152.358827pt;}
._1f{width:172.800000pt;}
._20{width:174.186667pt;}
._16{width:288.266667pt;}
._5{width:789.776853pt;}
._b{width:865.578667pt;}
._2{width:882.874880pt;}
._2e{width:886.912000pt;}
._3{width:1197.861547pt;}
._4{width:2403.605333pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs6{font-size:47.897487pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:3.552000pt;}
.y4{bottom:47.040000pt;}
.y39{bottom:59.360000pt;}
.y8e{bottom:99.072000pt;}
.y6b{bottom:111.552000pt;}
.y37{bottom:113.472000pt;}
.yc4{bottom:115.712000pt;}
.y8d{bottom:117.472000pt;}
.y6a{bottom:129.952000pt;}
.y36{bottom:131.872000pt;}
.yd2{bottom:132.672000pt;}
.yc3{bottom:134.106667pt;}
.y8c{bottom:135.866667pt;}
.y69{bottom:148.346667pt;}
.y35{bottom:150.266667pt;}
.yd1{bottom:151.066667pt;}
.yc2{bottom:152.506667pt;}
.y8b{bottom:154.266667pt;}
.y68{bottom:166.746667pt;}
.y34{bottom:168.666667pt;}
.yd0{bottom:169.466667pt;}
.yc1{bottom:170.906667pt;}
.y8a{bottom:172.666667pt;}
.y97{bottom:172.826667pt;}
.y67{bottom:185.146667pt;}
.yc0{bottom:185.786667pt;}
.y33{bottom:187.066667pt;}
.ycf{bottom:187.866667pt;}
.y89{bottom:191.066667pt;}
.y96{bottom:191.226667pt;}
.yb4{bottom:193.306667pt;}
.y66{bottom:203.546667pt;}
.y32{bottom:205.466667pt;}
.yce{bottom:206.266667pt;}
.y88{bottom:209.466667pt;}
.y95{bottom:209.626667pt;}
.yb3{bottom:211.706667pt;}
.y65{bottom:221.946667pt;}
.y31{bottom:223.866667pt;}
.ycd{bottom:224.666667pt;}
.y87{bottom:227.866667pt;}
.y94{bottom:228.026667pt;}
.yb2{bottom:230.106667pt;}
.y64{bottom:240.346667pt;}
.y30{bottom:242.266667pt;}
.ycc{bottom:243.066667pt;}
.y93{bottom:246.426667pt;}
.y86{bottom:247.546667pt;}
.yb1{bottom:248.506667pt;}
.y63{bottom:258.746667pt;}
.y2f{bottom:260.666667pt;}
.ycb{bottom:261.466667pt;}
.y92{bottom:264.826667pt;}
.yb0{bottom:266.906667pt;}
.y85{bottom:269.466667pt;}
.y84{bottom:271.386667pt;}
.y62{bottom:277.146667pt;}
.y2e{bottom:279.066667pt;}
.yca{bottom:279.866667pt;}
.y91{bottom:283.226667pt;}
.yaf{bottom:285.306667pt;}
.y82{bottom:285.466667pt;}
.y83{bottom:295.226667pt;}
.y61{bottom:295.546667pt;}
.y2d{bottom:297.466667pt;}
.yc9{bottom:298.266667pt;}
.y90{bottom:301.666667pt;}
.yae{bottom:303.746667pt;}
.y81{bottom:311.426667pt;}
.y60{bottom:313.986667pt;}
.y2c{bottom:315.906667pt;}
.y8f{bottom:316.546667pt;}
.yc8{bottom:316.706667pt;}
.yad{bottom:322.146667pt;}
.y80{bottom:329.826667pt;}
.y5f{bottom:332.386667pt;}
.y2b{bottom:334.306667pt;}
.yc7{bottom:335.106667pt;}
.yac{bottom:340.546667pt;}
.y7f{bottom:348.226667pt;}
.y5e{bottom:350.786667pt;}
.y2a{bottom:352.706667pt;}
.yc6{bottom:353.506667pt;}
.yab{bottom:358.946667pt;}
.y7e{bottom:366.466667pt;}
.yc5{bottom:368.386667pt;}
.y5d{bottom:369.186667pt;}
.y29{bottom:371.106667pt;}
.yaa{bottom:377.346667pt;}
.y7d{bottom:384.866667pt;}
.y5c{bottom:387.586667pt;}
.y28{bottom:389.506667pt;}
.ya9{bottom:395.746667pt;}
.y7c{bottom:403.266667pt;}
.y5b{bottom:405.986667pt;}
.y27{bottom:407.906667pt;}
.ya8{bottom:414.146667pt;}
.y7b{bottom:421.666667pt;}
.y5a{bottom:424.386667pt;}
.y26{bottom:426.306667pt;}
.ya7{bottom:432.546667pt;}
.y7a{bottom:440.066667pt;}
.y59{bottom:442.786667pt;}
.y25{bottom:444.706667pt;}
.ya6{bottom:450.946667pt;}
.y79{bottom:458.466667pt;}
.y58{bottom:461.186667pt;}
.y24{bottom:463.106667pt;}
.ya5{bottom:469.346667pt;}
.y78{bottom:476.866667pt;}
.y57{bottom:479.586667pt;}
.y23{bottom:481.506667pt;}
.ya4{bottom:487.746667pt;}
.y77{bottom:495.266667pt;}
.y56{bottom:497.986667pt;}
.y22{bottom:499.906667pt;}
.ya3{bottom:506.146667pt;}
.y76{bottom:513.666667pt;}
.y55{bottom:516.386667pt;}
.y21{bottom:518.306667pt;}
.ybf{bottom:521.666667pt;}
.ya2{bottom:524.546667pt;}
.y75{bottom:528.866667pt;}
.y54{bottom:534.786667pt;}
.y20{bottom:536.733333pt;}
.y74{bottom:536.893333pt;}
.ybe{bottom:540.093333pt;}
.ya1{bottom:542.973333pt;}
.y53{bottom:553.213333pt;}
.y1f{bottom:554.973333pt;}
.ybd{bottom:558.493333pt;}
.y73{bottom:560.093333pt;}
.ya0{bottom:561.373333pt;}
.y52{bottom:571.613333pt;}
.y1e{bottom:573.373333pt;}
.ybc{bottom:576.893333pt;}
.y72{bottom:578.493333pt;}
.y9f{bottom:579.773333pt;}
.y51{bottom:590.013333pt;}
.y1d{bottom:591.133333pt;}
.ybb{bottom:595.293333pt;}
.y71{bottom:596.893333pt;}
.y9e{bottom:598.173333pt;}
.y1c{bottom:606.493333pt;}
.y50{bottom:608.413333pt;}
.yba{bottom:613.693333pt;}
.y70{bottom:615.293333pt;}
.y9d{bottom:616.573333pt;}
.y1b{bottom:621.853333pt;}
.y4f{bottom:626.813333pt;}
.yb9{bottom:632.093333pt;}
.y6f{bottom:633.533333pt;}
.y9c{bottom:634.973333pt;}
.y1a{bottom:637.213333pt;}
.y4e{bottom:645.213333pt;}
.yb8{bottom:650.493333pt;}
.y6e{bottom:651.933333pt;}
.y19{bottom:652.573333pt;}
.y9b{bottom:653.373333pt;}
.y4d{bottom:663.613333pt;}
.yb7{bottom:668.893333pt;}
.y6d{bottom:669.213333pt;}
.y9a{bottom:671.773333pt;}
.y18{bottom:672.573333pt;}
.y6c{bottom:677.213333pt;}
.y4c{bottom:682.013333pt;}
.y17{bottom:683.133333pt;}
.yb6{bottom:687.293333pt;}
.y99{bottom:690.173333pt;}
.y16{bottom:699.133333pt;}
.y4b{bottom:700.413333pt;}
.yb5{bottom:702.333333pt;}
.y98{bottom:705.053333pt;}
.y15{bottom:717.533333pt;}
.y4a{bottom:718.813333pt;}
.y14{bottom:735.293333pt;}
.y49{bottom:737.213333pt;}
.y13{bottom:752.413333pt;}
.y48{bottom:755.613333pt;}
.y47{bottom:774.053333pt;}
.y12{bottom:777.093333pt;}
.y46{bottom:792.453333pt;}
.y11{bottom:801.573333pt;}
.y45{bottom:810.853333pt;}
.y10{bottom:824.293333pt;}
.y44{bottom:829.253333pt;}
.yf{bottom:839.653333pt;}
.y43{bottom:847.653333pt;}
.ye{bottom:855.013333pt;}
.y42{bottom:866.053333pt;}
.yd{bottom:870.213333pt;}
.y41{bottom:884.453333pt;}
.yc{bottom:885.573333pt;}
.yb{bottom:902.853333pt;}
.ya{bottom:917.573333pt;}
.y40{bottom:921.253333pt;}
.y9{bottom:930.533333pt;}
.y3f{bottom:939.653333pt;}
.y8{bottom:948.133333pt;}
.y3e{bottom:958.053333pt;}
.y7{bottom:966.533333pt;}
.y3d{bottom:976.453333pt;}
.y6{bottom:986.053333pt;}
.y3c{bottom:994.853333pt;}
.y5{bottom:1011.360000pt;}
.y3b{bottom:1013.280000pt;}
.y3{bottom:1031.360000pt;}
.y2{bottom:1046.560000pt;}
.y1{bottom:1061.920000pt;}
.y38{bottom:1062.880000pt;}
.hd{height:16.192000pt;}
.hb{height:26.571250pt;}
.h7{height:36.431250pt;}
.h12{height:43.711134pt;}
.h2{height:44.301250pt;}
.h6{height:45.131250pt;}
.h8{height:46.480000pt;}
.h3{height:52.834688pt;}
.h4{height:53.375000pt;}
.hc{height:54.375000pt;}
.h9{height:56.000000pt;}
.h17{height:58.406250pt;}
.ha{height:58.640000pt;}
.h14{height:65.075937pt;}
.h13{height:65.715938pt;}
.h5{height:74.480000pt;}
.h15{height:84.520625pt;}
.he{height:102.835938pt;}
.h11{height:106.035938pt;}
.h16{height:118.375000pt;}
.hf{height:123.656250pt;}
.h10{height:123.762917pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:13.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.431988pt;}
.x16{left:122.911988pt;}
.xa{left:164.506655pt;}
.xb{left:167.546655pt;}
.x4{left:173.146655pt;}
.x8{left:199.066655pt;}
.x10{left:205.626655pt;}
.x11{left:244.986655pt;}
.x6{left:246.266655pt;}
.x12{left:250.786655pt;}
.xc{left:253.986655pt;}
.xd{left:259.746655pt;}
.x1{left:276.706655pt;}
.xe{left:292.546655pt;}
.xf{left:298.306655pt;}
.x13{left:306.466655pt;}
.x14{left:312.226655pt;}
.x2{left:332.546655pt;}
.x3{left:350.786655pt;}
.x9{left:382.946667pt;}
.x7{left:396.866655pt;}
.x15{left:699.813322pt;}
}




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