
    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_f6b8c34ff90fe584bdfaf1b9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_b98c34d4ddde5a46023db255.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035645;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_b859cb7bbf1bc6f6542e6a5c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:72.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws2{word-spacing:-10.500000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:27.000000px;}
._a{margin-left:-1101.564000px;}
._10{margin-left:-994.884000px;}
._d{margin-left:-888.144000px;}
._6{margin-left:-767.676000px;}
._4{margin-left:-424.896000px;}
._2{margin-left:-7.272000px;}
._0{margin-left:-6.156000px;}
._f{margin-left:-5.136000px;}
._1{margin-left:-4.032000px;}
._9{margin-left:-2.952000px;}
._3{margin-left:-1.296000px;}
._8{width:1.956000px;}
._13{width:42.000000px;}
._12{width:44.952000px;}
._c{width:72.000000px;}
._5{width:388.440000px;}
._7{width:731.664000px;}
._e{width:858.540000px;}
._11{width:965.040000px;}
._b{width:1071.840000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y10{bottom:67.591500px;}
.y5e{bottom:108.916500px;}
.y76{bottom:114.841500px;}
.y62{bottom:126.241500px;}
.y48{bottom:126.841500px;}
.y5d{bottom:138.616500px;}
.y61{bottom:143.566500px;}
.y47{bottom:150.616500px;}
.y60{bottom:160.891500px;}
.y5c{bottom:162.391500px;}
.y46{bottom:174.391500px;}
.y5f{bottom:178.216500px;}
.y5b{bottom:186.166500px;}
.y75{bottom:195.541500px;}
.y45{bottom:198.166500px;}
.yf{bottom:198.391500px;}
.y5a{bottom:209.941500px;}
.y74{bottom:212.866500px;}
.ye{bottom:219.091500px;}
.y44{bottom:221.941500px;}
.y73{bottom:230.191500px;}
.y59{bottom:233.716500px;}
.yd{bottom:239.791500px;}
.y43{bottom:245.716500px;}
.y72{bottom:247.516500px;}
.y58{bottom:257.491500px;}
.yc{bottom:260.491500px;}
.y71{bottom:264.841500px;}
.y42{bottom:269.491500px;}
.yb{bottom:281.191500px;}
.y57{bottom:281.266500px;}
.y70{bottom:282.166500px;}
.y41{bottom:293.266500px;}
.y6f{bottom:299.491500px;}
.ya{bottom:301.891500px;}
.y56{bottom:305.041500px;}
.y6e{bottom:316.816500px;}
.y40{bottom:317.041500px;}
.y9{bottom:322.591500px;}
.y55{bottom:328.816500px;}
.y6d{bottom:334.141500px;}
.y3f{bottom:340.816500px;}
.y6c{bottom:351.466500px;}
.y54{bottom:352.591500px;}
.y8{bottom:363.991500px;}
.y3e{bottom:364.591500px;}
.y6b{bottom:368.791500px;}
.y53{bottom:376.366500px;}
.y7{bottom:384.691500px;}
.y6a{bottom:386.116500px;}
.y3d{bottom:388.366500px;}
.y52{bottom:400.141500px;}
.y69{bottom:403.441500px;}
.y6{bottom:405.391500px;}
.y3c{bottom:412.141500px;}
.y68{bottom:420.766500px;}
.y51{bottom:423.916500px;}
.y5{bottom:426.091500px;}
.y3b{bottom:435.916500px;}
.y67{bottom:438.091500px;}
.y50{bottom:447.691500px;}
.y66{bottom:455.416500px;}
.y3a{bottom:459.691500px;}
.y4f{bottom:471.466500px;}
.y65{bottom:472.741500px;}
.y39{bottom:483.466500px;}
.y64{bottom:490.066500px;}
.y4e{bottom:495.241500px;}
.y38{bottom:507.241500px;}
.y63{bottom:507.391500px;}
.y4d{bottom:519.016500px;}
.y37{bottom:531.016500px;}
.y4c{bottom:542.791500px;}
.y36{bottom:554.791500px;}
.y4b{bottom:566.566500px;}
.y35{bottom:578.566500px;}
.y4a{bottom:590.341500px;}
.y34{bottom:602.341500px;}
.y25{bottom:614.116500px;}
.y33{bottom:626.116500px;}
.y24{bottom:637.891500px;}
.y32{bottom:649.891500px;}
.y23{bottom:661.666500px;}
.y31{bottom:673.666500px;}
.y22{bottom:685.441500px;}
.y21{bottom:709.216500px;}
.y20{bottom:732.991500px;}
.y30{bottom:733.966500px;}
.y49{bottom:756.766500px;}
.y2f{bottom:757.741500px;}
.y1f{bottom:780.541500px;}
.y2e{bottom:781.516500px;}
.y1e{bottom:804.316500px;}
.y2d{bottom:805.291500px;}
.y1d{bottom:828.091500px;}
.y2c{bottom:829.066500px;}
.y1c{bottom:851.866500px;}
.y2b{bottom:852.841500px;}
.y1b{bottom:875.641500px;}
.y2a{bottom:876.616500px;}
.y1a{bottom:899.416500px;}
.y19{bottom:923.191500px;}
.y4{bottom:943.591500px;}
.y18{bottom:946.966500px;}
.y17{bottom:970.741500px;}
.y29{bottom:972.316500px;}
.y28{bottom:992.791500px;}
.y16{bottom:994.516500px;}
.y15{bottom:1018.291500px;}
.y14{bottom:1042.066500px;}
.y13{bottom:1065.841500px;}
.y12{bottom:1089.616500px;}
.y3{bottom:1090.441500px;}
.y27{bottom:1113.391500px;}
.y26{bottom:1137.166500px;}
.y2{bottom:1152.541500px;}
.y11{bottom:1160.941500px;}
.h8{height:49.189453px;}
.h6{height:50.695312px;}
.h5{height:59.027344px;}
.h7{height:62.632617px;}
.h3{height:76.042969px;}
.h4{height:88.541016px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x7{left:110.700000px;}
.x4{left:114.975000px;}
.x3{left:138.375000px;}
.x8{left:437.625000px;}
.x2{left:442.125000px;}
.x5{left:450.825000px;}
.x6{left:480.600000px;}
@media print{
.v2{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:-9.333333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:24.000000pt;}
._a{margin-left:-979.168000pt;}
._10{margin-left:-884.341333pt;}
._d{margin-left:-789.461333pt;}
._6{margin-left:-682.378667pt;}
._4{margin-left:-377.685333pt;}
._2{margin-left:-6.464000pt;}
._0{margin-left:-5.472000pt;}
._f{margin-left:-4.565333pt;}
._1{margin-left:-3.584000pt;}
._9{margin-left:-2.624000pt;}
._3{margin-left:-1.152000pt;}
._8{width:1.738667pt;}
._13{width:37.333333pt;}
._12{width:39.957333pt;}
._c{width:64.000000pt;}
._5{width:345.280000pt;}
._7{width:650.368000pt;}
._e{width:763.146667pt;}
._11{width:857.813333pt;}
._b{width:952.746667pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y10{bottom:60.081333pt;}
.y5e{bottom:96.814667pt;}
.y76{bottom:102.081333pt;}
.y62{bottom:112.214667pt;}
.y48{bottom:112.748000pt;}
.y5d{bottom:123.214667pt;}
.y61{bottom:127.614667pt;}
.y47{bottom:133.881333pt;}
.y60{bottom:143.014667pt;}
.y5c{bottom:144.348000pt;}
.y46{bottom:155.014667pt;}
.y5f{bottom:158.414667pt;}
.y5b{bottom:165.481333pt;}
.y75{bottom:173.814667pt;}
.y45{bottom:176.148000pt;}
.yf{bottom:176.348000pt;}
.y5a{bottom:186.614667pt;}
.y74{bottom:189.214667pt;}
.ye{bottom:194.748000pt;}
.y44{bottom:197.281333pt;}
.y73{bottom:204.614667pt;}
.y59{bottom:207.748000pt;}
.yd{bottom:213.148000pt;}
.y43{bottom:218.414667pt;}
.y72{bottom:220.014667pt;}
.y58{bottom:228.881333pt;}
.yc{bottom:231.548000pt;}
.y71{bottom:235.414667pt;}
.y42{bottom:239.548000pt;}
.yb{bottom:249.948000pt;}
.y57{bottom:250.014667pt;}
.y70{bottom:250.814667pt;}
.y41{bottom:260.681333pt;}
.y6f{bottom:266.214667pt;}
.ya{bottom:268.348000pt;}
.y56{bottom:271.148000pt;}
.y6e{bottom:281.614667pt;}
.y40{bottom:281.814667pt;}
.y9{bottom:286.748000pt;}
.y55{bottom:292.281333pt;}
.y6d{bottom:297.014667pt;}
.y3f{bottom:302.948000pt;}
.y6c{bottom:312.414667pt;}
.y54{bottom:313.414667pt;}
.y8{bottom:323.548000pt;}
.y3e{bottom:324.081333pt;}
.y6b{bottom:327.814667pt;}
.y53{bottom:334.548000pt;}
.y7{bottom:341.948000pt;}
.y6a{bottom:343.214667pt;}
.y3d{bottom:345.214667pt;}
.y52{bottom:355.681333pt;}
.y69{bottom:358.614667pt;}
.y6{bottom:360.348000pt;}
.y3c{bottom:366.348000pt;}
.y68{bottom:374.014667pt;}
.y51{bottom:376.814667pt;}
.y5{bottom:378.748000pt;}
.y3b{bottom:387.481333pt;}
.y67{bottom:389.414667pt;}
.y50{bottom:397.948000pt;}
.y66{bottom:404.814667pt;}
.y3a{bottom:408.614667pt;}
.y4f{bottom:419.081333pt;}
.y65{bottom:420.214667pt;}
.y39{bottom:429.748000pt;}
.y64{bottom:435.614667pt;}
.y4e{bottom:440.214667pt;}
.y38{bottom:450.881333pt;}
.y63{bottom:451.014667pt;}
.y4d{bottom:461.348000pt;}
.y37{bottom:472.014667pt;}
.y4c{bottom:482.481333pt;}
.y36{bottom:493.148000pt;}
.y4b{bottom:503.614667pt;}
.y35{bottom:514.281333pt;}
.y4a{bottom:524.748000pt;}
.y34{bottom:535.414667pt;}
.y25{bottom:545.881333pt;}
.y33{bottom:556.548000pt;}
.y24{bottom:567.014667pt;}
.y32{bottom:577.681333pt;}
.y23{bottom:588.148000pt;}
.y31{bottom:598.814667pt;}
.y22{bottom:609.281333pt;}
.y21{bottom:630.414667pt;}
.y20{bottom:651.548000pt;}
.y30{bottom:652.414667pt;}
.y49{bottom:672.681333pt;}
.y2f{bottom:673.548000pt;}
.y1f{bottom:693.814667pt;}
.y2e{bottom:694.681333pt;}
.y1e{bottom:714.948000pt;}
.y2d{bottom:715.814667pt;}
.y1d{bottom:736.081333pt;}
.y2c{bottom:736.948000pt;}
.y1c{bottom:757.214667pt;}
.y2b{bottom:758.081333pt;}
.y1b{bottom:778.348000pt;}
.y2a{bottom:779.214667pt;}
.y1a{bottom:799.481333pt;}
.y19{bottom:820.614667pt;}
.y4{bottom:838.748000pt;}
.y18{bottom:841.748000pt;}
.y17{bottom:862.881333pt;}
.y29{bottom:864.281333pt;}
.y28{bottom:882.481333pt;}
.y16{bottom:884.014667pt;}
.y15{bottom:905.148000pt;}
.y14{bottom:926.281333pt;}
.y13{bottom:947.414667pt;}
.y12{bottom:968.548000pt;}
.y3{bottom:969.281333pt;}
.y27{bottom:989.681333pt;}
.y26{bottom:1010.814667pt;}
.y2{bottom:1024.481333pt;}
.y11{bottom:1031.948000pt;}
.h8{height:43.723958pt;}
.h6{height:45.062500pt;}
.h5{height:52.468750pt;}
.h7{height:55.673437pt;}
.h3{height:67.593750pt;}
.h4{height:78.703125pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x7{left:98.400000pt;}
.x4{left:102.200000pt;}
.x3{left:123.000000pt;}
.x8{left:389.000000pt;}
.x2{left:393.000000pt;}
.x5{left:400.733333pt;}
.x6{left:427.200000pt;}
}




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