
    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_9d77abefd90392af9f2d665a.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_9f3622a86be89cc8574cb7d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_3c7b330f545a53418e85455e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_e14d497f6c85cf98c2009daf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5f4f1f32fc9fef085692bea2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.192000px;}
.ls9{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.264000px;}
.lsd{letter-spacing:0.360000px;}
.lsa{letter-spacing:6.480000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.640000px;}
.ws9{word-spacing:-11.970000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-4.392000px;}
._8{margin-left:-3.312000px;}
._7{margin-left:-2.232000px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._a{width:2.376000px;}
._c{width:4.248000px;}
._11{width:5.568000px;}
._2{width:7.200000px;}
._3{width:8.256000px;}
._d{width:9.600000px;}
._e{width:11.448000px;}
._b{width:13.248000px;}
._6{width:14.544000px;}
._10{width:15.696000px;}
._f{width:16.752000px;}
._14{width:19.056000px;}
._13{width:20.088000px;}
._18{width:21.432000px;}
._5{width:23.064000px;}
._4{width:24.120000px;}
._12{width:25.128000px;}
._15{width:26.832000px;}
._16{width:27.864000px;}
._17{width:28.944000px;}
._1a{width:30.624000px;}
._19{width:31.680000px;}
._1d{width:32.976000px;}
._1c{width:42.432000px;}
._1b{width:43.464000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:89.640000px;}
.y2{bottom:110.340000px;}
.y1{bottom:131.040000px;}
.y8b{bottom:157.590000px;}
.y98{bottom:163.530000px;}
.y61{bottom:169.560000px;}
.y75{bottom:175.590000px;}
.y97{bottom:180.990000px;}
.y77{bottom:184.770000px;}
.y6c{bottom:187.560000px;}
.y3f{bottom:192.960000px;}
.y8a{bottom:198.990000px;}
.y8d{bottom:204.930000px;}
.y89{bottom:208.260000px;}
.y60{bottom:210.960000px;}
.y74{bottom:216.990000px;}
.y4b{bottom:222.390000px;}
.y76{bottom:228.720000px;}
.y6b{bottom:228.990000px;}
.y1e{bottom:232.500000px;}
.y3e{bottom:234.390000px;}
.y30{bottom:243.120000px;}
.y8c{bottom:246.360000px;}
.y88{bottom:249.690000px;}
.y5f{bottom:252.390000px;}
.y73{bottom:258.420000px;}
.y4a{bottom:263.820000px;}
.y6a{bottom:270.390000px;}
.y1d{bottom:273.900000px;}
.y9a{bottom:275.790000px;}
.y2f{bottom:284.520000px;}
.y3d{bottom:287.760000px;}
.y87{bottom:291.090000px;}
.y5e{bottom:293.790000px;}
.y72{bottom:299.820000px;}
.y96{bottom:305.220000px;}
.y69{bottom:311.790000px;}
.y1c{bottom:315.300000px;}
.y99{bottom:317.190000px;}
.y49{bottom:323.220000px;}
.y2e{bottom:325.920000px;}
.y3c{bottom:329.160000px;}
.y86{bottom:332.490000px;}
.y5d{bottom:335.190000px;}
.y71{bottom:341.220000px;}
.y68{bottom:353.190000px;}
.y95{bottom:358.590000px;}
.y48{bottom:364.620000px;}
.y2d{bottom:367.320000px;}
.y1b{bottom:368.760000px;}
.y3b{bottom:370.560000px;}
.y85{bottom:373.890000px;}
.y5c{bottom:376.590000px;}
.y70{bottom:382.620000px;}
.y67{bottom:394.590000px;}
.y94{bottom:399.990000px;}
.y47{bottom:405.930000px;}
.y2c{bottom:408.630000px;}
.y1a{bottom:410.160000px;}
.y3a{bottom:411.960000px;}
.y84{bottom:415.290000px;}
.y5b{bottom:417.990000px;}
.y6f{bottom:423.930000px;}
.y66{bottom:435.990000px;}
.y93{bottom:441.390000px;}
.y46{bottom:447.330000px;}
.y2b{bottom:450.030000px;}
.y19{bottom:451.560000px;}
.y39{bottom:453.360000px;}
.y83{bottom:456.690000px;}
.y5a{bottom:459.390000px;}
.y6e{bottom:465.330000px;}
.y65{bottom:477.390000px;}
.y92{bottom:482.790000px;}
.y45{bottom:488.730000px;}
.y2a{bottom:491.430000px;}
.y18{bottom:492.960000px;}
.y38{bottom:494.760000px;}
.y82{bottom:498.090000px;}
.y59{bottom:500.790000px;}
.y6d{bottom:506.730000px;}
.y9f{bottom:515.460000px;}
.y64{bottom:518.790000px;}
.y91{bottom:524.190000px;}
.y29{bottom:532.830000px;}
.y17{bottom:534.360000px;}
.y81{bottom:539.490000px;}
.y58{bottom:542.190000px;}
.y37{bottom:548.130000px;}
.y63{bottom:560.190000px;}
.y28{bottom:574.230000px;}
.y16{bottom:575.670000px;}
.y90{bottom:577.560000px;}
.y80{bottom:580.890000px;}
.y57{bottom:583.590000px;}
.y36{bottom:589.530000px;}
.y62{bottom:601.590000px;}
.y27{bottom:615.630000px;}
.y15{bottom:617.070000px;}
.y7f{bottom:622.290000px;}
.y56{bottom:624.990000px;}
.y35{bottom:630.930000px;}
.y44{bottom:642.990000px;}
.y14{bottom:652.920000px;}
.y7e{bottom:663.720000px;}
.y55{bottom:666.420000px;}
.y26{bottom:669.120000px;}
.y34{bottom:672.360000px;}
.y43{bottom:684.420000px;}
.y13{bottom:688.740000px;}
.y7d{bottom:705.120000px;}
.y54{bottom:707.820000px;}
.y12{bottom:712.590000px;}
.y33{bottom:713.760000px;}
.y25{bottom:722.490000px;}
.y42{bottom:725.820000px;}
.y24{bottom:743.190000px;}
.y7c{bottom:746.520000px;}
.y11{bottom:748.320000px;}
.y53{bottom:749.220000px;}
.y32{bottom:755.160000px;}
.y41{bottom:767.220000px;}
.y10{bottom:772.170000px;}
.y7b{bottom:787.830000px;}
.y9e{bottom:787.920000px;}
.y52{bottom:790.530000px;}
.y23{bottom:796.560000px;}
.yf{bottom:807.990000px;}
.y40{bottom:808.530000px;}
.y7a{bottom:829.230000px;}
.ye{bottom:831.750000px;}
.y51{bottom:831.930000px;}
.y22{bottom:837.960000px;}
.y31{bottom:849.930000px;}
.yd{bottom:867.570000px;}
.y79{bottom:870.630000px;}
.y50{bottom:873.330000px;}
.y21{bottom:879.360000px;}
.yc{bottom:891.330000px;}
.y78{bottom:912.030000px;}
.y4f{bottom:914.730000px;}
.y20{bottom:920.760000px;}
.yb{bottom:932.730000px;}
.y9d{bottom:953.430000px;}
.y4e{bottom:956.130000px;}
.y1f{bottom:962.160000px;}
.ya{bottom:974.130000px;}
.y9c{bottom:994.830000px;}
.y4d{bottom:997.530000px;}
.y8f{bottom:1003.560000px;}
.y9{bottom:1015.530000px;}
.y9b{bottom:1036.230000px;}
.y4c{bottom:1038.930000px;}
.y8e{bottom:1044.960000px;}
.y8{bottom:1056.930000px;}
.y7{bottom:1077.660000px;}
.y6{bottom:1098.360000px;}
.y5{bottom:1119.060000px;}
.y4{bottom:1139.760000px;}
.h4{height:64.546875px;}
.h5{height:70.628906px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.379987px;}
.x4{left:160.409987px;}
.x3{left:437.549987px;}
.x1{left:442.049987px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.170667pt;}
.ls9{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.234667pt;}
.lsd{letter-spacing:0.320000pt;}
.lsa{letter-spacing:5.760000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.680000pt;}
.ws9{word-spacing:-10.640000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-3.904000pt;}
._8{margin-left:-2.944000pt;}
._7{margin-left:-1.984000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._a{width:2.112000pt;}
._c{width:3.776000pt;}
._11{width:4.949333pt;}
._2{width:6.400000pt;}
._3{width:7.338667pt;}
._d{width:8.533333pt;}
._e{width:10.176000pt;}
._b{width:11.776000pt;}
._6{width:12.928000pt;}
._10{width:13.952000pt;}
._f{width:14.890667pt;}
._14{width:16.938667pt;}
._13{width:17.856000pt;}
._18{width:19.050667pt;}
._5{width:20.501333pt;}
._4{width:21.440000pt;}
._12{width:22.336000pt;}
._15{width:23.850667pt;}
._16{width:24.768000pt;}
._17{width:25.728000pt;}
._1a{width:27.221333pt;}
._19{width:28.160000pt;}
._1d{width:29.312000pt;}
._1c{width:37.717333pt;}
._1b{width:38.634667pt;}
.fs1{font-size:42.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:79.680000pt;}
.y2{bottom:98.080000pt;}
.y1{bottom:116.480000pt;}
.y8b{bottom:140.080000pt;}
.y98{bottom:145.360000pt;}
.y61{bottom:150.720000pt;}
.y75{bottom:156.080000pt;}
.y97{bottom:160.880000pt;}
.y77{bottom:164.240000pt;}
.y6c{bottom:166.720000pt;}
.y3f{bottom:171.520000pt;}
.y8a{bottom:176.880000pt;}
.y8d{bottom:182.160000pt;}
.y89{bottom:185.120000pt;}
.y60{bottom:187.520000pt;}
.y74{bottom:192.880000pt;}
.y4b{bottom:197.680000pt;}
.y76{bottom:203.306667pt;}
.y6b{bottom:203.546667pt;}
.y1e{bottom:206.666667pt;}
.y3e{bottom:208.346667pt;}
.y30{bottom:216.106667pt;}
.y8c{bottom:218.986667pt;}
.y88{bottom:221.946667pt;}
.y5f{bottom:224.346667pt;}
.y73{bottom:229.706667pt;}
.y4a{bottom:234.506667pt;}
.y6a{bottom:240.346667pt;}
.y1d{bottom:243.466667pt;}
.y9a{bottom:245.146667pt;}
.y2f{bottom:252.906667pt;}
.y3d{bottom:255.786667pt;}
.y87{bottom:258.746667pt;}
.y5e{bottom:261.146667pt;}
.y72{bottom:266.506667pt;}
.y96{bottom:271.306667pt;}
.y69{bottom:277.146667pt;}
.y1c{bottom:280.266667pt;}
.y99{bottom:281.946667pt;}
.y49{bottom:287.306667pt;}
.y2e{bottom:289.706667pt;}
.y3c{bottom:292.586667pt;}
.y86{bottom:295.546667pt;}
.y5d{bottom:297.946667pt;}
.y71{bottom:303.306667pt;}
.y68{bottom:313.946667pt;}
.y95{bottom:318.746667pt;}
.y48{bottom:324.106667pt;}
.y2d{bottom:326.506667pt;}
.y1b{bottom:327.786667pt;}
.y3b{bottom:329.386667pt;}
.y85{bottom:332.346667pt;}
.y5c{bottom:334.746667pt;}
.y70{bottom:340.106667pt;}
.y67{bottom:350.746667pt;}
.y94{bottom:355.546667pt;}
.y47{bottom:360.826667pt;}
.y2c{bottom:363.226667pt;}
.y1a{bottom:364.586667pt;}
.y3a{bottom:366.186667pt;}
.y84{bottom:369.146667pt;}
.y5b{bottom:371.546667pt;}
.y6f{bottom:376.826667pt;}
.y66{bottom:387.546667pt;}
.y93{bottom:392.346667pt;}
.y46{bottom:397.626667pt;}
.y2b{bottom:400.026667pt;}
.y19{bottom:401.386667pt;}
.y39{bottom:402.986667pt;}
.y83{bottom:405.946667pt;}
.y5a{bottom:408.346667pt;}
.y6e{bottom:413.626667pt;}
.y65{bottom:424.346667pt;}
.y92{bottom:429.146667pt;}
.y45{bottom:434.426667pt;}
.y2a{bottom:436.826667pt;}
.y18{bottom:438.186667pt;}
.y38{bottom:439.786667pt;}
.y82{bottom:442.746667pt;}
.y59{bottom:445.146667pt;}
.y6d{bottom:450.426667pt;}
.y9f{bottom:458.186667pt;}
.y64{bottom:461.146667pt;}
.y91{bottom:465.946667pt;}
.y29{bottom:473.626667pt;}
.y17{bottom:474.986667pt;}
.y81{bottom:479.546667pt;}
.y58{bottom:481.946667pt;}
.y37{bottom:487.226667pt;}
.y63{bottom:497.946667pt;}
.y28{bottom:510.426667pt;}
.y16{bottom:511.706667pt;}
.y90{bottom:513.386667pt;}
.y80{bottom:516.346667pt;}
.y57{bottom:518.746667pt;}
.y36{bottom:524.026667pt;}
.y62{bottom:534.746667pt;}
.y27{bottom:547.226667pt;}
.y15{bottom:548.506667pt;}
.y7f{bottom:553.146667pt;}
.y56{bottom:555.546667pt;}
.y35{bottom:560.826667pt;}
.y44{bottom:571.546667pt;}
.y14{bottom:580.373333pt;}
.y7e{bottom:589.973333pt;}
.y55{bottom:592.373333pt;}
.y26{bottom:594.773333pt;}
.y34{bottom:597.653333pt;}
.y43{bottom:608.373333pt;}
.y13{bottom:612.213333pt;}
.y7d{bottom:626.773333pt;}
.y54{bottom:629.173333pt;}
.y12{bottom:633.413333pt;}
.y33{bottom:634.453333pt;}
.y25{bottom:642.213333pt;}
.y42{bottom:645.173333pt;}
.y24{bottom:660.613333pt;}
.y7c{bottom:663.573333pt;}
.y11{bottom:665.173333pt;}
.y53{bottom:665.973333pt;}
.y32{bottom:671.253333pt;}
.y41{bottom:681.973333pt;}
.y10{bottom:686.373333pt;}
.y7b{bottom:700.293333pt;}
.y9e{bottom:700.373333pt;}
.y52{bottom:702.693333pt;}
.y23{bottom:708.053333pt;}
.yf{bottom:718.213333pt;}
.y40{bottom:718.693333pt;}
.y7a{bottom:737.093333pt;}
.ye{bottom:739.333333pt;}
.y51{bottom:739.493333pt;}
.y22{bottom:744.853333pt;}
.y31{bottom:755.493333pt;}
.yd{bottom:771.173333pt;}
.y79{bottom:773.893333pt;}
.y50{bottom:776.293333pt;}
.y21{bottom:781.653333pt;}
.yc{bottom:792.293333pt;}
.y78{bottom:810.693333pt;}
.y4f{bottom:813.093333pt;}
.y20{bottom:818.453333pt;}
.yb{bottom:829.093333pt;}
.y9d{bottom:847.493333pt;}
.y4e{bottom:849.893333pt;}
.y1f{bottom:855.253333pt;}
.ya{bottom:865.893333pt;}
.y9c{bottom:884.293333pt;}
.y4d{bottom:886.693333pt;}
.y8f{bottom:892.053333pt;}
.y9{bottom:902.693333pt;}
.y9b{bottom:921.093333pt;}
.y4c{bottom:923.493333pt;}
.y8e{bottom:928.853333pt;}
.y8{bottom:939.493333pt;}
.y7{bottom:957.920000pt;}
.y6{bottom:976.320000pt;}
.y5{bottom:994.720000pt;}
.y4{bottom:1013.120000pt;}
.h4{height:57.375000pt;}
.h5{height:62.781250pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.559988pt;}
.x4{left:142.586655pt;}
.x3{left:388.933322pt;}
.x1{left:392.933322pt;}
}




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