
    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_f2c622d6654081800e051bd2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4255ca01a684210eb028e640.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_3aa09472745e642363bc3f07.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_686f4f570027094b349661e0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_81c15af0b9743fdda90b21c9.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff4d8a8b1647dffed6658c16.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_94a3ade84d42e7abec4e62d0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_394b2b6a009880040ecc4d07.woff')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_c598cc4d4a684539b74dcde7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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:-90.900000px;}
.v5{vertical-align:-72.720000px;}
.v2{vertical-align:-14.580000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.640000px;}
.ls9{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.936000px;}
.ls5{letter-spacing:1.440000px;}
.ls13{letter-spacing:3.543120px;}
.ls1c{letter-spacing:3.600000px;}
.ls12{letter-spacing:18.641520px;}
.lsb{letter-spacing:20.160000px;}
.ls6{letter-spacing:25.920000px;}
.ls3{letter-spacing:49.680000px;}
.lsc{letter-spacing:736.716000px;}
.ls1a{letter-spacing:1174.476000px;}
.ls16{letter-spacing:1257.996000px;}
.ls19{letter-spacing:1263.900000px;}
.ls15{letter-spacing:2562.576000px;}
.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;}
}
.ws7{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.784000px;}
.wsb{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.wsa{word-spacing:-0.168000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:2.880000px;}
.ws9{word-spacing:4.536000px;}
._28{margin-left:-9.504000px;}
._19{margin-left:-8.304000px;}
._f{margin-left:-6.399360px;}
._c{margin-left:-5.332800px;}
._14{margin-left:-4.076640px;}
._3{margin-left:-2.844000px;}
._2{margin-left:-1.080000px;}
._0{width:1.208640px;}
._10{width:2.388480px;}
._b{width:3.888000px;}
._8{width:4.968000px;}
._11{width:6.480000px;}
._d{width:7.488000px;}
._e{width:8.568000px;}
._17{width:10.080000px;}
._9{width:11.592000px;}
._a{width:13.167360px;}
._6{width:14.616000px;}
._7{width:15.624000px;}
._18{width:16.848000px;}
._21{width:18.720000px;}
._25{width:19.944000px;}
._12{width:21.096000px;}
._13{width:22.176000px;}
._22{width:23.199360px;}
._1d{width:24.888000px;}
._5{width:26.952000px;}
._4{width:28.128000px;}
._24{width:29.736000px;}
._15{width:31.464000px;}
._16{width:32.475360px;}
._1c{width:34.056000px;}
._1b{width:35.772000px;}
._23{width:37.224000px;}
._27{width:38.838720px;}
._1f{width:40.536000px;}
._20{width:41.704800px;}
._1a{width:49.608000px;}
._1e{width:54.720000px;}
._29{width:131.544000px;}
._26{width:164.088000px;}
._1{width:1083.154560px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:4.500000px;}
.y78{bottom:6.120000px;}
.y7a{bottom:6.300000px;}
.y77{bottom:6.480000px;}
.y3{bottom:7.740000px;}
.yba{bottom:9.900000px;}
.y8{bottom:25.200000px;}
.y2{bottom:26.820000px;}
.y5{bottom:29.016000px;}
.yb9{bottom:30.600000px;}
.y66{bottom:98.316000px;}
.yb2{bottom:100.296000px;}
.y37{bottom:101.736000px;}
.y92{bottom:111.096000px;}
.y65{bottom:121.176000px;}
.yb1{bottom:123.156000px;}
.y36{bottom:124.416000px;}
.y64{bottom:143.856000px;}
.yb0{bottom:145.836000px;}
.y35{bottom:147.276000px;}
.y91{bottom:156.630000px;}
.y63{bottom:166.710000px;}
.yaf{bottom:168.690000px;}
.y34{bottom:169.950000px;}
.y90{bottom:179.490000px;}
.y62{bottom:189.390000px;}
.yae{bottom:191.370000px;}
.y33{bottom:192.810000px;}
.y8f{bottom:202.170000px;}
.y61{bottom:212.250000px;}
.yad{bottom:214.230000px;}
.y32{bottom:215.490000px;}
.y8e{bottom:225.030000px;}
.y60{bottom:234.930000px;}
.yac{bottom:236.910000px;}
.y31{bottom:238.350000px;}
.y8d{bottom:247.710000px;}
.y5f{bottom:257.790000px;}
.yab{bottom:259.770000px;}
.y30{bottom:261.030000px;}
.y8c{bottom:270.750000px;}
.y5e{bottom:280.515000px;}
.yaa{bottom:282.495000px;}
.y2f{bottom:283.935000px;}
.y8b{bottom:293.835000px;}
.y5d{bottom:303.375000px;}
.ya9{bottom:305.355000px;}
.y2e{bottom:306.975000px;}
.y8a{bottom:316.515000px;}
.y5c{bottom:326.415000px;}
.ya8{bottom:328.035000px;}
.y2d{bottom:329.835000px;}
.y89{bottom:339.375000px;}
.y5b{bottom:349.635000px;}
.ya7{bottom:350.895000px;}
.y2c{bottom:352.695000px;}
.y88{bottom:362.415000px;}
.y5a{bottom:372.495000px;}
.ya6{bottom:373.575000px;}
.y2b{bottom:375.555000px;}
.y87{bottom:385.275000px;}
.y59{bottom:395.355000px;}
.ya5{bottom:396.435000px;}
.y2a{bottom:398.595000px;}
.y86{bottom:408.135000px;}
.y58{bottom:418.035000px;}
.ya4{bottom:419.115000px;}
.y29{bottom:421.275000px;}
.y85{bottom:430.815000px;}
.y57{bottom:440.895000px;}
.y28{bottom:444.315000px;}
.y84{bottom:453.855000px;}
.y56{bottom:463.575000px;}
.ya3{bottom:464.655000px;}
.y27{bottom:467.355000px;}
.y83{bottom:476.895000px;}
.y55{bottom:486.435000px;}
.ya2{bottom:487.515000px;}
.y26{bottom:490.035000px;}
.yc4{bottom:497.595000px;}
.y82{bottom:499.575000px;}
.y54{bottom:509.115000px;}
.ya1{bottom:510.195000px;}
.y25{bottom:512.895000px;}
.yc3{bottom:520.275000px;}
.y81{bottom:522.435000px;}
.y53{bottom:532.155000px;}
.ya0{bottom:533.055000px;}
.y24{bottom:535.575000px;}
.yc2{bottom:541.155000px;}
.y80{bottom:545.115000px;}
.y52{bottom:555.375000px;}
.y9f{bottom:555.765000px;}
.y23{bottom:558.465000px;}
.yc1{bottom:563.865000px;}
.y7f{bottom:568.005000px;}
.y51{bottom:575.205000px;}
.y9e{bottom:578.625000px;}
.y22{bottom:581.145000px;}
.yc0{bottom:584.745000px;}
.y50{bottom:589.605000px;}
.y7e{bottom:590.685000px;}
.y9d{bottom:601.305000px;}
.y21{bottom:604.005000px;}
.ybf{bottom:605.445000px;}
.y7d{bottom:607.785000px;}
.y4f{bottom:609.765000px;}
.y9c{bottom:624.165000px;}
.y4e{bottom:624.345000px;}
.ybe{bottom:626.145000px;}
.y20{bottom:626.685000px;}
.y7c{bottom:629.925000px;}
.y9b{bottom:646.845000px;}
.y4d{bottom:647.385000px;}
.ybd{bottom:648.645000px;}
.y1f{bottom:649.545000px;}
.y7b{bottom:651.885000px;}
.y9a{bottom:669.885000px;}
.y4c{bottom:670.245000px;}
.ybc{bottom:671.505000px;}
.y1e{bottom:672.225000px;}
.y79{bottom:674.025000px;}
.ybb{bottom:692.385000px;}
.y99{bottom:692.745000px;}
.y4b{bottom:693.105000px;}
.y1d{bottom:695.085000px;}
.y76{bottom:695.985000px;}
.yb8{bottom:708.585000px;}
.y98{bottom:715.605000px;}
.y4a{bottom:715.785000px;}
.y1c{bottom:717.765000px;}
.y75{bottom:720.285000px;}
.y74{bottom:732.525000px;}
.y97{bottom:738.285000px;}
.y49{bottom:738.645000px;}
.y1b{bottom:740.805000px;}
.y48{bottom:761.325000px;}
.yb7{bottom:761.865000px;}
.y1a{bottom:763.845000px;}
.y73{bottom:769.605000px;}
.y96{bottom:783.825000px;}
.y47{bottom:784.185000px;}
.yb6{bottom:784.545000px;}
.y19{bottom:786.885000px;}
.y95{bottom:806.325000px;}
.y46{bottom:806.865000px;}
.yb5{bottom:807.405000px;}
.y18{bottom:809.745000px;}
.y72{bottom:826.665000px;}
.y94{bottom:827.565000px;}
.yb4{bottom:830.085000px;}
.y17{bottom:832.605000px;}
.y71{bottom:841.110000px;}
.y93{bottom:845.970000px;}
.y45{bottom:852.450000px;}
.yb3{bottom:852.990000px;}
.y16{bottom:855.330000px;}
.y70{bottom:861.270000px;}
.y44{bottom:875.310000px;}
.y6f{bottom:875.670000px;}
.y15{bottom:878.190000px;}
.y43{bottom:897.990000px;}
.y6e{bottom:898.530000px;}
.y14{bottom:899.070000px;}
.y13{bottom:919.770000px;}
.y42{bottom:920.850000px;}
.y6d{bottom:921.210000px;}
.y12{bottom:940.470000px;}
.y41{bottom:943.530000px;}
.y6c{bottom:944.070000px;}
.y11{bottom:961.170000px;}
.y40{bottom:966.390000px;}
.y6b{bottom:966.750000px;}
.y10{bottom:981.510000px;}
.y3f{bottom:989.070000px;}
.y6a{bottom:989.610000px;}
.yf{bottom:1002.570000px;}
.y3e{bottom:1011.930000px;}
.y69{bottom:1012.290000px;}
.ye{bottom:1023.270000px;}
.y3d{bottom:1034.610000px;}
.y68{bottom:1035.150000px;}
.yd{bottom:1043.970000px;}
.y3c{bottom:1057.650000px;}
.y67{bottom:1057.830000px;}
.yc{bottom:1064.670000px;}
.y3b{bottom:1080.690000px;}
.yb{bottom:1085.010000px;}
.y3a{bottom:1103.370000px;}
.ya{bottom:1106.070000px;}
.y7{bottom:1122.300000px;}
.y39{bottom:1126.260000px;}
.y38{bottom:1148.940000px;}
.y6{bottom:1164.060000px;}
.y4{bottom:1171.800000px;}
.y1{bottom:1191.420000px;}
.h6{height:5.650313px;}
.h11{height:21.240000px;}
.he{height:21.420000px;}
.hc{height:35.332031px;}
.h7{height:41.400000px;}
.h2{height:42.660000px;}
.h12{height:46.800000px;}
.h10{height:49.264335px;}
.ha{height:50.027344px;}
.hb{height:50.800781px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.hf{height:64.978594px;}
.hd{height:65.010937px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.h8{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:82.654500px;}
.w9{width:244.290000px;}
.w8{width:246.493500px;}
.wa{width:248.235000px;}
.w3{width:260.655000px;}
.w5{width:369.435000px;}
.w4{width:369.613500px;}
.w2{width:453.883500px;}
.w7{width:656.370000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.918500px;}
.x6{left:9.885000px;}
.x15{left:25.594500px;}
.x2{left:27.934500px;}
.xc{left:50.250000px;}
.x17{left:57.585000px;}
.x1e{left:65.865000px;}
.xa{left:77.041500px;}
.x5{left:79.185000px;}
.x11{left:84.960000px;}
.x1{left:87.661500px;}
.xf{left:97.596000px;}
.x20{left:104.436000px;}
.x7{left:127.476000px;}
.x10{left:128.736000px;}
.xd{left:131.256000px;}
.x3{left:138.988500px;}
.x1f{left:143.490000px;}
.x8{left:153.570000px;}
.x16{left:159.705000px;}
.xe{left:210.630000px;}
.x14{left:212.070000px;}
.x18{left:299.370000px;}
.x19{left:306.030000px;}
.x1c{left:323.535000px;}
.x13{left:370.155000px;}
.x1b{left:386.355000px;}
.x12{left:405.435000px;}
.x9{left:446.475000px;}
.x4{left:544.800000px;}
.x1d{left:567.840000px;}
.x1a{left:804.210000px;}
@media print{
.v1{vertical-align:-80.800000pt;}
.v5{vertical-align:-64.640000pt;}
.v2{vertical-align:-12.960000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.680000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.832000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls13{letter-spacing:3.149440pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls12{letter-spacing:16.570240pt;}
.lsb{letter-spacing:17.920000pt;}
.ls6{letter-spacing:23.040000pt;}
.ls3{letter-spacing:44.160000pt;}
.lsc{letter-spacing:654.858667pt;}
.ls1a{letter-spacing:1043.978667pt;}
.ls16{letter-spacing:1118.218667pt;}
.ls19{letter-spacing:1123.466667pt;}
.ls15{letter-spacing:2277.845333pt;}
.ws7{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.wsa{word-spacing:-0.149333pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:2.560000pt;}
.ws9{word-spacing:4.032000pt;}
._28{margin-left:-8.448000pt;}
._19{margin-left:-7.381333pt;}
._f{margin-left:-5.688320pt;}
._c{margin-left:-4.740267pt;}
._14{margin-left:-3.623680pt;}
._3{margin-left:-2.528000pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.074347pt;}
._10{width:2.123093pt;}
._b{width:3.456000pt;}
._8{width:4.416000pt;}
._11{width:5.760000pt;}
._d{width:6.656000pt;}
._e{width:7.616000pt;}
._17{width:8.960000pt;}
._9{width:10.304000pt;}
._a{width:11.704320pt;}
._6{width:12.992000pt;}
._7{width:13.888000pt;}
._18{width:14.976000pt;}
._21{width:16.640000pt;}
._25{width:17.728000pt;}
._12{width:18.752000pt;}
._13{width:19.712000pt;}
._22{width:20.621653pt;}
._1d{width:22.122667pt;}
._5{width:23.957333pt;}
._4{width:25.002667pt;}
._24{width:26.432000pt;}
._15{width:27.968000pt;}
._16{width:28.866987pt;}
._1c{width:30.272000pt;}
._1b{width:31.797333pt;}
._23{width:33.088000pt;}
._27{width:34.523307pt;}
._1f{width:36.032000pt;}
._20{width:37.070933pt;}
._1a{width:44.096000pt;}
._1e{width:48.640000pt;}
._29{width:116.928000pt;}
._26{width:145.856000pt;}
._1{width:962.804053pt;}
.fs2{font-size:5.120000pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.000000pt;}
.y78{bottom:5.440000pt;}
.y7a{bottom:5.600000pt;}
.y77{bottom:5.760000pt;}
.y3{bottom:6.880000pt;}
.yba{bottom:8.800000pt;}
.y8{bottom:22.400000pt;}
.y2{bottom:23.840000pt;}
.y5{bottom:25.792000pt;}
.yb9{bottom:27.200000pt;}
.y66{bottom:87.392000pt;}
.yb2{bottom:89.152000pt;}
.y37{bottom:90.432000pt;}
.y92{bottom:98.752000pt;}
.y65{bottom:107.712000pt;}
.yb1{bottom:109.472000pt;}
.y36{bottom:110.592000pt;}
.y64{bottom:127.872000pt;}
.yb0{bottom:129.632000pt;}
.y35{bottom:130.912000pt;}
.y91{bottom:139.226667pt;}
.y63{bottom:148.186667pt;}
.yaf{bottom:149.946667pt;}
.y34{bottom:151.066667pt;}
.y90{bottom:159.546667pt;}
.y62{bottom:168.346667pt;}
.yae{bottom:170.106667pt;}
.y33{bottom:171.386667pt;}
.y8f{bottom:179.706667pt;}
.y61{bottom:188.666667pt;}
.yad{bottom:190.426667pt;}
.y32{bottom:191.546667pt;}
.y8e{bottom:200.026667pt;}
.y60{bottom:208.826667pt;}
.yac{bottom:210.586667pt;}
.y31{bottom:211.866667pt;}
.y8d{bottom:220.186667pt;}
.y5f{bottom:229.146667pt;}
.yab{bottom:230.906667pt;}
.y30{bottom:232.026667pt;}
.y8c{bottom:240.666667pt;}
.y5e{bottom:249.346667pt;}
.yaa{bottom:251.106667pt;}
.y2f{bottom:252.386667pt;}
.y8b{bottom:261.186667pt;}
.y5d{bottom:269.666667pt;}
.ya9{bottom:271.426667pt;}
.y2e{bottom:272.866667pt;}
.y8a{bottom:281.346667pt;}
.y5c{bottom:290.146667pt;}
.ya8{bottom:291.586667pt;}
.y2d{bottom:293.186667pt;}
.y89{bottom:301.666667pt;}
.y5b{bottom:310.786667pt;}
.ya7{bottom:311.906667pt;}
.y2c{bottom:313.506667pt;}
.y88{bottom:322.146667pt;}
.y5a{bottom:331.106667pt;}
.ya6{bottom:332.066667pt;}
.y2b{bottom:333.826667pt;}
.y87{bottom:342.466667pt;}
.y59{bottom:351.426667pt;}
.ya5{bottom:352.386667pt;}
.y2a{bottom:354.306667pt;}
.y86{bottom:362.786667pt;}
.y58{bottom:371.586667pt;}
.ya4{bottom:372.546667pt;}
.y29{bottom:374.466667pt;}
.y85{bottom:382.946667pt;}
.y57{bottom:391.906667pt;}
.y28{bottom:394.946667pt;}
.y84{bottom:403.426667pt;}
.y56{bottom:412.066667pt;}
.ya3{bottom:413.026667pt;}
.y27{bottom:415.426667pt;}
.y83{bottom:423.906667pt;}
.y55{bottom:432.386667pt;}
.ya2{bottom:433.346667pt;}
.y26{bottom:435.586667pt;}
.yc4{bottom:442.306667pt;}
.y82{bottom:444.066667pt;}
.y54{bottom:452.546667pt;}
.ya1{bottom:453.506667pt;}
.y25{bottom:455.906667pt;}
.yc3{bottom:462.466667pt;}
.y81{bottom:464.386667pt;}
.y53{bottom:473.026667pt;}
.ya0{bottom:473.826667pt;}
.y24{bottom:476.066667pt;}
.yc2{bottom:481.026667pt;}
.y80{bottom:484.546667pt;}
.y52{bottom:493.666667pt;}
.y9f{bottom:494.013333pt;}
.y23{bottom:496.413333pt;}
.yc1{bottom:501.213333pt;}
.y7f{bottom:504.893333pt;}
.y51{bottom:511.293333pt;}
.y9e{bottom:514.333333pt;}
.y22{bottom:516.573333pt;}
.yc0{bottom:519.773333pt;}
.y50{bottom:524.093333pt;}
.y7e{bottom:525.053333pt;}
.y9d{bottom:534.493333pt;}
.y21{bottom:536.893333pt;}
.ybf{bottom:538.173333pt;}
.y7d{bottom:540.253333pt;}
.y4f{bottom:542.013333pt;}
.y9c{bottom:554.813333pt;}
.y4e{bottom:554.973333pt;}
.ybe{bottom:556.573333pt;}
.y20{bottom:557.053333pt;}
.y7c{bottom:559.933333pt;}
.y9b{bottom:574.973333pt;}
.y4d{bottom:575.453333pt;}
.ybd{bottom:576.573333pt;}
.y1f{bottom:577.373333pt;}
.y7b{bottom:579.453333pt;}
.y9a{bottom:595.453333pt;}
.y4c{bottom:595.773333pt;}
.ybc{bottom:596.893333pt;}
.y1e{bottom:597.533333pt;}
.y79{bottom:599.133333pt;}
.ybb{bottom:615.453333pt;}
.y99{bottom:615.773333pt;}
.y4b{bottom:616.093333pt;}
.y1d{bottom:617.853333pt;}
.y76{bottom:618.653333pt;}
.yb8{bottom:629.853333pt;}
.y98{bottom:636.093333pt;}
.y4a{bottom:636.253333pt;}
.y1c{bottom:638.013333pt;}
.y75{bottom:640.253333pt;}
.y74{bottom:651.133333pt;}
.y97{bottom:656.253333pt;}
.y49{bottom:656.573333pt;}
.y1b{bottom:658.493333pt;}
.y48{bottom:676.733333pt;}
.yb7{bottom:677.213333pt;}
.y1a{bottom:678.973333pt;}
.y73{bottom:684.093333pt;}
.y96{bottom:696.733333pt;}
.y47{bottom:697.053333pt;}
.yb6{bottom:697.373333pt;}
.y19{bottom:699.453333pt;}
.y95{bottom:716.733333pt;}
.y46{bottom:717.213333pt;}
.yb5{bottom:717.693333pt;}
.y18{bottom:719.773333pt;}
.y72{bottom:734.813333pt;}
.y94{bottom:735.613333pt;}
.yb4{bottom:737.853333pt;}
.y17{bottom:740.093333pt;}
.y71{bottom:747.653333pt;}
.y93{bottom:751.973333pt;}
.y45{bottom:757.733333pt;}
.yb3{bottom:758.213333pt;}
.y16{bottom:760.293333pt;}
.y70{bottom:765.573333pt;}
.y44{bottom:778.053333pt;}
.y6f{bottom:778.373333pt;}
.y15{bottom:780.613333pt;}
.y43{bottom:798.213333pt;}
.y6e{bottom:798.693333pt;}
.y14{bottom:799.173333pt;}
.y13{bottom:817.573333pt;}
.y42{bottom:818.533333pt;}
.y6d{bottom:818.853333pt;}
.y12{bottom:835.973333pt;}
.y41{bottom:838.693333pt;}
.y6c{bottom:839.173333pt;}
.y11{bottom:854.373333pt;}
.y40{bottom:859.013333pt;}
.y6b{bottom:859.333333pt;}
.y10{bottom:872.453333pt;}
.y3f{bottom:879.173333pt;}
.y6a{bottom:879.653333pt;}
.yf{bottom:891.173333pt;}
.y3e{bottom:899.493333pt;}
.y69{bottom:899.813333pt;}
.ye{bottom:909.573333pt;}
.y3d{bottom:919.653333pt;}
.y68{bottom:920.133333pt;}
.yd{bottom:927.973333pt;}
.y3c{bottom:940.133333pt;}
.y67{bottom:940.293333pt;}
.yc{bottom:946.373333pt;}
.y3b{bottom:960.613333pt;}
.yb{bottom:964.453333pt;}
.y3a{bottom:980.773333pt;}
.ya{bottom:983.173333pt;}
.y7{bottom:997.600000pt;}
.y39{bottom:1001.120000pt;}
.y38{bottom:1021.280000pt;}
.y6{bottom:1034.720000pt;}
.y4{bottom:1041.600000pt;}
.y1{bottom:1059.040000pt;}
.h6{height:5.022500pt;}
.h11{height:18.880000pt;}
.he{height:19.040000pt;}
.hc{height:31.406250pt;}
.h7{height:36.800000pt;}
.h2{height:37.920000pt;}
.h12{height:41.600000pt;}
.h10{height:43.790520pt;}
.ha{height:44.468750pt;}
.hb{height:45.156250pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.hf{height:57.758750pt;}
.hd{height:57.787500pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.h8{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:73.470667pt;}
.w9{width:217.146667pt;}
.w8{width:219.105333pt;}
.wa{width:220.653333pt;}
.w3{width:231.693333pt;}
.w5{width:328.386667pt;}
.w4{width:328.545333pt;}
.w2{width:403.452000pt;}
.w7{width:583.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.038667pt;}
.x6{left:8.786667pt;}
.x15{left:22.750667pt;}
.x2{left:24.830667pt;}
.xc{left:44.666667pt;}
.x17{left:51.186667pt;}
.x1e{left:58.546667pt;}
.xa{left:68.481333pt;}
.x5{left:70.386667pt;}
.x11{left:75.520000pt;}
.x1{left:77.921333pt;}
.xf{left:86.752000pt;}
.x20{left:92.832000pt;}
.x7{left:113.312000pt;}
.x10{left:114.432000pt;}
.xd{left:116.672000pt;}
.x3{left:123.545333pt;}
.x1f{left:127.546667pt;}
.x8{left:136.506667pt;}
.x16{left:141.960000pt;}
.xe{left:187.226667pt;}
.x14{left:188.506667pt;}
.x18{left:266.106667pt;}
.x19{left:272.026667pt;}
.x1c{left:287.586667pt;}
.x13{left:329.026667pt;}
.x1b{left:343.426667pt;}
.x12{left:360.386667pt;}
.x9{left:396.866667pt;}
.x4{left:484.266667pt;}
.x1d{left:504.746667pt;}
.x1a{left:714.853333pt;}
}




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