
    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_388c1434fd0ed53df7382021.woff')format("woff");}.ff1{font-family:ff1;line-height:0.923828;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_65bbffcecf662817afea4563.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_4878bdd1669f9cce83b8477d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_150bf4a4dbccb3ad9e6112f3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_0bbe97024bf86dd713b3d81c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.924805;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_78aedf37ffa9b38e0ec9c0e1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.711426;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_8f71720f2720d583d1cbd7f6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_a8046a76734851c17504bcfe.woff')format("woff");}.ff8{font-family:ff8;line-height:0.689941;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_631fe31748d7a1328414266c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.699219;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_b7707614d9bbf94073db98e9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cd25dd7643412a8810d4792f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899902;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_bbc2f52f8c277effdcafb977.woff')format("woff");}.ffc{font-family:ffc;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_66c7a18c92547eb101027582.woff')format("woff");}.ffd{font-family:ffd;line-height:0.935059;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_36b53bec1269c1d32ade49a9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.709961;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:fff;src:url('chunks/assets/font_f7e4e7ba2c48fb4c3e6cd9bc.woff')format("woff");}.fff{font-family:fff;line-height:0.703613;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:ff10;src:url('chunks/assets/font_1dd4adb2c9e6aa9bf6a17f9f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.699219;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:ff11;src:url('chunks/assets/font_3ae38a99734053f4246d0bfa.woff')format("woff");}.ff11{font-family:ff11;line-height:0.903809;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:ff12;src:url('chunks/assets/font_249cf240d02896ef36b20755.woff')format("woff");}.ff12{font-family:ff12;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0e1035421427581789e15abf.woff')format("woff");}.ff13{font-family:ff13;line-height:0.689941;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:ff14;src:url('chunks/assets/font_e5488093d144a634b4a7d1cf.woff')format("woff");}.ff14{font-family:ff14;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_32af295bc5c44f1b1cf8c1e2.woff')format("woff");}.ff15{font-family:ff15;line-height:0.931152;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:ff16;src:url('chunks/assets/font_b1e9f49dd4c74dc1db25e072.woff')format("woff");}.ff16{font-family:ff16;line-height:0.699707;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:ff17;src:url('chunks/assets/font_00c51b6050352d87618f23f8.woff')format("woff");}.ff17{font-family:ff17;line-height:0.924805;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:ff18;src:url('chunks/assets/font_7567795a256abcb8b0303738.woff')format("woff");}.ff18{font-family:ff18;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2d00fc1846c0ecabbd93f8c7.woff')format("woff");}.ff19{font-family:ff19;line-height:0.932129;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:ff1a;src:url('chunks/assets/font_0e3164f363729a9271c29123.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.699707;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:ff1b;src:url('chunks/assets/font_5000690a253cea21e7bd0ea6.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_1562f43f41c2b4eec3b73284.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.709961;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:ff1d;src:url('chunks/assets/font_f7e4e7ba2c48fb4c3e6cd9bc.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.703613;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:ff1e;src:url('chunks/assets/font_5cfc56370797eecb9ff44c1a.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_59a4bca8ef7860fa4b32835b.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.689941;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:ff20;src:url('chunks/assets/font_083e58b4e2d6069d158d763e.woff')format("woff");}.ff20{font-family:ff20;line-height:0.950195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020312px;}
.ls0{letter-spacing:7.906039px;}
.ls3{letter-spacing:8.813077px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-49.174086px;}
.ws4{word-spacing:-30.432345px;}
.ws1{word-spacing:-20.774777px;}
.ws0{word-spacing:-18.893143px;}
.ws5{word-spacing:-0.204692px;}
.ws6{word-spacing:-0.126678px;}
.ws3{word-spacing:0.000000px;}
._25{margin-left:-9.547556px;}
._19{margin-left:-7.257306px;}
._22{margin-left:-6.112669px;}
._f{margin-left:-5.097992px;}
._12{margin-left:-3.800874px;}
._13{margin-left:-2.432235px;}
._10{margin-left:-1.013387px;}
._3{width:1.696261px;}
._5{width:2.731621px;}
._9{width:4.013522px;}
._14{width:5.066146px;}
._2{width:6.110443px;}
._0{width:7.837071px;}
._a{width:8.959347px;}
._1{width:11.001760px;}
._7{width:12.851032px;}
._8{width:14.264104px;}
._e{width:15.276931px;}
._17{width:16.319513px;}
._1a{width:17.545389px;}
._1b{width:18.551619px;}
._6{width:19.762306px;}
._16{width:21.906839px;}
._4{width:23.557627px;}
._18{width:25.194810px;}
._c{width:26.374845px;}
._11{width:27.617565px;}
._20{width:29.295421px;}
._1c{width:30.566931px;}
._1f{width:31.590745px;}
._23{width:32.832524px;}
._d{width:34.066425px;}
._1d{width:35.461974px;}
._21{width:37.380142px;}
._b{width:41.550893px;}
._15{width:44.046069px;}
._1e{width:46.002494px;}
._24{width:51.406316px;}
.fc4{color:transparent;}
.fc2{color:rgb(150,194,49);}
.fc1{color:rgb(100,155,111);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:60.007609px;}
.fs2{font-size:66.670122px;}
.fs0{font-size:78.644627px;}
.fs3{font-size:90.664156px;}
.fs4{font-size:126.677725px;}
.fs1{font-size:204.692128px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y23{bottom:23.379670px;}
.ye1{bottom:33.991227px;}
.ye0{bottom:54.248859px;}
.ydf{bottom:74.506492px;}
.y61{bottom:95.143247px;}
.y17{bottom:98.156860px;}
.ya6{bottom:99.484487px;}
.y84{bottom:106.646625px;}
.y60{bottom:119.902576px;}
.y16{bottom:122.916189px;}
.ya5{bottom:124.243816px;}
.y83{bottom:131.405954px;}
.y5f{bottom:144.661904px;}
.y15{bottom:147.675518px;}
.ya4{bottom:149.003145px;}
.y82{bottom:156.165283px;}
.y14{bottom:172.434846px;}
.ya3{bottom:173.762474px;}
.y81{bottom:180.924611px;}
.y5e{bottom:194.180562px;}
.y13{bottom:197.194175px;}
.ya2{bottom:198.521802px;}
.yc8{bottom:218.143956px;}
.y5d{bottom:218.939891px;}
.ya1{bottom:223.281131px;}
.y80{bottom:230.443269px;}
.yc7{bottom:242.903285px;}
.y5c{bottom:243.699219px;}
.y12{bottom:246.712832px;}
.ya0{bottom:248.040460px;}
.y7f{bottom:255.202598px;}
.yc6{bottom:267.662613px;}
.y5b{bottom:268.458548px;}
.y11{bottom:271.472161px;}
.y9f{bottom:272.799789px;}
.y7e{bottom:279.961926px;}
.y5a{bottom:293.217877px;}
.y10{bottom:296.231490px;}
.y9e{bottom:297.559117px;}
.y7d{bottom:304.721255px;}
.yc5{bottom:317.181271px;}
.y59{bottom:317.977205px;}
.yf{bottom:320.990819px;}
.yc4{bottom:341.940599px;}
.y58{bottom:342.736534px;}
.y9d{bottom:347.077775px;}
.y7c{bottom:354.239913px;}
.ye2{bottom:357.363320px;}
.yc3{bottom:366.699928px;}
.y57{bottom:367.495863px;}
.ye{bottom:370.509476px;}
.y9c{bottom:371.837103px;}
.y7b{bottom:378.999241px;}
.yc2{bottom:391.459257px;}
.y56{bottom:392.255192px;}
.yd{bottom:395.268805px;}
.y9b{bottom:396.596432px;}
.y7a{bottom:403.758570px;}
.ye5{bottom:410.045202px;}
.y55{bottom:417.014520px;}
.yc{bottom:420.028134px;}
.y9a{bottom:421.355761px;}
.ye4{bottom:434.804531px;}
.yc1{bottom:440.977914px;}
.y54{bottom:441.773849px;}
.yb{bottom:444.787462px;}
.y79{bottom:445.515700px;}
.ye3{bottom:459.563860px;}
.yc0{bottom:465.737243px;}
.y53{bottom:466.533178px;}
.ya{bottom:469.546791px;}
.y99{bottom:470.874418px;}
.ybf{bottom:490.496572px;}
.y52{bottom:491.292507px;}
.y9{bottom:494.306120px;}
.y98{bottom:495.633747px;}
.y51{bottom:516.051835px;}
.y8{bottom:519.065448px;}
.y97{bottom:520.393076px;}
.y78{bottom:535.402110px;}
.ybe{bottom:540.015229px;}
.y96{bottom:545.152405px;}
.y77{bottom:560.161439px;}
.ybd{bottom:564.774558px;}
.y50{bottom:565.570493px;}
.y7{bottom:568.584106px;}
.y95{bottom:569.911733px;}
.y3a{bottom:574.463529px;}
.ydd{bottom:575.920131px;}
.y76{bottom:584.920768px;}
.ybc{bottom:589.533887px;}
.y6{bottom:593.343435px;}
.y94{bottom:594.671062px;}
.y39{bottom:599.222858px;}
.ydc{bottom:600.679460px;}
.y75{bottom:609.680096px;}
.ybb{bottom:614.293215px;}
.y4f{bottom:615.089150px;}
.y5{bottom:618.102763px;}
.y38{bottom:623.982187px;}
.ydb{bottom:625.438788px;}
.yba{bottom:639.052544px;}
.y4e{bottom:639.848479px;}
.y4{bottom:642.862092px;}
.y93{bottom:646.694913px;}
.y37{bottom:648.741515px;}
.yda{bottom:650.198117px;}
.y74{bottom:659.198754px;}
.y4d{bottom:664.607808px;}
.y3{bottom:667.621421px;}
.y36{bottom:673.500844px;}
.yd9{bottom:674.957446px;}
.y73{bottom:683.958083px;}
.yb9{bottom:688.267570px;}
.y4c{bottom:689.367136px;}
.y2{bottom:692.380750px;}
.y35{bottom:698.260173px;}
.yd8{bottom:699.716775px;}
.y72{bottom:708.717411px;}
.yb8{bottom:713.026898px;}
.y4b{bottom:714.126465px;}
.yd7{bottom:724.476103px;}
.y71{bottom:733.476740px;}
.yb7{bottom:737.786227px;}
.y4a{bottom:738.885794px;}
.y92{bottom:741.799361px;}
.y22{bottom:743.279190px;}
.y34{bottom:747.778830px;}
.y70{bottom:758.236069px;}
.yb6{bottom:762.545556px;}
.y49{bottom:763.645123px;}
.y91{bottom:766.558690px;}
.y33{bottom:772.538159px;}
.yd6{bottom:773.994761px;}
.yb5{bottom:787.304885px;}
.y90{bottom:791.318019px;}
.y32{bottom:797.297488px;}
.yd5{bottom:798.754089px;}
.y6f{bottom:807.754726px;}
.y48{bottom:813.163780px;}
.y31{bottom:822.056816px;}
.yd4{bottom:823.513418px;}
.y6e{bottom:832.514055px;}
.yb4{bottom:836.823542px;}
.y47{bottom:837.923109px;}
.y8f{bottom:840.836676px;}
.y21{bottom:847.481359px;}
.yd3{bottom:848.272747px;}
.y6d{bottom:857.273384px;}
.yb3{bottom:861.582871px;}
.y46{bottom:862.682437px;}
.y8e{bottom:865.596005px;}
.y20{bottom:868.864416px;}
.y30{bottom:871.575474px;}
.yd2{bottom:873.032076px;}
.yb2{bottom:886.342200px;}
.y45{bottom:887.441766px;}
.y1f{bottom:890.247472px;}
.y2f{bottom:896.334803px;}
.yd1{bottom:897.791404px;}
.y6c{bottom:906.792041px;}
.yb1{bottom:911.101528px;}
.y44{bottom:912.201095px;}
.y8d{bottom:915.114662px;}
.y2e{bottom:921.094131px;}
.yd0{bottom:922.550733px;}
.y6b{bottom:931.551370px;}
.y1e{bottom:933.013585px;}
.yb0{bottom:935.860857px;}
.y43{bottom:936.960424px;}
.y8c{bottom:939.873991px;}
.y2d{bottom:945.853460px;}
.ycf{bottom:947.310062px;}
.y1d{bottom:954.396642px;}
.y6a{bottom:956.310699px;}
.yaf{bottom:960.620186px;}
.y42{bottom:961.719752px;}
.y8b{bottom:964.633320px;}
.y2c{bottom:970.612789px;}
.yce{bottom:972.069391px;}
.y1c{bottom:975.779699px;}
.y69{bottom:981.070027px;}
.yae{bottom:985.379514px;}
.y41{bottom:986.479081px;}
.y2b{bottom:995.372118px;}
.y68{bottom:1005.829356px;}
.yad{bottom:1010.138843px;}
.y40{bottom:1011.238410px;}
.y8a{bottom:1014.151977px;}
.y2a{bottom:1020.131446px;}
.ycd{bottom:1021.588048px;}
.y89{bottom:1038.911306px;}
.y3f{bottom:1040.147667px;}
.ycc{bottom:1046.347377px;}
.y1b{bottom:1050.999083px;}
.y67{bottom:1055.348014px;}
.yac{bottom:1059.657501px;}
.y3e{bottom:1064.906996px;}
.y1a{bottom:1070.131292px;}
.ycb{bottom:1071.106705px;}
.y29{bottom:1073.691237px;}
.y66{bottom:1080.107342px;}
.yab{bottom:1084.416829px;}
.y88{bottom:1088.429963px;}
.y3d{bottom:1089.666325px;}
.yca{bottom:1095.866034px;}
.y28{bottom:1098.450566px;}
.y65{bottom:1104.866671px;}
.yaa{bottom:1109.176158px;}
.y3c{bottom:1114.425653px;}
.y19{bottom:1119.286609px;}
.yc9{bottom:1120.625363px;}
.y27{bottom:1123.209894px;}
.y64{bottom:1129.626000px;}
.ya9{bottom:1133.935487px;}
.y87{bottom:1137.948621px;}
.y3b{bottom:1139.184982px;}
.y26{bottom:1147.969223px;}
.ya8{bottom:1158.694816px;}
.y86{bottom:1162.707950px;}
.y18{bottom:1171.056115px;}
.y25{bottom:1172.728552px;}
.y63{bottom:1174.118109px;}
.yde{bottom:1180.498886px;}
.ya7{bottom:1183.454144px;}
.y62{bottom:1184.947607px;}
.y85{bottom:1187.467278px;}
.y24{bottom:1197.487880px;}
.h10{height:42.251451px;}
.h6{height:47.105306px;}
.h4{height:55.066599px;}
.h3{height:55.143401px;}
.h9{height:55.373805px;}
.h11{height:58.215456px;}
.h7{height:62.552955px;}
.h8{height:63.394078px;}
.ha{height:63.482617px;}
.hd{height:88.575440px;}
.hf{height:88.699149px;}
.hb{height:89.193984px;}
.hc{height:143.124574px;}
.he{height:143.324468px;}
.h5{height:143.524363px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:23.891022px;}
.x7{left:28.091669px;}
.xa{left:33.881661px;}
.xb{left:35.206525px;}
.x9{left:36.531393px;}
.x1{left:38.097464px;}
.xc{left:68.635135px;}
.xd{left:69.960004px;}
.xe{left:343.344449px;}
.x3{left:436.120030px;}
.x4{left:450.560481px;}
.x2{left:457.784442px;}
.x5{left:460.847560px;}
.x10{left:652.287529px;}
.x11{left:740.826747px;}
.x12{left:775.908330px;}
.x8{left:847.484545px;}
.xf{left:850.263457px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.018055pt;}
.ls0{letter-spacing:7.027590pt;}
.ls3{letter-spacing:7.833846pt;}
.ws2{word-spacing:-43.710299pt;}
.ws4{word-spacing:-27.050973pt;}
.ws1{word-spacing:-18.466469pt;}
.ws0{word-spacing:-16.793905pt;}
.ws5{word-spacing:-0.181949pt;}
.ws6{word-spacing:-0.112602pt;}
.ws3{word-spacing:0.000000pt;}
._25{margin-left:-8.486716pt;}
._19{margin-left:-6.450938pt;}
._22{margin-left:-5.433484pt;}
._f{margin-left:-4.531548pt;}
._12{margin-left:-3.378555pt;}
._13{margin-left:-2.161987pt;}
._10{margin-left:-0.900788pt;}
._3{width:1.507788pt;}
._5{width:2.428107pt;}
._9{width:3.567575pt;}
._14{width:4.503241pt;}
._2{width:5.431505pt;}
._0{width:6.966285pt;}
._a{width:7.963864pt;}
._1{width:9.779342pt;}
._7{width:11.423140pt;}
._8{width:12.679204pt;}
._e{width:13.579494pt;}
._17{width:14.506234pt;}
._1a{width:15.595901pt;}
._1b{width:16.490328pt;}
._6{width:17.566494pt;}
._16{width:19.472746pt;}
._4{width:20.940113pt;}
._18{width:22.395387pt;}
._c{width:23.444307pt;}
._11{width:24.548947pt;}
._20{width:26.040374pt;}
._1c{width:27.170606pt;}
._1f{width:28.080662pt;}
._23{width:29.184466pt;}
._d{width:30.281267pt;}
._1d{width:31.521755pt;}
._21{width:33.226793pt;}
._b{width:36.934127pt;}
._15{width:39.152061pt;}
._1e{width:40.891106pt;}
._24{width:45.694503pt;}
.fs5{font-size:53.340097pt;}
.fs2{font-size:59.262330pt;}
.fs0{font-size:69.906335pt;}
.fs3{font-size:80.590361pt;}
.fs4{font-size:112.602422pt;}
.fs1{font-size:181.948558pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y23{bottom:20.781929pt;}
.ye1{bottom:30.214424pt;}
.ye0{bottom:48.221208pt;}
.ydf{bottom:66.227993pt;}
.y61{bottom:84.571775pt;}
.y17{bottom:87.250542pt;}
.ya6{bottom:88.430656pt;}
.y84{bottom:94.797000pt;}
.y60{bottom:106.580067pt;}
.y16{bottom:109.258834pt;}
.ya5{bottom:110.438948pt;}
.y83{bottom:116.805292pt;}
.y5f{bottom:128.588359pt;}
.y15{bottom:131.267127pt;}
.ya4{bottom:132.447240pt;}
.y82{bottom:138.813585pt;}
.y14{bottom:153.275419pt;}
.ya3{bottom:154.455532pt;}
.y81{bottom:160.821877pt;}
.y5e{bottom:172.604944pt;}
.y13{bottom:175.283711pt;}
.ya2{bottom:176.463824pt;}
.yc8{bottom:193.905738pt;}
.y5d{bottom:194.613236pt;}
.ya1{bottom:198.472117pt;}
.y80{bottom:204.838461pt;}
.yc7{bottom:215.914031pt;}
.y5c{bottom:216.621528pt;}
.y12{bottom:219.300296pt;}
.ya0{bottom:220.480409pt;}
.y7f{bottom:226.846753pt;}
.yc6{bottom:237.922323pt;}
.y5b{bottom:238.629820pt;}
.y11{bottom:241.308588pt;}
.y9f{bottom:242.488701pt;}
.y7e{bottom:248.855046pt;}
.y5a{bottom:260.638113pt;}
.y10{bottom:263.316880pt;}
.y9e{bottom:264.496993pt;}
.y7d{bottom:270.863338pt;}
.yc5{bottom:281.938907pt;}
.y59{bottom:282.646405pt;}
.yf{bottom:285.325172pt;}
.yc4{bottom:303.947199pt;}
.y58{bottom:304.654697pt;}
.y9d{bottom:308.513578pt;}
.y7c{bottom:314.879922pt;}
.ye2{bottom:317.656284pt;}
.yc3{bottom:325.955492pt;}
.y57{bottom:326.662989pt;}
.ye{bottom:329.341757pt;}
.y9c{bottom:330.521870pt;}
.y7b{bottom:336.888214pt;}
.yc2{bottom:347.963784pt;}
.y56{bottom:348.671281pt;}
.yd{bottom:351.350049pt;}
.y9b{bottom:352.530162pt;}
.y7a{bottom:358.896507pt;}
.ye5{bottom:364.484624pt;}
.y55{bottom:370.679574pt;}
.yc{bottom:373.358341pt;}
.y9a{bottom:374.538454pt;}
.ye4{bottom:386.492916pt;}
.yc1{bottom:391.980368pt;}
.y54{bottom:392.687866pt;}
.yb{bottom:395.366633pt;}
.y79{bottom:396.013955pt;}
.ye3{bottom:408.501209pt;}
.yc0{bottom:413.988661pt;}
.y53{bottom:414.696158pt;}
.ya{bottom:417.374925pt;}
.y99{bottom:418.555039pt;}
.ybf{bottom:435.996953pt;}
.y52{bottom:436.704450pt;}
.y9{bottom:439.383218pt;}
.y98{bottom:440.563331pt;}
.y51{bottom:458.712742pt;}
.y8{bottom:461.391510pt;}
.y97{bottom:462.571623pt;}
.y78{bottom:475.912987pt;}
.ybe{bottom:480.013537pt;}
.y96{bottom:484.579915pt;}
.y77{bottom:497.921279pt;}
.ybd{bottom:502.021829pt;}
.y50{bottom:502.729327pt;}
.y7{bottom:505.408094pt;}
.y95{bottom:506.588207pt;}
.y3a{bottom:510.634248pt;}
.ydd{bottom:511.929005pt;}
.y76{bottom:519.929571pt;}
.ybc{bottom:524.030122pt;}
.y6{bottom:527.416386pt;}
.y94{bottom:528.596500pt;}
.y39{bottom:532.642540pt;}
.ydc{bottom:533.937297pt;}
.y75{bottom:541.937863pt;}
.ybb{bottom:546.038414pt;}
.y4f{bottom:546.745911pt;}
.y5{bottom:549.424679pt;}
.y38{bottom:554.650833pt;}
.ydb{bottom:555.945590pt;}
.yba{bottom:568.046706pt;}
.y4e{bottom:568.754204pt;}
.y4{bottom:571.432971pt;}
.y93{bottom:574.839922pt;}
.y37{bottom:576.659125pt;}
.yda{bottom:577.953882pt;}
.y74{bottom:585.954448pt;}
.y4d{bottom:590.762496pt;}
.y3{bottom:593.441263pt;}
.y36{bottom:598.667417pt;}
.yd9{bottom:599.962174pt;}
.y73{bottom:607.962740pt;}
.yb9{bottom:611.793395pt;}
.y4c{bottom:612.770788pt;}
.y2{bottom:615.449555pt;}
.y35{bottom:620.675709pt;}
.yd8{bottom:621.970466pt;}
.y72{bottom:629.971032pt;}
.yb8{bottom:633.801688pt;}
.y4b{bottom:634.779080pt;}
.yd7{bottom:643.978758pt;}
.y71{bottom:651.979325pt;}
.yb7{bottom:655.809980pt;}
.y4a{bottom:656.787372pt;}
.y92{bottom:659.377210pt;}
.y22{bottom:660.692613pt;}
.y34{bottom:664.692294pt;}
.y70{bottom:673.987617pt;}
.yb6{bottom:677.818272pt;}
.y49{bottom:678.795665pt;}
.y91{bottom:681.385502pt;}
.y33{bottom:686.700586pt;}
.yd6{bottom:687.995343pt;}
.yb5{bottom:699.826564pt;}
.y90{bottom:703.393794pt;}
.y32{bottom:708.708878pt;}
.yd5{bottom:710.003635pt;}
.y6f{bottom:718.004201pt;}
.y48{bottom:722.812249pt;}
.y31{bottom:730.717170pt;}
.yd4{bottom:732.011927pt;}
.y6e{bottom:740.012493pt;}
.yb4{bottom:743.843149pt;}
.y47{bottom:744.820541pt;}
.y8f{bottom:747.410379pt;}
.y21{bottom:753.316763pt;}
.yd3{bottom:754.020219pt;}
.y6d{bottom:762.020786pt;}
.yb3{bottom:765.851441pt;}
.y46{bottom:766.828833pt;}
.y8e{bottom:769.418671pt;}
.y20{bottom:772.323925pt;}
.y30{bottom:774.733755pt;}
.yd2{bottom:776.028512pt;}
.yb2{bottom:787.859733pt;}
.y45{bottom:788.837126pt;}
.y1f{bottom:791.331086pt;}
.y2f{bottom:796.742047pt;}
.yd1{bottom:798.036804pt;}
.y6c{bottom:806.037370pt;}
.yb1{bottom:809.868025pt;}
.y44{bottom:810.845418pt;}
.y8d{bottom:813.435255pt;}
.y2e{bottom:818.750339pt;}
.yd0{bottom:820.045096pt;}
.y6b{bottom:828.045662pt;}
.y1e{bottom:829.345409pt;}
.yb0{bottom:831.876317pt;}
.y43{bottom:832.853710pt;}
.y8c{bottom:835.443548pt;}
.y2d{bottom:840.758631pt;}
.ycf{bottom:842.053388pt;}
.y1d{bottom:848.352571pt;}
.y6a{bottom:850.053954pt;}
.yaf{bottom:853.884610pt;}
.y42{bottom:854.862002pt;}
.y8b{bottom:857.451840pt;}
.y2c{bottom:862.766923pt;}
.yce{bottom:864.061680pt;}
.y1c{bottom:867.359732pt;}
.y69{bottom:872.062247pt;}
.yae{bottom:875.892902pt;}
.y41{bottom:876.870294pt;}
.y2b{bottom:884.775216pt;}
.y68{bottom:894.070539pt;}
.yad{bottom:897.901194pt;}
.y40{bottom:898.878587pt;}
.y8a{bottom:901.468424pt;}
.y2a{bottom:906.783508pt;}
.ycd{bottom:908.078265pt;}
.y89{bottom:923.476716pt;}
.y3f{bottom:924.575704pt;}
.ycc{bottom:930.086557pt;}
.y1b{bottom:934.221407pt;}
.y67{bottom:938.087123pt;}
.yac{bottom:941.917778pt;}
.y3e{bottom:946.583996pt;}
.y1a{bottom:951.227815pt;}
.ycb{bottom:952.094849pt;}
.y29{bottom:954.392210pt;}
.y66{bottom:960.095415pt;}
.yab{bottom:963.926071pt;}
.y88{bottom:967.493301pt;}
.y3d{bottom:968.592289pt;}
.yca{bottom:974.103141pt;}
.y28{bottom:976.400503pt;}
.y65{bottom:982.103708pt;}
.yaa{bottom:985.934363pt;}
.y3c{bottom:990.600581pt;}
.y19{bottom:994.921431pt;}
.yc9{bottom:996.111434pt;}
.y27{bottom:998.408795pt;}
.y64{bottom:1004.112000pt;}
.ya9{bottom:1007.942655pt;}
.y87{bottom:1011.509885pt;}
.y3b{bottom:1012.608873pt;}
.y26{bottom:1020.417087pt;}
.ya8{bottom:1029.950947pt;}
.y86{bottom:1033.518177pt;}
.y18{bottom:1040.938769pt;}
.y25{bottom:1042.425379pt;}
.y63{bottom:1043.660541pt;}
.yde{bottom:1049.332343pt;}
.ya7{bottom:1051.959239pt;}
.y62{bottom:1053.286762pt;}
.y85{bottom:1055.526470pt;}
.y24{bottom:1064.433671pt;}
.h10{height:37.556846pt;}
.h6{height:41.871383pt;}
.h4{height:48.948088pt;}
.h3{height:49.016356pt;}
.h9{height:49.221160pt;}
.h11{height:51.747072pt;}
.h7{height:55.602627pt;}
.h8{height:56.350291pt;}
.ha{height:56.428993pt;}
.hd{height:78.733725pt;}
.hf{height:78.843688pt;}
.hb{height:79.283541pt;}
.hc{height:127.221843pt;}
.he{height:127.399527pt;}
.h5{height:127.577211pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:21.236464pt;}
.x7{left:24.970372pt;}
.xa{left:30.117032pt;}
.xb{left:31.294689pt;}
.x9{left:32.472350pt;}
.x1{left:33.864413pt;}
.xc{left:61.009009pt;}
.xd{left:62.186670pt;}
.xe{left:305.195066pt;}
.x3{left:387.662249pt;}
.x4{left:400.498205pt;}
.x2{left:406.919504pt;}
.x5{left:409.642275pt;}
.x10{left:579.811137pt;}
.x11{left:658.512664pt;}
.x12{left:689.696294pt;}
.x8{left:753.319596pt;}
.xf{left:755.789740pt;}
}




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