
    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_d75f6b3a1fa07fcaad9f9ee7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ae39f4f56f351faf1658c6e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_04ef38f112024c3f9f383f0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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;}
.ls1{letter-spacing:-0.432000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.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;}
}
.ws2{word-spacing:-20.160000px;}
.ws1{word-spacing:-20.016000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.044000px;}
._1{width:1.440000px;}
._2{width:2.664000px;}
._9{width:3.888000px;}
._a{width:4.896000px;}
._5{width:6.480000px;}
._6{width:7.488000px;}
._3{width:9.144000px;}
._4{width:10.440000px;}
._7{width:11.448000px;}
._8{width:13.296000px;}
._14{width:14.316000px;}
._c{width:15.552000px;}
._b{width:16.776000px;}
._21{width:17.928000px;}
._d{width:18.936000px;}
._13{width:21.024000px;}
._12{width:22.752000px;}
._f{width:24.552000px;}
._e{width:25.632000px;}
._16{width:26.712000px;}
._18{width:28.176000px;}
._17{width:29.232000px;}
._22{width:30.648000px;}
._1b{width:33.624000px;}
._11{width:34.632000px;}
._10{width:36.144000px;}
._1c{width:37.584000px;}
._1a{width:39.672000px;}
._19{width:40.968000px;}
._15{width:42.024000px;}
._23{width:44.892000px;}
._1e{width:46.620000px;}
._1d{width:48.312000px;}
._20{width:55.944000px;}
._1f{width:57.600000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:112.356000px;}
.y54{bottom:123.876000px;}
.y73{bottom:124.236000px;}
.y27{bottom:133.056000px;}
.y53{bottom:144.576000px;}
.y72{bottom:144.936000px;}
.y26{bottom:153.750000px;}
.y52{bottom:165.270000px;}
.y71{bottom:165.630000px;}
.y99{bottom:166.710000px;}
.y25{bottom:174.450000px;}
.ybd{bottom:185.970000px;}
.y70{bottom:186.330000px;}
.y98{bottom:187.410000px;}
.y24{bottom:195.150000px;}
.ybc{bottom:206.670000px;}
.y51{bottom:207.030000px;}
.y97{bottom:208.110000px;}
.y23{bottom:215.850000px;}
.ybb{bottom:227.370000px;}
.y50{bottom:227.730000px;}
.y96{bottom:228.810000px;}
.y22{bottom:236.550000px;}
.yba{bottom:248.070000px;}
.y4f{bottom:248.430000px;}
.y6f{bottom:248.610000px;}
.y95{bottom:249.510000px;}
.y21{bottom:257.250000px;}
.yb9{bottom:268.770000px;}
.y4e{bottom:269.130000px;}
.y6e{bottom:269.310000px;}
.y94{bottom:270.210000px;}
.y20{bottom:277.950000px;}
.yb8{bottom:289.470000px;}
.y4d{bottom:289.830000px;}
.y6d{bottom:290.010000px;}
.yb7{bottom:310.170000px;}
.y4c{bottom:310.530000px;}
.y6c{bottom:310.710000px;}
.y93{bottom:311.970000px;}
.y1f{bottom:319.890000px;}
.yb6{bottom:330.870000px;}
.y4b{bottom:331.230000px;}
.y6b{bottom:331.410000px;}
.y92{bottom:332.670000px;}
.y1e{bottom:340.590000px;}
.yb5{bottom:351.615000px;}
.y4a{bottom:351.975000px;}
.y6a{bottom:352.155000px;}
.y91{bottom:353.415000px;}
.y1d{bottom:361.335000px;}
.yb4{bottom:372.315000px;}
.y49{bottom:372.675000px;}
.y69{bottom:372.855000px;}
.y90{bottom:374.115000px;}
.y1c{bottom:382.035000px;}
.yb3{bottom:393.015000px;}
.y48{bottom:393.375000px;}
.y68{bottom:393.555000px;}
.y8f{bottom:394.815000px;}
.y1b{bottom:402.735000px;}
.yb2{bottom:413.715000px;}
.y47{bottom:414.075000px;}
.y8e{bottom:415.515000px;}
.y1a{bottom:423.435000px;}
.yb1{bottom:434.415000px;}
.y46{bottom:434.775000px;}
.y67{bottom:435.315000px;}
.y8d{bottom:436.215000px;}
.y19{bottom:444.135000px;}
.y66{bottom:456.015000px;}
.y8c{bottom:456.915000px;}
.yb0{bottom:476.175000px;}
.y45{bottom:476.355000px;}
.y65{bottom:476.715000px;}
.y8b{bottom:477.615000px;}
.y18{bottom:485.895000px;}
.yaf{bottom:496.875000px;}
.y44{bottom:497.055000px;}
.y64{bottom:497.415000px;}
.y8a{bottom:498.315000px;}
.y17{bottom:506.595000px;}
.yae{bottom:517.395000px;}
.y43{bottom:517.755000px;}
.y89{bottom:519.015000px;}
.yad{bottom:538.095000px;}
.y42{bottom:538.455000px;}
.y63{bottom:539.175000px;}
.y88{bottom:539.715000px;}
.y16{bottom:548.355000px;}
.yac{bottom:558.795000px;}
.y62{bottom:559.875000px;}
.y87{bottom:560.415000px;}
.yab{bottom:579.495000px;}
.y41{bottom:580.215000px;}
.y61{bottom:580.395000px;}
.y86{bottom:581.115000px;}
.y15{bottom:589.935000px;}
.yaa{bottom:600.195000px;}
.y40{bottom:600.915000px;}
.y60{bottom:601.095000px;}
.y85{bottom:601.815000px;}
.y3f{bottom:621.645000px;}
.y5f{bottom:621.825000px;}
.y84{bottom:622.545000px;}
.y14{bottom:631.725000px;}
.ya9{bottom:641.985000px;}
.y3e{bottom:642.345000px;}
.y5e{bottom:642.525000px;}
.y83{bottom:643.245000px;}
.y13{bottom:652.425000px;}
.ya8{bottom:662.685000px;}
.y3d{bottom:663.045000px;}
.y5d{bottom:663.225000px;}
.y82{bottom:663.945000px;}
.y12{bottom:673.125000px;}
.ya7{bottom:683.385000px;}
.y3c{bottom:683.745000px;}
.y5c{bottom:683.925000px;}
.y81{bottom:684.645000px;}
.y11{bottom:693.825000px;}
.y3b{bottom:704.445000px;}
.y5b{bottom:704.625000px;}
.y80{bottom:705.345000px;}
.y10{bottom:714.525000px;}
.ya6{bottom:725.145000px;}
.y5a{bottom:725.325000px;}
.y7f{bottom:726.045000px;}
.yf{bottom:735.225000px;}
.ya5{bottom:745.845000px;}
.y3a{bottom:746.025000px;}
.y7e{bottom:746.745000px;}
.ye{bottom:755.925000px;}
.ya4{bottom:766.545000px;}
.y39{bottom:766.725000px;}
.y59{bottom:767.085000px;}
.y7d{bottom:767.445000px;}
.ya3{bottom:787.245000px;}
.y38{bottom:787.425000px;}
.y58{bottom:787.785000px;}
.y7c{bottom:788.145000px;}
.yd{bottom:797.685000px;}
.ya2{bottom:807.945000px;}
.y37{bottom:808.125000px;}
.y57{bottom:808.485000px;}
.y7b{bottom:808.845000px;}
.yc{bottom:818.385000px;}
.ya1{bottom:828.645000px;}
.y36{bottom:828.825000px;}
.y56{bottom:829.185000px;}
.y7a{bottom:829.545000px;}
.yb{bottom:839.085000px;}
.y55{bottom:849.885000px;}
.y79{bottom:850.245000px;}
.ya{bottom:859.785000px;}
.ya0{bottom:870.270000px;}
.yc2{bottom:870.450000px;}
.y35{bottom:870.630000px;}
.y78{bottom:870.990000px;}
.y9{bottom:880.350000px;}
.y9f{bottom:890.970000px;}
.y34{bottom:891.330000px;}
.y77{bottom:891.690000px;}
.y8{bottom:901.050000px;}
.yc1{bottom:907.710000px;}
.y9e{bottom:911.670000px;}
.y33{bottom:912.030000px;}
.y76{bottom:912.390000px;}
.y7{bottom:921.750000px;}
.y32{bottom:932.730000px;}
.y75{bottom:933.090000px;}
.y6{bottom:942.450000px;}
.y9d{bottom:953.430000px;}
.y74{bottom:953.790000px;}
.y5{bottom:963.150000px;}
.y9c{bottom:974.130000px;}
.y31{bottom:974.490000px;}
.y9b{bottom:994.830000px;}
.y30{bottom:995.190000px;}
.y4{bottom:1004.910000px;}
.y9a{bottom:1015.530000px;}
.y2f{bottom:1015.890000px;}
.yc0{bottom:1036.230000px;}
.y2e{bottom:1036.590000px;}
.y3{bottom:1046.670000px;}
.ybf{bottom:1056.930000px;}
.y2d{bottom:1057.290000px;}
.ybe{bottom:1077.630000px;}
.y2c{bottom:1077.990000px;}
.y2{bottom:1088.250000px;}
.y2b{bottom:1098.690000px;}
.y2a{bottom:1119.390000px;}
.y1{bottom:1132.200000px;}
.y29{bottom:1140.120000px;}
.h5{height:45.184219px;}
.h3{height:70.664062px;}
.h4{height:75.093750px;}
.h2{height:105.996094px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.656000px;}
.x1{left:131.256000px;}
.x3{left:363.495000px;}
.x2{left:369.615000px;}
.x5{left:465.405000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.384000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ws2{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-0.928000pt;}
._1{width:1.280000pt;}
._2{width:2.368000pt;}
._9{width:3.456000pt;}
._a{width:4.352000pt;}
._5{width:5.760000pt;}
._6{width:6.656000pt;}
._3{width:8.128000pt;}
._4{width:9.280000pt;}
._7{width:10.176000pt;}
._8{width:11.818667pt;}
._14{width:12.725333pt;}
._c{width:13.824000pt;}
._b{width:14.912000pt;}
._21{width:15.936000pt;}
._d{width:16.832000pt;}
._13{width:18.688000pt;}
._12{width:20.224000pt;}
._f{width:21.824000pt;}
._e{width:22.784000pt;}
._16{width:23.744000pt;}
._18{width:25.045333pt;}
._17{width:25.984000pt;}
._22{width:27.242667pt;}
._1b{width:29.888000pt;}
._11{width:30.784000pt;}
._10{width:32.128000pt;}
._1c{width:33.408000pt;}
._1a{width:35.264000pt;}
._19{width:36.416000pt;}
._15{width:37.354667pt;}
._23{width:39.904000pt;}
._1e{width:41.440000pt;}
._1d{width:42.944000pt;}
._20{width:49.728000pt;}
._1f{width:51.200000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:99.872000pt;}
.y54{bottom:110.112000pt;}
.y73{bottom:110.432000pt;}
.y27{bottom:118.272000pt;}
.y53{bottom:128.512000pt;}
.y72{bottom:128.832000pt;}
.y26{bottom:136.666667pt;}
.y52{bottom:146.906667pt;}
.y71{bottom:147.226667pt;}
.y99{bottom:148.186667pt;}
.y25{bottom:155.066667pt;}
.ybd{bottom:165.306667pt;}
.y70{bottom:165.626667pt;}
.y98{bottom:166.586667pt;}
.y24{bottom:173.466667pt;}
.ybc{bottom:183.706667pt;}
.y51{bottom:184.026667pt;}
.y97{bottom:184.986667pt;}
.y23{bottom:191.866667pt;}
.ybb{bottom:202.106667pt;}
.y50{bottom:202.426667pt;}
.y96{bottom:203.386667pt;}
.y22{bottom:210.266667pt;}
.yba{bottom:220.506667pt;}
.y4f{bottom:220.826667pt;}
.y6f{bottom:220.986667pt;}
.y95{bottom:221.786667pt;}
.y21{bottom:228.666667pt;}
.yb9{bottom:238.906667pt;}
.y4e{bottom:239.226667pt;}
.y6e{bottom:239.386667pt;}
.y94{bottom:240.186667pt;}
.y20{bottom:247.066667pt;}
.yb8{bottom:257.306667pt;}
.y4d{bottom:257.626667pt;}
.y6d{bottom:257.786667pt;}
.yb7{bottom:275.706667pt;}
.y4c{bottom:276.026667pt;}
.y6c{bottom:276.186667pt;}
.y93{bottom:277.306667pt;}
.y1f{bottom:284.346667pt;}
.yb6{bottom:294.106667pt;}
.y4b{bottom:294.426667pt;}
.y6b{bottom:294.586667pt;}
.y92{bottom:295.706667pt;}
.y1e{bottom:302.746667pt;}
.yb5{bottom:312.546667pt;}
.y4a{bottom:312.866667pt;}
.y6a{bottom:313.026667pt;}
.y91{bottom:314.146667pt;}
.y1d{bottom:321.186667pt;}
.yb4{bottom:330.946667pt;}
.y49{bottom:331.266667pt;}
.y69{bottom:331.426667pt;}
.y90{bottom:332.546667pt;}
.y1c{bottom:339.586667pt;}
.yb3{bottom:349.346667pt;}
.y48{bottom:349.666667pt;}
.y68{bottom:349.826667pt;}
.y8f{bottom:350.946667pt;}
.y1b{bottom:357.986667pt;}
.yb2{bottom:367.746667pt;}
.y47{bottom:368.066667pt;}
.y8e{bottom:369.346667pt;}
.y1a{bottom:376.386667pt;}
.yb1{bottom:386.146667pt;}
.y46{bottom:386.466667pt;}
.y67{bottom:386.946667pt;}
.y8d{bottom:387.746667pt;}
.y19{bottom:394.786667pt;}
.y66{bottom:405.346667pt;}
.y8c{bottom:406.146667pt;}
.yb0{bottom:423.266667pt;}
.y45{bottom:423.426667pt;}
.y65{bottom:423.746667pt;}
.y8b{bottom:424.546667pt;}
.y18{bottom:431.906667pt;}
.yaf{bottom:441.666667pt;}
.y44{bottom:441.826667pt;}
.y64{bottom:442.146667pt;}
.y8a{bottom:442.946667pt;}
.y17{bottom:450.306667pt;}
.yae{bottom:459.906667pt;}
.y43{bottom:460.226667pt;}
.y89{bottom:461.346667pt;}
.yad{bottom:478.306667pt;}
.y42{bottom:478.626667pt;}
.y63{bottom:479.266667pt;}
.y88{bottom:479.746667pt;}
.y16{bottom:487.426667pt;}
.yac{bottom:496.706667pt;}
.y62{bottom:497.666667pt;}
.y87{bottom:498.146667pt;}
.yab{bottom:515.106667pt;}
.y41{bottom:515.746667pt;}
.y61{bottom:515.906667pt;}
.y86{bottom:516.546667pt;}
.y15{bottom:524.386667pt;}
.yaa{bottom:533.506667pt;}
.y40{bottom:534.146667pt;}
.y60{bottom:534.306667pt;}
.y85{bottom:534.946667pt;}
.y3f{bottom:552.573333pt;}
.y5f{bottom:552.733333pt;}
.y84{bottom:553.373333pt;}
.y14{bottom:561.533333pt;}
.ya9{bottom:570.653333pt;}
.y3e{bottom:570.973333pt;}
.y5e{bottom:571.133333pt;}
.y83{bottom:571.773333pt;}
.y13{bottom:579.933333pt;}
.ya8{bottom:589.053333pt;}
.y3d{bottom:589.373333pt;}
.y5d{bottom:589.533333pt;}
.y82{bottom:590.173333pt;}
.y12{bottom:598.333333pt;}
.ya7{bottom:607.453333pt;}
.y3c{bottom:607.773333pt;}
.y5c{bottom:607.933333pt;}
.y81{bottom:608.573333pt;}
.y11{bottom:616.733333pt;}
.y3b{bottom:626.173333pt;}
.y5b{bottom:626.333333pt;}
.y80{bottom:626.973333pt;}
.y10{bottom:635.133333pt;}
.ya6{bottom:644.573333pt;}
.y5a{bottom:644.733333pt;}
.y7f{bottom:645.373333pt;}
.yf{bottom:653.533333pt;}
.ya5{bottom:662.973333pt;}
.y3a{bottom:663.133333pt;}
.y7e{bottom:663.773333pt;}
.ye{bottom:671.933333pt;}
.ya4{bottom:681.373333pt;}
.y39{bottom:681.533333pt;}
.y59{bottom:681.853333pt;}
.y7d{bottom:682.173333pt;}
.ya3{bottom:699.773333pt;}
.y38{bottom:699.933333pt;}
.y58{bottom:700.253333pt;}
.y7c{bottom:700.573333pt;}
.yd{bottom:709.053333pt;}
.ya2{bottom:718.173333pt;}
.y37{bottom:718.333333pt;}
.y57{bottom:718.653333pt;}
.y7b{bottom:718.973333pt;}
.yc{bottom:727.453333pt;}
.ya1{bottom:736.573333pt;}
.y36{bottom:736.733333pt;}
.y56{bottom:737.053333pt;}
.y7a{bottom:737.373333pt;}
.yb{bottom:745.853333pt;}
.y55{bottom:755.453333pt;}
.y79{bottom:755.773333pt;}
.ya{bottom:764.253333pt;}
.ya0{bottom:773.573333pt;}
.yc2{bottom:773.733333pt;}
.y35{bottom:773.893333pt;}
.y78{bottom:774.213333pt;}
.y9{bottom:782.533333pt;}
.y9f{bottom:791.973333pt;}
.y34{bottom:792.293333pt;}
.y77{bottom:792.613333pt;}
.y8{bottom:800.933333pt;}
.yc1{bottom:806.853333pt;}
.y9e{bottom:810.373333pt;}
.y33{bottom:810.693333pt;}
.y76{bottom:811.013333pt;}
.y7{bottom:819.333333pt;}
.y32{bottom:829.093333pt;}
.y75{bottom:829.413333pt;}
.y6{bottom:837.733333pt;}
.y9d{bottom:847.493333pt;}
.y74{bottom:847.813333pt;}
.y5{bottom:856.133333pt;}
.y9c{bottom:865.893333pt;}
.y31{bottom:866.213333pt;}
.y9b{bottom:884.293333pt;}
.y30{bottom:884.613333pt;}
.y4{bottom:893.253333pt;}
.y9a{bottom:902.693333pt;}
.y2f{bottom:903.013333pt;}
.yc0{bottom:921.093333pt;}
.y2e{bottom:921.413333pt;}
.y3{bottom:930.373333pt;}
.ybf{bottom:939.493333pt;}
.y2d{bottom:939.813333pt;}
.ybe{bottom:957.893333pt;}
.y2c{bottom:958.213333pt;}
.y2{bottom:967.333333pt;}
.y2b{bottom:976.613333pt;}
.y2a{bottom:995.013333pt;}
.y1{bottom:1006.400000pt;}
.y29{bottom:1013.440000pt;}
.h5{height:40.163750pt;}
.h3{height:62.812500pt;}
.h4{height:66.750000pt;}
.h2{height:94.218750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.472000pt;}
.x1{left:116.672000pt;}
.x3{left:323.106667pt;}
.x2{left:328.546667pt;}
.x5{left:413.693333pt;}
}




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