
    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_124c34ba8beeecbcf8fcd112.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5e3efe0d5eaa87145ea60e26.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_af309bb934cd47d14b73b202.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_d25280f6f11eba9e4c98a940.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3b41ddd1cb3550965ad53847.woff')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_0dfcce8817c25f23eb7accd1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_81c82b142736de9778412ad5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3ea7d9820b2e934d1e7d567a.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v4{vertical-align:-18.000000px;}
.v1{vertical-align:-15.120000px;}
.v5{vertical-align:-6.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls23{letter-spacing:-0.477600px;}
.ls16{letter-spacing:-0.444600px;}
.lse{letter-spacing:-0.299400px;}
.lsc{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.078000px;}
.ls15{letter-spacing:-0.063600px;}
.ls27{letter-spacing:-0.050400px;}
.ls22{letter-spacing:-0.014760px;}
.ls7{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.002280px;}
.ls2{letter-spacing:0.014760px;}
.ls11{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls14{letter-spacing:0.060480px;}
.ls6{letter-spacing:0.060600px;}
.ls20{letter-spacing:0.061200px;}
.ls1d{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls24{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.098400px;}
.ls18{letter-spacing:0.105600px;}
.ls19{letter-spacing:0.115800px;}
.ls8{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.160800px;}
.ls3{letter-spacing:0.171360px;}
.lsd{letter-spacing:0.173400px;}
.ls1f{letter-spacing:0.173520px;}
.ls1c{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.276000px;}
.ls12{letter-spacing:0.453600px;}
.ls26{letter-spacing:7.646400px;}
.ls0{letter-spacing:13.347360px;}
.ls28{letter-spacing:47.726640px;}
.ls1e{letter-spacing:63.566640px;}
.ls25{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;}
}
.ws8{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.387200px;}
.ws12{word-spacing:-13.342200px;}
.ws11{word-spacing:-13.332000px;}
.ws13{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275600px;}
.wse{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.162800px;}
.ws14{word-spacing:-13.148400px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:-8.625600px;}
.ws5{word-spacing:-8.614200px;}
.ws9{word-spacing:-8.553600px;}
.ws6{word-spacing:-8.254200px;}
.wsc{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._d{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._4{width:2.585400px;}
._3{width:3.779411px;}
._8{width:4.922367px;}
._7{width:6.072000px;}
._2{width:7.094400px;}
._c{width:8.657400px;}
._b{width:9.979800px;}
._9{width:11.542800px;}
._e{width:14.471400px;}
._16{width:15.588600px;}
._a{width:17.434800px;}
._15{width:18.460080px;}
._12{width:19.599120px;}
._5{width:21.042000px;}
._6{width:22.063800px;}
._13{width:24.048000px;}
._14{width:25.256520px;}
._11{width:38.479080px;}
._10{width:47.134080px;}
._f{width:206.752680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:7.560000px;}
.y76{bottom:7.830000px;}
.yc2{bottom:7.920000px;}
.y7a{bottom:25.380000px;}
.y75{bottom:25.470000px;}
.ybb{bottom:29.880000px;}
.yc1{bottom:29.970000px;}
.yba{bottom:52.020000px;}
.yc0{bottom:52.110000px;}
.y2{bottom:73.380000px;}
.yc4{bottom:74.070000px;}
.yb9{bottom:74.100000px;}
.ybf{bottom:74.160000px;}
.y28{bottom:74.190000px;}
.yb8{bottom:96.150000px;}
.ybe{bottom:96.210000px;}
.y1{bottom:100.200000px;}
.yb7{bottom:118.290000px;}
.ybd{bottom:118.350000px;}
.yb4{bottom:129.990000px;}
.y37{bottom:137.730000px;}
.y55{bottom:139.800000px;}
.y7c{bottom:144.840000px;}
.yd8{bottom:154.470000px;}
.y36{bottom:155.280000px;}
.yb3{bottom:156.540000px;}
.y54{bottom:157.440000px;}
.y7b{bottom:162.390000px;}
.yd7{bottom:172.020000px;}
.y35{bottom:172.920000px;}
.y26{bottom:173.370000px;}
.y53{bottom:174.990000px;}
.y34{bottom:190.470000px;}
.y25{bottom:191.010000px;}
.yb2{bottom:192.090000px;}
.y52{bottom:192.630000px;}
.y79{bottom:195.420000px;}
.yd6{bottom:198.660000px;}
.y24{bottom:208.560000px;}
.yb1{bottom:209.730000px;}
.y90{bottom:211.350000px;}
.y33{bottom:211.800000px;}
.yd5{bottom:216.210000px;}
.y51{bottom:219.180000px;}
.y23{bottom:226.200000px;}
.yb0{bottom:227.280000px;}
.y8f{bottom:228.900000px;}
.yd4{bottom:233.760000px;}
.y32{bottom:234.930000px;}
.y78{bottom:240.330000px;}
.y22{bottom:243.750000px;}
.yaf{bottom:244.830000px;}
.y8e{bottom:246.540000px;}
.y50{bottom:254.730000px;}
.yd3{bottom:260.400000px;}
.y21{bottom:261.300000px;}
.yae{bottom:271.470000px;}
.y4f{bottom:272.370000px;}
.y8d{bottom:273.090000px;}
.yd2{bottom:277.950000px;}
.y20{bottom:278.940000px;}
.y31{bottom:283.260000px;}
.y77{bottom:285.240000px;}
.y4e{bottom:289.920000px;}
.y1f{bottom:296.490000px;}
.y30{bottom:300.810000px;}
.yd1{bottom:304.590000px;}
.yad{bottom:307.020000px;}
.y8c{bottom:308.640000px;}
.y1e{bottom:314.130000px;}
.y4d{bottom:316.560000px;}
.y2f{bottom:318.360000px;}
.yd0{bottom:322.140000px;}
.yac{bottom:324.660000px;}
.y8b{bottom:327.090000px;}
.y74{bottom:330.150000px;}
.y2e{bottom:336.000000px;}
.y1d{bottom:340.680000px;}
.yab{bottom:342.210000px;}
.y8a{bottom:345.900000px;}
.ycf{bottom:348.690000px;}
.y4c{bottom:352.110000px;}
.y89{bottom:365.430000px;}
.yce{bottom:366.330000px;}
.yaa{bottom:368.760000px;}
.y2d{bottom:371.550000px;}
.y1c{bottom:376.230000px;}
.y4b{bottom:378.660000px;}
.y88{bottom:383.880000px;}
.ycd{bottom:393.240000px;}
.y1b{bottom:393.870000px;}
.y73{bottom:396.480000px;}
.y87{bottom:402.240000px;}
.y2c{bottom:403.050000px;}
.ya9{bottom:404.400000px;}
.y4a{bottom:414.300000px;}
.y1a{bottom:415.200000px;}
.y86{bottom:420.690000px;}
.ya8{bottom:421.950000px;}
.y19{bottom:429.060000px;}
.y49{bottom:431.850000px;}
.y72{bottom:432.030000px;}
.y85{bottom:439.140000px;}
.ya7{bottom:439.590000px;}
.ycc{bottom:441.480000px;}
.y18{bottom:446.610000px;}
.y71{bottom:449.580000px;}
.ya6{bottom:457.140000px;}
.y48{bottom:458.490000px;}
.y17{bottom:464.160000px;}
.y84{bottom:466.500000px;}
.y70{bottom:467.220000px;}
.ycb{bottom:468.390000px;}
.y16{bottom:481.830000px;}
.ya5{bottom:483.720000px;}
.y6f{bottom:493.800000px;}
.y47{bottom:494.070000px;}
.y15{bottom:499.380000px;}
.y83{bottom:502.170000px;}
.yca{bottom:505.770000px;}
.y46{bottom:511.620000px;}
.y14{bottom:517.020000px;}
.ya4{bottom:519.360000px;}
.y82{bottom:519.720000px;}
.y6e{bottom:523.770000px;}
.y45{bottom:538.260000px;}
.y13{bottom:543.840000px;}
.y6d{bottom:550.770000px;}
.yc9{bottom:554.010000px;}
.ya3{bottom:554.910000px;}
.y81{bottom:555.360000px;}
.ya2{bottom:572.550000px;}
.y44{bottom:573.810000px;}
.y6c{bottom:577.770000px;}
.y80{bottom:587.580000px;}
.yc8{bottom:589.650000px;}
.ya1{bottom:590.100000px;}
.y43{bottom:591.450000px;}
.y12{bottom:592.440000px;}
.y6b{bottom:604.770000px;}
.yc7{bottom:607.200000px;}
.ya0{bottom:616.650000px;}
.y42{bottom:618.000000px;}
.yc6{bottom:624.840000px;}
.y11{bottom:629.520000px;}
.y69{bottom:631.770000px;}
.y10{bottom:647.070000px;}
.yc5{bottom:651.750000px;}
.y9f{bottom:652.290000px;}
.y41{bottom:653.550000px;}
.yf{bottom:664.710000px;}
.y9e{bottom:669.840000px;}
.y40{bottom:671.190000px;}
.y68{bottom:680.190000px;}
.ye{bottom:682.260000px;}
.y9d{bottom:687.480000px;}
.y3f{bottom:688.740000px;}
.yc3{bottom:697.380000px;}
.yea{bottom:699.000000px;}
.yd{bottom:699.810000px;}
.y9c{bottom:705.030000px;}
.y3e{bottom:715.290000px;}
.y67{bottom:715.740000px;}
.ye9{bottom:716.550000px;}
.yc{bottom:717.450000px;}
.y9b{bottom:722.580000px;}
.y66{bottom:733.290000px;}
.ye8{bottom:734.190000px;}
.yb{bottom:735.000000px;}
.y9a{bottom:749.220000px;}
.y3d{bottom:750.930000px;}
.ye7{bottom:760.740000px;}
.ya{bottom:761.910000px;}
.y65{bottom:768.930000px;}
.y3c{bottom:777.840000px;}
.ye6{bottom:778.290000px;}
.y99{bottom:781.440000px;}
.y64{bottom:786.480000px;}
.ye5{bottom:795.930000px;}
.y63{bottom:804.030000px;}
.y9{bottom:810.240000px;}
.ybc{bottom:813.750000px;}
.ye4{bottom:822.480000px;}
.y3b{bottom:826.080000px;}
.y62{bottom:830.670000px;}
.ye3{bottom:840.030000px;}
.y8{bottom:845.790000px;}
.y3a{bottom:857.580000px;}
.ye2{bottom:857.670000px;}
.y61{bottom:866.220000px;}
.y2b{bottom:870.000000px;}
.y7{bottom:881.610000px;}
.y60{bottom:883.860000px;}
.ye1{bottom:884.220000px;}
.y98{bottom:899.790000px;}
.y5f{bottom:901.410000px;}
.ye0{bottom:901.860000px;}
.y2a{bottom:906.270000px;}
.y97{bottom:917.340000px;}
.y6{bottom:917.610000px;}
.y5e{bottom:918.960000px;}
.ydf{bottom:928.410000px;}
.y96{bottom:934.890000px;}
.y5{bottom:935.610000px;}
.y29{bottom:937.770000px;}
.y5d{bottom:945.600000px;}
.yde{bottom:945.960000px;}
.yb6{bottom:952.350000px;}
.y95{bottom:952.530000px;}
.y4{bottom:971.700000px;}
.ydd{bottom:972.600000px;}
.y94{bottom:979.080000px;}
.y5c{bottom:981.150000px;}
.ydc{bottom:990.150000px;}
.y5b{bottom:998.790000px;}
.y3{bottom:1009.980000px;}
.y93{bottom:1014.750000px;}
.y5a{bottom:1016.370000px;}
.ydb{bottom:1016.820000px;}
.y92{bottom:1032.300000px;}
.y59{bottom:1033.920000px;}
.yda{bottom:1034.370000px;}
.y7f{bottom:1042.920000px;}
.y58{bottom:1051.560000px;}
.yd9{bottom:1051.920000px;}
.y91{bottom:1064.520000px;}
.y57{bottom:1078.110000px;}
.y7e{bottom:1078.560000px;}
.yb5{bottom:1090.890000px;}
.y7d{bottom:1096.110000px;}
.y56{bottom:1113.750000px;}
.y39{bottom:1122.750000px;}
.y38{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hb{height:26.280000px;}
.hf{height:26.550000px;}
.h2{height:32.918906px;}
.h7{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.hc{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.he{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:114.930000px;}
.h10{height:137.010000px;}
.h11{height:137.070000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:46.080000px;}
.w9{width:100.830000px;}
.wc{width:104.580000px;}
.w6{width:142.860000px;}
.wb{width:180.900000px;}
.w5{width:181.620000px;}
.w4{width:183.360000px;}
.w3{width:241.860000px;}
.wa{width:296.310000px;}
.w7{width:612.120000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.x14{left:80.820000px;}
.x11{left:95.039987px;}
.x19{left:111.239987px;}
.x15{left:127.620000px;}
.xa{left:142.470000px;}
.x2{left:192.719987px;}
.xe{left:212.340000px;}
.x16{left:229.170000px;}
.x10{left:277.139987px;}
.x5{left:288.569987px;}
.x7{left:295.319987px;}
.x13{left:320.159987px;}
.x9{left:336.629987px;}
.xc{left:385.050000px;}
.x17{left:526.200000px;}
.xd{left:569.130000px;}
.x4{left:588.389987px;}
.x12{left:592.169987px;}
.x8{left:643.559987px;}
.xf{left:670.559987px;}
.x18{left:707.820000px;}
.x6{left:734.639987px;}
.x3{left:800.339987px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v1{vertical-align:-13.440000pt;}
.v5{vertical-align:-5.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls23{letter-spacing:-0.424533pt;}
.ls16{letter-spacing:-0.395200pt;}
.lse{letter-spacing:-0.266133pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.069333pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls27{letter-spacing:-0.044800pt;}
.ls22{letter-spacing:-0.013120pt;}
.ls7{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.002027pt;}
.ls2{letter-spacing:0.013120pt;}
.ls11{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls14{letter-spacing:0.053760pt;}
.ls6{letter-spacing:0.053867pt;}
.ls20{letter-spacing:0.054400pt;}
.ls1d{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls24{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.087467pt;}
.ls18{letter-spacing:0.093867pt;}
.ls19{letter-spacing:0.102933pt;}
.ls8{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.142933pt;}
.ls3{letter-spacing:0.152320pt;}
.lsd{letter-spacing:0.154133pt;}
.ls1f{letter-spacing:0.154240pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.245333pt;}
.ls12{letter-spacing:0.403200pt;}
.ls26{letter-spacing:6.796800pt;}
.ls0{letter-spacing:11.864320pt;}
.ls28{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:56.503680pt;}
.ls25{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.899733pt;}
.ws12{word-spacing:-11.859733pt;}
.ws11{word-spacing:-11.850667pt;}
.ws13{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800533pt;}
.wse{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.700267pt;}
.ws14{word-spacing:-11.687467pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:-7.667200pt;}
.ws5{word-spacing:-7.657067pt;}
.ws9{word-spacing:-7.603200pt;}
.ws6{word-spacing:-7.337067pt;}
.wsc{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._d{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._4{width:2.298134pt;}
._3{width:3.359477pt;}
._8{width:4.375437pt;}
._7{width:5.397333pt;}
._2{width:6.306134pt;}
._c{width:7.695467pt;}
._b{width:8.870933pt;}
._9{width:10.260266pt;}
._e{width:12.863467pt;}
._16{width:13.856533pt;}
._a{width:15.497600pt;}
._15{width:16.408960pt;}
._12{width:17.421440pt;}
._5{width:18.704000pt;}
._6{width:19.612266pt;}
._13{width:21.376000pt;}
._14{width:22.450240pt;}
._11{width:34.203627pt;}
._10{width:41.896960pt;}
._f{width:183.780160pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:6.720000pt;}
.y76{bottom:6.960000pt;}
.yc2{bottom:7.040000pt;}
.y7a{bottom:22.560000pt;}
.y75{bottom:22.640000pt;}
.ybb{bottom:26.560000pt;}
.yc1{bottom:26.640000pt;}
.yba{bottom:46.240000pt;}
.yc0{bottom:46.320000pt;}
.y2{bottom:65.226667pt;}
.yc4{bottom:65.840000pt;}
.yb9{bottom:65.866667pt;}
.ybf{bottom:65.920000pt;}
.y28{bottom:65.946667pt;}
.yb8{bottom:85.466667pt;}
.ybe{bottom:85.520000pt;}
.y1{bottom:89.066667pt;}
.yb7{bottom:105.146667pt;}
.ybd{bottom:105.200000pt;}
.yb4{bottom:115.546667pt;}
.y37{bottom:122.426667pt;}
.y55{bottom:124.266667pt;}
.y7c{bottom:128.746667pt;}
.yd8{bottom:137.306667pt;}
.y36{bottom:138.026667pt;}
.yb3{bottom:139.146667pt;}
.y54{bottom:139.946667pt;}
.y7b{bottom:144.346667pt;}
.yd7{bottom:152.906667pt;}
.y35{bottom:153.706667pt;}
.y26{bottom:154.106667pt;}
.y53{bottom:155.546667pt;}
.y34{bottom:169.306667pt;}
.y25{bottom:169.786667pt;}
.yb2{bottom:170.746667pt;}
.y52{bottom:171.226667pt;}
.y79{bottom:173.706667pt;}
.yd6{bottom:176.586667pt;}
.y24{bottom:185.386667pt;}
.yb1{bottom:186.426667pt;}
.y90{bottom:187.866667pt;}
.y33{bottom:188.266667pt;}
.yd5{bottom:192.186667pt;}
.y51{bottom:194.826667pt;}
.y23{bottom:201.066667pt;}
.yb0{bottom:202.026667pt;}
.y8f{bottom:203.466667pt;}
.yd4{bottom:207.786667pt;}
.y32{bottom:208.826667pt;}
.y78{bottom:213.626667pt;}
.y22{bottom:216.666667pt;}
.yaf{bottom:217.626667pt;}
.y8e{bottom:219.146667pt;}
.y50{bottom:226.426667pt;}
.yd3{bottom:231.466667pt;}
.y21{bottom:232.266667pt;}
.yae{bottom:241.306667pt;}
.y4f{bottom:242.106667pt;}
.y8d{bottom:242.746667pt;}
.yd2{bottom:247.066667pt;}
.y20{bottom:247.946667pt;}
.y31{bottom:251.786667pt;}
.y77{bottom:253.546667pt;}
.y4e{bottom:257.706667pt;}
.y1f{bottom:263.546667pt;}
.y30{bottom:267.386667pt;}
.yd1{bottom:270.746667pt;}
.yad{bottom:272.906667pt;}
.y8c{bottom:274.346667pt;}
.y1e{bottom:279.226667pt;}
.y4d{bottom:281.386667pt;}
.y2f{bottom:282.986667pt;}
.yd0{bottom:286.346667pt;}
.yac{bottom:288.586667pt;}
.y8b{bottom:290.746667pt;}
.y74{bottom:293.466667pt;}
.y2e{bottom:298.666667pt;}
.y1d{bottom:302.826667pt;}
.yab{bottom:304.186667pt;}
.y8a{bottom:307.466667pt;}
.ycf{bottom:309.946667pt;}
.y4c{bottom:312.986667pt;}
.y89{bottom:324.826667pt;}
.yce{bottom:325.626667pt;}
.yaa{bottom:327.786667pt;}
.y2d{bottom:330.266667pt;}
.y1c{bottom:334.426667pt;}
.y4b{bottom:336.586667pt;}
.y88{bottom:341.226667pt;}
.ycd{bottom:349.546667pt;}
.y1b{bottom:350.106667pt;}
.y73{bottom:352.426667pt;}
.y87{bottom:357.546667pt;}
.y2c{bottom:358.266667pt;}
.ya9{bottom:359.466667pt;}
.y4a{bottom:368.266667pt;}
.y1a{bottom:369.066667pt;}
.y86{bottom:373.946667pt;}
.ya8{bottom:375.066667pt;}
.y19{bottom:381.386667pt;}
.y49{bottom:383.866667pt;}
.y72{bottom:384.026667pt;}
.y85{bottom:390.346667pt;}
.ya7{bottom:390.746667pt;}
.ycc{bottom:392.426667pt;}
.y18{bottom:396.986667pt;}
.y71{bottom:399.626667pt;}
.ya6{bottom:406.346667pt;}
.y48{bottom:407.546667pt;}
.y17{bottom:412.586667pt;}
.y84{bottom:414.666667pt;}
.y70{bottom:415.306667pt;}
.ycb{bottom:416.346667pt;}
.y16{bottom:428.293333pt;}
.ya5{bottom:429.973333pt;}
.y6f{bottom:438.933333pt;}
.y47{bottom:439.173333pt;}
.y15{bottom:443.893333pt;}
.y83{bottom:446.373333pt;}
.yca{bottom:449.573333pt;}
.y46{bottom:454.773333pt;}
.y14{bottom:459.573333pt;}
.ya4{bottom:461.653333pt;}
.y82{bottom:461.973333pt;}
.y6e{bottom:465.573333pt;}
.y45{bottom:478.453333pt;}
.y13{bottom:483.413333pt;}
.y6d{bottom:489.573333pt;}
.yc9{bottom:492.453333pt;}
.ya3{bottom:493.253333pt;}
.y81{bottom:493.653333pt;}
.ya2{bottom:508.933333pt;}
.y44{bottom:510.053333pt;}
.y6c{bottom:513.573333pt;}
.y80{bottom:522.293333pt;}
.yc8{bottom:524.133333pt;}
.ya1{bottom:524.533333pt;}
.y43{bottom:525.733333pt;}
.y12{bottom:526.613333pt;}
.y6b{bottom:537.573333pt;}
.yc7{bottom:539.733333pt;}
.ya0{bottom:548.133333pt;}
.y42{bottom:549.333333pt;}
.yc6{bottom:555.413333pt;}
.y11{bottom:559.573333pt;}
.y69{bottom:561.573333pt;}
.y10{bottom:575.173333pt;}
.yc5{bottom:579.333333pt;}
.y9f{bottom:579.813333pt;}
.y41{bottom:580.933333pt;}
.yf{bottom:590.853333pt;}
.y9e{bottom:595.413333pt;}
.y40{bottom:596.613333pt;}
.y68{bottom:604.613333pt;}
.ye{bottom:606.453333pt;}
.y9d{bottom:611.093333pt;}
.y3f{bottom:612.213333pt;}
.yc3{bottom:619.893333pt;}
.yea{bottom:621.333333pt;}
.yd{bottom:622.053333pt;}
.y9c{bottom:626.693333pt;}
.y3e{bottom:635.813333pt;}
.y67{bottom:636.213333pt;}
.ye9{bottom:636.933333pt;}
.yc{bottom:637.733333pt;}
.y9b{bottom:642.293333pt;}
.y66{bottom:651.813333pt;}
.ye8{bottom:652.613333pt;}
.yb{bottom:653.333333pt;}
.y9a{bottom:665.973333pt;}
.y3d{bottom:667.493333pt;}
.ye7{bottom:676.213333pt;}
.ya{bottom:677.253333pt;}
.y65{bottom:683.493333pt;}
.y3c{bottom:691.413333pt;}
.ye6{bottom:691.813333pt;}
.y99{bottom:694.613333pt;}
.y64{bottom:699.093333pt;}
.ye5{bottom:707.493333pt;}
.y63{bottom:714.693333pt;}
.y9{bottom:720.213333pt;}
.ybc{bottom:723.333333pt;}
.ye4{bottom:731.093333pt;}
.y3b{bottom:734.293333pt;}
.y62{bottom:738.373333pt;}
.ye3{bottom:746.693333pt;}
.y8{bottom:751.813333pt;}
.y3a{bottom:762.293333pt;}
.ye2{bottom:762.373333pt;}
.y61{bottom:769.973333pt;}
.y2b{bottom:773.333333pt;}
.y7{bottom:783.653333pt;}
.y60{bottom:785.653333pt;}
.ye1{bottom:785.973333pt;}
.y98{bottom:799.813333pt;}
.y5f{bottom:801.253333pt;}
.ye0{bottom:801.653333pt;}
.y2a{bottom:805.573333pt;}
.y97{bottom:815.413333pt;}
.y6{bottom:815.653333pt;}
.y5e{bottom:816.853333pt;}
.ydf{bottom:825.253333pt;}
.y96{bottom:831.013333pt;}
.y5{bottom:831.653333pt;}
.y29{bottom:833.573333pt;}
.y5d{bottom:840.533333pt;}
.yde{bottom:840.853333pt;}
.yb6{bottom:846.533333pt;}
.y95{bottom:846.693333pt;}
.y4{bottom:863.733333pt;}
.ydd{bottom:864.533333pt;}
.y94{bottom:870.293333pt;}
.y5c{bottom:872.133333pt;}
.ydc{bottom:880.133333pt;}
.y5b{bottom:887.813333pt;}
.y3{bottom:897.760000pt;}
.y93{bottom:902.000000pt;}
.y5a{bottom:903.440000pt;}
.ydb{bottom:903.840000pt;}
.y92{bottom:917.600000pt;}
.y59{bottom:919.040000pt;}
.yda{bottom:919.440000pt;}
.y7f{bottom:927.040000pt;}
.y58{bottom:934.720000pt;}
.yd9{bottom:935.040000pt;}
.y91{bottom:946.240000pt;}
.y57{bottom:958.320000pt;}
.y7e{bottom:958.720000pt;}
.yb5{bottom:969.680000pt;}
.y7d{bottom:974.320000pt;}
.y56{bottom:990.000000pt;}
.y39{bottom:998.000000pt;}
.y38{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hb{height:23.360000pt;}
.hf{height:23.600000pt;}
.h2{height:29.261250pt;}
.h7{height:31.806562pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.hc{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.he{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:102.160000pt;}
.h10{height:121.786667pt;}
.h11{height:121.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:40.960000pt;}
.w9{width:89.626667pt;}
.wc{width:92.960000pt;}
.w6{width:126.986667pt;}
.wb{width:160.800000pt;}
.w5{width:161.440000pt;}
.w4{width:162.986667pt;}
.w3{width:214.986667pt;}
.wa{width:263.386667pt;}
.w7{width:544.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.x14{left:71.840000pt;}
.x11{left:84.479988pt;}
.x19{left:98.879988pt;}
.x15{left:113.440000pt;}
.xa{left:126.640000pt;}
.x2{left:171.306655pt;}
.xe{left:188.746667pt;}
.x16{left:203.706667pt;}
.x10{left:246.346655pt;}
.x5{left:256.506655pt;}
.x7{left:262.506655pt;}
.x13{left:284.586655pt;}
.x9{left:299.226655pt;}
.xc{left:342.266667pt;}
.x17{left:467.733333pt;}
.xd{left:505.893333pt;}
.x4{left:523.013322pt;}
.x12{left:526.373322pt;}
.x8{left:572.053322pt;}
.xf{left:596.053322pt;}
.x18{left:629.173333pt;}
.x6{left:653.013322pt;}
.x3{left:711.413322pt;}
}




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