
    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_104a811f626e1727a726ac74.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_e074e238651fe186b2e1e2d5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.074500;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_e19facca7eef4a7397f3f21c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_995063ba1dc6bc80e1399012.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_79d2b0944bc0c7790656d002.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_79d2b0944bc0c7790656d002.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.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;}
}
.ws4{word-spacing:-22.886459px;}
.ws3{word-spacing:-17.801639px;}
.ws2{word-spacing:-16.595999px;}
.ws1{word-spacing:-15.263999px;}
.ws0{word-spacing:-13.826542px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-13.780596px;}
._e{margin-left:-11.808478px;}
._c{margin-left:-7.904152px;}
._b{margin-left:-6.068654px;}
._f{margin-left:-5.004537px;}
._2{margin-left:-3.663911px;}
._1{margin-left:-2.142015px;}
._0{margin-left:-1.102103px;}
._3{width:1.104623px;}
._d{width:3.217068px;}
._9{width:8.859843px;}
._5{width:10.441942px;}
._a{width:14.204245px;}
._7{width:15.406857px;}
._8{width:17.204278px;}
._4{width:20.362586px;}
.fc4{color:transparent;}
.fc3{color:rgb(229,114,0);}
.fc2{color:rgb(255,49,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.984997px;}
.fs4{font-size:71.999997px;}
.fs3{font-size:83.969997px;}
.fs5{font-size:101.969996px;}
.fs6{font-size:107.954996px;}
.fs1{font-size:119.969995px;}
.fs2{font-size:143.999994px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000008px;}
.ya{bottom:13.497551px;}
.y9{bottom:33.747551px;}
.y8{bottom:53.997550px;}
.y7{bottom:74.247549px;}
.y5{bottom:97.436408px;}
.y4{bottom:117.686407px;}
.y3{bottom:137.936406px;}
.y2{bottom:160.746689px;}
.ye{bottom:194.130856px;}
.yd{bottom:214.380855px;}
.yc{bottom:234.630854px;}
.yb{bottom:254.880853px;}
.y6{bottom:277.764756px;}
.y4b{bottom:328.346518px;}
.y4a{bottom:348.596517px;}
.y49{bottom:368.846517px;}
.y48{bottom:389.096516px;}
.y47{bottom:409.346515px;}
.y46{bottom:429.596514px;}
.y45{bottom:449.846513px;}
.y44{bottom:470.096512px;}
.y4e{bottom:501.914679px;}
.y4c{bottom:556.555765px;}
.y4d{bottom:557.878153px;}
.y3e{bottom:621.844246px;}
.y3d{bottom:646.594245px;}
.y3c{bottom:671.344244px;}
.y3b{bottom:720.844242px;}
.y3a{bottom:745.594241px;}
.y39{bottom:770.344240px;}
.y38{bottom:795.094239px;}
.y43{bottom:841.463209px;}
.y42{bottom:915.756982px;}
.y41{bottom:940.506981px;}
.y40{bottom:965.256980px;}
.y3f{bottom:1012.469538px;}
.y33{bottom:1061.931916px;}
.y32{bottom:1086.681915px;}
.y31{bottom:1111.431914px;}
.y30{bottom:1136.181913px;}
.y2f{bottom:1160.931912px;}
.y2e{bottom:1185.681911px;}
.y2d{bottom:1210.431910px;}
.y2c{bottom:1259.931908px;}
.y37{bottom:1306.301094px;}
.y35{bottom:1377.219831px;}
.y34{bottom:1401.969830px;}
.y36{bottom:1448.901048px;}
.y24{bottom:1498.644766px;}
.y23{bottom:1523.394765px;}
.y22{bottom:1548.144763px;}
.y21{bottom:1572.894762px;}
.y2a{bottom:1619.263661px;}
.y29{bottom:1693.557613px;}
.y28{bottom:1718.307612px;}
.y27{bottom:1743.057611px;}
.y26{bottom:1767.807610px;}
.y25{bottom:1792.557609px;}
.y2b{bottom:1839.770095px;}
.y20{bottom:1957.703462px;}
.y1f{bottom:1986.953461px;}
.y1e{bottom:2016.203460px;}
.y1d{bottom:2115.525044px;}
.y1c{bottom:2144.775043px;}
.y1b{bottom:2271.242631px;}
.y1a{bottom:2300.492629px;}
.y12{bottom:2403.167552px;}
.y11{bottom:2432.417551px;}
.y10{bottom:2461.667549px;}
.y13{bottom:2504.821230px;}
.y19{bottom:2545.724896px;}
.y18{bottom:2574.974895px;}
.y17{bottom:2604.224894px;}
.y16{bottom:2633.474893px;}
.y15{bottom:2662.724891px;}
.y14{bottom:2691.974890px;}
.yf{bottom:2739.149886px;}
.h3{height:49.547608px;}
.h4{height:54.196445px;}
.h8{height:65.051997px;}
.h9{height:68.399997px;}
.ha{height:69.359217px;}
.h7{height:75.866892px;}
.hb{height:84.227216px;}
.hc{height:89.170826px;}
.h5{height:99.095216px;}
.h6{height:118.943995px;}
.h2{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w1{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x2{left:25.015868px;}
.x1{left:26.683246px;}
.x3{left:28.143925px;}
.x6{left:48.005857px;}
.x14{left:55.601804px;}
.x12{left:57.269183px;}
.x13{left:58.729862px;}
.x11{left:61.463694px;}
.x5{left:63.827518px;}
.x7{left:151.417962px;}
.x8{left:169.417962px;}
.x15{left:191.055819px;}
.x16{left:192.524450px;}
.xe{left:193.880843px;}
.xa{left:195.270284px;}
.xb{left:199.436299px;}
.xf{left:213.374983px;}
.xd{left:239.058907px;}
.xc{left:241.027657px;}
.x9{left:274.645360px;}
.x4{left:388.078007px;}
.x10{left:474.480441px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-20.343519pt;}
.ws3{word-spacing:-15.823679pt;}
.ws2{word-spacing:-14.751999pt;}
.ws1{word-spacing:-13.567999pt;}
.ws0{word-spacing:-12.290259pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-12.249418pt;}
._e{margin-left:-10.496425pt;}
._c{margin-left:-7.025913pt;}
._b{margin-left:-5.394359pt;}
._f{margin-left:-4.448477pt;}
._2{margin-left:-3.256810pt;}
._1{margin-left:-1.904013pt;}
._0{margin-left:-0.979647pt;}
._3{width:0.981887pt;}
._d{width:2.859616pt;}
._9{width:7.875416pt;}
._5{width:9.281726pt;}
._a{width:12.625996pt;}
._7{width:13.694984pt;}
._8{width:15.292692pt;}
._4{width:18.100076pt;}
.fs0{font-size:53.319997pt;}
.fs4{font-size:63.999997pt;}
.fs3{font-size:74.639997pt;}
.fs5{font-size:90.639996pt;}
.fs6{font-size:95.959996pt;}
.fs1{font-size:106.639996pt;}
.fs2{font-size:127.999995pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000007pt;}
.ya{bottom:11.997824pt;}
.y9{bottom:29.997823pt;}
.y8{bottom:47.997822pt;}
.y7{bottom:65.997821pt;}
.y5{bottom:86.610140pt;}
.y4{bottom:104.610140pt;}
.y3{bottom:122.610139pt;}
.y2{bottom:142.885946pt;}
.ye{bottom:172.560761pt;}
.yd{bottom:190.560760pt;}
.yc{bottom:208.560759pt;}
.yb{bottom:226.560759pt;}
.y6{bottom:246.902006pt;}
.y4b{bottom:291.863572pt;}
.y4a{bottom:309.863571pt;}
.y49{bottom:327.863570pt;}
.y48{bottom:345.863570pt;}
.y47{bottom:363.863569pt;}
.y46{bottom:381.863568pt;}
.y45{bottom:399.863567pt;}
.y44{bottom:417.863567pt;}
.y4e{bottom:446.146381pt;}
.y4c{bottom:494.716235pt;}
.y4d{bottom:495.891691pt;}
.y3e{bottom:552.750441pt;}
.y3d{bottom:574.750440pt;}
.y3c{bottom:596.750439pt;}
.y3b{bottom:640.750437pt;}
.y3a{bottom:662.750436pt;}
.y39{bottom:684.750435pt;}
.y38{bottom:706.750435pt;}
.y43{bottom:747.967297pt;}
.y42{bottom:814.006206pt;}
.y41{bottom:836.006205pt;}
.y40{bottom:858.006204pt;}
.y3f{bottom:899.972923pt;}
.y33{bottom:943.939481pt;}
.y32{bottom:965.939480pt;}
.y31{bottom:987.939479pt;}
.y30{bottom:1009.939478pt;}
.y2f{bottom:1031.939477pt;}
.y2e{bottom:1053.939476pt;}
.y2d{bottom:1075.939475pt;}
.y2c{bottom:1119.939473pt;}
.y37{bottom:1161.156528pt;}
.y35{bottom:1224.195405pt;}
.y34{bottom:1246.195404pt;}
.y36{bottom:1287.912042pt;}
.y24{bottom:1332.128680pt;}
.y23{bottom:1354.128680pt;}
.y22{bottom:1376.128679pt;}
.y21{bottom:1398.128678pt;}
.y2a{bottom:1439.345476pt;}
.y29{bottom:1505.384545pt;}
.y28{bottom:1527.384544pt;}
.y27{bottom:1549.384543pt;}
.y26{bottom:1571.384543pt;}
.y25{bottom:1593.384542pt;}
.y2b{bottom:1635.351196pt;}
.y20{bottom:1740.180855pt;}
.y1f{bottom:1766.180854pt;}
.y1e{bottom:1792.180853pt;}
.y1d{bottom:1880.466706pt;}
.y1c{bottom:1906.466705pt;}
.y1b{bottom:2018.882338pt;}
.y1a{bottom:2044.882337pt;}
.y12{bottom:2136.148935pt;}
.y11{bottom:2162.148934pt;}
.y10{bottom:2188.148933pt;}
.y13{bottom:2226.507760pt;}
.y19{bottom:2262.866575pt;}
.y18{bottom:2288.866573pt;}
.y17{bottom:2314.866572pt;}
.y16{bottom:2340.866571pt;}
.y15{bottom:2366.866570pt;}
.y14{bottom:2392.866569pt;}
.yf{bottom:2434.799899pt;}
.h3{height:44.042318pt;}
.h4{height:48.174618pt;}
.h8{height:57.823998pt;}
.h9{height:60.799997pt;}
.ha{height:61.652637pt;}
.h7{height:67.437237pt;}
.hb{height:74.868637pt;}
.hc{height:79.262957pt;}
.h5{height:88.084636pt;}
.h6{height:105.727996pt;}
.h2{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w1{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x2{left:22.236327pt;}
.x1{left:23.718441pt;}
.x3{left:25.016823pt;}
.x6{left:42.671873pt;}
.x14{left:49.423826pt;}
.x12{left:50.905940pt;}
.x13{left:52.204322pt;}
.x11{left:54.634395pt;}
.x5{left:56.735571pt;}
.x7{left:134.593744pt;}
.x8{left:150.593744pt;}
.x15{left:169.827395pt;}
.x16{left:171.132844pt;}
.xe{left:172.338527pt;}
.xa{left:173.573586pt;}
.xb{left:177.276711pt;}
.xf{left:189.666652pt;}
.xd{left:212.496806pt;}
.xc{left:214.246806pt;}
.x9{left:244.129209pt;}
.x4{left:344.958229pt;}
.x10{left:421.760392pt;}
}




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