
    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_6ce68cc7eed3acddb1692e9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_71ca627a53f8d9cb8aa122aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_70130ac4ab55683d21f99bca.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;}
.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;}
.v1{vertical-align:67.560054px;}
.ls1{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.096600px;}
.lse{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.462240px;}
.ls10{letter-spacing:0.654001px;}
.lsf{letter-spacing:0.666001px;}
.ls9{letter-spacing:0.684001px;}
.ls4{letter-spacing:0.792001px;}
.lsa{letter-spacing:6.942246px;}
.lsc{letter-spacing:11.982250px;}
.ls2{letter-spacing:18.060014px;}
.lsb{letter-spacing:18.462255px;}
.ls3{letter-spacing:18.780015px;}
.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;}
}
.ws6{word-spacing:-37.800030px;}
.ws9{word-spacing:-30.443784px;}
.wsa{word-spacing:-30.431784px;}
.ws7{word-spacing:-29.723784px;}
.ws8{word-spacing:-29.712984px;}
.wsb{word-spacing:-29.681184px;}
.ws5{word-spacing:-27.174262px;}
.ws3{word-spacing:-24.624020px;}
.ws4{word-spacing:-24.588020px;}
.ws2{word-spacing:-24.408020px;}
.ws1{word-spacing:-24.048019px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-13.424775px;}
._3{margin-left:-12.240010px;}
._1{margin-left:-3.603866px;}
._0{margin-left:-2.046098px;}
._4{margin-left:-1.040805px;}
._2{width:1.079825px;}
._5{width:2.902150px;}
._f{width:6.129744px;}
._e{width:7.742134px;}
._c{width:9.607992px;}
._d{width:10.806278px;}
._11{width:12.046427px;}
._10{width:13.257779px;}
._7{width:18.132207px;}
._8{width:42.408106px;}
._a{width:67.051877px;}
._b{width:68.216595px;}
._9{width:608.552585px;}
.fc3{color:rgb(255,255,0);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:95.760077px;}
.fs1{font-size:108.000086px;}
.fs4{font-size:108.144087px;}
.fs0{font-size:120.240096px;}
.fs6{font-size:120.384096px;}
.fs7{font-size:131.760105px;}
.fs2{font-size:144.000115px;}
.fs5{font-size:144.144115px;}
.fs8{font-size:167.760134px;}
.fs9{font-size:167.904134px;}
.y0{bottom:0.000000px;}
.y2{bottom:12.851725px;}
.y39{bottom:20.159566px;}
.y1{bottom:31.211725px;}
.y38{bottom:59.759598px;}
.y29{bottom:62.028350px;}
.y37{bottom:99.359629px;}
.y36{bottom:138.996261px;}
.y22{bottom:165.060132px;}
.y35{bottom:178.589243px;}
.y21{bottom:180.570144px;}
.y34{bottom:218.189275px;}
.y33{bottom:257.789306px;}
.y32{bottom:297.434338px;}
.y20{bottom:309.495248px;}
.y1d{bottom:317.775254px;}
.y31{bottom:337.034370px;}
.y1f{bottom:341.895274px;}
.y1c{bottom:353.775283px;}
.y9{bottom:373.500749px;}
.y1e{bottom:374.295299px;}
.y30{bottom:376.634401px;}
.y8{bottom:402.330322px;}
.y2f{bottom:416.234433px;}
.y1b{bottom:421.890788px;}
.y2e{bottom:455.865365px;}
.y1a{bottom:457.920366px;}
.y25{bottom:485.070388px;}
.y28{bottom:486.720389px;}
.y19{bottom:493.920395px;}
.y2d{bottom:495.465396px;}
.y27{bottom:519.120415px;}
.y24{bottom:521.070417px;}
.y18{bottom:529.920424px;}
.y2c{bottom:535.065428px;}
.y16{bottom:538.020880px;}
.y26{bottom:551.520441px;}
.y23{bottom:557.100446px;}
.y17{bottom:565.920453px;}
.y2b{bottom:574.665460px;}
.y15{bottom:581.220915px;}
.y2a{bottom:614.310491px;}
.y14{bottom:624.420950px;}
.yf{bottom:647.070518px;}
.y3c{bottom:664.530982px;}
.y13{bottom:667.620984px;}
.ye{bottom:679.470544px;}
.yb{bottom:706.755565px;}
.y12{bottom:710.850569px;}
.yd{bottom:711.870569px;}
.y11{bottom:714.571022px;}
.y3b{bottom:714.931022px;}
.yc{bottom:717.450574px;}
.y3{bottom:737.175590px;}
.ya{bottom:742.755594px;}
.y6{bottom:743.400595px;}
.y10{bottom:747.000598px;}
.y4{bottom:754.050603px;}
.y3a{bottom:765.360612px;}
.y5{bottom:776.520621px;}
.y7{bottom:779.400624px;}
.h5{height:66.349389px;}
.h2{height:74.830138px;}
.h7{height:74.929912px;}
.h4{height:75.093810px;}
.h6{height:83.310887px;}
.h1{height:83.604442px;}
.ha{height:83.704567px;}
.hb{height:91.292768px;}
.h3{height:100.125080px;}
.h8{height:100.225205px;}
.hc{height:116.645718px;}
.hd{height:116.745843px;}
.h9{height:142.653864px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:10.800009px;}
.x17{left:16.811713px;}
.x18{left:33.191727px;}
.xf{left:36.108329px;}
.x1{left:40.428332px;}
.x4{left:44.568336px;}
.xe{left:52.991742px;}
.x12{left:54.503444px;}
.x6{left:61.416649px;}
.x7{left:78.300063px;}
.x13{left:85.103468px;}
.x14{left:142.163514px;}
.xa{left:171.075137px;}
.x3{left:297.720238px;}
.x19{left:315.331452px;}
.x15{left:373.680299px;}
.xc{left:441.180353px;}
.x11{left:508.710407px;}
.x10{left:576.210461px;}
.x2{left:643.710515px;}
.x16{left:728.130583px;}
.xd{left:744.990596px;}
.x9{left:753.375603px;}
.xb{left:772.950618px;}
.x8{left:854.715684px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.053381pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.085867pt;}
.lse{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.410880pt;}
.ls10{letter-spacing:0.581334pt;}
.lsf{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.608000pt;}
.ls4{letter-spacing:0.704001pt;}
.lsa{letter-spacing:6.170885pt;}
.lsc{letter-spacing:10.650889pt;}
.ls2{letter-spacing:16.053346pt;}
.lsb{letter-spacing:16.410893pt;}
.ls3{letter-spacing:16.693347pt;}
.ws6{word-spacing:-33.600027pt;}
.ws9{word-spacing:-27.061142pt;}
.wsa{word-spacing:-27.050475pt;}
.ws7{word-spacing:-26.421141pt;}
.ws8{word-spacing:-26.411541pt;}
.wsb{word-spacing:-26.383274pt;}
.ws5{word-spacing:-24.154899pt;}
.ws3{word-spacing:-21.888018pt;}
.ws4{word-spacing:-21.856017pt;}
.ws2{word-spacing:-21.696017pt;}
.ws1{word-spacing:-21.376017pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-11.933133pt;}
._3{margin-left:-10.880009pt;}
._1{margin-left:-3.203437pt;}
._0{margin-left:-1.818754pt;}
._4{margin-left:-0.925160pt;}
._2{width:0.959844pt;}
._5{width:2.579689pt;}
._f{width:5.448662pt;}
._e{width:6.881896pt;}
._c{width:8.540438pt;}
._d{width:9.605581pt;}
._11{width:10.707935pt;}
._10{width:11.784692pt;}
._7{width:16.117518pt;}
._8{width:37.696094pt;}
._a{width:59.601668pt;}
._b{width:60.636973pt;}
._9{width:540.935631pt;}
.fs3{font-size:85.120068pt;}
.fs1{font-size:96.000077pt;}
.fs4{font-size:96.128077pt;}
.fs0{font-size:106.880086pt;}
.fs6{font-size:107.008086pt;}
.fs7{font-size:117.120094pt;}
.fs2{font-size:128.000102pt;}
.fs5{font-size:128.128103pt;}
.fs8{font-size:149.120119pt;}
.fs9{font-size:149.248119pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:11.423756pt;}
.y39{bottom:17.919614pt;}
.y1{bottom:27.743756pt;}
.y38{bottom:53.119642pt;}
.y29{bottom:55.136311pt;}
.y37{bottom:88.319671pt;}
.y36{bottom:123.552232pt;}
.y22{bottom:146.720117pt;}
.y35{bottom:158.745994pt;}
.y21{bottom:160.506795pt;}
.y34{bottom:193.946022pt;}
.y33{bottom:229.146050pt;}
.y32{bottom:264.386078pt;}
.y20{bottom:275.106887pt;}
.y1d{bottom:282.466893pt;}
.y31{bottom:299.586106pt;}
.y1f{bottom:303.906910pt;}
.y1c{bottom:314.466918pt;}
.y9{bottom:332.000666pt;}
.y1e{bottom:332.706933pt;}
.y30{bottom:334.786134pt;}
.y8{bottom:357.626953pt;}
.y2f{bottom:369.986163pt;}
.y1b{bottom:375.014033pt;}
.y2e{bottom:405.213658pt;}
.y1a{bottom:407.040326pt;}
.y25{bottom:431.173678pt;}
.y28{bottom:432.640346pt;}
.y19{bottom:439.040351pt;}
.y2d{bottom:440.413686pt;}
.y27{bottom:461.440369pt;}
.y24{bottom:463.173704pt;}
.y18{bottom:471.040377pt;}
.y2c{bottom:475.613714pt;}
.y16{bottom:478.240783pt;}
.y26{bottom:490.240392pt;}
.y23{bottom:495.200396pt;}
.y17{bottom:503.040402pt;}
.y2b{bottom:510.813742pt;}
.y15{bottom:516.640813pt;}
.y2a{bottom:546.053770pt;}
.y14{bottom:555.040844pt;}
.yf{bottom:575.173793pt;}
.y3c{bottom:590.694206pt;}
.y13{bottom:593.440875pt;}
.ye{bottom:603.973817pt;}
.yb{bottom:628.227169pt;}
.y12{bottom:631.867172pt;}
.yd{bottom:632.773840pt;}
.y11{bottom:635.174241pt;}
.y3b{bottom:635.494242pt;}
.yc{bottom:637.733844pt;}
.y3{bottom:655.267191pt;}
.ya{bottom:660.227195pt;}
.y6{bottom:660.800529pt;}
.y10{bottom:664.000531pt;}
.y4{bottom:670.267203pt;}
.y3a{bottom:680.320544pt;}
.y5{bottom:690.240552pt;}
.y7{bottom:692.800554pt;}
.h5{height:58.977235pt;}
.h2{height:66.515678pt;}
.h7{height:66.604366pt;}
.h4{height:66.750053pt;}
.h6{height:74.054122pt;}
.h1{height:74.315059pt;}
.ha{height:74.404060pt;}
.hb{height:81.149127pt;}
.h3{height:89.000071pt;}
.h8{height:89.089071pt;}
.hc{height:103.685083pt;}
.hd{height:103.774083pt;}
.h9{height:126.803435pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600008pt;}
.x17{left:14.943745pt;}
.x18{left:29.503757pt;}
.xf{left:32.096292pt;}
.x1{left:35.936295pt;}
.x4{left:39.616298pt;}
.xe{left:47.103771pt;}
.x12{left:48.447505pt;}
.x6{left:54.592577pt;}
.x7{left:69.600056pt;}
.x13{left:75.647527pt;}
.x14{left:126.367568pt;}
.xa{left:152.066788pt;}
.x3{left:264.640212pt;}
.x19{left:280.294624pt;}
.x15{left:332.160266pt;}
.xc{left:392.160314pt;}
.x11{left:452.187028pt;}
.x10{left:512.187076pt;}
.x2{left:572.187124pt;}
.x16{left:647.227184pt;}
.xd{left:662.213863pt;}
.x9{left:669.667202pt;}
.xb{left:687.067216pt;}
.x8{left:759.747274pt;}
}




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