
    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_4bfba51afc49120ea58dc4a1.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_124d238eab27a68a666c362e.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_fe3e043757200290366bf4ab.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_de2c3655968f6c1a0aaee47b.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_4206a46bc9d5fe631f6f6acb.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_1787748cada95b681f5ed85a.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_6e0c8d996a871d53f466daf6.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;}
.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;}
.ls7{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.216000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.117216px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.149760px;}
.ls0{letter-spacing:15.269760px;}
.ls5{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;}
}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.064000px;}
.ws0{word-spacing:-15.002784px;}
.ws1{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
._2a{margin-left:-8.496000px;}
._4{margin-left:-7.279200px;}
._1e{margin-left:-5.526720px;}
._3{margin-left:-4.309200px;}
._0{margin-left:-2.592000px;}
._2{margin-left:-1.313280px;}
._1{width:1.728000px;}
._c{width:3.240000px;}
._12{width:4.536000px;}
._1a{width:6.192000px;}
._1b{width:7.272000px;}
._18{width:9.216000px;}
._22{width:10.457280px;}
._1f{width:11.701440px;}
._1d{width:12.867840px;}
._1c{width:13.968000px;}
._17{width:15.458880px;}
._16{width:16.793280px;}
._a{width:19.368000px;}
._b{width:20.376000px;}
._20{width:21.473280px;}
._21{width:22.645440px;}
._26{width:23.982240px;}
._27{width:25.056000px;}
._15{width:26.640000px;}
._13{width:27.792000px;}
._14{width:29.304000px;}
._25{width:30.744000px;}
._24{width:32.317200px;}
._19{width:33.624000px;}
._d{width:36.936000px;}
._e{width:37.944000px;}
._f{width:39.168000px;}
._10{width:41.616000px;}
._11{width:43.200000px;}
._28{width:45.504000px;}
._29{width:46.728000px;}
._23{width:52.104000px;}
._9{width:65.232000px;}
._8{width:66.960000px;}
._6{width:70.704000px;}
._7{width:71.784000px;}
._5{width:445.224000px;}
.fc6{color:transparent;}
.fc5{color:rgb(168,208,141);}
.fc3{color:rgb(146,208,80);}
.fc2{color:rgb(5,99,193);}
.fc7{color:rgb(13,13,13);}
.fc4{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;}
.y3b{bottom:2.340000px;}
.y77{bottom:3.960000px;}
.y33{bottom:6.300000px;}
.yd{bottom:12.570000px;}
.y79{bottom:14.730000px;}
.y3a{bottom:16.665000px;}
.y9{bottom:18.000000px;}
.y76{bottom:25.740000px;}
.y32{bottom:26.460000px;}
.y8{bottom:38.196000px;}
.y7{bottom:40.140000px;}
.y31{bottom:45.900000px;}
.y75{bottom:46.470000px;}
.y6{bottom:58.536000px;}
.y30{bottom:67.140000px;}
.y74{bottom:67.170000px;}
.y5{bottom:78.696000px;}
.y73{bottom:87.510000px;}
.y2f{bottom:88.200000px;}
.yb{bottom:96.120000px;}
.y72{bottom:108.210000px;}
.y2e{bottom:109.440000px;}
.yb0{bottom:125.856000px;}
.ya4{bottom:126.216000px;}
.y71{bottom:129.270000px;}
.y63{bottom:129.816000px;}
.y2d{bottom:130.680000px;}
.ya3{bottom:146.916000px;}
.y70{bottom:149.970000px;}
.y62{bottom:150.510000px;}
.y2c{bottom:151.920000px;}
.yb6{bottom:167.250000px;}
.ya2{bottom:167.610000px;}
.y6f{bottom:170.310000px;}
.y61{bottom:171.210000px;}
.y2b{bottom:172.980000px;}
.yb5{bottom:187.950000px;}
.ya1{bottom:188.310000px;}
.y6e{bottom:191.010000px;}
.y60{bottom:191.550000px;}
.y2a{bottom:194.220000px;}
.ya0{bottom:209.010000px;}
.y6d{bottom:212.070000px;}
.y5f{bottom:212.610000px;}
.y29{bottom:215.460000px;}
.y9f{bottom:229.710000px;}
.y6c{bottom:232.770000px;}
.y5e{bottom:233.310000px;}
.y28{bottom:236.700000px;}
.y9e{bottom:250.410000px;}
.y6b{bottom:253.110000px;}
.y5d{bottom:254.010000px;}
.y27{bottom:257.805000px;}
.yab{bottom:270.750000px;}
.y9d{bottom:271.110000px;}
.y6a{bottom:273.810000px;}
.y5c{bottom:274.710000px;}
.y26{bottom:279.045000px;}
.yaa{bottom:291.450000px;}
.y9c{bottom:291.810000px;}
.y69{bottom:294.915000px;}
.y5b{bottom:295.410000px;}
.y25{bottom:300.285000px;}
.y9b{bottom:312.555000px;}
.y68{bottom:315.615000px;}
.y5a{bottom:316.155000px;}
.y24{bottom:321.525000px;}
.y9a{bottom:333.255000px;}
.y67{bottom:336.315000px;}
.y59{bottom:336.855000px;}
.y23{bottom:342.765000px;}
.y99{bottom:353.955000px;}
.y66{bottom:356.655000px;}
.y58{bottom:357.555000px;}
.y22{bottom:363.825000px;}
.y98{bottom:374.655000px;}
.y65{bottom:377.355000px;}
.y57{bottom:378.255000px;}
.y21{bottom:385.065000px;}
.y97{bottom:395.355000px;}
.y56{bottom:398.955000px;}
.y20{bottom:406.305000px;}
.y96{bottom:416.055000px;}
.y55{bottom:419.655000px;}
.y1f{bottom:427.545000px;}
.ya9{bottom:436.395000px;}
.y95{bottom:436.755000px;}
.y54{bottom:440.355000px;}
.ya8{bottom:457.095000px;}
.y94{bottom:457.455000px;}
.y53{bottom:461.055000px;}
.yb1{bottom:477.795000px;}
.y93{bottom:478.155000px;}
.y52{bottom:481.755000px;}
.y1d{bottom:490.395000px;}
.y92{bottom:498.855000px;}
.y51{bottom:502.455000px;}
.y64{bottom:518.295000px;}
.y91{bottom:519.555000px;}
.y50{bottom:523.155000px;}
.y1c{bottom:525.135000px;}
.yb4{bottom:539.895000px;}
.y90{bottom:540.255000px;}
.y4f{bottom:543.855000px;}
.y1b{bottom:560.055000px;}
.yb3{bottom:560.625000px;}
.y8f{bottom:560.985000px;}
.y1e{bottom:563.505000px;}
.y4e{bottom:564.585000px;}
.y8e{bottom:581.685000px;}
.y4d{bottom:585.285000px;}
.y1a{bottom:595.005000px;}
.y8d{bottom:602.385000px;}
.y4c{bottom:605.985000px;}
.y8c{bottom:623.085000px;}
.y4b{bottom:626.685000px;}
.y19{bottom:629.925000px;}
.yaf{bottom:643.425000px;}
.y8b{bottom:643.785000px;}
.y4a{bottom:647.385000px;}
.y39{bottom:661.500000px;}
.ya7{bottom:664.125000px;}
.y8a{bottom:664.485000px;}
.y18{bottom:664.845000px;}
.y49{bottom:668.085000px;}
.ya6{bottom:684.825000px;}
.y89{bottom:685.185000px;}
.y48{bottom:688.785000px;}
.y17{bottom:699.585000px;}
.y38{bottom:702.465000px;}
.y88{bottom:705.885000px;}
.y47{bottom:709.485000px;}
.y37{bottom:723.165000px;}
.y87{bottom:726.585000px;}
.y46{bottom:730.185000px;}
.y16{bottom:734.505000px;}
.y36{bottom:743.865000px;}
.y86{bottom:747.285000px;}
.y45{bottom:750.885000px;}
.y35{bottom:764.565000px;}
.y85{bottom:767.985000px;}
.y15{bottom:769.425000px;}
.y44{bottom:771.585000px;}
.y34{bottom:785.265000px;}
.y84{bottom:788.685000px;}
.y43{bottom:792.285000px;}
.y14{bottom:804.345000px;}
.y83{bottom:809.385000px;}
.y42{bottom:813.030000px;}
.y82{bottom:830.130000px;}
.y41{bottom:833.730000px;}
.y13{bottom:839.130000px;}
.yae{bottom:850.470000px;}
.y81{bottom:850.830000px;}
.y40{bottom:854.430000px;}
.yad{bottom:871.170000px;}
.y80{bottom:871.530000px;}
.y12{bottom:874.050000px;}
.y3f{bottom:874.410000px;}
.y78{bottom:884.160000px;}
.yac{bottom:891.870000px;}
.y7f{bottom:892.230000px;}
.y3e{bottom:895.650000px;}
.y11{bottom:896.010000px;}
.yb2{bottom:912.570000px;}
.y7e{bottom:912.930000px;}
.y10{bottom:920.130000px;}
.y3d{bottom:930.570000px;}
.y7d{bottom:933.630000px;}
.y7c{bottom:954.330000px;}
.yf{bottom:956.490000px;}
.y3c{bottom:966.570000px;}
.yb7{bottom:974.670000px;}
.y7b{bottom:975.030000px;}
.ye{bottom:992.670000px;}
.y7a{bottom:995.370000px;}
.ya5{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:23.220000px;}
.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;}
.hc{height:153.180000px;}
.h5{height:162.000000px;}
.h10{height:393.915000px;}
.ha{height:444.810000px;}
.h0{height:1188.000000px;}
.w1{width:33.480000px;}
.w4{width:40.536000px;}
.w7{width:207.540000px;}
.w3{width:219.270000px;}
.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:41.580000px;}
.x17{left:54.105000px;}
.xf{left:82.800000px;}
.xe{left:93.636000px;}
.x15{left:100.296000px;}
.x6{left:103.935000px;}
.x1{left:108.036000px;}
.xc{left:109.485000px;}
.x8{left:115.416000px;}
.x9{left:126.216000px;}
.x18{left:162.030000px;}
.x3{left:230.580000px;}
.x12{left:323.355000px;}
.x5{left:331.095000px;}
.x7{left:355.575000px;}
.x2{left:442.260000px;}
.x14{left:447.015000px;}
.x13{left:459.075000px;}
.x16{left:512.820000px;}
.xa{left:617.325000px;}
.xd{left:836.610000px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.104192pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls0{letter-spacing:13.573120pt;}
.ls5{letter-spacing:178.671787pt;}
.ls2{letter-spacing:747.914667pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.168000pt;}
.ws0{word-spacing:-13.335808pt;}
.ws1{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
._2a{margin-left:-7.552000pt;}
._4{margin-left:-6.470400pt;}
._1e{margin-left:-4.912640pt;}
._3{margin-left:-3.830400pt;}
._0{margin-left:-2.304000pt;}
._2{margin-left:-1.167360pt;}
._1{width:1.536000pt;}
._c{width:2.880000pt;}
._12{width:4.032000pt;}
._1a{width:5.504000pt;}
._1b{width:6.464000pt;}
._18{width:8.192000pt;}
._22{width:9.295360pt;}
._1f{width:10.401280pt;}
._1d{width:11.438080pt;}
._1c{width:12.416000pt;}
._17{width:13.741227pt;}
._16{width:14.927360pt;}
._a{width:17.216000pt;}
._b{width:18.112000pt;}
._20{width:19.087360pt;}
._21{width:20.129280pt;}
._26{width:21.317547pt;}
._27{width:22.272000pt;}
._15{width:23.680000pt;}
._13{width:24.704000pt;}
._14{width:26.048000pt;}
._25{width:27.328000pt;}
._24{width:28.726400pt;}
._19{width:29.888000pt;}
._d{width:32.832000pt;}
._e{width:33.728000pt;}
._f{width:34.816000pt;}
._10{width:36.992000pt;}
._11{width:38.400000pt;}
._28{width:40.448000pt;}
._29{width:41.536000pt;}
._23{width:46.314667pt;}
._9{width:57.984000pt;}
._8{width:59.520000pt;}
._6{width:62.848000pt;}
._7{width:63.808000pt;}
._5{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;}
.y3b{bottom:2.080000pt;}
.y77{bottom:3.520000pt;}
.y33{bottom:5.600000pt;}
.yd{bottom:11.173333pt;}
.y79{bottom:13.093333pt;}
.y3a{bottom:14.813333pt;}
.y9{bottom:16.000000pt;}
.y76{bottom:22.880000pt;}
.y32{bottom:23.520000pt;}
.y8{bottom:33.952000pt;}
.y7{bottom:35.680000pt;}
.y31{bottom:40.800000pt;}
.y75{bottom:41.306667pt;}
.y6{bottom:52.032000pt;}
.y30{bottom:59.680000pt;}
.y74{bottom:59.706667pt;}
.y5{bottom:69.952000pt;}
.y73{bottom:77.786667pt;}
.y2f{bottom:78.400000pt;}
.yb{bottom:85.440000pt;}
.y72{bottom:96.186667pt;}
.y2e{bottom:97.280000pt;}
.yb0{bottom:111.872000pt;}
.ya4{bottom:112.192000pt;}
.y71{bottom:114.906667pt;}
.y63{bottom:115.392000pt;}
.y2d{bottom:116.160000pt;}
.ya3{bottom:130.592000pt;}
.y70{bottom:133.306667pt;}
.y62{bottom:133.786667pt;}
.y2c{bottom:135.040000pt;}
.yb6{bottom:148.666667pt;}
.ya2{bottom:148.986667pt;}
.y6f{bottom:151.386667pt;}
.y61{bottom:152.186667pt;}
.y2b{bottom:153.760000pt;}
.yb5{bottom:167.066667pt;}
.ya1{bottom:167.386667pt;}
.y6e{bottom:169.786667pt;}
.y60{bottom:170.266667pt;}
.y2a{bottom:172.640000pt;}
.ya0{bottom:185.786667pt;}
.y6d{bottom:188.506667pt;}
.y5f{bottom:188.986667pt;}
.y29{bottom:191.520000pt;}
.y9f{bottom:204.186667pt;}
.y6c{bottom:206.906667pt;}
.y5e{bottom:207.386667pt;}
.y28{bottom:210.400000pt;}
.y9e{bottom:222.586667pt;}
.y6b{bottom:224.986667pt;}
.y5d{bottom:225.786667pt;}
.y27{bottom:229.160000pt;}
.yab{bottom:240.666667pt;}
.y9d{bottom:240.986667pt;}
.y6a{bottom:243.386667pt;}
.y5c{bottom:244.186667pt;}
.y26{bottom:248.040000pt;}
.yaa{bottom:259.066667pt;}
.y9c{bottom:259.386667pt;}
.y69{bottom:262.146667pt;}
.y5b{bottom:262.586667pt;}
.y25{bottom:266.920000pt;}
.y9b{bottom:277.826667pt;}
.y68{bottom:280.546667pt;}
.y5a{bottom:281.026667pt;}
.y24{bottom:285.800000pt;}
.y9a{bottom:296.226667pt;}
.y67{bottom:298.946667pt;}
.y59{bottom:299.426667pt;}
.y23{bottom:304.680000pt;}
.y99{bottom:314.626667pt;}
.y66{bottom:317.026667pt;}
.y58{bottom:317.826667pt;}
.y22{bottom:323.400000pt;}
.y98{bottom:333.026667pt;}
.y65{bottom:335.426667pt;}
.y57{bottom:336.226667pt;}
.y21{bottom:342.280000pt;}
.y97{bottom:351.426667pt;}
.y56{bottom:354.626667pt;}
.y20{bottom:361.160000pt;}
.y96{bottom:369.826667pt;}
.y55{bottom:373.026667pt;}
.y1f{bottom:380.040000pt;}
.ya9{bottom:387.906667pt;}
.y95{bottom:388.226667pt;}
.y54{bottom:391.426667pt;}
.ya8{bottom:406.306667pt;}
.y94{bottom:406.626667pt;}
.y53{bottom:409.826667pt;}
.yb1{bottom:424.706667pt;}
.y93{bottom:425.026667pt;}
.y52{bottom:428.226667pt;}
.y1d{bottom:435.906667pt;}
.y92{bottom:443.426667pt;}
.y51{bottom:446.626667pt;}
.y64{bottom:460.706667pt;}
.y91{bottom:461.826667pt;}
.y50{bottom:465.026667pt;}
.y1c{bottom:466.786667pt;}
.yb4{bottom:479.906667pt;}
.y90{bottom:480.226667pt;}
.y4f{bottom:483.426667pt;}
.y1b{bottom:497.826667pt;}
.yb3{bottom:498.333333pt;}
.y8f{bottom:498.653333pt;}
.y1e{bottom:500.893333pt;}
.y4e{bottom:501.853333pt;}
.y8e{bottom:517.053333pt;}
.y4d{bottom:520.253333pt;}
.y1a{bottom:528.893333pt;}
.y8d{bottom:535.453333pt;}
.y4c{bottom:538.653333pt;}
.y8c{bottom:553.853333pt;}
.y4b{bottom:557.053333pt;}
.y19{bottom:559.933333pt;}
.yaf{bottom:571.933333pt;}
.y8b{bottom:572.253333pt;}
.y4a{bottom:575.453333pt;}
.y39{bottom:588.000000pt;}
.ya7{bottom:590.333333pt;}
.y8a{bottom:590.653333pt;}
.y18{bottom:590.973333pt;}
.y49{bottom:593.853333pt;}
.ya6{bottom:608.733333pt;}
.y89{bottom:609.053333pt;}
.y48{bottom:612.253333pt;}
.y17{bottom:621.853333pt;}
.y38{bottom:624.413333pt;}
.y88{bottom:627.453333pt;}
.y47{bottom:630.653333pt;}
.y37{bottom:642.813333pt;}
.y87{bottom:645.853333pt;}
.y46{bottom:649.053333pt;}
.y16{bottom:652.893333pt;}
.y36{bottom:661.213333pt;}
.y86{bottom:664.253333pt;}
.y45{bottom:667.453333pt;}
.y35{bottom:679.613333pt;}
.y85{bottom:682.653333pt;}
.y15{bottom:683.933333pt;}
.y44{bottom:685.853333pt;}
.y34{bottom:698.013333pt;}
.y84{bottom:701.053333pt;}
.y43{bottom:704.253333pt;}
.y14{bottom:714.973333pt;}
.y83{bottom:719.453333pt;}
.y42{bottom:722.693333pt;}
.y82{bottom:737.893333pt;}
.y41{bottom:741.093333pt;}
.y13{bottom:745.893333pt;}
.yae{bottom:755.973333pt;}
.y81{bottom:756.293333pt;}
.y40{bottom:759.493333pt;}
.yad{bottom:774.373333pt;}
.y80{bottom:774.693333pt;}
.y12{bottom:776.933333pt;}
.y3f{bottom:777.253333pt;}
.y78{bottom:785.920000pt;}
.yac{bottom:792.773333pt;}
.y7f{bottom:793.093333pt;}
.y3e{bottom:796.133333pt;}
.y11{bottom:796.453333pt;}
.yb2{bottom:811.173333pt;}
.y7e{bottom:811.493333pt;}
.y10{bottom:817.893333pt;}
.y3d{bottom:827.173333pt;}
.y7d{bottom:829.893333pt;}
.y7c{bottom:848.293333pt;}
.yf{bottom:850.213333pt;}
.y3c{bottom:859.173333pt;}
.yb7{bottom:866.373333pt;}
.y7b{bottom:866.693333pt;}
.ye{bottom:882.373333pt;}
.y7a{bottom:884.773333pt;}
.ya5{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:20.640000pt;}
.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;}
.hc{height:136.160000pt;}
.h5{height:144.000000pt;}
.h10{height:350.146667pt;}
.ha{height:395.386667pt;}
.h0{height:1056.000000pt;}
.w1{width:29.760000pt;}
.w4{width:36.032000pt;}
.w7{width:184.480000pt;}
.w3{width:194.906667pt;}
.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:36.960000pt;}
.x17{left:48.093333pt;}
.xf{left:73.600000pt;}
.xe{left:83.232000pt;}
.x15{left:89.152000pt;}
.x6{left:92.386667pt;}
.x1{left:96.032000pt;}
.xc{left:97.320000pt;}
.x8{left:102.592000pt;}
.x9{left:112.192000pt;}
.x18{left:144.026667pt;}
.x3{left:204.960000pt;}
.x12{left:287.426667pt;}
.x5{left:294.306667pt;}
.x7{left:316.066667pt;}
.x2{left:393.120000pt;}
.x14{left:397.346667pt;}
.x13{left:408.066667pt;}
.x16{left:455.840000pt;}
.xa{left:548.733333pt;}
.xd{left:743.653333pt;}
}




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