
    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_5117e6cddc05cf895bf7563e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eae354ab2b09fac249e8e8a5.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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.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);}
.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;}
}
.ws0{word-spacing:0.000000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,66,169);}
.fc1{color:rgb(17,5,59);}
.fc5{color:rgb(235,235,235);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(1,29,87);}
.fc2{color:rgb(71,71,71);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:49.499998px;}
.fs3{font-size:62.999997px;}
.fs4{font-size:67.499997px;}
.fs5{font-size:71.999997px;}
.fs2{font-size:89.999996px;}
.fs1{font-size:112.499995px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.126485px;}
.y4e{bottom:111.743995px;}
.y4d{bottom:342.368986px;}
.y4c{bottom:370.493985px;}
.y4b{bottom:863.243964px;}
.y4a{bottom:1004.993958px;}
.y49{bottom:1031.993957px;}
.y48{bottom:1085.993955px;}
.y47{bottom:1112.993954px;}
.y46{bottom:1166.993951px;}
.y45{bottom:1220.993949px;}
.y44{bottom:1247.993948px;}
.y43{bottom:1274.993947px;}
.y42{bottom:1328.993945px;}
.y41{bottom:1355.993944px;}
.y40{bottom:1382.993942px;}
.y3f{bottom:1409.993941px;}
.y3e{bottom:1436.993940px;}
.y3d{bottom:1463.993939px;}
.y3c{bottom:1490.993938px;}
.y3b{bottom:1535.993936px;}
.y3a{bottom:1589.993934px;}
.y39{bottom:1616.993933px;}
.y38{bottom:1643.993932px;}
.y37{bottom:1697.993929px;}
.y36{bottom:1727.243928px;}
.y35{bottom:2303.243904px;}
.y34{bottom:2357.243902px;}
.y33{bottom:2384.243901px;}
.y32{bottom:2411.243900px;}
.y31{bottom:2438.243898px;}
.y30{bottom:2465.243897px;}
.y2f{bottom:2520.368895px;}
.y2e{bottom:2554.118894px;}
.y2d{bottom:2740.868886px;}
.y2c{bottom:2794.868884px;}
.y2b{bottom:2821.868882px;}
.y2a{bottom:2848.868881px;}
.y29{bottom:2875.868880px;}
.y28{bottom:2902.868879px;}
.y27{bottom:2947.868877px;}
.y26{bottom:2970.368876px;}
.y25{bottom:3549.743852px;}
.y24{bottom:3603.743850px;}
.y23{bottom:3630.743849px;}
.y22{bottom:3657.743848px;}
.y21{bottom:3684.743846px;}
.y20{bottom:3711.743845px;}
.y1f{bottom:3738.743844px;}
.y1e{bottom:3791.618842px;}
.y1d{bottom:3820.868841px;}
.y1c{bottom:3850.118840px;}
.y1b{bottom:4021.118832px;}
.y1a{bottom:4075.118830px;}
.y19{bottom:4102.118829px;}
.y18{bottom:4129.118828px;}
.y17{bottom:4156.118827px;}
.y16{bottom:4183.118826px;}
.y15{bottom:4210.118825px;}
.y14{bottom:4265.243822px;}
.y13{bottom:4928.993795px;}
.y12{bottom:4991.993792px;}
.y11{bottom:5018.993791px;}
.y10{bottom:5045.993790px;}
.yf{bottom:5072.993789px;}
.ye{bottom:5099.993788px;}
.yd{bottom:5126.993786px;}
.yc{bottom:5182.118784px;}
.yb{bottom:5768.243760px;}
.ya{bottom:5822.243757px;}
.y9{bottom:5849.243756px;}
.y8{bottom:5876.243755px;}
.y7{bottom:5903.243754px;}
.y6{bottom:5930.243753px;}
.y5{bottom:5957.243752px;}
.y4{bottom:6012.368749px;}
.y3{bottom:6551.243727px;}
.y2{bottom:8008.118666px;}
.h2{height:35.868163px;}
.h6{height:41.989744px;}
.h5{height:59.849998px;}
.h7{height:64.124997px;}
.h8{height:68.399997px;}
.h4{height:85.499996px;}
.h3{height:106.874996px;}
.h1{height:8042.993665px;}
.h0{height:8043.120150px;}
.w2{width:1619.999933px;}
.w0{width:1620.000000px;}
.w1{width:1620.241870px;}
.x0{left:0.000000px;}
.x30{left:467.999981px;}
.x27{left:469.740220px;}
.x16{left:471.726543px;}
.x1e{left:472.746074px;}
.x6{left:474.574199px;}
.x23{left:477.755845px;}
.x1b{left:479.003886px;}
.x29{left:481.605449px;}
.x11{left:483.064439px;}
.x21{left:488.285136px;}
.x35{left:491.748032px;}
.xc{left:492.978501px;}
.x2a{left:496.001938px;}
.x2e{left:497.232407px;}
.x4{left:502.628885px;}
.x26{left:507.902323px;}
.x2d{left:512.156229px;}
.x9{left:522.597634px;}
.x12{left:532.371072px;}
.x15{left:541.037092px;}
.x38{left:542.566384px;}
.x1a{left:571.499976px;}
.x28{left:578.320288px;}
.x10{left:616.078099px;}
.x31{left:620.894505px;}
.x36{left:643.236307px;}
.x8{left:645.503879px;}
.x2f{left:651.076150px;}
.x24{left:656.753879px;}
.x2{left:676.880837px;}
.x37{left:685.634743px;}
.x22{left:686.847628px;}
.x3{left:689.431618px;}
.x1c{left:698.308565px;}
.x39{left:700.593721px;}
.x13{left:712.634742px;}
.x1d{left:725.888647px;}
.x33{left:729.615210px;}
.x2c{left:742.974584px;}
.x1{left:749.917938px;}
.xe{left:755.648406px;}
.x18{left:756.984343px;}
.x34{left:765.861302px;}
.xd{left:771.275364px;}
.xf{left:775.299770px;}
.x19{left:778.042936px;}
.x17{left:797.695279px;}
.x5{left:818.876925px;}
.x1f{left:825.749966px;}
.x20{left:846.808558px;}
.x2b{left:851.396455px;}
.x14{left:878.238245px;}
.x7{left:935.859336px;}
.xa{left:1006.502527px;}
.xb{left:1011.747389px;}
.x32{left:1080.316361px;}
.x25{left:1130.730422px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs0{font-size:43.999998pt;}
.fs3{font-size:55.999998pt;}
.fs4{font-size:59.999998pt;}
.fs5{font-size:63.999997pt;}
.fs2{font-size:79.999997pt;}
.fs1{font-size:99.999996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.112431pt;}
.y4e{bottom:99.327996pt;}
.y4d{bottom:304.327987pt;}
.y4c{bottom:329.327986pt;}
.y4b{bottom:767.327968pt;}
.y4a{bottom:893.327963pt;}
.y49{bottom:917.327962pt;}
.y48{bottom:965.327960pt;}
.y47{bottom:989.327959pt;}
.y46{bottom:1037.327957pt;}
.y45{bottom:1085.327955pt;}
.y44{bottom:1109.327954pt;}
.y43{bottom:1133.327953pt;}
.y42{bottom:1181.327951pt;}
.y41{bottom:1205.327950pt;}
.y40{bottom:1229.327949pt;}
.y3f{bottom:1253.327948pt;}
.y3e{bottom:1277.327947pt;}
.y3d{bottom:1301.327946pt;}
.y3c{bottom:1325.327945pt;}
.y3b{bottom:1365.327943pt;}
.y3a{bottom:1413.327941pt;}
.y39{bottom:1437.327940pt;}
.y38{bottom:1461.327939pt;}
.y37{bottom:1509.327937pt;}
.y36{bottom:1535.327936pt;}
.y35{bottom:2047.327915pt;}
.y34{bottom:2095.327913pt;}
.y33{bottom:2119.327912pt;}
.y32{bottom:2143.327911pt;}
.y31{bottom:2167.327910pt;}
.y30{bottom:2191.327909pt;}
.y2f{bottom:2240.327907pt;}
.y2e{bottom:2270.327905pt;}
.y2d{bottom:2436.327898pt;}
.y2c{bottom:2484.327896pt;}
.y2b{bottom:2508.327895pt;}
.y2a{bottom:2532.327894pt;}
.y29{bottom:2556.327893pt;}
.y28{bottom:2580.327892pt;}
.y27{bottom:2620.327891pt;}
.y26{bottom:2640.327890pt;}
.y25{bottom:3155.327869pt;}
.y24{bottom:3203.327867pt;}
.y23{bottom:3227.327866pt;}
.y22{bottom:3251.327865pt;}
.y21{bottom:3275.327864pt;}
.y20{bottom:3299.327863pt;}
.y1f{bottom:3323.327862pt;}
.y1e{bottom:3370.327860pt;}
.y1d{bottom:3396.327858pt;}
.y1c{bottom:3422.327857pt;}
.y1b{bottom:3574.327851pt;}
.y1a{bottom:3622.327849pt;}
.y19{bottom:3646.327848pt;}
.y18{bottom:3670.327847pt;}
.y17{bottom:3694.327846pt;}
.y16{bottom:3718.327845pt;}
.y15{bottom:3742.327844pt;}
.y14{bottom:3791.327842pt;}
.y13{bottom:4381.327817pt;}
.y12{bottom:4437.327815pt;}
.y11{bottom:4461.327814pt;}
.y10{bottom:4485.327813pt;}
.yf{bottom:4509.327812pt;}
.ye{bottom:4533.327811pt;}
.yd{bottom:4557.327810pt;}
.yc{bottom:4606.327808pt;}
.yb{bottom:5127.327786pt;}
.ya{bottom:5175.327784pt;}
.y9{bottom:5199.327783pt;}
.y8{bottom:5223.327782pt;}
.y7{bottom:5247.327781pt;}
.y6{bottom:5271.327780pt;}
.y5{bottom:5295.327779pt;}
.y4{bottom:5344.327777pt;}
.y3{bottom:5823.327757pt;}
.y2{bottom:7118.327703pt;}
.h2{height:31.882811pt;}
.h6{height:37.324217pt;}
.h5{height:53.199998pt;}
.h7{height:56.999998pt;}
.h8{height:60.799997pt;}
.h4{height:75.999997pt;}
.h3{height:94.999996pt;}
.h1{height:7149.327702pt;}
.h0{height:7149.440133pt;}
.w2{width:1439.999940pt;}
.w0{width:1440.000000pt;}
.w1{width:1440.214996pt;}
.x0{left:0.000000pt;}
.x30{left:415.999983pt;}
.x27{left:417.546863pt;}
.x16{left:419.312483pt;}
.x1e{left:420.218732pt;}
.x6{left:421.843732pt;}
.x23{left:424.671862pt;}
.x1b{left:425.781232pt;}
.x29{left:428.093732pt;}
.x11{left:429.390612pt;}
.x21{left:434.031232pt;}
.x35{left:437.109362pt;}
.xc{left:438.203112pt;}
.x2a{left:440.890612pt;}
.x2e{left:441.984362pt;}
.x4{left:446.781231pt;}
.x26{left:451.468731pt;}
.x2d{left:455.249981pt;}
.x9{left:464.531231pt;}
.x12{left:473.218730pt;}
.x15{left:480.921860pt;}
.x38{left:482.281230pt;}
.x1a{left:507.999979pt;}
.x28{left:514.062479pt;}
.x10{left:547.624977pt;}
.x31{left:551.906227pt;}
.x36{left:571.765606pt;}
.x8{left:573.781226pt;}
.x2f{left:578.734356pt;}
.x24{left:583.781226pt;}
.x2{left:601.671855pt;}
.x37{left:609.453105pt;}
.x22{left:610.531225pt;}
.x3{left:612.828104pt;}
.x1c{left:620.718724pt;}
.x39{left:622.749974pt;}
.x13{left:633.453104pt;}
.x1d{left:645.234353pt;}
.x33{left:648.546853pt;}
.x2c{left:660.421852pt;}
.x1{left:666.593722pt;}
.xe{left:671.687472pt;}
.x18{left:672.874972pt;}
.x34{left:680.765602pt;}
.xd{left:685.578101pt;}
.xf{left:689.155351pt;}
.x19{left:691.593721pt;}
.x17{left:709.062470pt;}
.x5{left:727.890600pt;}
.x1f{left:733.999969pt;}
.x20{left:752.718719pt;}
.x2b{left:756.796848pt;}
.x14{left:780.656217pt;}
.x7{left:831.874965pt;}
.xa{left:894.668913pt;}
.xb{left:899.331013pt;}
.x32{left:960.281210pt;}
.x25{left:1005.093708pt;}
}




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