
    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_a2cd4f7d81ac9dd05cb757f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_66c7e08b1c4360201a56ce11.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_a4626e8523925ac98459a25f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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.014400px;}
.ls0{letter-spacing:0.000000px;}
.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:-17.985600px;}
.ws0{word-spacing:0.000000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:5.700000px;}
.y1b{bottom:5.940000px;}
.yb{bottom:6.000000px;}
.y4b{bottom:6.060000px;}
.y1f{bottom:6.120000px;}
.y43{bottom:6.180000px;}
.y15{bottom:6.240000px;}
.y23{bottom:6.300000px;}
.y46{bottom:6.360000px;}
.y19{bottom:6.420000px;}
.y3e{bottom:6.480000px;}
.yf{bottom:6.540000px;}
.y1d{bottom:6.600000px;}
.y41{bottom:6.660000px;}
.y13{bottom:6.720000px;}
.y39{bottom:6.780000px;}
.y9{bottom:6.840000px;}
.y17{bottom:6.900000px;}
.y3c{bottom:6.960000px;}
.yd{bottom:7.020000px;}
.y4d{bottom:7.080000px;}
.y21{bottom:7.140000px;}
.y87{bottom:7.200000px;}
.y50{bottom:7.260000px;}
.y7{bottom:7.320000px;}
.y48{bottom:7.380000px;}
.yc7{bottom:7.440000px;}
.ydd{bottom:114.000000px;}
.y37{bottom:115.500000px;}
.ya9{bottom:117.000000px;}
.y68{bottom:120.000000px;}
.yc5{bottom:126.000000px;}
.y8c{bottom:129.000000px;}
.y107{bottom:132.120000px;}
.ydc{bottom:138.000000px;}
.y36{bottom:139.500000px;}
.ya8{bottom:141.000000px;}
.y67{bottom:144.000000px;}
.ye7{bottom:150.000000px;}
.yc4{bottom:151.500000px;}
.y8b{bottom:153.000000px;}
.y106{bottom:154.080000px;}
.ydb{bottom:163.500000px;}
.y35{bottom:165.000000px;}
.ya7{bottom:166.500000px;}
.y66{bottom:169.500000px;}
.yc3{bottom:175.500000px;}
.y105{bottom:175.680000px;}
.y8a{bottom:178.500000px;}
.yda{bottom:187.500000px;}
.y34{bottom:189.000000px;}
.ya6{bottom:190.500000px;}
.y65{bottom:193.500000px;}
.y104{bottom:197.280000px;}
.yc2{bottom:201.000000px;}
.y89{bottom:202.500000px;}
.y33{bottom:213.000000px;}
.ya5{bottom:216.000000px;}
.y64{bottom:217.500000px;}
.y103{bottom:219.240000px;}
.yc1{bottom:225.000000px;}
.y88{bottom:228.000000px;}
.yd9{bottom:237.000000px;}
.y32{bottom:238.500000px;}
.ya4{bottom:240.000000px;}
.y102{bottom:240.840000px;}
.y63{bottom:243.000000px;}
.ye6{bottom:249.000000px;}
.yc0{bottom:250.500000px;}
.y86{bottom:252.000000px;}
.y101{bottom:262.440000px;}
.y31{bottom:262.500000px;}
.ya3{bottom:265.500000px;}
.y62{bottom:267.000000px;}
.ybf{bottom:274.500000px;}
.y85{bottom:277.500000px;}
.y100{bottom:284.400000px;}
.yd8{bottom:286.500000px;}
.y30{bottom:288.000000px;}
.ya2{bottom:289.500000px;}
.y61{bottom:292.500000px;}
.ybe{bottom:300.000000px;}
.y84{bottom:301.500000px;}
.yff{bottom:306.000000px;}
.y2f{bottom:312.000000px;}
.ya1{bottom:313.500000px;}
.y60{bottom:316.500000px;}
.ybd{bottom:324.000000px;}
.y83{bottom:327.000000px;}
.yfe{bottom:327.600000px;}
.yd7{bottom:336.000000px;}
.y2e{bottom:337.500000px;}
.ya0{bottom:339.000000px;}
.y5f{bottom:340.500000px;}
.ye5{bottom:348.000000px;}
.ybc{bottom:349.500000px;}
.yfd{bottom:349.560000px;}
.y82{bottom:351.000000px;}
.y2d{bottom:361.500000px;}
.y9f{bottom:363.000000px;}
.y5e{bottom:366.000000px;}
.yfc{bottom:371.160000px;}
.ybb{bottom:373.500000px;}
.y81{bottom:375.000000px;}
.y2c{bottom:385.500000px;}
.yea{bottom:387.000000px;}
.y9e{bottom:388.500000px;}
.y5d{bottom:390.000000px;}
.yfb{bottom:392.760000px;}
.yba{bottom:399.000000px;}
.y80{bottom:400.500000px;}
.y2b{bottom:411.000000px;}
.y9d{bottom:412.500000px;}
.yfa{bottom:414.720000px;}
.y5c{bottom:415.500000px;}
.yb9{bottom:423.000000px;}
.y7f{bottom:424.500000px;}
.y2a{bottom:435.000000px;}
.yf9{bottom:436.320000px;}
.ye9{bottom:436.500000px;}
.y9c{bottom:438.000000px;}
.y5b{bottom:439.500000px;}
.ye4{bottom:447.000000px;}
.yb8{bottom:448.500000px;}
.y7e{bottom:450.000000px;}
.yf8{bottom:457.920000px;}
.y29{bottom:460.500000px;}
.y9b{bottom:462.000000px;}
.y5a{bottom:463.500000px;}
.yb7{bottom:472.500000px;}
.y7d{bottom:474.000000px;}
.yf7{bottom:479.880000px;}
.y28{bottom:484.500000px;}
.ye8{bottom:486.000000px;}
.y9a{bottom:487.500000px;}
.y59{bottom:489.000000px;}
.yb6{bottom:498.000000px;}
.y7c{bottom:499.500000px;}
.yf6{bottom:501.480000px;}
.y27{bottom:508.500000px;}
.yd6{bottom:510.000000px;}
.y99{bottom:511.500000px;}
.y58{bottom:513.000000px;}
.yb5{bottom:522.000000px;}
.yf5{bottom:523.440000px;}
.y7b{bottom:523.500000px;}
.y26{bottom:534.000000px;}
.y98{bottom:535.500000px;}
.y57{bottom:538.500000px;}
.yf4{bottom:545.040000px;}
.ye3{bottom:546.000000px;}
.yb4{bottom:547.500000px;}
.y7a{bottom:549.000000px;}
.y25{bottom:558.000000px;}
.yd5{bottom:559.500000px;}
.y97{bottom:561.000000px;}
.y56{bottom:562.500000px;}
.yf3{bottom:566.640000px;}
.yb3{bottom:571.500000px;}
.y79{bottom:573.000000px;}
.y24{bottom:582.000000px;}
.yd4{bottom:583.500000px;}
.y96{bottom:585.000000px;}
.y55{bottom:586.500000px;}
.yf2{bottom:588.600000px;}
.yb2{bottom:597.000000px;}
.y78{bottom:598.500000px;}
.y22{bottom:607.500000px;}
.yd3{bottom:609.000000px;}
.yf1{bottom:610.200000px;}
.y95{bottom:610.500000px;}
.y54{bottom:612.000000px;}
.yb1{bottom:621.000000px;}
.y77{bottom:622.500000px;}
.y20{bottom:631.500000px;}
.yf0{bottom:631.800000px;}
.yd2{bottom:633.000000px;}
.y94{bottom:634.500000px;}
.y53{bottom:636.000000px;}
.ye2{bottom:645.000000px;}
.y76{bottom:646.500000px;}
.yef{bottom:653.760000px;}
.y1e{bottom:657.000000px;}
.yd1{bottom:658.500000px;}
.y93{bottom:660.000000px;}
.y52{bottom:661.500000px;}
.yb0{bottom:670.500000px;}
.y75{bottom:672.000000px;}
.yee{bottom:675.360000px;}
.y1c{bottom:681.000000px;}
.yd0{bottom:682.500000px;}
.y92{bottom:684.000000px;}
.y51{bottom:685.500000px;}
.y74{bottom:696.000000px;}
.yed{bottom:696.960000px;}
.y1a{bottom:706.500000px;}
.ycf{bottom:708.000000px;}
.y4f{bottom:709.500000px;}
.yec{bottom:718.920000px;}
.yaf{bottom:720.000000px;}
.y73{bottom:721.500000px;}
.y18{bottom:730.500000px;}
.yce{bottom:732.000000px;}
.y91{bottom:733.500000px;}
.y4e{bottom:735.000000px;}
.yeb{bottom:740.880000px;}
.ye1{bottom:744.000000px;}
.y72{bottom:745.500000px;}
.y16{bottom:754.500000px;}
.ycd{bottom:757.500000px;}
.y4c{bottom:759.000000px;}
.yae{bottom:769.500000px;}
.y71{bottom:771.000000px;}
.ye0{bottom:773.640000px;}
.y14{bottom:780.000000px;}
.ycc{bottom:781.500000px;}
.y90{bottom:783.000000px;}
.y4a{bottom:784.500000px;}
.ydf{bottom:794.520000px;}
.y70{bottom:795.000000px;}
.y12{bottom:804.000000px;}
.y8f{bottom:807.000000px;}
.y49{bottom:808.500000px;}
.yde{bottom:815.040000px;}
.yad{bottom:819.000000px;}
.y6f{bottom:820.500000px;}
.y10{bottom:829.500000px;}
.ycb{bottom:831.000000px;}
.y47{bottom:832.500000px;}
.y6e{bottom:844.500000px;}
.yac{bottom:848.520000px;}
.ye{bottom:853.500000px;}
.y8e{bottom:856.500000px;}
.y45{bottom:858.000000px;}
.y6d{bottom:868.500000px;}
.yab{bottom:869.400000px;}
.yc{bottom:877.500000px;}
.yca{bottom:880.500000px;}
.y44{bottom:882.000000px;}
.yaa{bottom:889.920000px;}
.y6c{bottom:894.000000px;}
.ya{bottom:903.000000px;}
.y8d{bottom:906.000000px;}
.y42{bottom:907.500000px;}
.y6b{bottom:923.040000px;}
.y8{bottom:927.000000px;}
.yc9{bottom:930.000000px;}
.y40{bottom:931.500000px;}
.y6a{bottom:943.560000px;}
.y6{bottom:951.000000px;}
.y3f{bottom:955.500000px;}
.y69{bottom:964.440000px;}
.yc8{bottom:979.500000px;}
.y5{bottom:980.640000px;}
.y3d{bottom:981.000000px;}
.y4{bottom:1001.520000px;}
.y3b{bottom:1005.000000px;}
.y3{bottom:1022.040000px;}
.yc6{bottom:1029.000000px;}
.y3a{bottom:1030.500000px;}
.y2{bottom:1042.920000px;}
.y38{bottom:1054.500000px;}
.y1{bottom:1063.440000px;}
.h5{height:24.000000px;}
.h4{height:25.500000px;}
.h3{height:27.000000px;}
.h1{height:48.796875px;}
.h2{height:49.992188px;}
.h6{height:54.000000px;}
.h0{height:1188.000000px;}
.w1{width:160.500000px;}
.w2{width:162.000000px;}
.w3{width:163.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:8.700072px;}
.x1{left:169.920036px;}
.x3{left:328.500000px;}
.x6{left:330.000000px;}
.x4{left:489.000000px;}
.x7{left:490.500000px;}
.x5{left:648.000000px;}
.x8{left:651.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-15.987200pt;}
.ws0{word-spacing:0.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:5.066667pt;}
.y1b{bottom:5.280000pt;}
.yb{bottom:5.333333pt;}
.y4b{bottom:5.386667pt;}
.y1f{bottom:5.440000pt;}
.y43{bottom:5.493333pt;}
.y15{bottom:5.546667pt;}
.y23{bottom:5.600000pt;}
.y46{bottom:5.653333pt;}
.y19{bottom:5.706667pt;}
.y3e{bottom:5.760000pt;}
.yf{bottom:5.813333pt;}
.y1d{bottom:5.866667pt;}
.y41{bottom:5.920000pt;}
.y13{bottom:5.973333pt;}
.y39{bottom:6.026667pt;}
.y9{bottom:6.080000pt;}
.y17{bottom:6.133333pt;}
.y3c{bottom:6.186667pt;}
.yd{bottom:6.240000pt;}
.y4d{bottom:6.293333pt;}
.y21{bottom:6.346667pt;}
.y87{bottom:6.400000pt;}
.y50{bottom:6.453333pt;}
.y7{bottom:6.506667pt;}
.y48{bottom:6.560000pt;}
.yc7{bottom:6.613333pt;}
.ydd{bottom:101.333333pt;}
.y37{bottom:102.666667pt;}
.ya9{bottom:104.000000pt;}
.y68{bottom:106.666667pt;}
.yc5{bottom:112.000000pt;}
.y8c{bottom:114.666667pt;}
.y107{bottom:117.440000pt;}
.ydc{bottom:122.666667pt;}
.y36{bottom:124.000000pt;}
.ya8{bottom:125.333333pt;}
.y67{bottom:128.000000pt;}
.ye7{bottom:133.333333pt;}
.yc4{bottom:134.666667pt;}
.y8b{bottom:136.000000pt;}
.y106{bottom:136.960000pt;}
.ydb{bottom:145.333333pt;}
.y35{bottom:146.666667pt;}
.ya7{bottom:148.000000pt;}
.y66{bottom:150.666667pt;}
.yc3{bottom:156.000000pt;}
.y105{bottom:156.160000pt;}
.y8a{bottom:158.666667pt;}
.yda{bottom:166.666667pt;}
.y34{bottom:168.000000pt;}
.ya6{bottom:169.333333pt;}
.y65{bottom:172.000000pt;}
.y104{bottom:175.360000pt;}
.yc2{bottom:178.666667pt;}
.y89{bottom:180.000000pt;}
.y33{bottom:189.333333pt;}
.ya5{bottom:192.000000pt;}
.y64{bottom:193.333333pt;}
.y103{bottom:194.880000pt;}
.yc1{bottom:200.000000pt;}
.y88{bottom:202.666667pt;}
.yd9{bottom:210.666667pt;}
.y32{bottom:212.000000pt;}
.ya4{bottom:213.333333pt;}
.y102{bottom:214.080000pt;}
.y63{bottom:216.000000pt;}
.ye6{bottom:221.333333pt;}
.yc0{bottom:222.666667pt;}
.y86{bottom:224.000000pt;}
.y101{bottom:233.280000pt;}
.y31{bottom:233.333333pt;}
.ya3{bottom:236.000000pt;}
.y62{bottom:237.333333pt;}
.ybf{bottom:244.000000pt;}
.y85{bottom:246.666667pt;}
.y100{bottom:252.800000pt;}
.yd8{bottom:254.666667pt;}
.y30{bottom:256.000000pt;}
.ya2{bottom:257.333333pt;}
.y61{bottom:260.000000pt;}
.ybe{bottom:266.666667pt;}
.y84{bottom:268.000000pt;}
.yff{bottom:272.000000pt;}
.y2f{bottom:277.333333pt;}
.ya1{bottom:278.666667pt;}
.y60{bottom:281.333333pt;}
.ybd{bottom:288.000000pt;}
.y83{bottom:290.666667pt;}
.yfe{bottom:291.200000pt;}
.yd7{bottom:298.666667pt;}
.y2e{bottom:300.000000pt;}
.ya0{bottom:301.333333pt;}
.y5f{bottom:302.666667pt;}
.ye5{bottom:309.333333pt;}
.ybc{bottom:310.666667pt;}
.yfd{bottom:310.720000pt;}
.y82{bottom:312.000000pt;}
.y2d{bottom:321.333333pt;}
.y9f{bottom:322.666667pt;}
.y5e{bottom:325.333333pt;}
.yfc{bottom:329.920000pt;}
.ybb{bottom:332.000000pt;}
.y81{bottom:333.333333pt;}
.y2c{bottom:342.666667pt;}
.yea{bottom:344.000000pt;}
.y9e{bottom:345.333333pt;}
.y5d{bottom:346.666667pt;}
.yfb{bottom:349.120000pt;}
.yba{bottom:354.666667pt;}
.y80{bottom:356.000000pt;}
.y2b{bottom:365.333333pt;}
.y9d{bottom:366.666667pt;}
.yfa{bottom:368.640000pt;}
.y5c{bottom:369.333333pt;}
.yb9{bottom:376.000000pt;}
.y7f{bottom:377.333333pt;}
.y2a{bottom:386.666667pt;}
.yf9{bottom:387.840000pt;}
.ye9{bottom:388.000000pt;}
.y9c{bottom:389.333333pt;}
.y5b{bottom:390.666667pt;}
.ye4{bottom:397.333333pt;}
.yb8{bottom:398.666667pt;}
.y7e{bottom:400.000000pt;}
.yf8{bottom:407.040000pt;}
.y29{bottom:409.333333pt;}
.y9b{bottom:410.666667pt;}
.y5a{bottom:412.000000pt;}
.yb7{bottom:420.000000pt;}
.y7d{bottom:421.333333pt;}
.yf7{bottom:426.560000pt;}
.y28{bottom:430.666667pt;}
.ye8{bottom:432.000000pt;}
.y9a{bottom:433.333333pt;}
.y59{bottom:434.666667pt;}
.yb6{bottom:442.666667pt;}
.y7c{bottom:444.000000pt;}
.yf6{bottom:445.760000pt;}
.y27{bottom:452.000000pt;}
.yd6{bottom:453.333333pt;}
.y99{bottom:454.666667pt;}
.y58{bottom:456.000000pt;}
.yb5{bottom:464.000000pt;}
.yf5{bottom:465.280000pt;}
.y7b{bottom:465.333333pt;}
.y26{bottom:474.666667pt;}
.y98{bottom:476.000000pt;}
.y57{bottom:478.666667pt;}
.yf4{bottom:484.480000pt;}
.ye3{bottom:485.333333pt;}
.yb4{bottom:486.666667pt;}
.y7a{bottom:488.000000pt;}
.y25{bottom:496.000000pt;}
.yd5{bottom:497.333333pt;}
.y97{bottom:498.666667pt;}
.y56{bottom:500.000000pt;}
.yf3{bottom:503.680000pt;}
.yb3{bottom:508.000000pt;}
.y79{bottom:509.333333pt;}
.y24{bottom:517.333333pt;}
.yd4{bottom:518.666667pt;}
.y96{bottom:520.000000pt;}
.y55{bottom:521.333333pt;}
.yf2{bottom:523.200000pt;}
.yb2{bottom:530.666667pt;}
.y78{bottom:532.000000pt;}
.y22{bottom:540.000000pt;}
.yd3{bottom:541.333333pt;}
.yf1{bottom:542.400000pt;}
.y95{bottom:542.666667pt;}
.y54{bottom:544.000000pt;}
.yb1{bottom:552.000000pt;}
.y77{bottom:553.333333pt;}
.y20{bottom:561.333333pt;}
.yf0{bottom:561.600000pt;}
.yd2{bottom:562.666667pt;}
.y94{bottom:564.000000pt;}
.y53{bottom:565.333333pt;}
.ye2{bottom:573.333333pt;}
.y76{bottom:574.666667pt;}
.yef{bottom:581.120000pt;}
.y1e{bottom:584.000000pt;}
.yd1{bottom:585.333333pt;}
.y93{bottom:586.666667pt;}
.y52{bottom:588.000000pt;}
.yb0{bottom:596.000000pt;}
.y75{bottom:597.333333pt;}
.yee{bottom:600.320000pt;}
.y1c{bottom:605.333333pt;}
.yd0{bottom:606.666667pt;}
.y92{bottom:608.000000pt;}
.y51{bottom:609.333333pt;}
.y74{bottom:618.666667pt;}
.yed{bottom:619.520000pt;}
.y1a{bottom:628.000000pt;}
.ycf{bottom:629.333333pt;}
.y4f{bottom:630.666667pt;}
.yec{bottom:639.040000pt;}
.yaf{bottom:640.000000pt;}
.y73{bottom:641.333333pt;}
.y18{bottom:649.333333pt;}
.yce{bottom:650.666667pt;}
.y91{bottom:652.000000pt;}
.y4e{bottom:653.333333pt;}
.yeb{bottom:658.560000pt;}
.ye1{bottom:661.333333pt;}
.y72{bottom:662.666667pt;}
.y16{bottom:670.666667pt;}
.ycd{bottom:673.333333pt;}
.y4c{bottom:674.666667pt;}
.yae{bottom:684.000000pt;}
.y71{bottom:685.333333pt;}
.ye0{bottom:687.680000pt;}
.y14{bottom:693.333333pt;}
.ycc{bottom:694.666667pt;}
.y90{bottom:696.000000pt;}
.y4a{bottom:697.333333pt;}
.ydf{bottom:706.240000pt;}
.y70{bottom:706.666667pt;}
.y12{bottom:714.666667pt;}
.y8f{bottom:717.333333pt;}
.y49{bottom:718.666667pt;}
.yde{bottom:724.480000pt;}
.yad{bottom:728.000000pt;}
.y6f{bottom:729.333333pt;}
.y10{bottom:737.333333pt;}
.ycb{bottom:738.666667pt;}
.y47{bottom:740.000000pt;}
.y6e{bottom:750.666667pt;}
.yac{bottom:754.240000pt;}
.ye{bottom:758.666667pt;}
.y8e{bottom:761.333333pt;}
.y45{bottom:762.666667pt;}
.y6d{bottom:772.000000pt;}
.yab{bottom:772.800000pt;}
.yc{bottom:780.000000pt;}
.yca{bottom:782.666667pt;}
.y44{bottom:784.000000pt;}
.yaa{bottom:791.040000pt;}
.y6c{bottom:794.666667pt;}
.ya{bottom:802.666667pt;}
.y8d{bottom:805.333333pt;}
.y42{bottom:806.666667pt;}
.y6b{bottom:820.480000pt;}
.y8{bottom:824.000000pt;}
.yc9{bottom:826.666667pt;}
.y40{bottom:828.000000pt;}
.y6a{bottom:838.720000pt;}
.y6{bottom:845.333333pt;}
.y3f{bottom:849.333333pt;}
.y69{bottom:857.280000pt;}
.yc8{bottom:870.666667pt;}
.y5{bottom:871.680000pt;}
.y3d{bottom:872.000000pt;}
.y4{bottom:890.240000pt;}
.y3b{bottom:893.333333pt;}
.y3{bottom:908.480000pt;}
.yc6{bottom:914.666667pt;}
.y3a{bottom:916.000000pt;}
.y2{bottom:927.040000pt;}
.y38{bottom:937.333333pt;}
.y1{bottom:945.280000pt;}
.h5{height:21.333333pt;}
.h4{height:22.666667pt;}
.h3{height:24.000000pt;}
.h1{height:43.375000pt;}
.h2{height:44.437500pt;}
.h6{height:48.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:142.666667pt;}
.w2{width:144.000000pt;}
.w3{width:145.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.733397pt;}
.x1{left:151.040032pt;}
.x3{left:292.000000pt;}
.x6{left:293.333333pt;}
.x4{left:434.666667pt;}
.x7{left:436.000000pt;}
.x5{left:576.000000pt;}
.x8{left:578.666667pt;}
}




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