
    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_3c5f1e66703dfa7eadac83ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_36ac95332ff254297c0ccdf3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e0e947448f38487cb7cbfc04.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084473;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3d3e8c35112f2dc04a07e648.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4241440721de21d280ddc986.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01d923c2fa0d84886a593d5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084473;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_bf943e674d9de792cd159073.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.150879;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_7a785486749d0285ef376187.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.150879;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_e869a5b5c1ec0cd1ad034a0e.woff2')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);}
.vb{vertical-align:-97.200000px;}
.v7{vertical-align:-89.280000px;}
.v5{vertical-align:-14.400000px;}
.v1{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.400000px;}
.va{vertical-align:21.600000px;}
.v4{vertical-align:26.640000px;}
.v8{vertical-align:48.240000px;}
.vc{vertical-align:54.720000px;}
.v2{vertical-align:68.400000px;}
.vd{vertical-align:74.880000px;}
.v3{vertical-align:95.040000px;}
.v9{vertical-align:102.960000px;}
.ls16{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000001px;}
.ls6{letter-spacing:0.028080px;}
.ls27{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.648000px;}
.ls18{letter-spacing:1.152000px;}
.ls14{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.704000px;}
.ls9{letter-spacing:2.681280px;}
.lse{letter-spacing:2.801520px;}
.lsd{letter-spacing:2.808000px;}
.ls24{letter-spacing:3.456000px;}
.ls1d{letter-spacing:3.521520px;}
.lsc{letter-spacing:3.600000px;}
.ls25{letter-spacing:3.641520px;}
.ls8{letter-spacing:3.720000px;}
.ls11{letter-spacing:9.072000px;}
.ls23{letter-spacing:13.392000px;}
.ls19{letter-spacing:15.552000px;}
.ls22{letter-spacing:16.776000px;}
.ls1a{letter-spacing:17.496000px;}
.ls1f{letter-spacing:19.361520px;}
.ls12{letter-spacing:19.872000px;}
.ls1c{letter-spacing:22.752000px;}
.ls1e{letter-spacing:23.472000px;}
.ls1{letter-spacing:34.560000px;}
.ls10{letter-spacing:34.776000px;}
.ls26{letter-spacing:95.184000px;}
.ls13{letter-spacing:256.672800px;}
.ls7{letter-spacing:340.912800px;}
.ls20{letter-spacing:505.192800px;}
.lsf{letter-spacing:915.276000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.360000px;}
.ws9{word-spacing:-72.144000px;}
.ws8{word-spacing:-72.000000px;}
.wsf{word-spacing:-71.856000px;}
.wsb{word-spacing:-51.120000px;}
.wsd{word-spacing:-48.240000px;}
.wse{word-spacing:-46.944000px;}
.wsa{word-spacing:-22.104000px;}
.ws11{word-spacing:-18.532800px;}
.ws3{word-spacing:-16.056000px;}
.ws10{word-spacing:-15.984000px;}
.ws1{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.696000px;}
.ws4{word-spacing:-15.552000px;}
.ws6{word-spacing:-14.904000px;}
.wsc{word-spacing:-10.584000px;}
.ws2{word-spacing:0.000000px;}
._23{margin-left:-6.652800px;}
._26{margin-left:-5.184000px;}
._18{margin-left:-3.608640px;}
._14{margin-left:-2.543040px;}
._0{margin-left:-1.457280px;}
._1{width:1.260000px;}
._9{width:2.711997px;}
._a{width:3.984003px;}
._b{width:5.688000px;}
._15{width:7.092000px;}
._1d{width:8.352000px;}
._2c{width:9.792000px;}
._12{width:10.944000px;}
._13{width:12.240000px;}
._11{width:13.296014px;}
._10{width:14.303997px;}
._1a{width:17.076000px;}
._1b{width:18.648000px;}
._1e{width:19.913280px;}
._5{width:21.096000px;}
._16{width:22.464000px;}
._17{width:23.940000px;}
._22{width:25.056000px;}
._1c{width:26.265120px;}
._19{width:27.936000px;}
._2d{width:28.944000px;}
._1f{width:30.312000px;}
._20{width:31.445280px;}
._21{width:32.725440px;}
._8{width:34.121280px;}
._4{width:35.208000px;}
._f{width:36.768000px;}
._c{width:37.872000px;}
._2a{width:38.897280px;}
._6{width:40.032000px;}
._7{width:41.364000px;}
._28{width:46.656000px;}
._27{width:47.664000px;}
._29{width:49.548000px;}
._3{width:71.489286px;}
._2{width:73.199997px;}
._e{width:74.446560px;}
._d{width:75.600000px;}
._2b{width:577.524000px;}
._24{width:733.116000px;}
._25{width:895.692000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(5,57,118);}
.fs5{font-size:41.760000px;}
.fs4{font-size:51.120000px;}
.fs0{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:21.240000px;}
.y5{bottom:54.396000px;}
.y4{bottom:75.636000px;}
.y32{bottom:98.316000px;}
.ybc{bottom:102.276000px;}
.y89{bottom:107.316000px;}
.y5e{bottom:122.436000px;}
.y31{bottom:122.616000px;}
.ybb{bottom:126.576000px;}
.y88{bottom:127.656000px;}
.ya2{bottom:130.536000px;}
.y87{bottom:139.716000px;}
.y5d{bottom:146.556000px;}
.y30{bottom:146.916000px;}
.yba{bottom:150.870000px;}
.ya1{bottom:154.830000px;}
.y5c{bottom:170.850000px;}
.y2f{bottom:171.030000px;}
.yb9{bottom:175.170000px;}
.y86{bottom:175.530000px;}
.ya0{bottom:179.130000px;}
.y5b{bottom:193.710000px;}
.y2e{bottom:195.330000px;}
.yb8{bottom:199.470000px;}
.y85{bottom:199.830000px;}
.y9f{bottom:203.430000px;}
.y59{bottom:210.810000px;}
.y2d{bottom:219.630000px;}
.y9e{bottom:223.590000px;}
.y84{bottom:224.130000px;}
.y5a{bottom:231.330000px;}
.y9d{bottom:235.650000px;}
.y2c{bottom:243.930000px;}
.y83{bottom:244.470000px;}
.yb7{bottom:247.890000px;}
.y58{bottom:248.790000px;}
.y82{bottom:256.530000px;}
.y2b{bottom:268.230000px;}
.y9c{bottom:271.650000px;}
.y57{bottom:273.090000px;}
.yb6{bottom:273.450000px;}
.y2a{bottom:292.395000px;}
.y81{bottom:292.575000px;}
.y9b{bottom:295.995000px;}
.y56{bottom:297.435000px;}
.yb5{bottom:300.495000px;}
.y29{bottom:316.695000px;}
.y80{bottom:316.875000px;}
.y9a{bottom:320.295000px;}
.y55{bottom:321.735000px;}
.yb4{bottom:324.795000px;}
.y7f{bottom:337.755000px;}
.y28{bottom:340.995000px;}
.y99{bottom:344.595000px;}
.y54{bottom:346.035000px;}
.yb3{bottom:349.095000px;}
.y7e{bottom:363.495000px;}
.y27{bottom:365.295000px;}
.y98{bottom:368.715000px;}
.y53{bottom:370.155000px;}
.yb2{bottom:373.395000px;}
.y7d{bottom:385.815000px;}
.y26{bottom:389.595000px;}
.y97{bottom:393.015000px;}
.y52{bottom:394.455000px;}
.yb1{bottom:397.695000px;}
.y7c{bottom:410.115000px;}
.y25{bottom:413.895000px;}
.y96{bottom:417.315000px;}
.yb0{bottom:421.995000px;}
.y7b{bottom:434.415000px;}
.y24{bottom:438.015000px;}
.y95{bottom:441.615000px;}
.y51{bottom:442.515000px;}
.yaf{bottom:446.115000px;}
.y7a{bottom:457.095000px;}
.y78{bottom:462.135000px;}
.y23{bottom:462.315000px;}
.y94{bottom:465.915000px;}
.y50{bottom:466.635000px;}
.yae{bottom:470.415000px;}
.y77{bottom:474.195000px;}
.y22{bottom:486.615000px;}
.y93{bottom:490.035000px;}
.y4f{bottom:490.935000px;}
.y79{bottom:494.715000px;}
.y21{bottom:510.915000px;}
.y76{bottom:512.355000px;}
.y92{bottom:514.335000px;}
.y4e{bottom:515.235000px;}
.yad{bottom:519.015000px;}
.y20{bottom:535.215000px;}
.y75{bottom:536.655000px;}
.y91{bottom:538.635000px;}
.y4d{bottom:539.535000px;}
.yac{bottom:543.315000px;}
.y74{bottom:556.815000px;}
.y1f{bottom:559.515000px;}
.y90{bottom:562.935000px;}
.y4c{bottom:563.835000px;}
.yab{bottom:567.465000px;}
.y73{bottom:568.905000px;}
.y8f{bottom:583.305000px;}
.y1e{bottom:583.665000px;}
.y4b{bottom:588.165000px;}
.yaa{bottom:591.765000px;}
.y8e{bottom:595.365000px;}
.y72{bottom:600.945000px;}
.y1d{bottom:607.965000px;}
.y4a{bottom:612.285000px;}
.ya9{bottom:616.065000px;}
.y71{bottom:625.245000px;}
.y8d{bottom:631.365000px;}
.y1c{bottom:632.265000px;}
.y49{bottom:636.585000px;}
.ya8{bottom:640.365000px;}
.y70{bottom:649.545000px;}
.y8c{bottom:655.665000px;}
.y1b{bottom:656.565000px;}
.y48{bottom:660.885000px;}
.ya7{bottom:664.665000px;}
.y6f{bottom:669.705000px;}
.y8b{bottom:679.965000px;}
.y1a{bottom:680.865000px;}
.y6e{bottom:681.765000px;}
.y47{bottom:685.185000px;}
.ya6{bottom:688.965000px;}
.y8a{bottom:700.125000px;}
.y19{bottom:704.985000px;}
.y46{bottom:709.485000px;}
.ya5{bottom:713.085000px;}
.y6d{bottom:713.805000px;}
.y18{bottom:729.285000px;}
.y45{bottom:732.165000px;}
.ya4{bottom:737.385000px;}
.y6c{bottom:738.105000px;}
.y43{bottom:749.265000px;}
.y17{bottom:753.585000px;}
.ya3{bottom:761.685000px;}
.y6b{bottom:762.225000px;}
.y44{bottom:769.785000px;}
.y16{bottom:777.885000px;}
.y42{bottom:785.985000px;}
.y6a{bottom:786.525000px;}
.y15{bottom:802.185000px;}
.y41{bottom:810.285000px;}
.y69{bottom:810.825000px;}
.y14{bottom:826.485000px;}
.y40{bottom:834.585000px;}
.y68{bottom:835.125000px;}
.y13{bottom:850.650000px;}
.y3f{bottom:858.750000px;}
.y67{bottom:859.470000px;}
.y12{bottom:874.950000px;}
.y3e{bottom:883.050000px;}
.y66{bottom:883.770000px;}
.y11{bottom:899.250000px;}
.y3d{bottom:907.350000px;}
.y65{bottom:907.890000px;}
.y10{bottom:923.550000px;}
.y3c{bottom:931.650000px;}
.y64{bottom:932.190000px;}
.yf{bottom:947.850000px;}
.y3b{bottom:955.950000px;}
.y63{bottom:956.490000px;}
.ye{bottom:972.150000px;}
.y3a{bottom:980.070000px;}
.y62{bottom:980.790000px;}
.yd{bottom:996.270000px;}
.y39{bottom:1004.370000px;}
.y61{bottom:1005.090000px;}
.yc{bottom:1020.570000px;}
.y38{bottom:1028.670000px;}
.y60{bottom:1029.210000px;}
.yb{bottom:1044.870000px;}
.y37{bottom:1052.970000px;}
.y5f{bottom:1053.510000px;}
.ya{bottom:1069.170000px;}
.y36{bottom:1077.270000px;}
.y9{bottom:1093.470000px;}
.y35{bottom:1101.570000px;}
.y8{bottom:1118.850000px;}
.y34{bottom:1125.690000px;}
.y7{bottom:1147.140000px;}
.y33{bottom:1150.020000px;}
.y3{bottom:1174.320000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1223.820000px;}
.h6{height:36.720000px;}
.h2{height:48.138750px;}
.h3{height:60.960938px;}
.h4{height:62.367188px;}
.h7{height:65.010937px;}
.h5{height:65.884219px;}
.ha{height:69.441328px;}
.h8{height:71.324297px;}
.h12{height:74.004654px;}
.h9{height:97.804688px;}
.he{height:146.044688px;}
.h10{height:146.164688px;}
.hd{height:146.764688px;}
.h11{height:152.500688px;}
.hf{height:152.524687px;}
.hb{height:166.204688px;}
.hc{height:200.764688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:24.660000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:84.959987px;}
.x7{left:99.035987px;}
.xd{left:127.475987px;}
.x6{left:156.089987px;}
.x27{left:260.309987px;}
.x1c{left:327.134987px;}
.xe{left:330.014987px;}
.x1e{left:337.754987px;}
.x15{left:339.914987px;}
.x12{left:375.194987px;}
.x18{left:379.514987px;}
.x21{left:383.114987px;}
.x10{left:391.574987px;}
.x22{left:395.174987px;}
.x26{left:396.254987px;}
.xf{left:398.234987px;}
.x24{left:400.214987px;}
.x17{left:401.474987px;}
.x20{left:405.794987px;}
.x16{left:408.134987px;}
.x19{left:409.394987px;}
.x1b{left:410.654987px;}
.x13{left:417.494987px;}
.x11{left:421.274987px;}
.x1f{left:432.614987px;}
.x5{left:434.235000px;}
.x23{left:443.054987px;}
.xc{left:447.014987px;}
.x14{left:449.894987px;}
.x1a{left:459.794987px;}
.x1d{left:472.934987px;}
.xb{left:521.024987px;}
.x8{left:531.824987px;}
.x2{left:539.744987px;}
.x25{left:573.764987px;}
.x9{left:579.164987px;}
.x3{left:584.384987px;}
.xa{left:631.544987px;}
.x1{left:681.044987px;}
@media print{
.vb{vertical-align:-86.400000pt;}
.v7{vertical-align:-79.360000pt;}
.v5{vertical-align:-12.800000pt;}
.v1{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.800000pt;}
.va{vertical-align:19.200000pt;}
.v4{vertical-align:23.680000pt;}
.v8{vertical-align:42.880000pt;}
.vc{vertical-align:48.640000pt;}
.v2{vertical-align:60.800000pt;}
.vd{vertical-align:66.560000pt;}
.v3{vertical-align:84.480000pt;}
.v9{vertical-align:91.520000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.ls6{letter-spacing:0.024960pt;}
.ls27{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls18{letter-spacing:1.024000pt;}
.ls14{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.514667pt;}
.ls9{letter-spacing:2.383360pt;}
.lse{letter-spacing:2.490240pt;}
.lsd{letter-spacing:2.496000pt;}
.ls24{letter-spacing:3.072000pt;}
.ls1d{letter-spacing:3.130240pt;}
.lsc{letter-spacing:3.200000pt;}
.ls25{letter-spacing:3.236907pt;}
.ls8{letter-spacing:3.306667pt;}
.ls11{letter-spacing:8.064000pt;}
.ls23{letter-spacing:11.904000pt;}
.ls19{letter-spacing:13.824000pt;}
.ls22{letter-spacing:14.912000pt;}
.ls1a{letter-spacing:15.552000pt;}
.ls1f{letter-spacing:17.210240pt;}
.ls12{letter-spacing:17.664000pt;}
.ls1c{letter-spacing:20.224000pt;}
.ls1e{letter-spacing:20.864000pt;}
.ls1{letter-spacing:30.720000pt;}
.ls10{letter-spacing:30.912000pt;}
.ls26{letter-spacing:84.608000pt;}
.ls13{letter-spacing:228.153600pt;}
.ls7{letter-spacing:303.033600pt;}
.ls20{letter-spacing:449.060267pt;}
.lsf{letter-spacing:813.578667pt;}
.ws7{word-spacing:-64.320000pt;}
.ws9{word-spacing:-64.128000pt;}
.ws8{word-spacing:-64.000000pt;}
.wsf{word-spacing:-63.872000pt;}
.wsb{word-spacing:-45.440000pt;}
.wsd{word-spacing:-42.880000pt;}
.wse{word-spacing:-41.728000pt;}
.wsa{word-spacing:-19.648000pt;}
.ws11{word-spacing:-16.473600pt;}
.ws3{word-spacing:-14.272000pt;}
.ws10{word-spacing:-14.208000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws5{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.248000pt;}
.wsc{word-spacing:-9.408000pt;}
.ws2{word-spacing:0.000000pt;}
._23{margin-left:-5.913600pt;}
._26{margin-left:-4.608000pt;}
._18{margin-left:-3.207680pt;}
._14{margin-left:-2.260480pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.120000pt;}
._9{width:2.410664pt;}
._a{width:3.541336pt;}
._b{width:5.056000pt;}
._15{width:6.304000pt;}
._1d{width:7.424000pt;}
._2c{width:8.704000pt;}
._12{width:9.728000pt;}
._13{width:10.880000pt;}
._11{width:11.818679pt;}
._10{width:12.714664pt;}
._1a{width:15.178667pt;}
._1b{width:16.576000pt;}
._1e{width:17.700693pt;}
._5{width:18.752000pt;}
._16{width:19.968000pt;}
._17{width:21.280000pt;}
._22{width:22.272000pt;}
._1c{width:23.346773pt;}
._19{width:24.832000pt;}
._2d{width:25.728000pt;}
._1f{width:26.944000pt;}
._20{width:27.951360pt;}
._21{width:29.089280pt;}
._8{width:30.330027pt;}
._4{width:31.296000pt;}
._f{width:32.682667pt;}
._c{width:33.664000pt;}
._2a{width:34.575360pt;}
._6{width:35.584000pt;}
._7{width:36.768000pt;}
._28{width:41.472000pt;}
._27{width:42.368000pt;}
._29{width:44.042667pt;}
._3{width:63.546032pt;}
._2{width:65.066664pt;}
._e{width:66.174720pt;}
._d{width:67.200000pt;}
._2b{width:513.354667pt;}
._24{width:651.658667pt;}
._25{width:796.170667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:45.440000pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:18.880000pt;}
.y5{bottom:48.352000pt;}
.y4{bottom:67.232000pt;}
.y32{bottom:87.392000pt;}
.ybc{bottom:90.912000pt;}
.y89{bottom:95.392000pt;}
.y5e{bottom:108.832000pt;}
.y31{bottom:108.992000pt;}
.ybb{bottom:112.512000pt;}
.y88{bottom:113.472000pt;}
.ya2{bottom:116.032000pt;}
.y87{bottom:124.192000pt;}
.y5d{bottom:130.272000pt;}
.y30{bottom:130.592000pt;}
.yba{bottom:134.106667pt;}
.ya1{bottom:137.626667pt;}
.y5c{bottom:151.866667pt;}
.y2f{bottom:152.026667pt;}
.yb9{bottom:155.706667pt;}
.y86{bottom:156.026667pt;}
.ya0{bottom:159.226667pt;}
.y5b{bottom:172.186667pt;}
.y2e{bottom:173.626667pt;}
.yb8{bottom:177.306667pt;}
.y85{bottom:177.626667pt;}
.y9f{bottom:180.826667pt;}
.y59{bottom:187.386667pt;}
.y2d{bottom:195.226667pt;}
.y9e{bottom:198.746667pt;}
.y84{bottom:199.226667pt;}
.y5a{bottom:205.626667pt;}
.y9d{bottom:209.466667pt;}
.y2c{bottom:216.826667pt;}
.y83{bottom:217.306667pt;}
.yb7{bottom:220.346667pt;}
.y58{bottom:221.146667pt;}
.y82{bottom:228.026667pt;}
.y2b{bottom:238.426667pt;}
.y9c{bottom:241.466667pt;}
.y57{bottom:242.746667pt;}
.yb6{bottom:243.066667pt;}
.y2a{bottom:259.906667pt;}
.y81{bottom:260.066667pt;}
.y9b{bottom:263.106667pt;}
.y56{bottom:264.386667pt;}
.yb5{bottom:267.106667pt;}
.y29{bottom:281.506667pt;}
.y80{bottom:281.666667pt;}
.y9a{bottom:284.706667pt;}
.y55{bottom:285.986667pt;}
.yb4{bottom:288.706667pt;}
.y7f{bottom:300.226667pt;}
.y28{bottom:303.106667pt;}
.y99{bottom:306.306667pt;}
.y54{bottom:307.586667pt;}
.yb3{bottom:310.306667pt;}
.y7e{bottom:323.106667pt;}
.y27{bottom:324.706667pt;}
.y98{bottom:327.746667pt;}
.y53{bottom:329.026667pt;}
.yb2{bottom:331.906667pt;}
.y7d{bottom:342.946667pt;}
.y26{bottom:346.306667pt;}
.y97{bottom:349.346667pt;}
.y52{bottom:350.626667pt;}
.yb1{bottom:353.506667pt;}
.y7c{bottom:364.546667pt;}
.y25{bottom:367.906667pt;}
.y96{bottom:370.946667pt;}
.yb0{bottom:375.106667pt;}
.y7b{bottom:386.146667pt;}
.y24{bottom:389.346667pt;}
.y95{bottom:392.546667pt;}
.y51{bottom:393.346667pt;}
.yaf{bottom:396.546667pt;}
.y7a{bottom:406.306667pt;}
.y78{bottom:410.786667pt;}
.y23{bottom:410.946667pt;}
.y94{bottom:414.146667pt;}
.y50{bottom:414.786667pt;}
.yae{bottom:418.146667pt;}
.y77{bottom:421.506667pt;}
.y22{bottom:432.546667pt;}
.y93{bottom:435.586667pt;}
.y4f{bottom:436.386667pt;}
.y79{bottom:439.746667pt;}
.y21{bottom:454.146667pt;}
.y76{bottom:455.426667pt;}
.y92{bottom:457.186667pt;}
.y4e{bottom:457.986667pt;}
.yad{bottom:461.346667pt;}
.y20{bottom:475.746667pt;}
.y75{bottom:477.026667pt;}
.y91{bottom:478.786667pt;}
.y4d{bottom:479.586667pt;}
.yac{bottom:482.946667pt;}
.y74{bottom:494.946667pt;}
.y1f{bottom:497.346667pt;}
.y90{bottom:500.386667pt;}
.y4c{bottom:501.186667pt;}
.yab{bottom:504.413333pt;}
.y73{bottom:505.693333pt;}
.y8f{bottom:518.493333pt;}
.y1e{bottom:518.813333pt;}
.y4b{bottom:522.813333pt;}
.yaa{bottom:526.013333pt;}
.y8e{bottom:529.213333pt;}
.y72{bottom:534.173333pt;}
.y1d{bottom:540.413333pt;}
.y4a{bottom:544.253333pt;}
.ya9{bottom:547.613333pt;}
.y71{bottom:555.773333pt;}
.y8d{bottom:561.213333pt;}
.y1c{bottom:562.013333pt;}
.y49{bottom:565.853333pt;}
.ya8{bottom:569.213333pt;}
.y70{bottom:577.373333pt;}
.y8c{bottom:582.813333pt;}
.y1b{bottom:583.613333pt;}
.y48{bottom:587.453333pt;}
.ya7{bottom:590.813333pt;}
.y6f{bottom:595.293333pt;}
.y8b{bottom:604.413333pt;}
.y1a{bottom:605.213333pt;}
.y6e{bottom:606.013333pt;}
.y47{bottom:609.053333pt;}
.ya6{bottom:612.413333pt;}
.y8a{bottom:622.333333pt;}
.y19{bottom:626.653333pt;}
.y46{bottom:630.653333pt;}
.ya5{bottom:633.853333pt;}
.y6d{bottom:634.493333pt;}
.y18{bottom:648.253333pt;}
.y45{bottom:650.813333pt;}
.ya4{bottom:655.453333pt;}
.y6c{bottom:656.093333pt;}
.y43{bottom:666.013333pt;}
.y17{bottom:669.853333pt;}
.ya3{bottom:677.053333pt;}
.y6b{bottom:677.533333pt;}
.y44{bottom:684.253333pt;}
.y16{bottom:691.453333pt;}
.y42{bottom:698.653333pt;}
.y6a{bottom:699.133333pt;}
.y15{bottom:713.053333pt;}
.y41{bottom:720.253333pt;}
.y69{bottom:720.733333pt;}
.y14{bottom:734.653333pt;}
.y40{bottom:741.853333pt;}
.y68{bottom:742.333333pt;}
.y13{bottom:756.133333pt;}
.y3f{bottom:763.333333pt;}
.y67{bottom:763.973333pt;}
.y12{bottom:777.733333pt;}
.y3e{bottom:784.933333pt;}
.y66{bottom:785.573333pt;}
.y11{bottom:799.333333pt;}
.y3d{bottom:806.533333pt;}
.y65{bottom:807.013333pt;}
.y10{bottom:820.933333pt;}
.y3c{bottom:828.133333pt;}
.y64{bottom:828.613333pt;}
.yf{bottom:842.533333pt;}
.y3b{bottom:849.733333pt;}
.y63{bottom:850.213333pt;}
.ye{bottom:864.133333pt;}
.y3a{bottom:871.173333pt;}
.y62{bottom:871.813333pt;}
.yd{bottom:885.573333pt;}
.y39{bottom:892.773333pt;}
.y61{bottom:893.413333pt;}
.yc{bottom:907.173333pt;}
.y38{bottom:914.373333pt;}
.y60{bottom:914.853333pt;}
.yb{bottom:928.773333pt;}
.y37{bottom:935.973333pt;}
.y5f{bottom:936.453333pt;}
.ya{bottom:950.373333pt;}
.y36{bottom:957.573333pt;}
.y9{bottom:971.973333pt;}
.y35{bottom:979.173333pt;}
.y8{bottom:994.533333pt;}
.y34{bottom:1000.613333pt;}
.y7{bottom:1019.680000pt;}
.y33{bottom:1022.240000pt;}
.y3{bottom:1043.840000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1087.840000pt;}
.h6{height:32.640000pt;}
.h2{height:42.790000pt;}
.h3{height:54.187500pt;}
.h4{height:55.437500pt;}
.h7{height:57.787500pt;}
.h5{height:58.563750pt;}
.ha{height:61.725625pt;}
.h8{height:63.399375pt;}
.h12{height:65.781915pt;}
.h9{height:86.937500pt;}
.he{height:129.817500pt;}
.h10{height:129.924167pt;}
.hd{height:130.457500pt;}
.h11{height:135.556167pt;}
.hf{height:135.577500pt;}
.hb{height:147.737500pt;}
.hc{height:178.457500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.519988pt;}
.x7{left:88.031988pt;}
.xd{left:113.311988pt;}
.x6{left:138.746655pt;}
.x27{left:231.386655pt;}
.x1c{left:290.786655pt;}
.xe{left:293.346655pt;}
.x1e{left:300.226655pt;}
.x15{left:302.146655pt;}
.x12{left:333.506655pt;}
.x18{left:337.346655pt;}
.x21{left:340.546655pt;}
.x10{left:348.066655pt;}
.x22{left:351.266655pt;}
.x26{left:352.226655pt;}
.xf{left:353.986655pt;}
.x24{left:355.746655pt;}
.x17{left:356.866655pt;}
.x20{left:360.706655pt;}
.x16{left:362.786655pt;}
.x19{left:363.906655pt;}
.x1b{left:365.026655pt;}
.x13{left:371.106655pt;}
.x11{left:374.466655pt;}
.x1f{left:384.546655pt;}
.x5{left:385.986667pt;}
.x23{left:393.826655pt;}
.xc{left:397.346655pt;}
.x14{left:399.906655pt;}
.x1a{left:408.706655pt;}
.x1d{left:420.386655pt;}
.xb{left:463.133322pt;}
.x8{left:472.733322pt;}
.x2{left:479.773322pt;}
.x25{left:510.013322pt;}
.x9{left:514.813322pt;}
.x3{left:519.453322pt;}
.xa{left:561.373322pt;}
.x1{left:605.373322pt;}
}




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