
    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_712af61c1a3863f9298aeedf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_47c751671d28e5fc88036fd1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920000;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);}
.v1{vertical-align:-19.305468px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:5.976000px;}
.ls0{letter-spacing:12.973896px;}
.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;}
}
.ws4{word-spacing:-15.920064px;}
.ws3{word-spacing:-11.952000px;}
.ws3f{word-spacing:0.000000px;}
.ws11{word-spacing:1.972080px;}
.ws30{word-spacing:2.629440px;}
.ws1f{word-spacing:2.928240px;}
.ws34{word-spacing:3.227040px;}
.ws2f{word-spacing:3.346560px;}
.ws33{word-spacing:3.944160px;}
.ws17{word-spacing:4.183200px;}
.ws35{word-spacing:4.242960px;}
.ws2b{word-spacing:4.362480px;}
.wsa{word-spacing:4.661280px;}
.ws29{word-spacing:4.721040px;}
.ws38{word-spacing:5.378400px;}
.ws15{word-spacing:5.617440px;}
.ws2a{word-spacing:6.334560px;}
.ws0{word-spacing:6.693120px;}
.ws3e{word-spacing:6.721805px;}
.wsc{word-spacing:6.812640px;}
.ws21{word-spacing:6.872400px;}
.ws20{word-spacing:6.932160px;}
.ws26{word-spacing:7.290720px;}
.ws32{word-spacing:8.007840px;}
.ws6{word-spacing:8.724960px;}
.wsd{word-spacing:9.621360px;}
.wsf{word-spacing:10.278720px;}
.ws12{word-spacing:10.577520px;}
.ws31{word-spacing:10.876320px;}
.ws1{word-spacing:10.954008px;}
.ws2d{word-spacing:11.832480px;}
.ws3b{word-spacing:12.131280px;}
.ws9{word-spacing:12.609360px;}
.wse{word-spacing:12.908160px;}
.ws3a{word-spacing:13.206960px;}
.ws2{word-spacing:14.324472px;}
.ws2c{word-spacing:14.641200px;}
.ws19{word-spacing:14.700960px;}
.ws16{word-spacing:14.820480px;}
.ws2e{word-spacing:14.880240px;}
.ws1a{word-spacing:15.657120px;}
.ws27{word-spacing:16.135200px;}
.ws37{word-spacing:16.194960px;}
.ws1d{word-spacing:16.374240px;}
.ws3c{word-spacing:16.434000px;}
.ws24{word-spacing:16.493760px;}
.ws28{word-spacing:16.673040px;}
.ws1e{word-spacing:16.912080px;}
.ws1c{word-spacing:17.868240px;}
.ws14{word-spacing:18.585360px;}
.ws39{word-spacing:18.824400px;}
.wsb{word-spacing:18.884160px;}
.ws5{word-spacing:19.242720px;}
.ws7{word-spacing:19.959840px;}
.ws18{word-spacing:21.095280px;}
.ws36{word-spacing:21.872160px;}
.ws1b{word-spacing:23.306400px;}
.ws3d{word-spacing:23.963760px;}
.ws22{word-spacing:24.680880px;}
.ws8{word-spacing:25.935840px;}
.ws23{word-spacing:27.131040px;}
.ws10{word-spacing:27.310320px;}
.ws25{word-spacing:29.043360px;}
.ws13{word-spacing:31.852080px;}
._0{margin-left:-23.516158px;}
._1{margin-left:-2.408328px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:17.928000px;}
.fs0{font-size:47.808000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:77.688000px;}
.fs2{font-size:101.592000px;}
.y0{bottom:0.000000px;}
.y43{bottom:14.904000px;}
.y42{bottom:29.844000px;}
.y41{bottom:62.712000px;}
.y40{bottom:271.855572px;}
.y24{bottom:271.873500px;}
.y23{bottom:289.801500px;}
.y3f{bottom:290.424498px;}
.y22{bottom:307.729500px;}
.y3e{bottom:308.993424px;}
.y21{bottom:325.657500px;}
.y3d{bottom:327.562350px;}
.y20{bottom:343.585500px;}
.y3c{bottom:346.131276px;}
.y1f{bottom:361.513500px;}
.y3b{bottom:364.700202px;}
.y1e{bottom:379.441500px;}
.y3a{bottom:383.269128px;}
.y1d{bottom:397.369500px;}
.y39{bottom:401.838054px;}
.y1c{bottom:415.297500px;}
.y38{bottom:420.406980px;}
.y1b{bottom:433.225500px;}
.y37{bottom:438.975906px;}
.y1a{bottom:451.153500px;}
.y36{bottom:457.544832px;}
.y19{bottom:469.081500px;}
.y35{bottom:476.113758px;}
.y18{bottom:487.009500px;}
.y34{bottom:494.682684px;}
.y17{bottom:504.937500px;}
.y33{bottom:513.251610px;}
.y16{bottom:522.865500px;}
.y32{bottom:531.820536px;}
.y15{bottom:540.793500px;}
.y31{bottom:550.389462px;}
.y14{bottom:558.721500px;}
.y30{bottom:568.958388px;}
.y13{bottom:576.649500px;}
.y2f{bottom:587.527314px;}
.y12{bottom:594.577500px;}
.y2e{bottom:606.096240px;}
.y11{bottom:612.505500px;}
.y2d{bottom:624.665166px;}
.y10{bottom:630.433500px;}
.y2c{bottom:643.234092px;}
.yf{bottom:648.361500px;}
.y2b{bottom:661.803018px;}
.ye{bottom:666.289500px;}
.y2a{bottom:680.371944px;}
.yd{bottom:684.217500px;}
.y29{bottom:698.940870px;}
.yc{bottom:702.145500px;}
.y28{bottom:717.509796px;}
.yb{bottom:720.073500px;}
.y27{bottom:736.078722px;}
.ya{bottom:738.001500px;}
.y26{bottom:754.647648px;}
.y9{bottom:755.929500px;}
.y25{bottom:773.216574px;}
.y8{bottom:773.857500px;}
.y7{bottom:791.785500px;}
.y5{bottom:850.051500px;}
.y3{bottom:888.894454px;}
.y4{bottom:893.720821px;}
.y2{bottom:911.305500px;}
.y6{bottom:1002.222000px;}
.y1{bottom:1012.897500px;}
.h5{height:13.051584px;}
.h1{height:34.804224px;}
.h4{height:43.505280px;}
.h2{height:56.556864px;}
.h3{height:73.958976px;}
.h0{height:1152.000000px;}
.w0{width:828.000000px;}
.x0{left:0.000000px;}
.x8{left:38.856000px;}
.x7{left:53.796000px;}
.x5{left:224.079000px;}
.x3{left:228.908849px;}
.x2{left:288.967500px;}
.x1{left:305.307000px;}
.x4{left:350.302176px;}
.xa{left:361.560000px;}
.x9{left:433.272000px;}
.x6{left:662.715000px;}
@media print{
.v1{vertical-align:-17.160416pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:5.312000pt;}
.ls0{letter-spacing:11.532352pt;}
.ws4{word-spacing:-14.151168pt;}
.ws3{word-spacing:-10.624000pt;}
.ws3f{word-spacing:0.000000pt;}
.ws11{word-spacing:1.752960pt;}
.ws30{word-spacing:2.337280pt;}
.ws1f{word-spacing:2.602880pt;}
.ws34{word-spacing:2.868480pt;}
.ws2f{word-spacing:2.974720pt;}
.ws33{word-spacing:3.505920pt;}
.ws17{word-spacing:3.718400pt;}
.ws35{word-spacing:3.771520pt;}
.ws2b{word-spacing:3.877760pt;}
.wsa{word-spacing:4.143360pt;}
.ws29{word-spacing:4.196480pt;}
.ws38{word-spacing:4.780800pt;}
.ws15{word-spacing:4.993280pt;}
.ws2a{word-spacing:5.630720pt;}
.ws0{word-spacing:5.949440pt;}
.ws3e{word-spacing:5.974938pt;}
.wsc{word-spacing:6.055680pt;}
.ws21{word-spacing:6.108800pt;}
.ws20{word-spacing:6.161920pt;}
.ws26{word-spacing:6.480640pt;}
.ws32{word-spacing:7.118080pt;}
.ws6{word-spacing:7.755520pt;}
.wsd{word-spacing:8.552320pt;}
.wsf{word-spacing:9.136640pt;}
.ws12{word-spacing:9.402240pt;}
.ws31{word-spacing:9.667840pt;}
.ws1{word-spacing:9.736896pt;}
.ws2d{word-spacing:10.517760pt;}
.ws3b{word-spacing:10.783360pt;}
.ws9{word-spacing:11.208320pt;}
.wse{word-spacing:11.473920pt;}
.ws3a{word-spacing:11.739520pt;}
.ws2{word-spacing:12.732864pt;}
.ws2c{word-spacing:13.014400pt;}
.ws19{word-spacing:13.067520pt;}
.ws16{word-spacing:13.173760pt;}
.ws2e{word-spacing:13.226880pt;}
.ws1a{word-spacing:13.917440pt;}
.ws27{word-spacing:14.342400pt;}
.ws37{word-spacing:14.395520pt;}
.ws1d{word-spacing:14.554880pt;}
.ws3c{word-spacing:14.608000pt;}
.ws24{word-spacing:14.661120pt;}
.ws28{word-spacing:14.820480pt;}
.ws1e{word-spacing:15.032960pt;}
.ws1c{word-spacing:15.882880pt;}
.ws14{word-spacing:16.520320pt;}
.ws39{word-spacing:16.732800pt;}
.wsb{word-spacing:16.785920pt;}
.ws5{word-spacing:17.104640pt;}
.ws7{word-spacing:17.742080pt;}
.ws18{word-spacing:18.751360pt;}
.ws36{word-spacing:19.441920pt;}
.ws1b{word-spacing:20.716800pt;}
.ws3d{word-spacing:21.301120pt;}
.ws22{word-spacing:21.938560pt;}
.ws8{word-spacing:23.054080pt;}
.ws23{word-spacing:24.116480pt;}
.ws10{word-spacing:24.275840pt;}
.ws25{word-spacing:25.816320pt;}
.ws13{word-spacing:28.312960pt;}
._0{margin-left:-20.903251pt;}
._1{margin-left:-2.140736pt;}
.fs4{font-size:15.936000pt;}
.fs0{font-size:42.496000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:69.056000pt;}
.fs2{font-size:90.304000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:13.248000pt;}
.y42{bottom:26.528000pt;}
.y41{bottom:55.744000pt;}
.y40{bottom:241.649397pt;}
.y24{bottom:241.665333pt;}
.y23{bottom:257.601333pt;}
.y3f{bottom:258.155109pt;}
.y22{bottom:273.537333pt;}
.y3e{bottom:274.660821pt;}
.y21{bottom:289.473333pt;}
.y3d{bottom:291.166533pt;}
.y20{bottom:305.409333pt;}
.y3c{bottom:307.672245pt;}
.y1f{bottom:321.345333pt;}
.y3b{bottom:324.177957pt;}
.y1e{bottom:337.281333pt;}
.y3a{bottom:340.683669pt;}
.y1d{bottom:353.217333pt;}
.y39{bottom:357.189381pt;}
.y1c{bottom:369.153333pt;}
.y38{bottom:373.695093pt;}
.y1b{bottom:385.089333pt;}
.y37{bottom:390.200805pt;}
.y1a{bottom:401.025333pt;}
.y36{bottom:406.706517pt;}
.y19{bottom:416.961333pt;}
.y35{bottom:423.212229pt;}
.y18{bottom:432.897333pt;}
.y34{bottom:439.717941pt;}
.y17{bottom:448.833333pt;}
.y33{bottom:456.223653pt;}
.y16{bottom:464.769333pt;}
.y32{bottom:472.729365pt;}
.y15{bottom:480.705333pt;}
.y31{bottom:489.235077pt;}
.y14{bottom:496.641333pt;}
.y30{bottom:505.740789pt;}
.y13{bottom:512.577333pt;}
.y2f{bottom:522.246501pt;}
.y12{bottom:528.513333pt;}
.y2e{bottom:538.752213pt;}
.y11{bottom:544.449333pt;}
.y2d{bottom:555.257925pt;}
.y10{bottom:560.385333pt;}
.y2c{bottom:571.763637pt;}
.yf{bottom:576.321333pt;}
.y2b{bottom:588.269349pt;}
.ye{bottom:592.257333pt;}
.y2a{bottom:604.775061pt;}
.yd{bottom:608.193333pt;}
.y29{bottom:621.280773pt;}
.yc{bottom:624.129333pt;}
.y28{bottom:637.786485pt;}
.yb{bottom:640.065333pt;}
.y27{bottom:654.292197pt;}
.ya{bottom:656.001333pt;}
.y26{bottom:670.797909pt;}
.y9{bottom:671.937333pt;}
.y25{bottom:687.303621pt;}
.y8{bottom:687.873333pt;}
.y7{bottom:703.809333pt;}
.y5{bottom:755.601333pt;}
.y3{bottom:790.128404pt;}
.y4{bottom:794.418508pt;}
.y2{bottom:810.049333pt;}
.y6{bottom:890.864000pt;}
.y1{bottom:900.353333pt;}
.h5{height:11.601408pt;}
.h1{height:30.937088pt;}
.h4{height:38.671360pt;}
.h2{height:50.272768pt;}
.h3{height:65.741312pt;}
.h0{height:1024.000000pt;}
.w0{width:736.000000pt;}
.x0{left:0.000000pt;}
.x8{left:34.538667pt;}
.x7{left:47.818667pt;}
.x5{left:199.181333pt;}
.x3{left:203.474533pt;}
.x2{left:256.860000pt;}
.x1{left:271.384000pt;}
.x4{left:311.379712pt;}
.xa{left:321.386667pt;}
.x9{left:385.130667pt;}
.x6{left:589.080000pt;}
}




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