
    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_f2e2038ad69987ad1f97c561.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_fbb568ce9f947a6c84a8d894.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_2f2e5d0cc35673dae20c283b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_ea374033fbf15ea63f7d78e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-118.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:72.000000px;}
.lsa{letter-spacing:-0.325200px;}
.ls6{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.162600px;}
.ls5{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.181200px;}
.ls4{letter-spacing:0.288000px;}
.ls2{letter-spacing:148.665600px;}
.ls1{letter-spacing:148.716000px;}
.ls0{letter-spacing:265.356000px;}
.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;}
}
.wsd{word-spacing:-144.144000px;}
.wsc{word-spacing:-144.000000px;}
.ws10{word-spacing:-80.064000px;}
.ws12{word-spacing:-73.440000px;}
.wsf{word-spacing:-53.482752px;}
.wse{word-spacing:-53.442720px;}
.ws7{word-spacing:-40.032000px;}
.ws0{word-spacing:-1.627200px;}
.ws1{word-spacing:-1.152000px;}
.ws2{word-spacing:-0.432000px;}
.ws4{word-spacing:-0.312000px;}
.ws8{word-spacing:-0.288000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:0.144000px;}
.wsa{word-spacing:0.288000px;}
.ws6{word-spacing:0.432000px;}
.ws3{word-spacing:0.576000px;}
.ws9{word-spacing:1.008000px;}
.ws11{word-spacing:23.546880px;}
.ws13{word-spacing:30.564720px;}
.ws14{word-spacing:617.892000px;}
._f{margin-left:-6046.289520px;}
._11{margin-left:-21.723120px;}
._6{margin-left:-15.984000px;}
._8{margin-left:-14.396784px;}
._a{margin-left:-13.188240px;}
._5{margin-left:-11.664000px;}
._d{margin-left:-9.127296px;}
._4{margin-left:-7.488000px;}
._c{margin-left:-4.803840px;}
._7{margin-left:-3.652560px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.080000px;}
._2{width:1.440000px;}
._9{width:3.438720px;}
._1{width:41.448000px;}
._e{width:57.783456px;}
._b{width:69.291120px;}
._10{width:2209.988880px;}
.fc7{color:transparent;}
.fc6{color:rgb(63,67,80);}
.fc4{color:rgb(20,90,160);}
.fc3{color:rgb(20,200,255);}
.fc2{color:rgb(0,40,100);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,40,99);}
.fs2{font-size:7.200000px;}
.fsf{font-size:131.760000px;}
.fs10{font-size:131.904000px;}
.fs3{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fsa{font-size:159.840000px;}
.fs6{font-size:192.240000px;}
.fs7{font-size:192.384000px;}
.fsc{font-size:216.000000px;}
.fsd{font-size:216.144000px;}
.fs9{font-size:239.760000px;}
.fs5{font-size:254.880000px;}
.fse{font-size:264.240000px;}
.fs8{font-size:288.000000px;}
.fs0{font-size:360.000000px;}
.fs1{font-size:360.144000px;}
.fsb{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:180.540000px;}
.y4b{bottom:247.470000px;}
.y49{bottom:332.820000px;}
.y48{bottom:390.420000px;}
.y1e{bottom:444.525000px;}
.y4a{bottom:488.370000px;}
.y1d{bottom:502.125000px;}
.y1c{bottom:587.805000px;}
.y25{bottom:620.670000px;}
.y24{bottom:686.910000px;}
.y40{bottom:695.700000px;}
.y3f{bottom:767.700000px;}
.y23{bottom:775.695000px;}
.y3e{bottom:839.700000px;}
.y22{bottom:841.935000px;}
.y21{bottom:908.175000px;}
.y3d{bottom:911.700000px;}
.y2{bottom:980.250000px;}
.y3c{bottom:983.700000px;}
.y20{bottom:996.915000px;}
.y36{bottom:1030.755000px;}
.y3b{bottom:1055.700000px;}
.y1f{bottom:1085.655000px;}
.y35{bottom:1102.755000px;}
.y3a{bottom:1127.700000px;}
.y34{bottom:1174.755000px;}
.y39{bottom:1199.700000px;}
.y29{bottom:1230.090000px;}
.y33{bottom:1267.815000px;}
.y38{bottom:1271.700000px;}
.y28{bottom:1296.330000px;}
.y27{bottom:1362.570000px;}
.y37{bottom:1364.760000px;}
.y5a{bottom:1369.050000px;}
.y59{bottom:1408.650000px;}
.y1{bottom:1431.330000px;}
.y26{bottom:1451.310000px;}
.y58{bottom:1477.950000px;}
.y4d{bottom:1533.345000px;}
.y57{bottom:1548.150000px;}
.y42{bottom:1577.310000px;}
.y56{bottom:1634.550000px;}
.y1a{bottom:1644.810000px;}
.y19{bottom:1709.640000px;}
.y55{bottom:1715.550000px;}
.y18{bottom:1774.440000px;}
.y54{bottom:1785.750000px;}
.y17{bottom:1839.240000px;}
.y53{bottom:1866.780000px;}
.y52{bottom:1936.980000px;}
.y16{bottom:1968.840000px;}
.y3{bottom:2015.925000px;}
.y51{bottom:2017.980000px;}
.y15{bottom:2033.640000px;}
.y50{bottom:2088.180000px;}
.y14{bottom:2098.440000px;}
.y13{bottom:2163.240000px;}
.y4f{bottom:2169.180000px;}
.y2e{bottom:2211.510000px;}
.y4e{bottom:2239.380000px;}
.y32{bottom:2267.430000px;}
.y2d{bottom:2277.750000px;}
.y12{bottom:2292.840000px;}
.y31{bottom:2339.460000px;}
.y2c{bottom:2343.990000px;}
.y11{bottom:2357.640000px;}
.y2b{bottom:2410.230000px;}
.y30{bottom:2411.460000px;}
.y10{bottom:2422.440000px;}
.yf{bottom:2487.270000px;}
.y2a{bottom:2498.970000px;}
.y2f{bottom:2504.520000px;}
.ye{bottom:2552.070000px;}
.y41{bottom:2598.270000px;}
.yd{bottom:2616.870000px;}
.yc{bottom:2681.670000px;}
.yb{bottom:2746.470000px;}
.y47{bottom:2804.685000px;}
.ya{bottom:2811.270000px;}
.y43{bottom:2820.030000px;}
.y46{bottom:2869.530000px;}
.y9{bottom:2876.070000px;}
.y45{bottom:2934.330000px;}
.y8{bottom:3005.670000px;}
.y44{bottom:3025.980000px;}
.y7{bottom:3070.470000px;}
.y1b{bottom:3112.560000px;}
.y6{bottom:3135.270000px;}
.y5{bottom:3200.070000px;}
.y4{bottom:3264.915000px;}
.h4{height:0.000150px;}
.h5{height:7.161328px;}
.h13{height:118.185117px;}
.h15{height:118.314281px;}
.h6{height:129.164062px;}
.h7{height:129.293227px;}
.h9{height:144.555469px;}
.h14{height:144.663750px;}
.ha{height:172.434023px;}
.hb{height:172.563188px;}
.h10{height:193.746094px;}
.h11{height:193.875258px;}
.h12{height:198.696094px;}
.he{height:215.372109px;}
.hd{height:216.562500px;}
.h8{height:228.620391px;}
.hc{height:258.328125px;}
.h2{height:322.910156px;}
.h3{height:323.039320px;}
.hf{height:477.803812px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w3{width:0.000150px;}
.w2{width:5055.479925px;}
.w0{width:5055.480000px;}
.w1{width:5055.750000px;}
.x4{left:-1549.905075px;}
.x0{left:0.000000px;}
.x5{left:37.331925px;}
.xd{left:48.131925px;}
.xc{left:91.331925px;}
.xf{left:100.907925px;}
.xe{left:103.103925px;}
.x16{left:108.971925px;}
.x6{left:120.491925px;}
.xb{left:1272.809925px;}
.x11{left:1283.609925px;}
.x15{left:1357.889925px;}
.xa{left:2582.609925px;}
.x7{left:2593.409925px;}
.x8{left:2647.409925px;}
.x13{left:2726.249925px;}
.x10{left:3568.649925px;}
.x12{left:3764.189925px;}
.x9{left:3805.814925px;}
.x14{left:3816.614925px;}
.x3{left:5227.950000px;}
.x1{left:6476.759925px;}
.x2{left:6483.389925px;}
@media print{
.v2{vertical-align:-105.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:64.000000pt;}
.lsa{letter-spacing:-0.289067pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.144533pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.161067pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2{letter-spacing:132.147200pt;}
.ls1{letter-spacing:132.192000pt;}
.ls0{letter-spacing:235.872000pt;}
.wsd{word-spacing:-128.128000pt;}
.wsc{word-spacing:-128.000000pt;}
.ws10{word-spacing:-71.168000pt;}
.ws12{word-spacing:-65.280000pt;}
.wsf{word-spacing:-47.540224pt;}
.wse{word-spacing:-47.504640pt;}
.ws7{word-spacing:-35.584000pt;}
.ws0{word-spacing:-1.446400pt;}
.ws1{word-spacing:-1.024000pt;}
.ws2{word-spacing:-0.384000pt;}
.ws4{word-spacing:-0.277333pt;}
.ws8{word-spacing:-0.256000pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:0.128000pt;}
.wsa{word-spacing:0.256000pt;}
.ws6{word-spacing:0.384000pt;}
.ws3{word-spacing:0.512000pt;}
.ws9{word-spacing:0.896000pt;}
.ws11{word-spacing:20.930560pt;}
.ws13{word-spacing:27.168640pt;}
.ws14{word-spacing:549.237333pt;}
._f{margin-left:-5374.479573pt;}
._11{margin-left:-19.309440pt;}
._6{margin-left:-14.208000pt;}
._8{margin-left:-12.797141pt;}
._a{margin-left:-11.722880pt;}
._5{margin-left:-10.368000pt;}
._d{margin-left:-8.113152pt;}
._4{margin-left:-6.656000pt;}
._c{margin-left:-4.270080pt;}
._7{margin-left:-3.246720pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.280000pt;}
._9{width:3.056640pt;}
._1{width:36.842667pt;}
._e{width:51.363072pt;}
._b{width:61.592107pt;}
._10{width:1964.434560pt;}
.fs2{font-size:6.400000pt;}
.fsf{font-size:117.120000pt;}
.fs10{font-size:117.248000pt;}
.fs3{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fsa{font-size:142.080000pt;}
.fs6{font-size:170.880000pt;}
.fs7{font-size:171.008000pt;}
.fsc{font-size:192.000000pt;}
.fsd{font-size:192.128000pt;}
.fs9{font-size:213.120000pt;}
.fs5{font-size:226.560000pt;}
.fse{font-size:234.880000pt;}
.fs8{font-size:256.000000pt;}
.fs0{font-size:320.000000pt;}
.fs1{font-size:320.128000pt;}
.fsb{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:160.480000pt;}
.y4b{bottom:219.973333pt;}
.y49{bottom:295.840000pt;}
.y48{bottom:347.040000pt;}
.y1e{bottom:395.133333pt;}
.y4a{bottom:434.106667pt;}
.y1d{bottom:446.333333pt;}
.y1c{bottom:522.493333pt;}
.y25{bottom:551.706667pt;}
.y24{bottom:610.586667pt;}
.y40{bottom:618.400000pt;}
.y3f{bottom:682.400000pt;}
.y23{bottom:689.506667pt;}
.y3e{bottom:746.400000pt;}
.y22{bottom:748.386667pt;}
.y21{bottom:807.266667pt;}
.y3d{bottom:810.400000pt;}
.y2{bottom:871.333333pt;}
.y3c{bottom:874.400000pt;}
.y20{bottom:886.146667pt;}
.y36{bottom:916.226667pt;}
.y3b{bottom:938.400000pt;}
.y1f{bottom:965.026667pt;}
.y35{bottom:980.226667pt;}
.y3a{bottom:1002.400000pt;}
.y34{bottom:1044.226667pt;}
.y39{bottom:1066.400000pt;}
.y29{bottom:1093.413333pt;}
.y33{bottom:1126.946667pt;}
.y38{bottom:1130.400000pt;}
.y28{bottom:1152.293333pt;}
.y27{bottom:1211.173333pt;}
.y37{bottom:1213.120000pt;}
.y5a{bottom:1216.933333pt;}
.y59{bottom:1252.133333pt;}
.y1{bottom:1272.293333pt;}
.y26{bottom:1290.053333pt;}
.y58{bottom:1313.733333pt;}
.y4d{bottom:1362.973333pt;}
.y57{bottom:1376.133333pt;}
.y42{bottom:1402.053333pt;}
.y56{bottom:1452.933333pt;}
.y1a{bottom:1462.053333pt;}
.y19{bottom:1519.680000pt;}
.y55{bottom:1524.933333pt;}
.y18{bottom:1577.280000pt;}
.y54{bottom:1587.333333pt;}
.y17{bottom:1634.880000pt;}
.y53{bottom:1659.360000pt;}
.y52{bottom:1721.760000pt;}
.y16{bottom:1750.080000pt;}
.y3{bottom:1791.933333pt;}
.y51{bottom:1793.760000pt;}
.y15{bottom:1807.680000pt;}
.y50{bottom:1856.160000pt;}
.y14{bottom:1865.280000pt;}
.y13{bottom:1922.880000pt;}
.y4f{bottom:1928.160000pt;}
.y2e{bottom:1965.786667pt;}
.y4e{bottom:1990.560000pt;}
.y32{bottom:2015.493333pt;}
.y2d{bottom:2024.666667pt;}
.y12{bottom:2038.080000pt;}
.y31{bottom:2079.520000pt;}
.y2c{bottom:2083.546667pt;}
.y11{bottom:2095.680000pt;}
.y2b{bottom:2142.426667pt;}
.y30{bottom:2143.520000pt;}
.y10{bottom:2153.280000pt;}
.yf{bottom:2210.906667pt;}
.y2a{bottom:2221.306667pt;}
.y2f{bottom:2226.240000pt;}
.ye{bottom:2268.506667pt;}
.y41{bottom:2309.573333pt;}
.yd{bottom:2326.106667pt;}
.yc{bottom:2383.706667pt;}
.yb{bottom:2441.306667pt;}
.y47{bottom:2493.053333pt;}
.ya{bottom:2498.906667pt;}
.y43{bottom:2506.693333pt;}
.y46{bottom:2550.693333pt;}
.y9{bottom:2556.506667pt;}
.y45{bottom:2608.293333pt;}
.y8{bottom:2671.706667pt;}
.y44{bottom:2689.760000pt;}
.y7{bottom:2729.306667pt;}
.y1b{bottom:2766.720000pt;}
.y6{bottom:2786.906667pt;}
.y5{bottom:2844.506667pt;}
.y4{bottom:2902.146667pt;}
.h4{height:0.000133pt;}
.h5{height:6.365625pt;}
.h13{height:105.053437pt;}
.h15{height:105.168250pt;}
.h6{height:114.812500pt;}
.h7{height:114.927312pt;}
.h9{height:128.493750pt;}
.h14{height:128.590000pt;}
.ha{height:153.274687pt;}
.hb{height:153.389500pt;}
.h10{height:172.218750pt;}
.h11{height:172.333562pt;}
.h12{height:176.618750pt;}
.he{height:191.441875pt;}
.hd{height:192.500000pt;}
.h8{height:203.218125pt;}
.hc{height:229.625000pt;}
.h2{height:287.031250pt;}
.h3{height:287.146063pt;}
.hf{height:424.714500pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w3{width:0.000133pt;}
.w2{width:4493.759933pt;}
.w0{width:4493.760000pt;}
.w1{width:4494.000000pt;}
.x4{left:-1377.693400pt;}
.x0{left:0.000000pt;}
.x5{left:33.183933pt;}
.xd{left:42.783933pt;}
.xc{left:81.183933pt;}
.xf{left:89.695933pt;}
.xe{left:91.647933pt;}
.x16{left:96.863933pt;}
.x6{left:107.103933pt;}
.xb{left:1131.386600pt;}
.x11{left:1140.986600pt;}
.x15{left:1207.013266pt;}
.xa{left:2295.653266pt;}
.x7{left:2305.253266pt;}
.x8{left:2353.253266pt;}
.x13{left:2423.333266pt;}
.x10{left:3172.133266pt;}
.x12{left:3345.946600pt;}
.x9{left:3382.946600pt;}
.x14{left:3392.546600pt;}
.x3{left:4647.066667pt;}
.x1{left:5757.119933pt;}
.x2{left:5763.013266pt;}
}




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