
    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_be1d3660ed3f274e5fe61b62.woff')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_e833cdc32f73982c02c837ec.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_2072163fcea21f6049a9be17.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_c8fefc7a1507a784d0e5899a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_8b55dfa76f405f13ca07b252.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_6d80b7445a0e5fe8c818fa4c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_2cd37b086b39dc3549c2bcfc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_b30e48c655e1bd15707d5cf3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_fdddf36e603a767b28ac75ef.woff')format("woff");}.ff9{font-family:ff9;line-height:1.201172;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_e0caf6f0889b88ffddbaf3c0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_93e2b1fb17e5287959b2422a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.021484;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_e41ee68ea9677beb80cf13d1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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:ffd;src:url('chunks/assets/font_afe6bcbe0d399f22f8011d91.woff')format("woff");}.ffd{font-family:ffd;line-height:0.854004;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.110000px;}
.ls1d{letter-spacing:-0.393600px;}
.ls1a{letter-spacing:-0.381000px;}
.lsf{letter-spacing:-0.303600px;}
.ls1e{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.258600px;}
.ls2{letter-spacing:-0.218400px;}
.ls15{letter-spacing:-0.157800px;}
.lsd{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.127800px;}
.ls28{letter-spacing:-0.119400px;}
.ls26{letter-spacing:-0.116400px;}
.ls27{letter-spacing:-0.044640px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.025920px;}
.lsc{letter-spacing:0.042480px;}
.ls1c{letter-spacing:0.059760px;}
.ls14{letter-spacing:0.095400px;}
.ls1f{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.219600px;}
.ls8{letter-spacing:17.331840px;}
.ls7{letter-spacing:28.803024px;}
.ls19{letter-spacing:34.458960px;}
.ls1b{letter-spacing:34.806432px;}
.ls11{letter-spacing:40.809600px;}
.ls10{letter-spacing:40.860000px;}
.ls12{letter-spacing:49.233600px;}
.ls13{letter-spacing:49.284000px;}
.ls9{letter-spacing:49.377600px;}
.ls4{letter-spacing:49.428000px;}
.ls1{letter-spacing:53.460000px;}
.ls6{letter-spacing:57.549600px;}
.ls5{letter-spacing:57.600000px;}
.ls23{letter-spacing:61.833600px;}
.ls22{letter-spacing:61.884000px;}
.ls25{letter-spacing:68.133600px;}
.ls24{letter-spacing:68.184000px;}
.ls16{letter-spacing:84.960000px;}
.ls18{letter-spacing:87.033600px;}
.ls17{letter-spacing:87.084000px;}
.ls20{letter-spacing:315.033600px;}
.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;}
}
.ws1e{word-spacing:-69.507792px;}
.ws2{word-spacing:-69.379992px;}
.ws5{word-spacing:-51.040800px;}
.ws1{word-spacing:-50.998320px;}
.ws11{word-spacing:-39.053952px;}
.ws10{word-spacing:-39.024720px;}
.wse{word-spacing:-34.084512px;}
.ws3{word-spacing:-34.055280px;}
.ws23{word-spacing:-31.600320px;}
.wsb{word-spacing:-29.261232px;}
.wsa{word-spacing:-29.232000px;}
.ws1a{word-spacing:-23.458752px;}
.ws1d{word-spacing:-23.418720px;}
.ws24{word-spacing:-22.973880px;}
.ws18{word-spacing:-13.446720px;}
.ws19{word-spacing:-12.131280px;}
.ws21{word-spacing:-1.627200px;}
.ws14{word-spacing:-1.323360px;}
.ws22{word-spacing:-1.040400px;}
.ws13{word-spacing:-0.913536px;}
.ws1f{word-spacing:-0.756960px;}
.ws6{word-spacing:-0.640800px;}
.ws12{word-spacing:-0.573048px;}
.ws17{word-spacing:-0.264240px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.250848px;}
.ws16{word-spacing:0.880560px;}
.wsd{word-spacing:0.990000px;}
.ws8{word-spacing:1.014960px;}
.wsc{word-spacing:1.152000px;}
.ws20{word-spacing:1.440000px;}
.ws7{word-spacing:1.580736px;}
.wsf{word-spacing:1.899360px;}
.ws9{word-spacing:2.326080px;}
.ws4{word-spacing:2.653920px;}
.ws1b{word-spacing:72.772320px;}
.ws1c{word-spacing:72.857208px;}
._a{margin-left:-22.607520px;}
._11{margin-left:-16.260096px;}
._f{margin-left:-13.432320px;}
._6{margin-left:-11.578320px;}
._c{margin-left:-9.041520px;}
._0{margin-left:-7.920000px;}
._4{margin-left:-5.939280px;}
._1{margin-left:-4.680000px;}
._5{margin-left:-2.952480px;}
._2{margin-left:-1.800000px;}
._3{width:1.403520px;}
._8{width:2.751360px;}
._9{width:3.828000px;}
._14{width:5.402160px;}
._b{width:20.601120px;}
._10{width:30.960480px;}
._7{width:35.145360px;}
._d{width:36.718128px;}
._e{width:39.370080px;}
._13{width:49.238160px;}
._12{width:68.416176px;}
.fc4{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:7.200000px;}
.fse{font-size:59.760000px;}
.fsf{font-size:59.904000px;}
.fs8{font-size:63.360000px;}
.fsd{font-size:66.240000px;}
.fsa{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fs14{font-size:113.760000px;}
.fs15{font-size:113.904000px;}
.fs12{font-size:131.760000px;}
.fs13{font-size:131.904000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs3{font-size:156.240000px;}
.fs4{font-size:156.384000px;}
.fs5{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fsb{font-size:192.240000px;}
.fsc{font-size:192.384000px;}
.fs2{font-size:264.240000px;}
.fs0{font-size:360.000000px;}
.fs1{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y60{bottom:92.016000px;}
.y78{bottom:92.124000px;}
.y83{bottom:100.440000px;}
.y71{bottom:105.696000px;}
.y17{bottom:108.792000px;}
.y5f{bottom:112.212000px;}
.y3b{bottom:112.572000px;}
.y8f{bottom:117.972000px;}
.y23{bottom:120.492000px;}
.y70{bottom:130.896000px;}
.y6a{bottom:131.112000px;}
.y75{bottom:132.192000px;}
.y5e{bottom:132.372000px;}
.y43{bottom:136.332000px;}
.yc{bottom:145.152000px;}
.y81{bottom:147.270000px;}
.y5d{bottom:152.355000px;}
.y8e{bottom:152.895000px;}
.y16{bottom:155.235000px;}
.y7a{bottom:158.655000px;}
.y5c{bottom:172.515000px;}
.y2d{bottom:173.775000px;}
.y22{bottom:174.495000px;}
.y44{bottom:179.430000px;}
.y3a{bottom:183.135000px;}
.y69{bottom:186.375000px;}
.y8d{bottom:188.895000px;}
.y42{bottom:189.255000px;}
.y5b{bottom:192.675000px;}
.y33{bottom:195.735000px;}
.yb{bottom:200.775000px;}
.y15{bottom:201.675000px;}
.y79{bottom:205.095000px;}
.y6b{bottom:205.890000px;}
.y6f{bottom:207.435000px;}
.y5a{bottom:213.015000px;}
.y21{bottom:216.255000px;}
.y77{bottom:218.955000px;}
.y68{bottom:226.695000px;}
.y8c{bottom:226.875000px;}
.y25{bottom:233.280000px;}
.y2c{bottom:234.075000px;}
.y59{bottom:241.635000px;}
.y41{bottom:242.175000px;}
.ya{bottom:244.335000px;}
.y14{bottom:249.555000px;}
.y7e{bottom:250.635000px;}
.y74{bottom:252.975000px;}
.y39{bottom:253.695000px;}
.y32{bottom:256.035000px;}
.y58{bottom:261.615000px;}
.y8b{bottom:261.795000px;}
.y76{bottom:265.395000px;}
.y6e{bottom:268.095000px;}
.y20{bottom:270.075000px;}
.y57{bottom:281.805000px;}
.y67{bottom:281.985000px;}
.y2b{bottom:292.755000px;}
.y49{bottom:293.325000px;}
.y40{bottom:294.945000px;}
.y7d{bottom:295.995000px;}
.y8a{bottom:297.825000px;}
.y9{bottom:299.985000px;}
.yd{bottom:301.350000px;}
.y56{bottom:302.325000px;}
.y13{bottom:308.445000px;}
.y1f{bottom:310.425000px;}
.y73{bottom:313.485000px;}
.y31{bottom:316.545000px;}
.y38{bottom:324.285000px;}
.y61{bottom:326.130000px;}
.y6d{bottom:328.425000px;}
.y55{bottom:330.765000px;}
.y66{bottom:337.425000px;}
.y89{bottom:338.325000px;}
.y2a{bottom:339.225000px;}
.y48{bottom:339.765000px;}
.y8{bottom:343.545000px;}
.y3f{bottom:349.485000px;}
.y54{bottom:350.925000px;}
.y1e{bottom:352.185000px;}
.y12{bottom:354.705000px;}
.y7c{bottom:356.295000px;}
.y53{bottom:370.905000px;}
.y72{bottom:373.785000px;}
.y29{bottom:385.665000px;}
.y47{bottom:386.205000px;}
.y6c{bottom:388.725000px;}
.y88{bottom:390.885000px;}
.y52{bottom:391.065000px;}
.y65{bottom:392.685000px;}
.y37{bottom:394.845000px;}
.y24{bottom:398.550000px;}
.y7{bottom:400.785000px;}
.y11{bottom:401.145000px;}
.y7b{bottom:401.685000px;}
.y1d{bottom:407.445000px;}
.y51{bottom:411.585000px;}
.y30{bottom:414.105000px;}
.y3e{bottom:416.265000px;}
.y2{bottom:425.700000px;}
.y28{bottom:433.545000px;}
.y46{bottom:434.085000px;}
.y50{bottom:440.025000px;}
.y87{bottom:441.825000px;}
.y64{bottom:447.945000px;}
.y10{bottom:449.205000px;}
.y6{bottom:456.405000px;}
.y4f{bottom:460.185000px;}
.y2f{bottom:460.545000px;}
.y1c{bottom:461.445000px;}
.y36{bottom:465.450000px;}
.y4e{bottom:480.210000px;}
.y86{bottom:481.110000px;}
.y3d{bottom:483.270000px;}
.y27{bottom:494.025000px;}
.y7f{bottom:494.430000px;}
.y45{bottom:494.610000px;}
.y5{bottom:500.010000px;}
.y4d{bottom:500.370000px;}
.y1b{bottom:503.250000px;}
.y63{bottom:503.430000px;}
.y2e{bottom:506.850000px;}
.yf{bottom:509.550000px;}
.y85{bottom:520.170000px;}
.y4c{bottom:520.890000px;}
.y1{bottom:522.900000px;}
.y35{bottom:536.010000px;}
.y4b{bottom:549.690000px;}
.y3c{bottom:550.050000px;}
.y26{bottom:554.370000px;}
.ye{bottom:554.910000px;}
.y4{bottom:557.250000px;}
.y1a{bottom:558.510000px;}
.y62{bottom:558.690000px;}
.y84{bottom:560.850000px;}
.y4a{bottom:578.490000px;}
.y80{bottom:594.330000px;}
.y82{bottom:617.730000px;}
.y3{bottom:670.965000px;}
.y19{bottom:757.830000px;}
.y34{bottom:771.630000px;}
.y18{bottom:776.730000px;}
.h1a{height:7.161328px;}
.ha{height:46.313437px;}
.hb{height:46.746563px;}
.h15{height:51.793945px;}
.h16{height:51.918750px;}
.h14{height:57.410156px;}
.h18{height:61.575820px;}
.h17{height:61.681078px;}
.hf{height:86.255508px;}
.h1e{height:98.595703px;}
.h1f{height:98.720508px;}
.h1b{height:102.060000px;}
.h1c{height:114.196289px;}
.h1d{height:114.321094px;}
.h8{height:124.804688px;}
.h9{height:124.929492px;}
.h4{height:129.653086px;}
.h5{height:135.413086px;}
.h6{height:135.537891px;}
.hc{height:139.637461px;}
.hd{height:139.762266px;}
.h10{height:141.793242px;}
.h11{height:141.914953px;}
.h7{height:145.397461px;}
.he{height:145.522266px;}
.h19{height:148.896000px;}
.h12{height:166.614258px;}
.h13{height:166.739063px;}
.h3{height:228.371484px;}
.h1{height:311.132812px;}
.h2{height:311.257266px;}
.h0{height:810.000000px;}
.w2{width:248.250000px;}
.w3{width:280.470000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3{left:109.799979px;}
.x4{left:136.835979px;}
.x5{left:163.829979px;}
.xa{left:170.669979px;}
.x1{left:197.564979px;}
.x2{left:199.544979px;}
.x11{left:217.829979px;}
.xd{left:222.224979px;}
.x6{left:275.144979px;}
.x7{left:327.854979px;}
.xe{left:544.469979px;}
.x8{left:599.369979px;}
.x9{left:749.669979px;}
.xc{left:765.644979px;}
.x10{left:797.505000px;}
.xb{left:919.109979px;}
.xf{left:1124.970000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.986667pt;}
.ls1d{letter-spacing:-0.349867pt;}
.ls1a{letter-spacing:-0.338667pt;}
.lsf{letter-spacing:-0.269867pt;}
.ls1e{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.229867pt;}
.ls2{letter-spacing:-0.194133pt;}
.ls15{letter-spacing:-0.140267pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.113600pt;}
.ls28{letter-spacing:-0.106133pt;}
.ls26{letter-spacing:-0.103467pt;}
.ls27{letter-spacing:-0.039680pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.023040pt;}
.lsc{letter-spacing:0.037760pt;}
.ls1c{letter-spacing:0.053120pt;}
.ls14{letter-spacing:0.084800pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.195200pt;}
.ls8{letter-spacing:15.406080pt;}
.ls7{letter-spacing:25.602688pt;}
.ls19{letter-spacing:30.630187pt;}
.ls1b{letter-spacing:30.939051pt;}
.ls11{letter-spacing:36.275200pt;}
.ls10{letter-spacing:36.320000pt;}
.ls12{letter-spacing:43.763200pt;}
.ls13{letter-spacing:43.808000pt;}
.ls9{letter-spacing:43.891200pt;}
.ls4{letter-spacing:43.936000pt;}
.ls1{letter-spacing:47.520000pt;}
.ls6{letter-spacing:51.155200pt;}
.ls5{letter-spacing:51.200000pt;}
.ls23{letter-spacing:54.963200pt;}
.ls22{letter-spacing:55.008000pt;}
.ls25{letter-spacing:60.563200pt;}
.ls24{letter-spacing:60.608000pt;}
.ls16{letter-spacing:75.520000pt;}
.ls18{letter-spacing:77.363200pt;}
.ls17{letter-spacing:77.408000pt;}
.ls20{letter-spacing:280.029867pt;}
.ws1e{word-spacing:-61.784704pt;}
.ws2{word-spacing:-61.671104pt;}
.ws5{word-spacing:-45.369600pt;}
.ws1{word-spacing:-45.331840pt;}
.ws11{word-spacing:-34.714624pt;}
.ws10{word-spacing:-34.688640pt;}
.wse{word-spacing:-30.297344pt;}
.ws3{word-spacing:-30.271360pt;}
.ws23{word-spacing:-28.089173pt;}
.wsb{word-spacing:-26.009984pt;}
.wsa{word-spacing:-25.984000pt;}
.ws1a{word-spacing:-20.852224pt;}
.ws1d{word-spacing:-20.816640pt;}
.ws24{word-spacing:-20.421227pt;}
.ws18{word-spacing:-11.952640pt;}
.ws19{word-spacing:-10.783360pt;}
.ws21{word-spacing:-1.446400pt;}
.ws14{word-spacing:-1.176320pt;}
.ws22{word-spacing:-0.924800pt;}
.ws13{word-spacing:-0.812032pt;}
.ws1f{word-spacing:-0.672853pt;}
.ws6{word-spacing:-0.569600pt;}
.ws12{word-spacing:-0.509376pt;}
.ws17{word-spacing:-0.234880pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.222976pt;}
.ws16{word-spacing:0.782720pt;}
.wsd{word-spacing:0.880000pt;}
.ws8{word-spacing:0.902187pt;}
.wsc{word-spacing:1.024000pt;}
.ws20{word-spacing:1.280000pt;}
.ws7{word-spacing:1.405099pt;}
.wsf{word-spacing:1.688320pt;}
.ws9{word-spacing:2.067627pt;}
.ws4{word-spacing:2.359040pt;}
.ws1b{word-spacing:64.686507pt;}
.ws1c{word-spacing:64.761963pt;}
._a{margin-left:-20.095573pt;}
._11{margin-left:-14.453419pt;}
._f{margin-left:-11.939840pt;}
._6{margin-left:-10.291840pt;}
._c{margin-left:-8.036907pt;}
._0{margin-left:-7.040000pt;}
._4{margin-left:-5.279360pt;}
._1{margin-left:-4.160000pt;}
._5{margin-left:-2.624427pt;}
._2{margin-left:-1.600000pt;}
._3{width:1.247573pt;}
._8{width:2.445653pt;}
._9{width:3.402667pt;}
._14{width:4.801920pt;}
._b{width:18.312107pt;}
._10{width:27.520427pt;}
._7{width:31.240320pt;}
._d{width:32.638336pt;}
._e{width:34.995627pt;}
._13{width:43.767253pt;}
._12{width:60.814379pt;}
.fs11{font-size:6.400000pt;}
.fse{font-size:53.120000pt;}
.fsf{font-size:53.248000pt;}
.fs8{font-size:56.320000pt;}
.fsd{font-size:58.880000pt;}
.fsa{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fs14{font-size:101.120000pt;}
.fs15{font-size:101.248000pt;}
.fs12{font-size:117.120000pt;}
.fs13{font-size:117.248000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs3{font-size:138.880000pt;}
.fs4{font-size:139.008000pt;}
.fs5{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fsb{font-size:170.880000pt;}
.fsc{font-size:171.008000pt;}
.fs2{font-size:234.880000pt;}
.fs0{font-size:320.000000pt;}
.fs1{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:81.792000pt;}
.y78{bottom:81.888000pt;}
.y83{bottom:89.280000pt;}
.y71{bottom:93.952000pt;}
.y17{bottom:96.704000pt;}
.y5f{bottom:99.744000pt;}
.y3b{bottom:100.064000pt;}
.y8f{bottom:104.864000pt;}
.y23{bottom:107.104000pt;}
.y70{bottom:116.352000pt;}
.y6a{bottom:116.544000pt;}
.y75{bottom:117.504000pt;}
.y5e{bottom:117.664000pt;}
.y43{bottom:121.184000pt;}
.yc{bottom:129.024000pt;}
.y81{bottom:130.906667pt;}
.y5d{bottom:135.426667pt;}
.y8e{bottom:135.906667pt;}
.y16{bottom:137.986667pt;}
.y7a{bottom:141.026667pt;}
.y5c{bottom:153.346667pt;}
.y2d{bottom:154.466667pt;}
.y22{bottom:155.106667pt;}
.y44{bottom:159.493333pt;}
.y3a{bottom:162.786667pt;}
.y69{bottom:165.666667pt;}
.y8d{bottom:167.906667pt;}
.y42{bottom:168.226667pt;}
.y5b{bottom:171.266667pt;}
.y33{bottom:173.986667pt;}
.yb{bottom:178.466667pt;}
.y15{bottom:179.266667pt;}
.y79{bottom:182.306667pt;}
.y6b{bottom:183.013333pt;}
.y6f{bottom:184.386667pt;}
.y5a{bottom:189.346667pt;}
.y21{bottom:192.226667pt;}
.y77{bottom:194.626667pt;}
.y68{bottom:201.506667pt;}
.y8c{bottom:201.666667pt;}
.y25{bottom:207.360000pt;}
.y2c{bottom:208.066667pt;}
.y59{bottom:214.786667pt;}
.y41{bottom:215.266667pt;}
.ya{bottom:217.186667pt;}
.y14{bottom:221.826667pt;}
.y7e{bottom:222.786667pt;}
.y74{bottom:224.866667pt;}
.y39{bottom:225.506667pt;}
.y32{bottom:227.586667pt;}
.y58{bottom:232.546667pt;}
.y8b{bottom:232.706667pt;}
.y76{bottom:235.906667pt;}
.y6e{bottom:238.306667pt;}
.y20{bottom:240.066667pt;}
.y57{bottom:250.493333pt;}
.y67{bottom:250.653333pt;}
.y2b{bottom:260.226667pt;}
.y49{bottom:260.733333pt;}
.y40{bottom:262.173333pt;}
.y7d{bottom:263.106667pt;}
.y8a{bottom:264.733333pt;}
.y9{bottom:266.653333pt;}
.yd{bottom:267.866667pt;}
.y56{bottom:268.733333pt;}
.y13{bottom:274.173333pt;}
.y1f{bottom:275.933333pt;}
.y73{bottom:278.653333pt;}
.y31{bottom:281.373333pt;}
.y38{bottom:288.253333pt;}
.y61{bottom:289.893333pt;}
.y6d{bottom:291.933333pt;}
.y55{bottom:294.013333pt;}
.y66{bottom:299.933333pt;}
.y89{bottom:300.733333pt;}
.y2a{bottom:301.533333pt;}
.y48{bottom:302.013333pt;}
.y8{bottom:305.373333pt;}
.y3f{bottom:310.653333pt;}
.y54{bottom:311.933333pt;}
.y1e{bottom:313.053333pt;}
.y12{bottom:315.293333pt;}
.y7c{bottom:316.706667pt;}
.y53{bottom:329.693333pt;}
.y72{bottom:332.253333pt;}
.y29{bottom:342.813333pt;}
.y47{bottom:343.293333pt;}
.y6c{bottom:345.533333pt;}
.y88{bottom:347.453333pt;}
.y52{bottom:347.613333pt;}
.y65{bottom:349.053333pt;}
.y37{bottom:350.973333pt;}
.y24{bottom:354.266667pt;}
.y7{bottom:356.253333pt;}
.y11{bottom:356.573333pt;}
.y7b{bottom:357.053333pt;}
.y1d{bottom:362.173333pt;}
.y51{bottom:365.853333pt;}
.y30{bottom:368.093333pt;}
.y3e{bottom:370.013333pt;}
.y2{bottom:378.400000pt;}
.y28{bottom:385.373333pt;}
.y46{bottom:385.853333pt;}
.y50{bottom:391.133333pt;}
.y87{bottom:392.733333pt;}
.y64{bottom:398.173333pt;}
.y10{bottom:399.293333pt;}
.y6{bottom:405.693333pt;}
.y4f{bottom:409.053333pt;}
.y2f{bottom:409.373333pt;}
.y1c{bottom:410.173333pt;}
.y36{bottom:413.733333pt;}
.y4e{bottom:426.853333pt;}
.y86{bottom:427.653333pt;}
.y3d{bottom:429.573333pt;}
.y27{bottom:439.133333pt;}
.y7f{bottom:439.493333pt;}
.y45{bottom:439.653333pt;}
.y5{bottom:444.453333pt;}
.y4d{bottom:444.773333pt;}
.y1b{bottom:447.333333pt;}
.y63{bottom:447.493333pt;}
.y2e{bottom:450.533333pt;}
.yf{bottom:452.933333pt;}
.y85{bottom:462.373333pt;}
.y4c{bottom:463.013333pt;}
.y1{bottom:464.800000pt;}
.y35{bottom:476.453333pt;}
.y4b{bottom:488.613333pt;}
.y3c{bottom:488.933333pt;}
.y26{bottom:492.773333pt;}
.ye{bottom:493.253333pt;}
.y4{bottom:495.333333pt;}
.y1a{bottom:496.453333pt;}
.y62{bottom:496.613333pt;}
.y84{bottom:498.533333pt;}
.y4a{bottom:514.213333pt;}
.y80{bottom:528.293333pt;}
.y82{bottom:549.093333pt;}
.y3{bottom:596.413333pt;}
.y19{bottom:673.626667pt;}
.y34{bottom:685.893333pt;}
.y18{bottom:690.426667pt;}
.h1a{height:6.365625pt;}
.ha{height:41.167500pt;}
.hb{height:41.552500pt;}
.h15{height:46.039063pt;}
.h16{height:46.150000pt;}
.h14{height:51.031250pt;}
.h18{height:54.734062pt;}
.h17{height:54.827625pt;}
.hf{height:76.671562pt;}
.h1e{height:87.640625pt;}
.h1f{height:87.751562pt;}
.h1b{height:90.720000pt;}
.h1c{height:101.507812pt;}
.h1d{height:101.618750pt;}
.h8{height:110.937500pt;}
.h9{height:111.048437pt;}
.h4{height:115.247188pt;}
.h5{height:120.367188pt;}
.h6{height:120.478125pt;}
.hc{height:124.122187pt;}
.hd{height:124.233125pt;}
.h10{height:126.038437pt;}
.h11{height:126.146625pt;}
.h7{height:129.242188pt;}
.he{height:129.353125pt;}
.h19{height:132.352000pt;}
.h12{height:148.101562pt;}
.h13{height:148.212500pt;}
.h3{height:202.996875pt;}
.h1{height:276.562500pt;}
.h2{height:276.673125pt;}
.h0{height:720.000000pt;}
.w2{width:220.666667pt;}
.w3{width:249.306667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3{left:97.599981pt;}
.x4{left:121.631981pt;}
.x5{left:145.626648pt;}
.xa{left:151.706648pt;}
.x1{left:175.613314pt;}
.x2{left:177.373314pt;}
.x11{left:193.626648pt;}
.xd{left:197.533314pt;}
.x6{left:244.573314pt;}
.x7{left:291.426648pt;}
.xe{left:483.973314pt;}
.x8{left:532.773314pt;}
.x9{left:666.373314pt;}
.xc{left:680.573314pt;}
.x10{left:708.893333pt;}
.xb{left:816.986648pt;}
.xf{left:999.973333pt;}
}




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