
    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_44ab2ef4ff2bc355e74aa6bc.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_e2fd62a4296ab8a268d13ad7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9ebd0c2ada36b39660152138.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_6cb2fff8c8991bc90f72dced.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cda665d1b7257af92aeb24da.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_c3eac3e2ecfb0bdfcab30493.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_16c6c791299556bad868ee3c.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_43bc8b33ae3946a1e1d1f2f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.178800px;}
.ls6{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.lse{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls7{letter-spacing:-0.084000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls0{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.111960px;}
.ls15{letter-spacing:0.118200px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.178800px;}
.ls13{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.201600px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.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:-54.000000px;}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.wsb{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.134000px;}
.ws9{word-spacing:-13.039800px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.755200px;}
.ws11{word-spacing:-8.732400px;}
.ws3{word-spacing:-8.553600px;}
.wse{word-spacing:-8.461200px;}
.ws10{word-spacing:-8.372400px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._f{margin-left:-3.486599px;}
._3{margin-left:-2.344800px;}
._0{margin-left:-1.110000px;}
._2{width:1.007986px;}
._4{width:2.344800px;}
._5{width:3.350482px;}
._6{width:4.449000px;}
._7{width:5.502435px;}
._c{width:6.999495px;}
._b{width:8.115599px;}
._a{width:9.258600px;}
._11{width:10.521000px;}
._1{width:11.575272px;}
._9{width:14.368800px;}
._8{width:15.571200px;}
._10{width:17.074200px;}
._d{width:18.396600px;}
._e{width:19.446841px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs1{font-size:45.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:7.830000px;}
.y93{bottom:7.920000px;}
.y8d{bottom:8.010000px;}
.y8f{bottom:25.380000px;}
.yb8{bottom:25.410000px;}
.y92{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:96.060000px;}
.yda{bottom:113.250000px;}
.y57{bottom:114.060000px;}
.y104{bottom:117.390000px;}
.yd9{bottom:130.800000px;}
.y91{bottom:134.400000px;}
.y103{bottom:134.940000px;}
.y29{bottom:142.500000px;}
.y56{bottom:149.610000px;}
.yd8{bottom:157.350000px;}
.y28{bottom:160.050000px;}
.y69{bottom:161.310000px;}
.y102{bottom:161.850000px;}
.yb3{bottom:163.380000px;}
.y27{bottom:177.600000px;}
.y68{bottom:178.860000px;}
.y90{bottom:179.400000px;}
.y55{bottom:185.250000px;}
.yd7{bottom:192.990000px;}
.y26{bottom:195.240000px;}
.y67{bottom:197.310000px;}
.yb2{bottom:199.020000px;}
.y101{bottom:210.090000px;}
.yd6{bottom:210.540000px;}
.y25{bottom:212.790000px;}
.y66{bottom:214.860000px;}
.y54{bottom:220.800000px;}
.y8e{bottom:224.310000px;}
.yd5{bottom:228.180000px;}
.y24{bottom:230.340000px;}
.y65{bottom:233.310000px;}
.yb1{bottom:234.570000px;}
.y100{bottom:237.000000px;}
.yd4{bottom:245.730000px;}
.y23{bottom:247.980000px;}
.y64{bottom:250.860000px;}
.y53{bottom:256.440000px;}
.yd3{bottom:263.280000px;}
.y22{bottom:265.530000px;}
.y8b{bottom:269.220000px;}
.yb0{bottom:270.120000px;}
.yff{bottom:274.350000px;}
.y63{bottom:278.310000px;}
.yd2{bottom:280.920000px;}
.y21{bottom:283.170000px;}
.y52{bottom:291.990000px;}
.yd1{bottom:298.470000px;}
.y20{bottom:300.720000px;}
.yaf{bottom:305.760000px;}
.y62{bottom:313.860000px;}
.yd0{bottom:316.110000px;}
.y8a{bottom:317.910000px;}
.y1f{bottom:318.270000px;}
.yfe{bottom:322.680000px;}
.yae{bottom:323.310000px;}
.y51{bottom:327.540000px;}
.y61{bottom:331.410000px;}
.ycf{bottom:333.660000px;}
.y1e{bottom:335.910000px;}
.yfd{bottom:340.230000px;}
.yad{bottom:340.950000px;}
.y89{bottom:344.460000px;}
.y60{bottom:349.860000px;}
.yce{bottom:351.210000px;}
.y1d{bottom:353.460000px;}
.yfc{bottom:357.780000px;}
.yac{bottom:358.500000px;}
.y88{bottom:362.100000px;}
.y50{bottom:363.180000px;}
.y5f{bottom:367.410000px;}
.ycd{bottom:368.850000px;}
.y1c{bottom:371.100000px;}
.yab{bottom:376.050000px;}
.y5e{bottom:385.860000px;}
.ycc{bottom:386.400000px;}
.yfb{bottom:393.420000px;}
.y1b{bottom:398.010000px;}
.y4f{bottom:398.730000px;}
.y5d{bottom:403.410000px;}
.ycb{bottom:404.040000px;}
.yaa{bottom:409.080000px;}
.yfa{bottom:410.970000px;}
.yca{bottom:421.590000px;}
.yf9{bottom:428.610000px;}
.y4e{bottom:434.370000px;}
.ya9{bottom:436.440000px;}
.yc9{bottom:439.140000px;}
.y5c{bottom:439.860000px;}
.y87{bottom:446.250000px;}
.y1a{bottom:446.610000px;}
.yf8{bottom:455.430000px;}
.yc8{bottom:456.780000px;}
.y5b{bottom:457.500000px;}
.y86{bottom:463.800000px;}
.y4d{bottom:469.950000px;}
.yc7{bottom:474.360000px;}
.ya8{bottom:481.380000px;}
.y85{bottom:481.470000px;}
.y19{bottom:483.630000px;}
.y5a{bottom:484.080000px;}
.yc6{bottom:491.910000px;}
.yf7{bottom:492.540000px;}
.y18{bottom:501.180000px;}
.y4c{bottom:505.500000px;}
.y84{bottom:508.020000px;}
.yc5{bottom:509.550000px;}
.yf6{bottom:510.090000px;}
.y17{bottom:518.820000px;}
.y59{bottom:519.720000px;}
.ya7{bottom:526.290000px;}
.yf5{bottom:527.730000px;}
.y16{bottom:536.370000px;}
.yc4{bottom:536.460000px;}
.y11d{bottom:539.430000px;}
.y4b{bottom:541.140000px;}
.y83{bottom:543.660000px;}
.yf4{bottom:545.280000px;}
.y58{bottom:551.940000px;}
.y15{bottom:553.920000px;}
.y11c{bottom:557.070000px;}
.y82{bottom:561.210000px;}
.yf3{bottom:562.830000px;}
.ya6{bottom:571.200000px;}
.y14{bottom:571.560000px;}
.y4a{bottom:576.690000px;}
.y81{bottom:578.760000px;}
.yf2{bottom:580.470000px;}
.y11b{bottom:583.620000px;}
.yc3{bottom:584.700000px;}
.y13{bottom:589.110000px;}
.y49{bottom:594.330000px;}
.ya5{bottom:598.560000px;}
.y11a{bottom:601.260000px;}
.yc2{bottom:602.340000px;}
.y80{bottom:605.400000px;}
.y12{bottom:606.750000px;}
.yf1{bottom:607.380000px;}
.y48{bottom:611.880000px;}
.yc1{bottom:619.890000px;}
.y11{bottom:624.300000px;}
.ya4{bottom:625.830000px;}
.y119{bottom:627.810000px;}
.y47{bottom:629.430000px;}
.yc0{bottom:637.440000px;}
.y7f{bottom:640.950000px;}
.y10{bottom:641.850000px;}
.y118{bottom:645.360000px;}
.y46{bottom:647.070000px;}
.ya3{bottom:653.190000px;}
.yf0{bottom:655.620000px;}
.y7e{bottom:658.590000px;}
.yf{bottom:659.490000px;}
.y45{bottom:664.620000px;}
.ybf{bottom:670.470000px;}
.y117{bottom:672.000000px;}
.yef{bottom:673.260000px;}
.y7d{bottom:676.140000px;}
.ye{bottom:677.040000px;}
.ya2{bottom:680.550000px;}
.y44{bottom:682.260000px;}
.y116{bottom:689.550000px;}
.yee{bottom:690.810000px;}
.y7c{bottom:693.690000px;}
.yd{bottom:694.680000px;}
.y43{bottom:699.810000px;}
.y115{bottom:707.190000px;}
.yed{bottom:708.360000px;}
.yc{bottom:712.230000px;}
.ybe{bottom:715.380000px;}
.y42{bottom:717.360000px;}
.y7b{bottom:720.330000px;}
.yec{bottom:726.000000px;}
.ya1{bottom:729.240000px;}
.y114{bottom:733.740000px;}
.y41{bottom:735.000000px;}
.yb{bottom:739.140000px;}
.yeb{bottom:743.550000px;}
.y113{bottom:751.290000px;}
.y40{bottom:752.550000px;}
.ya0{bottom:755.790000px;}
.y7a{bottom:755.880000px;}
.ybd{bottom:760.290000px;}
.y3f{bottom:770.190000px;}
.y9f{bottom:773.430000px;}
.y79{bottom:773.520000px;}
.y112{bottom:777.930000px;}
.yea{bottom:779.190000px;}
.ya{bottom:787.380000px;}
.y78{bottom:791.070000px;}
.y111{bottom:795.480000px;}
.ye9{bottom:796.740000px;}
.ybc{bottom:805.200000px;}
.y3e{bottom:805.740000px;}
.y77{bottom:808.620000px;}
.y9e{bottom:808.980000px;}
.ye8{bottom:814.290000px;}
.y110{bottom:822.030000px;}
.y9{bottom:823.200000px;}
.y3d{bottom:823.290000px;}
.y76{bottom:826.260000px;}
.y9d{bottom:826.530000px;}
.ye7{bottom:831.930000px;}
.y10f{bottom:839.670000px;}
.y3c{bottom:840.930000px;}
.y9c{bottom:844.170000px;}
.ye6{bottom:849.480000px;}
.ybb{bottom:850.110000px;}
.y75{bottom:852.810000px;}
.y3b{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.y9b{bottom:861.720000px;}
.y10e{bottom:866.220000px;}
.ye5{bottom:867.030000px;}
.y3a{bottom:876.030000px;}
.y9a{bottom:879.360000px;}
.ye4{bottom:884.670000px;}
.y74{bottom:888.450000px;}
.y10d{bottom:892.860000px;}
.y39{bottom:893.670000px;}
.yba{bottom:895.020000px;}
.y99{bottom:896.910000px;}
.y7{bottom:898.980000px;}
.ye3{bottom:902.220000px;}
.y73{bottom:906.000000px;}
.y10c{bottom:910.410000px;}
.y38{bottom:911.220000px;}
.y6{bottom:916.980000px;}
.ye2{bottom:919.860000px;}
.y37{bottom:928.860000px;}
.y98{bottom:929.850000px;}
.y72{bottom:932.550000px;}
.y10b{bottom:936.960000px;}
.ye1{bottom:937.410000px;}
.yb9{bottom:939.930000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.ye0{bottom:954.960000px;}
.y10a{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.y71{bottom:968.190000px;}
.y97{bottom:974.850000px;}
.y109{bottom:981.150000px;}
.y34{bottom:981.600000px;}
.yb7{bottom:984.930000px;}
.y70{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.y33{bottom:999.150000px;}
.y6f{bottom:1003.290000px;}
.y108{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.ydf{bottom:1017.180000px;}
.y96{bottom:1019.790000px;}
.y107{bottom:1025.370000px;}
.yb6{bottom:1029.870000px;}
.y6e{bottom:1029.960000px;}
.y31{bottom:1034.370000px;}
.yde{bottom:1034.820000px;}
.y30{bottom:1051.920000px;}
.ydd{bottom:1052.370000px;}
.y95{bottom:1064.700000px;}
.y6d{bottom:1065.510000px;}
.y2f{bottom:1069.560000px;}
.ydc{bottom:1069.920000px;}
.yb5{bottom:1078.560000px;}
.y6c{bottom:1083.150000px;}
.y2e{bottom:1087.110000px;}
.ydb{bottom:1087.560000px;}
.y106{bottom:1096.110000px;}
.y6b{bottom:1100.700000px;}
.yb4{bottom:1105.110000px;}
.y94{bottom:1109.610000px;}
.y105{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y6a{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h11{height:26.640000px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.he{height:44.100000px;}
.h10{height:44.130000px;}
.hf{height:44.190000px;}
.h2{height:45.720703px;}
.hd{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:40.950000px;}
.w5{width:43.470000px;}
.w8{width:43.560000px;}
.w6{width:106.830000px;}
.wb{width:107.910000px;}
.w9{width:131.670000px;}
.w7{width:492.990000px;}
.wa{width:516.750000px;}
.w4{width:517.920000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.xb{left:13.950000px;}
.x1{left:68.040000px;}
.x6{left:95.039987px;}
.x9{left:110.520000px;}
.x7{left:122.039987px;}
.x2{left:202.799987px;}
.x5{left:311.429987px;}
.xe{left:604.230000px;}
.x11{left:628.080000px;}
.xa{left:629.160000px;}
.xf{left:648.510000px;}
.x12{left:672.270000px;}
.xc{left:673.440000px;}
.x10{left:692.790000px;}
.x13{left:716.550000px;}
.xd{left:717.630000px;}
.x3{left:792.059987px;}
.x4{left:801.059987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.158933pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.lse{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls7{letter-spacing:-0.074667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls0{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.099520pt;}
.ls15{letter-spacing:0.105067pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.158933pt;}
.ls13{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.179200pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws0{word-spacing:-48.000000pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.wsb{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.674667pt;}
.ws9{word-spacing:-11.590933pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.782400pt;}
.ws11{word-spacing:-7.762133pt;}
.ws3{word-spacing:-7.603200pt;}
.wse{word-spacing:-7.521067pt;}
.ws10{word-spacing:-7.442133pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._f{margin-left:-3.099199pt;}
._3{margin-left:-2.084267pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.895988pt;}
._4{width:2.084267pt;}
._5{width:2.978206pt;}
._6{width:3.954667pt;}
._7{width:4.891053pt;}
._c{width:6.221773pt;}
._b{width:7.213866pt;}
._a{width:8.229867pt;}
._11{width:9.352000pt;}
._1{width:10.289131pt;}
._9{width:12.772267pt;}
._8{width:13.841067pt;}
._10{width:15.177067pt;}
._d{width:16.352533pt;}
._e{width:17.286081pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs1{font-size:40.000000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:6.960000pt;}
.y93{bottom:7.040000pt;}
.y8d{bottom:7.120000pt;}
.y8f{bottom:22.560000pt;}
.yb8{bottom:22.586667pt;}
.y92{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:85.386667pt;}
.yda{bottom:100.666667pt;}
.y57{bottom:101.386667pt;}
.y104{bottom:104.346667pt;}
.yd9{bottom:116.266667pt;}
.y91{bottom:119.466667pt;}
.y103{bottom:119.946667pt;}
.y29{bottom:126.666667pt;}
.y56{bottom:132.986667pt;}
.yd8{bottom:139.866667pt;}
.y28{bottom:142.266667pt;}
.y69{bottom:143.386667pt;}
.y102{bottom:143.866667pt;}
.yb3{bottom:145.226667pt;}
.y27{bottom:157.866667pt;}
.y68{bottom:158.986667pt;}
.y90{bottom:159.466667pt;}
.y55{bottom:164.666667pt;}
.yd7{bottom:171.546667pt;}
.y26{bottom:173.546667pt;}
.y67{bottom:175.386667pt;}
.yb2{bottom:176.906667pt;}
.y101{bottom:186.746667pt;}
.yd6{bottom:187.146667pt;}
.y25{bottom:189.146667pt;}
.y66{bottom:190.986667pt;}
.y54{bottom:196.266667pt;}
.y8e{bottom:199.386667pt;}
.yd5{bottom:202.826667pt;}
.y24{bottom:204.746667pt;}
.y65{bottom:207.386667pt;}
.yb1{bottom:208.506667pt;}
.y100{bottom:210.666667pt;}
.yd4{bottom:218.426667pt;}
.y23{bottom:220.426667pt;}
.y64{bottom:222.986667pt;}
.y53{bottom:227.946667pt;}
.yd3{bottom:234.026667pt;}
.y22{bottom:236.026667pt;}
.y8b{bottom:239.306667pt;}
.yb0{bottom:240.106667pt;}
.yff{bottom:243.866667pt;}
.y63{bottom:247.386667pt;}
.yd2{bottom:249.706667pt;}
.y21{bottom:251.706667pt;}
.y52{bottom:259.546667pt;}
.yd1{bottom:265.306667pt;}
.y20{bottom:267.306667pt;}
.yaf{bottom:271.786667pt;}
.y62{bottom:278.986667pt;}
.yd0{bottom:280.986667pt;}
.y8a{bottom:282.586667pt;}
.y1f{bottom:282.906667pt;}
.yfe{bottom:286.826667pt;}
.yae{bottom:287.386667pt;}
.y51{bottom:291.146667pt;}
.y61{bottom:294.586667pt;}
.ycf{bottom:296.586667pt;}
.y1e{bottom:298.586667pt;}
.yfd{bottom:302.426667pt;}
.yad{bottom:303.066667pt;}
.y89{bottom:306.186667pt;}
.y60{bottom:310.986667pt;}
.yce{bottom:312.186667pt;}
.y1d{bottom:314.186667pt;}
.yfc{bottom:318.026667pt;}
.yac{bottom:318.666667pt;}
.y88{bottom:321.866667pt;}
.y50{bottom:322.826667pt;}
.y5f{bottom:326.586667pt;}
.ycd{bottom:327.866667pt;}
.y1c{bottom:329.866667pt;}
.yab{bottom:334.266667pt;}
.y5e{bottom:342.986667pt;}
.ycc{bottom:343.466667pt;}
.yfb{bottom:349.706667pt;}
.y1b{bottom:353.786667pt;}
.y4f{bottom:354.426667pt;}
.y5d{bottom:358.586667pt;}
.ycb{bottom:359.146667pt;}
.yaa{bottom:363.626667pt;}
.yfa{bottom:365.306667pt;}
.yca{bottom:374.746667pt;}
.yf9{bottom:380.986667pt;}
.y4e{bottom:386.106667pt;}
.ya9{bottom:387.946667pt;}
.yc9{bottom:390.346667pt;}
.y5c{bottom:390.986667pt;}
.y87{bottom:396.666667pt;}
.y1a{bottom:396.986667pt;}
.yf8{bottom:404.826667pt;}
.yc8{bottom:406.026667pt;}
.y5b{bottom:406.666667pt;}
.y86{bottom:412.266667pt;}
.y4d{bottom:417.733333pt;}
.yc7{bottom:421.653333pt;}
.ya8{bottom:427.893333pt;}
.y85{bottom:427.973333pt;}
.y19{bottom:429.893333pt;}
.y5a{bottom:430.293333pt;}
.yc6{bottom:437.253333pt;}
.yf7{bottom:437.813333pt;}
.y18{bottom:445.493333pt;}
.y4c{bottom:449.333333pt;}
.y84{bottom:451.573333pt;}
.yc5{bottom:452.933333pt;}
.yf6{bottom:453.413333pt;}
.y17{bottom:461.173333pt;}
.y59{bottom:461.973333pt;}
.ya7{bottom:467.813333pt;}
.yf5{bottom:469.093333pt;}
.y16{bottom:476.773333pt;}
.yc4{bottom:476.853333pt;}
.y11d{bottom:479.493333pt;}
.y4b{bottom:481.013333pt;}
.y83{bottom:483.253333pt;}
.yf4{bottom:484.693333pt;}
.y58{bottom:490.613333pt;}
.y15{bottom:492.373333pt;}
.y11c{bottom:495.173333pt;}
.y82{bottom:498.853333pt;}
.yf3{bottom:500.293333pt;}
.ya6{bottom:507.733333pt;}
.y14{bottom:508.053333pt;}
.y4a{bottom:512.613333pt;}
.y81{bottom:514.453333pt;}
.yf2{bottom:515.973333pt;}
.y11b{bottom:518.773333pt;}
.yc3{bottom:519.733333pt;}
.y13{bottom:523.653333pt;}
.y49{bottom:528.293333pt;}
.ya5{bottom:532.053333pt;}
.y11a{bottom:534.453333pt;}
.yc2{bottom:535.413333pt;}
.y80{bottom:538.133333pt;}
.y12{bottom:539.333333pt;}
.yf1{bottom:539.893333pt;}
.y48{bottom:543.893333pt;}
.yc1{bottom:551.013333pt;}
.y11{bottom:554.933333pt;}
.ya4{bottom:556.293333pt;}
.y119{bottom:558.053333pt;}
.y47{bottom:559.493333pt;}
.yc0{bottom:566.613333pt;}
.y7f{bottom:569.733333pt;}
.y10{bottom:570.533333pt;}
.y118{bottom:573.653333pt;}
.y46{bottom:575.173333pt;}
.ya3{bottom:580.613333pt;}
.yf0{bottom:582.773333pt;}
.y7e{bottom:585.413333pt;}
.yf{bottom:586.213333pt;}
.y45{bottom:590.773333pt;}
.ybf{bottom:595.973333pt;}
.y117{bottom:597.333333pt;}
.yef{bottom:598.453333pt;}
.y7d{bottom:601.013333pt;}
.ye{bottom:601.813333pt;}
.ya2{bottom:604.933333pt;}
.y44{bottom:606.453333pt;}
.y116{bottom:612.933333pt;}
.yee{bottom:614.053333pt;}
.y7c{bottom:616.613333pt;}
.yd{bottom:617.493333pt;}
.y43{bottom:622.053333pt;}
.y115{bottom:628.613333pt;}
.yed{bottom:629.653333pt;}
.yc{bottom:633.093333pt;}
.ybe{bottom:635.893333pt;}
.y42{bottom:637.653333pt;}
.y7b{bottom:640.293333pt;}
.yec{bottom:645.333333pt;}
.ya1{bottom:648.213333pt;}
.y114{bottom:652.213333pt;}
.y41{bottom:653.333333pt;}
.yb{bottom:657.013333pt;}
.yeb{bottom:660.933333pt;}
.y113{bottom:667.813333pt;}
.y40{bottom:668.933333pt;}
.ya0{bottom:671.813333pt;}
.y7a{bottom:671.893333pt;}
.ybd{bottom:675.813333pt;}
.y3f{bottom:684.613333pt;}
.y9f{bottom:687.493333pt;}
.y79{bottom:687.573333pt;}
.y112{bottom:691.493333pt;}
.yea{bottom:692.613333pt;}
.ya{bottom:699.893333pt;}
.y78{bottom:703.173333pt;}
.y111{bottom:707.093333pt;}
.ye9{bottom:708.213333pt;}
.ybc{bottom:715.733333pt;}
.y3e{bottom:716.213333pt;}
.y77{bottom:718.773333pt;}
.y9e{bottom:719.093333pt;}
.ye8{bottom:723.813333pt;}
.y110{bottom:730.693333pt;}
.y9{bottom:731.733333pt;}
.y3d{bottom:731.813333pt;}
.y76{bottom:734.453333pt;}
.y9d{bottom:734.693333pt;}
.ye7{bottom:739.493333pt;}
.y10f{bottom:746.373333pt;}
.y3c{bottom:747.493333pt;}
.y9c{bottom:750.373333pt;}
.ye6{bottom:755.093333pt;}
.ybb{bottom:755.653333pt;}
.y75{bottom:758.053333pt;}
.y3b{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.y9b{bottom:765.973333pt;}
.y10e{bottom:769.973333pt;}
.ye5{bottom:770.693333pt;}
.y3a{bottom:778.693333pt;}
.y9a{bottom:781.653333pt;}
.ye4{bottom:786.373333pt;}
.y74{bottom:789.733333pt;}
.y10d{bottom:793.653333pt;}
.y39{bottom:794.373333pt;}
.yba{bottom:795.573333pt;}
.y99{bottom:797.253333pt;}
.y7{bottom:799.093333pt;}
.ye3{bottom:801.973333pt;}
.y73{bottom:805.333333pt;}
.y10c{bottom:809.253333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:815.093333pt;}
.ye2{bottom:817.653333pt;}
.y37{bottom:825.653333pt;}
.y98{bottom:826.533333pt;}
.y72{bottom:828.933333pt;}
.y10b{bottom:832.853333pt;}
.ye1{bottom:833.253333pt;}
.yb9{bottom:835.493333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.ye0{bottom:848.853333pt;}
.y10a{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.y71{bottom:860.613333pt;}
.y97{bottom:866.533333pt;}
.y109{bottom:872.133333pt;}
.y34{bottom:872.533333pt;}
.yb7{bottom:875.493333pt;}
.y70{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.y33{bottom:888.133333pt;}
.y6f{bottom:891.813333pt;}
.y108{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.ydf{bottom:904.160000pt;}
.y96{bottom:906.480000pt;}
.y107{bottom:911.440000pt;}
.yb6{bottom:915.440000pt;}
.y6e{bottom:915.520000pt;}
.y31{bottom:919.440000pt;}
.yde{bottom:919.840000pt;}
.y30{bottom:935.040000pt;}
.ydd{bottom:935.440000pt;}
.y95{bottom:946.400000pt;}
.y6d{bottom:947.120000pt;}
.y2f{bottom:950.720000pt;}
.ydc{bottom:951.040000pt;}
.yb5{bottom:958.720000pt;}
.y6c{bottom:962.800000pt;}
.y2e{bottom:966.320000pt;}
.ydb{bottom:966.720000pt;}
.y106{bottom:974.320000pt;}
.y6b{bottom:978.400000pt;}
.yb4{bottom:982.320000pt;}
.y94{bottom:986.320000pt;}
.y105{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y6a{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h11{height:23.680000pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.he{height:39.200000pt;}
.h10{height:39.226667pt;}
.hf{height:39.280000pt;}
.h2{height:40.640625pt;}
.hd{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:36.400000pt;}
.w5{width:38.640000pt;}
.w8{width:38.720000pt;}
.w6{width:94.960000pt;}
.wb{width:95.920000pt;}
.w9{width:117.040000pt;}
.w7{width:438.213333pt;}
.wa{width:459.333333pt;}
.w4{width:460.373333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.xb{left:12.400000pt;}
.x1{left:60.480000pt;}
.x6{left:84.479988pt;}
.x9{left:98.240000pt;}
.x7{left:108.479988pt;}
.x2{left:180.266655pt;}
.x5{left:276.826655pt;}
.xe{left:537.093333pt;}
.x11{left:558.293333pt;}
.xa{left:559.253333pt;}
.xf{left:576.453333pt;}
.x12{left:597.573333pt;}
.xc{left:598.613333pt;}
.x10{left:615.813333pt;}
.x13{left:636.933333pt;}
.xd{left:637.893333pt;}
.x3{left:704.053322pt;}
.x4{left:712.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; }
  