
    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_a25ca7074e9d9304a0279725.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a4f21b9d73207df4fc6b5aa1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e50ed6d8b05889b851ea9c4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6fa60526c16c4645712cacc9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e8f3691b06d54e4d8cee367c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_a5e1cd6e46e8d11453eb3b27.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e348798e9a3ed47bace6b4e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.305400px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.513600px;}
.ls10{letter-spacing:11.466720px;}
.lsf{letter-spacing:41.706720px;}
.lsa{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.026720px;}
.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:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._6{margin-left:-1441.851480px;}
._5{margin-left:-986.837760px;}
._7{margin-left:-575.089920px;}
._4{margin-left:-8.213760px;}
._15{margin-left:-6.215040px;}
._9{margin-left:-5.089200px;}
._a{margin-left:-3.908160px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:3.238320px;}
._d{width:4.260720px;}
._f{width:5.580720px;}
._10{width:7.091760px;}
._e{width:8.097360px;}
._12{width:9.262800px;}
._11{width:10.398240px;}
._14{width:11.892240px;}
._13{width:12.908160px;}
._17{width:16.434000px;}
._16{width:17.509680px;}
._c{width:21.714480px;}
._18{width:25.326000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:5.760000px;}
.y72{bottom:5.940000px;}
.y7b{bottom:5.970000px;}
.ybe{bottom:10.620000px;}
.ybd{bottom:30.630000px;}
.yba{bottom:34.770000px;}
.ybc{bottom:50.430000px;}
.y6{bottom:60.300000px;}
.ybb{bottom:70.230000px;}
.y66{bottom:90.720000px;}
.y32{bottom:97.920000px;}
.y95{bottom:100.980000px;}
.y65{bottom:110.520000px;}
.y31{bottom:117.720000px;}
.y94{bottom:120.780000px;}
.yb9{bottom:122.220000px;}
.y64{bottom:130.320000px;}
.y30{bottom:137.520000px;}
.y93{bottom:140.760000px;}
.y63{bottom:150.120000px;}
.y2f{bottom:157.350000px;}
.y92{bottom:160.590000px;}
.y62{bottom:169.950000px;}
.y2e{bottom:177.330000px;}
.y91{bottom:180.390000px;}
.y2d{bottom:197.130000px;}
.y61{bottom:198.930000px;}
.y90{bottom:200.190000px;}
.y2c{bottom:216.930000px;}
.y60{bottom:218.730000px;}
.y8f{bottom:219.990000px;}
.y2b{bottom:236.730000px;}
.y5f{bottom:238.530000px;}
.y8e{bottom:239.970000px;}
.y2a{bottom:256.530000px;}
.y5e{bottom:258.330000px;}
.y8d{bottom:259.770000px;}
.y29{bottom:276.510000px;}
.y5d{bottom:278.130000px;}
.y8c{bottom:279.570000px;}
.yb8{bottom:294.330000px;}
.y28{bottom:296.310000px;}
.y8b{bottom:299.370000px;}
.y5c{bottom:307.110000px;}
.yb7{bottom:314.130000px;}
.y27{bottom:316.110000px;}
.y8a{bottom:319.170000px;}
.y5b{bottom:326.910000px;}
.yb6{bottom:333.930000px;}
.y26{bottom:335.910000px;}
.y89{bottom:339.150000px;}
.y5a{bottom:347.790000px;}
.yb5{bottom:353.730000px;}
.y25{bottom:355.710000px;}
.y88{bottom:358.950000px;}
.y59{bottom:368.670000px;}
.yb4{bottom:373.710000px;}
.y24{bottom:375.690000px;}
.y87{bottom:378.750000px;}
.y58{bottom:389.550000px;}
.yb3{bottom:393.510000px;}
.y23{bottom:395.490000px;}
.y86{bottom:398.550000px;}
.y57{bottom:409.575000px;}
.yb2{bottom:413.355000px;}
.y22{bottom:415.335000px;}
.y85{bottom:418.395000px;}
.yb1{bottom:433.155000px;}
.y21{bottom:435.135000px;}
.y84{bottom:435.855000px;}
.y56{bottom:438.375000px;}
.yb0{bottom:452.955000px;}
.y20{bottom:454.935000px;}
.y55{bottom:458.175000px;}
.y83{bottom:460.155000px;}
.yaf{bottom:472.935000px;}
.y1f{bottom:474.915000px;}
.y54{bottom:477.975000px;}
.y82{bottom:484.455000px;}
.yae{bottom:492.735000px;}
.y1e{bottom:494.715000px;}
.y53{bottom:497.775000px;}
.y81{bottom:508.935000px;}
.yad{bottom:512.535000px;}
.y1d{bottom:514.515000px;}
.y52{bottom:526.755000px;}
.yac{bottom:532.335000px;}
.y1c{bottom:534.315000px;}
.y80{bottom:537.915000px;}
.y51{bottom:546.555000px;}
.yab{bottom:552.135000px;}
.y1b{bottom:554.115000px;}
.y7f{bottom:557.715000px;}
.y50{bottom:566.355000px;}
.yaa{bottom:572.115000px;}
.y1a{bottom:574.095000px;}
.y7e{bottom:575.175000px;}
.y4f{bottom:586.155000px;}
.ya9{bottom:591.915000px;}
.y19{bottom:596.055000px;}
.y7d{bottom:599.475000px;}
.y4e{bottom:605.955000px;}
.ya8{bottom:611.715000px;}
.y7c{bottom:623.775000px;}
.y18{bottom:625.035000px;}
.y4d{bottom:625.935000px;}
.ya7{bottom:631.515000px;}
.y17{bottom:644.835000px;}
.y4c{bottom:646.815000px;}
.y7a{bottom:648.075000px;}
.ya6{bottom:651.345000px;}
.y16{bottom:664.665000px;}
.y4b{bottom:667.725000px;}
.ya5{bottom:671.325000px;}
.y79{bottom:672.585000px;}
.y15{bottom:684.465000px;}
.y4a{bottom:688.605000px;}
.ya4{bottom:691.125000px;}
.y78{bottom:701.565000px;}
.y14{bottom:704.265000px;}
.y49{bottom:709.485000px;}
.ya3{bottom:710.925000px;}
.y77{bottom:721.365000px;}
.y13{bottom:724.245000px;}
.y48{bottom:730.365000px;}
.ya2{bottom:730.725000px;}
.y76{bottom:738.825000px;}
.y12{bottom:744.045000px;}
.ya1{bottom:750.525000px;}
.y47{bottom:751.425000px;}
.y75{bottom:763.125000px;}
.y11{bottom:763.845000px;}
.y46{bottom:772.305000px;}
.ya0{bottom:779.505000px;}
.y10{bottom:783.645000px;}
.y74{bottom:787.425000px;}
.y45{bottom:792.105000px;}
.y9f{bottom:799.305000px;}
.yf{bottom:805.785000px;}
.y73{bottom:811.725000px;}
.y9e{bottom:819.105000px;}
.y44{bottom:820.905000px;}
.ye{bottom:825.585000px;}
.y71{bottom:836.025000px;}
.y9d{bottom:838.905000px;}
.y43{bottom:840.705000px;}
.yd{bottom:845.385000px;}
.y9c{bottom:858.705000px;}
.y6f{bottom:860.505000px;}
.y42{bottom:860.685000px;}
.yc{bottom:865.185000px;}
.y41{bottom:880.485000px;}
.yb{bottom:885.705000px;}
.y9b{bottom:887.685000px;}
.y6e{bottom:889.485000px;}
.y9a{bottom:907.530000px;}
.y40{bottom:909.330000px;}
.ya{bottom:911.670000px;}
.y99{bottom:927.330000px;}
.y3f{bottom:929.130000px;}
.y6d{bottom:938.130000px;}
.y9{bottom:946.230000px;}
.y98{bottom:947.130000px;}
.y3e{bottom:948.930000px;}
.y6c{bottom:957.930000px;}
.y97{bottom:966.930000px;}
.y3d{bottom:968.910000px;}
.y6b{bottom:977.910000px;}
.y8{bottom:978.090000px;}
.y96{bottom:986.910000px;}
.y3c{bottom:997.710000px;}
.y6a{bottom:1006.710000px;}
.y7{bottom:1009.770000px;}
.y3b{bottom:1017.510000px;}
.y69{bottom:1026.510000px;}
.y3a{bottom:1037.310000px;}
.y68{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.y39{bottom:1057.110000px;}
.y67{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.hf{height:2.010938px;}
.ha{height:19.800000px;}
.hb{height:19.980000px;}
.hc{height:20.016000px;}
.h6{height:41.726953px;}
.h7{height:42.164648px;}
.h9{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.hd{height:49.255313px;}
.h2{height:67.565039px;}
.h8{height:67.824844px;}
.h5{height:76.201172px;}
.he{height:84.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:36.000000px;}
.w4{width:38.880000px;}
.w9{width:46.440000px;}
.we{width:49.680000px;}
.wb{width:58.860000px;}
.w7{width:61.020000px;}
.w5{width:67.680000px;}
.w8{width:72.216000px;}
.w6{width:73.080000px;}
.wc{width:73.260000px;}
.wd{width:101.196000px;}
.w3{width:128.556000px;}
.wf{width:210.810000px;}
.w10{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:1.080000px;}
.x13{left:7.785000px;}
.x1{left:54.179987px;}
.x2{left:80.999987px;}
.x10{left:108.035987px;}
.x11{left:191.370000px;}
.x12{left:264.810000px;}
.x7{left:267.195000px;}
.xd{left:301.575000px;}
.x3{left:326.775000px;}
.x8{left:342.435000px;}
.xe{left:376.995000px;}
.x9{left:405.615000px;}
.x5{left:457.485000px;}
.xa{left:480.165000px;}
.x6{left:498.705000px;}
.xb{left:528.765000px;}
.xf{left:532.545000px;}
.xc{left:567.105000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.456533pt;}
.ls10{letter-spacing:10.192640pt;}
.lsf{letter-spacing:37.072640pt;}
.lsa{letter-spacing:40.912640pt;}
.ls8{letter-spacing:56.912640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._6{margin-left:-1281.645760pt;}
._5{margin-left:-877.189120pt;}
._7{margin-left:-511.191040pt;}
._4{margin-left:-7.301120pt;}
._15{margin-left:-5.524480pt;}
._9{margin-left:-4.523733pt;}
._a{margin-left:-3.473920pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.878507pt;}
._d{width:3.787307pt;}
._f{width:4.960640pt;}
._10{width:6.303787pt;}
._e{width:7.197653pt;}
._12{width:8.233600pt;}
._11{width:9.242880pt;}
._14{width:10.570880pt;}
._13{width:11.473920pt;}
._17{width:14.608000pt;}
._16{width:15.564160pt;}
._c{width:19.301760pt;}
._18{width:22.512000pt;}
.fs4{font-size:2.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:5.120000pt;}
.y72{bottom:5.280000pt;}
.y7b{bottom:5.306667pt;}
.ybe{bottom:9.440000pt;}
.ybd{bottom:27.226667pt;}
.yba{bottom:30.906667pt;}
.ybc{bottom:44.826667pt;}
.y6{bottom:53.600000pt;}
.ybb{bottom:62.426667pt;}
.y66{bottom:80.640000pt;}
.y32{bottom:87.040000pt;}
.y95{bottom:89.760000pt;}
.y65{bottom:98.240000pt;}
.y31{bottom:104.640000pt;}
.y94{bottom:107.360000pt;}
.yb9{bottom:108.640000pt;}
.y64{bottom:115.840000pt;}
.y30{bottom:122.240000pt;}
.y93{bottom:125.120000pt;}
.y63{bottom:133.440000pt;}
.y2f{bottom:139.866667pt;}
.y92{bottom:142.746667pt;}
.y62{bottom:151.066667pt;}
.y2e{bottom:157.626667pt;}
.y91{bottom:160.346667pt;}
.y2d{bottom:175.226667pt;}
.y61{bottom:176.826667pt;}
.y90{bottom:177.946667pt;}
.y2c{bottom:192.826667pt;}
.y60{bottom:194.426667pt;}
.y8f{bottom:195.546667pt;}
.y2b{bottom:210.426667pt;}
.y5f{bottom:212.026667pt;}
.y8e{bottom:213.306667pt;}
.y2a{bottom:228.026667pt;}
.y5e{bottom:229.626667pt;}
.y8d{bottom:230.906667pt;}
.y29{bottom:245.786667pt;}
.y5d{bottom:247.226667pt;}
.y8c{bottom:248.506667pt;}
.yb8{bottom:261.626667pt;}
.y28{bottom:263.386667pt;}
.y8b{bottom:266.106667pt;}
.y5c{bottom:272.986667pt;}
.yb7{bottom:279.226667pt;}
.y27{bottom:280.986667pt;}
.y8a{bottom:283.706667pt;}
.y5b{bottom:290.586667pt;}
.yb6{bottom:296.826667pt;}
.y26{bottom:298.586667pt;}
.y89{bottom:301.466667pt;}
.y5a{bottom:309.146667pt;}
.yb5{bottom:314.426667pt;}
.y25{bottom:316.186667pt;}
.y88{bottom:319.066667pt;}
.y59{bottom:327.706667pt;}
.yb4{bottom:332.186667pt;}
.y24{bottom:333.946667pt;}
.y87{bottom:336.666667pt;}
.y58{bottom:346.266667pt;}
.yb3{bottom:349.786667pt;}
.y23{bottom:351.546667pt;}
.y86{bottom:354.266667pt;}
.y57{bottom:364.066667pt;}
.yb2{bottom:367.426667pt;}
.y22{bottom:369.186667pt;}
.y85{bottom:371.906667pt;}
.yb1{bottom:385.026667pt;}
.y21{bottom:386.786667pt;}
.y84{bottom:387.426667pt;}
.y56{bottom:389.666667pt;}
.yb0{bottom:402.626667pt;}
.y20{bottom:404.386667pt;}
.y55{bottom:407.266667pt;}
.y83{bottom:409.026667pt;}
.yaf{bottom:420.386667pt;}
.y1f{bottom:422.146667pt;}
.y54{bottom:424.866667pt;}
.y82{bottom:430.626667pt;}
.yae{bottom:437.986667pt;}
.y1e{bottom:439.746667pt;}
.y53{bottom:442.466667pt;}
.y81{bottom:452.386667pt;}
.yad{bottom:455.586667pt;}
.y1d{bottom:457.346667pt;}
.y52{bottom:468.226667pt;}
.yac{bottom:473.186667pt;}
.y1c{bottom:474.946667pt;}
.y80{bottom:478.146667pt;}
.y51{bottom:485.826667pt;}
.yab{bottom:490.786667pt;}
.y1b{bottom:492.546667pt;}
.y7f{bottom:495.746667pt;}
.y50{bottom:503.426667pt;}
.yaa{bottom:508.546667pt;}
.y1a{bottom:510.306667pt;}
.y7e{bottom:511.266667pt;}
.y4f{bottom:521.026667pt;}
.ya9{bottom:526.146667pt;}
.y19{bottom:529.826667pt;}
.y7d{bottom:532.866667pt;}
.y4e{bottom:538.626667pt;}
.ya8{bottom:543.746667pt;}
.y7c{bottom:554.466667pt;}
.y18{bottom:555.586667pt;}
.y4d{bottom:556.386667pt;}
.ya7{bottom:561.346667pt;}
.y17{bottom:573.186667pt;}
.y4c{bottom:574.946667pt;}
.y7a{bottom:576.066667pt;}
.ya6{bottom:578.973333pt;}
.y16{bottom:590.813333pt;}
.y4b{bottom:593.533333pt;}
.ya5{bottom:596.733333pt;}
.y79{bottom:597.853333pt;}
.y15{bottom:608.413333pt;}
.y4a{bottom:612.093333pt;}
.ya4{bottom:614.333333pt;}
.y78{bottom:623.613333pt;}
.y14{bottom:626.013333pt;}
.y49{bottom:630.653333pt;}
.ya3{bottom:631.933333pt;}
.y77{bottom:641.213333pt;}
.y13{bottom:643.773333pt;}
.y48{bottom:649.213333pt;}
.ya2{bottom:649.533333pt;}
.y76{bottom:656.733333pt;}
.y12{bottom:661.373333pt;}
.ya1{bottom:667.133333pt;}
.y47{bottom:667.933333pt;}
.y75{bottom:678.333333pt;}
.y11{bottom:678.973333pt;}
.y46{bottom:686.493333pt;}
.ya0{bottom:692.893333pt;}
.y10{bottom:696.573333pt;}
.y74{bottom:699.933333pt;}
.y45{bottom:704.093333pt;}
.y9f{bottom:710.493333pt;}
.yf{bottom:716.253333pt;}
.y73{bottom:721.533333pt;}
.y9e{bottom:728.093333pt;}
.y44{bottom:729.693333pt;}
.ye{bottom:733.853333pt;}
.y71{bottom:743.133333pt;}
.y9d{bottom:745.693333pt;}
.y43{bottom:747.293333pt;}
.yd{bottom:751.453333pt;}
.y9c{bottom:763.293333pt;}
.y6f{bottom:764.893333pt;}
.y42{bottom:765.053333pt;}
.yc{bottom:769.053333pt;}
.y41{bottom:782.653333pt;}
.yb{bottom:787.293333pt;}
.y9b{bottom:789.053333pt;}
.y6e{bottom:790.653333pt;}
.y9a{bottom:806.693333pt;}
.y40{bottom:808.293333pt;}
.ya{bottom:810.373333pt;}
.y99{bottom:824.293333pt;}
.y3f{bottom:825.893333pt;}
.y6d{bottom:833.893333pt;}
.y9{bottom:841.093333pt;}
.y98{bottom:841.893333pt;}
.y3e{bottom:843.493333pt;}
.y6c{bottom:851.493333pt;}
.y97{bottom:859.493333pt;}
.y3d{bottom:861.253333pt;}
.y6b{bottom:869.253333pt;}
.y8{bottom:869.413333pt;}
.y96{bottom:877.253333pt;}
.y3c{bottom:886.853333pt;}
.y6a{bottom:894.853333pt;}
.y7{bottom:897.573333pt;}
.y3b{bottom:904.453333pt;}
.y69{bottom:912.453333pt;}
.y3a{bottom:922.053333pt;}
.y68{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.y39{bottom:939.653333pt;}
.y67{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.hf{height:1.787500pt;}
.ha{height:17.600000pt;}
.hb{height:17.760000pt;}
.hc{height:17.792000pt;}
.h6{height:37.090625pt;}
.h7{height:37.479688pt;}
.h9{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.hd{height:43.782500pt;}
.h2{height:60.057813pt;}
.h8{height:60.288750pt;}
.h5{height:67.734375pt;}
.he{height:74.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:32.000000pt;}
.w4{width:34.560000pt;}
.w9{width:41.280000pt;}
.we{width:44.160000pt;}
.wb{width:52.320000pt;}
.w7{width:54.240000pt;}
.w5{width:60.160000pt;}
.w8{width:64.192000pt;}
.w6{width:64.960000pt;}
.wc{width:65.120000pt;}
.wd{width:89.952000pt;}
.w3{width:114.272000pt;}
.wf{width:187.386667pt;}
.w10{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:0.960000pt;}
.x13{left:6.920000pt;}
.x1{left:48.159988pt;}
.x2{left:71.999988pt;}
.x10{left:96.031988pt;}
.x11{left:170.106667pt;}
.x12{left:235.386667pt;}
.x7{left:237.506667pt;}
.xd{left:268.066667pt;}
.x3{left:290.466667pt;}
.x8{left:304.386667pt;}
.xe{left:335.106667pt;}
.x9{left:360.546667pt;}
.x5{left:406.653333pt;}
.xa{left:426.813333pt;}
.x6{left:443.293333pt;}
.xb{left:470.013333pt;}
.xf{left:473.373333pt;}
.xc{left:504.093333pt;}
}




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