
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cc810946c3015f35f759d317.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_9a36c4d3dbed649263424c07.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_cc13183fbb8e11b135768dd5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_2b5ce78c7591be64f60128a1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_8522401e0318ef8b3c77059b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_f886b9657236fe222c1cc0e3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_bf437621084cbb492925062b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls3{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.174000px;}
.ls8{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:146.304000px;}
.lsa{letter-spacing:172.026720px;}
.ls6{letter-spacing:1322.250240px;}
.ls5{letter-spacing:1431.096000px;}
.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:-59.760000px;}
.ws0{word-spacing:-41.760000px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-216.299760px;}
._1b{margin-left:-153.628080px;}
._26{margin-left:-51.004800px;}
._25{margin-left:-47.499840px;}
._19{margin-left:-38.967840px;}
._22{margin-left:-30.216960px;}
._21{margin-left:-25.433280px;}
._1d{margin-left:-23.548320px;}
._20{margin-left:-21.940560px;}
._23{margin-left:-18.894960px;}
._1a{margin-left:-13.759200px;}
._1f{margin-left:-10.310400px;}
._1c{margin-left:-7.571520px;}
._24{margin-left:-6.538320px;}
._a{margin-left:-5.238000px;}
._9{margin-left:-4.032000px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._b{width:3.024000px;}
._15{width:4.308000px;}
._27{width:5.508000px;}
._11{width:6.552000px;}
._10{width:7.560000px;}
._14{width:9.216000px;}
._d{width:11.088000px;}
._c{width:12.096000px;}
._12{width:13.896000px;}
._13{width:14.904000px;}
._28{width:15.984000px;}
._f{width:19.584000px;}
._e{width:20.592000px;}
._16{width:21.816000px;}
._2c{width:22.986000px;}
._2b{width:24.048000px;}
._2a{width:25.992000px;}
._29{width:27.144000px;}
._2f{width:28.584000px;}
._4{width:29.754000px;}
._2e{width:31.122000px;}
._2d{width:35.424000px;}
._7{width:70.825680px;}
._8{width:71.976000px;}
._3{width:90.504000px;}
._31{width:91.512000px;}
._32{width:94.368000px;}
._33{width:106.992000px;}
._34{width:108.012000px;}
._30{width:132.192000px;}
._18{width:180.120720px;}
._6{width:641.556000px;}
._17{width:1432.554240px;}
._5{width:1433.832000px;}
.fc5{color:transparent;}
.fc1{color:rgb(15,120,80);}
.fc4{color:rgb(128,128,128);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y37{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.600000px;}
.y33{bottom:56.160000px;}
.y7{bottom:57.600000px;}
.y32{bottom:69.660000px;}
.y6{bottom:76.860000px;}
.y5{bottom:91.980000px;}
.y34{bottom:98.280000px;}
.y36{bottom:104.580000px;}
.y4{bottom:107.280000px;}
.y3{bottom:122.400000px;}
.y2{bottom:137.520000px;}
.y31{bottom:148.500000px;}
.y2f{bottom:164.370000px;}
.y9e{bottom:169.050000px;}
.yc4{bottom:172.470000px;}
.y80{bottom:174.810000px;}
.y64{bottom:183.810000px;}
.y2e{bottom:184.710000px;}
.y9d{bottom:189.390000px;}
.y7f{bottom:194.970000px;}
.y114{bottom:197.130000px;}
.yc3{bottom:201.630000px;}
.y101{bottom:201.810000px;}
.y63{bottom:203.970000px;}
.y2d{bottom:204.870000px;}
.y9c{bottom:209.550000px;}
.y7e{bottom:215.310000px;}
.y113{bottom:217.470000px;}
.ye3{bottom:218.550000px;}
.yc2{bottom:221.970000px;}
.y62{bottom:224.310000px;}
.y2c{bottom:225.210000px;}
.y9b{bottom:229.890000px;}
.y7d{bottom:235.470000px;}
.y112{bottom:237.810000px;}
.yc1{bottom:242.310000px;}
.ye2{bottom:247.710000px;}
.y9a{bottom:250.050000px;}
.y61{bottom:253.470000px;}
.y2b{bottom:255.090000px;}
.yc0{bottom:262.470000px;}
.y7c{bottom:264.630000px;}
.y111{bottom:266.970000px;}
.ye1{bottom:268.050000px;}
.y99{bottom:279.210000px;}
.y60{bottom:282.630000px;}
.ybf{bottom:282.810000px;}
.y2a{bottom:286.950000px;}
.y110{bottom:287.310000px;}
.ye0{bottom:288.390000px;}
.y100{bottom:292.530000px;}
.y7b{bottom:293.970000px;}
.y5f{bottom:302.970000px;}
.y10f{bottom:307.470000px;}
.y98{bottom:308.550000px;}
.y7a{bottom:314.310000px;}
.ydf{bottom:318.450000px;}
.y29{bottom:322.410000px;}
.y5e{bottom:323.310000px;}
.yff{bottom:324.210000px;}
.y97{bottom:328.890000px;}
.ybe{bottom:332.130000px;}
.y10e{bottom:336.630000px;}
.y5d{bottom:343.470000px;}
.y28{bottom:345.630000px;}
.yde{bottom:350.130000px;}
.y96{bottom:353.370000px;}
.yfe{bottom:353.550000px;}
.y10d{bottom:356.970000px;}
.ybd{bottom:361.470000px;}
.y5c{bottom:363.810000px;}
.y27{bottom:369.030000px;}
.yfd{bottom:373.890000px;}
.y10c{bottom:377.310000px;}
.ydd{bottom:379.470000px;}
.ybc{bottom:381.810000px;}
.y5b{bottom:383.970000px;}
.y128{bottom:391.710000px;}
.yfc{bottom:394.050000px;}
.y26{bottom:398.010000px;}
.ydc{bottom:399.810000px;}
.y5a{bottom:404.355000px;}
.y10b{bottom:406.515000px;}
.ybb{bottom:411.015000px;}
.yfb{bottom:414.435000px;}
.y25{bottom:418.395000px;}
.ydb{bottom:420.015000px;}
.y127{bottom:421.095000px;}
.y59{bottom:424.515000px;}
.y10a{bottom:426.855000px;}
.yba{bottom:431.355000px;}
.yfa{bottom:434.595000px;}
.y126{bottom:441.435000px;}
.y58{bottom:444.855000px;}
.y24{bottom:447.555000px;}
.yda{bottom:449.175000px;}
.y79{bottom:453.675000px;}
.y109{bottom:456.015000px;}
.yb9{bottom:460.515000px;}
.yf9{bottom:463.755000px;}
.y23{bottom:467.895000px;}
.yd9{bottom:469.515000px;}
.y125{bottom:470.595000px;}
.y57{bottom:474.015000px;}
.y78{bottom:483.015000px;}
.y108{bottom:485.175000px;}
.y22{bottom:488.235000px;}
.yb8{bottom:489.675000px;}
.yd8{bottom:489.855000px;}
.y124{bottom:490.935000px;}
.yf8{bottom:493.095000px;}
.y77{bottom:503.355000px;}
.y56{bottom:504.075000px;}
.y107{bottom:505.515000px;}
.y21{bottom:508.395000px;}
.yb7{bottom:510.015000px;}
.y123{bottom:511.095000px;}
.yf7{bottom:513.435000px;}
.y76{bottom:523.515000px;}
.y106{bottom:525.855000px;}
.y20{bottom:528.735000px;}
.y55{bottom:535.755000px;}
.yb6{bottom:539.175000px;}
.y122{bottom:540.255000px;}
.yf6{bottom:542.595000px;}
.y75{bottom:543.855000px;}
.y1f{bottom:548.895000px;}
.y105{bottom:555.015000px;}
.y121{bottom:560.595000px;}
.yf5{bottom:562.935000px;}
.y74{bottom:564.015000px;}
.y54{bottom:565.095000px;}
.yb5{bottom:568.515000px;}
.y1e{bottom:569.235000px;}
.y104{bottom:575.355000px;}
.y120{bottom:580.935000px;}
.y73{bottom:584.355000px;}
.y53{bottom:585.435000px;}
.yb4{bottom:588.855000px;}
.y1d{bottom:589.395000px;}
.yf4{bottom:592.095000px;}
.y72{bottom:604.515000px;}
.y52{bottom:605.595000px;}
.y1c{bottom:609.735000px;}
.y11f{bottom:610.095000px;}
.y95{bottom:612.255000px;}
.yf3{bottom:612.435000px;}
.yb3{bottom:618.015000px;}
.y51{bottom:625.935000px;}
.y1b{bottom:629.895000px;}
.y11e{bottom:630.435000px;}
.y71{bottom:634.575000px;}
.yb2{bottom:638.355000px;}
.y94{bottom:641.595000px;}
.y50{bottom:646.095000px;}
.y1a{bottom:650.265000px;}
.y11d{bottom:650.625000px;}
.yd7{bottom:658.545000px;}
.y93{bottom:661.965000px;}
.y70{bottom:666.285000px;}
.yb1{bottom:667.545000px;}
.y19{bottom:670.425000px;}
.yf2{bottom:670.785000px;}
.y4f{bottom:675.285000px;}
.y11c{bottom:679.785000px;}
.y92{bottom:682.125000px;}
.yd6{bottom:687.705000px;}
.yb0{bottom:687.885000px;}
.y18{bottom:690.765000px;}
.yf1{bottom:691.125000px;}
.y4e{bottom:695.625000px;}
.y11b{bottom:700.125000px;}
.y91{bottom:702.465000px;}
.y17{bottom:710.925000px;}
.y4d{bottom:715.965000px;}
.yaf{bottom:717.045000px;}
.yf0{bottom:720.285000px;}
.y11a{bottom:720.465000px;}
.y90{bottom:722.625000px;}
.y16{bottom:731.265000px;}
.y4c{bottom:736.125000px;}
.yae{bottom:737.385000px;}
.yef{bottom:749.625000px;}
.y15{bottom:751.425000px;}
.y8f{bottom:751.785000px;}
.y6f{bottom:756.465000px;}
.yd5{bottom:757.545000px;}
.y4b{bottom:765.285000px;}
.yad{bottom:766.545000px;}
.yee{bottom:769.965000px;}
.y14{bottom:771.765000px;}
.y6e{bottom:776.625000px;}
.y8e{bottom:781.125000px;}
.y4a{bottom:785.625000px;}
.yd4{bottom:786.705000px;}
.y119{bottom:790.125000px;}
.y13{bottom:791.925000px;}
.yac{bottom:795.705000px;}
.y6d{bottom:796.965000px;}
.yed{bottom:799.125000px;}
.y49{bottom:805.965000px;}
.yd3{bottom:807.045000px;}
.y8d{bottom:810.285000px;}
.y12{bottom:812.265000px;}
.y6c{bottom:817.125000px;}
.y118{bottom:819.285000px;}
.yec{bottom:819.465000px;}
.yab{bottom:825.045000px;}
.y48{bottom:826.125000px;}
.yd2{bottom:827.385000px;}
.y11{bottom:832.425000px;}
.y6b{bottom:837.465000px;}
.y8c{bottom:839.625000px;}
.yaa{bottom:845.385000px;}
.y47{bottom:846.465000px;}
.yeb{bottom:848.625000px;}
.yd1{bottom:856.545000px;}
.y8b{bottom:859.965000px;}
.y10{bottom:862.485000px;}
.ya9{bottom:865.545000px;}
.y46{bottom:866.625000px;}
.yea{bottom:868.965000px;}
.y103{bottom:875.625000px;}
.yd0{bottom:885.705000px;}
.ya8{bottom:885.885000px;}
.y8a{bottom:889.125000px;}
.yf{bottom:894.165000px;}
.y45{bottom:895.785000px;}
.y102{bottom:895.965000px;}
.ye9{bottom:898.170000px;}
.ycf{bottom:906.090000px;}
.y117{bottom:909.510000px;}
.ya7{bottom:915.090000px;}
.y44{bottom:916.170000px;}
.y89{bottom:918.330000px;}
.ye8{bottom:918.510000px;}
.ye{bottom:923.550000px;}
.yce{bottom:926.430000px;}
.y43{bottom:936.510000px;}
.y88{bottom:938.670000px;}
.yd{bottom:943.890000px;}
.ya6{bottom:944.250000px;}
.ye7{bottom:947.670000px;}
.ycd{bottom:955.590000px;}
.y42{bottom:956.670000px;}
.y116{bottom:959.010000px;}
.ya5{bottom:964.590000px;}
.y87{bottom:967.830000px;}
.yc{bottom:975.570000px;}
.ycc{bottom:975.930000px;}
.ye6{bottom:976.830000px;}
.y41{bottom:977.010000px;}
.ya4{bottom:984.930000px;}
.y86{bottom:988.170000px;}
.yb{bottom:995.910000px;}
.ycb{bottom:996.090000px;}
.y40{bottom:997.170000px;}
.ya3{bottom:1005.090000px;}
.ye5{bottom:1006.170000px;}
.y85{bottom:1008.510000px;}
.y6a{bottom:1017.510000px;}
.yca{bottom:1025.250000px;}
.y3f{bottom:1026.330000px;}
.ye4{bottom:1026.510000px;}
.y84{bottom:1028.670000px;}
.ya2{bottom:1035.150000px;}
.y69{bottom:1037.670000px;}
.ya{bottom:1038.210000px;}
.y3e{bottom:1046.670000px;}
.y83{bottom:1049.010000px;}
.yc9{bottom:1054.590000px;}
.y115{bottom:1057.830000px;}
.y68{bottom:1058.010000px;}
.y9{bottom:1065.210000px;}
.ya1{bottom:1066.830000px;}
.y3d{bottom:1067.010000px;}
.yc8{bottom:1074.930000px;}
.y82{bottom:1078.170000px;}
.y3c{bottom:1087.170000px;}
.yc7{bottom:1095.090000px;}
.ya0{bottom:1096.170000px;}
.y8{bottom:1099.590000px;}
.y81{bottom:1107.330000px;}
.y3b{bottom:1107.510000px;}
.y1{bottom:1115.250000px;}
.yc6{bottom:1115.430000px;}
.y67{bottom:1116.330000px;}
.y9f{bottom:1116.510000px;}
.y3a{bottom:1127.670000px;}
.y66{bottom:1136.670000px;}
.yc5{bottom:1145.310000px;}
.y39{bottom:1156.860000px;}
.y65{bottom:1157.040000px;}
.y38{bottom:1177.200000px;}
.y30{bottom:1196.820000px;}
.hf{height:10.620000px;}
.hd{height:22.500000px;}
.h3{height:36.571289px;}
.h4{height:37.599609px;}
.hb{height:41.610234px;}
.h9{height:48.761719px;}
.h5{height:50.132812px;}
.h10{height:52.417969px;}
.ha{height:57.051211px;}
.h8{height:58.292578px;}
.hc{height:59.439023px;}
.h6{height:64.853086px;}
.h2{height:65.884219px;}
.h7{height:66.676641px;}
.he{height:83.787539px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.w4{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:10.836000px;}
.xc{left:21.960000px;}
.x2{left:84.995987px;}
.x11{left:89.855987px;}
.x3{left:94.535987px;}
.x6{left:267.014987px;}
.x13{left:280.334987px;}
.x12{left:301.934987px;}
.x4{left:303.194987px;}
.x15{left:317.774987px;}
.xf{left:341.894987px;}
.xe{left:367.274987px;}
.x7{left:369.434987px;}
.x5{left:373.394987px;}
.x9{left:390.134987px;}
.x14{left:397.154987px;}
.x8{left:409.214987px;}
.xa{left:446.504987px;}
.x10{left:748.049987px;}
.x1{left:807.809987px;}
.xb{left:810.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.154667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:130.048000pt;}
.lsa{letter-spacing:152.912640pt;}
.ls6{letter-spacing:1175.333547pt;}
.ls5{letter-spacing:1272.085333pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-37.120000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-192.266453pt;}
._1b{margin-left:-136.558293pt;}
._26{margin-left:-45.337600pt;}
._25{margin-left:-42.222080pt;}
._19{margin-left:-34.638080pt;}
._22{margin-left:-26.859520pt;}
._21{margin-left:-22.607360pt;}
._1d{margin-left:-20.931840pt;}
._20{margin-left:-19.502720pt;}
._23{margin-left:-16.795520pt;}
._1a{margin-left:-12.230400pt;}
._1f{margin-left:-9.164800pt;}
._1c{margin-left:-6.730240pt;}
._24{margin-left:-5.811840pt;}
._a{margin-left:-4.656000pt;}
._9{margin-left:-3.584000pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._b{width:2.688000pt;}
._15{width:3.829333pt;}
._27{width:4.896000pt;}
._11{width:5.824000pt;}
._10{width:6.720000pt;}
._14{width:8.192000pt;}
._d{width:9.856000pt;}
._c{width:10.752000pt;}
._12{width:12.352000pt;}
._13{width:13.248000pt;}
._28{width:14.208000pt;}
._f{width:17.408000pt;}
._e{width:18.304000pt;}
._16{width:19.392000pt;}
._2c{width:20.432000pt;}
._2b{width:21.376000pt;}
._2a{width:23.104000pt;}
._29{width:24.128000pt;}
._2f{width:25.408000pt;}
._4{width:26.448000pt;}
._2e{width:27.664000pt;}
._2d{width:31.488000pt;}
._7{width:62.956160pt;}
._8{width:63.978667pt;}
._3{width:80.448000pt;}
._31{width:81.344000pt;}
._32{width:83.882667pt;}
._33{width:95.104000pt;}
._34{width:96.010667pt;}
._30{width:117.504000pt;}
._18{width:160.107307pt;}
._6{width:570.272000pt;}
._17{width:1273.381547pt;}
._5{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y37{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.200000pt;}
.y33{bottom:49.920000pt;}
.y7{bottom:51.200000pt;}
.y32{bottom:61.920000pt;}
.y6{bottom:68.320000pt;}
.y5{bottom:81.760000pt;}
.y34{bottom:87.360000pt;}
.y36{bottom:92.960000pt;}
.y4{bottom:95.360000pt;}
.y3{bottom:108.800000pt;}
.y2{bottom:122.240000pt;}
.y31{bottom:132.000000pt;}
.y2f{bottom:146.106667pt;}
.y9e{bottom:150.266667pt;}
.yc4{bottom:153.306667pt;}
.y80{bottom:155.386667pt;}
.y64{bottom:163.386667pt;}
.y2e{bottom:164.186667pt;}
.y9d{bottom:168.346667pt;}
.y7f{bottom:173.306667pt;}
.y114{bottom:175.226667pt;}
.yc3{bottom:179.226667pt;}
.y101{bottom:179.386667pt;}
.y63{bottom:181.306667pt;}
.y2d{bottom:182.106667pt;}
.y9c{bottom:186.266667pt;}
.y7e{bottom:191.386667pt;}
.y113{bottom:193.306667pt;}
.ye3{bottom:194.266667pt;}
.yc2{bottom:197.306667pt;}
.y62{bottom:199.386667pt;}
.y2c{bottom:200.186667pt;}
.y9b{bottom:204.346667pt;}
.y7d{bottom:209.306667pt;}
.y112{bottom:211.386667pt;}
.yc1{bottom:215.386667pt;}
.ye2{bottom:220.186667pt;}
.y9a{bottom:222.266667pt;}
.y61{bottom:225.306667pt;}
.y2b{bottom:226.746667pt;}
.yc0{bottom:233.306667pt;}
.y7c{bottom:235.226667pt;}
.y111{bottom:237.306667pt;}
.ye1{bottom:238.266667pt;}
.y99{bottom:248.186667pt;}
.y60{bottom:251.226667pt;}
.ybf{bottom:251.386667pt;}
.y2a{bottom:255.066667pt;}
.y110{bottom:255.386667pt;}
.ye0{bottom:256.346667pt;}
.y100{bottom:260.026667pt;}
.y7b{bottom:261.306667pt;}
.y5f{bottom:269.306667pt;}
.y10f{bottom:273.306667pt;}
.y98{bottom:274.266667pt;}
.y7a{bottom:279.386667pt;}
.ydf{bottom:283.066667pt;}
.y29{bottom:286.586667pt;}
.y5e{bottom:287.386667pt;}
.yff{bottom:288.186667pt;}
.y97{bottom:292.346667pt;}
.ybe{bottom:295.226667pt;}
.y10e{bottom:299.226667pt;}
.y5d{bottom:305.306667pt;}
.y28{bottom:307.226667pt;}
.yde{bottom:311.226667pt;}
.y96{bottom:314.106667pt;}
.yfe{bottom:314.266667pt;}
.y10d{bottom:317.306667pt;}
.ybd{bottom:321.306667pt;}
.y5c{bottom:323.386667pt;}
.y27{bottom:328.026667pt;}
.yfd{bottom:332.346667pt;}
.y10c{bottom:335.386667pt;}
.ydd{bottom:337.306667pt;}
.ybc{bottom:339.386667pt;}
.y5b{bottom:341.306667pt;}
.y128{bottom:348.186667pt;}
.yfc{bottom:350.266667pt;}
.y26{bottom:353.786667pt;}
.ydc{bottom:355.386667pt;}
.y5a{bottom:359.426667pt;}
.y10b{bottom:361.346667pt;}
.ybb{bottom:365.346667pt;}
.yfb{bottom:368.386667pt;}
.y25{bottom:371.906667pt;}
.ydb{bottom:373.346667pt;}
.y127{bottom:374.306667pt;}
.y59{bottom:377.346667pt;}
.y10a{bottom:379.426667pt;}
.yba{bottom:383.426667pt;}
.yfa{bottom:386.306667pt;}
.y126{bottom:392.386667pt;}
.y58{bottom:395.426667pt;}
.y24{bottom:397.826667pt;}
.yda{bottom:399.266667pt;}
.y79{bottom:403.266667pt;}
.y109{bottom:405.346667pt;}
.yb9{bottom:409.346667pt;}
.yf9{bottom:412.226667pt;}
.y23{bottom:415.906667pt;}
.yd9{bottom:417.346667pt;}
.y125{bottom:418.306667pt;}
.y57{bottom:421.346667pt;}
.y78{bottom:429.346667pt;}
.y108{bottom:431.266667pt;}
.y22{bottom:433.986667pt;}
.yb8{bottom:435.266667pt;}
.yd8{bottom:435.426667pt;}
.y124{bottom:436.386667pt;}
.yf8{bottom:438.306667pt;}
.y77{bottom:447.426667pt;}
.y56{bottom:448.066667pt;}
.y107{bottom:449.346667pt;}
.y21{bottom:451.906667pt;}
.yb7{bottom:453.346667pt;}
.y123{bottom:454.306667pt;}
.yf7{bottom:456.386667pt;}
.y76{bottom:465.346667pt;}
.y106{bottom:467.426667pt;}
.y20{bottom:469.986667pt;}
.y55{bottom:476.226667pt;}
.yb6{bottom:479.266667pt;}
.y122{bottom:480.226667pt;}
.yf6{bottom:482.306667pt;}
.y75{bottom:483.426667pt;}
.y1f{bottom:487.906667pt;}
.y105{bottom:493.346667pt;}
.y121{bottom:498.306667pt;}
.yf5{bottom:500.386667pt;}
.y74{bottom:501.346667pt;}
.y54{bottom:502.306667pt;}
.yb5{bottom:505.346667pt;}
.y1e{bottom:505.986667pt;}
.y104{bottom:511.426667pt;}
.y120{bottom:516.386667pt;}
.y73{bottom:519.426667pt;}
.y53{bottom:520.386667pt;}
.yb4{bottom:523.426667pt;}
.y1d{bottom:523.906667pt;}
.yf4{bottom:526.306667pt;}
.y72{bottom:537.346667pt;}
.y52{bottom:538.306667pt;}
.y1c{bottom:541.986667pt;}
.y11f{bottom:542.306667pt;}
.y95{bottom:544.226667pt;}
.yf3{bottom:544.386667pt;}
.yb3{bottom:549.346667pt;}
.y51{bottom:556.386667pt;}
.y1b{bottom:559.906667pt;}
.y11e{bottom:560.386667pt;}
.y71{bottom:564.066667pt;}
.yb2{bottom:567.426667pt;}
.y94{bottom:570.306667pt;}
.y50{bottom:574.306667pt;}
.y1a{bottom:578.013333pt;}
.y11d{bottom:578.333333pt;}
.yd7{bottom:585.373333pt;}
.y93{bottom:588.413333pt;}
.y70{bottom:592.253333pt;}
.yb1{bottom:593.373333pt;}
.y19{bottom:595.933333pt;}
.yf2{bottom:596.253333pt;}
.y4f{bottom:600.253333pt;}
.y11c{bottom:604.253333pt;}
.y92{bottom:606.333333pt;}
.yd6{bottom:611.293333pt;}
.yb0{bottom:611.453333pt;}
.y18{bottom:614.013333pt;}
.yf1{bottom:614.333333pt;}
.y4e{bottom:618.333333pt;}
.y11b{bottom:622.333333pt;}
.y91{bottom:624.413333pt;}
.y17{bottom:631.933333pt;}
.y4d{bottom:636.413333pt;}
.yaf{bottom:637.373333pt;}
.yf0{bottom:640.253333pt;}
.y11a{bottom:640.413333pt;}
.y90{bottom:642.333333pt;}
.y16{bottom:650.013333pt;}
.y4c{bottom:654.333333pt;}
.yae{bottom:655.453333pt;}
.yef{bottom:666.333333pt;}
.y15{bottom:667.933333pt;}
.y8f{bottom:668.253333pt;}
.y6f{bottom:672.413333pt;}
.yd5{bottom:673.373333pt;}
.y4b{bottom:680.253333pt;}
.yad{bottom:681.373333pt;}
.yee{bottom:684.413333pt;}
.y14{bottom:686.013333pt;}
.y6e{bottom:690.333333pt;}
.y8e{bottom:694.333333pt;}
.y4a{bottom:698.333333pt;}
.yd4{bottom:699.293333pt;}
.y119{bottom:702.333333pt;}
.y13{bottom:703.933333pt;}
.yac{bottom:707.293333pt;}
.y6d{bottom:708.413333pt;}
.yed{bottom:710.333333pt;}
.y49{bottom:716.413333pt;}
.yd3{bottom:717.373333pt;}
.y8d{bottom:720.253333pt;}
.y12{bottom:722.013333pt;}
.y6c{bottom:726.333333pt;}
.y118{bottom:728.253333pt;}
.yec{bottom:728.413333pt;}
.yab{bottom:733.373333pt;}
.y48{bottom:734.333333pt;}
.yd2{bottom:735.453333pt;}
.y11{bottom:739.933333pt;}
.y6b{bottom:744.413333pt;}
.y8c{bottom:746.333333pt;}
.yaa{bottom:751.453333pt;}
.y47{bottom:752.413333pt;}
.yeb{bottom:754.333333pt;}
.yd1{bottom:761.373333pt;}
.y8b{bottom:764.413333pt;}
.y10{bottom:766.653333pt;}
.ya9{bottom:769.373333pt;}
.y46{bottom:770.333333pt;}
.yea{bottom:772.413333pt;}
.y103{bottom:778.333333pt;}
.yd0{bottom:787.293333pt;}
.ya8{bottom:787.453333pt;}
.y8a{bottom:790.333333pt;}
.yf{bottom:794.813333pt;}
.y45{bottom:796.253333pt;}
.y102{bottom:796.413333pt;}
.ye9{bottom:798.373333pt;}
.ycf{bottom:805.413333pt;}
.y117{bottom:808.453333pt;}
.ya7{bottom:813.413333pt;}
.y44{bottom:814.373333pt;}
.y89{bottom:816.293333pt;}
.ye8{bottom:816.453333pt;}
.ye{bottom:820.933333pt;}
.yce{bottom:823.493333pt;}
.y43{bottom:832.453333pt;}
.y88{bottom:834.373333pt;}
.yd{bottom:839.013333pt;}
.ya6{bottom:839.333333pt;}
.ye7{bottom:842.373333pt;}
.ycd{bottom:849.413333pt;}
.y42{bottom:850.373333pt;}
.y116{bottom:852.453333pt;}
.ya5{bottom:857.413333pt;}
.y87{bottom:860.293333pt;}
.yc{bottom:867.173333pt;}
.ycc{bottom:867.493333pt;}
.ye6{bottom:868.293333pt;}
.y41{bottom:868.453333pt;}
.ya4{bottom:875.493333pt;}
.y86{bottom:878.373333pt;}
.yb{bottom:885.253333pt;}
.ycb{bottom:885.413333pt;}
.y40{bottom:886.373333pt;}
.ya3{bottom:893.413333pt;}
.ye5{bottom:894.373333pt;}
.y85{bottom:896.453333pt;}
.y6a{bottom:904.453333pt;}
.yca{bottom:911.333333pt;}
.y3f{bottom:912.293333pt;}
.ye4{bottom:912.453333pt;}
.y84{bottom:914.373333pt;}
.ya2{bottom:920.133333pt;}
.y69{bottom:922.373333pt;}
.ya{bottom:922.853333pt;}
.y3e{bottom:930.373333pt;}
.y83{bottom:932.453333pt;}
.yc9{bottom:937.413333pt;}
.y115{bottom:940.293333pt;}
.y68{bottom:940.453333pt;}
.y9{bottom:946.853333pt;}
.ya1{bottom:948.293333pt;}
.y3d{bottom:948.453333pt;}
.yc8{bottom:955.493333pt;}
.y82{bottom:958.373333pt;}
.y3c{bottom:966.373333pt;}
.yc7{bottom:973.413333pt;}
.ya0{bottom:974.373333pt;}
.y8{bottom:977.413333pt;}
.y81{bottom:984.293333pt;}
.y3b{bottom:984.453333pt;}
.y1{bottom:991.333333pt;}
.yc6{bottom:991.493333pt;}
.y67{bottom:992.293333pt;}
.y9f{bottom:992.453333pt;}
.y3a{bottom:1002.373333pt;}
.y66{bottom:1010.373333pt;}
.yc5{bottom:1018.053333pt;}
.y39{bottom:1028.320000pt;}
.y65{bottom:1028.480000pt;}
.y38{bottom:1046.400000pt;}
.y30{bottom:1063.840000pt;}
.hf{height:9.440000pt;}
.hd{height:20.000000pt;}
.h3{height:32.507812pt;}
.h4{height:33.421875pt;}
.hb{height:36.986875pt;}
.h9{height:43.343750pt;}
.h5{height:44.562500pt;}
.h10{height:46.593750pt;}
.ha{height:50.712187pt;}
.h8{height:51.815625pt;}
.hc{height:52.834688pt;}
.h6{height:57.647187pt;}
.h2{height:58.563750pt;}
.h7{height:59.268125pt;}
.he{height:74.477812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.w4{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.632000pt;}
.xc{left:19.520000pt;}
.x2{left:75.551988pt;}
.x11{left:79.871988pt;}
.x3{left:84.031988pt;}
.x6{left:237.346655pt;}
.x13{left:249.186655pt;}
.x12{left:268.386655pt;}
.x4{left:269.506655pt;}
.x15{left:282.466655pt;}
.xf{left:303.906655pt;}
.xe{left:326.466655pt;}
.x7{left:328.386655pt;}
.x5{left:331.906655pt;}
.x9{left:346.786655pt;}
.x14{left:353.026655pt;}
.x8{left:363.746655pt;}
.xa{left:396.893322pt;}
.x10{left:664.933322pt;}
.x1{left:718.053322pt;}
.xb{left:720.320000pt;}
}




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