
    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_8f8fd7dade6d3ee58197b17b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c3909a95b97581a382301a4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a675b11cb58e80627fa1f7c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_d4ccca528e685a02a756b396.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_64e8dbab622feb3eaae21c9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_4933f2a818fb077e46e40996.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_11ca67ff25b2446d2eda4bc0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fcd1b869dd6fc2516ac9bc6d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dab7eb02b955d04ef10d2400.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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:ffd;src:url('chunks/assets/font_9170b3eb5dbe90081af5f9b7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.lsc{letter-spacing:-0.008640px;}
.lsf{letter-spacing:-0.004320px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.066240px;}
.ls13{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.lsa{letter-spacing:0.504000px;}
.lsd{letter-spacing:4.500000px;}
.ls15{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.715680px;}
.wsb{word-spacing:-9.711360px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-5.734320px;}
._4{margin-left:-4.126080px;}
._3{margin-left:-2.244000px;}
._0{margin-left:-1.134000px;}
._1{width:1.020000px;}
._5{width:2.676000px;}
._b{width:3.735600px;}
._2{width:4.800000px;}
._8{width:6.330480px;}
._10{width:7.619040px;}
._12{width:9.262800px;}
._a{width:10.453920px;}
._9{width:11.772720px;}
._c{width:13.049760px;}
._14{width:16.135200px;}
._d{width:17.147040px;}
._e{width:18.290640px;}
._f{width:19.572960px;}
._17{width:21.594240px;}
._7{width:23.218080px;}
._11{width:24.287040px;}
._16{width:32.771040px;}
._15{width:34.507440px;}
._13{width:56.772000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.240000px;}
.y94{bottom:3.270000px;}
.y4{bottom:3.600000px;}
.yb8{bottom:4.140000px;}
.y1a{bottom:5.040000px;}
.yf{bottom:9.540000px;}
.y1c{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y2d{bottom:14.220000px;}
.y42{bottom:14.940000px;}
.y5{bottom:17.316000px;}
.y41{bottom:17.820000px;}
.y3{bottom:20.196000px;}
.y3e{bottom:20.520000px;}
.yb7{bottom:21.240000px;}
.y19{bottom:29.520000px;}
.yc{bottom:30.240000px;}
.y6{bottom:36.720000px;}
.y3d{bottom:37.800000px;}
.y18{bottom:42.120000px;}
.yb{bottom:46.440000px;}
.y2c{bottom:47.160000px;}
.y3c{bottom:55.080000px;}
.y2{bottom:57.780000px;}
.y17{bottom:62.505000px;}
.y2b{bottom:64.260000px;}
.y3b{bottom:72.360000px;}
.ya{bottom:73.440000px;}
.y16{bottom:78.165000px;}
.y2a{bottom:81.540000px;}
.y15{bottom:88.605000px;}
.y3a{bottom:89.640000px;}
.y9{bottom:93.060000px;}
.y29{bottom:99.360000px;}
.y56{bottom:105.696000px;}
.yeb{bottom:105.876000px;}
.y39{bottom:106.740000px;}
.y14{bottom:106.965000px;}
.yd1{bottom:108.036000px;}
.y92{bottom:109.296000px;}
.y8{bottom:111.270000px;}
.y28{bottom:116.100000px;}
.y55{bottom:122.976000px;}
.y38{bottom:124.020000px;}
.yd0{bottom:125.316000px;}
.y13{bottom:126.045000px;}
.y91{bottom:127.296000px;}
.y27{bottom:132.510000px;}
.y54{bottom:140.256000px;}
.y37{bottom:141.330000px;}
.ycf{bottom:142.596000px;}
.y90{bottom:145.296000px;}
.y26{bottom:149.610000px;}
.y12{bottom:151.785000px;}
.y53{bottom:157.530000px;}
.y36{bottom:158.610000px;}
.yce{bottom:159.870000px;}
.y8f{bottom:166.530000px;}
.y25{bottom:166.890000px;}
.y52{bottom:174.810000px;}
.y35{bottom:175.890000px;}
.y11{bottom:176.085000px;}
.ycd{bottom:176.970000px;}
.y8e{bottom:183.810000px;}
.y24{bottom:184.350000px;}
.y51{bottom:191.910000px;}
.yea{bottom:192.090000px;}
.y34{bottom:193.170000px;}
.ycc{bottom:194.250000px;}
.y8d{bottom:201.090000px;}
.y23{bottom:201.810000px;}
.y50{bottom:209.190000px;}
.ye9{bottom:209.370000px;}
.y33{bottom:210.270000px;}
.ycb{bottom:211.530000px;}
.y8c{bottom:218.370000px;}
.y22{bottom:219.090000px;}
.y4f{bottom:226.470000px;}
.y32{bottom:227.550000px;}
.yca{bottom:228.810000px;}
.y8b{bottom:235.470000px;}
.y21{bottom:236.550000px;}
.y4e{bottom:243.750000px;}
.y31{bottom:244.830000px;}
.yc9{bottom:246.090000px;}
.y8a{bottom:252.750000px;}
.y20{bottom:254.190000px;}
.y4d{bottom:261.030000px;}
.y30{bottom:262.110000px;}
.yc8{bottom:263.370000px;}
.y89{bottom:270.030000px;}
.y4c{bottom:278.130000px;}
.ye8{bottom:278.310000px;}
.y2f{bottom:279.390000px;}
.yc7{bottom:280.470000px;}
.y1f{bottom:281.550000px;}
.y88{bottom:287.310000px;}
.y4b{bottom:295.410000px;}
.ye7{bottom:295.590000px;}
.y2e{bottom:296.490000px;}
.yc6{bottom:297.750000px;}
.y1e{bottom:299.190000px;}
.y87{bottom:304.590000px;}
.y4a{bottom:312.690000px;}
.ye6{bottom:312.870000px;}
.yc5{bottom:315.030000px;}
.y86{bottom:321.870000px;}
.y49{bottom:329.970000px;}
.yc4{bottom:332.310000px;}
.y85{bottom:339.015000px;}
.y48{bottom:347.295000px;}
.yc3{bottom:349.635000px;}
.y84{bottom:356.295000px;}
.y47{bottom:364.575000px;}
.yc2{bottom:366.915000px;}
.y83{bottom:373.575000px;}
.y46{bottom:381.675000px;}
.ye5{bottom:381.855000px;}
.yc1{bottom:384.015000px;}
.y82{bottom:390.855000px;}
.y45{bottom:398.955000px;}
.ye4{bottom:399.135000px;}
.yc0{bottom:401.295000px;}
.y81{bottom:408.135000px;}
.y44{bottom:416.235000px;}
.ye3{bottom:416.415000px;}
.ybf{bottom:418.575000px;}
.y80{bottom:425.415000px;}
.y43{bottom:433.515000px;}
.ybe{bottom:435.855000px;}
.y7f{bottom:442.515000px;}
.y40{bottom:447.555000px;}
.ye2{bottom:450.795000px;}
.ybd{bottom:453.135000px;}
.y7e{bottom:459.795000px;}
.ye1{bottom:468.075000px;}
.ybc{bottom:470.235000px;}
.y1d{bottom:476.715000px;}
.y7d{bottom:477.075000px;}
.yba{bottom:484.995000px;}
.ye0{bottom:485.355000px;}
.y7c{bottom:491.835000px;}
.ydf{bottom:502.635000px;}
.ybb{bottom:502.995000px;}
.y7b{bottom:509.835000px;}
.yde{bottom:519.735000px;}
.yb6{bottom:520.995000px;}
.y7a{bottom:527.835000px;}
.ydd{bottom:537.015000px;}
.yb9{bottom:538.995000px;}
.y79{bottom:545.835000px;}
.ydc{bottom:554.295000px;}
.yb5{bottom:556.995000px;}
.y78{bottom:567.075000px;}
.ydb{bottom:571.575000px;}
.yb4{bottom:578.235000px;}
.y77{bottom:584.355000px;}
.yda{bottom:588.855000px;}
.yb3{bottom:595.515000px;}
.y76{bottom:601.635000px;}
.yd9{bottom:606.165000px;}
.yb2{bottom:612.825000px;}
.y75{bottom:618.765000px;}
.yd8{bottom:623.265000px;}
.yb1{bottom:630.105000px;}
.y74{bottom:636.045000px;}
.yd7{bottom:640.545000px;}
.yb0{bottom:647.385000px;}
.y73{bottom:650.805000px;}
.yd6{bottom:657.825000px;}
.yaf{bottom:664.665000px;}
.y72{bottom:668.805000px;}
.yd5{bottom:675.105000px;}
.yae{bottom:681.765000px;}
.y71{bottom:686.805000px;}
.yd4{bottom:692.385000px;}
.yad{bottom:699.045000px;}
.y70{bottom:704.805000px;}
.yd3{bottom:709.665000px;}
.yac{bottom:716.325000px;}
.y6f{bottom:722.805000px;}
.yd2{bottom:726.765000px;}
.yab{bottom:733.605000px;}
.y6e{bottom:744.045000px;}
.yaa{bottom:748.365000px;}
.y6d{bottom:761.325000px;}
.ya9{bottom:766.365000px;}
.y6c{bottom:778.605000px;}
.ya8{bottom:784.365000px;}
.y1b{bottom:787.245000px;}
.y6b{bottom:795.885000px;}
.ya7{bottom:805.605000px;}
.y6a{bottom:812.985000px;}
.y10{bottom:816.765000px;}
.ya6{bottom:822.885000px;}
.y69{bottom:830.265000px;}
.ya5{bottom:839.985000px;}
.y68{bottom:847.545000px;}
.ya4{bottom:857.265000px;}
.y67{bottom:864.825000px;}
.ya3{bottom:874.590000px;}
.y66{bottom:882.150000px;}
.ya2{bottom:891.870000px;}
.y65{bottom:899.430000px;}
.ya1{bottom:909.150000px;}
.y64{bottom:916.530000px;}
.ya0{bottom:926.430000px;}
.y63{bottom:933.810000px;}
.y9f{bottom:941.190000px;}
.y62{bottom:951.090000px;}
.y9e{bottom:959.190000px;}
.y61{bottom:968.370000px;}
.y9d{bottom:977.190000px;}
.y60{bottom:985.650000px;}
.y9c{bottom:995.190000px;}
.y5f{bottom:1002.930000px;}
.ye{bottom:1007.970000px;}
.y9b{bottom:1016.430000px;}
.y5e{bottom:1020.030000px;}
.y7{bottom:1033.350000px;}
.y9a{bottom:1033.530000px;}
.y5d{bottom:1037.310000px;}
.y99{bottom:1050.810000px;}
.y5c{bottom:1054.590000px;}
.y98{bottom:1068.090000px;}
.y5b{bottom:1071.870000px;}
.y97{bottom:1082.850000px;}
.y5a{bottom:1089.150000px;}
.y96{bottom:1100.850000px;}
.y59{bottom:1106.430000px;}
.y95{bottom:1118.850000px;}
.y58{bottom:1123.530000px;}
.y93{bottom:1136.850000px;}
.y57{bottom:1140.840000px;}
.y1{bottom:1214.820000px;}
.h24{height:17.100000px;}
.h22{height:17.280000px;}
.h23{height:17.316000px;}
.hc{height:25.020000px;}
.h1f{height:29.160000px;}
.h15{height:29.520000px;}
.h13{height:32.103633px;}
.h3{height:32.976000px;}
.h25{height:35.280000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1a{height:40.243711px;}
.h20{height:42.164648px;}
.h1d{height:42.186445px;}
.h1c{height:42.281367px;}
.h1e{height:43.215117px;}
.h26{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h14{height:47.223633px;}
.h18{height:47.980898px;}
.h21{height:48.995859px;}
.h1b{height:49.742227px;}
.h5{height:53.709961px;}
.ha{height:54.000000px;}
.h4{height:55.291992px;}
.h19{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:191.190000px;}
.h17{height:310.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:74.880000px;}
.w11{width:126.000000px;}
.wf{width:142.236000px;}
.w5{width:151.950000px;}
.wd{width:154.290000px;}
.w10{width:159.150000px;}
.we{width:162.030000px;}
.w8{width:223.275000px;}
.wc{width:248.250000px;}
.wb{width:248.430000px;}
.wa{width:248.475000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w3{width:673.530000px;}
.w7{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x15{left:12.600000px;}
.x12{left:24.696000px;}
.x10{left:29.556000px;}
.xd{left:66.816000px;}
.x2{left:72.360000px;}
.x1{left:80.999987px;}
.x5{left:98.130000px;}
.xe{left:103.170000px;}
.x20{left:108.035987px;}
.x1b{left:163.109987px;}
.x13{left:215.175000px;}
.x6{left:224.850000px;}
.x1c{left:228.270000px;}
.x1a{left:234.749987px;}
.xf{left:249.555000px;}
.x11{left:255.315000px;}
.x19{left:279.434987px;}
.x9{left:288.435000px;}
.x14{left:296.175000px;}
.x16{left:313.814987px;}
.x17{left:322.455000px;}
.x7{left:346.395000px;}
.x8{left:367.635000px;}
.xb{left:369.975000px;}
.xc{left:373.575000px;}
.x1d{left:391.035000px;}
.xa{left:455.700000px;}
.x1e{left:533.985000px;}
.x18{left:571.605000px;}
.x1f{left:693.870000px;}
.x4{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:-0.007680pt;}
.lsf{letter-spacing:-0.003840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058880pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.lsa{letter-spacing:0.448000pt;}
.lsd{letter-spacing:4.000000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws12{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.636160pt;}
.wsb{word-spacing:-8.632320pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-5.097173pt;}
._4{margin-left:-3.667627pt;}
._3{margin-left:-1.994667pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.906667pt;}
._5{width:2.378667pt;}
._b{width:3.320533pt;}
._2{width:4.266667pt;}
._8{width:5.627093pt;}
._10{width:6.772480pt;}
._12{width:8.233600pt;}
._a{width:9.292373pt;}
._9{width:10.464640pt;}
._c{width:11.599787pt;}
._14{width:14.342400pt;}
._d{width:15.241813pt;}
._e{width:16.258347pt;}
._f{width:17.398187pt;}
._17{width:19.194880pt;}
._7{width:20.638293pt;}
._11{width:21.588480pt;}
._16{width:29.129813pt;}
._15{width:30.673280pt;}
._13{width:50.464000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.880000pt;}
.y94{bottom:2.906667pt;}
.y4{bottom:3.200000pt;}
.yb8{bottom:3.680000pt;}
.y1a{bottom:4.480000pt;}
.yf{bottom:8.480000pt;}
.y1c{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y2d{bottom:12.640000pt;}
.y42{bottom:13.280000pt;}
.y5{bottom:15.392000pt;}
.y41{bottom:15.840000pt;}
.y3{bottom:17.952000pt;}
.y3e{bottom:18.240000pt;}
.yb7{bottom:18.880000pt;}
.y19{bottom:26.240000pt;}
.yc{bottom:26.880000pt;}
.y6{bottom:32.640000pt;}
.y3d{bottom:33.600000pt;}
.y18{bottom:37.440000pt;}
.yb{bottom:41.280000pt;}
.y2c{bottom:41.920000pt;}
.y3c{bottom:48.960000pt;}
.y2{bottom:51.360000pt;}
.y17{bottom:55.560000pt;}
.y2b{bottom:57.120000pt;}
.y3b{bottom:64.320000pt;}
.ya{bottom:65.280000pt;}
.y16{bottom:69.480000pt;}
.y2a{bottom:72.480000pt;}
.y15{bottom:78.760000pt;}
.y3a{bottom:79.680000pt;}
.y9{bottom:82.720000pt;}
.y29{bottom:88.320000pt;}
.y56{bottom:93.952000pt;}
.yeb{bottom:94.112000pt;}
.y39{bottom:94.880000pt;}
.y14{bottom:95.080000pt;}
.yd1{bottom:96.032000pt;}
.y92{bottom:97.152000pt;}
.y8{bottom:98.906667pt;}
.y28{bottom:103.200000pt;}
.y55{bottom:109.312000pt;}
.y38{bottom:110.240000pt;}
.yd0{bottom:111.392000pt;}
.y13{bottom:112.040000pt;}
.y91{bottom:113.152000pt;}
.y27{bottom:117.786667pt;}
.y54{bottom:124.672000pt;}
.y37{bottom:125.626667pt;}
.ycf{bottom:126.752000pt;}
.y90{bottom:129.152000pt;}
.y26{bottom:132.986667pt;}
.y12{bottom:134.920000pt;}
.y53{bottom:140.026667pt;}
.y36{bottom:140.986667pt;}
.yce{bottom:142.106667pt;}
.y8f{bottom:148.026667pt;}
.y25{bottom:148.346667pt;}
.y52{bottom:155.386667pt;}
.y35{bottom:156.346667pt;}
.y11{bottom:156.520000pt;}
.ycd{bottom:157.306667pt;}
.y8e{bottom:163.386667pt;}
.y24{bottom:163.866667pt;}
.y51{bottom:170.586667pt;}
.yea{bottom:170.746667pt;}
.y34{bottom:171.706667pt;}
.ycc{bottom:172.666667pt;}
.y8d{bottom:178.746667pt;}
.y23{bottom:179.386667pt;}
.y50{bottom:185.946667pt;}
.ye9{bottom:186.106667pt;}
.y33{bottom:186.906667pt;}
.ycb{bottom:188.026667pt;}
.y8c{bottom:194.106667pt;}
.y22{bottom:194.746667pt;}
.y4f{bottom:201.306667pt;}
.y32{bottom:202.266667pt;}
.yca{bottom:203.386667pt;}
.y8b{bottom:209.306667pt;}
.y21{bottom:210.266667pt;}
.y4e{bottom:216.666667pt;}
.y31{bottom:217.626667pt;}
.yc9{bottom:218.746667pt;}
.y8a{bottom:224.666667pt;}
.y20{bottom:225.946667pt;}
.y4d{bottom:232.026667pt;}
.y30{bottom:232.986667pt;}
.yc8{bottom:234.106667pt;}
.y89{bottom:240.026667pt;}
.y4c{bottom:247.226667pt;}
.ye8{bottom:247.386667pt;}
.y2f{bottom:248.346667pt;}
.yc7{bottom:249.306667pt;}
.y1f{bottom:250.266667pt;}
.y88{bottom:255.386667pt;}
.y4b{bottom:262.586667pt;}
.ye7{bottom:262.746667pt;}
.y2e{bottom:263.546667pt;}
.yc6{bottom:264.666667pt;}
.y1e{bottom:265.946667pt;}
.y87{bottom:270.746667pt;}
.y4a{bottom:277.946667pt;}
.ye6{bottom:278.106667pt;}
.yc5{bottom:280.026667pt;}
.y86{bottom:286.106667pt;}
.y49{bottom:293.306667pt;}
.yc4{bottom:295.386667pt;}
.y85{bottom:301.346667pt;}
.y48{bottom:308.706667pt;}
.yc3{bottom:310.786667pt;}
.y84{bottom:316.706667pt;}
.y47{bottom:324.066667pt;}
.yc2{bottom:326.146667pt;}
.y83{bottom:332.066667pt;}
.y46{bottom:339.266667pt;}
.ye5{bottom:339.426667pt;}
.yc1{bottom:341.346667pt;}
.y82{bottom:347.426667pt;}
.y45{bottom:354.626667pt;}
.ye4{bottom:354.786667pt;}
.yc0{bottom:356.706667pt;}
.y81{bottom:362.786667pt;}
.y44{bottom:369.986667pt;}
.ye3{bottom:370.146667pt;}
.ybf{bottom:372.066667pt;}
.y80{bottom:378.146667pt;}
.y43{bottom:385.346667pt;}
.ybe{bottom:387.426667pt;}
.y7f{bottom:393.346667pt;}
.y40{bottom:397.826667pt;}
.ye2{bottom:400.706667pt;}
.ybd{bottom:402.786667pt;}
.y7e{bottom:408.706667pt;}
.ye1{bottom:416.066667pt;}
.ybc{bottom:417.986667pt;}
.y1d{bottom:423.746667pt;}
.y7d{bottom:424.066667pt;}
.yba{bottom:431.106667pt;}
.ye0{bottom:431.426667pt;}
.y7c{bottom:437.186667pt;}
.ydf{bottom:446.786667pt;}
.ybb{bottom:447.106667pt;}
.y7b{bottom:453.186667pt;}
.yde{bottom:461.986667pt;}
.yb6{bottom:463.106667pt;}
.y7a{bottom:469.186667pt;}
.ydd{bottom:477.346667pt;}
.yb9{bottom:479.106667pt;}
.y79{bottom:485.186667pt;}
.ydc{bottom:492.706667pt;}
.yb5{bottom:495.106667pt;}
.y78{bottom:504.066667pt;}
.ydb{bottom:508.066667pt;}
.yb4{bottom:513.986667pt;}
.y77{bottom:519.426667pt;}
.yda{bottom:523.426667pt;}
.yb3{bottom:529.346667pt;}
.y76{bottom:534.786667pt;}
.yd9{bottom:538.813333pt;}
.yb2{bottom:544.733333pt;}
.y75{bottom:550.013333pt;}
.yd8{bottom:554.013333pt;}
.yb1{bottom:560.093333pt;}
.y74{bottom:565.373333pt;}
.yd7{bottom:569.373333pt;}
.yb0{bottom:575.453333pt;}
.y73{bottom:578.493333pt;}
.yd6{bottom:584.733333pt;}
.yaf{bottom:590.813333pt;}
.y72{bottom:594.493333pt;}
.yd5{bottom:600.093333pt;}
.yae{bottom:606.013333pt;}
.y71{bottom:610.493333pt;}
.yd4{bottom:615.453333pt;}
.yad{bottom:621.373333pt;}
.y70{bottom:626.493333pt;}
.yd3{bottom:630.813333pt;}
.yac{bottom:636.733333pt;}
.y6f{bottom:642.493333pt;}
.yd2{bottom:646.013333pt;}
.yab{bottom:652.093333pt;}
.y6e{bottom:661.373333pt;}
.yaa{bottom:665.213333pt;}
.y6d{bottom:676.733333pt;}
.ya9{bottom:681.213333pt;}
.y6c{bottom:692.093333pt;}
.ya8{bottom:697.213333pt;}
.y1b{bottom:699.773333pt;}
.y6b{bottom:707.453333pt;}
.ya7{bottom:716.093333pt;}
.y6a{bottom:722.653333pt;}
.y10{bottom:726.013333pt;}
.ya6{bottom:731.453333pt;}
.y69{bottom:738.013333pt;}
.ya5{bottom:746.653333pt;}
.y68{bottom:753.373333pt;}
.ya4{bottom:762.013333pt;}
.y67{bottom:768.733333pt;}
.ya3{bottom:777.413333pt;}
.y66{bottom:784.133333pt;}
.ya2{bottom:792.773333pt;}
.y65{bottom:799.493333pt;}
.ya1{bottom:808.133333pt;}
.y64{bottom:814.693333pt;}
.ya0{bottom:823.493333pt;}
.y63{bottom:830.053333pt;}
.y9f{bottom:836.613333pt;}
.y62{bottom:845.413333pt;}
.y9e{bottom:852.613333pt;}
.y61{bottom:860.773333pt;}
.y9d{bottom:868.613333pt;}
.y60{bottom:876.133333pt;}
.y9c{bottom:884.613333pt;}
.y5f{bottom:891.493333pt;}
.ye{bottom:895.973333pt;}
.y9b{bottom:903.493333pt;}
.y5e{bottom:906.693333pt;}
.y7{bottom:918.533333pt;}
.y9a{bottom:918.693333pt;}
.y5d{bottom:922.053333pt;}
.y99{bottom:934.053333pt;}
.y5c{bottom:937.413333pt;}
.y98{bottom:949.413333pt;}
.y5b{bottom:952.773333pt;}
.y97{bottom:962.533333pt;}
.y5a{bottom:968.133333pt;}
.y96{bottom:978.533333pt;}
.y59{bottom:983.493333pt;}
.y95{bottom:994.533333pt;}
.y58{bottom:998.693333pt;}
.y93{bottom:1010.533333pt;}
.y57{bottom:1014.080000pt;}
.y1{bottom:1079.840000pt;}
.h24{height:15.200000pt;}
.h22{height:15.360000pt;}
.h23{height:15.392000pt;}
.hc{height:22.240000pt;}
.h1f{height:25.920000pt;}
.h15{height:26.240000pt;}
.h13{height:28.536562pt;}
.h3{height:29.312000pt;}
.h25{height:31.360000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1a{height:35.772188pt;}
.h20{height:37.479688pt;}
.h1d{height:37.499062pt;}
.h1c{height:37.583438pt;}
.h1e{height:38.413438pt;}
.h26{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h14{height:41.976562pt;}
.h18{height:42.649687pt;}
.h21{height:43.551875pt;}
.h1b{height:44.215312pt;}
.h5{height:47.742188pt;}
.ha{height:48.000000pt;}
.h4{height:49.148438pt;}
.h19{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:169.946667pt;}
.h17{height:276.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:66.560000pt;}
.w11{width:112.000000pt;}
.wf{width:126.432000pt;}
.w5{width:135.066667pt;}
.wd{width:137.146667pt;}
.w10{width:141.466667pt;}
.we{width:144.026667pt;}
.w8{width:198.466667pt;}
.wc{width:220.666667pt;}
.wb{width:220.826667pt;}
.wa{width:220.866667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w3{width:598.693333pt;}
.w7{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x15{left:11.200000pt;}
.x12{left:21.952000pt;}
.x10{left:26.272000pt;}
.xd{left:59.392000pt;}
.x2{left:64.320000pt;}
.x1{left:71.999988pt;}
.x5{left:87.226667pt;}
.xe{left:91.706667pt;}
.x20{left:96.031988pt;}
.x1b{left:144.986655pt;}
.x13{left:191.266667pt;}
.x6{left:199.866667pt;}
.x1c{left:202.906667pt;}
.x1a{left:208.666655pt;}
.xf{left:221.826667pt;}
.x11{left:226.946667pt;}
.x19{left:248.386655pt;}
.x9{left:256.386667pt;}
.x14{left:263.266667pt;}
.x16{left:278.946655pt;}
.x17{left:286.626667pt;}
.x7{left:307.906667pt;}
.x8{left:326.786667pt;}
.xb{left:328.866667pt;}
.xc{left:332.066667pt;}
.x1d{left:347.586667pt;}
.xa{left:405.066667pt;}
.x1e{left:474.653333pt;}
.x18{left:508.093333pt;}
.x1f{left:616.773333pt;}
.x4{left:663.013333pt;}
}




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