
    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_07d9becf2a58959813d5c8d3.woff')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_b1ddeeece4eaf2e0a2803bad.woff')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_61991582090ade7529973262.woff')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_a3d07cbe2d0bf985011fd209.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_bfc6dc113f8c0bdad98c9f17.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_99b26290edfa2cbe16634c20.woff')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;}
.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;}
.lse{letter-spacing:-4.680000px;}
.ls8{letter-spacing:-1.260000px;}
.lsb{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.413400px;}
.ls14{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.156000px;}
.ls7{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.306600px;}
.lsc{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.900000px;}
.lsf{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.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;}
}
.ws8{word-spacing:-19.070784px;}
.ws7{word-spacing:-19.038240px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.238800px;}
.ws3{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.wsa{word-spacing:-12.204000px;}
.wsc{word-spacing:-10.260000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.364160px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._4a{margin-left:-8.516880px;}
._6{margin-left:-6.990480px;}
._49{margin-left:-5.940000px;}
._7{margin-left:-4.484640px;}
._c{margin-left:-2.528640px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._11{width:2.206800px;}
._b{width:3.895680px;}
._a{width:5.287680px;}
._e{width:6.693120px;}
._1e{width:7.770000px;}
._f{width:9.083520px;}
._d{width:10.159200px;}
._13{width:11.227440px;}
._10{width:12.399120px;}
._2c{width:13.550400px;}
._1b{width:15.944400px;}
._2d{width:17.014800px;}
._20{width:18.036480px;}
._8{width:19.068960px;}
._2a{width:20.126640px;}
._12{width:21.162000px;}
._9{width:22.257360px;}
._17{width:23.454720px;}
._16{width:24.762240px;}
._3e{width:26.000880px;}
._30{width:27.100080px;}
._15{width:28.206720px;}
._14{width:29.880000px;}
._1d{width:31.613040px;}
._33{width:32.688720px;}
._1c{width:33.704640px;}
._3a{width:35.526240px;}
._3c{width:36.840960px;}
._29{width:38.036160px;}
._28{width:39.142800px;}
._22{width:40.278240px;}
._26{width:42.102000px;}
._25{width:43.354800px;}
._31{width:44.671680px;}
._2b{width:45.864720px;}
._2e{width:47.000160px;}
._27{width:48.345840px;}
._44{width:49.421520px;}
._32{width:50.460480px;}
._19{width:51.950160px;}
._18{width:53.186400px;}
._1a{width:54.515280px;}
._3d{width:56.054880px;}
._39{width:57.517920px;}
._40{width:58.564800px;}
._21{width:59.788800px;}
._45{width:61.043760px;}
._38{width:62.776320px;}
._37{width:63.914880px;}
._3b{width:65.944080px;}
._4b{width:66.990960px;}
._2f{width:68.425200px;}
._3f{width:72.457920px;}
._24{width:73.624320px;}
._23{width:74.819520px;}
._42{width:78.703920px;}
._4c{width:79.765200px;}
._43{width:80.824320px;}
._36{width:82.378080px;}
._48{width:85.553280px;}
._34{width:90.794160px;}
._35{width:91.952400px;}
._46{width:94.389120px;}
._47{width:97.529520px;}
._52{width:99.233040px;}
._1f{width:102.756240px;}
._53{width:107.927280px;}
._4f{width:158.094000px;}
._4e{width:159.200640px;}
._50{width:270.084240px;}
._51{width:275.572080px;}
._54{width:335.103120px;}
._55{width:348.788160px;}
._4d{width:607.636080px;}
._41{width:2591.972160px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.ya{bottom:37.080000px;}
.y6{bottom:54.180000px;}
.ya8{bottom:58.680000px;}
.ya4{bottom:67.065000px;}
.yb7{bottom:67.110000px;}
.yc8{bottom:72.615000px;}
.ya7{bottom:75.780000px;}
.y7f{bottom:85.140000px;}
.yca{bottom:87.330000px;}
.yc7{bottom:87.375000px;}
.ya3{bottom:90.105000px;}
.yb6{bottom:90.150000px;}
.y9e{bottom:90.360000px;}
.y39{bottom:90.720000px;}
.y71{bottom:94.140000px;}
.yc6{bottom:102.135000px;}
.yc9{bottom:102.270000px;}
.y7e{bottom:104.940000px;}
.yaf{bottom:105.660000px;}
.y9d{bottom:110.160000px;}
.y38{bottom:110.520000px;}
.ya2{bottom:113.145000px;}
.y70{bottom:113.940000px;}
.yc5{bottom:117.075000px;}
.y7d{bottom:124.740000px;}
.yae{bottom:125.460000px;}
.y9c{bottom:129.960000px;}
.y37{bottom:130.320000px;}
.y6f{bottom:133.740000px;}
.y7c{bottom:144.540000px;}
.yad{bottom:145.440000px;}
.y9b{bottom:149.940000px;}
.y36{bottom:150.300000px;}
.y6e{bottom:153.570000px;}
.yb5{bottom:154.230000px;}
.y7b{bottom:164.370000px;}
.yac{bottom:165.270000px;}
.y9a{bottom:169.770000px;}
.y35{bottom:170.130000px;}
.y6d{bottom:173.370000px;}
.y7a{bottom:184.170000px;}
.yab{bottom:185.070000px;}
.y99{bottom:189.570000px;}
.y34{bottom:189.930000px;}
.y6c{bottom:193.170000px;}
.y79{bottom:204.150000px;}
.yaa{bottom:204.870000px;}
.y98{bottom:209.370000px;}
.y33{bottom:209.730000px;}
.ya6{bottom:212.790000px;}
.y6b{bottom:213.150000px;}
.yb4{bottom:218.310000px;}
.yb0{bottom:219.060000px;}
.ya9{bottom:221.430000px;}
.y78{bottom:223.950000px;}
.ya1{bottom:226.005000px;}
.y97{bottom:229.170000px;}
.y32{bottom:229.530000px;}
.y6a{bottom:232.950000px;}
.ya5{bottom:235.830000px;}
.yb3{bottom:241.350000px;}
.y77{bottom:243.750000px;}
.ya0{bottom:249.045000px;}
.y96{bottom:249.150000px;}
.y31{bottom:249.510000px;}
.y69{bottom:252.750000px;}
.y76{bottom:263.550000px;}
.y95{bottom:268.950000px;}
.y30{bottom:269.310000px;}
.y68{bottom:272.550000px;}
.y75{bottom:283.350000px;}
.y94{bottom:288.750000px;}
.y2f{bottom:289.110000px;}
.y67{bottom:292.350000px;}
.yb2{bottom:293.910000px;}
.yc4{bottom:298.080000px;}
.y74{bottom:303.330000px;}
.y93{bottom:308.550000px;}
.y2e{bottom:308.910000px;}
.y66{bottom:312.330000px;}
.yc3{bottom:312.840000px;}
.yb1{bottom:316.950000px;}
.y73{bottom:323.130000px;}
.yc2{bottom:327.600000px;}
.y92{bottom:328.350000px;}
.y2d{bottom:328.710000px;}
.y65{bottom:332.130000px;}
.yc1{bottom:342.570000px;}
.y72{bottom:342.930000px;}
.y91{bottom:348.150000px;}
.y2c{bottom:348.690000px;}
.y64{bottom:351.930000px;}
.yb8{bottom:362.730000px;}
.y90{bottom:368.130000px;}
.y2b{bottom:368.490000px;}
.y63{bottom:371.730000px;}
.y8f{bottom:387.930000px;}
.y2a{bottom:388.290000px;}
.y62{bottom:391.530000px;}
.y8e{bottom:407.775000px;}
.y29{bottom:408.135000px;}
.y61{bottom:411.555000px;}
.y8d{bottom:427.575000px;}
.y28{bottom:427.935000px;}
.y60{bottom:431.355000px;}
.y8c{bottom:447.375000px;}
.y27{bottom:447.915000px;}
.y5f{bottom:451.155000px;}
.y8b{bottom:467.355000px;}
.y26{bottom:467.715000px;}
.y5e{bottom:470.955000px;}
.y8a{bottom:487.155000px;}
.y25{bottom:489.675000px;}
.y5d{bottom:490.755000px;}
.y89{bottom:506.955000px;}
.y24{bottom:509.655000px;}
.y5c{bottom:510.735000px;}
.y88{bottom:526.755000px;}
.y23{bottom:529.455000px;}
.y5b{bottom:530.535000px;}
.y87{bottom:546.555000px;}
.y22{bottom:549.255000px;}
.y5a{bottom:550.335000px;}
.y86{bottom:566.535000px;}
.y21{bottom:569.055000px;}
.y59{bottom:570.135000px;}
.y85{bottom:586.335000px;}
.y20{bottom:588.855000px;}
.y58{bottom:589.935000px;}
.y84{bottom:606.135000px;}
.y1f{bottom:608.835000px;}
.y57{bottom:609.915000px;}
.y83{bottom:625.935000px;}
.y1e{bottom:628.635000px;}
.y56{bottom:629.715000px;}
.y82{bottom:645.735000px;}
.y1d{bottom:648.435000px;}
.y55{bottom:649.545000px;}
.y81{bottom:665.745000px;}
.y1c{bottom:668.265000px;}
.y54{bottom:669.345000px;}
.y9f{bottom:679.860000px;}
.y80{bottom:682.305000px;}
.ybf{bottom:685.545000px;}
.y1b{bottom:688.065000px;}
.y53{bottom:689.145000px;}
.ybe{bottom:705.345000px;}
.y1a{bottom:708.045000px;}
.y52{bottom:709.125000px;}
.ybd{bottom:725.145000px;}
.y19{bottom:727.845000px;}
.y51{bottom:728.925000px;}
.ybc{bottom:744.945000px;}
.y18{bottom:747.645000px;}
.y50{bottom:748.725000px;}
.ybb{bottom:764.925000px;}
.y17{bottom:767.445000px;}
.y4f{bottom:768.525000px;}
.yba{bottom:784.725000px;}
.y16{bottom:787.245000px;}
.y4e{bottom:788.325000px;}
.yc0{bottom:798.840000px;}
.yb9{bottom:801.285000px;}
.y15{bottom:807.225000px;}
.y4d{bottom:808.305000px;}
.y14{bottom:827.025000px;}
.y4c{bottom:828.105000px;}
.y13{bottom:846.825000px;}
.y4b{bottom:847.905000px;}
.y12{bottom:866.625000px;}
.y4a{bottom:867.705000px;}
.y11{bottom:886.425000px;}
.y49{bottom:887.505000px;}
.y48{bottom:907.530000px;}
.y10{bottom:908.610000px;}
.y47{bottom:927.330000px;}
.yf{bottom:928.410000px;}
.y46{bottom:947.130000px;}
.ye{bottom:948.930000px;}
.y45{bottom:966.930000px;}
.yd{bottom:970.170000px;}
.y44{bottom:986.730000px;}
.yc{bottom:993.570000px;}
.y43{bottom:1006.710000px;}
.yb{bottom:1025.250000px;}
.y42{bottom:1026.510000px;}
.y41{bottom:1046.310000px;}
.y5{bottom:1054.050000px;}
.y40{bottom:1066.110000px;}
.y3f{bottom:1085.910000px;}
.y4{bottom:1087.890000px;}
.y3e{bottom:1105.890000px;}
.y3{bottom:1118.850000px;}
.y3d{bottom:1125.690000px;}
.y3c{bottom:1145.490000px;}
.y2{bottom:1149.660000px;}
.y3b{bottom:1165.320000px;}
.y1{bottom:1181.700000px;}
.y3a{bottom:1193.400000px;}
.h5{height:21.780000px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.ha{height:41.726953px;}
.hb{height:42.164648px;}
.h12{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h13{height:49.255313px;}
.h11{height:53.709961px;}
.h10{height:53.853187px;}
.h2{height:54.864844px;}
.h9{height:67.565039px;}
.h8{height:71.613281px;}
.hd{height:83.787539px;}
.hf{height:83.930766px;}
.hc{height:380.520000px;}
.he{height:385.020000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x9{left:70.919987px;}
.xf{left:75.959987px;}
.x29{left:80.999987px;}
.x2a{left:108.035987px;}
.x4{left:118.296000px;}
.x8{left:214.059000px;}
.x7{left:219.099000px;}
.x27{left:235.589987px;}
.x26{left:243.509987px;}
.xa{left:255.989987px;}
.x11{left:297.614987px;}
.x17{left:320.939987px;}
.x18{left:327.959987px;}
.x19{left:330.554987px;}
.xc{left:341.714987px;}
.x1f{left:358.814987px;}
.x20{left:366.659987px;}
.x15{left:369.359987px;}
.x21{left:374.939987px;}
.x14{left:383.399987px;}
.x16{left:394.019987px;}
.xd{left:412.274987px;}
.x22{left:414.899987px;}
.x6{left:428.829000px;}
.x5{left:442.329000px;}
.x1d{left:445.424987px;}
.xb{left:446.504987px;}
.x1a{left:448.844987px;}
.xe{left:473.504987px;}
.x13{left:475.409987px;}
.x12{left:485.669987px;}
.x1e{left:491.684987px;}
.x23{left:501.329987px;}
.x25{left:502.769987px;}
.x1c{left:508.064987px;}
.x1b{left:514.544987px;}
.x24{left:518.609987px;}
.x28{left:527.504987px;}
.x10{left:770.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-4.160000pt;}
.ls8{letter-spacing:-1.120000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.367467pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.138667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.272533pt;}
.lsc{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.800000pt;}
.lsf{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ws8{word-spacing:-16.951808pt;}
.ws7{word-spacing:-16.922880pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.545600pt;}
.ws3{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.wsa{word-spacing:-10.848000pt;}
.wsc{word-spacing:-9.120000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.545920pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._4a{margin-left:-7.570560pt;}
._6{margin-left:-6.213760pt;}
._49{margin-left:-5.280000pt;}
._7{margin-left:-3.986347pt;}
._c{margin-left:-2.247680pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._11{width:1.961600pt;}
._b{width:3.462827pt;}
._a{width:4.700160pt;}
._e{width:5.949440pt;}
._1e{width:6.906667pt;}
._f{width:8.074240pt;}
._d{width:9.030400pt;}
._13{width:9.979947pt;}
._10{width:11.021440pt;}
._2c{width:12.044800pt;}
._1b{width:14.172800pt;}
._2d{width:15.124267pt;}
._20{width:16.032427pt;}
._8{width:16.950187pt;}
._2a{width:17.890347pt;}
._12{width:18.810667pt;}
._9{width:19.784320pt;}
._17{width:20.848640pt;}
._16{width:22.010880pt;}
._3e{width:23.111893pt;}
._30{width:24.088960pt;}
._15{width:25.072640pt;}
._14{width:26.560000pt;}
._1d{width:28.100480pt;}
._33{width:29.056640pt;}
._1c{width:29.959680pt;}
._3a{width:31.578880pt;}
._3c{width:32.747520pt;}
._29{width:33.809920pt;}
._28{width:34.793600pt;}
._22{width:35.802880pt;}
._26{width:37.424000pt;}
._25{width:38.537600pt;}
._31{width:39.708160pt;}
._2b{width:40.768640pt;}
._2e{width:41.777920pt;}
._27{width:42.974080pt;}
._44{width:43.930240pt;}
._32{width:44.853760pt;}
._19{width:46.177920pt;}
._18{width:47.276800pt;}
._1a{width:48.458027pt;}
._3d{width:49.826560pt;}
._39{width:51.127040pt;}
._40{width:52.057600pt;}
._21{width:53.145600pt;}
._45{width:54.261120pt;}
._38{width:55.801173pt;}
._37{width:56.813227pt;}
._3b{width:58.616960pt;}
._4b{width:59.547520pt;}
._2f{width:60.822400pt;}
._3f{width:64.407040pt;}
._24{width:65.443840pt;}
._23{width:66.506240pt;}
._42{width:69.959040pt;}
._4c{width:70.902400pt;}
._43{width:71.843840pt;}
._36{width:73.224960pt;}
._48{width:76.047360pt;}
._34{width:80.705920pt;}
._35{width:81.735467pt;}
._46{width:83.901440pt;}
._47{width:86.692907pt;}
._52{width:88.207147pt;}
._1f{width:91.338880pt;}
._53{width:95.935360pt;}
._4f{width:140.528000pt;}
._4e{width:141.511680pt;}
._50{width:240.074880pt;}
._51{width:244.952960pt;}
._54{width:297.869440pt;}
._55{width:310.033920pt;}
._4d{width:540.120960pt;}
._41{width:2303.975253pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.ya{bottom:32.960000pt;}
.y6{bottom:48.160000pt;}
.ya8{bottom:52.160000pt;}
.ya4{bottom:59.613333pt;}
.yb7{bottom:59.653333pt;}
.yc8{bottom:64.546667pt;}
.ya7{bottom:67.360000pt;}
.y7f{bottom:75.680000pt;}
.yca{bottom:77.626667pt;}
.yc7{bottom:77.666667pt;}
.ya3{bottom:80.093333pt;}
.yb6{bottom:80.133333pt;}
.y9e{bottom:80.320000pt;}
.y39{bottom:80.640000pt;}
.y71{bottom:83.680000pt;}
.yc6{bottom:90.786667pt;}
.yc9{bottom:90.906667pt;}
.y7e{bottom:93.280000pt;}
.yaf{bottom:93.920000pt;}
.y9d{bottom:97.920000pt;}
.y38{bottom:98.240000pt;}
.ya2{bottom:100.573333pt;}
.y70{bottom:101.280000pt;}
.yc5{bottom:104.066667pt;}
.y7d{bottom:110.880000pt;}
.yae{bottom:111.520000pt;}
.y9c{bottom:115.520000pt;}
.y37{bottom:115.840000pt;}
.y6f{bottom:118.880000pt;}
.y7c{bottom:128.480000pt;}
.yad{bottom:129.280000pt;}
.y9b{bottom:133.280000pt;}
.y36{bottom:133.600000pt;}
.y6e{bottom:136.506667pt;}
.yb5{bottom:137.093333pt;}
.y7b{bottom:146.106667pt;}
.yac{bottom:146.906667pt;}
.y9a{bottom:150.906667pt;}
.y35{bottom:151.226667pt;}
.y6d{bottom:154.106667pt;}
.y7a{bottom:163.706667pt;}
.yab{bottom:164.506667pt;}
.y99{bottom:168.506667pt;}
.y34{bottom:168.826667pt;}
.y6c{bottom:171.706667pt;}
.y79{bottom:181.466667pt;}
.yaa{bottom:182.106667pt;}
.y98{bottom:186.106667pt;}
.y33{bottom:186.426667pt;}
.ya6{bottom:189.146667pt;}
.y6b{bottom:189.466667pt;}
.yb4{bottom:194.053333pt;}
.yb0{bottom:194.720000pt;}
.ya9{bottom:196.826667pt;}
.y78{bottom:199.066667pt;}
.ya1{bottom:200.893333pt;}
.y97{bottom:203.706667pt;}
.y32{bottom:204.026667pt;}
.y6a{bottom:207.066667pt;}
.ya5{bottom:209.626667pt;}
.yb3{bottom:214.533333pt;}
.y77{bottom:216.666667pt;}
.ya0{bottom:221.373333pt;}
.y96{bottom:221.466667pt;}
.y31{bottom:221.786667pt;}
.y69{bottom:224.666667pt;}
.y76{bottom:234.266667pt;}
.y95{bottom:239.066667pt;}
.y30{bottom:239.386667pt;}
.y68{bottom:242.266667pt;}
.y75{bottom:251.866667pt;}
.y94{bottom:256.666667pt;}
.y2f{bottom:256.986667pt;}
.y67{bottom:259.866667pt;}
.yb2{bottom:261.253333pt;}
.yc4{bottom:264.960000pt;}
.y74{bottom:269.626667pt;}
.y93{bottom:274.266667pt;}
.y2e{bottom:274.586667pt;}
.y66{bottom:277.626667pt;}
.yc3{bottom:278.080000pt;}
.yb1{bottom:281.733333pt;}
.y73{bottom:287.226667pt;}
.yc2{bottom:291.200000pt;}
.y92{bottom:291.866667pt;}
.y2d{bottom:292.186667pt;}
.y65{bottom:295.226667pt;}
.yc1{bottom:304.506667pt;}
.y72{bottom:304.826667pt;}
.y91{bottom:309.466667pt;}
.y2c{bottom:309.946667pt;}
.y64{bottom:312.826667pt;}
.yb8{bottom:322.426667pt;}
.y90{bottom:327.226667pt;}
.y2b{bottom:327.546667pt;}
.y63{bottom:330.426667pt;}
.y8f{bottom:344.826667pt;}
.y2a{bottom:345.146667pt;}
.y62{bottom:348.026667pt;}
.y8e{bottom:362.466667pt;}
.y29{bottom:362.786667pt;}
.y61{bottom:365.826667pt;}
.y8d{bottom:380.066667pt;}
.y28{bottom:380.386667pt;}
.y60{bottom:383.426667pt;}
.y8c{bottom:397.666667pt;}
.y27{bottom:398.146667pt;}
.y5f{bottom:401.026667pt;}
.y8b{bottom:415.426667pt;}
.y26{bottom:415.746667pt;}
.y5e{bottom:418.626667pt;}
.y8a{bottom:433.026667pt;}
.y25{bottom:435.266667pt;}
.y5d{bottom:436.226667pt;}
.y89{bottom:450.626667pt;}
.y24{bottom:453.026667pt;}
.y5c{bottom:453.986667pt;}
.y88{bottom:468.226667pt;}
.y23{bottom:470.626667pt;}
.y5b{bottom:471.586667pt;}
.y87{bottom:485.826667pt;}
.y22{bottom:488.226667pt;}
.y5a{bottom:489.186667pt;}
.y86{bottom:503.586667pt;}
.y21{bottom:505.826667pt;}
.y59{bottom:506.786667pt;}
.y85{bottom:521.186667pt;}
.y20{bottom:523.426667pt;}
.y58{bottom:524.386667pt;}
.y84{bottom:538.786667pt;}
.y1f{bottom:541.186667pt;}
.y57{bottom:542.146667pt;}
.y83{bottom:556.386667pt;}
.y1e{bottom:558.786667pt;}
.y56{bottom:559.746667pt;}
.y82{bottom:573.986667pt;}
.y1d{bottom:576.386667pt;}
.y55{bottom:577.373333pt;}
.y81{bottom:591.773333pt;}
.y1c{bottom:594.013333pt;}
.y54{bottom:594.973333pt;}
.y9f{bottom:604.320000pt;}
.y80{bottom:606.493333pt;}
.ybf{bottom:609.373333pt;}
.y1b{bottom:611.613333pt;}
.y53{bottom:612.573333pt;}
.ybe{bottom:626.973333pt;}
.y1a{bottom:629.373333pt;}
.y52{bottom:630.333333pt;}
.ybd{bottom:644.573333pt;}
.y19{bottom:646.973333pt;}
.y51{bottom:647.933333pt;}
.ybc{bottom:662.173333pt;}
.y18{bottom:664.573333pt;}
.y50{bottom:665.533333pt;}
.ybb{bottom:679.933333pt;}
.y17{bottom:682.173333pt;}
.y4f{bottom:683.133333pt;}
.yba{bottom:697.533333pt;}
.y16{bottom:699.773333pt;}
.y4e{bottom:700.733333pt;}
.yc0{bottom:710.080000pt;}
.yb9{bottom:712.253333pt;}
.y15{bottom:717.533333pt;}
.y4d{bottom:718.493333pt;}
.y14{bottom:735.133333pt;}
.y4c{bottom:736.093333pt;}
.y13{bottom:752.733333pt;}
.y4b{bottom:753.693333pt;}
.y12{bottom:770.333333pt;}
.y4a{bottom:771.293333pt;}
.y11{bottom:787.933333pt;}
.y49{bottom:788.893333pt;}
.y48{bottom:806.693333pt;}
.y10{bottom:807.653333pt;}
.y47{bottom:824.293333pt;}
.yf{bottom:825.253333pt;}
.y46{bottom:841.893333pt;}
.ye{bottom:843.493333pt;}
.y45{bottom:859.493333pt;}
.yd{bottom:862.373333pt;}
.y44{bottom:877.093333pt;}
.yc{bottom:883.173333pt;}
.y43{bottom:894.853333pt;}
.yb{bottom:911.333333pt;}
.y42{bottom:912.453333pt;}
.y41{bottom:930.053333pt;}
.y5{bottom:936.933333pt;}
.y40{bottom:947.653333pt;}
.y3f{bottom:965.253333pt;}
.y4{bottom:967.013333pt;}
.y3e{bottom:983.013333pt;}
.y3{bottom:994.533333pt;}
.y3d{bottom:1000.613333pt;}
.y3c{bottom:1018.213333pt;}
.y2{bottom:1021.920000pt;}
.y3b{bottom:1035.840000pt;}
.y1{bottom:1050.400000pt;}
.y3a{bottom:1060.800000pt;}
.h5{height:19.360000pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.ha{height:37.090625pt;}
.hb{height:37.479688pt;}
.h12{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h13{height:43.782500pt;}
.h11{height:47.742188pt;}
.h10{height:47.869500pt;}
.h2{height:48.768750pt;}
.h9{height:60.057813pt;}
.h8{height:63.656250pt;}
.hd{height:74.477812pt;}
.hf{height:74.605125pt;}
.hc{height:338.240000pt;}
.he{height:342.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x9{left:63.039988pt;}
.xf{left:67.519988pt;}
.x29{left:71.999988pt;}
.x2a{left:96.031988pt;}
.x4{left:105.152000pt;}
.x8{left:190.274667pt;}
.x7{left:194.754667pt;}
.x27{left:209.413322pt;}
.x26{left:216.453322pt;}
.xa{left:227.546655pt;}
.x11{left:264.546655pt;}
.x17{left:285.279988pt;}
.x18{left:291.519988pt;}
.x19{left:293.826655pt;}
.xc{left:303.746655pt;}
.x1f{left:318.946655pt;}
.x20{left:325.919988pt;}
.x15{left:328.319988pt;}
.x21{left:333.279988pt;}
.x14{left:340.799988pt;}
.x16{left:350.239988pt;}
.xd{left:366.466655pt;}
.x22{left:368.799988pt;}
.x6{left:381.181333pt;}
.x5{left:393.181333pt;}
.x1d{left:395.933322pt;}
.xb{left:396.893322pt;}
.x1a{left:398.973322pt;}
.xe{left:420.893322pt;}
.x13{left:422.586655pt;}
.x12{left:431.706655pt;}
.x1e{left:437.053322pt;}
.x23{left:445.626655pt;}
.x25{left:446.906655pt;}
.x1c{left:451.613322pt;}
.x1b{left:457.373322pt;}
.x24{left:460.986655pt;}
.x28{left:468.893322pt;}
.x10{left:684.933322pt;}
}




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