
    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_91aebb53890514eddfca5847.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d3de052306bb3b8a4eda98c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_47a194edf9231948a1d358a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050781;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_ad140b8d0d48549251f819cf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d850df91bfacbc89a8b76c04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.783203;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_d0d81c65aafdb84f40d5dc1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783203;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_353790e0f5357fa3a0290a02.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196289;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_8c29c2d99ad4e2f28f2361f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196289;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_8c67af91263067117d82987a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_25c755f0ec385a5e72dc13b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.877930;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_1945de9a500b3b7e90df17ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_45d5f2be09d132915785cbfa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.880000px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.117216px;}
.ls5{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.ls8{letter-spacing:5.040000px;}
.ls0{letter-spacing:15.269760px;}
.ls4{letter-spacing:201.005760px;}
.ls2{letter-spacing:841.404000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(12,12,12),0 0.015em rgb(12,12,12),0.015em 0 rgb(12,12,12),0 -0.015em  rgb(12,12,12);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(12,12,12);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.002784px;}
.ws1{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
._29{margin-left:-9.744000px;}
._2a{margin-left:-8.496000px;}
._3{margin-left:-6.451920px;}
._5{margin-left:-5.158080px;}
._6{margin-left:-3.706560px;}
._0{margin-left:-2.592000px;}
._2{margin-left:-1.313280px;}
._1{width:1.728000px;}
._16{width:3.168000px;}
._1c{width:4.536000px;}
._17{width:5.760000px;}
._12{width:7.200000px;}
._13{width:8.496000px;}
._20{width:9.624000px;}
._e{width:11.338560px;}
._1e{width:12.997440px;}
._f{width:14.328000px;}
._10{width:15.802560px;}
._11{width:16.937280px;}
._1d{width:19.152000px;}
._1f{width:20.626560px;}
._7{width:22.392000px;}
._22{width:24.137280px;}
._18{width:25.176000px;}
._19{width:26.592000px;}
._1a{width:27.665280px;}
._1b{width:29.016000px;}
._14{width:30.384000px;}
._15{width:31.392000px;}
._24{width:32.633280px;}
._23{width:34.272000px;}
._25{width:35.784000px;}
._c{width:38.808000px;}
._d{width:40.296000px;}
._28{width:41.602560px;}
._26{width:43.272000px;}
._27{width:44.597280px;}
._b{width:49.104000px;}
._a{width:50.184000px;}
._21{width:51.883920px;}
._8{width:56.952000px;}
._9{width:58.248000px;}
._4{width:445.224000px;}
.fc7{color:transparent;}
.fc5{color:rgb(168,208,141);}
.fc4{color:rgb(146,208,80);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,176,240);}
.fc8{color:rgb(13,13,13);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(12,12,12);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.780000px;}
.y33{bottom:4.500000px;}
.y37{bottom:10.260000px;}
.yd{bottom:12.570000px;}
.y6b{bottom:14.730000px;}
.y9{bottom:18.000000px;}
.y68{bottom:25.560000px;}
.y32{bottom:26.460000px;}
.y8{bottom:38.196000px;}
.y7{bottom:40.140000px;}
.y31{bottom:45.900000px;}
.y67{bottom:46.305000px;}
.y36{bottom:51.585000px;}
.y6{bottom:58.536000px;}
.y66{bottom:67.005000px;}
.y30{bottom:67.140000px;}
.y5{bottom:78.696000px;}
.y65{bottom:87.705000px;}
.y2f{bottom:88.200000px;}
.yb{bottom:96.120000px;}
.y64{bottom:108.045000px;}
.y2e{bottom:109.440000px;}
.y61{bottom:124.956000px;}
.yab{bottom:125.856000px;}
.y96{bottom:126.216000px;}
.y63{bottom:128.745000px;}
.y2d{bottom:130.680000px;}
.y60{bottom:145.656000px;}
.y95{bottom:146.916000px;}
.y2c{bottom:151.920000px;}
.y5f{bottom:166.350000px;}
.y94{bottom:167.610000px;}
.y2b{bottom:172.980000px;}
.y5e{bottom:187.050000px;}
.ya0{bottom:187.950000px;}
.y93{bottom:188.310000px;}
.y2a{bottom:194.220000px;}
.y5d{bottom:207.750000px;}
.y9f{bottom:208.650000px;}
.y92{bottom:209.010000px;}
.y29{bottom:215.460000px;}
.y5c{bottom:228.450000px;}
.yac{bottom:229.350000px;}
.y91{bottom:229.710000px;}
.y28{bottom:236.700000px;}
.y5b{bottom:249.150000px;}
.y90{bottom:250.410000px;}
.y27{bottom:257.805000px;}
.y5a{bottom:269.490000px;}
.yb8{bottom:270.750000px;}
.y8f{bottom:271.110000px;}
.y26{bottom:279.045000px;}
.y59{bottom:290.190000px;}
.yb7{bottom:291.450000px;}
.y8e{bottom:291.810000px;}
.y25{bottom:300.285000px;}
.y58{bottom:311.295000px;}
.y9a{bottom:312.195000px;}
.y8d{bottom:312.555000px;}
.y24{bottom:321.525000px;}
.y57{bottom:331.995000px;}
.y99{bottom:332.895000px;}
.y8c{bottom:333.255000px;}
.y23{bottom:342.765000px;}
.y56{bottom:352.695000px;}
.ya8{bottom:353.595000px;}
.y8b{bottom:353.955000px;}
.y22{bottom:363.825000px;}
.y55{bottom:373.395000px;}
.ya7{bottom:374.295000px;}
.y8a{bottom:374.655000px;}
.y21{bottom:385.065000px;}
.y54{bottom:394.095000px;}
.yb0{bottom:394.995000px;}
.y89{bottom:395.355000px;}
.y20{bottom:406.305000px;}
.y53{bottom:414.795000px;}
.yaf{bottom:415.695000px;}
.y88{bottom:416.055000px;}
.y1f{bottom:427.545000px;}
.y52{bottom:435.495000px;}
.yb2{bottom:436.395000px;}
.y87{bottom:436.755000px;}
.y51{bottom:456.195000px;}
.yb1{bottom:457.095000px;}
.y86{bottom:457.455000px;}
.y50{bottom:476.895000px;}
.y85{bottom:478.155000px;}
.y1d{bottom:490.395000px;}
.y4f{bottom:497.595000px;}
.y84{bottom:498.855000px;}
.y4e{bottom:518.295000px;}
.y98{bottom:519.195000px;}
.y83{bottom:519.555000px;}
.y1c{bottom:525.135000px;}
.y4d{bottom:538.995000px;}
.y97{bottom:539.895000px;}
.y82{bottom:540.255000px;}
.y4c{bottom:559.695000px;}
.y1b{bottom:560.055000px;}
.yaa{bottom:560.625000px;}
.y81{bottom:560.985000px;}
.y1e{bottom:563.505000px;}
.y4b{bottom:580.425000px;}
.ya9{bottom:581.325000px;}
.y80{bottom:581.685000px;}
.y1a{bottom:595.005000px;}
.y4a{bottom:601.125000px;}
.ya4{bottom:602.025000px;}
.y7f{bottom:602.385000px;}
.y49{bottom:621.825000px;}
.ya3{bottom:622.725000px;}
.y7e{bottom:623.085000px;}
.y19{bottom:629.925000px;}
.y48{bottom:642.525000px;}
.yb6{bottom:643.425000px;}
.y7d{bottom:643.785000px;}
.y35{bottom:661.500000px;}
.y47{bottom:663.225000px;}
.yb5{bottom:664.125000px;}
.y7c{bottom:664.485000px;}
.y18{bottom:664.845000px;}
.y46{bottom:683.925000px;}
.y7b{bottom:685.185000px;}
.y17{bottom:699.585000px;}
.y45{bottom:704.625000px;}
.yae{bottom:705.525000px;}
.y7a{bottom:705.885000px;}
.y44{bottom:725.325000px;}
.yad{bottom:726.225000px;}
.y79{bottom:726.585000px;}
.y16{bottom:734.505000px;}
.y43{bottom:746.025000px;}
.yb4{bottom:746.925000px;}
.y78{bottom:747.285000px;}
.y34{bottom:750.705000px;}
.y42{bottom:766.725000px;}
.yb3{bottom:767.625000px;}
.y77{bottom:767.985000px;}
.y15{bottom:769.425000px;}
.y62{bottom:782.565000px;}
.y41{bottom:787.245000px;}
.y9e{bottom:788.325000px;}
.y76{bottom:788.685000px;}
.y14{bottom:804.345000px;}
.y40{bottom:807.945000px;}
.y9d{bottom:809.025000px;}
.y75{bottom:809.385000px;}
.y3f{bottom:828.690000px;}
.y9c{bottom:829.770000px;}
.y74{bottom:830.130000px;}
.y13{bottom:839.130000px;}
.y3e{bottom:849.390000px;}
.ya2{bottom:850.470000px;}
.y73{bottom:850.830000px;}
.y3d{bottom:870.090000px;}
.ya1{bottom:871.170000px;}
.y72{bottom:871.530000px;}
.y12{bottom:874.050000px;}
.y3c{bottom:890.250000px;}
.ya6{bottom:891.870000px;}
.y71{bottom:892.230000px;}
.y11{bottom:896.010000px;}
.y6a{bottom:900.000000px;}
.y3b{bottom:911.490000px;}
.ya5{bottom:912.570000px;}
.y70{bottom:912.930000px;}
.y10{bottom:920.130000px;}
.yba{bottom:933.270000px;}
.y6f{bottom:933.630000px;}
.y3a{bottom:946.410000px;}
.yb9{bottom:953.970000px;}
.y6e{bottom:954.330000px;}
.yf{bottom:956.490000px;}
.y39{bottom:968.370000px;}
.y6d{bottom:975.030000px;}
.y38{bottom:992.490000px;}
.ye{bottom:992.670000px;}
.y9b{bottom:995.370000px;}
.y6c{bottom:995.730000px;}
.ya{bottom:1033.560000px;}
.y4{bottom:1058.010000px;}
.y3{bottom:1078.200000px;}
.yc{bottom:1083.240000px;}
.y2{bottom:1098.360000px;}
.y1{bottom:1118.520000px;}
.hd{height:30.960000px;}
.h11{height:36.360000px;}
.h13{height:50.273438px;}
.h2{height:53.820000px;}
.h9{height:55.511719px;}
.h1{height:65.884219px;}
.h3{height:66.027445px;}
.hf{height:70.664062px;}
.h12{height:72.064687px;}
.hb{height:72.562500px;}
.h8{height:84.898125px;}
.he{height:86.255508px;}
.h7{height:90.180000px;}
.h6{height:90.288000px;}
.h4{height:141.840000px;}
.h10{height:145.296000px;}
.hc{height:153.180000px;}
.h5{height:162.000000px;}
.ha{height:444.810000px;}
.h0{height:1188.000000px;}
.w1{width:33.480000px;}
.w4{width:40.536000px;}
.w7{width:207.540000px;}
.w3{width:225.750000px;}
.w6{width:332.490000px;}
.w2{width:449.460000px;}
.w5{width:487.080000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x10{left:10.836000px;}
.x4{left:28.110000px;}
.x11{left:51.840000px;}
.x18{left:54.105000px;}
.xf{left:82.800000px;}
.xe{left:93.636000px;}
.x16{left:100.296000px;}
.x6{left:103.935000px;}
.x1{left:108.036000px;}
.xc{left:112.725000px;}
.x8{left:116.136000px;}
.x12{left:144.756000px;}
.x9{left:161.850000px;}
.x3{left:230.580000px;}
.x5{left:331.095000px;}
.x13{left:337.395000px;}
.x7{left:355.575000px;}
.x2{left:442.260000px;}
.x15{left:447.015000px;}
.x14{left:459.075000px;}
.x17{left:512.820000px;}
.xa{left:617.325000px;}
.xd{left:843.090000px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.560000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.104192pt;}
.ls5{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls0{letter-spacing:13.573120pt;}
.ls4{letter-spacing:178.671787pt;}
.ls2{letter-spacing:747.914667pt;}
.ws3{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.335808pt;}
.ws1{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
._29{margin-left:-8.661333pt;}
._2a{margin-left:-7.552000pt;}
._3{margin-left:-5.735040pt;}
._5{margin-left:-4.584960pt;}
._6{margin-left:-3.294720pt;}
._0{margin-left:-2.304000pt;}
._2{margin-left:-1.167360pt;}
._1{width:1.536000pt;}
._16{width:2.816000pt;}
._1c{width:4.032000pt;}
._17{width:5.120000pt;}
._12{width:6.400000pt;}
._13{width:7.552000pt;}
._20{width:8.554667pt;}
._e{width:10.078720pt;}
._1e{width:11.553280pt;}
._f{width:12.736000pt;}
._10{width:14.046720pt;}
._11{width:15.055360pt;}
._1d{width:17.024000pt;}
._1f{width:18.334720pt;}
._7{width:19.904000pt;}
._22{width:21.455360pt;}
._18{width:22.378667pt;}
._19{width:23.637333pt;}
._1a{width:24.591360pt;}
._1b{width:25.792000pt;}
._14{width:27.008000pt;}
._15{width:27.904000pt;}
._24{width:29.007360pt;}
._23{width:30.464000pt;}
._25{width:31.808000pt;}
._c{width:34.496000pt;}
._d{width:35.818667pt;}
._28{width:36.980053pt;}
._26{width:38.464000pt;}
._27{width:39.642027pt;}
._b{width:43.648000pt;}
._a{width:44.608000pt;}
._21{width:46.119040pt;}
._8{width:50.624000pt;}
._9{width:51.776000pt;}
._4{width:395.754667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.360000pt;}
.y33{bottom:4.000000pt;}
.y37{bottom:9.120000pt;}
.yd{bottom:11.173333pt;}
.y6b{bottom:13.093333pt;}
.y9{bottom:16.000000pt;}
.y68{bottom:22.720000pt;}
.y32{bottom:23.520000pt;}
.y8{bottom:33.952000pt;}
.y7{bottom:35.680000pt;}
.y31{bottom:40.800000pt;}
.y67{bottom:41.160000pt;}
.y36{bottom:45.853333pt;}
.y6{bottom:52.032000pt;}
.y66{bottom:59.560000pt;}
.y30{bottom:59.680000pt;}
.y5{bottom:69.952000pt;}
.y65{bottom:77.960000pt;}
.y2f{bottom:78.400000pt;}
.yb{bottom:85.440000pt;}
.y64{bottom:96.040000pt;}
.y2e{bottom:97.280000pt;}
.y61{bottom:111.072000pt;}
.yab{bottom:111.872000pt;}
.y96{bottom:112.192000pt;}
.y63{bottom:114.440000pt;}
.y2d{bottom:116.160000pt;}
.y60{bottom:129.472000pt;}
.y95{bottom:130.592000pt;}
.y2c{bottom:135.040000pt;}
.y5f{bottom:147.866667pt;}
.y94{bottom:148.986667pt;}
.y2b{bottom:153.760000pt;}
.y5e{bottom:166.266667pt;}
.ya0{bottom:167.066667pt;}
.y93{bottom:167.386667pt;}
.y2a{bottom:172.640000pt;}
.y5d{bottom:184.666667pt;}
.y9f{bottom:185.466667pt;}
.y92{bottom:185.786667pt;}
.y29{bottom:191.520000pt;}
.y5c{bottom:203.066667pt;}
.yac{bottom:203.866667pt;}
.y91{bottom:204.186667pt;}
.y28{bottom:210.400000pt;}
.y5b{bottom:221.466667pt;}
.y90{bottom:222.586667pt;}
.y27{bottom:229.160000pt;}
.y5a{bottom:239.546667pt;}
.yb8{bottom:240.666667pt;}
.y8f{bottom:240.986667pt;}
.y26{bottom:248.040000pt;}
.y59{bottom:257.946667pt;}
.yb7{bottom:259.066667pt;}
.y8e{bottom:259.386667pt;}
.y25{bottom:266.920000pt;}
.y58{bottom:276.706667pt;}
.y9a{bottom:277.506667pt;}
.y8d{bottom:277.826667pt;}
.y24{bottom:285.800000pt;}
.y57{bottom:295.106667pt;}
.y99{bottom:295.906667pt;}
.y8c{bottom:296.226667pt;}
.y23{bottom:304.680000pt;}
.y56{bottom:313.506667pt;}
.ya8{bottom:314.306667pt;}
.y8b{bottom:314.626667pt;}
.y22{bottom:323.400000pt;}
.y55{bottom:331.906667pt;}
.ya7{bottom:332.706667pt;}
.y8a{bottom:333.026667pt;}
.y21{bottom:342.280000pt;}
.y54{bottom:350.306667pt;}
.yb0{bottom:351.106667pt;}
.y89{bottom:351.426667pt;}
.y20{bottom:361.160000pt;}
.y53{bottom:368.706667pt;}
.yaf{bottom:369.506667pt;}
.y88{bottom:369.826667pt;}
.y1f{bottom:380.040000pt;}
.y52{bottom:387.106667pt;}
.yb2{bottom:387.906667pt;}
.y87{bottom:388.226667pt;}
.y51{bottom:405.506667pt;}
.yb1{bottom:406.306667pt;}
.y86{bottom:406.626667pt;}
.y50{bottom:423.906667pt;}
.y85{bottom:425.026667pt;}
.y1d{bottom:435.906667pt;}
.y4f{bottom:442.306667pt;}
.y84{bottom:443.426667pt;}
.y4e{bottom:460.706667pt;}
.y98{bottom:461.506667pt;}
.y83{bottom:461.826667pt;}
.y1c{bottom:466.786667pt;}
.y4d{bottom:479.106667pt;}
.y97{bottom:479.906667pt;}
.y82{bottom:480.226667pt;}
.y4c{bottom:497.506667pt;}
.y1b{bottom:497.826667pt;}
.yaa{bottom:498.333333pt;}
.y81{bottom:498.653333pt;}
.y1e{bottom:500.893333pt;}
.y4b{bottom:515.933333pt;}
.ya9{bottom:516.733333pt;}
.y80{bottom:517.053333pt;}
.y1a{bottom:528.893333pt;}
.y4a{bottom:534.333333pt;}
.ya4{bottom:535.133333pt;}
.y7f{bottom:535.453333pt;}
.y49{bottom:552.733333pt;}
.ya3{bottom:553.533333pt;}
.y7e{bottom:553.853333pt;}
.y19{bottom:559.933333pt;}
.y48{bottom:571.133333pt;}
.yb6{bottom:571.933333pt;}
.y7d{bottom:572.253333pt;}
.y35{bottom:588.000000pt;}
.y47{bottom:589.533333pt;}
.yb5{bottom:590.333333pt;}
.y7c{bottom:590.653333pt;}
.y18{bottom:590.973333pt;}
.y46{bottom:607.933333pt;}
.y7b{bottom:609.053333pt;}
.y17{bottom:621.853333pt;}
.y45{bottom:626.333333pt;}
.yae{bottom:627.133333pt;}
.y7a{bottom:627.453333pt;}
.y44{bottom:644.733333pt;}
.yad{bottom:645.533333pt;}
.y79{bottom:645.853333pt;}
.y16{bottom:652.893333pt;}
.y43{bottom:663.133333pt;}
.yb4{bottom:663.933333pt;}
.y78{bottom:664.253333pt;}
.y34{bottom:667.293333pt;}
.y42{bottom:681.533333pt;}
.yb3{bottom:682.333333pt;}
.y77{bottom:682.653333pt;}
.y15{bottom:683.933333pt;}
.y62{bottom:695.613333pt;}
.y41{bottom:699.773333pt;}
.y9e{bottom:700.733333pt;}
.y76{bottom:701.053333pt;}
.y14{bottom:714.973333pt;}
.y40{bottom:718.173333pt;}
.y9d{bottom:719.133333pt;}
.y75{bottom:719.453333pt;}
.y3f{bottom:736.613333pt;}
.y9c{bottom:737.573333pt;}
.y74{bottom:737.893333pt;}
.y13{bottom:745.893333pt;}
.y3e{bottom:755.013333pt;}
.ya2{bottom:755.973333pt;}
.y73{bottom:756.293333pt;}
.y3d{bottom:773.413333pt;}
.ya1{bottom:774.373333pt;}
.y72{bottom:774.693333pt;}
.y12{bottom:776.933333pt;}
.y3c{bottom:791.333333pt;}
.ya6{bottom:792.773333pt;}
.y71{bottom:793.093333pt;}
.y11{bottom:796.453333pt;}
.y6a{bottom:800.000000pt;}
.y3b{bottom:810.213333pt;}
.ya5{bottom:811.173333pt;}
.y70{bottom:811.493333pt;}
.y10{bottom:817.893333pt;}
.yba{bottom:829.573333pt;}
.y6f{bottom:829.893333pt;}
.y3a{bottom:841.253333pt;}
.yb9{bottom:847.973333pt;}
.y6e{bottom:848.293333pt;}
.yf{bottom:850.213333pt;}
.y39{bottom:860.773333pt;}
.y6d{bottom:866.693333pt;}
.y38{bottom:882.213333pt;}
.ye{bottom:882.373333pt;}
.y9b{bottom:884.773333pt;}
.y6c{bottom:885.093333pt;}
.ya{bottom:918.720000pt;}
.y4{bottom:940.453333pt;}
.y3{bottom:958.400000pt;}
.yc{bottom:962.880000pt;}
.y2{bottom:976.320000pt;}
.y1{bottom:994.240000pt;}
.hd{height:27.520000pt;}
.h11{height:32.320000pt;}
.h13{height:44.687500pt;}
.h2{height:47.840000pt;}
.h9{height:49.343750pt;}
.h1{height:58.563750pt;}
.h3{height:58.691063pt;}
.hf{height:62.812500pt;}
.h12{height:64.057500pt;}
.hb{height:64.500000pt;}
.h8{height:75.465000pt;}
.he{height:76.671562pt;}
.h7{height:80.160000pt;}
.h6{height:80.256000pt;}
.h4{height:126.080000pt;}
.h10{height:129.152000pt;}
.hc{height:136.160000pt;}
.h5{height:144.000000pt;}
.ha{height:395.386667pt;}
.h0{height:1056.000000pt;}
.w1{width:29.760000pt;}
.w4{width:36.032000pt;}
.w7{width:184.480000pt;}
.w3{width:200.666667pt;}
.w6{width:295.546667pt;}
.w2{width:399.520000pt;}
.w5{width:432.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x10{left:9.632000pt;}
.x4{left:24.986667pt;}
.x11{left:46.080000pt;}
.x18{left:48.093333pt;}
.xf{left:73.600000pt;}
.xe{left:83.232000pt;}
.x16{left:89.152000pt;}
.x6{left:92.386667pt;}
.x1{left:96.032000pt;}
.xc{left:100.200000pt;}
.x8{left:103.232000pt;}
.x12{left:128.672000pt;}
.x9{left:143.866667pt;}
.x3{left:204.960000pt;}
.x5{left:294.306667pt;}
.x13{left:299.906667pt;}
.x7{left:316.066667pt;}
.x2{left:393.120000pt;}
.x15{left:397.346667pt;}
.x14{left:408.066667pt;}
.x17{left:455.840000pt;}
.xa{left:548.733333pt;}
.xd{left:749.413333pt;}
}




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