
    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_c9ad66ae6ae340b1e6c72960.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c684fed884783dee4cf02189.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_5ef84a8c2e03b401a07fbdb2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8d38ac3650e23761ae995e9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_299c28d756fce314b102c2f4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-77.760000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-5.114880px;}
._17{margin-left:-4.038720px;}
._11{margin-left:-2.952000px;}
._0{margin-left:-1.457280px;}
._1{width:1.003200px;}
._3{width:2.795040px;}
._4{width:3.960000px;}
._5{width:5.920800px;}
._e{width:7.212000px;}
._c{width:9.216000px;}
._d{width:10.300800px;}
._a{width:11.376000px;}
._6{width:13.008000px;}
._7{width:14.136000px;}
._12{width:15.696000px;}
._13{width:16.920000px;}
._b{width:19.368000px;}
._10{width:20.856000px;}
._f{width:22.080000px;}
._14{width:23.352000px;}
._8{width:24.480000px;}
._9{width:25.992000px;}
._1a{width:28.800000px;}
._1b{width:30.082560px;}
._19{width:31.752000px;}
._15{width:33.624000px;}
._16{width:35.568000px;}
._2{width:1831.997760px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:128.736000px;}
.y3{bottom:147.636000px;}
.y2{bottom:166.710000px;}
.y2f{bottom:192.810000px;}
.yb1{bottom:193.890000px;}
.y77{bottom:197.310000px;}
.y2e{bottom:213.510000px;}
.y61{bottom:214.410000px;}
.yb0{bottom:220.710000px;}
.y76{bottom:228.270000px;}
.y2d{bottom:234.210000px;}
.y88{bottom:237.630000px;}
.y4b{bottom:238.530000px;}
.yaf{bottom:241.410000px;}
.y60{bottom:245.550000px;}
.y2c{bottom:254.910000px;}
.y75{bottom:259.410000px;}
.yae{bottom:268.050000px;}
.y87{bottom:268.590000px;}
.y4a{bottom:269.490000px;}
.y91{bottom:270.030000px;}
.y2b{bottom:275.610000px;}
.y5f{bottom:276.510000px;}
.y74{bottom:290.370000px;}
.yad{bottom:294.690000px;}
.y2a{bottom:296.310000px;}
.y86{bottom:299.730000px;}
.y49{bottom:300.630000px;}
.y90{bottom:302.610000px;}
.y5e{bottom:303.330000px;}
.yac{bottom:315.390000px;}
.y29{bottom:317.010000px;}
.y73{bottom:321.510000px;}
.y8f{bottom:325.470000px;}
.y5d{bottom:326.010000px;}
.y85{bottom:330.690000px;}
.y48{bottom:331.590000px;}
.y28{bottom:337.755000px;}
.yab{bottom:342.255000px;}
.y72{bottom:352.515000px;}
.y27{bottom:358.455000px;}
.y84{bottom:361.875000px;}
.y47{bottom:362.775000px;}
.yaa{bottom:368.895000px;}
.y26{bottom:379.155000px;}
.y71{bottom:383.655000px;}
.ya9{bottom:389.595000px;}
.y83{bottom:392.835000px;}
.y46{bottom:393.735000px;}
.y25{bottom:399.855000px;}
.ya8{bottom:410.295000px;}
.y70{bottom:414.615000px;}
.y24{bottom:420.555000px;}
.y82{bottom:423.975000px;}
.y45{bottom:424.875000px;}
.ya7{bottom:436.935000px;}
.y23{bottom:441.255000px;}
.y6f{bottom:453.855000px;}
.y81{bottom:454.935000px;}
.y44{bottom:455.835000px;}
.y22{bottom:461.955000px;}
.ya6{bottom:463.755000px;}
.ya5{bottom:484.455000px;}
.y80{bottom:486.075000px;}
.y43{bottom:486.975000px;}
.y21{bottom:489.495000px;}
.y6e{bottom:496.875000px;}
.y20{bottom:503.355000px;}
.ya4{bottom:511.095000px;}
.y7f{bottom:517.035000px;}
.y42{bottom:517.935000px;}
.y1f{bottom:524.055000px;}
.y6d{bottom:528.015000px;}
.ya3{bottom:537.735000px;}
.y1e{bottom:544.755000px;}
.y7e{bottom:548.175000px;}
.y41{bottom:549.075000px;}
.ya2{bottom:558.435000px;}
.y6c{bottom:558.975000px;}
.y8e{bottom:559.695000px;}
.y1d{bottom:565.455000px;}
.y7d{bottom:579.135000px;}
.y40{bottom:580.035000px;}
.y8d{bottom:582.915000px;}
.y1c{bottom:586.155000px;}
.y6b{bottom:590.115000px;}
.y5c{bottom:598.575000px;}
.ya1{bottom:605.985000px;}
.y8c{bottom:606.165000px;}
.y1b{bottom:606.885000px;}
.y7c{bottom:610.305000px;}
.y3f{bottom:611.205000px;}
.y6a{bottom:621.105000px;}
.y5b{bottom:621.825000px;}
.y1a{bottom:627.585000px;}
.y8b{bottom:629.385000px;}
.ya0{bottom:632.625000px;}
.y7b{bottom:641.265000px;}
.y3e{bottom:642.165000px;}
.y5a{bottom:645.045000px;}
.y19{bottom:648.285000px;}
.y69{bottom:652.245000px;}
.y8a{bottom:652.785000px;}
.y9f{bottom:653.325000px;}
.y59{bottom:668.265000px;}
.y18{bottom:668.985000px;}
.y7a{bottom:672.405000px;}
.y3d{bottom:673.305000px;}
.y89{bottom:676.725000px;}
.y9e{bottom:679.965000px;}
.y68{bottom:683.205000px;}
.y17{bottom:689.685000px;}
.y58{bottom:691.485000px;}
.y79{bottom:703.365000px;}
.y3c{bottom:704.265000px;}
.y9d{bottom:706.605000px;}
.y16{bottom:710.385000px;}
.y67{bottom:714.345000px;}
.y57{bottom:714.885000px;}
.y9c{bottom:727.305000px;}
.y15{bottom:731.085000px;}
.y78{bottom:734.505000px;}
.y3b{bottom:735.405000px;}
.y56{bottom:738.825000px;}
.y66{bottom:745.305000px;}
.y9b{bottom:748.005000px;}
.y14{bottom:751.605000px;}
.ybe{bottom:758.805000px;}
.y55{bottom:765.465000px;}
.y3a{bottom:766.365000px;}
.y13{bottom:772.305000px;}
.y9a{bottom:774.825000px;}
.y65{bottom:776.445000px;}
.ybd{bottom:779.505000px;}
.y12{bottom:793.005000px;}
.y54{bottom:796.605000px;}
.y39{bottom:797.505000px;}
.y99{bottom:801.465000px;}
.ybc{bottom:806.325000px;}
.y64{bottom:807.405000px;}
.y11{bottom:813.705000px;}
.y98{bottom:822.165000px;}
.y53{bottom:827.565000px;}
.y38{bottom:828.465000px;}
.ybb{bottom:832.965000px;}
.y10{bottom:834.405000px;}
.y63{bottom:838.545000px;}
.y97{bottom:848.805000px;}
.yba{bottom:853.665000px;}
.yf{bottom:855.105000px;}
.y52{bottom:858.705000px;}
.y37{bottom:859.605000px;}
.y96{bottom:875.670000px;}
.ye{bottom:875.850000px;}
.y62{bottom:877.830000px;}
.yb9{bottom:880.350000px;}
.y51{bottom:889.710000px;}
.y36{bottom:890.610000px;}
.y95{bottom:896.370000px;}
.yd{bottom:896.550000px;}
.yb8{bottom:907.170000px;}
.y94{bottom:917.070000px;}
.yc{bottom:917.250000px;}
.y50{bottom:920.850000px;}
.y35{bottom:921.750000px;}
.yb7{bottom:927.870000px;}
.yb{bottom:939.390000px;}
.y93{bottom:944.250000px;}
.y4f{bottom:951.810000px;}
.y34{bottom:952.710000px;}
.yb6{bottom:954.510000px;}
.ya{bottom:966.930000px;}
.y92{bottom:976.830000px;}
.yb5{bottom:981.150000px;}
.y4e{bottom:982.950000px;}
.y33{bottom:983.850000px;}
.y9{bottom:994.470000px;}
.yb4{bottom:1001.850000px;}
.y4d{bottom:1013.910000px;}
.y32{bottom:1014.810000px;}
.y8{bottom:1022.190000px;}
.yb3{bottom:1028.670000px;}
.y4c{bottom:1045.050000px;}
.y31{bottom:1045.950000px;}
.y7{bottom:1049.730000px;}
.yb2{bottom:1055.310000px;}
.y30{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h6{height:39.760312px;}
.h9{height:49.255313px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h7{height:63.949219px;}
.h2{height:64.546875px;}
.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;}
.x2{left:106.415987px;}
.xf{left:137.015987px;}
.xb{left:138.995987px;}
.x8{left:142.955987px;}
.xd{left:147.275987px;}
.x4{left:148.895987px;}
.x11{left:150.689987px;}
.x9{left:155.009987px;}
.x10{left:157.169987px;}
.xc{left:162.029987px;}
.xa{left:169.229987px;}
.x6{left:249.149987px;}
.x7{left:272.729987px;}
.x12{left:360.254987px;}
.x5{left:446.474987px;}
.x1{left:467.744987px;}
.xe{left:680.549987px;}
.x13{left:733.289987px;}
.x3{left:786.749987px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:57.263360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-4.546560pt;}
._17{margin-left:-3.589973pt;}
._11{margin-left:-2.624000pt;}
._0{margin-left:-1.295360pt;}
._1{width:0.891733pt;}
._3{width:2.484480pt;}
._4{width:3.520000pt;}
._5{width:5.262933pt;}
._e{width:6.410667pt;}
._c{width:8.192000pt;}
._d{width:9.156267pt;}
._a{width:10.112000pt;}
._6{width:11.562667pt;}
._7{width:12.565333pt;}
._12{width:13.952000pt;}
._13{width:15.040000pt;}
._b{width:17.216000pt;}
._10{width:18.538667pt;}
._f{width:19.626667pt;}
._14{width:20.757333pt;}
._8{width:21.760000pt;}
._9{width:23.104000pt;}
._1a{width:25.600000pt;}
._1b{width:26.740053pt;}
._19{width:28.224000pt;}
._15{width:29.888000pt;}
._16{width:31.616000pt;}
._2{width:1628.442453pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:114.432000pt;}
.y3{bottom:131.232000pt;}
.y2{bottom:148.186667pt;}
.y2f{bottom:171.386667pt;}
.yb1{bottom:172.346667pt;}
.y77{bottom:175.386667pt;}
.y2e{bottom:189.786667pt;}
.y61{bottom:190.586667pt;}
.yb0{bottom:196.186667pt;}
.y76{bottom:202.906667pt;}
.y2d{bottom:208.186667pt;}
.y88{bottom:211.226667pt;}
.y4b{bottom:212.026667pt;}
.yaf{bottom:214.586667pt;}
.y60{bottom:218.266667pt;}
.y2c{bottom:226.586667pt;}
.y75{bottom:230.586667pt;}
.yae{bottom:238.266667pt;}
.y87{bottom:238.746667pt;}
.y4a{bottom:239.546667pt;}
.y91{bottom:240.026667pt;}
.y2b{bottom:244.986667pt;}
.y5f{bottom:245.786667pt;}
.y74{bottom:258.106667pt;}
.yad{bottom:261.946667pt;}
.y2a{bottom:263.386667pt;}
.y86{bottom:266.426667pt;}
.y49{bottom:267.226667pt;}
.y90{bottom:268.986667pt;}
.y5e{bottom:269.626667pt;}
.yac{bottom:280.346667pt;}
.y29{bottom:281.786667pt;}
.y73{bottom:285.786667pt;}
.y8f{bottom:289.306667pt;}
.y5d{bottom:289.786667pt;}
.y85{bottom:293.946667pt;}
.y48{bottom:294.746667pt;}
.y28{bottom:300.226667pt;}
.yab{bottom:304.226667pt;}
.y72{bottom:313.346667pt;}
.y27{bottom:318.626667pt;}
.y84{bottom:321.666667pt;}
.y47{bottom:322.466667pt;}
.yaa{bottom:327.906667pt;}
.y26{bottom:337.026667pt;}
.y71{bottom:341.026667pt;}
.ya9{bottom:346.306667pt;}
.y83{bottom:349.186667pt;}
.y46{bottom:349.986667pt;}
.y25{bottom:355.426667pt;}
.ya8{bottom:364.706667pt;}
.y70{bottom:368.546667pt;}
.y24{bottom:373.826667pt;}
.y82{bottom:376.866667pt;}
.y45{bottom:377.666667pt;}
.ya7{bottom:388.386667pt;}
.y23{bottom:392.226667pt;}
.y6f{bottom:403.426667pt;}
.y81{bottom:404.386667pt;}
.y44{bottom:405.186667pt;}
.y22{bottom:410.626667pt;}
.ya6{bottom:412.226667pt;}
.ya5{bottom:430.626667pt;}
.y80{bottom:432.066667pt;}
.y43{bottom:432.866667pt;}
.y21{bottom:435.106667pt;}
.y6e{bottom:441.666667pt;}
.y20{bottom:447.426667pt;}
.ya4{bottom:454.306667pt;}
.y7f{bottom:459.586667pt;}
.y42{bottom:460.386667pt;}
.y1f{bottom:465.826667pt;}
.y6d{bottom:469.346667pt;}
.ya3{bottom:477.986667pt;}
.y1e{bottom:484.226667pt;}
.y7e{bottom:487.266667pt;}
.y41{bottom:488.066667pt;}
.ya2{bottom:496.386667pt;}
.y6c{bottom:496.866667pt;}
.y8e{bottom:497.506667pt;}
.y1d{bottom:502.626667pt;}
.y7d{bottom:514.786667pt;}
.y40{bottom:515.586667pt;}
.y8d{bottom:518.146667pt;}
.y1c{bottom:521.026667pt;}
.y6b{bottom:524.546667pt;}
.y5c{bottom:532.066667pt;}
.ya1{bottom:538.653333pt;}
.y8c{bottom:538.813333pt;}
.y1b{bottom:539.453333pt;}
.y7c{bottom:542.493333pt;}
.y3f{bottom:543.293333pt;}
.y6a{bottom:552.093333pt;}
.y5b{bottom:552.733333pt;}
.y1a{bottom:557.853333pt;}
.y8b{bottom:559.453333pt;}
.ya0{bottom:562.333333pt;}
.y7b{bottom:570.013333pt;}
.y3e{bottom:570.813333pt;}
.y5a{bottom:573.373333pt;}
.y19{bottom:576.253333pt;}
.y69{bottom:579.773333pt;}
.y8a{bottom:580.253333pt;}
.y9f{bottom:580.733333pt;}
.y59{bottom:594.013333pt;}
.y18{bottom:594.653333pt;}
.y7a{bottom:597.693333pt;}
.y3d{bottom:598.493333pt;}
.y89{bottom:601.533333pt;}
.y9e{bottom:604.413333pt;}
.y68{bottom:607.293333pt;}
.y17{bottom:613.053333pt;}
.y58{bottom:614.653333pt;}
.y79{bottom:625.213333pt;}
.y3c{bottom:626.013333pt;}
.y9d{bottom:628.093333pt;}
.y16{bottom:631.453333pt;}
.y67{bottom:634.973333pt;}
.y57{bottom:635.453333pt;}
.y9c{bottom:646.493333pt;}
.y15{bottom:649.853333pt;}
.y78{bottom:652.893333pt;}
.y3b{bottom:653.693333pt;}
.y56{bottom:656.733333pt;}
.y66{bottom:662.493333pt;}
.y9b{bottom:664.893333pt;}
.y14{bottom:668.093333pt;}
.ybe{bottom:674.493333pt;}
.y55{bottom:680.413333pt;}
.y3a{bottom:681.213333pt;}
.y13{bottom:686.493333pt;}
.y9a{bottom:688.733333pt;}
.y65{bottom:690.173333pt;}
.ybd{bottom:692.893333pt;}
.y12{bottom:704.893333pt;}
.y54{bottom:708.093333pt;}
.y39{bottom:708.893333pt;}
.y99{bottom:712.413333pt;}
.ybc{bottom:716.733333pt;}
.y64{bottom:717.693333pt;}
.y11{bottom:723.293333pt;}
.y98{bottom:730.813333pt;}
.y53{bottom:735.613333pt;}
.y38{bottom:736.413333pt;}
.ybb{bottom:740.413333pt;}
.y10{bottom:741.693333pt;}
.y63{bottom:745.373333pt;}
.y97{bottom:754.493333pt;}
.yba{bottom:758.813333pt;}
.yf{bottom:760.093333pt;}
.y52{bottom:763.293333pt;}
.y37{bottom:764.093333pt;}
.y96{bottom:778.373333pt;}
.ye{bottom:778.533333pt;}
.y62{bottom:780.293333pt;}
.yb9{bottom:782.533333pt;}
.y51{bottom:790.853333pt;}
.y36{bottom:791.653333pt;}
.y95{bottom:796.773333pt;}
.yd{bottom:796.933333pt;}
.yb8{bottom:806.373333pt;}
.y94{bottom:815.173333pt;}
.yc{bottom:815.333333pt;}
.y50{bottom:818.533333pt;}
.y35{bottom:819.333333pt;}
.yb7{bottom:824.773333pt;}
.yb{bottom:835.013333pt;}
.y93{bottom:839.333333pt;}
.y4f{bottom:846.053333pt;}
.y34{bottom:846.853333pt;}
.yb6{bottom:848.453333pt;}
.ya{bottom:859.493333pt;}
.y92{bottom:868.293333pt;}
.yb5{bottom:872.133333pt;}
.y4e{bottom:873.733333pt;}
.y33{bottom:874.533333pt;}
.y9{bottom:883.973333pt;}
.yb4{bottom:890.533333pt;}
.y4d{bottom:901.253333pt;}
.y32{bottom:902.053333pt;}
.y8{bottom:908.613333pt;}
.yb3{bottom:914.373333pt;}
.y4c{bottom:928.933333pt;}
.y31{bottom:929.733333pt;}
.y7{bottom:933.093333pt;}
.yb2{bottom:938.053333pt;}
.y30{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h6{height:35.342500pt;}
.h9{height:43.782500pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h7{height:56.843750pt;}
.h2{height:57.375000pt;}
.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;}
.x2{left:94.591988pt;}
.xf{left:121.791988pt;}
.xb{left:123.551988pt;}
.x8{left:127.071988pt;}
.xd{left:130.911988pt;}
.x4{left:132.351988pt;}
.x11{left:133.946655pt;}
.x9{left:137.786655pt;}
.x10{left:139.706655pt;}
.xc{left:144.026655pt;}
.xa{left:150.426655pt;}
.x6{left:221.466655pt;}
.x7{left:242.426655pt;}
.x12{left:320.226655pt;}
.x5{left:396.866655pt;}
.x1{left:415.773322pt;}
.xe{left:604.933322pt;}
.x13{left:651.813322pt;}
.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; }
  