
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f63c9e26108e54dc94cd6e06.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_70b3a3de12aa0d2daebdaa40.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_050ecc576214761769e28381.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c920f99036b6c632a77505c9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_18d1e4a645b4f7d438658726.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b86e08f9068050dbef5ab521.woff')format("woff");}.ff7{font-family:ff7;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);}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls15{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.070800px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:47.726640px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws2{word-spacing:-13.155600px;}
.wsf{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._7{margin-left:-3.667200px;}
._8{margin-left:-2.645400px;}
._0{margin-left:-1.140000px;}
._1{width:1.238676px;}
._d{width:2.488523px;}
._e{width:3.663459px;}
._10{width:4.666127px;}
._a{width:5.952000px;}
._11{width:7.274520px;}
._c{width:9.258600px;}
._9{width:10.821600px;}
._4{width:12.202200px;}
._3{width:14.248200px;}
._f{width:15.270600px;}
._b{width:16.953600px;}
._12{width:18.156480px;}
._2{width:19.750764px;}
._18{width:20.801112px;}
._15{width:21.821280px;}
._5{width:23.146200px;}
._6{width:24.210720px;}
._16{width:25.341201px;}
._17{width:26.719236px;}
._13{width:29.398680px;}
._14{width:30.420720px;}
._19{width:33.095880px;}
._1a{width:34.389360px;}
._20{width:37.424520px;}
._1f{width:66.252240px;}
._1e{width:71.182080px;}
._1d{width:72.261960px;}
._21{width:116.993520px;}
._22{width:118.376280px;}
._1b{width:210.961080px;}
._1c{width:663.965280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y58{bottom:120.270000px;}
.y71{bottom:122.250000px;}
.yb9{bottom:129.720000px;}
.ycc{bottom:136.380000px;}
.y8d{bottom:136.650000px;}
.y57{bottom:137.910000px;}
.y27{bottom:140.250000px;}
.yb8{bottom:147.270000px;}
.y10e{bottom:152.850000px;}
.ycb{bottom:153.930000px;}
.y8c{bottom:154.290000px;}
.y26{bottom:157.800000px;}
.yb7{bottom:164.910000px;}
.y10d{bottom:170.400000px;}
.yca{bottom:171.480000px;}
.y8b{bottom:171.840000px;}
.y56{bottom:173.460000px;}
.y25{bottom:175.350000px;}
.y70{bottom:175.440000px;}
.yb6{bottom:182.460000px;}
.yed{bottom:187.320000px;}
.y10c{bottom:187.950000px;}
.yc9{bottom:189.120000px;}
.y8a{bottom:189.480000px;}
.y55{bottom:191.100000px;}
.y6f{bottom:192.990000px;}
.yb5{bottom:200.100000px;}
.yc8{bottom:206.670000px;}
.y89{bottom:207.030000px;}
.y54{bottom:208.650000px;}
.y6e{bottom:210.630000px;}
.y24{bottom:210.990000px;}
.y10b{bottom:214.590000px;}
.yb4{bottom:217.650000px;}
.yec{bottom:222.870000px;}
.y88{bottom:224.580000px;}
.y53{bottom:226.200000px;}
.y6d{bottom:228.180000px;}
.y23{bottom:228.540000px;}
.y10a{bottom:232.140000px;}
.yeb{bottom:240.510000px;}
.yc7{bottom:242.310000px;}
.y52{bottom:243.840000px;}
.yb3{bottom:244.200000px;}
.y6c{bottom:245.730000px;}
.y22{bottom:246.090000px;}
.y109{bottom:249.780000px;}
.yea{bottom:258.060000px;}
.yc6{bottom:259.860000px;}
.y87{bottom:260.220000px;}
.y21{bottom:263.730000px;}
.ye9{bottom:275.610000px;}
.y108{bottom:276.330000px;}
.yc5{bottom:277.410000px;}
.y51{bottom:279.390000px;}
.yb2{bottom:279.840000px;}
.y6b{bottom:281.370000px;}
.y86{bottom:292.440000px;}
.ye8{bottom:293.250000px;}
.y107{bottom:293.880000px;}
.yc4{bottom:295.050000px;}
.y50{bottom:296.940000px;}
.yb1{bottom:297.390000px;}
.y6a{bottom:298.920000px;}
.y20{bottom:299.280000px;}
.y106{bottom:311.520000px;}
.yc3{bottom:312.600000px;}
.y4f{bottom:314.580000px;}
.yb0{bottom:314.940000px;}
.y69{bottom:316.560000px;}
.y1f{bottom:316.920000px;}
.ye7{bottom:328.800000px;}
.yc2{bottom:330.240000px;}
.y4e{bottom:332.130000px;}
.yaf{bottom:332.580000px;}
.y68{bottom:334.110000px;}
.y1e{bottom:334.470000px;}
.y105{bottom:338.070000px;}
.ye6{bottom:346.440000px;}
.yc1{bottom:347.790000px;}
.y4d{bottom:349.770000px;}
.yae{bottom:350.130000px;}
.y67{bottom:351.660000px;}
.y1d{bottom:352.020000px;}
.y104{bottom:355.710000px;}
.ye5{bottom:363.990000px;}
.yad{bottom:367.770000px;}
.y66{bottom:369.300000px;}
.y1c{bottom:369.660000px;}
.yc0{bottom:374.340000px;}
.y4c{bottom:376.320000px;}
.ye4{bottom:381.540000px;}
.y103{bottom:382.260000px;}
.y65{bottom:386.850000px;}
.y1b{bottom:387.210000px;}
.ye3{bottom:399.180000px;}
.y102{bottom:399.810000px;}
.yac{bottom:403.320000px;}
.ybf{bottom:410.250000px;}
.y4b{bottom:411.870000px;}
.y1a{bottom:414.120000px;}
.ye2{bottom:416.730000px;}
.yab{bottom:420.870000px;}
.y64{bottom:422.490000px;}
.y101{bottom:426.720000px;}
.y4a{bottom:429.510000px;}
.yaa{bottom:438.510000px;}
.y63{bottom:440.040000px;}
.y49{bottom:447.060000px;}
.ye1{bottom:452.370000px;}
.ya9{bottom:456.060000px;}
.y62{bottom:457.590000px;}
.ybe{bottom:458.580000px;}
.y19{bottom:462.450000px;}
.y48{bottom:464.700000px;}
.ye0{bottom:469.950000px;}
.ya8{bottom:473.730000px;}
.y100{bottom:475.080000px;}
.y18{bottom:480.390000px;}
.y47{bottom:482.280000px;}
.y61{bottom:484.260000px;}
.ydf{bottom:487.500000px;}
.ybd{bottom:490.830000px;}
.yff{bottom:492.630000px;}
.y46{bottom:499.830000px;}
.yde{bottom:505.140000px;}
.ya7{bottom:509.280000px;}
.yfe{bottom:510.270000px;}
.y17{bottom:517.380000px;}
.y60{bottom:520.170000px;}
.ydd{bottom:522.690000px;}
.ya6{bottom:526.830000px;}
.yfd{bottom:527.820000px;}
.y16{bottom:534.930000px;}
.y45{bottom:535.470000px;}
.ydc{bottom:540.330000px;}
.ya5{bottom:544.470000px;}
.yfc{bottom:545.370000px;}
.y15{bottom:552.570000px;}
.y44{bottom:553.020000px;}
.ydb{bottom:557.880000px;}
.ya4{bottom:562.020000px;}
.yfb{bottom:563.010000px;}
.y5f{bottom:568.410000px;}
.y14{bottom:570.120000px;}
.y43{bottom:570.660000px;}
.ya3{bottom:579.660000px;}
.yfa{bottom:580.560000px;}
.yda{bottom:584.430000px;}
.y13{bottom:587.670000px;}
.y42{bottom:588.210000px;}
.ya2{bottom:597.210000px;}
.yf9{bottom:598.200000px;}
.y5e{bottom:600.630000px;}
.y12{bottom:605.310000px;}
.y41{bottom:605.760000px;}
.yf8{bottom:615.750000px;}
.yd9{bottom:620.070000px;}
.y11{bottom:622.860000px;}
.y40{bottom:623.400000px;}
.ya1{bottom:623.760000px;}
.yf7{bottom:633.300000px;}
.yd8{bottom:637.620000px;}
.y10{bottom:640.500000px;}
.y3f{bottom:640.950000px;}
.yf6{bottom:650.940000px;}
.yd7{bottom:655.260000px;}
.yf{bottom:658.050000px;}
.ya0{bottom:659.400000px;}
.yf5{bottom:668.490000px;}
.yd6{bottom:672.810000px;}
.ye{bottom:675.600000px;}
.y3e{bottom:676.590000px;}
.y9f{bottom:676.950000px;}
.yf4{bottom:686.040000px;}
.yd5{bottom:690.360000px;}
.yd{bottom:693.240000px;}
.y3d{bottom:694.140000px;}
.y9e{bottom:694.590000px;}
.yf3{bottom:703.680000px;}
.yd4{bottom:708.000000px;}
.yc{bottom:710.790000px;}
.y3c{bottom:711.690000px;}
.y9d{bottom:712.140000px;}
.y85{bottom:716.550000px;}
.yf2{bottom:721.230000px;}
.yb{bottom:728.430000px;}
.y3b{bottom:729.330000px;}
.y9c{bottom:729.690000px;}
.y84{bottom:734.190000px;}
.yf1{bottom:738.870000px;}
.yd3{bottom:743.550000px;}
.y9b{bottom:747.330000px;}
.y83{bottom:751.740000px;}
.ya{bottom:755.340000px;}
.y3a{bottom:755.880000px;}
.yd2{bottom:761.190000px;}
.yf0{bottom:765.780000px;}
.y82{bottom:778.290000px;}
.yd1{bottom:778.740000px;}
.y9a{bottom:782.880000px;}
.y39{bottom:791.790000px;}
.yd0{bottom:796.290000px;}
.y99{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.y81{bottom:813.930000px;}
.yef{bottom:814.020000px;}
.y98{bottom:818.070000px;}
.y80{bottom:831.480000px;}
.y97{bottom:835.620000px;}
.y8{bottom:839.130000px;}
.y38{bottom:840.030000px;}
.yee{bottom:846.240000px;}
.y7f{bottom:849.030000px;}
.y96{bottom:853.260000px;}
.y37{bottom:857.670000px;}
.y7e{bottom:866.670000px;}
.y7{bottom:874.950000px;}
.y36{bottom:875.220000px;}
.y7d{bottom:884.220000px;}
.ycf{bottom:884.670000px;}
.y95{bottom:888.810000px;}
.y111{bottom:893.220000px;}
.y7c{bottom:901.860000px;}
.yce{bottom:902.220000px;}
.y94{bottom:906.450000px;}
.y35{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.ycd{bottom:919.860000px;}
.y93{bottom:924.000000px;}
.y34{bottom:928.410000px;}
.y7b{bottom:937.410000px;}
.y92{bottom:941.550000px;}
.y33{bottom:945.960000px;}
.ybc{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y7a{bottom:954.960000px;}
.y91{bottom:959.190000px;}
.y32{bottom:963.600000px;}
.y5d{bottom:963.960000px;}
.y79{bottom:972.600000px;}
.y90{bottom:976.740000px;}
.y31{bottom:981.150000px;}
.y5c{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y78{bottom:990.150000px;}
.y5b{bottom:999.150000px;}
.y8f{bottom:1003.290000px;}
.y77{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y30{bottom:1016.820000px;}
.y76{bottom:1025.370000px;}
.y2f{bottom:1034.370000px;}
.y8e{bottom:1039.230000px;}
.y75{bottom:1042.920000px;}
.y110{bottom:1043.370000px;}
.y2e{bottom:1051.920000px;}
.ybb{bottom:1052.370000px;}
.y10f{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.yba{bottom:1069.920000px;}
.y74{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.y5a{bottom:1087.560000px;}
.y73{bottom:1096.110000px;}
.y59{bottom:1105.110000px;}
.y72{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.xb{left:126.989987px;}
.x9{left:146.069987px;}
.x2{left:202.799987px;}
.x5{left:210.449987px;}
.x7{left:303.779987px;}
.xa{left:723.389987px;}
.x8{left:726.809987px;}
.x6{left:749.309987px;}
.x4{left:759.389987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.062933pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws2{word-spacing:-11.693867pt;}
.wsf{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._7{margin-left:-3.259733pt;}
._8{margin-left:-2.351467pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.101045pt;}
._d{width:2.212021pt;}
._e{width:3.256408pt;}
._10{width:4.147669pt;}
._a{width:5.290667pt;}
._11{width:6.466240pt;}
._c{width:8.229867pt;}
._9{width:9.619200pt;}
._4{width:10.846400pt;}
._3{width:12.665066pt;}
._f{width:13.573867pt;}
._b{width:15.069866pt;}
._12{width:16.139094pt;}
._2{width:17.556235pt;}
._18{width:18.489878pt;}
._15{width:19.396693pt;}
._5{width:20.574400pt;}
._6{width:21.520640pt;}
._16{width:22.525512pt;}
._17{width:23.750432pt;}
._13{width:26.132160pt;}
._14{width:27.040640pt;}
._19{width:29.418560pt;}
._1a{width:30.568320pt;}
._20{width:33.266240pt;}
._1f{width:58.890880pt;}
._1e{width:63.272960pt;}
._1d{width:64.232853pt;}
._21{width:103.994240pt;}
._22{width:105.223360pt;}
._1b{width:187.520960pt;}
._1c{width:590.191360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y58{bottom:106.906667pt;}
.y71{bottom:108.666667pt;}
.yb9{bottom:115.306667pt;}
.ycc{bottom:121.226667pt;}
.y8d{bottom:121.466667pt;}
.y57{bottom:122.586667pt;}
.y27{bottom:124.666667pt;}
.yb8{bottom:130.906667pt;}
.y10e{bottom:135.866667pt;}
.ycb{bottom:136.826667pt;}
.y8c{bottom:137.146667pt;}
.y26{bottom:140.266667pt;}
.yb7{bottom:146.586667pt;}
.y10d{bottom:151.466667pt;}
.yca{bottom:152.426667pt;}
.y8b{bottom:152.746667pt;}
.y56{bottom:154.186667pt;}
.y25{bottom:155.866667pt;}
.y70{bottom:155.946667pt;}
.yb6{bottom:162.186667pt;}
.yed{bottom:166.506667pt;}
.y10c{bottom:167.066667pt;}
.yc9{bottom:168.106667pt;}
.y8a{bottom:168.426667pt;}
.y55{bottom:169.866667pt;}
.y6f{bottom:171.546667pt;}
.yb5{bottom:177.866667pt;}
.yc8{bottom:183.706667pt;}
.y89{bottom:184.026667pt;}
.y54{bottom:185.466667pt;}
.y6e{bottom:187.226667pt;}
.y24{bottom:187.546667pt;}
.y10b{bottom:190.746667pt;}
.yb4{bottom:193.466667pt;}
.yec{bottom:198.106667pt;}
.y88{bottom:199.626667pt;}
.y53{bottom:201.066667pt;}
.y6d{bottom:202.826667pt;}
.y23{bottom:203.146667pt;}
.y10a{bottom:206.346667pt;}
.yeb{bottom:213.786667pt;}
.yc7{bottom:215.386667pt;}
.y52{bottom:216.746667pt;}
.yb3{bottom:217.066667pt;}
.y6c{bottom:218.426667pt;}
.y22{bottom:218.746667pt;}
.y109{bottom:222.026667pt;}
.yea{bottom:229.386667pt;}
.yc6{bottom:230.986667pt;}
.y87{bottom:231.306667pt;}
.y21{bottom:234.426667pt;}
.ye9{bottom:244.986667pt;}
.y108{bottom:245.626667pt;}
.yc5{bottom:246.586667pt;}
.y51{bottom:248.346667pt;}
.yb2{bottom:248.746667pt;}
.y6b{bottom:250.106667pt;}
.y86{bottom:259.946667pt;}
.ye8{bottom:260.666667pt;}
.y107{bottom:261.226667pt;}
.yc4{bottom:262.266667pt;}
.y50{bottom:263.946667pt;}
.yb1{bottom:264.346667pt;}
.y6a{bottom:265.706667pt;}
.y20{bottom:266.026667pt;}
.y106{bottom:276.906667pt;}
.yc3{bottom:277.866667pt;}
.y4f{bottom:279.626667pt;}
.yb0{bottom:279.946667pt;}
.y69{bottom:281.386667pt;}
.y1f{bottom:281.706667pt;}
.ye7{bottom:292.266667pt;}
.yc2{bottom:293.546667pt;}
.y4e{bottom:295.226667pt;}
.yaf{bottom:295.626667pt;}
.y68{bottom:296.986667pt;}
.y1e{bottom:297.306667pt;}
.y105{bottom:300.506667pt;}
.ye6{bottom:307.946667pt;}
.yc1{bottom:309.146667pt;}
.y4d{bottom:310.906667pt;}
.yae{bottom:311.226667pt;}
.y67{bottom:312.586667pt;}
.y1d{bottom:312.906667pt;}
.y104{bottom:316.186667pt;}
.ye5{bottom:323.546667pt;}
.yad{bottom:326.906667pt;}
.y66{bottom:328.266667pt;}
.y1c{bottom:328.586667pt;}
.yc0{bottom:332.746667pt;}
.y4c{bottom:334.506667pt;}
.ye4{bottom:339.146667pt;}
.y103{bottom:339.786667pt;}
.y65{bottom:343.866667pt;}
.y1b{bottom:344.186667pt;}
.ye3{bottom:354.826667pt;}
.y102{bottom:355.386667pt;}
.yac{bottom:358.506667pt;}
.ybf{bottom:364.666667pt;}
.y4b{bottom:366.106667pt;}
.y1a{bottom:368.106667pt;}
.ye2{bottom:370.426667pt;}
.yab{bottom:374.106667pt;}
.y64{bottom:375.546667pt;}
.y101{bottom:379.306667pt;}
.y4a{bottom:381.786667pt;}
.yaa{bottom:389.786667pt;}
.y63{bottom:391.146667pt;}
.y49{bottom:397.386667pt;}
.ye1{bottom:402.106667pt;}
.ya9{bottom:405.386667pt;}
.y62{bottom:406.746667pt;}
.ybe{bottom:407.626667pt;}
.y19{bottom:411.066667pt;}
.y48{bottom:413.066667pt;}
.ye0{bottom:417.733333pt;}
.ya8{bottom:421.093333pt;}
.y100{bottom:422.293333pt;}
.y18{bottom:427.013333pt;}
.y47{bottom:428.693333pt;}
.y61{bottom:430.453333pt;}
.ydf{bottom:433.333333pt;}
.ybd{bottom:436.293333pt;}
.yff{bottom:437.893333pt;}
.y46{bottom:444.293333pt;}
.yde{bottom:449.013333pt;}
.ya7{bottom:452.693333pt;}
.yfe{bottom:453.573333pt;}
.y17{bottom:459.893333pt;}
.y60{bottom:462.373333pt;}
.ydd{bottom:464.613333pt;}
.ya6{bottom:468.293333pt;}
.yfd{bottom:469.173333pt;}
.y16{bottom:475.493333pt;}
.y45{bottom:475.973333pt;}
.ydc{bottom:480.293333pt;}
.ya5{bottom:483.973333pt;}
.yfc{bottom:484.773333pt;}
.y15{bottom:491.173333pt;}
.y44{bottom:491.573333pt;}
.ydb{bottom:495.893333pt;}
.ya4{bottom:499.573333pt;}
.yfb{bottom:500.453333pt;}
.y5f{bottom:505.253333pt;}
.y14{bottom:506.773333pt;}
.y43{bottom:507.253333pt;}
.ya3{bottom:515.253333pt;}
.yfa{bottom:516.053333pt;}
.yda{bottom:519.493333pt;}
.y13{bottom:522.373333pt;}
.y42{bottom:522.853333pt;}
.ya2{bottom:530.853333pt;}
.yf9{bottom:531.733333pt;}
.y5e{bottom:533.893333pt;}
.y12{bottom:538.053333pt;}
.y41{bottom:538.453333pt;}
.yf8{bottom:547.333333pt;}
.yd9{bottom:551.173333pt;}
.y11{bottom:553.653333pt;}
.y40{bottom:554.133333pt;}
.ya1{bottom:554.453333pt;}
.yf7{bottom:562.933333pt;}
.yd8{bottom:566.773333pt;}
.y10{bottom:569.333333pt;}
.y3f{bottom:569.733333pt;}
.yf6{bottom:578.613333pt;}
.yd7{bottom:582.453333pt;}
.yf{bottom:584.933333pt;}
.ya0{bottom:586.133333pt;}
.yf5{bottom:594.213333pt;}
.yd6{bottom:598.053333pt;}
.ye{bottom:600.533333pt;}
.y3e{bottom:601.413333pt;}
.y9f{bottom:601.733333pt;}
.yf4{bottom:609.813333pt;}
.yd5{bottom:613.653333pt;}
.yd{bottom:616.213333pt;}
.y3d{bottom:617.013333pt;}
.y9e{bottom:617.413333pt;}
.yf3{bottom:625.493333pt;}
.yd4{bottom:629.333333pt;}
.yc{bottom:631.813333pt;}
.y3c{bottom:632.613333pt;}
.y9d{bottom:633.013333pt;}
.y85{bottom:636.933333pt;}
.yf2{bottom:641.093333pt;}
.yb{bottom:647.493333pt;}
.y3b{bottom:648.293333pt;}
.y9c{bottom:648.613333pt;}
.y84{bottom:652.613333pt;}
.yf1{bottom:656.773333pt;}
.yd3{bottom:660.933333pt;}
.y9b{bottom:664.293333pt;}
.y83{bottom:668.213333pt;}
.ya{bottom:671.413333pt;}
.y3a{bottom:671.893333pt;}
.yd2{bottom:676.613333pt;}
.yf0{bottom:680.693333pt;}
.y82{bottom:691.813333pt;}
.yd1{bottom:692.213333pt;}
.y9a{bottom:695.893333pt;}
.y39{bottom:703.813333pt;}
.yd0{bottom:707.813333pt;}
.y99{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.y81{bottom:723.493333pt;}
.yef{bottom:723.573333pt;}
.y98{bottom:727.173333pt;}
.y80{bottom:739.093333pt;}
.y97{bottom:742.773333pt;}
.y8{bottom:745.893333pt;}
.y38{bottom:746.693333pt;}
.yee{bottom:752.213333pt;}
.y7f{bottom:754.693333pt;}
.y96{bottom:758.453333pt;}
.y37{bottom:762.373333pt;}
.y7e{bottom:770.373333pt;}
.y7{bottom:777.733333pt;}
.y36{bottom:777.973333pt;}
.y7d{bottom:785.973333pt;}
.ycf{bottom:786.373333pt;}
.y95{bottom:790.053333pt;}
.y111{bottom:793.973333pt;}
.y7c{bottom:801.653333pt;}
.yce{bottom:801.973333pt;}
.y94{bottom:805.733333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.ycd{bottom:817.653333pt;}
.y93{bottom:821.333333pt;}
.y34{bottom:825.253333pt;}
.y7b{bottom:833.253333pt;}
.y92{bottom:836.933333pt;}
.y33{bottom:840.853333pt;}
.ybc{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y7a{bottom:848.853333pt;}
.y91{bottom:852.613333pt;}
.y32{bottom:856.533333pt;}
.y5d{bottom:856.853333pt;}
.y79{bottom:864.533333pt;}
.y90{bottom:868.213333pt;}
.y31{bottom:872.133333pt;}
.y5c{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y78{bottom:880.133333pt;}
.y5b{bottom:888.133333pt;}
.y8f{bottom:891.813333pt;}
.y77{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y30{bottom:903.840000pt;}
.y76{bottom:911.440000pt;}
.y2f{bottom:919.440000pt;}
.y8e{bottom:923.760000pt;}
.y75{bottom:927.040000pt;}
.y110{bottom:927.440000pt;}
.y2e{bottom:935.040000pt;}
.ybb{bottom:935.440000pt;}
.y10f{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.yba{bottom:951.040000pt;}
.y74{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.y5a{bottom:966.720000pt;}
.y73{bottom:974.320000pt;}
.y59{bottom:982.320000pt;}
.y72{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.xb{left:112.879988pt;}
.x9{left:129.839988pt;}
.x2{left:180.266655pt;}
.x5{left:187.066655pt;}
.x7{left:270.026655pt;}
.xa{left:643.013322pt;}
.x8{left:646.053322pt;}
.x6{left:666.053322pt;}
.x4{left:675.013322pt;}
.x3{left:704.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; }
  