
    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_c1e0d518d36439ac50632185.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031000;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_913c62353194d3aa33949236.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_bd84705b73559d7d6c0b9966.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031000;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_3febbb93b569e0931ae6278b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713867;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_879791f6dadb10983ae2372b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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;}
.v1{vertical-align:95.217303px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:101.983595px;}
.ls1{letter-spacing:126.028129px;}
.ls0{letter-spacing:153.022856px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-70.560002px;}
.ws4{word-spacing:-66.480000px;}
.ws1{word-spacing:-58.800000px;}
.ws3{word-spacing:-57.330002px;}
.ws0{word-spacing:-29.400000px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-4392.195442px;}
._9{margin-left:-25.416001px;}
._2{margin-left:-18.000001px;}
._b{margin-left:-14.402475px;}
._e{margin-left:-12.960000px;}
._3{margin-left:-11.880000px;}
._6{margin-left:-10.800000px;}
._4{margin-left:-8.640000px;}
._8{margin-left:-7.416000px;}
._1{margin-left:-5.400000px;}
._7{margin-left:-3.960000px;}
._5{margin-left:-2.880000px;}
._0{margin-left:-1.800000px;}
._c{width:345.150011px;}
._d{width:1747.385785px;}
.fc5{color:rgb(44,123,51);}
.fc7{color:transparent;}
.fc4{color:rgb(65,65,67);}
.fc3{color:rgb(32,32,33);}
.fc6{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,153,153);}
.fc0{color:rgb(0,114,114);}
.fs2{font-size:120.000001px;}
.fs6{font-size:167.999999px;}
.fs4{font-size:234.000007px;}
.fs3{font-size:240.000002px;}
.fs1{font-size:288.000009px;}
.fs5{font-size:324.000010px;}
.fs0{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y9{bottom:47.239767px;}
.y8{bottom:119.239770px;}
.y7{bottom:155.239755px;}
.y6{bottom:191.239756px;}
.y5{bottom:227.239757px;}
.y4{bottom:263.239756px;}
.y3f{bottom:470.911991px;}
.y46{bottom:478.250973px;}
.y4e{bottom:486.495941px;}
.y45{bottom:514.250975px;}
.y4d{bottom:522.495942px;}
.y44{bottom:550.250974px;}
.y3e{bottom:557.311994px;}
.y4c{bottom:558.495944px;}
.y4b{bottom:594.495945px;}
.y43{bottom:614.474896px;}
.y4a{bottom:630.495946px;}
.y3d{bottom:643.711996px;}
.y49{bottom:666.495947px;}
.y42{bottom:672.676630px;}
.y48{bottom:702.495948px;}
.y41{bottom:708.676631px;}
.y3c{bottom:730.111999px;}
.y47{bottom:738.495952px;}
.y40{bottom:744.676630px;}
.y3b{bottom:816.511923px;}
.y3a{bottom:902.911915px;}
.y58{bottom:906.104653px;}
.y57{bottom:976.304644px;}
.y39{bottom:989.311895px;}
.y38{bottom:1075.711886px;}
.y37{bottom:1162.111900px;}
.y36{bottom:1248.511903px;}
.y2e{bottom:1372.931293px;}
.y1e{bottom:1648.145891px;}
.y1d{bottom:1734.546006px;}
.y54{bottom:1764.986617px;}
.y1c{bottom:1820.946009px;}
.y35{bottom:1835.064669px;}
.y53{bottom:1836.986619px;}
.y34{bottom:1905.264694px;}
.y52{bottom:1908.986611px;}
.y33{bottom:1975.464674px;}
.y51{bottom:1980.986613px;}
.y1b{bottom:1993.745902px;}
.y32{bottom:2045.664665px;}
.y50{bottom:2052.986604px;}
.y1a{bottom:2080.145871px;}
.y31{bottom:2115.864667px;}
.y4f{bottom:2124.986606px;}
.y19{bottom:2166.545863px;}
.y30{bottom:2186.064658px;}
.y2f{bottom:2240.520513px;}
.y18{bottom:2339.345834px;}
.y17{bottom:2425.745803px;}
.y25{bottom:2428.917291px;}
.y2b{bottom:2434.915802px;}
.y22{bottom:2448.541792px;}
.y2a{bottom:2505.115805px;}
.y16{bottom:2512.145806px;}
.y24{bottom:2558.397381px;}
.y29{bottom:2575.315796px;}
.y23{bottom:2628.597372px;}
.y21{bottom:2635.834048px;}
.y15{bottom:2684.945789px;}
.y20{bottom:2707.834050px;}
.y28{bottom:2752.651464px;}
.y14{bottom:2771.345781px;}
.y1f{bottom:2779.834056px;}
.y2d{bottom:2809.858177px;}
.y13{bottom:2857.745772px;}
.y27{bottom:2871.634629px;}
.y2c{bottom:2907.058174px;}
.y11{bottom:2911.107719px;}
.y26{bottom:2941.834620px;}
.y10{bottom:2983.107725px;}
.y12{bottom:3030.545778px;}
.yf{bottom:3329.159982px;}
.ye{bottom:3415.559985px;}
.yd{bottom:3501.959909px;}
.yc{bottom:3674.759881px;}
.yb{bottom:3761.159872px;}
.ya{bottom:3933.959889px;}
.y3{bottom:4242.669068px;}
.y2{bottom:4329.069082px;}
.y1{bottom:4527.789082px;}
.y56{bottom:4641.117868px;}
.y55{bottom:4691.517863px;}
.h3{height:92.520001px;}
.ha{height:129.528000px;}
.h9{height:174.726564px;}
.h6{height:180.414006px;}
.h5{height:185.040001px;}
.h2{height:213.120007px;}
.h4{height:222.048007px;}
.h7{height:249.804008px;}
.h1{height:277.560009px;}
.h8{height:280.257304px;}
.h0{height:5056.500000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x2{left:96.342877px;}
.x12{left:149.839542px;}
.xe{left:169.487724px;}
.x3{left:180.860563px;}
.x1{left:182.734971px;}
.x6{left:187.149223px;}
.x13{left:224.546576px;}
.xa{left:1335.800743px;}
.x9{left:1354.003356px;}
.x21{left:1386.340244px;}
.xf{left:1501.097009px;}
.x14{left:1636.062089px;}
.x1c{left:1637.630415px;}
.x1b{left:1639.444978px;}
.x16{left:1672.077781px;}
.x15{left:1677.025851px;}
.x1a{left:1750.850420px;}
.x1d{left:1859.002979px;}
.xb{left:1870.558710px;}
.x17{left:1932.516883px;}
.x18{left:1937.884880px;}
.x19{left:1958.876552px;}
.x5{left:1965.491824px;}
.x10{left:2358.039363px;}
.x8{left:2374.984651px;}
.x11{left:2431.395078px;}
.x22{left:2471.480854px;}
.x4{left:2474.577878px;}
.x7{left:2756.693338px;}
.x1f{left:2853.187719px;}
.x1e{left:2856.183616px;}
.x20{left:2896.683618px;}
.xc{left:3147.905366px;}
.x24{left:3180.677359px;}
.x23{left:3229.846663px;}
.xd{left:3232.388398px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:84.637603pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:90.652085pt;}
.ls1{letter-spacing:112.025004pt;}
.ls0{letter-spacing:136.020317pt;}
.ws2{word-spacing:-62.720002pt;}
.ws4{word-spacing:-59.093334pt;}
.ws1{word-spacing:-52.266667pt;}
.ws3{word-spacing:-50.960002pt;}
.ws0{word-spacing:-26.133334pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-3904.173726pt;}
._9{margin-left:-22.592001pt;}
._2{margin-left:-16.000001pt;}
._b{margin-left:-12.802200pt;}
._e{margin-left:-11.520000pt;}
._3{margin-left:-10.560000pt;}
._6{margin-left:-9.600000pt;}
._4{margin-left:-7.680000pt;}
._8{margin-left:-6.592000pt;}
._1{margin-left:-4.800000pt;}
._7{margin-left:-3.520000pt;}
._5{margin-left:-2.560000pt;}
._0{margin-left:-1.600000pt;}
._c{width:306.800010pt;}
._d{width:1553.231809pt;}
.fs2{font-size:106.666667pt;}
.fs6{font-size:149.333333pt;}
.fs4{font-size:208.000007pt;}
.fs3{font-size:213.333335pt;}
.fs1{font-size:256.000008pt;}
.fs5{font-size:288.000009pt;}
.fs0{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:41.990904pt;}
.y8{bottom:105.990906pt;}
.y7{bottom:137.990893pt;}
.y6{bottom:169.990894pt;}
.y5{bottom:201.990895pt;}
.y4{bottom:233.990894pt;}
.y3f{bottom:418.588436pt;}
.y46{bottom:425.111976pt;}
.y4e{bottom:432.440837pt;}
.y45{bottom:457.111977pt;}
.y4d{bottom:464.440838pt;}
.y44{bottom:489.111976pt;}
.y3e{bottom:495.388439pt;}
.y4c{bottom:496.440839pt;}
.y4b{bottom:528.440840pt;}
.y43{bottom:546.199907pt;}
.y4a{bottom:560.440841pt;}
.y3d{bottom:572.188441pt;}
.y49{bottom:592.440842pt;}
.y42{bottom:597.934782pt;}
.y48{bottom:624.440843pt;}
.y41{bottom:629.934783pt;}
.y3c{bottom:648.988444pt;}
.y47{bottom:656.440846pt;}
.y40{bottom:661.934782pt;}
.y3b{bottom:725.788376pt;}
.y3a{bottom:802.588369pt;}
.y58{bottom:805.426359pt;}
.y57{bottom:867.826351pt;}
.y39{bottom:879.388351pt;}
.y38{bottom:956.188343pt;}
.y37{bottom:1032.988356pt;}
.y36{bottom:1109.788358pt;}
.y2e{bottom:1220.383372pt;}
.y1e{bottom:1465.018570pt;}
.y1d{bottom:1541.818672pt;}
.y54{bottom:1568.876993pt;}
.y1c{bottom:1618.618675pt;}
.y35{bottom:1631.168595pt;}
.y53{bottom:1632.876995pt;}
.y34{bottom:1693.568617pt;}
.y52{bottom:1696.876987pt;}
.y33{bottom:1755.968599pt;}
.y51{bottom:1760.876989pt;}
.y1b{bottom:1772.218580pt;}
.y32{bottom:1818.368591pt;}
.y50{bottom:1824.876981pt;}
.y1a{bottom:1849.018552pt;}
.y31{bottom:1880.768593pt;}
.y4f{bottom:1888.876983pt;}
.y19{bottom:1925.818544pt;}
.y30{bottom:1943.168585pt;}
.y2f{bottom:1991.573790pt;}
.y18{bottom:2079.418519pt;}
.y17{bottom:2156.218492pt;}
.y25{bottom:2159.037592pt;}
.y2b{bottom:2164.369602pt;}
.y22{bottom:2176.481592pt;}
.y2a{bottom:2226.769604pt;}
.y16{bottom:2233.018494pt;}
.y24{bottom:2274.131006pt;}
.y29{bottom:2289.169596pt;}
.y23{bottom:2336.530998pt;}
.y21{bottom:2342.963598pt;}
.y15{bottom:2386.618479pt;}
.y20{bottom:2406.963600pt;}
.y28{bottom:2446.801301pt;}
.y14{bottom:2463.418472pt;}
.y1f{bottom:2470.963605pt;}
.y2d{bottom:2497.651713pt;}
.y13{bottom:2540.218464pt;}
.y27{bottom:2552.564115pt;}
.y2c{bottom:2584.051711pt;}
.y11{bottom:2587.651306pt;}
.y26{bottom:2614.964107pt;}
.y10{bottom:2651.651311pt;}
.y12{bottom:2693.818469pt;}
.yf{bottom:2959.253318pt;}
.ye{bottom:3036.053320pt;}
.yd{bottom:3112.853252pt;}
.yc{bottom:3266.453227pt;}
.yb{bottom:3343.253220pt;}
.ya{bottom:3496.853235pt;}
.y3{bottom:3771.261394pt;}
.y2{bottom:3848.061406pt;}
.y1{bottom:4024.701407pt;}
.y56{bottom:4125.438105pt;}
.y55{bottom:4170.238100pt;}
.h3{height:82.240001pt;}
.ha{height:115.136000pt;}
.h9{height:155.312501pt;}
.h6{height:160.368005pt;}
.h5{height:164.480001pt;}
.h2{height:189.440006pt;}
.h4{height:197.376006pt;}
.h7{height:222.048007pt;}
.h1{height:246.720008pt;}
.h8{height:249.117604pt;}
.h0{height:4494.666667pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x2{left:85.638113pt;}
.x12{left:133.190704pt;}
.xe{left:150.655755pt;}
.x3{left:160.764945pt;}
.x1{left:162.431085pt;}
.x6{left:166.354865pt;}
.x13{left:199.596956pt;}
.xa{left:1187.378438pt;}
.x9{left:1203.558539pt;}
.x21{left:1232.302439pt;}
.xf{left:1334.308453pt;}
.x14{left:1454.277413pt;}
.x1c{left:1455.671480pt;}
.x1b{left:1457.284425pt;}
.x16{left:1486.291361pt;}
.x15{left:1490.689646pt;}
.x1a{left:1556.311485pt;}
.x1d{left:1652.447093pt;}
.xb{left:1662.718853pt;}
.x17{left:1717.792785pt;}
.x18{left:1722.564338pt;}
.x19{left:1741.223602pt;}
.x5{left:1747.103844pt;}
.x10{left:2096.034989pt;}
.x8{left:2111.097468pt;}
.x11{left:2161.240069pt;}
.x22{left:2196.871870pt;}
.x4{left:2199.624780pt;}
.x7{left:2450.394078pt;}
.x1f{left:2536.166861pt;}
.x1e{left:2538.829881pt;}
.x20{left:2574.829882pt;}
.xc{left:2798.138104pt;}
.x24{left:2827.268763pt;}
.x23{left:2870.974812pt;}
.xd{left:2873.234132pt;}
}




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