
    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_f21235890710a3d51befe7f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_78660d3fcbc9b25bc5ad7086.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8257dd54e3d2c40d7e4f7c31.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_77f62c6bf0e3bede2f113980.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_11a6611b778722dfae35c6fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ea0f30e15163725bcb649aab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_7c0c527e6ccd8dcd661e192f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_ce8cd3646fe92e8c88769012.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_11f0b0ef29ee7ec29c91a786.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_79aa385c477b655a17da921a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_e2ef0f34bd674b8112798f4b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.272400px;}
.ls9{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.058320px;}
.ls12{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.018000px;}
.ls29{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.153360px;}
.ls28{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.257760px;}
.lsf{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.542160px;}
.ls1c{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.900000px;}
.ls1b{letter-spacing:0.926640px;}
.ls2{letter-spacing:1.440000px;}
.ls35{letter-spacing:5.040000px;}
.ls22{letter-spacing:5.760000px;}
.lsb{letter-spacing:6.480000px;}
.ls17{letter-spacing:6.660000px;}
.ls1e{letter-spacing:7.200000px;}
.ls13{letter-spacing:7.920000px;}
.ls26{letter-spacing:8.640000px;}
.ls14{letter-spacing:8.820000px;}
.ls31{letter-spacing:10.224000px;}
.ls21{letter-spacing:12.240000px;}
.ls2d{letter-spacing:12.960000px;}
.ls2f{letter-spacing:13.680000px;}
.ls3{letter-spacing:14.400000px;}
.ls2c{letter-spacing:15.840000px;}
.ls36{letter-spacing:17.424000px;}
.ls4{letter-spacing:18.000000px;}
.ls30{letter-spacing:20.340000px;}
.ls34{letter-spacing:20.880000px;}
.ls11{letter-spacing:21.060000px;}
.ls1f{letter-spacing:21.600000px;}
.ls10{letter-spacing:24.660000px;}
.ls2e{letter-spacing:26.640000px;}
.ls1d{letter-spacing:27.360000px;}
.ls27{letter-spacing:28.080000px;}
.ls33{letter-spacing:28.800000px;}
.ls1{letter-spacing:29.520000px;}
.ls5{letter-spacing:34.560000px;}
.lse{letter-spacing:34.740000px;}
.ls25{letter-spacing:40.320000px;}
.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;}
}
.ws0{word-spacing:-21.396960px;}
.ws2{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.280000px;}
.ws6{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-2.304000px;}
._0{margin-left:-1.296000px;}
._2{width:1.152000px;}
._1{width:2.208000px;}
._14{width:3.576000px;}
._23{width:4.584000px;}
._13{width:5.616000px;}
._11{width:7.344000px;}
._12{width:9.144000px;}
._6{width:10.152000px;}
._1f{width:11.232000px;}
._1b{width:12.744000px;}
._e{width:13.824000px;}
._4{width:15.168000px;}
._3{width:16.848000px;}
._17{width:20.160000px;}
._16{width:21.528000px;}
._19{width:22.872000px;}
._15{width:24.048000px;}
._5{width:25.128000px;}
._9{width:26.472000px;}
._1e{width:27.600000px;}
._8{width:29.520000px;}
._7{width:30.672000px;}
._1a{width:31.896000px;}
._29{width:32.988000px;}
._d{width:34.356000px;}
._c{width:35.640000px;}
._24{width:37.584000px;}
._27{width:39.816000px;}
._28{width:40.968000px;}
._b{width:42.840000px;}
._a{width:44.496000px;}
._20{width:47.193840px;}
._21{width:48.614160px;}
._25{width:51.336000px;}
._26{width:52.344000px;}
._f{width:64.488000px;}
._10{width:65.724000px;}
._1c{width:67.392000px;}
._1d{width:68.472000px;}
._22{width:91.731600px;}
._2a{width:132.084000px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(47,84,150);}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(204,0,102);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:48.276000px;}
.y6{bottom:68.616000px;}
.y5{bottom:92.376000px;}
.y7a{bottom:111.096000px;}
.y6c{bottom:111.636000px;}
.y84{bottom:111.996000px;}
.y87{bottom:116.856000px;}
.y79{bottom:126.576000px;}
.y4b{bottom:128.916000px;}
.y83{bottom:130.176000px;}
.y78{bottom:131.076000px;}
.y86{bottom:132.696000px;}
.y6b{bottom:134.136000px;}
.y7b{bottom:135.036000px;}
.y77{bottom:142.236000px;}
.y6a{bottom:146.016000px;}
.y76{bottom:146.736000px;}
.y82{bottom:148.536000px;}
.y4a{bottom:148.896000px;}
.y8e{bottom:149.976000px;}
.y81{bottom:153.750000px;}
.y75{bottom:157.710000px;}
.y30{bottom:158.790000px;}
.y69{bottom:163.290000px;}
.y80{bottom:166.530000px;}
.y68{bottom:168.510000px;}
.y49{bottom:168.690000px;}
.y7f{bottom:171.750000px;}
.y74{bottom:173.190000px;}
.y73{bottom:177.690000px;}
.y67{bottom:180.570000px;}
.y2f{bottom:182.550000px;}
.y7e{bottom:187.770000px;}
.y48{bottom:188.490000px;}
.y72{bottom:189.210000px;}
.y8d{bottom:191.370000px;}
.y71{bottom:194.430000px;}
.y66{bottom:197.850000px;}
.y2e{bottom:206.490000px;}
.y47{bottom:208.290000px;}
.y70{bottom:210.450000px;}
.y46{bottom:213.510000px;}
.y8c{bottom:213.690000px;}
.y65{bottom:215.130000px;}
.y45{bottom:228.090000px;}
.y2d{bottom:230.250000px;}
.y64{bottom:232.230000px;}
.y8b{bottom:236.010000px;}
.y44{bottom:248.070000px;}
.y63{bottom:249.510000px;}
.y43{bottom:253.290000px;}
.y6f{bottom:253.650000px;}
.y2c{bottom:254.010000px;}
.y8a{bottom:258.510000px;}
.y42{bottom:265.350000px;}
.y62{bottom:266.790000px;}
.y41{bottom:270.570000px;}
.y61{bottom:272.010000px;}
.y2b{bottom:277.770000px;}
.y89{bottom:280.830000px;}
.y40{bottom:282.675000px;}
.y60{bottom:284.115000px;}
.y5f{bottom:289.335000px;}
.y3f{bottom:299.955000px;}
.y5e{bottom:301.395000px;}
.y2a{bottom:301.755000px;}
.y88{bottom:303.195000px;}
.y3e{bottom:305.175000px;}
.y5d{bottom:318.675000px;}
.y3d{bottom:321.195000px;}
.y5c{bottom:323.895000px;}
.y29{bottom:325.515000px;}
.y5b{bottom:335.775000px;}
.y28{bottom:349.275000px;}
.y5a{bottom:353.055000px;}
.y59{bottom:358.275000px;}
.y58{bottom:370.335000px;}
.y27{bottom:373.035000px;}
.y57{bottom:375.555000px;}
.y56{bottom:387.615000px;}
.y55{bottom:392.835000px;}
.y26{bottom:396.615000px;}
.y3c{bottom:396.975000px;}
.y54{bottom:408.855000px;}
.y25{bottom:420.375000px;}
.y3b{bottom:420.735000px;}
.y24{bottom:444.495000px;}
.y23{bottom:468.255000px;}
.y53{bottom:475.095000px;}
.y22{bottom:492.195000px;}
.y21{bottom:515.955000px;}
.y20{bottom:539.715000px;}
.y52{bottom:546.555000px;}
.y1f{bottom:563.475000px;}
.y3a{bottom:570.345000px;}
.y1e{bottom:587.265000px;}
.y85{bottom:594.105000px;}
.y1d{bottom:611.205000px;}
.y39{bottom:618.045000px;}
.y1c{bottom:634.965000px;}
.y51{bottom:641.805000px;}
.y1b{bottom:658.725000px;}
.y50{bottom:665.565000px;}
.y1a{bottom:682.485000px;}
.y7d{bottom:689.325000px;}
.y19{bottom:706.065000px;}
.y38{bottom:706.425000px;}
.y4f{bottom:713.265000px;}
.y18{bottom:729.825000px;}
.y37{bottom:730.185000px;}
.y17{bottom:753.945000px;}
.y16{bottom:777.705000px;}
.y15{bottom:801.645000px;}
.y36{bottom:808.485000px;}
.y14{bottom:825.405000px;}
.y4e{bottom:832.245000px;}
.y13{bottom:849.210000px;}
.y4d{bottom:856.050000px;}
.y99{bottom:863.970000px;}
.y12{bottom:872.970000px;}
.y98{bottom:887.730000px;}
.y11{bottom:896.910000px;}
.y35{bottom:903.750000px;}
.y97{bottom:910.050000px;}
.y10{bottom:920.670000px;}
.y6e{bottom:927.510000px;}
.y96{bottom:932.370000px;}
.yf{bottom:944.430000px;}
.y4c{bottom:951.270000px;}
.y95{bottom:954.690000px;}
.ye{bottom:968.190000px;}
.y7c{bottom:975.030000px;}
.y94{bottom:977.010000px;}
.yd{bottom:991.770000px;}
.y34{bottom:992.130000px;}
.y93{bottom:999.330000px;}
.yc{bottom:1015.530000px;}
.y33{bottom:1015.890000px;}
.y92{bottom:1021.650000px;}
.yb{bottom:1039.650000px;}
.y91{bottom:1043.970000px;}
.y6d{bottom:1046.490000px;}
.ya{bottom:1063.410000px;}
.y90{bottom:1066.470000px;}
.y9{bottom:1086.810000px;}
.y32{bottom:1087.170000px;}
.y8f{bottom:1088.790000px;}
.y8{bottom:1110.750000px;}
.y31{bottom:1111.110000px;}
.y4{bottom:1131.660000px;}
.y3{bottom:1152.360000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1194.300000px;}
.hf{height:35.332031px;}
.hb{height:38.158594px;}
.h11{height:38.671172px;}
.ha{height:47.344922px;}
.h7{height:50.800781px;}
.h8{height:52.628906px;}
.hc{height:52.669336px;}
.h10{height:52.998047px;}
.hd{height:58.651172px;}
.he{height:59.439023px;}
.h9{height:63.457031px;}
.h4{height:63.673594px;}
.h2{height:65.884219px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h3{height:72.562500px;}
.h12{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:117.035987px;}
.x18{left:121.895987px;}
.x2f{left:126.035987px;}
.x19{left:127.475987px;}
.x3a{left:138.275987px;}
.x28{left:147.275987px;}
.x39{left:149.075987px;}
.x16{left:158.429973px;}
.x7{left:163.649987px;}
.x5{left:167.609987px;}
.xb{left:170.129987px;}
.x29{left:180.569973px;}
.x2{left:184.349987px;}
.xd{left:190.829987px;}
.x2a{left:192.809987px;}
.x8{left:292.394987px;}
.x9{left:306.614987px;}
.xa{left:322.454987px;}
.x25{left:329.474973px;}
.xc{left:331.274987px;}
.x17{left:333.074987px;}
.x27{left:339.014973px;}
.x26{left:341.714987px;}
.x22{left:345.854973px;}
.x1c{left:349.634973px;}
.x23{left:351.974987px;}
.x1d{left:355.754987px;}
.x37{left:363.494973px;}
.x38{left:375.734987px;}
.x6{left:384.374987px;}
.xe{left:410.834987px;}
.xf{left:420.014987px;}
.x30{left:421.094987px;}
.x4{left:422.534987px;}
.x3{left:473.114987px;}
.x10{left:568.004973px;}
.x11{left:574.124987px;}
.x2d{left:600.584973px;}
.x2e{left:612.824987px;}
.x35{left:645.944973px;}
.x24{left:649.544973px;}
.x20{left:655.844973px;}
.x36{left:659.624987px;}
.x21{left:661.964987px;}
.x33{left:666.104973px;}
.x34{left:678.344987px;}
.x2b{left:740.129973px;}
.x2c{left:752.369987px;}
.x12{left:760.829973px;}
.x13{left:772.169987px;}
.x31{left:793.229973px;}
.x1e{left:802.049973px;}
.x32{left:805.469987px;}
.x1f{left:808.169987px;}
.x1a{left:820.589973px;}
.x14{left:823.289973px;}
.x1b{left:826.709987px;}
.x15{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.242133pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.051840pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.016000pt;}
.ls29{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.136320pt;}
.ls28{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.229120pt;}
.lsf{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.481920pt;}
.ls1c{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:0.823680pt;}
.ls2{letter-spacing:1.280000pt;}
.ls35{letter-spacing:4.480000pt;}
.ls22{letter-spacing:5.120000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls17{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:6.400000pt;}
.ls13{letter-spacing:7.040000pt;}
.ls26{letter-spacing:7.680000pt;}
.ls14{letter-spacing:7.840000pt;}
.ls31{letter-spacing:9.088000pt;}
.ls21{letter-spacing:10.880000pt;}
.ls2d{letter-spacing:11.520000pt;}
.ls2f{letter-spacing:12.160000pt;}
.ls3{letter-spacing:12.800000pt;}
.ls2c{letter-spacing:14.080000pt;}
.ls36{letter-spacing:15.488000pt;}
.ls4{letter-spacing:16.000000pt;}
.ls30{letter-spacing:18.080000pt;}
.ls34{letter-spacing:18.560000pt;}
.ls11{letter-spacing:18.720000pt;}
.ls1f{letter-spacing:19.200000pt;}
.ls10{letter-spacing:21.920000pt;}
.ls2e{letter-spacing:23.680000pt;}
.ls1d{letter-spacing:24.320000pt;}
.ls27{letter-spacing:24.960000pt;}
.ls33{letter-spacing:25.600000pt;}
.ls1{letter-spacing:26.240000pt;}
.ls5{letter-spacing:30.720000pt;}
.lse{letter-spacing:30.880000pt;}
.ls25{letter-spacing:35.840000pt;}
.ws0{word-spacing:-19.019520pt;}
.ws2{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.360000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-2.048000pt;}
._0{margin-left:-1.152000pt;}
._2{width:1.024000pt;}
._1{width:1.962667pt;}
._14{width:3.178667pt;}
._23{width:4.074667pt;}
._13{width:4.992000pt;}
._11{width:6.528000pt;}
._12{width:8.128000pt;}
._6{width:9.024000pt;}
._1f{width:9.984000pt;}
._1b{width:11.328000pt;}
._e{width:12.288000pt;}
._4{width:13.482667pt;}
._3{width:14.976000pt;}
._17{width:17.920000pt;}
._16{width:19.136000pt;}
._19{width:20.330667pt;}
._15{width:21.376000pt;}
._5{width:22.336000pt;}
._9{width:23.530667pt;}
._1e{width:24.533333pt;}
._8{width:26.240000pt;}
._7{width:27.264000pt;}
._1a{width:28.352000pt;}
._29{width:29.322667pt;}
._d{width:30.538667pt;}
._c{width:31.680000pt;}
._24{width:33.408000pt;}
._27{width:35.392000pt;}
._28{width:36.416000pt;}
._b{width:38.080000pt;}
._a{width:39.552000pt;}
._20{width:41.950080pt;}
._21{width:43.212587pt;}
._25{width:45.632000pt;}
._26{width:46.528000pt;}
._f{width:57.322667pt;}
._10{width:58.421333pt;}
._1c{width:59.904000pt;}
._1d{width:60.864000pt;}
._22{width:81.539200pt;}
._2a{width:117.408000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:42.912000pt;}
.y6{bottom:60.992000pt;}
.y5{bottom:82.112000pt;}
.y7a{bottom:98.752000pt;}
.y6c{bottom:99.232000pt;}
.y84{bottom:99.552000pt;}
.y87{bottom:103.872000pt;}
.y79{bottom:112.512000pt;}
.y4b{bottom:114.592000pt;}
.y83{bottom:115.712000pt;}
.y78{bottom:116.512000pt;}
.y86{bottom:117.952000pt;}
.y6b{bottom:119.232000pt;}
.y7b{bottom:120.032000pt;}
.y77{bottom:126.432000pt;}
.y6a{bottom:129.792000pt;}
.y76{bottom:130.432000pt;}
.y82{bottom:132.032000pt;}
.y4a{bottom:132.352000pt;}
.y8e{bottom:133.312000pt;}
.y81{bottom:136.666667pt;}
.y75{bottom:140.186667pt;}
.y30{bottom:141.146667pt;}
.y69{bottom:145.146667pt;}
.y80{bottom:148.026667pt;}
.y68{bottom:149.786667pt;}
.y49{bottom:149.946667pt;}
.y7f{bottom:152.666667pt;}
.y74{bottom:153.946667pt;}
.y73{bottom:157.946667pt;}
.y67{bottom:160.506667pt;}
.y2f{bottom:162.266667pt;}
.y7e{bottom:166.906667pt;}
.y48{bottom:167.546667pt;}
.y72{bottom:168.186667pt;}
.y8d{bottom:170.106667pt;}
.y71{bottom:172.826667pt;}
.y66{bottom:175.866667pt;}
.y2e{bottom:183.546667pt;}
.y47{bottom:185.146667pt;}
.y70{bottom:187.066667pt;}
.y46{bottom:189.786667pt;}
.y8c{bottom:189.946667pt;}
.y65{bottom:191.226667pt;}
.y45{bottom:202.746667pt;}
.y2d{bottom:204.666667pt;}
.y64{bottom:206.426667pt;}
.y8b{bottom:209.786667pt;}
.y44{bottom:220.506667pt;}
.y63{bottom:221.786667pt;}
.y43{bottom:225.146667pt;}
.y6f{bottom:225.466667pt;}
.y2c{bottom:225.786667pt;}
.y8a{bottom:229.786667pt;}
.y42{bottom:235.866667pt;}
.y62{bottom:237.146667pt;}
.y41{bottom:240.506667pt;}
.y61{bottom:241.786667pt;}
.y2b{bottom:246.906667pt;}
.y89{bottom:249.626667pt;}
.y40{bottom:251.266667pt;}
.y60{bottom:252.546667pt;}
.y5f{bottom:257.186667pt;}
.y3f{bottom:266.626667pt;}
.y5e{bottom:267.906667pt;}
.y2a{bottom:268.226667pt;}
.y88{bottom:269.506667pt;}
.y3e{bottom:271.266667pt;}
.y5d{bottom:283.266667pt;}
.y3d{bottom:285.506667pt;}
.y5c{bottom:287.906667pt;}
.y29{bottom:289.346667pt;}
.y5b{bottom:298.466667pt;}
.y28{bottom:310.466667pt;}
.y5a{bottom:313.826667pt;}
.y59{bottom:318.466667pt;}
.y58{bottom:329.186667pt;}
.y27{bottom:331.586667pt;}
.y57{bottom:333.826667pt;}
.y56{bottom:344.546667pt;}
.y55{bottom:349.186667pt;}
.y26{bottom:352.546667pt;}
.y3c{bottom:352.866667pt;}
.y54{bottom:363.426667pt;}
.y25{bottom:373.666667pt;}
.y3b{bottom:373.986667pt;}
.y24{bottom:395.106667pt;}
.y23{bottom:416.226667pt;}
.y53{bottom:422.306667pt;}
.y22{bottom:437.506667pt;}
.y21{bottom:458.626667pt;}
.y20{bottom:479.746667pt;}
.y52{bottom:485.826667pt;}
.y1f{bottom:500.866667pt;}
.y3a{bottom:506.973333pt;}
.y1e{bottom:522.013333pt;}
.y85{bottom:528.093333pt;}
.y1d{bottom:543.293333pt;}
.y39{bottom:549.373333pt;}
.y1c{bottom:564.413333pt;}
.y51{bottom:570.493333pt;}
.y1b{bottom:585.533333pt;}
.y50{bottom:591.613333pt;}
.y1a{bottom:606.653333pt;}
.y7d{bottom:612.733333pt;}
.y19{bottom:627.613333pt;}
.y38{bottom:627.933333pt;}
.y4f{bottom:634.013333pt;}
.y18{bottom:648.733333pt;}
.y37{bottom:649.053333pt;}
.y17{bottom:670.173333pt;}
.y16{bottom:691.293333pt;}
.y15{bottom:712.573333pt;}
.y36{bottom:718.653333pt;}
.y14{bottom:733.693333pt;}
.y4e{bottom:739.773333pt;}
.y13{bottom:754.853333pt;}
.y4d{bottom:760.933333pt;}
.y99{bottom:767.973333pt;}
.y12{bottom:775.973333pt;}
.y98{bottom:789.093333pt;}
.y11{bottom:797.253333pt;}
.y35{bottom:803.333333pt;}
.y97{bottom:808.933333pt;}
.y10{bottom:818.373333pt;}
.y6e{bottom:824.453333pt;}
.y96{bottom:828.773333pt;}
.yf{bottom:839.493333pt;}
.y4c{bottom:845.573333pt;}
.y95{bottom:848.613333pt;}
.ye{bottom:860.613333pt;}
.y7c{bottom:866.693333pt;}
.y94{bottom:868.453333pt;}
.yd{bottom:881.573333pt;}
.y34{bottom:881.893333pt;}
.y93{bottom:888.293333pt;}
.yc{bottom:902.693333pt;}
.y33{bottom:903.013333pt;}
.y92{bottom:908.133333pt;}
.yb{bottom:924.133333pt;}
.y91{bottom:927.973333pt;}
.y6d{bottom:930.213333pt;}
.ya{bottom:945.253333pt;}
.y90{bottom:947.973333pt;}
.y9{bottom:966.053333pt;}
.y32{bottom:966.373333pt;}
.y8f{bottom:967.813333pt;}
.y8{bottom:987.333333pt;}
.y31{bottom:987.653333pt;}
.y4{bottom:1005.920000pt;}
.y3{bottom:1024.320000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1061.600000pt;}
.hf{height:31.406250pt;}
.hb{height:33.918750pt;}
.h11{height:34.374375pt;}
.ha{height:42.084375pt;}
.h7{height:45.156250pt;}
.h8{height:46.781250pt;}
.hc{height:46.817187pt;}
.h10{height:47.109375pt;}
.hd{height:52.134375pt;}
.he{height:52.834688pt;}
.h9{height:56.406250pt;}
.h4{height:56.598750pt;}
.h2{height:58.563750pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h3{height:64.500000pt;}
.h12{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:104.031988pt;}
.x18{left:108.351988pt;}
.x2f{left:112.031988pt;}
.x19{left:113.311988pt;}
.x3a{left:122.911988pt;}
.x28{left:130.911988pt;}
.x39{left:132.511988pt;}
.x16{left:140.826643pt;}
.x7{left:145.466655pt;}
.x5{left:148.986655pt;}
.xb{left:151.226655pt;}
.x29{left:160.506643pt;}
.x2{left:163.866655pt;}
.xd{left:169.626655pt;}
.x2a{left:171.386655pt;}
.x8{left:259.906655pt;}
.x9{left:272.546655pt;}
.xa{left:286.626655pt;}
.x25{left:292.866643pt;}
.xc{left:294.466655pt;}
.x17{left:296.066655pt;}
.x27{left:301.346643pt;}
.x26{left:303.746655pt;}
.x22{left:307.426643pt;}
.x1c{left:310.786643pt;}
.x23{left:312.866655pt;}
.x1d{left:316.226655pt;}
.x37{left:323.106643pt;}
.x38{left:333.986655pt;}
.x6{left:341.666655pt;}
.xe{left:365.186655pt;}
.xf{left:373.346655pt;}
.x30{left:374.306655pt;}
.x4{left:375.586655pt;}
.x3{left:420.546655pt;}
.x10{left:504.893310pt;}
.x11{left:510.333322pt;}
.x2d{left:533.853310pt;}
.x2e{left:544.733322pt;}
.x35{left:574.173310pt;}
.x24{left:577.373310pt;}
.x20{left:582.973310pt;}
.x36{left:586.333322pt;}
.x21{left:588.413322pt;}
.x33{left:592.093310pt;}
.x34{left:602.973322pt;}
.x2b{left:657.893310pt;}
.x2c{left:668.773322pt;}
.x12{left:676.293310pt;}
.x13{left:686.373322pt;}
.x31{left:705.093310pt;}
.x1e{left:712.933310pt;}
.x32{left:715.973322pt;}
.x1f{left:718.373322pt;}
.x1a{left:729.413310pt;}
.x14{left:731.813310pt;}
.x1b{left:734.853322pt;}
.x15{left:737.253322pt;}
}




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