
    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_15740a2bb1e82fdc7c739043.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_007be2773d798b02becd1096.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_abc48de2f40409c85462a3ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960938;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_2687dc1fde9ae43fd6abdd34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5a905994e84bd805e86fca34.woff2')format("woff");}.ff5{font-family:ff5;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.230400px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.149760px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-12.276000px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-4.470000px;}
._3{margin-left:-3.456000px;}
._5{margin-left:-2.250000px;}
._1{margin-left:-1.026000px;}
._2{width:1.056000px;}
._a{width:2.172000px;}
._8{width:3.600000px;}
._9{width:4.920000px;}
._b{width:6.378000px;}
._6{width:7.416000px;}
._7{width:8.664000px;}
._c{width:9.816000px;}
._0{width:731.736000px;}
.fc4{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.200000px;}
.y7{bottom:79.740000px;}
.y6{bottom:112.500000px;}
.y8{bottom:112.860000px;}
.y5{bottom:145.260000px;}
.y1c{bottom:171.900000px;}
.y7b{bottom:182.340000px;}
.y1b{bottom:195.660000px;}
.y4b{bottom:200.340000px;}
.y7a{bottom:206.100000px;}
.y1a{bottom:219.420000px;}
.y69{bottom:221.040000px;}
.y41{bottom:224.100000px;}
.y79{bottom:239.040000px;}
.y19{bottom:243.180000px;}
.y68{bottom:244.830000px;}
.y40{bottom:248.070000px;}
.y78{bottom:262.830000px;}
.y18{bottom:267.150000px;}
.y67{bottom:268.590000px;}
.y3f{bottom:271.830000px;}
.y8a{bottom:277.590000px;}
.y77{bottom:286.590000px;}
.y17{bottom:290.910000px;}
.y66{bottom:292.350000px;}
.y4a{bottom:295.590000px;}
.y3e{bottom:304.590000px;}
.y89{bottom:310.350000px;}
.y16{bottom:314.670000px;}
.y65{bottom:316.290000px;}
.y49{bottom:319.350000px;}
.y3d{bottom:328.350000px;}
.y15{bottom:338.430000px;}
.y76{bottom:343.290000px;}
.y64{bottom:349.050000px;}
.y3c{bottom:352.290000px;}
.y14{bottom:362.370000px;}
.y75{bottom:367.050000px;}
.y63{bottom:372.810000px;}
.y3b{bottom:376.050000px;}
.y74{bottom:390.810000px;}
.y13{bottom:395.130000px;}
.y62{bottom:396.570000px;}
.y3a{bottom:399.810000px;}
.y88{bottom:408.810000px;}
.y73{bottom:414.570000px;}
.y12{bottom:418.890000px;}
.y61{bottom:420.510000px;}
.y39{bottom:423.570000px;}
.y87{bottom:432.570000px;}
.y72{bottom:438.510000px;}
.y11{bottom:442.650000px;}
.y38{bottom:447.510000px;}
.y60{bottom:453.270000px;}
.y86{bottom:456.510000px;}
.y71{bottom:462.270000px;}
.y10{bottom:471.495000px;}
.y5f{bottom:477.075000px;}
.y37{bottom:480.315000px;}
.y70{bottom:495.075000px;}
.y5e{bottom:500.835000px;}
.y36{bottom:504.075000px;}
.y6f{bottom:518.835000px;}
.y5d{bottom:524.775000px;}
.y35{bottom:527.835000px;}
.y6e{bottom:542.775000px;}
.y5c{bottom:548.535000px;}
.y34{bottom:551.775000px;}
.y33{bottom:575.535000px;}
.y5b{bottom:581.295000px;}
.y6d{bottom:599.295000px;}
.y5a{bottom:605.055000px;}
.y32{bottom:608.295000px;}
.y85{bottom:623.055000px;}
.y59{bottom:628.995000px;}
.y31{bottom:632.055000px;}
.y84{bottom:646.995000px;}
.y58{bottom:652.755000px;}
.y30{bottom:655.995000px;}
.y2f{bottom:679.755000px;}
.y57{bottom:685.515000px;}
.y2e{bottom:703.545000px;}
.y56{bottom:709.305000px;}
.y2d{bottom:727.305000px;}
.y55{bottom:742.065000px;}
.y48{bottom:751.065000px;}
.y2c{bottom:760.065000px;}
.y54{bottom:766.005000px;}
.y47{bottom:775.005000px;}
.y2b{bottom:784.005000px;}
.y53{bottom:789.765000px;}
.y46{bottom:798.765000px;}
.y2a{bottom:807.765000px;}
.y52{bottom:813.525000px;}
.y45{bottom:822.525000px;}
.y29{bottom:831.525000px;}
.y51{bottom:837.285000px;}
.y44{bottom:846.285000px;}
.y28{bottom:855.285000px;}
.y83{bottom:864.285000px;}
.y50{bottom:870.225000px;}
.y27{bottom:879.225000px;}
.y82{bottom:888.225000px;}
.y4f{bottom:893.985000px;}
.y26{bottom:902.985000px;}
.y6c{bottom:911.985000px;}
.y4e{bottom:917.745000px;}
.y81{bottom:920.985000px;}
.y25{bottom:926.790000px;}
.y6b{bottom:935.790000px;}
.y80{bottom:944.790000px;}
.y24{bottom:950.550000px;}
.y6a{bottom:959.550000px;}
.y7f{bottom:968.550000px;}
.y43{bottom:974.490000px;}
.y23{bottom:983.490000px;}
.y7e{bottom:992.490000px;}
.yf{bottom:993.930000px;}
.y4d{bottom:998.250000px;}
.y22{bottom:1007.250000px;}
.y7d{bottom:1016.250000px;}
.ye{bottom:1026.870000px;}
.y21{bottom:1031.010000px;}
.y7c{bottom:1040.010000px;}
.yd{bottom:1050.630000px;}
.y42{bottom:1054.770000px;}
.y20{bottom:1063.770000px;}
.yc{bottom:1074.390000px;}
.y4c{bottom:1078.710000px;}
.y1f{bottom:1087.710000px;}
.yb{bottom:1104.090000px;}
.y1e{bottom:1111.470000px;}
.ya{bottom:1130.730000px;}
.y1d{bottom:1135.230000px;}
.y4{bottom:1168.020000px;}
.y3{bottom:1189.260000px;}
.y2{bottom:1208.520000px;}
.y1{bottom:1225.980000px;}
.h5{height:32.940000px;}
.h3{height:53.709961px;}
.h6{height:64.002656px;}
.h7{height:64.546875px;}
.h2{height:65.884219px;}
.h8{height:70.628906px;}
.h4{height:70.664062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.436000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:5.580000px;}
.x9{left:95.579987px;}
.x3{left:127.655987px;}
.x1{left:152.849987px;}
.x8{left:264.809987px;}
.x4{left:288.749987px;}
.x6{left:450.075000px;}
.x5{left:478.334987px;}
.x2{left:546.944987px;}
.xb{left:578.624987px;}
.xa{left:672.404987px;}
.xc{left:761.189987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.204800pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.133120pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-10.912000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-3.973333pt;}
._3{margin-left:-3.072000pt;}
._5{margin-left:-2.000000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.938667pt;}
._a{width:1.930667pt;}
._8{width:3.200000pt;}
._9{width:4.373333pt;}
._b{width:5.669333pt;}
._6{width:6.592000pt;}
._7{width:7.701333pt;}
._c{width:8.725333pt;}
._0{width:650.432000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.400000pt;}
.y7{bottom:70.880000pt;}
.y6{bottom:100.000000pt;}
.y8{bottom:100.320000pt;}
.y5{bottom:129.120000pt;}
.y1c{bottom:152.800000pt;}
.y7b{bottom:162.080000pt;}
.y1b{bottom:173.920000pt;}
.y4b{bottom:178.080000pt;}
.y7a{bottom:183.200000pt;}
.y1a{bottom:195.040000pt;}
.y69{bottom:196.480000pt;}
.y41{bottom:199.200000pt;}
.y79{bottom:212.480000pt;}
.y19{bottom:216.160000pt;}
.y68{bottom:217.626667pt;}
.y40{bottom:220.506667pt;}
.y78{bottom:233.626667pt;}
.y18{bottom:237.466667pt;}
.y67{bottom:238.746667pt;}
.y3f{bottom:241.626667pt;}
.y8a{bottom:246.746667pt;}
.y77{bottom:254.746667pt;}
.y17{bottom:258.586667pt;}
.y66{bottom:259.866667pt;}
.y4a{bottom:262.746667pt;}
.y3e{bottom:270.746667pt;}
.y89{bottom:275.866667pt;}
.y16{bottom:279.706667pt;}
.y65{bottom:281.146667pt;}
.y49{bottom:283.866667pt;}
.y3d{bottom:291.866667pt;}
.y15{bottom:300.826667pt;}
.y76{bottom:305.146667pt;}
.y64{bottom:310.266667pt;}
.y3c{bottom:313.146667pt;}
.y14{bottom:322.106667pt;}
.y75{bottom:326.266667pt;}
.y63{bottom:331.386667pt;}
.y3b{bottom:334.266667pt;}
.y74{bottom:347.386667pt;}
.y13{bottom:351.226667pt;}
.y62{bottom:352.506667pt;}
.y3a{bottom:355.386667pt;}
.y88{bottom:363.386667pt;}
.y73{bottom:368.506667pt;}
.y12{bottom:372.346667pt;}
.y61{bottom:373.786667pt;}
.y39{bottom:376.506667pt;}
.y87{bottom:384.506667pt;}
.y72{bottom:389.786667pt;}
.y11{bottom:393.466667pt;}
.y38{bottom:397.786667pt;}
.y60{bottom:402.906667pt;}
.y86{bottom:405.786667pt;}
.y71{bottom:410.906667pt;}
.y10{bottom:419.106667pt;}
.y5f{bottom:424.066667pt;}
.y37{bottom:426.946667pt;}
.y70{bottom:440.066667pt;}
.y5e{bottom:445.186667pt;}
.y36{bottom:448.066667pt;}
.y6f{bottom:461.186667pt;}
.y5d{bottom:466.466667pt;}
.y35{bottom:469.186667pt;}
.y6e{bottom:482.466667pt;}
.y5c{bottom:487.586667pt;}
.y34{bottom:490.466667pt;}
.y33{bottom:511.586667pt;}
.y5b{bottom:516.706667pt;}
.y6d{bottom:532.706667pt;}
.y5a{bottom:537.826667pt;}
.y32{bottom:540.706667pt;}
.y85{bottom:553.826667pt;}
.y59{bottom:559.106667pt;}
.y31{bottom:561.826667pt;}
.y84{bottom:575.106667pt;}
.y58{bottom:580.226667pt;}
.y30{bottom:583.106667pt;}
.y2f{bottom:604.226667pt;}
.y57{bottom:609.346667pt;}
.y2e{bottom:625.373333pt;}
.y56{bottom:630.493333pt;}
.y2d{bottom:646.493333pt;}
.y55{bottom:659.613333pt;}
.y48{bottom:667.613333pt;}
.y2c{bottom:675.613333pt;}
.y54{bottom:680.893333pt;}
.y47{bottom:688.893333pt;}
.y2b{bottom:696.893333pt;}
.y53{bottom:702.013333pt;}
.y46{bottom:710.013333pt;}
.y2a{bottom:718.013333pt;}
.y52{bottom:723.133333pt;}
.y45{bottom:731.133333pt;}
.y29{bottom:739.133333pt;}
.y51{bottom:744.253333pt;}
.y44{bottom:752.253333pt;}
.y28{bottom:760.253333pt;}
.y83{bottom:768.253333pt;}
.y50{bottom:773.533333pt;}
.y27{bottom:781.533333pt;}
.y82{bottom:789.533333pt;}
.y4f{bottom:794.653333pt;}
.y26{bottom:802.653333pt;}
.y6c{bottom:810.653333pt;}
.y4e{bottom:815.773333pt;}
.y81{bottom:818.653333pt;}
.y25{bottom:823.813333pt;}
.y6b{bottom:831.813333pt;}
.y80{bottom:839.813333pt;}
.y24{bottom:844.933333pt;}
.y6a{bottom:852.933333pt;}
.y7f{bottom:860.933333pt;}
.y43{bottom:866.213333pt;}
.y23{bottom:874.213333pt;}
.y7e{bottom:882.213333pt;}
.yf{bottom:883.493333pt;}
.y4d{bottom:887.333333pt;}
.y22{bottom:895.333333pt;}
.y7d{bottom:903.333333pt;}
.ye{bottom:912.773333pt;}
.y21{bottom:916.453333pt;}
.y7c{bottom:924.453333pt;}
.yd{bottom:933.893333pt;}
.y42{bottom:937.573333pt;}
.y20{bottom:945.573333pt;}
.yc{bottom:955.013333pt;}
.y4c{bottom:958.853333pt;}
.y1f{bottom:966.853333pt;}
.yb{bottom:981.413333pt;}
.y1e{bottom:987.973333pt;}
.ya{bottom:1005.093333pt;}
.y1d{bottom:1009.093333pt;}
.y4{bottom:1038.240000pt;}
.y3{bottom:1057.120000pt;}
.y2{bottom:1074.240000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.280000pt;}
.h3{height:47.742188pt;}
.h6{height:56.891250pt;}
.h7{height:57.375000pt;}
.h2{height:58.563750pt;}
.h8{height:62.781250pt;}
.h4{height:62.812500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.832000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:4.960000pt;}
.x9{left:84.959988pt;}
.x3{left:113.471988pt;}
.x1{left:135.866655pt;}
.x8{left:235.386655pt;}
.x4{left:256.666655pt;}
.x6{left:400.066667pt;}
.x5{left:425.186655pt;}
.x2{left:486.173322pt;}
.xb{left:514.333322pt;}
.xa{left:597.693322pt;}
.xc{left:676.613322pt;}
}




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