
    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_fc368290fc835260410467a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_295e1b9afd6d2a7e80f95a00.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8c508e8a35a16fb7d5eb02c5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2b776ebcaf3c6c1c0afad5f5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6b4c27e2f6885720fd36cb21.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_db029766264cb0b6b0a0243e.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.ls16{letter-spacing:-0.660000px;}
.ls35{letter-spacing:-0.648000px;}
.ls34{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.300000px;}
.ls31{letter-spacing:-0.270000px;}
.ls30{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.060000px;}
.ls10{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.300000px;}
.ls27{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.514200px;}
.ls25{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.756000px;}
.ls2f{letter-spacing:0.810000px;}
.lsd{letter-spacing:0.840000px;}
.ls21{letter-spacing:0.918000px;}
.ls2{letter-spacing:0.960000px;}
.ls12{letter-spacing:1.020000px;}
.ls1e{letter-spacing:1.026000px;}
.lse{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.140000px;}
.ls2d{letter-spacing:1.252800px;}
.ls18{letter-spacing:1.307400px;}
.ls2a{letter-spacing:1.350000px;}
.ls23{letter-spacing:1.404000px;}
.ls2b{letter-spacing:1.458000px;}
.ls36{letter-spacing:1.512000px;}
.ls6{letter-spacing:1.560000px;}
.ls0{letter-spacing:1.800000px;}
.ls28{letter-spacing:1.836000px;}
.ls1{letter-spacing:1.980000px;}
.ls1f{letter-spacing:1.998000px;}
.ls1b{letter-spacing:2.100000px;}
.ls2c{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.220000px;}
.ls1a{letter-spacing:2.460000px;}
.lsc{letter-spacing:2.640000px;}
.ls33{letter-spacing:2.646000px;}
.ls1c{letter-spacing:2.700000px;}
.ls26{letter-spacing:3.024000px;}
.ls1d{letter-spacing:3.186000px;}
.ls20{letter-spacing:3.726000px;}
.ls3{letter-spacing:8.492400px;}
.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;}
}
.ws4{word-spacing:-17.640000px;}
.ws0{word-spacing:-16.800000px;}
.ws20{word-spacing:-16.200000px;}
.ws2{word-spacing:-16.020000px;}
.ws3{word-spacing:-15.720000px;}
.ws1f{word-spacing:-15.000000px;}
.ws22{word-spacing:-14.958000px;}
.ws21{word-spacing:-13.500000px;}
.ws1{word-spacing:-8.700000px;}
.ws23{word-spacing:-7.830000px;}
.ws1c{word-spacing:-3.780000px;}
.ws13{word-spacing:-3.720000px;}
.wsc{word-spacing:-3.402000px;}
.wsd{word-spacing:-3.348000px;}
.ws41{word-spacing:-3.240000px;}
.ws1e{word-spacing:-3.180000px;}
.ws15{word-spacing:-3.120000px;}
.ws49{word-spacing:-3.078000px;}
.ws43{word-spacing:-2.808000px;}
.ws1a{word-spacing:-2.280000px;}
.ws2d{word-spacing:-2.160000px;}
.ws32{word-spacing:-1.998000px;}
.ws26{word-spacing:-1.980000px;}
.ws46{word-spacing:-1.890000px;}
.ws6{word-spacing:-1.800000px;}
.ws3d{word-spacing:-1.620000px;}
.ws44{word-spacing:-1.404000px;}
.ws1d{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.140000px;}
.ws3b{word-spacing:-0.918000px;}
.ws4a{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.840000px;}
.ws39{word-spacing:-0.810000px;}
.ws9{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.702000px;}
.ws38{word-spacing:-0.648000px;}
.ws48{word-spacing:-0.540000px;}
.ws36{word-spacing:-0.216000px;}
.ws2e{word-spacing:-0.180000px;}
.ws5{word-spacing:0.000000px;}
.ws27{word-spacing:0.540000px;}
.ws14{word-spacing:0.720000px;}
.ws25{word-spacing:1.320000px;}
.wsb{word-spacing:1.350000px;}
.ws16{word-spacing:1.980000px;}
.ws24{word-spacing:2.520000px;}
.ws29{word-spacing:2.580000px;}
.ws2c{word-spacing:2.940000px;}
.ws3f{word-spacing:3.240000px;}
.ws10{word-spacing:3.480000px;}
.ws40{word-spacing:3.510000px;}
.ws2a{word-spacing:3.660000px;}
.ws45{word-spacing:3.996000px;}
.ws2b{word-spacing:4.020000px;}
.ws3e{word-spacing:4.320000px;}
.ws47{word-spacing:4.536000px;}
.ws37{word-spacing:4.644000px;}
.ws1b{word-spacing:4.740000px;}
.ws11{word-spacing:4.800000px;}
.ws4b{word-spacing:4.968000px;}
.ws42{word-spacing:5.130000px;}
.ws8{word-spacing:5.220000px;}
.ws12{word-spacing:5.460000px;}
.wse{word-spacing:5.520000px;}
.ws3a{word-spacing:5.562000px;}
.wsf{word-spacing:5.580000px;}
.ws31{word-spacing:5.616000px;}
.ws33{word-spacing:5.724000px;}
.ws28{word-spacing:6.180000px;}
.wsa{word-spacing:6.426000px;}
.ws3c{word-spacing:6.642000px;}
.ws30{word-spacing:6.750000px;}
.ws2f{word-spacing:6.780000px;}
.ws17{word-spacing:7.260000px;}
.ws35{word-spacing:7.452000px;}
.ws7{word-spacing:7.500000px;}
._d{margin-left:-94.500000px;}
._2{margin-left:-7.740000px;}
._b{margin-left:-6.660000px;}
._5{margin-left:-5.076000px;}
._4{margin-left:-3.737400px;}
._6{margin-left:-2.418600px;}
._3{margin-left:-1.140000px;}
._7{width:1.473000px;}
._8{width:2.541000px;}
._f{width:4.374000px;}
._a{width:6.060000px;}
._9{width:7.440000px;}
._1{width:9.240000px;}
._c{width:76.518000px;}
._0{width:1399.268400px;}
._e{width:1480.293600px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.320000px;}
.fs2{font-size:34.800000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y99{bottom:78.614700px;}
.y66{bottom:79.974600px;}
.y3a{bottom:86.616900px;}
.y98{bottom:92.114700px;}
.y65{bottom:96.174600px;}
.y39{bottom:100.116900px;}
.y97{bottom:105.614700px;}
.y64{bottom:112.374600px;}
.y38{bottom:113.616900px;}
.y96{bottom:119.114700px;}
.y63{bottom:128.574600px;}
.y95{bottom:132.614700px;}
.y62{bottom:144.774600px;}
.y94{bottom:146.114700px;}
.y93{bottom:159.614700px;}
.y21{bottom:160.033650px;}
.y37{bottom:160.933650px;}
.y61{bottom:160.974600px;}
.y92{bottom:173.114700px;}
.y60{bottom:177.174600px;}
.y20{bottom:178.033650px;}
.y36{bottom:179.233650px;}
.y5f{bottom:193.374600px;}
.y1f{bottom:196.033650px;}
.y35{bottom:197.533650px;}
.y91{bottom:203.114700px;}
.y5e{bottom:209.574600px;}
.y1e{bottom:214.033650px;}
.y34{bottom:215.833650px;}
.y90{bottom:219.314700px;}
.y5d{bottom:225.774600px;}
.y1d{bottom:232.033650px;}
.y33{bottom:234.133650px;}
.y8f{bottom:235.514700px;}
.y5c{bottom:241.974600px;}
.y1c{bottom:250.033650px;}
.y8e{bottom:251.714700px;}
.y32{bottom:252.433650px;}
.y5b{bottom:258.174600px;}
.y8d{bottom:267.914700px;}
.y1b{bottom:268.033650px;}
.y31{bottom:270.733650px;}
.y5a{bottom:274.374600px;}
.y8c{bottom:284.114700px;}
.y1a{bottom:286.033650px;}
.y30{bottom:289.033650px;}
.y59{bottom:290.574600px;}
.y8b{bottom:300.314700px;}
.y19{bottom:304.033650px;}
.y58{bottom:306.774600px;}
.y2f{bottom:307.333650px;}
.y8a{bottom:316.514700px;}
.y18{bottom:322.033650px;}
.y57{bottom:322.974600px;}
.y2e{bottom:325.633650px;}
.y89{bottom:332.714700px;}
.y56{bottom:339.174600px;}
.y17{bottom:340.033650px;}
.y2d{bottom:343.933650px;}
.y88{bottom:348.914700px;}
.y55{bottom:355.374600px;}
.y16{bottom:358.033650px;}
.y2c{bottom:362.233650px;}
.y87{bottom:365.114700px;}
.y54{bottom:371.574600px;}
.y15{bottom:376.033650px;}
.y2b{bottom:380.533650px;}
.y86{bottom:381.314700px;}
.y53{bottom:387.774600px;}
.y14{bottom:394.033650px;}
.y85{bottom:397.514700px;}
.y2a{bottom:398.833650px;}
.y13{bottom:412.033650px;}
.y84{bottom:413.714700px;}
.y29{bottom:417.133650px;}
.y52{bottom:424.974600px;}
.y83{bottom:429.914700px;}
.y12{bottom:430.033650px;}
.y28{bottom:435.433650px;}
.y82{bottom:446.114700px;}
.y27{bottom:453.733650px;}
.y81{bottom:462.314700px;}
.y11{bottom:464.533650px;}
.y26{bottom:472.033650px;}
.y80{bottom:478.514700px;}
.y10{bottom:480.733650px;}
.y51{bottom:486.474600px;}
.y25{bottom:490.333650px;}
.y7f{bottom:494.714700px;}
.yf{bottom:496.933650px;}
.y50{bottom:504.474600px;}
.y24{bottom:508.633650px;}
.y7e{bottom:510.914700px;}
.ye{bottom:513.133650px;}
.y4f{bottom:522.474600px;}
.y23{bottom:526.933650px;}
.y7d{bottom:527.114700px;}
.yd{bottom:529.333650px;}
.y4e{bottom:540.474600px;}
.y7c{bottom:543.314700px;}
.y22{bottom:545.233650px;}
.yc{bottom:545.533650px;}
.y4d{bottom:558.474600px;}
.y7b{bottom:559.514700px;}
.yb{bottom:563.533650px;}
.y7a{bottom:575.714700px;}
.y4c{bottom:576.474600px;}
.ya{bottom:581.533650px;}
.y79{bottom:591.914700px;}
.y4b{bottom:594.474600px;}
.y9{bottom:599.533650px;}
.y78{bottom:608.114700px;}
.y4a{bottom:612.474600px;}
.y77{bottom:624.314700px;}
.y49{bottom:630.474600px;}
.y76{bottom:640.514700px;}
.y48{bottom:648.474600px;}
.y7{bottom:654.574800px;}
.y75{bottom:656.714700px;}
.y47{bottom:666.474600px;}
.y74{bottom:672.914700px;}
.y6{bottom:683.074800px;}
.y46{bottom:684.474600px;}
.y73{bottom:689.114700px;}
.y45{bottom:702.474600px;}
.y72{bottom:705.314700px;}
.y5{bottom:711.574800px;}
.y44{bottom:720.474600px;}
.y71{bottom:721.514700px;}
.y70{bottom:737.714700px;}
.y43{bottom:738.474600px;}
.y6f{bottom:753.914700px;}
.y42{bottom:756.474600px;}
.y6e{bottom:770.114700px;}
.y8{bottom:770.555400px;}
.y41{bottom:774.474600px;}
.y6d{bottom:786.314700px;}
.y40{bottom:792.474600px;}
.y6c{bottom:802.514700px;}
.y3f{bottom:810.474600px;}
.y6b{bottom:818.714700px;}
.y4{bottom:828.459900px;}
.y3e{bottom:828.474600px;}
.y6a{bottom:834.914550px;}
.y3d{bottom:846.474600px;}
.y69{bottom:851.114700px;}
.y3{bottom:864.459900px;}
.y3c{bottom:864.474600px;}
.y68{bottom:867.314700px;}
.y2{bottom:882.459900px;}
.y3b{bottom:882.474600px;}
.y67{bottom:883.514700px;}
.y1{bottom:937.589700px;}
.h5{height:37.494141px;}
.h7{height:42.117188px;}
.h6{height:47.381836px;}
.h9{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h8{height:52.792969px;}
.h3{height:53.291016px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.750000px;}
.x8{left:85.050000px;}
.x5{left:87.750150px;}
.x4{left:93.450150px;}
.xa{left:106.275000px;}
.x2{left:109.005750px;}
.x9{left:167.390400px;}
.x3{left:188.280450px;}
.x6{left:361.425000px;}
.xc{left:382.725000px;}
.x7{left:385.425000px;}
.xb{left:403.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls35{letter-spacing:-0.576000pt;}
.ls34{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls31{letter-spacing:-0.240000pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.266667pt;}
.ls27{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.457067pt;}
.ls25{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.672000pt;}
.ls2f{letter-spacing:0.720000pt;}
.lsd{letter-spacing:0.746667pt;}
.ls21{letter-spacing:0.816000pt;}
.ls2{letter-spacing:0.853333pt;}
.ls12{letter-spacing:0.906667pt;}
.ls1e{letter-spacing:0.912000pt;}
.lse{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.013333pt;}
.ls2d{letter-spacing:1.113600pt;}
.ls18{letter-spacing:1.162133pt;}
.ls2a{letter-spacing:1.200000pt;}
.ls23{letter-spacing:1.248000pt;}
.ls2b{letter-spacing:1.296000pt;}
.ls36{letter-spacing:1.344000pt;}
.ls6{letter-spacing:1.386667pt;}
.ls0{letter-spacing:1.600000pt;}
.ls28{letter-spacing:1.632000pt;}
.ls1{letter-spacing:1.760000pt;}
.ls1f{letter-spacing:1.776000pt;}
.ls1b{letter-spacing:1.866667pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls5{letter-spacing:1.973333pt;}
.ls1a{letter-spacing:2.186667pt;}
.lsc{letter-spacing:2.346667pt;}
.ls33{letter-spacing:2.352000pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls26{letter-spacing:2.688000pt;}
.ls1d{letter-spacing:2.832000pt;}
.ls20{letter-spacing:3.312000pt;}
.ls3{letter-spacing:7.548800pt;}
.ws4{word-spacing:-15.680000pt;}
.ws0{word-spacing:-14.933333pt;}
.ws20{word-spacing:-14.400000pt;}
.ws2{word-spacing:-14.240000pt;}
.ws3{word-spacing:-13.973333pt;}
.ws1f{word-spacing:-13.333333pt;}
.ws22{word-spacing:-13.296000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws1{word-spacing:-7.733333pt;}
.ws23{word-spacing:-6.960000pt;}
.ws1c{word-spacing:-3.360000pt;}
.ws13{word-spacing:-3.306667pt;}
.wsc{word-spacing:-3.024000pt;}
.wsd{word-spacing:-2.976000pt;}
.ws41{word-spacing:-2.880000pt;}
.ws1e{word-spacing:-2.826667pt;}
.ws15{word-spacing:-2.773333pt;}
.ws49{word-spacing:-2.736000pt;}
.ws43{word-spacing:-2.496000pt;}
.ws1a{word-spacing:-2.026667pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws32{word-spacing:-1.776000pt;}
.ws26{word-spacing:-1.760000pt;}
.ws46{word-spacing:-1.680000pt;}
.ws6{word-spacing:-1.600000pt;}
.ws3d{word-spacing:-1.440000pt;}
.ws44{word-spacing:-1.248000pt;}
.ws1d{word-spacing:-1.120000pt;}
.ws19{word-spacing:-1.013333pt;}
.ws3b{word-spacing:-0.816000pt;}
.ws4a{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.746667pt;}
.ws39{word-spacing:-0.720000pt;}
.ws9{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.624000pt;}
.ws38{word-spacing:-0.576000pt;}
.ws48{word-spacing:-0.480000pt;}
.ws36{word-spacing:-0.192000pt;}
.ws2e{word-spacing:-0.160000pt;}
.ws5{word-spacing:0.000000pt;}
.ws27{word-spacing:0.480000pt;}
.ws14{word-spacing:0.640000pt;}
.ws25{word-spacing:1.173333pt;}
.wsb{word-spacing:1.200000pt;}
.ws16{word-spacing:1.760000pt;}
.ws24{word-spacing:2.240000pt;}
.ws29{word-spacing:2.293333pt;}
.ws2c{word-spacing:2.613333pt;}
.ws3f{word-spacing:2.880000pt;}
.ws10{word-spacing:3.093333pt;}
.ws40{word-spacing:3.120000pt;}
.ws2a{word-spacing:3.253333pt;}
.ws45{word-spacing:3.552000pt;}
.ws2b{word-spacing:3.573333pt;}
.ws3e{word-spacing:3.840000pt;}
.ws47{word-spacing:4.032000pt;}
.ws37{word-spacing:4.128000pt;}
.ws1b{word-spacing:4.213333pt;}
.ws11{word-spacing:4.266667pt;}
.ws4b{word-spacing:4.416000pt;}
.ws42{word-spacing:4.560000pt;}
.ws8{word-spacing:4.640000pt;}
.ws12{word-spacing:4.853333pt;}
.wse{word-spacing:4.906667pt;}
.ws3a{word-spacing:4.944000pt;}
.wsf{word-spacing:4.960000pt;}
.ws31{word-spacing:4.992000pt;}
.ws33{word-spacing:5.088000pt;}
.ws28{word-spacing:5.493333pt;}
.wsa{word-spacing:5.712000pt;}
.ws3c{word-spacing:5.904000pt;}
.ws30{word-spacing:6.000000pt;}
.ws2f{word-spacing:6.026667pt;}
.ws17{word-spacing:6.453333pt;}
.ws35{word-spacing:6.624000pt;}
.ws7{word-spacing:6.666667pt;}
._d{margin-left:-84.000000pt;}
._2{margin-left:-6.880000pt;}
._b{margin-left:-5.920000pt;}
._5{margin-left:-4.512000pt;}
._4{margin-left:-3.322133pt;}
._6{margin-left:-2.149867pt;}
._3{margin-left:-1.013333pt;}
._7{width:1.309333pt;}
._8{width:2.258667pt;}
._f{width:3.888000pt;}
._a{width:5.386667pt;}
._9{width:6.613333pt;}
._1{width:8.213333pt;}
._c{width:68.016000pt;}
._0{width:1243.794133pt;}
._e{width:1315.816533pt;}
.fs4{font-size:27.840000pt;}
.fs2{font-size:30.933333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:69.879733pt;}
.y66{bottom:71.088533pt;}
.y3a{bottom:76.992800pt;}
.y98{bottom:81.879733pt;}
.y65{bottom:85.488533pt;}
.y39{bottom:88.992800pt;}
.y97{bottom:93.879733pt;}
.y64{bottom:99.888533pt;}
.y38{bottom:100.992800pt;}
.y96{bottom:105.879733pt;}
.y63{bottom:114.288533pt;}
.y95{bottom:117.879733pt;}
.y62{bottom:128.688533pt;}
.y94{bottom:129.879733pt;}
.y93{bottom:141.879733pt;}
.y21{bottom:142.252133pt;}
.y37{bottom:143.052133pt;}
.y61{bottom:143.088533pt;}
.y92{bottom:153.879733pt;}
.y60{bottom:157.488533pt;}
.y20{bottom:158.252133pt;}
.y36{bottom:159.318800pt;}
.y5f{bottom:171.888533pt;}
.y1f{bottom:174.252133pt;}
.y35{bottom:175.585467pt;}
.y91{bottom:180.546400pt;}
.y5e{bottom:186.288533pt;}
.y1e{bottom:190.252133pt;}
.y34{bottom:191.852133pt;}
.y90{bottom:194.946400pt;}
.y5d{bottom:200.688533pt;}
.y1d{bottom:206.252133pt;}
.y33{bottom:208.118800pt;}
.y8f{bottom:209.346400pt;}
.y5c{bottom:215.088533pt;}
.y1c{bottom:222.252133pt;}
.y8e{bottom:223.746400pt;}
.y32{bottom:224.385467pt;}
.y5b{bottom:229.488533pt;}
.y8d{bottom:238.146400pt;}
.y1b{bottom:238.252133pt;}
.y31{bottom:240.652133pt;}
.y5a{bottom:243.888533pt;}
.y8c{bottom:252.546400pt;}
.y1a{bottom:254.252133pt;}
.y30{bottom:256.918800pt;}
.y59{bottom:258.288533pt;}
.y8b{bottom:266.946400pt;}
.y19{bottom:270.252133pt;}
.y58{bottom:272.688533pt;}
.y2f{bottom:273.185467pt;}
.y8a{bottom:281.346400pt;}
.y18{bottom:286.252133pt;}
.y57{bottom:287.088533pt;}
.y2e{bottom:289.452133pt;}
.y89{bottom:295.746400pt;}
.y56{bottom:301.488533pt;}
.y17{bottom:302.252133pt;}
.y2d{bottom:305.718800pt;}
.y88{bottom:310.146400pt;}
.y55{bottom:315.888533pt;}
.y16{bottom:318.252133pt;}
.y2c{bottom:321.985467pt;}
.y87{bottom:324.546400pt;}
.y54{bottom:330.288533pt;}
.y15{bottom:334.252133pt;}
.y2b{bottom:338.252133pt;}
.y86{bottom:338.946400pt;}
.y53{bottom:344.688533pt;}
.y14{bottom:350.252133pt;}
.y85{bottom:353.346400pt;}
.y2a{bottom:354.518800pt;}
.y13{bottom:366.252133pt;}
.y84{bottom:367.746400pt;}
.y29{bottom:370.785467pt;}
.y52{bottom:377.755200pt;}
.y83{bottom:382.146400pt;}
.y12{bottom:382.252133pt;}
.y28{bottom:387.052133pt;}
.y82{bottom:396.546400pt;}
.y27{bottom:403.318800pt;}
.y81{bottom:410.946400pt;}
.y11{bottom:412.918800pt;}
.y26{bottom:419.585467pt;}
.y80{bottom:425.346400pt;}
.y10{bottom:427.318800pt;}
.y51{bottom:432.421867pt;}
.y25{bottom:435.852133pt;}
.y7f{bottom:439.746400pt;}
.yf{bottom:441.718800pt;}
.y50{bottom:448.421867pt;}
.y24{bottom:452.118800pt;}
.y7e{bottom:454.146400pt;}
.ye{bottom:456.118800pt;}
.y4f{bottom:464.421867pt;}
.y23{bottom:468.385467pt;}
.y7d{bottom:468.546400pt;}
.yd{bottom:470.518800pt;}
.y4e{bottom:480.421867pt;}
.y7c{bottom:482.946400pt;}
.y22{bottom:484.652133pt;}
.yc{bottom:484.918800pt;}
.y4d{bottom:496.421867pt;}
.y7b{bottom:497.346400pt;}
.yb{bottom:500.918800pt;}
.y7a{bottom:511.746400pt;}
.y4c{bottom:512.421867pt;}
.ya{bottom:516.918800pt;}
.y79{bottom:526.146400pt;}
.y4b{bottom:528.421867pt;}
.y9{bottom:532.918800pt;}
.y78{bottom:540.546400pt;}
.y4a{bottom:544.421867pt;}
.y77{bottom:554.946400pt;}
.y49{bottom:560.421867pt;}
.y76{bottom:569.346400pt;}
.y48{bottom:576.421867pt;}
.y7{bottom:581.844267pt;}
.y75{bottom:583.746400pt;}
.y47{bottom:592.421867pt;}
.y74{bottom:598.146400pt;}
.y6{bottom:607.177600pt;}
.y46{bottom:608.421867pt;}
.y73{bottom:612.546400pt;}
.y45{bottom:624.421867pt;}
.y72{bottom:626.946400pt;}
.y5{bottom:632.510933pt;}
.y44{bottom:640.421867pt;}
.y71{bottom:641.346400pt;}
.y70{bottom:655.746400pt;}
.y43{bottom:656.421867pt;}
.y6f{bottom:670.146400pt;}
.y42{bottom:672.421867pt;}
.y6e{bottom:684.546400pt;}
.y8{bottom:684.938133pt;}
.y41{bottom:688.421867pt;}
.y6d{bottom:698.946400pt;}
.y40{bottom:704.421867pt;}
.y6c{bottom:713.346400pt;}
.y3f{bottom:720.421867pt;}
.y6b{bottom:727.746400pt;}
.y4{bottom:736.408800pt;}
.y3e{bottom:736.421867pt;}
.y6a{bottom:742.146267pt;}
.y3d{bottom:752.421867pt;}
.y69{bottom:756.546400pt;}
.y3{bottom:768.408800pt;}
.y3c{bottom:768.421867pt;}
.y68{bottom:770.946400pt;}
.y2{bottom:784.408800pt;}
.y3b{bottom:784.421867pt;}
.y67{bottom:785.346400pt;}
.y1{bottom:833.413067pt;}
.h5{height:33.328125pt;}
.h7{height:37.437500pt;}
.h6{height:42.117188pt;}
.h9{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h8{height:46.927083pt;}
.h3{height:47.369792pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.666667pt;}
.x8{left:75.600000pt;}
.x5{left:78.000133pt;}
.x4{left:83.066800pt;}
.xa{left:94.466667pt;}
.x2{left:96.894000pt;}
.x9{left:148.791467pt;}
.x3{left:167.360400pt;}
.x6{left:321.266667pt;}
.xc{left:340.200000pt;}
.x7{left:342.600000pt;}
.xb{left:359.066667pt;}
}




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