
    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_85ab78f8628731a64c0c720e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9fc7291aa3f40c1a949978b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7b6217207ba479d25e213772.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_748139c3f49d1e941b1137c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_120f5e34d9556c353bea4f73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_358df033d0700a96bfaf80de.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.103027;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);}
.v2{vertical-align:-2.580000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:109.920000px;}
.lsa{letter-spacing:-0.378600px;}
.ls1{letter-spacing:-0.367800px;}
.ls5{letter-spacing:-0.037440px;}
.ls4{letter-spacing:-0.028080px;}
.ls8{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.101400px;}
.ls2{letter-spacing:0.181200px;}
.ls9{letter-spacing:107.308080px;}
.lsd{letter-spacing:408.553248px;}
.lse{letter-spacing:408.593280px;}
.ls10{letter-spacing:408.673248px;}
.lsc{letter-spacing:408.685248px;}
.lsf{letter-spacing:408.713280px;}
.lsb{letter-spacing:408.725280px;}
.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;}
}
.ws0{word-spacing:-29.696232px;}
.ws4{word-spacing:-23.418720px;}
.ws7{word-spacing:-23.390640px;}
.ws8{word-spacing:-21.634560px;}
.ws5{word-spacing:-21.600000px;}
.ws6{word-spacing:-20.016000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:68.939280px;}
.ws3{word-spacing:69.018552px;}
._b{margin-left:-11.040000px;}
._6{margin-left:-9.617760px;}
._2{margin-left:-7.272000px;}
._9{margin-left:-4.970160px;}
._4{margin-left:-3.958560px;}
._1{margin-left:-2.301120px;}
._0{margin-left:-1.081440px;}
._3{width:1.077120px;}
._5{width:3.030480px;}
._8{width:107.308080px;}
._d{width:345.996480px;}
._c{width:408.725280px;}
._7{width:651.115440px;}
._a{width:2198.914080px;}
.fc3{color:rgb(97,135,227);}
.fc1{color:rgb(255,134,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fsa{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:84.384000px;}
.fsc{font-size:108.000000px;}
.fs0{font-size:108.144000px;}
.fs4{font-size:131.760000px;}
.fs5{font-size:131.904000px;}
.fs9{font-size:156.240000px;}
.fsb{font-size:174.240000px;}
.fs2{font-size:185.760000px;}
.fs3{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.548000px;}
.yba{bottom:119.376000px;}
.y6a{bottom:119.880000px;}
.y2f{bottom:126.504000px;}
.y84{bottom:129.780000px;}
.y4a{bottom:129.960000px;}
.y4d{bottom:138.096000px;}
.y2a{bottom:138.240000px;}
.y1c{bottom:141.192000px;}
.y75{bottom:142.596000px;}
.yb9{bottom:144.576000px;}
.y69{bottom:145.080000px;}
.y1f{bottom:147.276000px;}
.y96{bottom:147.384000px;}
.y2e{bottom:151.710000px;}
.y83{bottom:154.980000px;}
.y49{bottom:155.160000px;}
.y4c{bottom:159.690000px;}
.y29{bottom:163.440000px;}
.y1b{bottom:166.395000px;}
.y74{bottom:167.790000px;}
.ya5{bottom:169.590000px;}
.yb8{bottom:169.770000px;}
.y68{bottom:170.280000px;}
.y95{bottom:172.590000px;}
.y2d{bottom:176.910000px;}
.y82{bottom:180.180000px;}
.y48{bottom:180.360000px;}
.y4b{bottom:181.290000px;}
.y28{bottom:188.670000px;}
.y1a{bottom:191.595000px;}
.y71{bottom:192.990000px;}
.ya4{bottom:194.835000px;}
.yb7{bottom:194.970000px;}
.y67{bottom:195.480000px;}
.y94{bottom:197.790000px;}
.yd4{bottom:200.595000px;}
.y2c{bottom:202.110000px;}
.y81{bottom:205.380000px;}
.y27{bottom:213.870000px;}
.y60{bottom:215.175000px;}
.y19{bottom:216.795000px;}
.y70{bottom:218.190000px;}
.yc{bottom:219.930000px;}
.ya3{bottom:220.035000px;}
.yb6{bottom:220.170000px;}
.y66{bottom:220.680000px;}
.y93{bottom:222.990000px;}
.y2b{bottom:227.310000px;}
.y80{bottom:231.225000px;}
.y1e{bottom:234.210000px;}
.yd3{bottom:239.505000px;}
.y5f{bottom:240.375000px;}
.y18{bottom:241.995000px;}
.y73{bottom:243.390000px;}
.ya2{bottom:245.235000px;}
.yb5{bottom:245.415000px;}
.y65{bottom:245.910000px;}
.y92{bottom:248.220000px;}
.y47{bottom:248.250000px;}
.y1d{bottom:255.810000px;}
.y7f{bottom:256.425000px;}
.y5e{bottom:265.605000px;}
.y17{bottom:267.195000px;}
.yc7{bottom:267.225000px;}
.yb{bottom:267.450000px;}
.y72{bottom:268.590000px;}
.ya1{bottom:270.435000px;}
.yb4{bottom:270.615000px;}
.y64{bottom:271.110000px;}
.y91{bottom:273.420000px;}
.yd2{bottom:279.825000px;}
.y7e{bottom:281.625000px;}
.y26{bottom:291.780000px;}
.yc6{bottom:292.425000px;}
.ya0{bottom:295.635000px;}
.yb3{bottom:295.815000px;}
.y63{bottom:296.310000px;}
.y90{bottom:298.620000px;}
.y45{bottom:299.520000px;}
.y55{bottom:304.920000px;}
.y7d{bottom:306.870000px;}
.ya{bottom:314.970000px;}
.yc5{bottom:317.625000px;}
.y9f{bottom:320.835000px;}
.yb2{bottom:321.015000px;}
.y62{bottom:321.510000px;}
.y8f{bottom:323.820000px;}
.y44{bottom:324.720000px;}
.yd1{bottom:327.345000px;}
.y54{bottom:330.120000px;}
.y7c{bottom:332.070000px;}
.yc4{bottom:342.825000px;}
.y9e{bottom:346.035000px;}
.yb1{bottom:346.215000px;}
.y8e{bottom:349.020000px;}
.y6f{bottom:351.075000px;}
.y14{bottom:354.630000px;}
.yce{bottom:354.885000px;}
.y53{bottom:355.320000px;}
.y11{bottom:357.225000px;}
.y7b{bottom:357.270000px;}
.y9{bottom:362.520000px;}
.y10{bottom:367.590000px;}
.yc3{bottom:368.025000px;}
.y16{bottom:370.800000px;}
.y9d{bottom:371.265000px;}
.yb0{bottom:371.415000px;}
.y8d{bottom:374.220000px;}
.yd0{bottom:374.865000px;}
.y46{bottom:375.870000px;}
.y6e{bottom:376.275000px;}
.y5b{bottom:376.740000px;}
.y13{bottom:379.830000px;}
.ycd{bottom:380.085000px;}
.y52{bottom:380.520000px;}
.y7a{bottom:382.470000px;}
.y43{bottom:391.830000px;}
.yf{bottom:392.790000px;}
.yc2{bottom:393.270000px;}
.y15{bottom:396.000000px;}
.y9c{bottom:396.465000px;}
.yaf{bottom:396.615000px;}
.y8c{bottom:399.450000px;}
.y6d{bottom:401.475000px;}
.y5a{bottom:401.940000px;}
.y12{bottom:405.030000px;}
.ycc{bottom:405.330000px;}
.y51{bottom:405.750000px;}
.y21{bottom:406.905000px;}
.y79{bottom:407.670000px;}
.y8{bottom:410.040000px;}
.y42{bottom:417.030000px;}
.yc1{bottom:418.470000px;}
.y9b{bottom:421.665000px;}
.yae{bottom:421.845000px;}
.ycf{bottom:422.430000px;}
.y8b{bottom:424.650000px;}
.y6c{bottom:426.705000px;}
.y59{bottom:427.140000px;}
.y5d{bottom:430.020000px;}
.y50{bottom:430.950000px;}
.y78{bottom:432.870000px;}
.y41{bottom:442.230000px;}
.yc0{bottom:443.670000px;}
.y9a{bottom:446.865000px;}
.yad{bottom:447.045000px;}
.y8a{bottom:449.850000px;}
.y5c{bottom:451.620000px;}
.y6b{bottom:451.905000px;}
.y58{bottom:452.340000px;}
.y4f{bottom:456.150000px;}
.y77{bottom:458.100000px;}
.y98{bottom:458.970000px;}
.y33{bottom:464.685000px;}
.y40{bottom:467.430000px;}
.ybf{bottom:468.870000px;}
.ye{bottom:471.780000px;}
.y99{bottom:472.065000px;}
.yac{bottom:472.245000px;}
.y89{bottom:475.050000px;}
.y57{bottom:477.540000px;}
.y4e{bottom:481.350000px;}
.y97{bottom:482.370000px;}
.y3a{bottom:484.845000px;}
.y32{bottom:486.285000px;}
.y6{bottom:489.030000px;}
.y25{bottom:490.935000px;}
.y3f{bottom:492.630000px;}
.ybe{bottom:494.070000px;}
.y37{bottom:495.105000px;}
.yd{bottom:496.980000px;}
.yab{bottom:497.445000px;}
.y88{bottom:500.250000px;}
.y56{bottom:502.740000px;}
.y31{bottom:507.885000px;}
.y39{bottom:508.290000px;}
.y24{bottom:516.135000px;}
.y3e{bottom:517.830000px;}
.ybd{bottom:519.270000px;}
.y36{bottom:520.350000px;}
.y7{bottom:520.710000px;}
.yaa{bottom:522.645000px;}
.y87{bottom:525.450000px;}
.yc9{bottom:529.170000px;}
.y30{bottom:529.485000px;}
.y38{bottom:531.690000px;}
.ycb{bottom:537.585000px;}
.y5{bottom:539.250000px;}
.y23{bottom:541.335000px;}
.y3d{bottom:543.030000px;}
.ybc{bottom:544.500000px;}
.ya9{bottom:547.845000px;}
.y86{bottom:550.650000px;}
.y35{bottom:551.955000px;}
.yc8{bottom:554.370000px;}
.y76{bottom:556.380000px;}
.ya6{bottom:561.420000px;}
.yca{bottom:562.830000px;}
.y22{bottom:566.535000px;}
.y3c{bottom:568.260000px;}
.y20{bottom:569.550000px;}
.ybb{bottom:569.700000px;}
.ya8{bottom:573.045000px;}
.y61{bottom:573.990000px;}
.y85{bottom:575.895000px;}
.y34{bottom:577.155000px;}
.y3b{bottom:593.460000px;}
.ya7{bottom:598.290000px;}
.y4{bottom:675.870000px;}
.y3{bottom:697.470000px;}
.y2{bottom:719.070000px;}
.h2{height:75.093750px;}
.hf{height:75.190781px;}
.hb{height:75.243937px;}
.ha{height:75.519844px;}
.hd{height:81.101250px;}
.h7{height:87.859687px;}
.h9{height:88.009875px;}
.h10{height:112.640625px;}
.h1{height:112.790813px;}
.h5{height:137.421562px;}
.h6{height:137.571750px;}
.hc{height:162.953438px;}
.he{height:181.726875px;}
.h3{height:193.741875px;}
.h8{height:197.779687px;}
.h4{height:200.500313px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:10.800000px;}
.x2{left:16.416000px;}
.x1c{left:40.824000px;}
.x1a{left:43.416000px;}
.x1f{left:44.784000px;}
.x9{left:49.536000px;}
.x2b{left:52.596000px;}
.x50{left:54.036000px;}
.x6{left:57.492000px;}
.x4e{left:59.112000px;}
.x34{left:61.884000px;}
.x2a{left:64.116000px;}
.xa{left:66.312000px;}
.x11{left:69.840000px;}
.x4d{left:77.004000px;}
.x14{left:80.820000px;}
.x1e{left:86.364000px;}
.x2c{left:91.224000px;}
.x3{left:93.384000px;}
.x49{left:94.860000px;}
.x2d{left:97.524000px;}
.x12{left:100.800000px;}
.x13{left:104.940000px;}
.x20{left:105.984000px;}
.x3b{left:107.280000px;}
.x3e{left:109.440000px;}
.x16{left:112.860000px;}
.x15{left:115.020000px;}
.x3f{left:119.880000px;}
.x3c{left:121.860000px;}
.x3d{left:126.000000px;}
.x39{left:129.780000px;}
.x3a{left:143.820000px;}
.x38{left:161.280000px;}
.x1b{left:261.825000px;}
.x1d{left:286.845000px;}
.x4c{left:303.840000px;}
.xb{left:334.260000px;}
.x4a{left:355.065000px;}
.x33{left:358.380000px;}
.x4{left:362.340000px;}
.x32{left:374.250000px;}
.x2f{left:385.770000px;}
.x22{left:389.085000px;}
.x2e{left:392.790000px;}
.x21{left:400.245000px;}
.x8{left:402.690000px;}
.x4f{left:405.180000px;}
.x24{left:414.825000px;}
.x23{left:432.105000px;}
.x5{left:433.335000px;}
.x7{left:436.710000px;}
.x25{left:439.485000px;}
.x47{left:537.630000px;}
.x37{left:550.620000px;}
.x35{left:555.840000px;}
.x36{left:563.760000px;}
.x48{left:571.470000px;}
.x43{left:584.895000px;}
.x42{left:589.215000px;}
.x52{left:613.980000px;}
.x19{left:622.905000px;}
.xd{left:626.370000px;}
.xe{left:631.590000px;}
.xc{left:647.430000px;}
.x30{left:688.350000px;}
.x18{left:695.130000px;}
.x17{left:715.830000px;}
.x4b{left:718.170000px;}
.x31{left:722.190000px;}
.x27{left:796.290000px;}
.x26{left:807.660000px;}
.x29{left:819.360000px;}
.x28{left:825.300000px;}
.x40{left:840.750000px;}
.x41{left:874.590000px;}
.x46{left:888.045000px;}
.x44{left:893.265000px;}
.x45{left:901.905000px;}
.xf{left:919.650000px;}
.x10{left:936.570000px;}
.x51{left:1069.275000px;}
@media print{
.v2{vertical-align:-2.293333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:97.706667pt;}
.lsa{letter-spacing:-0.336533pt;}
.ls1{letter-spacing:-0.326933pt;}
.ls5{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:-0.024960pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.090133pt;}
.ls2{letter-spacing:0.161067pt;}
.ls9{letter-spacing:95.384960pt;}
.lsd{letter-spacing:363.158443pt;}
.lse{letter-spacing:363.194027pt;}
.ls10{letter-spacing:363.265109pt;}
.lsc{letter-spacing:363.275776pt;}
.lsf{letter-spacing:363.300693pt;}
.lsb{letter-spacing:363.311360pt;}
.ws0{word-spacing:-26.396651pt;}
.ws4{word-spacing:-20.816640pt;}
.ws7{word-spacing:-20.791680pt;}
.ws8{word-spacing:-19.230720pt;}
.ws5{word-spacing:-19.200000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:61.279360pt;}
.ws3{word-spacing:61.349824pt;}
._b{margin-left:-9.813333pt;}
._6{margin-left:-8.549120pt;}
._2{margin-left:-6.464000pt;}
._9{margin-left:-4.417920pt;}
._4{margin-left:-3.518720pt;}
._1{margin-left:-2.045440pt;}
._0{margin-left:-0.961280pt;}
._3{width:0.957440pt;}
._5{width:2.693760pt;}
._8{width:95.384960pt;}
._d{width:307.552427pt;}
._c{width:363.311360pt;}
._7{width:578.769280pt;}
._a{width:1954.590293pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fsa{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:75.008000pt;}
.fsc{font-size:96.000000pt;}
.fs0{font-size:96.128000pt;}
.fs4{font-size:117.120000pt;}
.fs5{font-size:117.248000pt;}
.fs9{font-size:138.880000pt;}
.fsb{font-size:154.880000pt;}
.fs2{font-size:165.120000pt;}
.fs3{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.376000pt;}
.yba{bottom:106.112000pt;}
.y6a{bottom:106.560000pt;}
.y2f{bottom:112.448000pt;}
.y84{bottom:115.360000pt;}
.y4a{bottom:115.520000pt;}
.y4d{bottom:122.752000pt;}
.y2a{bottom:122.880000pt;}
.y1c{bottom:125.504000pt;}
.y75{bottom:126.752000pt;}
.yb9{bottom:128.512000pt;}
.y69{bottom:128.960000pt;}
.y1f{bottom:130.912000pt;}
.y96{bottom:131.008000pt;}
.y2e{bottom:134.853333pt;}
.y83{bottom:137.760000pt;}
.y49{bottom:137.920000pt;}
.y4c{bottom:141.946667pt;}
.y29{bottom:145.280000pt;}
.y1b{bottom:147.906667pt;}
.y74{bottom:149.146667pt;}
.ya5{bottom:150.746667pt;}
.yb8{bottom:150.906667pt;}
.y68{bottom:151.360000pt;}
.y95{bottom:153.413333pt;}
.y2d{bottom:157.253333pt;}
.y82{bottom:160.160000pt;}
.y48{bottom:160.320000pt;}
.y4b{bottom:161.146667pt;}
.y28{bottom:167.706667pt;}
.y1a{bottom:170.306667pt;}
.y71{bottom:171.546667pt;}
.ya4{bottom:173.186667pt;}
.yb7{bottom:173.306667pt;}
.y67{bottom:173.760000pt;}
.y94{bottom:175.813333pt;}
.yd4{bottom:178.306667pt;}
.y2c{bottom:179.653333pt;}
.y81{bottom:182.560000pt;}
.y27{bottom:190.106667pt;}
.y60{bottom:191.266667pt;}
.y19{bottom:192.706667pt;}
.y70{bottom:193.946667pt;}
.yc{bottom:195.493333pt;}
.ya3{bottom:195.586667pt;}
.yb6{bottom:195.706667pt;}
.y66{bottom:196.160000pt;}
.y93{bottom:198.213333pt;}
.y2b{bottom:202.053333pt;}
.y80{bottom:205.533333pt;}
.y1e{bottom:208.186667pt;}
.yd3{bottom:212.893333pt;}
.y5f{bottom:213.666667pt;}
.y18{bottom:215.106667pt;}
.y73{bottom:216.346667pt;}
.ya2{bottom:217.986667pt;}
.yb5{bottom:218.146667pt;}
.y65{bottom:218.586667pt;}
.y92{bottom:220.640000pt;}
.y47{bottom:220.666667pt;}
.y1d{bottom:227.386667pt;}
.y7f{bottom:227.933333pt;}
.y5e{bottom:236.093333pt;}
.y17{bottom:237.506667pt;}
.yc7{bottom:237.533333pt;}
.yb{bottom:237.733333pt;}
.y72{bottom:238.746667pt;}
.ya1{bottom:240.386667pt;}
.yb4{bottom:240.546667pt;}
.y64{bottom:240.986667pt;}
.y91{bottom:243.040000pt;}
.yd2{bottom:248.733333pt;}
.y7e{bottom:250.333333pt;}
.y26{bottom:259.360000pt;}
.yc6{bottom:259.933333pt;}
.ya0{bottom:262.786667pt;}
.yb3{bottom:262.946667pt;}
.y63{bottom:263.386667pt;}
.y90{bottom:265.440000pt;}
.y45{bottom:266.240000pt;}
.y55{bottom:271.040000pt;}
.y7d{bottom:272.773333pt;}
.ya{bottom:279.973333pt;}
.yc5{bottom:282.333333pt;}
.y9f{bottom:285.186667pt;}
.yb2{bottom:285.346667pt;}
.y62{bottom:285.786667pt;}
.y8f{bottom:287.840000pt;}
.y44{bottom:288.640000pt;}
.yd1{bottom:290.973333pt;}
.y54{bottom:293.440000pt;}
.y7c{bottom:295.173333pt;}
.yc4{bottom:304.733333pt;}
.y9e{bottom:307.586667pt;}
.yb1{bottom:307.746667pt;}
.y8e{bottom:310.240000pt;}
.y6f{bottom:312.066667pt;}
.y14{bottom:315.226667pt;}
.yce{bottom:315.453333pt;}
.y53{bottom:315.840000pt;}
.y11{bottom:317.533333pt;}
.y7b{bottom:317.573333pt;}
.y9{bottom:322.240000pt;}
.y10{bottom:326.746667pt;}
.yc3{bottom:327.133333pt;}
.y16{bottom:329.600000pt;}
.y9d{bottom:330.013333pt;}
.yb0{bottom:330.146667pt;}
.y8d{bottom:332.640000pt;}
.yd0{bottom:333.213333pt;}
.y46{bottom:334.106667pt;}
.y6e{bottom:334.466667pt;}
.y5b{bottom:334.880000pt;}
.y13{bottom:337.626667pt;}
.ycd{bottom:337.853333pt;}
.y52{bottom:338.240000pt;}
.y7a{bottom:339.973333pt;}
.y43{bottom:348.293333pt;}
.yf{bottom:349.146667pt;}
.yc2{bottom:349.573333pt;}
.y15{bottom:352.000000pt;}
.y9c{bottom:352.413333pt;}
.yaf{bottom:352.546667pt;}
.y8c{bottom:355.066667pt;}
.y6d{bottom:356.866667pt;}
.y5a{bottom:357.280000pt;}
.y12{bottom:360.026667pt;}
.ycc{bottom:360.293333pt;}
.y51{bottom:360.666667pt;}
.y21{bottom:361.693333pt;}
.y79{bottom:362.373333pt;}
.y8{bottom:364.480000pt;}
.y42{bottom:370.693333pt;}
.yc1{bottom:371.973333pt;}
.y9b{bottom:374.813333pt;}
.yae{bottom:374.973333pt;}
.ycf{bottom:375.493333pt;}
.y8b{bottom:377.466667pt;}
.y6c{bottom:379.293333pt;}
.y59{bottom:379.680000pt;}
.y5d{bottom:382.240000pt;}
.y50{bottom:383.066667pt;}
.y78{bottom:384.773333pt;}
.y41{bottom:393.093333pt;}
.yc0{bottom:394.373333pt;}
.y9a{bottom:397.213333pt;}
.yad{bottom:397.373333pt;}
.y8a{bottom:399.866667pt;}
.y5c{bottom:401.440000pt;}
.y6b{bottom:401.693333pt;}
.y58{bottom:402.080000pt;}
.y4f{bottom:405.466667pt;}
.y77{bottom:407.200000pt;}
.y98{bottom:407.973333pt;}
.y33{bottom:413.053333pt;}
.y40{bottom:415.493333pt;}
.ybf{bottom:416.773333pt;}
.ye{bottom:419.360000pt;}
.y99{bottom:419.613333pt;}
.yac{bottom:419.773333pt;}
.y89{bottom:422.266667pt;}
.y57{bottom:424.480000pt;}
.y4e{bottom:427.866667pt;}
.y97{bottom:428.773333pt;}
.y3a{bottom:430.973333pt;}
.y32{bottom:432.253333pt;}
.y6{bottom:434.693333pt;}
.y25{bottom:436.386667pt;}
.y3f{bottom:437.893333pt;}
.ybe{bottom:439.173333pt;}
.y37{bottom:440.093333pt;}
.yd{bottom:441.760000pt;}
.yab{bottom:442.173333pt;}
.y88{bottom:444.666667pt;}
.y56{bottom:446.880000pt;}
.y31{bottom:451.453333pt;}
.y39{bottom:451.813333pt;}
.y24{bottom:458.786667pt;}
.y3e{bottom:460.293333pt;}
.ybd{bottom:461.573333pt;}
.y36{bottom:462.533333pt;}
.y7{bottom:462.853333pt;}
.yaa{bottom:464.573333pt;}
.y87{bottom:467.066667pt;}
.yc9{bottom:470.373333pt;}
.y30{bottom:470.653333pt;}
.y38{bottom:472.613333pt;}
.ycb{bottom:477.853333pt;}
.y5{bottom:479.333333pt;}
.y23{bottom:481.186667pt;}
.y3d{bottom:482.693333pt;}
.ybc{bottom:484.000000pt;}
.ya9{bottom:486.973333pt;}
.y86{bottom:489.466667pt;}
.y35{bottom:490.626667pt;}
.yc8{bottom:492.773333pt;}
.y76{bottom:494.560000pt;}
.ya6{bottom:499.040000pt;}
.yca{bottom:500.293333pt;}
.y22{bottom:503.586667pt;}
.y3c{bottom:505.120000pt;}
.y20{bottom:506.266667pt;}
.ybb{bottom:506.400000pt;}
.ya8{bottom:509.373333pt;}
.y61{bottom:510.213333pt;}
.y85{bottom:511.906667pt;}
.y34{bottom:513.026667pt;}
.y3b{bottom:527.520000pt;}
.ya7{bottom:531.813333pt;}
.y4{bottom:600.773333pt;}
.y3{bottom:619.973333pt;}
.y2{bottom:639.173333pt;}
.h2{height:66.750000pt;}
.hf{height:66.836250pt;}
.hb{height:66.883500pt;}
.ha{height:67.128750pt;}
.hd{height:72.090000pt;}
.h7{height:78.097500pt;}
.h9{height:78.231000pt;}
.h10{height:100.125000pt;}
.h1{height:100.258500pt;}
.h5{height:122.152500pt;}
.h6{height:122.286000pt;}
.hc{height:144.847500pt;}
.he{height:161.535000pt;}
.h3{height:172.215000pt;}
.h8{height:175.804167pt;}
.h4{height:178.222500pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.600000pt;}
.x2{left:14.592000pt;}
.x1c{left:36.288000pt;}
.x1a{left:38.592000pt;}
.x1f{left:39.808000pt;}
.x9{left:44.032000pt;}
.x2b{left:46.752000pt;}
.x50{left:48.032000pt;}
.x6{left:51.104000pt;}
.x4e{left:52.544000pt;}
.x34{left:55.008000pt;}
.x2a{left:56.992000pt;}
.xa{left:58.944000pt;}
.x11{left:62.080000pt;}
.x4d{left:68.448000pt;}
.x14{left:71.840000pt;}
.x1e{left:76.768000pt;}
.x2c{left:81.088000pt;}
.x3{left:83.008000pt;}
.x49{left:84.320000pt;}
.x2d{left:86.688000pt;}
.x12{left:89.600000pt;}
.x13{left:93.280000pt;}
.x20{left:94.208000pt;}
.x3b{left:95.360000pt;}
.x3e{left:97.280000pt;}
.x16{left:100.320000pt;}
.x15{left:102.240000pt;}
.x3f{left:106.560000pt;}
.x3c{left:108.320000pt;}
.x3d{left:112.000000pt;}
.x39{left:115.360000pt;}
.x3a{left:127.840000pt;}
.x38{left:143.360000pt;}
.x1b{left:232.733333pt;}
.x1d{left:254.973333pt;}
.x4c{left:270.080000pt;}
.xb{left:297.120000pt;}
.x4a{left:315.613333pt;}
.x33{left:318.560000pt;}
.x4{left:322.080000pt;}
.x32{left:332.666667pt;}
.x2f{left:342.906667pt;}
.x22{left:345.853333pt;}
.x2e{left:349.146667pt;}
.x21{left:355.773333pt;}
.x8{left:357.946667pt;}
.x4f{left:360.160000pt;}
.x24{left:368.733333pt;}
.x23{left:384.093333pt;}
.x5{left:385.186667pt;}
.x7{left:388.186667pt;}
.x25{left:390.653333pt;}
.x47{left:477.893333pt;}
.x37{left:489.440000pt;}
.x35{left:494.080000pt;}
.x36{left:501.120000pt;}
.x48{left:507.973333pt;}
.x43{left:519.906667pt;}
.x42{left:523.746667pt;}
.x52{left:545.760000pt;}
.x19{left:553.693333pt;}
.xd{left:556.773333pt;}
.xe{left:561.413333pt;}
.xc{left:575.493333pt;}
.x30{left:611.866667pt;}
.x18{left:617.893333pt;}
.x17{left:636.293333pt;}
.x4b{left:638.373333pt;}
.x31{left:641.946667pt;}
.x27{left:707.813333pt;}
.x26{left:717.920000pt;}
.x29{left:728.320000pt;}
.x28{left:733.600000pt;}
.x40{left:747.333333pt;}
.x41{left:777.413333pt;}
.x46{left:789.373333pt;}
.x44{left:794.013333pt;}
.x45{left:801.693333pt;}
.xf{left:817.466667pt;}
.x10{left:832.506667pt;}
.x51{left:950.466667pt;}
}




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