
    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_14d7fe42c522dcb22ab627be.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c4fa7e57b24e9815d43f814d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_511505fcd5ec793ddf5340cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_55d8c6c8954648d184bd49d5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2ef3532d1546283d52186f20.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4aecb3c30d372b5527ed303b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.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_1ca358f1105e9e836c9dd1c1.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsa{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.152000px;}
.lsc{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.160000px;}
.ls10{letter-spacing:53.424000px;}
.ls6{letter-spacing:167.506560px;}
.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;}
}
.ws5{word-spacing:-60.480000px;}
.ws1{word-spacing:-24.120000px;}
.wsa{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.352000px;}
.wsb{word-spacing:-17.208000px;}
.wse{word-spacing:-16.848000px;}
.ws8{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws4{word-spacing:0.000000px;}
._1f{margin-left:-4.593600px;}
._c{margin-left:-3.577920px;}
._0{margin-left:-2.540160px;}
._1{margin-left:-1.313280px;}
._2{width:1.226880px;}
._3{width:2.530080px;}
._4{width:3.863520px;}
._19{width:4.939200px;}
._8{width:5.993280px;}
._9{width:7.488000px;}
._a{width:8.712000px;}
._b{width:9.995520px;}
._7{width:11.837760px;}
._6{width:12.916320px;}
._5{width:13.925280px;}
._17{width:14.954400px;}
._16{width:16.013760px;}
._20{width:19.072320px;}
._e{width:20.177280px;}
._d{width:21.384000px;}
._f{width:22.960320px;}
._18{width:23.993280px;}
._12{width:26.257440px;}
._10{width:27.486240px;}
._11{width:28.849440px;}
._1d{width:43.522560px;}
._1c{width:44.640000px;}
._15{width:70.375200px;}
._13{width:71.927520px;}
._14{width:73.601280px;}
._1e{width:79.148160px;}
._1b{width:81.449280px;}
._21{width:89.383680px;}
._22{width:90.653760px;}
._23{width:176.918400px;}
._1a{width:178.344000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:7.200000px;}
.y43{bottom:7.554000px;}
.y47{bottom:7.560000px;}
.y85{bottom:7.590000px;}
.y4f{bottom:7.920000px;}
.yae{bottom:7.965000px;}
.yb7{bottom:8.280000px;}
.y9f{bottom:8.325000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y54{bottom:11.190000px;}
.y57{bottom:11.520000px;}
.y51{bottom:12.240000px;}
.ya6{bottom:12.270000px;}
.y7a{bottom:12.600000px;}
.y59{bottom:14.760000px;}
.y53{bottom:14.790000px;}
.y56{bottom:15.480000px;}
.ya8{bottom:16.950000px;}
.y45{bottom:19.434000px;}
.y5b{bottom:19.440000px;}
.y86{bottom:19.470000px;}
.y82{bottom:19.830000px;}
.y4c{bottom:22.320000px;}
.y4d{bottom:26.640000px;}
.y41{bottom:31.314000px;}
.y4a{bottom:31.320000px;}
.y84{bottom:31.350000px;}
.y8f{bottom:31.365000px;}
.y7d{bottom:31.680000px;}
.y9c{bottom:31.725000px;}
.yb6{bottom:32.040000px;}
.y9b{bottom:32.085000px;}
.y8d{bottom:32.400000px;}
.yb4{bottom:33.120000px;}
.ya5{bottom:36.030000px;}
.ya2{bottom:39.630000px;}
.ya7{bottom:40.710000px;}
.y3f{bottom:43.194000px;}
.ya4{bottom:43.200000px;}
.yb0{bottom:43.560000px;}
.y81{bottom:43.590000px;}
.y4b{bottom:46.125000px;}
.yab{bottom:47.205000px;}
.yad{bottom:55.080000px;}
.y40{bottom:55.119000px;}
.y49{bottom:55.440000px;}
.y9a{bottom:55.485000px;}
.y7c{bottom:55.845000px;}
.y8c{bottom:56.160000px;}
.yb3{bottom:56.880000px;}
.y8{bottom:57.240000px;}
.y44{bottom:66.999000px;}
.y80{bottom:67.350000px;}
.y5{bottom:73.476000px;}
.y42{bottom:78.879000px;}
.y88{bottom:79.200000px;}
.y8b{bottom:79.965000px;}
.yb2{bottom:80.685000px;}
.yaf{bottom:114.876000px;}
.y46{bottom:122.436000px;}
.y78{bottom:123.876000px;}
.y3e{bottom:146.916000px;}
.y77{bottom:147.636000px;}
.y32{bottom:155.190000px;}
.y76{bottom:171.750000px;}
.yda{bottom:175.350000px;}
.y31{bottom:179.310000px;}
.yaa{bottom:186.510000px;}
.y75{bottom:195.555000px;}
.yd9{bottom:199.155000px;}
.y30{bottom:203.115000px;}
.y74{bottom:219.315000px;}
.yd8{bottom:223.275000px;}
.y2f{bottom:226.875000px;}
.ya9{bottom:235.155000px;}
.yac{bottom:235.875000px;}
.y73{bottom:243.075000px;}
.yd7{bottom:247.035000px;}
.y2e{bottom:250.275000px;}
.y72{bottom:266.835000px;}
.yd6{bottom:270.795000px;}
.y3d{bottom:274.035000px;}
.y2d{bottom:274.395000px;}
.y71{bottom:290.955000px;}
.yd5{bottom:294.555000px;}
.y2c{bottom:298.155000px;}
.ya1{bottom:307.875000px;}
.y70{bottom:314.715000px;}
.yd4{bottom:318.315000px;}
.y2b{bottom:321.945000px;}
.y6f{bottom:338.505000px;}
.yd3{bottom:342.105000px;}
.y2a{bottom:346.065000px;}
.ya0{bottom:348.585000px;}
.y6e{bottom:362.265000px;}
.ya3{bottom:365.505000px;}
.yd2{bottom:365.865000px;}
.y29{bottom:369.825000px;}
.y6d{bottom:386.025000px;}
.yd1{bottom:389.625000px;}
.y28{bottom:393.585000px;}
.y6c{bottom:409.785000px;}
.yd0{bottom:413.385000px;}
.y27{bottom:417.345000px;}
.y6b{bottom:433.545000px;}
.ycf{bottom:437.505000px;}
.y99{bottom:437.865000px;}
.y26{bottom:441.105000px;}
.y6a{bottom:457.350000px;}
.yce{bottom:461.310000px;}
.y25{bottom:464.910000px;}
.y69{bottom:481.110000px;}
.ycd{bottom:485.070000px;}
.y24{bottom:488.670000px;}
.y68{bottom:505.230000px;}
.ycc{bottom:508.830000px;}
.y9d{bottom:510.630000px;}
.y23{bottom:512.430000px;}
.y67{bottom:528.990000px;}
.ycb{bottom:532.590000px;}
.y22{bottom:536.550000px;}
.y98{bottom:542.310000px;}
.y66{bottom:552.750000px;}
.yca{bottom:556.350000px;}
.y21{bottom:560.310000px;}
.y97{bottom:566.070000px;}
.y65{bottom:576.540000px;}
.yc9{bottom:580.140000px;}
.y20{bottom:583.740000px;}
.y3c{bottom:584.100000px;}
.y96{bottom:590.220000px;}
.y64{bottom:593.460000px;}
.yc8{bottom:603.540000px;}
.y1f{bottom:607.500000px;}
.y3b{bottom:607.860000px;}
.y95{bottom:614.340000px;}
.y63{bottom:617.940000px;}
.yc7{bottom:628.020000px;}
.y1e{bottom:631.620000px;}
.y94{bottom:638.100000px;}
.yc6{bottom:651.780000px;}
.y1d{bottom:655.380000px;}
.y93{bottom:661.860000px;}
.y62{bottom:666.540000px;}
.yc5{bottom:675.540000px;}
.y3a{bottom:678.780000px;}
.y1c{bottom:679.140000px;}
.y92{bottom:685.620000px;}
.y61{bottom:691.020000px;}
.yc4{bottom:699.330000px;}
.y1b{bottom:702.930000px;}
.y91{bottom:709.410000px;}
.y60{bottom:715.530000px;}
.yc3{bottom:723.090000px;}
.y1a{bottom:727.050000px;}
.y90{bottom:733.170000px;}
.y5f{bottom:740.010000px;}
.yc2{bottom:746.850000px;}
.y8a{bottom:750.090000px;}
.y19{bottom:750.810000px;}
.y5e{bottom:764.490000px;}
.yc1{bottom:770.610000px;}
.y18{bottom:774.570000px;}
.y5d{bottom:789.330000px;}
.yc0{bottom:794.370000px;}
.y17{bottom:798.330000px;}
.y8e{bottom:798.690000px;}
.y5c{bottom:813.810000px;}
.ybf{bottom:818.490000px;}
.y16{bottom:822.090000px;}
.y5a{bottom:838.335000px;}
.ybe{bottom:842.295000px;}
.y15{bottom:845.895000px;}
.y87{bottom:846.975000px;}
.ybd{bottom:866.055000px;}
.y14{bottom:869.655000px;}
.y58{bottom:886.575000px;}
.ybc{bottom:889.815000px;}
.y13{bottom:893.055000px;}
.y39{bottom:893.415000px;}
.y89{bottom:895.215000px;}
.ybb{bottom:913.575000px;}
.y12{bottom:916.815000px;}
.y38{bottom:917.175000px;}
.y55{bottom:918.255000px;}
.yba{bottom:937.335000px;}
.y11{bottom:941.295000px;}
.y7f{bottom:943.815000px;}
.y52{bottom:950.655000px;}
.yb9{bottom:960.765000px;}
.y10{bottom:965.085000px;}
.y50{bottom:982.365000px;}
.yb8{bottom:984.885000px;}
.yf{bottom:988.845000px;}
.y83{bottom:992.085000px;}
.yb1{bottom:1001.805000px;}
.y4e{bottom:1011.525000px;}
.ye{bottom:1012.605000px;}
.yd{bottom:1036.005000px;}
.y37{bottom:1036.365000px;}
.y7b{bottom:1040.325000px;}
.yb5{bottom:1051.125000px;}
.yc{bottom:1060.125000px;}
.y36{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y7e{bottom:1088.970000px;}
.y48{bottom:1099.410000px;}
.y35{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y34{bottom:1131.810000px;}
.y79{bottom:1137.210000px;}
.y9{bottom:1149.450000px;}
.y33{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h21{height:2.826563px;}
.he{height:23.760000px;}
.h17{height:23.796000px;}
.h11{height:24.120000px;}
.h5{height:27.000000px;}
.h12{height:28.440000px;}
.h15{height:30.960000px;}
.h13{height:30.996000px;}
.h14{height:31.680000px;}
.h19{height:33.840000px;}
.h16{height:47.520000px;}
.h1b{height:47.556000px;}
.h28{height:48.600000px;}
.h25{height:48.636000px;}
.h7{height:50.229844px;}
.ha{height:50.273438px;}
.h4{height:55.147500px;}
.h22{height:56.916000px;}
.h10{height:62.316000px;}
.h3{height:66.757500px;}
.hc{height:70.628906px;}
.h6{height:70.664062px;}
.h26{height:70.920000px;}
.h24{height:71.280000px;}
.hf{height:71.640000px;}
.h1f{height:72.036000px;}
.h2{height:72.562500px;}
.hb{height:73.998281px;}
.h29{height:74.004654px;}
.h18{height:74.178281px;}
.h9{height:75.251250px;}
.hd{height:95.436000px;}
.h1d{height:95.760000px;}
.h1c{height:95.796000px;}
.h1a{height:96.156000px;}
.h1e{height:96.516000px;}
.h27{height:96.876000px;}
.h8{height:97.233750px;}
.h23{height:120.636000px;}
.h20{height:129.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:59.076000px;}
.w1b{width:77.076000px;}
.w11{width:78.156000px;}
.wf{width:86.436000px;}
.w14{width:88.236000px;}
.w17{width:88.596000px;}
.w1a{width:100.116000px;}
.w8{width:101.916000px;}
.w4{width:104.076000px;}
.w16{width:108.036000px;}
.w9{width:112.716000px;}
.wd{width:117.036000px;}
.w15{width:117.756000px;}
.w18{width:118.116000px;}
.we{width:122.076000px;}
.w7{width:122.436000px;}
.w6{width:122.472000px;}
.wc{width:146.592000px;}
.wb{width:182.955000px;}
.w10{width:196.635000px;}
.w13{width:197.355000px;}
.w5{width:204.195000px;}
.w12{width:206.715000px;}
.w3{width:298.905000px;}
.wa{width:666.615000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3c{left:1.800000px;}
.x37{left:5.790000px;}
.x19{left:7.920000px;}
.x18{left:9.360000px;}
.x29{left:11.520000px;}
.x2e{left:12.960000px;}
.x3b{left:17.640000px;}
.x35{left:19.440000px;}
.x34{left:20.910000px;}
.x39{left:22.005000px;}
.x31{left:23.040000px;}
.x3a{left:25.590000px;}
.x40{left:26.640000px;}
.x3f{left:29.925000px;}
.x38{left:32.805000px;}
.x3e{left:37.800000px;}
.x8{left:39.270000px;}
.x2f{left:43.950000px;}
.x32{left:53.685000px;}
.x26{left:57.279000px;}
.x41{left:63.399000px;}
.x2d{left:65.565000px;}
.x2b{left:67.710000px;}
.x5{left:95.796000px;}
.x27{left:98.319000px;}
.x25{left:105.876000px;}
.x17{left:113.436000px;}
.xc{left:116.315987px;}
.x1f{left:117.396000px;}
.x10{left:120.635987px;}
.xb{left:124.595987px;}
.xe{left:127.475987px;}
.xa{left:133.235987px;}
.x14{left:138.275987px;}
.x13{left:149.111987px;}
.x16{left:180.434987px;}
.x24{left:185.114987px;}
.x3{left:190.154987px;}
.x3d{left:213.915000px;}
.x36{left:231.915000px;}
.x6{left:290.634000px;}
.x20{left:301.425000px;}
.x28{left:303.225000px;}
.xd{left:311.144987px;}
.x1e{left:315.824987px;}
.x12{left:317.264987px;}
.xf{left:318.344987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x2a{left:382.470000px;}
.x7{left:394.710000px;}
.x11{left:405.509987px;}
.x1a{left:441.540000px;}
.x21{left:448.740000px;}
.x30{left:471.420000px;}
.x9{left:498.780000px;}
.x1b{left:564.690000px;}
.x22{left:566.490000px;}
.x2c{left:589.890000px;}
.x1c{left:667.335000px;}
.x23{left:689.295000px;}
.x33{left:698.655000px;}
.x15{left:724.244987px;}
.x1d{left:728.564987px;}
.x1{left:797.684987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.024000pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls10{letter-spacing:47.488000pt;}
.ls6{letter-spacing:148.894720pt;}
.ws5{word-spacing:-53.760000pt;}
.ws1{word-spacing:-21.440000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.424000pt;}
.wsb{word-spacing:-15.296000pt;}
.wse{word-spacing:-14.976000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws4{word-spacing:0.000000pt;}
._1f{margin-left:-4.083200pt;}
._c{margin-left:-3.180373pt;}
._0{margin-left:-2.257920pt;}
._1{margin-left:-1.167360pt;}
._2{width:1.090560pt;}
._3{width:2.248960pt;}
._4{width:3.434240pt;}
._19{width:4.390400pt;}
._8{width:5.327360pt;}
._9{width:6.656000pt;}
._a{width:7.744000pt;}
._b{width:8.884907pt;}
._7{width:10.522453pt;}
._6{width:11.481173pt;}
._5{width:12.378027pt;}
._17{width:13.292800pt;}
._16{width:14.234453pt;}
._20{width:16.953173pt;}
._e{width:17.935360pt;}
._d{width:19.008000pt;}
._f{width:20.409173pt;}
._18{width:21.327360pt;}
._12{width:23.339947pt;}
._10{width:24.432213pt;}
._11{width:25.643947pt;}
._1d{width:38.686720pt;}
._1c{width:39.680000pt;}
._15{width:62.555733pt;}
._13{width:63.935573pt;}
._14{width:65.423360pt;}
._1e{width:70.353920pt;}
._1b{width:72.399360pt;}
._21{width:79.452160pt;}
._22{width:80.581120pt;}
._23{width:157.260800pt;}
._1a{width:158.528000pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:6.400000pt;}
.y43{bottom:6.714667pt;}
.y47{bottom:6.720000pt;}
.y85{bottom:6.746667pt;}
.y4f{bottom:7.040000pt;}
.yae{bottom:7.080000pt;}
.yb7{bottom:7.360000pt;}
.y9f{bottom:7.400000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y54{bottom:9.946667pt;}
.y57{bottom:10.240000pt;}
.y51{bottom:10.880000pt;}
.ya6{bottom:10.906667pt;}
.y7a{bottom:11.200000pt;}
.y59{bottom:13.120000pt;}
.y53{bottom:13.146667pt;}
.y56{bottom:13.760000pt;}
.ya8{bottom:15.066667pt;}
.y45{bottom:17.274667pt;}
.y5b{bottom:17.280000pt;}
.y86{bottom:17.306667pt;}
.y82{bottom:17.626667pt;}
.y4c{bottom:19.840000pt;}
.y4d{bottom:23.680000pt;}
.y41{bottom:27.834667pt;}
.y4a{bottom:27.840000pt;}
.y84{bottom:27.866667pt;}
.y8f{bottom:27.880000pt;}
.y7d{bottom:28.160000pt;}
.y9c{bottom:28.200000pt;}
.yb6{bottom:28.480000pt;}
.y9b{bottom:28.520000pt;}
.y8d{bottom:28.800000pt;}
.yb4{bottom:29.440000pt;}
.ya5{bottom:32.026667pt;}
.ya2{bottom:35.226667pt;}
.ya7{bottom:36.186667pt;}
.y3f{bottom:38.394667pt;}
.ya4{bottom:38.400000pt;}
.yb0{bottom:38.720000pt;}
.y81{bottom:38.746667pt;}
.y4b{bottom:41.000000pt;}
.yab{bottom:41.960000pt;}
.yad{bottom:48.960000pt;}
.y40{bottom:48.994667pt;}
.y49{bottom:49.280000pt;}
.y9a{bottom:49.320000pt;}
.y7c{bottom:49.640000pt;}
.y8c{bottom:49.920000pt;}
.yb3{bottom:50.560000pt;}
.y8{bottom:50.880000pt;}
.y44{bottom:59.554667pt;}
.y80{bottom:59.866667pt;}
.y5{bottom:65.312000pt;}
.y42{bottom:70.114667pt;}
.y88{bottom:70.400000pt;}
.y8b{bottom:71.080000pt;}
.yb2{bottom:71.720000pt;}
.yaf{bottom:102.112000pt;}
.y46{bottom:108.832000pt;}
.y78{bottom:110.112000pt;}
.y3e{bottom:130.592000pt;}
.y77{bottom:131.232000pt;}
.y32{bottom:137.946667pt;}
.y76{bottom:152.666667pt;}
.yda{bottom:155.866667pt;}
.y31{bottom:159.386667pt;}
.yaa{bottom:165.786667pt;}
.y75{bottom:173.826667pt;}
.yd9{bottom:177.026667pt;}
.y30{bottom:180.546667pt;}
.y74{bottom:194.946667pt;}
.yd8{bottom:198.466667pt;}
.y2f{bottom:201.666667pt;}
.ya9{bottom:209.026667pt;}
.yac{bottom:209.666667pt;}
.y73{bottom:216.066667pt;}
.yd7{bottom:219.586667pt;}
.y2e{bottom:222.466667pt;}
.y72{bottom:237.186667pt;}
.yd6{bottom:240.706667pt;}
.y3d{bottom:243.586667pt;}
.y2d{bottom:243.906667pt;}
.y71{bottom:258.626667pt;}
.yd5{bottom:261.826667pt;}
.y2c{bottom:265.026667pt;}
.ya1{bottom:273.666667pt;}
.y70{bottom:279.746667pt;}
.yd4{bottom:282.946667pt;}
.y2b{bottom:286.173333pt;}
.y6f{bottom:300.893333pt;}
.yd3{bottom:304.093333pt;}
.y2a{bottom:307.613333pt;}
.ya0{bottom:309.853333pt;}
.y6e{bottom:322.013333pt;}
.ya3{bottom:324.893333pt;}
.yd2{bottom:325.213333pt;}
.y29{bottom:328.733333pt;}
.y6d{bottom:343.133333pt;}
.yd1{bottom:346.333333pt;}
.y28{bottom:349.853333pt;}
.y6c{bottom:364.253333pt;}
.yd0{bottom:367.453333pt;}
.y27{bottom:370.973333pt;}
.y6b{bottom:385.373333pt;}
.ycf{bottom:388.893333pt;}
.y99{bottom:389.213333pt;}
.y26{bottom:392.093333pt;}
.y6a{bottom:406.533333pt;}
.yce{bottom:410.053333pt;}
.y25{bottom:413.253333pt;}
.y69{bottom:427.653333pt;}
.ycd{bottom:431.173333pt;}
.y24{bottom:434.373333pt;}
.y68{bottom:449.093333pt;}
.ycc{bottom:452.293333pt;}
.y9d{bottom:453.893333pt;}
.y23{bottom:455.493333pt;}
.y67{bottom:470.213333pt;}
.ycb{bottom:473.413333pt;}
.y22{bottom:476.933333pt;}
.y98{bottom:482.053333pt;}
.y66{bottom:491.333333pt;}
.yca{bottom:494.533333pt;}
.y21{bottom:498.053333pt;}
.y97{bottom:503.173333pt;}
.y65{bottom:512.480000pt;}
.yc9{bottom:515.680000pt;}
.y20{bottom:518.880000pt;}
.y3c{bottom:519.200000pt;}
.y96{bottom:524.640000pt;}
.y64{bottom:527.520000pt;}
.yc8{bottom:536.480000pt;}
.y1f{bottom:540.000000pt;}
.y3b{bottom:540.320000pt;}
.y95{bottom:546.080000pt;}
.y63{bottom:549.280000pt;}
.yc7{bottom:558.240000pt;}
.y1e{bottom:561.440000pt;}
.y94{bottom:567.200000pt;}
.yc6{bottom:579.360000pt;}
.y1d{bottom:582.560000pt;}
.y93{bottom:588.320000pt;}
.y62{bottom:592.480000pt;}
.yc5{bottom:600.480000pt;}
.y3a{bottom:603.360000pt;}
.y1c{bottom:603.680000pt;}
.y92{bottom:609.440000pt;}
.y61{bottom:614.240000pt;}
.yc4{bottom:621.626667pt;}
.y1b{bottom:624.826667pt;}
.y91{bottom:630.586667pt;}
.y60{bottom:636.026667pt;}
.yc3{bottom:642.746667pt;}
.y1a{bottom:646.266667pt;}
.y90{bottom:651.706667pt;}
.y5f{bottom:657.786667pt;}
.yc2{bottom:663.866667pt;}
.y8a{bottom:666.746667pt;}
.y19{bottom:667.386667pt;}
.y5e{bottom:679.546667pt;}
.yc1{bottom:684.986667pt;}
.y18{bottom:688.506667pt;}
.y5d{bottom:701.626667pt;}
.yc0{bottom:706.106667pt;}
.y17{bottom:709.626667pt;}
.y8e{bottom:709.946667pt;}
.y5c{bottom:723.386667pt;}
.ybf{bottom:727.546667pt;}
.y16{bottom:730.746667pt;}
.y5a{bottom:745.186667pt;}
.ybe{bottom:748.706667pt;}
.y15{bottom:751.906667pt;}
.y87{bottom:752.866667pt;}
.ybd{bottom:769.826667pt;}
.y14{bottom:773.026667pt;}
.y58{bottom:788.066667pt;}
.ybc{bottom:790.946667pt;}
.y13{bottom:793.826667pt;}
.y39{bottom:794.146667pt;}
.y89{bottom:795.746667pt;}
.ybb{bottom:812.066667pt;}
.y12{bottom:814.946667pt;}
.y38{bottom:815.266667pt;}
.y55{bottom:816.226667pt;}
.yba{bottom:833.186667pt;}
.y11{bottom:836.706667pt;}
.y7f{bottom:838.946667pt;}
.y52{bottom:845.026667pt;}
.yb9{bottom:854.013333pt;}
.y10{bottom:857.853333pt;}
.y50{bottom:873.213333pt;}
.yb8{bottom:875.453333pt;}
.yf{bottom:878.973333pt;}
.y83{bottom:881.853333pt;}
.yb1{bottom:890.493333pt;}
.y4e{bottom:899.133333pt;}
.ye{bottom:900.093333pt;}
.yd{bottom:920.893333pt;}
.y37{bottom:921.213333pt;}
.y7b{bottom:924.733333pt;}
.yb5{bottom:934.333333pt;}
.yc{bottom:942.333333pt;}
.y36{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y7e{bottom:967.973333pt;}
.y48{bottom:977.253333pt;}
.y35{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y34{bottom:1006.053333pt;}
.y79{bottom:1010.853333pt;}
.y9{bottom:1021.733333pt;}
.y33{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h21{height:2.512500pt;}
.he{height:21.120000pt;}
.h17{height:21.152000pt;}
.h11{height:21.440000pt;}
.h5{height:24.000000pt;}
.h12{height:25.280000pt;}
.h15{height:27.520000pt;}
.h13{height:27.552000pt;}
.h14{height:28.160000pt;}
.h19{height:30.080000pt;}
.h16{height:42.240000pt;}
.h1b{height:42.272000pt;}
.h28{height:43.200000pt;}
.h25{height:43.232000pt;}
.h7{height:44.648750pt;}
.ha{height:44.687500pt;}
.h4{height:49.020000pt;}
.h22{height:50.592000pt;}
.h10{height:55.392000pt;}
.h3{height:59.340000pt;}
.hc{height:62.781250pt;}
.h6{height:62.812500pt;}
.h26{height:63.040000pt;}
.h24{height:63.360000pt;}
.hf{height:63.680000pt;}
.h1f{height:64.032000pt;}
.h2{height:64.500000pt;}
.hb{height:65.776250pt;}
.h29{height:65.781915pt;}
.h18{height:65.936250pt;}
.h9{height:66.890000pt;}
.hd{height:84.832000pt;}
.h1d{height:85.120000pt;}
.h1c{height:85.152000pt;}
.h1a{height:85.472000pt;}
.h1e{height:85.792000pt;}
.h27{height:86.112000pt;}
.h8{height:86.430000pt;}
.h23{height:107.232000pt;}
.h20{height:114.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:52.512000pt;}
.w1b{width:68.512000pt;}
.w11{width:69.472000pt;}
.wf{width:76.832000pt;}
.w14{width:78.432000pt;}
.w17{width:78.752000pt;}
.w1a{width:88.992000pt;}
.w8{width:90.592000pt;}
.w4{width:92.512000pt;}
.w16{width:96.032000pt;}
.w9{width:100.192000pt;}
.wd{width:104.032000pt;}
.w15{width:104.672000pt;}
.w18{width:104.992000pt;}
.we{width:108.512000pt;}
.w7{width:108.832000pt;}
.w6{width:108.864000pt;}
.wc{width:130.304000pt;}
.wb{width:162.626667pt;}
.w10{width:174.786667pt;}
.w13{width:175.426667pt;}
.w5{width:181.506667pt;}
.w12{width:183.746667pt;}
.w3{width:265.693333pt;}
.wa{width:592.546667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3c{left:1.600000pt;}
.x37{left:5.146667pt;}
.x19{left:7.040000pt;}
.x18{left:8.320000pt;}
.x29{left:10.240000pt;}
.x2e{left:11.520000pt;}
.x3b{left:15.680000pt;}
.x35{left:17.280000pt;}
.x34{left:18.586667pt;}
.x39{left:19.560000pt;}
.x31{left:20.480000pt;}
.x3a{left:22.746667pt;}
.x40{left:23.680000pt;}
.x3f{left:26.600000pt;}
.x38{left:29.160000pt;}
.x3e{left:33.600000pt;}
.x8{left:34.906667pt;}
.x2f{left:39.066667pt;}
.x32{left:47.720000pt;}
.x26{left:50.914667pt;}
.x41{left:56.354667pt;}
.x2d{left:58.280000pt;}
.x2b{left:60.186667pt;}
.x5{left:85.152000pt;}
.x27{left:87.394667pt;}
.x25{left:94.112000pt;}
.x17{left:100.832000pt;}
.xc{left:103.391988pt;}
.x1f{left:104.352000pt;}
.x10{left:107.231988pt;}
.xb{left:110.751988pt;}
.xe{left:113.311988pt;}
.xa{left:118.431988pt;}
.x14{left:122.911988pt;}
.x13{left:132.543988pt;}
.x16{left:160.386655pt;}
.x24{left:164.546655pt;}
.x3{left:169.026655pt;}
.x3d{left:190.146667pt;}
.x36{left:206.146667pt;}
.x6{left:258.341333pt;}
.x20{left:267.933333pt;}
.x28{left:269.533333pt;}
.xd{left:276.573322pt;}
.x1e{left:280.733322pt;}
.x12{left:282.013322pt;}
.xf{left:282.973322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x2a{left:339.973333pt;}
.x7{left:350.853333pt;}
.x11{left:360.453322pt;}
.x1a{left:392.480000pt;}
.x21{left:398.880000pt;}
.x30{left:419.040000pt;}
.x9{left:443.360000pt;}
.x1b{left:501.946667pt;}
.x22{left:503.546667pt;}
.x2c{left:524.346667pt;}
.x1c{left:593.186667pt;}
.x23{left:612.706667pt;}
.x33{left:621.026667pt;}
.x15{left:643.773322pt;}
.x1d{left:647.613322pt;}
.x1{left:709.053322pt;}
}




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