
    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_9947a1cd2a30ce8e8c1c3d91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.194000;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_8dfbc2f93f871d16cfd584c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.205000;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_888dc20551d7be27b7854a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.301000;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_ae1bfd7820bfc1db77846e41.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696777;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_cd7fc922b17c07fd162214d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38a91a73270afcf434a7b712.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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_efdae68d86046ed32ed0cfd5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904000;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_ed4184b08b3bd6524ba85459.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677246;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;}
.m4{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249812,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-78.000000px;}
.v2{vertical-align:-69.000000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.094020px;}
.ls9{letter-spacing:0.679215px;}
.ls7{letter-spacing:0.866421px;}
.lsc{letter-spacing:1.036813px;}
.lsb{letter-spacing:3.444019px;}
.ls5{letter-spacing:3.868823px;}
.ls8{letter-spacing:9.019200px;}
.ls4{letter-spacing:46.370400px;}
.ls3{letter-spacing:94.572000px;}
.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:-46.620000px;}
.ws2{word-spacing:-41.958000px;}
.ws0{word-spacing:-15.024000px;}
.ws4{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-4.646340px;}
._0{margin-left:-3.633600px;}
._2{margin-left:-1.910400px;}
._1{width:1.216800px;}
._3{width:2.912280px;}
._4{width:3.936180px;}
._5{width:5.493120px;}
._b{width:7.148160px;}
._2f{width:8.166120px;}
._13{width:9.199200px;}
._8{width:10.397460px;}
._9{width:11.402820px;}
._f{width:12.847260px;}
._7{width:16.666080px;}
._10{width:17.673840px;}
._6{width:19.454100px;}
._a{width:20.472000px;}
._1b{width:21.513600px;}
._2c{width:23.179080px;}
._15{width:24.254940px;}
._23{width:25.618800px;}
._14{width:27.094980px;}
._c{width:30.121500px;}
._27{width:32.118180px;}
._d{width:33.303420px;}
._1f{width:36.111720px;}
._21{width:38.310180px;}
._20{width:39.324060px;}
._2e{width:41.141940px;}
._11{width:42.303780px;}
._12{width:45.820800px;}
._17{width:47.420400px;}
._16{width:48.528060px;}
._24{width:51.004980px;}
._1c{width:53.761320px;}
._1d{width:54.868620px;}
._1e{width:57.057600px;}
._2d{width:59.916060px;}
._2b{width:63.436800px;}
._25{width:65.615820px;}
._26{width:66.969840px;}
._19{width:71.857320px;}
._18{width:74.865600px;}
._1a{width:76.021320px;}
._29{width:77.966460px;}
._2a{width:78.967140px;}
._22{width:81.981600px;}
._28{width:84.127260px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000000px;}
.fs2{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.750000px;}
.y85{bottom:115.500000px;}
.ybc{bottom:115.500300px;}
.y40{bottom:116.250000px;}
.y99{bottom:125.250300px;}
.y73{bottom:127.500000px;}
.y4c{bottom:129.750000px;}
.ybb{bottom:132.000300px;}
.y84{bottom:132.750000px;}
.y3f{bottom:133.500000px;}
.y98{bottom:141.750000px;}
.y72{bottom:144.750000px;}
.y4b{bottom:147.000000px;}
.yba{bottom:147.750300px;}
.y83{bottom:150.000000px;}
.y3e{bottom:150.750000px;}
.y97{bottom:156.750000px;}
.y71{bottom:162.000000px;}
.yb9{bottom:162.750000px;}
.y4a{bottom:164.250000px;}
.y82{bottom:167.250000px;}
.y3d{bottom:168.000000px;}
.yb8{bottom:173.250000px;}
.y96{bottom:178.500000px;}
.y70{bottom:179.250000px;}
.y49{bottom:181.500000px;}
.y81{bottom:184.500000px;}
.y3c{bottom:185.250000px;}
.y6f{bottom:197.250000px;}
.y48{bottom:198.750000px;}
.y80{bottom:201.750000px;}
.y3b{bottom:202.500000px;}
.y6e{bottom:214.500000px;}
.y47{bottom:216.000000px;}
.y7f{bottom:219.000000px;}
.y3a{bottom:219.750000px;}
.y6d{bottom:233.250000px;}
.y46{bottom:234.000000px;}
.y7e{bottom:236.250000px;}
.y39{bottom:237.000000px;}
.y6c{bottom:249.000000px;}
.y45{bottom:252.750000px;}
.y7d{bottom:253.500000px;}
.y38{bottom:254.250000px;}
.y6b{bottom:264.750000px;}
.y44{bottom:268.500000px;}
.y7c{bottom:270.750000px;}
.y37{bottom:274.500000px;}
.y43{bottom:284.250000px;}
.y6a{bottom:285.750000px;}
.y7b{bottom:288.000000px;}
.y36{bottom:301.500000px;}
.y42{bottom:305.250000px;}
.y35{bottom:322.500000px;}
.y7a{bottom:323.250000px;}
.y34{bottom:339.750000px;}
.y33{bottom:357.000000px;}
.y32{bottom:374.250000px;}
.y31{bottom:391.500000px;}
.y30{bottom:408.750000px;}
.y95{bottom:413.250000px;}
.yb7{bottom:416.250000px;}
.y2f{bottom:426.000000px;}
.yb6{bottom:432.750000px;}
.y94{bottom:434.250000px;}
.y2e{bottom:443.250000px;}
.yb5{bottom:450.000000px;}
.y93{bottom:451.500000px;}
.y2d{bottom:460.500000px;}
.yb4{bottom:467.250000px;}
.y92{bottom:468.750000px;}
.ycf{bottom:471.750000px;}
.y41{bottom:474.750000px;}
.y2c{bottom:477.750000px;}
.yb3{bottom:484.500000px;}
.y91{bottom:486.000000px;}
.yce{bottom:489.000000px;}
.y2b{bottom:495.000000px;}
.yb2{bottom:501.750000px;}
.y90{bottom:503.250000px;}
.ycd{bottom:506.250000px;}
.y2a{bottom:512.250000px;}
.yb1{bottom:519.000000px;}
.y8f{bottom:520.500000px;}
.ycc{bottom:523.500000px;}
.y29{bottom:529.500000px;}
.yb0{bottom:536.250000px;}
.y8e{bottom:537.750000px;}
.ycb{bottom:540.750000px;}
.y28{bottom:546.750000px;}
.yaf{bottom:553.500000px;}
.y8d{bottom:555.000000px;}
.yca{bottom:558.000000px;}
.y27{bottom:564.000000px;}
.y8c{bottom:572.250000px;}
.yc9{bottom:575.250000px;}
.y26{bottom:581.250000px;}
.yae{bottom:588.000000px;}
.y8b{bottom:589.500000px;}
.yc8{bottom:592.500000px;}
.y25{bottom:598.500000px;}
.yad{bottom:605.250000px;}
.y8a{bottom:606.000000px;}
.yc7{bottom:609.750000px;}
.y24{bottom:615.750000px;}
.y89{bottom:626.250000px;}
.yc6{bottom:627.000000px;}
.y23{bottom:633.000000px;}
.y69{bottom:640.500000px;}
.y88{bottom:642.000000px;}
.yc5{bottom:644.250000px;}
.y22{bottom:650.250000px;}
.yac{bottom:652.500000px;}
.y68{bottom:660.750000px;}
.y87{bottom:663.000000px;}
.y21{bottom:667.500000px;}
.yab{bottom:668.250000px;}
.y67{bottom:678.000000px;}
.yc4{bottom:678.750000px;}
.y20{bottom:684.750000px;}
.yaa{bottom:690.000000px;}
.y66{bottom:695.250000px;}
.yc3{bottom:696.000000px;}
.y1f{bottom:702.000000px;}
.y79{bottom:704.250000px;}
.y65{bottom:712.500000px;}
.y1e{bottom:719.250000px;}
.y78{bottom:720.000000px;}
.yc2{bottom:723.000000px;}
.y64{bottom:729.750000px;}
.y77{bottom:735.750000px;}
.y1d{bottom:736.500000px;}
.yc1{bottom:743.250000px;}
.y63{bottom:747.000000px;}
.y76{bottom:756.750000px;}
.yc0{bottom:759.000000px;}
.y62{bottom:764.250000px;}
.y1c{bottom:774.000000px;}
.y61{bottom:781.500000px;}
.y1b{bottom:789.000000px;}
.ybf{bottom:789.750000px;}
.y60{bottom:798.750000px;}
.y1a{bottom:804.750000px;}
.ybe{bottom:805.500000px;}
.y5f{bottom:816.000000px;}
.ybd{bottom:819.000000px;}
.y19{bottom:820.500000px;}
.yda{bottom:830.250000px;}
.y5e{bottom:833.250000px;}
.y18{bottom:836.250000px;}
.yd9{bottom:847.500000px;}
.y5d{bottom:850.500000px;}
.y17{bottom:851.250000px;}
.yd8{bottom:864.750000px;}
.y16{bottom:867.750000px;}
.ya9{bottom:882.000000px;}
.y5c{bottom:885.000000px;}
.y15{bottom:885.750000px;}
.y86{bottom:898.500000px;}
.yd7{bottom:899.250000px;}
.y5b{bottom:902.250000px;}
.ya8{bottom:902.250300px;}
.y14{bottom:905.250000px;}
.yd6{bottom:916.500000px;}
.y5a{bottom:919.500000px;}
.ya7{bottom:919.500300px;}
.y13{bottom:920.250000px;}
.yd5{bottom:933.750000px;}
.y12{bottom:936.000000px;}
.y59{bottom:936.750000px;}
.ya6{bottom:936.750300px;}
.yd4{bottom:951.000000px;}
.y11{bottom:951.750000px;}
.y58{bottom:954.000000px;}
.ya5{bottom:954.000300px;}
.y10{bottom:966.750000px;}
.y75{bottom:968.250000px;}
.y57{bottom:971.250000px;}
.ya4{bottom:971.250300px;}
.yf{bottom:983.250000px;}
.yd3{bottom:985.500000px;}
.y56{bottom:988.500000px;}
.ya3{bottom:988.500300px;}
.ye{bottom:1000.500000px;}
.yd2{bottom:1002.750000px;}
.y55{bottom:1005.750000px;}
.ya2{bottom:1005.750300px;}
.yd{bottom:1017.750000px;}
.yd1{bottom:1020.000000px;}
.y54{bottom:1023.000000px;}
.ya1{bottom:1023.000300px;}
.yc{bottom:1034.250000px;}
.yd0{bottom:1037.250000px;}
.y53{bottom:1040.250000px;}
.ya0{bottom:1040.250300px;}
.yb{bottom:1050.000000px;}
.y52{bottom:1057.500000px;}
.y9f{bottom:1057.500300px;}
.ya{bottom:1071.000000px;}
.y51{bottom:1074.750000px;}
.y9e{bottom:1074.750300px;}
.y9{bottom:1081.500000px;}
.y74{bottom:1092.000000px;}
.y9d{bottom:1092.000300px;}
.y50{bottom:1092.750000px;}
.y8{bottom:1099.500000px;}
.y4f{bottom:1109.250000px;}
.y9c{bottom:1109.250300px;}
.y7{bottom:1119.750000px;}
.y4e{bottom:1126.500000px;}
.y9b{bottom:1126.500300px;}
.y6{bottom:1140.000000px;}
.y4d{bottom:1143.750000px;}
.y9a{bottom:1143.750300px;}
.y2{bottom:1177.500000px;}
.y4{bottom:1192.500000px;}
.y3{bottom:1196.250000px;}
.y1{bottom:1197.000000px;}
.h2{height:16.500000px;}
.hb{height:22.176000px;}
.h6{height:33.264000px;}
.h8{height:41.940000px;}
.ha{height:44.352000px;}
.h7{height:49.896000px;}
.h1{height:55.440000px;}
.h5{height:57.600000px;}
.h9{height:60.984000px;}
.h4{height:66.528000px;}
.h3{height:69.120000px;}
.h0{height:1263.000000px;}
.w1{width:0.750000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.500000px;}
.xe{left:127.500000px;}
.x14{left:129.000000px;}
.xd{left:133.499983px;}
.x8{left:143.249963px;}
.x5{left:155.249859px;}
.x7{left:160.500000px;}
.xa{left:168.000000px;}
.xc{left:175.500000px;}
.x9{left:229.500581px;}
.x13{left:294.000000px;}
.x4{left:301.500000px;}
.x6{left:303.750000px;}
.x16{left:384.000000px;}
.x15{left:425.250000px;}
.xf{left:468.000056px;}
.x11{left:489.000000px;}
.x10{left:495.000068px;}
.xb{left:618.000000px;}
.x2{left:764.249879px;}
.x3{left:786.750000px;}
.x12{left:788.250000px;}
@media print{
.v1{vertical-align:-69.333333pt;}
.v2{vertical-align:-61.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.083573pt;}
.ls9{letter-spacing:0.603747pt;}
.ls7{letter-spacing:0.770152pt;}
.lsc{letter-spacing:0.921612pt;}
.lsb{letter-spacing:3.061350pt;}
.ls5{letter-spacing:3.438954pt;}
.ls8{letter-spacing:8.017067pt;}
.ls4{letter-spacing:41.218133pt;}
.ls3{letter-spacing:84.064000pt;}
.ws1{word-spacing:-41.440000pt;}
.ws2{word-spacing:-37.296000pt;}
.ws0{word-spacing:-13.354667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-4.130080pt;}
._0{margin-left:-3.229867pt;}
._2{margin-left:-1.698133pt;}
._1{width:1.081600pt;}
._3{width:2.588693pt;}
._4{width:3.498827pt;}
._5{width:4.882773pt;}
._b{width:6.353920pt;}
._2f{width:7.258773pt;}
._13{width:8.177067pt;}
._8{width:9.242187pt;}
._9{width:10.135840pt;}
._f{width:11.419787pt;}
._7{width:14.814293pt;}
._10{width:15.710080pt;}
._6{width:17.292533pt;}
._a{width:18.197333pt;}
._1b{width:19.123200pt;}
._2c{width:20.603627pt;}
._15{width:21.559947pt;}
._23{width:22.772267pt;}
._14{width:24.084427pt;}
._c{width:26.774667pt;}
._27{width:28.549493pt;}
._d{width:29.603040pt;}
._1f{width:32.099307pt;}
._21{width:34.053493pt;}
._20{width:34.954720pt;}
._2e{width:36.570613pt;}
._11{width:37.603360pt;}
._12{width:40.729600pt;}
._17{width:42.151467pt;}
._16{width:43.136053pt;}
._24{width:45.337760pt;}
._1c{width:47.787840pt;}
._1d{width:48.772107pt;}
._1e{width:50.717867pt;}
._2d{width:53.258720pt;}
._2b{width:56.388267pt;}
._25{width:58.325173pt;}
._26{width:59.528747pt;}
._19{width:63.873173pt;}
._18{width:66.547200pt;}
._1a{width:67.574507pt;}
._29{width:69.303520pt;}
._2a{width:70.193013pt;}
._22{width:72.872533pt;}
._28{width:74.779787pt;}
.fs6{font-size:21.333333pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.333333pt;}
.y85{bottom:102.666667pt;}
.ybc{bottom:102.666933pt;}
.y40{bottom:103.333333pt;}
.y99{bottom:111.333600pt;}
.y73{bottom:113.333333pt;}
.y4c{bottom:115.333333pt;}
.ybb{bottom:117.333600pt;}
.y84{bottom:118.000000pt;}
.y3f{bottom:118.666667pt;}
.y98{bottom:126.000000pt;}
.y72{bottom:128.666667pt;}
.y4b{bottom:130.666667pt;}
.yba{bottom:131.333600pt;}
.y83{bottom:133.333333pt;}
.y3e{bottom:134.000000pt;}
.y97{bottom:139.333333pt;}
.y71{bottom:144.000000pt;}
.yb9{bottom:144.666667pt;}
.y4a{bottom:146.000000pt;}
.y82{bottom:148.666667pt;}
.y3d{bottom:149.333333pt;}
.yb8{bottom:154.000000pt;}
.y96{bottom:158.666667pt;}
.y70{bottom:159.333333pt;}
.y49{bottom:161.333333pt;}
.y81{bottom:164.000000pt;}
.y3c{bottom:164.666667pt;}
.y6f{bottom:175.333333pt;}
.y48{bottom:176.666667pt;}
.y80{bottom:179.333333pt;}
.y3b{bottom:180.000000pt;}
.y6e{bottom:190.666667pt;}
.y47{bottom:192.000000pt;}
.y7f{bottom:194.666667pt;}
.y3a{bottom:195.333333pt;}
.y6d{bottom:207.333333pt;}
.y46{bottom:208.000000pt;}
.y7e{bottom:210.000000pt;}
.y39{bottom:210.666667pt;}
.y6c{bottom:221.333333pt;}
.y45{bottom:224.666667pt;}
.y7d{bottom:225.333333pt;}
.y38{bottom:226.000000pt;}
.y6b{bottom:235.333333pt;}
.y44{bottom:238.666667pt;}
.y7c{bottom:240.666667pt;}
.y37{bottom:244.000000pt;}
.y43{bottom:252.666667pt;}
.y6a{bottom:254.000000pt;}
.y7b{bottom:256.000000pt;}
.y36{bottom:268.000000pt;}
.y42{bottom:271.333333pt;}
.y35{bottom:286.666667pt;}
.y7a{bottom:287.333333pt;}
.y34{bottom:302.000000pt;}
.y33{bottom:317.333333pt;}
.y32{bottom:332.666667pt;}
.y31{bottom:348.000000pt;}
.y30{bottom:363.333333pt;}
.y95{bottom:367.333333pt;}
.yb7{bottom:370.000000pt;}
.y2f{bottom:378.666667pt;}
.yb6{bottom:384.666667pt;}
.y94{bottom:386.000000pt;}
.y2e{bottom:394.000000pt;}
.yb5{bottom:400.000000pt;}
.y93{bottom:401.333333pt;}
.y2d{bottom:409.333333pt;}
.yb4{bottom:415.333333pt;}
.y92{bottom:416.666667pt;}
.ycf{bottom:419.333333pt;}
.y41{bottom:422.000000pt;}
.y2c{bottom:424.666667pt;}
.yb3{bottom:430.666667pt;}
.y91{bottom:432.000000pt;}
.yce{bottom:434.666667pt;}
.y2b{bottom:440.000000pt;}
.yb2{bottom:446.000000pt;}
.y90{bottom:447.333333pt;}
.ycd{bottom:450.000000pt;}
.y2a{bottom:455.333333pt;}
.yb1{bottom:461.333333pt;}
.y8f{bottom:462.666667pt;}
.ycc{bottom:465.333333pt;}
.y29{bottom:470.666667pt;}
.yb0{bottom:476.666667pt;}
.y8e{bottom:478.000000pt;}
.ycb{bottom:480.666667pt;}
.y28{bottom:486.000000pt;}
.yaf{bottom:492.000000pt;}
.y8d{bottom:493.333333pt;}
.yca{bottom:496.000000pt;}
.y27{bottom:501.333333pt;}
.y8c{bottom:508.666667pt;}
.yc9{bottom:511.333333pt;}
.y26{bottom:516.666667pt;}
.yae{bottom:522.666667pt;}
.y8b{bottom:524.000000pt;}
.yc8{bottom:526.666667pt;}
.y25{bottom:532.000000pt;}
.yad{bottom:538.000000pt;}
.y8a{bottom:538.666667pt;}
.yc7{bottom:542.000000pt;}
.y24{bottom:547.333333pt;}
.y89{bottom:556.666667pt;}
.yc6{bottom:557.333333pt;}
.y23{bottom:562.666667pt;}
.y69{bottom:569.333333pt;}
.y88{bottom:570.666667pt;}
.yc5{bottom:572.666667pt;}
.y22{bottom:578.000000pt;}
.yac{bottom:580.000000pt;}
.y68{bottom:587.333333pt;}
.y87{bottom:589.333333pt;}
.y21{bottom:593.333333pt;}
.yab{bottom:594.000000pt;}
.y67{bottom:602.666667pt;}
.yc4{bottom:603.333333pt;}
.y20{bottom:608.666667pt;}
.yaa{bottom:613.333333pt;}
.y66{bottom:618.000000pt;}
.yc3{bottom:618.666667pt;}
.y1f{bottom:624.000000pt;}
.y79{bottom:626.000000pt;}
.y65{bottom:633.333333pt;}
.y1e{bottom:639.333333pt;}
.y78{bottom:640.000000pt;}
.yc2{bottom:642.666667pt;}
.y64{bottom:648.666667pt;}
.y77{bottom:654.000000pt;}
.y1d{bottom:654.666667pt;}
.yc1{bottom:660.666667pt;}
.y63{bottom:664.000000pt;}
.y76{bottom:672.666667pt;}
.yc0{bottom:674.666667pt;}
.y62{bottom:679.333333pt;}
.y1c{bottom:688.000000pt;}
.y61{bottom:694.666667pt;}
.y1b{bottom:701.333333pt;}
.ybf{bottom:702.000000pt;}
.y60{bottom:710.000000pt;}
.y1a{bottom:715.333333pt;}
.ybe{bottom:716.000000pt;}
.y5f{bottom:725.333333pt;}
.ybd{bottom:728.000000pt;}
.y19{bottom:729.333333pt;}
.yda{bottom:738.000000pt;}
.y5e{bottom:740.666667pt;}
.y18{bottom:743.333333pt;}
.yd9{bottom:753.333333pt;}
.y5d{bottom:756.000000pt;}
.y17{bottom:756.666667pt;}
.yd8{bottom:768.666667pt;}
.y16{bottom:771.333333pt;}
.ya9{bottom:784.000000pt;}
.y5c{bottom:786.666667pt;}
.y15{bottom:787.333333pt;}
.y86{bottom:798.666667pt;}
.yd7{bottom:799.333333pt;}
.y5b{bottom:802.000000pt;}
.ya8{bottom:802.000267pt;}
.y14{bottom:804.666667pt;}
.yd6{bottom:814.666667pt;}
.y5a{bottom:817.333333pt;}
.ya7{bottom:817.333600pt;}
.y13{bottom:818.000000pt;}
.yd5{bottom:830.000000pt;}
.y12{bottom:832.000000pt;}
.y59{bottom:832.666667pt;}
.ya6{bottom:832.666933pt;}
.yd4{bottom:845.333333pt;}
.y11{bottom:846.000000pt;}
.y58{bottom:848.000000pt;}
.ya5{bottom:848.000267pt;}
.y10{bottom:859.333333pt;}
.y75{bottom:860.666667pt;}
.y57{bottom:863.333333pt;}
.ya4{bottom:863.333600pt;}
.yf{bottom:874.000000pt;}
.yd3{bottom:876.000000pt;}
.y56{bottom:878.666667pt;}
.ya3{bottom:878.666933pt;}
.ye{bottom:889.333333pt;}
.yd2{bottom:891.333333pt;}
.y55{bottom:894.000000pt;}
.ya2{bottom:894.000267pt;}
.yd{bottom:904.666667pt;}
.yd1{bottom:906.666667pt;}
.y54{bottom:909.333333pt;}
.ya1{bottom:909.333600pt;}
.yc{bottom:919.333333pt;}
.yd0{bottom:922.000000pt;}
.y53{bottom:924.666667pt;}
.ya0{bottom:924.666933pt;}
.yb{bottom:933.333333pt;}
.y52{bottom:940.000000pt;}
.y9f{bottom:940.000267pt;}
.ya{bottom:952.000000pt;}
.y51{bottom:955.333333pt;}
.y9e{bottom:955.333600pt;}
.y9{bottom:961.333333pt;}
.y74{bottom:970.666667pt;}
.y9d{bottom:970.666933pt;}
.y50{bottom:971.333333pt;}
.y8{bottom:977.333333pt;}
.y4f{bottom:986.000000pt;}
.y9c{bottom:986.000267pt;}
.y7{bottom:995.333333pt;}
.y4e{bottom:1001.333333pt;}
.y9b{bottom:1001.333600pt;}
.y6{bottom:1013.333333pt;}
.y4d{bottom:1016.666667pt;}
.y9a{bottom:1016.666933pt;}
.y2{bottom:1046.666667pt;}
.y4{bottom:1060.000000pt;}
.y3{bottom:1063.333333pt;}
.y1{bottom:1064.000000pt;}
.h2{height:14.666667pt;}
.hb{height:19.712000pt;}
.h6{height:29.568000pt;}
.h8{height:37.280000pt;}
.ha{height:39.424000pt;}
.h7{height:44.352000pt;}
.h1{height:49.280000pt;}
.h5{height:51.200000pt;}
.h9{height:54.208000pt;}
.h4{height:59.136000pt;}
.h3{height:61.440000pt;}
.h0{height:1122.666667pt;}
.w1{width:0.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.666667pt;}
.xe{left:113.333333pt;}
.x14{left:114.666667pt;}
.xd{left:118.666651pt;}
.x8{left:127.333301pt;}
.x5{left:137.999875pt;}
.x7{left:142.666667pt;}
.xa{left:149.333333pt;}
.xc{left:156.000000pt;}
.x9{left:204.000516pt;}
.x13{left:261.333333pt;}
.x4{left:268.000000pt;}
.x6{left:270.000000pt;}
.x16{left:341.333333pt;}
.x15{left:378.000000pt;}
.xf{left:416.000050pt;}
.x11{left:434.666667pt;}
.x10{left:440.000061pt;}
.xb{left:549.333333pt;}
.x2{left:679.333226pt;}
.x3{left:699.333333pt;}
.x12{left:700.666667pt;}
}




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