
    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_6bdb0ad7e113e6873eab7d86.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2d541a7e14887b0989d41ebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_af59584081f852be40503eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_4324e919d609a17ef7c9b1a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_75811b6868d1234f0b7773ea.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e44d6743abcbc9fd65963263.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.135600px;}
.ls9{letter-spacing:0.149760px;}
.lse{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.189600px;}
.ls4{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.379920px;}
.ls16{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.756000px;}
.ls11{letter-spacing:0.828000px;}
.lsb{letter-spacing:1.080000px;}
.ls15{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-3.710160px;}
._11{margin-left:-2.672640px;}
._2{margin-left:-1.152000px;}
._0{width:1.317600px;}
._5{width:2.657760px;}
._a{width:4.422240px;}
._12{width:5.775120px;}
._13{width:6.778080px;}
._10{width:7.796880px;}
._e{width:8.901360px;}
._b{width:10.395360px;}
._c{width:11.428560px;}
._1b{width:12.633120px;}
._14{width:13.898160px;}
._3{width:15.513120px;}
._4{width:16.992480px;}
._15{width:19.478880px;}
._7{width:21.271680px;}
._8{width:22.293360px;}
._9{width:23.794320px;}
._19{width:25.637040px;}
._f{width:26.652960px;}
._1a{width:28.812960px;}
._18{width:30.116160px;}
._17{width:31.613040px;}
._d{width:32.927760px;}
._1e{width:49.597920px;}
._1f{width:53.223840px;}
._1d{width:54.272880px;}
._1c{width:55.278000px;}
._6{width:140.646720px;}
._1{width:1100.028000px;}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y29{bottom:5.760000px;}
.y39{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y27{bottom:11.160000px;}
.yb6{bottom:25.560000px;}
.y38{bottom:25.740000px;}
.y26{bottom:30.960000px;}
.y6{bottom:36.180000px;}
.yb5{bottom:45.360000px;}
.y37{bottom:45.540000px;}
.y25{bottom:50.760000px;}
.yb{bottom:57.960000px;}
.y5{bottom:58.140000px;}
.y36{bottom:65.340000px;}
.y24{bottom:70.560000px;}
.yb2{bottom:80.280000px;}
.y4{bottom:81.900000px;}
.y35{bottom:85.140000px;}
.y83{bottom:85.680000px;}
.yc2{bottom:90.180000px;}
.y23{bottom:90.540000px;}
.y4b{bottom:91.260000px;}
.ydf{bottom:93.780000px;}
.ye2{bottom:94.680000px;}
.yb1{bottom:100.260000px;}
.ybd{bottom:104.940000px;}
.y34{bottom:105.120000px;}
.y82{bottom:105.480000px;}
.y9{bottom:108.750000px;}
.yc1{bottom:109.980000px;}
.y22{bottom:110.340000px;}
.y4a{bottom:111.060000px;}
.yde{bottom:113.580000px;}
.ye1{bottom:114.480000px;}
.y3{bottom:118.110000px;}
.yb0{bottom:120.060000px;}
.ybc{bottom:124.740000px;}
.y33{bottom:124.920000px;}
.y81{bottom:125.280000px;}
.yc0{bottom:129.780000px;}
.y21{bottom:130.140000px;}
.y8{bottom:130.710000px;}
.y49{bottom:130.860000px;}
.ydd{bottom:133.380000px;}
.ye0{bottom:134.280000px;}
.yaf{bottom:139.860000px;}
.ybb{bottom:144.540000px;}
.y32{bottom:144.720000px;}
.ybf{bottom:149.760000px;}
.y20{bottom:149.940000px;}
.y48{bottom:150.660000px;}
.ydc{bottom:153.210000px;}
.y80{bottom:154.290000px;}
.yae{bottom:159.690000px;}
.y31{bottom:164.520000px;}
.ybe{bottom:164.550000px;}
.yba{bottom:164.565000px;}
.y1f{bottom:169.740000px;}
.y47{bottom:170.670000px;}
.ydb{bottom:173.010000px;}
.y7f{bottom:174.090000px;}
.yad{bottom:179.490000px;}
.y30{bottom:184.320000px;}
.yb9{bottom:184.365000px;}
.y1e{bottom:189.540000px;}
.y46{bottom:190.470000px;}
.yda{bottom:192.990000px;}
.y7e{bottom:193.890000px;}
.yac{bottom:199.470000px;}
.y2f{bottom:204.330000px;}
.y1d{bottom:209.550000px;}
.y45{bottom:210.270000px;}
.yd9{bottom:212.790000px;}
.y7d{bottom:213.690000px;}
.yab{bottom:219.270000px;}
.y2e{bottom:224.130000px;}
.y1c{bottom:229.350000px;}
.y44{bottom:230.070000px;}
.yd8{bottom:232.590000px;}
.y7c{bottom:233.490000px;}
.yaa{bottom:239.070000px;}
.y2d{bottom:243.930000px;}
.yb8{bottom:244.650000px;}
.y1b{bottom:249.150000px;}
.y43{bottom:249.870000px;}
.yd7{bottom:252.390000px;}
.y7b{bottom:253.470000px;}
.ya9{bottom:258.870000px;}
.y2c{bottom:263.730000px;}
.y1a{bottom:268.950000px;}
.y42{bottom:269.850000px;}
.yd6{bottom:272.190000px;}
.y7a{bottom:273.270000px;}
.y2b{bottom:283.530000px;}
.ya8{bottom:287.670000px;}
.y19{bottom:288.750000px;}
.y41{bottom:289.650000px;}
.yd5{bottom:292.170000px;}
.y79{bottom:293.070000px;}
.y2a{bottom:303.510000px;}
.ya7{bottom:307.650000px;}
.y18{bottom:308.730000px;}
.y40{bottom:309.450000px;}
.yd4{bottom:311.970000px;}
.y78{bottom:312.870000px;}
.ya6{bottom:327.450000px;}
.y17{bottom:328.530000px;}
.y3f{bottom:329.250000px;}
.yd3{bottom:331.770000px;}
.y77{bottom:332.670000px;}
.ya5{bottom:347.250000px;}
.y3e{bottom:349.050000px;}
.yd2{bottom:351.570000px;}
.y76{bottom:352.650000px;}
.ya4{bottom:367.050000px;}
.yd1{bottom:367.950000px;}
.y3d{bottom:369.030000px;}
.y75{bottom:372.450000px;}
.ya3{bottom:386.850000px;}
.y3c{bottom:388.830000px;}
.yd0{bottom:391.170000px;}
.y74{bottom:392.250000px;}
.ya2{bottom:406.875000px;}
.y3b{bottom:408.675000px;}
.y73{bottom:412.095000px;}
.ycf{bottom:414.435000px;}
.ya1{bottom:426.675000px;}
.y3a{bottom:428.475000px;}
.y72{bottom:431.895000px;}
.yce{bottom:437.655000px;}
.yb7{bottom:443.775000px;}
.ya0{bottom:446.475000px;}
.y16{bottom:447.735000px;}
.y71{bottom:451.875000px;}
.ycd{bottom:460.875000px;}
.y70{bottom:471.675000px;}
.y9f{bottom:475.275000px;}
.ycc{bottom:484.095000px;}
.y6f{bottom:491.475000px;}
.y9e{bottom:495.075000px;}
.y6e{bottom:511.275000px;}
.ycb{bottom:511.815000px;}
.y9d{bottom:515.055000px;}
.yb4{bottom:523.875000px;}
.y6d{bottom:531.075000px;}
.yca{bottom:531.795000px;}
.y9c{bottom:534.855000px;}
.y6c{bottom:551.055000px;}
.yc9{bottom:551.595000px;}
.y9b{bottom:554.655000px;}
.y6b{bottom:570.855000px;}
.yc8{bottom:571.395000px;}
.y9a{bottom:574.455000px;}
.y6a{bottom:590.655000px;}
.yc7{bottom:591.195000px;}
.y99{bottom:594.255000px;}
.yb3{bottom:603.975000px;}
.y69{bottom:610.455000px;}
.yc6{bottom:610.995000px;}
.y98{bottom:623.235000px;}
.y68{bottom:630.255000px;}
.yc5{bottom:630.975000px;}
.y97{bottom:643.035000px;}
.y67{bottom:650.265000px;}
.yc4{bottom:650.805000px;}
.y96{bottom:662.865000px;}
.yc3{bottom:667.365000px;}
.y66{bottom:670.065000px;}
.y95{bottom:682.665000px;}
.y65{bottom:689.865000px;}
.y94{bottom:702.465000px;}
.y64{bottom:709.665000px;}
.y63{bottom:729.465000px;}
.y93{bottom:731.445000px;}
.y62{bottom:749.445000px;}
.y92{bottom:751.245000px;}
.y61{bottom:769.245000px;}
.y28{bottom:770.505000px;}
.y91{bottom:771.045000px;}
.y60{bottom:789.045000px;}
.y90{bottom:790.845000px;}
.y15{bottom:801.285000px;}
.y5f{bottom:808.845000px;}
.y8f{bottom:810.645000px;}
.y14{bottom:821.085000px;}
.y5e{bottom:828.645000px;}
.y8e{bottom:830.625000px;}
.y13{bottom:846.285000px;}
.y5d{bottom:848.625000px;}
.y8d{bottom:850.425000px;}
.y12{bottom:860.865000px;}
.y5c{bottom:868.425000px;}
.y8c{bottom:870.225000px;}
.y11{bottom:885.885000px;}
.y5b{bottom:888.225000px;}
.y8b{bottom:899.070000px;}
.y10{bottom:901.050000px;}
.y5a{bottom:908.070000px;}
.y8a{bottom:918.870000px;}
.yf{bottom:922.290000px;}
.y59{bottom:927.870000px;}
.y89{bottom:938.850000px;}
.ye{bottom:945.870000px;}
.y58{bottom:947.850000px;}
.y88{bottom:958.650000px;}
.y57{bottom:967.650000px;}
.yd{bottom:977.550000px;}
.y87{bottom:978.450000px;}
.y56{bottom:987.450000px;}
.y86{bottom:998.250000px;}
.y55{bottom:1007.250000px;}
.yc{bottom:1009.230000px;}
.y85{bottom:1018.050000px;}
.y54{bottom:1027.050000px;}
.ya{bottom:1035.330000px;}
.y84{bottom:1038.030000px;}
.y53{bottom:1047.030000px;}
.y1{bottom:1051.350000px;}
.y52{bottom:1066.830000px;}
.y51{bottom:1086.630000px;}
.y50{bottom:1106.430000px;}
.y4f{bottom:1126.230000px;}
.y4e{bottom:1146.210000px;}
.y4d{bottom:1166.040000px;}
.y4c{bottom:1194.840000px;}
.hd{height:19.800000px;}
.h12{height:19.836000px;}
.ha{height:28.115859px;}
.hc{height:42.164648px;}
.h8{height:43.215117px;}
.h13{height:43.506914px;}
.h5{height:47.901094px;}
.h6{height:52.066406px;}
.h9{height:53.958516px;}
.hf{height:65.884219px;}
.h7{height:67.565039px;}
.h3{height:73.722656px;}
.h10{height:79.380000px;}
.h4{height:105.060586px;}
.h2{height:156.810000px;}
.h11{height:198.390000px;}
.he{height:317.550000px;}
.hb{height:342.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:50.760000px;}
.wc{width:55.800000px;}
.we{width:67.356000px;}
.wf{width:124.560000px;}
.w2{width:127.656000px;}
.w4{width:157.170000px;}
.wa{width:241.815000px;}
.w9{width:260.670000px;}
.w8{width:260.715000px;}
.w6{width:302.475000px;}
.wb{width:415.515000px;}
.w7{width:477.825000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xa{left:57.060000px;}
.xd{left:64.260000px;}
.x16{left:75.239987px;}
.x12{left:87.516000px;}
.x7{left:102.285000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x3{left:181.650000px;}
.xc{left:245.729987px;}
.xe{left:325.695000px;}
.xb{left:362.415000px;}
.x11{left:417.134987px;}
.x13{left:504.105000px;}
.x14{left:560.805000px;}
.xf{left:587.085000px;}
.x15{left:612.645000px;}
.x9{left:681.450000px;}
.x10{left:752.909987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.120533pt;}
.ls9{letter-spacing:0.133120pt;}
.lse{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.168533pt;}
.ls4{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.337707pt;}
.ls16{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-3.297920pt;}
._11{margin-left:-2.375680pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.171200pt;}
._5{width:2.362453pt;}
._a{width:3.930880pt;}
._12{width:5.133440pt;}
._13{width:6.024960pt;}
._10{width:6.930560pt;}
._e{width:7.912320pt;}
._b{width:9.240320pt;}
._c{width:10.158720pt;}
._1b{width:11.229440pt;}
._14{width:12.353920pt;}
._3{width:13.789440pt;}
._4{width:15.104427pt;}
._15{width:17.314560pt;}
._7{width:18.908160pt;}
._8{width:19.816320pt;}
._9{width:21.150507pt;}
._19{width:22.788480pt;}
._f{width:23.691520pt;}
._1a{width:25.611520pt;}
._18{width:26.769920pt;}
._17{width:28.100480pt;}
._d{width:29.269120pt;}
._1e{width:44.087040pt;}
._1f{width:47.310080pt;}
._1d{width:48.242560pt;}
._1c{width:49.136000pt;}
._6{width:125.019307pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y29{bottom:5.120000pt;}
.y39{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y27{bottom:9.920000pt;}
.yb6{bottom:22.720000pt;}
.y38{bottom:22.880000pt;}
.y26{bottom:27.520000pt;}
.y6{bottom:32.160000pt;}
.yb5{bottom:40.320000pt;}
.y37{bottom:40.480000pt;}
.y25{bottom:45.120000pt;}
.yb{bottom:51.520000pt;}
.y5{bottom:51.680000pt;}
.y36{bottom:58.080000pt;}
.y24{bottom:62.720000pt;}
.yb2{bottom:71.360000pt;}
.y4{bottom:72.800000pt;}
.y35{bottom:75.680000pt;}
.y83{bottom:76.160000pt;}
.yc2{bottom:80.160000pt;}
.y23{bottom:80.480000pt;}
.y4b{bottom:81.120000pt;}
.ydf{bottom:83.360000pt;}
.ye2{bottom:84.160000pt;}
.yb1{bottom:89.120000pt;}
.ybd{bottom:93.280000pt;}
.y34{bottom:93.440000pt;}
.y82{bottom:93.760000pt;}
.y9{bottom:96.666667pt;}
.yc1{bottom:97.760000pt;}
.y22{bottom:98.080000pt;}
.y4a{bottom:98.720000pt;}
.yde{bottom:100.960000pt;}
.ye1{bottom:101.760000pt;}
.y3{bottom:104.986667pt;}
.yb0{bottom:106.720000pt;}
.ybc{bottom:110.880000pt;}
.y33{bottom:111.040000pt;}
.y81{bottom:111.360000pt;}
.yc0{bottom:115.360000pt;}
.y21{bottom:115.680000pt;}
.y8{bottom:116.186667pt;}
.y49{bottom:116.320000pt;}
.ydd{bottom:118.560000pt;}
.ye0{bottom:119.360000pt;}
.yaf{bottom:124.320000pt;}
.ybb{bottom:128.480000pt;}
.y32{bottom:128.640000pt;}
.ybf{bottom:133.120000pt;}
.y20{bottom:133.280000pt;}
.y48{bottom:133.920000pt;}
.ydc{bottom:136.186667pt;}
.y80{bottom:137.146667pt;}
.yae{bottom:141.946667pt;}
.y31{bottom:146.240000pt;}
.ybe{bottom:146.266667pt;}
.yba{bottom:146.280000pt;}
.y1f{bottom:150.880000pt;}
.y47{bottom:151.706667pt;}
.ydb{bottom:153.786667pt;}
.y7f{bottom:154.746667pt;}
.yad{bottom:159.546667pt;}
.y30{bottom:163.840000pt;}
.yb9{bottom:163.880000pt;}
.y1e{bottom:168.480000pt;}
.y46{bottom:169.306667pt;}
.yda{bottom:171.546667pt;}
.y7e{bottom:172.346667pt;}
.yac{bottom:177.306667pt;}
.y2f{bottom:181.626667pt;}
.y1d{bottom:186.266667pt;}
.y45{bottom:186.906667pt;}
.yd9{bottom:189.146667pt;}
.y7d{bottom:189.946667pt;}
.yab{bottom:194.906667pt;}
.y2e{bottom:199.226667pt;}
.y1c{bottom:203.866667pt;}
.y44{bottom:204.506667pt;}
.yd8{bottom:206.746667pt;}
.y7c{bottom:207.546667pt;}
.yaa{bottom:212.506667pt;}
.y2d{bottom:216.826667pt;}
.yb8{bottom:217.466667pt;}
.y1b{bottom:221.466667pt;}
.y43{bottom:222.106667pt;}
.yd7{bottom:224.346667pt;}
.y7b{bottom:225.306667pt;}
.ya9{bottom:230.106667pt;}
.y2c{bottom:234.426667pt;}
.y1a{bottom:239.066667pt;}
.y42{bottom:239.866667pt;}
.yd6{bottom:241.946667pt;}
.y7a{bottom:242.906667pt;}
.y2b{bottom:252.026667pt;}
.ya8{bottom:255.706667pt;}
.y19{bottom:256.666667pt;}
.y41{bottom:257.466667pt;}
.yd5{bottom:259.706667pt;}
.y79{bottom:260.506667pt;}
.y2a{bottom:269.786667pt;}
.ya7{bottom:273.466667pt;}
.y18{bottom:274.426667pt;}
.y40{bottom:275.066667pt;}
.yd4{bottom:277.306667pt;}
.y78{bottom:278.106667pt;}
.ya6{bottom:291.066667pt;}
.y17{bottom:292.026667pt;}
.y3f{bottom:292.666667pt;}
.yd3{bottom:294.906667pt;}
.y77{bottom:295.706667pt;}
.ya5{bottom:308.666667pt;}
.y3e{bottom:310.266667pt;}
.yd2{bottom:312.506667pt;}
.y76{bottom:313.466667pt;}
.ya4{bottom:326.266667pt;}
.yd1{bottom:327.066667pt;}
.y3d{bottom:328.026667pt;}
.y75{bottom:331.066667pt;}
.ya3{bottom:343.866667pt;}
.y3c{bottom:345.626667pt;}
.yd0{bottom:347.706667pt;}
.y74{bottom:348.666667pt;}
.ya2{bottom:361.666667pt;}
.y3b{bottom:363.266667pt;}
.y73{bottom:366.306667pt;}
.ycf{bottom:368.386667pt;}
.ya1{bottom:379.266667pt;}
.y3a{bottom:380.866667pt;}
.y72{bottom:383.906667pt;}
.yce{bottom:389.026667pt;}
.yb7{bottom:394.466667pt;}
.ya0{bottom:396.866667pt;}
.y16{bottom:397.986667pt;}
.y71{bottom:401.666667pt;}
.ycd{bottom:409.666667pt;}
.y70{bottom:419.266667pt;}
.y9f{bottom:422.466667pt;}
.ycc{bottom:430.306667pt;}
.y6f{bottom:436.866667pt;}
.y9e{bottom:440.066667pt;}
.y6e{bottom:454.466667pt;}
.ycb{bottom:454.946667pt;}
.y9d{bottom:457.826667pt;}
.yb4{bottom:465.666667pt;}
.y6d{bottom:472.066667pt;}
.yca{bottom:472.706667pt;}
.y9c{bottom:475.426667pt;}
.y6c{bottom:489.826667pt;}
.yc9{bottom:490.306667pt;}
.y9b{bottom:493.026667pt;}
.y6b{bottom:507.426667pt;}
.yc8{bottom:507.906667pt;}
.y9a{bottom:510.626667pt;}
.y6a{bottom:525.026667pt;}
.yc7{bottom:525.506667pt;}
.y99{bottom:528.226667pt;}
.yb3{bottom:536.866667pt;}
.y69{bottom:542.626667pt;}
.yc6{bottom:543.106667pt;}
.y98{bottom:553.986667pt;}
.y68{bottom:560.226667pt;}
.yc5{bottom:560.866667pt;}
.y97{bottom:571.586667pt;}
.y67{bottom:578.013333pt;}
.yc4{bottom:578.493333pt;}
.y96{bottom:589.213333pt;}
.yc3{bottom:593.213333pt;}
.y66{bottom:595.613333pt;}
.y95{bottom:606.813333pt;}
.y65{bottom:613.213333pt;}
.y94{bottom:624.413333pt;}
.y64{bottom:630.813333pt;}
.y63{bottom:648.413333pt;}
.y93{bottom:650.173333pt;}
.y62{bottom:666.173333pt;}
.y92{bottom:667.773333pt;}
.y61{bottom:683.773333pt;}
.y28{bottom:684.893333pt;}
.y91{bottom:685.373333pt;}
.y60{bottom:701.373333pt;}
.y90{bottom:702.973333pt;}
.y15{bottom:712.253333pt;}
.y5f{bottom:718.973333pt;}
.y8f{bottom:720.573333pt;}
.y14{bottom:729.853333pt;}
.y5e{bottom:736.573333pt;}
.y8e{bottom:738.333333pt;}
.y13{bottom:752.253333pt;}
.y5d{bottom:754.333333pt;}
.y8d{bottom:755.933333pt;}
.y12{bottom:765.213333pt;}
.y5c{bottom:771.933333pt;}
.y8c{bottom:773.533333pt;}
.y11{bottom:787.453333pt;}
.y5b{bottom:789.533333pt;}
.y8b{bottom:799.173333pt;}
.y10{bottom:800.933333pt;}
.y5a{bottom:807.173333pt;}
.y8a{bottom:816.773333pt;}
.yf{bottom:819.813333pt;}
.y59{bottom:824.773333pt;}
.y89{bottom:834.533333pt;}
.ye{bottom:840.773333pt;}
.y58{bottom:842.533333pt;}
.y88{bottom:852.133333pt;}
.y57{bottom:860.133333pt;}
.yd{bottom:868.933333pt;}
.y87{bottom:869.733333pt;}
.y56{bottom:877.733333pt;}
.y86{bottom:887.333333pt;}
.y55{bottom:895.333333pt;}
.yc{bottom:897.093333pt;}
.y85{bottom:904.933333pt;}
.y54{bottom:912.933333pt;}
.ya{bottom:920.293333pt;}
.y84{bottom:922.693333pt;}
.y53{bottom:930.693333pt;}
.y1{bottom:934.533333pt;}
.y52{bottom:948.293333pt;}
.y51{bottom:965.893333pt;}
.y50{bottom:983.493333pt;}
.y4f{bottom:1001.093333pt;}
.y4e{bottom:1018.853333pt;}
.y4d{bottom:1036.480000pt;}
.y4c{bottom:1062.080000pt;}
.hd{height:17.600000pt;}
.h12{height:17.632000pt;}
.ha{height:24.991875pt;}
.hc{height:37.479688pt;}
.h8{height:38.413438pt;}
.h13{height:38.672812pt;}
.h5{height:42.578750pt;}
.h6{height:46.281250pt;}
.h9{height:47.963125pt;}
.hf{height:58.563750pt;}
.h7{height:60.057813pt;}
.h3{height:65.531250pt;}
.h10{height:70.560000pt;}
.h4{height:93.387187pt;}
.h2{height:139.386667pt;}
.h11{height:176.346667pt;}
.he{height:282.266667pt;}
.hb{height:304.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:45.120000pt;}
.wc{width:49.600000pt;}
.we{width:59.872000pt;}
.wf{width:110.720000pt;}
.w2{width:113.472000pt;}
.w4{width:139.706667pt;}
.wa{width:214.946667pt;}
.w9{width:231.706667pt;}
.w8{width:231.746667pt;}
.w6{width:268.866667pt;}
.wb{width:369.346667pt;}
.w7{width:424.733333pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xa{left:50.720000pt;}
.xd{left:57.120000pt;}
.x16{left:66.879988pt;}
.x12{left:77.792000pt;}
.x7{left:90.920000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x3{left:161.466667pt;}
.xc{left:218.426655pt;}
.xe{left:289.506667pt;}
.xb{left:322.146667pt;}
.x11{left:370.786655pt;}
.x13{left:448.093333pt;}
.x14{left:498.493333pt;}
.xf{left:521.853333pt;}
.x15{left:544.573333pt;}
.x9{left:605.733333pt;}
.x10{left:669.253322pt;}
}




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