
    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_a750a71e98137224c5adf0c3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_59c33e423fa34fe4e32e5b27.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_b42d4617650c4cb34377c83d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_3fed07cd5d383517c26c09aa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.747559;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_86040eb0531d02e3c9a9c681.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0026cc80730c6bf8d7dd0448.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_b4b2dd5770c066f1b70601b3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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);}
.v2{vertical-align:-27.360009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360009px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.142650px;}
.ls0{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.ls2{letter-spacing:34.055251px;}
.ls4{letter-spacing:55.445857px;}
.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:-72.002705px;}
.ws2{word-spacing:-59.762250px;}
.ws1{word-spacing:-18.000676px;}
.ws4{word-spacing:-14.940563px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-8.483662px;}
._3{margin-left:-5.040189px;}
._8{margin-left:-3.877923px;}
._0{margin-left:-1.780137px;}
._1{width:1.021171px;}
._6{width:2.281672px;}
._7{width:3.585057px;}
._4{width:9.924279px;}
._5{width:11.375865px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.241800px;}
.fs4{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs0{font-size:81.363150px;}
.y0{bottom:0.000000px;}
.y46{bottom:92.340088px;}
.y45{bottom:114.660049px;}
.y21{bottom:125.640060px;}
.y20{bottom:146.340088px;}
.y44{bottom:149.040047px;}
.y5f{bottom:165.600083px;}
.y1f{bottom:167.040047px;}
.y43{bottom:171.360077px;}
.y5e{bottom:196.020058px;}
.y42{bottom:205.740074px;}
.y1e{bottom:208.620072px;}
.y41{bottom:239.940033px;}
.y1d{bottom:250.740074px;}
.y40{bottom:274.320099px;}
.y1c{bottom:294.660049px;}
.y3f{bottom:296.640060px;}
.y3e{bottom:318.960091px;}
.y1b{bottom:336.420043px;}
.y3d{bottom:353.340088px;}
.y1a{bottom:357.120072px;}
.y19{bottom:377.820099px;}
.y3c{bottom:387.720085px;}
.y18{bottom:398.520058px;}
.y17{bottom:419.220085px;}
.y3b{bottom:421.020058px;}
.y16{bottom:439.920043px;}
.y3a{bottom:451.620072px;}
.y15{bottom:460.620072px;}
.y14{bottom:481.860077px;}
.y39{bottom:490.680039px;}
.y13{bottom:503.100083px;}
.y5d{bottom:506.160049px;}
.y38{bottom:511.380066px;}
.y12{bottom:523.800041px;}
.y37{bottom:532.080093px;}
.y5c{bottom:540.540047px;}
.y11{bottom:544.500068px;}
.y5b{bottom:562.860077px;}
.y36{bottom:573.660049px;}
.y5a{bottom:585.180039px;}
.y10{bottom:586.260064px;}
.y35{bottom:594.360077px;}
.yf{bottom:606.960091px;}
.y34{bottom:615.060036px;}
.y59{bottom:619.380066px;}
.y33{bottom:635.760064px;}
.y58{bottom:641.880066px;}
.ye{bottom:649.080093px;}
.y32{bottom:656.460091px;}
.y57{bottom:664.200096px;}
.y56{bottom:686.520058px;}
.yd{bottom:693.000068px;}
.y31{bottom:698.580059px;}
.y55{bottom:720.720051px;}
.yc{bottom:734.580059px;}
.y30{bottom:742.500068px;}
.y54{bottom:743.220051px;}
.yb{bottom:755.280052px;}
.ya{bottom:775.980079px;}
.y53{bottom:777.420078px;}
.y2f{bottom:784.260064px;}
.y9{bottom:796.680073px;}
.y2e{bottom:804.960056px;}
.y52{bottom:811.800076px;}
.y2d{bottom:825.660049px;}
.y51{bottom:834.120072px;}
.y8{bottom:838.440067px;}
.y2c{bottom:846.360077px;}
.y2b{bottom:867.060070px;}
.y50{bottom:868.500068px;}
.y7{bottom:880.560070px;}
.y2a{bottom:887.760064px;}
.y4f{bottom:890.820065px;}
.y4e{bottom:913.140060px;}
.y6{bottom:925.200061px;}
.y29{bottom:929.340054px;}
.y4d{bottom:935.460056px;}
.y5{bottom:967.140060px;}
.y4c{bottom:969.840054px;}
.y28{bottom:971.460056px;}
.y4b{bottom:992.160067px;}
.y27{bottom:1015.380066px;}
.y4{bottom:1017.360060px;}
.y4a{bottom:1026.540064px;}
.y3{bottom:1053.900072px;}
.y26{bottom:1057.140060px;}
.y49{bottom:1060.920061px;}
.y25{bottom:1077.840070px;}
.y48{bottom:1083.240074px;}
.y2{bottom:1095.660067px;}
.y24{bottom:1098.540064px;}
.y47{bottom:1117.440067px;}
.y23{bottom:1119.240066px;}
.y1{bottom:1137.780069px;}
.y22{bottom:1139.940067px;}
.h5{height:34.885794px;}
.h9{height:43.216744px;}
.h7{height:50.802689px;}
.h3{height:52.068362px;}
.h8{height:52.419938px;}
.h2{height:57.407105px;}
.h6{height:57.412496px;}
.h4{height:62.245803px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x2{left:111.959997px;}
.x3{left:138.959997px;}
.x4{left:165.960005px;}
.x5{left:192.960005px;}
.x6{left:807.659981px;}
@media print{
.v2{vertical-align:-24.320008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320008pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.126800pt;}
.ls0{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls2{letter-spacing:30.271334pt;}
.ls4{letter-spacing:49.285206pt;}
.ws0{word-spacing:-64.002404pt;}
.ws2{word-spacing:-53.122000pt;}
.ws1{word-spacing:-16.000601pt;}
.ws4{word-spacing:-13.280500pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-7.541033pt;}
._3{margin-left:-4.480168pt;}
._8{margin-left:-3.447043pt;}
._0{margin-left:-1.582344pt;}
._1{width:0.907708pt;}
._6{width:2.028153pt;}
._7{width:3.186717pt;}
._4{width:8.821581pt;}
._5{width:10.111880pt;}
.fs2{font-size:42.881600pt;}
.fs4{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs0{font-size:72.322800pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:82.080079pt;}
.y45{bottom:101.920044pt;}
.y21{bottom:111.680054pt;}
.y20{bottom:130.080079pt;}
.y44{bottom:132.480042pt;}
.y5f{bottom:147.200074pt;}
.y1f{bottom:148.480042pt;}
.y43{bottom:152.320069pt;}
.y5e{bottom:174.240052pt;}
.y42{bottom:182.880066pt;}
.y1e{bottom:185.440064pt;}
.y41{bottom:213.280030pt;}
.y1d{bottom:222.880066pt;}
.y40{bottom:243.840088pt;}
.y1c{bottom:261.920044pt;}
.y3f{bottom:263.680054pt;}
.y3e{bottom:283.520081pt;}
.y1b{bottom:299.040039pt;}
.y3d{bottom:314.080079pt;}
.y1a{bottom:317.440064pt;}
.y19{bottom:335.840088pt;}
.y3c{bottom:344.640076pt;}
.y18{bottom:354.240052pt;}
.y17{bottom:372.640076pt;}
.y3b{bottom:374.240052pt;}
.y16{bottom:391.040039pt;}
.y3a{bottom:401.440064pt;}
.y15{bottom:409.440064pt;}
.y14{bottom:428.320069pt;}
.y39{bottom:436.160035pt;}
.y13{bottom:447.200074pt;}
.y5d{bottom:449.920044pt;}
.y38{bottom:454.560059pt;}
.y12{bottom:465.600037pt;}
.y37{bottom:472.960083pt;}
.y5c{bottom:480.480042pt;}
.y11{bottom:484.000061pt;}
.y5b{bottom:500.320069pt;}
.y36{bottom:509.920044pt;}
.y5a{bottom:520.160035pt;}
.y10{bottom:521.120057pt;}
.y35{bottom:528.320069pt;}
.yf{bottom:539.520081pt;}
.y34{bottom:546.720032pt;}
.y59{bottom:550.560059pt;}
.y33{bottom:565.120057pt;}
.y58{bottom:570.560059pt;}
.ye{bottom:576.960083pt;}
.y32{bottom:583.520081pt;}
.y57{bottom:590.400086pt;}
.y56{bottom:610.240052pt;}
.yd{bottom:616.000061pt;}
.y31{bottom:620.960053pt;}
.y55{bottom:640.640046pt;}
.yc{bottom:652.960053pt;}
.y30{bottom:660.000061pt;}
.y54{bottom:660.640046pt;}
.yb{bottom:671.360047pt;}
.ya{bottom:689.760071pt;}
.y53{bottom:691.040070pt;}
.y2f{bottom:697.120057pt;}
.y9{bottom:708.160065pt;}
.y2e{bottom:715.520050pt;}
.y52{bottom:721.600068pt;}
.y2d{bottom:733.920044pt;}
.y51{bottom:741.440064pt;}
.y8{bottom:745.280060pt;}
.y2c{bottom:752.320069pt;}
.y2b{bottom:770.720063pt;}
.y50{bottom:772.000061pt;}
.y7{bottom:782.720063pt;}
.y2a{bottom:789.120057pt;}
.y4f{bottom:791.840058pt;}
.y4e{bottom:811.680054pt;}
.y6{bottom:822.400055pt;}
.y29{bottom:826.080048pt;}
.y4d{bottom:831.520050pt;}
.y5{bottom:859.680054pt;}
.y4c{bottom:862.080048pt;}
.y28{bottom:863.520050pt;}
.y4b{bottom:881.920060pt;}
.y27{bottom:902.560059pt;}
.y4{bottom:904.320054pt;}
.y4a{bottom:912.480057pt;}
.y3{bottom:936.800064pt;}
.y26{bottom:939.680054pt;}
.y49{bottom:943.040055pt;}
.y25{bottom:958.080063pt;}
.y48{bottom:962.880066pt;}
.y2{bottom:973.920060pt;}
.y24{bottom:976.480057pt;}
.y47{bottom:993.280060pt;}
.y23{bottom:994.880059pt;}
.y1{bottom:1011.360062pt;}
.y22{bottom:1013.280060pt;}
.h5{height:31.009595pt;}
.h9{height:38.414884pt;}
.h7{height:45.157946pt;}
.h3{height:46.282988pt;}
.h8{height:46.595500pt;}
.h2{height:51.028538pt;}
.h6{height:51.033330pt;}
.h4{height:55.329603pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x2{left:99.519997pt;}
.x3{left:123.519997pt;}
.x4{left:147.520004pt;}
.x5{left:171.520004pt;}
.x6{left:717.919983pt;}
}




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