
    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_fa908ba8d8adf572193cf965.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.018000;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_3ec5ba16285004c6e1136c09.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_ce64f1abb244edfc22c14e21.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_767713c2f93089562bd6c77a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_bb6ae38d488a44c360c9f411.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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:ff6;src:url('chunks/assets/font_b32d3f46ce112967e7b73a30.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.018000;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.307200px;}
.ls2{letter-spacing:0.451200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws3{word-spacing:-27.864000px;}
.ws1{word-spacing:-24.706080px;}
.ws2{word-spacing:-18.576000px;}
.ws0{word-spacing:-0.108000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-580.291440px;}
._3{margin-left:-3.201120px;}
._1{margin-left:-2.052000px;}
._5{margin-left:-1.013040px;}
._0{width:1.188000px;}
._6{width:2.202480px;}
._7{width:3.852000px;}
._4{width:11.226960px;}
._2{width:22.980960px;}
.fc3{color:rgb(255,192,0);}
.fc2{color:rgb(192,0,0);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:71.028000px;}
.y4{bottom:85.428000px;}
.y3{bottom:101.988000px;}
.y2{bottom:149.112000px;}
.y1{bottom:181.515000px;}
.y32{bottom:287.130000px;}
.y35{bottom:288.180000px;}
.y23{bottom:300.675000px;}
.y31{bottom:315.930000px;}
.y34{bottom:316.980000px;}
.y22{bottom:323.715000px;}
.y33{bottom:345.780000px;}
.y21{bottom:352.515000px;}
.y44{bottom:478.980000px;}
.y38{bottom:512.820000px;}
.y30{bottom:531.645000px;}
.y37{bottom:545.220000px;}
.yc{bottom:557.355000px;}
.y2f{bottom:560.445000px;}
.y36{bottom:577.620000px;}
.yb{bottom:586.155000px;}
.y2e{bottom:589.245000px;}
.ya{bottom:614.985000px;}
.y43{bottom:739.005000px;}
.y41{bottom:740.490000px;}
.y18{bottom:752.685000px;}
.y1e{bottom:763.920000px;}
.y17{bottom:774.285000px;}
.y1d{bottom:785.520000px;}
.y16{bottom:795.885000px;}
.y1c{bottom:807.120000px;}
.y15{bottom:817.485000px;}
.y14{bottom:839.085000px;}
.y29{bottom:847.260000px;}
.y13{bottom:860.685000px;}
.y28{bottom:876.060000px;}
.y9{bottom:888.225000px;}
.y2d{bottom:895.755000px;}
.y27{bottom:904.860000px;}
.y8{bottom:917.025000px;}
.y2c{bottom:924.555000px;}
.y7{bottom:945.825000px;}
.y2b{bottom:953.355000px;}
.y26{bottom:962.460000px;}
.y6{bottom:974.625000px;}
.y2a{bottom:982.155000px;}
.y25{bottom:991.260000px;}
.y24{bottom:1020.060000px;}
.y3f{bottom:1074.165000px;}
.y42{bottom:1075.320000px;}
.y12{bottom:1168.635000px;}
.yf{bottom:1169.970000px;}
.y40{bottom:1195.560000px;}
.y11{bottom:1197.435000px;}
.ye{bottom:1198.770000px;}
.y10{bottom:1226.235000px;}
.yd{bottom:1227.570000px;}
.y1b{bottom:1351.005000px;}
.y46{bottom:1353.675000px;}
.y3c{bottom:1353.855000px;}
.y3e{bottom:1354.500000px;}
.y1a{bottom:1372.605000px;}
.y45{bottom:1386.075000px;}
.y3b{bottom:1386.255000px;}
.y3d{bottom:1386.900000px;}
.y19{bottom:1394.205000px;}
.y3a{bottom:1505.850000px;}
.y39{bottom:1538.250000px;}
.y20{bottom:1637.430000px;}
.y1f{bottom:1676.310000px;}
.h5{height:39.460320px;}
.h7{height:58.896000px;}
.h4{height:68.908320px;}
.h9{height:76.608000px;}
.h6{height:78.331680px;}
.h3{height:86.400000px;}
.ha{height:86.515200px;}
.h2{height:88.344000px;}
.h8{height:172.800000px;}
.h1{height:1785.750000px;}
.h0{height:1785.780000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:52.847981px;}
.x29{left:65.519981px;}
.x8{left:69.515981px;}
.x34{left:72.899981px;}
.x2b{left:73.979981px;}
.x9{left:79.775981px;}
.x2d{left:84.455981px;}
.x2a{left:85.499981px;}
.x2c{left:88.055981px;}
.x33{left:101.339981px;}
.xa{left:143.675981px;}
.x3{left:220.139981px;}
.x1a{left:232.199981px;}
.x3a{left:235.589981px;}
.x5{left:241.199981px;}
.x4{left:250.199981px;}
.x3d{left:287.849981px;}
.x2{left:295.229981px;}
.x39{left:373.289981px;}
.xd{left:383.789981px;}
.xc{left:392.249981px;}
.xb{left:436.169981px;}
.x3e{left:444.059981px;}
.x1b{left:446.249981px;}
.x2f{left:457.634981px;}
.x2e{left:461.594981px;}
.xf{left:474.014981px;}
.x26{left:478.409981px;}
.x10{left:479.414981px;}
.x12{left:481.934981px;}
.x7{left:484.994981px;}
.x6{left:486.074981px;}
.x13{left:496.514981px;}
.x25{left:498.389981px;}
.xe{left:509.474981px;}
.x11{left:510.914981px;}
.x32{left:523.589981px;}
.x27{left:529.709981px;}
.x30{left:544.034981px;}
.x28{left:546.269981px;}
.x3b{left:697.109981px;}
.x3c{left:700.019981px;}
.x37{left:702.329981px;}
.x14{left:708.659981px;}
.x15{left:710.639981px;}
.x16{left:719.639981px;}
.x38{left:859.604981px;}
.x23{left:864.149981px;}
.x1f{left:876.749981px;}
.x1e{left:879.659981px;}
.x20{left:888.269981px;}
.x22{left:892.949981px;}
.x21{left:900.869981px;}
.x1c{left:924.839981px;}
.x24{left:934.169981px;}
.x17{left:953.384981px;}
.x1d{left:958.859981px;}
.x18{left:976.604981px;}
.x19{left:994.064981px;}
.x36{left:1002.989981px;}
.x35{left:1027.469981px;}
.x31{left:1095.479981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.273067pt;}
.ls2{letter-spacing:0.401067pt;}
.ws3{word-spacing:-24.768000pt;}
.ws1{word-spacing:-21.960960pt;}
.ws2{word-spacing:-16.512000pt;}
.ws0{word-spacing:-0.096000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-515.814613pt;}
._3{margin-left:-2.845440pt;}
._1{margin-left:-1.824000pt;}
._5{margin-left:-0.900480pt;}
._0{width:1.056000pt;}
._6{width:1.957760pt;}
._7{width:3.424000pt;}
._4{width:9.979520pt;}
._2{width:20.427520pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:63.136000pt;}
.y4{bottom:75.936000pt;}
.y3{bottom:90.656000pt;}
.y2{bottom:132.544000pt;}
.y1{bottom:161.346667pt;}
.y32{bottom:255.226667pt;}
.y35{bottom:256.160000pt;}
.y23{bottom:267.266667pt;}
.y31{bottom:280.826667pt;}
.y34{bottom:281.760000pt;}
.y22{bottom:287.746667pt;}
.y33{bottom:307.360000pt;}
.y21{bottom:313.346667pt;}
.y44{bottom:425.760000pt;}
.y38{bottom:455.840000pt;}
.y30{bottom:472.573333pt;}
.y37{bottom:484.640000pt;}
.yc{bottom:495.426667pt;}
.y2f{bottom:498.173333pt;}
.y36{bottom:513.440000pt;}
.yb{bottom:521.026667pt;}
.y2e{bottom:523.773333pt;}
.ya{bottom:546.653333pt;}
.y43{bottom:656.893333pt;}
.y41{bottom:658.213333pt;}
.y18{bottom:669.053333pt;}
.y1e{bottom:679.040000pt;}
.y17{bottom:688.253333pt;}
.y1d{bottom:698.240000pt;}
.y16{bottom:707.453333pt;}
.y1c{bottom:717.440000pt;}
.y15{bottom:726.653333pt;}
.y14{bottom:745.853333pt;}
.y29{bottom:753.120000pt;}
.y13{bottom:765.053333pt;}
.y28{bottom:778.720000pt;}
.y9{bottom:789.533333pt;}
.y2d{bottom:796.226667pt;}
.y27{bottom:804.320000pt;}
.y8{bottom:815.133333pt;}
.y2c{bottom:821.826667pt;}
.y7{bottom:840.733333pt;}
.y2b{bottom:847.426667pt;}
.y26{bottom:855.520000pt;}
.y6{bottom:866.333333pt;}
.y2a{bottom:873.026667pt;}
.y25{bottom:881.120000pt;}
.y24{bottom:906.720000pt;}
.y3f{bottom:954.813333pt;}
.y42{bottom:955.840000pt;}
.y12{bottom:1038.786667pt;}
.yf{bottom:1039.973333pt;}
.y40{bottom:1062.720000pt;}
.y11{bottom:1064.386667pt;}
.ye{bottom:1065.573333pt;}
.y10{bottom:1089.986667pt;}
.yd{bottom:1091.173333pt;}
.y1b{bottom:1200.893333pt;}
.y46{bottom:1203.266667pt;}
.y3c{bottom:1203.426667pt;}
.y3e{bottom:1204.000000pt;}
.y1a{bottom:1220.093333pt;}
.y45{bottom:1232.066667pt;}
.y3b{bottom:1232.226667pt;}
.y3d{bottom:1232.800000pt;}
.y19{bottom:1239.293333pt;}
.y3a{bottom:1338.533333pt;}
.y39{bottom:1367.333333pt;}
.y20{bottom:1455.493333pt;}
.y1f{bottom:1490.053333pt;}
.h5{height:35.075840pt;}
.h7{height:52.352000pt;}
.h4{height:61.251840pt;}
.h9{height:68.096000pt;}
.h6{height:69.628160pt;}
.h3{height:76.800000pt;}
.ha{height:76.902400pt;}
.h2{height:78.528000pt;}
.h8{height:153.600000pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.360000pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:46.975983pt;}
.x29{left:58.239983pt;}
.x8{left:61.791983pt;}
.x34{left:64.799983pt;}
.x2b{left:65.759983pt;}
.x9{left:70.911983pt;}
.x2d{left:75.071983pt;}
.x2a{left:75.999983pt;}
.x2c{left:78.271983pt;}
.x33{left:90.079983pt;}
.xa{left:127.711983pt;}
.x3{left:195.679983pt;}
.x1a{left:206.399983pt;}
.x3a{left:209.413317pt;}
.x5{left:214.399983pt;}
.x4{left:222.399983pt;}
.x3d{left:255.866650pt;}
.x2{left:262.426650pt;}
.x39{left:331.813317pt;}
.xd{left:341.146650pt;}
.xc{left:348.666650pt;}
.xb{left:387.706650pt;}
.x3e{left:394.719983pt;}
.x1b{left:396.666650pt;}
.x2f{left:406.786650pt;}
.x2e{left:410.306650pt;}
.xf{left:421.346650pt;}
.x26{left:425.253317pt;}
.x10{left:426.146650pt;}
.x12{left:428.386650pt;}
.x7{left:431.106650pt;}
.x6{left:432.066650pt;}
.x13{left:441.346650pt;}
.x25{left:443.013317pt;}
.xe{left:452.866650pt;}
.x11{left:454.146650pt;}
.x32{left:465.413317pt;}
.x27{left:470.853317pt;}
.x30{left:483.586650pt;}
.x28{left:485.573317pt;}
.x3b{left:619.653317pt;}
.x3c{left:622.239983pt;}
.x37{left:624.293317pt;}
.x14{left:629.919983pt;}
.x15{left:631.679983pt;}
.x16{left:639.679983pt;}
.x38{left:764.093317pt;}
.x23{left:768.133317pt;}
.x1f{left:779.333317pt;}
.x1e{left:781.919983pt;}
.x20{left:789.573317pt;}
.x22{left:793.733317pt;}
.x21{left:800.773317pt;}
.x1c{left:822.079983pt;}
.x24{left:830.373317pt;}
.x17{left:847.453317pt;}
.x1d{left:852.319983pt;}
.x18{left:868.093317pt;}
.x19{left:883.613317pt;}
.x36{left:891.546650pt;}
.x35{left:913.306650pt;}
.x31{left:973.759983pt;}
}




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