
    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_503a2219418b4043dd95e391.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_c7a7eabcc88a6af64a7114da.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011230;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_9182b14f82463beb07657177.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_bbd2dd287afa81e88cfa4957.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.150391;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_23f58908f644b35d81da2dd9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000488;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_18b36a61a328bc210eb263b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927246;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_36d5be275b8b65bc3be2b9e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_7e8a7a4ab7aac00e8b1ec167.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_36d5be275b8b65bc3be2b9e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_c55e3b085855ddc3261f6fc8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m3{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:-8.232000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-14.472000px;}
.ls0{letter-spacing:-11.448000px;}
.ls1{letter-spacing:-1.620000px;}
.ls2{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-21.000000px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:11.376000px;}
.ws2{word-spacing:14.472000px;}
._28{margin-left:-10.514400px;}
._1{margin-left:-8.586000px;}
._0{margin-left:-6.741000px;}
._1f{margin-left:-5.503200px;}
._3{margin-left:-4.437000px;}
._2{margin-left:-3.312000px;}
._1d{margin-left:-2.301600px;}
._c{margin-left:-1.280400px;}
._15{width:1.584000px;}
._7{width:3.181200px;}
._f{width:4.804800px;}
._13{width:6.633000px;}
._6{width:8.415000px;}
._16{width:9.847200px;}
._19{width:11.312400px;}
._4{width:12.586200px;}
._a{width:13.886400px;}
._8{width:14.995200px;}
._20{width:16.490400px;}
._e{width:17.509800px;}
._d{width:18.513000px;}
._11{width:19.892400px;}
._9{width:21.238800px;}
._1c{width:22.468800px;}
._17{width:24.459600px;}
._18{width:26.367000px;}
._10{width:28.076400px;}
._24{width:29.998800px;}
._22{width:31.191600px;}
._5{width:32.564400px;}
._12{width:33.712800px;}
._25{width:35.030400px;}
._1b{width:36.445200px;}
._21{width:47.743200px;}
._23{width:49.017600px;}
._b{width:51.895800px;}
._1a{width:53.394000px;}
._26{width:54.678000px;}
._27{width:59.572800px;}
._29{width:74.865600px;}
._14{width:110.642400px;}
._1e{width:147.000000px;}
.fc3{color:rgb(100,99,99);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:46.489950px;}
.y39{bottom:56.625900px;}
.y1{bottom:59.803050px;}
.y37{bottom:60.865950px;}
.y62{bottom:62.689950px;}
.y38{bottom:72.825900px;}
.y3{bottom:106.299150px;}
.y61{bottom:108.864600px;}
.ye0{bottom:109.381050px;}
.ye7{bottom:110.376600px;}
.y21{bottom:117.136950px;}
.yc6{bottom:117.360600px;}
.y84{bottom:122.137050px;}
.y92{bottom:127.368600px;}
.yac{bottom:128.439750px;}
.y105{bottom:130.641000px;}
.y60{bottom:135.864600px;}
.ydf{bottom:136.381050px;}
.y20{bottom:136.936950px;}
.ye6{bottom:137.376600px;}
.yc5{bottom:144.360600px;}
.y83{bottom:149.137050px;}
.y91{bottom:154.368600px;}
.y12e{bottom:155.880600px;}
.y36{bottom:156.753450px;}
.y104{bottom:157.641000px;}
.y5f{bottom:162.864600px;}
.yde{bottom:163.381050px;}
.ye5{bottom:164.376600px;}
.y1f{bottom:165.234450px;}
.yc4{bottom:171.360600px;}
.yab{bottom:172.872600px;}
.y82{bottom:176.137050px;}
.y35{bottom:176.553450px;}
.y90{bottom:181.368600px;}
.y12d{bottom:182.880600px;}
.y103{bottom:184.641000px;}
.y5e{bottom:189.864600px;}
.y115{bottom:190.401000px;}
.ye4{bottom:191.376600px;}
.yc3{bottom:198.360600px;}
.yaa{bottom:199.872600px;}
.y81{bottom:203.137050px;}
.y34{bottom:204.850950px;}
.y8f{bottom:208.368600px;}
.y12c{bottom:209.880600px;}
.y1e{bottom:210.543450px;}
.y102{bottom:211.641000px;}
.ydd{bottom:213.691650px;}
.y5d{bottom:216.864600px;}
.y114{bottom:217.401000px;}
.ye3{bottom:218.376600px;}
.yc2{bottom:225.360600px;}
.ya9{bottom:226.872600px;}
.y80{bottom:230.137050px;}
.y1d{bottom:230.343450px;}
.y8e{bottom:235.368600px;}
.y13c{bottom:236.880600px;}
.y101{bottom:238.641000px;}
.y12b{bottom:241.128600px;}
.y5c{bottom:243.864600px;}
.y113{bottom:244.401000px;}
.y1c{bottom:250.143450px;}
.y33{bottom:250.159950px;}
.yc1{bottom:252.360600px;}
.ya8{bottom:253.872600px;}
.y7f{bottom:257.137050px;}
.ydc{bottom:258.102600px;}
.y8d{bottom:262.368600px;}
.y100{bottom:265.641000px;}
.y12a{bottom:268.128600px;}
.y1b{bottom:269.943450px;}
.y32{bottom:269.959950px;}
.y5b{bottom:270.864600px;}
.y112{bottom:275.649000px;}
.yc0{bottom:279.360600px;}
.ya7{bottom:280.872600px;}
.y7e{bottom:284.137050px;}
.ydb{bottom:285.102600px;}
.y8c{bottom:289.368600px;}
.y1a{bottom:289.743450px;}
.y31{bottom:289.759950px;}
.yff{bottom:292.641000px;}
.y129{bottom:295.128600px;}
.y5a{bottom:297.864600px;}
.y111{bottom:302.649000px;}
.ybf{bottom:306.360600px;}
.ya6{bottom:307.872600px;}
.y19{bottom:309.543450px;}
.y30{bottom:309.559950px;}
.y7d{bottom:311.137050px;}
.yda{bottom:312.102600px;}
.y8b{bottom:316.368600px;}
.yfe{bottom:319.641000px;}
.y13b{bottom:322.128600px;}
.y59{bottom:324.864600px;}
.y128{bottom:326.376600px;}
.y18{bottom:329.343450px;}
.y2f{bottom:329.359950px;}
.y110{bottom:329.649000px;}
.ybe{bottom:333.360600px;}
.ya5{bottom:334.872600px;}
.y7c{bottom:338.137050px;}
.yd9{bottom:339.102600px;}
.y93{bottom:343.368600px;}
.yfd{bottom:346.641000px;}
.y13a{bottom:349.128600px;}
.y17{bottom:349.143450px;}
.y2e{bottom:349.159950px;}
.y58{bottom:351.864600px;}
.y127{bottom:353.376600px;}
.y10f{bottom:356.649000px;}
.ybd{bottom:360.360600px;}
.ya4{bottom:361.872600px;}
.y7b{bottom:365.137050px;}
.yd8{bottom:366.102600px;}
.y16{bottom:368.943450px;}
.y2d{bottom:368.959950px;}
.yfc{bottom:373.641000px;}
.y57{bottom:378.864600px;}
.y126{bottom:380.376600px;}
.ybc{bottom:387.360600px;}
.y10e{bottom:387.897000px;}
.y15{bottom:388.743450px;}
.y2c{bottom:388.759950px;}
.ya3{bottom:388.872600px;}
.y7a{bottom:392.137050px;}
.yd7{bottom:393.102600px;}
.yfb{bottom:400.641000px;}
.y56{bottom:405.864600px;}
.y139{bottom:407.376600px;}
.y14{bottom:408.543450px;}
.y2b{bottom:408.559950px;}
.y125{bottom:411.624600px;}
.ybb{bottom:414.360600px;}
.y10d{bottom:414.897000px;}
.ya2{bottom:415.872600px;}
.y79{bottom:419.137050px;}
.yd6{bottom:420.102600px;}
.yfa{bottom:427.641000px;}
.y13{bottom:428.343450px;}
.y2a{bottom:428.359950px;}
.y55{bottom:432.864600px;}
.y138{bottom:434.376600px;}
.y124{bottom:438.624600px;}
.yba{bottom:441.360600px;}
.y10c{bottom:441.897000px;}
.ya1{bottom:442.872600px;}
.y78{bottom:446.137050px;}
.yd5{bottom:447.102600px;}
.y12{bottom:448.143450px;}
.y29{bottom:448.159950px;}
.yf9{bottom:454.641000px;}
.y54{bottom:459.864600px;}
.y137{bottom:461.376600px;}
.y123{bottom:465.624600px;}
.y11{bottom:467.943450px;}
.y28{bottom:467.959950px;}
.yb9{bottom:468.360600px;}
.ye1{bottom:469.447650px;}
.ya0{bottom:469.872600px;}
.y77{bottom:473.137050px;}
.y10b{bottom:473.145000px;}
.yd4{bottom:474.102600px;}
.yf8{bottom:481.641000px;}
.y53{bottom:486.864600px;}
.y10{bottom:487.743450px;}
.y27{bottom:487.759950px;}
.y136{bottom:492.624600px;}
.yb8{bottom:495.360600px;}
.y9f{bottom:496.872600px;}
.y76{bottom:500.137050px;}
.y10a{bottom:500.145000px;}
.yd3{bottom:501.102600px;}
.ye2{bottom:505.368600px;}
.yf{bottom:507.543450px;}
.y26{bottom:507.559950px;}
.yf7{bottom:508.641000px;}
.y52{bottom:513.864600px;}
.y135{bottom:519.624600px;}
.yb7{bottom:522.360600px;}
.y122{bottom:523.872600px;}
.y75{bottom:527.137050px;}
.y109{bottom:527.145000px;}
.ye{bottom:527.343450px;}
.y25{bottom:527.359950px;}
.yd2{bottom:528.102600px;}
.y9e{bottom:532.368600px;}
.yf6{bottom:535.641000px;}
.y51{bottom:540.864600px;}
.y145{bottom:542.376600px;}
.y134{bottom:546.624600px;}
.yd{bottom:547.143450px;}
.y24{bottom:547.159950px;}
.yb6{bottom:549.360600px;}
.y121{bottom:550.872600px;}
.y74{bottom:554.137050px;}
.yd1{bottom:555.102600px;}
.y108{bottom:558.393000px;}
.y9d{bottom:559.368600px;}
.yf5{bottom:562.641000px;}
.yc{bottom:566.943450px;}
.y23{bottom:566.959950px;}
.y50{bottom:567.864600px;}
.y144{bottom:569.376600px;}
.yb5{bottom:576.360600px;}
.y106{bottom:577.447650px;}
.y120{bottom:577.872600px;}
.y73{bottom:581.137050px;}
.yd0{bottom:582.102600px;}
.y9c{bottom:586.368600px;}
.yf4{bottom:589.641000px;}
.y4f{bottom:594.864600px;}
.yb{bottom:599.497950px;}
.y22{bottom:599.514450px;}
.y143{bottom:600.624600px;}
.yb4{bottom:603.360600px;}
.y133{bottom:604.872600px;}
.y72{bottom:608.137050px;}
.ycf{bottom:609.102600px;}
.y11f{bottom:609.120600px;}
.y9b{bottom:613.368600px;}
.yf3{bottom:616.641000px;}
.y4e{bottom:621.864600px;}
.y142{bottom:627.624600px;}
.yb3{bottom:630.360600px;}
.y132{bottom:631.872600px;}
.y71{bottom:635.137050px;}
.yce{bottom:636.102600px;}
.y11e{bottom:636.120600px;}
.y9a{bottom:640.368600px;}
.yf2{bottom:643.641000px;}
.y4d{bottom:648.864600px;}
.yb2{bottom:657.360600px;}
.y141{bottom:658.872600px;}
.y70{bottom:662.137050px;}
.ycd{bottom:663.102600px;}
.y11d{bottom:663.120600px;}
.y99{bottom:667.368600px;}
.yf1{bottom:670.641000px;}
.y4c{bottom:675.864600px;}
.yb1{bottom:684.360600px;}
.y6f{bottom:689.137050px;}
.ycc{bottom:690.102600px;}
.y131{bottom:690.120600px;}
.y107{bottom:691.900800px;}
.y98{bottom:694.368600px;}
.yf0{bottom:697.641000px;}
.y4b{bottom:702.864600px;}
.yb0{bottom:711.360600px;}
.y6e{bottom:716.137050px;}
.ycb{bottom:717.102600px;}
.y130{bottom:717.120600px;}
.y97{bottom:721.368600px;}
.yef{bottom:724.641000px;}
.y4a{bottom:729.864600px;}
.yaf{bottom:738.360600px;}
.y6d{bottom:743.137050px;}
.yca{bottom:744.102600px;}
.y140{bottom:744.120600px;}
.y96{bottom:748.368600px;}
.yee{bottom:751.641000px;}
.y49{bottom:756.864600px;}
.yae{bottom:765.360600px;}
.y6c{bottom:770.137050px;}
.yc9{bottom:771.102600px;}
.y95{bottom:775.368600px;}
.yed{bottom:778.641000px;}
.y11c{bottom:779.616600px;}
.y48{bottom:783.864600px;}
.yad{bottom:792.360600px;}
.y6b{bottom:797.137050px;}
.yc8{bottom:798.102600px;}
.y94{bottom:802.368600px;}
.yec{bottom:805.641000px;}
.y11b{bottom:806.616600px;}
.y47{bottom:810.864600px;}
.y8a{bottom:819.360600px;}
.y6a{bottom:824.137050px;}
.yc7{bottom:825.102600px;}
.y13f{bottom:829.368600px;}
.yeb{bottom:832.641000px;}
.y11a{bottom:833.616600px;}
.y46{bottom:837.864600px;}
.y5{bottom:846.161100px;}
.y89{bottom:846.360600px;}
.yea{bottom:859.641000px;}
.y119{bottom:860.616600px;}
.y45{bottom:864.864600px;}
.y88{bottom:873.360600px;}
.y69{bottom:874.447650px;}
.y4{bottom:874.458600px;}
.ye9{bottom:886.641000px;}
.y12f{bottom:887.616600px;}
.y44{bottom:891.864600px;}
.y87{bottom:900.360600px;}
.y13e{bottom:914.616600px;}
.y43{bottom:918.864600px;}
.ya{bottom:922.748850px;}
.y86{bottom:927.360600px;}
.ye8{bottom:936.951600px;}
.y9{bottom:944.348850px;}
.y42{bottom:945.864600px;}
.y85{bottom:954.360600px;}
.y68{bottom:972.864600px;}
.y8{bottom:978.704700px;}
.y41{bottom:981.360600px;}
.y67{bottom:999.864600px;}
.y118{bottom:1004.112600px;}
.y7{bottom:1005.704700px;}
.y40{bottom:1008.360600px;}
.y66{bottom:1026.864600px;}
.y117{bottom:1031.112600px;}
.y6{bottom:1032.704700px;}
.y3f{bottom:1035.360600px;}
.y65{bottom:1053.864600px;}
.y116{bottom:1058.112600px;}
.y3e{bottom:1062.360600px;}
.y64{bottom:1080.864600px;}
.y13d{bottom:1085.112600px;}
.y3d{bottom:1089.360600px;}
.y3c{bottom:1116.360600px;}
.y3b{bottom:1143.360600px;}
.y2{bottom:1187.898450px;}
.y3a{bottom:1204.375350px;}
.h3{height:39.418945px;}
.h9{height:43.183594px;}
.hb{height:43.798828px;}
.h8{height:46.664062px;}
.h2{height:48.656250px;}
.h7{height:51.820312px;}
.h4{height:55.488281px;}
.hd{height:59.390625px;}
.h5{height:61.037109px;}
.ha{height:66.585938px;}
.hc{height:69.902766px;}
.he{height:78.134766px;}
.h6{height:83.715820px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:73.338150px;}
.x7{left:86.527500px;}
.x2{left:106.299150px;}
.xb{left:127.559100px;}
.xe{left:131.805150px;}
.x6{left:455.455650px;}
.x8{left:498.108600px;}
.x5{left:599.970450px;}
.x4{left:637.936950px;}
.xd{left:651.453000px;}
.x9{left:706.055850px;}
.x1{left:793.488150px;}
.x3{left:832.882950px;}
.xc{left:838.695600px;}
@media print{
.v1{vertical-align:-7.317333pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-12.864000pt;}
.ls0{letter-spacing:-10.176000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls2{letter-spacing:0.000000pt;}
.ws3{word-spacing:-18.666667pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:10.112000pt;}
.ws2{word-spacing:12.864000pt;}
._28{margin-left:-9.346133pt;}
._1{margin-left:-7.632000pt;}
._0{margin-left:-5.992000pt;}
._1f{margin-left:-4.891733pt;}
._3{margin-left:-3.944000pt;}
._2{margin-left:-2.944000pt;}
._1d{margin-left:-2.045867pt;}
._c{margin-left:-1.138133pt;}
._15{width:1.408000pt;}
._7{width:2.827733pt;}
._f{width:4.270933pt;}
._13{width:5.896000pt;}
._6{width:7.480000pt;}
._16{width:8.753067pt;}
._19{width:10.055467pt;}
._4{width:11.187733pt;}
._a{width:12.343467pt;}
._8{width:13.329067pt;}
._20{width:14.658133pt;}
._e{width:15.564267pt;}
._d{width:16.456000pt;}
._11{width:17.682133pt;}
._9{width:18.878933pt;}
._1c{width:19.972267pt;}
._17{width:21.741867pt;}
._18{width:23.437333pt;}
._10{width:24.956800pt;}
._24{width:26.665600pt;}
._22{width:27.725867pt;}
._5{width:28.946133pt;}
._12{width:29.966933pt;}
._25{width:31.138133pt;}
._1b{width:32.395733pt;}
._21{width:42.438400pt;}
._23{width:43.571200pt;}
._b{width:46.129600pt;}
._1a{width:47.461333pt;}
._26{width:48.602667pt;}
._27{width:52.953600pt;}
._29{width:66.547200pt;}
._14{width:98.348800pt;}
._1e{width:130.666667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:41.324400pt;}
.y39{bottom:50.334133pt;}
.y1{bottom:53.158267pt;}
.y37{bottom:54.103067pt;}
.y62{bottom:55.724400pt;}
.y38{bottom:64.734133pt;}
.y3{bottom:94.488133pt;}
.y61{bottom:96.768533pt;}
.ye0{bottom:97.227600pt;}
.ye7{bottom:98.112533pt;}
.y21{bottom:104.121733pt;}
.yc6{bottom:104.320533pt;}
.y84{bottom:108.566267pt;}
.y92{bottom:113.216533pt;}
.yac{bottom:114.168667pt;}
.y105{bottom:116.125333pt;}
.y60{bottom:120.768533pt;}
.ydf{bottom:121.227600pt;}
.y20{bottom:121.721733pt;}
.ye6{bottom:122.112533pt;}
.yc5{bottom:128.320533pt;}
.y83{bottom:132.566267pt;}
.y91{bottom:137.216533pt;}
.y12e{bottom:138.560533pt;}
.y36{bottom:139.336400pt;}
.y104{bottom:140.125333pt;}
.y5f{bottom:144.768533pt;}
.yde{bottom:145.227600pt;}
.ye5{bottom:146.112533pt;}
.y1f{bottom:146.875067pt;}
.yc4{bottom:152.320533pt;}
.yab{bottom:153.664533pt;}
.y82{bottom:156.566267pt;}
.y35{bottom:156.936400pt;}
.y90{bottom:161.216533pt;}
.y12d{bottom:162.560533pt;}
.y103{bottom:164.125333pt;}
.y5e{bottom:168.768533pt;}
.y115{bottom:169.245333pt;}
.ye4{bottom:170.112533pt;}
.yc3{bottom:176.320533pt;}
.yaa{bottom:177.664533pt;}
.y81{bottom:180.566267pt;}
.y34{bottom:182.089733pt;}
.y8f{bottom:185.216533pt;}
.y12c{bottom:186.560533pt;}
.y1e{bottom:187.149733pt;}
.y102{bottom:188.125333pt;}
.ydd{bottom:189.948133pt;}
.y5d{bottom:192.768533pt;}
.y114{bottom:193.245333pt;}
.ye3{bottom:194.112533pt;}
.yc2{bottom:200.320533pt;}
.ya9{bottom:201.664533pt;}
.y80{bottom:204.566267pt;}
.y1d{bottom:204.749733pt;}
.y8e{bottom:209.216533pt;}
.y13c{bottom:210.560533pt;}
.y101{bottom:212.125333pt;}
.y12b{bottom:214.336533pt;}
.y5c{bottom:216.768533pt;}
.y113{bottom:217.245333pt;}
.y1c{bottom:222.349733pt;}
.y33{bottom:222.364400pt;}
.yc1{bottom:224.320533pt;}
.ya8{bottom:225.664533pt;}
.y7f{bottom:228.566267pt;}
.ydc{bottom:229.424533pt;}
.y8d{bottom:233.216533pt;}
.y100{bottom:236.125333pt;}
.y12a{bottom:238.336533pt;}
.y1b{bottom:239.949733pt;}
.y32{bottom:239.964400pt;}
.y5b{bottom:240.768533pt;}
.y112{bottom:245.021333pt;}
.yc0{bottom:248.320533pt;}
.ya7{bottom:249.664533pt;}
.y7e{bottom:252.566267pt;}
.ydb{bottom:253.424533pt;}
.y8c{bottom:257.216533pt;}
.y1a{bottom:257.549733pt;}
.y31{bottom:257.564400pt;}
.yff{bottom:260.125333pt;}
.y129{bottom:262.336533pt;}
.y5a{bottom:264.768533pt;}
.y111{bottom:269.021333pt;}
.ybf{bottom:272.320533pt;}
.ya6{bottom:273.664533pt;}
.y19{bottom:275.149733pt;}
.y30{bottom:275.164400pt;}
.y7d{bottom:276.566267pt;}
.yda{bottom:277.424533pt;}
.y8b{bottom:281.216533pt;}
.yfe{bottom:284.125333pt;}
.y13b{bottom:286.336533pt;}
.y59{bottom:288.768533pt;}
.y128{bottom:290.112533pt;}
.y18{bottom:292.749733pt;}
.y2f{bottom:292.764400pt;}
.y110{bottom:293.021333pt;}
.ybe{bottom:296.320533pt;}
.ya5{bottom:297.664533pt;}
.y7c{bottom:300.566267pt;}
.yd9{bottom:301.424533pt;}
.y93{bottom:305.216533pt;}
.yfd{bottom:308.125333pt;}
.y13a{bottom:310.336533pt;}
.y17{bottom:310.349733pt;}
.y2e{bottom:310.364400pt;}
.y58{bottom:312.768533pt;}
.y127{bottom:314.112533pt;}
.y10f{bottom:317.021333pt;}
.ybd{bottom:320.320533pt;}
.ya4{bottom:321.664533pt;}
.y7b{bottom:324.566267pt;}
.yd8{bottom:325.424533pt;}
.y16{bottom:327.949733pt;}
.y2d{bottom:327.964400pt;}
.yfc{bottom:332.125333pt;}
.y57{bottom:336.768533pt;}
.y126{bottom:338.112533pt;}
.ybc{bottom:344.320533pt;}
.y10e{bottom:344.797333pt;}
.y15{bottom:345.549733pt;}
.y2c{bottom:345.564400pt;}
.ya3{bottom:345.664533pt;}
.y7a{bottom:348.566267pt;}
.yd7{bottom:349.424533pt;}
.yfb{bottom:356.125333pt;}
.y56{bottom:360.768533pt;}
.y139{bottom:362.112533pt;}
.y14{bottom:363.149733pt;}
.y2b{bottom:363.164400pt;}
.y125{bottom:365.888533pt;}
.ybb{bottom:368.320533pt;}
.y10d{bottom:368.797333pt;}
.ya2{bottom:369.664533pt;}
.y79{bottom:372.566267pt;}
.yd6{bottom:373.424533pt;}
.yfa{bottom:380.125333pt;}
.y13{bottom:380.749733pt;}
.y2a{bottom:380.764400pt;}
.y55{bottom:384.768533pt;}
.y138{bottom:386.112533pt;}
.y124{bottom:389.888533pt;}
.yba{bottom:392.320533pt;}
.y10c{bottom:392.797333pt;}
.ya1{bottom:393.664533pt;}
.y78{bottom:396.566267pt;}
.yd5{bottom:397.424533pt;}
.y12{bottom:398.349733pt;}
.y29{bottom:398.364400pt;}
.yf9{bottom:404.125333pt;}
.y54{bottom:408.768533pt;}
.y137{bottom:410.112533pt;}
.y123{bottom:413.888533pt;}
.y11{bottom:415.949733pt;}
.y28{bottom:415.964400pt;}
.yb9{bottom:416.320533pt;}
.ye1{bottom:417.286800pt;}
.ya0{bottom:417.664533pt;}
.y77{bottom:420.566267pt;}
.y10b{bottom:420.573333pt;}
.yd4{bottom:421.424533pt;}
.yf8{bottom:428.125333pt;}
.y53{bottom:432.768533pt;}
.y10{bottom:433.549733pt;}
.y27{bottom:433.564400pt;}
.y136{bottom:437.888533pt;}
.yb8{bottom:440.320533pt;}
.y9f{bottom:441.664533pt;}
.y76{bottom:444.566267pt;}
.y10a{bottom:444.573333pt;}
.yd3{bottom:445.424533pt;}
.ye2{bottom:449.216533pt;}
.yf{bottom:451.149733pt;}
.y26{bottom:451.164400pt;}
.yf7{bottom:452.125333pt;}
.y52{bottom:456.768533pt;}
.y135{bottom:461.888533pt;}
.yb7{bottom:464.320533pt;}
.y122{bottom:465.664533pt;}
.y75{bottom:468.566267pt;}
.y109{bottom:468.573333pt;}
.ye{bottom:468.749733pt;}
.y25{bottom:468.764400pt;}
.yd2{bottom:469.424533pt;}
.y9e{bottom:473.216533pt;}
.yf6{bottom:476.125333pt;}
.y51{bottom:480.768533pt;}
.y145{bottom:482.112533pt;}
.y134{bottom:485.888533pt;}
.yd{bottom:486.349733pt;}
.y24{bottom:486.364400pt;}
.yb6{bottom:488.320533pt;}
.y121{bottom:489.664533pt;}
.y74{bottom:492.566267pt;}
.yd1{bottom:493.424533pt;}
.y108{bottom:496.349333pt;}
.y9d{bottom:497.216533pt;}
.yf5{bottom:500.125333pt;}
.yc{bottom:503.949733pt;}
.y23{bottom:503.964400pt;}
.y50{bottom:504.768533pt;}
.y144{bottom:506.112533pt;}
.yb5{bottom:512.320533pt;}
.y106{bottom:513.286800pt;}
.y120{bottom:513.664533pt;}
.y73{bottom:516.566267pt;}
.yd0{bottom:517.424533pt;}
.y9c{bottom:521.216533pt;}
.yf4{bottom:524.125333pt;}
.y4f{bottom:528.768533pt;}
.yb{bottom:532.887067pt;}
.y22{bottom:532.901733pt;}
.y143{bottom:533.888533pt;}
.yb4{bottom:536.320533pt;}
.y133{bottom:537.664533pt;}
.y72{bottom:540.566267pt;}
.ycf{bottom:541.424533pt;}
.y11f{bottom:541.440533pt;}
.y9b{bottom:545.216533pt;}
.yf3{bottom:548.125333pt;}
.y4e{bottom:552.768533pt;}
.y142{bottom:557.888533pt;}
.yb3{bottom:560.320533pt;}
.y132{bottom:561.664533pt;}
.y71{bottom:564.566267pt;}
.yce{bottom:565.424533pt;}
.y11e{bottom:565.440533pt;}
.y9a{bottom:569.216533pt;}
.yf2{bottom:572.125333pt;}
.y4d{bottom:576.768533pt;}
.yb2{bottom:584.320533pt;}
.y141{bottom:585.664533pt;}
.y70{bottom:588.566267pt;}
.ycd{bottom:589.424533pt;}
.y11d{bottom:589.440533pt;}
.y99{bottom:593.216533pt;}
.yf1{bottom:596.125333pt;}
.y4c{bottom:600.768533pt;}
.yb1{bottom:608.320533pt;}
.y6f{bottom:612.566267pt;}
.ycc{bottom:613.424533pt;}
.y131{bottom:613.440533pt;}
.y107{bottom:615.022933pt;}
.y98{bottom:617.216533pt;}
.yf0{bottom:620.125333pt;}
.y4b{bottom:624.768533pt;}
.yb0{bottom:632.320533pt;}
.y6e{bottom:636.566267pt;}
.ycb{bottom:637.424533pt;}
.y130{bottom:637.440533pt;}
.y97{bottom:641.216533pt;}
.yef{bottom:644.125333pt;}
.y4a{bottom:648.768533pt;}
.yaf{bottom:656.320533pt;}
.y6d{bottom:660.566267pt;}
.yca{bottom:661.424533pt;}
.y140{bottom:661.440533pt;}
.y96{bottom:665.216533pt;}
.yee{bottom:668.125333pt;}
.y49{bottom:672.768533pt;}
.yae{bottom:680.320533pt;}
.y6c{bottom:684.566267pt;}
.yc9{bottom:685.424533pt;}
.y95{bottom:689.216533pt;}
.yed{bottom:692.125333pt;}
.y11c{bottom:692.992533pt;}
.y48{bottom:696.768533pt;}
.yad{bottom:704.320533pt;}
.y6b{bottom:708.566267pt;}
.yc8{bottom:709.424533pt;}
.y94{bottom:713.216533pt;}
.yec{bottom:716.125333pt;}
.y11b{bottom:716.992533pt;}
.y47{bottom:720.768533pt;}
.y8a{bottom:728.320533pt;}
.y6a{bottom:732.566267pt;}
.yc7{bottom:733.424533pt;}
.y13f{bottom:737.216533pt;}
.yeb{bottom:740.125333pt;}
.y11a{bottom:740.992533pt;}
.y46{bottom:744.768533pt;}
.y5{bottom:752.143200pt;}
.y89{bottom:752.320533pt;}
.yea{bottom:764.125333pt;}
.y119{bottom:764.992533pt;}
.y45{bottom:768.768533pt;}
.y88{bottom:776.320533pt;}
.y69{bottom:777.286800pt;}
.y4{bottom:777.296533pt;}
.ye9{bottom:788.125333pt;}
.y12f{bottom:788.992533pt;}
.y44{bottom:792.768533pt;}
.y87{bottom:800.320533pt;}
.y13e{bottom:812.992533pt;}
.y43{bottom:816.768533pt;}
.ya{bottom:820.221200pt;}
.y86{bottom:824.320533pt;}
.ye8{bottom:832.845867pt;}
.y9{bottom:839.421200pt;}
.y42{bottom:840.768533pt;}
.y85{bottom:848.320533pt;}
.y68{bottom:864.768533pt;}
.y8{bottom:869.959733pt;}
.y41{bottom:872.320533pt;}
.y67{bottom:888.768533pt;}
.y118{bottom:892.544533pt;}
.y7{bottom:893.959733pt;}
.y40{bottom:896.320533pt;}
.y66{bottom:912.768533pt;}
.y117{bottom:916.544533pt;}
.y6{bottom:917.959733pt;}
.y3f{bottom:920.320533pt;}
.y65{bottom:936.768533pt;}
.y116{bottom:940.544533pt;}
.y3e{bottom:944.320533pt;}
.y64{bottom:960.768533pt;}
.y13d{bottom:964.544533pt;}
.y3d{bottom:968.320533pt;}
.y3c{bottom:992.320533pt;}
.y3b{bottom:1016.320533pt;}
.y2{bottom:1055.909733pt;}
.y3a{bottom:1070.555867pt;}
.h3{height:35.039062pt;}
.h9{height:38.385417pt;}
.hb{height:38.932292pt;}
.h8{height:41.479167pt;}
.h2{height:43.250000pt;}
.h7{height:46.062500pt;}
.h4{height:49.322917pt;}
.hd{height:52.791667pt;}
.h5{height:54.255208pt;}
.ha{height:59.187500pt;}
.hc{height:62.135792pt;}
.he{height:69.453125pt;}
.h6{height:74.414062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:65.189467pt;}
.x7{left:76.913333pt;}
.x2{left:94.488133pt;}
.xb{left:113.385867pt;}
.xe{left:117.160133pt;}
.x6{left:404.849467pt;}
.x8{left:442.763200pt;}
.x5{left:533.307067pt;}
.x4{left:567.055067pt;}
.xd{left:579.069333pt;}
.x9{left:627.605200pt;}
.x1{left:705.322800pt;}
.x3{left:740.340400pt;}
.xc{left:745.507200pt;}
}




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