
    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_3c72d6d4bf8fa3ef2977b17c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_008fa5920042310ef25a5e3b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_38d2332cd1430256d9d50a67.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb68fcaa57591ef16f174b3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57190b186599df7841147420.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_f0869652f26f3fa57ac63261.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fd4da41d27ea6b6683dd78e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.364258;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_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.774902;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls31{letter-spacing:-0.702000px;}
.ls21{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.486000px;}
.ls20{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.306000px;}
.ls22{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.090000px;}
.ls26{letter-spacing:-0.018000px;}
.ls1f{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.030000px;}
.ls23{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.234000px;}
.ls2f{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.596000px;}
.ls11{letter-spacing:1.620000px;}
.ls2e{letter-spacing:4.619520px;}
.ls17{letter-spacing:8.100000px;}
.ls1e{letter-spacing:10.080000px;}
.ls9{letter-spacing:10.260000px;}
.ls16{letter-spacing:11.700000px;}
.ls15{letter-spacing:12.420000px;}
.ls30{letter-spacing:15.419520px;}
.ls7{letter-spacing:16.740000px;}
.ls6{letter-spacing:17.436000px;}
.ls19{letter-spacing:17.460000px;}
.lsc{letter-spacing:18.900000px;}
.lse{letter-spacing:19.620000px;}
.ls1a{letter-spacing:19.800000px;}
.ls1b{letter-spacing:20.340000px;}
.ls2c{letter-spacing:21.060000px;}
.ls2b{letter-spacing:23.940000px;}
.ls1d{letter-spacing:24.120000px;}
.ls12{letter-spacing:25.380000px;}
.ls2d{letter-spacing:26.820000px;}
.lsd{letter-spacing:31.860000px;}
.ls1c{letter-spacing:33.420000px;}
.lsb{letter-spacing:39.780000px;}
.ls2a{letter-spacing:46.260000px;}
.ls8{letter-spacing:51.948000px;}
.lsa{letter-spacing:86.508000px;}
.ls14{letter-spacing:119.628000px;}
.ls18{letter-spacing:128.988000px;}
.ls29{letter-spacing:194.484000px;}
.ls1{letter-spacing:536.040000px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws10{word-spacing:-13.878000px;}
.ws7{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.734000px;}
.wsd{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.014000px;}
.ws5{word-spacing:-12.960000px;}
.wsf{word-spacing:-12.798000px;}
.ws2{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.wse{word-spacing:0.000000px;}
._0{margin-left:-1.052640px;}
._1{width:1.320000px;}
._12{width:2.370000px;}
._26{width:4.340640px;}
._d{width:5.844000px;}
._c{width:6.966000px;}
._2{width:8.856000px;}
._5{width:10.206000px;}
._1d{width:11.232000px;}
._f{width:12.338640px;}
._18{width:14.988000px;}
._25{width:16.254000px;}
._3{width:17.676000px;}
._b{width:18.756000px;}
._10{width:20.346000px;}
._8{width:21.708000px;}
._23{width:23.696640px;}
._13{width:25.002000px;}
._2e{width:26.207280px;}
._16{width:27.372000px;}
._15{width:28.512000px;}
._1e{width:29.544000px;}
._34{width:30.915360px;}
._e{width:32.048640px;}
._20{width:33.696000px;}
._22{width:35.208000px;}
._21{width:36.342000px;}
._9{width:37.584000px;}
._6{width:38.946000px;}
._7{width:40.446000px;}
._24{width:41.634000px;}
._1b{width:42.714000px;}
._31{width:43.902000px;}
._2d{width:45.732000px;}
._14{width:47.388000px;}
._17{width:49.464000px;}
._37{width:52.326000px;}
._35{width:53.838000px;}
._3a{width:55.620000px;}
._1f{width:56.700000px;}
._2a{width:58.488000px;}
._32{width:61.560000px;}
._29{width:64.908000px;}
._36{width:66.036000px;}
._2b{width:67.266000px;}
._33{width:68.760000px;}
._28{width:73.818000px;}
._1a{width:78.377280px;}
._19{width:79.452000px;}
._3b{width:81.540000px;}
._27{width:84.222000px;}
._11{width:85.806000px;}
._a{width:88.788000px;}
._30{width:94.284000px;}
._1c{width:99.378000px;}
._4{width:101.196000px;}
._39{width:119.394000px;}
._38{width:120.636000px;}
._2f{width:122.472000px;}
._2c{width:339.750000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:2.841000px;}
.y5e{bottom:39.149918px;}
.y5d{bottom:134.856000px;}
.y5c{bottom:150.330000px;}
.y5b{bottom:165.990000px;}
.y5a{bottom:181.470000px;}
.y35{bottom:187.050000px;}
.y59{bottom:196.950000px;}
.y34{bottom:202.530000px;}
.y97{bottom:208.290000px;}
.y58{bottom:212.430000px;}
.yc3{bottom:213.150000px;}
.y33{bottom:218.010000px;}
.y96{bottom:223.770000px;}
.y57{bottom:228.090000px;}
.y32{bottom:233.490000px;}
.y95{bottom:239.430000px;}
.yc2{bottom:242.310000px;}
.y56{bottom:243.570000px;}
.y31{bottom:249.150000px;}
.y94{bottom:254.910000px;}
.yc1{bottom:266.790000px;}
.y55{bottom:268.050000px;}
.y93{bottom:270.390000px;}
.y30{bottom:282.630000px;}
.y92{bottom:285.870000px;}
.yc0{bottom:291.270000px;}
.y54{bottom:292.530000px;}
.y91{bottom:301.575000px;}
.ybf{bottom:306.795000px;}
.y53{bottom:308.235000px;}
.y2f{bottom:316.155000px;}
.y90{bottom:317.055000px;}
.y52{bottom:323.715000px;}
.ybe{bottom:331.455000px;}
.y2e{bottom:331.635000px;}
.y8f{bottom:332.535000px;}
.y51{bottom:339.195000px;}
.ybd{bottom:346.935000px;}
.y2d{bottom:347.295000px;}
.y8e{bottom:348.015000px;}
.y50{bottom:354.675000px;}
.ybc{bottom:362.415000px;}
.y2c{bottom:362.775000px;}
.y8d{bottom:363.675000px;}
.y4f{bottom:370.335000px;}
.ybb{bottom:377.895000px;}
.y8c{bottom:379.155000px;}
.y2b{bottom:379.335000px;}
.y4e{bottom:385.815000px;}
.yba{bottom:393.555000px;}
.y8b{bottom:394.635000px;}
.y2a{bottom:394.815000px;}
.y4d{bottom:401.295000px;}
.y29{bottom:411.195000px;}
.y4c{bottom:416.775000px;}
.yb9{bottom:418.035000px;}
.y8a{bottom:427.575000px;}
.y28{bottom:427.755000px;}
.y4b{bottom:432.435000px;}
.yb8{bottom:433.515000px;}
.y27{bottom:443.235000px;}
.y89{bottom:444.135000px;}
.y4a{bottom:447.915000px;}
.yb7{bottom:448.995000px;}
.y26{bottom:458.895000px;}
.y88{bottom:459.615000px;}
.y49{bottom:463.395000px;}
.yb6{bottom:464.655000px;}
.y25{bottom:474.375000px;}
.y87{bottom:475.095000px;}
.y48{bottom:478.875000px;}
.yb5{bottom:480.135000px;}
.y24{bottom:489.855000px;}
.y86{bottom:490.755000px;}
.y47{bottom:494.355000px;}
.yb4{bottom:504.615000px;}
.y23{bottom:505.335000px;}
.y85{bottom:506.235000px;}
.y46{bottom:510.015000px;}
.yb3{bottom:520.095000px;}
.y22{bottom:520.995000px;}
.y84{bottom:521.715000px;}
.y45{bottom:525.495000px;}
.yb2{bottom:535.575000px;}
.y21{bottom:536.475000px;}
.y83{bottom:537.195000px;}
.y44{bottom:540.975000px;}
.yb1{bottom:551.235000px;}
.y20{bottom:551.955000px;}
.y82{bottom:552.855000px;}
.y43{bottom:557.535000px;}
.yb0{bottom:566.715000px;}
.y1f{bottom:567.435000px;}
.y81{bottom:568.335000px;}
.y42{bottom:573.015000px;}
.yaf{bottom:582.225000px;}
.y1e{bottom:582.945000px;}
.y80{bottom:583.845000px;}
.y41{bottom:589.605000px;}
.y1d{bottom:598.605000px;}
.y7f{bottom:599.325000px;}
.y40{bottom:605.085000px;}
.yae{bottom:606.705000px;}
.y1c{bottom:614.085000px;}
.y7e{bottom:614.985000px;}
.y3f{bottom:620.565000px;}
.yad{bottom:622.365000px;}
.y1b{bottom:629.565000px;}
.y7d{bottom:630.465000px;}
.y3e{bottom:636.045000px;}
.yac{bottom:637.845000px;}
.y1a{bottom:645.045000px;}
.y7c{bottom:645.945000px;}
.y3d{bottom:651.705000px;}
.yab{bottom:653.325000px;}
.y19{bottom:660.705000px;}
.y7b{bottom:662.505000px;}
.y3c{bottom:667.185000px;}
.yaa{bottom:668.805000px;}
.y18{bottom:676.185000px;}
.y7a{bottom:677.985000px;}
.y3b{bottom:683.565000px;}
.y17{bottom:691.665000px;}
.y79{bottom:693.465000px;}
.y3a{bottom:700.125000px;}
.y16{bottom:707.145000px;}
.y78{bottom:708.945000px;}
.y39{bottom:716.685000px;}
.y15{bottom:722.625000px;}
.ya9{bottom:724.425000px;}
.y77{bottom:725.505000px;}
.y38{bottom:732.165000px;}
.y14{bottom:739.185000px;}
.y76{bottom:740.985000px;}
.y37{bottom:747.645000px;}
.ya8{bottom:748.905000px;}
.y13{bottom:755.745000px;}
.y75{bottom:757.545000px;}
.y36{bottom:763.305000px;}
.ya7{bottom:764.565000px;}
.y12{bottom:772.305000px;}
.y74{bottom:773.025000px;}
.ya6{bottom:780.045000px;}
.y11{bottom:787.785000px;}
.ya5{bottom:795.525000px;}
.y73{bottom:797.505000px;}
.y10{bottom:803.265000px;}
.y72{bottom:813.165000px;}
.ya4{bottom:820.005000px;}
.ya3{bottom:835.665000px;}
.yf{bottom:836.745000px;}
.y71{bottom:837.645000px;}
.ya2{bottom:851.145000px;}
.y70{bottom:853.125000px;}
.y6f{bottom:868.650000px;}
.ye{bottom:870.450000px;}
.ya1{bottom:884.670000px;}
.y6e{bottom:885.210000px;}
.yd{bottom:894.930000px;}
.y6d{bottom:901.770000px;}
.yc{bottom:910.410000px;}
.y6c{bottom:917.250000px;}
.ya0{bottom:918.150000px;}
.y6b{bottom:933.810000px;}
.yb{bottom:939.390000px;}
.y6a{bottom:949.290000px;}
.ya{bottom:954.870000px;}
.y69{bottom:964.770000px;}
.y9{bottom:970.530000px;}
.y9f{bottom:980.250000px;}
.y68{bottom:989.250000px;}
.y8{bottom:995.010000px;}
.y9e{bottom:995.910000px;}
.y7{bottom:1010.490000px;}
.y9d{bottom:1011.390000px;}
.y67{bottom:1013.910000px;}
.y9c{bottom:1026.870000px;}
.y66{bottom:1029.390000px;}
.y6{bottom:1030.470000px;}
.y9b{bottom:1042.350000px;}
.y65{bottom:1044.870000px;}
.y5{bottom:1047.570000px;}
.y9a{bottom:1058.010000px;}
.y64{bottom:1060.350000px;}
.y4{bottom:1063.050000px;}
.y99{bottom:1073.490000px;}
.y63{bottom:1076.010000px;}
.y3{bottom:1079.610000px;}
.y98{bottom:1088.970000px;}
.y62{bottom:1091.490000px;}
.y2{bottom:1100.310000px;}
.y61{bottom:1106.970000px;}
.y60{bottom:1122.450000px;}
.y1{bottom:1180.260000px;}
.hb{height:14.850082px;}
.h6{height:26.314453px;}
.h4{height:38.100586px;}
.h9{height:39.313477px;}
.h8{height:39.471680px;}
.h2{height:40.231406px;}
.h7{height:45.035156px;}
.h5{height:48.023438px;}
.h3{height:50.800781px;}
.ha{height:55.243125px;}
.hc{height:56.135742px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:15.016500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:84.996000px;}
.x7{left:106.236000px;}
.x2{left:117.396000px;}
.xc{left:133.236000px;}
.x5{left:266.655000px;}
.x3{left:295.455000px;}
.x6{left:327.855000px;}
.xb{left:438.891769px;}
.x4{left:446.325000px;}
.x8{left:459.285000px;}
.xa{left:469.905000px;}
.x9{left:480.525000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls31{letter-spacing:-0.624000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.432000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.272000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.080000pt;}
.ls26{letter-spacing:-0.016000pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.026667pt;}
.ls23{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.208000pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls10{letter-spacing:1.418667pt;}
.ls11{letter-spacing:1.440000pt;}
.ls2e{letter-spacing:4.106240pt;}
.ls17{letter-spacing:7.200000pt;}
.ls1e{letter-spacing:8.960000pt;}
.ls9{letter-spacing:9.120000pt;}
.ls16{letter-spacing:10.400000pt;}
.ls15{letter-spacing:11.040000pt;}
.ls30{letter-spacing:13.706240pt;}
.ls7{letter-spacing:14.880000pt;}
.ls6{letter-spacing:15.498667pt;}
.ls19{letter-spacing:15.520000pt;}
.lsc{letter-spacing:16.800000pt;}
.lse{letter-spacing:17.440000pt;}
.ls1a{letter-spacing:17.600000pt;}
.ls1b{letter-spacing:18.080000pt;}
.ls2c{letter-spacing:18.720000pt;}
.ls2b{letter-spacing:21.280000pt;}
.ls1d{letter-spacing:21.440000pt;}
.ls12{letter-spacing:22.560000pt;}
.ls2d{letter-spacing:23.840000pt;}
.lsd{letter-spacing:28.320000pt;}
.ls1c{letter-spacing:29.706667pt;}
.lsb{letter-spacing:35.360000pt;}
.ls2a{letter-spacing:41.120000pt;}
.ls8{letter-spacing:46.176000pt;}
.lsa{letter-spacing:76.896000pt;}
.ls14{letter-spacing:106.336000pt;}
.ls18{letter-spacing:114.656000pt;}
.ls29{letter-spacing:172.874667pt;}
.ls1{letter-spacing:476.480000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws10{word-spacing:-12.336000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.208000pt;}
.wsd{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.568000pt;}
.ws5{word-spacing:-11.520000pt;}
.wsf{word-spacing:-11.376000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.wse{word-spacing:0.000000pt;}
._0{margin-left:-0.935680pt;}
._1{width:1.173333pt;}
._12{width:2.106667pt;}
._26{width:3.858347pt;}
._d{width:5.194667pt;}
._c{width:6.192000pt;}
._2{width:7.872000pt;}
._5{width:9.072000pt;}
._1d{width:9.984000pt;}
._f{width:10.967680pt;}
._18{width:13.322667pt;}
._25{width:14.448000pt;}
._3{width:15.712000pt;}
._b{width:16.672000pt;}
._10{width:18.085333pt;}
._8{width:19.296000pt;}
._23{width:21.063680pt;}
._13{width:22.224000pt;}
._2e{width:23.295360pt;}
._16{width:24.330667pt;}
._15{width:25.344000pt;}
._1e{width:26.261333pt;}
._34{width:27.480320pt;}
._e{width:28.487680pt;}
._20{width:29.952000pt;}
._22{width:31.296000pt;}
._21{width:32.304000pt;}
._9{width:33.408000pt;}
._6{width:34.618667pt;}
._7{width:35.952000pt;}
._24{width:37.008000pt;}
._1b{width:37.968000pt;}
._31{width:39.024000pt;}
._2d{width:40.650667pt;}
._14{width:42.122667pt;}
._17{width:43.968000pt;}
._37{width:46.512000pt;}
._35{width:47.856000pt;}
._3a{width:49.440000pt;}
._1f{width:50.400000pt;}
._2a{width:51.989333pt;}
._32{width:54.720000pt;}
._29{width:57.696000pt;}
._36{width:58.698667pt;}
._2b{width:59.792000pt;}
._33{width:61.120000pt;}
._28{width:65.616000pt;}
._1a{width:69.668693pt;}
._19{width:70.624000pt;}
._3b{width:72.480000pt;}
._27{width:74.864000pt;}
._11{width:76.272000pt;}
._a{width:78.922667pt;}
._30{width:83.808000pt;}
._1c{width:88.336000pt;}
._4{width:89.952000pt;}
._39{width:106.128000pt;}
._38{width:107.232000pt;}
._2f{width:108.864000pt;}
._2c{width:302.000000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.525333pt;}
.y5e{bottom:34.799927pt;}
.y5d{bottom:119.872000pt;}
.y5c{bottom:133.626667pt;}
.y5b{bottom:147.546667pt;}
.y5a{bottom:161.306667pt;}
.y35{bottom:166.266667pt;}
.y59{bottom:175.066667pt;}
.y34{bottom:180.026667pt;}
.y97{bottom:185.146667pt;}
.y58{bottom:188.826667pt;}
.yc3{bottom:189.466667pt;}
.y33{bottom:193.786667pt;}
.y96{bottom:198.906667pt;}
.y57{bottom:202.746667pt;}
.y32{bottom:207.546667pt;}
.y95{bottom:212.826667pt;}
.yc2{bottom:215.386667pt;}
.y56{bottom:216.506667pt;}
.y31{bottom:221.466667pt;}
.y94{bottom:226.586667pt;}
.yc1{bottom:237.146667pt;}
.y55{bottom:238.266667pt;}
.y93{bottom:240.346667pt;}
.y30{bottom:251.226667pt;}
.y92{bottom:254.106667pt;}
.yc0{bottom:258.906667pt;}
.y54{bottom:260.026667pt;}
.y91{bottom:268.066667pt;}
.ybf{bottom:272.706667pt;}
.y53{bottom:273.986667pt;}
.y2f{bottom:281.026667pt;}
.y90{bottom:281.826667pt;}
.y52{bottom:287.746667pt;}
.ybe{bottom:294.626667pt;}
.y2e{bottom:294.786667pt;}
.y8f{bottom:295.586667pt;}
.y51{bottom:301.506667pt;}
.ybd{bottom:308.386667pt;}
.y2d{bottom:308.706667pt;}
.y8e{bottom:309.346667pt;}
.y50{bottom:315.266667pt;}
.ybc{bottom:322.146667pt;}
.y2c{bottom:322.466667pt;}
.y8d{bottom:323.266667pt;}
.y4f{bottom:329.186667pt;}
.ybb{bottom:335.906667pt;}
.y8c{bottom:337.026667pt;}
.y2b{bottom:337.186667pt;}
.y4e{bottom:342.946667pt;}
.yba{bottom:349.826667pt;}
.y8b{bottom:350.786667pt;}
.y2a{bottom:350.946667pt;}
.y4d{bottom:356.706667pt;}
.y29{bottom:365.506667pt;}
.y4c{bottom:370.466667pt;}
.yb9{bottom:371.586667pt;}
.y8a{bottom:380.066667pt;}
.y28{bottom:380.226667pt;}
.y4b{bottom:384.386667pt;}
.yb8{bottom:385.346667pt;}
.y27{bottom:393.986667pt;}
.y89{bottom:394.786667pt;}
.y4a{bottom:398.146667pt;}
.yb7{bottom:399.106667pt;}
.y26{bottom:407.906667pt;}
.y88{bottom:408.546667pt;}
.y49{bottom:411.906667pt;}
.yb6{bottom:413.026667pt;}
.y25{bottom:421.666667pt;}
.y87{bottom:422.306667pt;}
.y48{bottom:425.666667pt;}
.yb5{bottom:426.786667pt;}
.y24{bottom:435.426667pt;}
.y86{bottom:436.226667pt;}
.y47{bottom:439.426667pt;}
.yb4{bottom:448.546667pt;}
.y23{bottom:449.186667pt;}
.y85{bottom:449.986667pt;}
.y46{bottom:453.346667pt;}
.yb3{bottom:462.306667pt;}
.y22{bottom:463.106667pt;}
.y84{bottom:463.746667pt;}
.y45{bottom:467.106667pt;}
.yb2{bottom:476.066667pt;}
.y21{bottom:476.866667pt;}
.y83{bottom:477.506667pt;}
.y44{bottom:480.866667pt;}
.yb1{bottom:489.986667pt;}
.y20{bottom:490.626667pt;}
.y82{bottom:491.426667pt;}
.y43{bottom:495.586667pt;}
.yb0{bottom:503.746667pt;}
.y1f{bottom:504.386667pt;}
.y81{bottom:505.186667pt;}
.y42{bottom:509.346667pt;}
.yaf{bottom:517.533333pt;}
.y1e{bottom:518.173333pt;}
.y80{bottom:518.973333pt;}
.y41{bottom:524.093333pt;}
.y1d{bottom:532.093333pt;}
.y7f{bottom:532.733333pt;}
.y40{bottom:537.853333pt;}
.yae{bottom:539.293333pt;}
.y1c{bottom:545.853333pt;}
.y7e{bottom:546.653333pt;}
.y3f{bottom:551.613333pt;}
.yad{bottom:553.213333pt;}
.y1b{bottom:559.613333pt;}
.y7d{bottom:560.413333pt;}
.y3e{bottom:565.373333pt;}
.yac{bottom:566.973333pt;}
.y1a{bottom:573.373333pt;}
.y7c{bottom:574.173333pt;}
.y3d{bottom:579.293333pt;}
.yab{bottom:580.733333pt;}
.y19{bottom:587.293333pt;}
.y7b{bottom:588.893333pt;}
.y3c{bottom:593.053333pt;}
.yaa{bottom:594.493333pt;}
.y18{bottom:601.053333pt;}
.y7a{bottom:602.653333pt;}
.y3b{bottom:607.613333pt;}
.y17{bottom:614.813333pt;}
.y79{bottom:616.413333pt;}
.y3a{bottom:622.333333pt;}
.y16{bottom:628.573333pt;}
.y78{bottom:630.173333pt;}
.y39{bottom:637.053333pt;}
.y15{bottom:642.333333pt;}
.ya9{bottom:643.933333pt;}
.y77{bottom:644.893333pt;}
.y38{bottom:650.813333pt;}
.y14{bottom:657.053333pt;}
.y76{bottom:658.653333pt;}
.y37{bottom:664.573333pt;}
.ya8{bottom:665.693333pt;}
.y13{bottom:671.773333pt;}
.y75{bottom:673.373333pt;}
.y36{bottom:678.493333pt;}
.ya7{bottom:679.613333pt;}
.y12{bottom:686.493333pt;}
.y74{bottom:687.133333pt;}
.ya6{bottom:693.373333pt;}
.y11{bottom:700.253333pt;}
.ya5{bottom:707.133333pt;}
.y73{bottom:708.893333pt;}
.y10{bottom:714.013333pt;}
.y72{bottom:722.813333pt;}
.ya4{bottom:728.893333pt;}
.ya3{bottom:742.813333pt;}
.yf{bottom:743.773333pt;}
.y71{bottom:744.573333pt;}
.ya2{bottom:756.573333pt;}
.y70{bottom:758.333333pt;}
.y6f{bottom:772.133333pt;}
.ye{bottom:773.733333pt;}
.ya1{bottom:786.373333pt;}
.y6e{bottom:786.853333pt;}
.yd{bottom:795.493333pt;}
.y6d{bottom:801.573333pt;}
.yc{bottom:809.253333pt;}
.y6c{bottom:815.333333pt;}
.ya0{bottom:816.133333pt;}
.y6b{bottom:830.053333pt;}
.yb{bottom:835.013333pt;}
.y6a{bottom:843.813333pt;}
.ya{bottom:848.773333pt;}
.y69{bottom:857.573333pt;}
.y9{bottom:862.693333pt;}
.y9f{bottom:871.333333pt;}
.y68{bottom:879.333333pt;}
.y8{bottom:884.453333pt;}
.y9e{bottom:885.253333pt;}
.y7{bottom:898.213333pt;}
.y9d{bottom:899.013333pt;}
.y67{bottom:901.253333pt;}
.y9c{bottom:912.773333pt;}
.y66{bottom:915.013333pt;}
.y6{bottom:915.973333pt;}
.y9b{bottom:926.533333pt;}
.y65{bottom:928.773333pt;}
.y5{bottom:931.173333pt;}
.y9a{bottom:940.453333pt;}
.y64{bottom:942.533333pt;}
.y4{bottom:944.933333pt;}
.y99{bottom:954.213333pt;}
.y63{bottom:956.453333pt;}
.y3{bottom:959.653333pt;}
.y98{bottom:967.973333pt;}
.y62{bottom:970.213333pt;}
.y2{bottom:978.053333pt;}
.y61{bottom:983.973333pt;}
.y60{bottom:997.733333pt;}
.y1{bottom:1049.120000pt;}
.hb{height:13.200073pt;}
.h6{height:23.390625pt;}
.h4{height:33.867188pt;}
.h9{height:34.945312pt;}
.h8{height:35.085938pt;}
.h2{height:35.761250pt;}
.h7{height:40.031250pt;}
.h5{height:42.687500pt;}
.h3{height:45.156250pt;}
.ha{height:49.105000pt;}
.hc{height:49.898438pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:13.348000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:75.552000pt;}
.x7{left:94.432000pt;}
.x2{left:104.352000pt;}
.xc{left:118.432000pt;}
.x5{left:237.026667pt;}
.x3{left:262.626667pt;}
.x6{left:291.426667pt;}
.xb{left:390.126017pt;}
.x4{left:396.733333pt;}
.x8{left:408.253333pt;}
.xa{left:417.693333pt;}
.x9{left:427.133333pt;}
}




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