
    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_1f5645fb9bfc140eca09d128.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_1a4448c9a632a7e197e2d997.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_397fcf421a1459f9c8536f7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.160156;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_30d3fad3c6ece6dac45ebcd3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.158691;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_11a40ea46cfbc21408696658.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5a2af4bbcda973bf0abb691e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.160156;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_a519e01d2422c0ad4043fa18.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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;}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.m0{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.370700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370700,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-1.800000px;}
.ls18{letter-spacing:-1.584000px;}
.ls28{letter-spacing:-1.512000px;}
.ls29{letter-spacing:-1.368000px;}
.ls17{letter-spacing:-1.224000px;}
.ls2{letter-spacing:-1.062000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.455363px;}
.ls7{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.025920px;}
.ls1b{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.296400px;}
.lse{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.708480px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.864000px;}
.lsd{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.152000px;}
.ls22{letter-spacing:1.224000px;}
.lsc{letter-spacing:1.296000px;}
.ls16{letter-spacing:1.584000px;}
.ls1e{letter-spacing:1.872000px;}
.ls26{letter-spacing:9.072000px;}
.ls24{letter-spacing:10.512000px;}
.ls27{letter-spacing:14.832000px;}
.ls1f{letter-spacing:23.184000px;}
.ls20{letter-spacing:23.760000px;}
.ls14{letter-spacing:24.912000px;}
.ls25{letter-spacing:26.352000px;}
.ls23{letter-spacing:27.504000px;}
.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;}
}
.wsc{word-spacing:-21.024000px;}
.ws1d{word-spacing:-20.952000px;}
.ws11{word-spacing:-20.880000px;}
.ws15{word-spacing:-20.794930px;}
.wsd{word-spacing:-20.736000px;}
.ws10{word-spacing:-20.592000px;}
.wse{word-spacing:-20.520000px;}
.ws3{word-spacing:-20.448000px;}
.ws18{word-spacing:-20.339567px;}
.ws1e{word-spacing:-20.232000px;}
.ws16{word-spacing:-20.160000px;}
.ws1f{word-spacing:-20.088000px;}
.ws6{word-spacing:-19.944000px;}
.ws17{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.728000px;}
.ws5{word-spacing:-19.656000px;}
.ws19{word-spacing:-19.584000px;}
.wsf{word-spacing:-19.512000px;}
.wsa{word-spacing:-19.440000px;}
.ws14{word-spacing:-19.368000px;}
.ws4{word-spacing:-19.296000px;}
.ws1a{word-spacing:-19.152000px;}
.ws9{word-spacing:-19.080000px;}
.ws12{word-spacing:-18.504000px;}
.ws0{word-spacing:-18.446160px;}
.ws21{word-spacing:-18.360000px;}
.ws20{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.149760px;}
.ws13{word-spacing:-18.144000px;}
.ws1b{word-spacing:-18.000000px;}
.ws22{word-spacing:-17.928000px;}
.ws1c{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.465760px;}
.ws8{word-spacing:-16.571520px;}
.wsb{word-spacing:0.000000px;}
._26{margin-left:-14.172000px;}
._1{margin-left:-7.485120px;}
._2{margin-left:-4.968000px;}
._7{margin-left:-3.410880px;}
._5{margin-left:-2.252640px;}
._0{margin-left:-1.059840px;}
._3{width:1.424160px;}
._6{width:2.809920px;}
._8{width:4.155840px;}
._10{width:5.328480px;}
._17{width:7.094880px;}
._b{width:8.473440px;}
._a{width:9.915840px;}
._9{width:11.396640px;}
._c{width:12.475680px;}
._d{width:13.999680px;}
._f{width:15.324480px;}
._11{width:16.785120px;}
._19{width:18.414240px;}
._1d{width:20.832000px;}
._21{width:22.636320px;}
._1f{width:24.168480px;}
._13{width:25.416000px;}
._1e{width:26.588640px;}
._14{width:27.623520px;}
._1a{width:29.520000px;}
._15{width:30.579840px;}
._16{width:31.593120px;}
._25{width:32.962080px;}
._1c{width:33.984000px;}
._1b{width:35.043840px;}
._2a{width:36.447840px;}
._e{width:37.620480px;}
._24{width:38.643840px;}
._18{width:40.500480px;}
._2e{width:41.547360px;}
._28{width:43.587840px;}
._29{width:45.159840px;}
._2c{width:46.164000px;}
._2b{width:47.839680px;}
._2d{width:52.716480px;}
._12{width:53.804640px;}
._20{width:55.462080px;}
._23{width:56.484960px;}
._22{width:57.586560px;}
._27{width:63.267840px;}
._4{width:328.154400px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.120000px;}
.y1{bottom:72.036000px;}
.y5{bottom:78.516000px;}
.y4{bottom:83.556000px;}
.y9f{bottom:117.036000px;}
.ybd{bottom:126.756000px;}
.y57{bottom:134.316000px;}
.y30{bottom:134.676000px;}
.y7a{bottom:138.276000px;}
.y70{bottom:138.636000px;}
.y91{bottom:143.316000px;}
.ybc{bottom:150.510000px;}
.y9e{bottom:153.030000px;}
.y2f{bottom:158.790000px;}
.y56{bottom:170.310000px;}
.y79{bottom:173.910000px;}
.y6f{bottom:174.270000px;}
.ybb{bottom:174.630000px;}
.y90{bottom:179.310000px;}
.y2e{bottom:182.550000px;}
.y9d{bottom:189.030000px;}
.y55{bottom:193.755000px;}
.yba{bottom:198.435000px;}
.y2d{bottom:206.715000px;}
.y78{bottom:209.955000px;}
.y6e{bottom:210.315000px;}
.y54{bottom:214.635000px;}
.y8f{bottom:215.355000px;}
.yb9{bottom:222.555000px;}
.y9c{bottom:225.075000px;}
.y2c{bottom:230.475000px;}
.y77{bottom:245.955000px;}
.y6d{bottom:246.315000px;}
.y53{bottom:247.755000px;}
.y8e{bottom:250.995000px;}
.y2b{bottom:254.595000px;}
.y9b{bottom:260.715000px;}
.yb8{bottom:270.435000px;}
.y2a{bottom:278.355000px;}
.y76{bottom:281.955000px;}
.y6c{bottom:282.315000px;}
.y52{bottom:283.755000px;}
.y8d{bottom:286.995000px;}
.yb7{bottom:294.195000px;}
.y9a{bottom:296.715000px;}
.y29{bottom:302.475000px;}
.y51{bottom:307.875000px;}
.y6b{bottom:317.955000px;}
.yb6{bottom:318.315000px;}
.y8c{bottom:323.025000px;}
.y28{bottom:326.265000px;}
.y50{bottom:331.665000px;}
.y99{bottom:332.745000px;}
.yb5{bottom:342.105000px;}
.y27{bottom:350.385000px;}
.y75{bottom:353.625000px;}
.y6a{bottom:353.985000px;}
.y4f{bottom:355.785000px;}
.y8b{bottom:359.025000px;}
.yb4{bottom:366.225000px;}
.y98{bottom:368.745000px;}
.y26{bottom:374.145000px;}
.y4e{bottom:379.545000px;}
.y74{bottom:389.625000px;}
.y69{bottom:389.985000px;}
.y8a{bottom:394.665000px;}
.y25{bottom:398.265000px;}
.y4d{bottom:403.665000px;}
.y97{bottom:404.385000px;}
.yb3{bottom:414.105000px;}
.y24{bottom:422.025000px;}
.y73{bottom:425.625000px;}
.y68{bottom:425.985000px;}
.y4c{bottom:427.425000px;}
.y89{bottom:430.665000px;}
.yb2{bottom:437.865000px;}
.y96{bottom:440.385000px;}
.y23{bottom:446.190000px;}
.y4b{bottom:451.590000px;}
.y67{bottom:461.670000px;}
.yb1{bottom:462.030000px;}
.y88{bottom:466.710000px;}
.y22{bottom:469.950000px;}
.y4a{bottom:475.350000px;}
.y95{bottom:476.430000px;}
.yb0{bottom:485.790000px;}
.y21{bottom:494.070000px;}
.y72{bottom:497.310000px;}
.y66{bottom:497.670000px;}
.y49{bottom:499.470000px;}
.y87{bottom:502.710000px;}
.yaf{bottom:509.910000px;}
.y94{bottom:510.270000px;}
.y20{bottom:517.470000px;}
.y48{bottom:523.230000px;}
.y71{bottom:533.310000px;}
.y65{bottom:533.670000px;}
.y1f{bottom:537.270000px;}
.y86{bottom:538.350000px;}
.y93{bottom:541.230000px;}
.y47{bottom:547.350000px;}
.y1e{bottom:557.070000px;}
.yae{bottom:557.790000px;}
.y92{bottom:562.470000px;}
.y64{bottom:569.670000px;}
.y46{bottom:571.110000px;}
.y85{bottom:574.380000px;}
.yad{bottom:581.580000px;}
.y1d{bottom:587.340000px;}
.y45{bottom:595.260000px;}
.y63{bottom:605.340000px;}
.yac{bottom:605.700000px;}
.y1c{bottom:607.140000px;}
.y84{bottom:610.380000px;}
.y44{bottom:619.020000px;}
.yab{bottom:629.460000px;}
.y1b{bottom:637.020000px;}
.y62{bottom:641.340000px;}
.y43{bottom:643.140000px;}
.y83{bottom:646.380000px;}
.yaa{bottom:653.580000px;}
.y1a{bottom:656.820000px;}
.y42{bottom:666.900000px;}
.y19{bottom:676.980000px;}
.y61{bottom:677.340000px;}
.y82{bottom:682.020000px;}
.y41{bottom:691.020000px;}
.y18{bottom:696.780000px;}
.ya9{bottom:701.490000px;}
.y60{bottom:713.370000px;}
.y40{bottom:714.810000px;}
.y17{bottom:716.970000px;}
.y81{bottom:718.050000px;}
.ya8{bottom:725.250000px;}
.y16{bottom:736.770000px;}
.y3f{bottom:738.930000px;}
.y5f{bottom:749.010000px;}
.ya7{bottom:749.370000px;}
.y80{bottom:754.050000px;}
.y15{bottom:756.930000px;}
.y3e{bottom:762.690000px;}
.ya6{bottom:773.130000px;}
.y14{bottom:776.730000px;}
.y5e{bottom:785.010000px;}
.y3d{bottom:786.810000px;}
.y7f{bottom:790.050000px;}
.y13{bottom:796.530000px;}
.ya5{bottom:797.250000px;}
.y3c{bottom:810.570000px;}
.y12{bottom:816.690000px;}
.y5d{bottom:821.010000px;}
.y7e{bottom:825.735000px;}
.y3b{bottom:834.735000px;}
.y11{bottom:836.535000px;}
.ya4{bottom:845.175000px;}
.y5c{bottom:857.055000px;}
.y3a{bottom:858.495000px;}
.y7d{bottom:861.735000px;}
.y10{bottom:866.415000px;}
.ya3{bottom:868.935000px;}
.y39{bottom:882.615000px;}
.y5b{bottom:892.695000px;}
.ya2{bottom:893.055000px;}
.yf{bottom:896.655000px;}
.y7c{bottom:897.735000px;}
.ye{bottom:916.455000px;}
.ya1{bottom:916.815000px;}
.y38{bottom:928.695000px;}
.y7b{bottom:931.575000px;}
.yd{bottom:937.695000px;}
.ya0{bottom:940.935000px;}
.yc{bottom:961.845000px;}
.y37{bottom:964.725000px;}
.yb{bottom:985.605000px;}
.y36{bottom:988.845000px;}
.y5a{bottom:1000.725000px;}
.ya{bottom:1009.725000px;}
.y35{bottom:1012.605000px;}
.y9{bottom:1033.125000px;}
.y59{bottom:1036.365000px;}
.y34{bottom:1036.725000px;}
.y8{bottom:1057.605000px;}
.y33{bottom:1060.485000px;}
.y58{bottom:1072.365000px;}
.y7{bottom:1079.610000px;}
.y32{bottom:1084.650000px;}
.y6{bottom:1101.210000px;}
.y31{bottom:1108.410000px;}
.y3{bottom:1202.730000px;}
.h2{height:23.760000px;}
.h3{height:50.326875px;}
.hb{height:55.932188px;}
.h7{height:61.194375px;}
.h5{height:61.259062px;}
.h4{height:62.163910px;}
.h9{height:66.515625px;}
.h8{height:66.585938px;}
.h6{height:68.084282px;}
.he{height:70.187039px;}
.ha{height:72.562500px;}
.hf{height:74.004654px;}
.hd{height:74.953125px;}
.hc{height:86.945625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:30.960000px;}
.w3{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.800000px;}
.x3{left:24.120000px;}
.xd{left:116.675987px;}
.x4{left:127.475987px;}
.xa{left:131.831987px;}
.x7{left:158.114987px;}
.x13{left:180.794987px;}
.x5{left:191.954987px;}
.xe{left:202.034987px;}
.x11{left:302.864987px;}
.x12{left:365.549987px;}
.x17{left:416.339987px;}
.x8{left:437.219987px;}
.x9{left:468.179987px;}
.x6{left:525.089987px;}
.x14{left:563.969987px;}
.xc{left:633.494987px;}
.xb{left:648.974987px;}
.xf{left:736.844987px;}
.x16{left:748.004987px;}
.x1{left:783.690000px;}
.x15{left:799.169987px;}
.x10{left:804.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-1.600000pt;}
.ls18{letter-spacing:-1.408000pt;}
.ls28{letter-spacing:-1.344000pt;}
.ls29{letter-spacing:-1.216000pt;}
.ls17{letter-spacing:-1.088000pt;}
.ls2{letter-spacing:-0.944000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.404767pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.023040pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.263467pt;}
.lse{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.629760pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.896000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls22{letter-spacing:1.088000pt;}
.lsc{letter-spacing:1.152000pt;}
.ls16{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:1.664000pt;}
.ls26{letter-spacing:8.064000pt;}
.ls24{letter-spacing:9.344000pt;}
.ls27{letter-spacing:13.184000pt;}
.ls1f{letter-spacing:20.608000pt;}
.ls20{letter-spacing:21.120000pt;}
.ls14{letter-spacing:22.144000pt;}
.ls25{letter-spacing:23.424000pt;}
.ls23{letter-spacing:24.448000pt;}
.wsc{word-spacing:-18.688000pt;}
.ws1d{word-spacing:-18.624000pt;}
.ws11{word-spacing:-18.560000pt;}
.ws15{word-spacing:-18.484382pt;}
.wsd{word-spacing:-18.432000pt;}
.ws10{word-spacing:-18.304000pt;}
.wse{word-spacing:-18.240000pt;}
.ws3{word-spacing:-18.176000pt;}
.ws18{word-spacing:-18.079615pt;}
.ws1e{word-spacing:-17.984000pt;}
.ws16{word-spacing:-17.920000pt;}
.ws1f{word-spacing:-17.856000pt;}
.ws6{word-spacing:-17.728000pt;}
.ws17{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.536000pt;}
.ws5{word-spacing:-17.472000pt;}
.ws19{word-spacing:-17.408000pt;}
.wsf{word-spacing:-17.344000pt;}
.wsa{word-spacing:-17.280000pt;}
.ws14{word-spacing:-17.216000pt;}
.ws4{word-spacing:-17.152000pt;}
.ws1a{word-spacing:-17.024000pt;}
.ws9{word-spacing:-16.960000pt;}
.ws12{word-spacing:-16.448000pt;}
.ws0{word-spacing:-16.396587pt;}
.ws21{word-spacing:-16.320000pt;}
.ws20{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.133120pt;}
.ws13{word-spacing:-16.128000pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws22{word-spacing:-15.936000pt;}
.ws1c{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.525120pt;}
.ws8{word-spacing:-14.730240pt;}
.wsb{word-spacing:0.000000pt;}
._26{margin-left:-12.597333pt;}
._1{margin-left:-6.653440pt;}
._2{margin-left:-4.416000pt;}
._7{margin-left:-3.031893pt;}
._5{margin-left:-2.002347pt;}
._0{margin-left:-0.942080pt;}
._3{width:1.265920pt;}
._6{width:2.497707pt;}
._8{width:3.694080pt;}
._10{width:4.736427pt;}
._17{width:6.306560pt;}
._b{width:7.531947pt;}
._a{width:8.814080pt;}
._9{width:10.130347pt;}
._c{width:11.089493pt;}
._d{width:12.444160pt;}
._f{width:13.621760pt;}
._11{width:14.920107pt;}
._19{width:16.368213pt;}
._1d{width:18.517333pt;}
._21{width:20.121173pt;}
._1f{width:21.483093pt;}
._13{width:22.592000pt;}
._1e{width:23.634347pt;}
._14{width:24.554240pt;}
._1a{width:26.240000pt;}
._15{width:27.182080pt;}
._16{width:28.082773pt;}
._25{width:29.299627pt;}
._1c{width:30.208000pt;}
._1b{width:31.150080pt;}
._2a{width:32.398080pt;}
._e{width:33.440427pt;}
._24{width:34.350080pt;}
._18{width:36.000427pt;}
._2e{width:36.930987pt;}
._28{width:38.744747pt;}
._29{width:40.142080pt;}
._2c{width:41.034667pt;}
._2b{width:42.524160pt;}
._2d{width:46.859093pt;}
._12{width:47.826347pt;}
._20{width:49.299627pt;}
._23{width:50.208853pt;}
._22{width:51.188053pt;}
._27{width:56.238080pt;}
._4{width:291.692800pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.440000pt;}
.y1{bottom:64.032000pt;}
.y5{bottom:69.792000pt;}
.y4{bottom:74.272000pt;}
.y9f{bottom:104.032000pt;}
.ybd{bottom:112.672000pt;}
.y57{bottom:119.392000pt;}
.y30{bottom:119.712000pt;}
.y7a{bottom:122.912000pt;}
.y70{bottom:123.232000pt;}
.y91{bottom:127.392000pt;}
.ybc{bottom:133.786667pt;}
.y9e{bottom:136.026667pt;}
.y2f{bottom:141.146667pt;}
.y56{bottom:151.386667pt;}
.y79{bottom:154.586667pt;}
.y6f{bottom:154.906667pt;}
.ybb{bottom:155.226667pt;}
.y90{bottom:159.386667pt;}
.y2e{bottom:162.266667pt;}
.y9d{bottom:168.026667pt;}
.y55{bottom:172.226667pt;}
.yba{bottom:176.386667pt;}
.y2d{bottom:183.746667pt;}
.y78{bottom:186.626667pt;}
.y6e{bottom:186.946667pt;}
.y54{bottom:190.786667pt;}
.y8f{bottom:191.426667pt;}
.yb9{bottom:197.826667pt;}
.y9c{bottom:200.066667pt;}
.y2c{bottom:204.866667pt;}
.y77{bottom:218.626667pt;}
.y6d{bottom:218.946667pt;}
.y53{bottom:220.226667pt;}
.y8e{bottom:223.106667pt;}
.y2b{bottom:226.306667pt;}
.y9b{bottom:231.746667pt;}
.yb8{bottom:240.386667pt;}
.y2a{bottom:247.426667pt;}
.y76{bottom:250.626667pt;}
.y6c{bottom:250.946667pt;}
.y52{bottom:252.226667pt;}
.y8d{bottom:255.106667pt;}
.yb7{bottom:261.506667pt;}
.y9a{bottom:263.746667pt;}
.y29{bottom:268.866667pt;}
.y51{bottom:273.666667pt;}
.y6b{bottom:282.626667pt;}
.yb6{bottom:282.946667pt;}
.y8c{bottom:287.133333pt;}
.y28{bottom:290.013333pt;}
.y50{bottom:294.813333pt;}
.y99{bottom:295.773333pt;}
.yb5{bottom:304.093333pt;}
.y27{bottom:311.453333pt;}
.y75{bottom:314.333333pt;}
.y6a{bottom:314.653333pt;}
.y4f{bottom:316.253333pt;}
.y8b{bottom:319.133333pt;}
.yb4{bottom:325.533333pt;}
.y98{bottom:327.773333pt;}
.y26{bottom:332.573333pt;}
.y4e{bottom:337.373333pt;}
.y74{bottom:346.333333pt;}
.y69{bottom:346.653333pt;}
.y8a{bottom:350.813333pt;}
.y25{bottom:354.013333pt;}
.y4d{bottom:358.813333pt;}
.y97{bottom:359.453333pt;}
.yb3{bottom:368.093333pt;}
.y24{bottom:375.133333pt;}
.y73{bottom:378.333333pt;}
.y68{bottom:378.653333pt;}
.y4c{bottom:379.933333pt;}
.y89{bottom:382.813333pt;}
.yb2{bottom:389.213333pt;}
.y96{bottom:391.453333pt;}
.y23{bottom:396.613333pt;}
.y4b{bottom:401.413333pt;}
.y67{bottom:410.373333pt;}
.yb1{bottom:410.693333pt;}
.y88{bottom:414.853333pt;}
.y22{bottom:417.733333pt;}
.y4a{bottom:422.533333pt;}
.y95{bottom:423.493333pt;}
.yb0{bottom:431.813333pt;}
.y21{bottom:439.173333pt;}
.y72{bottom:442.053333pt;}
.y66{bottom:442.373333pt;}
.y49{bottom:443.973333pt;}
.y87{bottom:446.853333pt;}
.yaf{bottom:453.253333pt;}
.y94{bottom:453.573333pt;}
.y20{bottom:459.973333pt;}
.y48{bottom:465.093333pt;}
.y71{bottom:474.053333pt;}
.y65{bottom:474.373333pt;}
.y1f{bottom:477.573333pt;}
.y86{bottom:478.533333pt;}
.y93{bottom:481.093333pt;}
.y47{bottom:486.533333pt;}
.y1e{bottom:495.173333pt;}
.yae{bottom:495.813333pt;}
.y92{bottom:499.973333pt;}
.y64{bottom:506.373333pt;}
.y46{bottom:507.653333pt;}
.y85{bottom:510.560000pt;}
.yad{bottom:516.960000pt;}
.y1d{bottom:522.080000pt;}
.y45{bottom:529.120000pt;}
.y63{bottom:538.080000pt;}
.yac{bottom:538.400000pt;}
.y1c{bottom:539.680000pt;}
.y84{bottom:542.560000pt;}
.y44{bottom:550.240000pt;}
.yab{bottom:559.520000pt;}
.y1b{bottom:566.240000pt;}
.y62{bottom:570.080000pt;}
.y43{bottom:571.680000pt;}
.y83{bottom:574.560000pt;}
.yaa{bottom:580.960000pt;}
.y1a{bottom:583.840000pt;}
.y42{bottom:592.800000pt;}
.y19{bottom:601.760000pt;}
.y61{bottom:602.080000pt;}
.y82{bottom:606.240000pt;}
.y41{bottom:614.240000pt;}
.y18{bottom:619.360000pt;}
.ya9{bottom:623.546667pt;}
.y60{bottom:634.106667pt;}
.y40{bottom:635.386667pt;}
.y17{bottom:637.306667pt;}
.y81{bottom:638.266667pt;}
.ya8{bottom:644.666667pt;}
.y16{bottom:654.906667pt;}
.y3f{bottom:656.826667pt;}
.y5f{bottom:665.786667pt;}
.ya7{bottom:666.106667pt;}
.y80{bottom:670.266667pt;}
.y15{bottom:672.826667pt;}
.y3e{bottom:677.946667pt;}
.ya6{bottom:687.226667pt;}
.y14{bottom:690.426667pt;}
.y5e{bottom:697.786667pt;}
.y3d{bottom:699.386667pt;}
.y7f{bottom:702.266667pt;}
.y13{bottom:708.026667pt;}
.ya5{bottom:708.666667pt;}
.y3c{bottom:720.506667pt;}
.y12{bottom:725.946667pt;}
.y5d{bottom:729.786667pt;}
.y7e{bottom:733.986667pt;}
.y3b{bottom:741.986667pt;}
.y11{bottom:743.586667pt;}
.ya4{bottom:751.266667pt;}
.y5c{bottom:761.826667pt;}
.y3a{bottom:763.106667pt;}
.y7d{bottom:765.986667pt;}
.y10{bottom:770.146667pt;}
.ya3{bottom:772.386667pt;}
.y39{bottom:784.546667pt;}
.y5b{bottom:793.506667pt;}
.ya2{bottom:793.826667pt;}
.yf{bottom:797.026667pt;}
.y7c{bottom:797.986667pt;}
.ye{bottom:814.626667pt;}
.ya1{bottom:814.946667pt;}
.y38{bottom:825.506667pt;}
.y7b{bottom:828.066667pt;}
.yd{bottom:833.506667pt;}
.ya0{bottom:836.386667pt;}
.yc{bottom:854.973333pt;}
.y37{bottom:857.533333pt;}
.yb{bottom:876.093333pt;}
.y36{bottom:878.973333pt;}
.y5a{bottom:889.533333pt;}
.ya{bottom:897.533333pt;}
.y35{bottom:900.093333pt;}
.y9{bottom:918.333333pt;}
.y59{bottom:921.213333pt;}
.y34{bottom:921.533333pt;}
.y8{bottom:940.093333pt;}
.y33{bottom:942.653333pt;}
.y58{bottom:953.213333pt;}
.y7{bottom:959.653333pt;}
.y32{bottom:964.133333pt;}
.y6{bottom:978.853333pt;}
.y31{bottom:985.253333pt;}
.y3{bottom:1069.093333pt;}
.h2{height:21.120000pt;}
.h3{height:44.735000pt;}
.hb{height:49.717500pt;}
.h7{height:54.395000pt;}
.h5{height:54.452500pt;}
.h4{height:55.256809pt;}
.h9{height:59.125000pt;}
.h8{height:59.187500pt;}
.h6{height:60.519362pt;}
.he{height:62.388479pt;}
.ha{height:64.500000pt;}
.hf{height:65.781915pt;}
.hd{height:66.625000pt;}
.hc{height:77.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:27.520000pt;}
.w3{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.600000pt;}
.x3{left:21.440000pt;}
.xd{left:103.711988pt;}
.x4{left:113.311988pt;}
.xa{left:117.183988pt;}
.x7{left:140.546655pt;}
.x13{left:160.706655pt;}
.x5{left:170.626655pt;}
.xe{left:179.586655pt;}
.x11{left:269.213322pt;}
.x12{left:324.933322pt;}
.x17{left:370.079988pt;}
.x8{left:388.639988pt;}
.x9{left:416.159988pt;}
.x6{left:466.746655pt;}
.x14{left:501.306655pt;}
.xc{left:563.106655pt;}
.xb{left:576.866655pt;}
.xf{left:654.973322pt;}
.x16{left:664.893322pt;}
.x1{left:696.613333pt;}
.x15{left:710.373322pt;}
.x10{left:715.493322pt;}
}




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