
    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_7466caabd7b843c0ea297d91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_f0724e8ecd895d0681c0d585.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_17e90a65018ae79cd713cd79.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694336;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_19aec605afe89f37baa29e36.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_0775cb325a47c5db84b51a6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_7561ef4c46bf393530e96e2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_e18299bab5de820aaf5a005b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_6bdc0ac1a1ad9c33f3daae6f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_e81bd015af16fb8271b0603b.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls10{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.058200px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.262560px;}
.ls19{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.513360px;}
.ls12{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.lsa{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.440000px;}
.lsd{letter-spacing:5.940000px;}
.ls15{letter-spacing:7.200000px;}
.ls17{letter-spacing:8.760000px;}
.ls8{letter-spacing:30.384000px;}
.ls11{letter-spacing:31.824000px;}
.ls9{letter-spacing:33.960000px;}
.lsb{letter-spacing:33.984000px;}
.ls4{letter-spacing:84.384000px;}
.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:-72.000000px;}
.ws9{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447560px;}
.ws6{word-spacing:-12.420000px;}
.ws4{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-40.320000px;}
._18{margin-left:-38.710080px;}
._22{margin-left:-33.214320px;}
._17{margin-left:-12.817920px;}
._24{margin-left:-10.872000px;}
._f{margin-left:-2.257920px;}
._0{margin-left:-1.152000px;}
._1{width:1.008000px;}
._4{width:2.113920px;}
._a{width:3.934080px;}
._d{width:5.929920px;}
._8{width:7.848000px;}
._7{width:9.360000px;}
._5{width:10.584000px;}
._6{width:11.592000px;}
._b{width:13.176000px;}
._c{width:14.328000px;}
._14{width:15.696000px;}
._10{width:16.992000px;}
._e{width:19.368000px;}
._11{width:20.592000px;}
._13{width:21.804000px;}
._1c{width:23.256000px;}
._1d{width:24.480000px;}
._1a{width:25.560000px;}
._1b{width:27.072000px;}
._20{width:28.584000px;}
._26{width:29.664000px;}
._1e{width:31.656000px;}
._1f{width:32.760000px;}
._25{width:35.064000px;}
._2b{width:37.800000px;}
._21{width:38.952000px;}
._12{width:39.960000px;}
._27{width:41.832000px;}
._19{width:45.000000px;}
._16{width:46.728000px;}
._15{width:48.096000px;}
._2a{width:67.429920px;}
._29{width:68.760000px;}
._2c{width:78.552000px;}
._28{width:82.728000px;}
._2d{width:97.056000px;}
._2e{width:98.352000px;}
._2{width:115.920000px;}
._23{width:119.878560px;}
._3{width:194.400000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:4.320000px;}
.yd2{bottom:4.680000px;}
.y69{bottom:14.940000px;}
.y6b{bottom:15.300000px;}
.y8{bottom:31.140000px;}
.y7{bottom:68.400000px;}
.y6{bottom:88.596000px;}
.y5{bottom:108.576000px;}
.y4{bottom:129.276000px;}
.y3{bottom:149.436000px;}
.y87{bottom:168.690000px;}
.y67{bottom:169.050000px;}
.y7d{bottom:176.610000px;}
.y37{bottom:181.110000px;}
.yb6{bottom:184.170000px;}
.y86{bottom:185.970000px;}
.y66{bottom:187.410000px;}
.y7c{bottom:187.950000px;}
.y80{bottom:188.130000px;}
.y74{bottom:194.970000px;}
.yd1{bottom:201.630000px;}
.y36{bottom:201.810000px;}
.y85{bottom:203.250000px;}
.yb5{bottom:204.870000px;}
.yd0{bottom:205.230000px;}
.y73{bottom:206.310000px;}
.y7b{bottom:208.830000px;}
.y65{bottom:213.330000px;}
.y35{bottom:222.510000px;}
.y64{bottom:223.950000px;}
.ycf{bottom:224.490000px;}
.yb4{bottom:225.570000px;}
.y84{bottom:227.370000px;}
.y7a{bottom:229.530000px;}
.y83{bottom:238.710000px;}
.yce{bottom:241.770000px;}
.y34{bottom:243.210000px;}
.yb3{bottom:246.270000px;}
.y63{bottom:249.870000px;}
.y79{bottom:250.230000px;}
.ycd{bottom:259.050000px;}
.y62{bottom:261.210000px;}
.y33{bottom:263.910000px;}
.yb2{bottom:266.970000px;}
.y72{bottom:270.930000px;}
.ycc{bottom:276.330000px;}
.y32{bottom:284.610000px;}
.yb1{bottom:287.670000px;}
.y61{bottom:291.630000px;}
.ycb{bottom:293.430000px;}
.y31{bottom:305.310000px;}
.yb0{bottom:308.370000px;}
.yca{bottom:310.710000px;}
.y60{bottom:312.330000px;}
.y30{bottom:326.010000px;}
.yc9{bottom:327.990000px;}
.yaf{bottom:329.070000px;}
.y5f{bottom:333.030000px;}
.yc8{bottom:345.315000px;}
.y2f{bottom:346.395000px;}
.yae{bottom:349.815000px;}
.y5e{bottom:353.775000px;}
.yc7{bottom:362.595000px;}
.y2e{bottom:367.455000px;}
.yad{bottom:370.515000px;}
.y5d{bottom:374.475000px;}
.y2d{bottom:388.155000px;}
.yc6{bottom:389.595000px;}
.yac{bottom:391.215000px;}
.y5c{bottom:395.175000px;}
.y2c{bottom:408.855000px;}
.yab{bottom:411.915000px;}
.y5b{bottom:415.875000px;}
.yc5{bottom:429.375000px;}
.y2b{bottom:429.555000px;}
.yaa{bottom:432.615000px;}
.y7f{bottom:436.035000px;}
.y5a{bottom:436.395000px;}
.yc4{bottom:449.535000px;}
.y2a{bottom:450.255000px;}
.ya9{bottom:453.315000px;}
.y7e{bottom:456.735000px;}
.y59{bottom:457.095000px;}
.yc3{bottom:466.815000px;}
.y29{bottom:470.955000px;}
.ya8{bottom:474.015000px;}
.y89{bottom:477.435000px;}
.y58{bottom:477.795000px;}
.yc2{bottom:484.095000px;}
.y28{bottom:491.655000px;}
.ya7{bottom:494.715000px;}
.y88{bottom:498.135000px;}
.y57{bottom:498.495000px;}
.yc1{bottom:501.195000px;}
.y27{bottom:512.355000px;}
.ya6{bottom:515.415000px;}
.yc0{bottom:518.475000px;}
.y82{bottom:518.835000px;}
.y56{bottom:519.195000px;}
.y26{bottom:533.055000px;}
.ybf{bottom:535.755000px;}
.ya5{bottom:536.115000px;}
.y81{bottom:539.535000px;}
.y55{bottom:539.895000px;}
.ybe{bottom:553.035000px;}
.y25{bottom:553.755000px;}
.ya4{bottom:556.815000px;}
.y54{bottom:560.595000px;}
.ybd{bottom:570.315000px;}
.y24{bottom:574.455000px;}
.ya3{bottom:577.515000px;}
.y53{bottom:581.295000px;}
.ybc{bottom:594.435000px;}
.y23{bottom:595.155000px;}
.ya2{bottom:598.215000px;}
.y52{bottom:601.995000px;}
.ybb{bottom:604.725000px;}
.y22{bottom:615.885000px;}
.ya1{bottom:618.945000px;}
.y51{bottom:622.725000px;}
.y21{bottom:636.585000px;}
.ya0{bottom:639.645000px;}
.y50{bottom:643.425000px;}
.y20{bottom:657.285000px;}
.y9f{bottom:660.345000px;}
.y78{bottom:663.765000px;}
.y4f{bottom:664.125000px;}
.y1f{bottom:677.985000px;}
.y9e{bottom:681.045000px;}
.y77{bottom:684.465000px;}
.y4e{bottom:684.825000px;}
.y6a{bottom:687.705000px;}
.y1e{bottom:698.685000px;}
.y9d{bottom:701.745000px;}
.y4d{bottom:705.165000px;}
.y71{bottom:705.525000px;}
.y1d{bottom:719.385000px;}
.y9c{bottom:722.445000px;}
.y4c{bottom:725.865000px;}
.y70{bottom:726.225000px;}
.y1c{bottom:740.085000px;}
.y9b{bottom:743.145000px;}
.y4b{bottom:746.565000px;}
.y6f{bottom:746.925000px;}
.y68{bottom:758.625000px;}
.y1b{bottom:760.785000px;}
.y9a{bottom:763.845000px;}
.y4a{bottom:767.265000px;}
.y6e{bottom:767.625000px;}
.y1a{bottom:781.485000px;}
.y99{bottom:784.545000px;}
.y49{bottom:787.965000px;}
.y6d{bottom:788.325000px;}
.y19{bottom:802.185000px;}
.y98{bottom:805.245000px;}
.y48{bottom:808.665000px;}
.y6c{bottom:809.025000px;}
.y18{bottom:822.885000px;}
.y97{bottom:825.945000px;}
.y76{bottom:829.365000px;}
.y47{bottom:829.725000px;}
.y17{bottom:843.585000px;}
.y96{bottom:846.465000px;}
.y75{bottom:850.065000px;}
.y46{bottom:850.425000px;}
.y16{bottom:864.285000px;}
.y95{bottom:868.650000px;}
.yba{bottom:870.810000px;}
.y45{bottom:871.170000px;}
.y15{bottom:884.670000px;}
.y94{bottom:889.350000px;}
.y44{bottom:891.870000px;}
.y14{bottom:905.370000px;}
.y93{bottom:910.050000px;}
.yb9{bottom:912.210000px;}
.y43{bottom:912.570000px;}
.y13{bottom:926.430000px;}
.y92{bottom:930.750000px;}
.yb8{bottom:932.910000px;}
.y42{bottom:933.270000px;}
.y12{bottom:947.130000px;}
.y91{bottom:951.450000px;}
.yb7{bottom:953.610000px;}
.y41{bottom:953.970000px;}
.y11{bottom:968.010000px;}
.y90{bottom:971.970000px;}
.y40{bottom:974.670000px;}
.y10{bottom:992.130000px;}
.y8f{bottom:994.110000px;}
.y3f{bottom:995.370000px;}
.y8e{bottom:1014.810000px;}
.y3e{bottom:1016.070000px;}
.yf{bottom:1016.250000px;}
.y8d{bottom:1035.510000px;}
.y3d{bottom:1036.770000px;}
.ye{bottom:1040.910000px;}
.y8c{bottom:1056.210000px;}
.y3c{bottom:1057.470000px;}
.yd{bottom:1065.030000px;}
.y8b{bottom:1076.910000px;}
.y3b{bottom:1078.170000px;}
.yc{bottom:1089.150000px;}
.y8a{bottom:1097.430000px;}
.y3a{bottom:1098.870000px;}
.yb{bottom:1112.910000px;}
.y39{bottom:1119.570000px;}
.ya{bottom:1137.060000px;}
.y38{bottom:1140.300000px;}
.y2{bottom:1163.700000px;}
.y1{bottom:1193.040000px;}
.h5{height:18.360000px;}
.h15{height:20.160000px;}
.hc{height:27.907031px;}
.hd{height:30.780000px;}
.he{height:30.960000px;}
.h11{height:34.114922px;}
.h6{height:42.894141px;}
.h3{height:47.545312px;}
.h14{height:52.435898px;}
.h13{height:52.581797px;}
.h12{height:53.573906px;}
.h4{height:63.175781px;}
.h10{height:63.351562px;}
.h2{height:63.949219px;}
.h9{height:64.546875px;}
.h8{height:73.915664px;}
.h7{height:74.820586px;}
.hb{height:75.093750px;}
.hf{height:75.447773px;}
.ha{height:75.965977px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:15.300000px;}
.w3{width:56.700000px;}
.w4{width:56.880000px;}
.w5{width:272.010000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x16{left:99.036000px;}
.x1{left:106.416000px;}
.x5{left:125.316000px;}
.x12{left:133.416000px;}
.xa{left:159.510000px;}
.xc{left:186.510000px;}
.x13{left:204.510000px;}
.x8{left:208.470000px;}
.x10{left:212.610000px;}
.x11{left:266.655000px;}
.x6{left:285.555000px;}
.x3{left:337.395000px;}
.xd{left:342.615000px;}
.xf{left:433.725000px;}
.x4{left:438.045000px;}
.xb{left:446.505000px;}
.x2{left:469.905000px;}
.x14{left:480.525000px;}
.x15{left:492.225000px;}
.x7{left:612.870000px;}
.x9{left:786.780000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.051733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.233387pt;}
.ls19{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.456320pt;}
.ls12{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.280000pt;}
.lsd{letter-spacing:5.280000pt;}
.ls15{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.786667pt;}
.ls8{letter-spacing:27.008000pt;}
.ls11{letter-spacing:28.288000pt;}
.ls9{letter-spacing:30.186667pt;}
.lsb{letter-spacing:30.208000pt;}
.ls4{letter-spacing:75.008000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953387pt;}
.ws6{word-spacing:-11.040000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-35.840000pt;}
._18{margin-left:-34.408960pt;}
._22{margin-left:-29.523840pt;}
._17{margin-left:-11.393707pt;}
._24{margin-left:-9.664000pt;}
._f{margin-left:-2.007040pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.896000pt;}
._4{width:1.879040pt;}
._a{width:3.496960pt;}
._d{width:5.271040pt;}
._8{width:6.976000pt;}
._7{width:8.320000pt;}
._5{width:9.408000pt;}
._6{width:10.304000pt;}
._b{width:11.712000pt;}
._c{width:12.736000pt;}
._14{width:13.952000pt;}
._10{width:15.104000pt;}
._e{width:17.216000pt;}
._11{width:18.304000pt;}
._13{width:19.381333pt;}
._1c{width:20.672000pt;}
._1d{width:21.760000pt;}
._1a{width:22.720000pt;}
._1b{width:24.064000pt;}
._20{width:25.408000pt;}
._26{width:26.368000pt;}
._1e{width:28.138667pt;}
._1f{width:29.120000pt;}
._25{width:31.168000pt;}
._2b{width:33.600000pt;}
._21{width:34.624000pt;}
._12{width:35.520000pt;}
._27{width:37.184000pt;}
._19{width:40.000000pt;}
._16{width:41.536000pt;}
._15{width:42.752000pt;}
._2a{width:59.937707pt;}
._29{width:61.120000pt;}
._2c{width:69.824000pt;}
._28{width:73.536000pt;}
._2d{width:86.272000pt;}
._2e{width:87.424000pt;}
._2{width:103.040000pt;}
._23{width:106.558720pt;}
._3{width:172.800000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.840000pt;}
.yd2{bottom:4.160000pt;}
.y69{bottom:13.280000pt;}
.y6b{bottom:13.600000pt;}
.y8{bottom:27.680000pt;}
.y7{bottom:60.800000pt;}
.y6{bottom:78.752000pt;}
.y5{bottom:96.512000pt;}
.y4{bottom:114.912000pt;}
.y3{bottom:132.832000pt;}
.y87{bottom:149.946667pt;}
.y67{bottom:150.266667pt;}
.y7d{bottom:156.986667pt;}
.y37{bottom:160.986667pt;}
.yb6{bottom:163.706667pt;}
.y86{bottom:165.306667pt;}
.y66{bottom:166.586667pt;}
.y7c{bottom:167.066667pt;}
.y80{bottom:167.226667pt;}
.y74{bottom:173.306667pt;}
.yd1{bottom:179.226667pt;}
.y36{bottom:179.386667pt;}
.y85{bottom:180.666667pt;}
.yb5{bottom:182.106667pt;}
.yd0{bottom:182.426667pt;}
.y73{bottom:183.386667pt;}
.y7b{bottom:185.626667pt;}
.y65{bottom:189.626667pt;}
.y35{bottom:197.786667pt;}
.y64{bottom:199.066667pt;}
.ycf{bottom:199.546667pt;}
.yb4{bottom:200.506667pt;}
.y84{bottom:202.106667pt;}
.y7a{bottom:204.026667pt;}
.y83{bottom:212.186667pt;}
.yce{bottom:214.906667pt;}
.y34{bottom:216.186667pt;}
.yb3{bottom:218.906667pt;}
.y63{bottom:222.106667pt;}
.y79{bottom:222.426667pt;}
.ycd{bottom:230.266667pt;}
.y62{bottom:232.186667pt;}
.y33{bottom:234.586667pt;}
.yb2{bottom:237.306667pt;}
.y72{bottom:240.826667pt;}
.ycc{bottom:245.626667pt;}
.y32{bottom:252.986667pt;}
.yb1{bottom:255.706667pt;}
.y61{bottom:259.226667pt;}
.ycb{bottom:260.826667pt;}
.y31{bottom:271.386667pt;}
.yb0{bottom:274.106667pt;}
.yca{bottom:276.186667pt;}
.y60{bottom:277.626667pt;}
.y30{bottom:289.786667pt;}
.yc9{bottom:291.546667pt;}
.yaf{bottom:292.506667pt;}
.y5f{bottom:296.026667pt;}
.yc8{bottom:306.946667pt;}
.y2f{bottom:307.906667pt;}
.yae{bottom:310.946667pt;}
.y5e{bottom:314.466667pt;}
.yc7{bottom:322.306667pt;}
.y2e{bottom:326.626667pt;}
.yad{bottom:329.346667pt;}
.y5d{bottom:332.866667pt;}
.y2d{bottom:345.026667pt;}
.yc6{bottom:346.306667pt;}
.yac{bottom:347.746667pt;}
.y5c{bottom:351.266667pt;}
.y2c{bottom:363.426667pt;}
.yab{bottom:366.146667pt;}
.y5b{bottom:369.666667pt;}
.yc5{bottom:381.666667pt;}
.y2b{bottom:381.826667pt;}
.yaa{bottom:384.546667pt;}
.y7f{bottom:387.586667pt;}
.y5a{bottom:387.906667pt;}
.yc4{bottom:399.586667pt;}
.y2a{bottom:400.226667pt;}
.ya9{bottom:402.946667pt;}
.y7e{bottom:405.986667pt;}
.y59{bottom:406.306667pt;}
.yc3{bottom:414.946667pt;}
.y29{bottom:418.626667pt;}
.ya8{bottom:421.346667pt;}
.y89{bottom:424.386667pt;}
.y58{bottom:424.706667pt;}
.yc2{bottom:430.306667pt;}
.y28{bottom:437.026667pt;}
.ya7{bottom:439.746667pt;}
.y88{bottom:442.786667pt;}
.y57{bottom:443.106667pt;}
.yc1{bottom:445.506667pt;}
.y27{bottom:455.426667pt;}
.ya6{bottom:458.146667pt;}
.yc0{bottom:460.866667pt;}
.y82{bottom:461.186667pt;}
.y56{bottom:461.506667pt;}
.y26{bottom:473.826667pt;}
.ybf{bottom:476.226667pt;}
.ya5{bottom:476.546667pt;}
.y81{bottom:479.586667pt;}
.y55{bottom:479.906667pt;}
.ybe{bottom:491.586667pt;}
.y25{bottom:492.226667pt;}
.ya4{bottom:494.946667pt;}
.y54{bottom:498.306667pt;}
.ybd{bottom:506.946667pt;}
.y24{bottom:510.626667pt;}
.ya3{bottom:513.346667pt;}
.y53{bottom:516.706667pt;}
.ybc{bottom:528.386667pt;}
.y23{bottom:529.026667pt;}
.ya2{bottom:531.746667pt;}
.y52{bottom:535.106667pt;}
.ybb{bottom:537.533333pt;}
.y22{bottom:547.453333pt;}
.ya1{bottom:550.173333pt;}
.y51{bottom:553.533333pt;}
.y21{bottom:565.853333pt;}
.ya0{bottom:568.573333pt;}
.y50{bottom:571.933333pt;}
.y20{bottom:584.253333pt;}
.y9f{bottom:586.973333pt;}
.y78{bottom:590.013333pt;}
.y4f{bottom:590.333333pt;}
.y1f{bottom:602.653333pt;}
.y9e{bottom:605.373333pt;}
.y77{bottom:608.413333pt;}
.y4e{bottom:608.733333pt;}
.y6a{bottom:611.293333pt;}
.y1e{bottom:621.053333pt;}
.y9d{bottom:623.773333pt;}
.y4d{bottom:626.813333pt;}
.y71{bottom:627.133333pt;}
.y1d{bottom:639.453333pt;}
.y9c{bottom:642.173333pt;}
.y4c{bottom:645.213333pt;}
.y70{bottom:645.533333pt;}
.y1c{bottom:657.853333pt;}
.y9b{bottom:660.573333pt;}
.y4b{bottom:663.613333pt;}
.y6f{bottom:663.933333pt;}
.y68{bottom:674.333333pt;}
.y1b{bottom:676.253333pt;}
.y9a{bottom:678.973333pt;}
.y4a{bottom:682.013333pt;}
.y6e{bottom:682.333333pt;}
.y1a{bottom:694.653333pt;}
.y99{bottom:697.373333pt;}
.y49{bottom:700.413333pt;}
.y6d{bottom:700.733333pt;}
.y19{bottom:713.053333pt;}
.y98{bottom:715.773333pt;}
.y48{bottom:718.813333pt;}
.y6c{bottom:719.133333pt;}
.y18{bottom:731.453333pt;}
.y97{bottom:734.173333pt;}
.y76{bottom:737.213333pt;}
.y47{bottom:737.533333pt;}
.y17{bottom:749.853333pt;}
.y96{bottom:752.413333pt;}
.y75{bottom:755.613333pt;}
.y46{bottom:755.933333pt;}
.y16{bottom:768.253333pt;}
.y95{bottom:772.133333pt;}
.yba{bottom:774.053333pt;}
.y45{bottom:774.373333pt;}
.y15{bottom:786.373333pt;}
.y94{bottom:790.533333pt;}
.y44{bottom:792.773333pt;}
.y14{bottom:804.773333pt;}
.y93{bottom:808.933333pt;}
.yb9{bottom:810.853333pt;}
.y43{bottom:811.173333pt;}
.y13{bottom:823.493333pt;}
.y92{bottom:827.333333pt;}
.yb8{bottom:829.253333pt;}
.y42{bottom:829.573333pt;}
.y12{bottom:841.893333pt;}
.y91{bottom:845.733333pt;}
.yb7{bottom:847.653333pt;}
.y41{bottom:847.973333pt;}
.y11{bottom:860.453333pt;}
.y90{bottom:863.973333pt;}
.y40{bottom:866.373333pt;}
.y10{bottom:881.893333pt;}
.y8f{bottom:883.653333pt;}
.y3f{bottom:884.773333pt;}
.y8e{bottom:902.053333pt;}
.y3e{bottom:903.173333pt;}
.yf{bottom:903.333333pt;}
.y8d{bottom:920.453333pt;}
.y3d{bottom:921.573333pt;}
.ye{bottom:925.253333pt;}
.y8c{bottom:938.853333pt;}
.y3c{bottom:939.973333pt;}
.yd{bottom:946.693333pt;}
.y8b{bottom:957.253333pt;}
.y3b{bottom:958.373333pt;}
.yc{bottom:968.133333pt;}
.y8a{bottom:975.493333pt;}
.y3a{bottom:976.773333pt;}
.yb{bottom:989.253333pt;}
.y39{bottom:995.173333pt;}
.ya{bottom:1010.720000pt;}
.y38{bottom:1013.600000pt;}
.y2{bottom:1034.400000pt;}
.y1{bottom:1060.480000pt;}
.h5{height:16.320000pt;}
.h15{height:17.920000pt;}
.hc{height:24.806250pt;}
.hd{height:27.360000pt;}
.he{height:27.520000pt;}
.h11{height:30.324375pt;}
.h6{height:38.128125pt;}
.h3{height:42.262500pt;}
.h14{height:46.609688pt;}
.h13{height:46.739375pt;}
.h12{height:47.621250pt;}
.h4{height:56.156250pt;}
.h10{height:56.312500pt;}
.h2{height:56.843750pt;}
.h9{height:57.375000pt;}
.h8{height:65.702812pt;}
.h7{height:66.507188pt;}
.hb{height:66.750000pt;}
.hf{height:67.064688pt;}
.ha{height:67.525312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:13.600000pt;}
.w3{width:50.400000pt;}
.w4{width:50.560000pt;}
.w5{width:241.786667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x16{left:88.032000pt;}
.x1{left:94.592000pt;}
.x5{left:111.392000pt;}
.x12{left:118.592000pt;}
.xa{left:141.786667pt;}
.xc{left:165.786667pt;}
.x13{left:181.786667pt;}
.x8{left:185.306667pt;}
.x10{left:188.986667pt;}
.x11{left:237.026667pt;}
.x6{left:253.826667pt;}
.x3{left:299.906667pt;}
.xd{left:304.546667pt;}
.xf{left:385.533333pt;}
.x4{left:389.373333pt;}
.xb{left:396.893333pt;}
.x2{left:417.693333pt;}
.x14{left:427.133333pt;}
.x15{left:437.533333pt;}
.x7{left:544.773333pt;}
.x9{left:699.360000pt;}
}




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