
    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_58e044733f43531a4c2e18b7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_d678614faaa3ed8673f854f0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.077148;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_fcc36cd06202e8931af11ad6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.987000;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_f642460b6ff22db332e630ec.woff')format("woff");}.ff4{font-family:ff4;line-height:1.085000;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_862e71a39f2f8469516c9098.woff')format("woff");}.ff5{font-family:ff5;line-height:1.067000;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_030bf9b1c9647f625fbf363d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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:ff7;src:url('chunks/assets/font_cc623759a1fe1c017db541b1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.991000;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:ff8;src:url('chunks/assets/font_7b6c866cd31e3802a727eb51.woff')format("woff");}.ff8{font-family:ff8;line-height:1.081543;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.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;}
.v1{vertical-align:4.501757px;}
.ls0{letter-spacing:0.000000px;}
.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:-20.356490px;}
.ws5{word-spacing:-20.011446px;}
.ws0{word-spacing:-19.961418px;}
.ws2{word-spacing:-19.087192px;}
.ws4{word-spacing:-16.602255px;}
.ws1{word-spacing:-12.451660px;}
.ws6{word-spacing:-11.068153px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-1745.832244px;}
._a{margin-left:-7.983476px;}
._9{margin-left:-5.006424px;}
._2{margin-left:-3.961773px;}
._4{margin-left:-2.866170px;}
._3{margin-left:-1.530628px;}
._5{width:1.017813px;}
._0{width:28.075689px;}
._1{width:46.349364px;}
._6{width:281.573160px;}
._7{width:330.720150px;}
.fc3{color:transparent;}
.fc2{color:rgb(208,163,0);}
.fc1{color:rgb(55,160,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.018016px;}
.fs3{font-size:54.020219px;}
.fs2{font-size:54.020272px;}
.fsa{font-size:54.020354px;}
.fsb{font-size:65.994864px;}
.fs7{font-size:72.027138px;}
.fs0{font-size:76.843953px;}
.fs8{font-size:84.001650px;}
.fs4{font-size:90.033923px;}
.fs9{font-size:96.021179px;}
.fs6{font-size:102.008434px;}
.fs1{font-size:180.067845px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y38{bottom:3.043805px;}
.y14{bottom:3.300602px;}
.y8{bottom:3.558544px;}
.yc{bottom:3.661884px;}
.y37{bottom:19.049810px;}
.y13{bottom:19.306607px;}
.yb{bottom:21.668623px;}
.y3b{bottom:24.159623px;}
.y36{bottom:35.055815px;}
.y12{bottom:35.312612px;}
.ya{bottom:39.675363px;}
.y3a{bottom:42.166408px;}
.y35{bottom:51.061821px;}
.y11{bottom:51.318618px;}
.y39{bottom:60.173193px;}
.y34{bottom:67.067826px;}
.y10{bottom:67.324623px;}
.y9{bottom:79.695017px;}
.y33{bottom:83.073832px;}
.yf{bottom:83.330629px;}
.y32{bottom:99.079837px;}
.y7{bottom:137.295015px;}
.y31{bottom:174.015013px;}
.ye{bottom:192.015013px;}
.yd{bottom:296.278570px;}
.y3c{bottom:331.061245px;}
.y18{bottom:356.870872px;}
.y17{bottom:381.630201px;}
.y16{bottom:406.389530px;}
.y27{bottom:523.937068px;}
.y26{bottom:548.696396px;}
.y25{bottom:573.455725px;}
.y24{bottom:598.215054px;}
.y28{bottom:599.340486px;}
.y1a{bottom:637.904930px;}
.y30{bottom:724.145402px;}
.y2f{bottom:748.904730px;}
.y20{bottom:768.015170px;}
.y2e{bottom:773.664059px;}
.y1f{bottom:792.774499px;}
.y2d{bottom:798.423388px;}
.y1e{bottom:817.533828px;}
.y2c{bottom:823.182716px;}
.y23{bottom:839.142059px;}
.y1d{bottom:842.293157px;}
.y2b{bottom:847.942045px;}
.y22{bottom:863.901387px;}
.y1c{bottom:867.052485px;}
.y2a{bottom:872.701374px;}
.y21{bottom:888.660716px;}
.y1b{bottom:891.811814px;}
.y29{bottom:897.460703px;}
.y19{bottom:933.865081px;}
.y15{bottom:977.418991px;}
.y5{bottom:1038.500335px;}
.y4{bottom:1064.385087px;}
.y3{bottom:1090.269840px;}
.y2{bottom:1116.154593px;}
.y6{bottom:1172.287909px;}
.h6{height:16.199999px;}
.hc{height:43.024143px;}
.h13{height:43.888467px;}
.h9{height:48.402116px;}
.h14{height:48.402237px;}
.h7{height:49.374529px;}
.h8{height:52.199998px;}
.h3{height:58.871173px;}
.h17{height:59.131399px;}
.h15{height:60.319306px;}
.h16{height:62.695121px;}
.h11{height:62.953407px;}
.h4{height:64.311785px;}
.he{height:64.536316px;}
.hf{height:81.279265px;}
.ha{height:82.291005px;}
.hd{height:84.258967px;}
.h10{height:87.763357px;}
.hb{height:94.679996px;}
.h12{height:110.159995px;}
.h5{height:148.736040px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w4{width:368.639985px;}
.w5{width:448.199981px;}
.w3{width:609.119975px;}
.w2{width:656.279973px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:25.199999px;}
.x6{left:27.765479px;}
.x7{left:66.575026px;}
.x9{left:81.741870px;}
.xf{left:145.487327px;}
.x10{left:161.981823px;}
.x1{left:192.538072px;}
.xb{left:234.037471px;}
.x2{left:238.523488px;}
.x11{left:250.538627px;}
.x12{left:267.033123px;}
.xa{left:313.415819px;}
.x4{left:495.505175px;}
.x5{left:498.239979px;}
.x8{left:530.073435px;}
.xc{left:549.615931px;}
.xd{left:586.218242px;}
.xe{left:616.833293px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.001561pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-18.094658pt;}
.ws5{word-spacing:-17.787952pt;}
.ws0{word-spacing:-17.743483pt;}
.ws2{word-spacing:-16.966393pt;}
.ws4{word-spacing:-14.757560pt;}
.ws1{word-spacing:-11.068143pt;}
.ws6{word-spacing:-9.838358pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-1551.850884pt;}
._a{margin-left:-7.096424pt;}
._9{margin-left:-4.450154pt;}
._2{margin-left:-3.521576pt;}
._4{margin-left:-2.547706pt;}
._3{margin-left:-1.360559pt;}
._5{width:0.904723pt;}
._0{width:24.956168pt;}
._1{width:41.199434pt;}
._6{width:250.287254pt;}
._7{width:293.973466pt;}
.fs5{font-size:42.682681pt;}
.fs3{font-size:48.017972pt;}
.fs2{font-size:48.018020pt;}
.fsa{font-size:48.018092pt;}
.fsb{font-size:58.662102pt;}
.fs7{font-size:64.024123pt;}
.fs0{font-size:68.305736pt;}
.fs8{font-size:74.668133pt;}
.fs4{font-size:80.030153pt;}
.fs9{font-size:85.352159pt;}
.fs6{font-size:90.674164pt;}
.fs1{font-size:160.060307pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y38{bottom:2.705604pt;}
.y14{bottom:2.933868pt;}
.y8{bottom:3.163151pt;}
.yc{bottom:3.255008pt;}
.y37{bottom:16.933164pt;}
.y13{bottom:17.161428pt;}
.yb{bottom:19.260999pt;}
.y3b{bottom:21.475221pt;}
.y36{bottom:31.160725pt;}
.y12{bottom:31.388989pt;}
.ya{bottom:35.266989pt;}
.y3a{bottom:37.481252pt;}
.y35{bottom:45.388285pt;}
.y11{bottom:45.616549pt;}
.y39{bottom:53.487282pt;}
.y34{bottom:59.615846pt;}
.y10{bottom:59.844110pt;}
.y9{bottom:70.840015pt;}
.y33{bottom:73.843406pt;}
.yf{bottom:74.071670pt;}
.y32{bottom:88.070966pt;}
.y7{bottom:122.040013pt;}
.y31{bottom:154.680012pt;}
.ye{bottom:170.680011pt;}
.yd{bottom:263.358729pt;}
.y3c{bottom:294.276662pt;}
.y18{bottom:317.218553pt;}
.y17{bottom:339.226845pt;}
.y16{bottom:361.235138pt;}
.y27{bottom:465.721838pt;}
.y26{bottom:487.730130pt;}
.y25{bottom:509.738422pt;}
.y24{bottom:531.746714pt;}
.y28{bottom:532.747098pt;}
.y1a{bottom:567.026605pt;}
.y30{bottom:643.684801pt;}
.y2f{bottom:665.693094pt;}
.y20{bottom:682.680151pt;}
.y2e{bottom:687.701386pt;}
.y1f{bottom:704.688444pt;}
.y2d{bottom:709.709678pt;}
.y1e{bottom:726.696736pt;}
.y2c{bottom:731.717970pt;}
.y23{bottom:745.904052pt;}
.y1d{bottom:748.705028pt;}
.y2b{bottom:753.726262pt;}
.y22{bottom:767.912344pt;}
.y1c{bottom:770.713320pt;}
.y2a{bottom:775.734555pt;}
.y21{bottom:789.920637pt;}
.y1b{bottom:792.721612pt;}
.y29{bottom:797.742847pt;}
.y19{bottom:830.102294pt;}
.y15{bottom:868.816881pt;}
.y5{bottom:923.111409pt;}
.y4{bottom:946.120078pt;}
.y3{bottom:969.128747pt;}
.y2{bottom:992.137416pt;}
.y6{bottom:1042.033697pt;}
.h6{height:14.399999pt;}
.hc{height:38.243682pt;}
.h13{height:39.011971pt;}
.h9{height:43.024103pt;}
.h14{height:43.024211pt;}
.h7{height:43.888470pt;}
.h8{height:46.399998pt;}
.h3{height:52.329932pt;}
.h17{height:52.561243pt;}
.h15{height:53.617161pt;}
.h16{height:55.728997pt;}
.h11{height:55.958584pt;}
.h4{height:57.166031pt;}
.he{height:57.365614pt;}
.hf{height:72.248235pt;}
.ha{height:73.147560pt;}
.hd{height:74.896859pt;}
.h10{height:78.011873pt;}
.hb{height:84.159996pt;}
.h12{height:97.919996pt;}
.h5{height:132.209814pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w4{width:327.679986pt;}
.w5{width:398.399983pt;}
.w3{width:541.439977pt;}
.w2{width:583.359976pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:22.399999pt;}
.x6{left:24.680426pt;}
.x7{left:59.177801pt;}
.x9{left:72.659440pt;}
.xf{left:129.322069pt;}
.x10{left:143.983843pt;}
.x1{left:171.144953pt;}
.xb{left:208.033308pt;}
.x2{left:212.020879pt;}
.x11{left:222.701002pt;}
.x12{left:237.362776pt;}
.xa{left:278.591839pt;}
.x4{left:440.449044pt;}
.x5{left:442.879982pt;}
.x8{left:471.176387pt;}
.xc{left:488.547495pt;}
.xd{left:521.082882pt;}
.xe{left:548.296260pt;}
}




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