
    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_08d00d209d6f639ad9f82a85.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_4517b19f137250e981eb19f4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8fddb0fb3245f71e0bda2111.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_8d1ae5c128f57eed84f14fd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_5dcc4e4e6d3fd3368c979752.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_f3b83561a2af550423ac1c1f.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cacf53f100fbdee35ae25456.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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_dac02f40341c3752888de6c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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;}
.ls5{letter-spacing:-0.180000px;}
.ls28{letter-spacing:-0.025920px;}
.ls6{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.001920px;}
.ls3{letter-spacing:0.008640px;}
.ls27{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.034560px;}
.ls9{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.745920px;}
.ls2a{letter-spacing:1.440000px;}
.ls15{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.880000px;}
.ls17{letter-spacing:3.600000px;}
.ls19{letter-spacing:5.040000px;}
.lsb{letter-spacing:5.760000px;}
.ls13{letter-spacing:7.200000px;}
.ls24{letter-spacing:7.920000px;}
.ls29{letter-spacing:8.622720px;}
.ls8{letter-spacing:10.080000px;}
.ls11{letter-spacing:13.680000px;}
.ls12{letter-spacing:14.400000px;}
.ls23{letter-spacing:15.120000px;}
.lsa{letter-spacing:15.840000px;}
.ls1f{letter-spacing:18.000000px;}
.lsc{letter-spacing:19.440000px;}
.ls20{letter-spacing:20.160000px;}
.ls1b{letter-spacing:21.600000px;}
.ls1a{letter-spacing:22.320000px;}
.ls21{letter-spacing:23.760000px;}
.ls18{letter-spacing:26.640000px;}
.ls25{letter-spacing:28.080000px;}
.ls16{letter-spacing:28.800000px;}
.ls7{letter-spacing:29.520000px;}
.ls1d{letter-spacing:31.680000px;}
.ls14{letter-spacing:35.280000px;}
.ls1e{letter-spacing:36.000000px;}
.ls26{letter-spacing:47.502720px;}
.ls22{letter-spacing:51.840000px;}
.lsd{letter-spacing:57.600000px;}
.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:-21.617280px;}
.ws0{word-spacing:-21.060000px;}
.ws6{word-spacing:-19.465920px;}
.ws4{word-spacing:-19.448640px;}
.ws3{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.414080px;}
.ws2{word-spacing:-0.077760px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.010880px;}
._0{width:1.244160px;}
._2{width:2.633280px;}
._33{width:3.732480px;}
._2d{width:4.743360px;}
._27{width:6.531840px;}
._30{width:7.542720px;}
._1e{width:8.553600px;}
._23{width:10.186560px;}
._32{width:11.225280px;}
._24{width:12.363840px;}
._10{width:13.608000px;}
._11{width:15.030720px;}
._12{width:16.562880px;}
._20{width:17.884800px;}
._1c{width:20.450880px;}
._1b{width:21.772800px;}
._2b{width:23.033760px;}
._25{width:24.338880px;}
._26{width:25.583040px;}
._37{width:26.671680px;}
._28{width:27.760320px;}
._f{width:29.471040px;}
._39{width:30.494880px;}
._3e{width:31.959360px;}
._c{width:34.000320px;}
._35{width:35.458560px;}
._22{width:36.702720px;}
._2c{width:38.167680px;}
._34{width:39.268800px;}
._6{width:40.279680px;}
._36{width:41.446080px;}
._2f{width:42.612480px;}
._44{width:43.623360px;}
._1d{width:44.634240px;}
._16{width:45.645120px;}
._9{width:46.656000px;}
._40{width:48.133440px;}
._b{width:49.688640px;}
._49{width:50.699520px;}
._3f{width:51.710400px;}
._21{width:52.954560px;}
._29{width:54.120960px;}
._2a{width:55.312800px;}
._2e{width:56.841600px;}
._13{width:58.164480px;}
._8{width:59.253120px;}
._31{width:60.730560px;}
._1f{width:62.052480px;}
._38{width:63.218880px;}
._3b{width:65.085120px;}
._3a{width:66.251520px;}
._48{width:67.573440px;}
._45{width:78.537600px;}
._3c{width:79.622400px;}
._d{width:80.637120px;}
._43{width:83.592000px;}
._42{width:85.769280px;}
._41{width:86.857920px;}
._a{width:89.812800px;}
._7{width:104.198400px;}
._3d{width:105.287040px;}
._4a{width:108.164160px;}
._47{width:110.652480px;}
._46{width:111.741120px;}
._18{width:124.260480px;}
._3{width:132.425280px;}
._14{width:138.490560px;}
._4{width:139.579200px;}
._1a{width:157.464000px;}
._17{width:159.641280px;}
._19{width:180.480960px;}
._15{width:196.888320px;}
._5{width:245.177280px;}
._e{width:257.541120px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y32{bottom:7.560000px;}
.y16{bottom:7.740000px;}
.y18{bottom:13.860000px;}
.y36{bottom:27.000000px;}
.y31{bottom:33.300000px;}
.y15{bottom:33.480000px;}
.y35{bottom:52.740000px;}
.yd{bottom:57.600000px;}
.y30{bottom:59.220000px;}
.y45{bottom:76.320000px;}
.y34{bottom:78.480000px;}
.yc{bottom:81.756000px;}
.y2f{bottom:85.005000px;}
.yb{bottom:105.876000px;}
.y2e{bottom:110.745000px;}
.ya{bottom:129.996000px;}
.y2d{bottom:136.485000px;}
.y9{bottom:153.750000px;}
.y43{bottom:160.965000px;}
.y2c{bottom:162.405000px;}
.y8{bottom:176.250000px;}
.y42{bottom:186.705000px;}
.y2b{bottom:188.145000px;}
.y7{bottom:198.750000px;}
.y41{bottom:212.445000px;}
.y2a{bottom:213.885000px;}
.y6{bottom:221.070000px;}
.y40{bottom:238.365000px;}
.y29{bottom:239.625000px;}
.y19{bottom:250.770000px;}
.y7e{bottom:252.390000px;}
.y62{bottom:260.130000px;}
.y3f{bottom:264.105000px;}
.y28{bottom:265.545000px;}
.y7d{bottom:278.130000px;}
.y61{bottom:286.050000px;}
.y3e{bottom:289.845000px;}
.y27{bottom:291.285000px;}
.y7c{bottom:303.870000px;}
.y60{bottom:311.790000px;}
.y3d{bottom:315.585000px;}
.y26{bottom:317.025000px;}
.y7b{bottom:329.835000px;}
.y5f{bottom:337.575000px;}
.y3c{bottom:341.505000px;}
.y25{bottom:342.765000px;}
.y7a{bottom:355.575000px;}
.y5e{bottom:363.315000px;}
.y3b{bottom:367.275000px;}
.y24{bottom:368.715000px;}
.y79{bottom:381.315000px;}
.y5d{bottom:389.235000px;}
.y3a{bottom:393.015000px;}
.y23{bottom:394.455000px;}
.y78{bottom:407.055000px;}
.y5c{bottom:414.975000px;}
.y39{bottom:418.755000px;}
.y22{bottom:420.195000px;}
.y77{bottom:432.975000px;}
.y5b{bottom:440.715000px;}
.y38{bottom:444.675000px;}
.y21{bottom:445.935000px;}
.y76{bottom:458.715000px;}
.y5a{bottom:466.455000px;}
.y20{bottom:471.855000px;}
.y75{bottom:484.455000px;}
.y59{bottom:492.375000px;}
.y1f{bottom:497.595000px;}
.y74{bottom:510.195000px;}
.y58{bottom:518.115000px;}
.y1e{bottom:523.335000px;}
.y73{bottom:536.115000px;}
.y57{bottom:543.855000px;}
.y1d{bottom:549.075000px;}
.y72{bottom:561.855000px;}
.y56{bottom:569.595000px;}
.y1c{bottom:574.995000px;}
.y71{bottom:587.595000px;}
.y55{bottom:595.545000px;}
.y1b{bottom:600.735000px;}
.y70{bottom:613.365000px;}
.y54{bottom:621.285000px;}
.y1a{bottom:626.520000px;}
.y6f{bottom:639.285000px;}
.y53{bottom:647.025000px;}
.y6e{bottom:665.025000px;}
.y52{bottom:672.765000px;}
.y6d{bottom:690.765000px;}
.y51{bottom:698.685000px;}
.y37{bottom:714.345000px;}
.y6c{bottom:716.685000px;}
.y50{bottom:724.425000px;}
.y6b{bottom:742.425000px;}
.y4f{bottom:750.165000px;}
.y33{bottom:765.825000px;}
.y6a{bottom:768.165000px;}
.y4e{bottom:775.905000px;}
.y69{bottom:793.905000px;}
.y4d{bottom:801.825000px;}
.y68{bottom:819.825000px;}
.y4c{bottom:827.565000px;}
.y67{bottom:845.565000px;}
.y4b{bottom:853.305000px;}
.y17{bottom:863.430000px;}
.y66{bottom:871.350000px;}
.y4a{bottom:879.270000px;}
.y14{bottom:896.190000px;}
.y65{bottom:897.090000px;}
.y49{bottom:905.010000px;}
.y64{bottom:923.010000px;}
.y48{bottom:930.750000px;}
.y63{bottom:948.750000px;}
.y13{bottom:951.990000px;}
.y47{bottom:956.490000px;}
.y12{bottom:974.490000px;}
.y46{bottom:982.410000px;}
.y11{bottom:1000.230000px;}
.y44{bottom:1000.590000px;}
.y10{bottom:1026.150000px;}
.yf{bottom:1051.890000px;}
.ye{bottom:1077.630000px;}
.y5{bottom:1100.310000px;}
.y4{bottom:1124.070000px;}
.y3{bottom:1146.960000px;}
.y2{bottom:1170.720000px;}
.y1{bottom:1193.040000px;}
.ha{height:32.040000px;}
.hd{height:51.480000px;}
.h9{height:51.660000px;}
.h6{height:56.611406px;}
.h2{height:62.261719px;}
.h8{height:64.091250px;}
.h3{height:67.242656px;}
.h7{height:68.533594px;}
.h4{height:72.846211px;}
.h5{height:74.244727px;}
.hf{height:94.500000px;}
.hc{height:96.696000px;}
.he{height:462.855000px;}
.hb{height:644.685000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:237.450000px;}
.w4{width:404.895000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x14{left:13.680000px;}
.x1b{left:15.300000px;}
.x17{left:18.180000px;}
.x15{left:26.274000px;}
.xf{left:29.340000px;}
.xe{left:33.294000px;}
.x16{left:40.674000px;}
.xa{left:43.734000px;}
.x18{left:46.794000px;}
.x13{left:53.994000px;}
.x19{left:58.314000px;}
.x1a{left:59.934000px;}
.x11{left:67.854000px;}
.xb{left:78.654000px;}
.x12{left:79.914000px;}
.x1{left:84.959987px;}
.x2{left:95.255987px;}
.x1c{left:106.235987px;}
.x9{left:125.316000px;}
.x4{left:140.615987px;}
.xd{left:144.210000px;}
.x8{left:149.615987px;}
.x5{left:215.129987px;}
.x7{left:353.594987px;}
.xc{left:362.775000px;}
.x6{left:457.094987px;}
.x3{left:768.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls28{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.001707pt;}
.ls3{letter-spacing:0.007680pt;}
.ls27{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.030720pt;}
.ls9{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.663040pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls19{letter-spacing:4.480000pt;}
.lsb{letter-spacing:5.120000pt;}
.ls13{letter-spacing:6.400000pt;}
.ls24{letter-spacing:7.040000pt;}
.ls29{letter-spacing:7.664640pt;}
.ls8{letter-spacing:8.960000pt;}
.ls11{letter-spacing:12.160000pt;}
.ls12{letter-spacing:12.800000pt;}
.ls23{letter-spacing:13.440000pt;}
.lsa{letter-spacing:14.080000pt;}
.ls1f{letter-spacing:16.000000pt;}
.lsc{letter-spacing:17.280000pt;}
.ls20{letter-spacing:17.920000pt;}
.ls1b{letter-spacing:19.200000pt;}
.ls1a{letter-spacing:19.840000pt;}
.ls21{letter-spacing:21.120000pt;}
.ls18{letter-spacing:23.680000pt;}
.ls25{letter-spacing:24.960000pt;}
.ls16{letter-spacing:25.600000pt;}
.ls7{letter-spacing:26.240000pt;}
.ls1d{letter-spacing:28.160000pt;}
.ls14{letter-spacing:31.360000pt;}
.ls1e{letter-spacing:32.000000pt;}
.ls26{letter-spacing:42.224640pt;}
.ls22{letter-spacing:46.080000pt;}
.lsd{letter-spacing:51.200000pt;}
.ws1{word-spacing:-19.215360pt;}
.ws0{word-spacing:-18.720000pt;}
.ws6{word-spacing:-17.303040pt;}
.ws4{word-spacing:-17.287680pt;}
.ws3{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.256960pt;}
.ws2{word-spacing:-0.069120pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.105920pt;}
._2{width:2.340693pt;}
._33{width:3.317760pt;}
._2d{width:4.216320pt;}
._27{width:5.806080pt;}
._30{width:6.704640pt;}
._1e{width:7.603200pt;}
._23{width:9.054720pt;}
._32{width:9.978027pt;}
._24{width:10.990080pt;}
._10{width:12.096000pt;}
._11{width:13.360640pt;}
._12{width:14.722560pt;}
._20{width:15.897600pt;}
._1c{width:18.178560pt;}
._1b{width:19.353600pt;}
._2b{width:20.474453pt;}
._25{width:21.634560pt;}
._26{width:22.740480pt;}
._37{width:23.708160pt;}
._28{width:24.675840pt;}
._f{width:26.196480pt;}
._39{width:27.106560pt;}
._3e{width:28.408320pt;}
._c{width:30.222507pt;}
._35{width:31.518720pt;}
._22{width:32.624640pt;}
._2c{width:33.926827pt;}
._34{width:34.905600pt;}
._6{width:35.804160pt;}
._36{width:36.840960pt;}
._2f{width:37.877760pt;}
._44{width:38.776320pt;}
._1d{width:39.674880pt;}
._16{width:40.573440pt;}
._9{width:41.472000pt;}
._40{width:42.785280pt;}
._b{width:44.167680pt;}
._49{width:45.066240pt;}
._3f{width:45.964800pt;}
._21{width:47.070720pt;}
._29{width:48.107520pt;}
._2a{width:49.166933pt;}
._2e{width:50.525867pt;}
._13{width:51.701760pt;}
._8{width:52.669440pt;}
._31{width:53.982720pt;}
._1f{width:55.157760pt;}
._38{width:56.194560pt;}
._3b{width:57.853440pt;}
._3a{width:58.890240pt;}
._48{width:60.065280pt;}
._45{width:69.811200pt;}
._3c{width:70.775467pt;}
._d{width:71.677440pt;}
._43{width:74.304000pt;}
._42{width:76.239360pt;}
._41{width:77.207040pt;}
._a{width:79.833600pt;}
._7{width:92.620800pt;}
._3d{width:93.588480pt;}
._4a{width:96.145920pt;}
._47{width:98.357760pt;}
._46{width:99.325440pt;}
._18{width:110.453760pt;}
._3{width:117.711360pt;}
._14{width:123.102720pt;}
._4{width:124.070400pt;}
._1a{width:139.968000pt;}
._17{width:141.903360pt;}
._19{width:160.427520pt;}
._15{width:175.011840pt;}
._5{width:217.935360pt;}
._e{width:228.925440pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:6.720000pt;}
.y16{bottom:6.880000pt;}
.y18{bottom:12.320000pt;}
.y36{bottom:24.000000pt;}
.y31{bottom:29.600000pt;}
.y15{bottom:29.760000pt;}
.y35{bottom:46.880000pt;}
.yd{bottom:51.200000pt;}
.y30{bottom:52.640000pt;}
.y45{bottom:67.840000pt;}
.y34{bottom:69.760000pt;}
.yc{bottom:72.672000pt;}
.y2f{bottom:75.560000pt;}
.yb{bottom:94.112000pt;}
.y2e{bottom:98.440000pt;}
.ya{bottom:115.552000pt;}
.y2d{bottom:121.320000pt;}
.y9{bottom:136.666667pt;}
.y43{bottom:143.080000pt;}
.y2c{bottom:144.360000pt;}
.y8{bottom:156.666667pt;}
.y42{bottom:165.960000pt;}
.y2b{bottom:167.240000pt;}
.y7{bottom:176.666667pt;}
.y41{bottom:188.840000pt;}
.y2a{bottom:190.120000pt;}
.y6{bottom:196.506667pt;}
.y40{bottom:211.880000pt;}
.y29{bottom:213.000000pt;}
.y19{bottom:222.906667pt;}
.y7e{bottom:224.346667pt;}
.y62{bottom:231.226667pt;}
.y3f{bottom:234.760000pt;}
.y28{bottom:236.040000pt;}
.y7d{bottom:247.226667pt;}
.y61{bottom:254.266667pt;}
.y3e{bottom:257.640000pt;}
.y27{bottom:258.920000pt;}
.y7c{bottom:270.106667pt;}
.y60{bottom:277.146667pt;}
.y3d{bottom:280.520000pt;}
.y26{bottom:281.800000pt;}
.y7b{bottom:293.186667pt;}
.y5f{bottom:300.066667pt;}
.y3c{bottom:303.560000pt;}
.y25{bottom:304.680000pt;}
.y7a{bottom:316.066667pt;}
.y5e{bottom:322.946667pt;}
.y3b{bottom:326.466667pt;}
.y24{bottom:327.746667pt;}
.y79{bottom:338.946667pt;}
.y5d{bottom:345.986667pt;}
.y3a{bottom:349.346667pt;}
.y23{bottom:350.626667pt;}
.y78{bottom:361.826667pt;}
.y5c{bottom:368.866667pt;}
.y39{bottom:372.226667pt;}
.y22{bottom:373.506667pt;}
.y77{bottom:384.866667pt;}
.y5b{bottom:391.746667pt;}
.y38{bottom:395.266667pt;}
.y21{bottom:396.386667pt;}
.y76{bottom:407.746667pt;}
.y5a{bottom:414.626667pt;}
.y20{bottom:419.426667pt;}
.y75{bottom:430.626667pt;}
.y59{bottom:437.666667pt;}
.y1f{bottom:442.306667pt;}
.y74{bottom:453.506667pt;}
.y58{bottom:460.546667pt;}
.y1e{bottom:465.186667pt;}
.y73{bottom:476.546667pt;}
.y57{bottom:483.426667pt;}
.y1d{bottom:488.066667pt;}
.y72{bottom:499.426667pt;}
.y56{bottom:506.306667pt;}
.y1c{bottom:511.106667pt;}
.y71{bottom:522.306667pt;}
.y55{bottom:529.373333pt;}
.y1b{bottom:533.986667pt;}
.y70{bottom:545.213333pt;}
.y54{bottom:552.253333pt;}
.y1a{bottom:556.906667pt;}
.y6f{bottom:568.253333pt;}
.y53{bottom:575.133333pt;}
.y6e{bottom:591.133333pt;}
.y52{bottom:598.013333pt;}
.y6d{bottom:614.013333pt;}
.y51{bottom:621.053333pt;}
.y37{bottom:634.973333pt;}
.y6c{bottom:637.053333pt;}
.y50{bottom:643.933333pt;}
.y6b{bottom:659.933333pt;}
.y4f{bottom:666.813333pt;}
.y33{bottom:680.733333pt;}
.y6a{bottom:682.813333pt;}
.y4e{bottom:689.693333pt;}
.y69{bottom:705.693333pt;}
.y4d{bottom:712.733333pt;}
.y68{bottom:728.733333pt;}
.y4c{bottom:735.613333pt;}
.y67{bottom:751.613333pt;}
.y4b{bottom:758.493333pt;}
.y17{bottom:767.493333pt;}
.y66{bottom:774.533333pt;}
.y4a{bottom:781.573333pt;}
.y14{bottom:796.613333pt;}
.y65{bottom:797.413333pt;}
.y49{bottom:804.453333pt;}
.y64{bottom:820.453333pt;}
.y48{bottom:827.333333pt;}
.y63{bottom:843.333333pt;}
.y13{bottom:846.213333pt;}
.y47{bottom:850.213333pt;}
.y12{bottom:866.213333pt;}
.y46{bottom:873.253333pt;}
.y11{bottom:889.093333pt;}
.y44{bottom:889.413333pt;}
.y10{bottom:912.133333pt;}
.yf{bottom:935.013333pt;}
.ye{bottom:957.893333pt;}
.y5{bottom:978.053333pt;}
.y4{bottom:999.173333pt;}
.y3{bottom:1019.520000pt;}
.y2{bottom:1040.640000pt;}
.y1{bottom:1060.480000pt;}
.ha{height:28.480000pt;}
.hd{height:45.760000pt;}
.h9{height:45.920000pt;}
.h6{height:50.321250pt;}
.h2{height:55.343750pt;}
.h8{height:56.970000pt;}
.h3{height:59.771250pt;}
.h7{height:60.918750pt;}
.h4{height:64.752187pt;}
.h5{height:65.995312pt;}
.hf{height:84.000000pt;}
.hc{height:85.952000pt;}
.he{height:411.426667pt;}
.hb{height:573.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:211.066667pt;}
.w4{width:359.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x14{left:12.160000pt;}
.x1b{left:13.600000pt;}
.x17{left:16.160000pt;}
.x15{left:23.354667pt;}
.xf{left:26.080000pt;}
.xe{left:29.594667pt;}
.x16{left:36.154667pt;}
.xa{left:38.874667pt;}
.x18{left:41.594667pt;}
.x13{left:47.994667pt;}
.x19{left:51.834667pt;}
.x1a{left:53.274667pt;}
.x11{left:60.314667pt;}
.xb{left:69.914667pt;}
.x12{left:71.034667pt;}
.x1{left:75.519988pt;}
.x2{left:84.671988pt;}
.x1c{left:94.431988pt;}
.x9{left:111.392000pt;}
.x4{left:124.991988pt;}
.xd{left:128.186667pt;}
.x8{left:132.991988pt;}
.x5{left:191.226655pt;}
.x7{left:314.306655pt;}
.xc{left:322.466667pt;}
.x6{left:406.306655pt;}
.x3{left:683.013322pt;}
}




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