
    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_53d0a04c01aa687e8f425225.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_a50c8f7d4dc2c7e95b4b5b79.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_0a58fbd5cf70e2bcf5eaedf2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.987000;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_6ae9c49a7239865124010f61.woff')format("woff");}.ff4{font-family:ff4;line-height:1.085000;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_6a4117d44802fa5e6baea2f9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.067000;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_006120c3cc6876d44fe33201.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_26edc84aac7e120f0d569539.woff')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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:ffa;src:url('chunks/assets/font_ddef6f66eb7fb1e4f91294ed.woff')format("woff");}.ffa{font-family:ffa;line-height:0.935547;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:4.501757px;}
.ls0{letter-spacing:0.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;}
}
.ws2{word-spacing:-20.356490px;}
.ws0{word-spacing:-19.961418px;}
.ws1{word-spacing:-19.087192px;}
.ws3{word-spacing:-16.602255px;}
.ws5{word-spacing:-11.068153px;}
.ws4{word-spacing:-10.179819px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-1723.088970px;}
._9{margin-left:-8.203265px;}
._2{margin-left:-5.762266px;}
._4{margin-left:-3.690662px;}
._5{margin-left:-2.326880px;}
._3{margin-left:-1.081483px;}
._0{width:1.723223px;}
._1{width:21.429190px;}
._6{width:177.886830px;}
._7{width:233.039395px;}
.fc3{color:transparent;}
.fc2{color:rgb(208,163,0);}
.fc1{color:rgb(55,160,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.017971px;}
.fs2{font-size:48.018016px;}
.fs6{font-size:69.790927px;}
.fs9{font-size:72.027138px;}
.fs0{font-size:76.843953px;}
.fs7{font-size:84.001650px;}
.fs4{font-size:90.033923px;}
.fs8{font-size:96.021179px;}
.fs5{font-size:102.008434px;}
.fs1{font-size:180.067845px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y19{bottom:3.074802px;}
.yb{bottom:3.109740px;}
.y3e{bottom:3.179966px;}
.y8{bottom:3.196443px;}
.y10{bottom:3.217135px;}
.y17{bottom:3.278190px;}
.y1e{bottom:4.367937px;}
.ya{bottom:19.115730px;}
.y3d{bottom:19.185972px;}
.yf{bottom:19.223141px;}
.y16{bottom:19.284195px;}
.yd{bottom:27.495020px;}
.y1d{bottom:28.358568px;}
.y3c{bottom:35.191977px;}
.ye{bottom:35.229146px;}
.y15{bottom:35.290200px;}
.y3b{bottom:51.197983px;}
.y14{bottom:51.296206px;}
.y1c{bottom:52.349199px;}
.y3a{bottom:67.203988px;}
.y13{bottom:67.302211px;}
.y39{bottom:83.209993px;}
.y12{bottom:83.308217px;}
.y9{bottom:87.975017px;}
.y38{bottom:99.215999px;}
.y37{bottom:115.222004px;}
.y7{bottom:132.255015px;}
.y36{bottom:171.855014px;}
.y11{bottom:203.175012px;}
.yc{bottom:306.884494px;}
.y18{bottom:334.575007px;}
.y1b{bottom:351.135006px;}
.y2c{bottom:548.696396px;}
.y2b{bottom:573.455725px;}
.y2a{bottom:598.215054px;}
.y2d{bottom:599.340486px;}
.y20{bottom:637.904930px;}
.y35{bottom:728.238976px;}
.y34{bottom:752.998304px;}
.y33{bottom:777.757633px;}
.y26{bottom:784.708960px;}
.y32{bottom:802.516962px;}
.y25{bottom:809.468289px;}
.y31{bottom:827.276291px;}
.y24{bottom:834.227617px;}
.y29{bottom:839.142059px;}
.y30{bottom:852.035619px;}
.y23{bottom:858.986946px;}
.y28{bottom:863.901387px;}
.y2f{bottom:876.794948px;}
.y22{bottom:883.746275px;}
.y27{bottom:888.660716px;}
.y2e{bottom:901.554277px;}
.y21{bottom:908.505604px;}
.y1f{bottom:933.865081px;}
.y1a{bottom:977.418991px;}
.y5{bottom:1038.500335px;}
.y4{bottom:1064.385087px;}
.y3{bottom:1090.269840px;}
.y2{bottom:1116.154593px;}
.y6{bottom:1172.287909px;}
.h5{height:14.399999px;}
.h7{height:30.239999px;}
.h8{height:43.024102px;}
.hb{height:43.024143px;}
.h6{height:43.888467px;}
.hd{height:45.617115px;}
.ha{height:46.439998px;}
.h14{height:52.437726px;}
.h3{height:58.871173px;}
.h10{height:62.532670px;}
.h13{height:64.536316px;}
.hf{height:68.759997px;}
.h11{height:81.279265px;}
.h9{height:82.291005px;}
.he{height:84.258967px;}
.h12{height:87.763357px;}
.hc{height:94.319996px;}
.h15{height:126.359995px;}
.h4{height:148.736040px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w6{width:260.279989px;}
.w5{width:369.359985px;}
.w8{width:395.279984px;}
.w2{width:583.559976px;}
.w3{width:618.479974px;}
.w4{width:658.439973px;}
.w7{width:821.519966px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:24.479999px;}
.xa{left:27.719999px;}
.xb{left:56.454998px;}
.x5{left:73.121981px;}
.x9{left:78.734880px;}
.x6{left:85.126485px;}
.x7{left:175.160266px;}
.x8{left:187.164770px;}
.x1{left:192.538072px;}
.xe{left:234.037471px;}
.x2{left:278.001253px;}
.xd{left:313.415819px;}
.x4{left:498.415497px;}
.xc{left:532.746320px;}
.xf{left:549.615931px;}
.x10{left:592.237388px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.001561pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-18.094658pt;}
.ws0{word-spacing:-17.743483pt;}
.ws1{word-spacing:-16.966393pt;}
.ws3{word-spacing:-14.757560pt;}
.ws5{word-spacing:-9.838358pt;}
.ws4{word-spacing:-9.048728pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-1531.634640pt;}
._9{margin-left:-7.291791pt;}
._2{margin-left:-5.122014pt;}
._4{margin-left:-3.280588pt;}
._5{margin-left:-2.068338pt;}
._3{margin-left:-0.961318pt;}
._0{width:1.531754pt;}
._1{width:19.048169pt;}
._6{width:158.121627pt;}
._7{width:207.146129pt;}
.fs3{font-size:42.682641pt;}
.fs2{font-size:42.682681pt;}
.fs6{font-size:62.036379pt;}
.fs9{font-size:64.024123pt;}
.fs0{font-size:68.305736pt;}
.fs7{font-size:74.668133pt;}
.fs4{font-size:80.030153pt;}
.fs8{font-size:85.352159pt;}
.fs5{font-size:90.674164pt;}
.fs1{font-size:160.060307pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y19{bottom:2.733157pt;}
.yb{bottom:2.764213pt;}
.y3e{bottom:2.826637pt;}
.y8{bottom:2.841282pt;}
.y10{bottom:2.859676pt;}
.y17{bottom:2.913946pt;}
.y1e{bottom:3.882611pt;}
.ya{bottom:16.991760pt;}
.y3d{bottom:17.054197pt;}
.yf{bottom:17.087236pt;}
.y16{bottom:17.141507pt;}
.yd{bottom:24.440017pt;}
.y1d{bottom:25.207616pt;}
.y3c{bottom:31.281758pt;}
.ye{bottom:31.314797pt;}
.y15{bottom:31.369067pt;}
.y3b{bottom:45.509318pt;}
.y14{bottom:45.596627pt;}
.y1c{bottom:46.532621pt;}
.y3a{bottom:59.736878pt;}
.y13{bottom:59.824188pt;}
.y39{bottom:73.964439pt;}
.y12{bottom:74.051748pt;}
.y9{bottom:78.200015pt;}
.y38{bottom:88.191999pt;}
.y37{bottom:102.419559pt;}
.y7{bottom:117.560013pt;}
.y36{bottom:152.760012pt;}
.y11{bottom:180.600011pt;}
.yc{bottom:272.786216pt;}
.y18{bottom:297.400006pt;}
.y1b{bottom:312.120005pt;}
.y2c{bottom:487.730130pt;}
.y2b{bottom:509.738422pt;}
.y2a{bottom:531.746714pt;}
.y2d{bottom:532.747098pt;}
.y20{bottom:567.026605pt;}
.y35{bottom:647.323534pt;}
.y34{bottom:669.331826pt;}
.y33{bottom:691.340118pt;}
.y26{bottom:697.519076pt;}
.y32{bottom:713.348411pt;}
.y25{bottom:719.527368pt;}
.y31{bottom:735.356703pt;}
.y24{bottom:741.535660pt;}
.y29{bottom:745.904052pt;}
.y30{bottom:757.364995pt;}
.y23{bottom:763.543952pt;}
.y28{bottom:767.912344pt;}
.y2f{bottom:779.373287pt;}
.y22{bottom:785.552244pt;}
.y27{bottom:789.920637pt;}
.y2e{bottom:801.381579pt;}
.y21{bottom:807.560537pt;}
.y1f{bottom:830.102294pt;}
.y1a{bottom:868.816881pt;}
.y5{bottom:923.111409pt;}
.y4{bottom:946.120078pt;}
.y3{bottom:969.128747pt;}
.y2{bottom:992.137416pt;}
.y6{bottom:1042.033697pt;}
.h5{height:12.799999pt;}
.h7{height:26.879999pt;}
.h8{height:38.243646pt;}
.hb{height:38.243682pt;}
.h6{height:39.011971pt;}
.hd{height:40.548547pt;}
.ha{height:41.279998pt;}
.h14{height:46.611312pt;}
.h3{height:52.329932pt;}
.h10{height:55.584596pt;}
.h13{height:57.365614pt;}
.hf{height:61.119997pt;}
.h11{height:72.248235pt;}
.h9{height:73.147560pt;}
.he{height:74.896859pt;}
.h12{height:78.011873pt;}
.hc{height:83.839997pt;}
.h15{height:112.319995pt;}
.h4{height:132.209814pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w6{width:231.359990pt;}
.w5{width:328.319986pt;}
.w8{width:351.359985pt;}
.w2{width:518.719978pt;}
.w3{width:549.759977pt;}
.w4{width:585.279976pt;}
.w7{width:730.239970pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:21.759999pt;}
.xa{left:24.639999pt;}
.xb{left:50.182220pt;}
.x5{left:64.997316pt;}
.x9{left:69.986560pt;}
.x6{left:75.667987pt;}
.x7{left:155.698014pt;}
.x8{left:166.368684pt;}
.x1{left:171.144953pt;}
.xe{left:208.033308pt;}
.x2{left:247.112225pt;}
.xd{left:278.591839pt;}
.x4{left:443.035998pt;}
.xc{left:473.552284pt;}
.xf{left:488.547495pt;}
.x10{left:526.433234pt;}
}




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