
    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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.739746;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_b9b41eee8af4fe824d4be704.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d867e456a59e75d150661b88.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_0496aff6baa94a30e78930c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_3be48b214167a82604fa7ba6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.378906;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:72.000000px;}
.v2{vertical-align:100.368000px;}
.lsf{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.324000px;}
.ls3{letter-spacing:9.681120px;}
.ls8{letter-spacing:24.033600px;}
.ls5{letter-spacing:24.084000px;}
.ls7{letter-spacing:24.204000px;}
.ls9{letter-spacing:32.400000px;}
.lsa{letter-spacing:38.939760px;}
.lsb{letter-spacing:44.717760px;}
.lsc{letter-spacing:47.871360px;}
.lsd{letter-spacing:47.883360px;}
.lse{letter-spacing:59.760000px;}
.ls4{letter-spacing:60.801120px;}
.ls2{letter-spacing:140.400000px;}
.ls1{letter-spacing:186.033600px;}
.ls0{letter-spacing:186.084000px;}
.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;}
}
.ws3c{word-spacing:0.000000px;}
.ws3a{word-spacing:8.712000px;}
.ws17{word-spacing:21.193920px;}
.ws6{word-spacing:21.312000px;}
.wsb{word-spacing:25.272000px;}
.ws1{word-spacing:27.864000px;}
.ws1a{word-spacing:36.223920px;}
.ws2c{word-spacing:38.748000px;}
.ws1b{word-spacing:42.500880px;}
.ws30{word-spacing:53.699040px;}
.ws23{word-spacing:56.880000px;}
.ws32{word-spacing:62.328000px;}
.ws36{word-spacing:69.119040px;}
.ws1d{word-spacing:76.723920px;}
.ws1c{word-spacing:83.484000px;}
.ws2b{word-spacing:87.634800px;}
.ws14{word-spacing:89.858640px;}
.ws34{word-spacing:91.383120px;}
.ws18{word-spacing:92.607552px;}
.ws20{word-spacing:100.656000px;}
.ws37{word-spacing:100.974720px;}
.ws21{word-spacing:101.808000px;}
.ws16{word-spacing:104.443200px;}
.ws39{word-spacing:112.008000px;}
.ws12{word-spacing:116.853600px;}
.ws4{word-spacing:122.232000px;}
.ws28{word-spacing:124.253280px;}
.ws29{word-spacing:124.329360px;}
.ws33{word-spacing:125.466960px;}
.wsa{word-spacing:128.064000px;}
.wsd{word-spacing:136.080000px;}
.ws26{word-spacing:136.296000px;}
.ws15{word-spacing:144.600480px;}
.ws2a{word-spacing:149.942160px;}
.ws22{word-spacing:151.632000px;}
.ws9{word-spacing:157.896000px;}
.ws8{word-spacing:167.832000px;}
.wsc{word-spacing:185.130048px;}
.ws1f{word-spacing:185.184000px;}
.ws13{word-spacing:189.266640px;}
.wse{word-spacing:193.968000px;}
.ws27{word-spacing:194.032080px;}
.ws19{word-spacing:195.177600px;}
.ws2d{word-spacing:202.536768px;}
.wsf{word-spacing:204.876000px;}
.ws3{word-spacing:209.856000px;}
.ws2e{word-spacing:211.656000px;}
.ws7{word-spacing:214.200000px;}
.ws0{word-spacing:214.272000px;}
.ws31{word-spacing:217.560000px;}
.ws11{word-spacing:220.558800px;}
.ws10{word-spacing:228.526320px;}
.ws5{word-spacing:237.216000px;}
.ws2{word-spacing:241.042800px;}
.ws38{word-spacing:264.576000px;}
.ws1e{word-spacing:287.604000px;}
.ws35{word-spacing:298.922880px;}
.ws25{word-spacing:311.760000px;}
.ws2f{word-spacing:369.912000px;}
.ws24{word-spacing:421.128000px;}
.ws3b{word-spacing:8854.094640px;}
._68{margin-left:-10.578240px;}
._45{margin-left:-7.652160px;}
._2b{margin-left:-5.797200px;}
._53{margin-left:-2.520000px;}
._23{width:3.552000px;}
._72{width:8.712000px;}
._4b{width:13.280400px;}
._19{width:16.892112px;}
._26{width:20.160000px;}
._1a{width:21.600000px;}
._f{width:22.604400px;}
._25{width:27.000000px;}
._50{width:28.013760px;}
._52{width:29.854800px;}
._4e{width:31.580640px;}
._1f{width:34.920000px;}
._6{width:39.240000px;}
._6a{width:40.500000px;}
._6d{width:44.698560px;}
._14{width:50.610528px;}
._4d{width:56.793120px;}
._33{width:60.480000px;}
._69{width:62.399280px;}
._54{width:66.674736px;}
._10{width:69.987024px;}
._2a{width:71.136000px;}
._6e{width:78.102720px;}
._5a{width:79.609680px;}
._67{width:83.862720px;}
._55{width:89.136000px;}
._d{width:94.448448px;}
._59{width:98.517360px;}
._39{width:99.685200px;}
._71{width:104.444880px;}
._18{width:107.568000px;}
._2e{width:113.112000px;}
._1e{width:115.704000px;}
._31{width:121.392000px;}
._43{width:123.207840px;}
._27{width:124.488000px;}
._66{width:127.101600px;}
._c{width:128.412000px;}
._7{width:129.960000px;}
._29{width:131.976000px;}
._1d{width:133.740000px;}
._64{width:135.958320px;}
._1b{width:137.664000px;}
._5c{width:144.190560px;}
._8{width:149.472000px;}
._5d{width:151.877520px;}
._16{width:154.512000px;}
._a{width:156.240000px;}
._4c{width:157.757280px;}
._3c{width:159.503040px;}
._15{width:162.144000px;}
._b{width:164.376000px;}
._5e{width:166.491840px;}
._5{width:167.688000px;}
._30{width:177.984000px;}
._3{width:183.456000px;}
._49{width:187.782528px;}
._3d{width:189.041520px;}
._12{width:190.087488px;}
._2d{width:193.680000px;}
._58{width:195.912000px;}
._6f{width:197.316480px;}
._42{width:198.329520px;}
._40{width:203.005440px;}
._70{width:208.584000px;}
._5f{width:209.790720px;}
._17{width:211.623552px;}
._4a{width:216.087120px;}
._2{width:220.944000px;}
._e{width:222.844896px;}
._48{width:224.894880px;}
._32{width:226.485312px;}
._56{width:229.320000px;}
._36{width:231.480000px;}
._21{width:234.048000px;}
._0{width:238.464000px;}
._22{width:240.816000px;}
._6c{width:242.024880px;}
._1c{width:243.864000px;}
._5b{width:252.802560px;}
._62{width:254.316960px;}
._46{width:260.951760px;}
._4f{width:263.116800px;}
._51{width:268.020000px;}
._63{width:280.296000px;}
._1{width:282.888000px;}
._44{width:284.458032px;}
._57{width:290.880000px;}
._20{width:293.328000px;}
._47{width:297.224832px;}
._60{width:298.314480px;}
._37{width:305.568000px;}
._6b{width:311.391840px;}
._34{width:315.504000px;}
._3b{width:330.264000px;}
._38{width:332.964000px;}
._9{width:337.224000px;}
._24{width:340.608000px;}
._28{width:345.086688px;}
._11{width:363.169200px;}
._2f{width:364.311888px;}
._4{width:368.316000px;}
._35{width:378.468000px;}
._3a{width:389.379888px;}
._61{width:394.386240px;}
._13{width:400.304592px;}
._3e{width:404.793120px;}
._2c{width:408.384000px;}
._3f{width:412.439520px;}
._41{width:420.094080px;}
._65{width:445.602000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:159.840000px;}
.fs7{font-size:192.240000px;}
.fs11{font-size:204.480000px;}
.fsc{font-size:210.240000px;}
.fs1{font-size:216.000000px;}
.fs3{font-size:216.144000px;}
.fs10{font-size:227.520000px;}
.fsb{font-size:228.240000px;}
.fs0{font-size:239.760000px;}
.fs2{font-size:239.904000px;}
.fs8{font-size:252.000000px;}
.fs9{font-size:252.144000px;}
.fs4{font-size:264.240000px;}
.fs5{font-size:264.384000px;}
.fsf{font-size:282.240000px;}
.fse{font-size:288.000000px;}
.fsd{font-size:288.144000px;}
.fsa{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:50.328000px;}
.y95{bottom:107.928000px;}
.y1d{bottom:217.155000px;}
.y13{bottom:238.215000px;}
.y1c{bottom:310.395000px;}
.y12{bottom:312.045000px;}
.y11{bottom:385.845000px;}
.y1b{bottom:403.635000px;}
.y10{bottom:459.645000px;}
.y1a{bottom:496.875000px;}
.yf{bottom:533.445000px;}
.y19{bottom:581.115000px;}
.ye{bottom:607.245000px;}
.y18{bottom:665.355000px;}
.yd{bottom:672.045000px;}
.yc{bottom:745.845000px;}
.y17{bottom:758.595000px;}
.yb{bottom:810.645000px;}
.y16{bottom:842.835000px;}
.ya{bottom:884.445000px;}
.y15{bottom:927.075000px;}
.y9{bottom:958.245000px;}
.y8{bottom:1032.045000px;}
.y1e{bottom:1033.380000px;}
.y5c{bottom:1064.085000px;}
.y59{bottom:1095.195000px;}
.y90{bottom:1125.570000px;}
.y5b{bottom:1128.885000px;}
.y94{bottom:1130.835000px;}
.y14{bottom:1159.305000px;}
.y58{bottom:1160.025000px;}
.y8f{bottom:1190.370000px;}
.y5a{bottom:1193.685000px;}
.y93{bottom:1195.635000px;}
.y8e{bottom:1255.170000px;}
.y92{bottom:1260.435000px;}
.y36{bottom:1303.815000px;}
.y2d{bottom:1315.875000px;}
.y91{bottom:1335.315000px;}
.y8d{bottom:1338.150000px;}
.y4f{bottom:1370.010000px;}
.y35{bottom:1375.125000px;}
.y2c{bottom:1380.675000px;}
.y3e{bottom:1416.600000px;}
.y46{bottom:1427.070000px;}
.y4e{bottom:1438.050000px;}
.y2b{bottom:1463.475000px;}
.y34{bottom:1464.405000px;}
.y45{bottom:1498.350000px;}
.y3d{bottom:1499.400000px;}
.y4d{bottom:1506.090000px;}
.y2a{bottom:1528.275000px;}
.y33{bottom:1535.685000px;}
.y56{bottom:1535.730000px;}
.y3c{bottom:1564.200000px;}
.y44{bottom:1569.630000px;}
.y4c{bottom:1574.130000px;}
.y29{bottom:1593.075000px;}
.y55{bottom:1607.010000px;}
.y32{bottom:1624.965000px;}
.y4b{bottom:1642.170000px;}
.y3b{bottom:1647.000000px;}
.y28{bottom:1657.875000px;}
.y43{bottom:1658.955000px;}
.y54{bottom:1678.290000px;}
.y4a{bottom:1710.255000px;}
.y3a{bottom:1711.800000px;}
.y31{bottom:1714.245000px;}
.y27{bottom:1722.675000px;}
.y42{bottom:1730.235000px;}
.y53{bottom:1749.570000px;}
.y39{bottom:1776.600000px;}
.y30{bottom:1785.525000px;}
.y49{bottom:1787.295000px;}
.y26{bottom:1787.475000px;}
.y41{bottom:1801.515000px;}
.y52{bottom:1849.350000px;}
.y48{bottom:1901.370000px;}
.y2f{bottom:1908.390000px;}
.y25{bottom:1910.340000px;}
.y40{bottom:1910.550000px;}
.y38{bottom:1911.345000px;}
.y51{bottom:1914.150000px;}
.y47{bottom:1966.170000px;}
.y2e{bottom:1973.190000px;}
.y24{bottom:1975.140000px;}
.y3f{bottom:1975.350000px;}
.y37{bottom:1976.145000px;}
.y50{bottom:1978.950000px;}
.y74{bottom:2174.370000px;}
.y77{bottom:2174.790000px;}
.y71{bottom:2206.620000px;}
.y73{bottom:2260.770000px;}
.y76{bottom:2261.190000px;}
.y70{bottom:2303.820000px;}
.y72{bottom:2347.200000px;}
.y75{bottom:2347.635000px;}
.y6{bottom:2489.295000px;}
.y80{bottom:2546.790000px;}
.y7c{bottom:2555.385000px;}
.y5{bottom:2572.095000px;}
.y7f{bottom:2625.990000px;}
.y7b{bottom:2634.630000px;}
.y4{bottom:2636.925000px;}
.y7e{bottom:2705.190000px;}
.y7a{bottom:2713.830000px;}
.y3{bottom:2719.725000px;}
.y7d{bottom:2784.390000px;}
.y2{bottom:2784.525000px;}
.y79{bottom:2793.030000px;}
.y1{bottom:2849.325000px;}
.y78{bottom:2919.630000px;}
.y7{bottom:2926.695000px;}
.y6f{bottom:3057.945000px;}
.y6e{bottom:3194.355000px;}
.y6d{bottom:3251.955000px;}
.y6c{bottom:3309.555000px;}
.y6b{bottom:3385.155000px;}
.y6a{bottom:3442.755000px;}
.y69{bottom:3500.355000px;}
.y68{bottom:3575.955000px;}
.y67{bottom:3633.555000px;}
.y66{bottom:3719.340000px;}
.y84{bottom:3819.960000px;}
.y65{bottom:3843.795000px;}
.y88{bottom:3860.790000px;}
.y83{bottom:3888.180000px;}
.y64{bottom:3908.595000px;}
.y87{bottom:3922.170000px;}
.y82{bottom:3956.400000px;}
.y63{bottom:3982.395000px;}
.y86{bottom:3983.550000px;}
.y81{bottom:4024.620000px;}
.y85{bottom:4045.110000px;}
.y62{bottom:4047.195000px;}
.y61{bottom:4111.995000px;}
.y8c{bottom:4132.650000px;}
.y60{bottom:4185.795000px;}
.y8b{bottom:4200.870000px;}
.y5f{bottom:4250.595000px;}
.y8a{bottom:4269.090000px;}
.y89{bottom:4337.310000px;}
.y5e{bottom:4341.705000px;}
.y57{bottom:4362.195000px;}
.y5d{bottom:4406.505000px;}
.y23{bottom:4546.545000px;}
.y22{bottom:4629.030000px;}
.y21{bottom:4779.540000px;}
.y20{bottom:4857.660000px;}
.y1f{bottom:4937.940000px;}
.h9{height:191.207461px;}
.h13{height:203.381719px;}
.h2{height:214.839844px;}
.h3{height:214.983070px;}
.h6{height:221.167969px;}
.h12{height:226.297969px;}
.he{height:232.003125px;}
.h8{height:238.472227px;}
.h14{height:245.496445px;}
.ha{height:250.646484px;}
.hb{height:250.789711px;}
.hd{height:251.866406px;}
.h7{height:262.820742px;}
.h5{height:262.963969px;}
.h4{height:270.562148px;}
.h10{height:286.453125px;}
.hf{height:286.596352px;}
.h11{height:311.456250px;}
.h15{height:315.207844px;}
.hc{height:322.259766px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x27{left:30.743947px;}
.xe{left:52.739947px;}
.x10{left:59.183947px;}
.x11{left:86.183947px;}
.x3c{left:91.151947px;}
.x3e{left:97.955947px;}
.xf{left:147.239947px;}
.x3d{left:158.654947px;}
.x30{left:279.074947px;}
.x36{left:302.219947px;}
.x40{left:352.694947px;}
.x37{left:360.179947px;}
.x46{left:382.859947px;}
.x38{left:474.299947px;}
.x39{left:617.369947px;}
.x29{left:633.344947px;}
.x2a{left:650.264947px;}
.xa{left:684.509947px;}
.x3f{left:694.409947px;}
.x28{left:737.924947px;}
.x14{left:756.929947px;}
.x15{left:762.329947px;}
.x12{left:811.514947px;}
.x13{left:821.594947px;}
.x3a{left:845.069947px;}
.xb{left:887.549947px;}
.x3b{left:912.569947px;}
.xc{left:942.509947px;}
.x2d{left:1037.669947px;}
.x2f{left:1039.754947px;}
.x2b{left:1054.109947px;}
.x9{left:1092.749947px;}
.xd{left:1118.909947px;}
.x2e{left:1156.604947px;}
.x7{left:1282.529947px;}
.x45{left:1326.884947px;}
.x2c{left:1348.049947px;}
.x18{left:1352.594947px;}
.x19{left:1379.624947px;}
.x16{left:1400.429947px;}
.x17{left:1445.969947px;}
.x31{left:1557.689947px;}
.x1{left:1600.814947px;}
.x8{left:1611.179947px;}
.x32{left:1651.469947px;}
.x2{left:1668.314947px;}
.x26{left:1954.544947px;}
.x1c{left:1970.744947px;}
.x1b{left:1979.459947px;}
.x1a{left:1982.879947px;}
.x1d{left:1997.744947px;}
.x43{left:2044.049947px;}
.x44{left:2066.549947px;}
.x42{left:2091.209947px;}
.x41{left:2230.169947px;}
.x3{left:2260.619947px;}
.x1f{left:2570.579947px;}
.x33{left:2577.674947px;}
.x35{left:2601.074947px;}
.x20{left:2609.894947px;}
.x21{left:2636.894947px;}
.x1e{left:2645.459947px;}
.x34{left:2649.494947px;}
.x6{left:2760.089947px;}
.x4{left:2779.349947px;}
.x5{left:2833.349947px;}
.x24{left:3120.839947px;}
.x25{left:3147.839947px;}
.x22{left:3151.409947px;}
.x23{left:3198.389947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:64.000000pt;}
.v2{vertical-align:89.216000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.288000pt;}
.ls3{letter-spacing:8.605440pt;}
.ls8{letter-spacing:21.363200pt;}
.ls5{letter-spacing:21.408000pt;}
.ls7{letter-spacing:21.514667pt;}
.ls9{letter-spacing:28.800000pt;}
.lsa{letter-spacing:34.613120pt;}
.lsb{letter-spacing:39.749120pt;}
.lsc{letter-spacing:42.552320pt;}
.lsd{letter-spacing:42.562987pt;}
.lse{letter-spacing:53.120000pt;}
.ls4{letter-spacing:54.045440pt;}
.ls2{letter-spacing:124.800000pt;}
.ls1{letter-spacing:165.363200pt;}
.ls0{letter-spacing:165.408000pt;}
.ws3c{word-spacing:0.000000pt;}
.ws3a{word-spacing:7.744000pt;}
.ws17{word-spacing:18.839040pt;}
.ws6{word-spacing:18.944000pt;}
.wsb{word-spacing:22.464000pt;}
.ws1{word-spacing:24.768000pt;}
.ws1a{word-spacing:32.199040pt;}
.ws2c{word-spacing:34.442667pt;}
.ws1b{word-spacing:37.778560pt;}
.ws30{word-spacing:47.732480pt;}
.ws23{word-spacing:50.560000pt;}
.ws32{word-spacing:55.402667pt;}
.ws36{word-spacing:61.439147pt;}
.ws1d{word-spacing:68.199040pt;}
.ws1c{word-spacing:74.208000pt;}
.ws2b{word-spacing:77.897600pt;}
.ws14{word-spacing:79.874347pt;}
.ws34{word-spacing:81.229440pt;}
.ws18{word-spacing:82.317824pt;}
.ws20{word-spacing:89.472000pt;}
.ws37{word-spacing:89.755307pt;}
.ws21{word-spacing:90.496000pt;}
.ws16{word-spacing:92.838400pt;}
.ws39{word-spacing:99.562667pt;}
.ws12{word-spacing:103.869867pt;}
.ws4{word-spacing:108.650667pt;}
.ws28{word-spacing:110.447360pt;}
.ws29{word-spacing:110.514987pt;}
.ws33{word-spacing:111.526187pt;}
.wsa{word-spacing:113.834667pt;}
.wsd{word-spacing:120.960000pt;}
.ws26{word-spacing:121.152000pt;}
.ws15{word-spacing:128.533760pt;}
.ws2a{word-spacing:133.281920pt;}
.ws22{word-spacing:134.784000pt;}
.ws9{word-spacing:140.352000pt;}
.ws8{word-spacing:149.184000pt;}
.wsc{word-spacing:164.560043pt;}
.ws1f{word-spacing:164.608000pt;}
.ws13{word-spacing:168.237013pt;}
.wse{word-spacing:172.416000pt;}
.ws27{word-spacing:172.472960pt;}
.ws19{word-spacing:173.491200pt;}
.ws2d{word-spacing:180.032683pt;}
.wsf{word-spacing:182.112000pt;}
.ws3{word-spacing:186.538667pt;}
.ws2e{word-spacing:188.138667pt;}
.ws7{word-spacing:190.400000pt;}
.ws0{word-spacing:190.464000pt;}
.ws31{word-spacing:193.386667pt;}
.ws11{word-spacing:196.052267pt;}
.ws10{word-spacing:203.134507pt;}
.ws5{word-spacing:210.858667pt;}
.ws2{word-spacing:214.260267pt;}
.ws38{word-spacing:235.178667pt;}
.ws1e{word-spacing:255.648000pt;}
.ws35{word-spacing:265.709227pt;}
.ws25{word-spacing:277.120000pt;}
.ws2f{word-spacing:328.810667pt;}
.ws24{word-spacing:374.336000pt;}
.ws3b{word-spacing:7870.306347pt;}
._68{margin-left:-9.402880pt;}
._45{margin-left:-6.801920pt;}
._2b{margin-left:-5.153067pt;}
._53{margin-left:-2.240000pt;}
._23{width:3.157333pt;}
._72{width:7.744000pt;}
._4b{width:11.804800pt;}
._19{width:15.015211pt;}
._26{width:17.920000pt;}
._1a{width:19.200000pt;}
._f{width:20.092800pt;}
._25{width:24.000000pt;}
._50{width:24.901120pt;}
._52{width:26.537600pt;}
._4e{width:28.071680pt;}
._1f{width:31.040000pt;}
._6{width:34.880000pt;}
._6a{width:36.000000pt;}
._6d{width:39.732053pt;}
._14{width:44.987136pt;}
._4d{width:50.482773pt;}
._33{width:53.760000pt;}
._69{width:55.466027pt;}
._54{width:59.266432pt;}
._10{width:62.210688pt;}
._2a{width:63.232000pt;}
._6e{width:69.424640pt;}
._5a{width:70.764160pt;}
._67{width:74.544640pt;}
._55{width:79.232000pt;}
._d{width:83.954176pt;}
._59{width:87.570987pt;}
._39{width:88.609067pt;}
._71{width:92.839893pt;}
._18{width:95.616000pt;}
._2e{width:100.544000pt;}
._1e{width:102.848000pt;}
._31{width:107.904000pt;}
._43{width:109.518080pt;}
._27{width:110.656000pt;}
._66{width:112.979200pt;}
._c{width:114.144000pt;}
._7{width:115.520000pt;}
._29{width:117.312000pt;}
._1d{width:118.880000pt;}
._64{width:120.851840pt;}
._1b{width:122.368000pt;}
._5c{width:128.169387pt;}
._8{width:132.864000pt;}
._5d{width:135.002240pt;}
._16{width:137.344000pt;}
._a{width:138.880000pt;}
._4c{width:140.228693pt;}
._3c{width:141.780480pt;}
._15{width:144.128000pt;}
._b{width:146.112000pt;}
._5e{width:147.992747pt;}
._5{width:149.056000pt;}
._30{width:158.208000pt;}
._3{width:163.072000pt;}
._49{width:166.917803pt;}
._3d{width:168.036907pt;}
._12{width:168.966656pt;}
._2d{width:172.160000pt;}
._58{width:174.144000pt;}
._6f{width:175.392427pt;}
._42{width:176.292907pt;}
._40{width:180.449280pt;}
._70{width:185.408000pt;}
._5f{width:186.480640pt;}
._17{width:188.109824pt;}
._4a{width:192.077440pt;}
._2{width:196.394667pt;}
._e{width:198.084352pt;}
._48{width:199.906560pt;}
._32{width:201.320277pt;}
._56{width:203.840000pt;}
._36{width:205.760000pt;}
._21{width:208.042667pt;}
._0{width:211.968000pt;}
._22{width:214.058667pt;}
._6c{width:215.133227pt;}
._1c{width:216.768000pt;}
._5b{width:224.713387pt;}
._62{width:226.059520pt;}
._46{width:231.957120pt;}
._4f{width:233.881600pt;}
._51{width:238.240000pt;}
._63{width:249.152000pt;}
._1{width:251.456000pt;}
._44{width:252.851584pt;}
._57{width:258.560000pt;}
._20{width:260.736000pt;}
._47{width:264.199851pt;}
._60{width:265.168427pt;}
._37{width:271.616000pt;}
._6b{width:276.792747pt;}
._34{width:280.448000pt;}
._3b{width:293.568000pt;}
._38{width:295.968000pt;}
._9{width:299.754667pt;}
._24{width:302.762667pt;}
._28{width:306.743723pt;}
._11{width:322.817067pt;}
._2f{width:323.832789pt;}
._4{width:327.392000pt;}
._35{width:336.416000pt;}
._3a{width:346.115456pt;}
._61{width:350.565547pt;}
._13{width:355.826304pt;}
._3e{width:359.816107pt;}
._2c{width:363.008000pt;}
._3f{width:366.612907pt;}
._41{width:373.416960pt;}
._65{width:396.090667pt;}
.fs6{font-size:142.080000pt;}
.fs7{font-size:170.880000pt;}
.fs11{font-size:181.760000pt;}
.fsc{font-size:186.880000pt;}
.fs1{font-size:192.000000pt;}
.fs3{font-size:192.128000pt;}
.fs10{font-size:202.240000pt;}
.fsb{font-size:202.880000pt;}
.fs0{font-size:213.120000pt;}
.fs2{font-size:213.248000pt;}
.fs8{font-size:224.000000pt;}
.fs9{font-size:224.128000pt;}
.fs4{font-size:234.880000pt;}
.fs5{font-size:235.008000pt;}
.fsf{font-size:250.880000pt;}
.fse{font-size:256.000000pt;}
.fsd{font-size:256.128000pt;}
.fsa{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:44.736000pt;}
.y95{bottom:95.936000pt;}
.y1d{bottom:193.026667pt;}
.y13{bottom:211.746667pt;}
.y1c{bottom:275.906667pt;}
.y12{bottom:277.373333pt;}
.y11{bottom:342.973333pt;}
.y1b{bottom:358.786667pt;}
.y10{bottom:408.573333pt;}
.y1a{bottom:441.666667pt;}
.yf{bottom:474.173333pt;}
.y19{bottom:516.546667pt;}
.ye{bottom:539.773333pt;}
.y18{bottom:591.426667pt;}
.yd{bottom:597.373333pt;}
.yc{bottom:662.973333pt;}
.y17{bottom:674.306667pt;}
.yb{bottom:720.573333pt;}
.y16{bottom:749.186667pt;}
.ya{bottom:786.173333pt;}
.y15{bottom:824.066667pt;}
.y9{bottom:851.773333pt;}
.y8{bottom:917.373333pt;}
.y1e{bottom:918.560000pt;}
.y5c{bottom:945.853333pt;}
.y59{bottom:973.506667pt;}
.y90{bottom:1000.506667pt;}
.y5b{bottom:1003.453333pt;}
.y94{bottom:1005.186667pt;}
.y14{bottom:1030.493333pt;}
.y58{bottom:1031.133333pt;}
.y8f{bottom:1058.106667pt;}
.y5a{bottom:1061.053333pt;}
.y93{bottom:1062.786667pt;}
.y8e{bottom:1115.706667pt;}
.y92{bottom:1120.386667pt;}
.y36{bottom:1158.946667pt;}
.y2d{bottom:1169.666667pt;}
.y91{bottom:1186.946667pt;}
.y8d{bottom:1189.466667pt;}
.y4f{bottom:1217.786667pt;}
.y35{bottom:1222.333333pt;}
.y2c{bottom:1227.266667pt;}
.y3e{bottom:1259.200000pt;}
.y46{bottom:1268.506667pt;}
.y4e{bottom:1278.266667pt;}
.y2b{bottom:1300.866667pt;}
.y34{bottom:1301.693333pt;}
.y45{bottom:1331.866667pt;}
.y3d{bottom:1332.800000pt;}
.y4d{bottom:1338.746667pt;}
.y2a{bottom:1358.466667pt;}
.y33{bottom:1365.053333pt;}
.y56{bottom:1365.093333pt;}
.y3c{bottom:1390.400000pt;}
.y44{bottom:1395.226667pt;}
.y4c{bottom:1399.226667pt;}
.y29{bottom:1416.066667pt;}
.y55{bottom:1428.453333pt;}
.y32{bottom:1444.413333pt;}
.y4b{bottom:1459.706667pt;}
.y3b{bottom:1464.000000pt;}
.y28{bottom:1473.666667pt;}
.y43{bottom:1474.626667pt;}
.y54{bottom:1491.813333pt;}
.y4a{bottom:1520.226667pt;}
.y3a{bottom:1521.600000pt;}
.y31{bottom:1523.773333pt;}
.y27{bottom:1531.266667pt;}
.y42{bottom:1537.986667pt;}
.y53{bottom:1555.173333pt;}
.y39{bottom:1579.200000pt;}
.y30{bottom:1587.133333pt;}
.y49{bottom:1588.706667pt;}
.y26{bottom:1588.866667pt;}
.y41{bottom:1601.346667pt;}
.y52{bottom:1643.866667pt;}
.y48{bottom:1690.106667pt;}
.y2f{bottom:1696.346667pt;}
.y25{bottom:1698.080000pt;}
.y40{bottom:1698.266667pt;}
.y38{bottom:1698.973333pt;}
.y51{bottom:1701.466667pt;}
.y47{bottom:1747.706667pt;}
.y2e{bottom:1753.946667pt;}
.y24{bottom:1755.680000pt;}
.y3f{bottom:1755.866667pt;}
.y37{bottom:1756.573333pt;}
.y50{bottom:1759.066667pt;}
.y74{bottom:1932.773333pt;}
.y77{bottom:1933.146667pt;}
.y71{bottom:1961.440000pt;}
.y73{bottom:2009.573333pt;}
.y76{bottom:2009.946667pt;}
.y70{bottom:2047.840000pt;}
.y72{bottom:2086.400000pt;}
.y75{bottom:2086.786667pt;}
.y6{bottom:2212.706667pt;}
.y80{bottom:2263.813333pt;}
.y7c{bottom:2271.453333pt;}
.y5{bottom:2286.306667pt;}
.y7f{bottom:2334.213333pt;}
.y7b{bottom:2341.893333pt;}
.y4{bottom:2343.933333pt;}
.y7e{bottom:2404.613333pt;}
.y7a{bottom:2412.293333pt;}
.y3{bottom:2417.533333pt;}
.y7d{bottom:2475.013333pt;}
.y2{bottom:2475.133333pt;}
.y79{bottom:2482.693333pt;}
.y1{bottom:2532.733333pt;}
.y78{bottom:2595.226667pt;}
.y7{bottom:2601.506667pt;}
.y6f{bottom:2718.173333pt;}
.y6e{bottom:2839.426667pt;}
.y6d{bottom:2890.626667pt;}
.y6c{bottom:2941.826667pt;}
.y6b{bottom:3009.026667pt;}
.y6a{bottom:3060.226667pt;}
.y69{bottom:3111.426667pt;}
.y68{bottom:3178.626667pt;}
.y67{bottom:3229.826667pt;}
.y66{bottom:3306.080000pt;}
.y84{bottom:3395.520000pt;}
.y65{bottom:3416.706667pt;}
.y88{bottom:3431.813333pt;}
.y83{bottom:3456.160000pt;}
.y64{bottom:3474.306667pt;}
.y87{bottom:3486.373333pt;}
.y82{bottom:3516.800000pt;}
.y63{bottom:3539.906667pt;}
.y86{bottom:3540.933333pt;}
.y81{bottom:3577.440000pt;}
.y85{bottom:3595.653333pt;}
.y62{bottom:3597.506667pt;}
.y61{bottom:3655.106667pt;}
.y8c{bottom:3673.466667pt;}
.y60{bottom:3720.706667pt;}
.y8b{bottom:3734.106667pt;}
.y5f{bottom:3778.306667pt;}
.y8a{bottom:3794.746667pt;}
.y89{bottom:3855.386667pt;}
.y5e{bottom:3859.293333pt;}
.y57{bottom:3877.506667pt;}
.y5d{bottom:3916.893333pt;}
.y23{bottom:4041.373333pt;}
.y22{bottom:4114.693333pt;}
.y21{bottom:4248.480000pt;}
.y20{bottom:4317.920000pt;}
.y1f{bottom:4389.280000pt;}
.h9{height:169.962187pt;}
.h13{height:180.783750pt;}
.h2{height:190.968750pt;}
.h3{height:191.096063pt;}
.h6{height:196.593750pt;}
.h12{height:201.153750pt;}
.he{height:206.225000pt;}
.h8{height:211.975312pt;}
.h14{height:218.219062pt;}
.ha{height:222.796875pt;}
.hb{height:222.924188pt;}
.hd{height:223.881250pt;}
.h7{height:233.618437pt;}
.h5{height:233.745750pt;}
.h4{height:240.499687pt;}
.h10{height:254.625000pt;}
.hf{height:254.752312pt;}
.h11{height:276.850000pt;}
.h15{height:280.184750pt;}
.hc{height:286.453125pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x27{left:27.327953pt;}
.xe{left:46.879953pt;}
.x10{left:52.607953pt;}
.x11{left:76.607953pt;}
.x3c{left:81.023953pt;}
.x3e{left:87.071953pt;}
.xf{left:130.879953pt;}
.x3d{left:141.026619pt;}
.x30{left:248.066619pt;}
.x36{left:268.639953pt;}
.x40{left:313.506619pt;}
.x37{left:320.159953pt;}
.x46{left:340.319953pt;}
.x38{left:421.599953pt;}
.x39{left:548.773286pt;}
.x29{left:562.973286pt;}
.x2a{left:578.013286pt;}
.xa{left:608.453286pt;}
.x3f{left:617.253286pt;}
.x28{left:655.933286pt;}
.x14{left:672.826619pt;}
.x15{left:677.626619pt;}
.x12{left:721.346619pt;}
.x13{left:730.306619pt;}
.x3a{left:751.173286pt;}
.xb{left:788.933286pt;}
.x3b{left:811.173286pt;}
.xc{left:837.786619pt;}
.x2d{left:922.373286pt;}
.x2f{left:924.226619pt;}
.x2b{left:936.986619pt;}
.x9{left:971.333286pt;}
.xd{left:994.586619pt;}
.x2e{left:1028.093286pt;}
.x7{left:1140.026619pt;}
.x45{left:1179.453286pt;}
.x2c{left:1198.266619pt;}
.x18{left:1202.306619pt;}
.x19{left:1226.333286pt;}
.x16{left:1244.826619pt;}
.x17{left:1285.306619pt;}
.x31{left:1384.613286pt;}
.x1{left:1422.946619pt;}
.x8{left:1432.159953pt;}
.x32{left:1467.973286pt;}
.x2{left:1482.946619pt;}
.x26{left:1737.373286pt;}
.x1c{left:1751.773286pt;}
.x1b{left:1759.519953pt;}
.x1a{left:1762.559953pt;}
.x1d{left:1775.773286pt;}
.x43{left:1816.933286pt;}
.x44{left:1836.933286pt;}
.x42{left:1858.853286pt;}
.x41{left:1982.373286pt;}
.x3{left:2009.439953pt;}
.x1f{left:2284.959953pt;}
.x33{left:2291.266619pt;}
.x35{left:2312.066619pt;}
.x20{left:2319.906619pt;}
.x21{left:2343.906619pt;}
.x1e{left:2351.519953pt;}
.x34{left:2355.106619pt;}
.x6{left:2453.413286pt;}
.x4{left:2470.533286pt;}
.x5{left:2518.533286pt;}
.x24{left:2774.079953pt;}
.x25{left:2798.079953pt;}
.x22{left:2801.253286pt;}
.x23{left:2843.013286pt;}
}




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