
    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_1123e1478d9c352749af5809.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945312;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_0dafc62b7b3b8b2118478493.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026000;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_1a1aa14b628717bc810d4b02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_ac23c4b967c93f1f60feb269.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ea2dbd8aef333b38192fa702.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_0202764c938488d648b46e4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.057000;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_4d7291fa084b21f601bba8e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f37316cdff26907d2d35f3a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948730;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.780000px;}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.792000px;}
.ls3e{letter-spacing:-3.360000px;}
.ls3c{letter-spacing:-2.760000px;}
.ls2c{letter-spacing:-2.160000px;}
.ls3d{letter-spacing:-1.860000px;}
.ls25{letter-spacing:-1.350000px;}
.ls3a{letter-spacing:-1.200000px;}
.ls24{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.726000px;}
.ls13{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.594000px;}
.ls23{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.462000px;}
.ls35{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.396000px;}
.ls3f{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.330000px;}
.ls43{letter-spacing:-0.300000px;}
.ls27{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.264000px;}
.ls33{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.198000px;}
.ls34{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.132000px;}
.ls2f{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.066000px;}
.ls17{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.054000px;}
.ls30{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.120000px;}
.ls46{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.264000px;}
.ls28{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.330000px;}
.ls19{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.396000px;}
.ls39{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.432000px;}
.ls36{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.481920px;}
.ls9{letter-spacing:0.528000px;}
.ls2b{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.594000px;}
.ls2e{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.660000px;}
.ls1e{letter-spacing:0.702000px;}
.ls44{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.756000px;}
.ls1b{letter-spacing:0.780000px;}
.ls11{letter-spacing:0.792000px;}
.ls38{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.858000px;}
.ls37{letter-spacing:0.900000px;}
.ls32{letter-spacing:0.960000px;}
.ls1d{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.026000px;}
.ls4{letter-spacing:1.080000px;}
.ls3b{letter-spacing:1.140000px;}
.ls16{letter-spacing:1.260000px;}
.ls42{letter-spacing:1.320000px;}
.ls40{letter-spacing:1.380000px;}
.ls31{letter-spacing:1.500000px;}
.ls41{letter-spacing:2.520000px;}
.ls45{letter-spacing:3.840000px;}
.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;}
}
.wsae{word-spacing:-15.240000px;}
.wsa9{word-spacing:-13.920000px;}
.ws72{word-spacing:-13.530000px;}
.ws7f{word-spacing:-13.266000px;}
.ws93{word-spacing:-12.900000px;}
.wsab{word-spacing:-12.660000px;}
.wsa6{word-spacing:-12.540000px;}
.wsac{word-spacing:-12.360000px;}
.wsa5{word-spacing:-12.300000px;}
.wsad{word-spacing:-12.240000px;}
.ws91{word-spacing:-12.060000px;}
.wsa4{word-spacing:-11.940000px;}
.wsaf{word-spacing:-11.580000px;}
.ws92{word-spacing:-11.520000px;}
.wsa8{word-spacing:-11.460000px;}
.ws89{word-spacing:-9.990000px;}
.wsa7{word-spacing:-9.660000px;}
.wsaa{word-spacing:-8.640000px;}
.ws88{word-spacing:-7.273200px;}
.ws64{word-spacing:-5.950800px;}
.ws8f{word-spacing:-3.762000px;}
.ws8e{word-spacing:-3.696000px;}
.wsbe{word-spacing:-3.600000px;}
.ws6c{word-spacing:-3.564000px;}
.wsa2{word-spacing:-3.300000px;}
.wsa0{word-spacing:-3.180000px;}
.ws26{word-spacing:-3.168000px;}
.ws2a{word-spacing:-3.102000px;}
.ws4f{word-spacing:-3.060000px;}
.ws51{word-spacing:-3.036000px;}
.ws1c{word-spacing:-2.970000px;}
.wsbd{word-spacing:-2.940000px;}
.ws61{word-spacing:-2.880000px;}
.ws4e{word-spacing:-2.820000px;}
.ws36{word-spacing:-2.772000px;}
.ws85{word-spacing:-2.706000px;}
.ws3d{word-spacing:-2.640000px;}
.ws52{word-spacing:-2.574000px;}
.wsd{word-spacing:-2.442000px;}
.ws78{word-spacing:-2.376000px;}
.ws65{word-spacing:-2.310000px;}
.ws4b{word-spacing:-2.280000px;}
.ws35{word-spacing:-2.244000px;}
.ws40{word-spacing:-2.178000px;}
.ws9d{word-spacing:-2.160000px;}
.ws25{word-spacing:-2.112000px;}
.ws60{word-spacing:-2.100000px;}
.ws2d{word-spacing:-2.046000px;}
.ws86{word-spacing:-1.980000px;}
.ws50{word-spacing:-1.920000px;}
.ws10{word-spacing:-1.914000px;}
.wsc5{word-spacing:-1.860000px;}
.ws20{word-spacing:-1.848000px;}
.ws69{word-spacing:-1.782000px;}
.ws8a{word-spacing:-1.716000px;}
.ws56{word-spacing:-1.650000px;}
.ws37{word-spacing:-1.584000px;}
.ws4a{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.518000px;}
.wsbf{word-spacing:-1.500000px;}
.ws2{word-spacing:-1.458000px;}
.ws74{word-spacing:-1.452000px;}
.ws77{word-spacing:-1.386000px;}
.wsba{word-spacing:-1.380000px;}
.ws8b{word-spacing:-1.320000px;}
.ws27{word-spacing:-1.254000px;}
.ws4c{word-spacing:-1.200000px;}
.ws17{word-spacing:-1.188000px;}
.wsa1{word-spacing:-1.140000px;}
.ws1d{word-spacing:-1.056000px;}
.ws71{word-spacing:-1.026000px;}
.ws46{word-spacing:-0.990000px;}
.ws9f{word-spacing:-0.960000px;}
.ws1b{word-spacing:-0.924000px;}
.wsb2{word-spacing:-0.900000px;}
.wsc4{word-spacing:-0.840000px;}
.wsb{word-spacing:-0.792000px;}
.ws83{word-spacing:-0.756000px;}
.ws31{word-spacing:-0.726000px;}
.ws70{word-spacing:-0.702000px;}
.ws7a{word-spacing:-0.660000px;}
.ws9a{word-spacing:-0.600000px;}
.ws7b{word-spacing:-0.594000px;}
.wsbb{word-spacing:-0.540000px;}
.ws59{word-spacing:-0.528000px;}
.ws81{word-spacing:-0.462000px;}
.ws58{word-spacing:-0.432000px;}
.wsb0{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.396000px;}
.ws2f{word-spacing:-0.330000px;}
.ws9b{word-spacing:-0.300000px;}
.ws94{word-spacing:-0.270000px;}
.ws7e{word-spacing:-0.264000px;}
.ws9e{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.198000px;}
.ws33{word-spacing:-0.132000px;}
.wsb3{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.072000px;}
.ws57{word-spacing:-0.066000px;}
.ws90{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws34{word-spacing:0.066000px;}
.ws9c{word-spacing:0.120000px;}
.ws1e{word-spacing:0.132000px;}
.wsa3{word-spacing:0.180000px;}
.ws66{word-spacing:0.198000px;}
.ws24{word-spacing:0.264000px;}
.ws28{word-spacing:0.330000px;}
.ws6a{word-spacing:0.396000px;}
.ws48{word-spacing:0.462000px;}
.wsc3{word-spacing:0.480000px;}
.ws32{word-spacing:0.528000px;}
.ws63{word-spacing:0.594000px;}
.ws2e{word-spacing:0.660000px;}
.ws8c{word-spacing:0.726000px;}
.ws3a{word-spacing:0.792000px;}
.ws22{word-spacing:0.858000px;}
.wsbc{word-spacing:0.900000px;}
.ws2b{word-spacing:0.924000px;}
.wsb1{word-spacing:0.960000px;}
.ws55{word-spacing:0.990000px;}
.ws39{word-spacing:1.056000px;}
.ws5a{word-spacing:1.122000px;}
.ws19{word-spacing:1.134000px;}
.ws5b{word-spacing:1.188000px;}
.wsb5{word-spacing:1.200000px;}
.ws1a{word-spacing:1.218000px;}
.ws62{word-spacing:1.254000px;}
.ws13{word-spacing:1.320000px;}
.ws49{word-spacing:1.386000px;}
.ws53{word-spacing:1.452000px;}
.ws6{word-spacing:1.518000px;}
.ws21{word-spacing:1.584000px;}
.ws43{word-spacing:1.650000px;}
.ws8{word-spacing:1.716000px;}
.ws75{word-spacing:1.782000px;}
.ws6f{word-spacing:1.836000px;}
.ws29{word-spacing:1.848000px;}
.wsc6{word-spacing:1.860000px;}
.ws7{word-spacing:1.914000px;}
.ws5c{word-spacing:1.980000px;}
.ws80{word-spacing:2.046000px;}
.ws16{word-spacing:2.112000px;}
.ws95{word-spacing:2.160000px;}
.ws6b{word-spacing:2.178000px;}
.ws41{word-spacing:2.244000px;}
.ws84{word-spacing:2.310000px;}
.ws67{word-spacing:2.340000px;}
.ws5d{word-spacing:2.376000px;}
.ws38{word-spacing:2.442000px;}
.ws87{word-spacing:2.508000px;}
.ws4d{word-spacing:2.520000px;}
.ws3e{word-spacing:2.574000px;}
.ws44{word-spacing:2.640000px;}
.wse{word-spacing:2.706000px;}
.wsb6{word-spacing:2.760000px;}
.ws3c{word-spacing:2.838000px;}
.ws3b{word-spacing:2.904000px;}
.wsa{word-spacing:2.970000px;}
.ws23{word-spacing:3.036000px;}
.ws11{word-spacing:3.102000px;}
.ws42{word-spacing:3.168000px;}
.ws47{word-spacing:3.234000px;}
.ws2c{word-spacing:3.300000px;}
.wsb9{word-spacing:3.360000px;}
.ws6e{word-spacing:3.366000px;}
.ws7c{word-spacing:3.432000px;}
.ws5f{word-spacing:3.480000px;}
.ws73{word-spacing:3.564000px;}
.ws76{word-spacing:3.696000px;}
.ws54{word-spacing:3.828000px;}
.ws7d{word-spacing:3.894000px;}
.ws9{word-spacing:3.960000px;}
.ws98{word-spacing:4.020000px;}
.ws15{word-spacing:4.026000px;}
.ws99{word-spacing:4.080000px;}
.wsc0{word-spacing:4.140000px;}
.wsc{word-spacing:4.158000px;}
.wsf{word-spacing:4.224000px;}
.wsc1{word-spacing:4.260000px;}
.wsc2{word-spacing:4.380000px;}
.ws6d{word-spacing:4.422000px;}
.ws5{word-spacing:4.536000px;}
.ws3f{word-spacing:4.620000px;}
.ws68{word-spacing:4.860000px;}
.ws4{word-spacing:5.076000px;}
.ws3{word-spacing:5.130000px;}
.ws45{word-spacing:5.412000px;}
.ws8d{word-spacing:5.478000px;}
.wsb7{word-spacing:5.520000px;}
.wsb8{word-spacing:5.580000px;}
.wsb4{word-spacing:5.640000px;}
.ws5e{word-spacing:5.700000px;}
.ws96{word-spacing:5.760000px;}
.ws82{word-spacing:5.940000px;}
.ws97{word-spacing:6.000000px;}
.ws79{word-spacing:6.138000px;}
.ws30{word-spacing:6.270000px;}
.ws18{word-spacing:8.778000px;}
._f{margin-left:-10.184400px;}
._6{margin-left:-8.433480px;}
._a{margin-left:-7.022520px;}
._7{margin-left:-5.848200px;}
._2{margin-left:-4.165560px;}
._5{margin-left:-2.400840px;}
._0{margin-left:-1.103760px;}
._1{width:1.262520px;}
._4{width:2.465640px;}
._3{width:3.508560px;}
._9{width:4.652880px;}
._d{width:5.976600px;}
._e{width:7.180440px;}
._8{width:9.819600px;}
._b{width:41.039880px;}
._c{width:43.205280px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.320000px;}
.fs7{font-size:38.280000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y26{bottom:70.883850px;}
.y25{bottom:99.909750px;}
.yce{bottom:99.922950px;}
.y54{bottom:102.416400px;}
.yac{bottom:102.476550px;}
.y100{bottom:103.449000px;}
.ya1{bottom:103.471500px;}
.y154{bottom:103.499400px;}
.ye6{bottom:104.466450px;}
.y24{bottom:111.911250px;}
.y80{bottom:111.986700px;}
.y123{bottom:118.476000px;}
.ycd{bottom:119.376450px;}
.y153{bottom:119.999400px;}
.y53{bottom:120.417900px;}
.yab{bottom:120.478050px;}
.yff{bottom:121.450500px;}
.ya0{bottom:121.473000px;}
.ye5{bottom:122.467950px;}
.y23{bottom:123.912750px;}
.y7f{bottom:129.988200px;}
.y122{bottom:134.976000px;}
.y22{bottom:135.914250px;}
.y152{bottom:136.499400px;}
.y52{bottom:138.419400px;}
.yaa{bottom:138.479550px;}
.yfe{bottom:139.452000px;}
.y9f{bottom:139.474500px;}
.ye4{bottom:140.469450px;}
.y21{bottom:147.915750px;}
.y7e{bottom:147.989700px;}
.y121{bottom:151.476000px;}
.y151{bottom:152.999400px;}
.y51{bottom:156.420900px;}
.ya9{bottom:156.481050px;}
.yfd{bottom:157.453500px;}
.y20{bottom:164.169750px;}
.y7d{bottom:165.991200px;}
.ycc{bottom:166.013850px;}
.y9e{bottom:166.969200px;}
.ye3{bottom:167.964150px;}
.y120{bottom:167.976000px;}
.y150{bottom:169.499400px;}
.y50{bottom:174.422400px;}
.yfc{bottom:175.455000px;}
.yec{bottom:175.470000px;}
.y1f{bottom:176.171250px;}
.ya8{bottom:183.482400px;}
.y7c{bottom:183.992700px;}
.ycb{bottom:184.015350px;}
.y11f{bottom:184.476000px;}
.y14f{bottom:185.999400px;}
.y4f{bottom:192.423900px;}
.y1e{bottom:192.425250px;}
.yfb{bottom:193.456500px;}
.yeb{bottom:193.471500px;}
.y11e{bottom:200.976000px;}
.ya7{bottom:201.482400px;}
.y7b{bottom:201.994200px;}
.yca{bottom:202.016850px;}
.y14e{bottom:202.499400px;}
.y4e{bottom:210.425400px;}
.y9d{bottom:210.451050px;}
.ye2{bottom:211.449000px;}
.yfa{bottom:211.458000px;}
.yea{bottom:211.473000px;}
.y11d{bottom:217.476000px;}
.y14d{bottom:218.999400px;}
.ya6{bottom:219.482400px;}
.y7a{bottom:219.995700px;}
.yc9{bottom:220.018350px;}
.y4d{bottom:228.426900px;}
.y9c{bottom:228.452550px;}
.ye1{bottom:229.450500px;}
.yf9{bottom:229.459500px;}
.ye9{bottom:229.474500px;}
.y11c{bottom:233.976000px;}
.y14c{bottom:235.499400px;}
.ya5{bottom:237.482400px;}
.y79{bottom:237.997200px;}
.yc8{bottom:238.019850px;}
.y4c{bottom:246.428400px;}
.y9b{bottom:246.454050px;}
.ye0{bottom:247.452000px;}
.yf8{bottom:247.461000px;}
.ye8{bottom:247.476000px;}
.y11b{bottom:250.476000px;}
.y14b{bottom:251.999400px;}
.y1d{bottom:253.525500px;}
.ya4{bottom:255.482400px;}
.y78{bottom:255.998700px;}
.yc7{bottom:256.021350px;}
.y4b{bottom:264.429900px;}
.y9a{bottom:264.455550px;}
.ydf{bottom:265.453500px;}
.yf7{bottom:265.462500px;}
.y11a{bottom:266.976000px;}
.y14a{bottom:268.499400px;}
.y1c{bottom:271.527000px;}
.ya3{bottom:273.482400px;}
.y77{bottom:274.000200px;}
.yc6{bottom:274.022850px;}
.ye7{bottom:274.970550px;}
.y4a{bottom:282.431400px;}
.y99{bottom:282.457050px;}
.yde{bottom:283.455000px;}
.yf6{bottom:283.464000px;}
.y119{bottom:283.476000px;}
.y149{bottom:284.999400px;}
.y1b{bottom:289.528500px;}
.ya2{bottom:291.482400px;}
.y76{bottom:292.001700px;}
.yc5{bottom:292.024350px;}
.y118{bottom:299.976000px;}
.y49{bottom:300.432900px;}
.y98{bottom:300.458550px;}
.ydd{bottom:301.456500px;}
.yf5{bottom:301.465500px;}
.y148{bottom:301.499400px;}
.y1a{bottom:307.530000px;}
.y75{bottom:310.003200px;}
.yc4{bottom:310.025850px;}
.y117{bottom:316.476000px;}
.y147{bottom:317.999400px;}
.y48{bottom:318.434400px;}
.y97{bottom:318.460050px;}
.ydc{bottom:319.458000px;}
.yf4{bottom:319.467000px;}
.y19{bottom:325.531500px;}
.y74{bottom:328.004700px;}
.yc3{bottom:328.027350px;}
.y116{bottom:332.976000px;}
.y146{bottom:334.499400px;}
.y47{bottom:336.435900px;}
.y96{bottom:336.461550px;}
.ydb{bottom:337.459500px;}
.yf3{bottom:337.468500px;}
.y18{bottom:343.533000px;}
.y73{bottom:346.006200px;}
.yc2{bottom:346.028850px;}
.y115{bottom:349.476000px;}
.y145{bottom:350.999400px;}
.y46{bottom:354.437400px;}
.y95{bottom:354.463050px;}
.yda{bottom:355.461000px;}
.yf2{bottom:355.470000px;}
.y17{bottom:361.534500px;}
.y72{bottom:364.007700px;}
.yc1{bottom:364.030350px;}
.y114{bottom:365.976000px;}
.y144{bottom:367.499400px;}
.y45{bottom:372.438900px;}
.y94{bottom:372.464550px;}
.yd9{bottom:373.462500px;}
.yf1{bottom:373.471500px;}
.y16{bottom:379.536000px;}
.y71{bottom:382.009200px;}
.yc0{bottom:382.031850px;}
.y113{bottom:382.476000px;}
.y143{bottom:383.999400px;}
.y44{bottom:390.440400px;}
.y93{bottom:390.466050px;}
.yd8{bottom:391.464000px;}
.yf0{bottom:391.473000px;}
.y15{bottom:397.537500px;}
.y112{bottom:398.976000px;}
.y70{bottom:400.010700px;}
.ybf{bottom:400.033350px;}
.y142{bottom:400.499400px;}
.y43{bottom:408.441900px;}
.y92{bottom:408.467550px;}
.yd7{bottom:409.465500px;}
.yef{bottom:409.474500px;}
.y111{bottom:415.476000px;}
.y14{bottom:415.539000px;}
.y141{bottom:416.999400px;}
.y6f{bottom:418.012200px;}
.ybe{bottom:418.034850px;}
.y42{bottom:426.443400px;}
.y91{bottom:426.469050px;}
.yd6{bottom:427.467000px;}
.yee{bottom:427.476000px;}
.y110{bottom:431.976000px;}
.y140{bottom:433.499400px;}
.y13{bottom:433.540500px;}
.y6e{bottom:436.013700px;}
.ybd{bottom:436.036350px;}
.y41{bottom:444.444900px;}
.y90{bottom:444.470550px;}
.yd5{bottom:445.468500px;}
.y10f{bottom:448.476000px;}
.y13f{bottom:449.999400px;}
.y12{bottom:451.542000px;}
.y6d{bottom:454.015200px;}
.ybc{bottom:454.037850px;}
.yed{bottom:454.970550px;}
.y40{bottom:462.446400px;}
.y8f{bottom:462.472050px;}
.yd4{bottom:463.470000px;}
.y10e{bottom:464.976000px;}
.y13e{bottom:466.499400px;}
.y11{bottom:469.543500px;}
.y6c{bottom:472.016700px;}
.ybb{bottom:472.039350px;}
.y3f{bottom:480.447900px;}
.y8e{bottom:480.473550px;}
.yd3{bottom:481.471500px;}
.y10d{bottom:481.476000px;}
.y13d{bottom:482.999400px;}
.y10{bottom:487.545000px;}
.y6b{bottom:490.018200px;}
.yba{bottom:490.040850px;}
.y10c{bottom:497.976000px;}
.y3e{bottom:498.449400px;}
.y8d{bottom:498.475050px;}
.yd2{bottom:499.473000px;}
.y13c{bottom:499.499400px;}
.yf{bottom:505.546500px;}
.y6a{bottom:508.019700px;}
.yb9{bottom:508.042350px;}
.y10b{bottom:514.476000px;}
.y13b{bottom:515.999400px;}
.y3d{bottom:516.450900px;}
.y8c{bottom:516.476550px;}
.yd1{bottom:517.474500px;}
.ye{bottom:523.548000px;}
.y69{bottom:526.021200px;}
.yb8{bottom:526.043850px;}
.y10a{bottom:530.976000px;}
.y13a{bottom:532.499400px;}
.y3c{bottom:534.452400px;}
.y8b{bottom:534.478050px;}
.yd0{bottom:535.476000px;}
.yd{bottom:541.549500px;}
.y68{bottom:544.022700px;}
.yb7{bottom:544.045350px;}
.y109{bottom:547.476000px;}
.y139{bottom:548.999400px;}
.y3b{bottom:552.453900px;}
.y8a{bottom:552.479550px;}
.yc{bottom:559.551000px;}
.y67{bottom:562.024200px;}
.yb6{bottom:562.046850px;}
.ycf{bottom:562.970550px;}
.y108{bottom:563.976000px;}
.y138{bottom:565.499400px;}
.y3a{bottom:570.455400px;}
.y89{bottom:570.481050px;}
.yb{bottom:577.552500px;}
.y66{bottom:580.025700px;}
.yb5{bottom:580.045350px;}
.y107{bottom:580.476000px;}
.y137{bottom:581.999400px;}
.y39{bottom:588.456900px;}
.y106{bottom:596.976000px;}
.y88{bottom:597.482400px;}
.y65{bottom:598.027200px;}
.yb4{bottom:598.046850px;}
.y136{bottom:598.499400px;}
.ya{bottom:605.047800px;}
.y38{bottom:606.458400px;}
.y105{bottom:613.476000px;}
.y135{bottom:614.999400px;}
.y87{bottom:615.482400px;}
.y64{bottom:616.028700px;}
.yb3{bottom:616.048350px;}
.y37{bottom:624.459900px;}
.y104{bottom:629.976000px;}
.y134{bottom:631.499400px;}
.y86{bottom:633.482400px;}
.y63{bottom:634.030200px;}
.y36{bottom:642.461400px;}
.yb2{bottom:643.049700px;}
.y103{bottom:646.476000px;}
.y133{bottom:647.999400px;}
.y85{bottom:651.482400px;}
.y62{bottom:652.031700px;}
.y35{bottom:660.462900px;}
.yb1{bottom:661.049700px;}
.y102{bottom:662.976000px;}
.y132{bottom:664.499400px;}
.y84{bottom:669.482400px;}
.y61{bottom:670.033200px;}
.y34{bottom:678.464400px;}
.yb0{bottom:679.049700px;}
.y131{bottom:680.999400px;}
.y83{bottom:687.482400px;}
.y60{bottom:688.034700px;}
.y101{bottom:688.970550px;}
.y33{bottom:696.465900px;}
.yaf{bottom:697.049700px;}
.y130{bottom:697.499400px;}
.y82{bottom:705.482400px;}
.y5f{bottom:706.036200px;}
.y12f{bottom:713.999400px;}
.y32{bottom:714.467400px;}
.yae{bottom:715.049700px;}
.y81{bottom:723.482400px;}
.y5e{bottom:724.037700px;}
.y9{bottom:727.222800px;}
.y12e{bottom:730.499400px;}
.y31{bottom:732.468900px;}
.yad{bottom:733.049700px;}
.y5d{bottom:742.039200px;}
.y8{bottom:742.221300px;}
.y12d{bottom:746.999400px;}
.y30{bottom:750.470400px;}
.y7{bottom:757.219800px;}
.y5c{bottom:760.040700px;}
.y12c{bottom:763.499400px;}
.y2f{bottom:768.471900px;}
.y6{bottom:772.218300px;}
.y5b{bottom:778.042200px;}
.y12b{bottom:779.999400px;}
.y2e{bottom:786.473400px;}
.y5{bottom:787.216800px;}
.y5a{bottom:796.043700px;}
.y12a{bottom:796.499400px;}
.y4{bottom:802.215300px;}
.y2d{bottom:804.474900px;}
.y129{bottom:812.999400px;}
.y59{bottom:814.045200px;}
.y2c{bottom:822.476400px;}
.y128{bottom:829.499400px;}
.y58{bottom:832.046700px;}
.y3{bottom:835.215300px;}
.y2b{bottom:840.477900px;}
.y127{bottom:845.999400px;}
.y57{bottom:850.048200px;}
.y2a{bottom:858.479400px;}
.y126{bottom:862.499400px;}
.y2{bottom:864.719400px;}
.y56{bottom:868.049700px;}
.y29{bottom:876.480900px;}
.y125{bottom:878.999400px;}
.y1{bottom:889.919250px;}
.y28{bottom:894.482400px;}
.y124{bottom:895.499400px;}
.y55{bottom:895.544250px;}
.y27{bottom:934.435800px;}
.h11{height:23.740560px;}
.he{height:24.786000px;}
.h8{height:30.597656px;}
.h7{height:30.618164px;}
.ha{height:33.156738px;}
.h12{height:39.287109px;}
.h5{height:39.788086px;}
.h4{height:40.932000px;}
.hf{height:42.606000px;}
.h9{height:44.208984px;}
.hc{height:45.480000px;}
.h13{height:47.340000px;}
.h6{height:50.028000px;}
.hd{height:50.808240px;}
.h10{height:50.820240px;}
.hb{height:52.074000px;}
.h3{height:54.576000px;}
.h2{height:55.703320px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:85.039350px;}
.x7{left:102.050400px;}
.x1{left:106.299150px;}
.x8{left:123.311550px;}
.x3{left:127.559100px;}
.x2{left:335.905500px;}
.x6{left:398.648550px;}
.x5{left:578.591100px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.370667pt;}
.ls3e{letter-spacing:-2.986667pt;}
.ls3c{letter-spacing:-2.453333pt;}
.ls2c{letter-spacing:-1.920000pt;}
.ls3d{letter-spacing:-1.653333pt;}
.ls25{letter-spacing:-1.200000pt;}
.ls3a{letter-spacing:-1.066667pt;}
.ls24{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.645333pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.528000pt;}
.ls23{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.410667pt;}
.ls35{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.352000pt;}
.ls3f{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.293333pt;}
.ls43{letter-spacing:-0.266667pt;}
.ls27{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.234667pt;}
.ls33{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.176000pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls2f{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.058667pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls30{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls46{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.234667pt;}
.ls28{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.293333pt;}
.ls19{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.352000pt;}
.ls39{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.384000pt;}
.ls36{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.428373pt;}
.ls9{letter-spacing:0.469333pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.528000pt;}
.ls2e{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.586667pt;}
.ls1e{letter-spacing:0.624000pt;}
.ls44{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls11{letter-spacing:0.704000pt;}
.ls38{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.762667pt;}
.ls37{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.853333pt;}
.ls1d{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:0.912000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls3b{letter-spacing:1.013333pt;}
.ls16{letter-spacing:1.120000pt;}
.ls42{letter-spacing:1.173333pt;}
.ls40{letter-spacing:1.226667pt;}
.ls31{letter-spacing:1.333333pt;}
.ls41{letter-spacing:2.240000pt;}
.ls45{letter-spacing:3.413333pt;}
.wsae{word-spacing:-13.546667pt;}
.wsa9{word-spacing:-12.373333pt;}
.ws72{word-spacing:-12.026667pt;}
.ws7f{word-spacing:-11.792000pt;}
.ws93{word-spacing:-11.466667pt;}
.wsab{word-spacing:-11.253333pt;}
.wsa6{word-spacing:-11.146667pt;}
.wsac{word-spacing:-10.986667pt;}
.wsa5{word-spacing:-10.933333pt;}
.wsad{word-spacing:-10.880000pt;}
.ws91{word-spacing:-10.720000pt;}
.wsa4{word-spacing:-10.613333pt;}
.wsaf{word-spacing:-10.293333pt;}
.ws92{word-spacing:-10.240000pt;}
.wsa8{word-spacing:-10.186667pt;}
.ws89{word-spacing:-8.880000pt;}
.wsa7{word-spacing:-8.586667pt;}
.wsaa{word-spacing:-7.680000pt;}
.ws88{word-spacing:-6.465067pt;}
.ws64{word-spacing:-5.289600pt;}
.ws8f{word-spacing:-3.344000pt;}
.ws8e{word-spacing:-3.285333pt;}
.wsbe{word-spacing:-3.200000pt;}
.ws6c{word-spacing:-3.168000pt;}
.wsa2{word-spacing:-2.933333pt;}
.wsa0{word-spacing:-2.826667pt;}
.ws26{word-spacing:-2.816000pt;}
.ws2a{word-spacing:-2.757333pt;}
.ws4f{word-spacing:-2.720000pt;}
.ws51{word-spacing:-2.698667pt;}
.ws1c{word-spacing:-2.640000pt;}
.wsbd{word-spacing:-2.613333pt;}
.ws61{word-spacing:-2.560000pt;}
.ws4e{word-spacing:-2.506667pt;}
.ws36{word-spacing:-2.464000pt;}
.ws85{word-spacing:-2.405333pt;}
.ws3d{word-spacing:-2.346667pt;}
.ws52{word-spacing:-2.288000pt;}
.wsd{word-spacing:-2.170667pt;}
.ws78{word-spacing:-2.112000pt;}
.ws65{word-spacing:-2.053333pt;}
.ws4b{word-spacing:-2.026667pt;}
.ws35{word-spacing:-1.994667pt;}
.ws40{word-spacing:-1.936000pt;}
.ws9d{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.877333pt;}
.ws60{word-spacing:-1.866667pt;}
.ws2d{word-spacing:-1.818667pt;}
.ws86{word-spacing:-1.760000pt;}
.ws50{word-spacing:-1.706667pt;}
.ws10{word-spacing:-1.701333pt;}
.wsc5{word-spacing:-1.653333pt;}
.ws20{word-spacing:-1.642667pt;}
.ws69{word-spacing:-1.584000pt;}
.ws8a{word-spacing:-1.525333pt;}
.ws56{word-spacing:-1.466667pt;}
.ws37{word-spacing:-1.408000pt;}
.ws4a{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.349333pt;}
.wsbf{word-spacing:-1.333333pt;}
.ws2{word-spacing:-1.296000pt;}
.ws74{word-spacing:-1.290667pt;}
.ws77{word-spacing:-1.232000pt;}
.wsba{word-spacing:-1.226667pt;}
.ws8b{word-spacing:-1.173333pt;}
.ws27{word-spacing:-1.114667pt;}
.ws4c{word-spacing:-1.066667pt;}
.ws17{word-spacing:-1.056000pt;}
.wsa1{word-spacing:-1.013333pt;}
.ws1d{word-spacing:-0.938667pt;}
.ws71{word-spacing:-0.912000pt;}
.ws46{word-spacing:-0.880000pt;}
.ws9f{word-spacing:-0.853333pt;}
.ws1b{word-spacing:-0.821333pt;}
.wsb2{word-spacing:-0.800000pt;}
.wsc4{word-spacing:-0.746667pt;}
.wsb{word-spacing:-0.704000pt;}
.ws83{word-spacing:-0.672000pt;}
.ws31{word-spacing:-0.645333pt;}
.ws70{word-spacing:-0.624000pt;}
.ws7a{word-spacing:-0.586667pt;}
.ws9a{word-spacing:-0.533333pt;}
.ws7b{word-spacing:-0.528000pt;}
.wsbb{word-spacing:-0.480000pt;}
.ws59{word-spacing:-0.469333pt;}
.ws81{word-spacing:-0.410667pt;}
.ws58{word-spacing:-0.384000pt;}
.wsb0{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.352000pt;}
.ws2f{word-spacing:-0.293333pt;}
.ws9b{word-spacing:-0.266667pt;}
.ws94{word-spacing:-0.240000pt;}
.ws7e{word-spacing:-0.234667pt;}
.ws9e{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.176000pt;}
.ws33{word-spacing:-0.117333pt;}
.wsb3{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.064000pt;}
.ws57{word-spacing:-0.058667pt;}
.ws90{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws34{word-spacing:0.058667pt;}
.ws9c{word-spacing:0.106667pt;}
.ws1e{word-spacing:0.117333pt;}
.wsa3{word-spacing:0.160000pt;}
.ws66{word-spacing:0.176000pt;}
.ws24{word-spacing:0.234667pt;}
.ws28{word-spacing:0.293333pt;}
.ws6a{word-spacing:0.352000pt;}
.ws48{word-spacing:0.410667pt;}
.wsc3{word-spacing:0.426667pt;}
.ws32{word-spacing:0.469333pt;}
.ws63{word-spacing:0.528000pt;}
.ws2e{word-spacing:0.586667pt;}
.ws8c{word-spacing:0.645333pt;}
.ws3a{word-spacing:0.704000pt;}
.ws22{word-spacing:0.762667pt;}
.wsbc{word-spacing:0.800000pt;}
.ws2b{word-spacing:0.821333pt;}
.wsb1{word-spacing:0.853333pt;}
.ws55{word-spacing:0.880000pt;}
.ws39{word-spacing:0.938667pt;}
.ws5a{word-spacing:0.997333pt;}
.ws19{word-spacing:1.008000pt;}
.ws5b{word-spacing:1.056000pt;}
.wsb5{word-spacing:1.066667pt;}
.ws1a{word-spacing:1.082667pt;}
.ws62{word-spacing:1.114667pt;}
.ws13{word-spacing:1.173333pt;}
.ws49{word-spacing:1.232000pt;}
.ws53{word-spacing:1.290667pt;}
.ws6{word-spacing:1.349333pt;}
.ws21{word-spacing:1.408000pt;}
.ws43{word-spacing:1.466667pt;}
.ws8{word-spacing:1.525333pt;}
.ws75{word-spacing:1.584000pt;}
.ws6f{word-spacing:1.632000pt;}
.ws29{word-spacing:1.642667pt;}
.wsc6{word-spacing:1.653333pt;}
.ws7{word-spacing:1.701333pt;}
.ws5c{word-spacing:1.760000pt;}
.ws80{word-spacing:1.818667pt;}
.ws16{word-spacing:1.877333pt;}
.ws95{word-spacing:1.920000pt;}
.ws6b{word-spacing:1.936000pt;}
.ws41{word-spacing:1.994667pt;}
.ws84{word-spacing:2.053333pt;}
.ws67{word-spacing:2.080000pt;}
.ws5d{word-spacing:2.112000pt;}
.ws38{word-spacing:2.170667pt;}
.ws87{word-spacing:2.229333pt;}
.ws4d{word-spacing:2.240000pt;}
.ws3e{word-spacing:2.288000pt;}
.ws44{word-spacing:2.346667pt;}
.wse{word-spacing:2.405333pt;}
.wsb6{word-spacing:2.453333pt;}
.ws3c{word-spacing:2.522667pt;}
.ws3b{word-spacing:2.581333pt;}
.wsa{word-spacing:2.640000pt;}
.ws23{word-spacing:2.698667pt;}
.ws11{word-spacing:2.757333pt;}
.ws42{word-spacing:2.816000pt;}
.ws47{word-spacing:2.874667pt;}
.ws2c{word-spacing:2.933333pt;}
.wsb9{word-spacing:2.986667pt;}
.ws6e{word-spacing:2.992000pt;}
.ws7c{word-spacing:3.050667pt;}
.ws5f{word-spacing:3.093333pt;}
.ws73{word-spacing:3.168000pt;}
.ws76{word-spacing:3.285333pt;}
.ws54{word-spacing:3.402667pt;}
.ws7d{word-spacing:3.461333pt;}
.ws9{word-spacing:3.520000pt;}
.ws98{word-spacing:3.573333pt;}
.ws15{word-spacing:3.578667pt;}
.ws99{word-spacing:3.626667pt;}
.wsc0{word-spacing:3.680000pt;}
.wsc{word-spacing:3.696000pt;}
.wsf{word-spacing:3.754667pt;}
.wsc1{word-spacing:3.786667pt;}
.wsc2{word-spacing:3.893333pt;}
.ws6d{word-spacing:3.930667pt;}
.ws5{word-spacing:4.032000pt;}
.ws3f{word-spacing:4.106667pt;}
.ws68{word-spacing:4.320000pt;}
.ws4{word-spacing:4.512000pt;}
.ws3{word-spacing:4.560000pt;}
.ws45{word-spacing:4.810667pt;}
.ws8d{word-spacing:4.869333pt;}
.wsb7{word-spacing:4.906667pt;}
.wsb8{word-spacing:4.960000pt;}
.wsb4{word-spacing:5.013333pt;}
.ws5e{word-spacing:5.066667pt;}
.ws96{word-spacing:5.120000pt;}
.ws82{word-spacing:5.280000pt;}
.ws97{word-spacing:5.333333pt;}
.ws79{word-spacing:5.456000pt;}
.ws30{word-spacing:5.573333pt;}
.ws18{word-spacing:7.802667pt;}
._f{margin-left:-9.052800pt;}
._6{margin-left:-7.496427pt;}
._a{margin-left:-6.242240pt;}
._7{margin-left:-5.198400pt;}
._2{margin-left:-3.702720pt;}
._5{margin-left:-2.134080pt;}
._0{margin-left:-0.981120pt;}
._1{width:1.122240pt;}
._4{width:2.191680pt;}
._3{width:3.118720pt;}
._9{width:4.135893pt;}
._d{width:5.312533pt;}
._e{width:6.382613pt;}
._8{width:8.728533pt;}
._b{width:36.479893pt;}
._c{width:38.404693pt;}
.fs8{font-size:27.840000pt;}
.fs7{font-size:34.026667pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:63.007867pt;}
.y25{bottom:88.808667pt;}
.yce{bottom:88.820400pt;}
.y54{bottom:91.036800pt;}
.yac{bottom:91.090267pt;}
.y100{bottom:91.954667pt;}
.ya1{bottom:91.974667pt;}
.y154{bottom:91.999467pt;}
.ye6{bottom:92.859067pt;}
.y24{bottom:99.476667pt;}
.y80{bottom:99.543733pt;}
.y123{bottom:105.312000pt;}
.ycd{bottom:106.112400pt;}
.y153{bottom:106.666133pt;}
.y53{bottom:107.038133pt;}
.yab{bottom:107.091600pt;}
.yff{bottom:107.956000pt;}
.ya0{bottom:107.976000pt;}
.ye5{bottom:108.860400pt;}
.y23{bottom:110.144667pt;}
.y7f{bottom:115.545067pt;}
.y122{bottom:119.978667pt;}
.y22{bottom:120.812667pt;}
.y152{bottom:121.332800pt;}
.y52{bottom:123.039467pt;}
.yaa{bottom:123.092933pt;}
.yfe{bottom:123.957333pt;}
.y9f{bottom:123.977333pt;}
.ye4{bottom:124.861733pt;}
.y21{bottom:131.480667pt;}
.y7e{bottom:131.546400pt;}
.y121{bottom:134.645333pt;}
.y151{bottom:135.999467pt;}
.y51{bottom:139.040800pt;}
.ya9{bottom:139.094267pt;}
.yfd{bottom:139.958667pt;}
.y20{bottom:145.928667pt;}
.y7d{bottom:147.547733pt;}
.ycc{bottom:147.567867pt;}
.y9e{bottom:148.417067pt;}
.ye3{bottom:149.301467pt;}
.y120{bottom:149.312000pt;}
.y150{bottom:150.666133pt;}
.y50{bottom:155.042133pt;}
.yfc{bottom:155.960000pt;}
.yec{bottom:155.973333pt;}
.y1f{bottom:156.596667pt;}
.ya8{bottom:163.095467pt;}
.y7c{bottom:163.549067pt;}
.ycb{bottom:163.569200pt;}
.y11f{bottom:163.978667pt;}
.y14f{bottom:165.332800pt;}
.y4f{bottom:171.043467pt;}
.y1e{bottom:171.044667pt;}
.yfb{bottom:171.961333pt;}
.yeb{bottom:171.974667pt;}
.y11e{bottom:178.645333pt;}
.ya7{bottom:179.095467pt;}
.y7b{bottom:179.550400pt;}
.yca{bottom:179.570533pt;}
.y14e{bottom:179.999467pt;}
.y4e{bottom:187.044800pt;}
.y9d{bottom:187.067600pt;}
.ye2{bottom:187.954667pt;}
.yfa{bottom:187.962667pt;}
.yea{bottom:187.976000pt;}
.y11d{bottom:193.312000pt;}
.y14d{bottom:194.666133pt;}
.ya6{bottom:195.095467pt;}
.y7a{bottom:195.551733pt;}
.yc9{bottom:195.571867pt;}
.y4d{bottom:203.046133pt;}
.y9c{bottom:203.068933pt;}
.ye1{bottom:203.956000pt;}
.yf9{bottom:203.964000pt;}
.ye9{bottom:203.977333pt;}
.y11c{bottom:207.978667pt;}
.y14c{bottom:209.332800pt;}
.ya5{bottom:211.095467pt;}
.y79{bottom:211.553067pt;}
.yc8{bottom:211.573200pt;}
.y4c{bottom:219.047467pt;}
.y9b{bottom:219.070267pt;}
.ye0{bottom:219.957333pt;}
.yf8{bottom:219.965333pt;}
.ye8{bottom:219.978667pt;}
.y11b{bottom:222.645333pt;}
.y14b{bottom:223.999467pt;}
.y1d{bottom:225.356000pt;}
.ya4{bottom:227.095467pt;}
.y78{bottom:227.554400pt;}
.yc7{bottom:227.574533pt;}
.y4b{bottom:235.048800pt;}
.y9a{bottom:235.071600pt;}
.ydf{bottom:235.958667pt;}
.yf7{bottom:235.966667pt;}
.y11a{bottom:237.312000pt;}
.y14a{bottom:238.666133pt;}
.y1c{bottom:241.357333pt;}
.ya3{bottom:243.095467pt;}
.y77{bottom:243.555733pt;}
.yc6{bottom:243.575867pt;}
.ye7{bottom:244.418267pt;}
.y4a{bottom:251.050133pt;}
.y99{bottom:251.072933pt;}
.yde{bottom:251.960000pt;}
.yf6{bottom:251.968000pt;}
.y119{bottom:251.978667pt;}
.y149{bottom:253.332800pt;}
.y1b{bottom:257.358667pt;}
.ya2{bottom:259.095467pt;}
.y76{bottom:259.557067pt;}
.yc5{bottom:259.577200pt;}
.y118{bottom:266.645333pt;}
.y49{bottom:267.051467pt;}
.y98{bottom:267.074267pt;}
.ydd{bottom:267.961333pt;}
.yf5{bottom:267.969333pt;}
.y148{bottom:267.999467pt;}
.y1a{bottom:273.360000pt;}
.y75{bottom:275.558400pt;}
.yc4{bottom:275.578533pt;}
.y117{bottom:281.312000pt;}
.y147{bottom:282.666133pt;}
.y48{bottom:283.052800pt;}
.y97{bottom:283.075600pt;}
.ydc{bottom:283.962667pt;}
.yf4{bottom:283.970667pt;}
.y19{bottom:289.361333pt;}
.y74{bottom:291.559733pt;}
.yc3{bottom:291.579867pt;}
.y116{bottom:295.978667pt;}
.y146{bottom:297.332800pt;}
.y47{bottom:299.054133pt;}
.y96{bottom:299.076933pt;}
.ydb{bottom:299.964000pt;}
.yf3{bottom:299.972000pt;}
.y18{bottom:305.362667pt;}
.y73{bottom:307.561067pt;}
.yc2{bottom:307.581200pt;}
.y115{bottom:310.645333pt;}
.y145{bottom:311.999467pt;}
.y46{bottom:315.055467pt;}
.y95{bottom:315.078267pt;}
.yda{bottom:315.965333pt;}
.yf2{bottom:315.973333pt;}
.y17{bottom:321.364000pt;}
.y72{bottom:323.562400pt;}
.yc1{bottom:323.582533pt;}
.y114{bottom:325.312000pt;}
.y144{bottom:326.666133pt;}
.y45{bottom:331.056800pt;}
.y94{bottom:331.079600pt;}
.yd9{bottom:331.966667pt;}
.yf1{bottom:331.974667pt;}
.y16{bottom:337.365333pt;}
.y71{bottom:339.563733pt;}
.yc0{bottom:339.583867pt;}
.y113{bottom:339.978667pt;}
.y143{bottom:341.332800pt;}
.y44{bottom:347.058133pt;}
.y93{bottom:347.080933pt;}
.yd8{bottom:347.968000pt;}
.yf0{bottom:347.976000pt;}
.y15{bottom:353.366667pt;}
.y112{bottom:354.645333pt;}
.y70{bottom:355.565067pt;}
.ybf{bottom:355.585200pt;}
.y142{bottom:355.999467pt;}
.y43{bottom:363.059467pt;}
.y92{bottom:363.082267pt;}
.yd7{bottom:363.969333pt;}
.yef{bottom:363.977333pt;}
.y111{bottom:369.312000pt;}
.y14{bottom:369.368000pt;}
.y141{bottom:370.666133pt;}
.y6f{bottom:371.566400pt;}
.ybe{bottom:371.586533pt;}
.y42{bottom:379.060800pt;}
.y91{bottom:379.083600pt;}
.yd6{bottom:379.970667pt;}
.yee{bottom:379.978667pt;}
.y110{bottom:383.978667pt;}
.y140{bottom:385.332800pt;}
.y13{bottom:385.369333pt;}
.y6e{bottom:387.567733pt;}
.ybd{bottom:387.587867pt;}
.y41{bottom:395.062133pt;}
.y90{bottom:395.084933pt;}
.yd5{bottom:395.972000pt;}
.y10f{bottom:398.645333pt;}
.y13f{bottom:399.999467pt;}
.y12{bottom:401.370667pt;}
.y6d{bottom:403.569067pt;}
.ybc{bottom:403.589200pt;}
.yed{bottom:404.418267pt;}
.y40{bottom:411.063467pt;}
.y8f{bottom:411.086267pt;}
.yd4{bottom:411.973333pt;}
.y10e{bottom:413.312000pt;}
.y13e{bottom:414.666133pt;}
.y11{bottom:417.372000pt;}
.y6c{bottom:419.570400pt;}
.ybb{bottom:419.590533pt;}
.y3f{bottom:427.064800pt;}
.y8e{bottom:427.087600pt;}
.yd3{bottom:427.974667pt;}
.y10d{bottom:427.978667pt;}
.y13d{bottom:429.332800pt;}
.y10{bottom:433.373333pt;}
.y6b{bottom:435.571733pt;}
.yba{bottom:435.591867pt;}
.y10c{bottom:442.645333pt;}
.y3e{bottom:443.066133pt;}
.y8d{bottom:443.088933pt;}
.yd2{bottom:443.976000pt;}
.y13c{bottom:443.999467pt;}
.yf{bottom:449.374667pt;}
.y6a{bottom:451.573067pt;}
.yb9{bottom:451.593200pt;}
.y10b{bottom:457.312000pt;}
.y13b{bottom:458.666133pt;}
.y3d{bottom:459.067467pt;}
.y8c{bottom:459.090267pt;}
.yd1{bottom:459.977333pt;}
.ye{bottom:465.376000pt;}
.y69{bottom:467.574400pt;}
.yb8{bottom:467.594533pt;}
.y10a{bottom:471.978667pt;}
.y13a{bottom:473.332800pt;}
.y3c{bottom:475.068800pt;}
.y8b{bottom:475.091600pt;}
.yd0{bottom:475.978667pt;}
.yd{bottom:481.377333pt;}
.y68{bottom:483.575733pt;}
.yb7{bottom:483.595867pt;}
.y109{bottom:486.645333pt;}
.y139{bottom:487.999467pt;}
.y3b{bottom:491.070133pt;}
.y8a{bottom:491.092933pt;}
.yc{bottom:497.378667pt;}
.y67{bottom:499.577067pt;}
.yb6{bottom:499.597200pt;}
.ycf{bottom:500.418267pt;}
.y108{bottom:501.312000pt;}
.y138{bottom:502.666133pt;}
.y3a{bottom:507.071467pt;}
.y89{bottom:507.094267pt;}
.yb{bottom:513.380000pt;}
.y66{bottom:515.578400pt;}
.yb5{bottom:515.595867pt;}
.y107{bottom:515.978667pt;}
.y137{bottom:517.332800pt;}
.y39{bottom:523.072800pt;}
.y106{bottom:530.645333pt;}
.y88{bottom:531.095467pt;}
.y65{bottom:531.579733pt;}
.yb4{bottom:531.597200pt;}
.y136{bottom:531.999467pt;}
.ya{bottom:537.820267pt;}
.y38{bottom:539.074133pt;}
.y105{bottom:545.312000pt;}
.y135{bottom:546.666133pt;}
.y87{bottom:547.095467pt;}
.y64{bottom:547.581067pt;}
.yb3{bottom:547.598533pt;}
.y37{bottom:555.075467pt;}
.y104{bottom:559.978667pt;}
.y134{bottom:561.332800pt;}
.y86{bottom:563.095467pt;}
.y63{bottom:563.582400pt;}
.y36{bottom:571.076800pt;}
.yb2{bottom:571.599733pt;}
.y103{bottom:574.645333pt;}
.y133{bottom:575.999467pt;}
.y85{bottom:579.095467pt;}
.y62{bottom:579.583733pt;}
.y35{bottom:587.078133pt;}
.yb1{bottom:587.599733pt;}
.y102{bottom:589.312000pt;}
.y132{bottom:590.666133pt;}
.y84{bottom:595.095467pt;}
.y61{bottom:595.585067pt;}
.y34{bottom:603.079467pt;}
.yb0{bottom:603.599733pt;}
.y131{bottom:605.332800pt;}
.y83{bottom:611.095467pt;}
.y60{bottom:611.586400pt;}
.y101{bottom:612.418267pt;}
.y33{bottom:619.080800pt;}
.yaf{bottom:619.599733pt;}
.y130{bottom:619.999467pt;}
.y82{bottom:627.095467pt;}
.y5f{bottom:627.587733pt;}
.y12f{bottom:634.666133pt;}
.y32{bottom:635.082133pt;}
.yae{bottom:635.599733pt;}
.y81{bottom:643.095467pt;}
.y5e{bottom:643.589067pt;}
.y9{bottom:646.420267pt;}
.y12e{bottom:649.332800pt;}
.y31{bottom:651.083467pt;}
.yad{bottom:651.599733pt;}
.y5d{bottom:659.590400pt;}
.y8{bottom:659.752267pt;}
.y12d{bottom:663.999467pt;}
.y30{bottom:667.084800pt;}
.y7{bottom:673.084267pt;}
.y5c{bottom:675.591733pt;}
.y12c{bottom:678.666133pt;}
.y2f{bottom:683.086133pt;}
.y6{bottom:686.416267pt;}
.y5b{bottom:691.593067pt;}
.y12b{bottom:693.332800pt;}
.y2e{bottom:699.087467pt;}
.y5{bottom:699.748267pt;}
.y5a{bottom:707.594400pt;}
.y12a{bottom:707.999467pt;}
.y4{bottom:713.080267pt;}
.y2d{bottom:715.088800pt;}
.y129{bottom:722.666133pt;}
.y59{bottom:723.595733pt;}
.y2c{bottom:731.090133pt;}
.y128{bottom:737.332800pt;}
.y58{bottom:739.597067pt;}
.y3{bottom:742.413600pt;}
.y2b{bottom:747.091467pt;}
.y127{bottom:751.999467pt;}
.y57{bottom:755.598400pt;}
.y2a{bottom:763.092800pt;}
.y126{bottom:766.666133pt;}
.y2{bottom:768.639467pt;}
.y56{bottom:771.599733pt;}
.y29{bottom:779.094133pt;}
.y125{bottom:781.332800pt;}
.y1{bottom:791.039333pt;}
.y28{bottom:795.095467pt;}
.y124{bottom:795.999467pt;}
.y55{bottom:796.039333pt;}
.y27{bottom:830.609600pt;}
.h11{height:21.102720pt;}
.he{height:22.032000pt;}
.h8{height:27.197917pt;}
.h7{height:27.216146pt;}
.ha{height:29.472656pt;}
.h12{height:34.921875pt;}
.h5{height:35.367188pt;}
.h4{height:36.384000pt;}
.hf{height:37.872000pt;}
.h9{height:39.296875pt;}
.hc{height:40.426667pt;}
.h13{height:42.080000pt;}
.h6{height:44.469333pt;}
.hd{height:45.162880pt;}
.h10{height:45.173547pt;}
.hb{height:46.288000pt;}
.h3{height:48.512000pt;}
.h2{height:49.514062pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:75.590533pt;}
.x7{left:90.711467pt;}
.x1{left:94.488133pt;}
.x8{left:109.610267pt;}
.x3{left:113.385867pt;}
.x2{left:298.582667pt;}
.x6{left:354.354267pt;}
.x5{left:514.303200pt;}
}




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