
    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_d976c2654f2f6c24c7397e79.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_abeb2d6d5f6da1d610cf07b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_8a22306a86c99e32f582c27b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a8b9d9ee391b8bd319e52b16.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_851b64fe34dd6020803526d0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f6652799bf9974af3b1fb893.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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);}
.v6{vertical-align:-69.120000px;}
.v1{vertical-align:-62.280000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.513600px;}
.ls15{letter-spacing:-0.306600px;}
.ls10{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.139800px;}
.lsc{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.039960px;}
.ls12{letter-spacing:-0.026640px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009360px;}
.ls1{letter-spacing:0.012960px;}
.ls19{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.018720px;}
.lse{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.126000px;}
.ls11{letter-spacing:0.140040px;}
.ls16{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.255960px;}
.lsd{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.468000px;}
.ls1b{letter-spacing:2.520000px;}
.ls14{letter-spacing:3.086640px;}
.ls1d{letter-spacing:3.708000px;}
.ls18{letter-spacing:16.406640px;}
.ls1f{letter-spacing:195.806640px;}
.ls6{letter-spacing:903.588000px;}
.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;}
}
.ws11{word-spacing:-16.893360px;}
.wse{word-spacing:-16.766640px;}
.wsc{word-spacing:-16.713360px;}
.wsd{word-spacing:-16.686720px;}
.ws10{word-spacing:-16.673400px;}
.ws4{word-spacing:-16.573560px;}
.wsf{word-spacing:-16.406760px;}
.ws12{word-spacing:-15.228000px;}
.wsa{word-spacing:-15.138000px;}
.ws1{word-spacing:-15.012000px;}
.ws0{word-spacing:-14.994000px;}
.ws9{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.868000px;}
.ws8{word-spacing:-13.329360px;}
.ws6{word-spacing:-13.310640px;}
.ws5{word-spacing:-10.821600px;}
.ws3{word-spacing:-10.808640px;}
.ws7{word-spacing:-8.306640px;}
.wsb{word-spacing:0.000000px;}
._31{margin-left:-6.252000px;}
._0{margin-left:-1.026000px;}
._1{width:1.536000px;}
._4{width:3.000000px;}
._5{width:4.236000px;}
._7{width:5.934000px;}
._8{width:7.140000px;}
._c{width:8.694000px;}
._d{width:9.720000px;}
._18{width:11.182320px;}
._19{width:12.204360px;}
._10{width:13.947840px;}
._11{width:15.098160px;}
._b{width:16.320000px;}
._16{width:17.795520px;}
._2{width:18.846000px;}
._3{width:19.956000px;}
._9{width:21.384000px;}
._a{width:22.440000px;}
._12{width:24.042360px;}
._e{width:25.056000px;}
._13{width:26.166240px;}
._1a{width:27.220800px;}
._15{width:28.741320px;}
._14{width:29.879640px;}
._1b{width:31.414320px;}
._29{width:32.553120px;}
._2e{width:33.787440px;}
._2b{width:35.049960px;}
._30{width:36.282960px;}
._27{width:37.462680px;}
._26{width:38.536920px;}
._25{width:40.280400px;}
._17{width:41.302440px;}
._f{width:43.038000px;}
._1e{width:44.288640px;}
._1f{width:45.446160px;}
._24{width:46.532880px;}
._23{width:47.615040px;}
._28{width:49.085040px;}
._1d{width:55.374480px;}
._1c{width:56.452680px;}
._2c{width:59.939640px;}
._2d{width:61.234440px;}
._2f{width:63.566640px;}
._32{width:64.938720px;}
._20{width:69.231960px;}
._21{width:71.242200px;}
._22{width:72.745200px;}
._2a{width:98.759640px;}
._33{width:197.100000px;}
._6{width:978.966000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.880000px;}
.fs3{font-size:38.880000px;}
.fs4{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:60.930000px;}
.y7{bottom:76.410000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.460000px;}
.y4{bottom:123.030000px;}
.y3{bottom:139.500000px;}
.yd4{bottom:160.560000px;}
.y87{bottom:167.850000px;}
.yac{bottom:170.820000px;}
.y8b{bottom:171.900000px;}
.y2f{bottom:172.350000px;}
.y6f{bottom:172.890000px;}
.yd3{bottom:176.130000px;}
.y86{bottom:185.040000px;}
.y54{bottom:186.660000px;}
.y2e{bottom:187.920000px;}
.yab{bottom:188.100000px;}
.y8a{bottom:189.090000px;}
.yca{bottom:189.900000px;}
.y6e{bottom:190.170000px;}
.yd2{bottom:191.610000px;}
.y85{bottom:202.320000px;}
.y2d{bottom:203.400000px;}
.y53{bottom:203.940000px;}
.yaa{bottom:205.380000px;}
.yc9{bottom:205.470000px;}
.y89{bottom:206.370000px;}
.yd1{bottom:207.180000px;}
.y6d{bottom:207.360000px;}
.y2c{bottom:218.970000px;}
.y84{bottom:219.600000px;}
.yc8{bottom:220.950000px;}
.y52{bottom:221.220000px;}
.ya9{bottom:222.570000px;}
.yd0{bottom:222.660000px;}
.y88{bottom:223.650000px;}
.y6c{bottom:224.640000px;}
.y2b{bottom:234.450000px;}
.yc7{bottom:236.520000px;}
.y83{bottom:236.790000px;}
.ycf{bottom:238.230000px;}
.y51{bottom:238.410000px;}
.ya8{bottom:239.850000px;}
.y6b{bottom:241.920000px;}
.y2a{bottom:250.050000px;}
.yc6{bottom:252.030000px;}
.yce{bottom:253.740000px;}
.y82{bottom:254.100000px;}
.y50{bottom:255.720000px;}
.ya7{bottom:257.160000px;}
.y6a{bottom:259.140000px;}
.y29{bottom:265.530000px;}
.yc5{bottom:267.510000px;}
.ycd{bottom:269.310000px;}
.y81{bottom:271.380000px;}
.y4f{bottom:273.000000px;}
.ya6{bottom:274.350000px;}
.y69{bottom:276.420000px;}
.y28{bottom:281.010000px;}
.ycc{bottom:284.790000px;}
.y80{bottom:288.570000px;}
.y4e{bottom:290.190000px;}
.ya5{bottom:291.630000px;}
.y68{bottom:293.610000px;}
.y27{bottom:296.580000px;}
.yc4{bottom:298.560000px;}
.ycb{bottom:299.910000px;}
.y7f{bottom:305.850000px;}
.y4d{bottom:307.470000px;}
.ya4{bottom:308.910000px;}
.y67{bottom:310.890000px;}
.y26{bottom:312.060000px;}
.yc3{bottom:314.130000px;}
.y7e{bottom:323.130000px;}
.y4c{bottom:324.660000px;}
.ya3{bottom:326.100000px;}
.y25{bottom:327.630000px;}
.y66{bottom:328.170000px;}
.yc2{bottom:329.610000px;}
.y7d{bottom:340.320000px;}
.y4b{bottom:341.940000px;}
.y24{bottom:343.110000px;}
.ya2{bottom:343.380000px;}
.yc1{bottom:345.180000px;}
.y65{bottom:345.360000px;}
.y7c{bottom:357.600000px;}
.y23{bottom:358.680000px;}
.y4a{bottom:359.220000px;}
.ya1{bottom:360.660000px;}
.y64{bottom:362.640000px;}
.y22{bottom:374.160000px;}
.y7b{bottom:374.880000px;}
.yc0{bottom:376.230000px;}
.y49{bottom:376.410000px;}
.ya0{bottom:377.850000px;}
.y63{bottom:379.920000px;}
.y21{bottom:389.730000px;}
.ybf{bottom:391.710000px;}
.y7a{bottom:392.070000px;}
.y48{bottom:393.690000px;}
.y9f{bottom:395.130000px;}
.y62{bottom:397.110000px;}
.y20{bottom:405.210000px;}
.ybe{bottom:407.280000px;}
.y79{bottom:410.340000px;}
.y47{bottom:410.970000px;}
.y9e{bottom:412.410000px;}
.y61{bottom:414.390000px;}
.y1f{bottom:420.780000px;}
.ybd{bottom:422.760000px;}
.y78{bottom:427.620000px;}
.y46{bottom:428.160000px;}
.y9d{bottom:429.600000px;}
.y60{bottom:431.670000px;}
.y1e{bottom:436.260000px;}
.ybc{bottom:438.330000px;}
.y45{bottom:445.440000px;}
.y77{bottom:445.890000px;}
.y9c{bottom:446.880000px;}
.y5f{bottom:448.860000px;}
.y1d{bottom:451.830000px;}
.ybb{bottom:453.810000px;}
.y44{bottom:462.720000px;}
.y76{bottom:463.080000px;}
.y9b{bottom:464.160000px;}
.y5e{bottom:466.140000px;}
.y1c{bottom:467.310000px;}
.yba{bottom:469.380000px;}
.y43{bottom:479.910000px;}
.y75{bottom:480.360000px;}
.y9a{bottom:481.350000px;}
.y1b{bottom:482.880000px;}
.y5d{bottom:483.420000px;}
.yb9{bottom:484.860000px;}
.y42{bottom:497.190000px;}
.y74{bottom:498.630000px;}
.yb8{bottom:500.430000px;}
.y5c{bottom:500.610000px;}
.y1a{bottom:513.960000px;}
.y41{bottom:514.500000px;}
.y73{bottom:515.850000px;}
.yb7{bottom:515.940000px;}
.y5b{bottom:517.920000px;}
.y19{bottom:529.440000px;}
.yb6{bottom:531.510000px;}
.y40{bottom:531.690000px;}
.y99{bottom:533.130000px;}
.y72{bottom:534.120000px;}
.y5a{bottom:535.200000px;}
.y18{bottom:545.010000px;}
.yb5{bottom:546.990000px;}
.y3f{bottom:548.970000px;}
.y98{bottom:550.410000px;}
.y71{bottom:551.400000px;}
.y59{bottom:552.390000px;}
.y17{bottom:560.490000px;}
.yb4{bottom:562.560000px;}
.y3e{bottom:566.250000px;}
.y97{bottom:567.600000px;}
.y70{bottom:568.680000px;}
.y58{bottom:569.670000px;}
.yd5{bottom:576.600000px;}
.yb3{bottom:578.040000px;}
.y16{bottom:579.390000px;}
.y3d{bottom:583.440000px;}
.y96{bottom:584.880000px;}
.y57{bottom:586.950000px;}
.y15{bottom:593.250000px;}
.yb2{bottom:593.610000px;}
.y3c{bottom:600.720000px;}
.y95{bottom:602.160000px;}
.y56{bottom:604.140000px;}
.y14{bottom:607.020000px;}
.yb1{bottom:609.090000px;}
.y3b{bottom:618.000000px;}
.y94{bottom:619.350000px;}
.y13{bottom:621.420000px;}
.yb0{bottom:624.660000px;}
.y3a{bottom:635.190000px;}
.y93{bottom:637.620000px;}
.y55{bottom:638.610000px;}
.yaf{bottom:640.140000px;}
.y12{bottom:643.830000px;}
.y39{bottom:652.470000px;}
.y92{bottom:654.900000px;}
.yae{bottom:655.710000px;}
.y11{bottom:655.890000px;}
.y38{bottom:669.660000px;}
.yad{bottom:671.190000px;}
.y91{bottom:672.180000px;}
.y10{bottom:673.170000px;}
.y37{bottom:686.760000px;}
.y90{bottom:689.370000px;}
.yf{bottom:690.360000px;}
.y36{bottom:702.240000px;}
.y8f{bottom:706.650000px;}
.ye{bottom:707.640000px;}
.y35{bottom:717.810000px;}
.y8e{bottom:723.930000px;}
.yd{bottom:724.920000px;}
.y34{bottom:733.290000px;}
.y8d{bottom:741.120000px;}
.yc{bottom:742.110000px;}
.y33{bottom:748.860000px;}
.y8c{bottom:758.400000px;}
.yb{bottom:759.390000px;}
.y32{bottom:764.370000px;}
.ya{bottom:776.700000px;}
.y31{bottom:779.940000px;}
.y9{bottom:793.890000px;}
.y30{bottom:795.420000px;}
.y2{bottom:822.420000px;}
.y1{bottom:837.900000px;}
.h5{height:41.823281px;}
.h6{height:49.937344px;}
.h7{height:53.896641px;}
.h2{height:56.320312px;}
.h4{height:62.703281px;}
.h3{height:74.004654px;}
.h0{height:893.070000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.369991px;}
.w0{width:629.370000px;}
.x0{left:0.000000px;}
.x1{left:85.049991px;}
.x7{left:86.759991px;}
.x3{left:89.279991px;}
.x4{left:97.559991px;}
.xc{left:111.269991px;}
.x6{left:112.979991px;}
.x8{left:121.439991px;}
.xb{left:127.559991px;}
.xa{left:138.269991px;}
.x9{left:188.399991px;}
.x5{left:247.619991px;}
.x2{left:314.699991px;}
@media print{
.v6{vertical-align:-61.440000pt;}
.v1{vertical-align:-55.360000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.456533pt;}
.ls15{letter-spacing:-0.272533pt;}
.ls10{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.124267pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.035520pt;}
.ls12{letter-spacing:-0.023680pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008320pt;}
.ls1{letter-spacing:0.011520pt;}
.ls19{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.112000pt;}
.ls11{letter-spacing:0.124480pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.227520pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.416000pt;}
.ls1b{letter-spacing:2.240000pt;}
.ls14{letter-spacing:2.743680pt;}
.ls1d{letter-spacing:3.296000pt;}
.ls18{letter-spacing:14.583680pt;}
.ls1f{letter-spacing:174.050347pt;}
.ls6{letter-spacing:803.189333pt;}
.ws11{word-spacing:-15.016320pt;}
.wse{word-spacing:-14.903680pt;}
.wsc{word-spacing:-14.856320pt;}
.wsd{word-spacing:-14.832640pt;}
.ws10{word-spacing:-14.820800pt;}
.ws4{word-spacing:-14.732053pt;}
.wsf{word-spacing:-14.583787pt;}
.ws12{word-spacing:-13.536000pt;}
.wsa{word-spacing:-13.456000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws0{word-spacing:-13.328000pt;}
.ws9{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.216000pt;}
.ws8{word-spacing:-11.848320pt;}
.ws6{word-spacing:-11.831680pt;}
.ws5{word-spacing:-9.619200pt;}
.ws3{word-spacing:-9.607680pt;}
.ws7{word-spacing:-7.383680pt;}
.wsb{word-spacing:0.000000pt;}
._31{margin-left:-5.557333pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.365333pt;}
._4{width:2.666667pt;}
._5{width:3.765333pt;}
._7{width:5.274667pt;}
._8{width:6.346667pt;}
._c{width:7.728000pt;}
._d{width:8.640000pt;}
._18{width:9.939840pt;}
._19{width:10.848320pt;}
._10{width:12.398080pt;}
._11{width:13.420587pt;}
._b{width:14.506667pt;}
._16{width:15.818240pt;}
._2{width:16.752000pt;}
._3{width:17.738667pt;}
._9{width:19.008000pt;}
._a{width:19.946667pt;}
._12{width:21.370987pt;}
._e{width:22.272000pt;}
._13{width:23.258880pt;}
._1a{width:24.196267pt;}
._15{width:25.547840pt;}
._14{width:26.559680pt;}
._1b{width:27.923840pt;}
._29{width:28.936107pt;}
._2e{width:30.033280pt;}
._2b{width:31.155520pt;}
._30{width:32.251520pt;}
._27{width:33.300160pt;}
._26{width:34.255040pt;}
._25{width:35.804800pt;}
._17{width:36.713280pt;}
._f{width:38.256000pt;}
._1e{width:39.367680pt;}
._1f{width:40.396587pt;}
._24{width:41.362560pt;}
._23{width:42.324480pt;}
._28{width:43.631147pt;}
._1d{width:49.221760pt;}
._1c{width:50.180160pt;}
._2c{width:53.279680pt;}
._2d{width:54.430613pt;}
._2f{width:56.503680pt;}
._32{width:57.723307pt;}
._20{width:61.539520pt;}
._21{width:63.326400pt;}
._22{width:64.662400pt;}
._2a{width:87.786347pt;}
._33{width:175.200000pt;}
._6{width:870.192000pt;}
.fs5{font-size:26.560000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:54.160000pt;}
.y7{bottom:67.920000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.520000pt;}
.y4{bottom:109.360000pt;}
.y3{bottom:124.000000pt;}
.yd4{bottom:142.720000pt;}
.y87{bottom:149.200000pt;}
.yac{bottom:151.840000pt;}
.y8b{bottom:152.800000pt;}
.y2f{bottom:153.200000pt;}
.y6f{bottom:153.680000pt;}
.yd3{bottom:156.560000pt;}
.y86{bottom:164.480000pt;}
.y54{bottom:165.920000pt;}
.y2e{bottom:167.040000pt;}
.yab{bottom:167.200000pt;}
.y8a{bottom:168.080000pt;}
.yca{bottom:168.800000pt;}
.y6e{bottom:169.040000pt;}
.yd2{bottom:170.320000pt;}
.y85{bottom:179.840000pt;}
.y2d{bottom:180.800000pt;}
.y53{bottom:181.280000pt;}
.yaa{bottom:182.560000pt;}
.yc9{bottom:182.640000pt;}
.y89{bottom:183.440000pt;}
.yd1{bottom:184.160000pt;}
.y6d{bottom:184.320000pt;}
.y2c{bottom:194.640000pt;}
.y84{bottom:195.200000pt;}
.yc8{bottom:196.400000pt;}
.y52{bottom:196.640000pt;}
.ya9{bottom:197.840000pt;}
.yd0{bottom:197.920000pt;}
.y88{bottom:198.800000pt;}
.y6c{bottom:199.680000pt;}
.y2b{bottom:208.400000pt;}
.yc7{bottom:210.240000pt;}
.y83{bottom:210.480000pt;}
.ycf{bottom:211.760000pt;}
.y51{bottom:211.920000pt;}
.ya8{bottom:213.200000pt;}
.y6b{bottom:215.040000pt;}
.y2a{bottom:222.266667pt;}
.yc6{bottom:224.026667pt;}
.yce{bottom:225.546667pt;}
.y82{bottom:225.866667pt;}
.y50{bottom:227.306667pt;}
.ya7{bottom:228.586667pt;}
.y6a{bottom:230.346667pt;}
.y29{bottom:236.026667pt;}
.yc5{bottom:237.786667pt;}
.ycd{bottom:239.386667pt;}
.y81{bottom:241.226667pt;}
.y4f{bottom:242.666667pt;}
.ya6{bottom:243.866667pt;}
.y69{bottom:245.706667pt;}
.y28{bottom:249.786667pt;}
.ycc{bottom:253.146667pt;}
.y80{bottom:256.506667pt;}
.y4e{bottom:257.946667pt;}
.ya5{bottom:259.226667pt;}
.y68{bottom:260.986667pt;}
.y27{bottom:263.626667pt;}
.yc4{bottom:265.386667pt;}
.ycb{bottom:266.586667pt;}
.y7f{bottom:271.866667pt;}
.y4d{bottom:273.306667pt;}
.ya4{bottom:274.586667pt;}
.y67{bottom:276.346667pt;}
.y26{bottom:277.386667pt;}
.yc3{bottom:279.226667pt;}
.y7e{bottom:287.226667pt;}
.y4c{bottom:288.586667pt;}
.ya3{bottom:289.866667pt;}
.y25{bottom:291.226667pt;}
.y66{bottom:291.706667pt;}
.yc2{bottom:292.986667pt;}
.y7d{bottom:302.506667pt;}
.y4b{bottom:303.946667pt;}
.y24{bottom:304.986667pt;}
.ya2{bottom:305.226667pt;}
.yc1{bottom:306.826667pt;}
.y65{bottom:306.986667pt;}
.y7c{bottom:317.866667pt;}
.y23{bottom:318.826667pt;}
.y4a{bottom:319.306667pt;}
.ya1{bottom:320.586667pt;}
.y64{bottom:322.346667pt;}
.y22{bottom:332.586667pt;}
.y7b{bottom:333.226667pt;}
.yc0{bottom:334.426667pt;}
.y49{bottom:334.586667pt;}
.ya0{bottom:335.866667pt;}
.y63{bottom:337.706667pt;}
.y21{bottom:346.426667pt;}
.ybf{bottom:348.186667pt;}
.y7a{bottom:348.506667pt;}
.y48{bottom:349.946667pt;}
.y9f{bottom:351.226667pt;}
.y62{bottom:352.986667pt;}
.y20{bottom:360.186667pt;}
.ybe{bottom:362.026667pt;}
.y79{bottom:364.746667pt;}
.y47{bottom:365.306667pt;}
.y9e{bottom:366.586667pt;}
.y61{bottom:368.346667pt;}
.y1f{bottom:374.026667pt;}
.ybd{bottom:375.786667pt;}
.y78{bottom:380.106667pt;}
.y46{bottom:380.586667pt;}
.y9d{bottom:381.866667pt;}
.y60{bottom:383.706667pt;}
.y1e{bottom:387.786667pt;}
.ybc{bottom:389.626667pt;}
.y45{bottom:395.946667pt;}
.y77{bottom:396.346667pt;}
.y9c{bottom:397.226667pt;}
.y5f{bottom:398.986667pt;}
.y1d{bottom:401.626667pt;}
.ybb{bottom:403.386667pt;}
.y44{bottom:411.306667pt;}
.y76{bottom:411.626667pt;}
.y9b{bottom:412.586667pt;}
.y5e{bottom:414.346667pt;}
.y1c{bottom:415.386667pt;}
.yba{bottom:417.226667pt;}
.y43{bottom:426.586667pt;}
.y75{bottom:426.986667pt;}
.y9a{bottom:427.866667pt;}
.y1b{bottom:429.226667pt;}
.y5d{bottom:429.706667pt;}
.yb9{bottom:430.986667pt;}
.y42{bottom:441.946667pt;}
.y74{bottom:443.226667pt;}
.yb8{bottom:444.826667pt;}
.y5c{bottom:444.986667pt;}
.y1a{bottom:456.853333pt;}
.y41{bottom:457.333333pt;}
.y73{bottom:458.533333pt;}
.yb7{bottom:458.613333pt;}
.y5b{bottom:460.373333pt;}
.y19{bottom:470.613333pt;}
.yb6{bottom:472.453333pt;}
.y40{bottom:472.613333pt;}
.y99{bottom:473.893333pt;}
.y72{bottom:474.773333pt;}
.y5a{bottom:475.733333pt;}
.y18{bottom:484.453333pt;}
.yb5{bottom:486.213333pt;}
.y3f{bottom:487.973333pt;}
.y98{bottom:489.253333pt;}
.y71{bottom:490.133333pt;}
.y59{bottom:491.013333pt;}
.y17{bottom:498.213333pt;}
.yb4{bottom:500.053333pt;}
.y3e{bottom:503.333333pt;}
.y97{bottom:504.533333pt;}
.y70{bottom:505.493333pt;}
.y58{bottom:506.373333pt;}
.yd5{bottom:512.533333pt;}
.yb3{bottom:513.813333pt;}
.y16{bottom:515.013333pt;}
.y3d{bottom:518.613333pt;}
.y96{bottom:519.893333pt;}
.y57{bottom:521.733333pt;}
.y15{bottom:527.333333pt;}
.yb2{bottom:527.653333pt;}
.y3c{bottom:533.973333pt;}
.y95{bottom:535.253333pt;}
.y56{bottom:537.013333pt;}
.y14{bottom:539.573333pt;}
.yb1{bottom:541.413333pt;}
.y3b{bottom:549.333333pt;}
.y94{bottom:550.533333pt;}
.y13{bottom:552.373333pt;}
.yb0{bottom:555.253333pt;}
.y3a{bottom:564.613333pt;}
.y93{bottom:566.773333pt;}
.y55{bottom:567.653333pt;}
.yaf{bottom:569.013333pt;}
.y12{bottom:572.293333pt;}
.y39{bottom:579.973333pt;}
.y92{bottom:582.133333pt;}
.yae{bottom:582.853333pt;}
.y11{bottom:583.013333pt;}
.y38{bottom:595.253333pt;}
.yad{bottom:596.613333pt;}
.y91{bottom:597.493333pt;}
.y10{bottom:598.373333pt;}
.y37{bottom:610.453333pt;}
.y90{bottom:612.773333pt;}
.yf{bottom:613.653333pt;}
.y36{bottom:624.213333pt;}
.y8f{bottom:628.133333pt;}
.ye{bottom:629.013333pt;}
.y35{bottom:638.053333pt;}
.y8e{bottom:643.493333pt;}
.yd{bottom:644.373333pt;}
.y34{bottom:651.813333pt;}
.y8d{bottom:658.773333pt;}
.yc{bottom:659.653333pt;}
.y33{bottom:665.653333pt;}
.y8c{bottom:674.133333pt;}
.yb{bottom:675.013333pt;}
.y32{bottom:679.440000pt;}
.ya{bottom:690.400000pt;}
.y31{bottom:693.280000pt;}
.y9{bottom:705.680000pt;}
.y30{bottom:707.040000pt;}
.y2{bottom:731.040000pt;}
.y1{bottom:744.800000pt;}
.h5{height:37.176250pt;}
.h6{height:44.388750pt;}
.h7{height:47.908125pt;}
.h2{height:50.062500pt;}
.h4{height:55.736250pt;}
.h3{height:65.781915pt;}
.h0{height:793.840000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.439992pt;}
.w0{width:559.440000pt;}
.x0{left:0.000000pt;}
.x1{left:75.599992pt;}
.x7{left:77.119992pt;}
.x3{left:79.359992pt;}
.x4{left:86.719992pt;}
.xc{left:98.906658pt;}
.x6{left:100.426658pt;}
.x8{left:107.946658pt;}
.xb{left:113.386658pt;}
.xa{left:122.906658pt;}
.x9{left:167.466658pt;}
.x5{left:220.106658pt;}
.x2{left:279.733325pt;}
}




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