
    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_08383445f362e2fd91235e84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903320;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_fe5896934f67982b2a516447.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920410;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_654f0e2a6b40c94432454e99.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_6b098c3ca8d4c8337a28b32b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.792000;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_793c475b26465abdab8778eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.735000;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_53710049294069779504283a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.770000;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_d5189666181c4a128e50502d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980469;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;}
.m2{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248865,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);}
.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);}
.v1{vertical-align:-42.522000px;}
.v2{vertical-align:-41.160000px;}
.v3{vertical-align:-2.382000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:101.620800px;}
.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:-35.247864px;}
.ws3{word-spacing:-32.556204px;}
.ws9{word-spacing:-29.827932px;}
.ws2{word-spacing:-21.678372px;}
.ws4{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.144054px;}
.ws7{word-spacing:-0.094878px;}
.ws6{word-spacing:-0.088800px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:991.428435px;}
._c{margin-left:-13.778952px;}
._8{margin-left:-12.422994px;}
._b{margin-left:-11.234514px;}
._5{margin-left:-10.186374px;}
._2{margin-left:-8.266092px;}
._7{margin-left:-6.376452px;}
._3{margin-left:-4.366992px;}
._4{margin-left:-3.300792px;}
._1{margin-left:-1.385748px;}
._0{width:1.187784px;}
._9{width:2.190348px;}
._6{width:3.372762px;}
._a{width:5.419260px;}
.fc4{color:rgb(255,69,0);}
.fc2{color:rgb(51,63,72);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(119,142,159);}
.fs4{font-size:64.800000px;}
.fs0{font-size:65.988000px;}
.fs6{font-size:88.800000px;}
.fs7{font-size:94.878000px;}
.fs3{font-size:95.922000px;}
.fs8{font-size:120.078000px;}
.fsb{font-size:131.982000px;}
.fs5{font-size:144.054000px;}
.fs1{font-size:155.964000px;}
.fsa{font-size:168.036000px;}
.fs9{font-size:192.018000px;}
.fs2{font-size:216.000000px;}
.y1{bottom:-26.745000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.042000px;}
.y1a{bottom:43.753500px;}
.y7{bottom:43.795500px;}
.y4{bottom:77.046000px;}
.y19{bottom:92.008500px;}
.y30{bottom:103.494000px;}
.y3{bottom:129.430500px;}
.y29{bottom:152.646000px;}
.y21{bottom:156.303000px;}
.y2a{bottom:156.685500px;}
.y2b{bottom:202.351500px;}
.y2f{bottom:220.465500px;}
.yd{bottom:221.655000px;}
.y28{bottom:223.059000px;}
.y2e{bottom:224.674500px;}
.y12{bottom:225.483000px;}
.y20{bottom:225.907500px;}
.y1c{bottom:226.716000px;}
.yc{bottom:291.261000px;}
.y27{bottom:293.472000px;}
.y2d{bottom:294.705000px;}
.y1f{bottom:295.512000px;}
.y11{bottom:295.894500px;}
.y1b{bottom:296.320500px;}
.yb{bottom:361.248000px;}
.y26{bottom:363.883500px;}
.y2c{bottom:364.692000px;}
.y1e{bottom:365.116500px;}
.y24{bottom:365.499000px;}
.y10{bottom:365.925000px;}
.y6{bottom:388.290000px;}
.ya{bottom:431.277000px;}
.y25{bottom:434.296500px;}
.y23{bottom:434.722500px;}
.y1d{bottom:435.105000px;}
.yf{bottom:435.529500px;}
.y18{bottom:437.289000px;}
.y5{bottom:455.088000px;}
.y17{bottom:463.528500px;}
.y16{bottom:489.724500px;}
.y9{bottom:500.883000px;}
.y22{bottom:504.709500px;}
.ye{bottom:505.134000px;}
.y15{bottom:515.752500px;}
.y13{bottom:539.823000px;}
.y14{bottom:541.948500px;}
.y8{bottom:596.382000px;}
.h2{height:48.266613px;}
.h7{height:62.845623px;}
.h8{height:62.851623px;}
.h9{height:64.207623px;}
.h11{height:64.213623px;}
.hb{height:64.380000px;}
.he{height:64.393078px;}
.h12{height:64.399078px;}
.h14{height:65.755078px;}
.hc{height:67.488000px;}
.hd{height:68.786550px;}
.h13{height:69.840120px;}
.h6{height:70.161697px;}
.hf{height:73.255775px;}
.h10{height:73.261775px;}
.h17{height:96.537615px;}
.h4{height:115.754531px;}
.h16{height:124.714219px;}
.h15{height:142.513359px;}
.h5{height:160.312500px;}
.ha{height:168.480000px;}
.h1{height:775.303500px;}
.h3{height:809.956500px;}
.h0{height:810.000000px;}
.w3{width:1441.459500px;}
.w1{width:1441.500000px;}
.w2{width:1441.501500px;}
.w0{width:1441.502362px;}
.x0{left:0.000000px;}
.x7{left:42.519000px;}
.x9{left:55.147500px;}
.x8{left:59.400000px;}
.x4{left:190.786500px;}
.x5{left:279.949500px;}
.x1{left:317.580000px;}
.x14{left:371.835000px;}
.x12{left:534.600000px;}
.x13{left:553.011000px;}
.x2{left:652.890000px;}
.xa{left:871.983000px;}
.x10{left:1013.854500px;}
.xc{left:1016.839500px;}
.xb{left:1029.757500px;}
.xf{left:1044.331500px;}
.xe{left:1046.158500px;}
.xd{left:1051.470000px;}
.x3{left:1219.336500px;}
.x11{left:1371.175500px;}
.x6{left:1383.208500px;}
@media print{
.v1{vertical-align:-37.797333pt;}
.v2{vertical-align:-36.586667pt;}
.v3{vertical-align:-2.117333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:90.329600pt;}
.ws0{word-spacing:-31.331435pt;}
.ws3{word-spacing:-28.938848pt;}
.ws9{word-spacing:-26.513717pt;}
.ws2{word-spacing:-19.269664pt;}
.ws4{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.128048pt;}
.ws7{word-spacing:-0.084336pt;}
.ws6{word-spacing:-0.078933pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:881.269720pt;}
._c{margin-left:-12.247957pt;}
._8{margin-left:-11.042661pt;}
._b{margin-left:-9.986235pt;}
._5{margin-left:-9.054555pt;}
._2{margin-left:-7.347637pt;}
._7{margin-left:-5.667957pt;}
._3{margin-left:-3.881771pt;}
._4{margin-left:-2.934037pt;}
._1{margin-left:-1.231776pt;}
._0{width:1.055808pt;}
._9{width:1.946976pt;}
._6{width:2.998011pt;}
._a{width:4.817120pt;}
.fs4{font-size:57.600000pt;}
.fs0{font-size:58.656000pt;}
.fs6{font-size:78.933333pt;}
.fs7{font-size:84.336000pt;}
.fs3{font-size:85.264000pt;}
.fs8{font-size:106.736000pt;}
.fsb{font-size:117.317333pt;}
.fs5{font-size:128.048000pt;}
.fs1{font-size:138.634667pt;}
.fsa{font-size:149.365333pt;}
.fs9{font-size:170.682667pt;}
.fs2{font-size:192.000000pt;}
.y1{bottom:-23.773333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.037333pt;}
.y1a{bottom:38.892000pt;}
.y7{bottom:38.929333pt;}
.y4{bottom:68.485333pt;}
.y19{bottom:81.785333pt;}
.y30{bottom:91.994667pt;}
.y3{bottom:115.049333pt;}
.y29{bottom:135.685333pt;}
.y21{bottom:138.936000pt;}
.y2a{bottom:139.276000pt;}
.y2b{bottom:179.868000pt;}
.y2f{bottom:195.969333pt;}
.yd{bottom:197.026667pt;}
.y28{bottom:198.274667pt;}
.y2e{bottom:199.710667pt;}
.y12{bottom:200.429333pt;}
.y20{bottom:200.806667pt;}
.y1c{bottom:201.525333pt;}
.yc{bottom:258.898667pt;}
.y27{bottom:260.864000pt;}
.y2d{bottom:261.960000pt;}
.y1f{bottom:262.677333pt;}
.y11{bottom:263.017333pt;}
.y1b{bottom:263.396000pt;}
.yb{bottom:321.109333pt;}
.y26{bottom:323.452000pt;}
.y2c{bottom:324.170667pt;}
.y1e{bottom:324.548000pt;}
.y24{bottom:324.888000pt;}
.y10{bottom:325.266667pt;}
.y6{bottom:345.146667pt;}
.ya{bottom:383.357333pt;}
.y25{bottom:386.041333pt;}
.y23{bottom:386.420000pt;}
.y1d{bottom:386.760000pt;}
.yf{bottom:387.137333pt;}
.y18{bottom:388.701333pt;}
.y5{bottom:404.522667pt;}
.y17{bottom:412.025333pt;}
.y16{bottom:435.310667pt;}
.y9{bottom:445.229333pt;}
.y22{bottom:448.630667pt;}
.ye{bottom:449.008000pt;}
.y15{bottom:458.446667pt;}
.y13{bottom:479.842667pt;}
.y14{bottom:481.732000pt;}
.y8{bottom:530.117333pt;}
.h2{height:42.903656pt;}
.h7{height:55.862776pt;}
.h8{height:55.868109pt;}
.h9{height:57.073443pt;}
.h11{height:57.078776pt;}
.hb{height:57.226667pt;}
.he{height:57.238292pt;}
.h12{height:57.243625pt;}
.h14{height:58.448958pt;}
.hc{height:59.989333pt;}
.hd{height:61.143600pt;}
.h13{height:62.080107pt;}
.h6{height:62.365953pt;}
.hf{height:65.116245pt;}
.h10{height:65.121578pt;}
.h17{height:85.811214pt;}
.h4{height:102.892917pt;}
.h16{height:110.857083pt;}
.h15{height:126.678542pt;}
.h5{height:142.500000pt;}
.ha{height:149.760000pt;}
.h1{height:689.158667pt;}
.h3{height:719.961333pt;}
.h0{height:720.000000pt;}
.w3{width:1281.297333pt;}
.w1{width:1281.333333pt;}
.w2{width:1281.334667pt;}
.w0{width:1281.335433pt;}
.x0{left:0.000000pt;}
.x7{left:37.794667pt;}
.x9{left:49.020000pt;}
.x8{left:52.800000pt;}
.x4{left:169.588000pt;}
.x5{left:248.844000pt;}
.x1{left:282.293333pt;}
.x14{left:330.520000pt;}
.x12{left:475.200000pt;}
.x13{left:491.565333pt;}
.x2{left:580.346667pt;}
.xa{left:775.096000pt;}
.x10{left:901.204000pt;}
.xc{left:903.857333pt;}
.xb{left:915.340000pt;}
.xf{left:928.294667pt;}
.xe{left:929.918667pt;}
.xd{left:934.640000pt;}
.x3{left:1083.854667pt;}
.x11{left:1218.822667pt;}
.x6{left:1229.518667pt;}
}




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