
    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_31cfe0228c0767c8f74698d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_d8a2a2323845880cbf7a33af.woff')format("woff");}.ff2{font-family:ff2;line-height:0.894043;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_cd1975827c97dab9098ea785.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e91c0ea33c1e4580ba354493.woff')format("woff");}.ff4{font-family:ff4;line-height:1.085000;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_ad5dfff9fb630e7e7198130f.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_b8a1de3498575dfc9607814f.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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d1a4e8a71a3e41077c45eced.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7fd115db3dc90e837f53d2e6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.074707;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;}
.v1{vertical-align:4.501757px;}
.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;}
}
.ws3{word-spacing:-20.356490px;}
.ws2{word-spacing:-19.087192px;}
.ws4{word-spacing:-16.602255px;}
.ws1{word-spacing:-11.068153px;}
.ws0{word-spacing:-10.179819px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-1764.753017px;}
._6{margin-left:-6.822947px;}
._7{margin-left:-4.712875px;}
._4{margin-left:-2.443877px;}
._5{margin-left:-1.013824px;}
._2{width:1.076387px;}
._3{width:2.485045px;}
._1{width:3.860109px;}
._0{width:8.430211px;}
._9{width:9.586167px;}
._8{width:10.843889px;}
._a{width:134.571692px;}
._b{width:158.506988px;}
.fc3{color:transparent;}
.fc2{color:rgb(208,163,0);}
.fc1{color:rgb(55,160,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.017894px;}
.fs2{font-size:48.018016px;}
.fs5{font-size:48.018165px;}
.fs6{font-size:54.020272px;}
.fs8{font-size:72.027138px;}
.fs0{font-size:76.862927px;}
.fs9{font-size:84.001650px;}
.fs4{font-size:90.033923px;}
.fsa{font-size:96.021179px;}
.fs7{font-size:102.008434px;}
.fs1{font-size:168.048326px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000021px;}
.y9{bottom:3.045974px;}
.yd{bottom:3.236408px;}
.y13{bottom:3.260651px;}
.y24{bottom:3.292466px;}
.y27{bottom:3.294353px;}
.y1b{bottom:3.551745px;}
.y4{bottom:6.713833px;}
.yf{bottom:12.375020px;}
.yc{bottom:19.242373px;}
.y12{bottom:19.266706px;}
.y23{bottom:19.298472px;}
.y1a{bottom:21.558503px;}
.yb{bottom:35.248337px;}
.y11{bottom:35.272761px;}
.y22{bottom:35.304477px;}
.y19{bottom:39.565260px;}
.y10{bottom:51.278816px;}
.y21{bottom:51.310483px;}
.y3{bottom:54.699844px;}
.y18{bottom:57.572018px;}
.y20{bottom:67.316488px;}
.y17{bottom:75.578775px;}
.ya{bottom:80.775017px;}
.y2{bottom:81.358739px;}
.y1f{bottom:83.322493px;}
.y16{bottom:93.585533px;}
.y1e{bottom:99.328499px;}
.y15{bottom:111.592290px;}
.y1d{bottom:115.334504px;}
.y8{bottom:133.335015px;}
.y14{bottom:161.415014px;}
.y1c{bottom:163.575014px;}
.ye{bottom:295.340662px;}
.y25{bottom:299.281870px;}
.y26{bottom:329.175007px;}
.y2b{bottom:357.228676px;}
.y2a{bottom:381.988005px;}
.y29{bottom:406.747334px;}
.y3d{bottom:564.810104px;}
.y3c{bottom:589.569432px;}
.y3b{bottom:614.328761px;}
.y3e{bottom:615.454157px;}
.y2d{bottom:654.018620px;}
.y3a{bottom:739.753942px;}
.y39{bottom:764.513271px;}
.y38{bottom:789.272600px;}
.y32{bottom:808.416963px;}
.y37{bottom:814.031929px;}
.y31{bottom:833.176292px;}
.y36{bottom:838.791257px;}
.y30{bottom:857.935620px;}
.y35{bottom:863.550586px;}
.y2f{bottom:882.694949px;}
.y34{bottom:888.309915px;}
.y2e{bottom:907.454278px;}
.y33{bottom:913.069244px;}
.y2c{bottom:938.428736px;}
.y28{bottom:982.170116px;}
.y1{bottom:1016.054978px;}
.y7{bottom:1142.559438px;}
.y6{bottom:1201.081488px;}
.h7{height:14.399999px;}
.ha{height:39.662780px;}
.h11{height:39.662881px;}
.hd{height:39.663004px;}
.h8{height:43.888467px;}
.hf{height:44.620745px;}
.h12{height:45.617115px;}
.h9{height:46.439998px;}
.h4{height:58.810648px;}
.h3{height:58.885709px;}
.h14{height:59.494416px;}
.h17{height:62.461034px;}
.hc{height:62.639997px;}
.h15{height:81.279265px;}
.hb{height:82.291005px;}
.h13{height:84.258967px;}
.h16{height:87.763357px;}
.h2{height:100.799996px;}
.he{height:124.199995px;}
.h10{height:126.359995px;}
.h6{height:138.807917px;}
.h1{height:1263.000000px;}
.h5{height:1263.374947px;}
.h0{height:1263.374968px;}
.w8{width:338.399986px;}
.w6{width:394.199984px;}
.w7{width:395.279984px;}
.w3{width:583.559976px;}
.w5{width:628.559974px;}
.w4{width:634.319974px;}
.w1{width:682.919972px;}
.w2{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:21.599999px;}
.x4{left:23.759999px;}
.x2{left:25.199999px;}
.xb{left:39.308477px;}
.xc{left:41.190045px;}
.xe{left:75.923912px;}
.x7{left:95.872575px;}
.x8{left:107.877079px;}
.x1{left:192.239992px;}
.x12{left:224.454405px;}
.x9{left:251.915502px;}
.xa{left:263.920006px;}
.xf{left:326.526529px;}
.x5{left:464.039981px;}
.x3{left:465.759474px;}
.xd{left:519.567130px;}
.x13{left:540.032865px;}
.x10{left:564.325174px;}
.x11{left:594.940225px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.001561pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-18.094658pt;}
.ws2{word-spacing:-16.966393pt;}
.ws4{word-spacing:-14.757560pt;}
.ws1{word-spacing:-9.838358pt;}
.ws0{word-spacing:-9.048728pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-1568.669348pt;}
._6{margin-left:-6.064842pt;}
._7{margin-left:-4.189223pt;}
._4{margin-left:-2.172335pt;}
._5{margin-left:-0.901177pt;}
._2{width:0.956788pt;}
._3{width:2.208929pt;}
._1{width:3.431208pt;}
._0{width:7.493521pt;}
._9{width:8.521037pt;}
._8{width:9.639013pt;}
._a{width:119.619282pt;}
._b{width:140.895100pt;}
.fs3{font-size:42.682572pt;}
.fs2{font-size:42.682681pt;}
.fs5{font-size:42.682813pt;}
.fs6{font-size:48.018020pt;}
.fs8{font-size:64.024123pt;}
.fs0{font-size:68.322602pt;}
.fs9{font-size:74.668133pt;}
.fs4{font-size:80.030153pt;}
.fsa{font-size:85.352159pt;}
.fs7{font-size:90.674164pt;}
.fs1{font-size:149.376289pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000018pt;}
.y9{bottom:2.707532pt;}
.yd{bottom:2.876807pt;}
.y13{bottom:2.898356pt;}
.y24{bottom:2.926637pt;}
.y27{bottom:2.928314pt;}
.y1b{bottom:3.157107pt;}
.y4{bottom:5.967851pt;}
.yf{bottom:11.000018pt;}
.yc{bottom:17.104331pt;}
.y12{bottom:17.125961pt;}
.y23{bottom:17.154197pt;}
.y1a{bottom:19.163114pt;}
.yb{bottom:31.331855pt;}
.y11{bottom:31.353565pt;}
.y22{bottom:31.381758pt;}
.y19{bottom:35.169120pt;}
.y10{bottom:45.581169pt;}
.y21{bottom:45.609318pt;}
.y3{bottom:48.622084pt;}
.y18{bottom:51.175127pt;}
.y20{bottom:59.836878pt;}
.y17{bottom:67.181133pt;}
.ya{bottom:71.800015pt;}
.y2{bottom:72.318879pt;}
.y1f{bottom:74.064439pt;}
.y16{bottom:83.187140pt;}
.y1e{bottom:88.291999pt;}
.y15{bottom:99.193147pt;}
.y1d{bottom:102.519559pt;}
.y8{bottom:118.520013pt;}
.y14{bottom:143.480012pt;}
.y1c{bottom:145.400012pt;}
.ye{bottom:262.525033pt;}
.y25{bottom:266.028329pt;}
.y26{bottom:292.600006pt;}
.y2b{bottom:317.536601pt;}
.y2a{bottom:339.544893pt;}
.y29{bottom:361.553186pt;}
.y3d{bottom:502.053425pt;}
.y3c{bottom:524.061718pt;}
.y3b{bottom:546.070010pt;}
.y3e{bottom:547.070362pt;}
.y2d{bottom:581.349884pt;}
.y3a{bottom:657.559060pt;}
.y39{bottom:679.567352pt;}
.y38{bottom:701.575644pt;}
.y32{bottom:718.592856pt;}
.y37{bottom:723.583937pt;}
.y31{bottom:740.601148pt;}
.y36{bottom:745.592229pt;}
.y30{bottom:762.609440pt;}
.y35{bottom:767.600521pt;}
.y2f{bottom:784.617732pt;}
.y34{bottom:789.608813pt;}
.y2e{bottom:806.626025pt;}
.y33{bottom:811.617105pt;}
.y2c{bottom:834.158877pt;}
.y28{bottom:873.040103pt;}
.y1{bottom:903.159981pt;}
.y7{bottom:1015.608390pt;}
.y6{bottom:1067.627989pt;}
.h7{height:12.799999pt;}
.ha{height:35.255805pt;}
.h11{height:35.255895pt;}
.hd{height:35.256004pt;}
.h8{height:39.011971pt;}
.hf{height:39.662884pt;}
.h12{height:40.548547pt;}
.h9{height:41.279998pt;}
.h4{height:52.276131pt;}
.h3{height:52.342853pt;}
.h14{height:52.883925pt;}
.h17{height:55.520919pt;}
.hc{height:55.679998pt;}
.h15{height:72.248235pt;}
.hb{height:73.147560pt;}
.h13{height:74.896859pt;}
.h16{height:78.011873pt;}
.h2{height:89.599996pt;}
.he{height:110.399995pt;}
.h10{height:112.319995pt;}
.h6{height:123.384815pt;}
.h1{height:1122.666667pt;}
.h5{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w8{width:300.799987pt;}
.w6{width:350.399985pt;}
.w7{width:351.359985pt;}
.w3{width:518.719978pt;}
.w5{width:558.719977pt;}
.w4{width:563.839977pt;}
.w1{width:607.039975pt;}
.w2{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:19.199999pt;}
.x4{left:21.119999pt;}
.x2{left:22.399999pt;}
.xb{left:34.940869pt;}
.xc{left:36.613373pt;}
.xe{left:67.487921pt;}
.x7{left:85.220067pt;}
.x8{left:95.890737pt;}
.x1{left:170.879993pt;}
.x12{left:199.515027pt;}
.x9{left:223.924891pt;}
.xa{left:234.595561pt;}
.xf{left:290.245804pt;}
.x5{left:412.479983pt;}
.x3{left:414.008421pt;}
.xd{left:461.837448pt;}
.x13{left:480.029213pt;}
.x10{left:501.622377pt;}
.x11{left:528.835756pt;}
}




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