
    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_65b8699b8fdcabe4fbd9f60c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_b171e783acb315a5e0906ebf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_e4ec9cacf4273987a98152fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_b42fd48ca0793520deb8d252.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.132324;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_ba0fa92c75e2214ae915f2ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.140625;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;}
.ls7{letter-spacing:-1.188000px;}
.ls4{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.108000px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:81.252000px;}
.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;}
}
.ws3{word-spacing:-32.400000px;}
.ws2{word-spacing:-32.328000px;}
.ws1{word-spacing:-32.256000px;}
.ws0{word-spacing:-12.204000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-80.544000px;}
._9{margin-left:-5.848800px;}
._8{margin-left:-4.636800px;}
._d{margin-left:-3.310080px;}
._a{margin-left:-2.133840px;}
._0{margin-left:-1.026000px;}
._1{width:1.326000px;}
._4{width:2.735520px;}
._f{width:3.822720px;}
._5{width:5.829120px;}
._6{width:6.927600px;}
._12{width:8.102880px;}
._b{width:13.314240px;}
._c{width:14.884320px;}
._e{width:16.030080px;}
._7{width:18.248400px;}
._11{width:22.786560px;}
._10{width:24.125520px;}
._13{width:26.130960px;}
._14{width:27.159840px;}
._2{width:81.300000px;}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(194,22,49);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.594000px;}
.y8{bottom:3.600000px;}
.yd{bottom:16.740000px;}
.y16{bottom:38.376000px;}
.y12{bottom:48.600000px;}
.y13{bottom:49.140000px;}
.y10{bottom:49.860000px;}
.y14{bottom:50.220000px;}
.y11{bottom:52.200000px;}
.y15{bottom:53.100000px;}
.y5{bottom:78.876000px;}
.yf{bottom:79.956000px;}
.ye{bottom:107.454000px;}
.y6{bottom:108.534000px;}
.yc{bottom:112.536000px;}
.yb{bottom:130.536000px;}
.y9{bottom:148.536000px;}
.y7{bottom:166.530000px;}
.y4{bottom:216.750000px;}
.y38{bottom:252.570000px;}
.y28{bottom:253.290000px;}
.y27{bottom:275.475000px;}
.y37{bottom:282.495000px;}
.y26{bottom:297.435000px;}
.y25{bottom:334.335000px;}
.y24{bottom:356.475000px;}
.y23{bottom:378.615000px;}
.y22{bottom:400.575000px;}
.y21{bottom:422.715000px;}
.y20{bottom:444.675000px;}
.y1f{bottom:466.635000px;}
.y1e{bottom:488.775000px;}
.y1d{bottom:510.735000px;}
.y1c{bottom:529.995000px;}
.y1b{bottom:565.485000px;}
.y1a{bottom:578.445000px;}
.y36{bottom:780.945000px;}
.y35{bottom:817.845000px;}
.y34{bottom:840.210000px;}
.y33{bottom:862.170000px;}
.y32{bottom:899.070000px;}
.y31{bottom:921.210000px;}
.y30{bottom:943.350000px;}
.y2f{bottom:965.310000px;}
.y2e{bottom:1002.210000px;}
.y2d{bottom:1024.350000px;}
.y19{bottom:1040.190000px;}
.y2c{bottom:1046.490000px;}
.y2b{bottom:1068.450000px;}
.y18{bottom:1071.690000px;}
.y2a{bottom:1090.410000px;}
.y17{bottom:1103.010000px;}
.y29{bottom:1112.550000px;}
.y3{bottom:1131.660000px;}
.y2{bottom:1151.820000px;}
.y1{bottom:1167.480000px;}
.h5{height:2.960186px;}
.h6{height:18.000000px;}
.h8{height:33.660000px;}
.h3{height:50.229844px;}
.hf{height:50.308594px;}
.hd{height:53.709961px;}
.h7{height:55.291992px;}
.hc{height:60.288750px;}
.he{height:61.711875px;}
.h2{height:65.884219px;}
.ha{height:68.084282px;}
.hb{height:98.296875px;}
.h9{height:107.460000px;}
.h4{height:108.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:38.340000px;}
.wc{width:42.480000px;}
.w8{width:42.660000px;}
.w7{width:42.696000px;}
.wb{width:46.836000px;}
.wa{width:46.980000px;}
.w9{width:50.940000px;}
.w4{width:273.270000px;}
.w3{width:347.610000px;}
.w5{width:434.625000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:22.500000px;}
.xa{left:26.280000px;}
.xc{left:32.610000px;}
.xe{left:33.840000px;}
.x12{left:38.340000px;}
.x10{left:39.960000px;}
.x2{left:106.415987px;}
.x3{left:108.576000px;}
.x5{left:143.496000px;}
.x17{left:160.409987px;}
.x16{left:218.729987px;}
.x6{left:257.439000px;}
.x8{left:316.515000px;}
.x19{left:330.194987px;}
.x7{left:458.355000px;}
.x9{left:459.435000px;}
.xb{left:497.775000px;}
.xd{left:540.465000px;}
.xf{left:583.125000px;}
.x11{left:634.065000px;}
.x18{left:636.044987px;}
.x13{left:681.045000px;}
.x14{left:727.890000px;}
.x15{left:760.109987px;}
.x1{left:808.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.056000pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:72.224000pt;}
.ws3{word-spacing:-28.800000pt;}
.ws2{word-spacing:-28.736000pt;}
.ws1{word-spacing:-28.672000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-71.594667pt;}
._9{margin-left:-5.198933pt;}
._8{margin-left:-4.121600pt;}
._d{margin-left:-2.942293pt;}
._a{margin-left:-1.896747pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.178667pt;}
._4{width:2.431573pt;}
._f{width:3.397973pt;}
._5{width:5.181440pt;}
._6{width:6.157867pt;}
._12{width:7.202560pt;}
._b{width:11.834880pt;}
._c{width:13.230507pt;}
._e{width:14.248960pt;}
._7{width:16.220800pt;}
._11{width:20.254720pt;}
._10{width:21.444907pt;}
._13{width:23.227520pt;}
._14{width:24.142080pt;}
._2{width:72.266667pt;}
.fs1{font-size:2.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.194667pt;}
.y8{bottom:3.200000pt;}
.yd{bottom:14.880000pt;}
.y16{bottom:34.112000pt;}
.y12{bottom:43.200000pt;}
.y13{bottom:43.680000pt;}
.y10{bottom:44.320000pt;}
.y14{bottom:44.640000pt;}
.y11{bottom:46.400000pt;}
.y15{bottom:47.200000pt;}
.y5{bottom:70.112000pt;}
.yf{bottom:71.072000pt;}
.ye{bottom:95.514667pt;}
.y6{bottom:96.474667pt;}
.yc{bottom:100.032000pt;}
.yb{bottom:116.032000pt;}
.y9{bottom:132.032000pt;}
.y7{bottom:148.026667pt;}
.y4{bottom:192.666667pt;}
.y38{bottom:224.506667pt;}
.y28{bottom:225.146667pt;}
.y27{bottom:244.866667pt;}
.y37{bottom:251.106667pt;}
.y26{bottom:264.386667pt;}
.y25{bottom:297.186667pt;}
.y24{bottom:316.866667pt;}
.y23{bottom:336.546667pt;}
.y22{bottom:356.066667pt;}
.y21{bottom:375.746667pt;}
.y20{bottom:395.266667pt;}
.y1f{bottom:414.786667pt;}
.y1e{bottom:434.466667pt;}
.y1d{bottom:453.986667pt;}
.y1c{bottom:471.106667pt;}
.y1b{bottom:502.653333pt;}
.y1a{bottom:514.173333pt;}
.y36{bottom:694.173333pt;}
.y35{bottom:726.973333pt;}
.y34{bottom:746.853333pt;}
.y33{bottom:766.373333pt;}
.y32{bottom:799.173333pt;}
.y31{bottom:818.853333pt;}
.y30{bottom:838.533333pt;}
.y2f{bottom:858.053333pt;}
.y2e{bottom:890.853333pt;}
.y2d{bottom:910.533333pt;}
.y19{bottom:924.613333pt;}
.y2c{bottom:930.213333pt;}
.y2b{bottom:949.733333pt;}
.y18{bottom:952.613333pt;}
.y2a{bottom:969.253333pt;}
.y17{bottom:980.453333pt;}
.y29{bottom:988.933333pt;}
.y3{bottom:1005.920000pt;}
.y2{bottom:1023.840000pt;}
.y1{bottom:1037.760000pt;}
.h5{height:2.631277pt;}
.h6{height:16.000000pt;}
.h8{height:29.920000pt;}
.h3{height:44.648750pt;}
.hf{height:44.718750pt;}
.hd{height:47.742188pt;}
.h7{height:49.148438pt;}
.hc{height:53.590000pt;}
.he{height:54.855000pt;}
.h2{height:58.563750pt;}
.ha{height:60.519362pt;}
.hb{height:87.375000pt;}
.h9{height:95.520000pt;}
.h4{height:96.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:34.080000pt;}
.wc{width:37.760000pt;}
.w8{width:37.920000pt;}
.w7{width:37.952000pt;}
.wb{width:41.632000pt;}
.wa{width:41.760000pt;}
.w9{width:45.280000pt;}
.w4{width:242.906667pt;}
.w3{width:308.986667pt;}
.w5{width:386.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:20.000000pt;}
.xa{left:23.360000pt;}
.xc{left:28.986667pt;}
.xe{left:30.080000pt;}
.x12{left:34.080000pt;}
.x10{left:35.520000pt;}
.x2{left:94.591988pt;}
.x3{left:96.512000pt;}
.x5{left:127.552000pt;}
.x17{left:142.586655pt;}
.x16{left:194.426655pt;}
.x6{left:228.834667pt;}
.x8{left:281.346667pt;}
.x19{left:293.506655pt;}
.x7{left:407.426667pt;}
.x9{left:408.386667pt;}
.xb{left:442.466667pt;}
.xd{left:480.413333pt;}
.xf{left:518.333333pt;}
.x11{left:563.613333pt;}
.x18{left:565.373322pt;}
.x13{left:605.373333pt;}
.x14{left:647.013333pt;}
.x15{left:675.653322pt;}
.x1{left:718.693322pt;}
}




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