
    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_4d422805550933018e38d10b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.754395;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_2df24b51139154b62ed99840.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_2f47ab0c29ba2d4da6e22cc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_202e849e09ae066f08d9f966.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_6ecf0bdcf0d077ae37824aad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_fa81c1b02a3441700cc4cc30.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_c5a586fa6ba41f2d3fd1bd44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_49135c50334dd30eb218d12e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_91ae1dc49ea03716b89f4f87.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944824;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_0eb318e811aa17fffd9c394b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.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;}
.ls5{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.341280px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:7.740000px;}
.ls1{letter-spacing:9.180000px;}
.ls7{letter-spacing:35.100000px;}
.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:-24.300000px;}
.ws4{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-5.391360px;}
._d{margin-left:-3.538080px;}
._e{margin-left:-2.313600px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._8{width:2.371200px;}
._2{width:4.127760px;}
._3{width:5.138640px;}
._c{width:6.486480px;}
._14{width:7.579680px;}
._a{width:8.582160px;}
._9{width:9.687600px;}
._1b{width:10.698480px;}
._16{width:11.709360px;}
._b{width:13.703040px;}
._1f{width:14.770080px;}
._20{width:15.821520px;}
._1c{width:17.606160px;}
._21{width:18.639600px;}
._13{width:20.049120px;}
._19{width:22.660560px;}
._18{width:24.271680px;}
._27{width:25.524720px;}
._26{width:26.704080px;}
._10{width:27.967680px;}
._11{width:29.062800px;}
._17{width:30.747600px;}
._f{width:32.011200px;}
._7{width:34.706880px;}
._1d{width:36.560160px;}
._4{width:37.908000px;}
._5{width:39.003120px;}
._22{width:40.519440px;}
._24{width:44.141760px;}
._1e{width:45.658080px;}
._25{width:52.543200px;}
._1a{width:54.885360px;}
._15{width:55.912800px;}
._23{width:57.872880px;}
._6{width:98.887680px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y4{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y8{bottom:5.400000px;}
.y7{bottom:6.300000px;}
.y9{bottom:14.400000px;}
.y6{bottom:34.200000px;}
.y26{bottom:117.396000px;}
.y25{bottom:153.570000px;}
.y24{bottom:189.750000px;}
.y23{bottom:225.930000px;}
.y22{bottom:262.290000px;}
.y21{bottom:298.470000px;}
.y20{bottom:334.650000px;}
.y1f{bottom:370.875000px;}
.y1e{bottom:407.235000px;}
.y1d{bottom:443.415000px;}
.y1c{bottom:479.595000px;}
.y1b{bottom:515.775000px;}
.y1a{bottom:551.955000px;}
.y19{bottom:588.315000px;}
.y18{bottom:624.525000px;}
.y17{bottom:660.705000px;}
.y16{bottom:696.885000px;}
.y15{bottom:733.245000px;}
.y14{bottom:769.425000px;}
.y13{bottom:805.605000px;}
.y12{bottom:841.785000px;}
.y11{bottom:878.190000px;}
.y10{bottom:914.370000px;}
.yf{bottom:950.550000px;}
.ye{bottom:986.730000px;}
.yd{bottom:1022.910000px;}
.yc{bottom:1059.270000px;}
.yb{bottom:1095.450000px;}
.ya{bottom:1131.630000px;}
.y5{bottom:1155.960000px;}
.y3{bottom:1177.020000px;}
.y1{bottom:1194.300000px;}
.h4{height:6.480000px;}
.h2{height:25.740000px;}
.h5{height:27.720000px;}
.h8{height:47.344922px;}
.he{height:58.819922px;}
.ha{height:59.436914px;}
.hd{height:61.575820px;}
.h3{height:62.028281px;}
.hc{height:82.635820px;}
.hb{height:82.676953px;}
.h6{height:83.787539px;}
.h9{height:84.898125px;}
.hf{height:86.585445px;}
.h7{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:404.205000px;}
.w2{width:425.235000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x9{left:13.860000px;}
.x7{left:28.620000px;}
.x1{left:31.860000px;}
.x6{left:84.959987px;}
.x4{left:98.850000px;}
.x2{left:110.376000px;}
.xc{left:112.895987px;}
.xb{left:117.215987px;}
.x13{left:127.475987px;}
.x12{left:138.095987px;}
.xd{left:223.769987px;}
.xf{left:244.289987px;}
.x14{left:271.109987px;}
.xe{left:314.894987px;}
.x10{left:323.894987px;}
.x11{left:373.574987px;}
.xa{left:446.474987px;}
.x3{left:457.095000px;}
.x8{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.303360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:6.880000pt;}
.ls1{letter-spacing:8.160000pt;}
.ls7{letter-spacing:31.200000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-4.792320pt;}
._d{margin-left:-3.144960pt;}
._e{margin-left:-2.056533pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._8{width:2.107733pt;}
._2{width:3.669120pt;}
._3{width:4.567680pt;}
._c{width:5.765760pt;}
._14{width:6.737493pt;}
._a{width:7.628587pt;}
._9{width:8.611200pt;}
._1b{width:9.509760pt;}
._16{width:10.408320pt;}
._b{width:12.180480pt;}
._1f{width:13.128960pt;}
._20{width:14.063573pt;}
._1c{width:15.649920pt;}
._21{width:16.568533pt;}
._13{width:17.821440pt;}
._19{width:20.142720pt;}
._18{width:21.574827pt;}
._27{width:22.688640pt;}
._26{width:23.736960pt;}
._10{width:24.860160pt;}
._11{width:25.833600pt;}
._17{width:27.331200pt;}
._f{width:28.454400pt;}
._7{width:30.850560pt;}
._1d{width:32.497920pt;}
._4{width:33.696000pt;}
._5{width:34.669440pt;}
._22{width:36.017280pt;}
._24{width:39.237120pt;}
._1e{width:40.584960pt;}
._25{width:46.705067pt;}
._1a{width:48.786987pt;}
._15{width:49.700267pt;}
._23{width:51.442560pt;}
._6{width:87.900160pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y4{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:12.800000pt;}
.y6{bottom:30.400000pt;}
.y26{bottom:104.352000pt;}
.y25{bottom:136.506667pt;}
.y24{bottom:168.666667pt;}
.y23{bottom:200.826667pt;}
.y22{bottom:233.146667pt;}
.y21{bottom:265.306667pt;}
.y20{bottom:297.466667pt;}
.y1f{bottom:329.666667pt;}
.y1e{bottom:361.986667pt;}
.y1d{bottom:394.146667pt;}
.y1c{bottom:426.306667pt;}
.y1b{bottom:458.466667pt;}
.y1a{bottom:490.626667pt;}
.y19{bottom:522.946667pt;}
.y18{bottom:555.133333pt;}
.y17{bottom:587.293333pt;}
.y16{bottom:619.453333pt;}
.y15{bottom:651.773333pt;}
.y14{bottom:683.933333pt;}
.y13{bottom:716.093333pt;}
.y12{bottom:748.253333pt;}
.y11{bottom:780.613333pt;}
.y10{bottom:812.773333pt;}
.yf{bottom:844.933333pt;}
.ye{bottom:877.093333pt;}
.yd{bottom:909.253333pt;}
.yc{bottom:941.573333pt;}
.yb{bottom:973.733333pt;}
.ya{bottom:1005.893333pt;}
.y5{bottom:1027.520000pt;}
.y3{bottom:1046.240000pt;}
.y1{bottom:1061.600000pt;}
.h4{height:5.760000pt;}
.h2{height:22.880000pt;}
.h5{height:24.640000pt;}
.h8{height:42.084375pt;}
.he{height:52.284375pt;}
.ha{height:52.832812pt;}
.hd{height:54.734062pt;}
.h3{height:55.136250pt;}
.hc{height:73.454062pt;}
.hb{height:73.490625pt;}
.h6{height:74.477812pt;}
.h9{height:75.465000pt;}
.hf{height:76.964840pt;}
.h7{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:359.293333pt;}
.w2{width:377.986667pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x9{left:12.320000pt;}
.x7{left:25.440000pt;}
.x1{left:28.320000pt;}
.x6{left:75.519988pt;}
.x4{left:87.866667pt;}
.x2{left:98.112000pt;}
.xc{left:100.351988pt;}
.xb{left:104.191988pt;}
.x13{left:113.311988pt;}
.x12{left:122.751988pt;}
.xd{left:198.906655pt;}
.xf{left:217.146655pt;}
.x14{left:240.986655pt;}
.xe{left:279.906655pt;}
.x10{left:287.906655pt;}
.x11{left:332.066655pt;}
.xa{left:396.866655pt;}
.x3{left:406.306667pt;}
.x8{left:708.933333pt;}
}




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