
    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_562dec4bb5e9ef812f346e4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ad34ea843f94ff311bcd0459.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_54be065f246eba852e8874f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_dfc7c95b22a11f35021e941f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab9a8d498d7d00ae1abda63b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_3ff87617a61254b60f20522c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_18e897ffe104befc163c25f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:13.680000px;}
.ls2{letter-spacing:33.120000px;}
.ls3{letter-spacing:64.421280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-4.608000px;}
._2{margin-left:-3.064320px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._3{width:3.134880px;}
._9{width:4.142880px;}
._8{width:5.433120px;}
._6{width:6.912000px;}
._7{width:7.920000px;}
._1f{width:8.950080px;}
._1a{width:9.979680px;}
._f{width:11.520000px;}
._c{width:12.888000px;}
._11{width:13.961280px;}
._a{width:15.048000px;}
._12{width:16.344000px;}
._15{width:19.776000px;}
._13{width:21.456000px;}
._14{width:22.752000px;}
._19{width:23.914080px;}
._18{width:24.938400px;}
._1b{width:26.496000px;}
._1c{width:27.792000px;}
._1e{width:29.160000px;}
._10{width:30.252000px;}
._1d{width:31.536000px;}
._17{width:32.664000px;}
._e{width:34.217280px;}
._d{width:35.352000px;}
._20{width:40.536000px;}
._21{width:41.642400px;}
._4{width:100.643760px;}
._5{width:101.912160px;}
._23{width:132.336000px;}
._16{width:243.216000px;}
._22{width:291.528000px;}
.fc2{color:rgb(14,40,65);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y7c{bottom:166.710000px;}
.y4e{bottom:167.430000px;}
.y9b{bottom:170.670000px;}
.y30{bottom:172.110000px;}
.ycf{bottom:176.970000px;}
.y69{bottom:186.330000px;}
.yaa{bottom:188.490000px;}
.y2f{bottom:192.810000px;}
.yce{bottom:197.670000px;}
.y7b{bottom:197.850000px;}
.y4d{bottom:198.390000px;}
.y9a{bottom:201.630000px;}
.y2e{bottom:213.510000px;}
.ya9{bottom:217.110000px;}
.y68{bottom:217.470000px;}
.ycd{bottom:218.370000px;}
.y7a{bottom:220.530000px;}
.y4c{bottom:229.530000px;}
.y2d{bottom:234.210000px;}
.y99{bottom:236.730000px;}
.ycc{bottom:239.070000px;}
.ya8{bottom:242.850000px;}
.y67{bottom:248.430000px;}
.y2c{bottom:254.910000px;}
.ycb{bottom:259.770000px;}
.y4b{bottom:260.490000px;}
.y88{bottom:265.350000px;}
.y98{bottom:267.330000px;}
.ya7{bottom:268.770000px;}
.y2b{bottom:275.610000px;}
.y66{bottom:279.570000px;}
.yca{bottom:280.470000px;}
.y4a{bottom:291.630000px;}
.y2a{bottom:296.310000px;}
.ya6{bottom:297.210000px;}
.yc9{bottom:301.170000px;}
.y65{bottom:310.530000px;}
.y29{bottom:317.010000px;}
.yc8{bottom:321.870000px;}
.y49{bottom:322.590000px;}
.y87{bottom:327.450000px;}
.ya5{bottom:328.170000px;}
.y28{bottom:337.755000px;}
.y64{bottom:341.715000px;}
.yc7{bottom:342.615000px;}
.y79{bottom:346.035000px;}
.y48{bottom:353.775000px;}
.y27{bottom:358.455000px;}
.ya4{bottom:359.355000px;}
.yc6{bottom:363.315000px;}
.y63{bottom:372.675000px;}
.y26{bottom:379.155000px;}
.yc5{bottom:384.015000px;}
.y47{bottom:384.735000px;}
.y86{bottom:389.595000px;}
.ya3{bottom:391.035000px;}
.y25{bottom:399.855000px;}
.y62{bottom:403.815000px;}
.yc4{bottom:404.715000px;}
.y46{bottom:415.875000px;}
.y24{bottom:420.555000px;}
.y97{bottom:425.235000px;}
.yc3{bottom:425.415000px;}
.y61{bottom:434.775000px;}
.y23{bottom:441.255000px;}
.y96{bottom:445.935000px;}
.yc2{bottom:446.115000px;}
.y45{bottom:446.835000px;}
.y85{bottom:452.235000px;}
.y22{bottom:461.955000px;}
.y60{bottom:465.915000px;}
.yc1{bottom:466.815000px;}
.y95{bottom:477.075000px;}
.y44{bottom:477.975000px;}
.y21{bottom:482.655000px;}
.yc0{bottom:487.515000px;}
.y5f{bottom:496.875000px;}
.y20{bottom:503.355000px;}
.y94{bottom:508.035000px;}
.ybf{bottom:508.215000px;}
.y43{bottom:508.935000px;}
.y1f{bottom:524.055000px;}
.y5e{bottom:528.015000px;}
.ybe{bottom:528.915000px;}
.y93{bottom:539.175000px;}
.y42{bottom:540.075000px;}
.y1e{bottom:544.755000px;}
.ybd{bottom:549.615000px;}
.ya2{bottom:552.495000px;}
.y5d{bottom:558.975000px;}
.y1d{bottom:565.455000px;}
.y78{bottom:567.255000px;}
.ybc{bottom:570.315000px;}
.y41{bottom:571.035000px;}
.ya1{bottom:573.195000px;}
.y92{bottom:574.095000px;}
.y1c{bottom:586.155000px;}
.y5c{bottom:590.115000px;}
.ybb{bottom:591.015000px;}
.y40{bottom:602.175000px;}
.y91{bottom:603.075000px;}
.ya0{bottom:604.185000px;}
.y1b{bottom:606.885000px;}
.y77{bottom:610.305000px;}
.yba{bottom:611.745000px;}
.y84{bottom:616.965000px;}
.y5b{bottom:621.105000px;}
.y1a{bottom:627.585000px;}
.yb9{bottom:632.445000px;}
.y3f{bottom:633.165000px;}
.y9f{bottom:635.325000px;}
.y76{bottom:641.265000px;}
.y83{bottom:643.605000px;}
.y19{bottom:648.285000px;}
.y5a{bottom:652.245000px;}
.yb8{bottom:653.145000px;}
.y3e{bottom:664.305000px;}
.y9e{bottom:666.285000px;}
.y18{bottom:668.985000px;}
.y75{bottom:672.405000px;}
.y82{bottom:674.745000px;}
.yb7{bottom:680.325000px;}
.y59{bottom:683.205000px;}
.y17{bottom:689.685000px;}
.y3d{bottom:695.265000px;}
.y9d{bottom:697.425000px;}
.y74{bottom:703.365000px;}
.y81{bottom:705.705000px;}
.y16{bottom:710.385000px;}
.y58{bottom:714.345000px;}
.yb6{bottom:723.345000px;}
.y3c{bottom:726.405000px;}
.y9c{bottom:729.105000px;}
.y15{bottom:731.085000px;}
.y90{bottom:731.265000px;}
.y73{bottom:734.505000px;}
.y80{bottom:736.845000px;}
.y57{bottom:745.305000px;}
.y14{bottom:751.605000px;}
.y8f{bottom:751.965000px;}
.yb5{bottom:754.305000px;}
.y3b{bottom:757.365000px;}
.y72{bottom:765.465000px;}
.y7f{bottom:767.805000px;}
.y13{bottom:772.305000px;}
.y56{bottom:776.445000px;}
.y8e{bottom:783.105000px;}
.yb4{bottom:785.445000px;}
.y3a{bottom:788.505000px;}
.y12{bottom:793.005000px;}
.y71{bottom:796.605000px;}
.y7e{bottom:799.485000px;}
.y55{bottom:807.405000px;}
.y11{bottom:813.705000px;}
.y8d{bottom:814.065000px;}
.yb3{bottom:816.405000px;}
.y39{bottom:819.465000px;}
.y70{bottom:827.565000px;}
.y10{bottom:834.405000px;}
.y54{bottom:838.545000px;}
.y8c{bottom:845.205000px;}
.yb2{bottom:847.545000px;}
.y38{bottom:850.605000px;}
.yf{bottom:855.105000px;}
.y6f{bottom:858.705000px;}
.y53{bottom:869.505000px;}
.ye{bottom:875.850000px;}
.y8b{bottom:876.210000px;}
.yb1{bottom:878.550000px;}
.y37{bottom:881.610000px;}
.y6e{bottom:889.710000px;}
.yd{bottom:896.550000px;}
.y8a{bottom:896.910000px;}
.y52{bottom:900.510000px;}
.yb0{bottom:909.510000px;}
.y36{bottom:912.750000px;}
.y89{bottom:913.650000px;}
.yc{bottom:917.250000px;}
.y6d{bottom:920.850000px;}
.yd2{bottom:931.110000px;}
.y51{bottom:931.650000px;}
.yb{bottom:939.390000px;}
.yaf{bottom:940.650000px;}
.y35{bottom:943.710000px;}
.y6c{bottom:951.810000px;}
.y7d{bottom:956.130000px;}
.y50{bottom:962.610000px;}
.ya{bottom:966.930000px;}
.yae{bottom:971.610000px;}
.yd1{bottom:972.510000px;}
.y34{bottom:974.850000px;}
.y6b{bottom:982.950000px;}
.yd0{bottom:993.210000px;}
.y9{bottom:994.470000px;}
.y33{bottom:1002.030000px;}
.yad{bottom:1002.750000px;}
.y6a{bottom:1013.910000px;}
.y8{bottom:1022.190000px;}
.yac{bottom:1033.710000px;}
.y32{bottom:1034.610000px;}
.y4f{bottom:1045.050000px;}
.y7{bottom:1049.730000px;}
.y31{bottom:1055.310000px;}
.yab{bottom:1072.950000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.ha{height:43.506914px;}
.h8{height:48.224531px;}
.h9{height:52.417969px;}
.h6{height:54.878906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h5{height:72.988945px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.415987px;}
.x5{left:119.375987px;}
.x3{left:148.895987px;}
.xb{left:160.409987px;}
.xe{left:191.369987px;}
.x6{left:270.029987px;}
.x7{left:295.094987px;}
.xf{left:310.754987px;}
.x14{left:314.534987px;}
.xc{left:317.954987px;}
.x11{left:320.474987px;}
.x15{left:348.554987px;}
.x9{left:351.614987px;}
.x1{left:467.744987px;}
.x13{left:488.984987px;}
.x10{left:753.449987px;}
.x12{left:755.249987px;}
.x8{left:762.089987px;}
.xa{left:766.769987px;}
.xd{left:784.949987px;}
.x4{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:12.160000pt;}
.ls2{letter-spacing:29.440000pt;}
.ls3{letter-spacing:57.263360pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-4.096000pt;}
._2{margin-left:-2.723840pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._3{width:2.786560pt;}
._9{width:3.682560pt;}
._8{width:4.829440pt;}
._6{width:6.144000pt;}
._7{width:7.040000pt;}
._1f{width:7.955627pt;}
._1a{width:8.870827pt;}
._f{width:10.240000pt;}
._c{width:11.456000pt;}
._11{width:12.410027pt;}
._a{width:13.376000pt;}
._12{width:14.528000pt;}
._15{width:17.578667pt;}
._13{width:19.072000pt;}
._14{width:20.224000pt;}
._19{width:21.256960pt;}
._18{width:22.167467pt;}
._1b{width:23.552000pt;}
._1c{width:24.704000pt;}
._1e{width:25.920000pt;}
._10{width:26.890667pt;}
._1d{width:28.032000pt;}
._17{width:29.034667pt;}
._e{width:30.415360pt;}
._d{width:31.424000pt;}
._20{width:36.032000pt;}
._21{width:37.015467pt;}
._4{width:89.461120pt;}
._5{width:90.588587pt;}
._23{width:117.632000pt;}
._16{width:216.192000pt;}
._22{width:259.136000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y7c{bottom:148.186667pt;}
.y4e{bottom:148.826667pt;}
.y9b{bottom:151.706667pt;}
.y30{bottom:152.986667pt;}
.ycf{bottom:157.306667pt;}
.y69{bottom:165.626667pt;}
.yaa{bottom:167.546667pt;}
.y2f{bottom:171.386667pt;}
.yce{bottom:175.706667pt;}
.y7b{bottom:175.866667pt;}
.y4d{bottom:176.346667pt;}
.y9a{bottom:179.226667pt;}
.y2e{bottom:189.786667pt;}
.ya9{bottom:192.986667pt;}
.y68{bottom:193.306667pt;}
.ycd{bottom:194.106667pt;}
.y7a{bottom:196.026667pt;}
.y4c{bottom:204.026667pt;}
.y2d{bottom:208.186667pt;}
.y99{bottom:210.426667pt;}
.ycc{bottom:212.506667pt;}
.ya8{bottom:215.866667pt;}
.y67{bottom:220.826667pt;}
.y2c{bottom:226.586667pt;}
.ycb{bottom:230.906667pt;}
.y4b{bottom:231.546667pt;}
.y88{bottom:235.866667pt;}
.y98{bottom:237.626667pt;}
.ya7{bottom:238.906667pt;}
.y2b{bottom:244.986667pt;}
.y66{bottom:248.506667pt;}
.yca{bottom:249.306667pt;}
.y4a{bottom:259.226667pt;}
.y2a{bottom:263.386667pt;}
.ya6{bottom:264.186667pt;}
.yc9{bottom:267.706667pt;}
.y65{bottom:276.026667pt;}
.y29{bottom:281.786667pt;}
.yc8{bottom:286.106667pt;}
.y49{bottom:286.746667pt;}
.y87{bottom:291.066667pt;}
.ya5{bottom:291.706667pt;}
.y28{bottom:300.226667pt;}
.y64{bottom:303.746667pt;}
.yc7{bottom:304.546667pt;}
.y79{bottom:307.586667pt;}
.y48{bottom:314.466667pt;}
.y27{bottom:318.626667pt;}
.ya4{bottom:319.426667pt;}
.yc6{bottom:322.946667pt;}
.y63{bottom:331.266667pt;}
.y26{bottom:337.026667pt;}
.yc5{bottom:341.346667pt;}
.y47{bottom:341.986667pt;}
.y86{bottom:346.306667pt;}
.ya3{bottom:347.586667pt;}
.y25{bottom:355.426667pt;}
.y62{bottom:358.946667pt;}
.yc4{bottom:359.746667pt;}
.y46{bottom:369.666667pt;}
.y24{bottom:373.826667pt;}
.y97{bottom:377.986667pt;}
.yc3{bottom:378.146667pt;}
.y61{bottom:386.466667pt;}
.y23{bottom:392.226667pt;}
.y96{bottom:396.386667pt;}
.yc2{bottom:396.546667pt;}
.y45{bottom:397.186667pt;}
.y85{bottom:401.986667pt;}
.y22{bottom:410.626667pt;}
.y60{bottom:414.146667pt;}
.yc1{bottom:414.946667pt;}
.y95{bottom:424.066667pt;}
.y44{bottom:424.866667pt;}
.y21{bottom:429.026667pt;}
.yc0{bottom:433.346667pt;}
.y5f{bottom:441.666667pt;}
.y20{bottom:447.426667pt;}
.y94{bottom:451.586667pt;}
.ybf{bottom:451.746667pt;}
.y43{bottom:452.386667pt;}
.y1f{bottom:465.826667pt;}
.y5e{bottom:469.346667pt;}
.ybe{bottom:470.146667pt;}
.y93{bottom:479.266667pt;}
.y42{bottom:480.066667pt;}
.y1e{bottom:484.226667pt;}
.ybd{bottom:488.546667pt;}
.ya2{bottom:491.106667pt;}
.y5d{bottom:496.866667pt;}
.y1d{bottom:502.626667pt;}
.y78{bottom:504.226667pt;}
.ybc{bottom:506.946667pt;}
.y41{bottom:507.586667pt;}
.ya1{bottom:509.506667pt;}
.y92{bottom:510.306667pt;}
.y1c{bottom:521.026667pt;}
.y5c{bottom:524.546667pt;}
.ybb{bottom:525.346667pt;}
.y40{bottom:535.266667pt;}
.y91{bottom:536.066667pt;}
.ya0{bottom:537.053333pt;}
.y1b{bottom:539.453333pt;}
.y77{bottom:542.493333pt;}
.yba{bottom:543.773333pt;}
.y84{bottom:548.413333pt;}
.y5b{bottom:552.093333pt;}
.y1a{bottom:557.853333pt;}
.yb9{bottom:562.173333pt;}
.y3f{bottom:562.813333pt;}
.y9f{bottom:564.733333pt;}
.y76{bottom:570.013333pt;}
.y83{bottom:572.093333pt;}
.y19{bottom:576.253333pt;}
.y5a{bottom:579.773333pt;}
.yb8{bottom:580.573333pt;}
.y3e{bottom:590.493333pt;}
.y9e{bottom:592.253333pt;}
.y18{bottom:594.653333pt;}
.y75{bottom:597.693333pt;}
.y82{bottom:599.773333pt;}
.yb7{bottom:604.733333pt;}
.y59{bottom:607.293333pt;}
.y17{bottom:613.053333pt;}
.y3d{bottom:618.013333pt;}
.y9d{bottom:619.933333pt;}
.y74{bottom:625.213333pt;}
.y81{bottom:627.293333pt;}
.y16{bottom:631.453333pt;}
.y58{bottom:634.973333pt;}
.yb6{bottom:642.973333pt;}
.y3c{bottom:645.693333pt;}
.y9c{bottom:648.093333pt;}
.y15{bottom:649.853333pt;}
.y90{bottom:650.013333pt;}
.y73{bottom:652.893333pt;}
.y80{bottom:654.973333pt;}
.y57{bottom:662.493333pt;}
.y14{bottom:668.093333pt;}
.y8f{bottom:668.413333pt;}
.yb5{bottom:670.493333pt;}
.y3b{bottom:673.213333pt;}
.y72{bottom:680.413333pt;}
.y7f{bottom:682.493333pt;}
.y13{bottom:686.493333pt;}
.y56{bottom:690.173333pt;}
.y8e{bottom:696.093333pt;}
.yb4{bottom:698.173333pt;}
.y3a{bottom:700.893333pt;}
.y12{bottom:704.893333pt;}
.y71{bottom:708.093333pt;}
.y7e{bottom:710.653333pt;}
.y55{bottom:717.693333pt;}
.y11{bottom:723.293333pt;}
.y8d{bottom:723.613333pt;}
.yb3{bottom:725.693333pt;}
.y39{bottom:728.413333pt;}
.y70{bottom:735.613333pt;}
.y10{bottom:741.693333pt;}
.y54{bottom:745.373333pt;}
.y8c{bottom:751.293333pt;}
.yb2{bottom:753.373333pt;}
.y38{bottom:756.093333pt;}
.yf{bottom:760.093333pt;}
.y6f{bottom:763.293333pt;}
.y53{bottom:772.893333pt;}
.ye{bottom:778.533333pt;}
.y8b{bottom:778.853333pt;}
.yb1{bottom:780.933333pt;}
.y37{bottom:783.653333pt;}
.y6e{bottom:790.853333pt;}
.yd{bottom:796.933333pt;}
.y8a{bottom:797.253333pt;}
.y52{bottom:800.453333pt;}
.yb0{bottom:808.453333pt;}
.y36{bottom:811.333333pt;}
.y89{bottom:812.133333pt;}
.yc{bottom:815.333333pt;}
.y6d{bottom:818.533333pt;}
.yd2{bottom:827.653333pt;}
.y51{bottom:828.133333pt;}
.yb{bottom:835.013333pt;}
.yaf{bottom:836.133333pt;}
.y35{bottom:838.853333pt;}
.y6c{bottom:846.053333pt;}
.y7d{bottom:849.893333pt;}
.y50{bottom:855.653333pt;}
.ya{bottom:859.493333pt;}
.yae{bottom:863.653333pt;}
.yd1{bottom:864.453333pt;}
.y34{bottom:866.533333pt;}
.y6b{bottom:873.733333pt;}
.yd0{bottom:882.853333pt;}
.y9{bottom:883.973333pt;}
.y33{bottom:890.693333pt;}
.yad{bottom:891.333333pt;}
.y6a{bottom:901.253333pt;}
.y8{bottom:908.613333pt;}
.yac{bottom:918.853333pt;}
.y32{bottom:919.653333pt;}
.y4f{bottom:928.933333pt;}
.y7{bottom:933.093333pt;}
.y31{bottom:938.053333pt;}
.yab{bottom:953.733333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.ha{height:38.672812pt;}
.h8{height:42.866250pt;}
.h9{height:46.593750pt;}
.h6{height:48.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h5{height:64.879063pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x5{left:106.111988pt;}
.x3{left:132.351988pt;}
.xb{left:142.586655pt;}
.xe{left:170.106655pt;}
.x6{left:240.026655pt;}
.x7{left:262.306655pt;}
.xf{left:276.226655pt;}
.x14{left:279.586655pt;}
.xc{left:282.626655pt;}
.x11{left:284.866655pt;}
.x15{left:309.826655pt;}
.x9{left:312.546655pt;}
.x1{left:415.773322pt;}
.x13{left:434.653322pt;}
.x10{left:669.733322pt;}
.x12{left:671.333322pt;}
.x8{left:677.413322pt;}
.xa{left:681.573322pt;}
.xd{left:697.733322pt;}
.x4{left:699.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  