
    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_e25dd69efc310f464985425f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_e7168529db93c6b94b050f6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_082c45be99020b4ceb5a0657.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_db4e94af9939931dff7737d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116211;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_6d536e33ffad3397c6e6b207.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.116211;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_e3f952e2ba7bd5a85b7f6001.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_22b1d20bf57c810cd18235b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110533;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_ea2a0a7ffae6248d1bdc8266.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110533;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_f63529ad2e92305a7338056f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.111133;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_afe8eaf58e5e87ec813b80c5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_02611aa930ac4616d88b18d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.974000;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:ffd;src:url('chunks/assets/font_05435064907a921f6a6a7063.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.974000;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:ffe;src:url('chunks/assets/font_94a4f2681316bb4344b8247e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6d94026b5c633e6146ab40f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.709473;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.314400px;}
.ls1c{letter-spacing:-0.217200px;}
.ls1b{letter-spacing:-0.172200px;}
.ls18{letter-spacing:-0.154800px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.030240px;}
.ls6{letter-spacing:0.154800px;}
.ls3{letter-spacing:0.163200px;}
.ls8{letter-spacing:0.342600px;}
.ls15{letter-spacing:0.521280px;}
.ls17{letter-spacing:0.522000px;}
.ls9{letter-spacing:0.598320px;}
.ls0{letter-spacing:1.318320px;}
.ls16{letter-spacing:2.758320px;}
.lse{letter-spacing:3.478320px;}
.lsc{letter-spacing:4.198320px;}
.ls1{letter-spacing:4.918320px;}
.ls19{letter-spacing:5.638320px;}
.lsa{letter-spacing:7.078320px;}
.lsf{letter-spacing:11.398320px;}
.ls13{letter-spacing:12.118320px;}
.ls4{letter-spacing:18.424800px;}
.ls2{letter-spacing:18.598320px;}
.ls10{letter-spacing:28.678320px;}
.ls11{letter-spacing:45.238320px;}
.ls12{letter-spacing:45.418320px;}
.ls1a{letter-spacing:61.866720px;}
.lsb{letter-spacing:83.466720px;}
.ls1d{letter-spacing:847.740000px;}
.ls14{letter-spacing:849.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-59.760000px;}
.ws5{word-spacing:-16.135200px;}
.ws4{word-spacing:-14.521680px;}
.ws8{word-spacing:-14.366880px;}
.ws9{word-spacing:-14.349480px;}
.wsa{word-spacing:-14.304480px;}
.ws3{word-spacing:-12.653160px;}
.ws1{word-spacing:-12.465360px;}
.ws0{word-spacing:-12.310560px;}
.ws2{word-spacing:-11.996160px;}
.ws6{word-spacing:0.000000px;}
._1b{margin-left:-3.824640px;}
._18{margin-left:-2.629440px;}
._7{margin-left:-1.457280px;}
._0{width:1.015920px;}
._6{width:2.250480px;}
._8{width:4.063680px;}
._9{width:5.079600px;}
._d{width:6.394320px;}
._b{width:8.261760px;}
._a{width:9.501840px;}
._11{width:11.175120px;}
._10{width:12.310560px;}
._e{width:13.505760px;}
._f{width:16.236720px;}
._3{width:17.787600px;}
._4{width:18.973440px;}
._c{width:20.668080px;}
._5{width:21.786960px;}
._13{width:22.853760px;}
._21{width:24.860160px;}
._19{width:26.951760px;}
._15{width:27.967680px;}
._14{width:28.983600px;}
._1d{width:30.716640px;}
._1a{width:33.047280px;}
._16{width:35.437680px;}
._1e{width:36.513360px;}
._12{width:37.947600px;}
._22{width:39.431520px;}
._20{width:40.875840px;}
._17{width:45.120960px;}
._1f{width:49.182480px;}
._23{width:224.757360px;}
._1{width:291.705840px;}
._24{width:793.489440px;}
._1c{width:795.649440px;}
._2{width:797.809440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:4.320000px;}
.y81{bottom:4.500000px;}
.y8{bottom:10.260000px;}
.y88{bottom:24.300000px;}
.y95{bottom:34.200000px;}
.y87{bottom:44.100000px;}
.y97{bottom:44.310000px;}
.y8f{bottom:44.325000px;}
.y91{bottom:54.000000px;}
.y8b{bottom:54.225000px;}
.y93{bottom:63.900000px;}
.y83{bottom:64.080000px;}
.y8e{bottom:64.125000px;}
.y86{bottom:83.880000px;}
.y8d{bottom:83.925000px;}
.y92{bottom:103.680000px;}
.y85{bottom:103.860000px;}
.y8c{bottom:103.905000px;}
.yaf{bottom:108.900000px;}
.y84{bottom:123.660000px;}
.y33{bottom:126.180000px;}
.y68{bottom:128.880000px;}
.yae{bottom:143.496000px;}
.y32{bottom:146.196000px;}
.y67{bottom:148.716000px;}
.yad{bottom:163.470000px;}
.y31{bottom:165.990000px;}
.y66{bottom:168.690000px;}
.yac{bottom:183.270000px;}
.y30{bottom:185.790000px;}
.y65{bottom:188.490000px;}
.yab{bottom:203.070000px;}
.y2f{bottom:205.770000px;}
.y64{bottom:208.470000px;}
.yaa{bottom:223.050000px;}
.y2e{bottom:225.570000px;}
.y63{bottom:228.270000px;}
.y7f{bottom:237.630000px;}
.ya9{bottom:242.850000px;}
.y2d{bottom:245.550000px;}
.y62{bottom:248.070000px;}
.y7e{bottom:258.510000px;}
.ya8{bottom:262.830000px;}
.y2c{bottom:265.350000px;}
.y61{bottom:268.050000px;}
.y7d{bottom:279.390000px;}
.ya7{bottom:282.630000px;}
.y2b{bottom:285.330000px;}
.y60{bottom:287.850000px;}
.y7c{bottom:300.270000px;}
.ya6{bottom:302.430000px;}
.y2a{bottom:305.130000px;}
.y5f{bottom:307.830000px;}
.y7b{bottom:321.150000px;}
.ya5{bottom:322.410000px;}
.y29{bottom:324.930000px;}
.y5e{bottom:327.630000px;}
.y7a{bottom:342.030000px;}
.ya4{bottom:342.210000px;}
.y28{bottom:344.910000px;}
.y5d{bottom:347.430000px;}
.ya3{bottom:362.190000px;}
.y79{bottom:362.910000px;}
.y27{bottom:364.710000px;}
.y5c{bottom:367.410000px;}
.ya2{bottom:381.990000px;}
.y78{bottom:383.790000px;}
.y26{bottom:384.690000px;}
.y5b{bottom:387.210000px;}
.ya1{bottom:402.015000px;}
.y25{bottom:404.535000px;}
.y77{bottom:404.715000px;}
.y5a{bottom:407.235000px;}
.ya0{bottom:421.815000px;}
.y24{bottom:424.335000px;}
.y76{bottom:425.595000px;}
.y59{bottom:427.035000px;}
.y9f{bottom:441.615000px;}
.y23{bottom:444.315000px;}
.y75{bottom:446.475000px;}
.y58{bottom:447.015000px;}
.y9e{bottom:461.595000px;}
.y22{bottom:464.115000px;}
.y57{bottom:466.815000px;}
.y74{bottom:467.355000px;}
.y9d{bottom:481.395000px;}
.y21{bottom:484.095000px;}
.y56{bottom:486.615000px;}
.y73{bottom:488.235000px;}
.y9c{bottom:501.375000px;}
.y20{bottom:503.895000px;}
.y55{bottom:506.595000px;}
.y72{bottom:509.115000px;}
.y9b{bottom:521.175000px;}
.y1f{bottom:523.875000px;}
.y54{bottom:526.395000px;}
.y71{bottom:529.815000px;}
.y9a{bottom:540.975000px;}
.y1e{bottom:543.675000px;}
.y53{bottom:546.375000px;}
.y70{bottom:550.695000px;}
.y99{bottom:560.955000px;}
.y1d{bottom:563.475000px;}
.y52{bottom:566.175000px;}
.y6f{bottom:571.575000px;}
.y98{bottom:580.755000px;}
.y1c{bottom:583.455000px;}
.y51{bottom:585.975000px;}
.y6e{bottom:592.455000px;}
.y96{bottom:596.955000px;}
.y1b{bottom:603.255000px;}
.y50{bottom:605.955000px;}
.y6d{bottom:613.335000px;}
.y1a{bottom:623.235000px;}
.y4f{bottom:625.755000px;}
.y6c{bottom:634.215000px;}
.y19{bottom:643.065000px;}
.y4e{bottom:645.765000px;}
.y6b{bottom:654.405000px;}
.y94{bottom:657.465000px;}
.y18{bottom:662.865000px;}
.y4d{bottom:665.565000px;}
.y6a{bottom:674.205000px;}
.y17{bottom:682.845000px;}
.y4c{bottom:685.545000px;}
.y69{bottom:689.685000px;}
.y16{bottom:702.645000px;}
.y4b{bottom:705.345000px;}
.y15{bottom:722.625000px;}
.y4a{bottom:725.145000px;}
.y90{bottom:737.745000px;}
.y14{bottom:742.425000px;}
.y49{bottom:745.125000px;}
.y13{bottom:762.405000px;}
.y48{bottom:764.925000px;}
.y12{bottom:782.205000px;}
.y47{bottom:784.905000px;}
.y11{bottom:802.005000px;}
.y46{bottom:804.705000px;}
.yc0{bottom:810.825000px;}
.y10{bottom:821.985000px;}
.y45{bottom:824.505000px;}
.ybf{bottom:832.605000px;}
.yf{bottom:841.785000px;}
.y44{bottom:844.485000px;}
.ybe{bottom:852.405000px;}
.y8a{bottom:857.625000px;}
.ye{bottom:862.845000px;}
.y43{bottom:864.285000px;}
.ybd{bottom:872.205000px;}
.y42{bottom:884.265000px;}
.yd{bottom:888.765000px;}
.ybc{bottom:892.185000px;}
.y41{bottom:904.110000px;}
.ybb{bottom:912.030000px;}
.yc{bottom:913.830000px;}
.y40{bottom:924.090000px;}
.yba{bottom:932.010000px;}
.yb{bottom:935.610000px;}
.y3f{bottom:943.890000px;}
.yb9{bottom:951.810000px;}
.ya{bottom:957.570000px;}
.y3e{bottom:963.690000px;}
.yb8{bottom:971.790000px;}
.y82{bottom:977.730000px;}
.y9{bottom:979.350000px;}
.y3d{bottom:983.670000px;}
.yb7{bottom:991.590000px;}
.y7{bottom:1000.950000px;}
.y3c{bottom:1003.470000px;}
.yb6{bottom:1011.390000px;}
.y3b{bottom:1023.450000px;}
.yb5{bottom:1031.370000px;}
.y6{bottom:1037.310000px;}
.y3a{bottom:1043.250000px;}
.yb4{bottom:1051.170000px;}
.y5{bottom:1059.270000px;}
.y39{bottom:1063.050000px;}
.yb3{bottom:1072.230000px;}
.y4{bottom:1076.370000px;}
.y38{bottom:1083.030000px;}
.yb2{bottom:1097.250000px;}
.y37{bottom:1102.830000px;}
.y3{bottom:1114.890000px;}
.y80{bottom:1117.590000px;}
.yb1{bottom:1119.210000px;}
.y36{bottom:1122.810000px;}
.yb0{bottom:1140.990000px;}
.y35{bottom:1142.610000px;}
.y2{bottom:1156.140000px;}
.y34{bottom:1162.620000px;}
.y1{bottom:1194.120000px;}
.hd{height:19.980000px;}
.h7{height:31.680000px;}
.h5{height:44.939520px;}
.hb{height:45.537120px;}
.hc{height:52.656528px;}
.ha{height:53.517072px;}
.h6{height:58.366272px;}
.h8{height:59.320128px;}
.h2{height:59.439023px;}
.h12{height:59.796000px;}
.h9{height:69.636672px;}
.h3{height:74.226672px;}
.h11{height:79.560000px;}
.h10{height:119.160000px;}
.hf{height:119.376000px;}
.h4{height:119.407500px;}
.he{height:139.140000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.w5{width:59.076000px;}
.w4{width:190.290000px;}
.w6{width:199.830000px;}
.w7{width:461.055000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x1d{left:15.294000px;}
.x14{left:20.736000px;}
.x19{left:25.596000px;}
.x6{left:42.300000px;}
.x1b{left:47.334000px;}
.x16{left:56.334000px;}
.x1c{left:58.674000px;}
.x1a{left:61.554000px;}
.x1{left:84.959987px;}
.xd{left:106.235987px;}
.x21{left:139.535987px;}
.x15{left:145.836000px;}
.x18{left:168.690000px;}
.xc{left:204.869987px;}
.xa{left:205.949987px;}
.x3{left:217.649987px;}
.x20{left:251.129987px;}
.x13{left:305.714987px;}
.xb{left:313.094987px;}
.x9{left:322.094987px;}
.x5{left:326.235000px;}
.x1f{left:333.254987px;}
.x17{left:346.395000px;}
.x11{left:355.214987px;}
.x7{left:376.635000px;}
.x2{left:446.474987px;}
.xe{left:473.144987px;}
.xf{left:494.384987px;}
.x1e{left:596.624987px;}
.x12{left:748.949987px;}
.x10{left:803.489987px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.279467pt;}
.ls1c{letter-spacing:-0.193067pt;}
.ls1b{letter-spacing:-0.153067pt;}
.ls18{letter-spacing:-0.137600pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.026880pt;}
.ls6{letter-spacing:0.137600pt;}
.ls3{letter-spacing:0.145067pt;}
.ls8{letter-spacing:0.304533pt;}
.ls15{letter-spacing:0.463360pt;}
.ls17{letter-spacing:0.464000pt;}
.ls9{letter-spacing:0.531840pt;}
.ls0{letter-spacing:1.171840pt;}
.ls16{letter-spacing:2.451840pt;}
.lse{letter-spacing:3.091840pt;}
.lsc{letter-spacing:3.731840pt;}
.ls1{letter-spacing:4.371840pt;}
.ls19{letter-spacing:5.011840pt;}
.lsa{letter-spacing:6.291840pt;}
.lsf{letter-spacing:10.131840pt;}
.ls13{letter-spacing:10.771840pt;}
.ls4{letter-spacing:16.377600pt;}
.ls2{letter-spacing:16.531840pt;}
.ls10{letter-spacing:25.491840pt;}
.ls11{letter-spacing:40.211840pt;}
.ls12{letter-spacing:40.371840pt;}
.ls1a{letter-spacing:54.992640pt;}
.lsb{letter-spacing:74.192640pt;}
.ls1d{letter-spacing:753.546667pt;}
.ls14{letter-spacing:754.986667pt;}
.ws7{word-spacing:-53.120000pt;}
.ws5{word-spacing:-14.342400pt;}
.ws4{word-spacing:-12.908160pt;}
.ws8{word-spacing:-12.770560pt;}
.ws9{word-spacing:-12.755093pt;}
.wsa{word-spacing:-12.715093pt;}
.ws3{word-spacing:-11.247253pt;}
.ws1{word-spacing:-11.080320pt;}
.ws0{word-spacing:-10.942720pt;}
.ws2{word-spacing:-10.663253pt;}
.ws6{word-spacing:0.000000pt;}
._1b{margin-left:-3.399680pt;}
._18{margin-left:-2.337280pt;}
._7{margin-left:-1.295360pt;}
._0{width:0.903040pt;}
._6{width:2.000427pt;}
._8{width:3.612160pt;}
._9{width:4.515200pt;}
._d{width:5.683840pt;}
._b{width:7.343787pt;}
._a{width:8.446080pt;}
._11{width:9.933440pt;}
._10{width:10.942720pt;}
._e{width:12.005120pt;}
._f{width:14.432640pt;}
._3{width:15.811200pt;}
._4{width:16.865280pt;}
._c{width:18.371627pt;}
._5{width:19.366187pt;}
._13{width:20.314453pt;}
._21{width:22.097920pt;}
._19{width:23.957120pt;}
._15{width:24.860160pt;}
._14{width:25.763200pt;}
._1d{width:27.303680pt;}
._1a{width:29.375360pt;}
._16{width:31.500160pt;}
._1e{width:32.456320pt;}
._12{width:33.731200pt;}
._22{width:35.050240pt;}
._20{width:36.334080pt;}
._17{width:40.107520pt;}
._1f{width:43.717760pt;}
._23{width:199.784320pt;}
._1{width:259.294080pt;}
._24{width:705.323947pt;}
._1c{width:707.243947pt;}
._2{width:709.163947pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.840000pt;}
.y81{bottom:4.000000pt;}
.y8{bottom:9.120000pt;}
.y88{bottom:21.600000pt;}
.y95{bottom:30.400000pt;}
.y87{bottom:39.200000pt;}
.y97{bottom:39.386667pt;}
.y8f{bottom:39.400000pt;}
.y91{bottom:48.000000pt;}
.y8b{bottom:48.200000pt;}
.y93{bottom:56.800000pt;}
.y83{bottom:56.960000pt;}
.y8e{bottom:57.000000pt;}
.y86{bottom:74.560000pt;}
.y8d{bottom:74.600000pt;}
.y92{bottom:92.160000pt;}
.y85{bottom:92.320000pt;}
.y8c{bottom:92.360000pt;}
.yaf{bottom:96.800000pt;}
.y84{bottom:109.920000pt;}
.y33{bottom:112.160000pt;}
.y68{bottom:114.560000pt;}
.yae{bottom:127.552000pt;}
.y32{bottom:129.952000pt;}
.y67{bottom:132.192000pt;}
.yad{bottom:145.306667pt;}
.y31{bottom:147.546667pt;}
.y66{bottom:149.946667pt;}
.yac{bottom:162.906667pt;}
.y30{bottom:165.146667pt;}
.y65{bottom:167.546667pt;}
.yab{bottom:180.506667pt;}
.y2f{bottom:182.906667pt;}
.y64{bottom:185.306667pt;}
.yaa{bottom:198.266667pt;}
.y2e{bottom:200.506667pt;}
.y63{bottom:202.906667pt;}
.y7f{bottom:211.226667pt;}
.ya9{bottom:215.866667pt;}
.y2d{bottom:218.266667pt;}
.y62{bottom:220.506667pt;}
.y7e{bottom:229.786667pt;}
.ya8{bottom:233.626667pt;}
.y2c{bottom:235.866667pt;}
.y61{bottom:238.266667pt;}
.y7d{bottom:248.346667pt;}
.ya7{bottom:251.226667pt;}
.y2b{bottom:253.626667pt;}
.y60{bottom:255.866667pt;}
.y7c{bottom:266.906667pt;}
.ya6{bottom:268.826667pt;}
.y2a{bottom:271.226667pt;}
.y5f{bottom:273.626667pt;}
.y7b{bottom:285.466667pt;}
.ya5{bottom:286.586667pt;}
.y29{bottom:288.826667pt;}
.y5e{bottom:291.226667pt;}
.y7a{bottom:304.026667pt;}
.ya4{bottom:304.186667pt;}
.y28{bottom:306.586667pt;}
.y5d{bottom:308.826667pt;}
.ya3{bottom:321.946667pt;}
.y79{bottom:322.586667pt;}
.y27{bottom:324.186667pt;}
.y5c{bottom:326.586667pt;}
.ya2{bottom:339.546667pt;}
.y78{bottom:341.146667pt;}
.y26{bottom:341.946667pt;}
.y5b{bottom:344.186667pt;}
.ya1{bottom:357.346667pt;}
.y25{bottom:359.586667pt;}
.y77{bottom:359.746667pt;}
.y5a{bottom:361.986667pt;}
.ya0{bottom:374.946667pt;}
.y24{bottom:377.186667pt;}
.y76{bottom:378.306667pt;}
.y59{bottom:379.586667pt;}
.y9f{bottom:392.546667pt;}
.y23{bottom:394.946667pt;}
.y75{bottom:396.866667pt;}
.y58{bottom:397.346667pt;}
.y9e{bottom:410.306667pt;}
.y22{bottom:412.546667pt;}
.y57{bottom:414.946667pt;}
.y74{bottom:415.426667pt;}
.y9d{bottom:427.906667pt;}
.y21{bottom:430.306667pt;}
.y56{bottom:432.546667pt;}
.y73{bottom:433.986667pt;}
.y9c{bottom:445.666667pt;}
.y20{bottom:447.906667pt;}
.y55{bottom:450.306667pt;}
.y72{bottom:452.546667pt;}
.y9b{bottom:463.266667pt;}
.y1f{bottom:465.666667pt;}
.y54{bottom:467.906667pt;}
.y71{bottom:470.946667pt;}
.y9a{bottom:480.866667pt;}
.y1e{bottom:483.266667pt;}
.y53{bottom:485.666667pt;}
.y70{bottom:489.506667pt;}
.y99{bottom:498.626667pt;}
.y1d{bottom:500.866667pt;}
.y52{bottom:503.266667pt;}
.y6f{bottom:508.066667pt;}
.y98{bottom:516.226667pt;}
.y1c{bottom:518.626667pt;}
.y51{bottom:520.866667pt;}
.y6e{bottom:526.626667pt;}
.y96{bottom:530.626667pt;}
.y1b{bottom:536.226667pt;}
.y50{bottom:538.626667pt;}
.y6d{bottom:545.186667pt;}
.y1a{bottom:553.986667pt;}
.y4f{bottom:556.226667pt;}
.y6c{bottom:563.746667pt;}
.y19{bottom:571.613333pt;}
.y4e{bottom:574.013333pt;}
.y6b{bottom:581.693333pt;}
.y94{bottom:584.413333pt;}
.y18{bottom:589.213333pt;}
.y4d{bottom:591.613333pt;}
.y6a{bottom:599.293333pt;}
.y17{bottom:606.973333pt;}
.y4c{bottom:609.373333pt;}
.y69{bottom:613.053333pt;}
.y16{bottom:624.573333pt;}
.y4b{bottom:626.973333pt;}
.y15{bottom:642.333333pt;}
.y4a{bottom:644.573333pt;}
.y90{bottom:655.773333pt;}
.y14{bottom:659.933333pt;}
.y49{bottom:662.333333pt;}
.y13{bottom:677.693333pt;}
.y48{bottom:679.933333pt;}
.y12{bottom:695.293333pt;}
.y47{bottom:697.693333pt;}
.y11{bottom:712.893333pt;}
.y46{bottom:715.293333pt;}
.yc0{bottom:720.733333pt;}
.y10{bottom:730.653333pt;}
.y45{bottom:732.893333pt;}
.ybf{bottom:740.093333pt;}
.yf{bottom:748.253333pt;}
.y44{bottom:750.653333pt;}
.ybe{bottom:757.693333pt;}
.y8a{bottom:762.333333pt;}
.ye{bottom:766.973333pt;}
.y43{bottom:768.253333pt;}
.ybd{bottom:775.293333pt;}
.y42{bottom:786.013333pt;}
.yd{bottom:790.013333pt;}
.ybc{bottom:793.053333pt;}
.y41{bottom:803.653333pt;}
.ybb{bottom:810.693333pt;}
.yc{bottom:812.293333pt;}
.y40{bottom:821.413333pt;}
.yba{bottom:828.453333pt;}
.yb{bottom:831.653333pt;}
.y3f{bottom:839.013333pt;}
.yb9{bottom:846.053333pt;}
.ya{bottom:851.173333pt;}
.y3e{bottom:856.613333pt;}
.yb8{bottom:863.813333pt;}
.y82{bottom:869.093333pt;}
.y9{bottom:870.533333pt;}
.y3d{bottom:874.373333pt;}
.yb7{bottom:881.413333pt;}
.y7{bottom:889.733333pt;}
.y3c{bottom:891.973333pt;}
.yb6{bottom:899.013333pt;}
.y3b{bottom:909.733333pt;}
.yb5{bottom:916.773333pt;}
.y6{bottom:922.053333pt;}
.y3a{bottom:927.333333pt;}
.yb4{bottom:934.373333pt;}
.y5{bottom:941.573333pt;}
.y39{bottom:944.933333pt;}
.yb3{bottom:953.093333pt;}
.y4{bottom:956.773333pt;}
.y38{bottom:962.693333pt;}
.yb2{bottom:975.333333pt;}
.y37{bottom:980.293333pt;}
.y3{bottom:991.013333pt;}
.y80{bottom:993.413333pt;}
.yb1{bottom:994.853333pt;}
.y36{bottom:998.053333pt;}
.yb0{bottom:1014.213333pt;}
.y35{bottom:1015.653333pt;}
.y2{bottom:1027.680000pt;}
.y34{bottom:1033.440000pt;}
.y1{bottom:1061.440000pt;}
.hd{height:17.760000pt;}
.h7{height:28.160000pt;}
.h5{height:39.946240pt;}
.hb{height:40.477440pt;}
.hc{height:46.805803pt;}
.ha{height:47.570731pt;}
.h6{height:51.881131pt;}
.h8{height:52.729003pt;}
.h2{height:52.834688pt;}
.h12{height:53.152000pt;}
.h9{height:61.899264pt;}
.h3{height:65.979264pt;}
.h11{height:70.720000pt;}
.h10{height:105.920000pt;}
.hf{height:106.112000pt;}
.h4{height:106.140000pt;}
.he{height:123.680000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.w5{width:52.512000pt;}
.w4{width:169.146667pt;}
.w6{width:177.626667pt;}
.w7{width:409.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x1d{left:13.594667pt;}
.x14{left:18.432000pt;}
.x19{left:22.752000pt;}
.x6{left:37.600000pt;}
.x1b{left:42.074667pt;}
.x16{left:50.074667pt;}
.x1c{left:52.154667pt;}
.x1a{left:54.714667pt;}
.x1{left:75.519988pt;}
.xd{left:94.431988pt;}
.x21{left:124.031988pt;}
.x15{left:129.632000pt;}
.x18{left:149.946667pt;}
.xc{left:182.106655pt;}
.xa{left:183.066655pt;}
.x3{left:193.466655pt;}
.x20{left:223.226655pt;}
.x13{left:271.746655pt;}
.xb{left:278.306655pt;}
.x9{left:286.306655pt;}
.x5{left:289.986667pt;}
.x1f{left:296.226655pt;}
.x17{left:307.906667pt;}
.x11{left:315.746655pt;}
.x7{left:334.786667pt;}
.x2{left:396.866655pt;}
.xe{left:420.573322pt;}
.xf{left:439.453322pt;}
.x1e{left:530.333322pt;}
.x12{left:665.733322pt;}
.x10{left:714.213322pt;}
.x4{left:718.213322pt;}
}




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