
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5220e4651b43b3ad3d6eb64e.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_b779a2b5e48543282f0cb04e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_d5c84847536323cce2255fbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_1843aceb2d405d12cf2ed84d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cd93d47865fa030f22793e28.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_63605aed6abf561c5912750e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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_f4e41331715408e47104de35.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d6e90f57f6b386badc522c49.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_be23f4b580c4b0a1c11959c5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_95e26e8b093e69c67a914d69.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f6ac8e9821a947ea8171e170.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v4{vertical-align:-94.320000px;}
.v3{vertical-align:-90.000000px;}
.v1{vertical-align:-81.360000px;}
.v2{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.028080px;}
.ls1e{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.148080px;}
.ls1d{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.238200px;}
.ls17{letter-spacing:0.341400px;}
.lsd{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.540000px;}
.ls19{letter-spacing:2.700000px;}
.ls1{letter-spacing:6.480000px;}
.ls16{letter-spacing:7.020000px;}
.ls1c{letter-spacing:7.200000px;}
.ls15{letter-spacing:8.640000px;}
.lsa{letter-spacing:16.380000px;}
.lsf{letter-spacing:17.100000px;}
.ls9{letter-spacing:19.260000px;}
.ls2{letter-spacing:24.480000px;}
.lse{letter-spacing:25.740000px;}
.ls12{letter-spacing:30.060000px;}
.ls10{letter-spacing:33.660000px;}
.ls1b{letter-spacing:34.128000px;}
.ls18{letter-spacing:41.580000px;}
.ls1f{letter-spacing:43.920000px;}
.ls0{letter-spacing:80.940000px;}
.ls8{letter-spacing:125.765280px;}
.ls3{letter-spacing:155.124000px;}
.ls1a{letter-spacing:1245.936000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.022560px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.358440px;}
.ws2{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.126080px;}
._1{width:1.067520px;}
._b{width:2.425920px;}
._4{width:4.366080px;}
._3{width:5.400000px;}
._5{width:7.200000px;}
._f{width:8.403600px;}
._13{width:9.411840px;}
._12{width:10.645200px;}
._14{width:11.984400px;}
._1d{width:13.286160px;}
._2{width:14.448000px;}
._d{width:15.528000px;}
._7{width:16.704000px;}
._1a{width:18.108000px;}
._e{width:19.296000px;}
._6{width:22.032000px;}
._8{width:23.832000px;}
._c{width:25.272480px;}
._1c{width:26.281440px;}
._20{width:27.338400px;}
._1f{width:28.496160px;}
._22{width:29.514480px;}
._1b{width:30.593520px;}
._9{width:31.824000px;}
._a{width:32.916480px;}
._15{width:34.371840px;}
._21{width:36.391680px;}
._18{width:38.666160px;}
._19{width:39.695520px;}
._10{width:41.446080px;}
._11{width:42.487920px;}
._17{width:45.038160px;}
._16{width:46.038960px;}
._24{width:52.775040px;}
._23{width:54.289200px;}
._1e{width:66.917520px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:7.416000px;}
.y4{bottom:7.740000px;}
.y7{bottom:8.640000px;}
.y5{bottom:15.516000px;}
.y2{bottom:57.456000px;}
.y8a{bottom:85.716000px;}
.y83{bottom:88.056000px;}
.y5f{bottom:100.116000px;}
.y89{bottom:106.416000px;}
.y36{bottom:113.796000px;}
.y82{bottom:115.776000px;}
.y88{bottom:127.116000px;}
.y5e{bottom:127.836000px;}
.y35{bottom:137.916000px;}
.y81{bottom:143.496000px;}
.y87{bottom:147.816000px;}
.y5d{bottom:155.730000px;}
.y34{bottom:162.210000px;}
.y86{bottom:168.510000px;}
.y80{bottom:171.390000px;}
.y5c{bottom:183.450000px;}
.y33{bottom:186.330000px;}
.y85{bottom:189.210000px;}
.y7f{bottom:199.110000px;}
.y32{bottom:210.450000px;}
.y5b{bottom:211.170000px;}
.y7e{bottom:226.830000px;}
.y84{bottom:232.410000px;}
.y31{bottom:234.570000px;}
.y5a{bottom:238.890000px;}
.y7d{bottom:254.730000px;}
.y30{bottom:258.690000px;}
.y59{bottom:266.790000px;}
.y7c{bottom:282.495000px;}
.y2f{bottom:282.855000px;}
.y58{bottom:294.555000px;}
.y2e{bottom:305.715000px;}
.y7b{bottom:310.215000px;}
.y57{bottom:318.675000px;}
.y2d{bottom:323.715000px;}
.y7a{bottom:337.935000px;}
.y56{bottom:342.795000px;}
.y2c{bottom:344.415000px;}
.y2b{bottom:365.115000px;}
.y79{bottom:365.835000px;}
.y55{bottom:366.915000px;}
.y2a{bottom:385.815000px;}
.y54{bottom:391.215000px;}
.y78{bottom:393.555000px;}
.y29{bottom:406.515000px;}
.y53{bottom:415.335000px;}
.y77{bottom:421.275000px;}
.y28{bottom:427.215000px;}
.y52{bottom:439.455000px;}
.y27{bottom:447.915000px;}
.y76{bottom:449.175000px;}
.y51{bottom:463.575000px;}
.y26{bottom:468.615000px;}
.y75{bottom:476.895000px;}
.y50{bottom:487.695000px;}
.y74{bottom:504.615000px;}
.y25{bottom:509.295000px;}
.y4f{bottom:511.815000px;}
.y24{bottom:527.295000px;}
.y73{bottom:532.335000px;}
.y4e{bottom:536.115000px;}
.y23{bottom:547.995000px;}
.y4d{bottom:560.235000px;}
.y22{bottom:568.725000px;}
.y4c{bottom:584.385000px;}
.y72{bottom:587.985000px;}
.y21{bottom:589.425000px;}
.y4b{bottom:608.505000px;}
.y20{bottom:610.125000px;}
.y71{bottom:615.705000px;}
.y1f{bottom:630.825000px;}
.y4a{bottom:632.625000px;}
.y70{bottom:643.605000px;}
.y1e{bottom:651.525000px;}
.y49{bottom:656.745000px;}
.y6f{bottom:671.325000px;}
.y1d{bottom:672.225000px;}
.y48{bottom:680.865000px;}
.y1c{bottom:692.925000px;}
.y6e{bottom:699.045000px;}
.y47{bottom:705.165000px;}
.y1b{bottom:713.625000px;}
.y6d{bottom:726.765000px;}
.y46{bottom:729.285000px;}
.y1a{bottom:734.325000px;}
.y45{bottom:753.405000px;}
.y6c{bottom:754.665000px;}
.y19{bottom:755.025000px;}
.y18{bottom:775.725000px;}
.y44{bottom:777.525000px;}
.y6b{bottom:782.385000px;}
.y17{bottom:795.705000px;}
.y43{bottom:801.645000px;}
.y6a{bottom:810.105000px;}
.y16{bottom:813.705000px;}
.y42{bottom:825.765000px;}
.y15{bottom:834.405000px;}
.y69{bottom:837.825000px;}
.y41{bottom:850.110000px;}
.y14{bottom:855.150000px;}
.y68{bottom:865.770000px;}
.y40{bottom:874.230000px;}
.y13{bottom:875.850000px;}
.y67{bottom:893.490000px;}
.y12{bottom:896.550000px;}
.y3f{bottom:898.350000px;}
.y11{bottom:917.250000px;}
.y66{bottom:921.210000px;}
.y3e{bottom:922.470000px;}
.y10{bottom:937.950000px;}
.y3d{bottom:946.590000px;}
.y65{bottom:949.110000px;}
.yf{bottom:957.930000px;}
.y8e{bottom:960.810000px;}
.y3c{bottom:970.710000px;}
.y64{bottom:976.830000px;}
.y8d{bottom:984.390000px;}
.y3b{bottom:994.830000px;}
.ye{bottom:996.990000px;}
.y63{bottom:1004.550000px;}
.yd{bottom:1014.990000px;}
.y3a{bottom:1019.130000px;}
.y62{bottom:1032.270000px;}
.yc{bottom:1035.690000px;}
.y39{bottom:1043.250000px;}
.yb{bottom:1056.390000px;}
.y61{bottom:1060.170000px;}
.y38{bottom:1067.370000px;}
.ya{bottom:1077.090000px;}
.y60{bottom:1087.890000px;}
.y37{bottom:1091.490000px;}
.y9{bottom:1097.070000px;}
.y8c{bottom:1097.790000px;}
.y8{bottom:1115.610000px;}
.y8b{bottom:1118.490000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h3{height:33.120000px;}
.h7{height:38.520000px;}
.h5{height:44.136000px;}
.he{height:52.628906px;}
.hd{height:58.621992px;}
.h12{height:58.651172px;}
.ha{height:60.226875px;}
.hf{height:60.917695px;}
.h15{height:65.010937px;}
.h2{height:65.884219px;}
.hc{height:70.628906px;}
.h14{height:70.664062px;}
.hb{height:72.562500px;}
.h13{height:74.004654px;}
.h8{height:78.626953px;}
.h10{height:82.676953px;}
.h9{height:84.898125px;}
.h11{height:86.585445px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:57.276000px;}
.w3{width:66.240000px;}
.w5{width:66.276000px;}
.w6{width:95.580000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.620000px;}
.x8{left:25.200000px;}
.x3{left:26.460000px;}
.x1{left:63.899987px;}
.x12{left:68.939987px;}
.xc{left:91.655987px;}
.x13{left:95.975987px;}
.xf{left:106.415987px;}
.x9{left:154.649987px;}
.x7{left:175.170000px;}
.x11{left:212.789987px;}
.x10{left:329.474987px;}
.xd{left:331.274987px;}
.xe{left:338.294987px;}
.xb{left:346.214987px;}
.x4{left:447.915000px;}
.xa{left:452.054987px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
@media print{
.v4{vertical-align:-83.840000pt;}
.v3{vertical-align:-80.000000pt;}
.v1{vertical-align:-72.320000pt;}
.v2{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.024960pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.131627pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.211733pt;}
.ls17{letter-spacing:0.303467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls19{letter-spacing:2.400000pt;}
.ls1{letter-spacing:5.760000pt;}
.ls16{letter-spacing:6.240000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls15{letter-spacing:7.680000pt;}
.lsa{letter-spacing:14.560000pt;}
.lsf{letter-spacing:15.200000pt;}
.ls9{letter-spacing:17.120000pt;}
.ls2{letter-spacing:21.760000pt;}
.lse{letter-spacing:22.880000pt;}
.ls12{letter-spacing:26.720000pt;}
.ls10{letter-spacing:29.920000pt;}
.ls1b{letter-spacing:30.336000pt;}
.ls18{letter-spacing:36.960000pt;}
.ls1f{letter-spacing:39.040000pt;}
.ls0{letter-spacing:71.946667pt;}
.ls8{letter-spacing:111.791360pt;}
.ls3{letter-spacing:137.888000pt;}
.ls1a{letter-spacing:1107.498667pt;}
.ws5{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.686720pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.318613pt;}
.ws2{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.948907pt;}
._b{width:2.156373pt;}
._4{width:3.880960pt;}
._3{width:4.800000pt;}
._5{width:6.400000pt;}
._f{width:7.469867pt;}
._13{width:8.366080pt;}
._12{width:9.462400pt;}
._14{width:10.652800pt;}
._1d{width:11.809920pt;}
._2{width:12.842667pt;}
._d{width:13.802667pt;}
._7{width:14.848000pt;}
._1a{width:16.096000pt;}
._e{width:17.152000pt;}
._6{width:19.584000pt;}
._8{width:21.184000pt;}
._c{width:22.464427pt;}
._1c{width:23.361280pt;}
._20{width:24.300800pt;}
._1f{width:25.329920pt;}
._22{width:26.235093pt;}
._1b{width:27.194240pt;}
._9{width:28.288000pt;}
._a{width:29.259093pt;}
._15{width:30.552747pt;}
._21{width:32.348160pt;}
._18{width:34.369920pt;}
._19{width:35.284907pt;}
._10{width:36.840960pt;}
._11{width:37.767040pt;}
._17{width:40.033920pt;}
._16{width:40.923520pt;}
._24{width:46.911147pt;}
._23{width:48.257067pt;}
._1e{width:59.482240pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:6.592000pt;}
.y4{bottom:6.880000pt;}
.y7{bottom:7.680000pt;}
.y5{bottom:13.792000pt;}
.y2{bottom:51.072000pt;}
.y8a{bottom:76.192000pt;}
.y83{bottom:78.272000pt;}
.y5f{bottom:88.992000pt;}
.y89{bottom:94.592000pt;}
.y36{bottom:101.152000pt;}
.y82{bottom:102.912000pt;}
.y88{bottom:112.992000pt;}
.y5e{bottom:113.632000pt;}
.y35{bottom:122.592000pt;}
.y81{bottom:127.552000pt;}
.y87{bottom:131.392000pt;}
.y5d{bottom:138.426667pt;}
.y34{bottom:144.186667pt;}
.y86{bottom:149.786667pt;}
.y80{bottom:152.346667pt;}
.y5c{bottom:163.066667pt;}
.y33{bottom:165.626667pt;}
.y85{bottom:168.186667pt;}
.y7f{bottom:176.986667pt;}
.y32{bottom:187.066667pt;}
.y5b{bottom:187.706667pt;}
.y7e{bottom:201.626667pt;}
.y84{bottom:206.586667pt;}
.y31{bottom:208.506667pt;}
.y5a{bottom:212.346667pt;}
.y7d{bottom:226.426667pt;}
.y30{bottom:229.946667pt;}
.y59{bottom:237.146667pt;}
.y7c{bottom:251.106667pt;}
.y2f{bottom:251.426667pt;}
.y58{bottom:261.826667pt;}
.y2e{bottom:271.746667pt;}
.y7b{bottom:275.746667pt;}
.y57{bottom:283.266667pt;}
.y2d{bottom:287.746667pt;}
.y7a{bottom:300.386667pt;}
.y56{bottom:304.706667pt;}
.y2c{bottom:306.146667pt;}
.y2b{bottom:324.546667pt;}
.y79{bottom:325.186667pt;}
.y55{bottom:326.146667pt;}
.y2a{bottom:342.946667pt;}
.y54{bottom:347.746667pt;}
.y78{bottom:349.826667pt;}
.y29{bottom:361.346667pt;}
.y53{bottom:369.186667pt;}
.y77{bottom:374.466667pt;}
.y28{bottom:379.746667pt;}
.y52{bottom:390.626667pt;}
.y27{bottom:398.146667pt;}
.y76{bottom:399.266667pt;}
.y51{bottom:412.066667pt;}
.y26{bottom:416.546667pt;}
.y75{bottom:423.906667pt;}
.y50{bottom:433.506667pt;}
.y74{bottom:448.546667pt;}
.y25{bottom:452.706667pt;}
.y4f{bottom:454.946667pt;}
.y24{bottom:468.706667pt;}
.y73{bottom:473.186667pt;}
.y4e{bottom:476.546667pt;}
.y23{bottom:487.106667pt;}
.y4d{bottom:497.986667pt;}
.y22{bottom:505.533333pt;}
.y4c{bottom:519.453333pt;}
.y72{bottom:522.653333pt;}
.y21{bottom:523.933333pt;}
.y4b{bottom:540.893333pt;}
.y20{bottom:542.333333pt;}
.y71{bottom:547.293333pt;}
.y1f{bottom:560.733333pt;}
.y4a{bottom:562.333333pt;}
.y70{bottom:572.093333pt;}
.y1e{bottom:579.133333pt;}
.y49{bottom:583.773333pt;}
.y6f{bottom:596.733333pt;}
.y1d{bottom:597.533333pt;}
.y48{bottom:605.213333pt;}
.y1c{bottom:615.933333pt;}
.y6e{bottom:621.373333pt;}
.y47{bottom:626.813333pt;}
.y1b{bottom:634.333333pt;}
.y6d{bottom:646.013333pt;}
.y46{bottom:648.253333pt;}
.y1a{bottom:652.733333pt;}
.y45{bottom:669.693333pt;}
.y6c{bottom:670.813333pt;}
.y19{bottom:671.133333pt;}
.y18{bottom:689.533333pt;}
.y44{bottom:691.133333pt;}
.y6b{bottom:695.453333pt;}
.y17{bottom:707.293333pt;}
.y43{bottom:712.573333pt;}
.y6a{bottom:720.093333pt;}
.y16{bottom:723.293333pt;}
.y42{bottom:734.013333pt;}
.y15{bottom:741.693333pt;}
.y69{bottom:744.733333pt;}
.y41{bottom:755.653333pt;}
.y14{bottom:760.133333pt;}
.y68{bottom:769.573333pt;}
.y40{bottom:777.093333pt;}
.y13{bottom:778.533333pt;}
.y67{bottom:794.213333pt;}
.y12{bottom:796.933333pt;}
.y3f{bottom:798.533333pt;}
.y11{bottom:815.333333pt;}
.y66{bottom:818.853333pt;}
.y3e{bottom:819.973333pt;}
.y10{bottom:833.733333pt;}
.y3d{bottom:841.413333pt;}
.y65{bottom:843.653333pt;}
.yf{bottom:851.493333pt;}
.y8e{bottom:854.053333pt;}
.y3c{bottom:862.853333pt;}
.y64{bottom:868.293333pt;}
.y8d{bottom:875.013333pt;}
.y3b{bottom:884.293333pt;}
.ye{bottom:886.213333pt;}
.y63{bottom:892.933333pt;}
.yd{bottom:902.213333pt;}
.y3a{bottom:905.893333pt;}
.y62{bottom:917.573333pt;}
.yc{bottom:920.613333pt;}
.y39{bottom:927.333333pt;}
.yb{bottom:939.013333pt;}
.y61{bottom:942.373333pt;}
.y38{bottom:948.773333pt;}
.ya{bottom:957.413333pt;}
.y60{bottom:967.013333pt;}
.y37{bottom:970.213333pt;}
.y9{bottom:975.173333pt;}
.y8c{bottom:975.813333pt;}
.y8{bottom:991.653333pt;}
.y8b{bottom:994.213333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h3{height:29.440000pt;}
.h7{height:34.240000pt;}
.h5{height:39.232000pt;}
.he{height:46.781250pt;}
.hd{height:52.108438pt;}
.h12{height:52.134375pt;}
.ha{height:53.535000pt;}
.hf{height:54.149062pt;}
.h15{height:57.787500pt;}
.h2{height:58.563750pt;}
.hc{height:62.781250pt;}
.h14{height:62.812500pt;}
.hb{height:64.500000pt;}
.h13{height:65.781915pt;}
.h8{height:69.890625pt;}
.h10{height:73.490625pt;}
.h9{height:75.465000pt;}
.h11{height:76.964840pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:50.912000pt;}
.w3{width:58.880000pt;}
.w5{width:58.912000pt;}
.w6{width:84.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.440000pt;}
.x8{left:22.400000pt;}
.x3{left:23.520000pt;}
.x1{left:56.799988pt;}
.x12{left:61.279988pt;}
.xc{left:81.471988pt;}
.x13{left:85.311988pt;}
.xf{left:94.591988pt;}
.x9{left:137.466655pt;}
.x7{left:155.706667pt;}
.x11{left:189.146655pt;}
.x10{left:292.866655pt;}
.xd{left:294.466655pt;}
.xe{left:300.706655pt;}
.xb{left:307.746655pt;}
.x4{left:398.146667pt;}
.xa{left:401.826655pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
}




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