
    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_b41db0cfbccfc43b237494e8.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_38c95ff96ad32c0b4ca427fd.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_67353faf68fa43b3faf76bb6.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_8e8665395ea7c5727539e258.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_77c55cb795c9912d8399cc90.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_532944a1c6d93eb7c060efb0.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;}
.ls14{letter-spacing:-0.243600px;}
.ls9{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls12{letter-spacing:47.726640px;}
.ls11{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;}
}
.ws6{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.294800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.072800px;}
.ws2{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._16{margin-left:-3.939239px;}
._7{margin-left:-2.886000px;}
._0{margin-left:-1.050000px;}
._2{width:1.005816px;}
._4{width:2.120184px;}
._6{width:3.487200px;}
._10{width:4.809600px;}
._f{width:6.309379px;}
._d{width:7.395000px;}
._9{width:8.416800px;}
._3{width:10.280400px;}
._e{width:11.663400px;}
._8{width:14.255065px;}
._1{width:15.570360px;}
._c{width:16.713840px;}
._5{width:18.637200px;}
._a{width:20.200200px;}
._b{width:21.403201px;}
._17{width:22.602715px;}
._11{width:24.468840px;}
._12{width:25.791480px;}
._13{width:27.062520px;}
._14{width:28.076353px;}
._18{width:29.819520px;}
._15{width:36.011880px;}
._19{width:80.079840px;}
._1a{width:81.162000px;}
._1c{width:88.917480px;}
._1d{width:90.197400px;}
._1f{width:91.262160px;}
._1e{width:264.407760px;}
._1b{width:2366.082720px;}
.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;}
.yb3{bottom:7.830000px;}
.yb5{bottom:7.860000px;}
.yb7{bottom:7.920000px;}
.ydd{bottom:25.380000px;}
.ydb{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc4{bottom:112.440000px;}
.y5e{bottom:113.340000px;}
.ye6{bottom:114.600000px;}
.ya0{bottom:121.620000px;}
.yc3{bottom:129.990000px;}
.y5d{bottom:130.980000px;}
.ye5{bottom:132.240000px;}
.y9f{bottom:139.260000px;}
.y28{bottom:142.140000px;}
.y7f{bottom:142.320000px;}
.yc2{bottom:147.630000px;}
.y5c{bottom:148.530000px;}
.ye4{bottom:149.790000px;}
.y9e{bottom:156.810000px;}
.y27{bottom:159.690000px;}
.y7e{bottom:159.870000px;}
.yc1{bottom:165.180000px;}
.y5b{bottom:166.170000px;}
.ye3{bottom:167.430000px;}
.y9d{bottom:174.450000px;}
.y26{bottom:177.330000px;}
.y7d{bottom:177.510000px;}
.y5a{bottom:183.720000px;}
.ye2{bottom:184.980000px;}
.yc0{bottom:191.730000px;}
.y25{bottom:194.880000px;}
.y7c{bottom:195.060000px;}
.y9c{bottom:201.000000px;}
.y59{bottom:201.270000px;}
.ye1{bottom:211.890000px;}
.y24{bottom:212.430000px;}
.y7b{bottom:212.700000px;}
.y58{bottom:218.910000px;}
.ybf{bottom:227.370000px;}
.y23{bottom:230.070000px;}
.y7a{bottom:230.250000px;}
.y57{bottom:236.460000px;}
.y9b{bottom:236.550000px;}
.ybe{bottom:244.920000px;}
.y22{bottom:247.620000px;}
.y79{bottom:247.800000px;}
.y56{bottom:254.100000px;}
.y9a{bottom:254.190000px;}
.ye0{bottom:257.520000px;}
.ybd{bottom:262.560000px;}
.y21{bottom:265.260000px;}
.y55{bottom:271.650000px;}
.y99{bottom:271.740000px;}
.y78{bottom:274.440000px;}
.ybc{bottom:280.110000px;}
.y98{bottom:289.380000px;}
.y54{bottom:298.200000px;}
.y20{bottom:300.810000px;}
.ydf{bottom:302.430000px;}
.y97{bottom:306.930000px;}
.ybb{bottom:307.020000px;}
.y77{bottom:309.990000px;}
.y102{bottom:315.840000px;}
.y1f{bottom:318.360000px;}
.y96{bottom:324.480000px;}
.y76{bottom:327.630000px;}
.y101{bottom:333.390000px;}
.y53{bottom:333.840000px;}
.y1e{bottom:336.000000px;}
.y95{bottom:342.120000px;}
.y75{bottom:345.180000px;}
.yde{bottom:347.340000px;}
.y52{bottom:351.390000px;}
.yba{bottom:353.010000px;}
.y1d{bottom:353.550000px;}
.y94{bottom:359.670000px;}
.y100{bottom:359.940000px;}
.y74{bottom:362.730000px;}
.y51{bottom:368.940000px;}
.y1c{bottom:371.190000px;}
.y93{bottom:377.310000px;}
.yff{bottom:377.580000px;}
.y73{bottom:380.370000px;}
.yb9{bottom:380.730000px;}
.y50{bottom:386.580000px;}
.y1b{bottom:388.740000px;}
.ydc{bottom:392.340000px;}
.y92{bottom:394.860000px;}
.y72{bottom:397.920000px;}
.y4f{bottom:404.130000px;}
.y1a{bottom:406.290000px;}
.yb8{bottom:408.450000px;}
.y91{bottom:412.410000px;}
.y71{bottom:415.560000px;}
.y4e{bottom:421.770000px;}
.y19{bottom:423.930000px;}
.y70{bottom:433.110000px;}
.yb6{bottom:436.170000px;}
.yda{bottom:437.250000px;}
.y90{bottom:439.050000px;}
.y4d{bottom:439.320000px;}
.y18{bottom:441.480000px;}
.y6f{bottom:450.660000px;}
.y4c{bottom:456.870000px;}
.y17{bottom:459.030000px;}
.yb4{bottom:463.890000px;}
.yfe{bottom:465.870000px;}
.y6e{bottom:468.300000px;}
.y4b{bottom:474.540000px;}
.y8f{bottom:474.990000px;}
.yd9{bottom:482.190000px;}
.yfd{bottom:483.540000px;}
.y16{bottom:485.970000px;}
.yb2{bottom:491.640000px;}
.y4a{bottom:492.090000px;}
.y6d{bottom:494.880000px;}
.yfc{bottom:501.090000px;}
.y49{bottom:509.730000px;}
.y8e{bottom:523.230000px;}
.y48{bottom:527.280000px;}
.yfb{bottom:527.730000px;}
.y6c{bottom:530.520000px;}
.yd8{bottom:530.880000px;}
.y15{bottom:534.300000px;}
.yb1{bottom:540.690000px;}
.yfa{bottom:545.280000px;}
.y6b{bottom:548.070000px;}
.y14{bottom:552.210000px;}
.y47{bottom:553.830000px;}
.y8d{bottom:555.450000px;}
.yf9{bottom:562.830000px;}
.y6a{bottom:565.620000px;}
.yd7{bottom:566.430000px;}
.yb0{bottom:576.330000px;}
.yf8{bottom:580.470000px;}
.y69{bottom:583.260000px;}
.yd6{bottom:584.070000px;}
.y13{bottom:589.200000px;}
.y46{bottom:589.470000px;}
.yaf{bottom:593.880000px;}
.yf7{bottom:598.020000px;}
.y68{bottom:600.810000px;}
.yd5{bottom:601.620000px;}
.y12{bottom:606.840000px;}
.y45{bottom:607.020000px;}
.yae{bottom:611.430000px;}
.y67{bottom:618.450000px;}
.yd4{bottom:619.260000px;}
.y11{bottom:624.390000px;}
.y44{bottom:624.660000px;}
.yad{bottom:629.070000px;}
.y66{bottom:636.000000px;}
.y10{bottom:641.940000px;}
.y43{bottom:642.210000px;}
.yac{bottom:646.620000px;}
.y65{bottom:653.550000px;}
.yd3{bottom:654.810000px;}
.yf{bottom:659.580000px;}
.y42{bottom:659.760000px;}
.yab{bottom:664.260000px;}
.y64{bottom:671.190000px;}
.yd2{bottom:672.360000px;}
.ye{bottom:677.130000px;}
.y41{bottom:677.400000px;}
.yaa{bottom:681.810000px;}
.y63{bottom:688.740000px;}
.yd1{bottom:690.000000px;}
.yd{bottom:694.770000px;}
.y40{bottom:694.950000px;}
.ya9{bottom:699.360000px;}
.yf6{bottom:703.950000px;}
.yd0{bottom:707.550000px;}
.yc{bottom:712.320000px;}
.y3f{bottom:712.590000px;}
.y62{bottom:715.290000px;}
.ya8{bottom:717.000000px;}
.yf5{bottom:721.590000px;}
.ycf{bottom:725.190000px;}
.yb{bottom:729.870000px;}
.y3e{bottom:730.140000px;}
.ya7{bottom:734.550000px;}
.yf4{bottom:739.140000px;}
.yce{bottom:742.740000px;}
.y3d{bottom:747.690000px;}
.y61{bottom:751.200000px;}
.ya6{bottom:752.190000px;}
.yf3{bottom:756.690000px;}
.ya{bottom:756.870000px;}
.ycd{bottom:769.290000px;}
.y3c{bottom:774.330000px;}
.ya5{bottom:778.740000px;}
.yf2{bottom:783.330000px;}
.y60{bottom:799.530000px;}
.yf1{bottom:800.880000px;}
.y9{bottom:803.580000px;}
.ycc{bottom:804.930000px;}
.y3b{bottom:810.240000px;}
.ya4{bottom:814.290000px;}
.ycb{bottom:822.480000px;}
.yf0{bottom:827.520000px;}
.y5f{bottom:831.750000px;}
.ya3{bottom:831.930000px;}
.y8{bottom:839.130000px;}
.yca{bottom:840.030000px;}
.yef{bottom:845.070000px;}
.ya2{bottom:849.480000px;}
.yc9{bottom:857.670000px;}
.y3a{bottom:858.480000px;}
.yee{bottom:862.620000px;}
.y8c{bottom:867.030000px;}
.y7{bottom:874.950000px;}
.yc8{bottom:875.220000px;}
.y39{bottom:876.030000px;}
.yed{bottom:880.260000px;}
.y8b{bottom:884.670000px;}
.yc7{bottom:892.860000px;}
.y38{bottom:893.670000px;}
.yec{bottom:897.810000px;}
.y8a{bottom:902.220000px;}
.y6{bottom:910.950000px;}
.y37{bottom:911.220000px;}
.yc6{bottom:919.410000px;}
.y89{bottom:919.860000px;}
.yeb{bottom:924.450000px;}
.y36{bottom:928.860000px;}
.y88{bottom:937.410000px;}
.yea{bottom:942.000000px;}
.y35{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y87{bottom:954.960000px;}
.ye9{bottom:959.550000px;}
.y86{bottom:972.600000px;}
.ye8{bottom:977.190000px;}
.y34{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y85{bottom:990.150000px;}
.ya1{bottom:999.150000px;}
.y33{bottom:999.600000px;}
.ye7{bottom:1004.100000px;}
.y84{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y32{bottom:1017.180000px;}
.y83{bottom:1025.370000px;}
.y31{bottom:1034.820000px;}
.y82{bottom:1042.920000px;}
.y30{bottom:1052.370000px;}
.y81{bottom:1060.560000px;}
.yc5{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y80{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h9{height:26.550000px;}
.ha{height:26.580000px;}
.hb{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.he{height:44.190000px;}
.hc{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hf{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:173.430000px;}
.w5{width:183.090000px;}
.w3{width:459.780000px;}
.w6{width:571.800000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:3.960000px;}
.x9{left:6.930000px;}
.x1{left:68.040000px;}
.xd{left:111.239987px;}
.x5{left:120.779987px;}
.x8{left:129.780000px;}
.x7{left:132.389987px;}
.x2{left:202.799987px;}
.xc{left:252.660000px;}
.xa{left:590.100000px;}
.x6{left:747.059987px;}
.x4{left:757.139987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.216533pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls12{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.817600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.620267pt;}
.ws2{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._16{margin-left:-3.501545pt;}
._7{margin-left:-2.565334pt;}
._0{margin-left:-0.933333pt;}
._2{width:0.894058pt;}
._4{width:1.884608pt;}
._6{width:3.099734pt;}
._10{width:4.275200pt;}
._f{width:5.608337pt;}
._d{width:6.573334pt;}
._9{width:7.481600pt;}
._3{width:9.138133pt;}
._e{width:10.367467pt;}
._8{width:12.671169pt;}
._1{width:13.840320pt;}
._c{width:14.856746pt;}
._5{width:16.566400pt;}
._a{width:17.955733pt;}
._b{width:19.025068pt;}
._17{width:20.091302pt;}
._11{width:21.750080pt;}
._12{width:22.925760pt;}
._13{width:24.055573pt;}
._14{width:24.956759pt;}
._18{width:26.506240pt;}
._15{width:32.010560pt;}
._19{width:71.182080pt;}
._1a{width:72.144000pt;}
._1c{width:79.037760pt;}
._1d{width:80.175467pt;}
._1f{width:81.121920pt;}
._1e{width:235.029120pt;}
._1b{width:2103.184640pt;}
.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;}
.yb3{bottom:6.960000pt;}
.yb5{bottom:6.986667pt;}
.yb7{bottom:7.040000pt;}
.ydd{bottom:22.560000pt;}
.ydb{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc4{bottom:99.946667pt;}
.y5e{bottom:100.746667pt;}
.ye6{bottom:101.866667pt;}
.ya0{bottom:108.106667pt;}
.yc3{bottom:115.546667pt;}
.y5d{bottom:116.426667pt;}
.ye5{bottom:117.546667pt;}
.y9f{bottom:123.786667pt;}
.y28{bottom:126.346667pt;}
.y7f{bottom:126.506667pt;}
.yc2{bottom:131.226667pt;}
.y5c{bottom:132.026667pt;}
.ye4{bottom:133.146667pt;}
.y9e{bottom:139.386667pt;}
.y27{bottom:141.946667pt;}
.y7e{bottom:142.106667pt;}
.yc1{bottom:146.826667pt;}
.y5b{bottom:147.706667pt;}
.ye3{bottom:148.826667pt;}
.y9d{bottom:155.066667pt;}
.y26{bottom:157.626667pt;}
.y7d{bottom:157.786667pt;}
.y5a{bottom:163.306667pt;}
.ye2{bottom:164.426667pt;}
.yc0{bottom:170.426667pt;}
.y25{bottom:173.226667pt;}
.y7c{bottom:173.386667pt;}
.y9c{bottom:178.666667pt;}
.y59{bottom:178.906667pt;}
.ye1{bottom:188.346667pt;}
.y24{bottom:188.826667pt;}
.y7b{bottom:189.066667pt;}
.y58{bottom:194.586667pt;}
.ybf{bottom:202.106667pt;}
.y23{bottom:204.506667pt;}
.y7a{bottom:204.666667pt;}
.y57{bottom:210.186667pt;}
.y9b{bottom:210.266667pt;}
.ybe{bottom:217.706667pt;}
.y22{bottom:220.106667pt;}
.y79{bottom:220.266667pt;}
.y56{bottom:225.866667pt;}
.y9a{bottom:225.946667pt;}
.ye0{bottom:228.906667pt;}
.ybd{bottom:233.386667pt;}
.y21{bottom:235.786667pt;}
.y55{bottom:241.466667pt;}
.y99{bottom:241.546667pt;}
.y78{bottom:243.946667pt;}
.ybc{bottom:248.986667pt;}
.y98{bottom:257.226667pt;}
.y54{bottom:265.066667pt;}
.y20{bottom:267.386667pt;}
.ydf{bottom:268.826667pt;}
.y97{bottom:272.826667pt;}
.ybb{bottom:272.906667pt;}
.y77{bottom:275.546667pt;}
.y102{bottom:280.746667pt;}
.y1f{bottom:282.986667pt;}
.y96{bottom:288.426667pt;}
.y76{bottom:291.226667pt;}
.y101{bottom:296.346667pt;}
.y53{bottom:296.746667pt;}
.y1e{bottom:298.666667pt;}
.y95{bottom:304.106667pt;}
.y75{bottom:306.826667pt;}
.yde{bottom:308.746667pt;}
.y52{bottom:312.346667pt;}
.yba{bottom:313.786667pt;}
.y1d{bottom:314.266667pt;}
.y94{bottom:319.706667pt;}
.y100{bottom:319.946667pt;}
.y74{bottom:322.426667pt;}
.y51{bottom:327.946667pt;}
.y1c{bottom:329.946667pt;}
.y93{bottom:335.386667pt;}
.yff{bottom:335.626667pt;}
.y73{bottom:338.106667pt;}
.yb9{bottom:338.426667pt;}
.y50{bottom:343.626667pt;}
.y1b{bottom:345.546667pt;}
.ydc{bottom:348.746667pt;}
.y92{bottom:350.986667pt;}
.y72{bottom:353.706667pt;}
.y4f{bottom:359.226667pt;}
.y1a{bottom:361.146667pt;}
.yb8{bottom:363.066667pt;}
.y91{bottom:366.586667pt;}
.y71{bottom:369.386667pt;}
.y4e{bottom:374.906667pt;}
.y19{bottom:376.826667pt;}
.y70{bottom:384.986667pt;}
.yb6{bottom:387.706667pt;}
.yda{bottom:388.666667pt;}
.y90{bottom:390.266667pt;}
.y4d{bottom:390.506667pt;}
.y18{bottom:392.426667pt;}
.y6f{bottom:400.586667pt;}
.y4c{bottom:406.106667pt;}
.y17{bottom:408.026667pt;}
.yb4{bottom:412.346667pt;}
.yfe{bottom:414.106667pt;}
.y6e{bottom:416.266667pt;}
.y4b{bottom:421.813333pt;}
.y8f{bottom:422.213333pt;}
.yd9{bottom:428.613333pt;}
.yfd{bottom:429.813333pt;}
.y16{bottom:431.973333pt;}
.yb2{bottom:437.013333pt;}
.y4a{bottom:437.413333pt;}
.y6d{bottom:439.893333pt;}
.yfc{bottom:445.413333pt;}
.y49{bottom:453.093333pt;}
.y8e{bottom:465.093333pt;}
.y48{bottom:468.693333pt;}
.yfb{bottom:469.093333pt;}
.y6c{bottom:471.573333pt;}
.yd8{bottom:471.893333pt;}
.y15{bottom:474.933333pt;}
.yb1{bottom:480.613333pt;}
.yfa{bottom:484.693333pt;}
.y6b{bottom:487.173333pt;}
.y14{bottom:490.853333pt;}
.y47{bottom:492.293333pt;}
.y8d{bottom:493.733333pt;}
.yf9{bottom:500.293333pt;}
.y6a{bottom:502.773333pt;}
.yd7{bottom:503.493333pt;}
.yb0{bottom:512.293333pt;}
.yf8{bottom:515.973333pt;}
.y69{bottom:518.453333pt;}
.yd6{bottom:519.173333pt;}
.y13{bottom:523.733333pt;}
.y46{bottom:523.973333pt;}
.yaf{bottom:527.893333pt;}
.yf7{bottom:531.573333pt;}
.y68{bottom:534.053333pt;}
.yd5{bottom:534.773333pt;}
.y12{bottom:539.413333pt;}
.y45{bottom:539.573333pt;}
.yae{bottom:543.493333pt;}
.y67{bottom:549.733333pt;}
.yd4{bottom:550.453333pt;}
.y11{bottom:555.013333pt;}
.y44{bottom:555.253333pt;}
.yad{bottom:559.173333pt;}
.y66{bottom:565.333333pt;}
.y10{bottom:570.613333pt;}
.y43{bottom:570.853333pt;}
.yac{bottom:574.773333pt;}
.y65{bottom:580.933333pt;}
.yd3{bottom:582.053333pt;}
.yf{bottom:586.293333pt;}
.y42{bottom:586.453333pt;}
.yab{bottom:590.453333pt;}
.y64{bottom:596.613333pt;}
.yd2{bottom:597.653333pt;}
.ye{bottom:601.893333pt;}
.y41{bottom:602.133333pt;}
.yaa{bottom:606.053333pt;}
.y63{bottom:612.213333pt;}
.yd1{bottom:613.333333pt;}
.yd{bottom:617.573333pt;}
.y40{bottom:617.733333pt;}
.ya9{bottom:621.653333pt;}
.yf6{bottom:625.733333pt;}
.yd0{bottom:628.933333pt;}
.yc{bottom:633.173333pt;}
.y3f{bottom:633.413333pt;}
.y62{bottom:635.813333pt;}
.ya8{bottom:637.333333pt;}
.yf5{bottom:641.413333pt;}
.ycf{bottom:644.613333pt;}
.yb{bottom:648.773333pt;}
.y3e{bottom:649.013333pt;}
.ya7{bottom:652.933333pt;}
.yf4{bottom:657.013333pt;}
.yce{bottom:660.213333pt;}
.y3d{bottom:664.613333pt;}
.y61{bottom:667.733333pt;}
.ya6{bottom:668.613333pt;}
.yf3{bottom:672.613333pt;}
.ya{bottom:672.773333pt;}
.ycd{bottom:683.813333pt;}
.y3c{bottom:688.293333pt;}
.ya5{bottom:692.213333pt;}
.yf2{bottom:696.293333pt;}
.y60{bottom:710.693333pt;}
.yf1{bottom:711.893333pt;}
.y9{bottom:714.293333pt;}
.ycc{bottom:715.493333pt;}
.y3b{bottom:720.213333pt;}
.ya4{bottom:723.813333pt;}
.ycb{bottom:731.093333pt;}
.yf0{bottom:735.573333pt;}
.y5f{bottom:739.333333pt;}
.ya3{bottom:739.493333pt;}
.y8{bottom:745.893333pt;}
.yca{bottom:746.693333pt;}
.yef{bottom:751.173333pt;}
.ya2{bottom:755.093333pt;}
.yc9{bottom:762.373333pt;}
.y3a{bottom:763.093333pt;}
.yee{bottom:766.773333pt;}
.y8c{bottom:770.693333pt;}
.y7{bottom:777.733333pt;}
.yc8{bottom:777.973333pt;}
.y39{bottom:778.693333pt;}
.yed{bottom:782.453333pt;}
.y8b{bottom:786.373333pt;}
.yc7{bottom:793.653333pt;}
.y38{bottom:794.373333pt;}
.yec{bottom:798.053333pt;}
.y8a{bottom:801.973333pt;}
.y6{bottom:809.733333pt;}
.y37{bottom:809.973333pt;}
.yc6{bottom:817.253333pt;}
.y89{bottom:817.653333pt;}
.yeb{bottom:821.733333pt;}
.y36{bottom:825.653333pt;}
.y88{bottom:833.253333pt;}
.yea{bottom:837.333333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y87{bottom:848.853333pt;}
.ye9{bottom:852.933333pt;}
.y86{bottom:864.533333pt;}
.ye8{bottom:868.613333pt;}
.y34{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y85{bottom:880.133333pt;}
.ya1{bottom:888.133333pt;}
.y33{bottom:888.533333pt;}
.ye7{bottom:892.533333pt;}
.y84{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y32{bottom:904.160000pt;}
.y83{bottom:911.440000pt;}
.y31{bottom:919.840000pt;}
.y82{bottom:927.040000pt;}
.y30{bottom:935.440000pt;}
.y81{bottom:942.720000pt;}
.yc5{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y80{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.ha{height:23.626667pt;}
.hb{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.he{height:39.280000pt;}
.hc{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hf{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:154.160000pt;}
.w5{width:162.746667pt;}
.w3{width:408.693333pt;}
.w6{width:508.266667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.520000pt;}
.x9{left:6.160000pt;}
.x1{left:60.480000pt;}
.xd{left:98.879988pt;}
.x5{left:107.359988pt;}
.x8{left:115.360000pt;}
.x7{left:117.679988pt;}
.x2{left:180.266655pt;}
.xc{left:224.586667pt;}
.xa{left:524.533333pt;}
.x6{left:664.053322pt;}
.x4{left:673.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; }
  