
    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_bef71681c5e9ce6bc019e59e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.975000;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_bd921975897d5c61678458e2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_f0ff5ee53071ec53f808673e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_35b4fdcdd814590b790246c1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_8afeaedbd26da40aa00028ed.woff')format("woff");}.ff5{font-family:ff5;line-height:0.670898;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_ad392952dfa221bd67e14dae.woff')format("woff");}.ff6{font-family:ff6;line-height:0.764000;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;}
.lsd{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.152000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.121860px;}
.ls7{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.502140px;}
.ls2{letter-spacing:0.504480px;}
.ls4{letter-spacing:0.585660px;}
.lsb{letter-spacing:1.705860px;}
.ls3{letter-spacing:7.344960px;}
.ls9{letter-spacing:20.280000px;}
.ls1{letter-spacing:21.742620px;}
.ls0{letter-spacing:21.864480px;}
.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:-36.000000px;}
.ws1{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.016000px;}
.ws4{word-spacing:-18.864000px;}
.ws5{word-spacing:-16.813440px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-2.544164px;}
._0{margin-left:-1.298849px;}
._6{width:1.075505px;}
._1{width:2.255273px;}
._2{width:3.890012px;}
._3{width:5.860922px;}
._5{width:7.018479px;}
._a{width:8.838987px;}
._12{width:10.012249px;}
._7{width:11.087400px;}
._8{width:12.236534px;}
._19{width:13.394113px;}
._e{width:14.537284px;}
._f{width:16.345763px;}
._9{width:17.782577px;}
._10{width:18.822917px;}
._1d{width:20.332719px;}
._b{width:21.792959px;}
._11{width:22.980834px;}
._1c{width:25.201423px;}
._1b{width:26.251229px;}
._d{width:27.632914px;}
._c{width:29.681154px;}
._18{width:30.724708px;}
._17{width:32.093988px;}
._16{width:33.257169px;}
._14{width:34.877404px;}
._15{width:36.826539px;}
._1a{width:37.887698px;}
._13{width:45.490161px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:133.596750px;}
.y20{bottom:148.356750px;}
.y53{bottom:162.073650px;}
.y3e{bottom:164.595750px;}
.y1f{bottom:179.355750px;}
.y3d{bottom:195.555450px;}
.y52{bottom:208.513950px;}
.y1e{bottom:210.316050px;}
.y3c{bottom:226.515750px;}
.y1d{bottom:241.635600px;}
.y51{bottom:254.233500px;}
.y3b{bottom:257.475450px;}
.y1c{bottom:272.595900px;}
.y50{bottom:285.223800px;}
.y3a{bottom:289.185150px;}
.y1b{bottom:303.585600px;}
.y39{bottom:320.145450px;}
.y4f{bottom:331.664100px;}
.y1a{bottom:334.545900px;}
.y38{bottom:350.745450px;}
.y4e{bottom:362.264100px;}
.y19{bottom:365.865450px;}
.y37{bottom:381.705150px;}
.y18{bottom:396.870300px;}
.y4d{bottom:408.748800px;}
.y36{bottom:413.070450px;}
.y17{bottom:427.830000px;}
.y4c{bottom:439.348800px;}
.y35{bottom:444.030150px;}
.y16{bottom:458.790300px;}
.y34{bottom:475.350300px;}
.y4b{bottom:485.789100px;}
.y15{bottom:490.109850px;}
.y33{bottom:505.950300px;}
.y4a{bottom:516.749400px;}
.y14{bottom:521.100150px;}
.y32{bottom:537.300300px;}
.y49{bottom:547.379250px;}
.y13{bottom:552.059850px;}
.y31{bottom:568.260000px;}
.y48{bottom:576.179250px;}
.y12{bottom:583.020150px;}
.y30{bottom:599.220300px;}
.y47{bottom:602.099400px;}
.y11{bottom:614.340300px;}
.y46{bottom:628.019550px;}
.y2f{bottom:630.180000px;}
.y10{bottom:645.330000px;}
.y45{bottom:653.969550px;}
.y2e{bottom:661.530000px;}
.yf{bottom:676.290300px;}
.y44{bottom:679.889700px;}
.y2d{bottom:692.490300px;}
.y43{bottom:705.809250px;}
.ye{bottom:707.970150px;}
.y2c{bottom:723.450000px;}
.y42{bottom:731.369550px;}
.yd{bottom:739.290300px;}
.y2b{bottom:754.409700px;}
.y41{bottom:757.289700px;}
.yc{bottom:770.295150px;}
.y40{bottom:785.774400px;}
.y2a{bottom:785.775000px;}
.yb{bottom:801.254850px;}
.y29{bottom:816.734700px;}
.ya{bottom:832.215150px;}
.y28{bottom:847.695000px;}
.y9{bottom:863.174850px;}
.y27{bottom:878.654700px;}
.y8{bottom:894.165150px;}
.y26{bottom:910.004700px;}
.y7{bottom:925.484700px;}
.y25{bottom:940.965000px;}
.y6{bottom:946.365150px;}
.y5{bottom:967.245000px;}
.y24{bottom:971.924700px;}
.y4{bottom:987.765150px;}
.y23{bottom:1002.885000px;}
.y3{bottom:1008.690150px;}
.y2{bottom:1029.210300px;}
.y22{bottom:1034.249700px;}
.y1{bottom:1063.050000px;}
.y21{bottom:1065.210000px;}
.h4{height:44.815680px;}
.h3{height:53.352000px;}
.h2{height:54.504000px;}
.h1{height:63.224640px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:127.475850px;}
.x6{left:180.434415px;}
.x7{left:181.513845px;}
.x1{left:245.985000px;}
.x2{left:458.820000px;}
.x3{left:574.095000px;}
.x4{left:620.174850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.024000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.108320pt;}
.ls7{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.446347pt;}
.ls2{letter-spacing:0.448427pt;}
.ls4{letter-spacing:0.520587pt;}
.lsb{letter-spacing:1.516320pt;}
.ls3{letter-spacing:6.528853pt;}
.ls9{letter-spacing:18.026667pt;}
.ls1{letter-spacing:19.326773pt;}
.ls0{letter-spacing:19.435093pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws4{word-spacing:-16.768000pt;}
.ws5{word-spacing:-14.945280pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-2.261479pt;}
._0{margin-left:-1.154532pt;}
._6{width:0.956005pt;}
._1{width:2.004687pt;}
._2{width:3.457788pt;}
._3{width:5.209709pt;}
._5{width:6.238648pt;}
._a{width:7.856877pt;}
._12{width:8.899777pt;}
._7{width:9.855467pt;}
._8{width:10.876919pt;}
._19{width:11.905878pt;}
._e{width:12.922030pt;}
._f{width:14.529567pt;}
._9{width:15.806735pt;}
._10{width:16.731482pt;}
._1d{width:18.073528pt;}
._b{width:19.371519pt;}
._11{width:20.427408pt;}
._1c{width:22.401265pt;}
._1b{width:23.334426pt;}
._d{width:24.562591pt;}
._c{width:26.383248pt;}
._18{width:27.310852pt;}
._17{width:28.527990pt;}
._16{width:29.561928pt;}
._14{width:31.002137pt;}
._15{width:32.734701pt;}
._1a{width:33.677954pt;}
._13{width:40.435698pt;}
.fs3{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:118.752667pt;}
.y20{bottom:131.872667pt;}
.y53{bottom:144.065467pt;}
.y3e{bottom:146.307333pt;}
.y1f{bottom:159.427333pt;}
.y3d{bottom:173.827067pt;}
.y52{bottom:185.345733pt;}
.y1e{bottom:186.947600pt;}
.y3c{bottom:201.347333pt;}
.y1d{bottom:214.787200pt;}
.y51{bottom:225.985333pt;}
.y3b{bottom:228.867067pt;}
.y1c{bottom:242.307467pt;}
.y50{bottom:253.532267pt;}
.y3a{bottom:257.053467pt;}
.y1b{bottom:269.853867pt;}
.y39{bottom:284.573733pt;}
.y4f{bottom:294.812533pt;}
.y1a{bottom:297.374133pt;}
.y38{bottom:311.773733pt;}
.y4e{bottom:322.012533pt;}
.y19{bottom:325.213733pt;}
.y37{bottom:339.293467pt;}
.y18{bottom:352.773600pt;}
.y4d{bottom:363.332267pt;}
.y36{bottom:367.173733pt;}
.y17{bottom:380.293333pt;}
.y4c{bottom:390.532267pt;}
.y35{bottom:394.693467pt;}
.y16{bottom:407.813600pt;}
.y34{bottom:422.533600pt;}
.y4b{bottom:431.812533pt;}
.y15{bottom:435.653200pt;}
.y33{bottom:449.733600pt;}
.y4a{bottom:459.332800pt;}
.y14{bottom:463.200133pt;}
.y32{bottom:477.600267pt;}
.y49{bottom:486.559333pt;}
.y13{bottom:490.719867pt;}
.y31{bottom:505.120000pt;}
.y48{bottom:512.159333pt;}
.y12{bottom:518.240133pt;}
.y30{bottom:532.640267pt;}
.y47{bottom:535.199467pt;}
.y11{bottom:546.080267pt;}
.y46{bottom:558.239600pt;}
.y2f{bottom:560.160000pt;}
.y10{bottom:573.626667pt;}
.y45{bottom:581.306267pt;}
.y2e{bottom:588.026667pt;}
.yf{bottom:601.146933pt;}
.y44{bottom:604.346400pt;}
.y2d{bottom:615.546933pt;}
.y43{bottom:627.386000pt;}
.ye{bottom:629.306800pt;}
.y2c{bottom:643.066667pt;}
.y42{bottom:650.106267pt;}
.yd{bottom:657.146933pt;}
.y2b{bottom:670.586400pt;}
.y41{bottom:673.146400pt;}
.yc{bottom:684.706800pt;}
.y40{bottom:698.466133pt;}
.y2a{bottom:698.466667pt;}
.yb{bottom:712.226533pt;}
.y29{bottom:725.986400pt;}
.ya{bottom:739.746800pt;}
.y28{bottom:753.506667pt;}
.y9{bottom:767.266533pt;}
.y27{bottom:781.026400pt;}
.y8{bottom:794.813467pt;}
.y26{bottom:808.893067pt;}
.y7{bottom:822.653067pt;}
.y25{bottom:836.413333pt;}
.y6{bottom:841.213467pt;}
.y5{bottom:859.773333pt;}
.y24{bottom:863.933067pt;}
.y4{bottom:878.013467pt;}
.y23{bottom:891.453333pt;}
.y3{bottom:896.613467pt;}
.y2{bottom:914.853600pt;}
.y22{bottom:919.333067pt;}
.y1{bottom:944.933333pt;}
.y21{bottom:946.853333pt;}
.h4{height:39.836160pt;}
.h3{height:47.424000pt;}
.h2{height:48.448000pt;}
.h1{height:56.199680pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.311867pt;}
.x6{left:160.386147pt;}
.x7{left:161.345640pt;}
.x1{left:218.653333pt;}
.x2{left:407.840000pt;}
.x3{left:510.306667pt;}
.x4{left:551.266533pt;}
}




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