
    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_8f75c7798237e925450b716d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_5b44c1cc018a33cdc76bb4de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.055176;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_d1e038ae77b1d37b883c288d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_7c606aa804f4732d58555368.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_f2f8d0ca44a7c6be29d2b7f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_bbc86abac1ecfbdb264e15bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_33de26783765e463ddf482b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_f8af83c517bd5b1135d5b810.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.126600px;}
.ls4{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls7{letter-spacing:5.184000px;}
.lsb{letter-spacing:11.520000px;}
.ls8{letter-spacing:13.680000px;}
.ls9{letter-spacing:15.120000px;}
.ls6{letter-spacing:28.224000px;}
.ls5{letter-spacing:33.984000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.840000px;}
.ws0{word-spacing:-13.273800px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-5.137920px;}
._31{margin-left:-2.416320px;}
._0{margin-left:-1.126080px;}
._1{width:1.028160px;}
._c{width:2.119680px;}
._16{width:3.144960px;}
._8{width:4.173120px;}
._4{width:5.431680px;}
._5{width:6.756480px;}
._d{width:7.948800px;}
._9{width:9.472320px;}
._e{width:10.863360px;}
._6{width:12.784320px;}
._7{width:14.042880px;}
._2{width:15.102720px;}
._10{width:16.128000px;}
._b{width:18.360000px;}
._a{width:19.384320px;}
._f{width:20.468160px;}
._15{width:21.651840px;}
._18{width:22.752000px;}
._3{width:24.243840px;}
._19{width:25.364160px;}
._1b{width:27.216000px;}
._17{width:28.296000px;}
._12{width:29.880000px;}
._11{width:31.608000px;}
._1a{width:32.904000px;}
._14{width:34.200000px;}
._13{width:35.208000px;}
._1d{width:37.080000px;}
._1c{width:38.808000px;}
._21{width:39.960000px;}
._22{width:41.391360px;}
._29{width:42.508800px;}
._1e{width:43.560000px;}
._1f{width:44.640000px;}
._20{width:46.056000px;}
._26{width:47.739840px;}
._24{width:50.328000px;}
._25{width:51.336000px;}
._32{width:55.045440px;}
._28{width:63.744000px;}
._27{width:64.920000px;}
._2a{width:88.761600px;}
._2b{width:89.887680px;}
._2c{width:91.543680px;}
._2d{width:122.610240px;}
._30{width:188.717760px;}
._2e{width:194.414400px;}
._2f{width:196.004160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:118.116000px;}
.y38{bottom:119.016000px;}
.y6c{bottom:120.816000px;}
.yda{bottom:126.036000px;}
.ya1{bottom:128.736000px;}
.yc3{bottom:138.816000px;}
.y37{bottom:139.716000px;}
.yfe{bottom:141.156000px;}
.y6b{bottom:141.516000px;}
.y74{bottom:141.696000px;}
.yd9{bottom:146.736000px;}
.ya0{bottom:149.436000px;}
.yc2{bottom:159.150000px;}
.yfd{bottom:160.230000px;}
.y36{bottom:160.410000px;}
.y6a{bottom:162.210000px;}
.y73{bottom:162.390000px;}
.yd8{bottom:167.430000px;}
.y9f{bottom:170.130000px;}
.yc1{bottom:174.450000px;}
.yfc{bottom:179.130000px;}
.y35{bottom:181.110000px;}
.y69{bottom:182.910000px;}
.y72{bottom:183.090000px;}
.yd7{bottom:188.130000px;}
.y9e{bottom:190.830000px;}
.yfb{bottom:198.030000px;}
.y34{bottom:201.810000px;}
.y68{bottom:203.610000px;}
.y71{bottom:203.790000px;}
.yd6{bottom:208.830000px;}
.y9d{bottom:211.530000px;}
.yfa{bottom:217.110000px;}
.y33{bottom:222.510000px;}
.y67{bottom:224.310000px;}
.y70{bottom:224.490000px;}
.yd5{bottom:229.530000px;}
.y9c{bottom:232.230000px;}
.yf9{bottom:236.010000px;}
.y32{bottom:243.210000px;}
.y66{bottom:245.010000px;}
.y6f{bottom:245.190000px;}
.yd4{bottom:250.230000px;}
.y9b{bottom:252.930000px;}
.yf8{bottom:255.090000px;}
.y31{bottom:263.910000px;}
.y65{bottom:265.710000px;}
.yd3{bottom:270.930000px;}
.y9a{bottom:273.630000px;}
.yf7{bottom:273.990000px;}
.y30{bottom:284.610000px;}
.y64{bottom:286.410000px;}
.yd2{bottom:291.450000px;}
.yf6{bottom:292.890000px;}
.y99{bottom:294.330000px;}
.y12b{bottom:301.530000px;}
.y2f{bottom:305.310000px;}
.y63{bottom:307.110000px;}
.yf5{bottom:311.970000px;}
.yd1{bottom:312.150000px;}
.yc0{bottom:313.410000px;}
.y98{bottom:315.030000px;}
.y12a{bottom:320.610000px;}
.y2e{bottom:325.830000px;}
.y62{bottom:327.810000px;}
.yf4{bottom:330.870000px;}
.yd0{bottom:332.850000px;}
.ybf{bottom:334.110000px;}
.y97{bottom:335.730000px;}
.y129{bottom:339.555000px;}
.y2d{bottom:344.775000px;}
.y61{bottom:348.555000px;}
.yf3{bottom:349.995000px;}
.ycf{bottom:353.595000px;}
.ybe{bottom:354.855000px;}
.y96{bottom:356.475000px;}
.y128{bottom:358.635000px;}
.y2c{bottom:363.675000px;}
.yf2{bottom:368.895000px;}
.y60{bottom:369.255000px;}
.yce{bottom:374.295000px;}
.ybd{bottom:375.555000px;}
.y95{bottom:377.175000px;}
.y127{bottom:377.535000px;}
.y2b{bottom:382.755000px;}
.yf1{bottom:387.975000px;}
.y5f{bottom:389.955000px;}
.ycd{bottom:394.995000px;}
.ybc{bottom:396.255000px;}
.y126{bottom:396.435000px;}
.y94{bottom:397.875000px;}
.y2a{bottom:401.655000px;}
.yf0{bottom:406.875000px;}
.y5e{bottom:410.655000px;}
.y125{bottom:415.515000px;}
.ycc{bottom:415.695000px;}
.ybb{bottom:416.955000px;}
.y93{bottom:418.575000px;}
.y29{bottom:420.735000px;}
.yef{bottom:425.775000px;}
.y5d{bottom:431.355000px;}
.y124{bottom:434.415000px;}
.ycb{bottom:436.395000px;}
.yba{bottom:437.655000px;}
.y92{bottom:439.275000px;}
.y28{bottom:439.635000px;}
.yee{bottom:444.855000px;}
.y5c{bottom:452.055000px;}
.y123{bottom:453.495000px;}
.yca{bottom:457.095000px;}
.yb9{bottom:458.355000px;}
.y27{bottom:458.535000px;}
.y91{bottom:459.975000px;}
.yed{bottom:463.755000px;}
.y122{bottom:472.395000px;}
.y5b{bottom:472.755000px;}
.y26{bottom:477.615000px;}
.yc9{bottom:477.795000px;}
.yb8{bottom:479.055000px;}
.y90{bottom:480.675000px;}
.yec{bottom:482.835000px;}
.y121{bottom:491.295000px;}
.y5a{bottom:493.455000px;}
.y25{bottom:496.515000px;}
.yc8{bottom:498.495000px;}
.yb7{bottom:499.755000px;}
.y8f{bottom:501.375000px;}
.yeb{bottom:501.735000px;}
.y120{bottom:510.375000px;}
.y59{bottom:514.155000px;}
.y24{bottom:515.595000px;}
.yc7{bottom:519.015000px;}
.yb6{bottom:520.455000px;}
.yea{bottom:520.635000px;}
.y8e{bottom:522.075000px;}
.y11f{bottom:529.275000px;}
.y23{bottom:534.495000px;}
.y58{bottom:534.855000px;}
.yc6{bottom:537.915000px;}
.ye9{bottom:539.715000px;}
.yb5{bottom:541.155000px;}
.y8d{bottom:542.775000px;}
.y11e{bottom:548.355000px;}
.y22{bottom:553.395000px;}
.y57{bottom:555.555000px;}
.yc5{bottom:556.995000px;}
.ye8{bottom:558.615000px;}
.yb4{bottom:561.855000px;}
.y8c{bottom:563.475000px;}
.y11d{bottom:567.255000px;}
.y21{bottom:572.475000px;}
.y56{bottom:576.255000px;}
.ye7{bottom:577.695000px;}
.yb3{bottom:582.555000px;}
.y8b{bottom:584.175000px;}
.y11c{bottom:586.335000px;}
.y20{bottom:591.375000px;}
.ye6{bottom:596.595000px;}
.y6e{bottom:596.775000px;}
.y55{bottom:596.955000px;}
.yb2{bottom:603.255000px;}
.y8a{bottom:604.905000px;}
.y11b{bottom:605.265000px;}
.y1f{bottom:610.485000px;}
.y6d{bottom:612.105000px;}
.ye5{bottom:615.525000px;}
.y54{bottom:617.685000px;}
.yb1{bottom:623.985000px;}
.y11a{bottom:624.165000px;}
.y89{bottom:625.605000px;}
.y1e{bottom:629.745000px;}
.ye4{bottom:634.605000px;}
.y53{bottom:638.385000px;}
.y119{bottom:643.245000px;}
.yb0{bottom:644.685000px;}
.y88{bottom:646.305000px;}
.y1d{bottom:650.085000px;}
.ye3{bottom:653.505000px;}
.y52{bottom:659.085000px;}
.y118{bottom:662.145000px;}
.yaf{bottom:665.385000px;}
.y87{bottom:667.005000px;}
.y1c{bottom:668.985000px;}
.ye2{bottom:672.585000px;}
.y51{bottom:679.785000px;}
.y117{bottom:681.225000px;}
.yae{bottom:685.725000px;}
.y86{bottom:687.705000px;}
.y1b{bottom:688.065000px;}
.ye1{bottom:691.485000px;}
.y116{bottom:700.125000px;}
.y50{bottom:700.485000px;}
.yad{bottom:701.025000px;}
.y1a{bottom:706.965000px;}
.y85{bottom:708.405000px;}
.ye0{bottom:710.385000px;}
.y115{bottom:719.025000px;}
.y4f{bottom:721.185000px;}
.y19{bottom:726.045000px;}
.y84{bottom:729.105000px;}
.ydf{bottom:729.465000px;}
.y114{bottom:738.105000px;}
.y4e{bottom:741.885000px;}
.y18{bottom:744.945000px;}
.yde{bottom:748.365000px;}
.y83{bottom:749.805000px;}
.y113{bottom:757.005000px;}
.y4d{bottom:762.585000px;}
.y17{bottom:764.025000px;}
.ydd{bottom:767.445000px;}
.y82{bottom:770.505000px;}
.y112{bottom:776.085000px;}
.y16{bottom:782.925000px;}
.y4c{bottom:783.285000px;}
.ydc{bottom:786.345000px;}
.y81{bottom:791.205000px;}
.y111{bottom:794.985000px;}
.y15{bottom:801.825000px;}
.y4b{bottom:803.805000px;}
.ydb{bottom:805.245000px;}
.y80{bottom:811.905000px;}
.y110{bottom:813.885000px;}
.y14{bottom:820.905000px;}
.y4a{bottom:824.505000px;}
.y7f{bottom:832.605000px;}
.y10f{bottom:832.965000px;}
.y13{bottom:839.805000px;}
.y49{bottom:845.205000px;}
.yac{bottom:847.005000px;}
.y10e{bottom:851.865000px;}
.y7e{bottom:853.305000px;}
.y12{bottom:858.885000px;}
.y48{bottom:865.905000px;}
.yab{bottom:867.705000px;}
.y10d{bottom:870.990000px;}
.y7d{bottom:874.050000px;}
.y11{bottom:877.830000px;}
.y47{bottom:886.650000px;}
.yaa{bottom:888.450000px;}
.y10c{bottom:889.890000px;}
.y7c{bottom:894.750000px;}
.y10{bottom:896.730000px;}
.y46{bottom:907.350000px;}
.y10b{bottom:908.790000px;}
.ya9{bottom:909.150000px;}
.y7b{bottom:915.450000px;}
.yf{bottom:915.810000px;}
.y10a{bottom:927.870000px;}
.y45{bottom:928.050000px;}
.ya8{bottom:929.850000px;}
.ye{bottom:934.710000px;}
.y7a{bottom:936.150000px;}
.y109{bottom:946.770000px;}
.y44{bottom:948.750000px;}
.ya7{bottom:950.550000px;}
.yd{bottom:953.790000px;}
.y79{bottom:956.850000px;}
.y108{bottom:965.850000px;}
.y43{bottom:969.450000px;}
.ya6{bottom:971.250000px;}
.yc{bottom:972.690000px;}
.y78{bottom:977.550000px;}
.y107{bottom:984.750000px;}
.y42{bottom:990.150000px;}
.yb{bottom:991.590000px;}
.ya5{bottom:991.950000px;}
.y77{bottom:998.250000px;}
.y106{bottom:1003.650000px;}
.ya{bottom:1010.670000px;}
.y41{bottom:1010.850000px;}
.ya4{bottom:1012.650000px;}
.y76{bottom:1018.590000px;}
.y105{bottom:1022.730000px;}
.y9{bottom:1029.570000px;}
.y40{bottom:1031.550000px;}
.ya3{bottom:1033.350000px;}
.y75{bottom:1033.890000px;}
.y104{bottom:1041.630000px;}
.y8{bottom:1048.830000px;}
.y3f{bottom:1052.250000px;}
.ya2{bottom:1053.690000px;}
.y103{bottom:1060.710000px;}
.y7{bottom:1069.350000px;}
.y3e{bottom:1072.950000px;}
.y102{bottom:1079.610000px;}
.y6{bottom:1088.250000px;}
.y3d{bottom:1093.650000px;}
.y101{bottom:1098.690000px;}
.y5{bottom:1108.050000px;}
.y3c{bottom:1114.350000px;}
.y100{bottom:1117.590000px;}
.y4{bottom:1132.170000px;}
.y3b{bottom:1135.050000px;}
.yff{bottom:1136.490000px;}
.y3{bottom:1156.320000px;}
.y3a{bottom:1174.500000px;}
.y2{bottom:1175.400000px;}
.y1{bottom:1193.220000px;}
.y39{bottom:1194.660000px;}
.h9{height:46.251562px;}
.h6{height:46.736719px;}
.hc{height:50.273438px;}
.h3{height:50.364141px;}
.hd{height:50.800781px;}
.ha{height:51.996094px;}
.hf{height:52.417969px;}
.h7{height:53.224453px;}
.hb{height:54.596250px;}
.h4{height:55.825312px;}
.h2{height:56.084062px;}
.he{height:59.343750px;}
.h5{height:59.436914px;}
.h8{height:61.043203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:111.095987px;}
.x5{left:121.355987px;}
.x4{left:132.335987px;}
.x15{left:138.095987px;}
.x17{left:142.955987px;}
.xc{left:151.589987px;}
.x16{left:165.089987px;}
.x14{left:221.609987px;}
.x8{left:244.829987px;}
.x12{left:254.369987px;}
.x10{left:285.554987px;}
.xe{left:288.794987px;}
.x7{left:304.094987px;}
.x9{left:320.114987px;}
.xb{left:415.514987px;}
.xa{left:417.674987px;}
.x6{left:446.654987px;}
.x2{left:569.804987px;}
.xf{left:595.364987px;}
.xd{left:604.184987px;}
.x13{left:605.624987px;}
.x11{left:623.264987px;}
.x3{left:782.249987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.112533pt;}
.ls4{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls7{letter-spacing:4.608000pt;}
.lsb{letter-spacing:10.240000pt;}
.ls8{letter-spacing:12.160000pt;}
.ls9{letter-spacing:13.440000pt;}
.ls6{letter-spacing:25.088000pt;}
.ls5{letter-spacing:30.208000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws0{word-spacing:-11.798933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-4.567040pt;}
._31{margin-left:-2.147840pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.913920pt;}
._c{width:1.884160pt;}
._16{width:2.795520pt;}
._8{width:3.709440pt;}
._4{width:4.828160pt;}
._5{width:6.005760pt;}
._d{width:7.065600pt;}
._9{width:8.419840pt;}
._e{width:9.656320pt;}
._6{width:11.363840pt;}
._7{width:12.482560pt;}
._2{width:13.424640pt;}
._10{width:14.336000pt;}
._b{width:16.320000pt;}
._a{width:17.230507pt;}
._f{width:18.193920pt;}
._15{width:19.246080pt;}
._18{width:20.224000pt;}
._3{width:21.550080pt;}
._19{width:22.545920pt;}
._1b{width:24.192000pt;}
._17{width:25.152000pt;}
._12{width:26.560000pt;}
._11{width:28.096000pt;}
._1a{width:29.248000pt;}
._14{width:30.400000pt;}
._13{width:31.296000pt;}
._1d{width:32.960000pt;}
._1c{width:34.496000pt;}
._21{width:35.520000pt;}
._22{width:36.792320pt;}
._29{width:37.785600pt;}
._1e{width:38.720000pt;}
._1f{width:39.680000pt;}
._20{width:40.938667pt;}
._26{width:42.435413pt;}
._24{width:44.736000pt;}
._25{width:45.632000pt;}
._32{width:48.929280pt;}
._28{width:56.661333pt;}
._27{width:57.706667pt;}
._2a{width:78.899200pt;}
._2b{width:79.900160pt;}
._2c{width:81.372160pt;}
._2d{width:108.986880pt;}
._30{width:167.749120pt;}
._2e{width:172.812800pt;}
._2f{width:174.225920pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:104.992000pt;}
.y38{bottom:105.792000pt;}
.y6c{bottom:107.392000pt;}
.yda{bottom:112.032000pt;}
.ya1{bottom:114.432000pt;}
.yc3{bottom:123.392000pt;}
.y37{bottom:124.192000pt;}
.yfe{bottom:125.472000pt;}
.y6b{bottom:125.792000pt;}
.y74{bottom:125.952000pt;}
.yd9{bottom:130.432000pt;}
.ya0{bottom:132.832000pt;}
.yc2{bottom:141.466667pt;}
.yfd{bottom:142.426667pt;}
.y36{bottom:142.586667pt;}
.y6a{bottom:144.186667pt;}
.y73{bottom:144.346667pt;}
.yd8{bottom:148.826667pt;}
.y9f{bottom:151.226667pt;}
.yc1{bottom:155.066667pt;}
.yfc{bottom:159.226667pt;}
.y35{bottom:160.986667pt;}
.y69{bottom:162.586667pt;}
.y72{bottom:162.746667pt;}
.yd7{bottom:167.226667pt;}
.y9e{bottom:169.626667pt;}
.yfb{bottom:176.026667pt;}
.y34{bottom:179.386667pt;}
.y68{bottom:180.986667pt;}
.y71{bottom:181.146667pt;}
.yd6{bottom:185.626667pt;}
.y9d{bottom:188.026667pt;}
.yfa{bottom:192.986667pt;}
.y33{bottom:197.786667pt;}
.y67{bottom:199.386667pt;}
.y70{bottom:199.546667pt;}
.yd5{bottom:204.026667pt;}
.y9c{bottom:206.426667pt;}
.yf9{bottom:209.786667pt;}
.y32{bottom:216.186667pt;}
.y66{bottom:217.786667pt;}
.y6f{bottom:217.946667pt;}
.yd4{bottom:222.426667pt;}
.y9b{bottom:224.826667pt;}
.yf8{bottom:226.746667pt;}
.y31{bottom:234.586667pt;}
.y65{bottom:236.186667pt;}
.yd3{bottom:240.826667pt;}
.y9a{bottom:243.226667pt;}
.yf7{bottom:243.546667pt;}
.y30{bottom:252.986667pt;}
.y64{bottom:254.586667pt;}
.yd2{bottom:259.066667pt;}
.yf6{bottom:260.346667pt;}
.y99{bottom:261.626667pt;}
.y12b{bottom:268.026667pt;}
.y2f{bottom:271.386667pt;}
.y63{bottom:272.986667pt;}
.yf5{bottom:277.306667pt;}
.yd1{bottom:277.466667pt;}
.yc0{bottom:278.586667pt;}
.y98{bottom:280.026667pt;}
.y12a{bottom:284.986667pt;}
.y2e{bottom:289.626667pt;}
.y62{bottom:291.386667pt;}
.yf4{bottom:294.106667pt;}
.yd0{bottom:295.866667pt;}
.ybf{bottom:296.986667pt;}
.y97{bottom:298.426667pt;}
.y129{bottom:301.826667pt;}
.y2d{bottom:306.466667pt;}
.y61{bottom:309.826667pt;}
.yf3{bottom:311.106667pt;}
.ycf{bottom:314.306667pt;}
.ybe{bottom:315.426667pt;}
.y96{bottom:316.866667pt;}
.y128{bottom:318.786667pt;}
.y2c{bottom:323.266667pt;}
.yf2{bottom:327.906667pt;}
.y60{bottom:328.226667pt;}
.yce{bottom:332.706667pt;}
.ybd{bottom:333.826667pt;}
.y95{bottom:335.266667pt;}
.y127{bottom:335.586667pt;}
.y2b{bottom:340.226667pt;}
.yf1{bottom:344.866667pt;}
.y5f{bottom:346.626667pt;}
.ycd{bottom:351.106667pt;}
.ybc{bottom:352.226667pt;}
.y126{bottom:352.386667pt;}
.y94{bottom:353.666667pt;}
.y2a{bottom:357.026667pt;}
.yf0{bottom:361.666667pt;}
.y5e{bottom:365.026667pt;}
.y125{bottom:369.346667pt;}
.ycc{bottom:369.506667pt;}
.ybb{bottom:370.626667pt;}
.y93{bottom:372.066667pt;}
.y29{bottom:373.986667pt;}
.yef{bottom:378.466667pt;}
.y5d{bottom:383.426667pt;}
.y124{bottom:386.146667pt;}
.ycb{bottom:387.906667pt;}
.yba{bottom:389.026667pt;}
.y92{bottom:390.466667pt;}
.y28{bottom:390.786667pt;}
.yee{bottom:395.426667pt;}
.y5c{bottom:401.826667pt;}
.y123{bottom:403.106667pt;}
.yca{bottom:406.306667pt;}
.yb9{bottom:407.426667pt;}
.y27{bottom:407.586667pt;}
.y91{bottom:408.866667pt;}
.yed{bottom:412.226667pt;}
.y122{bottom:419.906667pt;}
.y5b{bottom:420.226667pt;}
.y26{bottom:424.546667pt;}
.yc9{bottom:424.706667pt;}
.yb8{bottom:425.826667pt;}
.y90{bottom:427.266667pt;}
.yec{bottom:429.186667pt;}
.y121{bottom:436.706667pt;}
.y5a{bottom:438.626667pt;}
.y25{bottom:441.346667pt;}
.yc8{bottom:443.106667pt;}
.yb7{bottom:444.226667pt;}
.y8f{bottom:445.666667pt;}
.yeb{bottom:445.986667pt;}
.y120{bottom:453.666667pt;}
.y59{bottom:457.026667pt;}
.y24{bottom:458.306667pt;}
.yc7{bottom:461.346667pt;}
.yb6{bottom:462.626667pt;}
.yea{bottom:462.786667pt;}
.y8e{bottom:464.066667pt;}
.y11f{bottom:470.466667pt;}
.y23{bottom:475.106667pt;}
.y58{bottom:475.426667pt;}
.yc6{bottom:478.146667pt;}
.ye9{bottom:479.746667pt;}
.yb5{bottom:481.026667pt;}
.y8d{bottom:482.466667pt;}
.y11e{bottom:487.426667pt;}
.y22{bottom:491.906667pt;}
.y57{bottom:493.826667pt;}
.yc5{bottom:495.106667pt;}
.ye8{bottom:496.546667pt;}
.yb4{bottom:499.426667pt;}
.y8c{bottom:500.866667pt;}
.y11d{bottom:504.226667pt;}
.y21{bottom:508.866667pt;}
.y56{bottom:512.226667pt;}
.ye7{bottom:513.506667pt;}
.yb3{bottom:517.826667pt;}
.y8b{bottom:519.266667pt;}
.y11c{bottom:521.186667pt;}
.y20{bottom:525.666667pt;}
.ye6{bottom:530.306667pt;}
.y6e{bottom:530.466667pt;}
.y55{bottom:530.626667pt;}
.yb2{bottom:536.226667pt;}
.y8a{bottom:537.693333pt;}
.y11b{bottom:538.013333pt;}
.y1f{bottom:542.653333pt;}
.y6d{bottom:544.093333pt;}
.ye5{bottom:547.133333pt;}
.y54{bottom:549.053333pt;}
.yb1{bottom:554.653333pt;}
.y11a{bottom:554.813333pt;}
.y89{bottom:556.093333pt;}
.y1e{bottom:559.773333pt;}
.ye4{bottom:564.093333pt;}
.y53{bottom:567.453333pt;}
.y119{bottom:571.773333pt;}
.yb0{bottom:573.053333pt;}
.y88{bottom:574.493333pt;}
.y1d{bottom:577.853333pt;}
.ye3{bottom:580.893333pt;}
.y52{bottom:585.853333pt;}
.y118{bottom:588.573333pt;}
.yaf{bottom:591.453333pt;}
.y87{bottom:592.893333pt;}
.y1c{bottom:594.653333pt;}
.ye2{bottom:597.853333pt;}
.y51{bottom:604.253333pt;}
.y117{bottom:605.533333pt;}
.yae{bottom:609.533333pt;}
.y86{bottom:611.293333pt;}
.y1b{bottom:611.613333pt;}
.ye1{bottom:614.653333pt;}
.y116{bottom:622.333333pt;}
.y50{bottom:622.653333pt;}
.yad{bottom:623.133333pt;}
.y1a{bottom:628.413333pt;}
.y85{bottom:629.693333pt;}
.ye0{bottom:631.453333pt;}
.y115{bottom:639.133333pt;}
.y4f{bottom:641.053333pt;}
.y19{bottom:645.373333pt;}
.y84{bottom:648.093333pt;}
.ydf{bottom:648.413333pt;}
.y114{bottom:656.093333pt;}
.y4e{bottom:659.453333pt;}
.y18{bottom:662.173333pt;}
.yde{bottom:665.213333pt;}
.y83{bottom:666.493333pt;}
.y113{bottom:672.893333pt;}
.y4d{bottom:677.853333pt;}
.y17{bottom:679.133333pt;}
.ydd{bottom:682.173333pt;}
.y82{bottom:684.893333pt;}
.y112{bottom:689.853333pt;}
.y16{bottom:695.933333pt;}
.y4c{bottom:696.253333pt;}
.ydc{bottom:698.973333pt;}
.y81{bottom:703.293333pt;}
.y111{bottom:706.653333pt;}
.y15{bottom:712.733333pt;}
.y4b{bottom:714.493333pt;}
.ydb{bottom:715.773333pt;}
.y80{bottom:721.693333pt;}
.y110{bottom:723.453333pt;}
.y14{bottom:729.693333pt;}
.y4a{bottom:732.893333pt;}
.y7f{bottom:740.093333pt;}
.y10f{bottom:740.413333pt;}
.y13{bottom:746.493333pt;}
.y49{bottom:751.293333pt;}
.yac{bottom:752.893333pt;}
.y10e{bottom:757.213333pt;}
.y7e{bottom:758.493333pt;}
.y12{bottom:763.453333pt;}
.y48{bottom:769.693333pt;}
.yab{bottom:771.293333pt;}
.y10d{bottom:774.213333pt;}
.y7d{bottom:776.933333pt;}
.y11{bottom:780.293333pt;}
.y47{bottom:788.133333pt;}
.yaa{bottom:789.733333pt;}
.y10c{bottom:791.013333pt;}
.y7c{bottom:795.333333pt;}
.y10{bottom:797.093333pt;}
.y46{bottom:806.533333pt;}
.y10b{bottom:807.813333pt;}
.ya9{bottom:808.133333pt;}
.y7b{bottom:813.733333pt;}
.yf{bottom:814.053333pt;}
.y10a{bottom:824.773333pt;}
.y45{bottom:824.933333pt;}
.ya8{bottom:826.533333pt;}
.ye{bottom:830.853333pt;}
.y7a{bottom:832.133333pt;}
.y109{bottom:841.573333pt;}
.y44{bottom:843.333333pt;}
.ya7{bottom:844.933333pt;}
.yd{bottom:847.813333pt;}
.y79{bottom:850.533333pt;}
.y108{bottom:858.533333pt;}
.y43{bottom:861.733333pt;}
.ya6{bottom:863.333333pt;}
.yc{bottom:864.613333pt;}
.y78{bottom:868.933333pt;}
.y107{bottom:875.333333pt;}
.y42{bottom:880.133333pt;}
.yb{bottom:881.413333pt;}
.ya5{bottom:881.733333pt;}
.y77{bottom:887.333333pt;}
.y106{bottom:892.133333pt;}
.ya{bottom:898.373333pt;}
.y41{bottom:898.533333pt;}
.ya4{bottom:900.133333pt;}
.y76{bottom:905.413333pt;}
.y105{bottom:909.093333pt;}
.y9{bottom:915.173333pt;}
.y40{bottom:916.933333pt;}
.ya3{bottom:918.533333pt;}
.y75{bottom:919.013333pt;}
.y104{bottom:925.893333pt;}
.y8{bottom:932.293333pt;}
.y3f{bottom:935.333333pt;}
.ya2{bottom:936.613333pt;}
.y103{bottom:942.853333pt;}
.y7{bottom:950.533333pt;}
.y3e{bottom:953.733333pt;}
.y102{bottom:959.653333pt;}
.y6{bottom:967.333333pt;}
.y3d{bottom:972.133333pt;}
.y101{bottom:976.613333pt;}
.y5{bottom:984.933333pt;}
.y3c{bottom:990.533333pt;}
.y100{bottom:993.413333pt;}
.y4{bottom:1006.373333pt;}
.y3b{bottom:1008.933333pt;}
.yff{bottom:1010.213333pt;}
.y3{bottom:1027.840000pt;}
.y3a{bottom:1044.000000pt;}
.y2{bottom:1044.800000pt;}
.y1{bottom:1060.640000pt;}
.y39{bottom:1061.920000pt;}
.h9{height:41.112500pt;}
.h6{height:41.543750pt;}
.hc{height:44.687500pt;}
.h3{height:44.768125pt;}
.hd{height:45.156250pt;}
.ha{height:46.218750pt;}
.hf{height:46.593750pt;}
.h7{height:47.310625pt;}
.hb{height:48.530000pt;}
.h4{height:49.622500pt;}
.h2{height:49.852500pt;}
.he{height:52.750000pt;}
.h5{height:52.832812pt;}
.h8{height:54.260625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.751988pt;}
.x5{left:107.871988pt;}
.x4{left:117.631988pt;}
.x15{left:122.751988pt;}
.x17{left:127.071988pt;}
.xc{left:134.746655pt;}
.x16{left:146.746655pt;}
.x14{left:196.986655pt;}
.x8{left:217.626655pt;}
.x12{left:226.106655pt;}
.x10{left:253.826655pt;}
.xe{left:256.706655pt;}
.x7{left:270.306655pt;}
.x9{left:284.546655pt;}
.xb{left:369.346655pt;}
.xa{left:371.266655pt;}
.x6{left:397.026655pt;}
.x2{left:506.493322pt;}
.xf{left:529.213322pt;}
.xd{left:537.053322pt;}
.x13{left:538.333322pt;}
.x11{left:554.013322pt;}
.x3{left:695.333322pt;}
}




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