
    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_9ed29fe8cb937c59bddf856c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_c2e91e5d964d17fa02faa69e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_fdea221e3b9b520ce144442f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_94e9f4a22dd8a8b3c4e874d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_9d963020190a34c695aed094.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_e95af6f8899b253af658c675.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.664000;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_275d12af23be4f9ddd7d7bc7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.389000;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_01bad4296f7a8faff320df10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_3cf9534660255e465adfe28a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_2b65a77d2267b9e399a80bb2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.931000;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_8b2a4e6aa0755c9183d3b1d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.656000;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_c52d4e8c5ffd5611dd5d0e6e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.685000;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);}
.v5{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.610000px;}
.v1{vertical-align:23.538000px;}
.v3{vertical-align:25.770000px;}
.v4{vertical-align:27.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.002153px;}
.ls26{letter-spacing:0.006496px;}
.ls16{letter-spacing:0.011352px;}
.ls5{letter-spacing:0.523637px;}
.ls6{letter-spacing:1.832729px;}
.ls9{letter-spacing:2.356366px;}
.ls27{letter-spacing:2.984915px;}
.ls19{letter-spacing:2.985072px;}
.ls17{letter-spacing:2.990915px;}
.ls22{letter-spacing:3.660769px;}
.ls1d{letter-spacing:3.764538px;}
.ls1f{letter-spacing:3.766211px;}
.ls11{letter-spacing:3.773414px;}
.ls2a{letter-spacing:7.172915px;}
.ls8{letter-spacing:10.865464px;}
.ls15{letter-spacing:14.530921px;}
.ls14{letter-spacing:17.534915px;}
.ls1b{letter-spacing:17.535072px;}
.ls13{letter-spacing:18.196379px;}
.ls1c{letter-spacing:20.552744px;}
.ls12{letter-spacing:21.170915px;}
.ls29{letter-spacing:23.956384px;}
.ls28{letter-spacing:24.152747px;}
.ls25{letter-spacing:25.789112px;}
.ls10{letter-spacing:26.426915px;}
.lsc{letter-spacing:27.032750px;}
.ls24{letter-spacing:28.407296px;}
.lsd{letter-spacing:28.988915px;}
.lse{letter-spacing:29.912752px;}
.ls0{letter-spacing:29.984525px;}
.lsb{letter-spacing:30.501844px;}
.lsf{letter-spacing:30.554915px;}
.ls3{letter-spacing:30.590915px;}
.ls21{letter-spacing:30.829117px;}
.ls4{letter-spacing:31.876390px;}
.ls18{letter-spacing:32.072754px;}
.ls23{letter-spacing:32.193072px;}
.ls1e{letter-spacing:32.397072px;}
.ls1{letter-spacing:32.727300px;}
.ls7{letter-spacing:33.512755px;}
.ls20{letter-spacing:33.824915px;}
.lsa{letter-spacing:35.280029px;}
.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;}
}
.ws53{word-spacing:-42.637126px;}
.ws30{word-spacing:-42.021853px;}
.ws22{word-spacing:-18.183288px;}
.ws48{word-spacing:-16.730196px;}
.ws68{word-spacing:-4.215276px;}
.ws69{word-spacing:-3.652367px;}
.ws5a{word-spacing:-3.390548px;}
.ws8{word-spacing:-3.335478px;}
.ws39{word-spacing:-3.194184px;}
.ws21{word-spacing:-2.146911px;}
.ws4d{word-spacing:-1.950547px;}
.ws5{word-spacing:-1.482435px;}
.ws23{word-spacing:-1.296001px;}
.ws4f{word-spacing:-1.008001px;}
.wse{word-spacing:-1.004230px;}
.ws51{word-spacing:-0.903273px;}
.ws1a{word-spacing:-0.706910px;}
.ws19{word-spacing:-0.576000px;}
.ws4{word-spacing:-0.286923px;}
.ws14{word-spacing:-0.086077px;}
.ws9{word-spacing:-0.035865px;}
.ws18{word-spacing:0.000000px;}
.ws6{word-spacing:0.011955px;}
.ws58{word-spacing:0.013091px;}
.ws6a{word-spacing:0.026182px;}
.ws45{word-spacing:0.144000px;}
.ws44{word-spacing:0.170182px;}
.ws60{word-spacing:0.418909px;}
.ws11{word-spacing:0.609711px;}
.ws13{word-spacing:1.028140px;}
.ws12{word-spacing:1.147692px;}
.ws1e{word-spacing:1.453092px;}
.ws10{word-spacing:1.625896px;}
.ws3{word-spacing:1.805223px;}
.ws64{word-spacing:1.845820px;}
.ws63{word-spacing:2.068365px;}
.ws50{word-spacing:2.513457px;}
.ws2b{word-spacing:2.565820px;}
.ws3f{word-spacing:3.089457px;}
.ws7{word-spacing:3.299613px;}
.ws38{word-spacing:3.351276px;}
.ws46{word-spacing:3.495276px;}
.ws4c{word-spacing:3.547639px;}
.ws16{word-spacing:3.613094px;}
.ws31{word-spacing:3.678549px;}
.ws61{word-spacing:3.691639px;}
.ws4b{word-spacing:4.097458px;}
.ws6d{word-spacing:4.136731px;}
.ws2{word-spacing:4.162913px;}
.wsb{word-spacing:4.196247px;}
.wsf{word-spacing:4.614676px;}
.ws3b{word-spacing:4.660368px;}
.wsc{word-spacing:4.913554px;}
.ws65{word-spacing:5.000731px;}
.ws47{word-spacing:5.066186px;}
.ws5f{word-spacing:5.314914px;}
.ws1d{word-spacing:5.380368px;}
.ws3a{word-spacing:5.406550px;}
.wsa{word-spacing:5.630862px;}
.ws2a{word-spacing:5.642187px;}
.ws52{word-spacing:5.969460px;}
.ws5d{word-spacing:6.192005px;}
.wsd{word-spacing:6.228618px;}
.ws5c{word-spacing:6.427642px;}
.ws3e{word-spacing:6.493096px;}
.ws66{word-spacing:6.624006px;}
.ws4a{word-spacing:6.637096px;}
.ws25{word-spacing:6.702551px;}
.ws1c{word-spacing:6.951279px;}
.ws2d{word-spacing:7.147642px;}
.ws56{word-spacing:7.671279px;}
.ws3c{word-spacing:7.684370px;}
.ws26{word-spacing:8.064007px;}
.ws5e{word-spacing:8.273461px;}
.ws2c{word-spacing:8.286552px;}
.ws40{word-spacing:8.391280px;}
.ws27{word-spacing:8.522189px;}
.ws41{word-spacing:8.849462px;}
.ws55{word-spacing:8.875644px;}
.ws49{word-spacing:9.189826px;}
.ws6b{word-spacing:9.399281px;}
.ws62{word-spacing:9.962190px;}
.ws2e{word-spacing:9.975281px;}
.ws36{word-spacing:10.171645px;}
.ws4e{word-spacing:10.354918px;}
.ws57{word-spacing:10.433463px;}
.ws6c{word-spacing:10.826191px;}
.ws5b{word-spacing:11.009464px;}
.ws54{word-spacing:11.140373px;}
.ws59{word-spacing:11.205828px;}
.ws1f{word-spacing:12.056737px;}
.ws42{word-spacing:13.326557px;}
.ws34{word-spacing:13.496739px;}
.ws32{word-spacing:13.562193px;}
.ws43{word-spacing:14.033466px;}
.ws37{word-spacing:14.426194px;}
.ws33{word-spacing:15.486558px;}
.ws17{word-spacing:15.591286px;}
.ws35{word-spacing:15.735286px;}
.ws3d{word-spacing:15.997104px;}
.ws24{word-spacing:16.389832px;}
.ws2f{word-spacing:16.848014px;}
.ws20{word-spacing:19.335289px;}
.ws1{word-spacing:23.312640px;}
.ws29{word-spacing:26.827469px;}
.ws28{word-spacing:32.192873px;}
.ws0{word-spacing:38.631358px;}
.ws15{word-spacing:39.639306px;}
.ws67{word-spacing:80.625869px;}
.ws1b{word-spacing:96.750773px;}
._12{margin-left:-32.792755px;}
._25{margin-left:-7.557586px;}
._5{margin-left:-5.941708px;}
._4{margin-left:-4.937452px;}
._1{margin-left:-3.202064px;}
._2{margin-left:-1.936742px;}
._3{width:1.936742px;}
._0{width:3.202064px;}
._22{width:4.519066px;}
._c{width:7.373424px;}
._6{width:16.139412px;}
._1d{width:17.345469px;}
._8{width:18.536681px;}
._a{width:21.842017px;}
._24{width:24.152747px;}
._7{width:25.464406px;}
._1e{width:28.210933px;}
._9{width:29.230268px;}
._11{width:30.960026px;}
._27{width:32.334572px;}
._1b{width:34.298210px;}
._b{width:35.470854px;}
._15{width:41.001475px;}
._13{width:42.741854px;}
._21{width:44.640037px;}
._26{width:48.240040px;}
._23{width:49.495341px;}
._1c{width:54.261863px;}
._e{width:60.545505px;}
._17{width:65.754977px;}
._10{width:66.894601px;}
._20{width:80.697600px;}
._1f{width:96.836850px;}
._14{width:571.980854px;}
._18{width:606.487663px;}
._f{width:704.226041px;}
._16{width:770.269733px;}
._19{width:843.198392px;}
._1a{width:1263.889767px;}
._d{width:1601.150425px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:137.449500px;}
.y23{bottom:182.281500px;}
.y22{bottom:202.605000px;}
.y43{bottom:215.964000px;}
.y42{bottom:236.287500px;}
.y98{bottom:237.870000px;}
.y21{bottom:239.292000px;}
.y7d{bottom:249.000000px;}
.y41{bottom:256.611000px;}
.y20{bottom:259.617000px;}
.y97{bottom:270.646500px;}
.y40{bottom:276.934500px;}
.y5e{bottom:279.709500px;}
.y1f{bottom:279.940500px;}
.y7c{bottom:285.762000px;}
.y96{bottom:297.780000px;}
.y95{bottom:303.423000px;}
.y7b{bottom:306.085500px;}
.y3f{bottom:307.827000px;}
.y5d{bottom:313.482000px;}
.y1e{bottom:316.627500px;}
.y7a{bottom:326.410500px;}
.y5c{bottom:333.805500px;}
.y94{bottom:336.198000px;}
.y1d{bottom:336.951000px;}
.y3e{bottom:344.953500px;}
.y1c{bottom:357.274500px;}
.y79{bottom:357.301500px;}
.y5b{bottom:364.698000px;}
.y93{bottom:368.974500px;}
.y1b{bottom:393.963000px;}
.y3d{bottom:396.511500px;}
.y78{bottom:401.121000px;}
.y92{bottom:404.239500px;}
.y5a{bottom:408.517500px;}
.y3c{bottom:416.835000px;}
.y77{bottom:421.444500px;}
.y59{bottom:428.841000px;}
.y1a{bottom:430.650000px;}
.y3b{bottom:437.158500px;}
.y91{bottom:440.767500px;}
.y58{bottom:449.164500px;}
.y76{bottom:451.482000px;}
.y3a{bottom:469.773000px;}
.y75{bottom:471.805500px;}
.y39{bottom:475.416000px;}
.y19{bottom:481.402500px;}
.y57{bottom:482.938500px;}
.y90{bottom:491.856000px;}
.y74{bottom:492.130500px;}
.y38{bottom:495.739500px;}
.y18{bottom:499.335000px;}
.y56{bottom:503.262000px;}
.y8f{bottom:512.179500px;}
.y17{bottom:517.267500px;}
.y55{bottom:523.585500px;}
.y73{bottom:528.658500px;}
.y37{bottom:533.995500px;}
.y16{bottom:535.200000px;}
.y8e{bottom:543.460500px;}
.y54{bottom:543.910500px;}
.y15{bottom:553.132500px;}
.y8d{bottom:563.784000px;}
.y14{bottom:571.065000px;}
.y36{bottom:572.253000px;}
.y53{bottom:577.683000px;}
.y72{bottom:580.216500px;}
.y13{bottom:588.999000px;}
.y8c{bottom:594.676500px;}
.y71{bottom:594.897000px;}
.y52{bottom:598.006500px;}
.y70{bottom:600.540000px;}
.y35{bottom:606.025500px;}
.y12{bottom:606.931500px;}
.y11{bottom:624.864000px;}
.y51{bottom:628.899000px;}
.y6f{bottom:634.314000px;}
.y10{bottom:637.644000px;}
.y8b{bottom:638.025000px;}
.y34{bottom:639.799500px;}
.yf{bottom:642.796500px;}
.y6e{bottom:654.637500px;}
.y8a{bottom:658.348500px;}
.ye{bottom:660.729000px;}
.y50{bottom:666.025500px;}
.y33{bottom:673.572000px;}
.y6d{bottom:674.961000px;}
.yd{bottom:678.661500px;}
.y89{bottom:678.672000px;}
.y6c{bottom:695.284500px;}
.yc{bottom:696.595500px;}
.y88{bottom:709.953000px;}
.y32{bottom:711.829500px;}
.yb{bottom:714.528000px;}
.y4f{bottom:717.583500px;}
.y6b{bottom:729.058500px;}
.y87{bottom:730.276500px;}
.y31{bottom:732.153000px;}
.ya{bottom:732.460500px;}
.y4e{bottom:737.907000px;}
.y6a{bottom:743.739000px;}
.y69{bottom:749.382000px;}
.y9{bottom:750.393000px;}
.y30{bottom:752.476500px;}
.y4d{bottom:758.230500px;}
.y86{bottom:761.557500px;}
.y8{bottom:768.325500px;}
.y2f{bottom:772.800000px;}
.y85{bottom:781.881000px;}
.y7{bottom:786.258000px;}
.y68{bottom:787.638000px;}
.y4c{bottom:792.004500px;}
.y2e{bottom:793.123500px;}
.y6{bottom:804.192000px;}
.y67{bottom:807.963000px;}
.y4b{bottom:812.328000px;}
.y84{bottom:812.773500px;}
.y2d{bottom:813.448500px;}
.y5{bottom:826.333500px;}
.y4a{bottom:832.651500px;}
.y2c{bottom:833.772000px;}
.y66{bottom:836.092500px;}
.y65{bottom:841.735500px;}
.y83{bottom:849.898500px;}
.y49{bottom:852.975000px;}
.y4{bottom:857.067000px;}
.y2b{bottom:870.300000px;}
.y64{bottom:875.509500px;}
.y48{bottom:886.749000px;}
.y82{bottom:900.987000px;}
.y47{bottom:907.072500px;}
.y63{bottom:913.765500px;}
.y3{bottom:914.737500px;}
.y81{bottom:921.310500px;}
.y2a{bottom:921.858000px;}
.y62{bottom:934.089000px;}
.y46{bottom:937.965000px;}
.y80{bottom:941.634000px;}
.y61{bottom:954.412500px;}
.y29{bottom:958.545000px;}
.y2{bottom:960.204000px;}
.y7f{bottom:974.910000px;}
.y28{bottom:978.870000px;}
.y45{bottom:981.783000px;}
.y60{bottom:988.186500px;}
.y1{bottom:990.600000px;}
.y7e{bottom:995.233500px;}
.y27{bottom:999.193500px;}
.y9a{bottom:1004.989500px;}
.y44{bottom:1015.557000px;}
.y5f{bottom:1019.079000px;}
.y99{bottom:1025.313000px;}
.y26{bottom:1035.880500px;}
.y25{bottom:1056.204000px;}
.h5{height:44.831700px;}
.h9{height:46.865494px;}
.h4{height:49.090950px;}
.hc{height:50.211840px;}
.h6{height:51.321619px;}
.h3{height:53.798400px;}
.hf{height:55.554699px;}
.ha{height:57.570699px;}
.he{height:58.824699px;}
.h8{height:60.254040px;}
.h7{height:65.441700px;}
.hb{height:69.437494px;}
.hd{height:71.662950px;}
.h2{height:72.304680px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:176.742000px;}
.x1{left:197.335500px;}
.x9{left:201.288000px;}
.x2{left:216.891000px;}
.x6{left:240.067500px;}
.xc{left:256.717500px;}
.x4{left:317.718000px;}
.xe{left:322.207500px;}
.x10{left:379.048500px;}
.xf{left:394.092000px;}
.x3{left:396.594000px;}
.xb{left:402.397500px;}
.x5{left:412.855500px;}
.xa{left:441.642000px;}
.x11{left:493.854000px;}
.xd{left:522.409500px;}
.x7{left:646.995000px;}
@media print{
.v5{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.320000pt;}
.v1{vertical-align:20.922667pt;}
.v3{vertical-align:22.906667pt;}
.v4{vertical-align:24.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.001914pt;}
.ls26{letter-spacing:0.005774pt;}
.ls16{letter-spacing:0.010091pt;}
.ls5{letter-spacing:0.465455pt;}
.ls6{letter-spacing:1.629092pt;}
.ls9{letter-spacing:2.094547pt;}
.ls27{letter-spacing:2.653258pt;}
.ls19{letter-spacing:2.653398pt;}
.ls17{letter-spacing:2.658591pt;}
.ls22{letter-spacing:3.254017pt;}
.ls1d{letter-spacing:3.346256pt;}
.ls1f{letter-spacing:3.347743pt;}
.ls11{letter-spacing:3.354146pt;}
.ls2a{letter-spacing:6.375925pt;}
.ls8{letter-spacing:9.658190pt;}
.ls15{letter-spacing:12.916374pt;}
.ls14{letter-spacing:15.586591pt;}
.ls1b{letter-spacing:15.586731pt;}
.ls13{letter-spacing:16.174559pt;}
.ls1c{letter-spacing:18.269106pt;}
.ls12{letter-spacing:18.818591pt;}
.ls29{letter-spacing:21.294563pt;}
.ls28{letter-spacing:21.469109pt;}
.ls25{letter-spacing:22.923655pt;}
.ls10{letter-spacing:23.490591pt;}
.lsc{letter-spacing:24.029111pt;}
.ls24{letter-spacing:25.250930pt;}
.lsd{letter-spacing:25.767925pt;}
.lse{letter-spacing:26.589113pt;}
.ls0{letter-spacing:26.652911pt;}
.lsb{letter-spacing:27.112750pt;}
.lsf{letter-spacing:27.159925pt;}
.ls3{letter-spacing:27.191925pt;}
.ls21{letter-spacing:27.403659pt;}
.ls4{letter-spacing:28.334569pt;}
.ls18{letter-spacing:28.509115pt;}
.ls23{letter-spacing:28.616064pt;}
.ls1e{letter-spacing:28.797398pt;}
.ls1{letter-spacing:29.090933pt;}
.ls7{letter-spacing:29.789116pt;}
.ls20{letter-spacing:30.066591pt;}
.lsa{letter-spacing:31.360026pt;}
.ws53{word-spacing:-37.899668pt;}
.ws30{word-spacing:-37.352758pt;}
.ws22{word-spacing:-16.162923pt;}
.ws48{word-spacing:-14.871285pt;}
.ws68{word-spacing:-3.746912pt;}
.ws69{word-spacing:-3.246548pt;}
.ws5a{word-spacing:-3.013821pt;}
.ws8{word-spacing:-2.964870pt;}
.ws39{word-spacing:-2.839275pt;}
.ws21{word-spacing:-1.908365pt;}
.ws4d{word-spacing:-1.733820pt;}
.ws5{word-spacing:-1.317720pt;}
.ws23{word-spacing:-1.152001pt;}
.ws4f{word-spacing:-0.896001pt;}
.wse{word-spacing:-0.892649pt;}
.ws51{word-spacing:-0.802910pt;}
.ws1a{word-spacing:-0.628364pt;}
.ws19{word-spacing:-0.512000pt;}
.ws4{word-spacing:-0.255043pt;}
.ws14{word-spacing:-0.076513pt;}
.ws9{word-spacing:-0.031880pt;}
.ws18{word-spacing:0.000000pt;}
.ws6{word-spacing:0.010627pt;}
.ws58{word-spacing:0.011636pt;}
.ws6a{word-spacing:0.023273pt;}
.ws45{word-spacing:0.128000pt;}
.ws44{word-spacing:0.151273pt;}
.ws60{word-spacing:0.372364pt;}
.ws11{word-spacing:0.541965pt;}
.ws13{word-spacing:0.913903pt;}
.ws12{word-spacing:1.020170pt;}
.ws1e{word-spacing:1.291637pt;}
.ws10{word-spacing:1.445241pt;}
.ws3{word-spacing:1.604643pt;}
.ws64{word-spacing:1.640729pt;}
.ws63{word-spacing:1.838547pt;}
.ws50{word-spacing:2.234184pt;}
.ws2b{word-spacing:2.280729pt;}
.ws3f{word-spacing:2.746184pt;}
.ws7{word-spacing:2.932989pt;}
.ws38{word-spacing:2.978912pt;}
.ws46{word-spacing:3.106912pt;}
.ws4c{word-spacing:3.153457pt;}
.ws16{word-spacing:3.211639pt;}
.ws31{word-spacing:3.269821pt;}
.ws61{word-spacing:3.281457pt;}
.ws4b{word-spacing:3.642185pt;}
.ws6d{word-spacing:3.677094pt;}
.ws2{word-spacing:3.700367pt;}
.wsb{word-spacing:3.729997pt;}
.wsf{word-spacing:4.101935pt;}
.ws3b{word-spacing:4.142549pt;}
.wsc{word-spacing:4.367604pt;}
.ws65{word-spacing:4.445095pt;}
.ws47{word-spacing:4.503276pt;}
.ws5f{word-spacing:4.724368pt;}
.ws1d{word-spacing:4.782549pt;}
.ws3a{word-spacing:4.805822pt;}
.wsa{word-spacing:5.005210pt;}
.ws2a{word-spacing:5.015277pt;}
.ws52{word-spacing:5.306186pt;}
.ws5d{word-spacing:5.504005pt;}
.wsd{word-spacing:5.536549pt;}
.ws5c{word-spacing:5.713459pt;}
.ws3e{word-spacing:5.771641pt;}
.ws66{word-spacing:5.888005pt;}
.ws4a{word-spacing:5.899641pt;}
.ws25{word-spacing:5.957823pt;}
.ws1c{word-spacing:6.178914pt;}
.ws2d{word-spacing:6.353460pt;}
.ws56{word-spacing:6.818915pt;}
.ws3c{word-spacing:6.830551pt;}
.ws26{word-spacing:7.168006pt;}
.ws5e{word-spacing:7.354188pt;}
.ws2c{word-spacing:7.365824pt;}
.ws40{word-spacing:7.458915pt;}
.ws27{word-spacing:7.575279pt;}
.ws41{word-spacing:7.866188pt;}
.ws55{word-spacing:7.889461pt;}
.ws49{word-spacing:8.168734pt;}
.ws6b{word-spacing:8.354916pt;}
.ws62{word-spacing:8.855280pt;}
.ws2e{word-spacing:8.866916pt;}
.ws36{word-spacing:9.041462pt;}
.ws4e{word-spacing:9.204371pt;}
.ws57{word-spacing:9.274190pt;}
.ws6c{word-spacing:9.623281pt;}
.ws5b{word-spacing:9.786190pt;}
.ws54{word-spacing:9.902554pt;}
.ws59{word-spacing:9.960736pt;}
.ws1f{word-spacing:10.717100pt;}
.ws42{word-spacing:11.845828pt;}
.ws34{word-spacing:11.997101pt;}
.ws32{word-spacing:12.055283pt;}
.ws43{word-spacing:12.474192pt;}
.ws37{word-spacing:12.823283pt;}
.ws33{word-spacing:13.765830pt;}
.ws17{word-spacing:13.858921pt;}
.ws35{word-spacing:13.986921pt;}
.ws3d{word-spacing:14.219648pt;}
.ws24{word-spacing:14.568739pt;}
.ws2f{word-spacing:14.976012pt;}
.ws20{word-spacing:17.186923pt;}
.ws1{word-spacing:20.722347pt;}
.ws29{word-spacing:23.846639pt;}
.ws28{word-spacing:28.615887pt;}
.ws0{word-spacing:34.338985pt;}
.ws15{word-spacing:35.234938pt;}
.ws67{word-spacing:71.667439pt;}
.ws1b{word-spacing:86.000687pt;}
._12{margin-left:-29.149115pt;}
._25{margin-left:-6.717854pt;}
._5{margin-left:-5.281518pt;}
._4{margin-left:-4.388846pt;}
._1{margin-left:-2.846279pt;}
._2{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._0{width:2.846279pt;}
._22{width:4.016947pt;}
._c{width:6.554154pt;}
._6{width:14.346144pt;}
._1d{width:15.418195pt;}
._8{width:16.477050pt;}
._a{width:19.415126pt;}
._24{width:21.469109pt;}
._7{width:22.635027pt;}
._1e{width:25.076385pt;}
._9{width:25.982461pt;}
._11{width:27.520023pt;}
._27{width:28.741842pt;}
._1b{width:30.487298pt;}
._b{width:31.529648pt;}
._15{width:36.445756pt;}
._13{width:37.992759pt;}
._21{width:39.680033pt;}
._26{width:42.880036pt;}
._23{width:43.995859pt;}
._1c{width:48.232767pt;}
._e{width:53.818227pt;}
._17{width:58.448869pt;}
._10{width:59.461868pt;}
._20{width:71.731200pt;}
._1f{width:86.077200pt;}
._14{width:508.427426pt;}
._18{width:539.100145pt;}
._f{width:625.978703pt;}
._16{width:684.684207pt;}
._19{width:749.509682pt;}
._1a{width:1123.457571pt;}
._d{width:1423.244822pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:122.177333pt;}
.y23{bottom:162.028000pt;}
.y22{bottom:180.093333pt;}
.y43{bottom:191.968000pt;}
.y42{bottom:210.033333pt;}
.y98{bottom:211.440000pt;}
.y21{bottom:212.704000pt;}
.y7d{bottom:221.333333pt;}
.y41{bottom:228.098667pt;}
.y20{bottom:230.770667pt;}
.y97{bottom:240.574667pt;}
.y40{bottom:246.164000pt;}
.y5e{bottom:248.630667pt;}
.y1f{bottom:248.836000pt;}
.y7c{bottom:254.010667pt;}
.y96{bottom:264.693333pt;}
.y95{bottom:269.709333pt;}
.y7b{bottom:272.076000pt;}
.y3f{bottom:273.624000pt;}
.y5d{bottom:278.650667pt;}
.y1e{bottom:281.446667pt;}
.y7a{bottom:290.142667pt;}
.y5c{bottom:296.716000pt;}
.y94{bottom:298.842667pt;}
.y1d{bottom:299.512000pt;}
.y3e{bottom:306.625333pt;}
.y1c{bottom:317.577333pt;}
.y79{bottom:317.601333pt;}
.y5b{bottom:324.176000pt;}
.y93{bottom:327.977333pt;}
.y1b{bottom:350.189333pt;}
.y3d{bottom:352.454667pt;}
.y78{bottom:356.552000pt;}
.y92{bottom:359.324000pt;}
.y5a{bottom:363.126667pt;}
.y3c{bottom:370.520000pt;}
.y77{bottom:374.617333pt;}
.y59{bottom:381.192000pt;}
.y1a{bottom:382.800000pt;}
.y3b{bottom:388.585333pt;}
.y91{bottom:391.793333pt;}
.y58{bottom:399.257333pt;}
.y76{bottom:401.317333pt;}
.y3a{bottom:417.576000pt;}
.y75{bottom:419.382667pt;}
.y39{bottom:422.592000pt;}
.y19{bottom:427.913333pt;}
.y57{bottom:429.278667pt;}
.y90{bottom:437.205333pt;}
.y74{bottom:437.449333pt;}
.y38{bottom:440.657333pt;}
.y18{bottom:443.853333pt;}
.y56{bottom:447.344000pt;}
.y8f{bottom:455.270667pt;}
.y17{bottom:459.793333pt;}
.y55{bottom:465.409333pt;}
.y73{bottom:469.918667pt;}
.y37{bottom:474.662667pt;}
.y16{bottom:475.733333pt;}
.y8e{bottom:483.076000pt;}
.y54{bottom:483.476000pt;}
.y15{bottom:491.673333pt;}
.y8d{bottom:501.141333pt;}
.y14{bottom:507.613333pt;}
.y36{bottom:508.669333pt;}
.y53{bottom:513.496000pt;}
.y72{bottom:515.748000pt;}
.y13{bottom:523.554667pt;}
.y8c{bottom:528.601333pt;}
.y71{bottom:528.797333pt;}
.y52{bottom:531.561333pt;}
.y70{bottom:533.813333pt;}
.y35{bottom:538.689333pt;}
.y12{bottom:539.494667pt;}
.y11{bottom:555.434667pt;}
.y51{bottom:559.021333pt;}
.y6f{bottom:563.834667pt;}
.y10{bottom:566.794667pt;}
.y8b{bottom:567.133333pt;}
.y34{bottom:568.710667pt;}
.yf{bottom:571.374667pt;}
.y6e{bottom:581.900000pt;}
.y8a{bottom:585.198667pt;}
.ye{bottom:587.314667pt;}
.y50{bottom:592.022667pt;}
.y33{bottom:598.730667pt;}
.y6d{bottom:599.965333pt;}
.yd{bottom:603.254667pt;}
.y89{bottom:603.264000pt;}
.y6c{bottom:618.030667pt;}
.yc{bottom:619.196000pt;}
.y88{bottom:631.069333pt;}
.y32{bottom:632.737333pt;}
.yb{bottom:635.136000pt;}
.y4f{bottom:637.852000pt;}
.y6b{bottom:648.052000pt;}
.y87{bottom:649.134667pt;}
.y31{bottom:650.802667pt;}
.ya{bottom:651.076000pt;}
.y4e{bottom:655.917333pt;}
.y6a{bottom:661.101333pt;}
.y69{bottom:666.117333pt;}
.y9{bottom:667.016000pt;}
.y30{bottom:668.868000pt;}
.y4d{bottom:673.982667pt;}
.y86{bottom:676.940000pt;}
.y8{bottom:682.956000pt;}
.y2f{bottom:686.933333pt;}
.y85{bottom:695.005333pt;}
.y7{bottom:698.896000pt;}
.y68{bottom:700.122667pt;}
.y4c{bottom:704.004000pt;}
.y2e{bottom:704.998667pt;}
.y6{bottom:714.837333pt;}
.y67{bottom:718.189333pt;}
.y4b{bottom:722.069333pt;}
.y84{bottom:722.465333pt;}
.y2d{bottom:723.065333pt;}
.y5{bottom:734.518667pt;}
.y4a{bottom:740.134667pt;}
.y2c{bottom:741.130667pt;}
.y66{bottom:743.193333pt;}
.y65{bottom:748.209333pt;}
.y83{bottom:755.465333pt;}
.y49{bottom:758.200000pt;}
.y4{bottom:761.837333pt;}
.y2b{bottom:773.600000pt;}
.y64{bottom:778.230667pt;}
.y48{bottom:788.221333pt;}
.y82{bottom:800.877333pt;}
.y47{bottom:806.286667pt;}
.y63{bottom:812.236000pt;}
.y3{bottom:813.100000pt;}
.y81{bottom:818.942667pt;}
.y2a{bottom:819.429333pt;}
.y62{bottom:830.301333pt;}
.y46{bottom:833.746667pt;}
.y80{bottom:837.008000pt;}
.y61{bottom:848.366667pt;}
.y29{bottom:852.040000pt;}
.y2{bottom:853.514667pt;}
.y7f{bottom:866.586667pt;}
.y28{bottom:870.106667pt;}
.y45{bottom:872.696000pt;}
.y60{bottom:878.388000pt;}
.y1{bottom:880.533333pt;}
.y7e{bottom:884.652000pt;}
.y27{bottom:888.172000pt;}
.y9a{bottom:893.324000pt;}
.y44{bottom:902.717333pt;}
.y5f{bottom:905.848000pt;}
.y99{bottom:911.389333pt;}
.y26{bottom:920.782667pt;}
.y25{bottom:938.848000pt;}
.h5{height:39.850400pt;}
.h9{height:41.658217pt;}
.h4{height:43.636400pt;}
.hc{height:44.632747pt;}
.h6{height:45.619217pt;}
.h3{height:47.820800pt;}
.hf{height:49.381955pt;}
.ha{height:51.173955pt;}
.he{height:52.288621pt;}
.h8{height:53.559147pt;}
.h7{height:58.170400pt;}
.hb{height:61.722217pt;}
.hd{height:63.700400pt;}
.h2{height:64.270827pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:157.104000pt;}
.x1{left:175.409333pt;}
.x9{left:178.922667pt;}
.x2{left:192.792000pt;}
.x6{left:213.393333pt;}
.xc{left:228.193333pt;}
.x4{left:282.416000pt;}
.xe{left:286.406667pt;}
.x10{left:336.932000pt;}
.xf{left:350.304000pt;}
.x3{left:352.528000pt;}
.xb{left:357.686667pt;}
.x5{left:366.982667pt;}
.xa{left:392.570667pt;}
.x11{left:438.981333pt;}
.xd{left:464.364000pt;}
.x7{left:575.106667pt;}
}




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