
    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_e0810bfdd19e83caf2935adb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_e9c1b813a85bec78ed691ab6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_d729e000949ec3bf251e2394.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_a7204fab3f6b594bf96d63e6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.096191;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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;}
.ls1{letter-spacing:-0.178800px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.731520px;}
.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.880000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-2.453760px;}
._2{margin-left:-1.419840px;}
._0{width:1.753920px;}
._3{width:2.756160px;}
._1{width:3.907200px;}
._4{width:5.149440px;}
._6{width:6.557760px;}
._5{width:7.986240px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y40{bottom:21.240000px;}
.y3d{bottom:21.600000px;}
.y47{bottom:28.440000px;}
.y3c{bottom:41.400000px;}
.y3f{bottom:42.840000px;}
.y43{bottom:43.200000px;}
.y46{bottom:43.230000px;}
.y49{bottom:64.800000px;}
.y42{bottom:65.160000px;}
.y45{bottom:65.190000px;}
.y3a{bottom:111.636000px;}
.y1d{bottom:119.196000px;}
.y39{bottom:132.552000px;}
.y2b{bottom:144.072000px;}
.y38{bottom:153.075000px;}
.y1c{bottom:162.075000px;}
.y2a{bottom:171.795000px;}
.y37{bottom:173.595000px;}
.y5f{bottom:173.955000px;}
.y36{bottom:178.995000px;}
.y5e{bottom:194.475000px;}
.y35{bottom:194.835000px;}
.y5d{bottom:201.315000px;}
.y1b{bottom:204.555000px;}
.y29{bottom:214.635000px;}
.y5c{bottom:215.355000px;}
.y1a{bottom:232.635000px;}
.y28{bottom:242.355000px;}
.y27{bottom:270.105000px;}
.y19{bottom:275.145000px;}
.y26{bottom:312.945000px;}
.y18{bottom:317.985000px;}
.y34{bottom:333.465000px;}
.y25{bottom:340.665000px;}
.y17{bottom:345.705000px;}
.y33{bottom:361.185000px;}
.y24{bottom:368.745000px;}
.y16{bottom:373.425000px;}
.y32{bottom:388.950000px;}
.y15{bottom:401.550000px;}
.y23{bottom:411.270000px;}
.y31{bottom:431.790000px;}
.y14{bottom:444.030000px;}
.y22{bottom:449.430000px;}
.y4a{bottom:451.950000px;}
.y5b{bottom:457.710000px;}
.y13{bottom:472.110000px;}
.y5a{bottom:485.430000px;}
.y48{bottom:511.380000px;}
.y59{bottom:513.180000px;}
.y12{bottom:514.620000px;}
.y58{bottom:540.900000px;}
.y11{bottom:542.700000px;}
.y57{bottom:568.980000px;}
.y10{bottom:570.420000px;}
.y44{bottom:592.380000px;}
.y56{bottom:596.700000px;}
.yf{bottom:598.140000px;}
.y55{bottom:624.420000px;}
.ye{bottom:636.330000px;}
.y54{bottom:652.170000px;}
.yd{bottom:662.250000px;}
.y41{bottom:673.770000px;}
.y53{bottom:679.890000px;}
.yc{bottom:700.410000px;}
.y52{bottom:707.610000px;}
.yb{bottom:726.330000px;}
.y51{bottom:750.450000px;}
.y3e{bottom:755.175000px;}
.ya{bottom:769.215000px;}
.y50{bottom:778.215000px;}
.y9{bottom:796.935000px;}
.y4f{bottom:805.935000px;}
.y3b{bottom:814.575000px;}
.y8{bottom:824.655000px;}
.y4e{bottom:848.775000px;}
.y7{bottom:867.495000px;}
.y4d{bottom:876.495000px;}
.y30{bottom:889.485000px;}
.y6{bottom:895.245000px;}
.y21{bottom:919.365000px;}
.y2f{bottom:932.325000px;}
.y5{bottom:938.085000px;}
.y20{bottom:962.205000px;}
.y4{bottom:965.805000px;}
.y2d{bottom:974.805000px;}
.y2e{bottom:982.365000px;}
.y4c{bottom:989.925000px;}
.y3{bottom:993.525000px;}
.y1f{bottom:1005.090000px;}
.y2c{bottom:1017.690000px;}
.y1e{bottom:1032.810000px;}
.y2{bottom:1036.410000px;}
.y4b{bottom:1040.370000px;}
.y1{bottom:1060.530000px;}
.h6{height:38.671172px;}
.he{height:46.251562px;}
.h12{height:46.638281px;}
.h4{height:53.704687px;}
.h8{height:57.600000px;}
.h3{height:58.317187px;}
.ha{height:58.320000px;}
.h10{height:58.716000px;}
.hc{height:65.010937px;}
.h5{height:65.884219px;}
.hb{height:66.757500px;}
.h9{height:69.660000px;}
.h7{height:70.664062px;}
.hf{height:80.280000px;}
.hd{height:80.676000px;}
.h2{height:81.970312px;}
.h1{height:84.172500px;}
.h11{height:85.518281px;}
.h0{height:1188.000000px;}
.w3{width:121.032000px;}
.w5{width:268.305000px;}
.w4{width:337.425000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:7.920000px;}
.x8{left:30.276000px;}
.x2{left:108.035986px;}
.x7{left:113.075986px;}
.xe{left:114.155986px;}
.x1{left:171.794986px;}
.xa{left:230.505000px;}
.x6{left:324.149986px;}
.x4{left:365.189973px;}
.x5{left:372.029986px;}
.xb{left:568.650000px;}
.xc{left:624.854973px;}
.xd{left:631.694986px;}
.x3{left:798.809986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.158933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.650240pt;}
.ws1{word-spacing:-18.560000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-2.181120pt;}
._2{margin-left:-1.262080pt;}
._0{width:1.559040pt;}
._3{width:2.449920pt;}
._1{width:3.473067pt;}
._4{width:4.577280pt;}
._6{width:5.829120pt;}
._5{width:7.098880pt;}
.fs3{font-size:34.560000pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:18.880000pt;}
.y3d{bottom:19.200000pt;}
.y47{bottom:25.280000pt;}
.y3c{bottom:36.800000pt;}
.y3f{bottom:38.080000pt;}
.y43{bottom:38.400000pt;}
.y46{bottom:38.426667pt;}
.y49{bottom:57.600000pt;}
.y42{bottom:57.920000pt;}
.y45{bottom:57.946667pt;}
.y3a{bottom:99.232000pt;}
.y1d{bottom:105.952000pt;}
.y39{bottom:117.824000pt;}
.y2b{bottom:128.064000pt;}
.y38{bottom:136.066667pt;}
.y1c{bottom:144.066667pt;}
.y2a{bottom:152.706667pt;}
.y37{bottom:154.306667pt;}
.y5f{bottom:154.626667pt;}
.y36{bottom:159.106667pt;}
.y5e{bottom:172.866667pt;}
.y35{bottom:173.186667pt;}
.y5d{bottom:178.946667pt;}
.y1b{bottom:181.826667pt;}
.y29{bottom:190.786667pt;}
.y5c{bottom:191.426667pt;}
.y1a{bottom:206.786667pt;}
.y28{bottom:215.426667pt;}
.y27{bottom:240.093333pt;}
.y19{bottom:244.573333pt;}
.y26{bottom:278.173333pt;}
.y18{bottom:282.653333pt;}
.y34{bottom:296.413333pt;}
.y25{bottom:302.813333pt;}
.y17{bottom:307.293333pt;}
.y33{bottom:321.053333pt;}
.y24{bottom:327.773333pt;}
.y16{bottom:331.933333pt;}
.y32{bottom:345.733333pt;}
.y15{bottom:356.933333pt;}
.y23{bottom:365.573333pt;}
.y31{bottom:383.813333pt;}
.y14{bottom:394.693333pt;}
.y22{bottom:399.493333pt;}
.y4a{bottom:401.733333pt;}
.y5b{bottom:406.853333pt;}
.y13{bottom:419.653333pt;}
.y5a{bottom:431.493333pt;}
.y48{bottom:454.560000pt;}
.y59{bottom:456.160000pt;}
.y12{bottom:457.440000pt;}
.y58{bottom:480.800000pt;}
.y11{bottom:482.400000pt;}
.y57{bottom:505.760000pt;}
.y10{bottom:507.040000pt;}
.y44{bottom:526.560000pt;}
.y56{bottom:530.400000pt;}
.yf{bottom:531.680000pt;}
.y55{bottom:555.040000pt;}
.ye{bottom:565.626667pt;}
.y54{bottom:579.706667pt;}
.yd{bottom:588.666667pt;}
.y41{bottom:598.906667pt;}
.y53{bottom:604.346667pt;}
.yc{bottom:622.586667pt;}
.y52{bottom:628.986667pt;}
.yb{bottom:645.626667pt;}
.y51{bottom:667.066667pt;}
.y3e{bottom:671.266667pt;}
.ya{bottom:683.746667pt;}
.y50{bottom:691.746667pt;}
.y9{bottom:708.386667pt;}
.y4f{bottom:716.386667pt;}
.y3b{bottom:724.066667pt;}
.y8{bottom:733.026667pt;}
.y4e{bottom:754.466667pt;}
.y7{bottom:771.106667pt;}
.y4d{bottom:779.106667pt;}
.y30{bottom:790.653333pt;}
.y6{bottom:795.773333pt;}
.y21{bottom:817.213333pt;}
.y2f{bottom:828.733333pt;}
.y5{bottom:833.853333pt;}
.y20{bottom:855.293333pt;}
.y4{bottom:858.493333pt;}
.y2d{bottom:866.493333pt;}
.y2e{bottom:873.213333pt;}
.y4c{bottom:879.933333pt;}
.y3{bottom:883.133333pt;}
.y1f{bottom:893.413333pt;}
.y2c{bottom:904.613333pt;}
.y1e{bottom:918.053333pt;}
.y2{bottom:921.253333pt;}
.y4b{bottom:924.773333pt;}
.y1{bottom:942.693333pt;}
.h6{height:34.374375pt;}
.he{height:41.112500pt;}
.h12{height:41.456250pt;}
.h4{height:47.737500pt;}
.h8{height:51.200000pt;}
.h3{height:51.837500pt;}
.ha{height:51.840000pt;}
.h10{height:52.192000pt;}
.hc{height:57.787500pt;}
.h5{height:58.563750pt;}
.hb{height:59.340000pt;}
.h9{height:61.920000pt;}
.h7{height:62.812500pt;}
.hf{height:71.360000pt;}
.hd{height:71.712000pt;}
.h2{height:72.862500pt;}
.h1{height:74.820000pt;}
.h11{height:76.016250pt;}
.h0{height:1056.000000pt;}
.w3{width:107.584000pt;}
.w5{width:238.493333pt;}
.w4{width:299.933333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.040000pt;}
.x8{left:26.912000pt;}
.x2{left:96.031988pt;}
.x7{left:100.511988pt;}
.xe{left:101.471988pt;}
.x1{left:152.706655pt;}
.xa{left:204.893333pt;}
.x6{left:288.133321pt;}
.x4{left:324.613309pt;}
.x5{left:330.693321pt;}
.xb{left:505.466667pt;}
.xc{left:555.426642pt;}
.xd{left:561.506655pt;}
.x3{left:710.053321pt;}
}




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