
    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_91726df7d9b952c48444e4d6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_58a9e2bb7b44f8692d8afc5b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.889000;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_c120474fca22a142a5e7e6cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.727000;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:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.224000px;}
.v1{vertical-align:24.546000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.314570px;}
.ls2{letter-spacing:3.962070px;}
.ls3{letter-spacing:13.091456px;}
.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;}
}
.wsb{word-spacing:-86.077200px;}
.ws0{word-spacing:-68.861760px;}
.ws7{word-spacing:-65.454540px;}
.ws6{word-spacing:-53.798280px;}
.wsa{word-spacing:-52.952723px;}
.ws8{word-spacing:-52.366351px;}
.ws9{word-spacing:-52.365263px;}
.ws2{word-spacing:-52.363632px;}
.ws1{word-spacing:-47.820672px;}
.ws4{word-spacing:-45.244353px;}
.ws5{word-spacing:-42.070255px;}
.wsc{word-spacing:-0.001625px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-9.038106px;}
._4{margin-left:-5.977584px;}
._2{margin-left:-4.303860px;}
._3{margin-left:-2.988792px;}
._1{margin-left:-1.721544px;}
._8{width:4.581818px;}
._6{width:12.911586px;}
._5{width:16.756362px;}
._7{width:18.267504px;}
._9{width:25.894109px;}
._a{width:39.270563px;}
.fc3{color:rgb(76,76,76);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887920px;}
.fs4{font-size:35.865480px;}
.fs3{font-size:52.363620px;}
.fs5{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs2{font-size:65.454540px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y12{bottom:48.711000px;}
.y11{bottom:93.543000px;}
.y2c{bottom:109.981500px;}
.y3f{bottom:114.883500px;}
.y2b{bottom:131.463000px;}
.y10{bottom:134.140500px;}
.y2a{bottom:155.895000px;}
.y3e{bottom:155.967000px;}
.y55{bottom:167.868000px;}
.yf{bottom:174.736500px;}
.y29{bottom:177.234000px;}
.ye{bottom:196.077000px;}
.y3d{bottom:197.049000px;}
.y54{bottom:209.532000px;}
.y28{bottom:217.728000px;}
.y3c{bottom:218.389500px;}
.y53{bottom:230.872500px;}
.yd{bottom:236.673000px;}
.y27{bottom:239.067000px;}
.y52{bottom:252.213000px;}
.yc{bottom:258.013500px;}
.y3b{bottom:259.473000px;}
.y26{bottom:260.407500px;}
.y51{bottom:273.552000px;}
.yb{bottom:279.354000px;}
.y25{bottom:281.748000px;}
.y50{bottom:294.892500px;}
.y3a{bottom:300.555000px;}
.y4f{bottom:316.233000px;}
.ya{bottom:319.950000px;}
.y39{bottom:321.895500px;}
.y24{bottom:322.240500px;}
.y4e{bottom:337.572000px;}
.y9{bottom:341.290500px;}
.y38{bottom:343.236000px;}
.y23{bottom:343.581000px;}
.y37{bottom:364.575000px;}
.y4d{bottom:379.236000px;}
.y8{bottom:381.886500px;}
.y22{bottom:384.073500px;}
.y36{bottom:385.915500px;}
.y4c{bottom:400.576500px;}
.y7{bottom:403.227000px;}
.y21{bottom:405.414000px;}
.y4b{bottom:421.917000px;}
.y6{bottom:424.567500px;}
.y35{bottom:426.999000px;}
.y20{bottom:445.906500px;}
.y4a{bottom:463.579500px;}
.y1f{bottom:467.247000px;}
.y34{bottom:468.081000px;}
.y49{bottom:505.243500px;}
.y1e{bottom:507.739500px;}
.y33{bottom:509.164500px;}
.y48{bottom:526.584000px;}
.y1d{bottom:529.080000px;}
.y32{bottom:550.248000px;}
.y1c{bottom:550.420500px;}
.y5{bottom:553.108500px;}
.y47{bottom:568.248000px;}
.y31{bottom:571.587000px;}
.y4{bottom:575.635500px;}
.y46{bottom:589.588500px;}
.y1b{bottom:590.913000px;}
.y3{bottom:598.164000px;}
.y1a{bottom:612.253500px;}
.y30{bottom:612.670500px;}
.y45{bottom:631.252500px;}
.y19{bottom:633.594000px;}
.y2{bottom:636.250500px;}
.y44{bottom:652.591500px;}
.y2f{bottom:653.754000px;}
.y5b{bottom:654.528000px;}
.y18{bottom:654.933000px;}
.y1{bottom:664.494000px;}
.y43{bottom:673.932000px;}
.y5a{bottom:675.868500px;}
.y2e{bottom:694.836000px;}
.y17{bottom:695.427000px;}
.y59{bottom:697.209000px;}
.y42{bottom:715.596000px;}
.y2d{bottom:716.176500px;}
.y16{bottom:716.766000px;}
.y58{bottom:718.548000px;}
.y41{bottom:736.935000px;}
.y57{bottom:739.888500px;}
.y15{bottom:757.260000px;}
.y40{bottom:758.275500px;}
.y14{bottom:778.599000px;}
.y56{bottom:796.606500px;}
.y13{bottom:799.939500px;}
.h6{height:25.321029px;}
.h7{height:37.981586px;}
.h3{height:42.201743px;}
.h4{height:46.210905px;}
.h2{height:60.770503px;}
.h5{height:61.514716px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x6{left:76.536000px;}
.x2{left:93.907500px;}
.x8{left:95.862000px;}
.xa{left:108.559500px;}
.xf{left:111.586500px;}
.x3{left:122.428500px;}
.xb{left:175.684500px;}
.x4{left:182.331000px;}
.x5{left:209.529000px;}
.x1{left:260.014500px;}
.xc{left:270.120000px;}
.x7{left:302.214000px;}
.xd{left:372.312000px;}
.x10{left:464.895000px;}
.x9{left:475.776000px;}
.xe{left:493.747500px;}
@media print{
.v2{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.088000pt;}
.v1{vertical-align:21.818667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.057395pt;}
.ls2{letter-spacing:3.521840pt;}
.ls3{letter-spacing:11.636850pt;}
.wsb{word-spacing:-76.513067pt;}
.ws0{word-spacing:-61.210453pt;}
.ws7{word-spacing:-58.181813pt;}
.ws6{word-spacing:-47.820693pt;}
.wsa{word-spacing:-47.069087pt;}
.ws8{word-spacing:-46.547867pt;}
.ws9{word-spacing:-46.546900pt;}
.ws2{word-spacing:-46.545451pt;}
.ws1{word-spacing:-42.507264pt;}
.ws4{word-spacing:-40.217203pt;}
.ws5{word-spacing:-37.395782pt;}
.wsc{word-spacing:-0.001444pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-8.033872pt;}
._4{margin-left:-5.313408pt;}
._2{margin-left:-3.825653pt;}
._3{margin-left:-2.656704pt;}
._1{margin-left:-1.530261pt;}
._8{width:4.072727pt;}
._6{width:11.476966pt;}
._5{width:14.894544pt;}
._7{width:16.237781pt;}
._9{width:23.016986pt;}
._a{width:34.907167pt;}
.fs6{font-size:26.567040pt;}
.fs4{font-size:31.880427pt;}
.fs3{font-size:46.545440pt;}
.fs5{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs2{font-size:58.181813pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:43.298667pt;}
.y11{bottom:83.149333pt;}
.y2c{bottom:97.761333pt;}
.y3f{bottom:102.118667pt;}
.y2b{bottom:116.856000pt;}
.y10{bottom:119.236000pt;}
.y2a{bottom:138.573333pt;}
.y3e{bottom:138.637333pt;}
.y55{bottom:149.216000pt;}
.yf{bottom:155.321333pt;}
.y29{bottom:157.541333pt;}
.ye{bottom:174.290667pt;}
.y3d{bottom:175.154667pt;}
.y54{bottom:186.250667pt;}
.y28{bottom:193.536000pt;}
.y3c{bottom:194.124000pt;}
.y53{bottom:205.220000pt;}
.yd{bottom:210.376000pt;}
.y27{bottom:212.504000pt;}
.y52{bottom:224.189333pt;}
.yc{bottom:229.345333pt;}
.y3b{bottom:230.642667pt;}
.y26{bottom:231.473333pt;}
.y51{bottom:243.157333pt;}
.yb{bottom:248.314667pt;}
.y25{bottom:250.442667pt;}
.y50{bottom:262.126667pt;}
.y3a{bottom:267.160000pt;}
.y4f{bottom:281.096000pt;}
.ya{bottom:284.400000pt;}
.y39{bottom:286.129333pt;}
.y24{bottom:286.436000pt;}
.y4e{bottom:300.064000pt;}
.y9{bottom:303.369333pt;}
.y38{bottom:305.098667pt;}
.y23{bottom:305.405333pt;}
.y37{bottom:324.066667pt;}
.y4d{bottom:337.098667pt;}
.y8{bottom:339.454667pt;}
.y22{bottom:341.398667pt;}
.y36{bottom:343.036000pt;}
.y4c{bottom:356.068000pt;}
.y7{bottom:358.424000pt;}
.y21{bottom:360.368000pt;}
.y4b{bottom:375.037333pt;}
.y6{bottom:377.393333pt;}
.y35{bottom:379.554667pt;}
.y20{bottom:396.361333pt;}
.y4a{bottom:412.070667pt;}
.y1f{bottom:415.330667pt;}
.y34{bottom:416.072000pt;}
.y49{bottom:449.105333pt;}
.y1e{bottom:451.324000pt;}
.y33{bottom:452.590667pt;}
.y48{bottom:468.074667pt;}
.y1d{bottom:470.293333pt;}
.y32{bottom:489.109333pt;}
.y1c{bottom:489.262667pt;}
.y5{bottom:491.652000pt;}
.y47{bottom:505.109333pt;}
.y31{bottom:508.077333pt;}
.y4{bottom:511.676000pt;}
.y46{bottom:524.078667pt;}
.y1b{bottom:525.256000pt;}
.y3{bottom:531.701333pt;}
.y1a{bottom:544.225333pt;}
.y30{bottom:544.596000pt;}
.y45{bottom:561.113333pt;}
.y19{bottom:563.194667pt;}
.y2{bottom:565.556000pt;}
.y44{bottom:580.081333pt;}
.y2f{bottom:581.114667pt;}
.y5b{bottom:581.802667pt;}
.y18{bottom:582.162667pt;}
.y1{bottom:590.661333pt;}
.y43{bottom:599.050667pt;}
.y5a{bottom:600.772000pt;}
.y2e{bottom:617.632000pt;}
.y17{bottom:618.157333pt;}
.y59{bottom:619.741333pt;}
.y42{bottom:636.085333pt;}
.y2d{bottom:636.601333pt;}
.y16{bottom:637.125333pt;}
.y58{bottom:638.709333pt;}
.y41{bottom:655.053333pt;}
.y57{bottom:657.678667pt;}
.y15{bottom:673.120000pt;}
.y40{bottom:674.022667pt;}
.y14{bottom:692.088000pt;}
.y56{bottom:708.094667pt;}
.y13{bottom:711.057333pt;}
.h6{height:22.507581pt;}
.h7{height:33.761409pt;}
.h3{height:37.512660pt;}
.h4{height:41.076360pt;}
.h2{height:54.018225pt;}
.h5{height:54.679747pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x6{left:68.032000pt;}
.x2{left:83.473333pt;}
.x8{left:85.210667pt;}
.xa{left:96.497333pt;}
.xf{left:99.188000pt;}
.x3{left:108.825333pt;}
.xb{left:156.164000pt;}
.x4{left:162.072000pt;}
.x5{left:186.248000pt;}
.x1{left:231.124000pt;}
.xc{left:240.106667pt;}
.x7{left:268.634667pt;}
.xd{left:330.944000pt;}
.x10{left:413.240000pt;}
.x9{left:422.912000pt;}
.xe{left:438.886667pt;}
}




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