
    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_62ef45ad354777d7a2883699.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157715;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_009c71b19b271b284a848cb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.154785;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_dfb7a0fa841421116de6acb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908203;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_c99363450cef3723a09bdef2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.764000;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_1f527e195e95684aed139ae9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.187000;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_4e2936d0bbf4a7e5bb36a36b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922363;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_0a7d1842cd481e5c7aaad0e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.159668;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_9e668acd1684699233b23a5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160156;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_a64dbbe0f5a4c026dd0baa11.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b6a463b2af493a8e494f3a41.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a6c05e9325f01975e8a38133.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.111816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_990e966c19c996f068e3ba4a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4ae5cae77f4975801f93aa0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-21.780000px;}
.v3{vertical-align:-18.810000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.876000px;}
.v1{vertical-align:90.000000px;}
.ls4{letter-spacing:-2.160000px;}
.ls13{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.382800px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.002280px;}
.lsb{letter-spacing:0.002880px;}
.ls15{letter-spacing:0.057000px;}
.ls9{letter-spacing:0.324780px;}
.ls11{letter-spacing:0.382800px;}
.ls10{letter-spacing:0.385080px;}
.ls8{letter-spacing:0.385680px;}
.lsa{letter-spacing:0.570000px;}
.ls1{letter-spacing:0.660000px;}
.ls16{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.767880px;}
.ls6{letter-spacing:0.780000px;}
.ls5{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.320000px;}
.lse{letter-spacing:1.518000px;}
.ls0{letter-spacing:1.980000px;}
.ls7{letter-spacing:5.808386px;}
.ls12{letter-spacing:6.099000px;}
.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;}
}
.ws57{word-spacing:-18.981000px;}
.wsaa{word-spacing:-18.150000px;}
.ws27{word-spacing:-18.084000px;}
.ws28{word-spacing:-12.882000px;}
.ws3f{word-spacing:-10.871520px;}
.ws78{word-spacing:-10.488720px;}
.ws69{word-spacing:-10.105920px;}
.wsd{word-spacing:-7.471560px;}
.wsb0{word-spacing:-4.620000px;}
.ws8d{word-spacing:-3.366000px;}
.wsb1{word-spacing:-3.300000px;}
.ws73{word-spacing:-3.234000px;}
.ws92{word-spacing:-3.102000px;}
.wsae{word-spacing:-3.036000px;}
.ws6a{word-spacing:-2.970000px;}
.ws7f{word-spacing:-2.904000px;}
.ws8b{word-spacing:-2.838000px;}
.ws44{word-spacing:-2.772000px;}
.ws50{word-spacing:-2.700000px;}
.ws52{word-spacing:-2.580000px;}
.wsa0{word-spacing:-2.565000px;}
.ws26{word-spacing:-2.394000px;}
.ws3a{word-spacing:-2.337000px;}
.ws58{word-spacing:-2.244000px;}
.ws88{word-spacing:-2.223000px;}
.ws0{word-spacing:-2.046000px;}
.ws4a{word-spacing:-1.782000px;}
.ws31{word-spacing:-1.596000px;}
.ws68{word-spacing:-1.539000px;}
.wsa{word-spacing:-1.482000px;}
.wsbd{word-spacing:-1.452000px;}
.wsb2{word-spacing:-1.386000px;}
.ws51{word-spacing:-1.380000px;}
.ws55{word-spacing:-1.368000px;}
.ws16{word-spacing:-1.320000px;}
.ws20{word-spacing:-1.197000px;}
.ws5f{word-spacing:-1.188000px;}
.ws9d{word-spacing:-1.083000px;}
.ws60{word-spacing:-1.056000px;}
.ws1f{word-spacing:-0.969000px;}
.ws90{word-spacing:-0.924000px;}
.ws5c{word-spacing:-0.858000px;}
.ws2f{word-spacing:-0.792000px;}
.ws9b{word-spacing:-0.741000px;}
.ws3{word-spacing:-0.660000px;}
.ws4f{word-spacing:-0.627000px;}
.ws1c{word-spacing:-0.570000px;}
.wsa8{word-spacing:-0.528000px;}
.ws2c{word-spacing:-0.462000px;}
.wsa1{word-spacing:-0.399000px;}
.ws95{word-spacing:-0.396000px;}
.ws8{word-spacing:-0.342000px;}
.ws2b{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.264000px;}
.ws89{word-spacing:-0.198000px;}
.ws4d{word-spacing:-0.114000px;}
.ws2e{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.wsa4{word-spacing:0.057000px;}
.ws2a{word-spacing:0.066000px;}
.ws9c{word-spacing:0.114000px;}
.ws18{word-spacing:0.132000px;}
.wsad{word-spacing:0.198000px;}
.wsa9{word-spacing:0.264000px;}
.ws3c{word-spacing:0.285000px;}
.ws7b{word-spacing:0.330000px;}
.ws9e{word-spacing:0.399000px;}
.ws9{word-spacing:0.456000px;}
.wsb5{word-spacing:0.462000px;}
.ws83{word-spacing:0.513000px;}
.ws45{word-spacing:0.594000px;}
.ws3e{word-spacing:0.600000px;}
.wsa5{word-spacing:0.627000px;}
.ws72{word-spacing:0.660000px;}
.ws84{word-spacing:0.684000px;}
.ws15{word-spacing:0.792000px;}
.ws1e{word-spacing:0.798000px;}
.ws4c{word-spacing:0.855000px;}
.ws94{word-spacing:0.858000px;}
.ws6c{word-spacing:0.924000px;}
.wsc{word-spacing:0.969000px;}
.ws5d{word-spacing:1.056000px;}
.wsa2{word-spacing:1.083000px;}
.ws5b{word-spacing:1.122000px;}
.ws1d{word-spacing:1.425000px;}
.ws30{word-spacing:1.518000px;}
.ws8e{word-spacing:1.584000px;}
.wsbb{word-spacing:1.650000px;}
.ws3d{word-spacing:1.653000px;}
.ws24{word-spacing:1.710000px;}
.ws49{word-spacing:1.782000px;}
.wsb6{word-spacing:1.848000px;}
.ws38{word-spacing:1.881000px;}
.ws65{word-spacing:1.980000px;}
.wsb9{word-spacing:2.046000px;}
.ws7a{word-spacing:2.112000px;}
.ws61{word-spacing:2.178000px;}
.ws12{word-spacing:2.244000px;}
.ws56{word-spacing:2.280000px;}
.ws1a{word-spacing:2.394000px;}
.wsb8{word-spacing:2.442000px;}
.ws1b{word-spacing:2.508000px;}
.ws21{word-spacing:2.565000px;}
.ws4b{word-spacing:2.574000px;}
.ws82{word-spacing:2.679000px;}
.ws66{word-spacing:2.706000px;}
.ws48{word-spacing:2.772000px;}
.wsb{word-spacing:2.793000px;}
.ws62{word-spacing:2.838000px;}
.wsf{word-spacing:2.970000px;}
.wsa3{word-spacing:3.021000px;}
.ws74{word-spacing:3.036000px;}
.ws79{word-spacing:3.102000px;}
.ws7{word-spacing:3.135000px;}
.ws11{word-spacing:3.168000px;}
.ws87{word-spacing:3.192000px;}
.ws71{word-spacing:3.234000px;}
.ws41{word-spacing:3.300000px;}
.ws39{word-spacing:3.420000px;}
.ws46{word-spacing:3.432000px;}
.ws23{word-spacing:3.477000px;}
.ws63{word-spacing:3.498000px;}
.ws91{word-spacing:3.630000px;}
.ws19{word-spacing:3.648000px;}
.ws53{word-spacing:3.720000px;}
.ws5{word-spacing:3.762000px;}
.ws8a{word-spacing:3.828000px;}
.ws86{word-spacing:3.876000px;}
.ws54{word-spacing:3.900000px;}
.ws37{word-spacing:3.933000px;}
.wsb7{word-spacing:3.960000px;}
.ws4{word-spacing:4.026000px;}
.ws40{word-spacing:4.092000px;}
.ws81{word-spacing:4.104000px;}
.ws47{word-spacing:4.158000px;}
.ws34{word-spacing:4.161000px;}
.ws85{word-spacing:4.218000px;}
.ws6{word-spacing:4.290000px;}
.ws6e{word-spacing:4.356000px;}
.ws67{word-spacing:4.389000px;}
.ws6f{word-spacing:4.422000px;}
.ws29{word-spacing:4.488000px;}
.ws70{word-spacing:4.554000px;}
.ws9f{word-spacing:4.674000px;}
.ws35{word-spacing:4.788000px;}
.ws10{word-spacing:4.884000px;}
.ws75{word-spacing:4.902000px;}
.wsbc{word-spacing:5.016000px;}
.ws7e{word-spacing:5.148000px;}
.ws36{word-spacing:5.415000px;}
.ws22{word-spacing:5.586000px;}
.ws93{word-spacing:5.610000px;}
.ws4e{word-spacing:5.643000px;}
.wsb3{word-spacing:5.676000px;}
.ws32{word-spacing:5.700000px;}
.ws6b{word-spacing:5.742000px;}
.ws97{word-spacing:5.808000px;}
.ws25{word-spacing:5.871000px;}
.ws80{word-spacing:6.006000px;}
.ws14{word-spacing:6.270000px;}
.ws99{word-spacing:6.336000px;}
.ws13{word-spacing:6.402000px;}
.ws8c{word-spacing:6.534000px;}
.ws5a{word-spacing:6.600000px;}
.wsa6{word-spacing:6.666000px;}
.wsab{word-spacing:6.732000px;}
.wsac{word-spacing:6.798000px;}
.ws7d{word-spacing:6.864000px;}
.ws3b{word-spacing:6.954000px;}
.ws7c{word-spacing:7.128000px;}
.ws33{word-spacing:7.182000px;}
.ws6d{word-spacing:7.194000px;}
.ws77{word-spacing:7.296000px;}
.ws8f{word-spacing:7.326000px;}
.ws2d{word-spacing:7.458000px;}
.ws5e{word-spacing:7.788000px;}
.ws96{word-spacing:7.920000px;}
.ws9a{word-spacing:8.052000px;}
.wsba{word-spacing:8.118000px;}
.wsa7{word-spacing:8.316000px;}
.ws43{word-spacing:8.448000px;}
.wsb4{word-spacing:8.910000px;}
.ws59{word-spacing:9.174000px;}
.ws64{word-spacing:9.240000px;}
.ws42{word-spacing:9.966000px;}
.wse{word-spacing:10.098000px;}
.ws98{word-spacing:10.362000px;}
.wsaf{word-spacing:10.494000px;}
.ws2{word-spacing:12.276000px;}
.ws76{word-spacing:22.515000px;}
._4{margin-left:-11.800800px;}
._1{margin-left:-9.226800px;}
._3{margin-left:-7.801200px;}
._8{margin-left:-6.216000px;}
._6{margin-left:-4.860000px;}
._7{margin-left:-3.504600px;}
._0{margin-left:-1.914000px;}
._9{width:1.815000px;}
._2{width:2.956800px;}
._b{width:4.230600px;}
._5{width:5.467200px;}
._c{width:7.137600px;}
._d{width:8.395200px;}
._e{width:9.405600px;}
._a{width:10.447800px;}
._f{width:11.490600px;}
._11{width:34.527000px;}
._10{width:37.045800px;}
._12{width:38.278200px;}
._13{width:43.104000px;}
.fc4{color:rgb(33,31,30);}
.fc3{color:rgb(79,76,77);}
.fc2{color:rgb(37,73,164);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.060000px;}
.fs7{font-size:38.280000px;}
.fs9{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:132.000000px;}
.fs6{font-size:194.535600px;}
.y0{bottom:0.000000px;}
.y13{bottom:46.693350px;}
.y8{bottom:81.315750px;}
.y10e{bottom:85.021350px;}
.y2c{bottom:85.031850px;}
.y54{bottom:85.033350px;}
.y8b{bottom:85.036350px;}
.ya5{bottom:85.040400px;}
.yc5{bottom:89.741850px;}
.y12a{bottom:91.646850px;}
.y161{bottom:94.518000px;}
.y10d{bottom:101.522850px;}
.y2b{bottom:101.533350px;}
.y53{bottom:101.534850px;}
.y8a{bottom:101.537850px;}
.ya4{bottom:101.541900px;}
.yec{bottom:105.996300px;}
.yc4{bottom:112.619850px;}
.y129{bottom:114.141000px;}
.y160{bottom:117.024000px;}
.y10c{bottom:118.024350px;}
.y2a{bottom:118.034850px;}
.y52{bottom:118.036350px;}
.ya3{bottom:122.289900px;}
.y89{bottom:122.741850px;}
.y143{bottom:125.644800px;}
.yeb{bottom:128.502300px;}
.yc3{bottom:130.792350px;}
.y10b{bottom:134.525850px;}
.y29{bottom:134.536350px;}
.y51{bottom:134.537850px;}
.y128{bottom:136.647000px;}
.y15f{bottom:139.530000px;}
.y88{bottom:140.917350px;}
.ya2{bottom:143.493900px;}
.yc2{bottom:147.293850px;}
.y142{bottom:148.150800px;}
.yea{bottom:151.008300px;}
.y10a{bottom:151.027350px;}
.y28{bottom:151.037850px;}
.y50{bottom:155.741850px;}
.y87{bottom:157.417350px;}
.y127{bottom:159.115500px;}
.ya1{bottom:161.664900px;}
.y15e{bottom:162.036000px;}
.y109{bottom:167.528850px;}
.yc1{bottom:168.497850px;}
.y141{bottom:170.638800px;}
.y27{bottom:172.241850px;}
.ye9{bottom:173.514300px;}
.y86{bottom:173.917350px;}
.y70{bottom:173.918250px;}
.ya0{bottom:178.166400px;}
.y4f{bottom:178.619850px;}
.y126{bottom:181.621500px;}
.y108{bottom:184.030350px;}
.y15d{bottom:184.542000px;}
.yc0{bottom:186.670200px;}
.yd4{bottom:190.414350px;}
.y85{bottom:190.417350px;}
.y6f{bottom:190.419750px;}
.y140{bottom:193.144800px;}
.y9f{bottom:194.667900px;}
.ye8{bottom:196.020300px;}
.y4e{bottom:196.787850px;}
.y107{bottom:200.531850px;}
.ybf{bottom:203.171700px;}
.y125{bottom:204.127500px;}
.yd3{bottom:206.915850px;}
.y84{bottom:206.917350px;}
.y15c{bottom:207.048000px;}
.y6e{bottom:211.167750px;}
.y4d{bottom:213.289350px;}
.y13f{bottom:215.650800px;}
.y9e{bottom:215.871900px;}
.y106{bottom:217.033350px;}
.ye7{bottom:218.526300px;}
.y26{bottom:221.300550px;}
.y83{bottom:223.417350px;}
.ybe{bottom:224.375700px;}
.y124{bottom:226.633500px;}
.yd2{bottom:228.119850px;}
.y15b{bottom:229.554000px;}
.y4c{bottom:229.790850px;}
.y6d{bottom:232.371750px;}
.y105{bottom:233.534850px;}
.y13e{bottom:238.119300px;}
.y12{bottom:243.015750px;}
.y25{bottom:243.806550px;}
.y82{bottom:244.619850px;}
.y4b{bottom:246.292350px;}
.y104{bottom:250.036350px;}
.y6c{bottom:250.539150px;}
.yd1{bottom:250.997850px;}
.y15a{bottom:252.060000px;}
.y13d{bottom:260.625300px;}
.y4a{bottom:262.793850px;}
.ye6{bottom:263.521800px;}
.y9d{bottom:263.557800px;}
.y11{bottom:265.521750px;}
.y24{bottom:266.312550px;}
.y103{bottom:266.537850px;}
.y6b{bottom:267.040650px;}
.y123{bottom:271.629000px;}
.yd0{bottom:273.875700px;}
.y159{bottom:274.566000px;}
.y13c{bottom:283.131300px;}
.y6a{bottom:283.542150px;}
.y49{bottom:283.997850px;}
.ye5{bottom:286.027800px;}
.y9c{bottom:286.063800px;}
.ybd{bottom:286.132800px;}
.y102{bottom:287.741850px;}
.y10{bottom:288.027750px;}
.y23{bottom:288.818550px;}
.y22{bottom:288.824550px;}
.ycf{bottom:292.049700px;}
.y122{bottom:294.135000px;}
.y158{bottom:297.072000px;}
.y69{bottom:300.043650px;}
.y48{bottom:302.165700px;}
.y13b{bottom:305.637300px;}
.y101{bottom:305.908350px;}
.ye4{bottom:308.533800px;}
.y9b{bottom:308.569800px;}
.ybc{bottom:308.638800px;}
.yf{bottom:310.533750px;}
.yce{bottom:313.253700px;}
.y121{bottom:316.641000px;}
.y47{bottom:318.667200px;}
.y157{bottom:319.578000px;}
.y68{bottom:320.791650px;}
.y100{bottom:322.409850px;}
.y13a{bottom:328.143300px;}
.ye3{bottom:331.039800px;}
.y9a{bottom:331.075800px;}
.ybb{bottom:331.144800px;}
.ye{bottom:333.039750px;}
.y46{bottom:335.168700px;}
.y67{bottom:337.293150px;}
.yff{bottom:338.911350px;}
.y120{bottom:339.147000px;}
.y156{bottom:342.084000px;}
.y139{bottom:350.649300px;}
.y45{bottom:351.670200px;}
.ye2{bottom:353.545800px;}
.y99{bottom:353.581800px;}
.yba{bottom:353.650800px;}
.y66{bottom:353.794650px;}
.yfe{bottom:355.412850px;}
.y21{bottom:356.324550px;}
.y11f{bottom:361.653000px;}
.y155{bottom:364.590000px;}
.y44{bottom:368.171700px;}
.y65{bottom:370.296150px;}
.yfd{bottom:371.914350px;}
.y138{bottom:373.155300px;}
.ye1{bottom:376.051800px;}
.y98{bottom:376.087800px;}
.yb9{bottom:376.119300px;}
.ycd{bottom:376.138800px;}
.yd{bottom:378.035250px;}
.y43{bottom:384.673200px;}
.y64{bottom:386.797650px;}
.y154{bottom:387.096000px;}
.yfc{bottom:388.415850px;}
.ye0{bottom:398.557800px;}
.y97{bottom:398.593800px;}
.yb8{bottom:398.625300px;}
.ycc{bottom:398.644800px;}
.yc{bottom:400.541250px;}
.y11e{bottom:406.653000px;}
.y63{bottom:408.001800px;}
.y153{bottom:409.602000px;}
.yfb{bottom:409.619850px;}
.y137{bottom:418.150800px;}
.y167{bottom:421.047300px;}
.ydf{bottom:421.063800px;}
.yb7{bottom:421.131300px;}
.ycb{bottom:421.150800px;}
.yb{bottom:423.047250px;}
.y62{bottom:426.172650px;}
.y152{bottom:432.108000px;}
.y136{bottom:440.656800px;}
.y61{bottom:442.674150px;}
.y166{bottom:443.553300px;}
.yde{bottom:443.569800px;}
.y81{bottom:443.578800px;}
.y96{bottom:443.589300px;}
.y42{bottom:443.601300px;}
.yca{bottom:443.655300px;}
.ya{bottom:445.553250px;}
.yfa{bottom:454.633350px;}
.y11d{bottom:454.653000px;}
.y60{bottom:459.175650px;}
.y135{bottom:463.138800px;}
.y165{bottom:466.059300px;}
.ydd{bottom:466.075800px;}
.y80{bottom:466.084800px;}
.y95{bottom:466.095300px;}
.y41{bottom:466.107300px;}
.yb6{bottom:466.126800px;}
.yc9{bottom:466.161300px;}
.y9{bottom:468.059250px;}
.y5f{bottom:475.677150px;}
.y151{bottom:477.103500px;}
.yf9{bottom:477.139350px;}
.y134{bottom:485.644800px;}
.y164{bottom:488.565300px;}
.ydc{bottom:488.581800px;}
.y7f{bottom:488.590800px;}
.y94{bottom:488.601300px;}
.y40{bottom:488.613300px;}
.yb5{bottom:488.632800px;}
.y150{bottom:499.609500px;}
.yf8{bottom:499.645350px;}
.y20{bottom:502.786500px;}
.y133{bottom:508.150800px;}
.y163{bottom:511.071300px;}
.ydb{bottom:511.087800px;}
.y11c{bottom:511.089300px;}
.y7e{bottom:511.096800px;}
.y93{bottom:511.107300px;}
.yc8{bottom:511.108800px;}
.y3f{bottom:511.119300px;}
.yb4{bottom:511.138800px;}
.y14f{bottom:522.115500px;}
.yf7{bottom:522.151350px;}
.y1f{bottom:525.292500px;}
.y132{bottom:530.632800px;}
.y162{bottom:533.577300px;}
.y11b{bottom:533.595300px;}
.y7d{bottom:533.602800px;}
.y92{bottom:533.613300px;}
.yc7{bottom:533.614800px;}
.y3e{bottom:533.625300px;}
.y5e{bottom:533.632800px;}
.yb3{bottom:533.644800px;}
.y14e{bottom:544.621500px;}
.yf6{bottom:544.657350px;}
.y1e{bottom:547.798500px;}
.y131{bottom:553.138800px;}
.yda{bottom:556.083300px;}
.y11a{bottom:556.101300px;}
.y7c{bottom:556.108800px;}
.y91{bottom:556.119300px;}
.yc6{bottom:556.120800px;}
.y3d{bottom:556.131300px;}
.y5d{bottom:556.138800px;}
.yb2{bottom:556.150800px;}
.y14d{bottom:567.127500px;}
.y1d{bottom:570.304500px;}
.y130{bottom:575.644800px;}
.yd9{bottom:578.589300px;}
.y119{bottom:578.607300px;}
.y7b{bottom:578.614800px;}
.yb1{bottom:578.626800px;}
.y5c{bottom:578.644800px;}
.yf5{bottom:589.611000px;}
.y1c{bottom:592.810500px;}
.y12f{bottom:598.150800px;}
.yd8{bottom:601.095300px;}
.y118{bottom:601.113300px;}
.y90{bottom:601.114800px;}
.y7a{bottom:601.120800px;}
.y3c{bottom:601.126800px;}
.yb0{bottom:601.132800px;}
.y5b{bottom:601.150800px;}
.yf4{bottom:612.117000px;}
.y14c{bottom:612.123000px;}
.y1b{bottom:615.316500px;}
.y12e{bottom:620.656800px;}
.yd7{bottom:623.601300px;}
.y117{bottom:623.619300px;}
.y8f{bottom:623.620800px;}
.y79{bottom:623.626800px;}
.y3b{bottom:623.632800px;}
.y5a{bottom:623.637300px;}
.yaf{bottom:623.638800px;}
.yf3{bottom:634.623000px;}
.y14b{bottom:634.629000px;}
.y1a{bottom:637.822500px;}
.y7{bottom:645.435750px;}
.yd6{bottom:646.107300px;}
.y116{bottom:646.125300px;}
.y8e{bottom:646.126800px;}
.y78{bottom:646.132800px;}
.y3a{bottom:646.138800px;}
.y59{bottom:646.143300px;}
.yae{bottom:646.144800px;}
.yf2{bottom:657.129000px;}
.y14a{bottom:657.135000px;}
.y19{bottom:660.328500px;}
.y12d{bottom:665.656800px;}
.yd5{bottom:668.613300px;}
.y115{bottom:668.631300px;}
.y8d{bottom:668.632800px;}
.y77{bottom:668.638800px;}
.y39{bottom:668.644800px;}
.y58{bottom:668.649300px;}
.yad{bottom:668.650800px;}
.yf1{bottom:679.635000px;}
.y149{bottom:679.641000px;}
.yac{bottom:691.119300px;}
.y114{bottom:691.137300px;}
.y8c{bottom:691.138800px;}
.y76{bottom:691.144800px;}
.y38{bottom:691.150800px;}
.y6{bottom:691.926750px;}
.yf0{bottom:702.141000px;}
.y148{bottom:702.147000px;}
.y12c{bottom:713.608800px;}
.yab{bottom:713.625300px;}
.y37{bottom:713.638800px;}
.y113{bottom:713.643300px;}
.y57{bottom:713.644800px;}
.y75{bottom:713.650800px;}
.yef{bottom:724.647000px;}
.y147{bottom:724.653000px;}
.y18{bottom:727.828500px;}
.y12b{bottom:736.114800px;}
.yaa{bottom:736.131300px;}
.y36{bottom:736.144800px;}
.y74{bottom:736.149300px;}
.y56{bottom:736.150800px;}
.y5{bottom:736.935750px;}
.yee{bottom:747.153000px;}
.y55{bottom:758.620800px;}
.ya9{bottom:758.637300px;}
.y112{bottom:758.638800px;}
.y35{bottom:758.650800px;}
.y73{bottom:758.655300px;}
.y17{bottom:766.828500px;}
.y146{bottom:769.652850px;}
.y34{bottom:781.126800px;}
.ya8{bottom:781.143300px;}
.y111{bottom:781.144800px;}
.y72{bottom:781.161300px;}
.yed{bottom:792.152850px;}
.y33{bottom:803.632800px;}
.ya7{bottom:803.649300px;}
.y110{bottom:803.650800px;}
.y16{bottom:805.828500px;}
.y4{bottom:807.411600px;}
.y32{bottom:826.138800px;}
.y145{bottom:826.144800px;}
.y10f{bottom:826.150800px;}
.ya6{bottom:826.155300px;}
.y15{bottom:844.828500px;}
.y31{bottom:848.644800px;}
.y144{bottom:848.650800px;}
.y3{bottom:852.423600px;}
.y30{bottom:871.150800px;}
.y14{bottom:883.828500px;}
.y2f{bottom:893.656800px;}
.y2{bottom:897.435600px;}
.y1{bottom:942.447600px;}
.y2e{bottom:959.556000px;}
.y71{bottom:959.591400px;}
.y2d{bottom:977.556000px;}
.h16{height:28.197701px;}
.he{height:28.198301px;}
.h21{height:28.198901px;}
.h1a{height:30.672422px;}
.h17{height:43.681641px;}
.h5{height:45.826172px;}
.h8{height:46.470703px;}
.hf{height:47.008301px;}
.h1b{height:49.482422px;}
.h6{height:49.896000px;}
.h10{height:54.082031px;}
.ha{height:61.037109px;}
.h1c{height:61.043109px;}
.h23{height:61.061109px;}
.h18{height:61.067109px;}
.h25{height:61.084509px;}
.h1f{height:61.085109px;}
.h12{height:61.109109px;}
.h15{height:61.115109px;}
.hd{height:61.133109px;}
.h1e{height:61.139109px;}
.h11{height:61.157109px;}
.h14{height:61.181109px;}
.h1d{height:61.187109px;}
.h22{height:61.204509px;}
.h20{height:61.229109px;}
.h13{height:61.259109px;}
.h19{height:61.349109px;}
.h7{height:63.030000px;}
.h24{height:66.445312px;}
.h4{height:66.585938px;}
.hb{height:71.982422px;}
.h3{height:99.878906px;}
.h9{height:110.742188px;}
.h2{height:121.816406px;}
.hc{height:179.907435px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:54.002850px;}
.x3{left:56.218050px;}
.x17{left:76.535400px;}
.xf{left:94.161900px;}
.xc{left:95.377200px;}
.xb{left:99.697200px;}
.x18{left:102.038700px;}
.x1a{left:103.773450px;}
.x15{left:119.604150px;}
.x5{left:122.778600px;}
.x2{left:125.419050px;}
.x13{left:136.814400px;}
.x9{left:137.857200px;}
.xa{left:157.717200px;}
.x4{left:171.784050px;}
.x1{left:179.176050px;}
.xd{left:187.597200px;}
.x14{left:248.189400px;}
.x12{left:293.250900px;}
.xe{left:306.797400px;}
.x10{left:315.888900px;}
.x6{left:321.368850px;}
.x16{left:339.634200px;}
.x8{left:356.216850px;}
.x11{left:365.933400px;}
.x19{left:416.060400px;}
@media print{
.v4{vertical-align:-19.360000pt;}
.v3{vertical-align:-16.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.445333pt;}
.v1{vertical-align:80.000000pt;}
.ls4{letter-spacing:-1.920000pt;}
.ls13{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.340267pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.002027pt;}
.lsb{letter-spacing:0.002560pt;}
.ls15{letter-spacing:0.050667pt;}
.ls9{letter-spacing:0.288693pt;}
.ls11{letter-spacing:0.340267pt;}
.ls10{letter-spacing:0.342293pt;}
.ls8{letter-spacing:0.342827pt;}
.lsa{letter-spacing:0.506667pt;}
.ls1{letter-spacing:0.586667pt;}
.ls16{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.682560pt;}
.ls6{letter-spacing:0.693333pt;}
.ls5{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.173333pt;}
.lse{letter-spacing:1.349333pt;}
.ls0{letter-spacing:1.760000pt;}
.ls7{letter-spacing:5.163010pt;}
.ls12{letter-spacing:5.421333pt;}
.ws57{word-spacing:-16.872000pt;}
.wsaa{word-spacing:-16.133333pt;}
.ws27{word-spacing:-16.074667pt;}
.ws28{word-spacing:-11.450667pt;}
.ws3f{word-spacing:-9.663573pt;}
.ws78{word-spacing:-9.323307pt;}
.ws69{word-spacing:-8.983040pt;}
.wsd{word-spacing:-6.641387pt;}
.wsb0{word-spacing:-4.106667pt;}
.ws8d{word-spacing:-2.992000pt;}
.wsb1{word-spacing:-2.933333pt;}
.ws73{word-spacing:-2.874667pt;}
.ws92{word-spacing:-2.757333pt;}
.wsae{word-spacing:-2.698667pt;}
.ws6a{word-spacing:-2.640000pt;}
.ws7f{word-spacing:-2.581333pt;}
.ws8b{word-spacing:-2.522667pt;}
.ws44{word-spacing:-2.464000pt;}
.ws50{word-spacing:-2.400000pt;}
.ws52{word-spacing:-2.293333pt;}
.wsa0{word-spacing:-2.280000pt;}
.ws26{word-spacing:-2.128000pt;}
.ws3a{word-spacing:-2.077333pt;}
.ws58{word-spacing:-1.994667pt;}
.ws88{word-spacing:-1.976000pt;}
.ws0{word-spacing:-1.818667pt;}
.ws4a{word-spacing:-1.584000pt;}
.ws31{word-spacing:-1.418667pt;}
.ws68{word-spacing:-1.368000pt;}
.wsa{word-spacing:-1.317333pt;}
.wsbd{word-spacing:-1.290667pt;}
.wsb2{word-spacing:-1.232000pt;}
.ws51{word-spacing:-1.226667pt;}
.ws55{word-spacing:-1.216000pt;}
.ws16{word-spacing:-1.173333pt;}
.ws20{word-spacing:-1.064000pt;}
.ws5f{word-spacing:-1.056000pt;}
.ws9d{word-spacing:-0.962667pt;}
.ws60{word-spacing:-0.938667pt;}
.ws1f{word-spacing:-0.861333pt;}
.ws90{word-spacing:-0.821333pt;}
.ws5c{word-spacing:-0.762667pt;}
.ws2f{word-spacing:-0.704000pt;}
.ws9b{word-spacing:-0.658667pt;}
.ws3{word-spacing:-0.586667pt;}
.ws4f{word-spacing:-0.557333pt;}
.ws1c{word-spacing:-0.506667pt;}
.wsa8{word-spacing:-0.469333pt;}
.ws2c{word-spacing:-0.410667pt;}
.wsa1{word-spacing:-0.354667pt;}
.ws95{word-spacing:-0.352000pt;}
.ws8{word-spacing:-0.304000pt;}
.ws2b{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.234667pt;}
.ws89{word-spacing:-0.176000pt;}
.ws4d{word-spacing:-0.101333pt;}
.ws2e{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.050667pt;}
.ws2a{word-spacing:0.058667pt;}
.ws9c{word-spacing:0.101333pt;}
.ws18{word-spacing:0.117333pt;}
.wsad{word-spacing:0.176000pt;}
.wsa9{word-spacing:0.234667pt;}
.ws3c{word-spacing:0.253333pt;}
.ws7b{word-spacing:0.293333pt;}
.ws9e{word-spacing:0.354667pt;}
.ws9{word-spacing:0.405333pt;}
.wsb5{word-spacing:0.410667pt;}
.ws83{word-spacing:0.456000pt;}
.ws45{word-spacing:0.528000pt;}
.ws3e{word-spacing:0.533333pt;}
.wsa5{word-spacing:0.557333pt;}
.ws72{word-spacing:0.586667pt;}
.ws84{word-spacing:0.608000pt;}
.ws15{word-spacing:0.704000pt;}
.ws1e{word-spacing:0.709333pt;}
.ws4c{word-spacing:0.760000pt;}
.ws94{word-spacing:0.762667pt;}
.ws6c{word-spacing:0.821333pt;}
.wsc{word-spacing:0.861333pt;}
.ws5d{word-spacing:0.938667pt;}
.wsa2{word-spacing:0.962667pt;}
.ws5b{word-spacing:0.997333pt;}
.ws1d{word-spacing:1.266667pt;}
.ws30{word-spacing:1.349333pt;}
.ws8e{word-spacing:1.408000pt;}
.wsbb{word-spacing:1.466667pt;}
.ws3d{word-spacing:1.469333pt;}
.ws24{word-spacing:1.520000pt;}
.ws49{word-spacing:1.584000pt;}
.wsb6{word-spacing:1.642667pt;}
.ws38{word-spacing:1.672000pt;}
.ws65{word-spacing:1.760000pt;}
.wsb9{word-spacing:1.818667pt;}
.ws7a{word-spacing:1.877333pt;}
.ws61{word-spacing:1.936000pt;}
.ws12{word-spacing:1.994667pt;}
.ws56{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.128000pt;}
.wsb8{word-spacing:2.170667pt;}
.ws1b{word-spacing:2.229333pt;}
.ws21{word-spacing:2.280000pt;}
.ws4b{word-spacing:2.288000pt;}
.ws82{word-spacing:2.381333pt;}
.ws66{word-spacing:2.405333pt;}
.ws48{word-spacing:2.464000pt;}
.wsb{word-spacing:2.482667pt;}
.ws62{word-spacing:2.522667pt;}
.wsf{word-spacing:2.640000pt;}
.wsa3{word-spacing:2.685333pt;}
.ws74{word-spacing:2.698667pt;}
.ws79{word-spacing:2.757333pt;}
.ws7{word-spacing:2.786667pt;}
.ws11{word-spacing:2.816000pt;}
.ws87{word-spacing:2.837333pt;}
.ws71{word-spacing:2.874667pt;}
.ws41{word-spacing:2.933333pt;}
.ws39{word-spacing:3.040000pt;}
.ws46{word-spacing:3.050667pt;}
.ws23{word-spacing:3.090667pt;}
.ws63{word-spacing:3.109333pt;}
.ws91{word-spacing:3.226667pt;}
.ws19{word-spacing:3.242667pt;}
.ws53{word-spacing:3.306667pt;}
.ws5{word-spacing:3.344000pt;}
.ws8a{word-spacing:3.402667pt;}
.ws86{word-spacing:3.445333pt;}
.ws54{word-spacing:3.466667pt;}
.ws37{word-spacing:3.496000pt;}
.wsb7{word-spacing:3.520000pt;}
.ws4{word-spacing:3.578667pt;}
.ws40{word-spacing:3.637333pt;}
.ws81{word-spacing:3.648000pt;}
.ws47{word-spacing:3.696000pt;}
.ws34{word-spacing:3.698667pt;}
.ws85{word-spacing:3.749333pt;}
.ws6{word-spacing:3.813333pt;}
.ws6e{word-spacing:3.872000pt;}
.ws67{word-spacing:3.901333pt;}
.ws6f{word-spacing:3.930667pt;}
.ws29{word-spacing:3.989333pt;}
.ws70{word-spacing:4.048000pt;}
.ws9f{word-spacing:4.154667pt;}
.ws35{word-spacing:4.256000pt;}
.ws10{word-spacing:4.341333pt;}
.ws75{word-spacing:4.357333pt;}
.wsbc{word-spacing:4.458667pt;}
.ws7e{word-spacing:4.576000pt;}
.ws36{word-spacing:4.813333pt;}
.ws22{word-spacing:4.965333pt;}
.ws93{word-spacing:4.986667pt;}
.ws4e{word-spacing:5.016000pt;}
.wsb3{word-spacing:5.045333pt;}
.ws32{word-spacing:5.066667pt;}
.ws6b{word-spacing:5.104000pt;}
.ws97{word-spacing:5.162667pt;}
.ws25{word-spacing:5.218667pt;}
.ws80{word-spacing:5.338667pt;}
.ws14{word-spacing:5.573333pt;}
.ws99{word-spacing:5.632000pt;}
.ws13{word-spacing:5.690667pt;}
.ws8c{word-spacing:5.808000pt;}
.ws5a{word-spacing:5.866667pt;}
.wsa6{word-spacing:5.925333pt;}
.wsab{word-spacing:5.984000pt;}
.wsac{word-spacing:6.042667pt;}
.ws7d{word-spacing:6.101333pt;}
.ws3b{word-spacing:6.181333pt;}
.ws7c{word-spacing:6.336000pt;}
.ws33{word-spacing:6.384000pt;}
.ws6d{word-spacing:6.394667pt;}
.ws77{word-spacing:6.485333pt;}
.ws8f{word-spacing:6.512000pt;}
.ws2d{word-spacing:6.629333pt;}
.ws5e{word-spacing:6.922667pt;}
.ws96{word-spacing:7.040000pt;}
.ws9a{word-spacing:7.157333pt;}
.wsba{word-spacing:7.216000pt;}
.wsa7{word-spacing:7.392000pt;}
.ws43{word-spacing:7.509333pt;}
.wsb4{word-spacing:7.920000pt;}
.ws59{word-spacing:8.154667pt;}
.ws64{word-spacing:8.213333pt;}
.ws42{word-spacing:8.858667pt;}
.wse{word-spacing:8.976000pt;}
.ws98{word-spacing:9.210667pt;}
.wsaf{word-spacing:9.328000pt;}
.ws2{word-spacing:10.912000pt;}
.ws76{word-spacing:20.013333pt;}
._4{margin-left:-10.489600pt;}
._1{margin-left:-8.201600pt;}
._3{margin-left:-6.934400pt;}
._8{margin-left:-5.525333pt;}
._6{margin-left:-4.320000pt;}
._7{margin-left:-3.115200pt;}
._0{margin-left:-1.701333pt;}
._9{width:1.613333pt;}
._2{width:2.628267pt;}
._b{width:3.760533pt;}
._5{width:4.859733pt;}
._c{width:6.344533pt;}
._d{width:7.462400pt;}
._e{width:8.360533pt;}
._a{width:9.286933pt;}
._f{width:10.213867pt;}
._11{width:30.690667pt;}
._10{width:32.929600pt;}
._12{width:34.025067pt;}
._13{width:38.314667pt;}
.fs8{font-size:29.386667pt;}
.fs7{font-size:34.026667pt;}
.fs9{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:117.333333pt;}
.fs6{font-size:172.920533pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:41.505200pt;}
.y8{bottom:72.280667pt;}
.y10e{bottom:75.574533pt;}
.y2c{bottom:75.583867pt;}
.y54{bottom:75.585200pt;}
.y8b{bottom:75.587867pt;}
.ya5{bottom:75.591467pt;}
.yc5{bottom:79.770533pt;}
.y12a{bottom:81.463867pt;}
.y161{bottom:84.016000pt;}
.y10d{bottom:90.242533pt;}
.y2b{bottom:90.251867pt;}
.y53{bottom:90.253200pt;}
.y8a{bottom:90.255867pt;}
.ya4{bottom:90.259467pt;}
.yec{bottom:94.218933pt;}
.yc4{bottom:100.106533pt;}
.y129{bottom:101.458667pt;}
.y160{bottom:104.021333pt;}
.y10c{bottom:104.910533pt;}
.y2a{bottom:104.919867pt;}
.y52{bottom:104.921200pt;}
.ya3{bottom:108.702133pt;}
.y89{bottom:109.103867pt;}
.y143{bottom:111.684267pt;}
.yeb{bottom:114.224267pt;}
.yc3{bottom:116.259867pt;}
.y10b{bottom:119.578533pt;}
.y29{bottom:119.587867pt;}
.y51{bottom:119.589200pt;}
.y128{bottom:121.464000pt;}
.y15f{bottom:124.026667pt;}
.y88{bottom:125.259867pt;}
.ya2{bottom:127.550133pt;}
.yc2{bottom:130.927867pt;}
.y142{bottom:131.689600pt;}
.yea{bottom:134.229600pt;}
.y10a{bottom:134.246533pt;}
.y28{bottom:134.255867pt;}
.y50{bottom:138.437200pt;}
.y87{bottom:139.926533pt;}
.y127{bottom:141.436000pt;}
.ya1{bottom:143.702133pt;}
.y15e{bottom:144.032000pt;}
.y109{bottom:148.914533pt;}
.yc1{bottom:149.775867pt;}
.y141{bottom:151.678933pt;}
.y27{bottom:153.103867pt;}
.ye9{bottom:154.234933pt;}
.y86{bottom:154.593200pt;}
.y70{bottom:154.594000pt;}
.ya0{bottom:158.370133pt;}
.y4f{bottom:158.773200pt;}
.y126{bottom:161.441333pt;}
.y108{bottom:163.582533pt;}
.y15d{bottom:164.037333pt;}
.yc0{bottom:165.929067pt;}
.yd4{bottom:169.257200pt;}
.y85{bottom:169.259867pt;}
.y6f{bottom:169.262000pt;}
.y140{bottom:171.684267pt;}
.y9f{bottom:173.038133pt;}
.ye8{bottom:174.240267pt;}
.y4e{bottom:174.922533pt;}
.y107{bottom:178.250533pt;}
.ybf{bottom:180.597067pt;}
.y125{bottom:181.446667pt;}
.yd3{bottom:183.925200pt;}
.y84{bottom:183.926533pt;}
.y15c{bottom:184.042667pt;}
.y6e{bottom:187.704667pt;}
.y4d{bottom:189.590533pt;}
.y13f{bottom:191.689600pt;}
.y9e{bottom:191.886133pt;}
.y106{bottom:192.918533pt;}
.ye7{bottom:194.245600pt;}
.y26{bottom:196.711600pt;}
.y83{bottom:198.593200pt;}
.ybe{bottom:199.445067pt;}
.y124{bottom:201.452000pt;}
.yd2{bottom:202.773200pt;}
.y15b{bottom:204.048000pt;}
.y4c{bottom:204.258533pt;}
.y6d{bottom:206.552667pt;}
.y105{bottom:207.586533pt;}
.y13e{bottom:211.661600pt;}
.y12{bottom:216.014000pt;}
.y25{bottom:216.716933pt;}
.y82{bottom:217.439867pt;}
.y4b{bottom:218.926533pt;}
.y104{bottom:222.254533pt;}
.y6c{bottom:222.701467pt;}
.yd1{bottom:223.109200pt;}
.y15a{bottom:224.053333pt;}
.y13d{bottom:231.666933pt;}
.y4a{bottom:233.594533pt;}
.ye6{bottom:234.241600pt;}
.y9d{bottom:234.273600pt;}
.y11{bottom:236.019333pt;}
.y24{bottom:236.722267pt;}
.y103{bottom:236.922533pt;}
.y6b{bottom:237.369467pt;}
.y123{bottom:241.448000pt;}
.yd0{bottom:243.445067pt;}
.y159{bottom:244.058667pt;}
.y13c{bottom:251.672267pt;}
.y6a{bottom:252.037467pt;}
.y49{bottom:252.442533pt;}
.ye5{bottom:254.246933pt;}
.y9c{bottom:254.278933pt;}
.ybd{bottom:254.340267pt;}
.y102{bottom:255.770533pt;}
.y10{bottom:256.024667pt;}
.y23{bottom:256.727600pt;}
.y22{bottom:256.732933pt;}
.ycf{bottom:259.599733pt;}
.y122{bottom:261.453333pt;}
.y158{bottom:264.064000pt;}
.y69{bottom:266.705467pt;}
.y48{bottom:268.591733pt;}
.y13b{bottom:271.677600pt;}
.y101{bottom:271.918533pt;}
.ye4{bottom:274.252267pt;}
.y9b{bottom:274.284267pt;}
.ybc{bottom:274.345600pt;}
.yf{bottom:276.030000pt;}
.yce{bottom:278.447733pt;}
.y121{bottom:281.458667pt;}
.y47{bottom:283.259733pt;}
.y157{bottom:284.069333pt;}
.y68{bottom:285.148133pt;}
.y100{bottom:286.586533pt;}
.y13a{bottom:291.682933pt;}
.ye3{bottom:294.257600pt;}
.y9a{bottom:294.289600pt;}
.ybb{bottom:294.350933pt;}
.ye{bottom:296.035333pt;}
.y46{bottom:297.927733pt;}
.y67{bottom:299.816133pt;}
.yff{bottom:301.254533pt;}
.y120{bottom:301.464000pt;}
.y156{bottom:304.074667pt;}
.y139{bottom:311.688267pt;}
.y45{bottom:312.595733pt;}
.ye2{bottom:314.262933pt;}
.y99{bottom:314.294933pt;}
.yba{bottom:314.356267pt;}
.y66{bottom:314.484133pt;}
.yfe{bottom:315.922533pt;}
.y21{bottom:316.732933pt;}
.y11f{bottom:321.469333pt;}
.y155{bottom:324.080000pt;}
.y44{bottom:327.263733pt;}
.y65{bottom:329.152133pt;}
.yfd{bottom:330.590533pt;}
.y138{bottom:331.693600pt;}
.ye1{bottom:334.268267pt;}
.y98{bottom:334.300267pt;}
.yb9{bottom:334.328267pt;}
.ycd{bottom:334.345600pt;}
.yd{bottom:336.031333pt;}
.y43{bottom:341.931733pt;}
.y64{bottom:343.820133pt;}
.y154{bottom:344.085333pt;}
.yfc{bottom:345.258533pt;}
.ye0{bottom:354.273600pt;}
.y97{bottom:354.305600pt;}
.yb8{bottom:354.333600pt;}
.ycc{bottom:354.350933pt;}
.yc{bottom:356.036667pt;}
.y11e{bottom:361.469333pt;}
.y63{bottom:362.668267pt;}
.y153{bottom:364.090667pt;}
.yfb{bottom:364.106533pt;}
.y137{bottom:371.689600pt;}
.y167{bottom:374.264267pt;}
.ydf{bottom:374.278933pt;}
.yb7{bottom:374.338933pt;}
.ycb{bottom:374.356267pt;}
.yb{bottom:376.042000pt;}
.y62{bottom:378.820133pt;}
.y152{bottom:384.096000pt;}
.y136{bottom:391.694933pt;}
.y61{bottom:393.488133pt;}
.y166{bottom:394.269600pt;}
.yde{bottom:394.284267pt;}
.y81{bottom:394.292267pt;}
.y96{bottom:394.301600pt;}
.y42{bottom:394.312267pt;}
.yca{bottom:394.360267pt;}
.ya{bottom:396.047333pt;}
.yfa{bottom:404.118533pt;}
.y11d{bottom:404.136000pt;}
.y60{bottom:408.156133pt;}
.y135{bottom:411.678933pt;}
.y165{bottom:414.274933pt;}
.ydd{bottom:414.289600pt;}
.y80{bottom:414.297600pt;}
.y95{bottom:414.306933pt;}
.y41{bottom:414.317600pt;}
.yb6{bottom:414.334933pt;}
.yc9{bottom:414.365600pt;}
.y9{bottom:416.052667pt;}
.y5f{bottom:422.824133pt;}
.y151{bottom:424.092000pt;}
.yf9{bottom:424.123867pt;}
.y134{bottom:431.684267pt;}
.y164{bottom:434.280267pt;}
.ydc{bottom:434.294933pt;}
.y7f{bottom:434.302933pt;}
.y94{bottom:434.312267pt;}
.y40{bottom:434.322933pt;}
.yb5{bottom:434.340267pt;}
.y150{bottom:444.097333pt;}
.yf8{bottom:444.129200pt;}
.y20{bottom:446.921333pt;}
.y133{bottom:451.689600pt;}
.y163{bottom:454.285600pt;}
.ydb{bottom:454.300267pt;}
.y11c{bottom:454.301600pt;}
.y7e{bottom:454.308267pt;}
.y93{bottom:454.317600pt;}
.yc8{bottom:454.318933pt;}
.y3f{bottom:454.328267pt;}
.yb4{bottom:454.345600pt;}
.y14f{bottom:464.102667pt;}
.yf7{bottom:464.134533pt;}
.y1f{bottom:466.926667pt;}
.y132{bottom:471.673600pt;}
.y162{bottom:474.290933pt;}
.y11b{bottom:474.306933pt;}
.y7d{bottom:474.313600pt;}
.y92{bottom:474.322933pt;}
.yc7{bottom:474.324267pt;}
.y3e{bottom:474.333600pt;}
.y5e{bottom:474.340267pt;}
.yb3{bottom:474.350933pt;}
.y14e{bottom:484.108000pt;}
.yf6{bottom:484.139867pt;}
.y1e{bottom:486.932000pt;}
.y131{bottom:491.678933pt;}
.yda{bottom:494.296267pt;}
.y11a{bottom:494.312267pt;}
.y7c{bottom:494.318933pt;}
.y91{bottom:494.328267pt;}
.yc6{bottom:494.329600pt;}
.y3d{bottom:494.338933pt;}
.y5d{bottom:494.345600pt;}
.yb2{bottom:494.356267pt;}
.y14d{bottom:504.113333pt;}
.y1d{bottom:506.937333pt;}
.y130{bottom:511.684267pt;}
.yd9{bottom:514.301600pt;}
.y119{bottom:514.317600pt;}
.y7b{bottom:514.324267pt;}
.yb1{bottom:514.334933pt;}
.y5c{bottom:514.350933pt;}
.yf5{bottom:524.098667pt;}
.y1c{bottom:526.942667pt;}
.y12f{bottom:531.689600pt;}
.yd8{bottom:534.306933pt;}
.y118{bottom:534.322933pt;}
.y90{bottom:534.324267pt;}
.y7a{bottom:534.329600pt;}
.y3c{bottom:534.334933pt;}
.yb0{bottom:534.340267pt;}
.y5b{bottom:534.356267pt;}
.yf4{bottom:544.104000pt;}
.y14c{bottom:544.109333pt;}
.y1b{bottom:546.948000pt;}
.y12e{bottom:551.694933pt;}
.yd7{bottom:554.312267pt;}
.y117{bottom:554.328267pt;}
.y8f{bottom:554.329600pt;}
.y79{bottom:554.334933pt;}
.y3b{bottom:554.340267pt;}
.y5a{bottom:554.344267pt;}
.yaf{bottom:554.345600pt;}
.yf3{bottom:564.109333pt;}
.y14b{bottom:564.114667pt;}
.y1a{bottom:566.953333pt;}
.y7{bottom:573.720667pt;}
.yd6{bottom:574.317600pt;}
.y116{bottom:574.333600pt;}
.y8e{bottom:574.334933pt;}
.y78{bottom:574.340267pt;}
.y3a{bottom:574.345600pt;}
.y59{bottom:574.349600pt;}
.yae{bottom:574.350933pt;}
.yf2{bottom:584.114667pt;}
.y14a{bottom:584.120000pt;}
.y19{bottom:586.958667pt;}
.y12d{bottom:591.694933pt;}
.yd5{bottom:594.322933pt;}
.y115{bottom:594.338933pt;}
.y8d{bottom:594.340267pt;}
.y77{bottom:594.345600pt;}
.y39{bottom:594.350933pt;}
.y58{bottom:594.354933pt;}
.yad{bottom:594.356267pt;}
.yf1{bottom:604.120000pt;}
.y149{bottom:604.125333pt;}
.yac{bottom:614.328267pt;}
.y114{bottom:614.344267pt;}
.y8c{bottom:614.345600pt;}
.y76{bottom:614.350933pt;}
.y38{bottom:614.356267pt;}
.y6{bottom:615.046000pt;}
.yf0{bottom:624.125333pt;}
.y148{bottom:624.130667pt;}
.y12c{bottom:634.318933pt;}
.yab{bottom:634.333600pt;}
.y37{bottom:634.345600pt;}
.y113{bottom:634.349600pt;}
.y57{bottom:634.350933pt;}
.y75{bottom:634.356267pt;}
.yef{bottom:644.130667pt;}
.y147{bottom:644.136000pt;}
.y18{bottom:646.958667pt;}
.y12b{bottom:654.324267pt;}
.yaa{bottom:654.338933pt;}
.y36{bottom:654.350933pt;}
.y74{bottom:654.354933pt;}
.y56{bottom:654.356267pt;}
.y5{bottom:655.054000pt;}
.yee{bottom:664.136000pt;}
.y55{bottom:674.329600pt;}
.ya9{bottom:674.344267pt;}
.y112{bottom:674.345600pt;}
.y35{bottom:674.356267pt;}
.y73{bottom:674.360267pt;}
.y17{bottom:681.625333pt;}
.y146{bottom:684.135867pt;}
.y34{bottom:694.334933pt;}
.ya8{bottom:694.349600pt;}
.y111{bottom:694.350933pt;}
.y72{bottom:694.365600pt;}
.yed{bottom:704.135867pt;}
.y33{bottom:714.340267pt;}
.ya7{bottom:714.354933pt;}
.y110{bottom:714.356267pt;}
.y16{bottom:716.292000pt;}
.y4{bottom:717.699200pt;}
.y32{bottom:734.345600pt;}
.y145{bottom:734.350933pt;}
.y10f{bottom:734.356267pt;}
.ya6{bottom:734.360267pt;}
.y15{bottom:750.958667pt;}
.y31{bottom:754.350933pt;}
.y144{bottom:754.356267pt;}
.y3{bottom:757.709867pt;}
.y30{bottom:774.356267pt;}
.y14{bottom:785.625333pt;}
.y2f{bottom:794.361600pt;}
.y2{bottom:797.720533pt;}
.y1{bottom:837.731200pt;}
.y2e{bottom:852.938667pt;}
.y71{bottom:852.970133pt;}
.y2d{bottom:868.938667pt;}
.h16{height:25.064623pt;}
.he{height:25.065156pt;}
.h21{height:25.065690pt;}
.h1a{height:27.264375pt;}
.h17{height:38.828125pt;}
.h5{height:40.734375pt;}
.h8{height:41.307292pt;}
.hf{height:41.785156pt;}
.h1b{height:43.984375pt;}
.h6{height:44.352000pt;}
.h10{height:48.072917pt;}
.ha{height:54.255208pt;}
.h1c{height:54.260542pt;}
.h23{height:54.276542pt;}
.h18{height:54.281875pt;}
.h25{height:54.297342pt;}
.h1f{height:54.297875pt;}
.h12{height:54.319208pt;}
.h15{height:54.324542pt;}
.hd{height:54.340542pt;}
.h1e{height:54.345875pt;}
.h11{height:54.361875pt;}
.h14{height:54.383208pt;}
.h1d{height:54.388542pt;}
.h22{height:54.404008pt;}
.h20{height:54.425875pt;}
.h13{height:54.452542pt;}
.h19{height:54.532542pt;}
.h7{height:56.026667pt;}
.h24{height:59.062500pt;}
.h4{height:59.187500pt;}
.hb{height:63.984375pt;}
.h3{height:88.781250pt;}
.h9{height:98.437500pt;}
.h2{height:108.281250pt;}
.hc{height:159.917720pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:48.002533pt;}
.x3{left:49.971600pt;}
.x17{left:68.031467pt;}
.xf{left:83.699467pt;}
.xc{left:84.779733pt;}
.xb{left:88.619733pt;}
.x18{left:90.701067pt;}
.x1a{left:92.243067pt;}
.x15{left:106.314800pt;}
.x5{left:109.136533pt;}
.x2{left:111.483600pt;}
.x13{left:121.612800pt;}
.x9{left:122.539733pt;}
.xa{left:140.193067pt;}
.x4{left:152.696933pt;}
.x1{left:159.267600pt;}
.xd{left:166.753067pt;}
.x14{left:220.612800pt;}
.x12{left:260.667467pt;}
.xe{left:272.708800pt;}
.x10{left:280.790133pt;}
.x6{left:285.661200pt;}
.x16{left:301.897067pt;}
.x8{left:316.637200pt;}
.x11{left:325.274133pt;}
.x19{left:369.831467pt;}
}




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