
    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_ee2664bc112489d9997c7e24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928048;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_9bc26c5ad73ceb8eec961b73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027344;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_c61253b77133d80931572c2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_8156dff9d8f2288333bac705.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731000;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_f1007101c53d570d45d19349.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.371094;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;}
.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:-31.200002px;}
.ws1{word-spacing:-21.600001px;}
.ws4{word-spacing:-19.200001px;}
.ws6{word-spacing:-18.900000px;}
.ws5{word-spacing:-16.200001px;}
.ws2{word-spacing:-0.156000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-7.956001px;}
._3{margin-left:-6.031696px;}
._2{margin-left:-3.720000px;}
._0{margin-left:-2.418000px;}
._1{margin-left:-1.302000px;}
._5{width:1.848000px;}
._4{width:108.013162px;}
._6{width:1687.850508px;}
.fc1{color:rgb(49,169,224);}
.fc3{color:rgb(243,243,243);}
.fc2{color:rgb(204,204,204);}
.fc0{color:rgb(67,67,67);}
.fs5{font-size:72.000002px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:96.000006px;}
.fs3{font-size:108.000003px;}
.fs2{font-size:156.000011px;}
.fs0{font-size:186.000000px;}
.fs6{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.y6{bottom:16.208983px;}
.y56{bottom:76.515508px;}
.y25{bottom:82.089084px;}
.y33{bottom:93.467933px;}
.y24{bottom:106.839085px;}
.y23{bottom:131.589086px;}
.y10{bottom:137.841982px;}
.y22{bottom:156.339087px;}
.y2b{bottom:157.150049px;}
.yf{bottom:162.591983px;}
.y54{bottom:168.250238px;}
.y18{bottom:175.150049px;}
.y21{bottom:181.089088px;}
.y2a{bottom:181.900027px;}
.y48{bottom:186.108759px;}
.y17{bottom:199.900028px;}
.y53{bottom:200.875239px;}
.y20{bottom:205.839088px;}
.y29{bottom:206.650028px;}
.y47{bottom:210.858760px;}
.ye{bottom:212.091962px;}
.y16{bottom:224.650028px;}
.y50{bottom:227.047668px;}
.y1f{bottom:230.589089px;}
.y28{bottom:231.400029px;}
.y52{bottom:233.500241px;}
.y46{bottom:235.608761px;}
.yd{bottom:236.841963px;}
.y32{bottom:238.151508px;}
.y3c{bottom:248.906509px;}
.y4f{bottom:251.797669px;}
.y1e{bottom:255.339090px;}
.y5{bottom:256.386251px;}
.y45{bottom:261.978761px;}
.y31{bottom:262.901509px;}
.y51{bottom:266.125242px;}
.y3b{bottom:273.656509px;}
.y15{bottom:275.140030px;}
.y4e{bottom:276.547669px;}
.y1d{bottom:280.089091px;}
.y27{bottom:280.900030px;}
.y4{bottom:281.136252px;}
.yc{bottom:286.341965px;}
.y30{bottom:287.651510px;}
.y44{bottom:291.228762px;}
.y3a{bottom:298.406510px;}
.y4d{bottom:301.297670px;}
.y26{bottom:305.650031px;}
.y3{bottom:305.886255px;}
.y2f{bottom:312.401511px;}
.y43{bottom:320.478763px;}
.y39{bottom:324.776511px;}
.y4c{bottom:326.047671px;}
.y14{bottom:330.400032px;}
.y1c{bottom:331.704092px;}
.y2e{bottom:337.151511px;}
.yb{bottom:343.716967px;}
.y42{bottom:349.728764px;}
.y4b{bottom:350.797672px;}
.y38{bottom:354.026512px;}
.y13{bottom:355.150033px;}
.y2d{bottom:361.901512px;}
.y2{bottom:362.237948px;}
.ya{bottom:368.466967px;}
.y4a{bottom:375.547673px;}
.y41{bottom:378.978765px;}
.y12{bottom:379.900033px;}
.y37{bottom:383.276513px;}
.y1b{bottom:385.839094px;}
.y2c{bottom:386.651513px;}
.y9{bottom:393.216968px;}
.y40{bottom:408.228766px;}
.y1a{bottom:410.589095px;}
.y1{bottom:418.487952px;}
.y49{bottom:426.037674px;}
.y11{bottom:430.390035px;}
.y36{bottom:435.196293px;}
.y55{bottom:436.914439px;}
.y3f{bottom:437.478767px;}
.y8{bottom:443.706970px;}
.y19{bottom:462.204097px;}
.y35{bottom:464.446296px;}
.y3e{bottom:466.728770px;}
.y7{bottom:517.480271px;}
.y34{bottom:517.814997px;}
.y3d{bottom:531.262261px;}
.h7{height:57.445314px;}
.h3{height:63.000000px;}
.h2{height:67.019531px;}
.h6{height:69.408004px;}
.h5{height:78.084002px;}
.h4{height:112.788008px;}
.h1{height:134.478000px;}
.h8{height:299.812510px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1c{left:37.217229px;}
.xe{left:47.044785px;}
.x1e{left:50.933195px;}
.x1d{left:66.633685px;}
.xf{left:68.623496px;}
.x1{left:85.448174px;}
.x7{left:95.170278px;}
.x1b{left:98.210073px;}
.x10{left:101.044786px;}
.x8{left:116.748989px;}
.x11{left:123.395376px;}
.x9{left:149.170280px;}
.x12{left:155.044788px;}
.xa{left:171.520869px;}
.xb{left:203.170282px;}
.x23{left:211.077974px;}
.xc{left:228.708671px;}
.x20{left:356.107984px;}
.x3{left:372.083891px;}
.x1a{left:385.945325px;}
.x22{left:396.445906px;}
.x5{left:407.429727px;}
.x21{left:441.751807px;}
.x1f{left:448.717739px;}
.x4{left:451.368651px;}
.x2{left:488.204082px;}
.x13{left:604.305132px;}
.x14{left:625.883843px;}
.x15{left:658.305134px;}
.x19{left:759.776796px;}
.x17{left:781.376718px;}
.x18{left:810.793173px;}
.x16{left:826.804106px;}
.xd{left:1044.112130px;}
.x6{left:1054.719000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-27.733335pt;}
.ws1{word-spacing:-19.200001pt;}
.ws4{word-spacing:-17.066668pt;}
.ws6{word-spacing:-16.800000pt;}
.ws5{word-spacing:-14.400000pt;}
.ws2{word-spacing:-0.138667pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-7.072000pt;}
._3{margin-left:-5.361508pt;}
._2{margin-left:-3.306667pt;}
._0{margin-left:-2.149333pt;}
._1{margin-left:-1.157333pt;}
._5{width:1.642667pt;}
._4{width:96.011700pt;}
._6{width:1500.311562pt;}
.fs5{font-size:64.000002pt;}
.fs1{font-size:74.666666pt;}
.fs4{font-size:85.333339pt;}
.fs3{font-size:96.000003pt;}
.fs2{font-size:138.666676pt;}
.fs0{font-size:165.333333pt;}
.fs6{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:14.407985pt;}
.y56{bottom:68.013785pt;}
.y25{bottom:72.968075pt;}
.y33{bottom:83.082607pt;}
.y24{bottom:94.968076pt;}
.y23{bottom:116.968076pt;}
.y10{bottom:122.526207pt;}
.y22{bottom:138.968077pt;}
.y2b{bottom:139.688932pt;}
.yf{bottom:144.526207pt;}
.y54{bottom:149.555768pt;}
.y18{bottom:155.688933pt;}
.y21{bottom:160.968078pt;}
.y2a{bottom:161.688913pt;}
.y48{bottom:165.430008pt;}
.y17{bottom:177.688913pt;}
.y53{bottom:178.555768pt;}
.y20{bottom:182.968079pt;}
.y29{bottom:183.688914pt;}
.y47{bottom:187.430009pt;}
.ye{bottom:188.526189pt;}
.y16{bottom:199.688914pt;}
.y50{bottom:201.820149pt;}
.y1f{bottom:204.968079pt;}
.y28{bottom:205.688914pt;}
.y52{bottom:207.555769pt;}
.y46{bottom:209.430009pt;}
.yd{bottom:210.526189pt;}
.y32{bottom:211.690229pt;}
.y3c{bottom:221.250230pt;}
.y4f{bottom:223.820150pt;}
.y1e{bottom:226.968080pt;}
.y5{bottom:227.898890pt;}
.y45{bottom:232.870010pt;}
.y31{bottom:233.690230pt;}
.y51{bottom:236.555770pt;}
.y3b{bottom:243.250231pt;}
.y15{bottom:244.568916pt;}
.y4e{bottom:245.820151pt;}
.y1d{bottom:248.968081pt;}
.y27{bottom:249.688916pt;}
.y4{bottom:249.898891pt;}
.yc{bottom:254.526191pt;}
.y30{bottom:255.690231pt;}
.y44{bottom:258.870011pt;}
.y3a{bottom:265.250231pt;}
.y4d{bottom:267.820151pt;}
.y26{bottom:271.688916pt;}
.y3{bottom:271.898893pt;}
.y2f{bottom:277.690232pt;}
.y43{bottom:284.870012pt;}
.y39{bottom:288.690232pt;}
.y4c{bottom:289.820152pt;}
.y14{bottom:293.688917pt;}
.y1c{bottom:294.848082pt;}
.y2e{bottom:299.690232pt;}
.yb{bottom:305.526192pt;}
.y42{bottom:310.870013pt;}
.y4b{bottom:311.820153pt;}
.y38{bottom:314.690233pt;}
.y13{bottom:315.688918pt;}
.y2d{bottom:321.690233pt;}
.y2{bottom:321.989287pt;}
.ya{bottom:327.526193pt;}
.y4a{bottom:333.820153pt;}
.y41{bottom:336.870013pt;}
.y12{bottom:337.688919pt;}
.y37{bottom:340.690234pt;}
.y1b{bottom:342.968084pt;}
.y2c{bottom:343.690234pt;}
.y9{bottom:349.526194pt;}
.y40{bottom:362.870014pt;}
.y1a{bottom:364.968084pt;}
.y1{bottom:371.989291pt;}
.y49{bottom:378.700155pt;}
.y11{bottom:382.568920pt;}
.y36{bottom:386.841149pt;}
.y55{bottom:388.368390pt;}
.y3f{bottom:388.870015pt;}
.y8{bottom:394.406195pt;}
.y19{bottom:410.848086pt;}
.y35{bottom:412.841152pt;}
.y3e{bottom:414.870018pt;}
.y7{bottom:459.982463pt;}
.y34{bottom:460.279997pt;}
.y3d{bottom:472.233121pt;}
.h7{height:51.062502pt;}
.h3{height:56.000000pt;}
.h2{height:59.572916pt;}
.h6{height:61.696004pt;}
.h5{height:69.408002pt;}
.h4{height:100.256007pt;}
.h1{height:119.536000pt;}
.h8{height:266.500009pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:33.081981pt;}
.xe{left:41.817586pt;}
.x1e{left:45.273951pt;}
.x1d{left:59.229942pt;}
.xf{left:60.998663pt;}
.x1{left:75.953932pt;}
.x7{left:84.595803pt;}
.x1b{left:87.297843pt;}
.x10{left:89.817588pt;}
.x8{left:103.776879pt;}
.x11{left:109.684779pt;}
.x9{left:132.595804pt;}
.x12{left:137.817589pt;}
.xa{left:152.462995pt;}
.xb{left:180.595806pt;}
.x23{left:187.624866pt;}
.xc{left:203.296597pt;}
.x20{left:316.540430pt;}
.x3{left:330.741237pt;}
.x1a{left:343.062511pt;}
.x22{left:352.396361pt;}
.x5{left:362.159758pt;}
.x21{left:392.668273pt;}
.x1f{left:398.860213pt;}
.x4{left:401.216579pt;}
.x2{left:433.959184pt;}
.x13{left:537.160117pt;}
.x14{left:556.341194pt;}
.x15{left:585.160119pt;}
.x19{left:675.357152pt;}
.x17{left:694.557082pt;}
.x18{left:720.705043pt;}
.x16{left:734.936984pt;}
.xd{left:928.099671pt;}
.x6{left:937.528000pt;}
}




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