
    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_dbb2ba1ffb49df3522f82630.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_197e186d87a99601bb14595b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_f66f210d285a0c10f17eb0bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_c7f8dec9b2d037bb915f57bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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);}
.v2{vertical-align:-27.320560px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.597250px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.287999px;}
.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;}
}
.ws5{word-spacing:-16.703957px;}
.ws1{word-spacing:-16.415958px;}
.ws3{word-spacing:-13.789566px;}
.ws0{word-spacing:-12.476034px;}
.ws2{word-spacing:-11.880161px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-3.326430px;}
._0{margin-left:-1.874897px;}
._1{width:1.028169px;}
._b{width:2.983560px;}
._c{width:4.115951px;}
._7{width:5.238752px;}
._8{width:6.335984px;}
._a{width:7.421643px;}
._9{width:8.455634px;}
._d{width:9.771803px;}
._12{width:10.943972px;}
._11{width:13.247966px;}
._18{width:14.598692px;}
._13{width:17.519011px;}
._10{width:18.754509px;}
._f{width:20.159948px;}
._14{width:29.067753px;}
._15{width:30.660525px;}
._16{width:31.844090px;}
._1b{width:33.108641px;}
._17{width:34.262014px;}
._6{width:35.760887px;}
._5{width:37.114462px;}
._1a{width:57.871290px;}
._3{width:58.891624px;}
._e{width:70.883207px;}
._1d{width:71.989834px;}
._19{width:82.995614px;}
._1c{width:104.506288px;}
._4{width:356.899125px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(9,9,9);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520644px;}
.fs3{font-size:54.719446px;}
.fs0{font-size:60.480552px;}
.fs1{font-size:71.999814px;}
.fs2{font-size:143.999628px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.779330px;}
.y4{bottom:4.141857px;}
.y5{bottom:56.883489px;}
.y3{bottom:78.663829px;}
.y24{bottom:79.383410px;}
.y2{bottom:82.805686px;}
.y23{bottom:83.162740px;}
.y22{bottom:110.865476px;}
.y55{bottom:112.305191px;}
.y50{bottom:119.527393px;}
.y21{bottom:128.150626px;}
.y4f{bottom:140.038837px;}
.y20{bottom:145.435865px;}
.y4e{bottom:160.923750px;}
.y1f{bottom:162.347275px;}
.y1e{bottom:179.632425px;}
.y4d{bottom:181.446137px;}
.y1d{bottom:196.908382px;}
.y4c{bottom:201.968632px;}
.y1c{bottom:221.743485px;}
.y4b{bottom:222.842602px;}
.y1b{bottom:235.806436px;}
.y4a{bottom:243.364989px;}
.y49{bottom:263.887375px;}
.y48{bottom:284.761345px;}
.y47{bottom:305.283732px;}
.y46{bottom:326.163228px;}
.y45{bottom:346.861406px;}
.y44{bottom:367.383793px;}
.y53{bottom:388.257763px;}
.y43{bottom:408.780204px;}
.y42{bottom:429.302591px;}
.y41{bottom:450.176561px;}
.y54{bottom:470.699001px;}
.y52{bottom:491.583915px;}
.y40{bottom:512.106355px;}
.y51{bottom:532.617745px;}
.y3f{bottom:553.502712px;}
.y3e{bottom:574.025153px;}
.y1a{bottom:585.176247px;}
.y3d{bottom:594.536543px;}
.y19{bottom:605.698634px;}
.y3c{bottom:615.421510px;}
.y18{bottom:626.221021px;}
.y3b{bottom:635.943897px;}
.y17{bottom:646.744535px;}
.y3a{bottom:656.465211px;}
.y16{bottom:667.618505px;}
.y39{bottom:677.339181px;}
.y15{bottom:688.140945px;}
.y38{bottom:697.861621px;}
.y14{bottom:708.663332px;}
.y37{bottom:718.744389px;}
.y13{bottom:729.537302px;}
.y36{bottom:739.257978px;}
.y12{bottom:750.059716px;}
.y35{bottom:759.780392px;}
.y11{bottom:770.942484px;}
.y34{bottom:780.663160px;}
.y10{bottom:791.464871px;}
.y33{bottom:801.176776px;}
.yf{bottom:811.978513px;}
.y32{bottom:821.699190px;}
.ye{bottom:832.861254px;}
.y31{bottom:842.581930px;}
.yd{bottom:853.383668px;}
.y30{bottom:863.104344px;}
.yc{bottom:873.897284px;}
.y2f{bottom:883.978314px;}
.yb{bottom:894.780052px;}
.y2e{bottom:904.676519px;}
.ya{bottom:915.478230px;}
.y2d{bottom:925.198906px;}
.y9{bottom:945.721320px;}
.y2c{bottom:946.081674px;}
.y2b{bottom:966.604088px;}
.y8{bottom:978.117722px;}
.y2a{bottom:987.117704px;}
.y29{bottom:1008.000458px;}
.y7{bottom:1011.603970px;}
.y28{bottom:1028.522872px;}
.y27{bottom:1049.396842px;}
.y6{bottom:1053.000340px;}
.y26{bottom:1069.919242px;}
.y1{bottom:1120.682900px;}
.h3{height:20.341177px;}
.ha{height:20.516915px;}
.h8{height:33.180918px;}
.h9{height:44.090558px;}
.h1{height:50.245528px;}
.h4{height:50.273308px;}
.h7{height:52.417833px;}
.h2{height:52.488146px;}
.h6{height:61.487940px;}
.h5{height:104.835667px;}
.h0{height:1188.000000px;}
.w3{width:0.175792px;}
.w5{width:2.697115px;}
.w1{width:8.821977px;}
.w4{width:9.184558px;}
.w2{width:12.420044px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.004147px;}
.x2{left:129.242836px;}
.xd{left:134.639306px;}
.xf{left:159.484977px;}
.xc{left:161.639238px;}
.x5{left:324.174948px;}
.x4{left:418.498932px;}
.xe{left:550.616887px;}
.x6{left:561.778979px;}
.xa{left:655.382255px;}
.xb{left:667.252931px;}
.x7{left:744.475622px;}
.x8{left:756.719875px;}
.x9{left:766.080171px;}
.x3{left:799.198394px;}
@media print{
.v2{vertical-align:-24.284942pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.197556pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.255999pt;}
.ws5{word-spacing:-14.847962pt;}
.ws1{word-spacing:-14.591962pt;}
.ws3{word-spacing:-12.257392pt;}
.ws0{word-spacing:-11.089808pt;}
.ws2{word-spacing:-10.560143pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-2.956827pt;}
._0{margin-left:-1.666575pt;}
._1{width:0.913928pt;}
._b{width:2.652053pt;}
._c{width:3.658623pt;}
._7{width:4.656668pt;}
._8{width:5.631985pt;}
._a{width:6.597016pt;}
._9{width:7.516119pt;}
._d{width:8.686047pt;}
._12{width:9.727975pt;}
._11{width:11.775970pt;}
._18{width:12.976615pt;}
._13{width:15.572454pt;}
._10{width:16.670675pt;}
._f{width:17.919954pt;}
._14{width:25.838003pt;}
._15{width:27.253800pt;}
._16{width:28.305858pt;}
._1b{width:29.429903pt;}
._17{width:30.455124pt;}
._6{width:31.787455pt;}
._5{width:32.990633pt;}
._1a{width:51.441147pt;}
._3{width:52.348110pt;}
._e{width:63.007295pt;}
._1d{width:63.990964pt;}
._19{width:73.773879pt;}
._1c{width:92.894478pt;}
._4{width:317.243667pt;}
.fs4{font-size:42.240573pt;}
.fs3{font-size:48.639507pt;}
.fs0{font-size:53.760490pt;}
.fs1{font-size:63.999835pt;}
.fs2{font-size:127.999670pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:3.359405pt;}
.y4{bottom:3.681650pt;}
.y5{bottom:50.563102pt;}
.y3{bottom:69.923404pt;}
.y24{bottom:70.563031pt;}
.y2{bottom:73.605054pt;}
.y23{bottom:73.922436pt;}
.y22{bottom:98.547090pt;}
.y55{bottom:99.826837pt;}
.y50{bottom:106.246572pt;}
.y21{bottom:113.911667pt;}
.y4f{bottom:124.478966pt;}
.y20{bottom:129.276325pt;}
.y4e{bottom:143.043334pt;}
.y1f{bottom:144.308689pt;}
.y1e{bottom:159.673266pt;}
.y4d{bottom:161.285455pt;}
.y1d{bottom:175.029673pt;}
.y4c{bottom:179.527673pt;}
.y1c{bottom:197.105320pt;}
.y4b{bottom:198.082313pt;}
.y1b{bottom:209.605721pt;}
.y4a{bottom:216.324434pt;}
.y49{bottom:234.566556pt;}
.y48{bottom:253.121196pt;}
.y47{bottom:271.363318pt;}
.y46{bottom:289.922869pt;}
.y45{bottom:308.321250pt;}
.y44{bottom:326.563372pt;}
.y53{bottom:345.118012pt;}
.y43{bottom:363.360181pt;}
.y42{bottom:381.602303pt;}
.y41{bottom:400.156943pt;}
.y54{bottom:418.399112pt;}
.y52{bottom:436.963480pt;}
.y40{bottom:455.205649pt;}
.y51{bottom:473.437996pt;}
.y3f{bottom:492.002411pt;}
.y3e{bottom:510.244580pt;}
.y1a{bottom:520.156664pt;}
.y3d{bottom:528.476927pt;}
.y19{bottom:538.398786pt;}
.y3c{bottom:547.041342pt;}
.y18{bottom:556.640908pt;}
.y3b{bottom:565.283464pt;}
.y17{bottom:574.884031pt;}
.y3a{bottom:583.524632pt;}
.y16{bottom:593.438671pt;}
.y39{bottom:602.079272pt;}
.y15{bottom:611.680840pt;}
.y38{bottom:620.321441pt;}
.y14{bottom:629.922962pt;}
.y37{bottom:638.883901pt;}
.y13{bottom:648.477602pt;}
.y36{bottom:657.118203pt;}
.y12{bottom:666.719748pt;}
.y35{bottom:675.360348pt;}
.y11{bottom:685.282208pt;}
.y34{bottom:693.922809pt;}
.y10{bottom:703.524329pt;}
.y33{bottom:712.157134pt;}
.yf{bottom:721.758679pt;}
.y32{bottom:730.399280pt;}
.ye{bottom:740.321115pt;}
.y31{bottom:748.961716pt;}
.yd{bottom:758.563260pt;}
.y30{bottom:767.203861pt;}
.yc{bottom:776.797586pt;}
.y2f{bottom:785.758501pt;}
.yb{bottom:795.360046pt;}
.y2e{bottom:804.156906pt;}
.ya{bottom:813.758427pt;}
.y2d{bottom:822.399028pt;}
.y9{bottom:840.641173pt;}
.y2c{bottom:840.961488pt;}
.y2b{bottom:859.203634pt;}
.y8{bottom:869.437975pt;}
.y2a{bottom:877.437959pt;}
.y29{bottom:896.000407pt;}
.y7{bottom:899.203529pt;}
.y28{bottom:914.242553pt;}
.y27{bottom:932.797193pt;}
.y6{bottom:936.000302pt;}
.y26{bottom:951.039326pt;}
.y1{bottom:996.162578pt;}
.h3{height:18.081047pt;}
.ha{height:18.237258pt;}
.h8{height:29.494150pt;}
.h9{height:39.191607pt;}
.h1{height:44.662691pt;}
.h4{height:44.687385pt;}
.h7{height:46.593630pt;}
.h2{height:46.656130pt;}
.h6{height:54.655947pt;}
.h5{height:93.187259pt;}
.h0{height:1056.000000pt;}
.w3{width:0.156259pt;}
.w5{width:2.397436pt;}
.w1{width:7.841758pt;}
.w4{width:8.164051pt;}
.w2{width:11.040039pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.003686pt;}
.x2{left:114.882521pt;}
.xd{left:119.679383pt;}
.xf{left:141.764424pt;}
.xc{left:143.679323pt;}
.x5{left:288.155509pt;}
.x4{left:371.999051pt;}
.xe{left:489.437233pt;}
.x6{left:499.359092pt;}
.xa{left:582.562004pt;}
.xb{left:593.113716pt;}
.x7{left:661.756109pt;}
.x8{left:672.639889pt;}
.x9{left:680.960152pt;}
.x3{left:710.398572pt;}
}




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