
    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_014f983f6b4dfc52c767fe25.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4b802c1f684c1a70a27acd76.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_064b91ffbcb14e4c765e178a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_4b951a6ab34e9871477a80b1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0bb143975e3eea3deff492e0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.840000px;}
.ls2{letter-spacing:64.421280px;}
.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:-72.000000px;}
.ws0{word-spacing:-23.940000px;}
.ws4{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-5.180640px;}
._2{margin-left:-4.173120px;}
._1{margin-left:-2.715840px;}
._0{margin-left:-1.457280px;}
._3{width:1.126080px;}
._a{width:2.977920px;}
._6{width:4.044960px;}
._7{width:5.075280px;}
._12{width:6.660720px;}
._b{width:8.496000px;}
._8{width:10.128000px;}
._9{width:11.328000px;}
._18{width:12.381120px;}
._16{width:13.608000px;}
._1c{width:14.833920px;}
._11{width:16.704000px;}
._e{width:19.512000px;}
._f{width:20.532000px;}
._13{width:22.008000px;}
._d{width:24.120000px;}
._19{width:25.128000px;}
._c{width:26.352000px;}
._1d{width:27.439200px;}
._1a{width:28.440000px;}
._15{width:30.024000px;}
._1e{width:31.104000px;}
._1f{width:32.688000px;}
._5{width:36.411840px;}
._4{width:38.016720px;}
._1b{width:39.600000px;}
._17{width:41.688000px;}
._14{width:197.976000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:76.176000px;}
.y5{bottom:96.876000px;}
.y4{bottom:117.216000px;}
.y3{bottom:136.296000px;}
.y2{bottom:155.190000px;}
.y86{bottom:175.530000px;}
.y4e{bottom:176.430000px;}
.y30{bottom:187.770000px;}
.y88{bottom:198.390000px;}
.y85{bottom:206.490000px;}
.y4d{bottom:207.390000px;}
.y2f{bottom:210.270000px;}
.y69{bottom:229.530000px;}
.y2e{bottom:232.590000px;}
.y84{bottom:237.630000px;}
.y4c{bottom:238.530000px;}
.y2d{bottom:254.910000px;}
.y68{bottom:260.490000px;}
.y83{bottom:268.590000px;}
.y4b{bottom:269.490000px;}
.y2c{bottom:275.610000px;}
.y9a{bottom:289.830000px;}
.y67{bottom:291.630000px;}
.y2b{bottom:296.310000px;}
.y82{bottom:299.730000px;}
.y4a{bottom:300.630000px;}
.y2a{bottom:317.010000px;}
.y99{bottom:320.790000px;}
.y66{bottom:322.590000px;}
.y81{bottom:330.690000px;}
.y49{bottom:331.590000px;}
.y29{bottom:337.755000px;}
.y65{bottom:353.775000px;}
.y28{bottom:358.455000px;}
.y80{bottom:361.875000px;}
.y48{bottom:362.775000px;}
.y98{bottom:366.915000px;}
.y27{bottom:379.155000px;}
.y64{bottom:380.955000px;}
.y7e{bottom:384.735000px;}
.y7f{bottom:392.835000px;}
.y47{bottom:393.735000px;}
.y97{bottom:398.055000px;}
.y26{bottom:399.855000px;}
.y7d{bottom:415.875000px;}
.y25{bottom:420.555000px;}
.y63{bottom:423.975000px;}
.y46{bottom:424.875000px;}
.y24{bottom:441.255000px;}
.y96{bottom:443.955000px;}
.y7c{bottom:446.835000px;}
.y62{bottom:454.935000px;}
.y45{bottom:455.835000px;}
.y23{bottom:461.955000px;}
.y95{bottom:475.095000px;}
.y7b{bottom:477.975000px;}
.y22{bottom:482.655000px;}
.y61{bottom:486.075000px;}
.y44{bottom:486.975000px;}
.y21{bottom:503.355000px;}
.y7a{bottom:508.935000px;}
.y60{bottom:517.035000px;}
.y43{bottom:517.935000px;}
.y94{bottom:521.175000px;}
.y20{bottom:524.055000px;}
.y79{bottom:540.075000px;}
.y1f{bottom:544.755000px;}
.y5f{bottom:548.175000px;}
.y42{bottom:549.075000px;}
.y93{bottom:552.135000px;}
.y1e{bottom:565.455000px;}
.y78{bottom:571.035000px;}
.y5e{bottom:579.135000px;}
.y41{bottom:580.035000px;}
.y1d{bottom:586.155000px;}
.y92{bottom:598.215000px;}
.y77{bottom:602.175000px;}
.y1c{bottom:606.885000px;}
.y5d{bottom:610.305000px;}
.y40{bottom:611.205000px;}
.y1b{bottom:627.585000px;}
.y91{bottom:629.385000px;}
.y76{bottom:633.165000px;}
.y5c{bottom:641.265000px;}
.y3f{bottom:642.165000px;}
.y1a{bottom:648.285000px;}
.y75{bottom:664.305000px;}
.y19{bottom:668.985000px;}
.y5b{bottom:672.405000px;}
.y3e{bottom:673.305000px;}
.y90{bottom:675.285000px;}
.y18{bottom:689.685000px;}
.y87{bottom:691.485000px;}
.y74{bottom:695.265000px;}
.y5a{bottom:703.365000px;}
.y3d{bottom:704.265000px;}
.y8f{bottom:706.425000px;}
.y17{bottom:710.385000px;}
.y73{bottom:726.405000px;}
.y16{bottom:731.085000px;}
.y59{bottom:734.505000px;}
.y3c{bottom:735.405000px;}
.y15{bottom:751.605000px;}
.y8e{bottom:752.505000px;}
.y72{bottom:757.365000px;}
.y58{bottom:765.465000px;}
.y3b{bottom:766.365000px;}
.y14{bottom:772.305000px;}
.y8d{bottom:783.465000px;}
.y71{bottom:788.505000px;}
.y13{bottom:793.005000px;}
.y57{bottom:796.605000px;}
.y3a{bottom:797.505000px;}
.y12{bottom:813.705000px;}
.y70{bottom:819.465000px;}
.y56{bottom:827.565000px;}
.y39{bottom:828.465000px;}
.y8c{bottom:829.545000px;}
.y11{bottom:841.245000px;}
.y6f{bottom:850.605000px;}
.y10{bottom:855.105000px;}
.y55{bottom:858.705000px;}
.y38{bottom:859.605000px;}
.y8b{bottom:860.505000px;}
.yf{bottom:875.850000px;}
.y6e{bottom:881.610000px;}
.y54{bottom:889.710000px;}
.y37{bottom:890.610000px;}
.ye{bottom:896.550000px;}
.y8a{bottom:906.630000px;}
.y6d{bottom:912.750000px;}
.yd{bottom:918.690000px;}
.y53{bottom:920.850000px;}
.y36{bottom:921.750000px;}
.y89{bottom:937.770000px;}
.y6c{bottom:943.710000px;}
.yc{bottom:946.230000px;}
.y52{bottom:951.810000px;}
.y35{bottom:952.710000px;}
.yb{bottom:972.510000px;}
.y6b{bottom:974.850000px;}
.y51{bottom:982.950000px;}
.y34{bottom:983.850000px;}
.ya{bottom:994.470000px;}
.y6a{bottom:1002.030000px;}
.y50{bottom:1013.910000px;}
.y33{bottom:1014.810000px;}
.y9{bottom:1022.190000px;}
.y4f{bottom:1045.050000px;}
.y32{bottom:1045.950000px;}
.y8{bottom:1049.730000px;}
.y31{bottom:1073.130000px;}
.y7{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h7{height:43.246406px;}
.h4{height:52.628906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:70.606406px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:106.415987px;}
.x6{left:109.475987px;}
.x2{left:148.895987px;}
.x8{left:160.409987px;}
.x7{left:268.229987px;}
.x5{left:274.709987px;}
.x1{left:467.744987px;}
.x3{left:786.749987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.746667pt;}
.ls2{letter-spacing:57.263360pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-4.605013pt;}
._2{margin-left:-3.709440pt;}
._1{margin-left:-2.414080pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.000960pt;}
._a{width:2.647040pt;}
._6{width:3.595520pt;}
._7{width:4.511360pt;}
._12{width:5.920640pt;}
._b{width:7.552000pt;}
._8{width:9.002667pt;}
._9{width:10.069333pt;}
._18{width:11.005440pt;}
._16{width:12.096000pt;}
._1c{width:13.185707pt;}
._11{width:14.848000pt;}
._e{width:17.344000pt;}
._f{width:18.250667pt;}
._13{width:19.562667pt;}
._d{width:21.440000pt;}
._19{width:22.336000pt;}
._c{width:23.424000pt;}
._1d{width:24.390400pt;}
._1a{width:25.280000pt;}
._15{width:26.688000pt;}
._1e{width:27.648000pt;}
._1f{width:29.056000pt;}
._5{width:32.366080pt;}
._4{width:33.792640pt;}
._1b{width:35.200000pt;}
._17{width:37.056000pt;}
._14{width:175.978667pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:67.712000pt;}
.y5{bottom:86.112000pt;}
.y4{bottom:104.192000pt;}
.y3{bottom:121.152000pt;}
.y2{bottom:137.946667pt;}
.y86{bottom:156.026667pt;}
.y4e{bottom:156.826667pt;}
.y30{bottom:166.906667pt;}
.y88{bottom:176.346667pt;}
.y85{bottom:183.546667pt;}
.y4d{bottom:184.346667pt;}
.y2f{bottom:186.906667pt;}
.y69{bottom:204.026667pt;}
.y2e{bottom:206.746667pt;}
.y84{bottom:211.226667pt;}
.y4c{bottom:212.026667pt;}
.y2d{bottom:226.586667pt;}
.y68{bottom:231.546667pt;}
.y83{bottom:238.746667pt;}
.y4b{bottom:239.546667pt;}
.y2c{bottom:244.986667pt;}
.y9a{bottom:257.626667pt;}
.y67{bottom:259.226667pt;}
.y2b{bottom:263.386667pt;}
.y82{bottom:266.426667pt;}
.y4a{bottom:267.226667pt;}
.y2a{bottom:281.786667pt;}
.y99{bottom:285.146667pt;}
.y66{bottom:286.746667pt;}
.y81{bottom:293.946667pt;}
.y49{bottom:294.746667pt;}
.y29{bottom:300.226667pt;}
.y65{bottom:314.466667pt;}
.y28{bottom:318.626667pt;}
.y80{bottom:321.666667pt;}
.y48{bottom:322.466667pt;}
.y98{bottom:326.146667pt;}
.y27{bottom:337.026667pt;}
.y64{bottom:338.626667pt;}
.y7e{bottom:341.986667pt;}
.y7f{bottom:349.186667pt;}
.y47{bottom:349.986667pt;}
.y97{bottom:353.826667pt;}
.y26{bottom:355.426667pt;}
.y7d{bottom:369.666667pt;}
.y25{bottom:373.826667pt;}
.y63{bottom:376.866667pt;}
.y46{bottom:377.666667pt;}
.y24{bottom:392.226667pt;}
.y96{bottom:394.626667pt;}
.y7c{bottom:397.186667pt;}
.y62{bottom:404.386667pt;}
.y45{bottom:405.186667pt;}
.y23{bottom:410.626667pt;}
.y95{bottom:422.306667pt;}
.y7b{bottom:424.866667pt;}
.y22{bottom:429.026667pt;}
.y61{bottom:432.066667pt;}
.y44{bottom:432.866667pt;}
.y21{bottom:447.426667pt;}
.y7a{bottom:452.386667pt;}
.y60{bottom:459.586667pt;}
.y43{bottom:460.386667pt;}
.y94{bottom:463.266667pt;}
.y20{bottom:465.826667pt;}
.y79{bottom:480.066667pt;}
.y1f{bottom:484.226667pt;}
.y5f{bottom:487.266667pt;}
.y42{bottom:488.066667pt;}
.y93{bottom:490.786667pt;}
.y1e{bottom:502.626667pt;}
.y78{bottom:507.586667pt;}
.y5e{bottom:514.786667pt;}
.y41{bottom:515.586667pt;}
.y1d{bottom:521.026667pt;}
.y92{bottom:531.746667pt;}
.y77{bottom:535.266667pt;}
.y1c{bottom:539.453333pt;}
.y5d{bottom:542.493333pt;}
.y40{bottom:543.293333pt;}
.y1b{bottom:557.853333pt;}
.y91{bottom:559.453333pt;}
.y76{bottom:562.813333pt;}
.y5c{bottom:570.013333pt;}
.y3f{bottom:570.813333pt;}
.y1a{bottom:576.253333pt;}
.y75{bottom:590.493333pt;}
.y19{bottom:594.653333pt;}
.y5b{bottom:597.693333pt;}
.y3e{bottom:598.493333pt;}
.y90{bottom:600.253333pt;}
.y18{bottom:613.053333pt;}
.y87{bottom:614.653333pt;}
.y74{bottom:618.013333pt;}
.y5a{bottom:625.213333pt;}
.y3d{bottom:626.013333pt;}
.y8f{bottom:627.933333pt;}
.y17{bottom:631.453333pt;}
.y73{bottom:645.693333pt;}
.y16{bottom:649.853333pt;}
.y59{bottom:652.893333pt;}
.y3c{bottom:653.693333pt;}
.y15{bottom:668.093333pt;}
.y8e{bottom:668.893333pt;}
.y72{bottom:673.213333pt;}
.y58{bottom:680.413333pt;}
.y3b{bottom:681.213333pt;}
.y14{bottom:686.493333pt;}
.y8d{bottom:696.413333pt;}
.y71{bottom:700.893333pt;}
.y13{bottom:704.893333pt;}
.y57{bottom:708.093333pt;}
.y3a{bottom:708.893333pt;}
.y12{bottom:723.293333pt;}
.y70{bottom:728.413333pt;}
.y56{bottom:735.613333pt;}
.y39{bottom:736.413333pt;}
.y8c{bottom:737.373333pt;}
.y11{bottom:747.773333pt;}
.y6f{bottom:756.093333pt;}
.y10{bottom:760.093333pt;}
.y55{bottom:763.293333pt;}
.y38{bottom:764.093333pt;}
.y8b{bottom:764.893333pt;}
.yf{bottom:778.533333pt;}
.y6e{bottom:783.653333pt;}
.y54{bottom:790.853333pt;}
.y37{bottom:791.653333pt;}
.ye{bottom:796.933333pt;}
.y8a{bottom:805.893333pt;}
.y6d{bottom:811.333333pt;}
.yd{bottom:816.613333pt;}
.y53{bottom:818.533333pt;}
.y36{bottom:819.333333pt;}
.y89{bottom:833.573333pt;}
.y6c{bottom:838.853333pt;}
.yc{bottom:841.093333pt;}
.y52{bottom:846.053333pt;}
.y35{bottom:846.853333pt;}
.yb{bottom:864.453333pt;}
.y6b{bottom:866.533333pt;}
.y51{bottom:873.733333pt;}
.y34{bottom:874.533333pt;}
.ya{bottom:883.973333pt;}
.y6a{bottom:890.693333pt;}
.y50{bottom:901.253333pt;}
.y33{bottom:902.053333pt;}
.y9{bottom:908.613333pt;}
.y4f{bottom:928.933333pt;}
.y32{bottom:929.733333pt;}
.y8{bottom:933.093333pt;}
.y31{bottom:953.893333pt;}
.y7{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:38.441250pt;}
.h4{height:46.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:62.761250pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.591988pt;}
.x6{left:97.311988pt;}
.x2{left:132.351988pt;}
.x8{left:142.586655pt;}
.x7{left:238.426655pt;}
.x5{left:244.186655pt;}
.x1{left:415.773322pt;}
.x3{left:699.333322pt;}
}




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