
    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_5d6ff8cfed7326deac8ea1a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_715da1cbb80cf3d6edb61e41.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dbce21a4c66b37c4179f6ca4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.111816;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_b56e05c6216d300a3e26d1db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111816;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_3e871e0b410aae1f08a96bdf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_002f6139694dcc29a6e5cab5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_addc57dce6c2b28fdcc783b4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d01a1a0adaaaaea9ac1999e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_9589eaaf18d38d363815008a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.656000px;}
.ls5{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.288000px;}
.lsb{letter-spacing:3.024000px;}
.ls8{letter-spacing:9.504000px;}
.ls9{letter-spacing:9.684000px;}
.ls1{letter-spacing:39.000000px;}
.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;}
}
.ws1{word-spacing:-16.704000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.416000px;}
.ws6{word-spacing:-16.272000px;}
.ws5{word-spacing:-16.200000px;}
.ws4{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.226440px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-10.512000px;}
._19{margin-left:-5.112000px;}
._e{margin-left:-3.684000px;}
._6{margin-left:-2.508000px;}
._0{margin-left:-1.080000px;}
._3{width:1.008000px;}
._7{width:2.136000px;}
._f{width:3.228000px;}
._8{width:4.392000px;}
._a{width:5.832000px;}
._10{width:6.984000px;}
._5{width:8.928000px;}
._4{width:10.008000px;}
._9{width:11.232000px;}
._2{width:13.104000px;}
._1{width:14.448000px;}
._11{width:17.580000px;}
._17{width:18.696000px;}
._14{width:19.776000px;}
._13{width:21.672000px;}
._12{width:23.400000px;}
._16{width:25.128000px;}
._15{width:26.424000px;}
._b{width:27.648000px;}
._1a{width:28.800000px;}
._c{width:29.904000px;}
._d{width:31.500000px;}
._1b{width:37.152000px;}
._21{width:71.136000px;}
._20{width:72.360000px;}
._22{width:73.752000px;}
._26{width:76.320000px;}
._25{width:77.472000px;}
._2c{width:95.088000px;}
._27{width:104.544000px;}
._1f{width:127.368000px;}
._1e{width:128.520000px;}
._24{width:139.884000px;}
._23{width:140.976000px;}
._29{width:144.504000px;}
._28{width:145.584000px;}
._2b{width:148.320000px;}
._2a{width:149.328000px;}
._1d{width:249.984000px;}
._1c{width:251.064000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.600000px;}
.y3{bottom:77.760000px;}
.ye4{bottom:111.420000px;}
.yc3{bottom:112.500000px;}
.y42{bottom:117.540000px;}
.yb1{bottom:119.520000px;}
.y7e{bottom:124.380000px;}
.yf6{bottom:130.500000px;}
.y51{bottom:136.440000px;}
.y98{bottom:138.420000px;}
.ye3{bottom:142.380000px;}
.y6f{bottom:143.460000px;}
.yb8{bottom:143.640000px;}
.y41{bottom:148.500000px;}
.yb0{bottom:150.480000px;}
.yca{bottom:150.660000px;}
.y21{bottom:152.460000px;}
.y7d{bottom:155.520000px;}
.y50{bottom:167.400000px;}
.y97{bottom:169.380000px;}
.yf5{bottom:173.520000px;}
.y6e{bottom:174.420000px;}
.y40{bottom:179.460000px;}
.yaf{bottom:181.440000px;}
.y20{bottom:183.420000px;}
.ye2{bottom:185.580000px;}
.y7c{bottom:186.480000px;}
.y4f{bottom:198.360000px;}
.y96{bottom:200.340000px;}
.yf4{bottom:204.300000px;}
.y6d{bottom:205.380000px;}
.y3f{bottom:210.420000px;}
.yae{bottom:212.400000px;}
.y1f{bottom:214.380000px;}
.ye1{bottom:216.360000px;}
.y101{bottom:216.540000px;}
.y7b{bottom:217.440000px;}
.yc0{bottom:224.670000px;}
.y4e{bottom:229.350000px;}
.y95{bottom:231.330000px;}
.y6c{bottom:236.370000px;}
.y3e{bottom:241.410000px;}
.yad{bottom:243.390000px;}
.y1e{bottom:245.370000px;}
.yf3{bottom:247.530000px;}
.y7a{bottom:248.430000px;}
.ybf{bottom:255.450000px;}
.ye0{bottom:259.590000px;}
.y4d{bottom:260.490000px;}
.y94{bottom:262.290000px;}
.y6b{bottom:267.330000px;}
.y3d{bottom:272.370000px;}
.yac{bottom:274.350000px;}
.y1d{bottom:276.330000px;}
.y79{bottom:279.390000px;}
.ybe{bottom:286.410000px;}
.yf2{bottom:290.550000px;}
.y4c{bottom:291.450000px;}
.y93{bottom:293.430000px;}
.y6a{bottom:298.290000px;}
.ydf{bottom:302.430000px;}
.y3c{bottom:303.330000px;}
.yc9{bottom:305.310000px;}
.y1c{bottom:307.290000px;}
.y78{bottom:310.350000px;}
.ybd{bottom:317.370000px;}
.yab{bottom:317.550000px;}
.y4b{bottom:322.410000px;}
.y69{bottom:329.430000px;}
.yde{bottom:333.210000px;}
.yf1{bottom:333.390000px;}
.y3b{bottom:334.290000px;}
.yc8{bottom:336.270000px;}
.y92{bottom:336.450000px;}
.y77{bottom:341.310000px;}
.yaa{bottom:348.330000px;}
.y1b{bottom:350.490000px;}
.y4a{bottom:353.370000px;}
.y68{bottom:360.390000px;}
.y3a{bottom:365.430000px;}
.y91{bottom:367.410000px;}
.y76{bottom:372.270000px;}
.yc2{bottom:372.450000px;}
.ydd{bottom:376.410000px;}
.ya9{bottom:379.290000px;}
.y49{bottom:384.330000px;}
.yb7{bottom:391.350000px;}
.ybc{bottom:391.530000px;}
.y1a{bottom:393.510000px;}
.y39{bottom:396.390000px;}
.y90{bottom:398.370000px;}
.y75{bottom:403.410000px;}
.y67{bottom:403.590000px;}
.ydc{bottom:407.190000px;}
.ya8{bottom:410.250000px;}
.y48{bottom:415.290000px;}
.yf0{bottom:419.430000px;}
.yb6{bottom:422.310000px;}
.y38{bottom:427.350000px;}
.y8f{bottom:429.330000px;}
.y66{bottom:434.370000px;}
.y19{bottom:436.530000px;}
.ya7{bottom:441.210000px;}
.yc7{bottom:441.390000px;}
.y47{bottom:446.250000px;}
.ydb{bottom:450.390000px;}
.yb5{bottom:453.270000px;}
.y37{bottom:458.355000px;}
.yef{bottom:462.495000px;}
.y65{bottom:465.375000px;}
.ya6{bottom:472.395000px;}
.y8e{bottom:472.575000px;}
.y46{bottom:477.255000px;}
.y18{bottom:479.415000px;}
.yda{bottom:481.215000px;}
.yc6{bottom:484.455000px;}
.y36{bottom:489.315000px;}
.y64{bottom:496.335000px;}
.yb4{bottom:496.515000px;}
.y8d{bottom:503.355000px;}
.yee{bottom:505.515000px;}
.y45{bottom:508.395000px;}
.y17{bottom:510.195000px;}
.yd9{bottom:512.175000px;}
.y35{bottom:520.275000px;}
.y100{bottom:524.415000px;}
.y63{bottom:527.295000px;}
.yc5{bottom:527.475000px;}
.y8c{bottom:534.315000px;}
.y44{bottom:539.355000px;}
.y16{bottom:541.335000px;}
.yed{bottom:548.355000px;}
.y34{bottom:551.235000px;}
.yff{bottom:555.195000px;}
.yd8{bottom:555.375000px;}
.y62{bottom:558.255000px;}
.y8b{bottom:565.275000px;}
.ybb{bottom:570.495000px;}
.y15{bottom:572.295000px;}
.y33{bottom:582.195000px;}
.y43{bottom:582.375000px;}
.yd7{bottom:586.155000px;}
.y61{bottom:589.215000px;}
.yec{bottom:591.375000px;}
.ya5{bottom:596.235000px;}
.yfe{bottom:598.395000px;}
.yba{bottom:601.275000px;}
.y74{bottom:601.455000px;}
.y14{bottom:603.255000px;}
.y8a{bottom:608.475000px;}
.y32{bottom:613.335000px;}
.y60{bottom:620.175000px;}
.ya4{bottom:627.195000px;}
.yd6{bottom:629.355000px;}
.y73{bottom:632.235000px;}
.yc4{bottom:632.415000px;}
.y13{bottom:634.215000px;}
.yeb{bottom:634.395000px;}
.y89{bottom:639.255000px;}
.yfd{bottom:641.415000px;}
.y31{bottom:644.295000px;}
.y5f{bottom:651.135000px;}
.ya3{bottom:658.155000px;}
.y72{bottom:663.195000px;}
.yb3{bottom:663.375000px;}
.y12{bottom:665.175000px;}
.y88{bottom:670.215000px;}
.yfc{bottom:672.195000px;}
.yd5{bottom:672.375000px;}
.y30{bottom:675.255000px;}
.yea{bottom:677.415000px;}
.ya2{bottom:689.145000px;}
.y71{bottom:694.185000px;}
.y5e{bottom:694.365000px;}
.y11{bottom:696.165000px;}
.y87{bottom:701.205000px;}
.y2f{bottom:706.245000px;}
.yc1{bottom:706.425000px;}
.ye9{bottom:708.225000px;}
.yd4{bottom:715.425000px;}
.ya1{bottom:720.105000px;}
.y5d{bottom:725.145000px;}
.y10{bottom:727.125000px;}
.y86{bottom:732.165000px;}
.y2e{bottom:737.205000px;}
.yfb{bottom:746.205000px;}
.ye8{bottom:751.425000px;}
.y5c{bottom:756.105000px;}
.yf{bottom:758.085000px;}
.yd3{bottom:758.265000px;}
.ya0{bottom:763.305000px;}
.y2d{bottom:768.165000px;}
.y85{bottom:775.365000px;}
.y5b{bottom:787.245000px;}
.ye{bottom:789.225000px;}
.yfa{bottom:789.405000px;}
.y9f{bottom:794.085000px;}
.ye7{bottom:794.265000px;}
.y2c{bottom:799.125000px;}
.y84{bottom:806.145000px;}
.y5a{bottom:818.205000px;}
.yd{bottom:820.185000px;}
.y9e{bottom:825.225000px;}
.y2b{bottom:830.085000px;}
.yb9{bottom:830.265000px;}
.yd2{bottom:832.245000px;}
.y83{bottom:837.105000px;}
.ye6{bottom:837.285000px;}
.y59{bottom:849.165000px;}
.yc{bottom:851.145000px;}
.y9d{bottom:856.185000px;}
.y2a{bottom:861.225000px;}
.yd1{bottom:863.025000px;}
.y82{bottom:868.065000px;}
.y58{bottom:880.125000px;}
.y9c{bottom:887.145000px;}
.y29{bottom:892.185000px;}
.yb{bottom:894.345000px;}
.y81{bottom:899.025000px;}
.yd0{bottom:906.225000px;}
.y57{bottom:911.085000px;}
.y28{bottom:923.190000px;}
.yb2{bottom:923.370000px;}
.ye5{bottom:930.210000px;}
.y9b{bottom:930.390000px;}
.ycf{bottom:937.050000px;}
.ya{bottom:937.230000px;}
.y56{bottom:942.090000px;}
.y80{bottom:942.270000px;}
.yf9{bottom:949.290000px;}
.y27{bottom:954.150000px;}
.y55{bottom:973.050000px;}
.y9a{bottom:973.230000px;}
.yf8{bottom:980.070000px;}
.y9{bottom:980.250000px;}
.y26{bottom:985.110000px;}
.y54{bottom:1004.010000px;}
.yce{bottom:1011.030000px;}
.y25{bottom:1016.070000px;}
.y7f{bottom:1016.250000px;}
.y8{bottom:1023.270000px;}
.y53{bottom:1035.150000px;}
.y24{bottom:1047.030000px;}
.y99{bottom:1047.210000px;}
.ycd{bottom:1054.230000px;}
.y70{bottom:1066.110000px;}
.y7{bottom:1066.290000px;}
.y23{bottom:1077.990000px;}
.y52{bottom:1078.170000px;}
.yf7{bottom:1097.070000px;}
.ycc{bottom:1097.250000px;}
.y22{bottom:1108.950000px;}
.y6{bottom:1109.130000px;}
.y5{bottom:1140.090000px;}
.ycb{bottom:1140.270000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.h2{height:50.229844px;}
.h3{height:52.453125px;}
.h4{height:64.898438px;}
.h6{height:72.562500px;}
.h5{height:74.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x3{left:132.696000px;}
.x5{left:148.896000px;}
.x6{left:154.650000px;}
.x4{left:159.690000px;}
.x9{left:170.130000px;}
.x7{left:181.650000px;}
.x8{left:748.800000px;}
.x2{left:757.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.472000pt;}
.ls5{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.256000pt;}
.lsb{letter-spacing:2.688000pt;}
.ls8{letter-spacing:8.448000pt;}
.ls9{letter-spacing:8.608000pt;}
.ls1{letter-spacing:34.666667pt;}
.ws1{word-spacing:-14.848000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.592000pt;}
.ws6{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.400000pt;}
.ws4{word-spacing:-14.208000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-9.344000pt;}
._19{margin-left:-4.544000pt;}
._e{margin-left:-3.274667pt;}
._6{margin-left:-2.229333pt;}
._0{margin-left:-0.960000pt;}
._3{width:0.896000pt;}
._7{width:1.898667pt;}
._f{width:2.869333pt;}
._8{width:3.904000pt;}
._a{width:5.184000pt;}
._10{width:6.208000pt;}
._5{width:7.936000pt;}
._4{width:8.896000pt;}
._9{width:9.984000pt;}
._2{width:11.648000pt;}
._1{width:12.842667pt;}
._11{width:15.626667pt;}
._17{width:16.618667pt;}
._14{width:17.578667pt;}
._13{width:19.264000pt;}
._12{width:20.800000pt;}
._16{width:22.336000pt;}
._15{width:23.488000pt;}
._b{width:24.576000pt;}
._1a{width:25.600000pt;}
._c{width:26.581333pt;}
._d{width:28.000000pt;}
._1b{width:33.024000pt;}
._21{width:63.232000pt;}
._20{width:64.320000pt;}
._22{width:65.557333pt;}
._26{width:67.840000pt;}
._25{width:68.864000pt;}
._2c{width:84.522667pt;}
._27{width:92.928000pt;}
._1f{width:113.216000pt;}
._1e{width:114.240000pt;}
._24{width:124.341333pt;}
._23{width:125.312000pt;}
._29{width:128.448000pt;}
._28{width:129.408000pt;}
._2b{width:131.840000pt;}
._2a{width:132.736000pt;}
._1d{width:222.208000pt;}
._1c{width:223.168000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.200000pt;}
.y3{bottom:69.120000pt;}
.ye4{bottom:99.040000pt;}
.yc3{bottom:100.000000pt;}
.y42{bottom:104.480000pt;}
.yb1{bottom:106.240000pt;}
.y7e{bottom:110.560000pt;}
.yf6{bottom:116.000000pt;}
.y51{bottom:121.280000pt;}
.y98{bottom:123.040000pt;}
.ye3{bottom:126.560000pt;}
.y6f{bottom:127.520000pt;}
.yb8{bottom:127.680000pt;}
.y41{bottom:132.000000pt;}
.yb0{bottom:133.760000pt;}
.yca{bottom:133.920000pt;}
.y21{bottom:135.520000pt;}
.y7d{bottom:138.240000pt;}
.y50{bottom:148.800000pt;}
.y97{bottom:150.560000pt;}
.yf5{bottom:154.240000pt;}
.y6e{bottom:155.040000pt;}
.y40{bottom:159.520000pt;}
.yaf{bottom:161.280000pt;}
.y20{bottom:163.040000pt;}
.ye2{bottom:164.960000pt;}
.y7c{bottom:165.760000pt;}
.y4f{bottom:176.320000pt;}
.y96{bottom:178.080000pt;}
.yf4{bottom:181.600000pt;}
.y6d{bottom:182.560000pt;}
.y3f{bottom:187.040000pt;}
.yae{bottom:188.800000pt;}
.y1f{bottom:190.560000pt;}
.ye1{bottom:192.320000pt;}
.y101{bottom:192.480000pt;}
.y7b{bottom:193.280000pt;}
.yc0{bottom:199.706667pt;}
.y4e{bottom:203.866667pt;}
.y95{bottom:205.626667pt;}
.y6c{bottom:210.106667pt;}
.y3e{bottom:214.586667pt;}
.yad{bottom:216.346667pt;}
.y1e{bottom:218.106667pt;}
.yf3{bottom:220.026667pt;}
.y7a{bottom:220.826667pt;}
.ybf{bottom:227.066667pt;}
.ye0{bottom:230.746667pt;}
.y4d{bottom:231.546667pt;}
.y94{bottom:233.146667pt;}
.y6b{bottom:237.626667pt;}
.y3d{bottom:242.106667pt;}
.yac{bottom:243.866667pt;}
.y1d{bottom:245.626667pt;}
.y79{bottom:248.346667pt;}
.ybe{bottom:254.586667pt;}
.yf2{bottom:258.266667pt;}
.y4c{bottom:259.066667pt;}
.y93{bottom:260.826667pt;}
.y6a{bottom:265.146667pt;}
.ydf{bottom:268.826667pt;}
.y3c{bottom:269.626667pt;}
.yc9{bottom:271.386667pt;}
.y1c{bottom:273.146667pt;}
.y78{bottom:275.866667pt;}
.ybd{bottom:282.106667pt;}
.yab{bottom:282.266667pt;}
.y4b{bottom:286.586667pt;}
.y69{bottom:292.826667pt;}
.yde{bottom:296.186667pt;}
.yf1{bottom:296.346667pt;}
.y3b{bottom:297.146667pt;}
.yc8{bottom:298.906667pt;}
.y92{bottom:299.066667pt;}
.y77{bottom:303.386667pt;}
.yaa{bottom:309.626667pt;}
.y1b{bottom:311.546667pt;}
.y4a{bottom:314.106667pt;}
.y68{bottom:320.346667pt;}
.y3a{bottom:324.826667pt;}
.y91{bottom:326.586667pt;}
.y76{bottom:330.906667pt;}
.yc2{bottom:331.066667pt;}
.ydd{bottom:334.586667pt;}
.ya9{bottom:337.146667pt;}
.y49{bottom:341.626667pt;}
.yb7{bottom:347.866667pt;}
.ybc{bottom:348.026667pt;}
.y1a{bottom:349.786667pt;}
.y39{bottom:352.346667pt;}
.y90{bottom:354.106667pt;}
.y75{bottom:358.586667pt;}
.y67{bottom:358.746667pt;}
.ydc{bottom:361.946667pt;}
.ya8{bottom:364.666667pt;}
.y48{bottom:369.146667pt;}
.yf0{bottom:372.826667pt;}
.yb6{bottom:375.386667pt;}
.y38{bottom:379.866667pt;}
.y8f{bottom:381.626667pt;}
.y66{bottom:386.106667pt;}
.y19{bottom:388.026667pt;}
.ya7{bottom:392.186667pt;}
.yc7{bottom:392.346667pt;}
.y47{bottom:396.666667pt;}
.ydb{bottom:400.346667pt;}
.yb5{bottom:402.906667pt;}
.y37{bottom:407.426667pt;}
.yef{bottom:411.106667pt;}
.y65{bottom:413.666667pt;}
.ya6{bottom:419.906667pt;}
.y8e{bottom:420.066667pt;}
.y46{bottom:424.226667pt;}
.y18{bottom:426.146667pt;}
.yda{bottom:427.746667pt;}
.yc6{bottom:430.626667pt;}
.y36{bottom:434.946667pt;}
.y64{bottom:441.186667pt;}
.yb4{bottom:441.346667pt;}
.y8d{bottom:447.426667pt;}
.yee{bottom:449.346667pt;}
.y45{bottom:451.906667pt;}
.y17{bottom:453.506667pt;}
.yd9{bottom:455.266667pt;}
.y35{bottom:462.466667pt;}
.y100{bottom:466.146667pt;}
.y63{bottom:468.706667pt;}
.yc5{bottom:468.866667pt;}
.y8c{bottom:474.946667pt;}
.y44{bottom:479.426667pt;}
.y16{bottom:481.186667pt;}
.yed{bottom:487.426667pt;}
.y34{bottom:489.986667pt;}
.yff{bottom:493.506667pt;}
.yd8{bottom:493.666667pt;}
.y62{bottom:496.226667pt;}
.y8b{bottom:502.466667pt;}
.ybb{bottom:507.106667pt;}
.y15{bottom:508.706667pt;}
.y33{bottom:517.506667pt;}
.y43{bottom:517.666667pt;}
.yd7{bottom:521.026667pt;}
.y61{bottom:523.746667pt;}
.yec{bottom:525.666667pt;}
.ya5{bottom:529.986667pt;}
.yfe{bottom:531.906667pt;}
.yba{bottom:534.466667pt;}
.y74{bottom:534.626667pt;}
.y14{bottom:536.226667pt;}
.y8a{bottom:540.866667pt;}
.y32{bottom:545.186667pt;}
.y60{bottom:551.266667pt;}
.ya4{bottom:557.506667pt;}
.yd6{bottom:559.426667pt;}
.y73{bottom:561.986667pt;}
.yc4{bottom:562.146667pt;}
.y13{bottom:563.746667pt;}
.yeb{bottom:563.906667pt;}
.y89{bottom:568.226667pt;}
.yfd{bottom:570.146667pt;}
.y31{bottom:572.706667pt;}
.y5f{bottom:578.786667pt;}
.ya3{bottom:585.026667pt;}
.y72{bottom:589.506667pt;}
.yb3{bottom:589.666667pt;}
.y12{bottom:591.266667pt;}
.y88{bottom:595.746667pt;}
.yfc{bottom:597.506667pt;}
.yd5{bottom:597.666667pt;}
.y30{bottom:600.226667pt;}
.yea{bottom:602.146667pt;}
.ya2{bottom:612.573333pt;}
.y71{bottom:617.053333pt;}
.y5e{bottom:617.213333pt;}
.y11{bottom:618.813333pt;}
.y87{bottom:623.293333pt;}
.y2f{bottom:627.773333pt;}
.yc1{bottom:627.933333pt;}
.ye9{bottom:629.533333pt;}
.yd4{bottom:635.933333pt;}
.ya1{bottom:640.093333pt;}
.y5d{bottom:644.573333pt;}
.y10{bottom:646.333333pt;}
.y86{bottom:650.813333pt;}
.y2e{bottom:655.293333pt;}
.yfb{bottom:663.293333pt;}
.ye8{bottom:667.933333pt;}
.y5c{bottom:672.093333pt;}
.yf{bottom:673.853333pt;}
.yd3{bottom:674.013333pt;}
.ya0{bottom:678.493333pt;}
.y2d{bottom:682.813333pt;}
.y85{bottom:689.213333pt;}
.y5b{bottom:699.773333pt;}
.ye{bottom:701.533333pt;}
.yfa{bottom:701.693333pt;}
.y9f{bottom:705.853333pt;}
.ye7{bottom:706.013333pt;}
.y2c{bottom:710.333333pt;}
.y84{bottom:716.573333pt;}
.y5a{bottom:727.293333pt;}
.yd{bottom:729.053333pt;}
.y9e{bottom:733.533333pt;}
.y2b{bottom:737.853333pt;}
.yb9{bottom:738.013333pt;}
.yd2{bottom:739.773333pt;}
.y83{bottom:744.093333pt;}
.ye6{bottom:744.253333pt;}
.y59{bottom:754.813333pt;}
.yc{bottom:756.573333pt;}
.y9d{bottom:761.053333pt;}
.y2a{bottom:765.533333pt;}
.yd1{bottom:767.133333pt;}
.y82{bottom:771.613333pt;}
.y58{bottom:782.333333pt;}
.y9c{bottom:788.573333pt;}
.y29{bottom:793.053333pt;}
.yb{bottom:794.973333pt;}
.y81{bottom:799.133333pt;}
.yd0{bottom:805.533333pt;}
.y57{bottom:809.853333pt;}
.y28{bottom:820.613333pt;}
.yb2{bottom:820.773333pt;}
.ye5{bottom:826.853333pt;}
.y9b{bottom:827.013333pt;}
.ycf{bottom:832.933333pt;}
.ya{bottom:833.093333pt;}
.y56{bottom:837.413333pt;}
.y80{bottom:837.573333pt;}
.yf9{bottom:843.813333pt;}
.y27{bottom:848.133333pt;}
.y55{bottom:864.933333pt;}
.y9a{bottom:865.093333pt;}
.yf8{bottom:871.173333pt;}
.y9{bottom:871.333333pt;}
.y26{bottom:875.653333pt;}
.y54{bottom:892.453333pt;}
.yce{bottom:898.693333pt;}
.y25{bottom:903.173333pt;}
.y7f{bottom:903.333333pt;}
.y8{bottom:909.573333pt;}
.y53{bottom:920.133333pt;}
.y24{bottom:930.693333pt;}
.y99{bottom:930.853333pt;}
.ycd{bottom:937.093333pt;}
.y70{bottom:947.653333pt;}
.y7{bottom:947.813333pt;}
.y23{bottom:958.213333pt;}
.y52{bottom:958.373333pt;}
.yf7{bottom:975.173333pt;}
.ycc{bottom:975.333333pt;}
.y22{bottom:985.733333pt;}
.y6{bottom:985.893333pt;}
.y5{bottom:1013.413333pt;}
.ycb{bottom:1013.573333pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.h2{height:44.648750pt;}
.h3{height:46.625000pt;}
.h4{height:57.687500pt;}
.h6{height:64.500000pt;}
.h5{height:66.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x3{left:117.952000pt;}
.x5{left:132.352000pt;}
.x6{left:137.466667pt;}
.x4{left:141.946667pt;}
.x9{left:151.226667pt;}
.x7{left:161.466667pt;}
.x8{left:665.600000pt;}
.x2{left:673.120000pt;}
}




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