
    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_cd148ae956c19681e448729c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_943526cf8438a8f38a24ae5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c99d3982ec832adf02ddea0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_4fa1237770f4c6633510e030.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1abc9a585ccb0043fab85cfe.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_750ca4ba5b7174289cf68493.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b32be2a1a90fc4923ff638c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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:ff8;src:url('chunks/assets/font_5424e75764377a37b01899d9.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:54.120000px;}
.ls0{letter-spacing:197.436000px;}
.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:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.450800px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-2.769120px;}
._0{margin-left:-1.136160px;}
._1{width:1.376160px;}
._4{width:2.551680px;}
._5{width:4.339200px;}
._6{width:5.577600px;}
._2{width:7.200000px;}
._3{width:8.280000px;}
._f{width:9.648000px;}
._18{width:10.944000px;}
._7{width:14.040000px;}
._8{width:15.151680px;}
._15{width:16.344000px;}
._9{width:19.080000px;}
._a{width:20.228160px;}
._b{width:21.243840px;}
._16{width:22.300320px;}
._12{width:23.976000px;}
._c{width:25.776000px;}
._d{width:26.895840px;}
._e{width:28.216320px;}
._19{width:29.952000px;}
._1a{width:31.968000px;}
._14{width:37.856160px;}
._13{width:38.880000px;}
._11{width:51.495840px;}
._10{width:52.544160px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,10);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,128);}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.480000px;}
.y4{bottom:57.636000px;}
.y2f{bottom:128.376000px;}
.y5c{bottom:134.496000px;}
.y2e{bottom:152.130000px;}
.y5b{bottom:158.250000px;}
.y2d{bottom:175.890000px;}
.y5a{bottom:182.010000px;}
.y2c{bottom:199.830000px;}
.y59{bottom:205.770000px;}
.y2b{bottom:220.890000px;}
.y58{bottom:229.710000px;}
.y2a{bottom:239.070000px;}
.y57{bottom:253.470000px;}
.y29{bottom:262.830000px;}
.y56{bottom:274.755000px;}
.y28{bottom:287.175000px;}
.y55{bottom:292.755000px;}
.y27{bottom:310.935000px;}
.y54{bottom:316.515000px;}
.y26{bottom:334.695000px;}
.y53{bottom:340.815000px;}
.y25{bottom:358.455000px;}
.y52{bottom:364.575000px;}
.y24{bottom:382.215000px;}
.y51{bottom:388.335000px;}
.y23{bottom:406.155000px;}
.y50{bottom:412.095000px;}
.y22{bottom:429.915000px;}
.y4f{bottom:436.035000px;}
.y21{bottom:453.675000px;}
.y4e{bottom:459.795000px;}
.y20{bottom:477.435000px;}
.y4d{bottom:483.555000px;}
.y1f{bottom:501.375000px;}
.y4c{bottom:507.315000px;}
.y1e{bottom:525.135000px;}
.y75{bottom:529.095000px;}
.y4b{bottom:531.255000px;}
.y1d{bottom:548.895000px;}
.y74{bottom:552.855000px;}
.y4a{bottom:555.015000px;}
.y1c{bottom:570.165000px;}
.y73{bottom:576.825000px;}
.y49{bottom:578.805000px;}
.y1b{bottom:588.345000px;}
.y72{bottom:600.585000px;}
.y48{bottom:602.565000px;}
.y1a{bottom:612.105000px;}
.y71{bottom:624.345000px;}
.y47{bottom:626.325000px;}
.y19{bottom:636.225000px;}
.y70{bottom:648.105000px;}
.y46{bottom:650.265000px;}
.y18{bottom:660.345000px;}
.y6f{bottom:671.865000px;}
.y45{bottom:674.025000px;}
.y17{bottom:684.105000px;}
.y6e{bottom:695.805000px;}
.y44{bottom:697.785000px;}
.y16{bottom:707.865000px;}
.y6d{bottom:719.565000px;}
.y43{bottom:721.545000px;}
.y15{bottom:731.625000px;}
.y6c{bottom:743.325000px;}
.y42{bottom:745.485000px;}
.y14{bottom:755.385000px;}
.y6b{bottom:767.085000px;}
.y41{bottom:769.245000px;}
.y13{bottom:779.325000px;}
.y6a{bottom:791.025000px;}
.y40{bottom:793.005000px;}
.y12{bottom:803.085000px;}
.y69{bottom:814.785000px;}
.y3f{bottom:816.765000px;}
.y11{bottom:826.845000px;}
.y68{bottom:838.590000px;}
.y3e{bottom:840.750000px;}
.y10{bottom:850.650000px;}
.y67{bottom:862.350000px;}
.y3d{bottom:864.510000px;}
.yf{bottom:874.590000px;}
.y66{bottom:886.290000px;}
.y3c{bottom:888.270000px;}
.ye{bottom:898.350000px;}
.y65{bottom:910.050000px;}
.y3b{bottom:912.030000px;}
.yd{bottom:922.110000px;}
.y3a{bottom:931.470000px;}
.y64{bottom:933.810000px;}
.yc{bottom:945.870000px;}
.y39{bottom:949.290000px;}
.y63{bottom:957.570000px;}
.y38{bottom:973.410000px;}
.y62{bottom:981.510000px;}
.yb{bottom:989.070000px;}
.y37{bottom:997.350000px;}
.y61{bottom:1005.270000px;}
.ya{bottom:1005.630000px;}
.y36{bottom:1021.110000px;}
.y60{bottom:1029.030000px;}
.y9{bottom:1029.210000px;}
.y35{bottom:1044.870000px;}
.y5f{bottom:1050.270000px;}
.y8{bottom:1052.970000px;}
.y5e{bottom:1068.270000px;}
.y34{bottom:1068.630000px;}
.y7{bottom:1075.470000px;}
.y5d{bottom:1092.210000px;}
.y33{bottom:1092.570000px;}
.y6{bottom:1103.370000px;}
.y32{bottom:1116.330000px;}
.y5{bottom:1123.380000px;}
.y31{bottom:1140.120000px;}
.y30{bottom:1167.840000px;}
.y1{bottom:1169.460000px;}
.y3{bottom:1172.340000px;}
.h2{height:20.880000px;}
.hf{height:34.860937px;}
.he{height:42.845977px;}
.hc{height:43.246406px;}
.h7{height:47.961914px;}
.h5{height:50.229844px;}
.ha{height:52.031250px;}
.hd{height:52.171875px;}
.h9{height:53.573906px;}
.h3{height:59.383125px;}
.hb{height:63.949219px;}
.h4{height:64.546875px;}
.h6{height:85.052461px;}
.h8{height:95.923828px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:636.765000px;}
.w2{width:649.725000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x1{left:127.476000px;}
.x7{left:130.536000px;}
.x6{left:148.895987px;}
.x4{left:159.689987px;}
.x5{left:180.749987px;}
.x8{left:563.469000px;}
.x3{left:747.509987px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:48.106667pt;}
.ls0{letter-spacing:175.498667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.622933pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-2.461440pt;}
._0{margin-left:-1.009920pt;}
._1{width:1.223253pt;}
._4{width:2.268160pt;}
._5{width:3.857067pt;}
._6{width:4.957867pt;}
._2{width:6.400000pt;}
._3{width:7.360000pt;}
._f{width:8.576000pt;}
._18{width:9.728000pt;}
._7{width:12.480000pt;}
._8{width:13.468160pt;}
._15{width:14.528000pt;}
._9{width:16.960000pt;}
._a{width:17.980587pt;}
._b{width:18.883413pt;}
._16{width:19.822507pt;}
._12{width:21.312000pt;}
._c{width:22.912000pt;}
._d{width:23.907413pt;}
._e{width:25.081173pt;}
._19{width:26.624000pt;}
._1a{width:28.416000pt;}
._14{width:33.649920pt;}
._13{width:34.560000pt;}
._11{width:45.774080pt;}
._10{width:46.705920pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:51.232000pt;}
.y2f{bottom:114.112000pt;}
.y5c{bottom:119.552000pt;}
.y2e{bottom:135.226667pt;}
.y5b{bottom:140.666667pt;}
.y2d{bottom:156.346667pt;}
.y5a{bottom:161.786667pt;}
.y2c{bottom:177.626667pt;}
.y59{bottom:182.906667pt;}
.y2b{bottom:196.346667pt;}
.y58{bottom:204.186667pt;}
.y2a{bottom:212.506667pt;}
.y57{bottom:225.306667pt;}
.y29{bottom:233.626667pt;}
.y56{bottom:244.226667pt;}
.y28{bottom:255.266667pt;}
.y55{bottom:260.226667pt;}
.y27{bottom:276.386667pt;}
.y54{bottom:281.346667pt;}
.y26{bottom:297.506667pt;}
.y53{bottom:302.946667pt;}
.y25{bottom:318.626667pt;}
.y52{bottom:324.066667pt;}
.y24{bottom:339.746667pt;}
.y51{bottom:345.186667pt;}
.y23{bottom:361.026667pt;}
.y50{bottom:366.306667pt;}
.y22{bottom:382.146667pt;}
.y4f{bottom:387.586667pt;}
.y21{bottom:403.266667pt;}
.y4e{bottom:408.706667pt;}
.y20{bottom:424.386667pt;}
.y4d{bottom:429.826667pt;}
.y1f{bottom:445.666667pt;}
.y4c{bottom:450.946667pt;}
.y1e{bottom:466.786667pt;}
.y75{bottom:470.306667pt;}
.y4b{bottom:472.226667pt;}
.y1d{bottom:487.906667pt;}
.y74{bottom:491.426667pt;}
.y4a{bottom:493.346667pt;}
.y1c{bottom:506.813333pt;}
.y73{bottom:512.733333pt;}
.y49{bottom:514.493333pt;}
.y1b{bottom:522.973333pt;}
.y72{bottom:533.853333pt;}
.y48{bottom:535.613333pt;}
.y1a{bottom:544.093333pt;}
.y71{bottom:554.973333pt;}
.y47{bottom:556.733333pt;}
.y19{bottom:565.533333pt;}
.y70{bottom:576.093333pt;}
.y46{bottom:578.013333pt;}
.y18{bottom:586.973333pt;}
.y6f{bottom:597.213333pt;}
.y45{bottom:599.133333pt;}
.y17{bottom:608.093333pt;}
.y6e{bottom:618.493333pt;}
.y44{bottom:620.253333pt;}
.y16{bottom:629.213333pt;}
.y6d{bottom:639.613333pt;}
.y43{bottom:641.373333pt;}
.y15{bottom:650.333333pt;}
.y6c{bottom:660.733333pt;}
.y42{bottom:662.653333pt;}
.y14{bottom:671.453333pt;}
.y6b{bottom:681.853333pt;}
.y41{bottom:683.773333pt;}
.y13{bottom:692.733333pt;}
.y6a{bottom:703.133333pt;}
.y40{bottom:704.893333pt;}
.y12{bottom:713.853333pt;}
.y69{bottom:724.253333pt;}
.y3f{bottom:726.013333pt;}
.y11{bottom:734.973333pt;}
.y68{bottom:745.413333pt;}
.y3e{bottom:747.333333pt;}
.y10{bottom:756.133333pt;}
.y67{bottom:766.533333pt;}
.y3d{bottom:768.453333pt;}
.yf{bottom:777.413333pt;}
.y66{bottom:787.813333pt;}
.y3c{bottom:789.573333pt;}
.ye{bottom:798.533333pt;}
.y65{bottom:808.933333pt;}
.y3b{bottom:810.693333pt;}
.yd{bottom:819.653333pt;}
.y3a{bottom:827.973333pt;}
.y64{bottom:830.053333pt;}
.yc{bottom:840.773333pt;}
.y39{bottom:843.813333pt;}
.y63{bottom:851.173333pt;}
.y38{bottom:865.253333pt;}
.y62{bottom:872.453333pt;}
.yb{bottom:879.173333pt;}
.y37{bottom:886.533333pt;}
.y61{bottom:893.573333pt;}
.ya{bottom:893.893333pt;}
.y36{bottom:907.653333pt;}
.y60{bottom:914.693333pt;}
.y9{bottom:914.853333pt;}
.y35{bottom:928.773333pt;}
.y5f{bottom:933.573333pt;}
.y8{bottom:935.973333pt;}
.y5e{bottom:949.573333pt;}
.y34{bottom:949.893333pt;}
.y7{bottom:955.973333pt;}
.y5d{bottom:970.853333pt;}
.y33{bottom:971.173333pt;}
.y6{bottom:980.773333pt;}
.y32{bottom:992.293333pt;}
.y5{bottom:998.560000pt;}
.y31{bottom:1013.440000pt;}
.y30{bottom:1038.080000pt;}
.y1{bottom:1039.520000pt;}
.y3{bottom:1042.080000pt;}
.h2{height:18.560000pt;}
.hf{height:30.987500pt;}
.he{height:38.085312pt;}
.hc{height:38.441250pt;}
.h7{height:42.632812pt;}
.h5{height:44.648750pt;}
.ha{height:46.250000pt;}
.hd{height:46.375000pt;}
.h9{height:47.621250pt;}
.h3{height:52.785000pt;}
.hb{height:56.843750pt;}
.h4{height:57.375000pt;}
.h6{height:75.602187pt;}
.h8{height:85.265625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:566.013333pt;}
.w2{width:577.533333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x1{left:113.312000pt;}
.x7{left:116.032000pt;}
.x6{left:132.351988pt;}
.x4{left:141.946655pt;}
.x5{left:160.666655pt;}
.x8{left:500.861333pt;}
.x3{left:664.453322pt;}
}




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