
    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_d9fb9edb3d78bccbf753ac10.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c7f767c8521f5e61dda7c9ca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_58ff6d1546443ca96cfda4a0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_546909654fc90c281ac572b1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d9dbdee5ddb59952922bf293.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_f37edffac371e52f07be0117.woff')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.365400px;}
.ls5{letter-spacing:-0.294600px;}
.lsc{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.084672px;}
.ls6{letter-spacing:0.157800px;}
.lsb{letter-spacing:0.324000px;}
.ls9{letter-spacing:24.624288px;}
.lsa{letter-spacing:24.744288px;}
.ls2{letter-spacing:30.126960px;}
.lsd{letter-spacing:93.288000px;}
.ls7{letter-spacing:97.509600px;}
.ls8{letter-spacing:97.560000px;}
.lsf{letter-spacing:119.889600px;}
.ls10{letter-spacing:119.916000px;}
.lse{letter-spacing:119.940000px;}
.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:-32.576544px;}
.ws4{word-spacing:-32.544000px;}
.ws3{word-spacing:-29.777760px;}
.ws5{word-spacing:-24.408000px;}
.ws1{word-spacing:-0.819024px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-13.392000px;}
._8{margin-left:-12.240000px;}
._6{margin-left:-11.199600px;}
._a{margin-left:-10.018080px;}
._0{margin-left:-5.368320px;}
._4{margin-left:-3.769920px;}
._1{margin-left:-2.348640px;}
._3{margin-left:-1.006560px;}
._2{width:1.006560px;}
._5{width:2.449728px;}
._7{width:3.892320px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fsa{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs7{font-size:131.760000px;}
.fs8{font-size:131.904000px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs0{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y5{bottom:53.568000px;}
.y11{bottom:161.280000px;}
.y10{bottom:209.340000px;}
.y4{bottom:235.695000px;}
.y28{bottom:255.960000px;}
.yf{bottom:257.220000px;}
.y3e{bottom:287.280000px;}
.ye{bottom:305.310000px;}
.y2e{bottom:320.610000px;}
.y27{bottom:320.790000px;}
.y3d{bottom:335.370000px;}
.y1{bottom:340.920000px;}
.y1f{bottom:346.170000px;}
.y26{bottom:353.190000px;}
.yd{bottom:353.370000px;}
.y3c{bottom:383.250000px;}
.y2d{bottom:384.690000px;}
.yc{bottom:401.250000px;}
.y25{bottom:417.990000px;}
.y3b{bottom:431.310000px;}
.y1e{bottom:442.110000px;}
.y17{bottom:443.730000px;}
.yb{bottom:449.310000px;}
.y2c{bottom:449.490000px;}
.y34{bottom:450.390000px;}
.y24{bottom:482.835000px;}
.y16{bottom:484.275000px;}
.y1d{bottom:490.215000px;}
.ya{bottom:497.415000px;}
.y2b{bottom:514.335000px;}
.y23{bottom:515.235000px;}
.y15{bottom:524.775000px;}
.y3a{bottom:527.295000px;}
.y1c{bottom:538.095000px;}
.y9{bottom:545.295000px;}
.y33{bottom:547.635000px;}
.y14{bottom:565.275000px;}
.y39{bottom:575.355000px;}
.y2a{bottom:579.135000px;}
.y22{bottom:580.035000px;}
.y1b{bottom:586.155000px;}
.y8{bottom:593.355000px;}
.y13{bottom:605.775000px;}
.y3{bottom:608.370000px;}
.y21{bottom:612.435000px;}
.y38{bottom:623.415000px;}
.y1a{bottom:634.215000px;}
.y29{bottom:643.935000px;}
.y20{bottom:644.835000px;}
.y12{bottom:646.275000px;}
.y37{bottom:649.830000px;}
.y7{bottom:671.325000px;}
.y30{bottom:678.885000px;}
.y2{bottom:679.065000px;}
.y19{bottom:682.125000px;}
.y36{bottom:697.710000px;}
.y32{bottom:705.315000px;}
.y2f{bottom:713.700000px;}
.y6{bottom:719.385000px;}
.y18{bottom:730.185000px;}
.y31{bottom:741.315000px;}
.y35{bottom:745.770000px;}
.hf{height:93.392578px;}
.h5{height:95.388891px;}
.he{height:107.419922px;}
.hd{height:107.563148px;}
.h4{height:110.583984px;}
.h11{height:119.594180px;}
.h12{height:119.737406px;}
.h10{height:123.116836px;}
.h9{height:131.052305px;}
.ha{height:131.195531px;}
.h8{height:134.912461px;}
.hb{height:143.226562px;}
.hc{height:143.369789px;}
.h6{height:147.445312px;}
.h7{height:147.592758px;}
.h1{height:171.773789px;}
.h3{height:196.839492px;}
.h2{height:196.986938px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xd{left:75.599979px;}
.x6{left:89.999979px;}
.xf{left:102.023979px;}
.x8{left:112.823979px;}
.xe{left:116.099979px;}
.x7{left:123.839979px;}
.xa{left:132.011979px;}
.x10{left:142.523979px;}
.x9{left:146.663979px;}
.xc{left:153.329979px;}
.xb{left:165.854979px;}
.x1{left:225.329979px;}
.x2{left:272.954979px;}
.x5{left:356.369979px;}
.x4{left:398.444979px;}
.x3{left:615.674979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.324800pt;}
.ls5{letter-spacing:-0.261867pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.075264pt;}
.ls6{letter-spacing:0.140267pt;}
.lsb{letter-spacing:0.288000pt;}
.ls9{letter-spacing:21.888256pt;}
.lsa{letter-spacing:21.994923pt;}
.ls2{letter-spacing:26.779520pt;}
.lsd{letter-spacing:82.922667pt;}
.ls7{letter-spacing:86.675200pt;}
.ls8{letter-spacing:86.720000pt;}
.lsf{letter-spacing:106.568533pt;}
.ls10{letter-spacing:106.592000pt;}
.lse{letter-spacing:106.613333pt;}
.ws2{word-spacing:-28.956928pt;}
.ws4{word-spacing:-28.928000pt;}
.ws3{word-spacing:-26.469120pt;}
.ws5{word-spacing:-21.696000pt;}
.ws1{word-spacing:-0.728021pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-11.904000pt;}
._8{margin-left:-10.880000pt;}
._6{margin-left:-9.955200pt;}
._a{margin-left:-8.904960pt;}
._0{margin-left:-4.771840pt;}
._4{margin-left:-3.351040pt;}
._1{margin-left:-2.087680pt;}
._3{margin-left:-0.894720pt;}
._2{width:0.894720pt;}
._5{width:2.177536pt;}
._7{width:3.459840pt;}
.fs4{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fsa{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs7{font-size:117.120000pt;}
.fs8{font-size:117.248000pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs0{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:47.616000pt;}
.y11{bottom:143.360000pt;}
.y10{bottom:186.080000pt;}
.y4{bottom:209.506667pt;}
.y28{bottom:227.520000pt;}
.yf{bottom:228.640000pt;}
.y3e{bottom:255.360000pt;}
.ye{bottom:271.386667pt;}
.y2e{bottom:284.986667pt;}
.y27{bottom:285.146667pt;}
.y3d{bottom:298.106667pt;}
.y1{bottom:303.040000pt;}
.y1f{bottom:307.706667pt;}
.y26{bottom:313.946667pt;}
.yd{bottom:314.106667pt;}
.y3c{bottom:340.666667pt;}
.y2d{bottom:341.946667pt;}
.yc{bottom:356.666667pt;}
.y25{bottom:371.546667pt;}
.y3b{bottom:383.386667pt;}
.y1e{bottom:392.986667pt;}
.y17{bottom:394.426667pt;}
.yb{bottom:399.386667pt;}
.y2c{bottom:399.546667pt;}
.y34{bottom:400.346667pt;}
.y24{bottom:429.186667pt;}
.y16{bottom:430.466667pt;}
.y1d{bottom:435.746667pt;}
.ya{bottom:442.146667pt;}
.y2b{bottom:457.186667pt;}
.y23{bottom:457.986667pt;}
.y15{bottom:466.466667pt;}
.y3a{bottom:468.706667pt;}
.y1c{bottom:478.306667pt;}
.y9{bottom:484.706667pt;}
.y33{bottom:486.786667pt;}
.y14{bottom:502.466667pt;}
.y39{bottom:511.426667pt;}
.y2a{bottom:514.786667pt;}
.y22{bottom:515.586667pt;}
.y1b{bottom:521.026667pt;}
.y8{bottom:527.426667pt;}
.y13{bottom:538.466667pt;}
.y3{bottom:540.773333pt;}
.y21{bottom:544.386667pt;}
.y38{bottom:554.146667pt;}
.y1a{bottom:563.746667pt;}
.y29{bottom:572.386667pt;}
.y20{bottom:573.186667pt;}
.y12{bottom:574.466667pt;}
.y37{bottom:577.626667pt;}
.y7{bottom:596.733333pt;}
.y30{bottom:603.453333pt;}
.y2{bottom:603.613333pt;}
.y19{bottom:606.333333pt;}
.y36{bottom:620.186667pt;}
.y32{bottom:626.946667pt;}
.y2f{bottom:634.400000pt;}
.y6{bottom:639.453333pt;}
.y18{bottom:649.053333pt;}
.y31{bottom:658.946667pt;}
.y35{bottom:662.906667pt;}
.hf{height:83.015625pt;}
.h5{height:84.790125pt;}
.he{height:95.484375pt;}
.hd{height:95.611688pt;}
.h4{height:98.296875pt;}
.h11{height:106.305937pt;}
.h12{height:106.433250pt;}
.h10{height:109.437187pt;}
.h9{height:116.490937pt;}
.ha{height:116.618250pt;}
.h8{height:119.922187pt;}
.hb{height:127.312500pt;}
.hc{height:127.439813pt;}
.h6{height:131.062500pt;}
.h7{height:131.193562pt;}
.h1{height:152.687812pt;}
.h3{height:174.968437pt;}
.h2{height:175.099500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xd{left:67.199981pt;}
.x6{left:79.999981pt;}
.xf{left:90.687981pt;}
.x8{left:100.287981pt;}
.xe{left:103.199981pt;}
.x7{left:110.079981pt;}
.xa{left:117.343981pt;}
.x10{left:126.687981pt;}
.x9{left:130.367981pt;}
.xc{left:136.293314pt;}
.xb{left:147.426648pt;}
.x1{left:200.293314pt;}
.x2{left:242.626648pt;}
.x5{left:316.773314pt;}
.x4{left:354.173314pt;}
.x3{left:547.266648pt;}
}




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