
    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_ba79242fb7f10c11530c041b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_656bbeba81f28e537feda296.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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);}
.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;}
.ls2{letter-spacing:0.086731px;}
.ls1{letter-spacing:107.972165px;}
.ls8{letter-spacing:107.986253px;}
.ls9{letter-spacing:107.986397px;}
.ls4{letter-spacing:108.000408px;}
.ls3{letter-spacing:108.000426px;}
.ls6{letter-spacing:457.945728px;}
.ls5{letter-spacing:743.713332px;}
.ls7{letter-spacing:2334.867798px;}
.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:-33.240000px;}
.ws2{word-spacing:-29.916001px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:6.259680px;}
.ws5{word-spacing:48.236267px;}
.ws3{word-spacing:73.285202px;}
._c{margin-left:-14.796001px;}
._2{margin-left:-8.880000px;}
._0{margin-left:-6.660000px;}
._1{margin-left:-4.620000px;}
._3{margin-left:-2.100000px;}
._4{width:1.760760px;}
._5{width:43.308001px;}
._b{width:108.106316px;}
._7{width:172.563351px;}
._8{width:585.087904px;}
._a{width:1040.080083px;}
._9{width:1212.379869px;}
._6{width:1688.360319px;}
.fc5{color:rgb(17,85,204);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,151,167);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:72.000002px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:90.000003px;}
.fs7{font-size:96.000006px;}
.fs4{font-size:108.000003px;}
.fs3{font-size:120.000001px;}
.fs8{font-size:132.000007px;}
.fs1{font-size:167.999999px;}
.fs0{font-size:180.000006px;}
.y0{bottom:0.000000px;}
.y6{bottom:14.142127px;}
.y46{bottom:28.439367px;}
.y61{bottom:29.983700px;}
.y5c{bottom:29.986625px;}
.y5e{bottom:31.527988px;}
.y56{bottom:31.530913px;}
.y45{bottom:53.189371px;}
.y5{bottom:53.543757px;}
.y60{bottom:54.733703px;}
.y5b{bottom:54.736628px;}
.y5d{bottom:56.277991px;}
.y55{bottom:56.280916px;}
.y27{bottom:116.801550px;}
.y18{bottom:128.124203px;}
.y37{bottom:129.681709px;}
.y54{bottom:142.313131px;}
.y2b{bottom:144.745381px;}
.y26{bottom:151.226551px;}
.y36{bottom:166.806711px;}
.y5f{bottom:167.245382px;}
.y17{bottom:169.749205px;}
.y2a{bottom:181.870382px;}
.y4{bottom:188.002285px;}
.y25{bottom:192.851553px;}
.y16{bottom:211.374206px;}
.y35{bottom:211.401712px;}
.y53{bottom:216.068133px;}
.y24{bottom:234.476554px;}
.y3{bottom:238.627291px;}
.y52{bottom:248.693135px;}
.y15{bottom:252.999207px;}
.y23{bottom:276.101555px;}
.y51{bottom:281.318136px;}
.y34{bottom:283.806714px;}
.y14{bottom:294.624209px;}
.y11{bottom:295.990386px;}
.y50{bottom:313.943137px;}
.y22{bottom:317.726557px;}
.y33{bottom:320.931716px;}
.y44{bottom:325.466906px;}
.y2{bottom:329.969268px;}
.y10{bottom:331.990387px;}
.y13{bottom:348.624210px;}
.y21{bottom:353.996558px;}
.y32{bottom:358.056717px;}
.y3c{bottom:364.120388px;}
.y4f{bottom:366.818138px;}
.yf{bottom:367.990388px;}
.y1{bottom:383.969279px;}
.y20{bottom:384.101559px;}
.y12{bottom:384.624211px;}
.y31{bottom:395.181718px;}
.y4e{bottom:399.443139px;}
.y43{bottom:399.716908px;}
.y3b{bottom:401.245389px;}
.ye{bottom:403.990390px;}
.y5a{bottom:420.235390px;}
.y1f{bottom:425.726560px;}
.y4d{bottom:432.068140px;}
.y30{bottom:432.306719px;}
.y42{bottom:436.841909px;}
.y3a{bottom:438.370391px;}
.yd{bottom:439.990391px;}
.y1e{bottom:467.351562px;}
.y2f{bottom:469.431720px;}
.y41{bottom:473.966910px;}
.yc{bottom:475.990392px;}
.y4c{bottom:484.943142px;}
.y59{bottom:498.985393px;}
.y2e{bottom:506.556722px;}
.y1d{bottom:508.976563px;}
.y40{bottom:511.091912px;}
.yb{bottom:511.990393px;}
.y39{bottom:512.620393px;}
.y4b{bottom:517.568143px;}
.ya{bottom:547.990394px;}
.y3f{bottom:548.216913px;}
.y38{bottom:549.745394px;}
.y1c{bottom:550.601564px;}
.y29{bottom:567.745395px;}
.y4a{bottom:570.443145px;}
.y58{bottom:577.735395px;}
.y9{bottom:583.990395px;}
.y3e{bottom:585.341914px;}
.y1b{bottom:592.226566px;}
.y49{bottom:603.068150px;}
.y28{bottom:604.870396px;}
.y2d{bottom:616.806725px;}
.y57{bottom:617.110396px;}
.y8{bottom:619.990396px;}
.y3d{bottom:622.466915px;}
.y1a{bottom:633.851567px;}
.y48{bottom:635.693151px;}
.y2c{bottom:653.931726px;}
.y19{bottom:675.476568px;}
.y47{bottom:687.938149px;}
.y7{bottom:753.326579px;}
.h5{height:64.335940px;}
.h3{height:75.058593px;}
.h6{height:80.419924px;}
.h9{height:85.781255px;}
.h7{height:96.503909px;}
.h4{height:107.226563px;}
.ha{height:117.949225px;}
.h1{height:131.044926px;}
.h2{height:150.117187px;}
.h8{height:160.839849px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:10.125000px;}
.xe{left:46.939963px;}
.x12{left:54.011364px;}
.x7{left:55.826923px;}
.xb{left:57.631857px;}
.x9{left:58.945033px;}
.x8{left:100.939964px;}
.xa{left:104.058074px;}
.x13{left:108.011366px;}
.xc{left:111.631864px;}
.xf{left:143.549341px;}
.xd{left:154.939966px;}
.x1{left:164.454332px;}
.x16{left:262.089571px;}
.x15{left:263.636817px;}
.x11{left:266.728351px;}
.x14{left:280.638796px;}
.x5{left:297.968511px;}
.x10{left:299.188022px;}
.x2{left:301.190173px;}
.x4{left:360.363642px;}
.x3{left:407.350731px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.077094pt;}
.ls1{letter-spacing:95.975258pt;}
.ls8{letter-spacing:95.987780pt;}
.ls9{letter-spacing:95.987908pt;}
.ls4{letter-spacing:96.000363pt;}
.ls3{letter-spacing:96.000379pt;}
.ls6{letter-spacing:407.062869pt;}
.ls5{letter-spacing:661.078517pt;}
.ls7{letter-spacing:2075.438042pt;}
.ws1{word-spacing:-29.546667pt;}
.ws2{word-spacing:-26.592001pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:5.564160pt;}
.ws5{word-spacing:42.876681pt;}
.ws3{word-spacing:65.142402pt;}
._c{margin-left:-13.152001pt;}
._2{margin-left:-7.893333pt;}
._0{margin-left:-5.920000pt;}
._1{margin-left:-4.106667pt;}
._3{margin-left:-1.866667pt;}
._4{width:1.565120pt;}
._5{width:38.496001pt;}
._b{width:96.094503pt;}
._7{width:153.389645pt;}
._8{width:520.078137pt;}
._a{width:924.515630pt;}
._9{width:1077.670994pt;}
._6{width:1500.764728pt;}
.fs5{font-size:64.000002pt;}
.fs2{font-size:74.666666pt;}
.fs6{font-size:80.000003pt;}
.fs7{font-size:85.333339pt;}
.fs4{font-size:96.000003pt;}
.fs3{font-size:106.666667pt;}
.fs8{font-size:117.333340pt;}
.fs1{font-size:149.333333pt;}
.fs0{font-size:160.000005pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:12.570779pt;}
.y46{bottom:25.279438pt;}
.y61{bottom:26.652178pt;}
.y5c{bottom:26.654778pt;}
.y5e{bottom:28.024878pt;}
.y56{bottom:28.027478pt;}
.y45{bottom:47.279440pt;}
.y5{bottom:47.594450pt;}
.y60{bottom:48.652181pt;}
.y5b{bottom:48.654781pt;}
.y5d{bottom:50.024881pt;}
.y55{bottom:50.027481pt;}
.y27{bottom:103.823600pt;}
.y18{bottom:113.888181pt;}
.y37{bottom:115.272631pt;}
.y54{bottom:126.500561pt;}
.y2b{bottom:128.662561pt;}
.y26{bottom:134.423601pt;}
.y36{bottom:148.272632pt;}
.y5f{bottom:148.662562pt;}
.y17{bottom:150.888182pt;}
.y2a{bottom:161.662562pt;}
.y4{bottom:167.113142pt;}
.y25{bottom:171.423602pt;}
.y16{bottom:187.888183pt;}
.y35{bottom:187.912633pt;}
.y53{bottom:192.060563pt;}
.y24{bottom:208.423604pt;}
.y3{bottom:212.113148pt;}
.y52{bottom:221.060564pt;}
.y15{bottom:224.888184pt;}
.y23{bottom:245.423605pt;}
.y51{bottom:250.060565pt;}
.y34{bottom:252.272635pt;}
.y14{bottom:261.888185pt;}
.y11{bottom:263.102565pt;}
.y50{bottom:279.060566pt;}
.y22{bottom:282.423606pt;}
.y33{bottom:285.272636pt;}
.y44{bottom:289.303916pt;}
.y2{bottom:293.306016pt;}
.y10{bottom:295.102566pt;}
.y13{bottom:309.888187pt;}
.y21{bottom:314.663607pt;}
.y32{bottom:318.272637pt;}
.y3c{bottom:323.662567pt;}
.y4f{bottom:326.060567pt;}
.yf{bottom:327.102567pt;}
.y1{bottom:341.306026pt;}
.y20{bottom:341.423608pt;}
.y12{bottom:341.888188pt;}
.y31{bottom:351.272638pt;}
.y4e{bottom:355.060568pt;}
.y43{bottom:355.303918pt;}
.y3b{bottom:356.662568pt;}
.ye{bottom:359.102568pt;}
.y5a{bottom:373.542569pt;}
.y1f{bottom:378.423609pt;}
.y4d{bottom:384.060569pt;}
.y30{bottom:384.272639pt;}
.y42{bottom:388.303919pt;}
.y3a{bottom:389.662569pt;}
.yd{bottom:391.102569pt;}
.y1e{bottom:415.423610pt;}
.y2f{bottom:417.272640pt;}
.y41{bottom:421.303920pt;}
.yc{bottom:423.102570pt;}
.y4c{bottom:431.060571pt;}
.y59{bottom:443.542571pt;}
.y2e{bottom:450.272641pt;}
.y1d{bottom:452.423611pt;}
.y40{bottom:454.303921pt;}
.yb{bottom:455.102572pt;}
.y39{bottom:455.662572pt;}
.y4b{bottom:460.060572pt;}
.ya{bottom:487.102573pt;}
.y3f{bottom:487.303923pt;}
.y38{bottom:488.662573pt;}
.y1c{bottom:489.423613pt;}
.y29{bottom:504.662573pt;}
.y4a{bottom:507.060573pt;}
.y58{bottom:513.542573pt;}
.y9{bottom:519.102574pt;}
.y3e{bottom:520.303924pt;}
.y1b{bottom:526.423614pt;}
.y49{bottom:536.060578pt;}
.y28{bottom:537.662574pt;}
.y2d{bottom:548.272645pt;}
.y57{bottom:548.542575pt;}
.y8{bottom:551.102575pt;}
.y3d{bottom:553.303925pt;}
.y1a{bottom:563.423615pt;}
.y48{bottom:565.060579pt;}
.y2c{bottom:581.272646pt;}
.y19{bottom:600.423616pt;}
.y47{bottom:611.500577pt;}
.y7{bottom:669.623625pt;}
.h5{height:57.187502pt;}
.h3{height:66.718750pt;}
.h6{height:71.484377pt;}
.h9{height:76.250005pt;}
.h7{height:85.781253pt;}
.h4{height:95.312501pt;}
.ha{height:104.843756pt;}
.h1{height:116.484379pt;}
.h2{height:133.437500pt;}
.h8{height:142.968755pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.000000pt;}
.xe{left:41.724411pt;}
.x12{left:48.010102pt;}
.x7{left:49.623932pt;}
.xb{left:51.228318pt;}
.x9{left:52.395585pt;}
.x8{left:89.724413pt;}
.xa{left:92.496066pt;}
.x13{left:96.010103pt;}
.xc{left:99.228323pt;}
.xf{left:127.599414pt;}
.xd{left:137.724414pt;}
.x1{left:146.181629pt;}
.x16{left:232.968507pt;}
.x15{left:234.343837pt;}
.x11{left:237.091868pt;}
.x14{left:249.456708pt;}
.x5{left:264.860898pt;}
.x10{left:265.944909pt;}
.x2{left:267.724599pt;}
.x4{left:320.323237pt;}
.x3{left:362.089539pt;}
}




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