
    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_a163af878f46a2bad3bb8d11.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_afe61cc1df4e540eacbda165.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_4c7ff34009d2fe5a6638b5a1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_60ba3ceffb4439c4d737d052.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_35a235f6b78eb705e2e7ef20.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_25ca791c6c05b96bb3cd47d3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.751000;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;}
.m1{transform:matrix(0.245911,-0.045034,0.045034,0.245911,0,0);-ms-transform:matrix(0.245911,-0.045034,0.045034,0.245911,0,0);-webkit-transform:matrix(0.245911,-0.045034,0.045034,0.245911,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:143.972166px;}
.ls3{letter-spacing:143.986263px;}
.ls1{letter-spacing:143.986471px;}
.ls5{letter-spacing:144.000410px;}
.ls6{letter-spacing:144.000428px;}
.ls7{letter-spacing:144.000455px;}
.ls4{letter-spacing:144.000635px;}
.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:-20.844001px;}
.ws2{word-spacing:-18.528001px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-16.644001px;}
._8{margin-left:-12.180001px;}
._7{margin-left:-10.740001px;}
._2{margin-left:-8.436000px;}
._a{margin-left:-7.332000px;}
._4{margin-left:-5.940000px;}
._1{margin-left:-4.104000px;}
._0{margin-left:-2.280000px;}
._5{margin-left:-1.189336px;}
._9{width:1.500000px;}
._6{width:5.570107px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(26,26,26);}
.fs1{font-size:78.000005px;}
.fs8{font-size:96.000006px;}
.fs9{font-size:102.000000px;}
.fs3{font-size:108.000003px;}
.fs7{font-size:120.000001px;}
.fs2{font-size:144.000005px;}
.fs6{font-size:149.999999px;}
.fsa{font-size:162.000005px;}
.fs5{font-size:210.000013px;}
.fs0{font-size:228.000013px;}
.fs4{font-size:228.000017px;}
.y0{bottom:0.000000px;}
.y4{bottom:23.985823px;}
.y2e{bottom:48.869481px;}
.y12{bottom:59.304398px;}
.y39{bottom:80.999482px;}
.y2d{bottom:82.889470px;}
.y38{bottom:115.019472px;}
.y2c{bottom:116.909460px;}
.y51{bottom:134.725850px;}
.y21{bottom:146.429394px;}
.y37{bottom:149.039461px;}
.y2b{bottom:150.929450px;}
.y8{bottom:153.870347px;}
.y4a{bottom:166.319394px;}
.y50{bottom:171.985828px;}
.y41{bottom:176.939417px;}
.y20{bottom:179.549395px;}
.y36{bottom:186.209474px;}
.y2a{bottom:188.999451px;}
.y7{bottom:192.270355px;}
.y49{bottom:203.579396px;}
.y4f{bottom:213.655852px;}
.y1f{bottom:218.339396px;}
.y6{bottom:230.670353px;}
.y48{bottom:240.839397px;}
.y40{bottom:261.539397px;}
.y35{bottom:264.329443px;}
.y29{bottom:269.999420px;}
.y5{bottom:271.230350px;}
.y4e{bottom:298.255877px;}
.y34{bottom:298.349432px;}
.y1e{bottom:301.679399px;}
.y3f{bottom:303.209399px;}
.y16{bottom:303.750006px;}
.y28{bottom:304.019444px;}
.y47{bottom:315.359433px;}
.y33{bottom:332.369445px;}
.y1d{bottom:334.799411px;}
.y15{bottom:336.870030px;}
.y27{bottom:338.039445px;}
.y4d{bottom:339.925867px;}
.y11{bottom:340.297525px;}
.y46{bottom:352.619423px;}
.y1c{bottom:369.179401px;}
.y32{bottom:369.539435px;}
.y14{bottom:369.990031px;}
.y26{bottom:372.059435px;}
.y3e{bottom:386.549413px;}
.y45{bottom:389.879424px;}
.y10{bottom:397.350021px;}
.y13{bottom:403.110032px;}
.ya{bottom:406.774569px;}
.y25{bottom:410.129425px;}
.y1b{bottom:410.849402px;}
.y31{bottom:413.639436px;}
.y3d{bottom:419.669414px;}
.y44{bottom:427.139414px;}
.y4c{bottom:428.935865px;}
.y3{bottom:437.579988px;}
.yf{bottom:438.750011px;}
.y30{bottom:450.809426px;}
.y3c{bottom:452.789415px;}
.y9{bottom:471.389057px;}
.ye{bottom:480.149996px;}
.y3b{bottom:487.169409px;}
.y24{bottom:491.129416px;}
.y1a{bottom:494.189405px;}
.y43{bottom:501.659394px;}
.y2{bottom:505.979990px;}
.y4b{bottom:517.945862px;}
.yd{bottom:521.549991px;}
.y3a{bottom:524.429406px;}
.y23{bottom:525.149413px;}
.y19{bottom:527.309410px;}
.y2f{bottom:528.929417px;}
.y22{bottom:563.219409px;}
.y18{bottom:566.099407px;}
.yc{bottom:566.099992px;}
.y1{bottom:574.379992px;}
.y42{bottom:576.179408px;}
.y17{bottom:652.656370px;}
.yb{bottom:652.657090px;}
.h2{height:60.489004px;}
.ha{height:74.448005px;}
.h4{height:78.679690px;}
.h9{height:79.101000px;}
.hb{height:83.754003px;}
.h8{height:87.421876px;}
.h3{height:104.906253px;}
.h7{height:109.277343px;}
.hc{height:118.019535px;}
.h6{height:158.970010px;}
.h1{height:172.596010px;}
.h5{height:173.337904px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8{left:78.947838px;}
.x9{left:80.853387px;}
.x13{left:87.191897px;}
.xc{left:103.373036px;}
.x1{left:133.220025px;}
.xf{left:139.500004px;}
.x15{left:146.372091px;}
.x12{left:152.853389px;}
.x6{left:155.664346px;}
.xa{left:157.386965px;}
.x10{left:159.191904px;}
.xe{left:161.007440px;}
.x7{left:182.546938px;}
.x16{left:205.018708px;}
.x11{left:211.500007px;}
.xb{left:229.386967px;}
.x14{left:231.191895px;}
.x2{left:233.805045px;}
.x5{left:361.824458px;}
.x3{left:364.706562px;}
.x17{left:546.813422px;}
.xd{left:683.583704px;}
.x18{left:1394.607417px;}
.x4{left:1405.914117px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:127.975259pt;}
.ls3{letter-spacing:127.987789pt;}
.ls1{letter-spacing:127.987974pt;}
.ls5{letter-spacing:128.000364pt;}
.ls6{letter-spacing:128.000380pt;}
.ls7{letter-spacing:128.000404pt;}
.ls4{letter-spacing:128.000564pt;}
.ws1{word-spacing:-18.528001pt;}
.ws2{word-spacing:-16.469334pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-14.794668pt;}
._8{margin-left:-10.826667pt;}
._7{margin-left:-9.546667pt;}
._2{margin-left:-7.498667pt;}
._a{margin-left:-6.517333pt;}
._4{margin-left:-5.280000pt;}
._1{margin-left:-3.648000pt;}
._0{margin-left:-2.026667pt;}
._5{margin-left:-1.057187pt;}
._9{width:1.333333pt;}
._6{width:4.951206pt;}
.fs1{font-size:69.333338pt;}
.fs8{font-size:85.333339pt;}
.fs9{font-size:90.666667pt;}
.fs3{font-size:96.000003pt;}
.fs7{font-size:106.666667pt;}
.fs2{font-size:128.000004pt;}
.fs6{font-size:133.333332pt;}
.fsa{font-size:144.000005pt;}
.fs5{font-size:186.666678pt;}
.fs0{font-size:202.666678pt;}
.fs4{font-size:202.666682pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:21.320732pt;}
.y2e{bottom:43.439538pt;}
.y12{bottom:52.715021pt;}
.y39{bottom:71.999539pt;}
.y2d{bottom:73.679529pt;}
.y38{bottom:102.239530pt;}
.y2c{bottom:103.919520pt;}
.y51{bottom:119.756311pt;}
.y21{bottom:130.159461pt;}
.y37{bottom:132.479521pt;}
.y2b{bottom:134.159511pt;}
.y8{bottom:136.773641pt;}
.y4a{bottom:147.839462pt;}
.y50{bottom:152.876292pt;}
.y41{bottom:157.279482pt;}
.y20{bottom:159.599462pt;}
.y36{bottom:165.519532pt;}
.y2a{bottom:167.999512pt;}
.y7{bottom:170.906982pt;}
.y49{bottom:180.959463pt;}
.y4f{bottom:189.916313pt;}
.y1f{bottom:194.079463pt;}
.y6{bottom:205.040314pt;}
.y48{bottom:214.079464pt;}
.y40{bottom:232.479464pt;}
.y35{bottom:234.959504pt;}
.y29{bottom:239.999485pt;}
.y5{bottom:241.093645pt;}
.y4e{bottom:265.116335pt;}
.y34{bottom:265.199495pt;}
.y1e{bottom:268.159466pt;}
.y3f{bottom:269.519466pt;}
.y16{bottom:270.000006pt;}
.y28{bottom:270.239506pt;}
.y47{bottom:280.319496pt;}
.y33{bottom:295.439506pt;}
.y1d{bottom:297.599476pt;}
.y15{bottom:299.440027pt;}
.y27{bottom:300.479507pt;}
.y4d{bottom:302.156327pt;}
.y11{bottom:302.486689pt;}
.y46{bottom:313.439487pt;}
.y1c{bottom:328.159467pt;}
.y32{bottom:328.479497pt;}
.y14{bottom:328.880027pt;}
.y26{bottom:330.719498pt;}
.y3e{bottom:343.599478pt;}
.y45{bottom:346.559488pt;}
.y10{bottom:353.200018pt;}
.y13{bottom:358.320028pt;}
.ya{bottom:361.577395pt;}
.y25{bottom:364.559489pt;}
.y1b{bottom:365.199469pt;}
.y31{bottom:367.679499pt;}
.y3d{bottom:373.039479pt;}
.y44{bottom:379.679479pt;}
.y4c{bottom:381.276324pt;}
.y3{bottom:388.959989pt;}
.yf{bottom:390.000009pt;}
.y30{bottom:400.719490pt;}
.y3c{bottom:402.479480pt;}
.y9{bottom:419.012495pt;}
.ye{bottom:426.799997pt;}
.y3b{bottom:433.039475pt;}
.y24{bottom:436.559481pt;}
.y1a{bottom:439.279471pt;}
.y43{bottom:445.919461pt;}
.y2{bottom:449.759991pt;}
.y4b{bottom:460.396322pt;}
.yd{bottom:463.599992pt;}
.y3a{bottom:466.159472pt;}
.y23{bottom:466.799478pt;}
.y19{bottom:468.719476pt;}
.y2f{bottom:470.159482pt;}
.y22{bottom:500.639475pt;}
.y18{bottom:503.199473pt;}
.yc{bottom:503.199993pt;}
.y1{bottom:510.559993pt;}
.y42{bottom:512.159473pt;}
.y17{bottom:580.138996pt;}
.yb{bottom:580.139636pt;}
.h2{height:53.768004pt;}
.ha{height:66.176004pt;}
.h4{height:69.937502pt;}
.h9{height:70.312000pt;}
.hb{height:74.448002pt;}
.h8{height:77.708334pt;}
.h3{height:93.250003pt;}
.h7{height:97.135416pt;}
.hc{height:104.906253pt;}
.h6{height:141.306675pt;}
.h1{height:153.418676pt;}
.h5{height:154.078136pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8{left:70.175856pt;}
.x9{left:71.869677pt;}
.x13{left:77.503908pt;}
.xc{left:91.887143pt;}
.x1{left:118.417800pt;}
.xf{left:124.000004pt;}
.x15{left:130.108525pt;}
.x12{left:135.869679pt;}
.x6{left:138.368308pt;}
.xa{left:139.899524pt;}
.x10{left:141.503915pt;}
.xe{left:143.117725pt;}
.x7{left:162.263945pt;}
.x16{left:182.238852pt;}
.x11{left:188.000006pt;}
.xb{left:203.899527pt;}
.x14{left:205.503907pt;}
.x2{left:207.826707pt;}
.x5{left:321.621740pt;}
.x3{left:324.183610pt;}
.x17{left:486.056376pt;}
.xd{left:607.629959pt;}
.x18{left:1239.651038pt;}
.x4{left:1249.701437pt;}
}




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