
    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_42303ef28dd70789581ef8ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038086;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_d201fd43bb0a87eb31a0ab28.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_fa2c975d3001aa0d363b0fa0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_fbdbed1d18a4bd301780c278.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b374f350d6c55716c6c85630.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937988;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_e01f8760824a56406a987481.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1e709b6500ad13907f4b391b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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;}
.m1{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232758,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,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);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.720000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.lsb{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.936000px;}
.lsa{letter-spacing:10.944000px;}
.ls3{letter-spacing:33.984000px;}
.ls7{letter-spacing:53.400000px;}
.ls2{letter-spacing:821.676000px;}
.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:-18.936000px;}
.ws7{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.595840px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._20{margin-left:-4.680000px;}
._17{margin-left:-3.456000px;}
._18{margin-left:-2.393280px;}
._1{margin-left:-1.179360px;}
._0{width:1.149120px;}
._e{width:3.034080px;}
._7{width:4.541760px;}
._9{width:5.934960px;}
._b{width:7.695360px;}
._a{width:8.904240px;}
._19{width:10.440000px;}
._15{width:11.615760px;}
._13{width:12.848400px;}
._12{width:13.924080px;}
._1f{width:15.768000px;}
._8{width:17.137440px;}
._c{width:18.691200px;}
._24{width:19.703520px;}
._1e{width:20.736000px;}
._5{width:22.217040px;}
._6{width:23.246640px;}
._d{width:24.593760px;}
._1d{width:26.328960px;}
._4{width:27.370080px;}
._1a{width:28.515600px;}
._14{width:29.627280px;}
._11{width:30.875040px;}
._10{width:32.376240px;}
._21{width:33.386400px;}
._1b{width:34.560000px;}
._1c{width:35.568000px;}
._16{width:37.097280px;}
._22{width:38.108160px;}
._25{width:43.272000px;}
._26{width:44.280000px;}
._23{width:49.176000px;}
._f{width:64.899360px;}
._2{width:858.396000px;}
._3{width:1537.680000px;}
.fc4{color:rgb(15,17,21);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.240000px;}
.y14{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y43{bottom:3.960000px;}
.y16{bottom:6.660000px;}
.y44{bottom:11.520000px;}
.y42{bottom:15.120000px;}
.y4{bottom:15.840000px;}
.y2e{bottom:20.520000px;}
.y13{bottom:22.500000px;}
.y2{bottom:22.680000px;}
.y15{bottom:23.940000px;}
.y3{bottom:35.100000px;}
.y8{bottom:36.000000px;}
.y2d{bottom:37.800000px;}
.y40{bottom:41.760000px;}
.y7{bottom:54.900000px;}
.y2c{bottom:55.080000px;}
.y3f{bottom:60.660000px;}
.y2b{bottom:72.360000px;}
.y6{bottom:73.800000px;}
.y3e{bottom:79.560000px;}
.y2a{bottom:89.460000px;}
.y3d{bottom:98.670000px;}
.y29{bottom:106.770000px;}
.y3c{bottom:117.570000px;}
.y28{bottom:124.050000px;}
.y56{bottom:124.416000px;}
.y89{bottom:133.596000px;}
.y3b{bottom:136.650000px;}
.y27{bottom:141.330000px;}
.y55{bottom:145.116000px;}
.y88{bottom:154.290000px;}
.y3a{bottom:155.550000px;}
.y26{bottom:158.610000px;}
.y54{bottom:165.810000px;}
.y39{bottom:174.450000px;}
.y87{bottom:174.990000px;}
.y25{bottom:175.890000px;}
.y53{bottom:186.510000px;}
.y24{bottom:192.990000px;}
.y38{bottom:193.530000px;}
.y86{bottom:195.690000px;}
.y52{bottom:207.210000px;}
.y23{bottom:210.270000px;}
.y37{bottom:212.430000px;}
.y85{bottom:216.390000px;}
.y22{bottom:227.550000px;}
.y51{bottom:227.910000px;}
.y36{bottom:231.510000px;}
.y84{bottom:237.090000px;}
.y21{bottom:244.830000px;}
.y50{bottom:248.610000px;}
.y35{bottom:250.410000px;}
.y83{bottom:257.790000px;}
.y20{bottom:262.110000px;}
.y34{bottom:269.310000px;}
.y82{bottom:278.490000px;}
.y1f{bottom:279.390000px;}
.y33{bottom:288.390000px;}
.y4f{bottom:290.010000px;}
.y1e{bottom:296.490000px;}
.y81{bottom:299.190000px;}
.y4e{bottom:310.710000px;}
.y1d{bottom:313.770000px;}
.y80{bottom:319.890000px;}
.y1c{bottom:331.050000px;}
.y4d{bottom:331.410000px;}
.y7f{bottom:340.590000px;}
.y1b{bottom:348.375000px;}
.y4c{bottom:352.110000px;}
.y7e{bottom:361.290000px;}
.y1a{bottom:365.655000px;}
.y4b{bottom:372.810000px;}
.y7d{bottom:382.035000px;}
.y4a{bottom:393.555000px;}
.y7c{bottom:402.735000px;}
.y49{bottom:414.255000px;}
.y7b{bottom:423.435000px;}
.yab{bottom:424.695000px;}
.y48{bottom:434.955000px;}
.yaa{bottom:443.775000px;}
.y7a{bottom:443.955000px;}
.y47{bottom:455.655000px;}
.ya9{bottom:462.675000px;}
.y79{bottom:464.655000px;}
.y46{bottom:476.355000px;}
.ya8{bottom:481.755000px;}
.y78{bottom:485.355000px;}
.y45{bottom:497.055000px;}
.ya7{bottom:500.655000px;}
.y77{bottom:506.055000px;}
.y41{bottom:514.515000px;}
.ya6{bottom:519.735000px;}
.y76{bottom:526.755000px;}
.y19{bottom:538.635000px;}
.y75{bottom:547.455000px;}
.ya5{bottom:557.535000px;}
.y74{bottom:568.155000px;}
.ya4{bottom:576.615000px;}
.y73{bottom:588.855000px;}
.ya3{bottom:595.515000px;}
.y72{bottom:609.555000px;}
.ya2{bottom:614.595000px;}
.y71{bottom:630.255000px;}
.ya1{bottom:633.525000px;}
.y70{bottom:650.985000px;}
.ya0{bottom:652.425000px;}
.y9f{bottom:671.505000px;}
.y6f{bottom:671.685000px;}
.y9e{bottom:690.405000px;}
.y6e{bottom:692.385000px;}
.y9d{bottom:709.485000px;}
.y6d{bottom:713.085000px;}
.y9c{bottom:728.385000px;}
.y6c{bottom:733.785000px;}
.y9b{bottom:747.285000px;}
.y6b{bottom:754.485000px;}
.y9a{bottom:766.365000px;}
.y6a{bottom:775.185000px;}
.y99{bottom:785.265000px;}
.y69{bottom:795.885000px;}
.y98{bottom:804.345000px;}
.y68{bottom:816.585000px;}
.y97{bottom:823.245000px;}
.y67{bottom:837.285000px;}
.y96{bottom:842.145000px;}
.y32{bottom:842.325000px;}
.y66{bottom:857.985000px;}
.y31{bottom:861.225000px;}
.y65{bottom:878.685000px;}
.y95{bottom:880.125000px;}
.y30{bottom:880.305000px;}
.y17{bottom:899.250000px;}
.y64{bottom:899.430000px;}
.y94{bottom:918.150000px;}
.y12{bottom:918.330000px;}
.y63{bottom:920.130000px;}
.y93{bottom:937.230000px;}
.y62{bottom:940.830000px;}
.y92{bottom:956.130000px;}
.y11{bottom:960.630000px;}
.y61{bottom:961.530000px;}
.y91{bottom:975.030000px;}
.y10{bottom:979.530000px;}
.y60{bottom:982.230000px;}
.y90{bottom:994.110000px;}
.yf{bottom:998.610000px;}
.y5f{bottom:1002.930000px;}
.y8f{bottom:1013.010000px;}
.yd{bottom:1017.870000px;}
.y5e{bottom:1023.630000px;}
.ye{bottom:1023.810000px;}
.y8e{bottom:1032.090000px;}
.yc{bottom:1038.570000px;}
.y5d{bottom:1044.330000px;}
.y8d{bottom:1050.990000px;}
.yb{bottom:1059.810000px;}
.y5c{bottom:1065.030000px;}
.y8c{bottom:1069.890000px;}
.ya{bottom:1083.930000px;}
.y5b{bottom:1085.730000px;}
.y8b{bottom:1088.970000px;}
.y5a{bottom:1106.430000px;}
.y8a{bottom:1107.870000px;}
.y9{bottom:1108.050000px;}
.y59{bottom:1127.130000px;}
.y5{bottom:1131.450000px;}
.y1{bottom:1146.780000px;}
.y58{bottom:1193.400000px;}
.y57{bottom:1208.880000px;}
.h17{height:4.021875px;}
.h12{height:18.900000px;}
.h11{height:18.936000px;}
.he{height:19.080000px;}
.h15{height:24.120000px;}
.h16{height:27.147656px;}
.h8{height:34.036523px;}
.hb{height:37.800000px;}
.h18{height:39.471680px;}
.h10{height:41.726953px;}
.hd{height:42.164648px;}
.h5{height:46.251562px;}
.ha{height:46.736719px;}
.hc{height:47.836406px;}
.h14{height:48.418594px;}
.h1a{height:50.273438px;}
.h7{height:50.800781px;}
.h19{height:52.417969px;}
.h1b{height:52.628906px;}
.h9{height:52.918594px;}
.h4{height:55.825312px;}
.h6{height:59.436914px;}
.h2{height:63.000000px;}
.h3{height:81.078047px;}
.h13{height:303.690000px;}
.hf{height:379.695000px;}
.h1{height:1263.750000px;}
.h0{height:1263.780000px;}
.w5{width:217.650000px;}
.w3{width:261.975000px;}
.w6{width:386.895000px;}
.w2{width:421.095000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x13{left:3.960000px;}
.x2{left:8.100000px;}
.x1{left:119.916000px;}
.x7{left:124.775987px;}
.x12{left:130.536000px;}
.x5{left:146.735987px;}
.x6{left:149.075987px;}
.x17{left:160.409987px;}
.x18{left:162.389987px;}
.x15{left:210.639000px;}
.x10{left:215.489987px;}
.x11{left:257.654987px;}
.x9{left:328.394987px;}
.x14{left:348.195000px;}
.x16{left:388.155000px;}
.xa{left:420.764987px;}
.xb{left:426.704987px;}
.x4{left:438.404987px;}
.x8{left:447.404987px;}
.xc{left:486.464987px;}
.xd{left:492.224987px;}
.x3{left:541.005000px;}
.xe{left:560.444987px;}
.xf{left:566.204987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.lsb{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.832000pt;}
.lsa{letter-spacing:9.728000pt;}
.ls3{letter-spacing:30.208000pt;}
.ls7{letter-spacing:47.466667pt;}
.ls2{letter-spacing:730.378667pt;}
.ws1{word-spacing:-16.832000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.974080pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._20{margin-left:-4.160000pt;}
._17{margin-left:-3.072000pt;}
._18{margin-left:-2.127360pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.021440pt;}
._e{width:2.696960pt;}
._7{width:4.037120pt;}
._9{width:5.275520pt;}
._b{width:6.840320pt;}
._a{width:7.914880pt;}
._19{width:9.280000pt;}
._15{width:10.325120pt;}
._13{width:11.420800pt;}
._12{width:12.376960pt;}
._1f{width:14.016000pt;}
._8{width:15.233280pt;}
._c{width:16.614400pt;}
._24{width:17.514240pt;}
._1e{width:18.432000pt;}
._5{width:19.748480pt;}
._6{width:20.663680pt;}
._d{width:21.861120pt;}
._1d{width:23.403520pt;}
._4{width:24.328960pt;}
._1a{width:25.347200pt;}
._14{width:26.335360pt;}
._11{width:27.444480pt;}
._10{width:28.778880pt;}
._21{width:29.676800pt;}
._1b{width:30.720000pt;}
._1c{width:31.616000pt;}
._16{width:32.975360pt;}
._22{width:33.873920pt;}
._25{width:38.464000pt;}
._26{width:39.360000pt;}
._23{width:43.712000pt;}
._f{width:57.688320pt;}
._2{width:763.018667pt;}
._3{width:1366.826667pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:2.880000pt;}
.y14{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y43{bottom:3.520000pt;}
.y16{bottom:5.920000pt;}
.y44{bottom:10.240000pt;}
.y42{bottom:13.440000pt;}
.y4{bottom:14.080000pt;}
.y2e{bottom:18.240000pt;}
.y13{bottom:20.000000pt;}
.y2{bottom:20.160000pt;}
.y15{bottom:21.280000pt;}
.y3{bottom:31.200000pt;}
.y8{bottom:32.000000pt;}
.y2d{bottom:33.600000pt;}
.y40{bottom:37.120000pt;}
.y7{bottom:48.800000pt;}
.y2c{bottom:48.960000pt;}
.y3f{bottom:53.920000pt;}
.y2b{bottom:64.320000pt;}
.y6{bottom:65.600000pt;}
.y3e{bottom:70.720000pt;}
.y2a{bottom:79.520000pt;}
.y3d{bottom:87.706667pt;}
.y29{bottom:94.906667pt;}
.y3c{bottom:104.506667pt;}
.y28{bottom:110.266667pt;}
.y56{bottom:110.592000pt;}
.y89{bottom:118.752000pt;}
.y3b{bottom:121.466667pt;}
.y27{bottom:125.626667pt;}
.y55{bottom:128.992000pt;}
.y88{bottom:137.146667pt;}
.y3a{bottom:138.266667pt;}
.y26{bottom:140.986667pt;}
.y54{bottom:147.386667pt;}
.y39{bottom:155.066667pt;}
.y87{bottom:155.546667pt;}
.y25{bottom:156.346667pt;}
.y53{bottom:165.786667pt;}
.y24{bottom:171.546667pt;}
.y38{bottom:172.026667pt;}
.y86{bottom:173.946667pt;}
.y52{bottom:184.186667pt;}
.y23{bottom:186.906667pt;}
.y37{bottom:188.826667pt;}
.y85{bottom:192.346667pt;}
.y22{bottom:202.266667pt;}
.y51{bottom:202.586667pt;}
.y36{bottom:205.786667pt;}
.y84{bottom:210.746667pt;}
.y21{bottom:217.626667pt;}
.y50{bottom:220.986667pt;}
.y35{bottom:222.586667pt;}
.y83{bottom:229.146667pt;}
.y20{bottom:232.986667pt;}
.y34{bottom:239.386667pt;}
.y82{bottom:247.546667pt;}
.y1f{bottom:248.346667pt;}
.y33{bottom:256.346667pt;}
.y4f{bottom:257.786667pt;}
.y1e{bottom:263.546667pt;}
.y81{bottom:265.946667pt;}
.y4e{bottom:276.186667pt;}
.y1d{bottom:278.906667pt;}
.y80{bottom:284.346667pt;}
.y1c{bottom:294.266667pt;}
.y4d{bottom:294.586667pt;}
.y7f{bottom:302.746667pt;}
.y1b{bottom:309.666667pt;}
.y4c{bottom:312.986667pt;}
.y7e{bottom:321.146667pt;}
.y1a{bottom:325.026667pt;}
.y4b{bottom:331.386667pt;}
.y7d{bottom:339.586667pt;}
.y4a{bottom:349.826667pt;}
.y7c{bottom:357.986667pt;}
.y49{bottom:368.226667pt;}
.y7b{bottom:376.386667pt;}
.yab{bottom:377.506667pt;}
.y48{bottom:386.626667pt;}
.yaa{bottom:394.466667pt;}
.y7a{bottom:394.626667pt;}
.y47{bottom:405.026667pt;}
.ya9{bottom:411.266667pt;}
.y79{bottom:413.026667pt;}
.y46{bottom:423.426667pt;}
.ya8{bottom:428.226667pt;}
.y78{bottom:431.426667pt;}
.y45{bottom:441.826667pt;}
.ya7{bottom:445.026667pt;}
.y77{bottom:449.826667pt;}
.y41{bottom:457.346667pt;}
.ya6{bottom:461.986667pt;}
.y76{bottom:468.226667pt;}
.y19{bottom:478.786667pt;}
.y75{bottom:486.626667pt;}
.ya5{bottom:495.586667pt;}
.y74{bottom:505.026667pt;}
.ya4{bottom:512.546667pt;}
.y73{bottom:523.426667pt;}
.ya3{bottom:529.346667pt;}
.y72{bottom:541.826667pt;}
.ya2{bottom:546.306667pt;}
.y71{bottom:560.226667pt;}
.ya1{bottom:563.133333pt;}
.y70{bottom:578.653333pt;}
.ya0{bottom:579.933333pt;}
.y9f{bottom:596.893333pt;}
.y6f{bottom:597.053333pt;}
.y9e{bottom:613.693333pt;}
.y6e{bottom:615.453333pt;}
.y9d{bottom:630.653333pt;}
.y6d{bottom:633.853333pt;}
.y9c{bottom:647.453333pt;}
.y6c{bottom:652.253333pt;}
.y9b{bottom:664.253333pt;}
.y6b{bottom:670.653333pt;}
.y9a{bottom:681.213333pt;}
.y6a{bottom:689.053333pt;}
.y99{bottom:698.013333pt;}
.y69{bottom:707.453333pt;}
.y98{bottom:714.973333pt;}
.y68{bottom:725.853333pt;}
.y97{bottom:731.773333pt;}
.y67{bottom:744.253333pt;}
.y96{bottom:748.573333pt;}
.y32{bottom:748.733333pt;}
.y66{bottom:762.653333pt;}
.y31{bottom:765.533333pt;}
.y65{bottom:781.053333pt;}
.y95{bottom:782.333333pt;}
.y30{bottom:782.493333pt;}
.y17{bottom:799.333333pt;}
.y64{bottom:799.493333pt;}
.y94{bottom:816.133333pt;}
.y12{bottom:816.293333pt;}
.y63{bottom:817.893333pt;}
.y93{bottom:833.093333pt;}
.y62{bottom:836.293333pt;}
.y92{bottom:849.893333pt;}
.y11{bottom:853.893333pt;}
.y61{bottom:854.693333pt;}
.y91{bottom:866.693333pt;}
.y10{bottom:870.693333pt;}
.y60{bottom:873.093333pt;}
.y90{bottom:883.653333pt;}
.yf{bottom:887.653333pt;}
.y5f{bottom:891.493333pt;}
.y8f{bottom:900.453333pt;}
.yd{bottom:904.773333pt;}
.y5e{bottom:909.893333pt;}
.ye{bottom:910.053333pt;}
.y8e{bottom:917.413333pt;}
.yc{bottom:923.173333pt;}
.y5d{bottom:928.293333pt;}
.y8d{bottom:934.213333pt;}
.yb{bottom:942.053333pt;}
.y5c{bottom:946.693333pt;}
.y8c{bottom:951.013333pt;}
.ya{bottom:963.493333pt;}
.y5b{bottom:965.093333pt;}
.y8b{bottom:967.973333pt;}
.y5a{bottom:983.493333pt;}
.y8a{bottom:984.773333pt;}
.y9{bottom:984.933333pt;}
.y59{bottom:1001.893333pt;}
.y5{bottom:1005.733333pt;}
.y1{bottom:1019.360000pt;}
.y58{bottom:1060.800000pt;}
.y57{bottom:1074.560000pt;}
.h17{height:3.575000pt;}
.h12{height:16.800000pt;}
.h11{height:16.832000pt;}
.he{height:16.960000pt;}
.h15{height:21.440000pt;}
.h16{height:24.131250pt;}
.h8{height:30.254687pt;}
.hb{height:33.600000pt;}
.h18{height:35.085938pt;}
.h10{height:37.090625pt;}
.hd{height:37.479688pt;}
.h5{height:41.112500pt;}
.ha{height:41.543750pt;}
.hc{height:42.521250pt;}
.h14{height:43.038750pt;}
.h1a{height:44.687500pt;}
.h7{height:45.156250pt;}
.h19{height:46.593750pt;}
.h1b{height:46.781250pt;}
.h9{height:47.038750pt;}
.h4{height:49.622500pt;}
.h6{height:52.832812pt;}
.h2{height:56.000000pt;}
.h3{height:72.069375pt;}
.h13{height:269.946667pt;}
.hf{height:337.506667pt;}
.h1{height:1123.333333pt;}
.h0{height:1123.360000pt;}
.w5{width:193.466667pt;}
.w3{width:232.866667pt;}
.w6{width:343.906667pt;}
.w2{width:374.306667pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x13{left:3.520000pt;}
.x2{left:7.200000pt;}
.x1{left:106.592000pt;}
.x7{left:110.911988pt;}
.x12{left:116.032000pt;}
.x5{left:130.431988pt;}
.x6{left:132.511988pt;}
.x17{left:142.586655pt;}
.x18{left:144.346655pt;}
.x15{left:187.234667pt;}
.x10{left:191.546655pt;}
.x11{left:229.026655pt;}
.x9{left:291.906655pt;}
.x14{left:309.506667pt;}
.x16{left:345.026667pt;}
.xa{left:374.013321pt;}
.xb{left:379.293321pt;}
.x4{left:389.693321pt;}
.x8{left:397.693321pt;}
.xc{left:432.413321pt;}
.xd{left:437.533321pt;}
.x3{left:480.893333pt;}
.xe{left:498.173321pt;}
.xf{left:503.293321pt;}
}




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