
    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_a11abc747225fe8a6e83b19c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896000;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_9ba48218344f32e2b9d35def.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_217800ff193ec94ba51f667b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.847291;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_e8ca3b8544571bfd150dae41.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.799000;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:39.600000px;}
.ls19{letter-spacing:0.000000px;}
.lsc{letter-spacing:81.253200px;}
.ls0{letter-spacing:96.000000px;}
.lsd{letter-spacing:120.023400px;}
.lsa{letter-spacing:200.053200px;}
.ls3{letter-spacing:229.891200px;}
.ls4{letter-spacing:229.893600px;}
.lse{letter-spacing:238.823400px;}
.lsb{letter-spacing:239.653200px;}
.ls11{letter-spacing:279.253200px;}
.ls17{letter-spacing:318.853200px;}
.ls5{letter-spacing:348.691200px;}
.ls6{letter-spacing:388.293600px;}
.ls8{letter-spacing:398.053200px;}
.ls16{letter-spacing:437.653200px;}
.ls1a{letter-spacing:446.100000px;}
.ls15{letter-spacing:477.253200px;}
.lsf{letter-spacing:556.453200px;}
.ls2{letter-spacing:565.523400px;}
.ls1{letter-spacing:576.600000px;}
.ls13{letter-spacing:596.052000px;}
.ls7{letter-spacing:674.424000px;}
.ls1c{letter-spacing:677.100000px;}
.ls9{letter-spacing:714.024000px;}
.ls18{letter-spacing:753.624000px;}
.ls10{letter-spacing:832.824000px;}
.ls12{letter-spacing:872.424000px;}
.ls14{letter-spacing:1030.824000px;}
.ls1b{letter-spacing:1053.966000px;}
.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:-39.600000px;}
.ws2{word-spacing:-32.400000px;}
.ws1{word-spacing:0.000000px;}
._0{width:265.223640px;}
._2{width:690.921000px;}
._1{width:730.521000px;}
._3{width:968.121000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.881840px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:64.800000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:95.040000px;}
.fs4{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:137.475000px;}
.y4b{bottom:153.675000px;}
.y4a{bottom:169.875000px;}
.y49{bottom:186.075000px;}
.y1c{bottom:190.776000px;}
.y48{bottom:202.275000px;}
.y47{bottom:218.475000px;}
.y1b{bottom:232.851000px;}
.y46{bottom:234.675000px;}
.y45{bottom:250.875000px;}
.y1a{bottom:253.476000px;}
.y44{bottom:267.075000px;}
.y19{bottom:274.101000px;}
.y43{bottom:283.275000px;}
.y18{bottom:294.726000px;}
.y42{bottom:299.475000px;}
.y17{bottom:315.351000px;}
.y41{bottom:315.675000px;}
.y40{bottom:331.875000px;}
.y16{bottom:335.976000px;}
.y3f{bottom:348.075000px;}
.y15{bottom:356.601000px;}
.y3e{bottom:364.275000px;}
.y14{bottom:377.226000px;}
.y3d{bottom:380.475000px;}
.y3c{bottom:396.675000px;}
.y13{bottom:397.851000px;}
.y3b{bottom:412.875000px;}
.y12{bottom:418.476000px;}
.y3a{bottom:429.075000px;}
.y11{bottom:439.101000px;}
.y39{bottom:445.275000px;}
.y10{bottom:459.726000px;}
.y38{bottom:461.475000px;}
.y37{bottom:477.675000px;}
.yf{bottom:480.351000px;}
.y36{bottom:493.875000px;}
.ye{bottom:500.976000px;}
.yd{bottom:521.601000px;}
.yc{bottom:542.226000px;}
.y35{bottom:546.375000px;}
.y34{bottom:562.575000px;}
.y33{bottom:578.775000px;}
.yb{bottom:584.301000px;}
.y5c{bottom:590.175000px;}
.y32{bottom:594.975000px;}
.ya{bottom:604.926000px;}
.y31{bottom:611.175000px;}
.y5b{bottom:624.225000px;}
.y9{bottom:625.551000px;}
.y30{bottom:627.375000px;}
.y2f{bottom:643.575000px;}
.y2e{bottom:659.775000px;}
.y8{bottom:667.626000px;}
.y2d{bottom:675.975000px;}
.y2c{bottom:692.175000px;}
.y5a{bottom:697.725000px;}
.y2b{bottom:708.375000px;}
.y7{bottom:722.076300px;}
.y2a{bottom:724.575000px;}
.y29{bottom:740.775000px;}
.y28{bottom:756.975000px;}
.y59{bottom:763.650000px;}
.y6{bottom:767.088000px;}
.y27{bottom:773.175000px;}
.y58{bottom:783.450000px;}
.y26{bottom:789.375000px;}
.y57{bottom:803.250000px;}
.y5{bottom:803.388000px;}
.y25{bottom:805.575000px;}
.y24{bottom:821.775000px;}
.y56{bottom:823.050000px;}
.y4{bottom:823.188000px;}
.y3{bottom:842.988000px;}
.y23{bottom:874.275000px;}
.y2{bottom:879.288000px;}
.y22{bottom:890.475000px;}
.y55{bottom:897.000000px;}
.y21{bottom:906.675000px;}
.y54{bottom:913.200000px;}
.y1{bottom:915.588000px;}
.y53{bottom:929.400000px;}
.y52{bottom:945.600000px;}
.y20{bottom:960.000000px;}
.y51{bottom:961.800000px;}
.y1f{bottom:980.625000px;}
.y1e{bottom:990.525000px;}
.y50{bottom:994.200000px;}
.y4f{bottom:1010.400000px;}
.y4e{bottom:1026.600000px;}
.y1d{bottom:1042.500000px;}
.y4d{bottom:1042.800000px;}
.y5d{bottom:1049.178000px;}
.h8{height:24.103351px;}
.h4{height:35.910000px;}
.h5{height:39.074400px;}
.h2{height:45.078000px;}
.h6{height:45.606000px;}
.h1{height:65.672640px;}
.h7{height:78.774000px;}
.h3{height:83.490000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.500000px;}
.x7{left:110.904450px;}
.x6{left:118.500000px;}
.x5{left:124.500000px;}
.x3{left:269.537700px;}
.x2{left:301.505550px;}
.x4{left:641.416500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.200000pt;}
.ls19{letter-spacing:0.000000pt;}
.lsc{letter-spacing:72.225067pt;}
.ls0{letter-spacing:85.333333pt;}
.lsd{letter-spacing:106.687467pt;}
.lsa{letter-spacing:177.825067pt;}
.ls3{letter-spacing:204.347733pt;}
.ls4{letter-spacing:204.349867pt;}
.lse{letter-spacing:212.287467pt;}
.lsb{letter-spacing:213.025067pt;}
.ls11{letter-spacing:248.225067pt;}
.ls17{letter-spacing:283.425067pt;}
.ls5{letter-spacing:309.947733pt;}
.ls6{letter-spacing:345.149867pt;}
.ls8{letter-spacing:353.825067pt;}
.ls16{letter-spacing:389.025067pt;}
.ls1a{letter-spacing:396.533333pt;}
.ls15{letter-spacing:424.225067pt;}
.lsf{letter-spacing:494.625067pt;}
.ls2{letter-spacing:502.687467pt;}
.ls1{letter-spacing:512.533333pt;}
.ls13{letter-spacing:529.824000pt;}
.ls7{letter-spacing:599.488000pt;}
.ls1c{letter-spacing:601.866667pt;}
.ls9{letter-spacing:634.688000pt;}
.ls18{letter-spacing:669.888000pt;}
.ls10{letter-spacing:740.288000pt;}
.ls12{letter-spacing:775.488000pt;}
.ls14{letter-spacing:916.288000pt;}
.ls1b{letter-spacing:936.858667pt;}
.ws0{word-spacing:-35.200000pt;}
.ws2{word-spacing:-28.800000pt;}
.ws1{word-spacing:0.000000pt;}
._0{width:235.754347pt;}
._2{width:614.152000pt;}
._1{width:649.352000pt;}
._3{width:860.552000pt;}
.fs5{font-size:31.006080pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:57.600000pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:84.480000pt;}
.fs4{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:122.200000pt;}
.y4b{bottom:136.600000pt;}
.y4a{bottom:151.000000pt;}
.y49{bottom:165.400000pt;}
.y1c{bottom:169.578667pt;}
.y48{bottom:179.800000pt;}
.y47{bottom:194.200000pt;}
.y1b{bottom:206.978667pt;}
.y46{bottom:208.600000pt;}
.y45{bottom:223.000000pt;}
.y1a{bottom:225.312000pt;}
.y44{bottom:237.400000pt;}
.y19{bottom:243.645333pt;}
.y43{bottom:251.800000pt;}
.y18{bottom:261.978667pt;}
.y42{bottom:266.200000pt;}
.y17{bottom:280.312000pt;}
.y41{bottom:280.600000pt;}
.y40{bottom:295.000000pt;}
.y16{bottom:298.645333pt;}
.y3f{bottom:309.400000pt;}
.y15{bottom:316.978667pt;}
.y3e{bottom:323.800000pt;}
.y14{bottom:335.312000pt;}
.y3d{bottom:338.200000pt;}
.y3c{bottom:352.600000pt;}
.y13{bottom:353.645333pt;}
.y3b{bottom:367.000000pt;}
.y12{bottom:371.978667pt;}
.y3a{bottom:381.400000pt;}
.y11{bottom:390.312000pt;}
.y39{bottom:395.800000pt;}
.y10{bottom:408.645333pt;}
.y38{bottom:410.200000pt;}
.y37{bottom:424.600000pt;}
.yf{bottom:426.978667pt;}
.y36{bottom:439.000000pt;}
.ye{bottom:445.312000pt;}
.yd{bottom:463.645333pt;}
.yc{bottom:481.978667pt;}
.y35{bottom:485.666667pt;}
.y34{bottom:500.066667pt;}
.y33{bottom:514.466667pt;}
.yb{bottom:519.378667pt;}
.y5c{bottom:524.600000pt;}
.y32{bottom:528.866667pt;}
.ya{bottom:537.712000pt;}
.y31{bottom:543.266667pt;}
.y5b{bottom:554.866667pt;}
.y9{bottom:556.045333pt;}
.y30{bottom:557.666667pt;}
.y2f{bottom:572.066667pt;}
.y2e{bottom:586.466667pt;}
.y8{bottom:593.445333pt;}
.y2d{bottom:600.866667pt;}
.y2c{bottom:615.266667pt;}
.y5a{bottom:620.200000pt;}
.y2b{bottom:629.666667pt;}
.y7{bottom:641.845600pt;}
.y2a{bottom:644.066667pt;}
.y29{bottom:658.466667pt;}
.y28{bottom:672.866667pt;}
.y59{bottom:678.800000pt;}
.y6{bottom:681.856000pt;}
.y27{bottom:687.266667pt;}
.y58{bottom:696.400000pt;}
.y26{bottom:701.666667pt;}
.y57{bottom:714.000000pt;}
.y5{bottom:714.122667pt;}
.y25{bottom:716.066667pt;}
.y24{bottom:730.466667pt;}
.y56{bottom:731.600000pt;}
.y4{bottom:731.722667pt;}
.y3{bottom:749.322667pt;}
.y23{bottom:777.133333pt;}
.y2{bottom:781.589333pt;}
.y22{bottom:791.533333pt;}
.y55{bottom:797.333333pt;}
.y21{bottom:805.933333pt;}
.y54{bottom:811.733333pt;}
.y1{bottom:813.856000pt;}
.y53{bottom:826.133333pt;}
.y52{bottom:840.533333pt;}
.y20{bottom:853.333333pt;}
.y51{bottom:854.933333pt;}
.y1f{bottom:871.666667pt;}
.y1e{bottom:880.466667pt;}
.y50{bottom:883.733333pt;}
.y4f{bottom:898.133333pt;}
.y4e{bottom:912.533333pt;}
.y1d{bottom:926.666667pt;}
.y4d{bottom:926.933333pt;}
.y5d{bottom:932.602667pt;}
.h8{height:21.425201pt;}
.h4{height:31.920000pt;}
.h5{height:34.732800pt;}
.h2{height:40.069333pt;}
.h6{height:40.538667pt;}
.h1{height:58.375680pt;}
.h7{height:70.021333pt;}
.h3{height:74.213333pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.666667pt;}
.x7{left:98.581733pt;}
.x6{left:105.333333pt;}
.x5{left:110.666667pt;}
.x3{left:239.589067pt;}
.x2{left:268.004933pt;}
.x4{left:570.148000pt;}
}




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