
    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_4cc7808601421d3eeeae674d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_587674616a74857224c5eb38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_f8054ef6b80ad1827e3ab450.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bcb3df31561c0cbb3137fd3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ec790347202f832ae8346e10.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6769bb0fb4077c5d225606cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850098;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;}
.lsa{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.900000px;}
.ls1{letter-spacing:2.880000px;}
.ls0{letter-spacing:12.960000px;}
.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:-72.000000px;}
.ws0{word-spacing:-40.608000px;}
.ws5{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.324800px;}
._1{width:1.394880px;}
._f{width:2.928000px;}
._d{width:4.608000px;}
._b{width:6.048000px;}
._c{width:7.200000px;}
._e{width:8.928000px;}
._12{width:9.936000px;}
._10{width:10.944000px;}
._8{width:12.052800px;}
._7{width:13.152000px;}
._2{width:15.171600px;}
._9{width:16.992000px;}
._a{width:19.584000px;}
._15{width:20.952000px;}
._17{width:22.200000px;}
._19{width:24.148800px;}
._11{width:25.200000px;}
._1a{width:26.856000px;}
._6{width:28.919520px;}
._5{width:30.355920px;}
._16{width:31.920240px;}
._14{width:33.955200px;}
._13{width:35.380800px;}
._18{width:36.883200px;}
._29{width:37.939200px;}
._28{width:38.968800px;}
._21{width:40.225920px;}
._24{width:44.496000px;}
._1f{width:48.816000px;}
._1c{width:50.040000px;}
._1d{width:51.366240px;}
._25{width:53.640000px;}
._26{width:54.657120px;}
._23{width:86.270400px;}
._22{width:87.364800px;}
._27{width:110.088000px;}
._1e{width:113.044800px;}
._2a{width:153.288000px;}
._2b{width:154.584000px;}
._3{width:213.161760px;}
._4{width:214.202400px;}
._20{width:261.432000px;}
._1b{width:304.488000px;}
._2c{width:592.416000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.420000px;}
.y4{bottom:76.896000px;}
.y3{bottom:96.156000px;}
.y2{bottom:115.236000px;}
.y1{bottom:134.496000px;}
.y45{bottom:158.070000px;}
.y28{bottom:161.850000px;}
.ya6{bottom:168.690000px;}
.y73{bottom:169.950000px;}
.y78{bottom:171.210000px;}
.y81{bottom:172.470000px;}
.y5a{bottom:182.190000px;}
.y27{bottom:182.550000px;}
.y77{bottom:187.050000px;}
.y44{bottom:189.030000px;}
.ya5{bottom:189.390000px;}
.yc8{bottom:191.730000px;}
.y80{bottom:203.430000px;}
.y6e{bottom:207.570000px;}
.y65{bottom:209.190000px;}
.ya4{bottom:210.090000px;}
.yc7{bottom:212.430000px;}
.y59{bottom:213.150000px;}
.y26{bottom:218.190000px;}
.y43{bottom:220.170000px;}
.ya3{bottom:230.790000px;}
.yc6{bottom:233.130000px;}
.y7f{bottom:234.570000px;}
.y6d{bottom:238.710000px;}
.y25{bottom:238.890000px;}
.y64{bottom:240.330000px;}
.y42{bottom:251.130000px;}
.ya2{bottom:251.490000px;}
.yc5{bottom:253.830000px;}
.y58{bottom:259.230000px;}
.y24{bottom:259.590000px;}
.y7e{bottom:265.530000px;}
.y6c{bottom:269.670000px;}
.y63{bottom:271.290000px;}
.ya1{bottom:272.190000px;}
.yc4{bottom:274.530000px;}
.y23{bottom:280.290000px;}
.y41{bottom:282.270000px;}
.y57{bottom:290.370000px;}
.ya0{bottom:292.890000px;}
.yc3{bottom:295.230000px;}
.y6b{bottom:300.810000px;}
.y22{bottom:300.990000px;}
.y7d{bottom:301.890000px;}
.y62{bottom:302.430000px;}
.y40{bottom:313.230000px;}
.y9f{bottom:313.590000px;}
.yc2{bottom:315.930000px;}
.y56{bottom:321.375000px;}
.y21{bottom:321.735000px;}
.y6a{bottom:331.815000px;}
.y61{bottom:333.435000px;}
.y9e{bottom:334.335000px;}
.yc1{bottom:336.675000px;}
.y20{bottom:342.435000px;}
.y3f{bottom:344.415000px;}
.y7c{bottom:350.895000px;}
.y55{bottom:352.515000px;}
.y9d{bottom:355.035000px;}
.yc0{bottom:357.375000px;}
.y69{bottom:362.955000px;}
.y1f{bottom:363.135000px;}
.y60{bottom:364.575000px;}
.y9c{bottom:375.735000px;}
.ybf{bottom:378.075000px;}
.y3e{bottom:380.595000px;}
.y7b{bottom:381.855000px;}
.y54{bottom:383.475000px;}
.y1e{bottom:383.835000px;}
.y68{bottom:393.915000px;}
.y5f{bottom:395.535000px;}
.y9b{bottom:396.435000px;}
.ybe{bottom:398.775000px;}
.y1d{bottom:404.535000px;}
.y7a{bottom:412.995000px;}
.y3d{bottom:414.615000px;}
.y9a{bottom:417.135000px;}
.ybd{bottom:419.475000px;}
.y67{bottom:425.055000px;}
.y5e{bottom:426.675000px;}
.y99{bottom:437.835000px;}
.ybc{bottom:440.175000px;}
.y1c{bottom:442.695000px;}
.y3c{bottom:445.575000px;}
.y79{bottom:447.555000px;}
.y66{bottom:456.015000px;}
.y98{bottom:458.535000px;}
.ybb{bottom:460.875000px;}
.y5d{bottom:468.615000px;}
.y3b{bottom:476.715000px;}
.y1b{bottom:477.435000px;}
.y97{bottom:479.235000px;}
.yba{bottom:481.575000px;}
.y1a{bottom:498.135000px;}
.y96{bottom:499.935000px;}
.yb9{bottom:502.275000px;}
.y3a{bottom:507.675000px;}
.yb8{bottom:522.975000px;}
.y95{bottom:523.695000px;}
.y19{bottom:533.955000px;}
.y76{bottom:536.835000px;}
.y39{bottom:538.635000px;}
.yb7{bottom:543.675000px;}
.y94{bottom:544.395000px;}
.y72{bottom:546.735000px;}
.y18{bottom:554.655000px;}
.yb6{bottom:564.375000px;}
.y93{bottom:565.095000px;}
.y38{bottom:569.805000px;}
.y17{bottom:575.385000px;}
.y71{bottom:577.905000px;}
.y75{bottom:578.985000px;}
.y92{bottom:585.825000px;}
.yb5{bottom:588.165000px;}
.y16{bottom:596.085000px;}
.y37{bottom:600.765000px;}
.y91{bottom:606.525000px;}
.y70{bottom:608.865000px;}
.y15{bottom:616.785000px;}
.y90{bottom:627.225000px;}
.yb4{bottom:629.565000px;}
.y36{bottom:631.905000px;}
.y53{bottom:637.125000px;}
.y14{bottom:637.485000px;}
.y6f{bottom:640.005000px;}
.y8f{bottom:647.925000px;}
.yb3{bottom:650.265000px;}
.y13{bottom:658.185000px;}
.y35{bottom:662.865000px;}
.y8e{bottom:668.625000px;}
.y52{bottom:670.965000px;}
.y12{bottom:678.885000px;}
.y8d{bottom:689.325000px;}
.yb2{bottom:691.665000px;}
.y34{bottom:694.005000px;}
.y11{bottom:699.585000px;}
.y51{bottom:702.105000px;}
.y8c{bottom:710.025000px;}
.yb1{bottom:712.365000px;}
.y10{bottom:720.285000px;}
.y33{bottom:724.965000px;}
.y8b{bottom:730.725000px;}
.y50{bottom:733.065000px;}
.y8a{bottom:751.425000px;}
.yb0{bottom:753.765000px;}
.yf{bottom:755.925000px;}
.y32{bottom:756.105000px;}
.y4f{bottom:764.205000px;}
.y89{bottom:772.125000px;}
.yaf{bottom:774.465000px;}
.y31{bottom:787.065000px;}
.ye{bottom:791.565000px;}
.y88{bottom:792.825000px;}
.y4e{bottom:795.165000px;}
.yd{bottom:812.265000px;}
.y87{bottom:813.525000px;}
.yae{bottom:815.865000px;}
.y30{bottom:818.205000px;}
.y4d{bottom:826.350000px;}
.y86{bottom:834.270000px;}
.yad{bottom:836.610000px;}
.y5c{bottom:842.370000px;}
.yc{bottom:848.130000px;}
.y2f{bottom:849.210000px;}
.y85{bottom:854.970000px;}
.y4c{bottom:857.310000px;}
.y5b{bottom:873.330000px;}
.y84{bottom:875.670000px;}
.yac{bottom:878.010000px;}
.y2e{bottom:880.350000px;}
.yb{bottom:884.850000px;}
.y4b{bottom:888.450000px;}
.y83{bottom:896.370000px;}
.yab{bottom:898.710000px;}
.y2d{bottom:911.310000px;}
.ya{bottom:912.750000px;}
.y4a{bottom:919.410000px;}
.y82{bottom:932.550000px;}
.y74{bottom:935.430000px;}
.yaa{bottom:940.110000px;}
.y9{bottom:940.290000px;}
.y2c{bottom:942.450000px;}
.y49{bottom:950.550000px;}
.ya9{bottom:960.810000px;}
.y2b{bottom:973.410000px;}
.y48{bottom:981.510000px;}
.y8{bottom:982.770000px;}
.yc9{bottom:987.270000px;}
.ya8{bottom:1002.210000px;}
.y2a{bottom:1004.550000px;}
.y7{bottom:1010.490000px;}
.y47{bottom:1012.650000px;}
.ya7{bottom:1022.910000px;}
.y6{bottom:1038.030000px;}
.y29{bottom:1040.730000px;}
.y46{bottom:1043.610000px;}
.h5{height:54.878906px;}
.h3{height:55.825312px;}
.h2{height:59.383125px;}
.h1{height:64.546875px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h6{height:106.189453px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.655986px;}
.x9{left:134.315986px;}
.xc{left:135.395986px;}
.x4{left:150.149986px;}
.x12{left:168.869986px;}
.x7{left:170.129986px;}
.x15{left:172.469986px;}
.x8{left:181.649986px;}
.xe{left:198.029986px;}
.x3{left:238.169986px;}
.xd{left:262.649986px;}
.x10{left:278.309986px;}
.x6{left:289.874986px;}
.x5{left:369.614986px;}
.xa{left:413.534986px;}
.x14{left:480.344986px;}
.x16{left:757.229986px;}
.x13{left:794.309986px;}
.x11{left:804.929986px;}
.xf{left:811.769986px;}
.x2{left:833.189986px;}
.xb{left:834.269986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls1{letter-spacing:2.560000pt;}
.ls0{letter-spacing:11.520000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-36.096000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.239893pt;}
._f{width:2.602667pt;}
._d{width:4.096000pt;}
._b{width:5.376000pt;}
._c{width:6.400000pt;}
._e{width:7.936000pt;}
._12{width:8.832000pt;}
._10{width:9.728000pt;}
._8{width:10.713600pt;}
._7{width:11.690667pt;}
._2{width:13.485867pt;}
._9{width:15.104000pt;}
._a{width:17.408000pt;}
._15{width:18.624000pt;}
._17{width:19.733333pt;}
._19{width:21.465600pt;}
._11{width:22.400000pt;}
._1a{width:23.872000pt;}
._6{width:25.706240pt;}
._5{width:26.983040pt;}
._16{width:28.373547pt;}
._14{width:30.182400pt;}
._13{width:31.449600pt;}
._18{width:32.785067pt;}
._29{width:33.723733pt;}
._28{width:34.638933pt;}
._21{width:35.756373pt;}
._24{width:39.552000pt;}
._1f{width:43.392000pt;}
._1c{width:44.480000pt;}
._1d{width:45.658880pt;}
._25{width:47.680000pt;}
._26{width:48.584107pt;}
._23{width:76.684800pt;}
._22{width:77.657600pt;}
._27{width:97.856000pt;}
._1e{width:100.484267pt;}
._2a{width:136.256000pt;}
._2b{width:137.408000pt;}
._3{width:189.477120pt;}
._4{width:190.402133pt;}
._20{width:232.384000pt;}
._1b{width:270.656000pt;}
._2c{width:526.592000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.040000pt;}
.y4{bottom:68.352000pt;}
.y3{bottom:85.472000pt;}
.y2{bottom:102.432000pt;}
.y1{bottom:119.552000pt;}
.y45{bottom:140.506667pt;}
.y28{bottom:143.866667pt;}
.ya6{bottom:149.946667pt;}
.y73{bottom:151.066667pt;}
.y78{bottom:152.186667pt;}
.y81{bottom:153.306667pt;}
.y5a{bottom:161.946667pt;}
.y27{bottom:162.266667pt;}
.y77{bottom:166.266667pt;}
.y44{bottom:168.026667pt;}
.ya5{bottom:168.346667pt;}
.yc8{bottom:170.426667pt;}
.y80{bottom:180.826667pt;}
.y6e{bottom:184.506667pt;}
.y65{bottom:185.946667pt;}
.ya4{bottom:186.746667pt;}
.yc7{bottom:188.826667pt;}
.y59{bottom:189.466667pt;}
.y26{bottom:193.946667pt;}
.y43{bottom:195.706667pt;}
.ya3{bottom:205.146667pt;}
.yc6{bottom:207.226667pt;}
.y7f{bottom:208.506667pt;}
.y6d{bottom:212.186667pt;}
.y25{bottom:212.346667pt;}
.y64{bottom:213.626667pt;}
.y42{bottom:223.226667pt;}
.ya2{bottom:223.546667pt;}
.yc5{bottom:225.626667pt;}
.y58{bottom:230.426667pt;}
.y24{bottom:230.746667pt;}
.y7e{bottom:236.026667pt;}
.y6c{bottom:239.706667pt;}
.y63{bottom:241.146667pt;}
.ya1{bottom:241.946667pt;}
.yc4{bottom:244.026667pt;}
.y23{bottom:249.146667pt;}
.y41{bottom:250.906667pt;}
.y57{bottom:258.106667pt;}
.ya0{bottom:260.346667pt;}
.yc3{bottom:262.426667pt;}
.y6b{bottom:267.386667pt;}
.y22{bottom:267.546667pt;}
.y7d{bottom:268.346667pt;}
.y62{bottom:268.826667pt;}
.y40{bottom:278.426667pt;}
.y9f{bottom:278.746667pt;}
.yc2{bottom:280.826667pt;}
.y56{bottom:285.666667pt;}
.y21{bottom:285.986667pt;}
.y6a{bottom:294.946667pt;}
.y61{bottom:296.386667pt;}
.y9e{bottom:297.186667pt;}
.yc1{bottom:299.266667pt;}
.y20{bottom:304.386667pt;}
.y3f{bottom:306.146667pt;}
.y7c{bottom:311.906667pt;}
.y55{bottom:313.346667pt;}
.y9d{bottom:315.586667pt;}
.yc0{bottom:317.666667pt;}
.y69{bottom:322.626667pt;}
.y1f{bottom:322.786667pt;}
.y60{bottom:324.066667pt;}
.y9c{bottom:333.986667pt;}
.ybf{bottom:336.066667pt;}
.y3e{bottom:338.306667pt;}
.y7b{bottom:339.426667pt;}
.y54{bottom:340.866667pt;}
.y1e{bottom:341.186667pt;}
.y68{bottom:350.146667pt;}
.y5f{bottom:351.586667pt;}
.y9b{bottom:352.386667pt;}
.ybe{bottom:354.466667pt;}
.y1d{bottom:359.586667pt;}
.y7a{bottom:367.106667pt;}
.y3d{bottom:368.546667pt;}
.y9a{bottom:370.786667pt;}
.ybd{bottom:372.866667pt;}
.y67{bottom:377.826667pt;}
.y5e{bottom:379.266667pt;}
.y99{bottom:389.186667pt;}
.ybc{bottom:391.266667pt;}
.y1c{bottom:393.506667pt;}
.y3c{bottom:396.066667pt;}
.y79{bottom:397.826667pt;}
.y66{bottom:405.346667pt;}
.y98{bottom:407.586667pt;}
.ybb{bottom:409.666667pt;}
.y5d{bottom:416.546667pt;}
.y3b{bottom:423.746667pt;}
.y1b{bottom:424.386667pt;}
.y97{bottom:425.986667pt;}
.yba{bottom:428.066667pt;}
.y1a{bottom:442.786667pt;}
.y96{bottom:444.386667pt;}
.yb9{bottom:446.466667pt;}
.y3a{bottom:451.266667pt;}
.yb8{bottom:464.866667pt;}
.y95{bottom:465.506667pt;}
.y19{bottom:474.626667pt;}
.y76{bottom:477.186667pt;}
.y39{bottom:478.786667pt;}
.yb7{bottom:483.266667pt;}
.y94{bottom:483.906667pt;}
.y72{bottom:485.986667pt;}
.y18{bottom:493.026667pt;}
.yb6{bottom:501.666667pt;}
.y93{bottom:502.306667pt;}
.y38{bottom:506.493333pt;}
.y17{bottom:511.453333pt;}
.y71{bottom:513.693333pt;}
.y75{bottom:514.653333pt;}
.y92{bottom:520.733333pt;}
.yb5{bottom:522.813333pt;}
.y16{bottom:529.853333pt;}
.y37{bottom:534.013333pt;}
.y91{bottom:539.133333pt;}
.y70{bottom:541.213333pt;}
.y15{bottom:548.253333pt;}
.y90{bottom:557.533333pt;}
.yb4{bottom:559.613333pt;}
.y36{bottom:561.693333pt;}
.y53{bottom:566.333333pt;}
.y14{bottom:566.653333pt;}
.y6f{bottom:568.893333pt;}
.y8f{bottom:575.933333pt;}
.yb3{bottom:578.013333pt;}
.y13{bottom:585.053333pt;}
.y35{bottom:589.213333pt;}
.y8e{bottom:594.333333pt;}
.y52{bottom:596.413333pt;}
.y12{bottom:603.453333pt;}
.y8d{bottom:612.733333pt;}
.yb2{bottom:614.813333pt;}
.y34{bottom:616.893333pt;}
.y11{bottom:621.853333pt;}
.y51{bottom:624.093333pt;}
.y8c{bottom:631.133333pt;}
.yb1{bottom:633.213333pt;}
.y10{bottom:640.253333pt;}
.y33{bottom:644.413333pt;}
.y8b{bottom:649.533333pt;}
.y50{bottom:651.613333pt;}
.y8a{bottom:667.933333pt;}
.yb0{bottom:670.013333pt;}
.yf{bottom:671.933333pt;}
.y32{bottom:672.093333pt;}
.y4f{bottom:679.293333pt;}
.y89{bottom:686.333333pt;}
.yaf{bottom:688.413333pt;}
.y31{bottom:699.613333pt;}
.ye{bottom:703.613333pt;}
.y88{bottom:704.733333pt;}
.y4e{bottom:706.813333pt;}
.yd{bottom:722.013333pt;}
.y87{bottom:723.133333pt;}
.yae{bottom:725.213333pt;}
.y30{bottom:727.293333pt;}
.y4d{bottom:734.533333pt;}
.y86{bottom:741.573333pt;}
.yad{bottom:743.653333pt;}
.y5c{bottom:748.773333pt;}
.yc{bottom:753.893333pt;}
.y2f{bottom:754.853333pt;}
.y85{bottom:759.973333pt;}
.y4c{bottom:762.053333pt;}
.y5b{bottom:776.293333pt;}
.y84{bottom:778.373333pt;}
.yac{bottom:780.453333pt;}
.y2e{bottom:782.533333pt;}
.yb{bottom:786.533333pt;}
.y4b{bottom:789.733333pt;}
.y83{bottom:796.773333pt;}
.yab{bottom:798.853333pt;}
.y2d{bottom:810.053333pt;}
.ya{bottom:811.333333pt;}
.y4a{bottom:817.253333pt;}
.y82{bottom:828.933333pt;}
.y74{bottom:831.493333pt;}
.yaa{bottom:835.653333pt;}
.y9{bottom:835.813333pt;}
.y2c{bottom:837.733333pt;}
.y49{bottom:844.933333pt;}
.ya9{bottom:854.053333pt;}
.y2b{bottom:865.253333pt;}
.y48{bottom:872.453333pt;}
.y8{bottom:873.573333pt;}
.yc9{bottom:877.573333pt;}
.ya8{bottom:890.853333pt;}
.y2a{bottom:892.933333pt;}
.y7{bottom:898.213333pt;}
.y47{bottom:900.133333pt;}
.ya7{bottom:909.253333pt;}
.y6{bottom:922.693333pt;}
.y29{bottom:925.093333pt;}
.y46{bottom:927.653333pt;}
.h5{height:48.781250pt;}
.h3{height:49.622500pt;}
.h2{height:52.785000pt;}
.h1{height:57.375000pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h6{height:94.390625pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x9{left:119.391988pt;}
.xc{left:120.351988pt;}
.x4{left:133.466655pt;}
.x12{left:150.106655pt;}
.x7{left:151.226655pt;}
.x15{left:153.306655pt;}
.x8{left:161.466655pt;}
.xe{left:176.026655pt;}
.x3{left:211.706655pt;}
.xd{left:233.466655pt;}
.x10{left:247.386655pt;}
.x6{left:257.666655pt;}
.x5{left:328.546655pt;}
.xa{left:367.586655pt;}
.x14{left:426.973321pt;}
.x16{left:673.093321pt;}
.x13{left:706.053321pt;}
.x11{left:715.493321pt;}
.xf{left:721.573321pt;}
.x2{left:740.613321pt;}
.xb{left:741.573321pt;}
}




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