
    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_28cff311fc21ad5b4339d81e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990234;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_73e7a616313a653de67bf09a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993652;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_c92ab47f1d73155952e71449.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.993652;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_462715c3ec0c61dd9e4bd03b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.993652;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_73bf725b3b1fd9e28029e9fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.993652;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_9e90eefb260266f6a33ae110.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.775391;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;}
.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:-15.017860px;}
.ws1{word-spacing:-8.824770px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-3.129933px;}
._0{margin-left:-1.758175px;}
._1{width:1.572152px;}
._2{width:4.277876px;}
._9{width:5.475188px;}
._d{width:7.392702px;}
._c{width:8.993908px;}
._7{width:11.848193px;}
._a{width:17.698876px;}
._5{width:19.517094px;}
._4{width:20.798138px;}
._8{width:28.584954px;}
._b{width:29.680495px;}
._6{width:33.350001px;}
.fc4{color:transparent;}
.fc3{color:rgb(87,161,70);}
.fc1{color:rgb(72,162,74);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:36.002248px;}
.fs2{font-size:40.119714px;}
.fsa{font-size:42.005124px;}
.fsd{font-size:42.015777px;}
.fse{font-size:42.017735px;}
.fs1{font-size:43.087575px;}
.fsb{font-size:54.010878px;}
.fs8{font-size:55.484558px;}
.fs3{font-size:61.268083px;}
.fs5{font-size:66.848866px;}
.fs9{font-size:68.560830px;}
.fs7{font-size:69.596222px;}
.fs6{font-size:75.178329px;}
.fs0{font-size:76.291308px;}
.fs4{font-size:139.254553px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.000021px;}
.y30{bottom:3.382627px;}
.y7{bottom:3.528410px;}
.y3c{bottom:3.593577px;}
.y10{bottom:3.629396px;}
.y4{bottom:3.672996px;}
.y49{bottom:3.854692px;}
.y24{bottom:4.288696px;}
.y14{bottom:5.249145px;}
.y12{bottom:10.570681px;}
.y6{bottom:16.901648px;}
.yf{bottom:17.002634px;}
.y3b{bottom:17.598836px;}
.y3{bottom:18.586882px;}
.y23{bottom:23.089940px;}
.y2f{bottom:23.267153px;}
.y3a{bottom:31.604095px;}
.y48{bottom:31.866515px;}
.y2{bottom:41.296664px;}
.y22{bottom:41.891183px;}
.y2e{bottom:42.401320px;}
.y39{bottom:45.609355px;}
.y47{bottom:45.872427px;}
.y46{bottom:59.878339px;}
.y2d{bottom:72.415699px;}
.y38{bottom:73.619873px;}
.y45{bottom:73.884250px;}
.y37{bottom:87.625132px;}
.y44{bottom:87.890162px;}
.y21{bottom:100.215017px;}
.y2c{bottom:109.183314px;}
.y36{bottom:115.635650px;}
.y43{bottom:115.901986px;}
.y2b{bottom:123.815324px;}
.y42{bottom:129.907897px;}
.y2a{bottom:138.447334px;}
.y35{bottom:143.646169px;}
.y41{bottom:143.913809px;}
.y29{bottom:153.079344px;}
.y34{bottom:157.651428px;}
.y40{bottom:157.919721px;}
.y28{bottom:167.711354px;}
.y33{bottom:171.656687px;}
.y3f{bottom:171.925633px;}
.y27{bottom:182.343363px;}
.y32{bottom:185.661946px;}
.y3e{bottom:185.931544px;}
.y3d{bottom:195.615013px;}
.y31{bottom:196.335013px;}
.y26{bottom:199.215012px;}
.y5{bottom:535.454998px;}
.ye{bottom:537.614998px;}
.y1{bottom:579.014997px;}
.yd{bottom:666.893723px;}
.yc{bottom:688.276780px;}
.yb{bottom:709.659837px;}
.ya{bottom:731.042893px;}
.y9{bottom:752.425950px;}
.y20{bottom:783.854391px;}
.y1f{bottom:805.237447px;}
.y1e{bottom:826.620504px;}
.y1d{bottom:848.003561px;}
.y1c{bottom:869.386617px;}
.y1b{bottom:891.895098px;}
.y25{bottom:937.539332px;}
.y1a{bottom:975.725018px;}
.y19{bottom:999.358923px;}
.y18{bottom:1022.992828px;}
.y17{bottom:1046.626732px;}
.y16{bottom:1070.260637px;}
.y15{bottom:1093.894542px;}
.y13{bottom:1134.134973px;}
.y11{bottom:1158.614972px;}
.hb{height:23.039999px;}
.h15{height:27.546642px;}
.h5{height:28.079999px;}
.h6{height:30.697066px;}
.h13{height:32.139663px;}
.h17{height:32.147814px;}
.h19{height:32.149312px;}
.h4{height:32.967886px;}
.h14{height:41.325706px;}
.h10{height:42.453272px;}
.h8{height:46.878460px;}
.h9{height:48.239998px;}
.hc{height:51.148522px;}
.h11{height:52.458408px;}
.he{height:53.250625px;}
.hf{height:56.519998px;}
.hd{height:57.521700px;}
.h3{height:58.112520px;}
.h2{height:61.559997px;}
.ha{height:106.072804px;}
.h12{height:193.319992px;}
.h16{height:197.279992px;}
.h18{height:197.639992px;}
.h1{height:1263.000000px;}
.h7{height:1263.374947px;}
.h0{height:1263.374968px;}
.w4{width:165.959993px;}
.w5{width:185.759992px;}
.w9{width:228.599990px;}
.w2{width:236.879990px;}
.wa{width:237.599990px;}
.w7{width:375.119984px;}
.w8{width:442.079982px;}
.w6{width:674.279972px;}
.w1{width:685.079971px;}
.w3{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:18.025288px;}
.x8{left:24.549332px;}
.xa{left:38.013373px;}
.x3{left:46.316055px;}
.x5{left:58.328120px;}
.xd{left:62.368835px;}
.x6{left:66.648399px;}
.x10{left:76.251916px;}
.x7{left:91.439996px;}
.x1{left:97.199996px;}
.xb{left:111.239995px;}
.xe{left:257.635447px;}
.x2{left:259.850498px;}
.xc{left:264.239989px;}
.x11{left:323.639987px;}
.x4{left:327.959986px;}
.xf{left:339.479986px;}
.x12{left:592.559975px;}
.x9{left:615.959974px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-13.349209pt;}
.ws1{word-spacing:-7.844240pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-2.782162pt;}
._0{margin-left:-1.562822pt;}
._1{width:1.397469pt;}
._2{width:3.802556pt;}
._9{width:4.866834pt;}
._d{width:6.571291pt;}
._c{width:7.994585pt;}
._7{width:10.531727pt;}
._a{width:15.732334pt;}
._5{width:17.348528pt;}
._4{width:18.487234pt;}
._8{width:25.408848pt;}
._b{width:26.382663pt;}
._6{width:29.644445pt;}
.fsc{font-size:32.001998pt;}
.fs2{font-size:35.661968pt;}
.fsa{font-size:37.337888pt;}
.fsd{font-size:37.347358pt;}
.fse{font-size:37.349098pt;}
.fs1{font-size:38.300067pt;}
.fsb{font-size:48.009670pt;}
.fs8{font-size:49.319607pt;}
.fs3{font-size:54.460518pt;}
.fs5{font-size:59.421214pt;}
.fs9{font-size:60.942960pt;}
.fs7{font-size:61.863309pt;}
.fs6{font-size:66.825181pt;}
.fs0{font-size:67.814496pt;}
.fs4{font-size:123.781824pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.000018pt;}
.y30{bottom:3.006780pt;}
.y7{bottom:3.136364pt;}
.y3c{bottom:3.194291pt;}
.y10{bottom:3.226130pt;}
.y4{bottom:3.264885pt;}
.y49{bottom:3.426393pt;}
.y24{bottom:3.812174pt;}
.y14{bottom:4.665907pt;}
.y12{bottom:9.396161pt;}
.y6{bottom:15.023687pt;}
.yf{bottom:15.113452pt;}
.y3b{bottom:15.643410pt;}
.y3{bottom:16.521673pt;}
.y23{bottom:20.524391pt;}
.y2f{bottom:20.681914pt;}
.y3a{bottom:28.092529pt;}
.y48{bottom:28.325791pt;}
.y2{bottom:36.708146pt;}
.y22{bottom:37.236607pt;}
.y2e{bottom:37.690062pt;}
.y39{bottom:40.541649pt;}
.y47{bottom:40.775491pt;}
.y46{bottom:53.225190pt;}
.y2d{bottom:64.369511pt;}
.y38{bottom:65.439887pt;}
.y45{bottom:65.674889pt;}
.y37{bottom:77.889006pt;}
.y44{bottom:78.124589pt;}
.y21{bottom:89.080015pt;}
.y2c{bottom:97.051835pt;}
.y36{bottom:102.787245pt;}
.y43{bottom:103.023987pt;}
.y2b{bottom:110.058066pt;}
.y42{bottom:115.473687pt;}
.y2a{bottom:123.064297pt;}
.y35{bottom:127.685483pt;}
.y41{bottom:127.923386pt;}
.y29{bottom:136.070528pt;}
.y34{bottom:140.134602pt;}
.y40{bottom:140.373085pt;}
.y28{bottom:149.076759pt;}
.y33{bottom:152.583722pt;}
.y3f{bottom:152.822785pt;}
.y27{bottom:162.082990pt;}
.y32{bottom:165.032841pt;}
.y3e{bottom:165.272484pt;}
.y3d{bottom:173.880011pt;}
.y31{bottom:174.520011pt;}
.y26{bottom:177.080011pt;}
.y5{bottom:475.959999pt;}
.ye{bottom:477.879998pt;}
.y1{bottom:514.679997pt;}
.yd{bottom:592.794421pt;}
.yc{bottom:611.801582pt;}
.yb{bottom:630.808744pt;}
.ya{bottom:649.815905pt;}
.y9{bottom:668.823067pt;}
.y20{bottom:696.759458pt;}
.y1f{bottom:715.766620pt;}
.y1e{bottom:734.773781pt;}
.y1d{bottom:753.780943pt;}
.y1c{bottom:772.788104pt;}
.y1b{bottom:792.795642pt;}
.y25{bottom:833.368295pt;}
.y1a{bottom:867.311127pt;}
.y19{bottom:888.319043pt;}
.y18{bottom:909.326958pt;}
.y17{bottom:930.334873pt;}
.y16{bottom:951.342789pt;}
.y15{bottom:972.350704pt;}
.y13{bottom:1008.119976pt;}
.y11{bottom:1029.879975pt;}
.hb{height:20.479999pt;}
.h15{height:24.485904pt;}
.h5{height:24.959999pt;}
.h6{height:27.286281pt;}
.h13{height:28.568589pt;}
.h17{height:28.575835pt;}
.h19{height:28.577166pt;}
.h4{height:29.304787pt;}
.h14{height:36.733961pt;}
.h10{height:37.736242pt;}
.h8{height:41.669742pt;}
.h9{height:42.879998pt;}
.hc{height:45.465353pt;}
.h11{height:46.629696pt;}
.he{height:47.333889pt;}
.hf{height:50.239998pt;}
.hd{height:51.130400pt;}
.h3{height:51.655573pt;}
.h2{height:54.719998pt;}
.ha{height:94.286937pt;}
.h12{height:171.839993pt;}
.h16{height:175.359993pt;}
.h18{height:175.679993pt;}
.h1{height:1122.666667pt;}
.h7{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w4{width:147.519994pt;}
.w5{width:165.119993pt;}
.w9{width:203.199992pt;}
.w2{width:210.559991pt;}
.wa{width:211.199991pt;}
.w7{width:333.439986pt;}
.w8{width:392.959984pt;}
.w6{width:599.359975pt;}
.w1{width:608.959975pt;}
.w3{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:16.022478pt;}
.x8{left:21.821628pt;}
.xa{left:33.789665pt;}
.x3{left:41.169827pt;}
.x5{left:51.847218pt;}
.xd{left:55.438964pt;}
.x6{left:59.243022pt;}
.x10{left:67.779481pt;}
.x7{left:81.279997pt;}
.x1{left:86.399996pt;}
.xb{left:98.879996pt;}
.xe{left:229.009286pt;}
.x2{left:230.978220pt;}
.xc{left:234.879990pt;}
.x11{left:287.679988pt;}
.x4{left:291.519988pt;}
.xf{left:301.759987pt;}
.x12{left:526.719978pt;}
.x9{left:547.519977pt;}
}




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