
    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_00f9ec46933c0da0cb392062.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_70323bf60183c34548d90edc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_d01d78f200cea40293634faf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_3a4e3369695572114d1d64a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_18b50294525c4fdd6acef284.woff2')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_570291fa46f5fe282e358c0b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4cb02e0f811e2c9cb0da6e40.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_718913027fca67fdf08edc80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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);}
.v4{vertical-align:-33.120000px;}
.v3{vertical-align:-24.120000px;}
.v2{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.000000px;}
.v1{vertical-align:24.120000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.342000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls1a{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.126000px;}
.ls6{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.027360px;}
.ls1d{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.lse{letter-spacing:0.021960px;}
.ls17{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.148200px;}
.ls0{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.620000px;}
.ls19{letter-spacing:3.420000px;}
.ls10{letter-spacing:3.780000px;}
.lsf{letter-spacing:3.960000px;}
.ls14{letter-spacing:7.380000px;}
.ls1{letter-spacing:9.900000px;}
.ls11{letter-spacing:10.440000px;}
.ls22{letter-spacing:16.406640px;}
.ls21{letter-spacing:25.308000px;}
.ls20{letter-spacing:52.308000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.wsc{word-spacing:-16.290000px;}
.ws15{word-spacing:-15.030000px;}
.ws4{word-spacing:-14.220000px;}
.ws3{word-spacing:-14.192640px;}
.ws7{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.752000px;}
.ws14{word-spacing:-13.644000px;}
.wse{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.ws5{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.374000px;}
.wsd{word-spacing:-13.356000px;}
.ws13{word-spacing:-13.248000px;}
.wsf{word-spacing:-13.158000px;}
.ws8{word-spacing:-9.000000px;}
.ws10{word-spacing:-8.640000px;}
.wsb{word-spacing:0.000000px;}
._7{margin-left:-1.020000px;}
._1{width:1.035360px;}
._b{width:2.708640px;}
._c{width:3.726000px;}
._10{width:4.740000px;}
._3{width:5.784000px;}
._2{width:6.840000px;}
._a{width:8.532000px;}
._8{width:9.612000px;}
._9{width:10.862640px;}
._e{width:13.770000px;}
._11{width:15.336000px;}
._4{width:19.062000px;}
._5{width:20.472000px;}
._f{width:21.804000px;}
._d{width:1549.410000px;}
._6{width:1606.740000px;}
._0{width:2625.120000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,113,187);}
.fc1{color:rgb(23,111,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs5{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:81.000000px;}
.fs7{font-size:83.880000px;}
.y34{bottom:-17.370000px;}
.y0{bottom:0.000000px;}
.y33{bottom:1.440000px;}
.y2e{bottom:5.038500px;}
.ya0{bottom:10.708500px;}
.y9c{bottom:10.710000px;}
.ya4{bottom:10.798500px;}
.y94{bottom:10.800000px;}
.y91{bottom:10.890000px;}
.ya1{bottom:10.978500px;}
.y9d{bottom:10.980000px;}
.ya5{bottom:11.068500px;}
.y95{bottom:11.070000px;}
.y92{bottom:11.520000px;}
.y8f{bottom:23.760000px;}
.yae{bottom:28.080000px;}
.y2d{bottom:38.641500px;}
.yaf{bottom:39.780000px;}
.yad{bottom:51.390000px;}
.y2{bottom:58.260000px;}
.y31{bottom:61.860000px;}
.yaa{bottom:63.900000px;}
.y1{bottom:77.250000px;}
.ya3{bottom:81.571500px;}
.y63{bottom:87.600000px;}
.yc8{bottom:88.140000px;}
.y2c{bottom:105.420000px;}
.ya2{bottom:105.691500px;}
.y70{bottom:110.640000px;}
.y62{bottom:110.910000px;}
.yc7{bottom:111.090000px;}
.y2b{bottom:128.730000px;}
.y9f{bottom:129.721500px;}
.y61{bottom:133.860000px;}
.y6f{bottom:134.130000px;}
.yc6{bottom:134.670000px;}
.y2a{bottom:152.040000px;}
.y9e{bottom:153.750000px;}
.y60{bottom:157.170000px;}
.y6e{bottom:157.440000px;}
.yc5{bottom:157.980000px;}
.y29{bottom:175.350000px;}
.y9b{bottom:177.780000px;}
.y5f{bottom:180.750000px;}
.yc4{bottom:181.290000px;}
.y28{bottom:198.300000px;}
.y9a{bottom:201.810000px;}
.y7b{bottom:203.790000px;}
.y5e{bottom:204.060000px;}
.yc3{bottom:204.510000px;}
.y27{bottom:221.790000px;}
.y99{bottom:225.840000px;}
.y7a{bottom:227.010000px;}
.y5d{bottom:227.280000px;}
.yc2{bottom:227.820000px;}
.y26{bottom:245.370000px;}
.y98{bottom:249.870000px;}
.y5c{bottom:250.320000px;}
.y6d{bottom:250.590000px;}
.yc1{bottom:251.130000px;}
.y25{bottom:268.950000px;}
.y78{bottom:273.630000px;}
.y5b{bottom:273.900000px;}
.yc0{bottom:274.350000px;}
.y24{bottom:292.620000px;}
.ycd{bottom:295.230000px;}
.y5a{bottom:297.120000px;}
.ybf{bottom:297.390000px;}
.y97{bottom:297.930000px;}
.y23{bottom:315.930000px;}
.ycc{bottom:319.980000px;}
.y59{bottom:320.430000px;}
.ybe{bottom:320.970000px;}
.y96{bottom:321.960000px;}
.y22{bottom:339.240000px;}
.ycb{bottom:343.290000px;}
.y58{bottom:343.740000px;}
.ybd{bottom:344.280000px;}
.y93{bottom:345.990000px;}
.y21{bottom:362.460000px;}
.y6c{bottom:366.780000px;}
.y57{bottom:367.050000px;}
.ybc{bottom:367.500000px;}
.y8e{bottom:370.020000px;}
.y20{bottom:385.770000px;}
.y56{bottom:390.000000px;}
.y6b{bottom:390.270000px;}
.ybb{bottom:390.810000px;}
.y90{bottom:395.580000px;}
.yba{bottom:403.770000px;}
.y1f{bottom:409.080000px;}
.y77{bottom:413.310000px;}
.y55{bottom:413.580000px;}
.yb9{bottom:427.800000px;}
.y8d{bottom:430.950000px;}
.y1e{bottom:432.390000px;}
.y54{bottom:436.890000px;}
.yb8{bottom:451.920000px;}
.y8c{bottom:454.260000px;}
.y1d{bottom:455.610000px;}
.y53{bottom:460.200000px;}
.yb7{bottom:475.980000px;}
.y8b{bottom:477.600000px;}
.y1c{bottom:479.310000px;}
.y52{bottom:483.450000px;}
.yb6{bottom:500.010000px;}
.y8a{bottom:500.820000px;}
.y1b{bottom:503.070000px;}
.y51{bottom:506.760000px;}
.yb5{bottom:524.040000px;}
.y89{bottom:524.130000px;}
.y1a{bottom:527.190000px;}
.y50{bottom:530.070000px;}
.y88{bottom:547.440000px;}
.yb4{bottom:548.070000px;}
.y4f{bottom:553.290000px;}
.y19{bottom:559.410000px;}
.y87{bottom:570.660000px;}
.yb3{bottom:572.100000px;}
.y76{bottom:576.330000px;}
.y4e{bottom:576.600000px;}
.y18{bottom:582.720000px;}
.y86{bottom:593.970000px;}
.yb2{bottom:596.130000px;}
.y4d{bottom:599.910000px;}
.y17{bottom:606.030000px;}
.y85{bottom:617.280000px;}
.yb1{bottom:620.160000px;}
.y4c{bottom:622.950000px;}
.y6a{bottom:623.220000px;}
.y16{bottom:629.250000px;}
.y84{bottom:640.590000px;}
.yb0{bottom:644.190000px;}
.y4b{bottom:646.170000px;}
.y69{bottom:646.440000px;}
.y15{bottom:652.560000px;}
.y83{bottom:663.810000px;}
.ya9{bottom:668.220000px;}
.y4a{bottom:669.480000px;}
.y75{bottom:669.750000px;}
.y14{bottom:677.940000px;}
.y82{bottom:686.850000px;}
.y49{bottom:693.060000px;}
.y13{bottom:709.890000px;}
.y81{bottom:710.160000px;}
.y74{bottom:716.100000px;}
.y48{bottom:716.370000px;}
.y80{bottom:733.740000px;}
.y73{bottom:739.320000px;}
.y47{bottom:739.590000px;}
.y12{bottom:746.070000px;}
.yac{bottom:750.390000px;}
.y7f{bottom:756.960000px;}
.y79{bottom:762.630000px;}
.y46{bottom:762.900000px;}
.yab{bottom:774.420000px;}
.y11{bottom:780.180000px;}
.y45{bottom:786.210000px;}
.y7e{bottom:786.300000px;}
.y7d{bottom:803.580000px;}
.y44{bottom:809.160000px;}
.y68{bottom:809.430000px;}
.y10{bottom:812.760000px;}
.y7c{bottom:823.560000px;}
.y43{bottom:832.740000px;}
.yc{bottom:846.510000px;}
.yf{bottom:847.860000px;}
.y42{bottom:856.050000px;}
.y67{bottom:862.080000px;}
.ye{bottom:872.340000px;}
.y72{bottom:879.090000px;}
.y41{bottom:879.360000px;}
.yb{bottom:881.430000px;}
.yd{bottom:895.290000px;}
.y66{bottom:902.310000px;}
.y40{bottom:902.580000px;}
.ya{bottom:920.130000px;}
.y3f{bottom:925.890000px;}
.y9{bottom:947.940000px;}
.y3e{bottom:949.200000px;}
.y3d{bottom:972.510000px;}
.y8{bottom:977.730000px;}
.y3c{bottom:995.460000px;}
.y65{bottom:995.730000px;}
.y7{bottom:1007.520000px;}
.y3b{bottom:1019.070000px;}
.y6{bottom:1039.590000px;}
.y71{bottom:1042.110000px;}
.y3a{bottom:1042.380000px;}
.yca{bottom:1065.330000px;}
.y39{bottom:1065.600000px;}
.y5{bottom:1076.400000px;}
.ya8{bottom:1088.640000px;}
.y38{bottom:1088.910000px;}
.y37{bottom:1112.220000px;}
.y4{bottom:1113.210000px;}
.yc9{bottom:1135.260000px;}
.y36{bottom:1135.530000px;}
.ya7{bottom:1141.560000px;}
.y3{bottom:1153.350000px;}
.y64{bottom:1158.480000px;}
.y35{bottom:1158.750000px;}
.ya6{bottom:1164.780000px;}
.y30{bottom:1174.680000px;}
.y2f{bottom:1193.670000px;}
.y32{bottom:1194.750000px;}
.h15{height:16.740000px;}
.h12{height:21.238500px;}
.h1f{height:23.218500px;}
.h1e{height:23.220000px;}
.h23{height:23.250000px;}
.h20{height:23.308500px;}
.h1d{height:23.310000px;}
.h1a{height:23.580000px;}
.h1c{height:24.750000px;}
.h17{height:35.332031px;}
.h18{height:36.281250px;}
.h8{height:48.254063px;}
.h19{height:49.140000px;}
.he{height:52.971680px;}
.h10{height:52.998047px;}
.hf{height:54.421875px;}
.ha{height:55.796836px;}
.h24{height:56.214844px;}
.h9{height:57.324375px;}
.hb{height:58.975137px;}
.h14{height:59.004492px;}
.h11{height:59.434453px;}
.h16{height:59.452031px;}
.h1b{height:60.401250px;}
.h5{height:60.589687px;}
.h25{height:62.585859px;}
.h13{height:64.625449px;}
.h2{height:64.657617px;}
.h6{height:66.394687px;}
.h3{height:70.628906px;}
.hc{height:70.664062px;}
.h4{height:72.562500px;}
.h22{height:81.360000px;}
.h7{height:81.632812px;}
.hd{height:84.535312px;}
.h21{height:129.420000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:24.750000px;}
.w5{width:65.610000px;}
.w7{width:65.970000px;}
.wd{width:71.280000px;}
.w11{width:71.640000px;}
.we{width:93.780000px;}
.w12{width:94.140000px;}
.wc{width:114.780000px;}
.w10{width:115.140000px;}
.w8{width:137.250000px;}
.w4{width:150.780000px;}
.wf{width:164.280000px;}
.w13{width:164.640000px;}
.w6{width:170.310000px;}
.wa{width:187.140000px;}
.wb{width:259.140000px;}
.w3{width:340.710000px;}
.w9{width:446.640000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x1d{left:4.500000px;}
.x29{left:7.740000px;}
.x1f{left:10.800000px;}
.x2{left:37.530000px;}
.x10{left:47.250000px;}
.x24{left:50.220000px;}
.x1a{left:54.000000px;}
.x18{left:55.080000px;}
.x14{left:56.700000px;}
.x13{left:60.030000px;}
.x17{left:62.460000px;}
.x15{left:68.310000px;}
.xd{left:71.100000px;}
.x19{left:73.710000px;}
.x3{left:79.290000px;}
.x16{left:85.950000px;}
.x2f{left:156.810000px;}
.x25{left:162.300000px;}
.x2e{left:240.420000px;}
.x8{left:244.110000px;}
.x27{left:246.090000px;}
.xe{left:253.200000px;}
.x28{left:255.000000px;}
.x26{left:266.070000px;}
.x4{left:270.030000px;}
.x7{left:290.550000px;}
.x30{left:294.420000px;}
.x2d{left:342.930000px;}
.x34{left:346.350000px;}
.x20{left:355.530000px;}
.x2c{left:359.430000px;}
.x22{left:362.670000px;}
.x36{left:369.420000px;}
.xf{left:383.550000px;}
.x1b{left:394.890000px;}
.x35{left:403.170000px;}
.x2a{left:406.590000px;}
.x32{left:410.280000px;}
.x11{left:412.170000px;}
.x21{left:418.200000px;}
.x1c{left:434.040000px;}
.x1{left:438.810000px;}
.x12{left:448.890000px;}
.x5{left:450.420000px;}
.xc{left:452.310000px;}
.x2b{left:472.560000px;}
.x31{left:481.920000px;}
.xb{left:506.400000px;}
.x1e{left:523.230000px;}
.xa{left:527.460000px;}
.x33{left:576.780000px;}
.x9{left:671.940000px;}
.x23{left:797.670000px;}
.x6{left:856.650000px;}
@media print{
.v4{vertical-align:-29.440000pt;}
.v3{vertical-align:-21.440000pt;}
.v2{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.304000pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.112000pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.024320pt;}
.ls1d{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.019520pt;}
.ls17{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.131733pt;}
.ls0{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.440000pt;}
.ls19{letter-spacing:3.040000pt;}
.ls10{letter-spacing:3.360000pt;}
.lsf{letter-spacing:3.520000pt;}
.ls14{letter-spacing:6.560000pt;}
.ls1{letter-spacing:8.800000pt;}
.ls11{letter-spacing:9.280000pt;}
.ls22{letter-spacing:14.583680pt;}
.ls21{letter-spacing:22.496000pt;}
.ls20{letter-spacing:46.496000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.wsc{word-spacing:-14.480000pt;}
.ws15{word-spacing:-13.360000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.615680pt;}
.ws7{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.224000pt;}
.ws14{word-spacing:-12.128000pt;}
.wse{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.ws5{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.888000pt;}
.wsd{word-spacing:-11.872000pt;}
.ws13{word-spacing:-11.776000pt;}
.wsf{word-spacing:-11.696000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws10{word-spacing:-7.680000pt;}
.wsb{word-spacing:0.000000pt;}
._7{margin-left:-0.906667pt;}
._1{width:0.920320pt;}
._b{width:2.407680pt;}
._c{width:3.312000pt;}
._10{width:4.213333pt;}
._3{width:5.141333pt;}
._2{width:6.080000pt;}
._a{width:7.584000pt;}
._8{width:8.544000pt;}
._9{width:9.655680pt;}
._e{width:12.240000pt;}
._11{width:13.632000pt;}
._4{width:16.944000pt;}
._5{width:18.197333pt;}
._f{width:19.381333pt;}
._d{width:1377.253333pt;}
._6{width:1428.213333pt;}
._0{width:2333.440000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:72.000000pt;}
.fs7{font-size:74.560000pt;}
.y34{bottom:-15.440000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:1.280000pt;}
.y2e{bottom:4.478667pt;}
.ya0{bottom:9.518667pt;}
.y9c{bottom:9.520000pt;}
.ya4{bottom:9.598667pt;}
.y94{bottom:9.600000pt;}
.y91{bottom:9.680000pt;}
.ya1{bottom:9.758667pt;}
.y9d{bottom:9.760000pt;}
.ya5{bottom:9.838667pt;}
.y95{bottom:9.840000pt;}
.y92{bottom:10.240000pt;}
.y8f{bottom:21.120000pt;}
.yae{bottom:24.960000pt;}
.y2d{bottom:34.348000pt;}
.yaf{bottom:35.360000pt;}
.yad{bottom:45.680000pt;}
.y2{bottom:51.786667pt;}
.y31{bottom:54.986667pt;}
.yaa{bottom:56.800000pt;}
.y1{bottom:68.666667pt;}
.ya3{bottom:72.508000pt;}
.y63{bottom:77.866667pt;}
.yc8{bottom:78.346667pt;}
.y2c{bottom:93.706667pt;}
.ya2{bottom:93.948000pt;}
.y70{bottom:98.346667pt;}
.y62{bottom:98.586667pt;}
.yc7{bottom:98.746667pt;}
.y2b{bottom:114.426667pt;}
.y9f{bottom:115.308000pt;}
.y61{bottom:118.986667pt;}
.y6f{bottom:119.226667pt;}
.yc6{bottom:119.706667pt;}
.y2a{bottom:135.146667pt;}
.y9e{bottom:136.666667pt;}
.y60{bottom:139.706667pt;}
.y6e{bottom:139.946667pt;}
.yc5{bottom:140.426667pt;}
.y29{bottom:155.866667pt;}
.y9b{bottom:158.026667pt;}
.y5f{bottom:160.666667pt;}
.yc4{bottom:161.146667pt;}
.y28{bottom:176.266667pt;}
.y9a{bottom:179.386667pt;}
.y7b{bottom:181.146667pt;}
.y5e{bottom:181.386667pt;}
.yc3{bottom:181.786667pt;}
.y27{bottom:197.146667pt;}
.y99{bottom:200.746667pt;}
.y7a{bottom:201.786667pt;}
.y5d{bottom:202.026667pt;}
.yc2{bottom:202.506667pt;}
.y26{bottom:218.106667pt;}
.y98{bottom:222.106667pt;}
.y5c{bottom:222.506667pt;}
.y6d{bottom:222.746667pt;}
.yc1{bottom:223.226667pt;}
.y25{bottom:239.066667pt;}
.y78{bottom:243.226667pt;}
.y5b{bottom:243.466667pt;}
.yc0{bottom:243.866667pt;}
.y24{bottom:260.106667pt;}
.ycd{bottom:262.426667pt;}
.y5a{bottom:264.106667pt;}
.ybf{bottom:264.346667pt;}
.y97{bottom:264.826667pt;}
.y23{bottom:280.826667pt;}
.ycc{bottom:284.426667pt;}
.y59{bottom:284.826667pt;}
.ybe{bottom:285.306667pt;}
.y96{bottom:286.186667pt;}
.y22{bottom:301.546667pt;}
.ycb{bottom:305.146667pt;}
.y58{bottom:305.546667pt;}
.ybd{bottom:306.026667pt;}
.y93{bottom:307.546667pt;}
.y21{bottom:322.186667pt;}
.y6c{bottom:326.026667pt;}
.y57{bottom:326.266667pt;}
.ybc{bottom:326.666667pt;}
.y8e{bottom:328.906667pt;}
.y20{bottom:342.906667pt;}
.y56{bottom:346.666667pt;}
.y6b{bottom:346.906667pt;}
.ybb{bottom:347.386667pt;}
.y90{bottom:351.626667pt;}
.yba{bottom:358.906667pt;}
.y1f{bottom:363.626667pt;}
.y77{bottom:367.386667pt;}
.y55{bottom:367.626667pt;}
.yb9{bottom:380.266667pt;}
.y8d{bottom:383.066667pt;}
.y1e{bottom:384.346667pt;}
.y54{bottom:388.346667pt;}
.yb8{bottom:401.706667pt;}
.y8c{bottom:403.786667pt;}
.y1d{bottom:404.986667pt;}
.y53{bottom:409.066667pt;}
.yb7{bottom:423.093333pt;}
.y8b{bottom:424.533333pt;}
.y1c{bottom:426.053333pt;}
.y52{bottom:429.733333pt;}
.yb6{bottom:444.453333pt;}
.y8a{bottom:445.173333pt;}
.y1b{bottom:447.173333pt;}
.y51{bottom:450.453333pt;}
.yb5{bottom:465.813333pt;}
.y89{bottom:465.893333pt;}
.y1a{bottom:468.613333pt;}
.y50{bottom:471.173333pt;}
.y88{bottom:486.613333pt;}
.yb4{bottom:487.173333pt;}
.y4f{bottom:491.813333pt;}
.y19{bottom:497.253333pt;}
.y87{bottom:507.253333pt;}
.yb3{bottom:508.533333pt;}
.y76{bottom:512.293333pt;}
.y4e{bottom:512.533333pt;}
.y18{bottom:517.973333pt;}
.y86{bottom:527.973333pt;}
.yb2{bottom:529.893333pt;}
.y4d{bottom:533.253333pt;}
.y17{bottom:538.693333pt;}
.y85{bottom:548.693333pt;}
.yb1{bottom:551.253333pt;}
.y4c{bottom:553.733333pt;}
.y6a{bottom:553.973333pt;}
.y16{bottom:559.333333pt;}
.y84{bottom:569.413333pt;}
.yb0{bottom:572.613333pt;}
.y4b{bottom:574.373333pt;}
.y69{bottom:574.613333pt;}
.y15{bottom:580.053333pt;}
.y83{bottom:590.053333pt;}
.ya9{bottom:593.973333pt;}
.y4a{bottom:595.093333pt;}
.y75{bottom:595.333333pt;}
.y14{bottom:602.613333pt;}
.y82{bottom:610.533333pt;}
.y49{bottom:616.053333pt;}
.y13{bottom:631.013333pt;}
.y81{bottom:631.253333pt;}
.y74{bottom:636.533333pt;}
.y48{bottom:636.773333pt;}
.y80{bottom:652.213333pt;}
.y73{bottom:657.173333pt;}
.y47{bottom:657.413333pt;}
.y12{bottom:663.173333pt;}
.yac{bottom:667.013333pt;}
.y7f{bottom:672.853333pt;}
.y79{bottom:677.893333pt;}
.y46{bottom:678.133333pt;}
.yab{bottom:688.373333pt;}
.y11{bottom:693.493333pt;}
.y45{bottom:698.853333pt;}
.y7e{bottom:698.933333pt;}
.y7d{bottom:714.293333pt;}
.y44{bottom:719.253333pt;}
.y68{bottom:719.493333pt;}
.y10{bottom:722.453333pt;}
.y7c{bottom:732.053333pt;}
.y43{bottom:740.213333pt;}
.yc{bottom:752.453333pt;}
.yf{bottom:753.653333pt;}
.y42{bottom:760.933333pt;}
.y67{bottom:766.293333pt;}
.ye{bottom:775.413333pt;}
.y72{bottom:781.413333pt;}
.y41{bottom:781.653333pt;}
.yb{bottom:783.493333pt;}
.yd{bottom:795.813333pt;}
.y66{bottom:802.053333pt;}
.y40{bottom:802.293333pt;}
.ya{bottom:817.893333pt;}
.y3f{bottom:823.013333pt;}
.y9{bottom:842.613333pt;}
.y3e{bottom:843.733333pt;}
.y3d{bottom:864.453333pt;}
.y8{bottom:869.093333pt;}
.y3c{bottom:884.853333pt;}
.y65{bottom:885.093333pt;}
.y7{bottom:895.573333pt;}
.y3b{bottom:905.840000pt;}
.y6{bottom:924.080000pt;}
.y71{bottom:926.320000pt;}
.y3a{bottom:926.560000pt;}
.yca{bottom:946.960000pt;}
.y39{bottom:947.200000pt;}
.y5{bottom:956.800000pt;}
.ya8{bottom:967.680000pt;}
.y38{bottom:967.920000pt;}
.y37{bottom:988.640000pt;}
.y4{bottom:989.520000pt;}
.yc9{bottom:1009.120000pt;}
.y36{bottom:1009.360000pt;}
.ya7{bottom:1014.720000pt;}
.y3{bottom:1025.200000pt;}
.y64{bottom:1029.760000pt;}
.y35{bottom:1030.000000pt;}
.ya6{bottom:1035.360000pt;}
.y30{bottom:1044.160000pt;}
.y2f{bottom:1061.040000pt;}
.y32{bottom:1062.000000pt;}
.h15{height:14.880000pt;}
.h12{height:18.878667pt;}
.h1f{height:20.638667pt;}
.h1e{height:20.640000pt;}
.h23{height:20.666667pt;}
.h20{height:20.718667pt;}
.h1d{height:20.720000pt;}
.h1a{height:20.960000pt;}
.h1c{height:22.000000pt;}
.h17{height:31.406250pt;}
.h18{height:32.250000pt;}
.h8{height:42.892500pt;}
.h19{height:43.680000pt;}
.he{height:47.085938pt;}
.h10{height:47.109375pt;}
.hf{height:48.375000pt;}
.ha{height:49.597187pt;}
.h24{height:49.968750pt;}
.h9{height:50.955000pt;}
.hb{height:52.422344pt;}
.h14{height:52.448437pt;}
.h11{height:52.830625pt;}
.h16{height:52.846250pt;}
.h1b{height:53.690000pt;}
.h5{height:53.857500pt;}
.h25{height:55.631875pt;}
.h13{height:57.444844pt;}
.h2{height:57.473437pt;}
.h6{height:59.017500pt;}
.h3{height:62.781250pt;}
.hc{height:62.812500pt;}
.h4{height:64.500000pt;}
.h22{height:72.320000pt;}
.h7{height:72.562500pt;}
.hd{height:75.142500pt;}
.h21{height:115.040000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:22.000000pt;}
.w5{width:58.320000pt;}
.w7{width:58.640000pt;}
.wd{width:63.360000pt;}
.w11{width:63.680000pt;}
.we{width:83.360000pt;}
.w12{width:83.680000pt;}
.wc{width:102.026667pt;}
.w10{width:102.346667pt;}
.w8{width:122.000000pt;}
.w4{width:134.026667pt;}
.wf{width:146.026667pt;}
.w13{width:146.346667pt;}
.w6{width:151.386667pt;}
.wa{width:166.346667pt;}
.wb{width:230.346667pt;}
.w3{width:302.853333pt;}
.w9{width:397.013333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:4.000000pt;}
.x29{left:6.880000pt;}
.x1f{left:9.600000pt;}
.x2{left:33.360000pt;}
.x10{left:42.000000pt;}
.x24{left:44.640000pt;}
.x1a{left:48.000000pt;}
.x18{left:48.960000pt;}
.x14{left:50.400000pt;}
.x13{left:53.360000pt;}
.x17{left:55.520000pt;}
.x15{left:60.720000pt;}
.xd{left:63.200000pt;}
.x19{left:65.520000pt;}
.x3{left:70.480000pt;}
.x16{left:76.400000pt;}
.x2f{left:139.386667pt;}
.x25{left:144.266667pt;}
.x2e{left:213.706667pt;}
.x8{left:216.986667pt;}
.x27{left:218.746667pt;}
.xe{left:225.066667pt;}
.x28{left:226.666667pt;}
.x26{left:236.506667pt;}
.x4{left:240.026667pt;}
.x7{left:258.266667pt;}
.x30{left:261.706667pt;}
.x2d{left:304.826667pt;}
.x34{left:307.866667pt;}
.x20{left:316.026667pt;}
.x2c{left:319.493333pt;}
.x22{left:322.373333pt;}
.x36{left:328.373333pt;}
.xf{left:340.933333pt;}
.x1b{left:351.013333pt;}
.x35{left:358.373333pt;}
.x2a{left:361.413333pt;}
.x32{left:364.693333pt;}
.x11{left:366.373333pt;}
.x21{left:371.733333pt;}
.x1c{left:385.813333pt;}
.x1{left:390.053333pt;}
.x12{left:399.013333pt;}
.x5{left:400.373333pt;}
.xc{left:402.053333pt;}
.x2b{left:420.053333pt;}
.x31{left:428.373333pt;}
.xb{left:450.133333pt;}
.x1e{left:465.093333pt;}
.xa{left:468.853333pt;}
.x33{left:512.693333pt;}
.x9{left:597.280000pt;}
.x23{left:709.040000pt;}
.x6{left:761.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; }
  