
    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_f32719d95967f801ae07bf33.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.812012;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_651c4dac8d10b3a3d1c899c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_524a51c256368ee2f77ef2fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_aacf13a77c59d8d287ab9c48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.122000;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_5f986cec1440016b6d252208.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.101000;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_50838e341544185488664897.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_dfcf8305567bad761c6748d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_0e89e5fc4044b7c990a1ce38.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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:ff9;src:url('chunks/assets/font_ed4e168948f21687758d64a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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:ffa;src:url('chunks/assets/font_781b23839bdeb9397a6d5af4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_f32719d95967f801ae07bf33.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.812012;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:ffc;src:url('chunks/assets/font_0e2e513907a7d6ab8089b790.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.113281;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;}
.m1{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
}
.ws1{word-spacing:-16.680000px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:5.340000px;}
.ws4{word-spacing:145.200000px;}
._a{margin-left:-36.660600px;}
._8{margin-left:-7.758000px;}
._2{margin-left:-5.335200px;}
._1{margin-left:-4.028400px;}
._0{margin-left:-2.145600px;}
._6{margin-left:-1.095600px;}
._3{width:1.194000px;}
._4{width:2.796000px;}
._9{width:4.638000px;}
._7{width:6.072000px;}
._5{width:7.224000px;}
._b{width:34.020000px;}
._c{width:164.682000px;}
.fc8{color:rgb(114,16,35);}
.fc7{color:rgb(56,19,14);}
.fc5{color:rgb(85,118,175);}
.fc6{color:rgb(178,178,178);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(164,90,43);}
.fc1{color:rgb(157,157,156);}
.fc0{color:rgb(128,130,144);}
.fs7{font-size:53.999926px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:54.000180px;}
.fs5{font-size:54.000335px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:10.936185px;}
.y26{bottom:10.936237px;}
.y24{bottom:10.936268px;}
.y2{bottom:19.534650px;}
.y37{bottom:274.252500px;}
.y16{bottom:278.286750px;}
.y36{bottom:292.252500px;}
.y15{bottom:297.786750px;}
.y35{bottom:310.252500px;}
.y14{bottom:317.286750px;}
.y13{bottom:336.786750px;}
.y12{bottom:356.286750px;}
.y34{bottom:375.090900px;}
.y11{bottom:397.046550px;}
.y10{bottom:416.546550px;}
.y22{bottom:419.213400px;}
.yf{bottom:436.046550px;}
.y21{bottom:437.213400px;}
.y33{bottom:438.441450px;}
.y20{bottom:455.213400px;}
.y32{bottom:456.441450px;}
.y2e{bottom:470.254650px;}
.y1f{bottom:473.213400px;}
.ye{bottom:476.806350px;}
.yd{bottom:496.306350px;}
.y1e{bottom:512.473200px;}
.y31{bottom:515.543850px;}
.yc{bottom:515.806350px;}
.y1d{bottom:530.473200px;}
.y30{bottom:533.543850px;}
.yb{bottom:535.306350px;}
.y1c{bottom:548.473200px;}
.y2f{bottom:551.543850px;}
.ya{bottom:554.806350px;}
.y9{bottom:574.306350px;}
.y1b{bottom:587.733150px;}
.y8{bottom:593.806350px;}
.y1a{bottom:605.733150px;}
.y2d{bottom:608.649450px;}
.y7{bottom:613.306350px;}
.y19{bottom:623.733150px;}
.y2c{bottom:626.649450px;}
.y6{bottom:632.806350px;}
.y2b{bottom:644.649450px;}
.y18{bottom:662.992950px;}
.y5{bottom:665.062350px;}
.y2a{bottom:668.649450px;}
.y17{bottom:682.492950px;}
.y3{bottom:714.066300px;}
.y4{bottom:721.566300px;}
.y29{bottom:739.357650px;}
.y28{bottom:764.361450px;}
.y25{bottom:823.381530px;}
.y23{bottom:824.445000px;}
.y1{bottom:840.354750px;}
.he{height:31.700807px;}
.hc{height:31.700956px;}
.ha{height:31.701047px;}
.hf{height:39.313423px;}
.h3{height:39.313477px;}
.hd{height:39.313608px;}
.hb{height:39.313720px;}
.h9{height:43.681641px;}
.h11{height:48.410156px;}
.h6{height:48.654000px;}
.h2{height:51.644531px;}
.h7{height:53.789062px;}
.h10{height:54.169922px;}
.h8{height:54.814453px;}
.h5{height:77.448000px;}
.h4{height:108.398438px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w4{width:76.889709px;}
.w3{width:92.125488px;}
.w2{width:107.716474px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:7.687501px;}
.x3{left:63.779550px;}
.x6{left:72.283500px;}
.x5{left:76.535400px;}
.xf{left:82.685400px;}
.x4{left:89.279550px;}
.xe{left:121.181100px;}
.xa{left:333.424500px;}
.xc{left:445.393635px;}
.xb{left:527.244000px;}
.x7{left:654.803100px;}
.x9{left:689.799150px;}
.x8{left:694.794300px;}
.x10{left:775.606350px;}
.x2{left:1086.361500px;}
.x1{left:1091.438850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:4.746667pt;}
.ws4{word-spacing:129.066667pt;}
._a{margin-left:-32.587200pt;}
._8{margin-left:-6.896000pt;}
._2{margin-left:-4.742400pt;}
._1{margin-left:-3.580800pt;}
._0{margin-left:-1.907200pt;}
._6{margin-left:-0.973867pt;}
._3{width:1.061333pt;}
._4{width:2.485333pt;}
._9{width:4.122667pt;}
._7{width:5.397333pt;}
._5{width:6.421333pt;}
._b{width:30.240000pt;}
._c{width:146.384000pt;}
.fs7{font-size:47.999934pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:48.000160pt;}
.fs5{font-size:48.000298pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:9.721053pt;}
.y26{bottom:9.721099pt;}
.y24{bottom:9.721127pt;}
.y2{bottom:17.364133pt;}
.y37{bottom:243.780000pt;}
.y16{bottom:247.366000pt;}
.y36{bottom:259.780000pt;}
.y15{bottom:264.699333pt;}
.y35{bottom:275.780000pt;}
.y14{bottom:282.032667pt;}
.y13{bottom:299.366000pt;}
.y12{bottom:316.699333pt;}
.y34{bottom:333.414133pt;}
.y11{bottom:352.930267pt;}
.y10{bottom:370.263600pt;}
.y22{bottom:372.634133pt;}
.yf{bottom:387.596933pt;}
.y21{bottom:388.634133pt;}
.y33{bottom:389.725733pt;}
.y20{bottom:404.634133pt;}
.y32{bottom:405.725733pt;}
.y2e{bottom:418.004133pt;}
.y1f{bottom:420.634133pt;}
.ye{bottom:423.827867pt;}
.yd{bottom:441.161200pt;}
.y1e{bottom:455.531733pt;}
.y31{bottom:458.261200pt;}
.yc{bottom:458.494533pt;}
.y1d{bottom:471.531733pt;}
.y30{bottom:474.261200pt;}
.yb{bottom:475.827867pt;}
.y1c{bottom:487.531733pt;}
.y2f{bottom:490.261200pt;}
.ya{bottom:493.161200pt;}
.y9{bottom:510.494533pt;}
.y1b{bottom:522.429467pt;}
.y8{bottom:527.827867pt;}
.y1a{bottom:538.429467pt;}
.y2d{bottom:541.021733pt;}
.y7{bottom:545.161200pt;}
.y19{bottom:554.429467pt;}
.y2c{bottom:557.021733pt;}
.y6{bottom:562.494533pt;}
.y2b{bottom:573.021733pt;}
.y18{bottom:589.327067pt;}
.y5{bottom:591.166533pt;}
.y2a{bottom:594.355067pt;}
.y17{bottom:606.660400pt;}
.y3{bottom:634.725600pt;}
.y4{bottom:641.392267pt;}
.y29{bottom:657.206800pt;}
.y28{bottom:679.432400pt;}
.y25{bottom:731.894693pt;}
.y23{bottom:732.840000pt;}
.y1{bottom:746.982000pt;}
.he{height:28.178495pt;}
.hc{height:28.178627pt;}
.ha{height:28.178708pt;}
.hf{height:34.945265pt;}
.h3{height:34.945312pt;}
.hd{height:34.945429pt;}
.hb{height:34.945529pt;}
.h9{height:38.828125pt;}
.h11{height:43.031250pt;}
.h6{height:43.248000pt;}
.h2{height:45.906250pt;}
.h7{height:47.812500pt;}
.h10{height:48.151042pt;}
.h8{height:48.723958pt;}
.h5{height:68.842667pt;}
.h4{height:96.354167pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w4{width:68.346408pt;}
.w3{width:81.889323pt;}
.w2{width:95.747977pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:6.833334pt;}
.x3{left:56.692933pt;}
.x6{left:64.252000pt;}
.x5{left:68.031467pt;}
.xf{left:73.498133pt;}
.x4{left:79.359600pt;}
.xe{left:107.716533pt;}
.xa{left:296.377333pt;}
.xc{left:395.905453pt;}
.xb{left:468.661333pt;}
.x7{left:582.047200pt;}
.x9{left:613.154800pt;}
.x8{left:617.594933pt;}
.x10{left:689.427867pt;}
.x2{left:965.654667pt;}
.x1{left:970.167867pt;}
}




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