
    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_68f69b7b5489f03fbc4b836f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_cef16222b2f0f3461da1581d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_dc3595e8dcd78dea462091bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_c30531640d7ef7419258718b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_cd40ba3d8825c0fa3d42c075.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_0742af6da5ee68e8b623e06c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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:ff7;src:url('chunks/assets/font_0c7571d8f0236eccb4f7a9ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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:ff8;src:url('chunks/assets/font_f01c58793a6d0afb1b03f9fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.575000;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:ff9;src:url('chunks/assets/font_c2cde5931575396f0a9edacb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.592000;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;}
.ls1{letter-spacing:389.520600px;}
.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;}
._1{margin-left:-1.224000px;}
._3{width:1.080000px;}
._9{width:2.592600px;}
._8{width:115.920000px;}
._a{width:252.720000px;}
._2{width:750.960600px;}
._4{width:805.824600px;}
._5{width:823.536600px;}
._c{width:846.000600px;}
._6{width:876.024600px;}
._b{width:903.600000px;}
._7{width:932.040600px;}
._0{width:1730.309896px;}
.fc3{color:rgb(31,55,99);}
.fc4{color:rgb(0,32,96);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.719400px;}
.fs0{font-size:66.239400px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.239850px;}
.y3{bottom:73.800000px;}
.y2{bottom:125.640000px;}
.y2a{bottom:158.040000px;}
.y20{bottom:167.040000px;}
.y2f{bottom:198.000000px;}
.y3c{bottom:201.959850px;}
.y45{bottom:213.840000px;}
.y22{bottom:214.920000px;}
.y29{bottom:228.959850px;}
.y44{bottom:244.800000px;}
.y3b{bottom:304.200000px;}
.y43{bottom:347.040000px;}
.y2e{bottom:362.160000px;}
.y3a{bottom:366.480000px;}
.y39{bottom:397.440000px;}
.y14{bottom:407.520000px;}
.y42{bottom:417.960000px;}
.y32{bottom:422.640000px;}
.y13{bottom:447.480000px;}
.y31{bottom:462.960000px;}
.y38{bottom:468.360000px;}
.y2d{bottom:484.919850px;}
.y12{bottom:487.440000px;}
.y1b{bottom:511.200000px;}
.y2c{bottom:525.240000px;}
.y11{bottom:527.759850px;}
.y1a{bottom:551.160000px;}
.y10{bottom:567.720000px;}
.y19{bottom:591.120000px;}
.y28{bottom:601.560000px;}
.yf{bottom:607.680000px;}
.y41{bottom:622.440000px;}
.y27{bottom:641.880000px;}
.ye{bottom:647.640000px;}
.y18{bottom:662.400000px;}
.y37{bottom:663.840000px;}
.yd{bottom:687.960000px;}
.y2b{bottom:689.400000px;}
.y40{bottom:693.360000px;}
.y17{bottom:702.360000px;}
.y3f{bottom:724.680000px;}
.y21{bottom:751.680000px;}
.y1f{bottom:755.280000px;}
.y48{bottom:755.640000px;}
.y36{bottom:766.080000px;}
.y16{bottom:773.640000px;}
.y30{bottom:782.640000px;}
.y1e{bottom:795.600000px;}
.yc{bottom:822.240000px;}
.y3e{bottom:826.560000px;}
.y1d{bottom:835.560000px;}
.y26{bottom:858.960000px;}
.yb{bottom:864.000000px;}
.y35{bottom:867.960000px;}
.y47{bottom:897.839850px;}
.ya{bottom:906.120000px;}
.y1c{bottom:906.839850px;}
.y25{bottom:919.440000px;}
.y34{bottom:928.440000px;}
.y3d{bottom:928.800000px;}
.y9{bottom:947.880000px;}
.y24{bottom:959.400000px;}
.y33{bottom:968.760000px;}
.y8{bottom:990.000000px;}
.y23{bottom:1000.080000px;}
.y46{bottom:1031.040000px;}
.y7{bottom:1032.120000px;}
.y15{bottom:1062.000000px;}
.y6{bottom:1064.880000px;}
.y1{bottom:1113.839850px;}
.y5{bottom:1153.800000px;}
.h3{height:58.385600px;}
.h1{height:70.677440px;}
.h2{height:76.824000px;}
.h5{height:78.048000px;}
.h4{height:82.969920px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.439850px;}
.x13{left:180.720000px;}
.x10{left:188.640000px;}
.xb{left:194.400000px;}
.x17{left:200.520000px;}
.x35{left:207.000000px;}
.x28{left:225.000000px;}
.xc{left:232.920000px;}
.x1e{left:236.160000px;}
.x18{left:239.760000px;}
.x9{left:245.520000px;}
.x30{left:248.400000px;}
.x34{left:255.959850px;}
.x26{left:268.200000px;}
.x14{left:272.879850px;}
.x1a{left:280.080000px;}
.x1b{left:282.600000px;}
.x8{left:285.120000px;}
.x11{left:306.360000px;}
.xa{left:316.440000px;}
.x24{left:323.280000px;}
.x29{left:329.760000px;}
.x16{left:354.960000px;}
.x2a{left:361.440000px;}
.x23{left:373.680000px;}
.x7{left:396.360000px;}
.x25{left:399.600000px;}
.x2f{left:420.480000px;}
.x12{left:423.360000px;}
.x2b{left:425.880000px;}
.x2c{left:436.680000px;}
.x19{left:450.360000px;}
.x6{left:454.680000px;}
.x4{left:456.840000px;}
.x21{left:471.240000px;}
.x20{left:484.560000px;}
.x2d{left:500.759850px;}
.x27{left:507.600000px;}
.x31{left:512.640000px;}
.x22{left:524.880000px;}
.x15{left:528.480000px;}
.x33{left:545.040000px;}
.x1c{left:588.600000px;}
.xd{left:592.560000px;}
.xe{left:603.720000px;}
.x32{left:632.880000px;}
.x1f{left:643.320000px;}
.xf{left:652.320000px;}
.x3{left:655.920000px;}
.x5{left:687.960000px;}
.x1d{left:703.080000px;}
.x2e{left:709.920000px;}
.x2{left:765.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:346.240533pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.088000pt;}
._3{width:0.960000pt;}
._9{width:2.304533pt;}
._8{width:103.040000pt;}
._a{width:224.640000pt;}
._2{width:667.520533pt;}
._4{width:716.288533pt;}
._5{width:732.032533pt;}
._c{width:752.000533pt;}
._6{width:778.688533pt;}
._b{width:803.200000pt;}
._7{width:828.480533pt;}
._0{width:1538.053241pt;}
.fs2{font-size:48.639467pt;}
.fs0{font-size:58.879467pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.879867pt;}
.y3{bottom:65.600000pt;}
.y2{bottom:111.680000pt;}
.y2a{bottom:140.480000pt;}
.y20{bottom:148.480000pt;}
.y2f{bottom:176.000000pt;}
.y3c{bottom:179.519867pt;}
.y45{bottom:190.080000pt;}
.y22{bottom:191.040000pt;}
.y29{bottom:203.519867pt;}
.y44{bottom:217.600000pt;}
.y3b{bottom:270.400000pt;}
.y43{bottom:308.480000pt;}
.y2e{bottom:321.920000pt;}
.y3a{bottom:325.760000pt;}
.y39{bottom:353.280000pt;}
.y14{bottom:362.240000pt;}
.y42{bottom:371.520000pt;}
.y32{bottom:375.680000pt;}
.y13{bottom:397.760000pt;}
.y31{bottom:411.520000pt;}
.y38{bottom:416.320000pt;}
.y2d{bottom:431.039867pt;}
.y12{bottom:433.280000pt;}
.y1b{bottom:454.400000pt;}
.y2c{bottom:466.880000pt;}
.y11{bottom:469.119867pt;}
.y1a{bottom:489.920000pt;}
.y10{bottom:504.640000pt;}
.y19{bottom:525.440000pt;}
.y28{bottom:534.720000pt;}
.yf{bottom:540.160000pt;}
.y41{bottom:553.280000pt;}
.y27{bottom:570.560000pt;}
.ye{bottom:575.680000pt;}
.y18{bottom:588.800000pt;}
.y37{bottom:590.080000pt;}
.yd{bottom:611.520000pt;}
.y2b{bottom:612.800000pt;}
.y40{bottom:616.320000pt;}
.y17{bottom:624.320000pt;}
.y3f{bottom:644.160000pt;}
.y21{bottom:668.160000pt;}
.y1f{bottom:671.360000pt;}
.y48{bottom:671.680000pt;}
.y36{bottom:680.960000pt;}
.y16{bottom:687.680000pt;}
.y30{bottom:695.680000pt;}
.y1e{bottom:707.200000pt;}
.yc{bottom:730.880000pt;}
.y3e{bottom:734.720000pt;}
.y1d{bottom:742.720000pt;}
.y26{bottom:763.520000pt;}
.yb{bottom:768.000000pt;}
.y35{bottom:771.520000pt;}
.y47{bottom:798.079867pt;}
.ya{bottom:805.440000pt;}
.y1c{bottom:806.079867pt;}
.y25{bottom:817.280000pt;}
.y34{bottom:825.280000pt;}
.y3d{bottom:825.600000pt;}
.y9{bottom:842.560000pt;}
.y24{bottom:852.800000pt;}
.y33{bottom:861.120000pt;}
.y8{bottom:880.000000pt;}
.y23{bottom:888.960000pt;}
.y46{bottom:916.480000pt;}
.y7{bottom:917.440000pt;}
.y15{bottom:944.000000pt;}
.y6{bottom:946.560000pt;}
.y1{bottom:990.079867pt;}
.y5{bottom:1025.600000pt;}
.h3{height:51.898311pt;}
.h1{height:62.824391pt;}
.h2{height:68.288000pt;}
.h5{height:69.376000pt;}
.h4{height:73.751040pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.279867pt;}
.x13{left:160.640000pt;}
.x10{left:167.680000pt;}
.xb{left:172.800000pt;}
.x17{left:178.240000pt;}
.x35{left:184.000000pt;}
.x28{left:200.000000pt;}
.xc{left:207.040000pt;}
.x1e{left:209.920000pt;}
.x18{left:213.120000pt;}
.x9{left:218.240000pt;}
.x30{left:220.800000pt;}
.x34{left:227.519867pt;}
.x26{left:238.400000pt;}
.x14{left:242.559867pt;}
.x1a{left:248.960000pt;}
.x1b{left:251.200000pt;}
.x8{left:253.440000pt;}
.x11{left:272.320000pt;}
.xa{left:281.280000pt;}
.x24{left:287.360000pt;}
.x29{left:293.120000pt;}
.x16{left:315.520000pt;}
.x2a{left:321.280000pt;}
.x23{left:332.160000pt;}
.x7{left:352.320000pt;}
.x25{left:355.200000pt;}
.x2f{left:373.760000pt;}
.x12{left:376.320000pt;}
.x2b{left:378.560000pt;}
.x2c{left:388.160000pt;}
.x19{left:400.320000pt;}
.x6{left:404.160000pt;}
.x4{left:406.080000pt;}
.x21{left:418.880000pt;}
.x20{left:430.720000pt;}
.x2d{left:445.119867pt;}
.x27{left:451.200000pt;}
.x31{left:455.680000pt;}
.x22{left:466.560000pt;}
.x15{left:469.760000pt;}
.x33{left:484.480000pt;}
.x1c{left:523.200000pt;}
.xd{left:526.720000pt;}
.xe{left:536.640000pt;}
.x32{left:562.560000pt;}
.x1f{left:571.840000pt;}
.xf{left:579.840000pt;}
.x3{left:583.040000pt;}
.x5{left:611.520000pt;}
.x1d{left:624.960000pt;}
.x2e{left:631.040000pt;}
.x2{left:680.320000pt;}
}




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