
    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_f73292b3765eba6762ef5693.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973633;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_3b64e61006f0ab1e4ab876b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011719;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_b698c38a0e5c37c31c5eaeb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_1369a86a17854ed8b8c07503.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.048828;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_bdc3e64bc1f98120f15635a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985352;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_215dcaba752a3d79439af1f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_adf38bf183bb500b0211e9a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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:ff8;src:url('chunks/assets/font_efbb116587a0502d925f1f51.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.250000;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;}
.m2{transform:matrix(0.234957,-0.085412,0.085470,0.234936,0,0);-ms-transform:matrix(0.234957,-0.085412,0.085470,0.234936,0,0);-webkit-transform:matrix(0.234957,-0.085412,0.085470,0.234936,0,0);}
.m3{transform:matrix(0.234965,-0.085390,0.085512,0.234920,0,0);-ms-transform:matrix(0.234965,-0.085390,0.085512,0.234920,0,0);-webkit-transform:matrix(0.234965,-0.085390,0.085512,0.234920,0,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);}
.v1{vertical-align:-52.688927px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:107.986253px;}
.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;}
}
.ws1{word-spacing:-115.200007px;}
.ws2{word-spacing:-103.679998px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-34.968000px;}
._b{margin-left:-22.825200px;}
._5{margin-left:-16.446001px;}
._9{margin-left:-11.562000px;}
._d{margin-left:-8.643599px;}
._a{margin-left:-5.877601px;}
._c{margin-left:-4.440598px;}
._2{margin-left:-3.432000px;}
._7{margin-left:-2.419200px;}
._0{margin-left:-1.188000px;}
._4{width:2.046000px;}
._1{width:3.168000px;}
._6{width:4.795200px;}
._3{width:7.632000px;}
._8{width:108.031029px;}
._e{width:755.876509px;}
.fc6{color:rgb(68,63,63);}
.fc5{color:transparent;}
.fc4{color:rgb(0,151,167);}
.fc3{color:rgb(24,128,56);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(67,67,67);}
.fc2{color:rgb(153,153,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fse{font-size:60.000000px;}
.fs4{font-size:78.000005px;}
.fs6{font-size:84.000000px;}
.fsa{font-size:96.000006px;}
.fs7{font-size:102.000000px;}
.fsc{font-size:108.000003px;}
.fs0{font-size:132.000007px;}
.fs3{font-size:144.000005px;}
.fs9{font-size:172.799997px;}
.fsb{font-size:181.799997px;}
.fs8{font-size:192.000012px;}
.fs5{font-size:199.799997px;}
.fsf{font-size:216.000007px;}
.fs10{font-size:216.000034px;}
.fsd{font-size:240.000002px;}
.fs2{font-size:258.000002px;}
.fs1{font-size:317.999998px;}
.y0{bottom:0.000000px;}
.y14{bottom:27.564201px;}
.y28{bottom:37.347366px;}
.y11{bottom:52.764199px;}
.y27{bottom:68.450171px;}
.y21{bottom:85.034904px;}
.y16{bottom:92.709427px;}
.y15{bottom:114.246923px;}
.ye{bottom:166.125433px;}
.y24{bottom:229.939354px;}
.y6{bottom:233.306802px;}
.yc{bottom:251.311032px;}
.ya{bottom:273.716195px;}
.y1f{bottom:277.874949px;}
.y1e{bottom:310.994973px;}
.y4{bottom:340.898902px;}
.y1d{bottom:344.114974px;}
.y8{bottom:358.900602px;}
.yd{bottom:372.954811px;}
.y1c{bottom:377.234975px;}
.y1b{bottom:410.354987px;}
.y1{bottom:434.681200px;}
.y5{bottom:441.078457px;}
.y1a{bottom:443.474988px;}
.yb{bottom:461.101399px;}
.y19{bottom:476.594989px;}
.y9{bottom:480.546912px;}
.y25{bottom:497.043879px;}
.y18{bottom:509.714990px;}
.y2{bottom:522.818991px;}
.y3{bottom:548.670558px;}
.y17{bottom:560.834992px;}
.y7{bottom:568.690980px;}
.y10{bottom:581.131624px;}
.y23{bottom:583.847712px;}
.y12{bottom:586.511715px;}
.y22{bottom:589.607714px;}
.y26{bottom:613.881989px;}
.yf{bottom:641.071618px;}
.y20{bottom:645.391618px;}
.y13{bottom:673.917487px;}
.h10{height:45.000000px;}
.h5{height:62.575200px;}
.hd{height:67.388672px;}
.h7{height:68.824218px;}
.ha{height:77.015630px;}
.hb{height:78.656255px;}
.h8{height:81.829102px;}
.he{height:86.642581px;}
.h1{height:100.353521px;}
.h4{height:113.695316px;}
.hc{height:143.540330px;}
.h9{height:151.593760px;}
.h6{height:157.752244px;}
.hf{height:189.492189px;}
.h3{height:203.704103px;}
.h11{height:207.360007px;}
.h12{height:207.360032px;}
.h2{height:251.077147px;}
.h0{height:810.000000px;}
.w0{width:1438.500000px;}
.x0{left:0.000000px;}
.x3{left:49.126561px;}
.x2{left:54.000002px;}
.x7{left:62.574336px;}
.x11{left:86.811918px;}
.x1d{left:88.520673px;}
.x14{left:94.662404px;}
.x15{left:107.169841px;}
.x5{left:110.134815px;}
.xb{left:112.780438px;}
.x9{left:118.735182px;}
.x1{left:133.866155px;}
.x16{left:148.662405px;}
.x17{left:160.878217px;}
.x1b{left:167.359602px;}
.x1f{left:259.087656px;}
.x1c{left:334.886804px;}
.x19{left:472.381159px;}
.x10{left:686.682449px;}
.x4{left:749.012199px;}
.x6{left:810.020760px;}
.x1a{left:904.928148px;}
.x13{left:940.838617px;}
.xf{left:993.598434px;}
.xa{left:1073.927244px;}
.x12{left:1080.777522px;}
.x1e{left:1103.793514px;}
.x8{left:1135.135319px;}
.xe{left:1140.668159px;}
.xd{left:1154.089983px;}
.xc{left:1164.869891px;}
.x18{left:1178.987325px;}
@media print{
.v1{vertical-align:-46.834601pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:95.987780pt;}
.ws1{word-spacing:-102.400006pt;}
.ws2{word-spacing:-92.159998pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-31.082667pt;}
._b{margin-left:-20.289067pt;}
._5{margin-left:-14.618667pt;}
._9{margin-left:-10.277333pt;}
._d{margin-left:-7.683199pt;}
._a{margin-left:-5.224534pt;}
._c{margin-left:-3.947198pt;}
._2{margin-left:-3.050667pt;}
._7{margin-left:-2.150400pt;}
._0{margin-left:-1.056000pt;}
._4{width:1.818667pt;}
._1{width:2.816000pt;}
._6{width:4.262400pt;}
._3{width:6.784000pt;}
._8{width:96.027581pt;}
._e{width:671.890230pt;}
.fse{font-size:53.333334pt;}
.fs4{font-size:69.333338pt;}
.fs6{font-size:74.666666pt;}
.fsa{font-size:85.333339pt;}
.fs7{font-size:90.666667pt;}
.fsc{font-size:96.000003pt;}
.fs0{font-size:117.333340pt;}
.fs3{font-size:128.000004pt;}
.fs9{font-size:153.599997pt;}
.fsb{font-size:161.599997pt;}
.fs8{font-size:170.666677pt;}
.fs5{font-size:177.599998pt;}
.fsf{font-size:192.000006pt;}
.fs10{font-size:192.000030pt;}
.fsd{font-size:213.333335pt;}
.fs2{font-size:229.333335pt;}
.fs1{font-size:282.666665pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:24.501512pt;}
.y28{bottom:33.197659pt;}
.y11{bottom:46.901510pt;}
.y27{bottom:60.844597pt;}
.y21{bottom:75.586581pt;}
.y16{bottom:82.408380pt;}
.y15{bottom:101.552820pt;}
.ye{bottom:147.667052pt;}
.y24{bottom:204.390537pt;}
.y6{bottom:207.383824pt;}
.yc{bottom:223.387584pt;}
.ya{bottom:243.303285pt;}
.y1f{bottom:246.999955pt;}
.y1e{bottom:276.439976pt;}
.y4{bottom:303.021247pt;}
.y1d{bottom:305.879977pt;}
.y8{bottom:319.022757pt;}
.yd{bottom:331.515388pt;}
.y1c{bottom:335.319978pt;}
.y1b{bottom:364.759989pt;}
.y1{bottom:386.383289pt;}
.y5{bottom:392.069740pt;}
.y1a{bottom:394.199990pt;}
.yb{bottom:409.867910pt;}
.y19{bottom:423.639991pt;}
.y9{bottom:427.152811pt;}
.y25{bottom:441.816781pt;}
.y18{bottom:453.079991pt;}
.y2{bottom:464.727992pt;}
.y3{bottom:487.707163pt;}
.y17{bottom:498.519993pt;}
.y7{bottom:505.503093pt;}
.y10{bottom:516.561443pt;}
.y23{bottom:518.975744pt;}
.y12{bottom:521.343747pt;}
.y22{bottom:524.095746pt;}
.y26{bottom:545.672879pt;}
.yf{bottom:569.841438pt;}
.y20{bottom:573.681438pt;}
.y13{bottom:599.037766pt;}
.h10{height:40.000000pt;}
.h5{height:55.622400pt;}
.hd{height:59.901041pt;}
.h7{height:61.177083pt;}
.ha{height:68.458338pt;}
.hb{height:69.916671pt;}
.h8{height:72.736979pt;}
.he{height:77.015627pt;}
.h1{height:89.203130pt;}
.h4{height:101.062503pt;}
.hc{height:127.591404pt;}
.h9{height:134.750009pt;}
.h6{height:140.224217pt;}
.hf{height:168.437501pt;}
.h3{height:181.070314pt;}
.h11{height:184.320006pt;}
.h12{height:184.320029pt;}
.h2{height:223.179686pt;}
.h0{height:720.000000pt;}
.w0{width:1278.666667pt;}
.x0{left:0.000000pt;}
.x3{left:43.668054pt;}
.x2{left:48.000002pt;}
.x7{left:55.621632pt;}
.x11{left:77.166149pt;}
.x1d{left:78.685043pt;}
.x14{left:84.144359pt;}
.x15{left:95.262081pt;}
.x5{left:97.897613pt;}
.xb{left:100.249278pt;}
.x9{left:105.542384pt;}
.x1{left:118.992138pt;}
.x16{left:132.144360pt;}
.x17{left:143.002860pt;}
.x1b{left:148.764091pt;}
.x1f{left:230.300139pt;}
.x1c{left:297.677160pt;}
.x19{left:419.894363pt;}
.x10{left:610.384400pt;}
.x4{left:665.788621pt;}
.x6{left:720.018453pt;}
.x1a{left:804.380576pt;}
.x13{left:836.300993pt;}
.xf{left:883.198608pt;}
.xa{left:954.601995pt;}
.x12{left:960.691131pt;}
.x1e{left:981.149790pt;}
.x8{left:1009.009172pt;}
.xe{left:1013.927252pt;}
.xd{left:1025.857763pt;}
.xc{left:1035.439903pt;}
.x18{left:1047.988734pt;}
}




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