
    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_8775e4bbac7d3988fc180c9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b73ec53dc134f315667a03b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_0aeaa1ffa126888df7629fd4.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_e94d8536992d23d5fcd01eca.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_84996e552503557ef71118df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7fffb53d91a18cccdbf70fb1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.877441;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.lsf{letter-spacing:13.626720px;}
.ls11{letter-spacing:16.506720px;}
.lsa{letter-spacing:26.730720px;}
.ls2{letter-spacing:30.186720px;}
.lsb{letter-spacing:30.330720px;}
.ls10{letter-spacing:46.026720px;}
.ls3{letter-spacing:49.626720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.093600px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-6.094080px;}
._20{margin-left:-4.275120px;}
._4{margin-left:-3.257280px;}
._2{margin-left:-1.391040px;}
._0{width:1.228800px;}
._7{width:2.315040px;}
._a{width:3.330960px;}
._c{width:4.531200px;}
._b{width:5.737680px;}
._9{width:6.945360px;}
._8{width:8.031120px;}
._19{width:9.221760px;}
._11{width:10.398240px;}
._17{width:11.600880px;}
._12{width:12.635520px;}
._18{width:13.890480px;}
._d{width:16.519920px;}
._e{width:17.636640px;}
._1b{width:19.526640px;}
._1a{width:20.830080px;}
._f{width:22.137360px;}
._10{width:23.287680px;}
._1c{width:25.099200px;}
._27{width:26.428800px;}
._1e{width:27.575520px;}
._1f{width:29.382720px;}
._16{width:30.384240px;}
._14{width:31.911840px;}
._13{width:33.405840px;}
._15{width:36.334080px;}
._26{width:38.153040px;}
._25{width:39.262320px;}
._23{width:41.266080px;}
._22{width:42.489360px;}
._21{width:44.282160px;}
._24{width:50.583120px;}
._2b{width:62.499120px;}
._2a{width:64.122480px;}
._1d{width:65.613120px;}
._29{width:77.072640px;}
._28{width:78.524640px;}
._6{width:202.500000px;}
._5{width:345.178560px;}
._3{width:631.448160px;}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y56{bottom:5.760000px;}
.y70{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.y71{bottom:9.900000px;}
.y59{bottom:15.660000px;}
.y54{bottom:15.840000px;}
.y7a{bottom:19.800000px;}
.y58{bottom:25.560000px;}
.y55{bottom:25.740000px;}
.y78{bottom:35.640000px;}
.y76{bottom:45.540000px;}
.y9{bottom:58.320000px;}
.y6{bottom:73.980000px;}
.yba{bottom:105.300000px;}
.y37{bottom:107.820000px;}
.yd6{bottom:112.500000px;}
.y6d{bottom:116.280000px;}
.y95{bottom:120.960000px;}
.yb9{bottom:125.280000px;}
.y36{bottom:127.620000px;}
.yd5{bottom:132.300000px;}
.y6c{bottom:136.080000px;}
.y94{bottom:140.940000px;}
.yb8{bottom:145.080000px;}
.y35{bottom:147.420000px;}
.yd4{bottom:152.310000px;}
.y6b{bottom:155.910000px;}
.y93{bottom:160.770000px;}
.yb7{bottom:164.910000px;}
.y34{bottom:167.250000px;}
.yd3{bottom:172.110000px;}
.y92{bottom:180.570000px;}
.y6a{bottom:184.710000px;}
.y33{bottom:187.050000px;}
.yd2{bottom:191.910000px;}
.y91{bottom:200.370000px;}
.y69{bottom:204.510000px;}
.y32{bottom:207.030000px;}
.yd1{bottom:211.710000px;}
.y90{bottom:220.170000px;}
.y68{bottom:224.490000px;}
.y31{bottom:226.830000px;}
.yd0{bottom:231.510000px;}
.y67{bottom:244.290000px;}
.y30{bottom:246.630000px;}
.y8f{bottom:249.150000px;}
.ycf{bottom:251.490000px;}
.y66{bottom:264.090000px;}
.y2f{bottom:266.430000px;}
.y8e{bottom:268.950000px;}
.yce{bottom:271.290000px;}
.y65{bottom:283.890000px;}
.y2e{bottom:286.230000px;}
.y8d{bottom:288.750000px;}
.ycd{bottom:291.090000px;}
.y64{bottom:303.690000px;}
.y2d{bottom:306.210000px;}
.y8c{bottom:308.550000px;}
.ycc{bottom:310.890000px;}
.y63{bottom:323.670000px;}
.y2c{bottom:326.010000px;}
.y8b{bottom:328.350000px;}
.ycb{bottom:330.690000px;}
.y62{bottom:343.470000px;}
.y2b{bottom:345.810000px;}
.y8a{bottom:348.330000px;}
.yca{bottom:350.670000px;}
.y61{bottom:363.270000px;}
.y2a{bottom:365.610000px;}
.y89{bottom:368.130000px;}
.yc9{bottom:370.470000px;}
.y60{bottom:383.070000px;}
.y29{bottom:385.410000px;}
.y88{bottom:387.930000px;}
.yc8{bottom:390.270000px;}
.y5f{bottom:402.915000px;}
.y28{bottom:405.435000px;}
.y87{bottom:407.775000px;}
.yc7{bottom:410.115000px;}
.y5e{bottom:422.895000px;}
.y27{bottom:425.235000px;}
.y86{bottom:427.575000px;}
.yc6{bottom:429.915000px;}
.y5d{bottom:442.695000px;}
.y26{bottom:445.035000px;}
.y85{bottom:447.555000px;}
.yc5{bottom:449.895000px;}
.y5c{bottom:460.875000px;}
.yb6{bottom:462.495000px;}
.y25{bottom:464.835000px;}
.y84{bottom:467.355000px;}
.yc4{bottom:469.695000px;}
.yb5{bottom:482.295000px;}
.y24{bottom:484.635000px;}
.y83{bottom:487.155000px;}
.yc3{bottom:489.495000px;}
.yb4{bottom:502.095000px;}
.y23{bottom:504.615000px;}
.y5b{bottom:504.975000px;}
.y82{bottom:506.955000px;}
.yc2{bottom:509.295000px;}
.yb3{bottom:522.075000px;}
.y22{bottom:524.415000px;}
.y81{bottom:526.755000px;}
.yc1{bottom:529.095000px;}
.yb2{bottom:541.875000px;}
.y21{bottom:544.215000px;}
.y80{bottom:546.735000px;}
.yc0{bottom:549.075000px;}
.y5a{bottom:549.255000px;}
.yb1{bottom:561.675000px;}
.y20{bottom:564.015000px;}
.y7f{bottom:566.535000px;}
.ybf{bottom:568.875000px;}
.y57{bottom:573.555000px;}
.yb0{bottom:581.475000px;}
.y1f{bottom:583.815000px;}
.y7e{bottom:586.335000px;}
.ybe{bottom:588.675000px;}
.yaf{bottom:601.275000px;}
.y1e{bottom:603.795000px;}
.y7d{bottom:606.135000px;}
.ybd{bottom:608.475000px;}
.y53{bottom:618.375000px;}
.yae{bottom:621.255000px;}
.y1d{bottom:623.595000px;}
.y7c{bottom:625.935000px;}
.ybc{bottom:628.275000px;}
.yad{bottom:641.055000px;}
.y1c{bottom:643.395000px;}
.y7b{bottom:645.915000px;}
.ybb{bottom:648.255000px;}
.y1b{bottom:663.225000px;}
.y79{bottom:664.125000px;}
.y52{bottom:668.085000px;}
.yac{bottom:669.885000px;}
.y1a{bottom:683.025000px;}
.y51{bottom:687.885000px;}
.yab{bottom:689.685000px;}
.y19{bottom:703.005000px;}
.y50{bottom:707.685000px;}
.yaa{bottom:709.485000px;}
.y77{bottom:709.665000px;}
.y18{bottom:722.805000px;}
.y4f{bottom:727.485000px;}
.ya9{bottom:729.465000px;}
.y17{bottom:742.605000px;}
.y4e{bottom:747.465000px;}
.ya8{bottom:749.265000px;}
.y16{bottom:764.745000px;}
.y4d{bottom:767.265000px;}
.ya7{bottom:769.065000px;}
.y75{bottom:773.745000px;}
.y15{bottom:784.545000px;}
.y4c{bottom:787.065000px;}
.ya6{bottom:788.865000px;}
.y14{bottom:804.345000px;}
.y4b{bottom:806.865000px;}
.ya5{bottom:808.665000px;}
.y13{bottom:824.145000px;}
.y4a{bottom:826.665000px;}
.ya4{bottom:828.645000px;}
.y74{bottom:837.825000px;}
.y12{bottom:843.945000px;}
.y49{bottom:846.645000px;}
.ya3{bottom:848.445000px;}
.y11{bottom:863.925000px;}
.y48{bottom:866.445000px;}
.ya2{bottom:868.245000px;}
.y73{bottom:881.925000px;}
.y10{bottom:883.545000px;}
.y47{bottom:886.245000px;}
.ya1{bottom:888.045000px;}
.yf{bottom:905.910000px;}
.y46{bottom:906.090000px;}
.y72{bottom:906.270000px;}
.ya0{bottom:907.890000px;}
.y45{bottom:925.890000px;}
.y6f{bottom:930.570000px;}
.ye{bottom:930.930000px;}
.y9f{bottom:936.870000px;}
.y44{bottom:945.870000px;}
.yd{bottom:946.050000px;}
.y6e{bottom:955.770000px;}
.y9e{bottom:956.670000px;}
.y43{bottom:965.670000px;}
.yc{bottom:967.290000px;}
.y9d{bottom:976.470000px;}
.y42{bottom:985.470000px;}
.yb{bottom:990.690000px;}
.y9c{bottom:996.270000px;}
.y41{bottom:1005.270000px;}
.y9b{bottom:1016.070000px;}
.ya{bottom:1022.550000px;}
.y40{bottom:1025.070000px;}
.y9a{bottom:1036.050000px;}
.y3f{bottom:1045.050000px;}
.y99{bottom:1055.850000px;}
.y3e{bottom:1064.850000px;}
.y5{bottom:1067.370000px;}
.y98{bottom:1075.650000px;}
.y3d{bottom:1084.650000px;}
.y97{bottom:1095.450000px;}
.y4{bottom:1102.830000px;}
.y3c{bottom:1104.450000px;}
.y96{bottom:1115.250000px;}
.y3b{bottom:1124.250000px;}
.y3{bottom:1131.270000px;}
.y3a{bottom:1144.230000px;}
.y2{bottom:1159.740000px;}
.y39{bottom:1164.060000px;}
.y1{bottom:1190.520000px;}
.y38{bottom:1193.400000px;}
.h11{height:19.800000px;}
.h14{height:19.836000px;}
.h13{height:19.980000px;}
.h6{height:21.780000px;}
.hb{height:27.147656px;}
.h10{height:39.600000px;}
.h12{height:39.780000px;}
.hf{height:39.816000px;}
.hc{height:41.726953px;}
.ha{height:42.164648px;}
.he{height:43.506914px;}
.hd{height:43.681992px;}
.h7{height:46.251562px;}
.h3{height:46.736719px;}
.h4{height:50.800781px;}
.h8{height:53.224453px;}
.h2{height:54.864844px;}
.h15{height:59.580000px;}
.h5{height:65.884219px;}
.h9{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:40.176000px;}
.wb{width:40.320000px;}
.w6{width:50.940000px;}
.w3{width:51.336000px;}
.wa{width:72.216000px;}
.wc{width:80.316000px;}
.w8{width:81.720000px;}
.w5{width:113.616000px;}
.w9{width:134.820000px;}
.w4{width:733.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.x3{left:8.100000px;}
.x5{left:18.000000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.x10{left:72.720000px;}
.x6{left:79.199987px;}
.xe{left:80.999987px;}
.x1d{left:86.075987px;}
.xf{left:96.515987px;}
.xd{left:99.035987px;}
.x4{left:106.056000px;}
.x1c{left:108.035987px;}
.x12{left:188.490000px;}
.xa{left:191.189987px;}
.x13{left:241.770000px;}
.x14{left:284.295000px;}
.x7{left:290.774987px;}
.x9{left:294.554987px;}
.x15{left:337.395000px;}
.x8{left:446.504987px;}
.xb{left:455.324987px;}
.x16{left:479.985000px;}
.x1a{left:482.324987px;}
.xc{left:487.364987px;}
.x1b{left:509.324987px;}
.x17{left:617.145000px;}
.x18{left:691.530000px;}
.x19{left:734.190000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.lsf{letter-spacing:12.112640pt;}
.ls11{letter-spacing:14.672640pt;}
.lsa{letter-spacing:23.760640pt;}
.ls2{letter-spacing:26.832640pt;}
.lsb{letter-spacing:26.960640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls3{letter-spacing:44.112640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-5.416960pt;}
._20{margin-left:-3.800107pt;}
._4{margin-left:-2.895360pt;}
._2{margin-left:-1.236480pt;}
._0{width:1.092267pt;}
._7{width:2.057813pt;}
._a{width:2.960853pt;}
._c{width:4.027733pt;}
._b{width:5.100160pt;}
._9{width:6.173653pt;}
._8{width:7.138773pt;}
._19{width:8.197120pt;}
._11{width:9.242880pt;}
._17{width:10.311893pt;}
._12{width:11.231573pt;}
._18{width:12.347093pt;}
._d{width:14.684373pt;}
._e{width:15.677013pt;}
._1b{width:17.357013pt;}
._1a{width:18.515627pt;}
._f{width:19.677653pt;}
._10{width:20.700160pt;}
._1c{width:22.310400pt;}
._27{width:23.492267pt;}
._1e{width:24.511573pt;}
._1f{width:26.117973pt;}
._16{width:27.008213pt;}
._14{width:28.366080pt;}
._13{width:29.694080pt;}
._15{width:32.296960pt;}
._26{width:33.913813pt;}
._25{width:34.899840pt;}
._23{width:36.680960pt;}
._22{width:37.768320pt;}
._21{width:39.361920pt;}
._24{width:44.962773pt;}
._2b{width:55.554773pt;}
._2a{width:56.997760pt;}
._1d{width:58.322773pt;}
._29{width:68.509013pt;}
._28{width:69.799680pt;}
._6{width:180.000000pt;}
._5{width:306.825387pt;}
._3{width:561.287253pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:5.120000pt;}
.y70{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.y71{bottom:8.800000pt;}
.y59{bottom:13.920000pt;}
.y54{bottom:14.080000pt;}
.y7a{bottom:17.600000pt;}
.y58{bottom:22.720000pt;}
.y55{bottom:22.880000pt;}
.y78{bottom:31.680000pt;}
.y76{bottom:40.480000pt;}
.y9{bottom:51.840000pt;}
.y6{bottom:65.760000pt;}
.yba{bottom:93.600000pt;}
.y37{bottom:95.840000pt;}
.yd6{bottom:100.000000pt;}
.y6d{bottom:103.360000pt;}
.y95{bottom:107.520000pt;}
.yb9{bottom:111.360000pt;}
.y36{bottom:113.440000pt;}
.yd5{bottom:117.600000pt;}
.y6c{bottom:120.960000pt;}
.y94{bottom:125.280000pt;}
.yb8{bottom:128.960000pt;}
.y35{bottom:131.040000pt;}
.yd4{bottom:135.386667pt;}
.y6b{bottom:138.586667pt;}
.y93{bottom:142.906667pt;}
.yb7{bottom:146.586667pt;}
.y34{bottom:148.666667pt;}
.yd3{bottom:152.986667pt;}
.y92{bottom:160.506667pt;}
.y6a{bottom:164.186667pt;}
.y33{bottom:166.266667pt;}
.yd2{bottom:170.586667pt;}
.y91{bottom:178.106667pt;}
.y69{bottom:181.786667pt;}
.y32{bottom:184.026667pt;}
.yd1{bottom:188.186667pt;}
.y90{bottom:195.706667pt;}
.y68{bottom:199.546667pt;}
.y31{bottom:201.626667pt;}
.yd0{bottom:205.786667pt;}
.y67{bottom:217.146667pt;}
.y30{bottom:219.226667pt;}
.y8f{bottom:221.466667pt;}
.ycf{bottom:223.546667pt;}
.y66{bottom:234.746667pt;}
.y2f{bottom:236.826667pt;}
.y8e{bottom:239.066667pt;}
.yce{bottom:241.146667pt;}
.y65{bottom:252.346667pt;}
.y2e{bottom:254.426667pt;}
.y8d{bottom:256.666667pt;}
.ycd{bottom:258.746667pt;}
.y64{bottom:269.946667pt;}
.y2d{bottom:272.186667pt;}
.y8c{bottom:274.266667pt;}
.ycc{bottom:276.346667pt;}
.y63{bottom:287.706667pt;}
.y2c{bottom:289.786667pt;}
.y8b{bottom:291.866667pt;}
.ycb{bottom:293.946667pt;}
.y62{bottom:305.306667pt;}
.y2b{bottom:307.386667pt;}
.y8a{bottom:309.626667pt;}
.yca{bottom:311.706667pt;}
.y61{bottom:322.906667pt;}
.y2a{bottom:324.986667pt;}
.y89{bottom:327.226667pt;}
.yc9{bottom:329.306667pt;}
.y60{bottom:340.506667pt;}
.y29{bottom:342.586667pt;}
.y88{bottom:344.826667pt;}
.yc8{bottom:346.906667pt;}
.y5f{bottom:358.146667pt;}
.y28{bottom:360.386667pt;}
.y87{bottom:362.466667pt;}
.yc7{bottom:364.546667pt;}
.y5e{bottom:375.906667pt;}
.y27{bottom:377.986667pt;}
.y86{bottom:380.066667pt;}
.yc6{bottom:382.146667pt;}
.y5d{bottom:393.506667pt;}
.y26{bottom:395.586667pt;}
.y85{bottom:397.826667pt;}
.yc5{bottom:399.906667pt;}
.y5c{bottom:409.666667pt;}
.yb6{bottom:411.106667pt;}
.y25{bottom:413.186667pt;}
.y84{bottom:415.426667pt;}
.yc4{bottom:417.506667pt;}
.yb5{bottom:428.706667pt;}
.y24{bottom:430.786667pt;}
.y83{bottom:433.026667pt;}
.yc3{bottom:435.106667pt;}
.yb4{bottom:446.306667pt;}
.y23{bottom:448.546667pt;}
.y5b{bottom:448.866667pt;}
.y82{bottom:450.626667pt;}
.yc2{bottom:452.706667pt;}
.yb3{bottom:464.066667pt;}
.y22{bottom:466.146667pt;}
.y81{bottom:468.226667pt;}
.yc1{bottom:470.306667pt;}
.yb2{bottom:481.666667pt;}
.y21{bottom:483.746667pt;}
.y80{bottom:485.986667pt;}
.yc0{bottom:488.066667pt;}
.y5a{bottom:488.226667pt;}
.yb1{bottom:499.266667pt;}
.y20{bottom:501.346667pt;}
.y7f{bottom:503.586667pt;}
.ybf{bottom:505.666667pt;}
.y57{bottom:509.826667pt;}
.yb0{bottom:516.866667pt;}
.y1f{bottom:518.946667pt;}
.y7e{bottom:521.186667pt;}
.ybe{bottom:523.266667pt;}
.yaf{bottom:534.466667pt;}
.y1e{bottom:536.706667pt;}
.y7d{bottom:538.786667pt;}
.ybd{bottom:540.866667pt;}
.y53{bottom:549.666667pt;}
.yae{bottom:552.226667pt;}
.y1d{bottom:554.306667pt;}
.y7c{bottom:556.386667pt;}
.ybc{bottom:558.466667pt;}
.yad{bottom:569.826667pt;}
.y1c{bottom:571.906667pt;}
.y7b{bottom:574.146667pt;}
.ybb{bottom:576.226667pt;}
.y1b{bottom:589.533333pt;}
.y79{bottom:590.333333pt;}
.y52{bottom:593.853333pt;}
.yac{bottom:595.453333pt;}
.y1a{bottom:607.133333pt;}
.y51{bottom:611.453333pt;}
.yab{bottom:613.053333pt;}
.y19{bottom:624.893333pt;}
.y50{bottom:629.053333pt;}
.yaa{bottom:630.653333pt;}
.y77{bottom:630.813333pt;}
.y18{bottom:642.493333pt;}
.y4f{bottom:646.653333pt;}
.ya9{bottom:648.413333pt;}
.y17{bottom:660.093333pt;}
.y4e{bottom:664.413333pt;}
.ya8{bottom:666.013333pt;}
.y16{bottom:679.773333pt;}
.y4d{bottom:682.013333pt;}
.ya7{bottom:683.613333pt;}
.y75{bottom:687.773333pt;}
.y15{bottom:697.373333pt;}
.y4c{bottom:699.613333pt;}
.ya6{bottom:701.213333pt;}
.y14{bottom:714.973333pt;}
.y4b{bottom:717.213333pt;}
.ya5{bottom:718.813333pt;}
.y13{bottom:732.573333pt;}
.y4a{bottom:734.813333pt;}
.ya4{bottom:736.573333pt;}
.y74{bottom:744.733333pt;}
.y12{bottom:750.173333pt;}
.y49{bottom:752.573333pt;}
.ya3{bottom:754.173333pt;}
.y11{bottom:767.933333pt;}
.y48{bottom:770.173333pt;}
.ya2{bottom:771.773333pt;}
.y73{bottom:783.933333pt;}
.y10{bottom:785.373333pt;}
.y47{bottom:787.773333pt;}
.ya1{bottom:789.373333pt;}
.yf{bottom:805.253333pt;}
.y46{bottom:805.413333pt;}
.y72{bottom:805.573333pt;}
.ya0{bottom:807.013333pt;}
.y45{bottom:823.013333pt;}
.y6f{bottom:827.173333pt;}
.ye{bottom:827.493333pt;}
.y9f{bottom:832.773333pt;}
.y44{bottom:840.773333pt;}
.yd{bottom:840.933333pt;}
.y6e{bottom:849.573333pt;}
.y9e{bottom:850.373333pt;}
.y43{bottom:858.373333pt;}
.yc{bottom:859.813333pt;}
.y9d{bottom:867.973333pt;}
.y42{bottom:875.973333pt;}
.yb{bottom:880.613333pt;}
.y9c{bottom:885.573333pt;}
.y41{bottom:893.573333pt;}
.y9b{bottom:903.173333pt;}
.ya{bottom:908.933333pt;}
.y40{bottom:911.173333pt;}
.y9a{bottom:920.933333pt;}
.y3f{bottom:928.933333pt;}
.y99{bottom:938.533333pt;}
.y3e{bottom:946.533333pt;}
.y5{bottom:948.773333pt;}
.y98{bottom:956.133333pt;}
.y3d{bottom:964.133333pt;}
.y97{bottom:973.733333pt;}
.y4{bottom:980.293333pt;}
.y3c{bottom:981.733333pt;}
.y96{bottom:991.333333pt;}
.y3b{bottom:999.333333pt;}
.y3{bottom:1005.573333pt;}
.y3a{bottom:1017.093333pt;}
.y2{bottom:1030.880000pt;}
.y39{bottom:1034.720000pt;}
.y1{bottom:1058.240000pt;}
.y38{bottom:1060.800000pt;}
.h11{height:17.600000pt;}
.h14{height:17.632000pt;}
.h13{height:17.760000pt;}
.h6{height:19.360000pt;}
.hb{height:24.131250pt;}
.h10{height:35.200000pt;}
.h12{height:35.360000pt;}
.hf{height:35.392000pt;}
.hc{height:37.090625pt;}
.ha{height:37.479688pt;}
.he{height:38.672812pt;}
.hd{height:38.828437pt;}
.h7{height:41.112500pt;}
.h3{height:41.543750pt;}
.h4{height:45.156250pt;}
.h8{height:47.310625pt;}
.h2{height:48.768750pt;}
.h15{height:52.960000pt;}
.h5{height:58.563750pt;}
.h9{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:35.712000pt;}
.wb{width:35.840000pt;}
.w6{width:45.280000pt;}
.w3{width:45.632000pt;}
.wa{width:64.192000pt;}
.wc{width:71.392000pt;}
.w8{width:72.640000pt;}
.w5{width:100.992000pt;}
.w9{width:119.840000pt;}
.w4{width:651.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.x3{left:7.200000pt;}
.x5{left:16.000000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x10{left:64.640000pt;}
.x6{left:70.399988pt;}
.xe{left:71.999988pt;}
.x1d{left:76.511988pt;}
.xf{left:85.791988pt;}
.xd{left:88.031988pt;}
.x4{left:94.272000pt;}
.x1c{left:96.031988pt;}
.x12{left:167.546667pt;}
.xa{left:169.946655pt;}
.x13{left:214.906667pt;}
.x14{left:252.706667pt;}
.x7{left:258.466655pt;}
.x9{left:261.826655pt;}
.x15{left:299.906667pt;}
.x8{left:396.893322pt;}
.xb{left:404.733322pt;}
.x16{left:426.653333pt;}
.x1a{left:428.733322pt;}
.xc{left:433.213322pt;}
.x1b{left:452.733322pt;}
.x17{left:548.573333pt;}
.x18{left:614.693333pt;}
.x19{left:652.613333pt;}
}




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