
    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_9d24ccfe52a26df82aab307d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.741211;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_72cf4299ef336b86b01d9e75.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_68bce6dfd8b211280ac32fa9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_ea1b2e011d207e4693c949ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_dda0803bc9b1d2a530a13b58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_a211d5616d2d87c8408b6ec1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.989746;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_3d246791c98298b8e9991a66.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_df0aebd9f6d58196b7518ab6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37924d075520ab10a38096a3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_ad305b683577ed194ebe385f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_498432725b21222128db1db1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_75d266d65f2ecc7c9d7a2d3a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_8f446aa235b317f4b9f75613.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_febcc8b844074985f066961c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_94bec7a8b801c6f56412a202.woff')format("woff");}.fff{font-family:fff;line-height:1.005371;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_5f8cbe7a758e34010114def7.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_86f14f46c606a84f5259cff9.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_51f54b9f6586719edc248b5d.woff')format("woff");}.ff12{font-family:ff12;line-height:1.104004;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_93ae55f0f9a454b583bcbe14.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910645;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_3dc064a2940ae38ee63b45eb.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6954f749f472e8c5bfa2a86e.woff')format("woff");}.ff15{font-family:ff15;line-height:0.677734;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_041223b8a6300f7af2cb1338.woff')format("woff");}.ff16{font-family:ff16;line-height:0.693359;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_0bd40ea7bddf3c606d727a9c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.910645;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_d41a616dedba7dca1c11d14c.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_f0e1b71ff0582d7aec4d6b36.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_1ae8e76b38e91ff778d8c438.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.692383;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_ae63ce4ffe3ccabf58d2405a.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_d9816b589b8eb1fb685ee13c.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_cda6995fcc561c5be5e5b8fa.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_6914576df863f865cc8a016e.woff')format("woff");}.ff1e{font-family:ff1e;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;}
.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;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls2d{letter-spacing:-0.689472px;}
.ls1e{letter-spacing:-0.569088px;}
.ls2b{letter-spacing:-0.508896px;}
.ls2c{letter-spacing:-0.481536px;}
.ls1a{letter-spacing:-0.470592px;}
.ls9{letter-spacing:-0.454176px;}
.ls2e{letter-spacing:-0.448704px;}
.ls1d{letter-spacing:-0.432288px;}
.ls1f{letter-spacing:-0.421344px;}
.ls13{letter-spacing:-0.417312px;}
.ls16{letter-spacing:-0.381024px;}
.ls1c{letter-spacing:-0.361152px;}
.ls11{letter-spacing:-0.338688px;}
.ls29{letter-spacing:-0.320544px;}
.ls2a{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.260064px;}
.ls10{letter-spacing:-0.241920px;}
.lsc{letter-spacing:-0.241200px;}
.ls12{letter-spacing:-0.223776px;}
.ls21{letter-spacing:-0.213408px;}
.lsa{letter-spacing:-0.186048px;}
.ls14{letter-spacing:-0.175392px;}
.ls20{letter-spacing:-0.169632px;}
.ls6{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.157248px;}
.ls30{letter-spacing:-0.145152px;}
.ls8{letter-spacing:-0.125856px;}
.ls2f{letter-spacing:-0.120960px;}
.lsb{letter-spacing:-0.115776px;}
.lsf{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.007200px;}
.ls18{letter-spacing:0.014400px;}
.ls31{letter-spacing:0.058320px;}
.ls32{letter-spacing:0.059904px;}
.ls27{letter-spacing:0.070560px;}
.ls23{letter-spacing:0.118800px;}
.ls0{letter-spacing:0.214560px;}
.ls33{letter-spacing:0.237600px;}
.ls4{letter-spacing:0.239040px;}
.ls19{letter-spacing:0.240048px;}
.ls2{letter-spacing:0.240480px;}
.ls34{letter-spacing:0.242352px;}
.ls25{letter-spacing:0.256608px;}
.ls17{letter-spacing:0.285120px;}
.lsd{letter-spacing:0.286848px;}
.ls24{letter-spacing:0.289872px;}
.ls22{letter-spacing:0.294624px;}
.ls1{letter-spacing:0.298800px;}
.lse{letter-spacing:0.358560px;}
.ls26{letter-spacing:12.067200px;}
.ls3{letter-spacing:73.440000px;}
.ls5{letter-spacing:77.760000px;}
.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;}
}
.ws4{word-spacing:-27.310320px;}
.ws3{word-spacing:-26.821440px;}
.ws0{word-spacing:-18.288864px;}
.ws10{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.985600px;}
.wsf{word-spacing:-16.257600px;}
.ws6{word-spacing:-15.120000px;}
.ws19{word-spacing:-14.974848px;}
.ws18{word-spacing:-14.962752px;}
.ws1b{word-spacing:-14.944608px;}
.ws7{word-spacing:-14.896224px;}
.ws15{word-spacing:-14.878080px;}
.ws12{word-spacing:-14.859936px;}
.ws1d{word-spacing:-14.817600px;}
.ws16{word-spacing:-14.799456px;}
.ws1a{word-spacing:-14.781312px;}
.ws8{word-spacing:-14.738976px;}
.wsa{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.wsb{word-spacing:-13.866048px;}
.wsd{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wsc{word-spacing:-13.658112px;}
.ws13{word-spacing:-13.171104px;}
.ws14{word-spacing:-12.990528px;}
.wse{word-spacing:-12.474000px;}
.ws1e{word-spacing:-12.122352px;}
.ws1c{word-spacing:-12.117600px;}
.ws17{word-spacing:-9.778320px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-9.508608px;}
._22{margin-left:-8.157600px;}
._25{margin-left:-6.239520px;}
._c{margin-left:-5.168016px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.073952px;}
._7{width:2.257776px;}
._6{width:3.977424px;}
._d{width:5.005152px;}
._10{width:6.205248px;}
._8{width:7.279200px;}
._a{width:9.288000px;}
._11{width:10.509120px;}
._f{width:11.815200px;}
._13{width:12.952800px;}
._14{width:13.971168px;}
._16{width:15.422400px;}
._23{width:16.617600px;}
._18{width:19.008000px;}
._1a{width:20.203200px;}
._9{width:21.261600px;}
._b{width:23.176800px;}
._1b{width:24.213600px;}
._1d{width:26.064000px;}
._1c{width:27.345600px;}
._17{width:28.396800px;}
._19{width:35.020800px;}
._e{width:38.772000px;}
._15{width:41.822064px;}
._24{width:49.514400px;}
._21{width:50.940000px;}
._12{width:67.835664px;}
._1e{width:69.616800px;}
._26{width:75.434400px;}
._5{width:77.624640px;}
._27{width:115.083792px;}
._20{width:193.200192px;}
._1f{width:194.398560px;}
.fc6{color:rgb(14,40,65);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(121,124,143);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.360000px;}
.yf{bottom:4.560000px;}
.y46{bottom:4.860000px;}
.y63{bottom:5.040000px;}
.y50{bottom:5.400000px;}
.y66{bottom:5.640000px;}
.y9{bottom:6.900000px;}
.y48{bottom:7.080000px;}
.yb8{bottom:13.680000px;}
.ybd{bottom:13.920000px;}
.yda{bottom:14.160000px;}
.yec{bottom:14.220000px;}
.y107{bottom:14.280000px;}
.ydf{bottom:14.340000px;}
.yc3{bottom:14.400000px;}
.y11e{bottom:14.520000px;}
.yd1{bottom:14.700000px;}
.ye5{bottom:14.820000px;}
.y101{bottom:14.880000px;}
.y112{bottom:14.940000px;}
.y10c{bottom:15.180000px;}
.yca{bottom:15.300000px;}
.y43{bottom:22.140000px;}
.yd{bottom:23.640000px;}
.ye{bottom:24.360000px;}
.y62{bottom:25.560000px;}
.y16{bottom:25.980000px;}
.y65{bottom:26.160000px;}
.y8{bottom:29.220000px;}
.ybc{bottom:30.480000px;}
.yf8{bottom:32.280000px;}
.yef{bottom:32.640000px;}
.y116{bottom:32.700000px;}
.yd4{bottom:32.760000px;}
.yd9{bottom:32.880000px;}
.yeb{bottom:32.940000px;}
.yd0{bottom:33.060000px;}
.yc2{bottom:33.120000px;}
.y11d{bottom:33.240000px;}
.ye4{bottom:33.540000px;}
.y100{bottom:33.600000px;}
.y111{bottom:33.660000px;}
.yc9{bottom:34.020000px;}
.y42{bottom:39.420000px;}
.y61{bottom:46.440000px;}
.y15{bottom:46.860000px;}
.yee{bottom:51.000000px;}
.yd8{bottom:51.240000px;}
.yea{bottom:51.300000px;}
.y106{bottom:51.360000px;}
.y115{bottom:51.420000px;}
.yd3{bottom:51.480000px;}
.y11c{bottom:51.600000px;}
.ycf{bottom:51.780000px;}
.yc1{bottom:51.840000px;}
.yff{bottom:51.960000px;}
.y110{bottom:52.020000px;}
.ye3{bottom:52.260000px;}
.yc8{bottom:52.380000px;}
.ybb{bottom:56.400000px;}
.y41{bottom:56.700000px;}
.y4e{bottom:56.880000px;}
.y4{bottom:57.240000px;}
.ye2{bottom:57.660000px;}
.y4f{bottom:63.000000px;}
.y60{bottom:66.960000px;}
.y14{bottom:67.740000px;}
.yd7{bottom:69.960000px;}
.ye9{bottom:70.020000px;}
.y105{bottom:70.080000px;}
.yde{bottom:70.140000px;}
.yc0{bottom:70.200000px;}
.y11b{bottom:70.320000px;}
.yce{bottom:70.500000px;}
.ye1{bottom:70.620000px;}
.yfe{bottom:70.680000px;}
.y10f{bottom:70.740000px;}
.y10b{bottom:70.980000px;}
.yc7{bottom:71.100000px;}
.y4d{bottom:73.080000px;}
.y40{bottom:73.980000px;}
.y3{bottom:76.320000px;}
.yb{bottom:83.580000px;}
.y5f{bottom:87.840000px;}
.y13{bottom:88.620000px;}
.yd6{bottom:88.680000px;}
.ye8{bottom:88.740000px;}
.y104{bottom:88.800000px;}
.ydd{bottom:88.860000px;}
.ybf{bottom:88.920000px;}
.y11a{bottom:89.040000px;}
.ycd{bottom:89.220000px;}
.y10a{bottom:89.340000px;}
.yfd{bottom:89.400000px;}
.y10e{bottom:89.460000px;}
.yc6{bottom:89.820000px;}
.y148{bottom:101.160000px;}
.yb6{bottom:102.600000px;}
.y103{bottom:107.160000px;}
.y114{bottom:107.220000px;}
.y119{bottom:107.400000px;}
.ye7{bottom:107.460000px;}
.ycc{bottom:107.580000px;}
.y109{bottom:108.060000px;}
.yfc{bottom:108.120000px;}
.yc5{bottom:108.180000px;}
.y5e{bottom:108.360000px;}
.yf6{bottom:109.080000px;}
.y12{bottom:109.500000px;}
.y79{bottom:109.800000px;}
.ya{bottom:119.940000px;}
.y99{bottom:123.120000px;}
.ydc{bottom:125.940000px;}
.y118{bottom:126.120000px;}
.yfb{bottom:126.480000px;}
.y5d{bottom:129.240000px;}
.y11{bottom:130.740000px;}
.y147{bottom:132.120000px;}
.y34{bottom:137.340000px;}
.yb5{bottom:139.320000px;}
.yf5{bottom:140.040000px;}
.y78{bottom:140.760000px;}
.y7{bottom:143.340000px;}
.yfa{bottom:145.200000px;}
.yed{bottom:147.000000px;}
.y5c{bottom:149.760000px;}
.y98{bottom:154.080000px;}
.y173{bottom:156.960000px;}
.y33{bottom:157.860000px;}
.y146{bottom:163.440000px;}
.y49{bottom:169.560000px;}
.y5b{bottom:170.640000px;}
.y77{bottom:171.720000px;}
.yb4{bottom:176.040000px;}
.y172{bottom:177.840000px;}
.y32{bottom:178.740000px;}
.y47{bottom:183.000000px;}
.yf4{bottom:189.360000px;}
.y5a{bottom:191.160000px;}
.y97{bottom:194.040000px;}
.y145{bottom:194.400000px;}
.y171{bottom:198.720000px;}
.y31{bottom:199.260000px;}
.y17{bottom:202.500000px;}
.y76{bottom:203.040000px;}
.y44{bottom:204.000000px;}
.ye6{bottom:211.500000px;}
.y59{bottom:212.040000px;}
.yb3{bottom:212.400000px;}
.y170{bottom:219.240000px;}
.y30{bottom:220.140000px;}
.yf3{bottom:220.320000px;}
.y96{bottom:225.360000px;}
.y58{bottom:232.560000px;}
.y16f{bottom:240.120000px;}
.y2f{bottom:240.660000px;}
.y75{bottom:243.000000px;}
.yb2{bottom:249.120000px;}
.yf2{bottom:251.280000px;}
.y57{bottom:253.440000px;}
.y95{bottom:256.320000px;}
.y16e{bottom:260.640000px;}
.y2e{bottom:261.540000px;}
.y56{bottom:273.960000px;}
.y16d{bottom:281.520000px;}
.y2d{bottom:282.060000px;}
.y133{bottom:282.240000px;}
.yb1{bottom:285.840000px;}
.y94{bottom:287.280000px;}
.y35{bottom:289.500000px;}
.yf1{bottom:291.600000px;}
.y55{bottom:294.840000px;}
.y16c{bottom:302.040000px;}
.y2c{bottom:302.940000px;}
.y74{bottom:304.920000px;}
.y132{bottom:313.560000px;}
.y54{bottom:315.360000px;}
.y93{bottom:318.240000px;}
.y144{bottom:318.600000px;}
.yb0{bottom:322.560000px;}
.yf0{bottom:322.920000px;}
.y2b{bottom:323.460000px;}
.ye0{bottom:331.500000px;}
.y73{bottom:335.880000px;}
.y53{bottom:336.240000px;}
.y117{bottom:339.000000px;}
.y3f{bottom:340.500000px;}
.y16b{bottom:343.440000px;}
.y2a{bottom:344.340000px;}
.y131{bottom:344.520000px;}
.y92{bottom:349.560000px;}
.y52{bottom:356.760000px;}
.y3e{bottom:357.780000px;}
.yaf{bottom:358.920000px;}
.y16a{bottom:364.320000px;}
.y29{bottom:364.860000px;}
.y72{bottom:367.200000px;}
.y143{bottom:367.560000px;}
.y3d{bottom:374.700000px;}
.y130{bottom:375.480000px;}
.y91{bottom:380.520000px;}
.y169{bottom:384.840000px;}
.y28{bottom:385.380000px;}
.y142{bottom:388.440000px;}
.y3c{bottom:391.980000px;}
.yae{bottom:395.640000px;}
.y168{bottom:405.720000px;}
.y27{bottom:406.260000px;}
.y71{bottom:407.160000px;}
.y3b{bottom:409.260000px;}
.y90{bottom:411.480000px;}
.ydb{bottom:415.500000px;}
.y141{bottom:419.760000px;}
.y12f{bottom:424.440000px;}
.y167{bottom:426.240000px;}
.y3a{bottom:426.540000px;}
.y26{bottom:426.780000px;}
.yad{bottom:432.360000px;}
.y70{bottom:438.120000px;}
.y8f{bottom:442.440000px;}
.y39{bottom:443.820000px;}
.y166{bottom:447.120000px;}
.y25{bottom:447.660000px;}
.y12e{bottom:455.760000px;}
.y38{bottom:461.100000px;}
.y165{bottom:467.640000px;}
.y24{bottom:468.180000px;}
.yac{bottom:468.720000px;}
.y6f{bottom:469.080000px;}
.y8e{bottom:473.760000px;}
.y37{bottom:478.380000px;}
.y113{bottom:478.500000px;}
.y12d{bottom:486.720000px;}
.y164{bottom:488.160000px;}
.y23{bottom:489.060000px;}
.y36{bottom:495.660000px;}
.y140{bottom:499.680000px;}
.y6e{bottom:500.400000px;}
.yab{bottom:505.440000px;}
.y163{bottom:509.040000px;}
.y22{bottom:509.580000px;}
.y8d{bottom:513.720000px;}
.y12c{bottom:517.680000px;}
.y162{bottom:529.560000px;}
.y21{bottom:530.460000px;}
.y13f{bottom:530.640000px;}
.y6d{bottom:540.360000px;}
.yaa{bottom:542.160000px;}
.y8c{bottom:544.680000px;}
.y12b{bottom:548.640000px;}
.y161{bottom:550.440000px;}
.y20{bottom:550.980000px;}
.yd5{bottom:555.000000px;}
.y13e{bottom:561.600000px;}
.y160{bottom:570.960000px;}
.y6c{bottom:571.320000px;}
.y1f{bottom:571.860000px;}
.y8b{bottom:575.640000px;}
.ya9{bottom:578.520000px;}
.y15f{bottom:591.840000px;}
.y1e{bottom:592.380000px;}
.y13d{bottom:592.920000px;}
.y12a{bottom:597.600000px;}
.y10d{bottom:598.500000px;}
.y6b{bottom:602.280000px;}
.y8a{bottom:606.600000px;}
.y15e{bottom:612.360000px;}
.y1d{bottom:613.260000px;}
.y13c{bottom:623.880000px;}
.ya8{bottom:624.960000px;}
.y129{bottom:628.920000px;}
.y15d{bottom:633.240000px;}
.y6a{bottom:633.600000px;}
.y1c{bottom:633.780000px;}
.y89{bottom:637.920000px;}
.y15c{bottom:653.760000px;}
.y1b{bottom:654.660000px;}
.ya7{bottom:655.920000px;}
.yd2{bottom:657.000000px;}
.y128{bottom:659.880000px;}
.y69{bottom:664.560000px;}
.y88{bottom:668.880000px;}
.y13b{bottom:672.840000px;}
.y15b{bottom:674.640000px;}
.y1a{bottom:675.180000px;}
.y68{bottom:685.440000px;}
.y127{bottom:690.840000px;}
.y15a{bottom:695.160000px;}
.y19{bottom:698.940000px;}
.y108{bottom:700.500000px;}
.y13a{bottom:703.800000px;}
.ya6{bottom:704.880000px;}
.y87{bottom:708.840000px;}
.y159{bottom:716.040000px;}
.y67{bottom:716.400000px;}
.ycb{bottom:721.500000px;}
.y126{bottom:721.800000px;}
.y18{bottom:725.580000px;}
.ya5{bottom:726.120000px;}
.y183{bottom:731.160000px;}
.y64{bottom:732.000000px;}
.y139{bottom:735.120000px;}
.y158{bottom:736.560000px;}
.y86{bottom:739.800000px;}
.y182{bottom:752.040000px;}
.y125{bottom:753.120000px;}
.ya4{bottom:757.080000px;}
.y157{bottom:757.440000px;}
.y85{bottom:771.120000px;}
.y181{bottom:772.560000px;}
.y51{bottom:774.000000px;}
.y124{bottom:784.080000px;}
.y156{bottom:786.600000px;}
.y180{bottom:793.440000px;}
.ya3{bottom:798.120000px;}
.y10{bottom:799.500000px;}
.y155{bottom:807.840000px;}
.y84{bottom:811.080000px;}
.y138{bottom:815.040000px;}
.y102{bottom:822.000000px;}
.y17f{bottom:822.600000px;}
.y154{bottom:828.360000px;}
.ya2{bottom:830.160000px;}
.y123{bottom:833.040000px;}
.yc4{bottom:841.500000px;}
.y83{bottom:842.040000px;}
.y17e{bottom:843.840000px;}
.y137{bottom:846.000000px;}
.y153{bottom:857.880000px;}
.ya1{bottom:861.120000px;}
.y122{bottom:864.000000px;}
.y82{bottom:873.000000px;}
.y136{bottom:877.320000px;}
.y152{bottom:887.400000px;}
.ya0{bottom:892.080000px;}
.y17d{bottom:894.240000px;}
.y121{bottom:895.320000px;}
.y81{bottom:904.320000px;}
.y151{bottom:908.640000px;}
.y17c{bottom:914.760000px;}
.y9f{bottom:923.400000px;}
.y120{bottom:926.280000px;}
.y80{bottom:935.280000px;}
.y17b{bottom:935.640000px;}
.y150{bottom:937.800000px;}
.yf9{bottom:942.000000px;}
.yc{bottom:948.000000px;}
.y9e{bottom:954.360000px;}
.y17a{bottom:956.160000px;}
.y11f{bottom:957.240000px;}
.ybe{bottom:963.000000px;}
.y7f{bottom:966.240000px;}
.y14f{bottom:967.680000px;}
.y179{bottom:977.040000px;}
.y9d{bottom:985.320000px;}
.y135{bottom:988.200000px;}
.y6{bottom:988.500000px;}
.y14e{bottom:988.560000px;}
.y178{bottom:997.560000px;}
.y7e{bottom:1006.200000px;}
.y14d{bottom:1009.440000px;}
.y9c{bottom:1016.280000px;}
.y177{bottom:1018.440000px;}
.y134{bottom:1019.520000px;}
.y7d{bottom:1037.520000px;}
.y14c{bottom:1038.600000px;}
.y176{bottom:1038.960000px;}
.y9b{bottom:1047.600000px;}
.y175{bottom:1059.840000px;}
.yba{bottom:1065.000000px;}
.y7c{bottom:1068.480000px;}
.y9a{bottom:1078.560000px;}
.y174{bottom:1089.000000px;}
.y14b{bottom:1089.360000px;}
.y7b{bottom:1099.440000px;}
.yf7{bottom:1101.000000px;}
.y14a{bottom:1110.240000px;}
.y7a{bottom:1130.400000px;}
.y149{bottom:1130.760000px;}
.yb9{bottom:1134.000000px;}
.y4c{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.yb7{bottom:1161.000000px;}
.y4b{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y4a{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h15{height:21.000000px;}
.h19{height:24.000000px;}
.h2e{height:26.274375px;}
.h20{height:27.000000px;}
.h22{height:28.500000px;}
.h17{height:36.359297px;}
.h21{height:36.471094px;}
.h24{height:37.058906px;}
.h18{height:40.310156px;}
.h27{height:40.871250px;}
.h4{height:41.574375px;}
.h16{height:41.868281px;}
.h12{height:41.993438px;}
.h9{height:42.000000px;}
.h1f{height:42.022969px;}
.h1d{height:43.500000px;}
.hb{height:44.149219px;}
.h2f{height:46.500000px;}
.h28{height:47.874375px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.h25{height:48.601406px;}
.h10{height:49.289063px;}
.ha{height:49.992188px;}
.hf{height:50.027344px;}
.h1b{height:54.000000px;}
.he{height:56.593125px;}
.h1e{height:56.685938px;}
.h7{height:62.472656px;}
.h1c{height:63.949219px;}
.h2b{height:66.000000px;}
.h23{height:70.500000px;}
.h6{height:72.360000px;}
.h2d{height:85.500000px;}
.h14{height:87.000000px;}
.h13{height:88.500000px;}
.h8{height:96.993281px;}
.h26{height:103.500000px;}
.h2a{height:121.500000px;}
.h29{height:123.000000px;}
.h2c{height:141.000000px;}
.hc{height:148.500000px;}
.h5{height:160.500000px;}
.h1a{height:373.500000px;}
.h11{height:510.000000px;}
.hd{height:745.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w9{width:55.500000px;}
.wa{width:85.500000px;}
.wc{width:87.000000px;}
.w6{width:120.000000px;}
.wb{width:139.500000px;}
.w3{width:247.500000px;}
.w2{width:249.000000px;}
.wd{width:511.500000px;}
.w4{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.we{width:873.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:7.859964px;}
.xb{left:9.480108px;}
.x20{left:17.968500px;}
.x11{left:21.688464px;}
.x21{left:32.181504px;}
.x13{left:33.343140px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.x1{left:54.000000px;}
.x9{left:55.037460px;}
.x1a{left:63.000000px;}
.x1c{left:70.252440px;}
.x10{left:77.433096px;}
.xf{left:86.072772px;}
.xe{left:89.254416px;}
.x12{left:96.835080px;}
.x18{left:107.174916px;}
.x4{left:124.379904px;}
.x1b{left:147.000000px;}
.xc{left:166.717200px;}
.x17{left:174.000000px;}
.x15{left:175.315080px;}
.x22{left:181.169760px;}
.x7{left:202.954080px;}
.xa{left:229.141560px;}
.x5{left:233.819832px;}
.x1f{left:255.990000px;}
.xd{left:275.459880px;}
.x1d{left:285.000000px;}
.x8{left:289.500000px;}
.x1e{left:370.500000px;}
.x19{left:446.474880px;}
.x2{left:685.130400px;}
.x16{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls2d{letter-spacing:-0.612864pt;}
.ls1e{letter-spacing:-0.505856pt;}
.ls2b{letter-spacing:-0.452352pt;}
.ls2c{letter-spacing:-0.428032pt;}
.ls1a{letter-spacing:-0.418304pt;}
.ls9{letter-spacing:-0.403712pt;}
.ls2e{letter-spacing:-0.398848pt;}
.ls1d{letter-spacing:-0.384256pt;}
.ls1f{letter-spacing:-0.374528pt;}
.ls13{letter-spacing:-0.370944pt;}
.ls16{letter-spacing:-0.338688pt;}
.ls1c{letter-spacing:-0.321024pt;}
.ls11{letter-spacing:-0.301056pt;}
.ls29{letter-spacing:-0.284928pt;}
.ls2a{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.231168pt;}
.ls10{letter-spacing:-0.215040pt;}
.lsc{letter-spacing:-0.214400pt;}
.ls12{letter-spacing:-0.198912pt;}
.ls21{letter-spacing:-0.189696pt;}
.lsa{letter-spacing:-0.165376pt;}
.ls14{letter-spacing:-0.155904pt;}
.ls20{letter-spacing:-0.150784pt;}
.ls6{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.139776pt;}
.ls30{letter-spacing:-0.129024pt;}
.ls8{letter-spacing:-0.111872pt;}
.ls2f{letter-spacing:-0.107520pt;}
.lsb{letter-spacing:-0.102912pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.006400pt;}
.ls18{letter-spacing:0.012800pt;}
.ls31{letter-spacing:0.051840pt;}
.ls32{letter-spacing:0.053248pt;}
.ls27{letter-spacing:0.062720pt;}
.ls23{letter-spacing:0.105600pt;}
.ls0{letter-spacing:0.190720pt;}
.ls33{letter-spacing:0.211200pt;}
.ls4{letter-spacing:0.212480pt;}
.ls19{letter-spacing:0.213376pt;}
.ls2{letter-spacing:0.213760pt;}
.ls34{letter-spacing:0.215424pt;}
.ls25{letter-spacing:0.228096pt;}
.ls17{letter-spacing:0.253440pt;}
.lsd{letter-spacing:0.254976pt;}
.ls24{letter-spacing:0.257664pt;}
.ls22{letter-spacing:0.261888pt;}
.ls1{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.318720pt;}
.ls26{letter-spacing:10.726400pt;}
.ls3{letter-spacing:65.280000pt;}
.ls5{letter-spacing:69.120000pt;}
.ws4{word-spacing:-24.275840pt;}
.ws3{word-spacing:-23.841280pt;}
.ws0{word-spacing:-16.256768pt;}
.ws10{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.987200pt;}
.wsf{word-spacing:-14.451200pt;}
.ws6{word-spacing:-13.440000pt;}
.ws19{word-spacing:-13.310976pt;}
.ws18{word-spacing:-13.300224pt;}
.ws1b{word-spacing:-13.284096pt;}
.ws7{word-spacing:-13.241088pt;}
.ws15{word-spacing:-13.224960pt;}
.ws12{word-spacing:-13.208832pt;}
.ws1d{word-spacing:-13.171200pt;}
.ws16{word-spacing:-13.155072pt;}
.ws1a{word-spacing:-13.138944pt;}
.ws8{word-spacing:-13.101312pt;}
.wsa{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.wsb{word-spacing:-12.325376pt;}
.wsd{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wsc{word-spacing:-12.140544pt;}
.ws13{word-spacing:-11.707648pt;}
.ws14{word-spacing:-11.547136pt;}
.wse{word-spacing:-11.088000pt;}
.ws1e{word-spacing:-10.775424pt;}
.ws1c{word-spacing:-10.771200pt;}
.ws17{word-spacing:-8.691840pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-8.452096pt;}
._22{margin-left:-7.251200pt;}
._25{margin-left:-5.546240pt;}
._c{margin-left:-4.593792pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.954624pt;}
._7{width:2.006912pt;}
._6{width:3.535488pt;}
._d{width:4.449024pt;}
._10{width:5.515776pt;}
._8{width:6.470400pt;}
._a{width:8.256000pt;}
._11{width:9.341440pt;}
._f{width:10.502400pt;}
._13{width:11.513600pt;}
._14{width:12.418816pt;}
._16{width:13.708800pt;}
._23{width:14.771200pt;}
._18{width:16.896000pt;}
._1a{width:17.958400pt;}
._9{width:18.899200pt;}
._b{width:20.601600pt;}
._1b{width:21.523200pt;}
._1d{width:23.168000pt;}
._1c{width:24.307200pt;}
._17{width:25.241600pt;}
._19{width:31.129600pt;}
._e{width:34.464000pt;}
._15{width:37.175168pt;}
._24{width:44.012800pt;}
._21{width:45.280000pt;}
._12{width:60.298368pt;}
._1e{width:61.881600pt;}
._26{width:67.052800pt;}
._5{width:68.999680pt;}
._27{width:102.296704pt;}
._20{width:171.733504pt;}
._1f{width:172.798720pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.986667pt;}
.yf{bottom:4.053333pt;}
.y46{bottom:4.320000pt;}
.y63{bottom:4.480000pt;}
.y50{bottom:4.800000pt;}
.y66{bottom:5.013333pt;}
.y9{bottom:6.133333pt;}
.y48{bottom:6.293333pt;}
.yb8{bottom:12.160000pt;}
.ybd{bottom:12.373333pt;}
.yda{bottom:12.586667pt;}
.yec{bottom:12.640000pt;}
.y107{bottom:12.693333pt;}
.ydf{bottom:12.746667pt;}
.yc3{bottom:12.800000pt;}
.y11e{bottom:12.906667pt;}
.yd1{bottom:13.066667pt;}
.ye5{bottom:13.173333pt;}
.y101{bottom:13.226667pt;}
.y112{bottom:13.280000pt;}
.y10c{bottom:13.493333pt;}
.yca{bottom:13.600000pt;}
.y43{bottom:19.680000pt;}
.yd{bottom:21.013333pt;}
.ye{bottom:21.653333pt;}
.y62{bottom:22.720000pt;}
.y16{bottom:23.093333pt;}
.y65{bottom:23.253333pt;}
.y8{bottom:25.973333pt;}
.ybc{bottom:27.093333pt;}
.yf8{bottom:28.693333pt;}
.yef{bottom:29.013333pt;}
.y116{bottom:29.066667pt;}
.yd4{bottom:29.120000pt;}
.yd9{bottom:29.226667pt;}
.yeb{bottom:29.280000pt;}
.yd0{bottom:29.386667pt;}
.yc2{bottom:29.440000pt;}
.y11d{bottom:29.546667pt;}
.ye4{bottom:29.813333pt;}
.y100{bottom:29.866667pt;}
.y111{bottom:29.920000pt;}
.yc9{bottom:30.240000pt;}
.y42{bottom:35.040000pt;}
.y61{bottom:41.280000pt;}
.y15{bottom:41.653333pt;}
.yee{bottom:45.333333pt;}
.yd8{bottom:45.546667pt;}
.yea{bottom:45.600000pt;}
.y106{bottom:45.653333pt;}
.y115{bottom:45.706667pt;}
.yd3{bottom:45.760000pt;}
.y11c{bottom:45.866667pt;}
.ycf{bottom:46.026667pt;}
.yc1{bottom:46.080000pt;}
.yff{bottom:46.186667pt;}
.y110{bottom:46.240000pt;}
.ye3{bottom:46.453333pt;}
.yc8{bottom:46.560000pt;}
.ybb{bottom:50.133333pt;}
.y41{bottom:50.400000pt;}
.y4e{bottom:50.560000pt;}
.y4{bottom:50.880000pt;}
.ye2{bottom:51.253333pt;}
.y4f{bottom:56.000000pt;}
.y60{bottom:59.520000pt;}
.y14{bottom:60.213333pt;}
.yd7{bottom:62.186667pt;}
.ye9{bottom:62.240000pt;}
.y105{bottom:62.293333pt;}
.yde{bottom:62.346667pt;}
.yc0{bottom:62.400000pt;}
.y11b{bottom:62.506667pt;}
.yce{bottom:62.666667pt;}
.ye1{bottom:62.773333pt;}
.yfe{bottom:62.826667pt;}
.y10f{bottom:62.880000pt;}
.y10b{bottom:63.093333pt;}
.yc7{bottom:63.200000pt;}
.y4d{bottom:64.960000pt;}
.y40{bottom:65.760000pt;}
.y3{bottom:67.840000pt;}
.yb{bottom:74.293333pt;}
.y5f{bottom:78.080000pt;}
.y13{bottom:78.773333pt;}
.yd6{bottom:78.826667pt;}
.ye8{bottom:78.880000pt;}
.y104{bottom:78.933333pt;}
.ydd{bottom:78.986667pt;}
.ybf{bottom:79.040000pt;}
.y11a{bottom:79.146667pt;}
.ycd{bottom:79.306667pt;}
.y10a{bottom:79.413333pt;}
.yfd{bottom:79.466667pt;}
.y10e{bottom:79.520000pt;}
.yc6{bottom:79.840000pt;}
.y148{bottom:89.920000pt;}
.yb6{bottom:91.200000pt;}
.y103{bottom:95.253333pt;}
.y114{bottom:95.306667pt;}
.y119{bottom:95.466667pt;}
.ye7{bottom:95.520000pt;}
.ycc{bottom:95.626667pt;}
.y109{bottom:96.053333pt;}
.yfc{bottom:96.106667pt;}
.yc5{bottom:96.160000pt;}
.y5e{bottom:96.320000pt;}
.yf6{bottom:96.960000pt;}
.y12{bottom:97.333333pt;}
.y79{bottom:97.600000pt;}
.ya{bottom:106.613333pt;}
.y99{bottom:109.440000pt;}
.ydc{bottom:111.946667pt;}
.y118{bottom:112.106667pt;}
.yfb{bottom:112.426667pt;}
.y5d{bottom:114.880000pt;}
.y11{bottom:116.213333pt;}
.y147{bottom:117.440000pt;}
.y34{bottom:122.080000pt;}
.yb5{bottom:123.840000pt;}
.yf5{bottom:124.480000pt;}
.y78{bottom:125.120000pt;}
.y7{bottom:127.413333pt;}
.yfa{bottom:129.066667pt;}
.yed{bottom:130.666667pt;}
.y5c{bottom:133.120000pt;}
.y98{bottom:136.960000pt;}
.y173{bottom:139.520000pt;}
.y33{bottom:140.320000pt;}
.y146{bottom:145.280000pt;}
.y49{bottom:150.720000pt;}
.y5b{bottom:151.680000pt;}
.y77{bottom:152.640000pt;}
.yb4{bottom:156.480000pt;}
.y172{bottom:158.080000pt;}
.y32{bottom:158.880000pt;}
.y47{bottom:162.666667pt;}
.yf4{bottom:168.320000pt;}
.y5a{bottom:169.920000pt;}
.y97{bottom:172.480000pt;}
.y145{bottom:172.800000pt;}
.y171{bottom:176.640000pt;}
.y31{bottom:177.120000pt;}
.y17{bottom:180.000000pt;}
.y76{bottom:180.480000pt;}
.y44{bottom:181.333333pt;}
.ye6{bottom:188.000000pt;}
.y59{bottom:188.480000pt;}
.yb3{bottom:188.800000pt;}
.y170{bottom:194.880000pt;}
.y30{bottom:195.680000pt;}
.yf3{bottom:195.840000pt;}
.y96{bottom:200.320000pt;}
.y58{bottom:206.720000pt;}
.y16f{bottom:213.440000pt;}
.y2f{bottom:213.920000pt;}
.y75{bottom:216.000000pt;}
.yb2{bottom:221.440000pt;}
.yf2{bottom:223.360000pt;}
.y57{bottom:225.280000pt;}
.y95{bottom:227.840000pt;}
.y16e{bottom:231.680000pt;}
.y2e{bottom:232.480000pt;}
.y56{bottom:243.520000pt;}
.y16d{bottom:250.240000pt;}
.y2d{bottom:250.720000pt;}
.y133{bottom:250.880000pt;}
.yb1{bottom:254.080000pt;}
.y94{bottom:255.360000pt;}
.y35{bottom:257.333333pt;}
.yf1{bottom:259.200000pt;}
.y55{bottom:262.080000pt;}
.y16c{bottom:268.480000pt;}
.y2c{bottom:269.280000pt;}
.y74{bottom:271.040000pt;}
.y132{bottom:278.720000pt;}
.y54{bottom:280.320000pt;}
.y93{bottom:282.880000pt;}
.y144{bottom:283.200000pt;}
.yb0{bottom:286.720000pt;}
.yf0{bottom:287.040000pt;}
.y2b{bottom:287.520000pt;}
.ye0{bottom:294.666667pt;}
.y73{bottom:298.560000pt;}
.y53{bottom:298.880000pt;}
.y117{bottom:301.333333pt;}
.y3f{bottom:302.666667pt;}
.y16b{bottom:305.280000pt;}
.y2a{bottom:306.080000pt;}
.y131{bottom:306.240000pt;}
.y92{bottom:310.720000pt;}
.y52{bottom:317.120000pt;}
.y3e{bottom:318.026667pt;}
.yaf{bottom:319.040000pt;}
.y16a{bottom:323.840000pt;}
.y29{bottom:324.320000pt;}
.y72{bottom:326.400000pt;}
.y143{bottom:326.720000pt;}
.y3d{bottom:333.066667pt;}
.y130{bottom:333.760000pt;}
.y91{bottom:338.240000pt;}
.y169{bottom:342.080000pt;}
.y28{bottom:342.560000pt;}
.y142{bottom:345.280000pt;}
.y3c{bottom:348.426667pt;}
.yae{bottom:351.680000pt;}
.y168{bottom:360.640000pt;}
.y27{bottom:361.120000pt;}
.y71{bottom:361.920000pt;}
.y3b{bottom:363.786667pt;}
.y90{bottom:365.760000pt;}
.ydb{bottom:369.333333pt;}
.y141{bottom:373.120000pt;}
.y12f{bottom:377.280000pt;}
.y167{bottom:378.880000pt;}
.y3a{bottom:379.146667pt;}
.y26{bottom:379.360000pt;}
.yad{bottom:384.320000pt;}
.y70{bottom:389.440000pt;}
.y8f{bottom:393.280000pt;}
.y39{bottom:394.506667pt;}
.y166{bottom:397.440000pt;}
.y25{bottom:397.920000pt;}
.y12e{bottom:405.120000pt;}
.y38{bottom:409.866667pt;}
.y165{bottom:415.680000pt;}
.y24{bottom:416.160000pt;}
.yac{bottom:416.640000pt;}
.y6f{bottom:416.960000pt;}
.y8e{bottom:421.120000pt;}
.y37{bottom:425.226667pt;}
.y113{bottom:425.333333pt;}
.y12d{bottom:432.640000pt;}
.y164{bottom:433.920000pt;}
.y23{bottom:434.720000pt;}
.y36{bottom:440.586667pt;}
.y140{bottom:444.160000pt;}
.y6e{bottom:444.800000pt;}
.yab{bottom:449.280000pt;}
.y163{bottom:452.480000pt;}
.y22{bottom:452.960000pt;}
.y8d{bottom:456.640000pt;}
.y12c{bottom:460.160000pt;}
.y162{bottom:470.720000pt;}
.y21{bottom:471.520000pt;}
.y13f{bottom:471.680000pt;}
.y6d{bottom:480.320000pt;}
.yaa{bottom:481.920000pt;}
.y8c{bottom:484.160000pt;}
.y12b{bottom:487.680000pt;}
.y161{bottom:489.280000pt;}
.y20{bottom:489.760000pt;}
.yd5{bottom:493.333333pt;}
.y13e{bottom:499.200000pt;}
.y160{bottom:507.520000pt;}
.y6c{bottom:507.840000pt;}
.y1f{bottom:508.320000pt;}
.y8b{bottom:511.680000pt;}
.ya9{bottom:514.240000pt;}
.y15f{bottom:526.080000pt;}
.y1e{bottom:526.560000pt;}
.y13d{bottom:527.040000pt;}
.y12a{bottom:531.200000pt;}
.y10d{bottom:532.000000pt;}
.y6b{bottom:535.360000pt;}
.y8a{bottom:539.200000pt;}
.y15e{bottom:544.320000pt;}
.y1d{bottom:545.120000pt;}
.y13c{bottom:554.560000pt;}
.ya8{bottom:555.520000pt;}
.y129{bottom:559.040000pt;}
.y15d{bottom:562.880000pt;}
.y6a{bottom:563.200000pt;}
.y1c{bottom:563.360000pt;}
.y89{bottom:567.040000pt;}
.y15c{bottom:581.120000pt;}
.y1b{bottom:581.920000pt;}
.ya7{bottom:583.040000pt;}
.yd2{bottom:584.000000pt;}
.y128{bottom:586.560000pt;}
.y69{bottom:590.720000pt;}
.y88{bottom:594.560000pt;}
.y13b{bottom:598.080000pt;}
.y15b{bottom:599.680000pt;}
.y1a{bottom:600.160000pt;}
.y68{bottom:609.280000pt;}
.y127{bottom:614.080000pt;}
.y15a{bottom:617.920000pt;}
.y19{bottom:621.280000pt;}
.y108{bottom:622.666667pt;}
.y13a{bottom:625.600000pt;}
.ya6{bottom:626.560000pt;}
.y87{bottom:630.080000pt;}
.y159{bottom:636.480000pt;}
.y67{bottom:636.800000pt;}
.ycb{bottom:641.333333pt;}
.y126{bottom:641.600000pt;}
.y18{bottom:644.960000pt;}
.ya5{bottom:645.440000pt;}
.y183{bottom:649.920000pt;}
.y64{bottom:650.666667pt;}
.y139{bottom:653.440000pt;}
.y158{bottom:654.720000pt;}
.y86{bottom:657.600000pt;}
.y182{bottom:668.480000pt;}
.y125{bottom:669.440000pt;}
.ya4{bottom:672.960000pt;}
.y157{bottom:673.280000pt;}
.y85{bottom:685.440000pt;}
.y181{bottom:686.720000pt;}
.y51{bottom:688.000000pt;}
.y124{bottom:696.960000pt;}
.y156{bottom:699.200000pt;}
.y180{bottom:705.280000pt;}
.ya3{bottom:709.440000pt;}
.y10{bottom:710.666667pt;}
.y155{bottom:718.080000pt;}
.y84{bottom:720.960000pt;}
.y138{bottom:724.480000pt;}
.y102{bottom:730.666667pt;}
.y17f{bottom:731.200000pt;}
.y154{bottom:736.320000pt;}
.ya2{bottom:737.920000pt;}
.y123{bottom:740.480000pt;}
.yc4{bottom:748.000000pt;}
.y83{bottom:748.480000pt;}
.y17e{bottom:750.080000pt;}
.y137{bottom:752.000000pt;}
.y153{bottom:762.560000pt;}
.ya1{bottom:765.440000pt;}
.y122{bottom:768.000000pt;}
.y82{bottom:776.000000pt;}
.y136{bottom:779.840000pt;}
.y152{bottom:788.800000pt;}
.ya0{bottom:792.960000pt;}
.y17d{bottom:794.880000pt;}
.y121{bottom:795.840000pt;}
.y81{bottom:803.840000pt;}
.y151{bottom:807.680000pt;}
.y17c{bottom:813.120000pt;}
.y9f{bottom:820.800000pt;}
.y120{bottom:823.360000pt;}
.y80{bottom:831.360000pt;}
.y17b{bottom:831.680000pt;}
.y150{bottom:833.600000pt;}
.yf9{bottom:837.333333pt;}
.yc{bottom:842.666667pt;}
.y9e{bottom:848.320000pt;}
.y17a{bottom:849.920000pt;}
.y11f{bottom:850.880000pt;}
.ybe{bottom:856.000000pt;}
.y7f{bottom:858.880000pt;}
.y14f{bottom:860.160000pt;}
.y179{bottom:868.480000pt;}
.y9d{bottom:875.840000pt;}
.y135{bottom:878.400000pt;}
.y6{bottom:878.666667pt;}
.y14e{bottom:878.720000pt;}
.y178{bottom:886.720000pt;}
.y7e{bottom:894.400000pt;}
.y14d{bottom:897.280000pt;}
.y9c{bottom:903.360000pt;}
.y177{bottom:905.280000pt;}
.y134{bottom:906.240000pt;}
.y7d{bottom:922.240000pt;}
.y14c{bottom:923.200000pt;}
.y176{bottom:923.520000pt;}
.y9b{bottom:931.200000pt;}
.y175{bottom:942.080000pt;}
.yba{bottom:946.666667pt;}
.y7c{bottom:949.760000pt;}
.y9a{bottom:958.720000pt;}
.y174{bottom:968.000000pt;}
.y14b{bottom:968.320000pt;}
.y7b{bottom:977.280000pt;}
.yf7{bottom:978.666667pt;}
.y14a{bottom:986.880000pt;}
.y7a{bottom:1004.800000pt;}
.y149{bottom:1005.120000pt;}
.yb9{bottom:1008.000000pt;}
.y4c{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.yb7{bottom:1032.000000pt;}
.y4b{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y4a{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h15{height:18.666667pt;}
.h19{height:21.333333pt;}
.h2e{height:23.355000pt;}
.h20{height:24.000000pt;}
.h22{height:25.333333pt;}
.h17{height:32.319375pt;}
.h21{height:32.418750pt;}
.h24{height:32.941250pt;}
.h18{height:35.831250pt;}
.h27{height:36.330000pt;}
.h4{height:36.955000pt;}
.h16{height:37.216250pt;}
.h12{height:37.327500pt;}
.h9{height:37.333333pt;}
.h1f{height:37.353750pt;}
.h1d{height:38.666667pt;}
.hb{height:39.243750pt;}
.h2f{height:41.333333pt;}
.h28{height:42.555000pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.h25{height:43.201250pt;}
.h10{height:43.812500pt;}
.ha{height:44.437500pt;}
.hf{height:44.468750pt;}
.h1b{height:48.000000pt;}
.he{height:50.305000pt;}
.h1e{height:50.387500pt;}
.h7{height:55.531250pt;}
.h1c{height:56.843750pt;}
.h2b{height:58.666667pt;}
.h23{height:62.666667pt;}
.h6{height:64.320000pt;}
.h2d{height:76.000000pt;}
.h14{height:77.333333pt;}
.h13{height:78.666667pt;}
.h8{height:86.216250pt;}
.h26{height:92.000000pt;}
.h2a{height:108.000000pt;}
.h29{height:109.333333pt;}
.h2c{height:125.333333pt;}
.hc{height:132.000000pt;}
.h5{height:142.666667pt;}
.h1a{height:332.000000pt;}
.h11{height:453.333333pt;}
.hd{height:662.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w9{width:49.333333pt;}
.wa{width:76.000000pt;}
.wc{width:77.333333pt;}
.w6{width:106.666667pt;}
.wb{width:124.000000pt;}
.w3{width:220.000000pt;}
.w2{width:221.333333pt;}
.wd{width:454.666667pt;}
.w4{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.we{width:776.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:6.986635pt;}
.xb{left:8.426763pt;}
.x20{left:15.972000pt;}
.x11{left:19.278635pt;}
.x21{left:28.605781pt;}
.x13{left:29.638347pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.x1{left:48.000000pt;}
.x9{left:48.922187pt;}
.x1a{left:56.000000pt;}
.x1c{left:62.446613pt;}
.x10{left:68.829419pt;}
.xf{left:76.509131pt;}
.xe{left:79.337259pt;}
.x12{left:86.075627pt;}
.x18{left:95.266592pt;}
.x4{left:110.559915pt;}
.x1b{left:130.666667pt;}
.xc{left:148.193067pt;}
.x17{left:154.666667pt;}
.x15{left:155.835627pt;}
.x22{left:161.039787pt;}
.x7{left:180.403627pt;}
.xa{left:203.681387pt;}
.x5{left:207.839851pt;}
.x1f{left:227.546667pt;}
.xd{left:244.853227pt;}
.x1d{left:253.333333pt;}
.x8{left:257.333333pt;}
.x1e{left:329.333333pt;}
.x19{left:396.866560pt;}
.x2{left:609.004800pt;}
.x16{left:721.333333pt;}
}




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