
    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_bb7b26b4c9aea7972de60ae1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_77110a8fabc5be65ffc64805.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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:-30.240004px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.239038px;}
.ls1{letter-spacing:0.265046px;}
.ls0{letter-spacing:0.301429px;}
.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;}
}
.ws0{word-spacing:-19.944749px;}
.ws4{word-spacing:-18.349228px;}
.ws2{word-spacing:-16.554143px;}
.ws1{word-spacing:-15.756383px;}
.ws3{word-spacing:0.000000px;}
._28{margin-left:-2941.795218px;}
._16{margin-left:-2685.683994px;}
._29{margin-left:-1455.400384px;}
._1{margin-left:-1380.065456px;}
._5{margin-left:-1100.314054px;}
._2{margin-left:-501.607463px;}
._15{margin-left:-465.406238px;}
._3{margin-left:-236.509246px;}
._11{margin-left:-4.924194px;}
._b{margin-left:-3.766387px;}
._c{margin-left:-2.464193px;}
._8{margin-left:-1.345246px;}
._0{width:1.722029px;}
._6{width:3.445305px;}
._7{width:4.740827px;}
._10{width:6.691985px;}
._9{width:7.840568px;}
._a{width:9.418943px;}
._20{width:10.555715px;}
._13{width:12.082414px;}
._12{width:14.103240px;}
._19{width:15.390560px;}
._1a{width:16.782309px;}
._23{width:22.559989px;}
._1c{width:24.664538px;}
._1d{width:25.956518px;}
._14{width:29.651704px;}
._f{width:46.742919px;}
._e{width:48.177147px;}
._27{width:111.365623px;}
._26{width:112.479587px;}
._1e{width:131.624512px;}
._1b{width:270.243192px;}
._21{width:377.165808px;}
._22{width:479.663939px;}
._18{width:526.522704px;}
._1f{width:585.611193px;}
._25{width:607.603769px;}
._24{width:644.103497px;}
._4{width:845.455580px;}
._17{width:861.313310px;}
._d{width:1300.454576px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(21,96,130);}
.fs6{font-size:48.241800px;}
.fs5{font-size:56.882250px;}
.fs7{font-size:59.759492px;}
.fs0{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs4{font-size:72.002705px;}
.fs2{font-size:77.763154px;}
.fs1{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.237094px;}
.y8{bottom:3.240006px;}
.y18{bottom:3.241636px;}
.y14{bottom:3.241680px;}
.y25{bottom:3.246177px;}
.y36{bottom:3.600013px;}
.y31{bottom:3.779983px;}
.y1{bottom:74.340088px;}
.y40{bottom:309.420043px;}
.y3f{bottom:334.080093px;}
.y3e{bottom:386.100083px;}
.y3d{bottom:410.760064px;}
.y3c{bottom:462.780052px;}
.y1a{bottom:464.220085px;}
.y3b{bottom:487.440033px;}
.y5{bottom:496.440033px;}
.y26{bottom:496.627954px;}
.y24{bottom:510.661476px;}
.y23{bottom:513.907653px;}
.y4{bottom:515.340088px;}
.y22{bottom:527.945717px;}
.y3a{bottom:539.460091px;}
.y21{bottom:545.225417px;}
.y20{bottom:548.467053px;}
.y1f{bottom:562.509658px;}
.y39{bottom:564.120072px;}
.y1e{bottom:565.746752px;}
.y1d{bottom:579.789358px;}
.y1c{bottom:583.026452px;}
.yf{bottom:598.140060px;}
.y1b{bottom:600.128366px;}
.yd{bottom:601.560036px;}
.yc{bottom:615.600083px;}
.y38{bottom:616.320099px;}
.yb{bottom:618.840088px;}
.y19{bottom:630.903557px;}
.ya{bottom:632.880066px;}
.y9{bottom:636.120072px;}
.y37{bottom:640.980079px;}
.y17{bottom:644.946162px;}
.y7{bottom:649.980079px;}
.y6{bottom:653.220085px;}
.y16{bottom:662.230403px;}
.y15{bottom:665.467497px;}
.y13{bottom:679.500975px;}
.y35{bottom:689.400055px;}
.y34{bottom:693.000068px;}
.y11{bottom:696.785261px;}
.y10{bottom:717.124225px;}
.y33{bottom:717.660049px;}
.y32{bottom:769.680073px;}
.y30{bottom:790.560070px;}
.y2f{bottom:794.340054px;}
.y2e{bottom:846.360077px;}
.y2d{bottom:898.380066px;}
.y2c{bottom:923.040081px;}
.y2b{bottom:975.060070px;}
.y2a{bottom:999.720068px;}
.ye{bottom:1009.620072px;}
.y3{bottom:1040.040064px;}
.y29{bottom:1053.720068px;}
.y28{bottom:1094.940067px;}
.y2{bottom:1107.180073px;}
.y27{bottom:1139.760064px;}
.hb{height:16.559341px;}
.h8{height:16.559966px;}
.h7{height:16.559967px;}
.hd{height:16.568424px;}
.h10{height:18.540012px;}
.hf{height:19.259994px;}
.h9{height:36.275572px;}
.hc{height:43.681621px;}
.h2{height:43.683637px;}
.ha{height:44.936337px;}
.h6{height:44.938411px;}
.h5{height:48.420567px;}
.he{height:49.811405px;}
.h4{height:54.142659px;}
.h3{height:72.009738px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wd{width:8.100013px;}
.wc{width:8.100015px;}
.wb{width:46.080683px;}
.w7{width:55.623263px;}
.w9{width:137.699565px;}
.w4{width:140.399987px;}
.w3{width:142.019989px;}
.w8{width:342.902143px;}
.w6{width:471.231571px;}
.w2{width:477.359974px;}
.wa{width:647.995081px;}
.w5{width:752.032606px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:72.897536px;}
.xa{left:101.880017px;}
.x2{left:106.200002px;}
.x3{left:110.340002px;}
.xf{left:114.299998px;}
.x7{left:126.719999px;}
.x4{left:293.040012px;}
.x11{left:346.319996px;}
.x9{left:353.698571px;}
.x10{left:362.699993px;}
.xc{left:406.972955px;}
.x1{left:437.939999px;}
.xd{left:612.175533px;}
.x5{left:628.379998px;}
.x6{left:630.000000px;}
.xb{left:694.251835px;}
.xe{left:703.794415px;}
.x12{left:799.919975px;}
@media print{
.v1{vertical-align:-26.880004pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.212478pt;}
.ls1{letter-spacing:0.235596pt;}
.ls0{letter-spacing:0.267937pt;}
.ws0{word-spacing:-17.728666pt;}
.ws4{word-spacing:-16.310425pt;}
.ws2{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.005674pt;}
.ws3{word-spacing:0.000000pt;}
._28{margin-left:-2614.929082pt;}
._16{margin-left:-2387.274662pt;}
._29{margin-left:-1293.689230pt;}
._1{margin-left:-1226.724850pt;}
._5{margin-left:-978.056937pt;}
._2{margin-left:-445.873301pt;}
._15{margin-left:-413.694434pt;}
._3{margin-left:-210.230441pt;}
._11{margin-left:-4.377061pt;}
._b{margin-left:-3.347899pt;}
._c{margin-left:-2.190393pt;}
._8{margin-left:-1.195775pt;}
._0{width:1.530692pt;}
._6{width:3.062493pt;}
._7{width:4.214069pt;}
._10{width:5.948431pt;}
._9{width:6.969394pt;}
._a{width:8.372394pt;}
._20{width:9.382857pt;}
._13{width:10.739923pt;}
._12{width:12.536213pt;}
._19{width:13.680498pt;}
._1a{width:14.917608pt;}
._23{width:20.053323pt;}
._1c{width:21.924034pt;}
._1d{width:23.072461pt;}
._14{width:26.357071pt;}
._f{width:41.549261pt;}
._e{width:42.824131pt;}
._27{width:98.991665pt;}
._26{width:99.981855pt;}
._1e{width:116.999566pt;}
._1b{width:240.216171pt;}
._21{width:335.258496pt;}
._22{width:426.367946pt;}
._18{width:468.020182pt;}
._1f{width:520.543282pt;}
._25{width:540.092239pt;}
._24{width:572.536442pt;}
._4{width:751.516071pt;}
._17{width:765.611831pt;}
._d{width:1155.959623pt;}
.fs6{font-size:42.881600pt;}
.fs5{font-size:50.562000pt;}
.fs7{font-size:53.119548pt;}
.fs0{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs4{font-size:64.002404pt;}
.fs2{font-size:69.122804pt;}
.fs1{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:2.877417pt;}
.y8{bottom:2.880005pt;}
.y18{bottom:2.881454pt;}
.y14{bottom:2.881493pt;}
.y25{bottom:2.885491pt;}
.y36{bottom:3.200012pt;}
.y31{bottom:3.359985pt;}
.y1{bottom:66.080079pt;}
.y40{bottom:275.040039pt;}
.y3f{bottom:296.960083pt;}
.y3e{bottom:343.200074pt;}
.y3d{bottom:365.120057pt;}
.y3c{bottom:411.360047pt;}
.y1a{bottom:412.640076pt;}
.y3b{bottom:433.280030pt;}
.y5{bottom:441.280030pt;}
.y26{bottom:441.447070pt;}
.y24{bottom:453.921312pt;}
.y23{bottom:456.806803pt;}
.y4{bottom:458.080079pt;}
.y22{bottom:469.285082pt;}
.y3a{bottom:479.520081pt;}
.y21{bottom:484.644815pt;}
.y20{bottom:487.526269pt;}
.y1f{bottom:500.008585pt;}
.y39{bottom:501.440064pt;}
.y1e{bottom:502.886002pt;}
.y1d{bottom:515.368318pt;}
.y1c{bottom:518.245735pt;}
.yf{bottom:531.680054pt;}
.y1b{bottom:533.447436pt;}
.yd{bottom:534.720032pt;}
.yc{bottom:547.200074pt;}
.y38{bottom:547.840088pt;}
.yb{bottom:550.080079pt;}
.y19{bottom:560.803161pt;}
.ya{bottom:562.560059pt;}
.y9{bottom:565.440064pt;}
.y37{bottom:569.760071pt;}
.y17{bottom:573.285477pt;}
.y7{bottom:577.760071pt;}
.y6{bottom:580.640076pt;}
.y16{bottom:588.649247pt;}
.y15{bottom:591.526664pt;}
.y13{bottom:604.000867pt;}
.y35{bottom:612.800049pt;}
.y34{bottom:616.000061pt;}
.y11{bottom:619.364676pt;}
.y10{bottom:637.443755pt;}
.y33{bottom:637.920044pt;}
.y32{bottom:684.160065pt;}
.y30{bottom:702.720063pt;}
.y2f{bottom:706.080048pt;}
.y2e{bottom:752.320069pt;}
.y2d{bottom:798.560059pt;}
.y2c{bottom:820.480072pt;}
.y2b{bottom:866.720063pt;}
.y2a{bottom:888.640061pt;}
.ye{bottom:897.440064pt;}
.y3{bottom:924.480057pt;}
.y29{bottom:936.640061pt;}
.y28{bottom:973.280060pt;}
.y2{bottom:984.160065pt;}
.y27{bottom:1013.120057pt;}
.hb{height:14.719414pt;}
.h8{height:14.719970pt;}
.h7{height:14.719971pt;}
.hd{height:14.727488pt;}
.h10{height:16.480011pt;}
.hf{height:17.119995pt;}
.h9{height:32.244953pt;}
.hc{height:38.828107pt;}
.h2{height:38.829899pt;}
.ha{height:39.943410pt;}
.h6{height:39.945254pt;}
.h5{height:43.040504pt;}
.he{height:44.276805pt;}
.h4{height:48.126808pt;}
.h3{height:64.008656pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wd{width:7.200012pt;}
.wc{width:7.200013pt;}
.wb{width:40.960607pt;}
.w7{width:49.442900pt;}
.w9{width:122.399614pt;}
.w4{width:124.799988pt;}
.w3{width:126.239990pt;}
.w8{width:304.801905pt;}
.w6{width:418.872508pt;}
.w2{width:424.319977pt;}
.wa{width:575.995627pt;}
.w5{width:668.473428pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:64.797810pt;}
.xa{left:90.560016pt;}
.x2{left:94.400002pt;}
.x3{left:98.080002pt;}
.xf{left:101.599998pt;}
.x7{left:112.639999pt;}
.x4{left:260.480011pt;}
.x11{left:307.839996pt;}
.x9{left:314.398730pt;}
.x10{left:322.399994pt;}
.xc{left:361.753738pt;}
.x1{left:389.279999pt;}
.xd{left:544.156029pt;}
.x5{left:558.559998pt;}
.x6{left:560.000000pt;}
.xb{left:617.112742pt;}
.xe{left:625.595036pt;}
.x12{left:711.039978pt;}
}




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