
    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_f870a5667add1b511bcdf7b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_202225c28a6ad14405f471f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_c9127653165cdb3ed059724e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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;}
.m7{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.394408px;}
.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;}
}
.ws1{word-spacing:-16.199994px;}
.ws0{word-spacing:-15.659994px;}
.wsa{word-spacing:-14.399994px;}
.ws4{word-spacing:-11.699995px;}
.ws2{word-spacing:-0.673433px;}
.ws3{word-spacing:-0.226565px;}
.ws9{word-spacing:-0.194920px;}
.ws6{word-spacing:-0.032278px;}
.ws7{word-spacing:-0.032263px;}
.ws5{word-spacing:-0.032259px;}
.ws8{word-spacing:-0.032162px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-1.066623px;}
._0{width:1.093675px;}
._2{width:147.962223px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.799988px;}
.fs6{font-size:30.959988px;}
.fsa{font-size:33.839986px;}
.fs5{font-size:46.799981px;}
.fs3{font-size:52.559979px;}
.fs7{font-size:57.599977px;}
.fs2{font-size:62.639975px;}
.fs4{font-size:64.799974px;}
.fs9{font-size:77.039969px;}
.fs1{font-size:95.039962px;}
.fs0{font-size:138.959944px;}
.y0{bottom:0.000000px;}
.y30{bottom:70.080329px;}
.y45{bottom:70.440329px;}
.y44{bottom:81.240325px;}
.y2f{bottom:84.120323px;}
.y43{bottom:92.040320px;}
.y2e{bottom:98.160318px;}
.y42{bottom:102.840316px;}
.y41{bottom:111.480312px;}
.y2d{bottom:112.020312px;}
.y40{bottom:125.520307px;}
.y2c{bottom:126.060307px;}
.y2b{bottom:140.100301px;}
.y3f{bottom:150.360297px;}
.y2a{bottom:154.140295px;}
.y3e{bottom:166.200291px;}
.y29{bottom:168.180290px;}
.y3d{bottom:182.040284px;}
.y28{bottom:182.220284px;}
.y27{bottom:196.260278px;}
.y3c{bottom:197.700278px;}
.y26{bottom:210.120273px;}
.y3b{bottom:213.540272px;}
.y25{bottom:224.160267px;}
.y3a{bottom:229.380265px;}
.y24{bottom:238.200262px;}
.y39{bottom:245.220259px;}
.y23{bottom:252.240256px;}
.y38{bottom:261.060253px;}
.y22{bottom:266.280250px;}
.y37{bottom:276.900246px;}
.y21{bottom:280.320245px;}
.y36{bottom:292.560240px;}
.y20{bottom:294.180239px;}
.y1f{bottom:308.220234px;}
.y35{bottom:308.400234px;}
.y56{bottom:310.740233px;}
.y1e{bottom:319.200229px;}
.y55{bottom:320.820229px;}
.y1d{bottom:322.260228px;}
.y34{bottom:324.240227px;}
.y54{bottom:330.900225px;}
.y1c{bottom:336.300222px;}
.y33{bottom:340.080221px;}
.y53{bottom:340.980221px;}
.y1b{bottom:350.340217px;}
.y32{bottom:356.280214px;}
.y1a{bottom:364.380211px;}
.y19{bottom:378.240206px;}
.y18{bottom:392.280200px;}
.y17{bottom:406.320194px;}
.y16{bottom:420.360189px;}
.y15{bottom:434.400183px;}
.y14{bottom:448.440178px;}
.y13{bottom:462.300172px;}
.y12{bottom:476.340166px;}
.y11{bottom:490.380161px;}
.y10{bottom:504.420155px;}
.yf{bottom:518.460150px;}
.ye{bottom:533.580144px;}
.y4d{bottom:538.080142px;}
.yd{bottom:562.200132px;}
.yc{bottom:578.040126px;}
.yb{bottom:593.880119px;}
.y52{bottom:604.140115px;}
.ya{bottom:609.720113px;}
.y51{bottom:614.220111px;}
.y50{bottom:624.300107px;}
.y9{bottom:625.560107px;}
.y4f{bottom:634.380103px;}
.y8{bottom:641.400100px;}
.y4e{bottom:644.460099px;}
.y7{bottom:657.060094px;}
.y6{bottom:672.900088px;}
.y4b{bottom:675.060087px;}
.y4a{bottom:685.140083px;}
.y5{bottom:688.740082px;}
.y4c{bottom:703.500076px;}
.y31{bottom:703.860075px;}
.y4{bottom:705.120075px;}
.y49{bottom:742.919310px;}
.y3{bottom:743.099310px;}
.y48{bottom:765.419301px;}
.y2{bottom:774.779297px;}
.y47{bottom:794.039289px;}
.y1{bottom:808.979283px;}
.y46{bottom:817.079280px;}
.ha{height:19.814392px;}
.h8{height:21.486231px;}
.hc{height:23.281911px;}
.h7{height:32.198387px;}
.h6{height:32.479187px;}
.h4{height:36.161266px;}
.h9{height:39.340784px;}
.h3{height:42.783103px;}
.h5{height:44.258382px;}
.hb{height:53.003499px;}
.h2{height:64.912294px;}
.h1{height:95.604442px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:37.440735px;}
.x2{left:46.620731px;}
.x3{left:166.679933px;}
.x4{left:173.339931px;}
.x5{left:264.059894px;}
.x6{left:270.899892px;}
.x7{left:438.659825px;}
.xa{left:685.259726px;}
.x9{left:823.319671px;}
.x8{left:830.879668px;}
.xb{left:836.279665px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.350585pt;}
.ws1{word-spacing:-14.399994pt;}
.ws0{word-spacing:-13.919994pt;}
.wsa{word-spacing:-12.799995pt;}
.ws4{word-spacing:-10.399996pt;}
.ws2{word-spacing:-0.598607pt;}
.ws3{word-spacing:-0.201391pt;}
.ws9{word-spacing:-0.173263pt;}
.ws6{word-spacing:-0.028692pt;}
.ws7{word-spacing:-0.028678pt;}
.ws5{word-spacing:-0.028674pt;}
.ws8{word-spacing:-0.028588pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-0.948109pt;}
._0{width:0.972155pt;}
._2{width:131.521976pt;}
.fs8{font-size:25.599990pt;}
.fs6{font-size:27.519989pt;}
.fsa{font-size:30.079988pt;}
.fs5{font-size:41.599983pt;}
.fs3{font-size:46.719981pt;}
.fs7{font-size:51.199980pt;}
.fs2{font-size:55.679978pt;}
.fs4{font-size:57.599977pt;}
.fs9{font-size:68.479973pt;}
.fs1{font-size:84.479966pt;}
.fs0{font-size:123.519951pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:62.293626pt;}
.y45{bottom:62.613626pt;}
.y44{bottom:72.213622pt;}
.y2f{bottom:74.773621pt;}
.y43{bottom:81.813618pt;}
.y2e{bottom:87.253616pt;}
.y42{bottom:91.413614pt;}
.y41{bottom:99.093611pt;}
.y2d{bottom:99.573611pt;}
.y40{bottom:111.573606pt;}
.y2c{bottom:112.053606pt;}
.y2b{bottom:124.533601pt;}
.y3f{bottom:133.653597pt;}
.y2a{bottom:137.013596pt;}
.y3e{bottom:147.733592pt;}
.y29{bottom:149.493591pt;}
.y3d{bottom:161.813586pt;}
.y28{bottom:161.973586pt;}
.y27{bottom:174.453581pt;}
.y3c{bottom:175.733580pt;}
.y26{bottom:186.773576pt;}
.y3b{bottom:189.813575pt;}
.y25{bottom:199.253571pt;}
.y3a{bottom:203.893569pt;}
.y24{bottom:211.733566pt;}
.y39{bottom:217.973563pt;}
.y23{bottom:224.213561pt;}
.y38{bottom:232.053558pt;}
.y22{bottom:236.693556pt;}
.y37{bottom:246.133552pt;}
.y21{bottom:249.173551pt;}
.y36{bottom:260.053547pt;}
.y20{bottom:261.493546pt;}
.y1f{bottom:273.973541pt;}
.y35{bottom:274.133541pt;}
.y56{bottom:276.213540pt;}
.y1e{bottom:283.733537pt;}
.y55{bottom:285.173537pt;}
.y1d{bottom:286.453536pt;}
.y34{bottom:288.213535pt;}
.y54{bottom:294.133533pt;}
.y1c{bottom:298.933531pt;}
.y33{bottom:302.293530pt;}
.y53{bottom:303.093529pt;}
.y1b{bottom:311.413526pt;}
.y32{bottom:316.693524pt;}
.y1a{bottom:323.893521pt;}
.y19{bottom:336.213516pt;}
.y18{bottom:348.693511pt;}
.y17{bottom:361.173506pt;}
.y16{bottom:373.653501pt;}
.y15{bottom:386.133496pt;}
.y14{bottom:398.613491pt;}
.y13{bottom:410.933486pt;}
.y12{bottom:423.413481pt;}
.y11{bottom:435.893476pt;}
.y10{bottom:448.373471pt;}
.yf{bottom:460.853466pt;}
.ye{bottom:474.293461pt;}
.y4d{bottom:478.293459pt;}
.yd{bottom:499.733451pt;}
.yc{bottom:513.813445pt;}
.yb{bottom:527.893440pt;}
.y52{bottom:537.013436pt;}
.ya{bottom:541.973434pt;}
.y51{bottom:545.973432pt;}
.y50{bottom:554.933429pt;}
.y9{bottom:556.053428pt;}
.y4f{bottom:563.893425pt;}
.y8{bottom:570.133423pt;}
.y4e{bottom:572.853422pt;}
.y7{bottom:584.053417pt;}
.y6{bottom:598.133411pt;}
.y4b{bottom:600.053411pt;}
.y4a{bottom:609.013407pt;}
.y5{bottom:612.213406pt;}
.y4c{bottom:625.333401pt;}
.y31{bottom:625.653400pt;}
.y4{bottom:626.773400pt;}
.y49{bottom:660.372720pt;}
.y3{bottom:660.532720pt;}
.y48{bottom:680.372712pt;}
.y2{bottom:688.692709pt;}
.y47{bottom:705.812702pt;}
.y1{bottom:719.092696pt;}
.y46{bottom:726.292693pt;}
.ha{height:17.612793pt;}
.h8{height:19.098872pt;}
.hc{height:20.695032pt;}
.h7{height:28.620789pt;}
.h6{height:28.870388pt;}
.h4{height:32.143347pt;}
.h9{height:34.969586pt;}
.h3{height:38.029425pt;}
.h5{height:39.340784pt;}
.hb{height:47.114221pt;}
.h2{height:57.699817pt;}
.h1{height:84.981726pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:33.280653pt;}
.x2{left:41.440650pt;}
.x3{left:148.159941pt;}
.x4{left:154.079938pt;}
.x5{left:234.719906pt;}
.x6{left:240.799904pt;}
.x7{left:389.919844pt;}
.xa{left:609.119756pt;}
.x9{left:731.839707pt;}
.x8{left:738.559705pt;}
.xb{left:743.359703pt;}
}




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