
    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_b701fda05504e47f22901159.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_764830b1da6844cc4f59d83a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_edc42112b051b400b442686c.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;}
.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;}
.ls1c{letter-spacing:-1.320000px;}
.ls13{letter-spacing:-1.122000px;}
.ls14{letter-spacing:-1.056000px;}
.ls1a{letter-spacing:-0.990000px;}
.ls11{letter-spacing:-0.858000px;}
.lsf{letter-spacing:-0.726000px;}
.ls1{letter-spacing:-0.672000px;}
.lse{letter-spacing:-0.594000px;}
.ls10{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.396000px;}
.ls12{letter-spacing:-0.330000px;}
.ls1b{letter-spacing:-0.264000px;}
.lsc{letter-spacing:-0.198000px;}
.ls17{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.066000px;}
.ls16{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.132000px;}
.lsa{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.396000px;}
.ls19{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.858000px;}
.ls9{letter-spacing:0.924000px;}
.ls6{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.650000px;}
.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;}
}
.ws11{word-spacing:-23.904000px;}
.ws3{word-spacing:-17.490000px;}
.wsb{word-spacing:-17.358000px;}
.ws27{word-spacing:-17.160000px;}
.ws4{word-spacing:-16.896000px;}
.wsd{word-spacing:-16.698000px;}
.ws2{word-spacing:-16.500000px;}
.ws7{word-spacing:-16.434000px;}
.wse{word-spacing:-16.038000px;}
.wsf{word-spacing:-15.906000px;}
.ws5{word-spacing:-15.642000px;}
.ws6{word-spacing:-15.378000px;}
.ws28{word-spacing:-15.180000px;}
.ws10{word-spacing:-12.240000px;}
.ws1{word-spacing:-7.056000px;}
.ws15{word-spacing:-0.858000px;}
.ws21{word-spacing:-0.792000px;}
.ws12{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.528000px;}
.ws13{word-spacing:-0.462000px;}
.ws1a{word-spacing:-0.396000px;}
.ws1b{word-spacing:-0.330000px;}
.ws26{word-spacing:-0.264000px;}
.ws18{word-spacing:-0.198000px;}
.ws19{word-spacing:-0.132000px;}
.ws0{word-spacing:0.000000px;}
.ws2a{word-spacing:0.132000px;}
.ws1f{word-spacing:0.198000px;}
.ws20{word-spacing:0.264000px;}
.ws24{word-spacing:0.396000px;}
.ws2c{word-spacing:0.528000px;}
.ws1d{word-spacing:0.660000px;}
.ws22{word-spacing:0.726000px;}
.ws1c{word-spacing:0.792000px;}
.ws2b{word-spacing:0.990000px;}
.ws14{word-spacing:1.254000px;}
.wsc{word-spacing:1.386000px;}
.ws17{word-spacing:1.452000px;}
.ws16{word-spacing:1.518000px;}
.ws23{word-spacing:1.650000px;}
.wsa{word-spacing:3.229500px;}
.ws9{word-spacing:3.327000px;}
.ws8{word-spacing:3.366000px;}
.ws25{word-spacing:3.630000px;}
.ws29{word-spacing:35.712000px;}
._5{margin-left:-9.174000px;}
._6{margin-left:-7.524000px;}
._4{margin-left:-6.402000px;}
._2{margin-left:-4.488000px;}
._0{margin-left:-2.706000px;}
._1{margin-left:-1.056000px;}
._3{width:1.584000px;}
._7{width:47.904000px;}
._8{width:1110.192000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:49.500000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:50.235000px;}
.y24{bottom:67.477500px;}
.y23{bottom:84.720000px;}
.y22{bottom:101.962500px;}
.y21{bottom:119.205000px;}
.y20{bottom:136.447500px;}
.y1f{bottom:153.690000px;}
.y1e{bottom:170.932500px;}
.y1d{bottom:188.175000px;}
.y1c{bottom:205.417500px;}
.y1b{bottom:222.832500px;}
.y1a{bottom:240.075000px;}
.y19{bottom:257.317500px;}
.y18{bottom:274.560000px;}
.y17{bottom:291.802500px;}
.y16{bottom:309.045000px;}
.y15{bottom:326.287500px;}
.y14{bottom:343.530000px;}
.y13{bottom:360.772500px;}
.y12{bottom:378.015000px;}
.y11{bottom:395.257500px;}
.y10{bottom:412.500000px;}
.yf{bottom:429.742500px;}
.ye{bottom:446.985000px;}
.yd{bottom:464.227500px;}
.yc{bottom:481.470000px;}
.yb{bottom:498.712500px;}
.ya{bottom:515.955000px;}
.y9{bottom:533.197500px;}
.y8{bottom:550.440000px;}
.y7{bottom:567.682500px;}
.y6{bottom:584.925000px;}
.y5{bottom:602.167500px;}
.y4{bottom:619.410000px;}
.y31{bottom:645.688500px;}
.y30{bottom:680.190000px;}
.y2f{bottom:697.432500px;}
.y2e{bottom:714.675000px;}
.y2d{bottom:731.917500px;}
.y2c{bottom:749.160000px;}
.y2{bottom:763.605000px;}
.y2b{bottom:766.402500px;}
.y2a{bottom:783.645000px;}
.y29{bottom:800.887500px;}
.y1{bottom:811.605000px;}
.y27{bottom:817.605000px;}
.y28{bottom:818.130000px;}
.y26{bottom:859.605000px;}
.y3{bottom:922.500000px;}
.h2{height:47.085938px;}
.h4{height:51.216000px;}
.h3{height:70.422000px;}
.h1{height:102.432000px;}
.h0{height:891.000000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x3{left:6.000000px;}
.x4{left:76.200000px;}
.x7{left:77.415000px;}
.x5{left:93.442500px;}
.x2{left:247.944000px;}
.x1{left:269.760000px;}
.x6{left:390.180000px;}
.x8{left:496.152000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.173333pt;}
.ls13{letter-spacing:-0.997333pt;}
.ls14{letter-spacing:-0.938667pt;}
.ls1a{letter-spacing:-0.880000pt;}
.ls11{letter-spacing:-0.762667pt;}
.lsf{letter-spacing:-0.645333pt;}
.ls1{letter-spacing:-0.597333pt;}
.lse{letter-spacing:-0.528000pt;}
.ls10{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.352000pt;}
.ls12{letter-spacing:-0.293333pt;}
.ls1b{letter-spacing:-0.234667pt;}
.lsc{letter-spacing:-0.176000pt;}
.ls17{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.058667pt;}
.ls16{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.117333pt;}
.lsa{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.352000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.762667pt;}
.ls9{letter-spacing:0.821333pt;}
.ls6{letter-spacing:0.880000pt;}
.lsb{letter-spacing:1.466667pt;}
.ws11{word-spacing:-21.248000pt;}
.ws3{word-spacing:-15.546667pt;}
.wsb{word-spacing:-15.429333pt;}
.ws27{word-spacing:-15.253333pt;}
.ws4{word-spacing:-15.018667pt;}
.wsd{word-spacing:-14.842667pt;}
.ws2{word-spacing:-14.666667pt;}
.ws7{word-spacing:-14.608000pt;}
.wse{word-spacing:-14.256000pt;}
.wsf{word-spacing:-14.138667pt;}
.ws5{word-spacing:-13.904000pt;}
.ws6{word-spacing:-13.669333pt;}
.ws28{word-spacing:-13.493333pt;}
.ws10{word-spacing:-10.880000pt;}
.ws1{word-spacing:-6.272000pt;}
.ws15{word-spacing:-0.762667pt;}
.ws21{word-spacing:-0.704000pt;}
.ws12{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.469333pt;}
.ws13{word-spacing:-0.410667pt;}
.ws1a{word-spacing:-0.352000pt;}
.ws1b{word-spacing:-0.293333pt;}
.ws26{word-spacing:-0.234667pt;}
.ws18{word-spacing:-0.176000pt;}
.ws19{word-spacing:-0.117333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.117333pt;}
.ws1f{word-spacing:0.176000pt;}
.ws20{word-spacing:0.234667pt;}
.ws24{word-spacing:0.352000pt;}
.ws2c{word-spacing:0.469333pt;}
.ws1d{word-spacing:0.586667pt;}
.ws22{word-spacing:0.645333pt;}
.ws1c{word-spacing:0.704000pt;}
.ws2b{word-spacing:0.880000pt;}
.ws14{word-spacing:1.114667pt;}
.wsc{word-spacing:1.232000pt;}
.ws17{word-spacing:1.290667pt;}
.ws16{word-spacing:1.349333pt;}
.ws23{word-spacing:1.466667pt;}
.wsa{word-spacing:2.870667pt;}
.ws9{word-spacing:2.957333pt;}
.ws8{word-spacing:2.992000pt;}
.ws25{word-spacing:3.226667pt;}
.ws29{word-spacing:31.744000pt;}
._5{margin-left:-8.154667pt;}
._6{margin-left:-6.688000pt;}
._4{margin-left:-5.690667pt;}
._2{margin-left:-3.989333pt;}
._0{margin-left:-2.405333pt;}
._1{margin-left:-0.938667pt;}
._3{width:1.408000pt;}
._7{width:42.581333pt;}
._8{width:986.837333pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:44.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:44.653333pt;}
.y24{bottom:59.980000pt;}
.y23{bottom:75.306667pt;}
.y22{bottom:90.633333pt;}
.y21{bottom:105.960000pt;}
.y20{bottom:121.286667pt;}
.y1f{bottom:136.613333pt;}
.y1e{bottom:151.940000pt;}
.y1d{bottom:167.266667pt;}
.y1c{bottom:182.593333pt;}
.y1b{bottom:198.073333pt;}
.y1a{bottom:213.400000pt;}
.y19{bottom:228.726667pt;}
.y18{bottom:244.053333pt;}
.y17{bottom:259.380000pt;}
.y16{bottom:274.706667pt;}
.y15{bottom:290.033333pt;}
.y14{bottom:305.360000pt;}
.y13{bottom:320.686667pt;}
.y12{bottom:336.013333pt;}
.y11{bottom:351.340000pt;}
.y10{bottom:366.666667pt;}
.yf{bottom:381.993333pt;}
.ye{bottom:397.320000pt;}
.yd{bottom:412.646667pt;}
.yc{bottom:427.973333pt;}
.yb{bottom:443.300000pt;}
.ya{bottom:458.626667pt;}
.y9{bottom:473.953333pt;}
.y8{bottom:489.280000pt;}
.y7{bottom:504.606667pt;}
.y6{bottom:519.933333pt;}
.y5{bottom:535.260000pt;}
.y4{bottom:550.586667pt;}
.y31{bottom:573.945333pt;}
.y30{bottom:604.613333pt;}
.y2f{bottom:619.940000pt;}
.y2e{bottom:635.266667pt;}
.y2d{bottom:650.593333pt;}
.y2c{bottom:665.920000pt;}
.y2{bottom:678.760000pt;}
.y2b{bottom:681.246667pt;}
.y2a{bottom:696.573333pt;}
.y29{bottom:711.900000pt;}
.y1{bottom:721.426667pt;}
.y27{bottom:726.760000pt;}
.y28{bottom:727.226667pt;}
.y26{bottom:764.093333pt;}
.y3{bottom:820.000000pt;}
.h2{height:41.854167pt;}
.h4{height:45.525333pt;}
.h3{height:62.597333pt;}
.h1{height:91.050667pt;}
.h0{height:792.000000pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x3{left:5.333333pt;}
.x4{left:67.733333pt;}
.x7{left:68.813333pt;}
.x5{left:83.060000pt;}
.x2{left:220.394667pt;}
.x1{left:239.786667pt;}
.x6{left:346.826667pt;}
.x8{left:441.024000pt;}
}




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