
    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_dd170f83846bcb7817e4ebe5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_e7330ad32c9d06fbee27d128.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f844a91e601a7af8983a9acd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_42070f0fc88cfc52475ad079.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_8aa0d2e30c4843af19b1611b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_54377b9643f5d5252e276d04.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_2f03ff7528ae939be88b317f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_1f299121837c6bca70e4064a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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);}
.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);}
.v1{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.ls41{letter-spacing:-1.008000px;}
.ls4d{letter-spacing:-0.936000px;}
.ls63{letter-spacing:-0.864000px;}
.ls57{letter-spacing:-0.792000px;}
.ls3e{letter-spacing:-0.720000px;}
.ls4f{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls4c{letter-spacing:-0.504000px;}
.ls4e{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.322800px;}
.ls1d{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.072000px;}
.ls3f{letter-spacing:-0.000006px;}
.ls19{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.000003px;}
.ls3{letter-spacing:0.072000px;}
.ls65{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.252000px;}
.ls1b{letter-spacing:0.256200px;}
.ls60{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.350640px;}
.ls1{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.378600px;}
.ls61{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls3c{letter-spacing:0.576000px;}
.ls40{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.840000px;}
.ls49{letter-spacing:0.864000px;}
.ls5d{letter-spacing:0.936000px;}
.ls48{letter-spacing:1.440000px;}
.ls55{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.576000px;}
.ls5{letter-spacing:3.600000px;}
.ls62{letter-spacing:3.780000px;}
.ls46{letter-spacing:4.320000px;}
.ls5f{letter-spacing:4.500000px;}
.ls5a{letter-spacing:5.040000px;}
.ls5c{letter-spacing:5.160000px;}
.ls43{letter-spacing:5.760000px;}
.ls52{letter-spacing:5.940000px;}
.ls11{letter-spacing:6.480000px;}
.ls38{letter-spacing:7.200000px;}
.lsa{letter-spacing:7.920000px;}
.ls15{letter-spacing:8.640000px;}
.ls24{letter-spacing:9.360000px;}
.ls2d{letter-spacing:9.480000px;}
.ls25{letter-spacing:10.080000px;}
.ls26{letter-spacing:10.260000px;}
.ls53{letter-spacing:10.800000px;}
.ls4a{letter-spacing:11.520000px;}
.ls5b{letter-spacing:12.240000px;}
.ls14{letter-spacing:12.960000px;}
.lse{letter-spacing:13.680000px;}
.lsd{letter-spacing:13.860000px;}
.ls16{letter-spacing:14.400000px;}
.ls32{letter-spacing:14.580000px;}
.ls28{letter-spacing:17.280000px;}
.ls29{letter-spacing:17.460000px;}
.ls59{letter-spacing:18.720000px;}
.ls39{letter-spacing:19.440000px;}
.ls2b{letter-spacing:20.160000px;}
.ls4b{letter-spacing:20.880000px;}
.ls8{letter-spacing:21.600000px;}
.ls44{letter-spacing:22.320000px;}
.ls50{letter-spacing:23.040000px;}
.ls2a{letter-spacing:23.760000px;}
.ls17{letter-spacing:25.200000px;}
.ls18{letter-spacing:25.920000px;}
.lsb{letter-spacing:26.640000px;}
.ls54{letter-spacing:27.360000px;}
.ls6{letter-spacing:28.800000px;}
.ls45{letter-spacing:30.240000px;}
.ls13{letter-spacing:30.960000px;}
.ls58{letter-spacing:31.140000px;}
.ls37{letter-spacing:33.840000px;}
.ls12{letter-spacing:35.280000px;}
.ls51{letter-spacing:36.000000px;}
.ls30{letter-spacing:38.880000px;}
.ls27{letter-spacing:40.320000px;}
.ls2f{letter-spacing:41.760000px;}
.ls9{letter-spacing:41.940000px;}
.ls2e{letter-spacing:42.480000px;}
.ls42{letter-spacing:46.080000px;}
.ls7{letter-spacing:47.520000px;}
.ls5e{letter-spacing:52.560000px;}
.ls47{letter-spacing:53.280000px;}
.ls35{letter-spacing:54.000000px;}
.ls3a{letter-spacing:59.760000px;}
.ls23{letter-spacing:66.240000px;}
.ls22{letter-spacing:66.360000px;}
.ls21{letter-spacing:66.420000px;}
.ls33{letter-spacing:66.960000px;}
.ls31{letter-spacing:69.120000px;}
.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;}
}
.ws0{word-spacing:-26.424000px;}
.ws3{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.060000px;}
.wsb{word-spacing:-20.737200px;}
.ws1a{word-spacing:-18.936000px;}
.ws11{word-spacing:-18.720000px;}
.wse{word-spacing:-18.576000px;}
.ws14{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1b{word-spacing:-18.000003px;}
.ws4{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.999994px;}
.wsf{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.640000px;}
.ws13{word-spacing:-17.496000px;}
.ws16{word-spacing:-17.352000px;}
.ws15{word-spacing:-17.280000px;}
.ws17{word-spacing:-17.208000px;}
.ws12{word-spacing:-16.992000px;}
.ws1{word-spacing:-15.226440px;}
.ws19{word-spacing:-12.060000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._4{width:1.488000px;}
._e{width:2.652000px;}
._2{width:3.960000px;}
._10{width:5.592000px;}
._f{width:6.912000px;}
._a{width:7.992000px;}
._18{width:9.072000px;}
._1b{width:10.908000px;}
._17{width:11.916000px;}
._c{width:13.176000px;}
._d{width:14.304000px;}
._2a{width:15.312000px;}
._1c{width:16.440000px;}
._1{width:18.648000px;}
._29{width:19.656000px;}
._8{width:20.700000px;}
._7{width:22.044000px;}
._28{width:23.304000px;}
._19{width:24.480000px;}
._1a{width:25.536000px;}
._b{width:26.784000px;}
._5{width:27.960000px;}
._3{width:29.280000px;}
._16{width:30.792000px;}
._15{width:31.800000px;}
._27{width:33.060000px;}
._21{width:34.392000px;}
._11{width:35.424000px;}
._2e{width:36.936000px;}
._39{width:37.980000px;}
._1f{width:39.036000px;}
._1e{width:40.716000px;}
._9{width:41.760000px;}
._3a{width:43.176000px;}
._24{width:45.588000px;}
._6{width:47.376000px;}
._2f{width:49.248000px;}
._26{width:53.172000px;}
._20{width:54.300000px;}
._3b{width:55.440000px;}
._22{width:59.004000px;}
._23{width:60.732000px;}
._3c{width:62.148000px;}
._2d{width:63.360000px;}
._2c{width:64.368000px;}
._1d{width:66.276000px;}
._13{width:67.392000px;}
._12{width:69.348000px;}
._2b{width:70.596000px;}
._14{width:72.000000px;}
._25{width:89.904000px;}
._30{width:92.376000px;}
._31{width:93.516000px;}
._35{width:94.752000px;}
._34{width:95.976000px;}
._37{width:102.888000px;}
._36{width:103.896000px;}
._32{width:132.264000px;}
._33{width:218.292000px;}
._38{width:302.544000px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc9{color:rgb(31,31,31);}
.fc8{color:rgb(32,33,36);}
.fc7{color:rgb(51,51,51);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y108{bottom:-28.620000px;}
.y10d{bottom:-13.500000px;}
.y10f{bottom:-12.960000px;}
.y107{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:3.600000px;}
.y9a{bottom:3.960000px;}
.y9f{bottom:4.005000px;}
.yc4{bottom:4.140000px;}
.yc1{bottom:5.040000px;}
.yee{bottom:5.940000px;}
.y3{bottom:7.020000px;}
.y10c{bottom:7.200000px;}
.y10e{bottom:7.740000px;}
.y7{bottom:11.340000px;}
.y106{bottom:12.780000px;}
.yb9{bottom:14.580000px;}
.y115{bottom:16.020000px;}
.y130{bottom:16.380000px;}
.y11e{bottom:19.620000px;}
.y127{bottom:22.140000px;}
.ybc{bottom:24.660000px;}
.ye8{bottom:24.690000px;}
.y2{bottom:28.260000px;}
.y12b{bottom:30.780000px;}
.y119{bottom:32.400000px;}
.y105{bottom:33.480000px;}
.y122{bottom:33.840000px;}
.y132{bottom:34.965000px;}
.yb8{bottom:35.280000px;}
.y113{bottom:36.720000px;}
.y12f{bottom:37.080000px;}
.y11d{bottom:40.314000px;}
.y126{bottom:42.840000px;}
.ybb{bottom:45.360000px;}
.y134{bottom:45.405000px;}
.yb5{bottom:45.720000px;}
.y129{bottom:51.480000px;}
.y117{bottom:53.094000px;}
.y104{bottom:54.180000px;}
.y120{bottom:54.540000px;}
.yb7{bottom:55.980000px;}
.y112{bottom:57.420000px;}
.y12e{bottom:57.780000px;}
.y11c{bottom:61.014000px;}
.y125{bottom:63.540000px;}
.ybd{bottom:66.060000px;}
.y133{bottom:66.105000px;}
.y8{bottom:71.136000px;}
.y12a{bottom:72.180000px;}
.y118{bottom:73.794000px;}
.y121{bottom:75.240000px;}
.yb6{bottom:76.680000px;}
.y111{bottom:78.120000px;}
.y12d{bottom:78.480000px;}
.y11b{bottom:81.714000px;}
.y124{bottom:84.240000px;}
.y6{bottom:86.796000px;}
.y114{bottom:98.820000px;}
.y12c{bottom:99.180000px;}
.y11a{bottom:102.414000px;}
.y123{bottom:104.970000px;}
.y116{bottom:117.036000px;}
.y96{bottom:121.176000px;}
.y83{bottom:126.396000px;}
.yc2{bottom:129.996000px;}
.y35{bottom:130.176000px;}
.yfb{bottom:131.256000px;}
.ye6{bottom:140.976000px;}
.y65{bottom:141.876000px;}
.y34{bottom:150.870000px;}
.yc0{bottom:151.410000px;}
.y95{bottom:152.310000px;}
.y82{bottom:157.530000px;}
.y14a{bottom:159.330000px;}
.y64{bottom:162.570000px;}
.yfa{bottom:164.550000px;}
.y33{bottom:171.570000px;}
.ye5{bottom:171.930000px;}
.ybf{bottom:173.910000px;}
.y63{bottom:183.270000px;}
.y14b{bottom:184.350000px;}
.yf9{bottom:185.070000px;}
.y81{bottom:188.490000px;}
.y149{bottom:190.290000px;}
.y32{bottom:192.270000px;}
.ybe{bottom:195.510000px;}
.ye4{bottom:203.070000px;}
.y62{bottom:203.970000px;}
.y94{bottom:214.410000px;}
.yb4{bottom:216.930000px;}
.y80{bottom:219.630000px;}
.y148{bottom:221.430000px;}
.y61{bottom:224.670000px;}
.y31{bottom:225.570000px;}
.yf8{bottom:227.190000px;}
.ye3{bottom:234.030000px;}
.y110{bottom:237.270000px;}
.yba{bottom:238.350000px;}
.y60{bottom:245.370000px;}
.yf7{bottom:248.610000px;}
.y30{bottom:249.870000px;}
.y7f{bottom:250.590000px;}
.y147{bottom:252.390000px;}
.ye2{bottom:265.170000px;}
.y5f{bottom:266.070000px;}
.y2f{bottom:273.990000px;}
.y93{bottom:276.510000px;}
.y7e{bottom:281.550000px;}
.y146{bottom:283.530000px;}
.y5e{bottom:286.770000px;}
.yf6{bottom:290.730000px;}
.ye1{bottom:296.130000px;}
.y2e{bottom:298.110000px;}
.y5d{bottom:307.470000px;}
.yf5{bottom:312.150000px;}
.y7d{bottom:312.690000px;}
.y145{bottom:314.490000px;}
.yb3{bottom:325.830000px;}
.ye0{bottom:327.270000px;}
.y5c{bottom:328.170000px;}
.yf4{bottom:333.570000px;}
.y2d{bottom:334.290000px;}
.y92{bottom:338.655000px;}
.y7c{bottom:343.695000px;}
.y144{bottom:345.675000px;}
.yb2{bottom:346.575000px;}
.y5b{bottom:348.915000px;}
.yf3{bottom:355.035000px;}
.y2c{bottom:357.915000px;}
.ydf{bottom:358.275000px;}
.y103{bottom:366.015000px;}
.yb1{bottom:367.275000px;}
.y5a{bottom:369.615000px;}
.y7b{bottom:374.835000px;}
.yf2{bottom:376.635000px;}
.y2b{bottom:378.615000px;}
.y143{bottom:378.975000px;}
.yb0{bottom:387.975000px;}
.yde{bottom:389.415000px;}
.y59{bottom:390.315000px;}
.y10b{bottom:391.575000px;}
.yf1{bottom:398.055000px;}
.y2a{bottom:399.315000px;}
.y91{bottom:400.755000px;}
.y7a{bottom:405.795000px;}
.yaf{bottom:408.675000px;}
.y58{bottom:411.015000px;}
.y142{bottom:412.815000px;}
.y109{bottom:416.595000px;}
.yf0{bottom:419.475000px;}
.y29{bottom:420.015000px;}
.ydd{bottom:420.375000px;}
.yae{bottom:429.375000px;}
.y57{bottom:431.715000px;}
.y79{bottom:436.935000px;}
.y28{bottom:440.715000px;}
.yef{bottom:440.895000px;}
.y102{bottom:442.155000px;}
.y141{bottom:443.955000px;}
.ydc{bottom:451.515000px;}
.y56{bottom:452.415000px;}
.yad{bottom:460.335000px;}
.y27{bottom:461.415000px;}
.yed{bottom:462.315000px;}
.y90{bottom:462.855000px;}
.y78{bottom:467.895000px;}
.y55{bottom:473.115000px;}
.y140{bottom:474.915000px;}
.y26{bottom:482.115000px;}
.ydb{bottom:482.475000px;}
.y101{bottom:483.555000px;}
.yec{bottom:485.895000px;}
.yac{bottom:491.475000px;}
.y54{bottom:493.815000px;}
.y77{bottom:499.035000px;}
.y25{bottom:502.815000px;}
.y100{bottom:504.255000px;}
.y13f{bottom:506.055000px;}
.yeb{bottom:507.495000px;}
.yda{bottom:513.615000px;}
.y53{bottom:514.515000px;}
.yab{bottom:522.435000px;}
.y24{bottom:523.515000px;}
.y8f{bottom:524.955000px;}
.yea{bottom:529.095000px;}
.y76{bottom:529.995000px;}
.y52{bottom:535.215000px;}
.y13e{bottom:537.015000px;}
.y23{bottom:544.215000px;}
.yd9{bottom:544.575000px;}
.yff{bottom:545.655000px;}
.ye9{bottom:550.515000px;}
.yaa{bottom:553.575000px;}
.y51{bottom:555.915000px;}
.y75{bottom:561.135000px;}
.y22{bottom:564.915000px;}
.yfe{bottom:566.355000px;}
.y13d{bottom:568.155000px;}
.yd8{bottom:575.715000px;}
.y50{bottom:576.615000px;}
.ya9{bottom:584.535000px;}
.y21{bottom:585.615000px;}
.y8e{bottom:587.055000px;}
.y74{bottom:592.095000px;}
.ye7{bottom:592.635000px;}
.y4f{bottom:597.315000px;}
.y13c{bottom:599.115000px;}
.y20{bottom:606.345000px;}
.yd7{bottom:606.705000px;}
.yfd{bottom:607.785000px;}
.ya8{bottom:615.705000px;}
.y4e{bottom:618.045000px;}
.y73{bottom:623.265000px;}
.y1f{bottom:627.045000px;}
.yfc{bottom:628.485000px;}
.y13b{bottom:630.285000px;}
.yd6{bottom:637.845000px;}
.ya7{bottom:646.665000px;}
.y1e{bottom:647.745000px;}
.y8d{bottom:649.185000px;}
.y4d{bottom:651.345000px;}
.y72{bottom:654.225000px;}
.y13a{bottom:661.245000px;}
.y1d{bottom:668.445000px;}
.yd5{bottom:668.805000px;}
.y4c{bottom:674.925000px;}
.ya6{bottom:677.805000px;}
.y8c{bottom:680.145000px;}
.y71{bottom:685.365000px;}
.y1c{bottom:689.145000px;}
.y139{bottom:692.385000px;}
.y4b{bottom:695.625000px;}
.yd4{bottom:699.945000px;}
.ya5{bottom:708.765000px;}
.y1b{bottom:709.845000px;}
.y8b{bottom:711.285000px;}
.y4a{bottom:716.325000px;}
.y138{bottom:723.345000px;}
.y1a{bottom:730.545000px;}
.yd3{bottom:730.905000px;}
.ya4{bottom:739.905000px;}
.y8a{bottom:742.245000px;}
.y70{bottom:747.465000px;}
.y49{bottom:749.805000px;}
.y19{bottom:751.245000px;}
.y137{bottom:754.485000px;}
.yd2{bottom:762.045000px;}
.ya3{bottom:770.865000px;}
.y18{bottom:771.945000px;}
.y48{bottom:773.385000px;}
.y6f{bottom:778.425000px;}
.y136{bottom:785.445000px;}
.y17{bottom:792.645000px;}
.yd1{bottom:793.005000px;}
.y47{bottom:794.085000px;}
.ya2{bottom:802.005000px;}
.y89{bottom:804.345000px;}
.y6e{bottom:809.565000px;}
.y16{bottom:813.345000px;}
.y46{bottom:814.785000px;}
.y135{bottom:818.925000px;}
.yd0{bottom:824.145000px;}
.ya1{bottom:831.705000px;}
.y15{bottom:834.045000px;}
.y45{bottom:835.305000px;}
.y131{bottom:839.265000px;}
.y6d{bottom:840.525000px;}
.ya0{bottom:847.905000px;}
.y14{bottom:854.745000px;}
.ycf{bottom:855.105000px;}
.y44{bottom:856.005000px;}
.y88{bottom:866.445000px;}
.y9e{bottom:869.325000px;}
.y6c{bottom:871.710000px;}
.y13{bottom:875.490000px;}
.y43{bottom:876.750000px;}
.yce{bottom:886.110000px;}
.y9d{bottom:890.790000px;}
.y12{bottom:896.190000px;}
.y42{bottom:897.450000px;}
.y6b{bottom:902.670000px;}
.y9c{bottom:912.390000px;}
.ycd{bottom:917.250000px;}
.y41{bottom:918.150000px;}
.y128{bottom:922.830000px;}
.y11{bottom:927.150000px;}
.y87{bottom:928.590000px;}
.y6a{bottom:933.810000px;}
.y40{bottom:938.850000px;}
.ycc{bottom:948.210000px;}
.y9b{bottom:955.230000px;}
.y10{bottom:957.930000px;}
.y3f{bottom:959.550000px;}
.y69{bottom:964.770000px;}
.y99{bottom:976.650000px;}
.ycb{bottom:979.350000px;}
.y3e{bottom:980.250000px;}
.yf{bottom:981.690000px;}
.y86{bottom:990.690000px;}
.y68{bottom:995.910000px;}
.y3d{bottom:1000.950000px;}
.y98{bottom:1005.090000px;}
.ye{bottom:1005.450000px;}
.yca{bottom:1012.650000px;}
.y3c{bottom:1021.650000px;}
.y67{bottom:1026.870000px;}
.y97{bottom:1029.030000px;}
.yd{bottom:1031.910000px;}
.yc9{bottom:1032.990000px;}
.y11f{bottom:1039.830000px;}
.y3b{bottom:1042.350000px;}
.y85{bottom:1052.790000px;}
.yc8{bottom:1054.590000px;}
.yc{bottom:1059.630000px;}
.y66{bottom:1060.170000px;}
.y3a{bottom:1063.050000px;}
.yc7{bottom:1076.190000px;}
.y39{bottom:1083.750000px;}
.yb{bottom:1087.530000px;}
.yc6{bottom:1097.790000px;}
.y38{bottom:1104.450000px;}
.y84{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.yc5{bottom:1119.390000px;}
.y37{bottom:1125.150000px;}
.yc3{bottom:1141.020000px;}
.y9{bottom:1143.000000px;}
.y36{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h1b{height:20.340000px;}
.hd{height:20.700000px;}
.he{height:20.736000px;}
.h14{height:20.880000px;}
.h15{height:20.916000px;}
.h13{height:21.780000px;}
.h19{height:22.680000px;}
.h1c{height:23.940000px;}
.h1d{height:24.480000px;}
.h5{height:27.000000px;}
.h7{height:38.115352px;}
.h8{height:39.760312px;}
.h18{height:41.400000px;}
.h17{height:41.436000px;}
.hc{height:50.484375px;}
.h16{height:52.171875px;}
.h2{height:53.460000px;}
.hf{height:54.596250px;}
.hb{height:59.066719px;}
.ha{height:59.343750px;}
.h9{height:62.261719px;}
.h12{height:65.475352px;}
.h4{height:65.884219px;}
.h1a{height:70.920000px;}
.h6{height:72.846211px;}
.h3{height:75.726562px;}
.h11{height:82.800000px;}
.h22{height:82.836000px;}
.h10{height:104.220000px;}
.h21{height:115.920000px;}
.h1f{height:119.160000px;}
.h20{height:121.716000px;}
.h1e{height:127.656000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w25{width:21.600000px;}
.w30{width:21.960000px;}
.w23{width:28.980000px;}
.w2e{width:29.160000px;}
.w24{width:30.420000px;}
.w22{width:30.600000px;}
.w2f{width:30.780000px;}
.w27{width:36.540000px;}
.w32{width:36.720000px;}
.w19{width:38.520000px;}
.w2a{width:38.700000px;}
.w28{width:38.880000px;}
.w26{width:40.716000px;}
.w31{width:41.076000px;}
.w12{width:41.760000px;}
.wa{width:43.920000px;}
.w13{width:50.220000px;}
.w14{width:52.380000px;}
.w15{width:52.416000px;}
.w16{width:52.560000px;}
.w1d{width:60.480000px;}
.w10{width:60.840000px;}
.w1e{width:61.920000px;}
.w20{width:62.100000px;}
.wf{width:63.180000px;}
.w1f{width:63.576000px;}
.w1b{width:64.296000px;}
.w2c{width:64.476000px;}
.w2d{width:64.656000px;}
.w11{width:65.196000px;}
.w21{width:68.040000px;}
.w7{width:73.260000px;}
.w5{width:106.416000px;}
.wd{width:145.980000px;}
.we{width:158.790000px;}
.wb{width:169.410000px;}
.wc{width:190.650000px;}
.w18{width:210.810000px;}
.w9{width:254.010000px;}
.w1a{width:275.430000px;}
.w29{width:275.610000px;}
.w2b{width:275.790000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w1c{width:320.070000px;}
.w8{width:371.235000px;}
.w17{width:434.235000px;}
.w2{width:498.675000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x5e{left:-5.580000px;}
.x0{left:0.000000px;}
.x2e{left:1.440000px;}
.x51{left:2.520000px;}
.x52{left:6.480000px;}
.x24{left:7.560000px;}
.x2d{left:9.354000px;}
.x42{left:11.520000px;}
.x2b{left:12.780000px;}
.x41{left:14.400000px;}
.x37{left:16.785000px;}
.x5d{left:18.180000px;}
.x5f{left:19.260000px;}
.x40{left:20.334000px;}
.x3a{left:21.420000px;}
.x3c{left:23.580000px;}
.x32{left:25.740000px;}
.x38{left:27.000000px;}
.x1e{left:28.080000px;}
.x54{left:30.240000px;}
.x23{left:32.220000px;}
.x59{left:34.020000px;}
.x48{left:35.460000px;}
.x34{left:38.880000px;}
.x31{left:39.960000px;}
.x9{left:44.820000px;}
.x35{left:54.900000px;}
.x2f{left:57.054000px;}
.x4a{left:64.665000px;}
.x22{left:70.020000px;}
.x49{left:71.685000px;}
.x20{left:76.860000px;}
.x4d{left:79.965000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x4c{left:88.965000px;}
.x4e{left:91.125000px;}
.x25{left:92.520000px;}
.x4b{left:94.185000px;}
.x2a{left:96.156000px;}
.x1d{left:98.676000px;}
.x26{left:101.520000px;}
.x5{left:106.415987px;}
.x45{left:107.676000px;}
.x15{left:113.435987px;}
.xc{left:115.415987px;}
.x53{left:117.180000px;}
.x47{left:118.485000px;}
.x50{left:120.456000px;}
.xb{left:121.535987px;}
.x61{left:127.655987px;}
.x28{left:129.095987px;}
.x29{left:139.715987px;}
.x2c{left:140.796000px;}
.x1b{left:146.015987px;}
.x17{left:148.895987px;}
.x18{left:153.029987px;}
.x13{left:159.509987px;}
.x46{left:160.950000px;}
.x14{left:171.569987px;}
.x1f{left:172.830000px;}
.x10{left:175.889987px;}
.x16{left:183.089987px;}
.x2{left:197.310000px;}
.x19{left:206.849987px;}
.xf{left:216.389987px;}
.x11{left:241.049987px;}
.x1c{left:251.849987px;}
.x44{left:269.669987px;}
.x1{left:278.175000px;}
.x7{left:297.795000px;}
.x4f{left:299.414987px;}
.x12{left:302.834987px;}
.x30{left:310.935000px;}
.x39{left:374.835000px;}
.x63{left:376.274987px;}
.x8{left:390.855000px;}
.xd{left:419.654987px;}
.x3b{left:436.395000px;}
.xe{left:457.094987px;}
.x62{left:478.364987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x33{left:502.305000px;}
.x5a{left:533.445000px;}
.x21{left:544.965000px;}
.x55{left:563.505000px;}
.x60{left:594.825000px;}
.x3d{left:595.905000px;}
.x56{left:626.505000px;}
.x36{left:649.005000px;}
.x57{left:690.990000px;}
.x3e{left:702.150000px;}
.x5b{left:722.490000px;}
.x1a{left:728.069987px;}
.x43{left:730.229987px;}
.x58{left:753.990000px;}
.x3f{left:755.430000px;}
.x5c{left:785.490000px;}
.x27{left:807.989987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls41{letter-spacing:-0.896000pt;}
.ls4d{letter-spacing:-0.832000pt;}
.ls63{letter-spacing:-0.768000pt;}
.ls57{letter-spacing:-0.704000pt;}
.ls3e{letter-spacing:-0.640000pt;}
.ls4f{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls4c{letter-spacing:-0.448000pt;}
.ls4e{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.286933pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.064000pt;}
.ls3f{letter-spacing:-0.000005pt;}
.ls19{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.000003pt;}
.ls3{letter-spacing:0.064000pt;}
.ls65{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.224000pt;}
.ls1b{letter-spacing:0.227733pt;}
.ls60{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.311680pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.336533pt;}
.ls61{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls3c{letter-spacing:0.512000pt;}
.ls40{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls49{letter-spacing:0.768000pt;}
.ls5d{letter-spacing:0.832000pt;}
.ls48{letter-spacing:1.280000pt;}
.ls55{letter-spacing:1.920000pt;}
.ls36{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.178667pt;}
.ls5{letter-spacing:3.200000pt;}
.ls62{letter-spacing:3.360000pt;}
.ls46{letter-spacing:3.840000pt;}
.ls5f{letter-spacing:4.000000pt;}
.ls5a{letter-spacing:4.480000pt;}
.ls5c{letter-spacing:4.586667pt;}
.ls43{letter-spacing:5.120000pt;}
.ls52{letter-spacing:5.280000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls38{letter-spacing:6.400000pt;}
.lsa{letter-spacing:7.040000pt;}
.ls15{letter-spacing:7.680000pt;}
.ls24{letter-spacing:8.320000pt;}
.ls2d{letter-spacing:8.426667pt;}
.ls25{letter-spacing:8.960000pt;}
.ls26{letter-spacing:9.120000pt;}
.ls53{letter-spacing:9.600000pt;}
.ls4a{letter-spacing:10.240000pt;}
.ls5b{letter-spacing:10.880000pt;}
.ls14{letter-spacing:11.520000pt;}
.lse{letter-spacing:12.160000pt;}
.lsd{letter-spacing:12.320000pt;}
.ls16{letter-spacing:12.800000pt;}
.ls32{letter-spacing:12.960000pt;}
.ls28{letter-spacing:15.360000pt;}
.ls29{letter-spacing:15.520000pt;}
.ls59{letter-spacing:16.640000pt;}
.ls39{letter-spacing:17.280000pt;}
.ls2b{letter-spacing:17.920000pt;}
.ls4b{letter-spacing:18.560000pt;}
.ls8{letter-spacing:19.200000pt;}
.ls44{letter-spacing:19.840000pt;}
.ls50{letter-spacing:20.480000pt;}
.ls2a{letter-spacing:21.120000pt;}
.ls17{letter-spacing:22.400000pt;}
.ls18{letter-spacing:23.040000pt;}
.lsb{letter-spacing:23.680000pt;}
.ls54{letter-spacing:24.320000pt;}
.ls6{letter-spacing:25.600000pt;}
.ls45{letter-spacing:26.880000pt;}
.ls13{letter-spacing:27.520000pt;}
.ls58{letter-spacing:27.680000pt;}
.ls37{letter-spacing:30.080000pt;}
.ls12{letter-spacing:31.360000pt;}
.ls51{letter-spacing:32.000000pt;}
.ls30{letter-spacing:34.560000pt;}
.ls27{letter-spacing:35.840000pt;}
.ls2f{letter-spacing:37.120000pt;}
.ls9{letter-spacing:37.280000pt;}
.ls2e{letter-spacing:37.760000pt;}
.ls42{letter-spacing:40.960000pt;}
.ls7{letter-spacing:42.240000pt;}
.ls5e{letter-spacing:46.720000pt;}
.ls47{letter-spacing:47.360000pt;}
.ls35{letter-spacing:48.000000pt;}
.ls3a{letter-spacing:53.120000pt;}
.ls23{letter-spacing:58.880000pt;}
.ls22{letter-spacing:58.986667pt;}
.ls21{letter-spacing:59.040000pt;}
.ls33{letter-spacing:59.520000pt;}
.ls31{letter-spacing:61.440000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws3{word-spacing:-19.056533pt;}
.ws2{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.433067pt;}
.ws1a{word-spacing:-16.832000pt;}
.ws11{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.512000pt;}
.ws14{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1b{word-spacing:-16.000003pt;}
.ws4{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.999995pt;}
.wsf{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.680000pt;}
.ws13{word-spacing:-15.552000pt;}
.ws16{word-spacing:-15.424000pt;}
.ws15{word-spacing:-15.360000pt;}
.ws17{word-spacing:-15.296000pt;}
.ws12{word-spacing:-15.104000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws19{word-spacing:-10.720000pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._4{width:1.322667pt;}
._e{width:2.357333pt;}
._2{width:3.520000pt;}
._10{width:4.970667pt;}
._f{width:6.144000pt;}
._a{width:7.104000pt;}
._18{width:8.064000pt;}
._1b{width:9.696000pt;}
._17{width:10.592000pt;}
._c{width:11.712000pt;}
._d{width:12.714667pt;}
._2a{width:13.610667pt;}
._1c{width:14.613333pt;}
._1{width:16.576000pt;}
._29{width:17.472000pt;}
._8{width:18.400000pt;}
._7{width:19.594667pt;}
._28{width:20.714667pt;}
._19{width:21.760000pt;}
._1a{width:22.698667pt;}
._b{width:23.808000pt;}
._5{width:24.853333pt;}
._3{width:26.026667pt;}
._16{width:27.370667pt;}
._15{width:28.266667pt;}
._27{width:29.386667pt;}
._21{width:30.570667pt;}
._11{width:31.488000pt;}
._2e{width:32.832000pt;}
._39{width:33.760000pt;}
._1f{width:34.698667pt;}
._1e{width:36.192000pt;}
._9{width:37.120000pt;}
._3a{width:38.378667pt;}
._24{width:40.522667pt;}
._6{width:42.112000pt;}
._2f{width:43.776000pt;}
._26{width:47.264000pt;}
._20{width:48.266667pt;}
._3b{width:49.280000pt;}
._22{width:52.448000pt;}
._23{width:53.984000pt;}
._3c{width:55.242667pt;}
._2d{width:56.320000pt;}
._2c{width:57.216000pt;}
._1d{width:58.912000pt;}
._13{width:59.904000pt;}
._12{width:61.642667pt;}
._2b{width:62.752000pt;}
._14{width:64.000000pt;}
._25{width:79.914667pt;}
._30{width:82.112000pt;}
._31{width:83.125333pt;}
._35{width:84.224000pt;}
._34{width:85.312000pt;}
._37{width:91.456000pt;}
._36{width:92.352000pt;}
._32{width:117.568000pt;}
._33{width:194.037333pt;}
._38{width:268.928000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y108{bottom:-25.440000pt;}
.y10d{bottom:-12.000000pt;}
.y10f{bottom:-11.520000pt;}
.y107{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:3.200000pt;}
.y9a{bottom:3.520000pt;}
.y9f{bottom:3.560000pt;}
.yc4{bottom:3.680000pt;}
.yc1{bottom:4.480000pt;}
.yee{bottom:5.280000pt;}
.y3{bottom:6.240000pt;}
.y10c{bottom:6.400000pt;}
.y10e{bottom:6.880000pt;}
.y7{bottom:10.080000pt;}
.y106{bottom:11.360000pt;}
.yb9{bottom:12.960000pt;}
.y115{bottom:14.240000pt;}
.y130{bottom:14.560000pt;}
.y11e{bottom:17.440000pt;}
.y127{bottom:19.680000pt;}
.ybc{bottom:21.920000pt;}
.ye8{bottom:21.946667pt;}
.y2{bottom:25.120000pt;}
.y12b{bottom:27.360000pt;}
.y119{bottom:28.800000pt;}
.y105{bottom:29.760000pt;}
.y122{bottom:30.080000pt;}
.y132{bottom:31.080000pt;}
.yb8{bottom:31.360000pt;}
.y113{bottom:32.640000pt;}
.y12f{bottom:32.960000pt;}
.y11d{bottom:35.834667pt;}
.y126{bottom:38.080000pt;}
.ybb{bottom:40.320000pt;}
.y134{bottom:40.360000pt;}
.yb5{bottom:40.640000pt;}
.y129{bottom:45.760000pt;}
.y117{bottom:47.194667pt;}
.y104{bottom:48.160000pt;}
.y120{bottom:48.480000pt;}
.yb7{bottom:49.760000pt;}
.y112{bottom:51.040000pt;}
.y12e{bottom:51.360000pt;}
.y11c{bottom:54.234667pt;}
.y125{bottom:56.480000pt;}
.ybd{bottom:58.720000pt;}
.y133{bottom:58.760000pt;}
.y8{bottom:63.232000pt;}
.y12a{bottom:64.160000pt;}
.y118{bottom:65.594667pt;}
.y121{bottom:66.880000pt;}
.yb6{bottom:68.160000pt;}
.y111{bottom:69.440000pt;}
.y12d{bottom:69.760000pt;}
.y11b{bottom:72.634667pt;}
.y124{bottom:74.880000pt;}
.y6{bottom:77.152000pt;}
.y114{bottom:87.840000pt;}
.y12c{bottom:88.160000pt;}
.y11a{bottom:91.034667pt;}
.y123{bottom:93.306667pt;}
.y116{bottom:104.032000pt;}
.y96{bottom:107.712000pt;}
.y83{bottom:112.352000pt;}
.yc2{bottom:115.552000pt;}
.y35{bottom:115.712000pt;}
.yfb{bottom:116.672000pt;}
.ye6{bottom:125.312000pt;}
.y65{bottom:126.112000pt;}
.y34{bottom:134.106667pt;}
.yc0{bottom:134.586667pt;}
.y95{bottom:135.386667pt;}
.y82{bottom:140.026667pt;}
.y14a{bottom:141.626667pt;}
.y64{bottom:144.506667pt;}
.yfa{bottom:146.266667pt;}
.y33{bottom:152.506667pt;}
.ye5{bottom:152.826667pt;}
.ybf{bottom:154.586667pt;}
.y63{bottom:162.906667pt;}
.y14b{bottom:163.866667pt;}
.yf9{bottom:164.506667pt;}
.y81{bottom:167.546667pt;}
.y149{bottom:169.146667pt;}
.y32{bottom:170.906667pt;}
.ybe{bottom:173.786667pt;}
.ye4{bottom:180.506667pt;}
.y62{bottom:181.306667pt;}
.y94{bottom:190.586667pt;}
.yb4{bottom:192.826667pt;}
.y80{bottom:195.226667pt;}
.y148{bottom:196.826667pt;}
.y61{bottom:199.706667pt;}
.y31{bottom:200.506667pt;}
.yf8{bottom:201.946667pt;}
.ye3{bottom:208.026667pt;}
.y110{bottom:210.906667pt;}
.yba{bottom:211.866667pt;}
.y60{bottom:218.106667pt;}
.yf7{bottom:220.986667pt;}
.y30{bottom:222.106667pt;}
.y7f{bottom:222.746667pt;}
.y147{bottom:224.346667pt;}
.ye2{bottom:235.706667pt;}
.y5f{bottom:236.506667pt;}
.y2f{bottom:243.546667pt;}
.y93{bottom:245.786667pt;}
.y7e{bottom:250.266667pt;}
.y146{bottom:252.026667pt;}
.y5e{bottom:254.906667pt;}
.yf6{bottom:258.426667pt;}
.ye1{bottom:263.226667pt;}
.y2e{bottom:264.986667pt;}
.y5d{bottom:273.306667pt;}
.yf5{bottom:277.466667pt;}
.y7d{bottom:277.946667pt;}
.y145{bottom:279.546667pt;}
.yb3{bottom:289.626667pt;}
.ye0{bottom:290.906667pt;}
.y5c{bottom:291.706667pt;}
.yf4{bottom:296.506667pt;}
.y2d{bottom:297.146667pt;}
.y92{bottom:301.026667pt;}
.y7c{bottom:305.506667pt;}
.y144{bottom:307.266667pt;}
.yb2{bottom:308.066667pt;}
.y5b{bottom:310.146667pt;}
.yf3{bottom:315.586667pt;}
.y2c{bottom:318.146667pt;}
.ydf{bottom:318.466667pt;}
.y103{bottom:325.346667pt;}
.yb1{bottom:326.466667pt;}
.y5a{bottom:328.546667pt;}
.y7b{bottom:333.186667pt;}
.yf2{bottom:334.786667pt;}
.y2b{bottom:336.546667pt;}
.y143{bottom:336.866667pt;}
.yb0{bottom:344.866667pt;}
.yde{bottom:346.146667pt;}
.y59{bottom:346.946667pt;}
.y10b{bottom:348.066667pt;}
.yf1{bottom:353.826667pt;}
.y2a{bottom:354.946667pt;}
.y91{bottom:356.226667pt;}
.y7a{bottom:360.706667pt;}
.yaf{bottom:363.266667pt;}
.y58{bottom:365.346667pt;}
.y142{bottom:366.946667pt;}
.y109{bottom:370.306667pt;}
.yf0{bottom:372.866667pt;}
.y29{bottom:373.346667pt;}
.ydd{bottom:373.666667pt;}
.yae{bottom:381.666667pt;}
.y57{bottom:383.746667pt;}
.y79{bottom:388.386667pt;}
.y28{bottom:391.746667pt;}
.yef{bottom:391.906667pt;}
.y102{bottom:393.026667pt;}
.y141{bottom:394.626667pt;}
.ydc{bottom:401.346667pt;}
.y56{bottom:402.146667pt;}
.yad{bottom:409.186667pt;}
.y27{bottom:410.146667pt;}
.yed{bottom:410.946667pt;}
.y90{bottom:411.426667pt;}
.y78{bottom:415.906667pt;}
.y55{bottom:420.546667pt;}
.y140{bottom:422.146667pt;}
.y26{bottom:428.546667pt;}
.ydb{bottom:428.866667pt;}
.y101{bottom:429.826667pt;}
.yec{bottom:431.906667pt;}
.yac{bottom:436.866667pt;}
.y54{bottom:438.946667pt;}
.y77{bottom:443.586667pt;}
.y25{bottom:446.946667pt;}
.y100{bottom:448.226667pt;}
.y13f{bottom:449.826667pt;}
.yeb{bottom:451.106667pt;}
.yda{bottom:456.546667pt;}
.y53{bottom:457.346667pt;}
.yab{bottom:464.386667pt;}
.y24{bottom:465.346667pt;}
.y8f{bottom:466.626667pt;}
.yea{bottom:470.306667pt;}
.y76{bottom:471.106667pt;}
.y52{bottom:475.746667pt;}
.y13e{bottom:477.346667pt;}
.y23{bottom:483.746667pt;}
.yd9{bottom:484.066667pt;}
.yff{bottom:485.026667pt;}
.ye9{bottom:489.346667pt;}
.yaa{bottom:492.066667pt;}
.y51{bottom:494.146667pt;}
.y75{bottom:498.786667pt;}
.y22{bottom:502.146667pt;}
.yfe{bottom:503.426667pt;}
.y13d{bottom:505.026667pt;}
.yd8{bottom:511.746667pt;}
.y50{bottom:512.546667pt;}
.ya9{bottom:519.586667pt;}
.y21{bottom:520.546667pt;}
.y8e{bottom:521.826667pt;}
.y74{bottom:526.306667pt;}
.ye7{bottom:526.786667pt;}
.y4f{bottom:530.946667pt;}
.y13c{bottom:532.546667pt;}
.y20{bottom:538.973333pt;}
.yd7{bottom:539.293333pt;}
.yfd{bottom:540.253333pt;}
.ya8{bottom:547.293333pt;}
.y4e{bottom:549.373333pt;}
.y73{bottom:554.013333pt;}
.y1f{bottom:557.373333pt;}
.yfc{bottom:558.653333pt;}
.y13b{bottom:560.253333pt;}
.yd6{bottom:566.973333pt;}
.ya7{bottom:574.813333pt;}
.y1e{bottom:575.773333pt;}
.y8d{bottom:577.053333pt;}
.y4d{bottom:578.973333pt;}
.y72{bottom:581.533333pt;}
.y13a{bottom:587.773333pt;}
.y1d{bottom:594.173333pt;}
.yd5{bottom:594.493333pt;}
.y4c{bottom:599.933333pt;}
.ya6{bottom:602.493333pt;}
.y8c{bottom:604.573333pt;}
.y71{bottom:609.213333pt;}
.y1c{bottom:612.573333pt;}
.y139{bottom:615.453333pt;}
.y4b{bottom:618.333333pt;}
.yd4{bottom:622.173333pt;}
.ya5{bottom:630.013333pt;}
.y1b{bottom:630.973333pt;}
.y8b{bottom:632.253333pt;}
.y4a{bottom:636.733333pt;}
.y138{bottom:642.973333pt;}
.y1a{bottom:649.373333pt;}
.yd3{bottom:649.693333pt;}
.ya4{bottom:657.693333pt;}
.y8a{bottom:659.773333pt;}
.y70{bottom:664.413333pt;}
.y49{bottom:666.493333pt;}
.y19{bottom:667.773333pt;}
.y137{bottom:670.653333pt;}
.yd2{bottom:677.373333pt;}
.ya3{bottom:685.213333pt;}
.y18{bottom:686.173333pt;}
.y48{bottom:687.453333pt;}
.y6f{bottom:691.933333pt;}
.y136{bottom:698.173333pt;}
.y17{bottom:704.573333pt;}
.yd1{bottom:704.893333pt;}
.y47{bottom:705.853333pt;}
.ya2{bottom:712.893333pt;}
.y89{bottom:714.973333pt;}
.y6e{bottom:719.613333pt;}
.y16{bottom:722.973333pt;}
.y46{bottom:724.253333pt;}
.y135{bottom:727.933333pt;}
.yd0{bottom:732.573333pt;}
.ya1{bottom:739.293333pt;}
.y15{bottom:741.373333pt;}
.y45{bottom:742.493333pt;}
.y131{bottom:746.013333pt;}
.y6d{bottom:747.133333pt;}
.ya0{bottom:753.693333pt;}
.y14{bottom:759.773333pt;}
.ycf{bottom:760.093333pt;}
.y44{bottom:760.893333pt;}
.y88{bottom:770.173333pt;}
.y9e{bottom:772.733333pt;}
.y6c{bottom:774.853333pt;}
.y13{bottom:778.213333pt;}
.y43{bottom:779.333333pt;}
.yce{bottom:787.653333pt;}
.y9d{bottom:791.813333pt;}
.y12{bottom:796.613333pt;}
.y42{bottom:797.733333pt;}
.y6b{bottom:802.373333pt;}
.y9c{bottom:811.013333pt;}
.ycd{bottom:815.333333pt;}
.y41{bottom:816.133333pt;}
.y128{bottom:820.293333pt;}
.y11{bottom:824.133333pt;}
.y87{bottom:825.413333pt;}
.y6a{bottom:830.053333pt;}
.y40{bottom:834.533333pt;}
.ycc{bottom:842.853333pt;}
.y9b{bottom:849.093333pt;}
.y10{bottom:851.493333pt;}
.y3f{bottom:852.933333pt;}
.y69{bottom:857.573333pt;}
.y99{bottom:868.133333pt;}
.ycb{bottom:870.533333pt;}
.y3e{bottom:871.333333pt;}
.yf{bottom:872.613333pt;}
.y86{bottom:880.613333pt;}
.y68{bottom:885.253333pt;}
.y3d{bottom:889.733333pt;}
.y98{bottom:893.413333pt;}
.ye{bottom:893.733333pt;}
.yca{bottom:900.133333pt;}
.y3c{bottom:908.133333pt;}
.y67{bottom:912.773333pt;}
.y97{bottom:914.693333pt;}
.yd{bottom:917.253333pt;}
.yc9{bottom:918.213333pt;}
.y11f{bottom:924.293333pt;}
.y3b{bottom:926.533333pt;}
.y85{bottom:935.813333pt;}
.yc8{bottom:937.413333pt;}
.yc{bottom:941.893333pt;}
.y66{bottom:942.373333pt;}
.y3a{bottom:944.933333pt;}
.yc7{bottom:956.613333pt;}
.y39{bottom:963.333333pt;}
.yb{bottom:966.693333pt;}
.yc6{bottom:975.813333pt;}
.y38{bottom:981.733333pt;}
.y84{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.yc5{bottom:995.013333pt;}
.y37{bottom:1000.133333pt;}
.yc3{bottom:1014.240000pt;}
.y9{bottom:1016.000000pt;}
.y36{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h1b{height:18.080000pt;}
.hd{height:18.400000pt;}
.he{height:18.432000pt;}
.h14{height:18.560000pt;}
.h15{height:18.592000pt;}
.h13{height:19.360000pt;}
.h19{height:20.160000pt;}
.h1c{height:21.280000pt;}
.h1d{height:21.760000pt;}
.h5{height:24.000000pt;}
.h7{height:33.880313pt;}
.h8{height:35.342500pt;}
.h18{height:36.800000pt;}
.h17{height:36.832000pt;}
.hc{height:44.875000pt;}
.h16{height:46.375000pt;}
.h2{height:47.520000pt;}
.hf{height:48.530000pt;}
.hb{height:52.503750pt;}
.ha{height:52.750000pt;}
.h9{height:55.343750pt;}
.h12{height:58.200313pt;}
.h4{height:58.563750pt;}
.h1a{height:63.040000pt;}
.h6{height:64.752187pt;}
.h3{height:67.312500pt;}
.h11{height:73.600000pt;}
.h22{height:73.632000pt;}
.h10{height:92.640000pt;}
.h21{height:103.040000pt;}
.h1f{height:105.920000pt;}
.h20{height:108.192000pt;}
.h1e{height:113.472000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w25{width:19.200000pt;}
.w30{width:19.520000pt;}
.w23{width:25.760000pt;}
.w2e{width:25.920000pt;}
.w24{width:27.040000pt;}
.w22{width:27.200000pt;}
.w2f{width:27.360000pt;}
.w27{width:32.480000pt;}
.w32{width:32.640000pt;}
.w19{width:34.240000pt;}
.w2a{width:34.400000pt;}
.w28{width:34.560000pt;}
.w26{width:36.192000pt;}
.w31{width:36.512000pt;}
.w12{width:37.120000pt;}
.wa{width:39.040000pt;}
.w13{width:44.640000pt;}
.w14{width:46.560000pt;}
.w15{width:46.592000pt;}
.w16{width:46.720000pt;}
.w1d{width:53.760000pt;}
.w10{width:54.080000pt;}
.w1e{width:55.040000pt;}
.w20{width:55.200000pt;}
.wf{width:56.160000pt;}
.w1f{width:56.512000pt;}
.w1b{width:57.152000pt;}
.w2c{width:57.312000pt;}
.w2d{width:57.472000pt;}
.w11{width:57.952000pt;}
.w21{width:60.480000pt;}
.w7{width:65.120000pt;}
.w5{width:94.592000pt;}
.wd{width:129.760000pt;}
.we{width:141.146667pt;}
.wb{width:150.586667pt;}
.wc{width:169.466667pt;}
.w18{width:187.386667pt;}
.w9{width:225.786667pt;}
.w1a{width:244.826667pt;}
.w29{width:244.986667pt;}
.w2b{width:245.146667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w1c{width:284.506667pt;}
.w8{width:329.986667pt;}
.w17{width:385.986667pt;}
.w2{width:443.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x5e{left:-4.960000pt;}
.x0{left:0.000000pt;}
.x2e{left:1.280000pt;}
.x51{left:2.240000pt;}
.x52{left:5.760000pt;}
.x24{left:6.720000pt;}
.x2d{left:8.314667pt;}
.x42{left:10.240000pt;}
.x2b{left:11.360000pt;}
.x41{left:12.800000pt;}
.x37{left:14.920000pt;}
.x5d{left:16.160000pt;}
.x5f{left:17.120000pt;}
.x40{left:18.074667pt;}
.x3a{left:19.040000pt;}
.x3c{left:20.960000pt;}
.x32{left:22.880000pt;}
.x38{left:24.000000pt;}
.x1e{left:24.960000pt;}
.x54{left:26.880000pt;}
.x23{left:28.640000pt;}
.x59{left:30.240000pt;}
.x48{left:31.520000pt;}
.x34{left:34.560000pt;}
.x31{left:35.520000pt;}
.x9{left:39.840000pt;}
.x35{left:48.800000pt;}
.x2f{left:50.714667pt;}
.x4a{left:57.480000pt;}
.x22{left:62.240000pt;}
.x49{left:63.720000pt;}
.x20{left:68.320000pt;}
.x4d{left:71.080000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x4c{left:79.080000pt;}
.x4e{left:81.000000pt;}
.x25{left:82.240000pt;}
.x4b{left:83.720000pt;}
.x2a{left:85.472000pt;}
.x1d{left:87.712000pt;}
.x26{left:90.240000pt;}
.x5{left:94.591988pt;}
.x45{left:95.712000pt;}
.x15{left:100.831988pt;}
.xc{left:102.591988pt;}
.x53{left:104.160000pt;}
.x47{left:105.320000pt;}
.x50{left:107.072000pt;}
.xb{left:108.031988pt;}
.x61{left:113.471988pt;}
.x28{left:114.751988pt;}
.x29{left:124.191988pt;}
.x2c{left:125.152000pt;}
.x1b{left:129.791988pt;}
.x17{left:132.351988pt;}
.x18{left:136.026655pt;}
.x13{left:141.786655pt;}
.x46{left:143.066667pt;}
.x14{left:152.506655pt;}
.x1f{left:153.626667pt;}
.x10{left:156.346655pt;}
.x16{left:162.746655pt;}
.x2{left:175.386667pt;}
.x19{left:183.866655pt;}
.xf{left:192.346655pt;}
.x11{left:214.266655pt;}
.x1c{left:223.866655pt;}
.x44{left:239.706655pt;}
.x1{left:247.266667pt;}
.x7{left:264.706667pt;}
.x4f{left:266.146655pt;}
.x12{left:269.186655pt;}
.x30{left:276.386667pt;}
.x39{left:333.186667pt;}
.x63{left:334.466655pt;}
.x8{left:347.426667pt;}
.xd{left:373.026655pt;}
.x3b{left:387.906667pt;}
.xe{left:406.306655pt;}
.x62{left:425.213322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x33{left:446.493333pt;}
.x5a{left:474.173333pt;}
.x21{left:484.413333pt;}
.x55{left:500.893333pt;}
.x60{left:528.733333pt;}
.x3d{left:529.693333pt;}
.x56{left:556.893333pt;}
.x36{left:576.893333pt;}
.x57{left:614.213333pt;}
.x3e{left:624.133333pt;}
.x5b{left:642.213333pt;}
.x1a{left:647.173322pt;}
.x43{left:649.093322pt;}
.x58{left:670.213333pt;}
.x3f{left:671.493333pt;}
.x5c{left:698.213333pt;}
.x27{left:718.213322pt;}
}




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