
    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_ebc7a06ec8ff87c1011bffd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2088d5d5dfded835d9772380.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_894ec0ed353918350570ac5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_f93e2b1f692d335806166b69.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fb9c9e31eb8ba531a252e640.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_6ec45b0026819901ca15ac0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_4b3aa575a208a17161324930.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_82e0bfdc11d6cc675479cc81.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_45930151e80d98b3398a43a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v1{vertical-align:-76.320000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls8{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.018000px;}
.lse{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.194400px;}
.ls5{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.049760px;}
.ls10{letter-spacing:25.308000px;}
.ls15{letter-spacing:52.668000px;}
.lsd{letter-spacing:72.108000px;}
.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;}
}
.ws10{word-spacing:-19.457280px;}
.wsa{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.431360px;}
.ws2{word-spacing:-17.208000px;}
.ws5{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.226440px;}
.ws7{word-spacing:-15.170400px;}
.ws8{word-spacing:-14.976000px;}
.ws3{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.824000px;}
.wse{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.488000px;}
._5{width:2.850480px;}
._3{width:4.421760px;}
._19{width:5.454000px;}
._4{width:6.454080px;}
._9{width:8.215920px;}
._6{width:9.442080px;}
._f{width:10.615920px;}
._11{width:12.420000px;}
._d{width:15.282000px;}
._a{width:16.428000px;}
._7{width:18.090000px;}
._8{width:19.116000px;}
._e{width:20.328000px;}
._17{width:21.384000px;}
._10{width:22.896000px;}
._15{width:24.408000px;}
._12{width:25.866000px;}
._13{width:27.522000px;}
._14{width:28.890000px;}
._1b{width:32.202000px;}
._1a{width:33.696000px;}
._16{width:35.046000px;}
._25{width:36.126000px;}
._26{width:37.158000px;}
._27{width:41.544000px;}
._18{width:42.660000px;}
._23{width:43.902000px;}
._1f{width:51.162000px;}
._1e{width:52.650000px;}
._1d{width:55.890000px;}
._1c{width:57.294000px;}
._20{width:58.860000px;}
._c{width:62.046000px;}
._b{width:63.450000px;}
._24{width:64.530000px;}
._22{width:70.902000px;}
._21{width:71.982000px;}
._2{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs8{font-size:77.904000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y37{bottom:71.490000px;}
.y36{bottom:91.290000px;}
.yac{bottom:108.000000px;}
.y10f{bottom:108.360000px;}
.y2c{bottom:109.620000px;}
.y35{bottom:111.270000px;}
.yde{bottom:116.820000px;}
.y72{bottom:117.900000px;}
.yab{bottom:126.000000px;}
.y10e{bottom:126.180000px;}
.y2b{bottom:127.440000px;}
.y34{bottom:131.070000px;}
.ydd{bottom:134.640000px;}
.y71{bottom:135.720000px;}
.yaa{bottom:143.820000px;}
.y10d{bottom:144.180000px;}
.y2a{bottom:145.260000px;}
.y33{bottom:150.870000px;}
.ydc{bottom:152.460000px;}
.y70{bottom:153.540000px;}
.ya9{bottom:161.640000px;}
.y29{bottom:163.080000px;}
.ydb{bottom:170.280000px;}
.y32{bottom:170.670000px;}
.y10c{bottom:171.000000px;}
.y6f{bottom:171.360000px;}
.y28{bottom:180.900000px;}
.ya8{bottom:188.280000px;}
.y10b{bottom:188.820000px;}
.y6e{bottom:189.180000px;}
.y31{bottom:190.470000px;}
.y2d{bottom:195.120000px;}
.y27{bottom:198.900000px;}
.yda{bottom:206.130000px;}
.y10a{bottom:206.670000px;}
.y6d{bottom:207.210000px;}
.y30{bottom:210.450000px;}
.ya7{bottom:215.490000px;}
.y26{bottom:216.750000px;}
.y39{bottom:217.650000px;}
.yd9{bottom:223.950000px;}
.y109{bottom:224.490000px;}
.y6c{bottom:225.030000px;}
.y2f{bottom:230.250000px;}
.ya6{bottom:233.310000px;}
.yd8{bottom:241.770000px;}
.y25{bottom:243.570000px;}
.y6b{bottom:244.830000px;}
.y38{bottom:246.810000px;}
.ya5{bottom:251.130000px;}
.y108{bottom:251.490000px;}
.yd7{bottom:259.590000px;}
.y2e{bottom:260.535000px;}
.ya4{bottom:268.590000px;}
.y107{bottom:269.310000px;}
.y24{bottom:270.390000px;}
.yd6{bottom:277.410000px;}
.y6a{bottom:277.770000px;}
.y69{bottom:295.410000px;}
.ya3{bottom:295.950000px;}
.y106{bottom:296.130000px;}
.y23{bottom:297.210000px;}
.yd5{bottom:313.230000px;}
.y68{bottom:313.410000px;}
.ya2{bottom:313.590000px;}
.y105{bottom:313.950000px;}
.y22{bottom:324.030000px;}
.yd4{bottom:331.050000px;}
.y67{bottom:331.230000px;}
.ya1{bottom:331.410000px;}
.y104{bottom:340.770000px;}
.yd3{bottom:348.870000px;}
.y66{bottom:349.050000px;}
.ya0{bottom:349.410000px;}
.y21{bottom:351.030000px;}
.y103{bottom:358.590000px;}
.yd2{bottom:366.690000px;}
.y9f{bottom:367.230000px;}
.y65{bottom:375.870000px;}
.y9e{bottom:384.690000px;}
.y102{bottom:385.590000px;}
.y20{bottom:386.670000px;}
.y64{bottom:393.690000px;}
.yd1{bottom:402.510000px;}
.y101{bottom:403.410000px;}
.y1f{bottom:404.490000px;}
.y9d{bottom:405.030000px;}
.yd0{bottom:420.330000px;}
.y63{bottom:420.690000px;}
.y1e{bottom:424.110000px;}
.y100{bottom:430.230000px;}
.y9c{bottom:437.790000px;}
.ycf{bottom:438.150000px;}
.y62{bottom:438.510000px;}
.y1d{bottom:448.095000px;}
.y9b{bottom:455.655000px;}
.yce{bottom:456.015000px;}
.y61{bottom:465.375000px;}
.y1c{bottom:471.855000px;}
.y9a{bottom:473.475000px;}
.ycd{bottom:473.655000px;}
.yff{bottom:474.915000px;}
.y60{bottom:483.195000px;}
.y99{bottom:491.295000px;}
.yfe{bottom:492.915000px;}
.y1b{bottom:495.615000px;}
.ycc{bottom:501.015000px;}
.y98{bottom:509.115000px;}
.y5f{bottom:510.195000px;}
.yfd{bottom:510.735000px;}
.ycb{bottom:518.655000px;}
.y1a{bottom:519.195000px;}
.y97{bottom:526.935000px;}
.yca{bottom:536.475000px;}
.y5e{bottom:537.015000px;}
.yfc{bottom:537.555000px;}
.y96{bottom:544.935000px;}
.y19{bottom:550.155000px;}
.yc9{bottom:554.295000px;}
.y5d{bottom:554.835000px;}
.yfb{bottom:555.375000px;}
.y95{bottom:562.755000px;}
.yc8{bottom:572.115000px;}
.y5c{bottom:572.655000px;}
.yfa{bottom:573.195000px;}
.y94{bottom:580.575000px;}
.y18{bottom:580.935000px;}
.yc7{bottom:590.115000px;}
.y93{bottom:598.395000px;}
.y5b{bottom:599.655000px;}
.yf9{bottom:600.015000px;}
.yc6{bottom:607.935000px;}
.y92{bottom:616.215000px;}
.y5a{bottom:617.295000px;}
.yf8{bottom:618.015000px;}
.yc5{bottom:625.755000px;}
.y91{bottom:634.035000px;}
.y59{bottom:635.115000px;}
.yf7{bottom:635.835000px;}
.y17{bottom:637.275000px;}
.yc4{bottom:643.575000px;}
.y90{bottom:652.035000px;}
.y58{bottom:653.115000px;}
.yc3{bottom:661.395000px;}
.yf6{bottom:662.655000px;}
.y16{bottom:668.055000px;}
.y8f{bottom:669.855000px;}
.y57{bottom:670.935000px;}
.yc2{bottom:679.245000px;}
.yf5{bottom:680.505000px;}
.y8e{bottom:687.705000px;}
.y56{bottom:688.785000px;}
.y15{bottom:691.305000px;}
.yc1{bottom:696.885000px;}
.yf4{bottom:698.325000px;}
.y8d{bottom:705.525000px;}
.y55{bottom:706.605000px;}
.yc0{bottom:717.045000px;}
.y8c{bottom:723.345000px;}
.y54{bottom:724.425000px;}
.yf3{bottom:725.325000px;}
.y14{bottom:739.905000px;}
.y8b{bottom:741.165000px;}
.y53{bottom:742.245000px;}
.yf2{bottom:743.145000px;}
.ybf{bottom:749.985000px;}
.y8a{bottom:759.165000px;}
.y52{bottom:760.245000px;}
.yf1{bottom:760.965000px;}
.ybe{bottom:767.625000px;}
.y89{bottom:776.985000px;}
.y51{bottom:778.065000px;}
.ybd{bottom:785.445000px;}
.y13{bottom:786.165000px;}
.yf0{bottom:787.785000px;}
.y88{bottom:794.805000px;}
.y50{bottom:795.885000px;}
.ybc{bottom:803.445000px;}
.yef{bottom:805.605000px;}
.y87{bottom:812.625000px;}
.y4f{bottom:813.705000px;}
.y12{bottom:814.965000px;}
.yee{bottom:823.425000px;}
.ybb{bottom:830.445000px;}
.y86{bottom:830.625000px;}
.y4e{bottom:831.525000px;}
.yed{bottom:843.405000px;}
.yba{bottom:848.085000px;}
.y4d{bottom:849.345000px;}
.y85{bottom:857.625000px;}
.yb9{bottom:865.905000px;}
.y11{bottom:866.445000px;}
.y4c{bottom:867.345000px;}
.y84{bottom:875.265000px;}
.yec{bottom:876.165000px;}
.yb8{bottom:883.545000px;}
.y4b{bottom:885.165000px;}
.y10{bottom:889.125000px;}
.y83{bottom:893.085000px;}
.yeb{bottom:893.985000px;}
.y4a{bottom:902.985000px;}
.yb7{bottom:910.770000px;}
.yf{bottom:910.950000px;}
.yea{bottom:911.850000px;}
.y49{bottom:920.850000px;}
.yb6{bottom:928.590000px;}
.y82{bottom:928.770000px;}
.ye9{bottom:929.670000px;}
.ye{bottom:932.730000px;}
.y48{bottom:938.670000px;}
.y81{bottom:946.590000px;}
.ye8{bottom:947.670000px;}
.yd{bottom:954.150000px;}
.yb5{bottom:955.590000px;}
.y47{bottom:956.670000px;}
.y80{bottom:964.590000px;}
.ye7{bottom:965.490000px;}
.yb4{bottom:973.230000px;}
.y46{bottom:974.490000px;}
.yc{bottom:976.290000px;}
.y7f{bottom:982.410000px;}
.ye6{bottom:983.310000px;}
.y45{bottom:992.310000px;}
.y7e{bottom:1000.230000px;}
.ye5{bottom:1001.130000px;}
.y44{bottom:1010.130000px;}
.yb{bottom:1017.510000px;}
.yb3{bottom:1017.870000px;}
.y7d{bottom:1018.050000px;}
.ye4{bottom:1018.950000px;}
.y43{bottom:1027.950000px;}
.ya{bottom:1029.570000px;}
.y7c{bottom:1035.870000px;}
.ye3{bottom:1036.770000px;}
.y9{bottom:1041.630000px;}
.y42{bottom:1045.770000px;}
.yb2{bottom:1053.330000px;}
.y8{bottom:1053.690000px;}
.y7b{bottom:1053.870000px;}
.ye2{bottom:1054.770000px;}
.y41{bottom:1063.770000px;}
.y7{bottom:1068.270000px;}
.y7a{bottom:1071.690000px;}
.ye1{bottom:1072.590000px;}
.yb1{bottom:1080.510000px;}
.y40{bottom:1081.590000px;}
.y79{bottom:1089.510000px;}
.ye0{bottom:1090.410000px;}
.y6{bottom:1093.830000px;}
.yb0{bottom:1098.330000px;}
.y3f{bottom:1099.410000px;}
.y78{bottom:1107.330000px;}
.ydf{bottom:1110.210000px;}
.y111{bottom:1115.070000px;}
.yaf{bottom:1116.150000px;}
.y3e{bottom:1117.230000px;}
.y77{bottom:1125.150000px;}
.yae{bottom:1133.970000px;}
.y3d{bottom:1135.050000px;}
.y76{bottom:1142.970000px;}
.y110{bottom:1144.770000px;}
.yad{bottom:1152.000000px;}
.y3c{bottom:1153.080000px;}
.y75{bottom:1161.000000px;}
.y3b{bottom:1170.900000px;}
.y74{bottom:1178.820000px;}
.y3a{bottom:1190.700000px;}
.y73{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h16{height:37.705078px;}
.h7{height:40.985156px;}
.h3{height:52.998047px;}
.h10{height:54.421875px;}
.h17{height:55.503491px;}
.h18{height:56.214844px;}
.h13{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.h14{height:60.372000px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:71.225156px;}
.hc{height:72.326250px;}
.hf{height:72.562500px;}
.h19{height:78.367500px;}
.h12{height:78.512625px;}
.h15{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:87.800625px;}
.h6{height:90.703125px;}
.h11{height:287.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x15{left:10.800000px;}
.x14{left:39.240000px;}
.x1{left:45.364500px;}
.x16{left:50.040000px;}
.x6{left:54.000000px;}
.xc{left:59.760000px;}
.x17{left:81.000000px;}
.x1b{left:108.036000px;}
.x18{left:112.896000px;}
.x11{left:146.016000px;}
.xf{left:194.970000px;}
.x10{left:213.150000px;}
.x2{left:222.370500px;}
.x3{left:271.330500px;}
.xe{left:274.035000px;}
.x9{left:283.575000px;}
.xa{left:288.435000px;}
.x7{left:300.495000px;}
.x12{left:314.355000px;}
.xd{left:344.775000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x13{left:473.505000px;}
.x19{left:500.505000px;}
.x1a{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.172800pt;}
.ls5{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.933120pt;}
.ls10{letter-spacing:22.496000pt;}
.ls15{letter-spacing:46.816000pt;}
.lsd{letter-spacing:64.096000pt;}
.ws10{word-spacing:-17.295360pt;}
.wsa{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.272320pt;}
.ws2{word-spacing:-15.296000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.484800pt;}
.ws8{word-spacing:-13.312000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.288000pt;}
.wse{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.322667pt;}
._5{width:2.533760pt;}
._3{width:3.930453pt;}
._19{width:4.848000pt;}
._4{width:5.736960pt;}
._9{width:7.303040pt;}
._6{width:8.392960pt;}
._f{width:9.436373pt;}
._11{width:11.040000pt;}
._d{width:13.584000pt;}
._a{width:14.602667pt;}
._7{width:16.080000pt;}
._8{width:16.992000pt;}
._e{width:18.069333pt;}
._17{width:19.008000pt;}
._10{width:20.352000pt;}
._15{width:21.696000pt;}
._12{width:22.992000pt;}
._13{width:24.464000pt;}
._14{width:25.680000pt;}
._1b{width:28.624000pt;}
._1a{width:29.952000pt;}
._16{width:31.152000pt;}
._25{width:32.112000pt;}
._26{width:33.029333pt;}
._27{width:36.928000pt;}
._18{width:37.920000pt;}
._23{width:39.024000pt;}
._1f{width:45.477333pt;}
._1e{width:46.800000pt;}
._1d{width:49.680000pt;}
._1c{width:50.928000pt;}
._20{width:52.320000pt;}
._c{width:55.152000pt;}
._b{width:56.400000pt;}
._24{width:57.360000pt;}
._22{width:63.024000pt;}
._21{width:63.984000pt;}
._2{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs8{font-size:69.248000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y37{bottom:63.546667pt;}
.y36{bottom:81.146667pt;}
.yac{bottom:96.000000pt;}
.y10f{bottom:96.320000pt;}
.y2c{bottom:97.440000pt;}
.y35{bottom:98.906667pt;}
.yde{bottom:103.840000pt;}
.y72{bottom:104.800000pt;}
.yab{bottom:112.000000pt;}
.y10e{bottom:112.160000pt;}
.y2b{bottom:113.280000pt;}
.y34{bottom:116.506667pt;}
.ydd{bottom:119.680000pt;}
.y71{bottom:120.640000pt;}
.yaa{bottom:127.840000pt;}
.y10d{bottom:128.160000pt;}
.y2a{bottom:129.120000pt;}
.y33{bottom:134.106667pt;}
.ydc{bottom:135.520000pt;}
.y70{bottom:136.480000pt;}
.ya9{bottom:143.680000pt;}
.y29{bottom:144.960000pt;}
.ydb{bottom:151.360000pt;}
.y32{bottom:151.706667pt;}
.y10c{bottom:152.000000pt;}
.y6f{bottom:152.320000pt;}
.y28{bottom:160.800000pt;}
.ya8{bottom:167.360000pt;}
.y10b{bottom:167.840000pt;}
.y6e{bottom:168.160000pt;}
.y31{bottom:169.306667pt;}
.y2d{bottom:173.440000pt;}
.y27{bottom:176.800000pt;}
.yda{bottom:183.226667pt;}
.y10a{bottom:183.706667pt;}
.y6d{bottom:184.186667pt;}
.y30{bottom:187.066667pt;}
.ya7{bottom:191.546667pt;}
.y26{bottom:192.666667pt;}
.y39{bottom:193.466667pt;}
.yd9{bottom:199.066667pt;}
.y109{bottom:199.546667pt;}
.y6c{bottom:200.026667pt;}
.y2f{bottom:204.666667pt;}
.ya6{bottom:207.386667pt;}
.yd8{bottom:214.906667pt;}
.y25{bottom:216.506667pt;}
.y6b{bottom:217.626667pt;}
.y38{bottom:219.386667pt;}
.ya5{bottom:223.226667pt;}
.y108{bottom:223.546667pt;}
.yd7{bottom:230.746667pt;}
.y2e{bottom:231.586667pt;}
.ya4{bottom:238.746667pt;}
.y107{bottom:239.386667pt;}
.y24{bottom:240.346667pt;}
.yd6{bottom:246.586667pt;}
.y6a{bottom:246.906667pt;}
.y69{bottom:262.586667pt;}
.ya3{bottom:263.066667pt;}
.y106{bottom:263.226667pt;}
.y23{bottom:264.186667pt;}
.yd5{bottom:278.426667pt;}
.y68{bottom:278.586667pt;}
.ya2{bottom:278.746667pt;}
.y105{bottom:279.066667pt;}
.y22{bottom:288.026667pt;}
.yd4{bottom:294.266667pt;}
.y67{bottom:294.426667pt;}
.ya1{bottom:294.586667pt;}
.y104{bottom:302.906667pt;}
.yd3{bottom:310.106667pt;}
.y66{bottom:310.266667pt;}
.ya0{bottom:310.586667pt;}
.y21{bottom:312.026667pt;}
.y103{bottom:318.746667pt;}
.yd2{bottom:325.946667pt;}
.y9f{bottom:326.426667pt;}
.y65{bottom:334.106667pt;}
.y9e{bottom:341.946667pt;}
.y102{bottom:342.746667pt;}
.y20{bottom:343.706667pt;}
.y64{bottom:349.946667pt;}
.yd1{bottom:357.786667pt;}
.y101{bottom:358.586667pt;}
.y1f{bottom:359.546667pt;}
.y9d{bottom:360.026667pt;}
.yd0{bottom:373.626667pt;}
.y63{bottom:373.946667pt;}
.y1e{bottom:376.986667pt;}
.y100{bottom:382.426667pt;}
.y9c{bottom:389.146667pt;}
.ycf{bottom:389.466667pt;}
.y62{bottom:389.786667pt;}
.y1d{bottom:398.306667pt;}
.y9b{bottom:405.026667pt;}
.yce{bottom:405.346667pt;}
.y61{bottom:413.666667pt;}
.y1c{bottom:419.426667pt;}
.y9a{bottom:420.866667pt;}
.ycd{bottom:421.026667pt;}
.yff{bottom:422.146667pt;}
.y60{bottom:429.506667pt;}
.y99{bottom:436.706667pt;}
.yfe{bottom:438.146667pt;}
.y1b{bottom:440.546667pt;}
.ycc{bottom:445.346667pt;}
.y98{bottom:452.546667pt;}
.y5f{bottom:453.506667pt;}
.yfd{bottom:453.986667pt;}
.ycb{bottom:461.026667pt;}
.y1a{bottom:461.506667pt;}
.y97{bottom:468.386667pt;}
.yca{bottom:476.866667pt;}
.y5e{bottom:477.346667pt;}
.yfc{bottom:477.826667pt;}
.y96{bottom:484.386667pt;}
.y19{bottom:489.026667pt;}
.yc9{bottom:492.706667pt;}
.y5d{bottom:493.186667pt;}
.yfb{bottom:493.666667pt;}
.y95{bottom:500.226667pt;}
.yc8{bottom:508.546667pt;}
.y5c{bottom:509.026667pt;}
.yfa{bottom:509.506667pt;}
.y94{bottom:516.066667pt;}
.y18{bottom:516.386667pt;}
.yc7{bottom:524.546667pt;}
.y93{bottom:531.906667pt;}
.y5b{bottom:533.026667pt;}
.yf9{bottom:533.346667pt;}
.yc6{bottom:540.386667pt;}
.y92{bottom:547.746667pt;}
.y5a{bottom:548.706667pt;}
.yf8{bottom:549.346667pt;}
.yc5{bottom:556.226667pt;}
.y91{bottom:563.586667pt;}
.y59{bottom:564.546667pt;}
.yf7{bottom:565.186667pt;}
.y17{bottom:566.466667pt;}
.yc4{bottom:572.066667pt;}
.y90{bottom:579.586667pt;}
.y58{bottom:580.546667pt;}
.yc3{bottom:587.906667pt;}
.yf6{bottom:589.026667pt;}
.y16{bottom:593.826667pt;}
.y8f{bottom:595.426667pt;}
.y57{bottom:596.386667pt;}
.yc2{bottom:603.773333pt;}
.yf5{bottom:604.893333pt;}
.y8e{bottom:611.293333pt;}
.y56{bottom:612.253333pt;}
.y15{bottom:614.493333pt;}
.yc1{bottom:619.453333pt;}
.yf4{bottom:620.733333pt;}
.y8d{bottom:627.133333pt;}
.y55{bottom:628.093333pt;}
.yc0{bottom:637.373333pt;}
.y8c{bottom:642.973333pt;}
.y54{bottom:643.933333pt;}
.yf3{bottom:644.733333pt;}
.y14{bottom:657.693333pt;}
.y8b{bottom:658.813333pt;}
.y53{bottom:659.773333pt;}
.yf2{bottom:660.573333pt;}
.ybf{bottom:666.653333pt;}
.y8a{bottom:674.813333pt;}
.y52{bottom:675.773333pt;}
.yf1{bottom:676.413333pt;}
.ybe{bottom:682.333333pt;}
.y89{bottom:690.653333pt;}
.y51{bottom:691.613333pt;}
.ybd{bottom:698.173333pt;}
.y13{bottom:698.813333pt;}
.yf0{bottom:700.253333pt;}
.y88{bottom:706.493333pt;}
.y50{bottom:707.453333pt;}
.ybc{bottom:714.173333pt;}
.yef{bottom:716.093333pt;}
.y87{bottom:722.333333pt;}
.y4f{bottom:723.293333pt;}
.y12{bottom:724.413333pt;}
.yee{bottom:731.933333pt;}
.ybb{bottom:738.173333pt;}
.y86{bottom:738.333333pt;}
.y4e{bottom:739.133333pt;}
.yed{bottom:749.693333pt;}
.yba{bottom:753.853333pt;}
.y4d{bottom:754.973333pt;}
.y85{bottom:762.333333pt;}
.yb9{bottom:769.693333pt;}
.y11{bottom:770.173333pt;}
.y4c{bottom:770.973333pt;}
.y84{bottom:778.013333pt;}
.yec{bottom:778.813333pt;}
.yb8{bottom:785.373333pt;}
.y4b{bottom:786.813333pt;}
.y10{bottom:790.333333pt;}
.y83{bottom:793.853333pt;}
.yeb{bottom:794.653333pt;}
.y4a{bottom:802.653333pt;}
.yb7{bottom:809.573333pt;}
.yf{bottom:809.733333pt;}
.yea{bottom:810.533333pt;}
.y49{bottom:818.533333pt;}
.yb6{bottom:825.413333pt;}
.y82{bottom:825.573333pt;}
.ye9{bottom:826.373333pt;}
.ye{bottom:829.093333pt;}
.y48{bottom:834.373333pt;}
.y81{bottom:841.413333pt;}
.ye8{bottom:842.373333pt;}
.yd{bottom:848.133333pt;}
.yb5{bottom:849.413333pt;}
.y47{bottom:850.373333pt;}
.y80{bottom:857.413333pt;}
.ye7{bottom:858.213333pt;}
.yb4{bottom:865.093333pt;}
.y46{bottom:866.213333pt;}
.yc{bottom:867.813333pt;}
.y7f{bottom:873.253333pt;}
.ye6{bottom:874.053333pt;}
.y45{bottom:882.053333pt;}
.y7e{bottom:889.093333pt;}
.ye5{bottom:889.893333pt;}
.y44{bottom:897.893333pt;}
.yb{bottom:904.453333pt;}
.yb3{bottom:904.773333pt;}
.y7d{bottom:904.933333pt;}
.ye4{bottom:905.733333pt;}
.y43{bottom:913.733333pt;}
.ya{bottom:915.173333pt;}
.y7c{bottom:920.773333pt;}
.ye3{bottom:921.573333pt;}
.y9{bottom:925.893333pt;}
.y42{bottom:929.573333pt;}
.yb2{bottom:936.293333pt;}
.y8{bottom:936.613333pt;}
.y7b{bottom:936.773333pt;}
.ye2{bottom:937.573333pt;}
.y41{bottom:945.573333pt;}
.y7{bottom:949.573333pt;}
.y7a{bottom:952.613333pt;}
.ye1{bottom:953.413333pt;}
.yb1{bottom:960.453333pt;}
.y40{bottom:961.413333pt;}
.y79{bottom:968.453333pt;}
.ye0{bottom:969.253333pt;}
.y6{bottom:972.293333pt;}
.yb0{bottom:976.293333pt;}
.y3f{bottom:977.253333pt;}
.y78{bottom:984.293333pt;}
.ydf{bottom:986.853333pt;}
.y111{bottom:991.173333pt;}
.yaf{bottom:992.133333pt;}
.y3e{bottom:993.093333pt;}
.y77{bottom:1000.133333pt;}
.yae{bottom:1007.973333pt;}
.y3d{bottom:1008.933333pt;}
.y76{bottom:1015.973333pt;}
.y110{bottom:1017.573333pt;}
.yad{bottom:1024.000000pt;}
.y3c{bottom:1024.960000pt;}
.y75{bottom:1032.000000pt;}
.y3b{bottom:1040.800000pt;}
.y74{bottom:1047.840000pt;}
.y3a{bottom:1058.400000pt;}
.y73{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h16{height:33.515625pt;}
.h7{height:36.431250pt;}
.h3{height:47.109375pt;}
.h10{height:48.375000pt;}
.h17{height:49.336436pt;}
.h18{height:49.968750pt;}
.h13{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.h14{height:53.664000pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:63.311250pt;}
.hc{height:64.290000pt;}
.hf{height:64.500000pt;}
.h19{height:69.660000pt;}
.h12{height:69.789000pt;}
.h15{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:78.045000pt;}
.h6{height:80.625000pt;}
.h11{height:255.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x15{left:9.600000pt;}
.x14{left:34.880000pt;}
.x1{left:40.324000pt;}
.x16{left:44.480000pt;}
.x6{left:48.000000pt;}
.xc{left:53.120000pt;}
.x17{left:72.000000pt;}
.x1b{left:96.032000pt;}
.x18{left:100.352000pt;}
.x11{left:129.792000pt;}
.xf{left:173.306667pt;}
.x10{left:189.466667pt;}
.x2{left:197.662667pt;}
.x3{left:241.182667pt;}
.xe{left:243.586667pt;}
.x9{left:252.066667pt;}
.xa{left:256.386667pt;}
.x7{left:267.106667pt;}
.x12{left:279.426667pt;}
.xd{left:306.466667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x13{left:420.893333pt;}
.x19{left:444.893333pt;}
.x1a{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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