
    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_bb7e726b9982a4eef48557c7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_06dc48cdc087ab24a29d8f7a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_b0a679b1d77ee24bb0f79c3f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_ac314e42e6cd8f5feb635503.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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;}
.m7{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m5{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259191,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.305882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305882,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-11.016600px;}
.lsc{letter-spacing:-5.928750px;}
.lse{letter-spacing:-3.703875px;}
.ls11{letter-spacing:-2.964375px;}
.ls14{letter-spacing:-2.250600px;}
.lsd{letter-spacing:-2.224875px;}
.ls10{letter-spacing:-2.224200px;}
.ls12{letter-spacing:-1.502850px;}
.lsf{letter-spacing:-1.485375px;}
.ls9{letter-spacing:-1.448400px;}
.ls6{letter-spacing:-0.786900px;}
.lsb{letter-spacing:-0.739500px;}
.ls8{letter-spacing:-0.724200px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.739500px;}
.ls13{letter-spacing:1.415250px;}
.ls1{letter-spacing:1.485375px;}
.ls2{letter-spacing:2.224875px;}
.ls5{letter-spacing:2.964375px;}
.ls4{letter-spacing:3.703875px;}
.ls3{letter-spacing:5.189250px;}
.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:0.000000px;}
._13{margin-left:-9.626250px;}
._17{margin-left:-8.013375px;}
._14{margin-left:-6.883517px;}
._f{margin-left:-5.340916px;}
._10{margin-left:-3.300471px;}
._12{margin-left:-1.638375px;}
._3{width:1.925250px;}
._4{width:3.633750px;}
._d{width:5.380500px;}
._5{width:6.489750px;}
._6{width:8.325750px;}
._e{width:9.435000px;}
._b{width:11.411250px;}
._9{width:12.622500px;}
._11{width:14.433000px;}
._a{width:15.657000px;}
._16{width:16.670625px;}
._c{width:18.041250px;}
._8{width:19.762500px;}
._15{width:21.732375px;}
._7{width:25.538250px;}
._2{width:29.268357px;}
._0{width:33.135380px;}
._1{width:38.732872px;}
.fc0{color:transparent;}
.fs5{font-size:63.000000px;}
.fs2{font-size:63.750000px;}
.fs6{font-size:64.500000px;}
.fs3{font-size:65.250000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:102.000000px;}
.fs0{font-size:129.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:93.321060px;}
.y29{bottom:93.327322px;}
.y28{bottom:141.920760px;}
.y27{bottom:141.923573px;}
.y25{bottom:160.988723px;}
.y26{bottom:161.000760px;}
.y24{bottom:180.432473px;}
.y23{bottom:200.593410px;}
.y22{bottom:220.037160px;}
.y20{bottom:239.468910px;}
.y21{bottom:239.480910px;}
.y1f{bottom:258.912660px;}
.y1e{bottom:278.356410px;}
.y1c{bottom:297.793560px;}
.y1d{bottom:297.800160px;}
.y1b{bottom:318.321060px;}
.y1a{bottom:337.764810px;}
.y19{bottom:367.281060px;}
.y18{bottom:386.725898px;}
.y17{bottom:406.169647px;}
.y16{bottom:425.246835px;}
.y15{bottom:445.042335px;}
.y14{bottom:464.486085px;}
.y13{bottom:484.286723px;}
.y12{bottom:513.085785px;}
.y11{bottom:532.880160px;}
.y10{bottom:532.883085px;}
.yf{bottom:552.326835px;}
.ye{bottom:572.121210px;}
.yd{bottom:572.126835px;}
.yc{bottom:591.921210px;}
.yb{bottom:621.443722px;}
.ya{bottom:640.520910px;}
.y9{bottom:640.526685px;}
.y8{bottom:660.321060px;}
.y7{bottom:660.326835px;}
.y6{bottom:680.116560px;}
.y5{bottom:699.560310px;}
.y4{bottom:719.366235px;}
.y3{bottom:739.160610px;}
.y2{bottom:803.241060px;}
.y1{bottom:850.761360px;}
.h8{height:61.831055px;}
.h4{height:62.567139px;}
.h5{height:62.585739px;}
.h9{height:63.303223px;}
.h6{height:64.039307px;}
.h7{height:64.775391px;}
.ha{height:66.515625px;}
.h3{height:100.057617px;}
.h2{height:134.542969px;}
.h0{height:1013.717460px;}
.h1{height:1014.000000px;}
.w0{width:684.682860px;}
.w1{width:684.750000px;}
.x0{left:0.000000px;}
.x4{left:60.503835px;}
.x3{left:89.286960px;}
.xd{left:91.093860px;}
.xa{left:110.166510px;}
.x9{left:114.126510px;}
.x7{left:122.046510px;}
.x8{left:136.807110px;}
.x12{left:158.047560px;}
.x2{left:175.687260px;}
.x1{left:181.807710px;}
.x10{left:351.366810px;}
.x11{left:365.766660px;}
.xe{left:372.246360px;}
.xf{left:387.727260px;}
.x5{left:421.927110px;}
.xb{left:428.047560px;}
.x6{left:437.047110px;}
.x13{left:439.207560px;}
.xc{left:443.526810px;}
.x14{left:452.166960px;}
.x15{left:471.607860px;}
.x16{left:489.967560px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-9.792533pt;}
.lsc{letter-spacing:-5.270000pt;}
.lse{letter-spacing:-3.292333pt;}
.ls11{letter-spacing:-2.635000pt;}
.ls14{letter-spacing:-2.000533pt;}
.lsd{letter-spacing:-1.977667pt;}
.ls10{letter-spacing:-1.977067pt;}
.ls12{letter-spacing:-1.335867pt;}
.lsf{letter-spacing:-1.320333pt;}
.ls9{letter-spacing:-1.287467pt;}
.ls6{letter-spacing:-0.699467pt;}
.lsb{letter-spacing:-0.657333pt;}
.ls8{letter-spacing:-0.643733pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.657333pt;}
.ls13{letter-spacing:1.258000pt;}
.ls1{letter-spacing:1.320333pt;}
.ls2{letter-spacing:1.977667pt;}
.ls5{letter-spacing:2.635000pt;}
.ls4{letter-spacing:3.292333pt;}
.ls3{letter-spacing:4.612667pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-8.556667pt;}
._17{margin-left:-7.123000pt;}
._14{margin-left:-6.118682pt;}
._f{margin-left:-4.747481pt;}
._10{margin-left:-2.933752pt;}
._12{margin-left:-1.456333pt;}
._3{width:1.711333pt;}
._4{width:3.230000pt;}
._d{width:4.782667pt;}
._5{width:5.768667pt;}
._6{width:7.400667pt;}
._e{width:8.386667pt;}
._b{width:10.143333pt;}
._9{width:11.220000pt;}
._11{width:12.829333pt;}
._a{width:13.917333pt;}
._16{width:14.818333pt;}
._c{width:16.036667pt;}
._8{width:17.566667pt;}
._15{width:19.317667pt;}
._7{width:22.700667pt;}
._2{width:26.016318pt;}
._0{width:29.453672pt;}
._1{width:34.429220pt;}
.fs5{font-size:56.000000pt;}
.fs2{font-size:56.666667pt;}
.fs6{font-size:57.333333pt;}
.fs3{font-size:58.000000pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:90.666667pt;}
.fs0{font-size:114.666667pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:82.952053pt;}
.y29{bottom:82.957620pt;}
.y28{bottom:126.151787pt;}
.y27{bottom:126.154287pt;}
.y25{bottom:143.101087pt;}
.y26{bottom:143.111787pt;}
.y24{bottom:160.384420pt;}
.y23{bottom:178.305253pt;}
.y22{bottom:195.588587pt;}
.y20{bottom:212.861253pt;}
.y21{bottom:212.871920pt;}
.y1f{bottom:230.144587pt;}
.y1e{bottom:247.427920pt;}
.y1c{bottom:264.705387pt;}
.y1d{bottom:264.711253pt;}
.y1b{bottom:282.952053pt;}
.y1a{bottom:300.235387pt;}
.y19{bottom:326.472053pt;}
.y18{bottom:343.756353pt;}
.y17{bottom:361.039687pt;}
.y16{bottom:377.997187pt;}
.y15{bottom:395.593187pt;}
.y14{bottom:412.876520pt;}
.y13{bottom:430.477087pt;}
.y12{bottom:456.076253pt;}
.y11{bottom:473.671253pt;}
.y10{bottom:473.673853pt;}
.yf{bottom:490.957187pt;}
.ye{bottom:508.552187pt;}
.yd{bottom:508.557187pt;}
.yc{bottom:526.152187pt;}
.yb{bottom:552.394420pt;}
.ya{bottom:569.351920pt;}
.y9{bottom:569.357053pt;}
.y8{bottom:586.952053pt;}
.y7{bottom:586.957187pt;}
.y6{bottom:604.548053pt;}
.y5{bottom:621.831387pt;}
.y4{bottom:639.436653pt;}
.y3{bottom:657.031653pt;}
.y2{bottom:713.992053pt;}
.y1{bottom:756.232320pt;}
.h8{height:54.960938pt;}
.h4{height:55.615234pt;}
.h5{height:55.631768pt;}
.h9{height:56.269531pt;}
.h6{height:56.923828pt;}
.h7{height:57.578125pt;}
.ha{height:59.125000pt;}
.h3{height:88.940104pt;}
.h2{height:119.593750pt;}
.h0{height:901.082187pt;}
.h1{height:901.333333pt;}
.w0{width:608.606987pt;}
.w1{width:608.666667pt;}
.x0{left:0.000000pt;}
.x4{left:53.781187pt;}
.x3{left:79.366187pt;}
.xd{left:80.972320pt;}
.xa{left:97.925787pt;}
.x9{left:101.445787pt;}
.x7{left:108.485787pt;}
.x8{left:121.606320pt;}
.x12{left:140.486720pt;}
.x2{left:156.166453pt;}
.x1{left:161.606853pt;}
.x10{left:312.326053pt;}
.x11{left:325.125920pt;}
.xe{left:330.885653pt;}
.xf{left:344.646453pt;}
.x5{left:375.046320pt;}
.xb{left:380.486720pt;}
.x6{left:388.486320pt;}
.x13{left:390.406720pt;}
.xc{left:394.246053pt;}
.x14{left:401.926187pt;}
.x15{left:419.206987pt;}
.x16{left:435.526720pt;}
}




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