
    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_3d39e215c95b9bced8a5296a.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_a7a5a7465e868fd81f66977a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_84a5b2af994acf1fe5b9c59a.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_2e9de8cac95824c7a4166ac8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_2f28497d3351f12fadf3a555.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c4fea3a6db793e207603a819.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_42a5be2ea16f1f912add131c.woff')format("woff");}.ff8{font-family:ff8;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;}
.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:24.120000px;}
.ls8{letter-spacing:-0.186600px;}
.ls5{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls6{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.063600px;}
.ls11{letter-spacing:-0.038880px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.064800px;}
.lsf{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.113400px;}
.ls9{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:47.726640px;}
.lsc{letter-spacing:63.566640px;}
.ls13{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;}
.ws2{word-spacing:-42.120000px;}
.ws8{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.339800px;}
.wsa{word-spacing:-13.294800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._4{margin-left:-3.870840px;}
._3{margin-left:-2.783160px;}
._0{margin-left:-1.110000px;}
._2{width:1.090188px;}
._8{width:2.164200px;}
._7{width:4.148400px;}
._6{width:5.170200px;}
._5{width:6.252600px;}
._b{width:7.630199px;}
._a{width:8.657400px;}
._11{width:10.340640px;}
._14{width:11.997120px;}
._c{width:14.428800px;}
._12{width:15.931800px;}
._9{width:17.554800px;}
._13{width:18.888240px;}
._d{width:20.898000px;}
._1e{width:23.326560px;}
._1f{width:24.354600px;}
._10{width:25.370640px;}
._f{width:27.655200px;}
._e{width:31.863600px;}
._1d{width:33.246360px;}
._17{width:52.665120px;}
._19{width:55.971720px;}
._21{width:61.142040px;}
._22{width:62.224200px;}
._1{width:69.911040px;}
._1a{width:78.877440px;}
._15{width:119.338200px;}
._23{width:120.420360px;}
._24{width:121.743000px;}
._1b{width:135.270000px;}
._1c{width:164.428200px;}
._20{width:188.536320px;}
._18{width:212.704560px;}
._16{width:269.517960px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:7.830000px;}
.y6a{bottom:7.920000px;}
.y69{bottom:25.470000px;}
.y6c{bottom:43.020000px;}
.y70{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y8e{bottom:131.700000px;}
.yb5{bottom:149.700000px;}
.y8d{bottom:167.340000px;}
.y25{bottom:174.090000px;}
.y8c{bottom:184.890000px;}
.y24{bottom:191.640000px;}
.y67{bottom:199.830000px;}
.y23{bottom:209.190000px;}
.yb4{bottom:211.530000px;}
.y51{bottom:214.770000px;}
.y8b{bottom:220.440000px;}
.y22{bottom:226.830000px;}
.yb3{bottom:229.080000px;}
.y50{bottom:232.320000px;}
.y66{bottom:235.470000px;}
.y8a{bottom:238.080000px;}
.y21{bottom:244.380000px;}
.y4f{bottom:249.960000px;}
.y89{bottom:255.630000px;}
.y4e{bottom:267.510000px;}
.y65{bottom:271.020000px;}
.yb2{bottom:273.270000px;}
.y20{bottom:280.020000px;}
.y88{bottom:282.270000px;}
.y64{bottom:288.660000px;}
.y4d{bottom:294.060000px;}
.y1f{bottom:297.570000px;}
.yb1{bottom:299.820000px;}
.y63{bottom:306.210000px;}
.y1e{bottom:315.120000px;}
.yb0{bottom:317.370000px;}
.y87{bottom:317.820000px;}
.y4c{bottom:329.700000px;}
.y1d{bottom:332.760000px;}
.y86{bottom:335.370000px;}
.yaf{bottom:344.010000px;}
.y4b{bottom:347.250000px;}
.y1c{bottom:350.310000px;}
.y85{bottom:353.010000px;}
.yae{bottom:361.560000px;}
.y4a{bottom:364.800000px;}
.y1b{bottom:367.950000px;}
.y62{bottom:368.400000px;}
.yad{bottom:379.200000px;}
.y84{bottom:379.560000px;}
.y49{bottom:382.440000px;}
.y61{bottom:385.950000px;}
.y48{bottom:399.990000px;}
.y1a{bottom:403.500000px;}
.yac{bottom:406.110000px;}
.y83{bottom:415.200000px;}
.yd2{bottom:416.370000px;}
.y47{bottom:417.630000px;}
.y19{bottom:421.050000px;}
.y60{bottom:421.140000px;}
.y82{bottom:432.750000px;}
.yd1{bottom:433.920000px;}
.y46{bottom:435.180000px;}
.y18{bottom:438.690000px;}
.y5f{bottom:447.690000px;}
.y81{bottom:450.300000px;}
.yd0{bottom:451.470000px;}
.y45{bottom:452.730000px;}
.yab{bottom:454.350000px;}
.y17{bottom:456.240000px;}
.y80{bottom:467.940000px;}
.yaa{bottom:471.930000px;}
.ycf{bottom:478.140000px;}
.y44{bottom:479.400000px;}
.y16{bottom:483.180000px;}
.y5e{bottom:483.360000px;}
.ya9{bottom:489.570000px;}
.y7f{bottom:494.520000px;}
.yce{bottom:495.690000px;}
.y5d{bottom:500.910000px;}
.y43{bottom:514.950000px;}
.ya8{bottom:516.480000px;}
.y5c{bottom:518.460000px;}
.ycd{bottom:522.330000px;}
.y7e{bottom:530.160000px;}
.y15{bottom:531.780000px;}
.y42{bottom:532.590000px;}
.ycc{bottom:539.880000px;}
.y5b{bottom:545.100000px;}
.y7d{bottom:547.710000px;}
.y41{bottom:550.140000px;}
.ya7{bottom:553.830000px;}
.ycb{bottom:557.430000px;}
.y40{bottom:567.690000px;}
.y14{bottom:568.770000px;}
.y7c{bottom:574.260000px;}
.y5a{bottom:580.650000px;}
.yca{bottom:584.070000px;}
.y13{bottom:586.410000px;}
.y3f{bottom:594.330000px;}
.y59{bottom:598.290000px;}
.yc9{bottom:601.620000px;}
.ya6{bottom:602.070000px;}
.y12{bottom:603.960000px;}
.y7b{bottom:609.900000px;}
.y58{bottom:615.840000px;}
.ya5{bottom:619.620000px;}
.y11{bottom:621.600000px;}
.y7a{bottom:627.450000px;}
.yc8{bottom:628.260000px;}
.y3e{bottom:629.880000px;}
.y57{bottom:633.390000px;}
.ya4{bottom:637.260000px;}
.y10{bottom:639.150000px;}
.y79{bottom:645.090000px;}
.yc7{bottom:645.810000px;}
.y3d{bottom:647.520000px;}
.ya3{bottom:654.810000px;}
.yf{bottom:656.700000px;}
.y56{bottom:660.030000px;}
.y78{bottom:662.640000px;}
.yc6{bottom:663.360000px;}
.y3c{bottom:665.070000px;}
.ye{bottom:674.340000px;}
.y3b{bottom:682.620000px;}
.yc5{bottom:690.000000px;}
.ya2{bottom:690.450000px;}
.yd{bottom:691.890000px;}
.y55{bottom:695.580000px;}
.y77{bottom:698.190000px;}
.yc4{bottom:707.550000px;}
.ya1{bottom:708.000000px;}
.y3a{bottom:709.260000px;}
.yc{bottom:709.530000px;}
.y76{bottom:715.830000px;}
.y54{bottom:722.220000px;}
.ya0{bottom:725.550000px;}
.yb{bottom:727.080000px;}
.y75{bottom:733.380000px;}
.yc3{bottom:734.190000px;}
.y9f{bottom:743.190000px;}
.y39{bottom:744.810000px;}
.y74{bottom:751.020000px;}
.yc2{bottom:751.740000px;}
.ya{bottom:753.990000px;}
.y53{bottom:757.770000px;}
.y73{bottom:777.570000px;}
.yc1{bottom:778.290000px;}
.y9e{bottom:778.740000px;}
.y38{bottom:780.450000px;}
.y52{bottom:789.990000px;}
.yc0{bottom:795.930000px;}
.y9d{bottom:796.380000px;}
.y37{bottom:798.000000px;}
.y9{bottom:802.230000px;}
.y72{bottom:813.480000px;}
.y9c{bottom:813.930000px;}
.y36{bottom:815.550000px;}
.y9b{bottom:831.480000px;}
.y35{bottom:833.190000px;}
.y8{bottom:838.050000px;}
.ybf{bottom:840.030000px;}
.y34{bottom:850.740000px;}
.ybe{bottom:857.670000px;}
.y9a{bottom:858.390000px;}
.y71{bottom:859.110000px;}
.y33{bottom:868.380000px;}
.y7{bottom:874.050000px;}
.ybd{bottom:884.220000px;}
.y32{bottom:895.200000px;}
.ybc{bottom:901.860000px;}
.y6f{bottom:904.020000px;}
.y99{bottom:906.630000px;}
.y6{bottom:910.050000px;}
.ybb{bottom:919.410000px;}
.y98{bottom:925.080000px;}
.y97{bottom:943.440000px;}
.y31{bottom:943.530000px;}
.yba{bottom:945.960000px;}
.y5{bottom:946.140000px;}
.y30{bottom:961.080000px;}
.y96{bottom:961.890000px;}
.yb9{bottom:963.600000px;}
.y6e{bottom:966.570000px;}
.y2f{bottom:978.720000px;}
.y95{bottom:980.340000px;}
.y4{bottom:985.380000px;}
.yb8{bottom:990.150000px;}
.y94{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y6b{bottom:1011.510000px;}
.y2e{bottom:1014.300000px;}
.y2d{bottom:1031.850000px;}
.yb7{bottom:1034.370000px;}
.y93{bottom:1043.370000px;}
.y2c{bottom:1050.300000px;}
.yb6{bottom:1051.920000px;}
.y92{bottom:1060.920000px;}
.y2b{bottom:1067.850000px;}
.y68{bottom:1073.970000px;}
.y91{bottom:1078.560000px;}
.y2a{bottom:1086.300000px;}
.y90{bottom:1096.110000px;}
.y8f{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hd{height:44.190000px;}
.hf{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h11{height:59.973223px;}
.h9{height:60.960938px;}
.he{height:61.740000px;}
.ha{height:61.793886px;}
.h10{height:61.830000px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:61.020000px;}
.w7{width:99.180000px;}
.w5{width:187.410000px;}
.w6{width:198.090000px;}
.w4{width:206.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.xd{left:111.239987px;}
.x5{left:122.039987px;}
.x9{left:130.500000px;}
.x2{left:191.459987px;}
.x7{left:203.519987px;}
.xa{left:338.250000px;}
.xb{left:526.380000px;}
.xc{left:725.280000px;}
.x6{left:779.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls5{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls11{letter-spacing:-0.034560pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.057600pt;}
.lsf{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.100800pt;}
.ls9{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:42.423680pt;}
.lsc{letter-spacing:56.503680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws2{word-spacing:-37.440000pt;}
.ws8{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.857600pt;}
.wsa{word-spacing:-11.817600pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._4{margin-left:-3.440746pt;}
._3{margin-left:-2.473920pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.969056pt;}
._8{width:1.923733pt;}
._7{width:3.687467pt;}
._6{width:4.595733pt;}
._5{width:5.557867pt;}
._b{width:6.782399pt;}
._a{width:7.695467pt;}
._11{width:9.191680pt;}
._14{width:10.664107pt;}
._c{width:12.825600pt;}
._12{width:14.161600pt;}
._9{width:15.604266pt;}
._13{width:16.789547pt;}
._d{width:18.576000pt;}
._1e{width:20.734720pt;}
._1f{width:21.648533pt;}
._10{width:22.551680pt;}
._f{width:24.582400pt;}
._e{width:28.323200pt;}
._1d{width:29.552320pt;}
._17{width:46.813440pt;}
._19{width:49.752640pt;}
._21{width:54.348480pt;}
._22{width:55.310400pt;}
._1{width:62.143147pt;}
._1a{width:70.113280pt;}
._15{width:106.078400pt;}
._23{width:107.040320pt;}
._24{width:108.216000pt;}
._1b{width:120.240000pt;}
._1c{width:146.158400pt;}
._20{width:167.587840pt;}
._18{width:189.070720pt;}
._16{width:239.571520pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:6.960000pt;}
.y6a{bottom:7.040000pt;}
.y69{bottom:22.640000pt;}
.y6c{bottom:38.240000pt;}
.y70{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y8e{bottom:117.066667pt;}
.yb5{bottom:133.066667pt;}
.y8d{bottom:148.746667pt;}
.y25{bottom:154.746667pt;}
.y8c{bottom:164.346667pt;}
.y24{bottom:170.346667pt;}
.y67{bottom:177.626667pt;}
.y23{bottom:185.946667pt;}
.yb4{bottom:188.026667pt;}
.y51{bottom:190.906667pt;}
.y8b{bottom:195.946667pt;}
.y22{bottom:201.626667pt;}
.yb3{bottom:203.626667pt;}
.y50{bottom:206.506667pt;}
.y66{bottom:209.306667pt;}
.y8a{bottom:211.626667pt;}
.y21{bottom:217.226667pt;}
.y4f{bottom:222.186667pt;}
.y89{bottom:227.226667pt;}
.y4e{bottom:237.786667pt;}
.y65{bottom:240.906667pt;}
.yb2{bottom:242.906667pt;}
.y20{bottom:248.906667pt;}
.y88{bottom:250.906667pt;}
.y64{bottom:256.586667pt;}
.y4d{bottom:261.386667pt;}
.y1f{bottom:264.506667pt;}
.yb1{bottom:266.506667pt;}
.y63{bottom:272.186667pt;}
.y1e{bottom:280.106667pt;}
.yb0{bottom:282.106667pt;}
.y87{bottom:282.506667pt;}
.y4c{bottom:293.066667pt;}
.y1d{bottom:295.786667pt;}
.y86{bottom:298.106667pt;}
.yaf{bottom:305.786667pt;}
.y4b{bottom:308.666667pt;}
.y1c{bottom:311.386667pt;}
.y85{bottom:313.786667pt;}
.yae{bottom:321.386667pt;}
.y4a{bottom:324.266667pt;}
.y1b{bottom:327.066667pt;}
.y62{bottom:327.466667pt;}
.yad{bottom:337.066667pt;}
.y84{bottom:337.386667pt;}
.y49{bottom:339.946667pt;}
.y61{bottom:343.066667pt;}
.y48{bottom:355.546667pt;}
.y1a{bottom:358.666667pt;}
.yac{bottom:360.986667pt;}
.y83{bottom:369.066667pt;}
.yd2{bottom:370.106667pt;}
.y47{bottom:371.226667pt;}
.y19{bottom:374.266667pt;}
.y60{bottom:374.346667pt;}
.y82{bottom:384.666667pt;}
.yd1{bottom:385.706667pt;}
.y46{bottom:386.826667pt;}
.y18{bottom:389.946667pt;}
.y5f{bottom:397.946667pt;}
.y81{bottom:400.266667pt;}
.yd0{bottom:401.306667pt;}
.y45{bottom:402.426667pt;}
.yab{bottom:403.866667pt;}
.y17{bottom:405.546667pt;}
.y80{bottom:415.946667pt;}
.yaa{bottom:419.493333pt;}
.ycf{bottom:425.013333pt;}
.y44{bottom:426.133333pt;}
.y16{bottom:429.493333pt;}
.y5e{bottom:429.653333pt;}
.ya9{bottom:435.173333pt;}
.y7f{bottom:439.573333pt;}
.yce{bottom:440.613333pt;}
.y5d{bottom:445.253333pt;}
.y43{bottom:457.733333pt;}
.ya8{bottom:459.093333pt;}
.y5c{bottom:460.853333pt;}
.ycd{bottom:464.293333pt;}
.y7e{bottom:471.253333pt;}
.y15{bottom:472.693333pt;}
.y42{bottom:473.413333pt;}
.ycc{bottom:479.893333pt;}
.y5b{bottom:484.533333pt;}
.y7d{bottom:486.853333pt;}
.y41{bottom:489.013333pt;}
.ya7{bottom:492.293333pt;}
.ycb{bottom:495.493333pt;}
.y40{bottom:504.613333pt;}
.y14{bottom:505.573333pt;}
.y7c{bottom:510.453333pt;}
.y5a{bottom:516.133333pt;}
.yca{bottom:519.173333pt;}
.y13{bottom:521.253333pt;}
.y3f{bottom:528.293333pt;}
.y59{bottom:531.813333pt;}
.yc9{bottom:534.773333pt;}
.ya6{bottom:535.173333pt;}
.y12{bottom:536.853333pt;}
.y7b{bottom:542.133333pt;}
.y58{bottom:547.413333pt;}
.ya5{bottom:550.773333pt;}
.y11{bottom:552.533333pt;}
.y7a{bottom:557.733333pt;}
.yc8{bottom:558.453333pt;}
.y3e{bottom:559.893333pt;}
.y57{bottom:563.013333pt;}
.ya4{bottom:566.453333pt;}
.y10{bottom:568.133333pt;}
.y79{bottom:573.413333pt;}
.yc7{bottom:574.053333pt;}
.y3d{bottom:575.573333pt;}
.ya3{bottom:582.053333pt;}
.yf{bottom:583.733333pt;}
.y56{bottom:586.693333pt;}
.y78{bottom:589.013333pt;}
.yc6{bottom:589.653333pt;}
.y3c{bottom:591.173333pt;}
.ye{bottom:599.413333pt;}
.y3b{bottom:606.773333pt;}
.yc5{bottom:613.333333pt;}
.ya2{bottom:613.733333pt;}
.yd{bottom:615.013333pt;}
.y55{bottom:618.293333pt;}
.y77{bottom:620.613333pt;}
.yc4{bottom:628.933333pt;}
.ya1{bottom:629.333333pt;}
.y3a{bottom:630.453333pt;}
.yc{bottom:630.693333pt;}
.y76{bottom:636.293333pt;}
.y54{bottom:641.973333pt;}
.ya0{bottom:644.933333pt;}
.yb{bottom:646.293333pt;}
.y75{bottom:651.893333pt;}
.yc3{bottom:652.613333pt;}
.y9f{bottom:660.613333pt;}
.y39{bottom:662.053333pt;}
.y74{bottom:667.573333pt;}
.yc2{bottom:668.213333pt;}
.ya{bottom:670.213333pt;}
.y53{bottom:673.573333pt;}
.y73{bottom:691.173333pt;}
.yc1{bottom:691.813333pt;}
.y9e{bottom:692.213333pt;}
.y38{bottom:693.733333pt;}
.y52{bottom:702.213333pt;}
.yc0{bottom:707.493333pt;}
.y9d{bottom:707.893333pt;}
.y37{bottom:709.333333pt;}
.y9{bottom:713.093333pt;}
.y72{bottom:723.093333pt;}
.y9c{bottom:723.493333pt;}
.y36{bottom:724.933333pt;}
.y9b{bottom:739.093333pt;}
.y35{bottom:740.613333pt;}
.y8{bottom:744.933333pt;}
.ybf{bottom:746.693333pt;}
.y34{bottom:756.213333pt;}
.ybe{bottom:762.373333pt;}
.y9a{bottom:763.013333pt;}
.y71{bottom:763.653333pt;}
.y33{bottom:771.893333pt;}
.y7{bottom:776.933333pt;}
.ybd{bottom:785.973333pt;}
.y32{bottom:795.733333pt;}
.ybc{bottom:801.653333pt;}
.y6f{bottom:803.573333pt;}
.y99{bottom:805.893333pt;}
.y6{bottom:808.933333pt;}
.ybb{bottom:817.253333pt;}
.y98{bottom:822.293333pt;}
.y97{bottom:838.613333pt;}
.y31{bottom:838.693333pt;}
.yba{bottom:840.853333pt;}
.y5{bottom:841.013333pt;}
.y30{bottom:854.293333pt;}
.y96{bottom:855.013333pt;}
.yb9{bottom:856.533333pt;}
.y6e{bottom:859.173333pt;}
.y2f{bottom:869.973333pt;}
.y95{bottom:871.413333pt;}
.y4{bottom:875.893333pt;}
.yb8{bottom:880.133333pt;}
.y94{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y6b{bottom:899.120000pt;}
.y2e{bottom:901.600000pt;}
.y2d{bottom:917.200000pt;}
.yb7{bottom:919.440000pt;}
.y93{bottom:927.440000pt;}
.y2c{bottom:933.600000pt;}
.yb6{bottom:935.040000pt;}
.y92{bottom:943.040000pt;}
.y2b{bottom:949.200000pt;}
.y68{bottom:954.640000pt;}
.y91{bottom:958.720000pt;}
.y2a{bottom:965.600000pt;}
.y90{bottom:974.320000pt;}
.y8f{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hd{height:39.280000pt;}
.hf{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h11{height:53.309531pt;}
.h9{height:54.187500pt;}
.he{height:54.880000pt;}
.ha{height:54.927899pt;}
.h10{height:54.960000pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:54.240000pt;}
.w7{width:88.160000pt;}
.w5{width:166.586667pt;}
.w6{width:176.080000pt;}
.w4{width:183.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.xd{left:98.879988pt;}
.x5{left:108.479988pt;}
.x9{left:116.000000pt;}
.x2{left:170.186655pt;}
.x7{left:180.906655pt;}
.xa{left:300.666667pt;}
.xb{left:467.893333pt;}
.xc{left:644.693333pt;}
.x6{left:693.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; }
  