
    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_5393dd3ca158e3f829b0e15a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_39cbf0b78e37c6e8311ed786.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_1aaae6bb701fbe7bee784a48.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_edea63cb8f1c6d68c3cc3be7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_4faad2122fb997defce0adfd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_4887618cdb086581917cd230.woff')format("woff");}.ff6{font-family:ff6;line-height:1.133301;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_74f2cafab3f704a316d5427a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{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);}
.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;}
.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;}
}
.ws4{word-spacing:-25.433639px;}
.ws2{word-spacing:-21.617639px;}
.ws3{word-spacing:-20.348819px;}
.ws1{word-spacing:-19.079999px;}
.ws0{word-spacing:-15.263999px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-6.018995px;}
._5{margin-left:-4.563083px;}
._3{margin-left:-3.397431px;}
._2{margin-left:-2.385179px;}
._0{margin-left:-1.148165px;}
._4{width:1.029729px;}
._1{width:3.335032px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:52.540845px;}
.fsb{font-size:52.800142px;}
.fsc{font-size:53.999998px;}
.fs5{font-size:58.364122px;}
.fsd{font-size:59.984997px;}
.fs1{font-size:71.999997px;}
.fs2{font-size:89.999996px;}
.fsa{font-size:95.984996px;}
.fs0{font-size:98.730000px;}
.fs4{font-size:101.969996px;}
.fs3{font-size:113.984995px;}
.fs9{font-size:116.730000px;}
.fs6{font-size:119.969995px;}
.fs7{font-size:155.969994px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.000010px;}
.y1d{bottom:3.495708px;}
.y15{bottom:3.511514px;}
.y36{bottom:4.682504px;}
.y38{bottom:18.597203px;}
.y1c{bottom:21.009323px;}
.y35{bottom:22.282551px;}
.y12{bottom:30.374999px;}
.yd{bottom:32.624999px;}
.y37{bottom:36.597202px;}
.y1b{bottom:38.522938px;}
.y34{bottom:52.920008px;}
.y1a{bottom:56.036553px;}
.y4{bottom:57.374998px;}
.y7{bottom:60.749997px;}
.y11{bottom:65.249997px;}
.yc{bottom:71.999997px;}
.y2{bottom:78.749997px;}
.y6{bottom:85.499996px;}
.y14{bottom:93.240006px;}
.y10{bottom:100.124996px;}
.yf{bottom:134.999994px;}
.y19{bottom:142.200004px;}
.y3b{bottom:154.514514px;}
.y3a{bottom:172.514513px;}
.y39{bottom:190.514512px;}
.y3c{bottom:220.558167px;}
.y16{bottom:224.414559px;}
.y31{bottom:280.258224px;}
.y33{bottom:281.907420px;}
.y3d{bottom:283.144812px;}
.y30{bottom:315.133223px;}
.y32{bottom:316.782419px;}
.y13{bottom:361.247071px;}
.y29{bottom:395.125904px;}
.y3{bottom:418.131749px;}
.y23{bottom:422.472114px;}
.ya{bottom:461.014361px;}
.y5{bottom:463.720509px;}
.y28{bottom:481.331536px;}
.y9{bottom:492.514359px;}
.y1{bottom:523.513947px;}
.ye{bottom:528.943434px;}
.y22{bottom:538.076858px;}
.y2e{bottom:545.020508px;}
.y2d{bottom:577.645507px;}
.y25{bottom:592.533037px;}
.y2c{bottom:610.270506px;}
.y26{bottom:647.844363px;}
.y2f{bottom:663.706862px;}
.y2b{bottom:712.602701px;}
.y27{bottom:714.068232px;}
.yb{bottom:731.514882px;}
.y2a{bottom:744.102700px;}
.y24{bottom:747.021634px;}
.y21{bottom:810.933759px;}
.y20{bottom:935.664823px;}
.y1f{bottom:975.039821px;}
.y1e{bottom:1014.414819px;}
.y18{bottom:1090.997568px;}
.y17{bottom:1144.997566px;}
.he{height:17.999999px;}
.h16{height:36.719998px;}
.h13{height:43.398738px;}
.h18{height:44.603998px;}
.h17{height:47.154033px;}
.hf{height:48.208765px;}
.h19{height:49.547608px;}
.h1a{height:56.985747px;}
.h5{height:59.471998px;}
.h12{height:68.399997px;}
.h8{height:74.339997px;}
.h15{height:79.283607px;}
.h3{height:81.550980px;}
.hc{height:84.227216px;}
.ha{height:94.151606px;}
.h14{height:96.418980px;}
.h10{height:99.095216px;}
.h9{height:123.749973px;}
.h4{height:127.124995px;}
.h11{height:128.831215px;}
.hd{height:148.499994px;}
.h6{height:157.499993px;}
.h2{height:175.499993px;}
.hb{height:183.374992px;}
.h7{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w2{width:127.124995px;}
.w3{width:157.499993px;}
.w1{width:182.249992px;}
.w7{width:709.919970px;}
.w6{width:813.375038px;}
.w5{width:957.374960px;}
.w8{width:1062.359956px;}
.w9{width:1562.399935px;}
.w4{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x1f{left:1.438270px;}
.x2{left:6.046875px;}
.x6{left:12.093749px;}
.x5{left:21.251952px;}
.x1e{left:27.719999px;}
.xe{left:28.799999px;}
.x13{left:53.874979px;}
.xd{left:62.542966px;}
.x15{left:70.453125px;}
.x17{left:72.536630px;}
.x14{left:75.051878px;}
.x20{left:120.933655px;}
.xa{left:136.019526px;}
.x21{left:212.023495px;}
.x22{left:227.017635px;}
.xb{left:304.330071px;}
.x16{left:375.487983px;}
.x12{left:414.675508px;}
.x1{left:451.371956px;}
.x3{left:529.609503px;}
.x10{left:535.849476px;}
.x18{left:721.878506px;}
.x19{left:748.290569px;}
.x4{left:751.217477px;}
.x1d{left:752.965637px;}
.x1b{left:756.462639px;}
.x11{left:909.296731px;}
.x8{left:939.543990px;}
.x7{left:947.700240px;}
.x1a{left:956.314112px;}
.xf{left:1135.302145px;}
.x9{left:1157.395920px;}
.x1c{left:1233.965505px;}
.xc{left:1302.221106px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-22.607679pt;}
.ws2{word-spacing:-19.215679pt;}
.ws3{word-spacing:-18.087839pt;}
.ws1{word-spacing:-16.959999pt;}
.ws0{word-spacing:-13.567999pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-5.350218pt;}
._5{margin-left:-4.056074pt;}
._3{margin-left:-3.019938pt;}
._2{margin-left:-2.120159pt;}
._0{margin-left:-1.020591pt;}
._4{width:0.915314pt;}
._1{width:2.964473pt;}
.fs8{font-size:46.702974pt;}
.fsb{font-size:46.933460pt;}
.fsc{font-size:47.999998pt;}
.fs5{font-size:51.879219pt;}
.fsd{font-size:53.319997pt;}
.fs1{font-size:63.999997pt;}
.fs2{font-size:79.999997pt;}
.fsa{font-size:85.319996pt;}
.fs0{font-size:87.760000pt;}
.fs4{font-size:90.639996pt;}
.fs3{font-size:101.319996pt;}
.fs9{font-size:103.760000pt;}
.fs6{font-size:106.639996pt;}
.fs7{font-size:138.639994pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.000009pt;}
.y1d{bottom:3.107296pt;}
.y15{bottom:3.121346pt;}
.y36{bottom:4.162225pt;}
.y38{bottom:16.530847pt;}
.y1c{bottom:18.674954pt;}
.y35{bottom:19.806712pt;}
.y12{bottom:26.999999pt;}
.yd{bottom:28.999999pt;}
.y37{bottom:32.530847pt;}
.y1b{bottom:34.242612pt;}
.y34{bottom:47.040007pt;}
.y1a{bottom:49.810270pt;}
.y4{bottom:50.999998pt;}
.y7{bottom:53.999998pt;}
.y11{bottom:57.999998pt;}
.yc{bottom:63.999997pt;}
.y2{bottom:69.999997pt;}
.y6{bottom:75.999997pt;}
.y14{bottom:82.880006pt;}
.y10{bottom:88.999996pt;}
.yf{bottom:119.999995pt;}
.y19{bottom:126.400004pt;}
.y3b{bottom:137.346234pt;}
.y3a{bottom:153.346234pt;}
.y39{bottom:169.346233pt;}
.y3c{bottom:196.051704pt;}
.y16{bottom:199.479608pt;}
.y31{bottom:249.118422pt;}
.y33{bottom:250.584374pt;}
.y3d{bottom:251.684278pt;}
.y30{bottom:280.118420pt;}
.y32{bottom:281.584372pt;}
.y13{bottom:321.108508pt;}
.y29{bottom:351.223025pt;}
.y3{bottom:371.672666pt;}
.y23{bottom:375.530768pt;}
.ya{bottom:409.790543pt;}
.y5{bottom:412.196008pt;}
.y28{bottom:427.850254pt;}
.y9{bottom:437.790542pt;}
.y1{bottom:465.345730pt;}
.ye{bottom:470.171941pt;}
.y22{bottom:478.290540pt;}
.y2e{bottom:484.462674pt;}
.y2d{bottom:513.462673pt;}
.y25{bottom:526.696032pt;}
.y2c{bottom:542.462672pt;}
.y26{bottom:575.861656pt;}
.y2f{bottom:589.961655pt;}
.y2b{bottom:633.424623pt;}
.y27{bottom:634.727318pt;}
.yb{bottom:650.235451pt;}
.y2a{bottom:661.424622pt;}
.y24{bottom:664.019230pt;}
.y21{bottom:720.830008pt;}
.y20{bottom:831.702065pt;}
.y1f{bottom:866.702063pt;}
.y1e{bottom:901.702062pt;}
.y18{bottom:969.775616pt;}
.y17{bottom:1017.775614pt;}
.he{height:15.999999pt;}
.h16{height:32.639999pt;}
.h13{height:38.576656pt;}
.h18{height:39.647998pt;}
.h17{height:41.914696pt;}
.hf{height:42.852235pt;}
.h19{height:44.042318pt;}
.h1a{height:50.653998pt;}
.h5{height:52.863998pt;}
.h12{height:60.799997pt;}
.h8{height:66.079997pt;}
.h15{height:70.474317pt;}
.h3{height:72.489760pt;}
.hc{height:74.868637pt;}
.ha{height:83.690317pt;}
.h14{height:85.705760pt;}
.h10{height:88.084636pt;}
.h9{height:109.999976pt;}
.h4{height:112.999995pt;}
.h11{height:114.516635pt;}
.hd{height:131.999994pt;}
.h6{height:139.999994pt;}
.h2{height:155.999994pt;}
.hb{height:162.999993pt;}
.h7{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w2{width:112.999995pt;}
.w3{width:139.999994pt;}
.w1{width:161.999993pt;}
.w7{width:631.039974pt;}
.w6{width:723.000034pt;}
.w5{width:850.999965pt;}
.w8{width:944.319961pt;}
.w9{width:1388.799942pt;}
.w4{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.278462pt;}
.x2{left:5.375000pt;}
.x6{left:10.750000pt;}
.x5{left:18.890624pt;}
.x1e{left:24.639999pt;}
.xe{left:25.599999pt;}
.x13{left:47.888870pt;}
.xd{left:55.593748pt;}
.x15{left:62.625000pt;}
.x17{left:64.477004pt;}
.x14{left:66.712780pt;}
.x20{left:107.496582pt;}
.xa{left:120.906245pt;}
.x21{left:188.465329pt;}
.x22{left:201.793453pt;}
.xb{left:270.515619pt;}
.x16{left:333.767096pt;}
.x12{left:368.600452pt;}
.x1{left:401.219516pt;}
.x3{left:470.764003pt;}
.x10{left:476.310645pt;}
.x18{left:641.669783pt;}
.x19{left:665.147172pt;}
.x4{left:667.748868pt;}
.x1d{left:669.302788pt;}
.x1b{left:672.411235pt;}
.x11{left:808.263761pt;}
.x8{left:835.150213pt;}
.x7{left:842.400213pt;}
.x1a{left:850.056989pt;}
.xf{left:1009.157462pt;}
.x9{left:1028.796373pt;}
.x1c{left:1096.858226pt;}
.xc{left:1157.529872pt;}
}




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