
    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_8b52f095916ea1ac6c44fd36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_df3a17d5dc1b84ab9dafbcf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_8add43a8c049136e6ac4ece9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4982f6375b01547250d634e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_dad2abddb58bfe073052980b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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;}
.ls1{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls2{letter-spacing:64.421280px;}
.ls4{letter-spacing:147.197280px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-4.752000px;}
._12{margin-left:-3.617280px;}
._1{margin-left:-2.583360px;}
._0{margin-left:-1.457280px;}
._2{width:1.373280px;}
._7{width:2.874720px;}
._f{width:4.248000px;}
._10{width:5.549280px;}
._11{width:6.748320px;}
._17{width:8.227680px;}
._16{width:9.720000px;}
._c{width:11.088000px;}
._6{width:12.744000px;}
._5{width:13.824000px;}
._a{width:14.958720px;}
._15{width:16.954560px;}
._b{width:19.728000px;}
._1a{width:21.576000px;}
._1b{width:22.824000px;}
._8{width:24.696000px;}
._9{width:26.280000px;}
._1c{width:27.576000px;}
._23{width:28.866720px;}
._24{width:30.029280px;}
._1d{width:32.976000px;}
._1e{width:34.200000px;}
._13{width:35.640000px;}
._14{width:36.864000px;}
._3{width:38.367120px;}
._18{width:39.545760px;}
._4{width:42.389040px;}
._d{width:45.480000px;}
._e{width:47.394720px;}
._21{width:49.589280px;}
._1f{width:60.120000px;}
._20{width:61.350720px;}
._26{width:75.864000px;}
._27{width:77.016000px;}
._28{width:97.848000px;}
._29{width:155.592000px;}
._2a{width:157.152000px;}
._2b{width:217.368000px;}
._2c{width:218.448000px;}
._22{width:234.084000px;}
._2d{width:1049.832000px;}
._25{width:2279.160000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y97{bottom:171.750000px;}
.y30{bottom:172.110000px;}
.y4e{bottom:173.370000px;}
.y86{bottom:174.450000px;}
.yc7{bottom:179.130000px;}
.yed{bottom:184.710000px;}
.yab{bottom:186.330000px;}
.y2f{bottom:192.810000px;}
.y6a{bottom:196.770000px;}
.yc6{bottom:199.830000px;}
.y96{bottom:202.710000px;}
.y4d{bottom:204.510000px;}
.y85{bottom:205.410000px;}
.yec{bottom:211.350000px;}
.y2e{bottom:213.510000px;}
.yaa{bottom:217.290000px;}
.yc5{bottom:220.530000px;}
.y69{bottom:227.910000px;}
.yeb{bottom:232.050000px;}
.y95{bottom:233.670000px;}
.y2d{bottom:234.210000px;}
.y4c{bottom:235.470000px;}
.y84{bottom:236.550000px;}
.yc4{bottom:241.230000px;}
.ya9{bottom:248.430000px;}
.yea{bottom:252.750000px;}
.y2c{bottom:254.910000px;}
.y68{bottom:258.870000px;}
.y94{bottom:264.810000px;}
.y4b{bottom:266.610000px;}
.yc3{bottom:267.870000px;}
.ye9{bottom:273.450000px;}
.y2b{bottom:275.610000px;}
.y83{bottom:278.850000px;}
.ya8{bottom:279.390000px;}
.y67{bottom:290.010000px;}
.ye8{bottom:294.150000px;}
.yc2{bottom:294.510000px;}
.y93{bottom:295.770000px;}
.y2a{bottom:296.310000px;}
.y4a{bottom:297.570000px;}
.ya7{bottom:310.530000px;}
.yc1{bottom:315.210000px;}
.y29{bottom:317.010000px;}
.ye7{bottom:320.790000px;}
.y82{bottom:321.690000px;}
.y92{bottom:326.910000px;}
.y49{bottom:328.710000px;}
.y66{bottom:329.970000px;}
.yc0{bottom:335.910000px;}
.y28{bottom:337.755000px;}
.ya6{bottom:341.535000px;}
.ye6{bottom:347.655000px;}
.y81{bottom:352.875000px;}
.y91{bottom:357.915000px;}
.y27{bottom:358.455000px;}
.y48{bottom:359.715000px;}
.y65{bottom:360.255000px;}
.ybf{bottom:362.775000px;}
.ye5{bottom:368.355000px;}
.ya5{bottom:372.675000px;}
.y26{bottom:379.155000px;}
.y80{bottom:383.835000px;}
.y90{bottom:389.055000px;}
.ybe{bottom:389.415000px;}
.y47{bottom:390.855000px;}
.y64{bottom:392.835000px;}
.y25{bottom:399.855000px;}
.ya4{bottom:403.635000px;}
.ybd{bottom:410.115000px;}
.y7f{bottom:414.975000px;}
.ye4{bottom:415.695000px;}
.y8f{bottom:420.015000px;}
.y24{bottom:420.555000px;}
.y46{bottom:421.815000px;}
.y63{bottom:423.975000px;}
.ybc{bottom:430.815000px;}
.ya3{bottom:434.775000px;}
.y23{bottom:441.255000px;}
.ye3{bottom:442.335000px;}
.y7e{bottom:445.935000px;}
.y8e{bottom:451.155000px;}
.ybb{bottom:451.515000px;}
.y45{bottom:452.955000px;}
.y62{bottom:454.935000px;}
.y22{bottom:461.955000px;}
.ye2{bottom:463.035000px;}
.ya2{bottom:465.735000px;}
.y7d{bottom:477.075000px;}
.yba{bottom:478.155000px;}
.y8d{bottom:482.115000px;}
.y21{bottom:482.655000px;}
.ye1{bottom:483.735000px;}
.y44{bottom:483.915000px;}
.y61{bottom:486.075000px;}
.ya1{bottom:496.875000px;}
.y20{bottom:503.355000px;}
.ye0{bottom:504.435000px;}
.yb9{bottom:504.975000px;}
.y7c{bottom:508.035000px;}
.y8c{bottom:513.255000px;}
.y43{bottom:515.055000px;}
.y60{bottom:517.035000px;}
.y1f{bottom:524.055000px;}
.yb8{bottom:525.675000px;}
.ya0{bottom:527.835000px;}
.ydf{bottom:531.255000px;}
.y7b{bottom:539.175000px;}
.y8b{bottom:544.215000px;}
.y1e{bottom:544.755000px;}
.y42{bottom:546.015000px;}
.yb7{bottom:546.375000px;}
.y5f{bottom:548.175000px;}
.yde{bottom:557.895000px;}
.y9f{bottom:558.975000px;}
.y1d{bottom:565.455000px;}
.yb6{bottom:567.075000px;}
.y7a{bottom:570.135000px;}
.y8a{bottom:575.355000px;}
.y41{bottom:577.155000px;}
.ydd{bottom:578.595000px;}
.y5e{bottom:579.135000px;}
.y1c{bottom:586.155000px;}
.y9e{bottom:589.935000px;}
.yb5{bottom:593.715000px;}
.ydc{bottom:599.295000px;}
.y79{bottom:601.275000px;}
.y89{bottom:606.345000px;}
.y1b{bottom:606.885000px;}
.y40{bottom:608.145000px;}
.y5d{bottom:610.305000px;}
.ydb{bottom:620.025000px;}
.yb4{bottom:620.385000px;}
.y9d{bottom:621.105000px;}
.y1a{bottom:627.585000px;}
.y78{bottom:632.265000px;}
.y3f{bottom:639.285000px;}
.yfa{bottom:640.725000px;}
.yb3{bottom:641.085000px;}
.y5c{bottom:641.265000px;}
.y88{bottom:643.965000px;}
.yda{bottom:646.665000px;}
.y19{bottom:648.285000px;}
.y9c{bottom:652.065000px;}
.yb2{bottom:661.785000px;}
.y77{bottom:663.405000px;}
.yf9{bottom:667.365000px;}
.y18{bottom:668.985000px;}
.y3e{bottom:670.245000px;}
.y5b{bottom:672.405000px;}
.yd9{bottom:673.485000px;}
.y9b{bottom:683.205000px;}
.yf8{bottom:688.065000px;}
.yb1{bottom:688.605000px;}
.y17{bottom:689.685000px;}
.yd8{bottom:694.185000px;}
.y76{bottom:694.365000px;}
.y3d{bottom:701.385000px;}
.y5a{bottom:703.365000px;}
.yf7{bottom:708.765000px;}
.y16{bottom:710.385000px;}
.yd7{bottom:714.885000px;}
.yb0{bottom:715.245000px;}
.y9a{bottom:720.645000px;}
.y75{bottom:725.505000px;}
.yf6{bottom:729.465000px;}
.y15{bottom:731.085000px;}
.y3c{bottom:732.345000px;}
.y59{bottom:734.505000px;}
.yd6{bottom:735.405000px;}
.yaf{bottom:735.945000px;}
.y14{bottom:751.605000px;}
.y99{bottom:753.945000px;}
.yd5{bottom:756.105000px;}
.y74{bottom:756.465000px;}
.yae{bottom:756.645000px;}
.y3b{bottom:763.305000px;}
.y58{bottom:765.465000px;}
.y13{bottom:772.305000px;}
.yd4{bottom:782.925000px;}
.yad{bottom:783.825000px;}
.y73{bottom:787.605000px;}
.y12{bottom:793.005000px;}
.y3a{bottom:794.445000px;}
.y57{bottom:796.605000px;}
.yf5{bottom:803.625000px;}
.yd3{bottom:809.565000px;}
.y11{bottom:813.705000px;}
.yac{bottom:816.405000px;}
.y72{bottom:818.565000px;}
.yf4{bottom:824.325000px;}
.y39{bottom:825.405000px;}
.y56{bottom:827.565000px;}
.yd2{bottom:830.265000px;}
.y10{bottom:834.405000px;}
.y71{bottom:849.705000px;}
.yd1{bottom:850.965000px;}
.yf{bottom:855.105000px;}
.y38{bottom:856.545000px;}
.y55{bottom:858.705000px;}
.yd0{bottom:871.710000px;}
.ye{bottom:875.850000px;}
.yf3{bottom:877.650000px;}
.y70{bottom:880.710000px;}
.y37{bottom:887.550000px;}
.y54{bottom:889.710000px;}
.ycf{bottom:892.410000px;}
.yd{bottom:896.550000px;}
.yf2{bottom:898.350000px;}
.y6f{bottom:911.850000px;}
.yce{bottom:913.110000px;}
.yc{bottom:917.250000px;}
.y36{bottom:918.690000px;}
.yf1{bottom:919.050000px;}
.y53{bottom:920.850000px;}
.yb{bottom:939.390000px;}
.ycd{bottom:939.750000px;}
.y6e{bottom:942.810000px;}
.y35{bottom:949.650000px;}
.y52{bottom:951.810000px;}
.ycc{bottom:966.570000px;}
.ya{bottom:966.930000px;}
.y6d{bottom:973.950000px;}
.y34{bottom:980.790000px;}
.y51{bottom:982.950000px;}
.ycb{bottom:987.270000px;}
.yf0{bottom:993.210000px;}
.y9{bottom:994.470000px;}
.y6c{bottom:1004.910000px;}
.y87{bottom:1007.610000px;}
.yca{bottom:1007.970000px;}
.y33{bottom:1011.750000px;}
.y50{bottom:1013.910000px;}
.y8{bottom:1022.190000px;}
.yc9{bottom:1028.670000px;}
.yef{bottom:1034.610000px;}
.y6b{bottom:1036.050000px;}
.y32{bottom:1042.890000px;}
.y4f{bottom:1045.050000px;}
.yc8{bottom:1049.370000px;}
.y7{bottom:1049.730000px;}
.yee{bottom:1055.310000px;}
.y31{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y98{bottom:1078.710000px;}
.y1{bottom:1233.900000px;}
.h9{height:53.573906px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.ha{height:60.855469px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h7{height:74.820586px;}
.h6{height:78.927188px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.415987px;}
.x5{left:127.475987px;}
.x4{left:148.895987px;}
.x8{left:159.509987px;}
.x7{left:255.449987px;}
.xb{left:278.714987px;}
.x6{left:315.074987px;}
.x9{left:351.074987px;}
.xa{left:355.394987px;}
.xd{left:405.974987px;}
.x1{left:467.744987px;}
.xc{left:757.769987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2{letter-spacing:57.263360pt;}
.ls4{letter-spacing:130.842027pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-4.224000pt;}
._12{margin-left:-3.215360pt;}
._1{margin-left:-2.296320pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.220693pt;}
._7{width:2.555307pt;}
._f{width:3.776000pt;}
._10{width:4.932693pt;}
._11{width:5.998507pt;}
._17{width:7.313493pt;}
._16{width:8.640000pt;}
._c{width:9.856000pt;}
._6{width:11.328000pt;}
._5{width:12.288000pt;}
._a{width:13.296640pt;}
._15{width:15.070720pt;}
._b{width:17.536000pt;}
._1a{width:19.178667pt;}
._1b{width:20.288000pt;}
._8{width:21.952000pt;}
._9{width:23.360000pt;}
._1c{width:24.512000pt;}
._23{width:25.659307pt;}
._24{width:26.692693pt;}
._1d{width:29.312000pt;}
._1e{width:30.400000pt;}
._13{width:31.680000pt;}
._14{width:32.768000pt;}
._3{width:34.104107pt;}
._18{width:35.151787pt;}
._4{width:37.679147pt;}
._d{width:40.426667pt;}
._e{width:42.128640pt;}
._21{width:44.079360pt;}
._1f{width:53.440000pt;}
._20{width:54.533973pt;}
._26{width:67.434667pt;}
._27{width:68.458667pt;}
._28{width:86.976000pt;}
._29{width:138.304000pt;}
._2a{width:139.690667pt;}
._2b{width:193.216000pt;}
._2c{width:194.176000pt;}
._22{width:208.074667pt;}
._2d{width:933.184000pt;}
._25{width:2025.920000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y97{bottom:152.666667pt;}
.y30{bottom:152.986667pt;}
.y4e{bottom:154.106667pt;}
.y86{bottom:155.066667pt;}
.yc7{bottom:159.226667pt;}
.yed{bottom:164.186667pt;}
.yab{bottom:165.626667pt;}
.y2f{bottom:171.386667pt;}
.y6a{bottom:174.906667pt;}
.yc6{bottom:177.626667pt;}
.y96{bottom:180.186667pt;}
.y4d{bottom:181.786667pt;}
.y85{bottom:182.586667pt;}
.yec{bottom:187.866667pt;}
.y2e{bottom:189.786667pt;}
.yaa{bottom:193.146667pt;}
.yc5{bottom:196.026667pt;}
.y69{bottom:202.586667pt;}
.yeb{bottom:206.266667pt;}
.y95{bottom:207.706667pt;}
.y2d{bottom:208.186667pt;}
.y4c{bottom:209.306667pt;}
.y84{bottom:210.266667pt;}
.yc4{bottom:214.426667pt;}
.ya9{bottom:220.826667pt;}
.yea{bottom:224.666667pt;}
.y2c{bottom:226.586667pt;}
.y68{bottom:230.106667pt;}
.y94{bottom:235.386667pt;}
.y4b{bottom:236.986667pt;}
.yc3{bottom:238.106667pt;}
.ye9{bottom:243.066667pt;}
.y2b{bottom:244.986667pt;}
.y83{bottom:247.866667pt;}
.ya8{bottom:248.346667pt;}
.y67{bottom:257.786667pt;}
.ye8{bottom:261.466667pt;}
.yc2{bottom:261.786667pt;}
.y93{bottom:262.906667pt;}
.y2a{bottom:263.386667pt;}
.y4a{bottom:264.506667pt;}
.ya7{bottom:276.026667pt;}
.yc1{bottom:280.186667pt;}
.y29{bottom:281.786667pt;}
.ye7{bottom:285.146667pt;}
.y82{bottom:285.946667pt;}
.y92{bottom:290.586667pt;}
.y49{bottom:292.186667pt;}
.y66{bottom:293.306667pt;}
.yc0{bottom:298.586667pt;}
.y28{bottom:300.226667pt;}
.ya6{bottom:303.586667pt;}
.ye6{bottom:309.026667pt;}
.y81{bottom:313.666667pt;}
.y91{bottom:318.146667pt;}
.y27{bottom:318.626667pt;}
.y48{bottom:319.746667pt;}
.y65{bottom:320.226667pt;}
.ybf{bottom:322.466667pt;}
.ye5{bottom:327.426667pt;}
.ya5{bottom:331.266667pt;}
.y26{bottom:337.026667pt;}
.y80{bottom:341.186667pt;}
.y90{bottom:345.826667pt;}
.ybe{bottom:346.146667pt;}
.y47{bottom:347.426667pt;}
.y64{bottom:349.186667pt;}
.y25{bottom:355.426667pt;}
.ya4{bottom:358.786667pt;}
.ybd{bottom:364.546667pt;}
.y7f{bottom:368.866667pt;}
.ye4{bottom:369.506667pt;}
.y8f{bottom:373.346667pt;}
.y24{bottom:373.826667pt;}
.y46{bottom:374.946667pt;}
.y63{bottom:376.866667pt;}
.ybc{bottom:382.946667pt;}
.ya3{bottom:386.466667pt;}
.y23{bottom:392.226667pt;}
.ye3{bottom:393.186667pt;}
.y7e{bottom:396.386667pt;}
.y8e{bottom:401.026667pt;}
.ybb{bottom:401.346667pt;}
.y45{bottom:402.626667pt;}
.y62{bottom:404.386667pt;}
.y22{bottom:410.626667pt;}
.ye2{bottom:411.586667pt;}
.ya2{bottom:413.986667pt;}
.y7d{bottom:424.066667pt;}
.yba{bottom:425.026667pt;}
.y8d{bottom:428.546667pt;}
.y21{bottom:429.026667pt;}
.ye1{bottom:429.986667pt;}
.y44{bottom:430.146667pt;}
.y61{bottom:432.066667pt;}
.ya1{bottom:441.666667pt;}
.y20{bottom:447.426667pt;}
.ye0{bottom:448.386667pt;}
.yb9{bottom:448.866667pt;}
.y7c{bottom:451.586667pt;}
.y8c{bottom:456.226667pt;}
.y43{bottom:457.826667pt;}
.y60{bottom:459.586667pt;}
.y1f{bottom:465.826667pt;}
.yb8{bottom:467.266667pt;}
.ya0{bottom:469.186667pt;}
.ydf{bottom:472.226667pt;}
.y7b{bottom:479.266667pt;}
.y8b{bottom:483.746667pt;}
.y1e{bottom:484.226667pt;}
.y42{bottom:485.346667pt;}
.yb7{bottom:485.666667pt;}
.y5f{bottom:487.266667pt;}
.yde{bottom:495.906667pt;}
.y9f{bottom:496.866667pt;}
.y1d{bottom:502.626667pt;}
.yb6{bottom:504.066667pt;}
.y7a{bottom:506.786667pt;}
.y8a{bottom:511.426667pt;}
.y41{bottom:513.026667pt;}
.ydd{bottom:514.306667pt;}
.y5e{bottom:514.786667pt;}
.y1c{bottom:521.026667pt;}
.y9e{bottom:524.386667pt;}
.yb5{bottom:527.746667pt;}
.ydc{bottom:532.706667pt;}
.y79{bottom:534.466667pt;}
.y89{bottom:538.973333pt;}
.y1b{bottom:539.453333pt;}
.y40{bottom:540.573333pt;}
.y5d{bottom:542.493333pt;}
.ydb{bottom:551.133333pt;}
.yb4{bottom:551.453333pt;}
.y9d{bottom:552.093333pt;}
.y1a{bottom:557.853333pt;}
.y78{bottom:562.013333pt;}
.y3f{bottom:568.253333pt;}
.yfa{bottom:569.533333pt;}
.yb3{bottom:569.853333pt;}
.y5c{bottom:570.013333pt;}
.y88{bottom:572.413333pt;}
.yda{bottom:574.813333pt;}
.y19{bottom:576.253333pt;}
.y9c{bottom:579.613333pt;}
.yb2{bottom:588.253333pt;}
.y77{bottom:589.693333pt;}
.yf9{bottom:593.213333pt;}
.y18{bottom:594.653333pt;}
.y3e{bottom:595.773333pt;}
.y5b{bottom:597.693333pt;}
.yd9{bottom:598.653333pt;}
.y9b{bottom:607.293333pt;}
.yf8{bottom:611.613333pt;}
.yb1{bottom:612.093333pt;}
.y17{bottom:613.053333pt;}
.yd8{bottom:617.053333pt;}
.y76{bottom:617.213333pt;}
.y3d{bottom:623.453333pt;}
.y5a{bottom:625.213333pt;}
.yf7{bottom:630.013333pt;}
.y16{bottom:631.453333pt;}
.yd7{bottom:635.453333pt;}
.yb0{bottom:635.773333pt;}
.y9a{bottom:640.573333pt;}
.y75{bottom:644.893333pt;}
.yf6{bottom:648.413333pt;}
.y15{bottom:649.853333pt;}
.y3c{bottom:650.973333pt;}
.y59{bottom:652.893333pt;}
.yd6{bottom:653.693333pt;}
.yaf{bottom:654.173333pt;}
.y14{bottom:668.093333pt;}
.y99{bottom:670.173333pt;}
.yd5{bottom:672.093333pt;}
.y74{bottom:672.413333pt;}
.yae{bottom:672.573333pt;}
.y3b{bottom:678.493333pt;}
.y58{bottom:680.413333pt;}
.y13{bottom:686.493333pt;}
.yd4{bottom:695.933333pt;}
.yad{bottom:696.733333pt;}
.y73{bottom:700.093333pt;}
.y12{bottom:704.893333pt;}
.y3a{bottom:706.173333pt;}
.y57{bottom:708.093333pt;}
.yf5{bottom:714.333333pt;}
.yd3{bottom:719.613333pt;}
.y11{bottom:723.293333pt;}
.yac{bottom:725.693333pt;}
.y72{bottom:727.613333pt;}
.yf4{bottom:732.733333pt;}
.y39{bottom:733.693333pt;}
.y56{bottom:735.613333pt;}
.yd2{bottom:738.013333pt;}
.y10{bottom:741.693333pt;}
.y71{bottom:755.293333pt;}
.yd1{bottom:756.413333pt;}
.yf{bottom:760.093333pt;}
.y38{bottom:761.373333pt;}
.y55{bottom:763.293333pt;}
.yd0{bottom:774.853333pt;}
.ye{bottom:778.533333pt;}
.yf3{bottom:780.133333pt;}
.y70{bottom:782.853333pt;}
.y37{bottom:788.933333pt;}
.y54{bottom:790.853333pt;}
.ycf{bottom:793.253333pt;}
.yd{bottom:796.933333pt;}
.yf2{bottom:798.533333pt;}
.y6f{bottom:810.533333pt;}
.yce{bottom:811.653333pt;}
.yc{bottom:815.333333pt;}
.y36{bottom:816.613333pt;}
.yf1{bottom:816.933333pt;}
.y53{bottom:818.533333pt;}
.yb{bottom:835.013333pt;}
.ycd{bottom:835.333333pt;}
.y6e{bottom:838.053333pt;}
.y35{bottom:844.133333pt;}
.y52{bottom:846.053333pt;}
.ycc{bottom:859.173333pt;}
.ya{bottom:859.493333pt;}
.y6d{bottom:865.733333pt;}
.y34{bottom:871.813333pt;}
.y51{bottom:873.733333pt;}
.ycb{bottom:877.573333pt;}
.yf0{bottom:882.853333pt;}
.y9{bottom:883.973333pt;}
.y6c{bottom:893.253333pt;}
.y87{bottom:895.653333pt;}
.yca{bottom:895.973333pt;}
.y33{bottom:899.333333pt;}
.y50{bottom:901.253333pt;}
.y8{bottom:908.613333pt;}
.yc9{bottom:914.373333pt;}
.yef{bottom:919.653333pt;}
.y6b{bottom:920.933333pt;}
.y32{bottom:927.013333pt;}
.y4f{bottom:928.933333pt;}
.yc8{bottom:932.773333pt;}
.y7{bottom:933.093333pt;}
.yee{bottom:938.053333pt;}
.y31{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y98{bottom:958.853333pt;}
.y1{bottom:1096.800000pt;}
.h9{height:47.621250pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.ha{height:54.093750pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h7{height:66.507188pt;}
.h6{height:70.157500pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x5{left:113.311988pt;}
.x4{left:132.351988pt;}
.x8{left:141.786655pt;}
.x7{left:227.066655pt;}
.xb{left:247.746655pt;}
.x6{left:280.066655pt;}
.x9{left:312.066655pt;}
.xa{left:315.906655pt;}
.xd{left:360.866655pt;}
.x1{left:415.773322pt;}
.xc{left:673.573322pt;}
.x3{left:699.333322pt;}
}




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