
    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_6cceee4842b3ebc7f684dc5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff2{font-family:ff2;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;}
.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;}
.lsb{letter-spacing:-0.320400px;}
.lsc{letter-spacing:-0.137400px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.396000px;}
.lsd{letter-spacing:0.828000px;}
.ls1{letter-spacing:0.918000px;}
.ls12{letter-spacing:1.008000px;}
.ls3{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.170000px;}
.ls0{letter-spacing:1.212000px;}
.ls11{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.230000px;}
.lsf{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.530000px;}
.ls10{letter-spacing:1.728000px;}
.lsa{letter-spacing:1.782000px;}
.ls9{letter-spacing:2.250000px;}
.ls2{letter-spacing:194.400000px;}
.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;}
}
.ws2e{word-spacing:-81.090000px;}
.ws38{word-spacing:-58.392000px;}
.ws3a{word-spacing:-57.240000px;}
.wsf{word-spacing:-1.430160px;}
.ws19{word-spacing:-0.157680px;}
.ws3b{word-spacing:0.000000px;}
.ws23{word-spacing:0.288000px;}
.ws15{word-spacing:0.386400px;}
.ws10{word-spacing:0.514080px;}
.ws12{word-spacing:0.660240px;}
.ws24{word-spacing:1.044000px;}
.ws13{word-spacing:1.560960px;}
.ws22{word-spacing:1.566000px;}
.wse{word-spacing:1.681920px;}
.ws2d{word-spacing:2.448000px;}
.ws36{word-spacing:2.484000px;}
.ws11{word-spacing:2.502720px;}
.ws2b{word-spacing:2.736000px;}
.ws14{word-spacing:2.784240px;}
.ws16{word-spacing:3.840480px;}
.wsb{word-spacing:4.286160px;}
.ws35{word-spacing:4.320000px;}
.ws7{word-spacing:5.006160px;}
.ws1d{word-spacing:5.472000px;}
.ws9{word-spacing:5.880960px;}
.wsd{word-spacing:7.216560px;}
.ws1f{word-spacing:7.326000px;}
.ws1c{word-spacing:8.082000px;}
.wsa{word-spacing:8.235360px;}
.ws20{word-spacing:8.424000px;}
.ws8{word-spacing:8.793360px;}
.ws1e{word-spacing:9.090000px;}
.wsc{word-spacing:9.346320px;}
.ws6{word-spacing:10.936080px;}
.ws2a{word-spacing:20.088000px;}
.ws1{word-spacing:20.546400px;}
.ws3{word-spacing:21.311280px;}
.ws5{word-spacing:22.021200px;}
.ws2{word-spacing:23.479920px;}
.ws4{word-spacing:24.086160px;}
.ws0{word-spacing:24.250800px;}
.ws17{word-spacing:40.605840px;}
.ws18{word-spacing:41.464800px;}
.ws39{word-spacing:70.200000px;}
.ws21{word-spacing:70.686000px;}
.ws37{word-spacing:70.740000px;}
.ws1b{word-spacing:86.526000px;}
.ws32{word-spacing:96.408000px;}
.ws30{word-spacing:96.552000px;}
.ws31{word-spacing:98.280000px;}
.ws2f{word-spacing:100.476000px;}
.ws33{word-spacing:100.656000px;}
.ws28{word-spacing:125.712000px;}
.ws26{word-spacing:126.648000px;}
.ws27{word-spacing:130.104000px;}
.ws29{word-spacing:130.716000px;}
.ws25{word-spacing:131.688000px;}
.ws1a{word-spacing:191.898000px;}
.ws34{word-spacing:265.932000px;}
.ws2c{word-spacing:270.432000px;}
._14{margin-left:-1.229280px;}
._0{width:1.224720px;}
._2{width:2.248320px;}
._f{width:3.936960px;}
._7{width:34.438800px;}
._8{width:39.218640px;}
._9{width:40.377840px;}
._5{width:45.323760px;}
._6{width:46.339440px;}
._3{width:58.335840px;}
._4{width:59.581440px;}
._1{width:61.464240px;}
._19{width:62.653920px;}
._15{width:79.465200px;}
._13{width:85.961280px;}
._10{width:91.070400px;}
._b{width:128.365440px;}
._1a{width:129.664320px;}
._12{width:153.041040px;}
._11{width:154.060080px;}
._a{width:168.910320px;}
._e{width:170.283840px;}
._d{width:274.084800px;}
._c{width:275.752800px;}
._18{width:325.273200px;}
._16{width:329.996880px;}
._17{width:4962.189360px;}
.fc2{color:rgb(0,145,122);}
.fc1{color:rgb(116,181,73);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fs0{font-size:136.080000px;}
.fs5{font-size:216.000000px;}
.fs4{font-size:306.000000px;}
.fs6{font-size:306.144000px;}
.fs3{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2775.750000px;}
.y15{bottom:2780.565000px;}
.y13{bottom:2881.260000px;}
.yf{bottom:2951.820000px;}
.ye{bottom:3022.200000px;}
.yd{bottom:3092.760000px;}
.yc{bottom:3163.320000px;}
.yb{bottom:3233.700000px;}
.y12{bottom:3392.895000px;}
.y11{bottom:3396.780000px;}
.ya{bottom:3616.710000px;}
.y9{bottom:3711.210000px;}
.y8{bottom:3805.710000px;}
.y7{bottom:3900.210000px;}
.y6{bottom:3994.710000px;}
.y14{bottom:4130.850000px;}
.y10{bottom:4139.745000px;}
.y3{bottom:4273.635000px;}
.y2{bottom:4323.135000px;}
.y1{bottom:4372.635000px;}
.y5{bottom:4521.885000px;}
.y4{bottom:4651.485000px;}
.h3{height:138.348000px;}
.h2{height:142.884000px;}
.h6{height:226.800000px;}
.h5{height:321.300000px;}
.h7{height:321.451200px;}
.h4{height:504.252000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x2{left:256.649947px;}
.x1{left:265.829947px;}
.xb{left:289.769947px;}
.x9{left:291.209947px;}
.xa{left:293.549947px;}
.x3{left:322.274947px;}
.x4{left:389.774947px;}
.x5{left:425.489947px;}
.x6{left:1910.159947px;}
.x7{left:1947.344947px;}
.x8{left:2014.844947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.284800pt;}
.lsc{letter-spacing:-0.122133pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.352000pt;}
.lsd{letter-spacing:0.736000pt;}
.ls1{letter-spacing:0.816000pt;}
.ls12{letter-spacing:0.896000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.040000pt;}
.ls0{letter-spacing:1.077333pt;}
.ls11{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.093333pt;}
.lsf{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.360000pt;}
.ls10{letter-spacing:1.536000pt;}
.lsa{letter-spacing:1.584000pt;}
.ls9{letter-spacing:2.000000pt;}
.ls2{letter-spacing:172.800000pt;}
.ws2e{word-spacing:-72.080000pt;}
.ws38{word-spacing:-51.904000pt;}
.ws3a{word-spacing:-50.880000pt;}
.wsf{word-spacing:-1.271253pt;}
.ws19{word-spacing:-0.140160pt;}
.ws3b{word-spacing:0.000000pt;}
.ws23{word-spacing:0.256000pt;}
.ws15{word-spacing:0.343467pt;}
.ws10{word-spacing:0.456960pt;}
.ws12{word-spacing:0.586880pt;}
.ws24{word-spacing:0.928000pt;}
.ws13{word-spacing:1.387520pt;}
.ws22{word-spacing:1.392000pt;}
.wse{word-spacing:1.495040pt;}
.ws2d{word-spacing:2.176000pt;}
.ws36{word-spacing:2.208000pt;}
.ws11{word-spacing:2.224640pt;}
.ws2b{word-spacing:2.432000pt;}
.ws14{word-spacing:2.474880pt;}
.ws16{word-spacing:3.413760pt;}
.wsb{word-spacing:3.809920pt;}
.ws35{word-spacing:3.840000pt;}
.ws7{word-spacing:4.449920pt;}
.ws1d{word-spacing:4.864000pt;}
.ws9{word-spacing:5.227520pt;}
.wsd{word-spacing:6.414720pt;}
.ws1f{word-spacing:6.512000pt;}
.ws1c{word-spacing:7.184000pt;}
.wsa{word-spacing:7.320320pt;}
.ws20{word-spacing:7.488000pt;}
.ws8{word-spacing:7.816320pt;}
.ws1e{word-spacing:8.080000pt;}
.wsc{word-spacing:8.307840pt;}
.ws6{word-spacing:9.720960pt;}
.ws2a{word-spacing:17.856000pt;}
.ws1{word-spacing:18.263467pt;}
.ws3{word-spacing:18.943360pt;}
.ws5{word-spacing:19.574400pt;}
.ws2{word-spacing:20.871040pt;}
.ws4{word-spacing:21.409920pt;}
.ws0{word-spacing:21.556267pt;}
.ws17{word-spacing:36.094080pt;}
.ws18{word-spacing:36.857600pt;}
.ws39{word-spacing:62.400000pt;}
.ws21{word-spacing:62.832000pt;}
.ws37{word-spacing:62.880000pt;}
.ws1b{word-spacing:76.912000pt;}
.ws32{word-spacing:85.696000pt;}
.ws30{word-spacing:85.824000pt;}
.ws31{word-spacing:87.360000pt;}
.ws2f{word-spacing:89.312000pt;}
.ws33{word-spacing:89.472000pt;}
.ws28{word-spacing:111.744000pt;}
.ws26{word-spacing:112.576000pt;}
.ws27{word-spacing:115.648000pt;}
.ws29{word-spacing:116.192000pt;}
.ws25{word-spacing:117.056000pt;}
.ws1a{word-spacing:170.576000pt;}
.ws34{word-spacing:236.384000pt;}
.ws2c{word-spacing:240.384000pt;}
._14{margin-left:-1.092693pt;}
._0{width:1.088640pt;}
._2{width:1.998507pt;}
._f{width:3.499520pt;}
._7{width:30.612267pt;}
._8{width:34.861013pt;}
._9{width:35.891413pt;}
._5{width:40.287787pt;}
._6{width:41.190613pt;}
._3{width:51.854080pt;}
._4{width:52.961280pt;}
._1{width:54.634880pt;}
._19{width:55.692373pt;}
._15{width:70.635733pt;}
._13{width:76.410027pt;}
._10{width:80.951467pt;}
._b{width:114.102613pt;}
._1a{width:115.257173pt;}
._12{width:136.036480pt;}
._11{width:136.942293pt;}
._a{width:150.142507pt;}
._e{width:151.363413pt;}
._d{width:243.630933pt;}
._c{width:245.113600pt;}
._18{width:289.131733pt;}
._16{width:293.330560pt;}
._17{width:4410.834987pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fs0{font-size:120.960000pt;}
.fs5{font-size:192.000000pt;}
.fs4{font-size:272.000000pt;}
.fs6{font-size:272.128000pt;}
.fs3{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2467.333333pt;}
.y15{bottom:2471.613333pt;}
.y13{bottom:2561.120000pt;}
.yf{bottom:2623.840000pt;}
.ye{bottom:2686.400000pt;}
.yd{bottom:2749.120000pt;}
.yc{bottom:2811.840000pt;}
.yb{bottom:2874.400000pt;}
.y12{bottom:3015.906667pt;}
.y11{bottom:3019.360000pt;}
.ya{bottom:3214.853333pt;}
.y9{bottom:3298.853333pt;}
.y8{bottom:3382.853333pt;}
.y7{bottom:3466.853333pt;}
.y6{bottom:3550.853333pt;}
.y14{bottom:3671.866667pt;}
.y10{bottom:3679.773333pt;}
.y3{bottom:3798.786667pt;}
.y2{bottom:3842.786667pt;}
.y1{bottom:3886.786667pt;}
.y5{bottom:4019.453333pt;}
.y4{bottom:4134.653333pt;}
.h3{height:122.976000pt;}
.h2{height:127.008000pt;}
.h6{height:201.600000pt;}
.h5{height:285.600000pt;}
.h7{height:285.734400pt;}
.h4{height:448.224000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x2{left:228.133286pt;}
.x1{left:236.293286pt;}
.xb{left:257.573286pt;}
.x9{left:258.853286pt;}
.xa{left:260.933286pt;}
.x3{left:286.466619pt;}
.x4{left:346.466619pt;}
.x5{left:378.213286pt;}
.x6{left:1697.919953pt;}
.x7{left:1730.973286pt;}
.x8{left:1790.973286pt;}
}




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