
    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_7321154cc818c4756c23c516.woff2')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_59a7d30059ddf1ee0b0eddc0.woff2')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_d320734a950c971bd3964a1c.woff2')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;}
.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;}
.ls3{letter-spacing:-0.690000px;}
.ls6{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.750000px;}
.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:-21.810000px;}
.ws5{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:0.000000px;}
._2d{margin-left:-5.696880px;}
._29{margin-left:-4.488480px;}
._8{margin-left:-3.331440px;}
._0{margin-left:-2.140800px;}
._2{margin-left:-1.133280px;}
._1{width:1.158720px;}
._5{width:3.020640px;}
._e{width:4.464720px;}
._f{width:5.632800px;}
._18{width:7.338240px;}
._d{width:8.883360px;}
._1e{width:10.256160px;}
._1d{width:11.444160px;}
._2f{width:12.839280px;}
._b{width:14.236560px;}
._c{width:15.867120px;}
._a{width:17.198880px;}
._9{width:18.314880px;}
._2e{width:19.375200px;}
._24{width:23.046960px;}
._23{width:24.127440px;}
._1f{width:25.562880px;}
._20{width:26.742240px;}
._15{width:28.360080px;}
._16{width:29.568240px;}
._19{width:30.831840px;}
._1a{width:32.368800px;}
._17{width:33.983520px;}
._6{width:35.886240px;}
._7{width:37.065600px;}
._13{width:39.156480px;}
._14{width:40.814400px;}
._32{width:45.292320px;}
._31{width:46.416240px;}
._11{width:47.759040px;}
._10{width:48.767040px;}
._25{width:53.155440px;}
._26{width:54.947280px;}
._30{width:56.188080px;}
._28{width:58.416480px;}
._27{width:59.424000px;}
._2a{width:68.908320px;}
._2b{width:76.265040px;}
._2c{width:77.699520px;}
._12{width:83.014560px;}
._1c{width:90.731520px;}
._1b{width:91.915200px;}
._22{width:96.318480px;}
._21{width:98.078640px;}
._33{width:130.403520px;}
._3{width:138.271200px;}
._4{width:194.400000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs3{font-size:5.760000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y2{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y6{bottom:6.300000px;}
.yc{bottom:11.700000px;}
.y4{bottom:13.140000px;}
.yb{bottom:27.720000px;}
.y5{bottom:36.360000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.180000px;}
.y38{bottom:98.820000px;}
.y37{bottom:123.156000px;}
.y36{bottom:147.276000px;}
.y35{bottom:171.390000px;}
.y34{bottom:195.510000px;}
.y33{bottom:219.630000px;}
.y32{bottom:243.750000px;}
.y31{bottom:268.050000px;}
.y30{bottom:292.170000px;}
.y2f{bottom:316.290000px;}
.y43{bottom:340.050000px;}
.y2e{bottom:340.410000px;}
.y2d{bottom:364.530000px;}
.y2c{bottom:388.695000px;}
.y41{bottom:412.635000px;}
.y2b{bottom:412.995000px;}
.y2a{bottom:437.115000px;}
.y29{bottom:461.235000px;}
.y28{bottom:485.355000px;}
.y27{bottom:509.475000px;}
.y26{bottom:533.235000px;}
.y40{bottom:533.595000px;}
.y25{bottom:557.715000px;}
.y24{bottom:582.015000px;}
.y23{bottom:606.135000px;}
.y42{bottom:629.925000px;}
.y22{bottom:630.285000px;}
.y21{bottom:654.405000px;}
.y20{bottom:678.525000px;}
.y1f{bottom:702.645000px;}
.y1e{bottom:726.945000px;}
.y1d{bottom:751.065000px;}
.y1c{bottom:775.185000px;}
.y1b{bottom:799.305000px;}
.y1a{bottom:823.425000px;}
.y19{bottom:847.545000px;}
.y18{bottom:871.665000px;}
.y17{bottom:896.010000px;}
.y16{bottom:919.770000px;}
.y3f{bottom:920.130000px;}
.y15{bottom:944.250000px;}
.y14{bottom:968.010000px;}
.y3e{bottom:968.370000px;}
.y13{bottom:992.490000px;}
.y12{bottom:1016.610000px;}
.y11{bottom:1040.550000px;}
.y3d{bottom:1040.910000px;}
.y10{bottom:1064.670000px;}
.y3c{bottom:1065.030000px;}
.yf{bottom:1088.790000px;}
.y3b{bottom:1089.150000px;}
.ye{bottom:1112.910000px;}
.y3a{bottom:1113.270000px;}
.yd{bottom:1137.030000px;}
.y39{bottom:1137.390000px;}
.y3{bottom:1180.080000px;}
.y1{bottom:1193.040000px;}
.y8{bottom:1193.760000px;}
.y7{bottom:1209.060000px;}
.h9{height:5.653125px;}
.h2{height:15.840000px;}
.h5{height:23.760000px;}
.ha{height:28.620000px;}
.h4{height:29.700000px;}
.h7{height:58.651172px;}
.hd{height:58.819922px;}
.h8{height:65.010937px;}
.h3{height:66.757500px;}
.h6{height:70.664062px;}
.hc{height:82.676953px;}
.hb{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:121.500000px;}
.w3{width:221.250000px;}
.w4{width:484.275000px;}
.w2{width:518.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x7{left:83.700000px;}
.x5{left:127.655987px;}
.xc{left:136.295987px;}
.x1{left:144.036000px;}
.x4{left:149.616000px;}
.x8{left:179.849987px;}
.x9{left:183.629987px;}
.xd{left:212.969987px;}
.xb{left:268.049987px;}
.xe{left:351.614987px;}
.xa{left:478.364987px;}
.x3{left:593.205000px;}
.x6{left:659.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.613333pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.666667pt;}
.ws4{word-spacing:-19.386667pt;}
.ws5{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:0.000000pt;}
._2d{margin-left:-5.063893pt;}
._29{margin-left:-3.989760pt;}
._8{margin-left:-2.961280pt;}
._0{margin-left:-1.902933pt;}
._2{margin-left:-1.007360pt;}
._1{width:1.029973pt;}
._5{width:2.685013pt;}
._e{width:3.968640pt;}
._f{width:5.006933pt;}
._18{width:6.522880pt;}
._d{width:7.896320pt;}
._1e{width:9.116587pt;}
._1d{width:10.172587pt;}
._2f{width:11.412693pt;}
._b{width:12.654720pt;}
._c{width:14.104107pt;}
._a{width:15.287893pt;}
._9{width:16.279893pt;}
._2e{width:17.222400pt;}
._24{width:20.486187pt;}
._23{width:21.446613pt;}
._1f{width:22.722560pt;}
._20{width:23.770880pt;}
._15{width:25.208960pt;}
._16{width:26.282880pt;}
._19{width:27.406080pt;}
._1a{width:28.772267pt;}
._17{width:30.207573pt;}
._6{width:31.898880pt;}
._7{width:32.947200pt;}
._13{width:34.805760pt;}
._14{width:36.279467pt;}
._32{width:40.259840pt;}
._31{width:41.258880pt;}
._11{width:42.452480pt;}
._10{width:43.348480pt;}
._25{width:47.249280pt;}
._26{width:48.842027pt;}
._30{width:49.944960pt;}
._28{width:51.925760pt;}
._27{width:52.821333pt;}
._2a{width:61.251840pt;}
._2b{width:67.791147pt;}
._2c{width:69.066240pt;}
._12{width:73.790720pt;}
._1c{width:80.650240pt;}
._1b{width:81.702400pt;}
._22{width:85.616427pt;}
._21{width:87.181013pt;}
._33{width:115.914240pt;}
._3{width:122.907733pt;}
._4{width:172.800000pt;}
.fs3{font-size:5.120000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y2{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:5.600000pt;}
.yc{bottom:10.400000pt;}
.y4{bottom:11.680000pt;}
.yb{bottom:24.640000pt;}
.y5{bottom:32.320000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.160000pt;}
.y38{bottom:87.840000pt;}
.y37{bottom:109.472000pt;}
.y36{bottom:130.912000pt;}
.y35{bottom:152.346667pt;}
.y34{bottom:173.786667pt;}
.y33{bottom:195.226667pt;}
.y32{bottom:216.666667pt;}
.y31{bottom:238.266667pt;}
.y30{bottom:259.706667pt;}
.y2f{bottom:281.146667pt;}
.y43{bottom:302.266667pt;}
.y2e{bottom:302.586667pt;}
.y2d{bottom:324.026667pt;}
.y2c{bottom:345.506667pt;}
.y41{bottom:366.786667pt;}
.y2b{bottom:367.106667pt;}
.y2a{bottom:388.546667pt;}
.y29{bottom:409.986667pt;}
.y28{bottom:431.426667pt;}
.y27{bottom:452.866667pt;}
.y26{bottom:473.986667pt;}
.y40{bottom:474.306667pt;}
.y25{bottom:495.746667pt;}
.y24{bottom:517.346667pt;}
.y23{bottom:538.786667pt;}
.y42{bottom:559.933333pt;}
.y22{bottom:560.253333pt;}
.y21{bottom:581.693333pt;}
.y20{bottom:603.133333pt;}
.y1f{bottom:624.573333pt;}
.y1e{bottom:646.173333pt;}
.y1d{bottom:667.613333pt;}
.y1c{bottom:689.053333pt;}
.y1b{bottom:710.493333pt;}
.y1a{bottom:731.933333pt;}
.y19{bottom:753.373333pt;}
.y18{bottom:774.813333pt;}
.y17{bottom:796.453333pt;}
.y16{bottom:817.573333pt;}
.y3f{bottom:817.893333pt;}
.y15{bottom:839.333333pt;}
.y14{bottom:860.453333pt;}
.y3e{bottom:860.773333pt;}
.y13{bottom:882.213333pt;}
.y12{bottom:903.653333pt;}
.y11{bottom:924.933333pt;}
.y3d{bottom:925.253333pt;}
.y10{bottom:946.373333pt;}
.y3c{bottom:946.693333pt;}
.yf{bottom:967.813333pt;}
.y3b{bottom:968.133333pt;}
.ye{bottom:989.253333pt;}
.y3a{bottom:989.573333pt;}
.yd{bottom:1010.693333pt;}
.y39{bottom:1011.013333pt;}
.y3{bottom:1048.960000pt;}
.y1{bottom:1060.480000pt;}
.y8{bottom:1061.120000pt;}
.y7{bottom:1074.720000pt;}
.h9{height:5.025000pt;}
.h2{height:14.080000pt;}
.h5{height:21.120000pt;}
.ha{height:25.440000pt;}
.h4{height:26.400000pt;}
.h7{height:52.134375pt;}
.hd{height:52.284375pt;}
.h8{height:57.787500pt;}
.h3{height:59.340000pt;}
.h6{height:62.812500pt;}
.hc{height:73.490625pt;}
.hb{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:108.000000pt;}
.w3{width:196.666667pt;}
.w4{width:430.466667pt;}
.w2{width:460.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x7{left:74.400000pt;}
.x5{left:113.471988pt;}
.xc{left:121.151988pt;}
.x1{left:128.032000pt;}
.x4{left:132.992000pt;}
.x8{left:159.866655pt;}
.x9{left:163.226655pt;}
.xd{left:189.306655pt;}
.xb{left:238.266655pt;}
.xe{left:312.546655pt;}
.xa{left:425.213322pt;}
.x3{left:527.293333pt;}
.x6{left:586.533333pt;}
}




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