
    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_d91f35e041f41775204e6e5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_b9230e2c922bf619b1fb4d1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_ca33addae34e4ffca00287cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_c9964474b5f4644774c8575e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962000;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_70ec59a1a1e4f430c16e0cc2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.680000;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_b83ba988b88ad3c3e82b95d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995000;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_e7f11653f8256098d4a12e42.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747818;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_7c9f3b289f062e426c3c5022.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.054000;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_fc49d0021a8e9f4f01099623.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918000;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_60dd43dd8cbcd6713121f2f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.918000;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_b032fb92de0def2daaa55cda.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;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_6a4bf01f64bd2130faf621a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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_fc49d0021a8e9f4f01099623.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.918000;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_808c2c2f554f4a39f1bee523.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v4{vertical-align:-21.978000px;}
.v6{vertical-align:-19.980000px;}
.v2{vertical-align:-16.377600px;}
.v3{vertical-align:-2.397600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.978000px;}
.v5{vertical-align:19.980000px;}
.ls15{letter-spacing:-6.000000px;}
.ls14{letter-spacing:-5.280000px;}
.ls7{letter-spacing:-3.600000px;}
.ls17{letter-spacing:-3.000000px;}
.lsd{letter-spacing:-2.310000px;}
.lsf{letter-spacing:-1.980000px;}
.ls10{letter-spacing:-1.650000px;}
.ls13{letter-spacing:-0.990000px;}
.ls18{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.810000px;}
.ls4{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.391776px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.330000px;}
.lse{letter-spacing:0.575400px;}
.lsa{letter-spacing:0.681600px;}
.ls3{letter-spacing:0.750360px;}
.lsb{letter-spacing:2.273760px;}
.lsc{letter-spacing:2.648160px;}
.ls6{letter-spacing:2.903400px;}
.ls11{letter-spacing:4.043400px;}
.ls0{letter-spacing:5.393400px;}
.ls2{letter-spacing:6.790800px;}
.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;}
}
.wsb1{word-spacing:-54.000000px;}
.wsc9{word-spacing:-13.398000px;}
.ws19{word-spacing:-13.068000px;}
.wsc8{word-spacing:-12.342000px;}
.ws18{word-spacing:-12.012000px;}
.ws3{word-spacing:-11.880000px;}
.wsb0{word-spacing:-11.418000px;}
.ws8c{word-spacing:-11.352000px;}
.wsc7{word-spacing:-11.022000px;}
.ws2{word-spacing:-10.920000px;}
.ws3e{word-spacing:-10.692000px;}
.ws77{word-spacing:-10.152000px;}
.wsfb{word-spacing:-10.020000px;}
.ws1b{word-spacing:-9.828000px;}
.wsa0{word-spacing:-9.018000px;}
.ws3d{word-spacing:-7.757165px;}
.ws9f{word-spacing:-7.618644px;}
.wse2{word-spacing:-6.926040px;}
.wse3{word-spacing:-6.366360px;}
.wsa4{word-spacing:-5.016000px;}
.wsee{word-spacing:-4.500000px;}
.wscd{word-spacing:-4.488000px;}
.ws95{word-spacing:-4.092000px;}
.wsef{word-spacing:-4.080000px;}
.wsec{word-spacing:-3.840000px;}
.ws27{word-spacing:-3.762000px;}
.ws2d{word-spacing:-3.720000px;}
.wsf7{word-spacing:-3.000000px;}
.ws12{word-spacing:-2.820000px;}
.wsf8{word-spacing:-2.760000px;}
.ws7f{word-spacing:-2.706000px;}
.wsc0{word-spacing:-2.538000px;}
.ws21{word-spacing:-2.508000px;}
.wsda{word-spacing:-2.400000px;}
.ws36{word-spacing:-2.340000px;}
.wsff{word-spacing:-2.280000px;}
.wsdb{word-spacing:-2.220000px;}
.wsc6{word-spacing:-2.106000px;}
.ws100{word-spacing:-2.100000px;}
.ws22{word-spacing:-2.046000px;}
.ws52{word-spacing:-1.980000px;}
.wsc5{word-spacing:-1.944000px;}
.wsd6{word-spacing:-1.860000px;}
.ws57{word-spacing:-1.836000px;}
.ws101{word-spacing:-1.680000px;}
.wsb8{word-spacing:-1.518000px;}
.ws102{word-spacing:-1.500000px;}
.ws9d{word-spacing:-1.404000px;}
.ws9a{word-spacing:-1.386000px;}
.ws103{word-spacing:-1.380000px;}
.ws23{word-spacing:-1.320000px;}
.ws75{word-spacing:-1.296000px;}
.wsfa{word-spacing:-1.200000px;}
.ws74{word-spacing:-1.188000px;}
.ws4e{word-spacing:-1.080000px;}
.ws5{word-spacing:-1.020000px;}
.ws28{word-spacing:-0.726000px;}
.ws33{word-spacing:-0.540000px;}
.ws30{word-spacing:-0.480000px;}
.wsd0{word-spacing:-0.462000px;}
.ws2a{word-spacing:-0.330000px;}
.ws1e{word-spacing:-0.264000px;}
.ws2b{word-spacing:-0.198000px;}
.ws25{word-spacing:-0.132000px;}
.wsf0{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.066660px;}
.ws1{word-spacing:-0.066000px;}
.ws4c{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.038478px;}
.ws4{word-spacing:0.000000px;}
.ws31{word-spacing:0.060000px;}
.wsb3{word-spacing:0.066000px;}
.wsab{word-spacing:0.162000px;}
.ws6c{word-spacing:0.264000px;}
.wsae{word-spacing:0.270000px;}
.ws1f{word-spacing:0.330000px;}
.ws5b{word-spacing:0.378000px;}
.ws73{word-spacing:0.391776px;}
.ws43{word-spacing:0.420000px;}
.ws5a{word-spacing:0.432000px;}
.wsed{word-spacing:0.480000px;}
.wsc1{word-spacing:0.486000px;}
.wsf3{word-spacing:0.540000px;}
.wsbd{word-spacing:0.594000px;}
.wsf2{word-spacing:0.600000px;}
.wsaa{word-spacing:0.648000px;}
.ws3f{word-spacing:0.660000px;}
.ws72{word-spacing:0.756000px;}
.wsde{word-spacing:0.780000px;}
.ws58{word-spacing:0.810000px;}
.ws45{word-spacing:0.840000px;}
.ws90{word-spacing:0.858000px;}
.wsca{word-spacing:0.924000px;}
.ws99{word-spacing:0.990000px;}
.ws2f{word-spacing:1.020000px;}
.ws55{word-spacing:1.080000px;}
.ws9e{word-spacing:1.134000px;}
.ws56{word-spacing:1.188000px;}
.ws53{word-spacing:1.200000px;}
.wsa8{word-spacing:1.254000px;}
.ws4a{word-spacing:1.260000px;}
.ws29{word-spacing:1.320000px;}
.wsf4{word-spacing:1.380000px;}
.wsbe{word-spacing:1.404000px;}
.ws63{word-spacing:1.500000px;}
.ws51{word-spacing:1.560000px;}
.ws92{word-spacing:1.650000px;}
.wsbb{word-spacing:1.716000px;}
.ws48{word-spacing:1.740000px;}
.ws7b{word-spacing:1.782000px;}
.ws16{word-spacing:1.860000px;}
.wsfc{word-spacing:1.980000px;}
.wsf9{word-spacing:2.040000px;}
.ws3b{word-spacing:2.214000px;}
.wsa3{word-spacing:2.244000px;}
.ws32{word-spacing:2.280000px;}
.ws8f{word-spacing:2.310000px;}
.ws34{word-spacing:2.340000px;}
.ws61{word-spacing:2.430000px;}
.ws68{word-spacing:2.508000px;}
.ws5d{word-spacing:2.538000px;}
.wscb{word-spacing:2.574000px;}
.ws60{word-spacing:2.592000px;}
.ws3a{word-spacing:2.646000px;}
.ws9{word-spacing:2.700000px;}
.ws5c{word-spacing:2.754000px;}
.ws11{word-spacing:2.760000px;}
.ws80{word-spacing:2.772000px;}
.ws76{word-spacing:2.808000px;}
.ws46{word-spacing:2.820000px;}
.ws1d{word-spacing:2.838000px;}
.ws39{word-spacing:2.862000px;}
.ws64{word-spacing:2.880000px;}
.wsa7{word-spacing:2.904000px;}
.ws2e{word-spacing:2.940000px;}
.ws59{word-spacing:2.970000px;}
.wse6{word-spacing:3.000000px;}
.ws20{word-spacing:3.036000px;}
.wsb5{word-spacing:3.102000px;}
.wsd7{word-spacing:3.120000px;}
.ws6f{word-spacing:3.168000px;}
.ws37{word-spacing:3.186000px;}
.ws94{word-spacing:3.234000px;}
.ws88{word-spacing:3.240000px;}
.ws81{word-spacing:3.300000px;}
.ws5f{word-spacing:3.348000px;}
.ws26{word-spacing:3.366000px;}
.ws24{word-spacing:3.432000px;}
.ws13{word-spacing:3.480000px;}
.ws87{word-spacing:3.510000px;}
.wsbf{word-spacing:3.564000px;}
.ws40{word-spacing:3.600000px;}
.ws5e{word-spacing:3.618000px;}
.ws50{word-spacing:3.720000px;}
.ws98{word-spacing:3.894000px;}
.ws15{word-spacing:3.900000px;}
.ws65{word-spacing:4.020000px;}
.wsc2{word-spacing:4.050000px;}
.ws9c{word-spacing:4.104000px;}
.ws4b{word-spacing:4.140000px;}
.ws6a{word-spacing:4.158000px;}
.ws35{word-spacing:4.200000px;}
.ws96{word-spacing:4.224000px;}
.ws38{word-spacing:4.320000px;}
.wscf{word-spacing:4.422000px;}
.ws54{word-spacing:4.440000px;}
.ws8a{word-spacing:4.482000px;}
.ws69{word-spacing:4.554000px;}
.ws8{word-spacing:4.920000px;}
.wsd{word-spacing:5.100000px;}
.wsf5{word-spacing:5.280000px;}
.ws2c{word-spacing:5.400000px;}
.ws71{word-spacing:5.412000px;}
.ws89{word-spacing:5.508000px;}
.wsb6{word-spacing:5.742000px;}
.wsd8{word-spacing:5.760000px;}
.wsb2{word-spacing:5.808000px;}
.ws6{word-spacing:5.820000px;}
.wsa{word-spacing:5.880000px;}
.ws7c{word-spacing:5.940000px;}
.wseb{word-spacing:6.000000px;}
.wsb4{word-spacing:6.006000px;}
.ws42{word-spacing:6.060000px;}
.ws91{word-spacing:6.072000px;}
.wsd9{word-spacing:6.240000px;}
.wsfe{word-spacing:6.300000px;}
.ws7{word-spacing:6.360000px;}
.ws84{word-spacing:6.534000px;}
.ws8e{word-spacing:6.600000px;}
.ws49{word-spacing:6.780000px;}
.ws7d{word-spacing:6.798000px;}
.ws86{word-spacing:6.996000px;}
.ws4d{word-spacing:7.020000px;}
.ws6e{word-spacing:7.062000px;}
.ws41{word-spacing:7.080000px;}
.wsa5{word-spacing:7.128000px;}
.wse0{word-spacing:7.200000px;}
.wsb{word-spacing:7.260000px;}
.wsb9{word-spacing:7.326000px;}
.wsf1{word-spacing:7.380000px;}
.ws6b{word-spacing:7.392000px;}
.ws97{word-spacing:7.524000px;}
.ws85{word-spacing:7.590000px;}
.wsc4{word-spacing:7.614000px;}
.wsa6{word-spacing:7.656000px;}
.ws79{word-spacing:7.854000px;}
.wsdf{word-spacing:7.860000px;}
.wse7{word-spacing:8.040000px;}
.ws82{word-spacing:8.052000px;}
.wsbc{word-spacing:8.100000px;}
.ws78{word-spacing:8.118000px;}
.wsce{word-spacing:8.250000px;}
.wsc3{word-spacing:8.262000px;}
.ws10{word-spacing:8.280000px;}
.wsba{word-spacing:8.382000px;}
.wsb7{word-spacing:8.448000px;}
.wsea{word-spacing:8.760000px;}
.wsa2{word-spacing:8.844000px;}
.wsf{word-spacing:9.000000px;}
.ws7e{word-spacing:9.042000px;}
.ws14{word-spacing:9.240000px;}
.wsf6{word-spacing:9.420000px;}
.ws7a{word-spacing:9.438000px;}
.wsa9{word-spacing:9.636000px;}
.wse{word-spacing:9.780000px;}
.wsd3{word-spacing:9.834000px;}
.wse5{word-spacing:9.840000px;}
.ws4f{word-spacing:10.200000px;}
.wse4{word-spacing:10.680000px;}
.ws47{word-spacing:11.040000px;}
.wsad{word-spacing:11.124000px;}
.ws9b{word-spacing:11.286000px;}
.ws1c{word-spacing:11.616000px;}
.ws6d{word-spacing:11.748000px;}
.wsdd{word-spacing:11.760000px;}
.ws105{word-spacing:11.820000px;}
.wsac{word-spacing:12.096000px;}
.wsfd{word-spacing:12.360000px;}
.ws83{word-spacing:12.408000px;}
.wscc{word-spacing:12.606000px;}
.wsdc{word-spacing:12.780000px;}
.ws104{word-spacing:12.840000px;}
.wsd5{word-spacing:12.870000px;}
.wse9{word-spacing:12.900000px;}
.ws70{word-spacing:13.398000px;}
.ws93{word-spacing:13.464000px;}
.ws8d{word-spacing:13.530000px;}
.ws67{word-spacing:13.620000px;}
.wse8{word-spacing:13.980000px;}
.wsd4{word-spacing:15.246000px;}
.wsd2{word-spacing:16.038000px;}
.wsa1{word-spacing:16.368000px;}
.wsc{word-spacing:16.380000px;}
.ws44{word-spacing:17.580000px;}
.ws66{word-spacing:18.360000px;}
.wsd1{word-spacing:26.334000px;}
.ws0{word-spacing:640.023600px;}
.ws17{word-spacing:720.057600px;}
.ws62{word-spacing:721.113600px;}
.ws8b{word-spacing:728.439600px;}
.wsaf{word-spacing:731.541600px;}
.wse1{word-spacing:739.791600px;}
._e{margin-left:-6.601800px;}
._b{margin-left:-5.302570px;}
._2{margin-left:-4.200000px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.204800px;}
._6{width:1.028400px;}
._4{width:2.329800px;}
._7{width:3.444600px;}
._5{width:4.842000px;}
._3{width:6.318000px;}
._8{width:8.325998px;}
._a{width:9.688003px;}
._f{width:10.720790px;}
._12{width:11.918419px;}
._17{width:13.193400px;}
._14{width:16.288800px;}
._d{width:17.448000px;}
._c{width:18.598800px;}
._11{width:19.666200px;}
._15{width:20.733000px;}
._10{width:238.252620px;}
._9{width:241.156020px;}
._16{width:245.380020px;}
._13{width:252.376020px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:39.177600px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:66.660000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.275600px;}
.y1{bottom:68.775600px;}
.y26{bottom:89.291250px;}
.y51{bottom:89.291400px;}
.yf8{bottom:91.828050px;}
.ycc{bottom:93.385800px;}
.y25{bottom:104.291250px;}
.y50{bottom:105.491400px;}
.yf7{bottom:109.978050px;}
.y121{bottom:116.262300px;}
.y4f{bottom:121.691400px;}
.y24{bottom:123.385650px;}
.y94{bottom:125.785800px;}
.yf6{bottom:128.128050px;}
.y120{bottom:134.262300px;}
.y78{bottom:137.891400px;}
.y4e{bottom:141.985800px;}
.yf5{bottom:148.153050px;}
.y11f{bottom:152.262300px;}
.y4d{bottom:154.091400px;}
.ycb{bottom:158.185800px;}
.yf4{bottom:166.303050px;}
.y77{bottom:170.291400px;}
.y11e{bottom:172.137300px;}
.y4c{bottom:174.385800px;}
.y23{bottom:179.801700px;}
.yf3{bottom:186.328050px;}
.y4b{bottom:186.491400px;}
.y11d{bottom:190.137300px;}
.yda{bottom:190.585800px;}
.y4a{bottom:202.691400px;}
.yf2{bottom:204.478050px;}
.y22{bottom:206.005650px;}
.yb3{bottom:206.785800px;}
.y11c{bottom:208.137300px;}
.y93{bottom:218.550600px;}
.yd9{bottom:218.891400px;}
.y49{bottom:222.985800px;}
.y21{bottom:223.705650px;}
.yf1{bottom:224.503050px;}
.y11b{bottom:228.012300px;}
.y76{bottom:235.091400px;}
.yb2{bottom:235.759800px;}
.y92{bottom:238.575600px;}
.yd8{bottom:239.185800px;}
.y20{bottom:241.405650px;}
.yf0{bottom:242.653050px;}
.yca{bottom:242.734800px;}
.y11a{bottom:247.887300px;}
.y75{bottom:251.291400px;}
.ye6{bottom:255.385800px;}
.yb1{bottom:255.784800px;}
.y48{bottom:258.033300px;}
.y91{bottom:258.600600px;}
.y1f{bottom:259.105650px;}
.yef{bottom:262.678050px;}
.yc9{bottom:262.759800px;}
.y119{bottom:265.887300px;}
.yd7{bottom:267.491400px;}
.y74{bottom:271.585800px;}
.yb0{bottom:275.809800px;}
.y47{bottom:276.033300px;}
.y1e{bottom:276.805650px;}
.y90{bottom:278.625600px;}
.yee{bottom:280.828050px;}
.yc8{bottom:282.784800px;}
.ye5{bottom:283.691400px;}
.y118{bottom:285.762300px;}
.y73{bottom:287.785800px;}
.y46{bottom:294.033300px;}
.y1d{bottom:294.505650px;}
.yaf{bottom:295.834800px;}
.y8f{bottom:298.650600px;}
.ye4{bottom:299.891400px;}
.yed{bottom:300.853050px;}
.yc7{bottom:302.809800px;}
.y117{bottom:303.762300px;}
.y72{bottom:303.985800px;}
.y45{bottom:312.033300px;}
.y1c{bottom:312.205650px;}
.yae{bottom:315.859800px;}
.ye3{bottom:316.091400px;}
.y8e{bottom:318.675600px;}
.yec{bottom:319.003050px;}
.yc6{bottom:322.834800px;}
.y116{bottom:323.637300px;}
.y1b{bottom:329.905650px;}
.y44{bottom:330.033300px;}
.y71{bottom:333.369600px;}
.ye2{bottom:336.385800px;}
.yeb{bottom:337.153050px;}
.y8d{bottom:338.700600px;}
.yc5{bottom:342.859800px;}
.y115{bottom:343.512300px;}
.yad{bottom:344.884800px;}
.y1a{bottom:347.605650px;}
.y43{bottom:348.033300px;}
.yd6{bottom:349.833450px;}
.y70{bottom:351.369600px;}
.ye1{bottom:352.585800px;}
.yea{bottom:357.178050px;}
.y8c{bottom:358.725600px;}
.yc4{bottom:362.884800px;}
.y114{bottom:363.387300px;}
.y19{bottom:365.305650px;}
.y42{bottom:366.033300px;}
.ye0{bottom:368.785800px;}
.y6f{bottom:369.369600px;}
.yd5{bottom:369.858300px;}
.ye9{bottom:375.328050px;}
.y8b{bottom:378.750600px;}
.yac{bottom:382.908300px;}
.yc3{bottom:382.909800px;}
.y18{bottom:383.005650px;}
.y113{bottom:383.262300px;}
.y41{bottom:384.033300px;}
.ydf{bottom:384.985800px;}
.y6e{bottom:387.369600px;}
.yd4{bottom:389.883300px;}
.yde{bottom:397.091400px;}
.y8a{bottom:398.775600px;}
.y112{bottom:401.262300px;}
.y40{bottom:402.033300px;}
.yab{bottom:402.933450px;}
.yc2{bottom:402.934800px;}
.ye8{bottom:403.682850px;}
.y6d{bottom:405.369600px;}
.yd3{bottom:409.908300px;}
.ydd{bottom:413.291400px;}
.y17{bottom:417.713550px;}
.y89{bottom:418.800600px;}
.y111{bottom:419.262300px;}
.y3f{bottom:420.033300px;}
.yaa{bottom:422.958450px;}
.yc1{bottom:422.959800px;}
.y6c{bottom:423.369600px;}
.yd2{bottom:429.933450px;}
.ydc{bottom:433.585950px;}
.y3e{bottom:438.033300px;}
.y88{bottom:438.825600px;}
.y110{bottom:439.137300px;}
.y6b{bottom:441.369600px;}
.ya9{bottom:442.983300px;}
.yc0{bottom:442.984800px;}
.y16{bottom:443.917500px;}
.yd1{bottom:449.958450px;}
.y3d{bottom:456.033300px;}
.y87{bottom:458.850600px;}
.y10f{bottom:459.012300px;}
.y6a{bottom:459.369600px;}
.y15{bottom:461.617500px;}
.ya8{bottom:463.008300px;}
.ybf{bottom:463.009800px;}
.yd0{bottom:469.983300px;}
.y10e{bottom:477.012300px;}
.y69{bottom:477.369600px;}
.y86{bottom:478.875600px;}
.y14{bottom:479.317500px;}
.y3c{bottom:483.033300px;}
.ybe{bottom:483.034800px;}
.ycf{bottom:490.008300px;}
.y68{bottom:495.369600px;}
.y10d{bottom:496.887300px;}
.y13{bottom:497.017500px;}
.y85{bottom:498.900600px;}
.ya7{bottom:503.058450px;}
.yce{bottom:510.033300px;}
.ybd{bottom:512.059800px;}
.y67{bottom:513.369600px;}
.y12{bottom:514.717500px;}
.y10c{bottom:514.887300px;}
.y84{bottom:518.925600px;}
.y3b{bottom:521.058450px;}
.ya6{bottom:523.083450px;}
.ycd{bottom:530.058450px;}
.y66{bottom:531.369600px;}
.y11{bottom:532.417350px;}
.y10b{bottom:534.762300px;}
.y83{bottom:538.950600px;}
.y3a{bottom:541.083300px;}
.ya5{bottom:543.108450px;}
.y65{bottom:549.369600px;}
.ybc{bottom:550.083300px;}
.y10{bottom:550.117500px;}
.y10a{bottom:552.762300px;}
.y82{bottom:558.975600px;}
.y39{bottom:561.108450px;}
.ya4{bottom:563.133300px;}
.y64{bottom:567.369600px;}
.yf{bottom:567.817500px;}
.ybb{bottom:570.108450px;}
.y109{bottom:572.637300px;}
.y81{bottom:579.000600px;}
.y38{bottom:581.133300px;}
.ya3{bottom:583.158300px;}
.y63{bottom:585.369600px;}
.ye{bottom:585.517500px;}
.yba{bottom:590.133300px;}
.y108{bottom:590.637300px;}
.y80{bottom:599.025600px;}
.y37{bottom:601.158300px;}
.ya2{bottom:603.183450px;}
.yd{bottom:603.217500px;}
.y62{bottom:603.369600px;}
.yb9{bottom:610.158300px;}
.y107{bottom:610.512300px;}
.y7f{bottom:619.050600px;}
.yc{bottom:620.917350px;}
.y36{bottom:621.183450px;}
.y61{bottom:621.369600px;}
.ya1{bottom:623.208300px;}
.y106{bottom:628.512300px;}
.yb8{bottom:630.183450px;}
.yb{bottom:638.617500px;}
.y7e{bottom:639.075600px;}
.y35{bottom:641.208300px;}
.ya0{bottom:643.233450px;}
.y105{bottom:648.387300px;}
.yb7{bottom:650.208300px;}
.y60{bottom:652.125450px;}
.ye7{bottom:652.233450px;}
.y34{bottom:661.233450px;}
.y9f{bottom:663.258300px;}
.ya{bottom:664.821450px;}
.y104{bottom:666.387300px;}
.y7d{bottom:668.100600px;}
.yb6{bottom:670.233450px;}
.ydb{bottom:672.258300px;}
.y33{bottom:681.258300px;}
.y9{bottom:682.384350px;}
.y5f{bottom:682.881300px;}
.y103{bottom:686.262300px;}
.yb5{bottom:690.258300px;}
.y9e{bottom:692.283300px;}
.y5e{bottom:700.881300px;}
.y32{bottom:701.283300px;}
.y102{bottom:704.262300px;}
.y7c{bottom:706.125600px;}
.y8{bottom:708.451350px;}
.yb4{bottom:710.283300px;}
.y31{bottom:721.308450px;}
.y101{bottom:722.262300px;}
.y9d{bottom:730.308450px;}
.y7{bottom:730.377300px;}
.y5d{bottom:731.637300px;}
.y7b{bottom:736.881450px;}
.y100{bottom:740.262300px;}
.y30{bottom:741.333300px;}
.y123{bottom:742.137300px;}
.y5c{bottom:749.637300px;}
.y9c{bottom:750.333300px;}
.y6{bottom:751.240200px;}
.y7a{bottom:754.881450px;}
.yff{bottom:760.137300px;}
.y2f{bottom:761.358450px;}
.y5b{bottom:767.637300px;}
.y9b{bottom:770.358450px;}
.y79{bottom:772.881450px;}
.y122{bottom:778.137300px;}
.yfe{bottom:780.012300px;}
.y2e{bottom:781.383300px;}
.y5a{bottom:785.637300px;}
.y5{bottom:789.040350px;}
.y9a{bottom:790.383300px;}
.yfd{bottom:798.012300px;}
.y2d{bottom:801.408300px;}
.y59{bottom:803.637300px;}
.y99{bottom:810.408300px;}
.y4{bottom:817.344150px;}
.yfc{bottom:817.887300px;}
.y2c{bottom:821.433450px;}
.y58{bottom:821.637300px;}
.y98{bottom:830.433450px;}
.yfb{bottom:835.887300px;}
.y57{bottom:839.637300px;}
.y2b{bottom:841.458300px;}
.y97{bottom:850.458300px;}
.y3{bottom:854.025450px;}
.yfa{bottom:855.762300px;}
.y56{bottom:857.637300px;}
.y2a{bottom:861.483450px;}
.y96{bottom:870.483450px;}
.yf9{bottom:873.762300px;}
.y55{bottom:875.637300px;}
.y29{bottom:881.508300px;}
.y95{bottom:890.508300px;}
.y54{bottom:893.637300px;}
.y28{bottom:910.533300px;}
.y53{bottom:911.637300px;}
.y27{bottom:944.548950px;}
.y52{bottom:944.597700px;}
.h8{height:31.498790px;}
.h2{height:32.064000px;}
.ha{height:36.072000px;}
.h10{height:36.650391px;}
.h7{height:40.080000px;}
.h9{height:43.416000px;}
.hf{height:43.794000px;}
.he{height:43.829076px;}
.hb{height:44.088000px;}
.hd{height:44.528880px;}
.h5{height:48.240000px;}
.hc{height:49.896000px;}
.h6{height:53.064000px;}
.h4{height:53.526000px;}
.h3{height:54.540000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:97.795200px;}
.x1{left:106.299150px;}
.xa{left:114.803100px;}
.x3{left:120.204150px;}
.x8{left:122.537850px;}
.x4{left:151.243950px;}
.xc{left:153.070950px;}
.xe{left:161.574750px;}
.xb{left:170.078700px;}
.xf{left:178.582650px;}
.xd{left:184.432950px;}
.x2{left:283.364100px;}
.x5{left:403.088700px;}
.x6{left:499.912200px;}
.x7{left:538.056450px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v6{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.557867pt;}
.v3{vertical-align:-2.131200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.202667pt;}
.v5{vertical-align:17.760000pt;}
.ls15{letter-spacing:-5.333333pt;}
.ls14{letter-spacing:-4.693333pt;}
.ls7{letter-spacing:-3.200000pt;}
.ls17{letter-spacing:-2.666667pt;}
.lsd{letter-spacing:-2.053333pt;}
.lsf{letter-spacing:-1.760000pt;}
.ls10{letter-spacing:-1.466667pt;}
.ls13{letter-spacing:-0.880000pt;}
.ls18{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.348245pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.511467pt;}
.lsa{letter-spacing:0.605867pt;}
.ls3{letter-spacing:0.666987pt;}
.lsb{letter-spacing:2.021120pt;}
.lsc{letter-spacing:2.353920pt;}
.ls6{letter-spacing:2.580800pt;}
.ls11{letter-spacing:3.594133pt;}
.ls0{letter-spacing:4.794133pt;}
.ls2{letter-spacing:6.036267pt;}
.wsb1{word-spacing:-48.000000pt;}
.wsc9{word-spacing:-11.909333pt;}
.ws19{word-spacing:-11.616000pt;}
.wsc8{word-spacing:-10.970667pt;}
.ws18{word-spacing:-10.677333pt;}
.ws3{word-spacing:-10.560000pt;}
.wsb0{word-spacing:-10.149333pt;}
.ws8c{word-spacing:-10.090667pt;}
.wsc7{word-spacing:-9.797333pt;}
.ws2{word-spacing:-9.706667pt;}
.ws3e{word-spacing:-9.504000pt;}
.ws77{word-spacing:-9.024000pt;}
.wsfb{word-spacing:-8.906667pt;}
.ws1b{word-spacing:-8.736000pt;}
.wsa0{word-spacing:-8.016000pt;}
.ws3d{word-spacing:-6.895258pt;}
.ws9f{word-spacing:-6.772128pt;}
.wse2{word-spacing:-6.156480pt;}
.wse3{word-spacing:-5.658987pt;}
.wsa4{word-spacing:-4.458667pt;}
.wsee{word-spacing:-4.000000pt;}
.wscd{word-spacing:-3.989333pt;}
.ws95{word-spacing:-3.637333pt;}
.wsef{word-spacing:-3.626667pt;}
.wsec{word-spacing:-3.413333pt;}
.ws27{word-spacing:-3.344000pt;}
.ws2d{word-spacing:-3.306667pt;}
.wsf7{word-spacing:-2.666667pt;}
.ws12{word-spacing:-2.506667pt;}
.wsf8{word-spacing:-2.453333pt;}
.ws7f{word-spacing:-2.405333pt;}
.wsc0{word-spacing:-2.256000pt;}
.ws21{word-spacing:-2.229333pt;}
.wsda{word-spacing:-2.133333pt;}
.ws36{word-spacing:-2.080000pt;}
.wsff{word-spacing:-2.026667pt;}
.wsdb{word-spacing:-1.973333pt;}
.wsc6{word-spacing:-1.872000pt;}
.ws100{word-spacing:-1.866667pt;}
.ws22{word-spacing:-1.818667pt;}
.ws52{word-spacing:-1.760000pt;}
.wsc5{word-spacing:-1.728000pt;}
.wsd6{word-spacing:-1.653333pt;}
.ws57{word-spacing:-1.632000pt;}
.ws101{word-spacing:-1.493333pt;}
.wsb8{word-spacing:-1.349333pt;}
.ws102{word-spacing:-1.333333pt;}
.ws9d{word-spacing:-1.248000pt;}
.ws9a{word-spacing:-1.232000pt;}
.ws103{word-spacing:-1.226667pt;}
.ws23{word-spacing:-1.173333pt;}
.ws75{word-spacing:-1.152000pt;}
.wsfa{word-spacing:-1.066667pt;}
.ws74{word-spacing:-1.056000pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws5{word-spacing:-0.906667pt;}
.ws28{word-spacing:-0.645333pt;}
.ws33{word-spacing:-0.480000pt;}
.ws30{word-spacing:-0.426667pt;}
.wsd0{word-spacing:-0.410667pt;}
.ws2a{word-spacing:-0.293333pt;}
.ws1e{word-spacing:-0.234667pt;}
.ws2b{word-spacing:-0.176000pt;}
.ws25{word-spacing:-0.117333pt;}
.wsf0{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.059253pt;}
.ws1{word-spacing:-0.058667pt;}
.ws4c{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.034203pt;}
.ws4{word-spacing:0.000000pt;}
.ws31{word-spacing:0.053333pt;}
.wsb3{word-spacing:0.058667pt;}
.wsab{word-spacing:0.144000pt;}
.ws6c{word-spacing:0.234667pt;}
.wsae{word-spacing:0.240000pt;}
.ws1f{word-spacing:0.293333pt;}
.ws5b{word-spacing:0.336000pt;}
.ws73{word-spacing:0.348245pt;}
.ws43{word-spacing:0.373333pt;}
.ws5a{word-spacing:0.384000pt;}
.wsed{word-spacing:0.426667pt;}
.wsc1{word-spacing:0.432000pt;}
.wsf3{word-spacing:0.480000pt;}
.wsbd{word-spacing:0.528000pt;}
.wsf2{word-spacing:0.533333pt;}
.wsaa{word-spacing:0.576000pt;}
.ws3f{word-spacing:0.586667pt;}
.ws72{word-spacing:0.672000pt;}
.wsde{word-spacing:0.693333pt;}
.ws58{word-spacing:0.720000pt;}
.ws45{word-spacing:0.746667pt;}
.ws90{word-spacing:0.762667pt;}
.wsca{word-spacing:0.821333pt;}
.ws99{word-spacing:0.880000pt;}
.ws2f{word-spacing:0.906667pt;}
.ws55{word-spacing:0.960000pt;}
.ws9e{word-spacing:1.008000pt;}
.ws56{word-spacing:1.056000pt;}
.ws53{word-spacing:1.066667pt;}
.wsa8{word-spacing:1.114667pt;}
.ws4a{word-spacing:1.120000pt;}
.ws29{word-spacing:1.173333pt;}
.wsf4{word-spacing:1.226667pt;}
.wsbe{word-spacing:1.248000pt;}
.ws63{word-spacing:1.333333pt;}
.ws51{word-spacing:1.386667pt;}
.ws92{word-spacing:1.466667pt;}
.wsbb{word-spacing:1.525333pt;}
.ws48{word-spacing:1.546667pt;}
.ws7b{word-spacing:1.584000pt;}
.ws16{word-spacing:1.653333pt;}
.wsfc{word-spacing:1.760000pt;}
.wsf9{word-spacing:1.813333pt;}
.ws3b{word-spacing:1.968000pt;}
.wsa3{word-spacing:1.994667pt;}
.ws32{word-spacing:2.026667pt;}
.ws8f{word-spacing:2.053333pt;}
.ws34{word-spacing:2.080000pt;}
.ws61{word-spacing:2.160000pt;}
.ws68{word-spacing:2.229333pt;}
.ws5d{word-spacing:2.256000pt;}
.wscb{word-spacing:2.288000pt;}
.ws60{word-spacing:2.304000pt;}
.ws3a{word-spacing:2.352000pt;}
.ws9{word-spacing:2.400000pt;}
.ws5c{word-spacing:2.448000pt;}
.ws11{word-spacing:2.453333pt;}
.ws80{word-spacing:2.464000pt;}
.ws76{word-spacing:2.496000pt;}
.ws46{word-spacing:2.506667pt;}
.ws1d{word-spacing:2.522667pt;}
.ws39{word-spacing:2.544000pt;}
.ws64{word-spacing:2.560000pt;}
.wsa7{word-spacing:2.581333pt;}
.ws2e{word-spacing:2.613333pt;}
.ws59{word-spacing:2.640000pt;}
.wse6{word-spacing:2.666667pt;}
.ws20{word-spacing:2.698667pt;}
.wsb5{word-spacing:2.757333pt;}
.wsd7{word-spacing:2.773333pt;}
.ws6f{word-spacing:2.816000pt;}
.ws37{word-spacing:2.832000pt;}
.ws94{word-spacing:2.874667pt;}
.ws88{word-spacing:2.880000pt;}
.ws81{word-spacing:2.933333pt;}
.ws5f{word-spacing:2.976000pt;}
.ws26{word-spacing:2.992000pt;}
.ws24{word-spacing:3.050667pt;}
.ws13{word-spacing:3.093333pt;}
.ws87{word-spacing:3.120000pt;}
.wsbf{word-spacing:3.168000pt;}
.ws40{word-spacing:3.200000pt;}
.ws5e{word-spacing:3.216000pt;}
.ws50{word-spacing:3.306667pt;}
.ws98{word-spacing:3.461333pt;}
.ws15{word-spacing:3.466667pt;}
.ws65{word-spacing:3.573333pt;}
.wsc2{word-spacing:3.600000pt;}
.ws9c{word-spacing:3.648000pt;}
.ws4b{word-spacing:3.680000pt;}
.ws6a{word-spacing:3.696000pt;}
.ws35{word-spacing:3.733333pt;}
.ws96{word-spacing:3.754667pt;}
.ws38{word-spacing:3.840000pt;}
.wscf{word-spacing:3.930667pt;}
.ws54{word-spacing:3.946667pt;}
.ws8a{word-spacing:3.984000pt;}
.ws69{word-spacing:4.048000pt;}
.ws8{word-spacing:4.373333pt;}
.wsd{word-spacing:4.533333pt;}
.wsf5{word-spacing:4.693333pt;}
.ws2c{word-spacing:4.800000pt;}
.ws71{word-spacing:4.810667pt;}
.ws89{word-spacing:4.896000pt;}
.wsb6{word-spacing:5.104000pt;}
.wsd8{word-spacing:5.120000pt;}
.wsb2{word-spacing:5.162667pt;}
.ws6{word-spacing:5.173333pt;}
.wsa{word-spacing:5.226667pt;}
.ws7c{word-spacing:5.280000pt;}
.wseb{word-spacing:5.333333pt;}
.wsb4{word-spacing:5.338667pt;}
.ws42{word-spacing:5.386667pt;}
.ws91{word-spacing:5.397333pt;}
.wsd9{word-spacing:5.546667pt;}
.wsfe{word-spacing:5.600000pt;}
.ws7{word-spacing:5.653333pt;}
.ws84{word-spacing:5.808000pt;}
.ws8e{word-spacing:5.866667pt;}
.ws49{word-spacing:6.026667pt;}
.ws7d{word-spacing:6.042667pt;}
.ws86{word-spacing:6.218667pt;}
.ws4d{word-spacing:6.240000pt;}
.ws6e{word-spacing:6.277333pt;}
.ws41{word-spacing:6.293333pt;}
.wsa5{word-spacing:6.336000pt;}
.wse0{word-spacing:6.400000pt;}
.wsb{word-spacing:6.453333pt;}
.wsb9{word-spacing:6.512000pt;}
.wsf1{word-spacing:6.560000pt;}
.ws6b{word-spacing:6.570667pt;}
.ws97{word-spacing:6.688000pt;}
.ws85{word-spacing:6.746667pt;}
.wsc4{word-spacing:6.768000pt;}
.wsa6{word-spacing:6.805333pt;}
.ws79{word-spacing:6.981333pt;}
.wsdf{word-spacing:6.986667pt;}
.wse7{word-spacing:7.146667pt;}
.ws82{word-spacing:7.157333pt;}
.wsbc{word-spacing:7.200000pt;}
.ws78{word-spacing:7.216000pt;}
.wsce{word-spacing:7.333333pt;}
.wsc3{word-spacing:7.344000pt;}
.ws10{word-spacing:7.360000pt;}
.wsba{word-spacing:7.450667pt;}
.wsb7{word-spacing:7.509333pt;}
.wsea{word-spacing:7.786667pt;}
.wsa2{word-spacing:7.861333pt;}
.wsf{word-spacing:8.000000pt;}
.ws7e{word-spacing:8.037333pt;}
.ws14{word-spacing:8.213333pt;}
.wsf6{word-spacing:8.373333pt;}
.ws7a{word-spacing:8.389333pt;}
.wsa9{word-spacing:8.565333pt;}
.wse{word-spacing:8.693333pt;}
.wsd3{word-spacing:8.741333pt;}
.wse5{word-spacing:8.746667pt;}
.ws4f{word-spacing:9.066667pt;}
.wse4{word-spacing:9.493333pt;}
.ws47{word-spacing:9.813333pt;}
.wsad{word-spacing:9.888000pt;}
.ws9b{word-spacing:10.032000pt;}
.ws1c{word-spacing:10.325333pt;}
.ws6d{word-spacing:10.442667pt;}
.wsdd{word-spacing:10.453333pt;}
.ws105{word-spacing:10.506667pt;}
.wsac{word-spacing:10.752000pt;}
.wsfd{word-spacing:10.986667pt;}
.ws83{word-spacing:11.029333pt;}
.wscc{word-spacing:11.205333pt;}
.wsdc{word-spacing:11.360000pt;}
.ws104{word-spacing:11.413333pt;}
.wsd5{word-spacing:11.440000pt;}
.wse9{word-spacing:11.466667pt;}
.ws70{word-spacing:11.909333pt;}
.ws93{word-spacing:11.968000pt;}
.ws8d{word-spacing:12.026667pt;}
.ws67{word-spacing:12.106667pt;}
.wse8{word-spacing:12.426667pt;}
.wsd4{word-spacing:13.552000pt;}
.wsd2{word-spacing:14.256000pt;}
.wsa1{word-spacing:14.549333pt;}
.wsc{word-spacing:14.560000pt;}
.ws44{word-spacing:15.626667pt;}
.ws66{word-spacing:16.320000pt;}
.wsd1{word-spacing:23.408000pt;}
.ws0{word-spacing:568.909867pt;}
.ws17{word-spacing:640.051200pt;}
.ws62{word-spacing:640.989867pt;}
.ws8b{word-spacing:647.501867pt;}
.wsaf{word-spacing:650.259200pt;}
.wse1{word-spacing:657.592533pt;}
._e{margin-left:-5.868267pt;}
._b{margin-left:-4.713395pt;}
._2{margin-left:-3.733333pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-1.070933pt;}
._6{width:0.914133pt;}
._4{width:2.070933pt;}
._7{width:3.061867pt;}
._5{width:4.304000pt;}
._3{width:5.616000pt;}
._8{width:7.400887pt;}
._a{width:8.611558pt;}
._f{width:9.529591pt;}
._12{width:10.594150pt;}
._17{width:11.727467pt;}
._14{width:14.478933pt;}
._d{width:15.509333pt;}
._c{width:16.532267pt;}
._11{width:17.481067pt;}
._15{width:18.429333pt;}
._10{width:211.780107pt;}
._9{width:214.360907pt;}
._16{width:218.115573pt;}
._13{width:224.334240pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:34.824533pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:59.253333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.133867pt;}
.y1{bottom:61.133867pt;}
.y26{bottom:79.370000pt;}
.y51{bottom:79.370133pt;}
.yf8{bottom:81.624933pt;}
.ycc{bottom:83.009600pt;}
.y25{bottom:92.703333pt;}
.y50{bottom:93.770133pt;}
.yf7{bottom:97.758267pt;}
.y121{bottom:103.344267pt;}
.y4f{bottom:108.170133pt;}
.y24{bottom:109.676133pt;}
.y94{bottom:111.809600pt;}
.yf6{bottom:113.891600pt;}
.y120{bottom:119.344267pt;}
.y78{bottom:122.570133pt;}
.y4e{bottom:126.209600pt;}
.yf5{bottom:131.691600pt;}
.y11f{bottom:135.344267pt;}
.y4d{bottom:136.970133pt;}
.ycb{bottom:140.609600pt;}
.yf4{bottom:147.824933pt;}
.y77{bottom:151.370133pt;}
.y11e{bottom:153.010933pt;}
.y4c{bottom:155.009600pt;}
.y23{bottom:159.823733pt;}
.yf3{bottom:165.624933pt;}
.y4b{bottom:165.770133pt;}
.y11d{bottom:169.010933pt;}
.yda{bottom:169.409600pt;}
.y4a{bottom:180.170133pt;}
.yf2{bottom:181.758267pt;}
.y22{bottom:183.116133pt;}
.yb3{bottom:183.809600pt;}
.y11c{bottom:185.010933pt;}
.y93{bottom:194.267200pt;}
.yd9{bottom:194.570133pt;}
.y49{bottom:198.209600pt;}
.y21{bottom:198.849467pt;}
.yf1{bottom:199.558267pt;}
.y11b{bottom:202.677600pt;}
.y76{bottom:208.970133pt;}
.yb2{bottom:209.564267pt;}
.y92{bottom:212.067200pt;}
.yd8{bottom:212.609600pt;}
.y20{bottom:214.582800pt;}
.yf0{bottom:215.691600pt;}
.yca{bottom:215.764267pt;}
.y11a{bottom:220.344267pt;}
.y75{bottom:223.370133pt;}
.ye6{bottom:227.009600pt;}
.yb1{bottom:227.364267pt;}
.y48{bottom:229.362933pt;}
.y91{bottom:229.867200pt;}
.y1f{bottom:230.316133pt;}
.yef{bottom:233.491600pt;}
.yc9{bottom:233.564267pt;}
.y119{bottom:236.344267pt;}
.yd7{bottom:237.770133pt;}
.y74{bottom:241.409600pt;}
.yb0{bottom:245.164267pt;}
.y47{bottom:245.362933pt;}
.y1e{bottom:246.049467pt;}
.y90{bottom:247.667200pt;}
.yee{bottom:249.624933pt;}
.yc8{bottom:251.364267pt;}
.ye5{bottom:252.170133pt;}
.y118{bottom:254.010933pt;}
.y73{bottom:255.809600pt;}
.y46{bottom:261.362933pt;}
.y1d{bottom:261.782800pt;}
.yaf{bottom:262.964267pt;}
.y8f{bottom:265.467200pt;}
.ye4{bottom:266.570133pt;}
.yed{bottom:267.424933pt;}
.yc7{bottom:269.164267pt;}
.y117{bottom:270.010933pt;}
.y72{bottom:270.209600pt;}
.y45{bottom:277.362933pt;}
.y1c{bottom:277.516133pt;}
.yae{bottom:280.764267pt;}
.ye3{bottom:280.970133pt;}
.y8e{bottom:283.267200pt;}
.yec{bottom:283.558267pt;}
.yc6{bottom:286.964267pt;}
.y116{bottom:287.677600pt;}
.y1b{bottom:293.249467pt;}
.y44{bottom:293.362933pt;}
.y71{bottom:296.328533pt;}
.ye2{bottom:299.009600pt;}
.yeb{bottom:299.691600pt;}
.y8d{bottom:301.067200pt;}
.yc5{bottom:304.764267pt;}
.y115{bottom:305.344267pt;}
.yad{bottom:306.564267pt;}
.y1a{bottom:308.982800pt;}
.y43{bottom:309.362933pt;}
.yd6{bottom:310.963067pt;}
.y70{bottom:312.328533pt;}
.ye1{bottom:313.409600pt;}
.yea{bottom:317.491600pt;}
.y8c{bottom:318.867200pt;}
.yc4{bottom:322.564267pt;}
.y114{bottom:323.010933pt;}
.y19{bottom:324.716133pt;}
.y42{bottom:325.362933pt;}
.ye0{bottom:327.809600pt;}
.y6f{bottom:328.328533pt;}
.yd5{bottom:328.762933pt;}
.ye9{bottom:333.624933pt;}
.y8b{bottom:336.667200pt;}
.yac{bottom:340.362933pt;}
.yc3{bottom:340.364267pt;}
.y18{bottom:340.449467pt;}
.y113{bottom:340.677600pt;}
.y41{bottom:341.362933pt;}
.ydf{bottom:342.209600pt;}
.y6e{bottom:344.328533pt;}
.yd4{bottom:346.562933pt;}
.yde{bottom:352.970133pt;}
.y8a{bottom:354.467200pt;}
.y112{bottom:356.677600pt;}
.y40{bottom:357.362933pt;}
.yab{bottom:358.163067pt;}
.yc2{bottom:358.164267pt;}
.ye8{bottom:358.829200pt;}
.y6d{bottom:360.328533pt;}
.yd3{bottom:364.362933pt;}
.ydd{bottom:367.370133pt;}
.y17{bottom:371.300933pt;}
.y89{bottom:372.267200pt;}
.y111{bottom:372.677600pt;}
.y3f{bottom:373.362933pt;}
.yaa{bottom:375.963067pt;}
.yc1{bottom:375.964267pt;}
.y6c{bottom:376.328533pt;}
.yd2{bottom:382.163067pt;}
.ydc{bottom:385.409733pt;}
.y3e{bottom:389.362933pt;}
.y88{bottom:390.067200pt;}
.y110{bottom:390.344267pt;}
.y6b{bottom:392.328533pt;}
.ya9{bottom:393.762933pt;}
.yc0{bottom:393.764267pt;}
.y16{bottom:394.593333pt;}
.yd1{bottom:399.963067pt;}
.y3d{bottom:405.362933pt;}
.y87{bottom:407.867200pt;}
.y10f{bottom:408.010933pt;}
.y6a{bottom:408.328533pt;}
.y15{bottom:410.326667pt;}
.ya8{bottom:411.562933pt;}
.ybf{bottom:411.564267pt;}
.yd0{bottom:417.762933pt;}
.y10e{bottom:424.010933pt;}
.y69{bottom:424.328533pt;}
.y86{bottom:425.667200pt;}
.y14{bottom:426.060000pt;}
.y3c{bottom:429.362933pt;}
.ybe{bottom:429.364267pt;}
.ycf{bottom:435.562933pt;}
.y68{bottom:440.328533pt;}
.y10d{bottom:441.677600pt;}
.y13{bottom:441.793333pt;}
.y85{bottom:443.467200pt;}
.ya7{bottom:447.163067pt;}
.yce{bottom:453.362933pt;}
.ybd{bottom:455.164267pt;}
.y67{bottom:456.328533pt;}
.y12{bottom:457.526667pt;}
.y10c{bottom:457.677600pt;}
.y84{bottom:461.267200pt;}
.y3b{bottom:463.163067pt;}
.ya6{bottom:464.963067pt;}
.ycd{bottom:471.163067pt;}
.y66{bottom:472.328533pt;}
.y11{bottom:473.259867pt;}
.y10b{bottom:475.344267pt;}
.y83{bottom:479.067200pt;}
.y3a{bottom:480.962933pt;}
.ya5{bottom:482.763067pt;}
.y65{bottom:488.328533pt;}
.ybc{bottom:488.962933pt;}
.y10{bottom:488.993333pt;}
.y10a{bottom:491.344267pt;}
.y82{bottom:496.867200pt;}
.y39{bottom:498.763067pt;}
.ya4{bottom:500.562933pt;}
.y64{bottom:504.328533pt;}
.yf{bottom:504.726667pt;}
.ybb{bottom:506.763067pt;}
.y109{bottom:509.010933pt;}
.y81{bottom:514.667200pt;}
.y38{bottom:516.562933pt;}
.ya3{bottom:518.362933pt;}
.y63{bottom:520.328533pt;}
.ye{bottom:520.460000pt;}
.yba{bottom:524.562933pt;}
.y108{bottom:525.010933pt;}
.y80{bottom:532.467200pt;}
.y37{bottom:534.362933pt;}
.ya2{bottom:536.163067pt;}
.yd{bottom:536.193333pt;}
.y62{bottom:536.328533pt;}
.yb9{bottom:542.362933pt;}
.y107{bottom:542.677600pt;}
.y7f{bottom:550.267200pt;}
.yc{bottom:551.926533pt;}
.y36{bottom:552.163067pt;}
.y61{bottom:552.328533pt;}
.ya1{bottom:553.962933pt;}
.y106{bottom:558.677600pt;}
.yb8{bottom:560.163067pt;}
.yb{bottom:567.660000pt;}
.y7e{bottom:568.067200pt;}
.y35{bottom:569.962933pt;}
.ya0{bottom:571.763067pt;}
.y105{bottom:576.344267pt;}
.yb7{bottom:577.962933pt;}
.y60{bottom:579.667067pt;}
.ye7{bottom:579.763067pt;}
.y34{bottom:587.763067pt;}
.y9f{bottom:589.562933pt;}
.ya{bottom:590.952400pt;}
.y104{bottom:592.344267pt;}
.y7d{bottom:593.867200pt;}
.yb6{bottom:595.763067pt;}
.ydb{bottom:597.562933pt;}
.y33{bottom:605.562933pt;}
.y9{bottom:606.563867pt;}
.y5f{bottom:607.005600pt;}
.y103{bottom:610.010933pt;}
.yb5{bottom:613.562933pt;}
.y9e{bottom:615.362933pt;}
.y5e{bottom:623.005600pt;}
.y32{bottom:623.362933pt;}
.y102{bottom:626.010933pt;}
.y7c{bottom:627.667200pt;}
.y8{bottom:629.734533pt;}
.yb4{bottom:631.362933pt;}
.y31{bottom:641.163067pt;}
.y101{bottom:642.010933pt;}
.y9d{bottom:649.163067pt;}
.y7{bottom:649.224267pt;}
.y5d{bottom:650.344267pt;}
.y7b{bottom:655.005733pt;}
.y100{bottom:658.010933pt;}
.y30{bottom:658.962933pt;}
.y123{bottom:659.677600pt;}
.y5c{bottom:666.344267pt;}
.y9c{bottom:666.962933pt;}
.y6{bottom:667.769067pt;}
.y7a{bottom:671.005733pt;}
.yff{bottom:675.677600pt;}
.y2f{bottom:676.763067pt;}
.y5b{bottom:682.344267pt;}
.y9b{bottom:684.763067pt;}
.y79{bottom:687.005733pt;}
.y122{bottom:691.677600pt;}
.yfe{bottom:693.344267pt;}
.y2e{bottom:694.562933pt;}
.y5a{bottom:698.344267pt;}
.y5{bottom:701.369200pt;}
.y9a{bottom:702.562933pt;}
.yfd{bottom:709.344267pt;}
.y2d{bottom:712.362933pt;}
.y59{bottom:714.344267pt;}
.y99{bottom:720.362933pt;}
.y4{bottom:726.528133pt;}
.yfc{bottom:727.010933pt;}
.y2c{bottom:730.163067pt;}
.y58{bottom:730.344267pt;}
.y98{bottom:738.163067pt;}
.yfb{bottom:743.010933pt;}
.y57{bottom:746.344267pt;}
.y2b{bottom:747.962933pt;}
.y97{bottom:755.962933pt;}
.y3{bottom:759.133733pt;}
.yfa{bottom:760.677600pt;}
.y56{bottom:762.344267pt;}
.y2a{bottom:765.763067pt;}
.y96{bottom:773.763067pt;}
.yf9{bottom:776.677600pt;}
.y55{bottom:778.344267pt;}
.y29{bottom:783.562933pt;}
.y95{bottom:791.562933pt;}
.y54{bottom:794.344267pt;}
.y28{bottom:809.362933pt;}
.y53{bottom:810.344267pt;}
.y27{bottom:839.599067pt;}
.y52{bottom:839.642400pt;}
.h8{height:27.998925pt;}
.h2{height:28.501333pt;}
.ha{height:32.064000pt;}
.h10{height:32.578125pt;}
.h7{height:35.626667pt;}
.h9{height:38.592000pt;}
.hf{height:38.928000pt;}
.he{height:38.959179pt;}
.hb{height:39.189333pt;}
.hd{height:39.581227pt;}
.h5{height:42.880000pt;}
.hc{height:44.352000pt;}
.h6{height:47.168000pt;}
.h4{height:47.578667pt;}
.h3{height:48.480000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:86.929067pt;}
.x1{left:94.488133pt;}
.xa{left:102.047200pt;}
.x3{left:106.848133pt;}
.x8{left:108.922533pt;}
.x4{left:134.439067pt;}
.xc{left:136.063067pt;}
.xe{left:143.622000pt;}
.xb{left:151.181067pt;}
.xf{left:158.740133pt;}
.xd{left:163.940400pt;}
.x2{left:251.879200pt;}
.x5{left:358.301067pt;}
.x6{left:444.366400pt;}
.x7{left:478.272400pt;}
}




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