
    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_981fd23529269db8647a2fbb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_dea5d555916acb28322c8087.woff')format("woff");}.ff2{font-family:ff2;line-height:1.078613;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_c782dbfbc9cd2ee54dea2b41.woff')format("woff");}.ff3{font-family:ff3;line-height:1.078613;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9d1d1024da7e4039a00a0880.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_37cad9689158a14774941deb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_fe7edee1e54a238d55b584ed.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_aa7d0326cd5ea39896a21acb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_94efdbe141256752fae841b4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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:ffa;src:url('chunks/assets/font_cbebc52ce0a54fdb7214aebf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.012000px;}
.lsf{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.516000px;}
.ls10{letter-spacing:0.624000px;}
.ls0{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.732000px;}
.ls19{letter-spacing:0.840000px;}
.ls12{letter-spacing:2.160000px;}
.lsd{letter-spacing:6.480000px;}
.ls1a{letter-spacing:10.800000px;}
.lsa{letter-spacing:12.240000px;}
.lse{letter-spacing:15.300000px;}
.ls15{letter-spacing:18.000000px;}
.lsb{letter-spacing:19.440000px;}
.ls9{letter-spacing:23.760000px;}
.ls3{letter-spacing:25.200000px;}
.ls11{letter-spacing:28.260000px;}
.ls18{letter-spacing:53.424000px;}
.ls2{letter-spacing:75.749760px;}
.ls14{letter-spacing:79.920000px;}
.ls1{letter-spacing:111.869760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.120000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.352000px;}
.ws4{word-spacing:0.000000px;}
._2e{margin-left:-12.096000px;}
._2d{margin-left:-7.989120px;}
._29{margin-left:-6.577920px;}
._2a{margin-left:-4.700160px;}
._4{margin-left:-3.651840px;}
._1{margin-left:-2.407680px;}
._0{margin-left:-1.313280px;}
._2{width:1.094400px;}
._3{width:2.177280px;}
._23{width:3.187680px;}
._c{width:4.359360px;}
._1c{width:5.501280px;}
._25{width:6.770880px;}
._16{width:7.848000px;}
._d{width:9.000000px;}
._1b{width:10.656000px;}
._1f{width:11.669760px;}
._22{width:12.718080px;}
._21{width:13.907520px;}
._20{width:15.984000px;}
._10{width:20.007360px;}
._f{width:21.312000px;}
._e{width:22.337280px;}
._5{width:23.373600px;}
._6{width:25.040160px;}
._7{width:26.930880px;}
._11{width:27.938880px;}
._17{width:29.736000px;}
._18{width:31.127040px;}
._15{width:34.467840px;}
._14{width:35.501760px;}
._26{width:36.641280px;}
._24{width:37.795200px;}
._9{width:38.873280px;}
._8{width:40.020000px;}
._13{width:44.663040px;}
._12{width:45.794880px;}
._19{width:47.592000px;}
._1a{width:49.135680px;}
._1d{width:50.474880px;}
._1e{width:51.924960px;}
._b{width:61.340640px;}
._a{width:62.669280px;}
._2c{width:66.905280px;}
._2b{width:68.417280px;}
._28{width:78.984000px;}
._27{width:80.455680px;}
._2f{width:104.633280px;}
._30{width:105.814080px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc1{color:rgb(112,173,71);}
.fc6{color:rgb(17,17,17);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.y2{bottom:-16.155000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.520000px;}
.y58{bottom:19.440000px;}
.y8e{bottom:19.443000px;}
.y55{bottom:19.470000px;}
.y53{bottom:19.800000px;}
.y7c{bottom:19.830000px;}
.y90{bottom:19.836000px;}
.y51{bottom:32.430000px;}
.y54{bottom:43.230000px;}
.y8{bottom:55.476000px;}
.y50{bottom:56.190000px;}
.y5{bottom:57.276000px;}
.y4f{bottom:79.950000px;}
.y35{bottom:97.956000px;}
.y8f{bottom:109.836000px;}
.y79{bottom:113.796000px;}
.yb7{bottom:115.956000px;}
.y65{bottom:120.996000px;}
.y34{bottom:122.076000px;}
.y78{bottom:137.952000px;}
.yb6{bottom:139.752000px;}
.y64{bottom:144.792000px;}
.y33{bottom:145.872000px;}
.y8d{bottom:146.592000px;}
.y77{bottom:161.715000px;}
.yb5{bottom:163.515000px;}
.y63{bottom:168.555000px;}
.y32{bottom:169.635000px;}
.y8c{bottom:182.955000px;}
.y76{bottom:185.475000px;}
.yb4{bottom:187.275000px;}
.y62{bottom:192.315000px;}
.y31{bottom:193.395000px;}
.y75{bottom:209.235000px;}
.yb3{bottom:211.395000px;}
.y61{bottom:216.075000px;}
.y30{bottom:217.155000px;}
.y8b{bottom:227.235000px;}
.y74{bottom:232.995000px;}
.yb2{bottom:235.155000px;}
.y60{bottom:239.835000px;}
.y2f{bottom:240.915000px;}
.y8a{bottom:250.995000px;}
.y73{bottom:256.755000px;}
.yb1{bottom:258.915000px;}
.y5f{bottom:263.625000px;}
.y2e{bottom:264.705000px;}
.y89{bottom:274.785000px;}
.y72{bottom:280.545000px;}
.yb0{bottom:282.705000px;}
.y5e{bottom:287.745000px;}
.y2d{bottom:288.465000px;}
.y88{bottom:298.545000px;}
.y71{bottom:304.305000px;}
.yaf{bottom:306.465000px;}
.y5d{bottom:311.505000px;}
.y2c{bottom:312.225000px;}
.y87{bottom:322.305000px;}
.y70{bottom:328.425000px;}
.yae{bottom:330.225000px;}
.y5c{bottom:335.265000px;}
.y2b{bottom:336.345000px;}
.y86{bottom:346.065000px;}
.y6f{bottom:352.185000px;}
.yad{bottom:353.985000px;}
.y5b{bottom:359.025000px;}
.y2a{bottom:360.105000px;}
.y85{bottom:370.185000px;}
.y6e{bottom:375.945000px;}
.yac{bottom:377.745000px;}
.y5a{bottom:382.785000px;}
.y29{bottom:383.865000px;}
.y84{bottom:393.990000px;}
.y59{bottom:399.750000px;}
.yab{bottom:401.910000px;}
.y28{bottom:407.670000px;}
.y83{bottom:417.750000px;}
.y6d{bottom:423.510000px;}
.yaa{bottom:425.670000px;}
.y27{bottom:431.430000px;}
.y57{bottom:436.470000px;}
.y82{bottom:441.510000px;}
.y6c{bottom:447.270000px;}
.ya9{bottom:449.430000px;}
.y26{bottom:455.190000px;}
.y81{bottom:465.270000px;}
.y6b{bottom:471.030000px;}
.y56{bottom:472.830000px;}
.ya8{bottom:473.190000px;}
.y25{bottom:478.950000px;}
.y80{bottom:489.030000px;}
.y6a{bottom:494.790000px;}
.ya7{bottom:496.590000px;}
.y24{bottom:502.710000px;}
.y7f{bottom:505.950000px;}
.y4e{bottom:509.550000px;}
.y69{bottom:518.910000px;}
.ya6{bottom:520.350000px;}
.y23{bottom:526.830000px;}
.y68{bottom:542.700000px;}
.ya5{bottom:544.500000px;}
.y22{bottom:550.620000px;}
.y67{bottom:566.460000px;}
.ya4{bottom:568.260000px;}
.y52{bottom:569.700000px;}
.y21{bottom:574.380000px;}
.y7e{bottom:579.060000px;}
.y66{bottom:590.220000px;}
.ya3{bottom:592.020000px;}
.y20{bottom:597.780000px;}
.y4d{bottom:613.980000px;}
.y7d{bottom:615.780000px;}
.ya2{bottom:616.140000px;}
.y1f{bottom:621.900000px;}
.ya1{bottom:633.060000px;}
.y4c{bottom:637.740000px;}
.y1e{bottom:645.660000px;}
.y7a{bottom:652.140000px;}
.y4b{bottom:661.530000px;}
.y1d{bottom:669.450000px;}
.y4a{bottom:685.290000px;}
.y7b{bottom:688.890000px;}
.y1c{bottom:693.210000px;}
.ya0{bottom:706.170000px;}
.y49{bottom:709.050000px;}
.y1b{bottom:717.330000px;}
.y48{bottom:733.170000px;}
.y1a{bottom:741.090000px;}
.y9f{bottom:742.530000px;}
.y47{bottom:756.930000px;}
.y19{bottom:764.850000px;}
.y46{bottom:780.690000px;}
.y9e{bottom:786.810000px;}
.y18{bottom:788.610000px;}
.y45{bottom:804.495000px;}
.y9d{bottom:810.615000px;}
.y17{bottom:812.415000px;}
.y44{bottom:828.255000px;}
.y9c{bottom:834.375000px;}
.y16{bottom:836.175000px;}
.y43{bottom:852.015000px;}
.y9b{bottom:858.135000px;}
.y15{bottom:859.935000px;}
.y42{bottom:875.775000px;}
.y9a{bottom:881.895000px;}
.y14{bottom:883.695000px;}
.y99{bottom:899.175000px;}
.y41{bottom:899.535000px;}
.y13{bottom:907.455000px;}
.y40{bottom:923.655000px;}
.y12{bottom:931.605000px;}
.y98{bottom:935.565000px;}
.y3f{bottom:947.445000px;}
.y11{bottom:955.365000px;}
.y3e{bottom:971.205000px;}
.y97{bottom:972.285000px;}
.y10{bottom:979.125000px;}
.y3d{bottom:994.965000px;}
.yf{bottom:1002.525000px;}
.y96{bottom:1008.645000px;}
.y3c{bottom:1018.725000px;}
.ye{bottom:1026.645000px;}
.y3b{bottom:1042.485000px;}
.yd{bottom:1050.405000px;}
.y95{bottom:1052.925000px;}
.y3a{bottom:1066.290000px;}
.yc{bottom:1073.850000px;}
.y94{bottom:1076.730000px;}
.y39{bottom:1090.050000px;}
.yb{bottom:1097.610000px;}
.y93{bottom:1100.490000px;}
.y38{bottom:1114.170000px;}
.ya{bottom:1123.890000px;}
.y92{bottom:1124.250000px;}
.y37{bottom:1137.930000px;}
.y91{bottom:1141.170000px;}
.y9{bottom:1155.570000px;}
.y36{bottom:1161.690000px;}
.y1{bottom:1185.045000px;}
.y4{bottom:1194.090000px;}
.y3{bottom:1212.120000px;}
.h2{height:0.036003px;}
.h7{height:4.038750px;}
.h5{height:27.000000px;}
.hf{height:35.640000px;}
.h12{height:35.676000px;}
.hd{height:36.000000px;}
.h11{height:36.036000px;}
.h4{height:47.318906px;}
.h3{height:50.484375px;}
.ha{height:51.996094px;}
.h13{height:52.417969px;}
.hb{height:52.628906px;}
.he{height:59.436000px;}
.h9{height:62.261719px;}
.h6{height:65.884219px;}
.h10{height:72.396000px;}
.h8{height:83.430703px;}
.hc{height:96.156000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:83.916000px;}
.w8{width:84.276000px;}
.wa{width:84.636000px;}
.wc{width:86.076000px;}
.wd{width:93.996000px;}
.w5{width:104.796000px;}
.wb{width:106.956000px;}
.w10{width:174.315000px;}
.we{width:174.675000px;}
.w13{width:238.425000px;}
.w12{width:238.755000px;}
.w11{width:238.785000px;}
.w9{width:288.465000px;}
.w4{width:305.025000px;}
.w6{width:305.430000px;}
.wf{width:525.090000px;}
.w1{width:892.500000px;}
.w2{width:892.799973px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:6.840000px;}
.x1d{left:7.920000px;}
.x13{left:19.440000px;}
.x15{left:22.320000px;}
.x14{left:24.840000px;}
.x20{left:26.280000px;}
.x22{left:27.360000px;}
.x24{left:31.320000px;}
.x1f{left:33.120000px;}
.x23{left:35.640000px;}
.x28{left:37.440000px;}
.x21{left:42.120000px;}
.x32{left:43.605000px;}
.x38{left:46.845000px;}
.x2d{left:55.116000px;}
.x2e{left:57.636000px;}
.x35{left:60.120000px;}
.x25{left:62.679000px;}
.x30{left:64.440000px;}
.x34{left:65.559000px;}
.x2b{left:66.639000px;}
.x2c{left:68.439000px;}
.x4{left:87.516000px;}
.x12{left:90.036000px;}
.x9{left:95.795987px;}
.x39{left:103.350000px;}
.x19{left:106.230000px;}
.x36{left:108.030000px;}
.x33{left:109.845000px;}
.x2{left:110.915987px;}
.x37{left:114.525000px;}
.xa{left:117.395987px;}
.x3a{left:127.835987px;}
.x11{left:148.751987px;}
.xf{left:161.714987px;}
.x16{left:174.675000px;}
.x27{left:179.715000px;}
.x3{left:203.114987px;}
.x17{left:259.665000px;}
.x26{left:263.265000px;}
.xe{left:270.824987px;}
.x10{left:296.024987px;}
.x5{left:297.834000px;}
.xd{left:317.624987px;}
.x2f{left:327.390000px;}
.x18{left:345.030000px;}
.x6{left:394.710000px;}
.xb{left:404.429987px;}
.x1{left:437.579973px;}
.x29{left:438.660000px;}
.xc{left:446.579987px;}
.x1c{left:452.700000px;}
.x8{left:500.220000px;}
.x1e{left:539.490000px;}
.x31{left:566.850000px;}
.x2a{left:613.695000px;}
.x1a{left:634.215000px;}
.x1b{left:719.565000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.010667pt;}
.lsf{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.458667pt;}
.ls10{letter-spacing:0.554667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.650667pt;}
.ls19{letter-spacing:0.746667pt;}
.ls12{letter-spacing:1.920000pt;}
.lsd{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:9.600000pt;}
.lsa{letter-spacing:10.880000pt;}
.lse{letter-spacing:13.600000pt;}
.ls15{letter-spacing:16.000000pt;}
.lsb{letter-spacing:17.280000pt;}
.ls9{letter-spacing:21.120000pt;}
.ls3{letter-spacing:22.400000pt;}
.ls11{letter-spacing:25.120000pt;}
.ls18{letter-spacing:47.488000pt;}
.ls2{letter-spacing:67.333120pt;}
.ls14{letter-spacing:71.040000pt;}
.ls1{letter-spacing:99.439787pt;}
.ws1{word-spacing:-21.440000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.424000pt;}
.ws4{word-spacing:0.000000pt;}
._2e{margin-left:-10.752000pt;}
._2d{margin-left:-7.101440pt;}
._29{margin-left:-5.847040pt;}
._2a{margin-left:-4.177920pt;}
._4{margin-left:-3.246080pt;}
._1{margin-left:-2.140160pt;}
._0{margin-left:-1.167360pt;}
._2{width:0.972800pt;}
._3{width:1.935360pt;}
._23{width:2.833493pt;}
._c{width:3.874987pt;}
._1c{width:4.890027pt;}
._25{width:6.018560pt;}
._16{width:6.976000pt;}
._d{width:8.000000pt;}
._1b{width:9.472000pt;}
._1f{width:10.373120pt;}
._22{width:11.304960pt;}
._21{width:12.362240pt;}
._20{width:14.208000pt;}
._10{width:17.784320pt;}
._f{width:18.944000pt;}
._e{width:19.855360pt;}
._5{width:20.776533pt;}
._6{width:22.257920pt;}
._7{width:23.938560pt;}
._11{width:24.834560pt;}
._17{width:26.432000pt;}
._18{width:27.668480pt;}
._15{width:30.638080pt;}
._14{width:31.557120pt;}
._26{width:32.570027pt;}
._24{width:33.595733pt;}
._9{width:34.554027pt;}
._8{width:35.573333pt;}
._13{width:39.700480pt;}
._12{width:40.706560pt;}
._19{width:42.304000pt;}
._1a{width:43.676160pt;}
._1d{width:44.866560pt;}
._1e{width:46.155520pt;}
._b{width:54.525013pt;}
._a{width:55.706027pt;}
._2c{width:59.471360pt;}
._2b{width:60.815360pt;}
._28{width:70.208000pt;}
._27{width:71.516160pt;}
._2f{width:93.007360pt;}
._30{width:94.056960pt;}
.fs3{font-size:5.120000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.y2{bottom:-14.360000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:10.240000pt;}
.y58{bottom:17.280000pt;}
.y8e{bottom:17.282667pt;}
.y55{bottom:17.306667pt;}
.y53{bottom:17.600000pt;}
.y7c{bottom:17.626667pt;}
.y90{bottom:17.632000pt;}
.y51{bottom:28.826667pt;}
.y54{bottom:38.426667pt;}
.y8{bottom:49.312000pt;}
.y50{bottom:49.946667pt;}
.y5{bottom:50.912000pt;}
.y4f{bottom:71.066667pt;}
.y35{bottom:87.072000pt;}
.y8f{bottom:97.632000pt;}
.y79{bottom:101.152000pt;}
.yb7{bottom:103.072000pt;}
.y65{bottom:107.552000pt;}
.y34{bottom:108.512000pt;}
.y78{bottom:122.624000pt;}
.yb6{bottom:124.224000pt;}
.y64{bottom:128.704000pt;}
.y33{bottom:129.664000pt;}
.y8d{bottom:130.304000pt;}
.y77{bottom:143.746667pt;}
.yb5{bottom:145.346667pt;}
.y63{bottom:149.826667pt;}
.y32{bottom:150.786667pt;}
.y8c{bottom:162.626667pt;}
.y76{bottom:164.866667pt;}
.yb4{bottom:166.466667pt;}
.y62{bottom:170.946667pt;}
.y31{bottom:171.906667pt;}
.y75{bottom:185.986667pt;}
.yb3{bottom:187.906667pt;}
.y61{bottom:192.066667pt;}
.y30{bottom:193.026667pt;}
.y8b{bottom:201.986667pt;}
.y74{bottom:207.106667pt;}
.yb2{bottom:209.026667pt;}
.y60{bottom:213.186667pt;}
.y2f{bottom:214.146667pt;}
.y8a{bottom:223.106667pt;}
.y73{bottom:228.226667pt;}
.yb1{bottom:230.146667pt;}
.y5f{bottom:234.333333pt;}
.y2e{bottom:235.293333pt;}
.y89{bottom:244.253333pt;}
.y72{bottom:249.373333pt;}
.yb0{bottom:251.293333pt;}
.y5e{bottom:255.773333pt;}
.y2d{bottom:256.413333pt;}
.y88{bottom:265.373333pt;}
.y71{bottom:270.493333pt;}
.yaf{bottom:272.413333pt;}
.y5d{bottom:276.893333pt;}
.y2c{bottom:277.533333pt;}
.y87{bottom:286.493333pt;}
.y70{bottom:291.933333pt;}
.yae{bottom:293.533333pt;}
.y5c{bottom:298.013333pt;}
.y2b{bottom:298.973333pt;}
.y86{bottom:307.613333pt;}
.y6f{bottom:313.053333pt;}
.yad{bottom:314.653333pt;}
.y5b{bottom:319.133333pt;}
.y2a{bottom:320.093333pt;}
.y85{bottom:329.053333pt;}
.y6e{bottom:334.173333pt;}
.yac{bottom:335.773333pt;}
.y5a{bottom:340.253333pt;}
.y29{bottom:341.213333pt;}
.y84{bottom:350.213333pt;}
.y59{bottom:355.333333pt;}
.yab{bottom:357.253333pt;}
.y28{bottom:362.373333pt;}
.y83{bottom:371.333333pt;}
.y6d{bottom:376.453333pt;}
.yaa{bottom:378.373333pt;}
.y27{bottom:383.493333pt;}
.y57{bottom:387.973333pt;}
.y82{bottom:392.453333pt;}
.y6c{bottom:397.573333pt;}
.ya9{bottom:399.493333pt;}
.y26{bottom:404.613333pt;}
.y81{bottom:413.573333pt;}
.y6b{bottom:418.693333pt;}
.y56{bottom:420.293333pt;}
.ya8{bottom:420.613333pt;}
.y25{bottom:425.733333pt;}
.y80{bottom:434.693333pt;}
.y6a{bottom:439.813333pt;}
.ya7{bottom:441.413333pt;}
.y24{bottom:446.853333pt;}
.y7f{bottom:449.733333pt;}
.y4e{bottom:452.933333pt;}
.y69{bottom:461.253333pt;}
.ya6{bottom:462.533333pt;}
.y23{bottom:468.293333pt;}
.y68{bottom:482.400000pt;}
.ya5{bottom:484.000000pt;}
.y22{bottom:489.440000pt;}
.y67{bottom:503.520000pt;}
.ya4{bottom:505.120000pt;}
.y52{bottom:506.400000pt;}
.y21{bottom:510.560000pt;}
.y7e{bottom:514.720000pt;}
.y66{bottom:524.640000pt;}
.ya3{bottom:526.240000pt;}
.y20{bottom:531.360000pt;}
.y4d{bottom:545.760000pt;}
.y7d{bottom:547.360000pt;}
.ya2{bottom:547.680000pt;}
.y1f{bottom:552.800000pt;}
.ya1{bottom:562.720000pt;}
.y4c{bottom:566.880000pt;}
.y1e{bottom:573.920000pt;}
.y7a{bottom:579.680000pt;}
.y4b{bottom:588.026667pt;}
.y1d{bottom:595.066667pt;}
.y4a{bottom:609.146667pt;}
.y7b{bottom:612.346667pt;}
.y1c{bottom:616.186667pt;}
.ya0{bottom:627.706667pt;}
.y49{bottom:630.266667pt;}
.y1b{bottom:637.626667pt;}
.y48{bottom:651.706667pt;}
.y1a{bottom:658.746667pt;}
.y9f{bottom:660.026667pt;}
.y47{bottom:672.826667pt;}
.y19{bottom:679.866667pt;}
.y46{bottom:693.946667pt;}
.y9e{bottom:699.386667pt;}
.y18{bottom:700.986667pt;}
.y45{bottom:715.106667pt;}
.y9d{bottom:720.546667pt;}
.y17{bottom:722.146667pt;}
.y44{bottom:736.226667pt;}
.y9c{bottom:741.666667pt;}
.y16{bottom:743.266667pt;}
.y43{bottom:757.346667pt;}
.y9b{bottom:762.786667pt;}
.y15{bottom:764.386667pt;}
.y42{bottom:778.466667pt;}
.y9a{bottom:783.906667pt;}
.y14{bottom:785.506667pt;}
.y99{bottom:799.266667pt;}
.y41{bottom:799.586667pt;}
.y13{bottom:806.626667pt;}
.y40{bottom:821.026667pt;}
.y12{bottom:828.093333pt;}
.y98{bottom:831.613333pt;}
.y3f{bottom:842.173333pt;}
.y11{bottom:849.213333pt;}
.y3e{bottom:863.293333pt;}
.y97{bottom:864.253333pt;}
.y10{bottom:870.333333pt;}
.y3d{bottom:884.413333pt;}
.yf{bottom:891.133333pt;}
.y96{bottom:896.573333pt;}
.y3c{bottom:905.533333pt;}
.ye{bottom:912.573333pt;}
.y3b{bottom:926.653333pt;}
.yd{bottom:933.693333pt;}
.y95{bottom:935.933333pt;}
.y3a{bottom:947.813333pt;}
.yc{bottom:954.533333pt;}
.y94{bottom:957.093333pt;}
.y39{bottom:968.933333pt;}
.yb{bottom:975.653333pt;}
.y93{bottom:978.213333pt;}
.y38{bottom:990.373333pt;}
.ya{bottom:999.013333pt;}
.y92{bottom:999.333333pt;}
.y37{bottom:1011.493333pt;}
.y91{bottom:1014.373333pt;}
.y9{bottom:1027.173333pt;}
.y36{bottom:1032.613333pt;}
.y1{bottom:1053.373333pt;}
.y4{bottom:1061.413333pt;}
.y3{bottom:1077.440000pt;}
.h2{height:0.032003pt;}
.h7{height:3.590000pt;}
.h5{height:24.000000pt;}
.hf{height:31.680000pt;}
.h12{height:31.712000pt;}
.hd{height:32.000000pt;}
.h11{height:32.032000pt;}
.h4{height:42.061250pt;}
.h3{height:44.875000pt;}
.ha{height:46.218750pt;}
.h13{height:46.593750pt;}
.hb{height:46.781250pt;}
.he{height:52.832000pt;}
.h9{height:55.343750pt;}
.h6{height:58.563750pt;}
.h10{height:64.352000pt;}
.h8{height:74.160625pt;}
.hc{height:85.472000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:74.592000pt;}
.w8{width:74.912000pt;}
.wa{width:75.232000pt;}
.wc{width:76.512000pt;}
.wd{width:83.552000pt;}
.w5{width:93.152000pt;}
.wb{width:95.072000pt;}
.w10{width:154.946667pt;}
.we{width:155.266667pt;}
.w13{width:211.933333pt;}
.w12{width:212.226667pt;}
.w11{width:212.253333pt;}
.w9{width:256.413333pt;}
.w4{width:271.133333pt;}
.w6{width:271.493333pt;}
.wf{width:466.746667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599976pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:6.080000pt;}
.x1d{left:7.040000pt;}
.x13{left:17.280000pt;}
.x15{left:19.840000pt;}
.x14{left:22.080000pt;}
.x20{left:23.360000pt;}
.x22{left:24.320000pt;}
.x24{left:27.840000pt;}
.x1f{left:29.440000pt;}
.x23{left:31.680000pt;}
.x28{left:33.280000pt;}
.x21{left:37.440000pt;}
.x32{left:38.760000pt;}
.x38{left:41.640000pt;}
.x2d{left:48.992000pt;}
.x2e{left:51.232000pt;}
.x35{left:53.440000pt;}
.x25{left:55.714667pt;}
.x30{left:57.280000pt;}
.x34{left:58.274667pt;}
.x2b{left:59.234667pt;}
.x2c{left:60.834667pt;}
.x4{left:77.792000pt;}
.x12{left:80.032000pt;}
.x9{left:85.151988pt;}
.x39{left:91.866667pt;}
.x19{left:94.426667pt;}
.x36{left:96.026667pt;}
.x33{left:97.640000pt;}
.x2{left:98.591988pt;}
.x37{left:101.800000pt;}
.xa{left:104.351988pt;}
.x3a{left:113.631988pt;}
.x11{left:132.223988pt;}
.xf{left:143.746655pt;}
.x16{left:155.266667pt;}
.x27{left:159.746667pt;}
.x3{left:180.546655pt;}
.x17{left:230.813333pt;}
.x26{left:234.013333pt;}
.xe{left:240.733322pt;}
.x10{left:263.133322pt;}
.x5{left:264.741333pt;}
.xd{left:282.333322pt;}
.x2f{left:291.013333pt;}
.x18{left:306.693333pt;}
.x6{left:350.853333pt;}
.xb{left:359.493322pt;}
.x1{left:388.959976pt;}
.x29{left:389.920000pt;}
.xc{left:396.959988pt;}
.x1c{left:402.400000pt;}
.x8{left:444.640000pt;}
.x1e{left:479.546667pt;}
.x31{left:503.866667pt;}
.x2a{left:545.506667pt;}
.x1a{left:563.746667pt;}
.x1b{left:639.613333pt;}
}




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