
    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_bef2c04d1c06c1d162a7357d.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c9d07307db36cc8f3f36c8f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7dac235f4ce77a0d30faab14.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a5e7d925048c1bffe297f252.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1bf2f069c81b5cf036e913be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_a3b8b33ad51eb1713959e35b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_17c53fcf137ffd12d4c206b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_bfe657c87e13f9e612ef48a6.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0b25eb662b8e50063cc3fc14.woff2')format("woff");}.ff9{font-family:ff9;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.v3{vertical-align:-3.470400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.ls79{letter-spacing:-3.552000px;}
.lsa7{letter-spacing:-3.216000px;}
.ls1c{letter-spacing:-0.960000px;}
.ls3e{letter-spacing:-0.420000px;}
.ls53{letter-spacing:-0.240000px;}
.ls54{letter-spacing:-0.180000px;}
.ls3d{letter-spacing:-0.120000px;}
.ls78{letter-spacing:-0.096000px;}
.ls55{letter-spacing:-0.060000px;}
.ls9c{letter-spacing:-0.048000px;}
.ls1b{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls65{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls64{letter-spacing:0.013800px;}
.ls6{letter-spacing:0.048000px;}
.ls31{letter-spacing:0.060000px;}
.ls6b{letter-spacing:0.093000px;}
.ls2{letter-spacing:0.096000px;}
.ls32{letter-spacing:0.120000px;}
.ls97{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.180000px;}
.ls6a{letter-spacing:0.184200px;}
.ls8{letter-spacing:0.192000px;}
.ls3{letter-spacing:0.240000px;}
.ls6d{letter-spacing:0.282000px;}
.ls14{letter-spacing:0.300000px;}
.ls7d{letter-spacing:0.336000px;}
.ls51{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.384000px;}
.ls2d{letter-spacing:0.420000px;}
.ls94{letter-spacing:0.432000px;}
.ls6c{letter-spacing:0.444600px;}
.ls63{letter-spacing:0.470400px;}
.ls9{letter-spacing:0.480000px;}
.ls7b{letter-spacing:0.528000px;}
.ls12{letter-spacing:0.540000px;}
.ls92{letter-spacing:0.576000px;}
.ls33{letter-spacing:0.600000px;}
.ls95{letter-spacing:0.624000px;}
.ls76{letter-spacing:0.633000px;}
.ls18{letter-spacing:0.660000px;}
.ls7c{letter-spacing:0.672000px;}
.ls67{letter-spacing:0.708600px;}
.ls62{letter-spacing:0.712200px;}
.ls21{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.768000px;}
.ls4d{letter-spacing:0.780000px;}
.ls9e{letter-spacing:0.816000px;}
.ls2a{letter-spacing:0.840000px;}
.ls27{letter-spacing:0.900000px;}
.ls96{letter-spacing:0.912000px;}
.ls1a{letter-spacing:0.960000px;}
.ls60{letter-spacing:0.972000px;}
.lsa8{letter-spacing:1.008000px;}
.ls49{letter-spacing:1.020000px;}
.ls75{letter-spacing:1.024200px;}
.ls7{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.080000px;}
.ls8a{letter-spacing:1.104000px;}
.ls69{letter-spacing:1.131000px;}
.ls48{letter-spacing:1.140000px;}
.ls77{letter-spacing:1.152000px;}
.ls74{letter-spacing:1.185000px;}
.ls66{letter-spacing:1.189800px;}
.ls16{letter-spacing:1.200000px;}
.ls8e{letter-spacing:1.248000px;}
.ls30{letter-spacing:1.260000px;}
.ls52{letter-spacing:1.288200px;}
.ls93{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.320000px;}
.ls24{letter-spacing:1.380000px;}
.ls4{letter-spacing:1.392000px;}
.ls6f{letter-spacing:1.413600px;}
.ls37{letter-spacing:1.440000px;}
.ls8b{letter-spacing:1.488000px;}
.ls4f{letter-spacing:1.500000px;}
.lsa2{letter-spacing:1.536000px;}
.ls4a{letter-spacing:1.560000px;}
.ls88{letter-spacing:1.584000px;}
.ls5d{letter-spacing:1.620000px;}
.ls90{letter-spacing:1.632000px;}
.ls2c{letter-spacing:1.680000px;}
.lsa3{letter-spacing:1.728000px;}
.ls50{letter-spacing:1.740000px;}
.ls61{letter-spacing:1.764000px;}
.lsa5{letter-spacing:1.776000px;}
.ls71{letter-spacing:1.791600px;}
.ls20{letter-spacing:1.800000px;}
.ls8f{letter-spacing:1.824000px;}
.ls25{letter-spacing:1.860000px;}
.ls9d{letter-spacing:1.872000px;}
.ls68{letter-spacing:1.918200px;}
.ls15{letter-spacing:1.920000px;}
.ls73{letter-spacing:1.937400px;}
.ls57{letter-spacing:1.938000px;}
.ls86{letter-spacing:1.968000px;}
.lse{letter-spacing:1.980000px;}
.ls11{letter-spacing:2.040000px;}
.ls3a{letter-spacing:2.100000px;}
.ls2f{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.220000px;}
.ls85{letter-spacing:2.256000px;}
.ls28{letter-spacing:2.280000px;}
.ls87{letter-spacing:2.304000px;}
.ls6e{letter-spacing:2.325600px;}
.ls2e{letter-spacing:2.340000px;}
.ls1f{letter-spacing:2.400000px;}
.ls34{letter-spacing:2.460000px;}
.ls8c{letter-spacing:2.496000px;}
.ls23{letter-spacing:2.520000px;}
.ls41{letter-spacing:2.580000px;}
.ls58{letter-spacing:2.640000px;}
.lsa6{letter-spacing:2.688000px;}
.lsf{letter-spacing:2.700000px;}
.ls9b{letter-spacing:2.736000px;}
.ls22{letter-spacing:2.760000px;}
.ls26{letter-spacing:2.820000px;}
.lsa{letter-spacing:2.880000px;}
.ls5a{letter-spacing:2.940000px;}
.lsa0{letter-spacing:2.976000px;}
.ls1d{letter-spacing:3.000000px;}
.ls70{letter-spacing:3.013800px;}
.ls98{letter-spacing:3.024000px;}
.ls7e{letter-spacing:3.060000px;}
.ls8d{letter-spacing:3.072000px;}
.ls36{letter-spacing:3.120000px;}
.ls1e{letter-spacing:3.180000px;}
.ls47{letter-spacing:3.240000px;}
.ls9f{letter-spacing:3.264000px;}
.ls19{letter-spacing:3.300000px;}
.ls80{letter-spacing:3.360000px;}
.lsa1{letter-spacing:3.408000px;}
.ls43{letter-spacing:3.420000px;}
.ls5b{letter-spacing:3.540000px;}
.ls9a{letter-spacing:3.552000px;}
.ls46{letter-spacing:3.600000px;}
.ls81{letter-spacing:3.660000px;}
.ls3b{letter-spacing:3.720000px;}
.ls5e{letter-spacing:3.780000px;}
.ls40{letter-spacing:3.840000px;}
.ls7a{letter-spacing:3.900000px;}
.ls10{letter-spacing:3.960000px;}
.ls44{letter-spacing:4.020000px;}
.ls4e{letter-spacing:4.080000px;}
.ls2b{letter-spacing:4.140000px;}
.ls29{letter-spacing:4.200000px;}
.ls17{letter-spacing:4.320000px;}
.ls4c{letter-spacing:4.380000px;}
.ls59{letter-spacing:4.440000px;}
.ls5f{letter-spacing:4.500000px;}
.ls89{letter-spacing:4.512000px;}
.lsd{letter-spacing:4.560000px;}
.lsa4{letter-spacing:4.608000px;}
.ls38{letter-spacing:4.620000px;}
.ls72{letter-spacing:4.680000px;}
.ls99{letter-spacing:4.704000px;}
.ls3c{letter-spacing:4.740000px;}
.ls3f{letter-spacing:4.860000px;}
.ls7f{letter-spacing:5.100000px;}
.ls45{letter-spacing:5.220000px;}
.ls83{letter-spacing:5.400000px;}
.ls39{letter-spacing:5.640000px;}
.ls4b{letter-spacing:5.700000px;}
.ls84{letter-spacing:5.760000px;}
.ls82{letter-spacing:6.060000px;}
.ls42{letter-spacing:6.960000px;}
.ls5c{letter-spacing:7.320000px;}
.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;}
}
.ws27{word-spacing:-19.020000px;}
.ws28{word-spacing:-18.600000px;}
.ws46{word-spacing:-18.300000px;}
.ws45{word-spacing:-18.240000px;}
.ws9c{word-spacing:-18.060000px;}
.ws8e{word-spacing:-17.700000px;}
.ws9b{word-spacing:-17.640000px;}
.ws44{word-spacing:-16.680000px;}
.wsc3{word-spacing:-14.880000px;}
.wsa7{word-spacing:-14.592000px;}
.wsc2{word-spacing:-14.112000px;}
.wsc4{word-spacing:-13.680000px;}
.wsa6{word-spacing:-13.344000px;}
.ws43{word-spacing:-11.160000px;}
.ws0{word-spacing:-11.008800px;}
.ws47{word-spacing:-10.980000px;}
.ws29{word-spacing:-10.764000px;}
.wsc5{word-spacing:-10.128000px;}
.ws24{word-spacing:-5.640000px;}
.wsac{word-spacing:-4.512000px;}
.wsa0{word-spacing:-4.200000px;}
.ws17{word-spacing:-3.960000px;}
.ws2{word-spacing:-3.630000px;}
.wsb9{word-spacing:-3.552000px;}
.ws2f{word-spacing:-3.420000px;}
.wsce{word-spacing:-3.408000px;}
.ws11{word-spacing:-3.300000px;}
.wscd{word-spacing:-3.264000px;}
.wsa3{word-spacing:-3.180000px;}
.ws4f{word-spacing:-3.120000px;}
.wsb8{word-spacing:-3.024000px;}
.ws56{word-spacing:-3.000000px;}
.wsab{word-spacing:-2.880000px;}
.wsd1{word-spacing:-2.688000px;}
.ws3b{word-spacing:-2.580000px;}
.wsb3{word-spacing:-2.496000px;}
.ws39{word-spacing:-2.400000px;}
.ws9f{word-spacing:-2.340000px;}
.ws58{word-spacing:-2.280000px;}
.ws23{word-spacing:-2.220000px;}
.ws2c{word-spacing:-2.160000px;}
.ws9d{word-spacing:-2.040000px;}
.ws4a{word-spacing:-1.980000px;}
.wsaa{word-spacing:-1.968000px;}
.wsf{word-spacing:-1.920000px;}
.wsc0{word-spacing:-1.872000px;}
.wsae{word-spacing:-1.824000px;}
.ws13{word-spacing:-1.800000px;}
.wscf{word-spacing:-1.776000px;}
.ws4d{word-spacing:-1.764000px;}
.ws95{word-spacing:-1.740000px;}
.wsa4{word-spacing:-1.560000px;}
.wsa8{word-spacing:-1.440000px;}
.wsc9{word-spacing:-1.392000px;}
.ws12{word-spacing:-1.320000px;}
.wsc8{word-spacing:-1.296000px;}
.ws42{word-spacing:-1.260000px;}
.wsad{word-spacing:-1.248000px;}
.ws1b{word-spacing:-1.200000px;}
.wscc{word-spacing:-1.104000px;}
.ws37{word-spacing:-1.080000px;}
.wsc1{word-spacing:-1.056000px;}
.ws32{word-spacing:-1.020000px;}
.wsd0{word-spacing:-1.008000px;}
.wsca{word-spacing:-0.960000px;}
.ws16{word-spacing:-0.900000px;}
.wsc7{word-spacing:-0.816000px;}
.wsa2{word-spacing:-0.720000px;}
.ws8a{word-spacing:-0.672000px;}
.ws10{word-spacing:-0.660000px;}
.wsb5{word-spacing:-0.624000px;}
.ws3a{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.576000px;}
.ws19{word-spacing:-0.540000px;}
.ws31{word-spacing:-0.480000px;}
.wsbb{word-spacing:-0.432000px;}
.ws3e{word-spacing:-0.420000px;}
.wsb0{word-spacing:-0.384000px;}
.wsbd{word-spacing:-0.336000px;}
.wse{word-spacing:-0.300000px;}
.ws9a{word-spacing:-0.240000px;}
.wsaf{word-spacing:-0.192000px;}
.wsb7{word-spacing:-0.144000px;}
.ws90{word-spacing:-0.120000px;}
.ws9e{word-spacing:-0.060000px;}
.wsa9{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.wsb1{word-spacing:0.048000px;}
.ws34{word-spacing:0.060000px;}
.ws2b{word-spacing:0.180000px;}
.ws5c{word-spacing:0.192000px;}
.ws1e{word-spacing:0.240000px;}
.ws4e{word-spacing:0.300000px;}
.ws98{word-spacing:0.360000px;}
.ws26{word-spacing:0.420000px;}
.wsb{word-spacing:0.480000px;}
.ws25{word-spacing:0.540000px;}
.ws89{word-spacing:0.660000px;}
.ws3f{word-spacing:0.720000px;}
.wsa1{word-spacing:0.780000px;}
.ws91{word-spacing:0.960000px;}
.ws8d{word-spacing:1.056000px;}
.wsbe{word-spacing:1.104000px;}
.ws1c{word-spacing:1.140000px;}
.wsc6{word-spacing:1.152000px;}
.ws97{word-spacing:1.200000px;}
.ws59{word-spacing:1.440000px;}
.ws1a{word-spacing:1.560000px;}
.ws9{word-spacing:1.776000px;}
.ws1d{word-spacing:1.800000px;}
.ws5{word-spacing:1.872000px;}
.ws20{word-spacing:2.040000px;}
.ws2e{word-spacing:2.100000px;}
.ws40{word-spacing:2.220000px;}
.ws96{word-spacing:2.280000px;}
.wsbf{word-spacing:2.352000px;}
.ws2d{word-spacing:2.400000px;}
.ws7{word-spacing:2.448000px;}
.ws49{word-spacing:2.460000px;}
.wsb2{word-spacing:2.496000px;}
.ws22{word-spacing:2.520000px;}
.ws8f{word-spacing:2.580000px;}
.ws5a{word-spacing:2.592000px;}
.wsb6{word-spacing:2.640000px;}
.ws4b{word-spacing:2.760000px;}
.wscb{word-spacing:2.784000px;}
.ws52{word-spacing:2.880000px;}
.ws8c{word-spacing:2.928000px;}
.ws18{word-spacing:3.000000px;}
.ws5b{word-spacing:3.024000px;}
.ws35{word-spacing:3.060000px;}
.ws3c{word-spacing:3.180000px;}
.wsbc{word-spacing:3.216000px;}
.ws50{word-spacing:3.240000px;}
.ws8b{word-spacing:3.264000px;}
.ws30{word-spacing:3.540000px;}
.wsb4{word-spacing:3.552000px;}
.ws92{word-spacing:3.660000px;}
.ws33{word-spacing:3.720000px;}
.ws99{word-spacing:3.840000px;}
.ws2a{word-spacing:3.900000px;}
.ws21{word-spacing:3.960000px;}
.ws14{word-spacing:4.020000px;}
.ws6{word-spacing:4.080000px;}
.wsa5{word-spacing:4.140000px;}
.ws8{word-spacing:4.176000px;}
.ws36{word-spacing:4.260000px;}
.ws48{word-spacing:4.320000px;}
.ws4{word-spacing:4.368000px;}
.ws3{word-spacing:4.416000px;}
.ws51{word-spacing:4.560000px;}
.ws53{word-spacing:4.680000px;}
.ws55{word-spacing:4.800000px;}
.ws15{word-spacing:4.920000px;}
.ws41{word-spacing:4.980000px;}
.wsa{word-spacing:5.100000px;}
.ws3d{word-spacing:5.160000px;}
.ws93{word-spacing:5.220000px;}
.ws1f{word-spacing:5.400000px;}
.wsd{word-spacing:5.460000px;}
.wsc{word-spacing:5.520000px;}
.ws38{word-spacing:6.600000px;}
.ws4c{word-spacing:7.080000px;}
.ws94{word-spacing:7.380000px;}
.ws57{word-spacing:7.500000px;}
.ws54{word-spacing:7.860000px;}
.ws74{word-spacing:37.200000px;}
.ws80{word-spacing:42.576000px;}
.ws72{word-spacing:43.920000px;}
.ws7c{word-spacing:45.216000px;}
.ws7b{word-spacing:46.560000px;}
.ws83{word-spacing:53.232000px;}
.ws85{word-spacing:54.576000px;}
.ws87{word-spacing:55.920000px;}
.ws79{word-spacing:58.608000px;}
.ws77{word-spacing:61.248000px;}
.ws76{word-spacing:62.544000px;}
.ws75{word-spacing:82.560000px;}
.ws7f{word-spacing:83.904000px;}
.ws7d{word-spacing:85.200000px;}
.ws7e{word-spacing:86.544000px;}
.ws84{word-spacing:93.216000px;}
.ws86{word-spacing:94.560000px;}
.ws88{word-spacing:95.904000px;}
.ws7a{word-spacing:98.544000px;}
.ws78{word-spacing:101.184000px;}
.ws81{word-spacing:220.416000px;}
.ws73{word-spacing:223.584000px;}
.ws82{word-spacing:239.136000px;}
.ws64{word-spacing:257.328000px;}
.ws6b{word-spacing:257.760000px;}
.ws71{word-spacing:277.296000px;}
.ws5f{word-spacing:298.704000px;}
.ws61{word-spacing:301.008000px;}
.ws66{word-spacing:303.648000px;}
.ws5e{word-spacing:306.336000px;}
.ws6c{word-spacing:306.768000px;}
.ws68{word-spacing:307.632000px;}
.ws63{word-spacing:307.680000px;}
.ws6e{word-spacing:309.456000px;}
.ws6a{word-spacing:310.752000px;}
.ws6f{word-spacing:334.128000px;}
.ws60{word-spacing:353.376000px;}
.ws65{word-spacing:356.016000px;}
.ws5d{word-spacing:358.704000px;}
.ws67{word-spacing:360.000000px;}
.ws62{word-spacing:360.048000px;}
.ws69{word-spacing:363.120000px;}
.ws6d{word-spacing:364.464000px;}
.ws70{word-spacing:462.336000px;}
._c{margin-left:-2898.708000px;}
._e{margin-left:-2874.891000px;}
._61{margin-left:-2873.781000px;}
._d{margin-left:-7.260000px;}
._4{margin-left:-6.192000px;}
._2{margin-left:-4.884000px;}
._0{margin-left:-3.192000px;}
._3{margin-left:-1.536000px;}
._6{width:1.008000px;}
._1{width:2.520000px;}
._5{width:3.840000px;}
._7{width:5.760000px;}
._8{width:7.440000px;}
._9{width:8.760000px;}
._a{width:9.900000px;}
._b{width:11.100000px;}
._44{width:31.536000px;}
._43{width:42.528000px;}
._58{width:64.080000px;}
._60{width:74.880000px;}
._53{width:82.752000px;}
._46{width:97.200000px;}
._51{width:99.888000px;}
._4f{width:104.208000px;}
._57{width:109.440000px;}
._4b{width:112.128000px;}
._50{width:114.864000px;}
._4c{width:115.872000px;}
._4a{width:117.504000px;}
._5f{width:139.368000px;}
._42{width:144.672000px;}
._5e{width:146.736000px;}
._5d{width:162.768000px;}
._12{width:171.408000px;}
._45{width:192.096000px;}
._5a{width:200.160000px;}
._13{width:214.848000px;}
._4e{width:236.928000px;}
._55{width:239.136000px;}
._49{width:252.480000px;}
._4d{width:253.584000px;}
._11{width:263.616000px;}
._56{width:264.768000px;}
._52{width:265.872000px;}
._5c{width:278.256000px;}
._54{width:281.952000px;}
._47{width:292.560000px;}
._48{width:295.296000px;}
._5b{width:308.640000px;}
._59{width:310.320000px;}
._24{width:312.048000px;}
._2a{width:319.680000px;}
._19{width:321.024000px;}
._37{width:322.320000px;}
._32{width:323.664000px;}
._27{width:326.856000px;}
._39{width:328.992000px;}
._3e{width:330.336000px;}
._1c{width:332.544000px;}
._2b{width:334.272000px;}
._2d{width:342.336000px;}
._15{width:347.472000px;}
._23{width:356.976000px;}
._20{width:363.744000px;}
._10{width:365.184000px;}
._29{width:372.048000px;}
._34{width:373.392000px;}
._36{width:374.688000px;}
._18{width:376.032000px;}
._41{width:378.720000px;}
._1e{width:379.728000px;}
._26{width:381.360000px;}
._3d{width:382.704000px;}
._3b{width:384.048000px;}
._1b{width:385.824000px;}
._2c{width:394.152000px;}
._1d{width:406.920000px;}
._14{width:409.008000px;}
._3f{width:414.984000px;}
._1f{width:417.072000px;}
._16{width:427.728000px;}
._2e{width:449.688000px;}
._35{width:465.624000px;}
._2f{width:478.416000px;}
._33{width:483.744000px;}
._28{width:492.312000px;}
._31{width:495.000000px;}
._3c{width:503.016000px;}
._40{width:507.792000px;}
._21{width:510.432000px;}
._1a{width:516.312000px;}
._38{width:534.528000px;}
._25{width:555.792000px;}
._17{width:561.120000px;}
._30{width:566.448000px;}
._3a{width:569.136000px;}
._22{width:609.456000px;}
._f{width:662.688000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:83.228850px;}
.y61{bottom:83.363850px;}
.ycc{bottom:83.382600px;}
.ye6{bottom:83.421750px;}
.y123{bottom:83.434050px;}
.y2b{bottom:83.493900px;}
.y96{bottom:83.517600px;}
.y146{bottom:85.796700px;}
.y186{bottom:94.940700px;}
.y11d{bottom:99.154050px;}
.ye5{bottom:99.165750px;}
.y122{bottom:99.178050px;}
.y145{bottom:100.796700px;}
.ye0{bottom:101.228850px;}
.y60{bottom:101.363850px;}
.ycb{bottom:101.382600px;}
.y95{bottom:101.517600px;}
.y105{bottom:102.531150px;}
.y185{bottom:109.940700px;}
.y11c{bottom:114.898050px;}
.ye4{bottom:114.909750px;}
.y121{bottom:114.922050px;}
.y144{bottom:115.796700px;}
.y104{bottom:118.779150px;}
.ydf{bottom:119.228850px;}
.y5f{bottom:119.363850px;}
.yca{bottom:119.382600px;}
.y94{bottom:119.517600px;}
.y184{bottom:124.940700px;}
.y11b{bottom:130.642050px;}
.ye3{bottom:130.653750px;}
.y120{bottom:130.666050px;}
.y143{bottom:130.796700px;}
.y103{bottom:135.027150px;}
.yde{bottom:137.228850px;}
.y5e{bottom:137.363850px;}
.yc9{bottom:137.382600px;}
.y93{bottom:137.517600px;}
.y183{bottom:139.940700px;}
.y142{bottom:145.796700px;}
.y11a{bottom:146.386050px;}
.ye2{bottom:146.397750px;}
.y11f{bottom:146.410050px;}
.y1b{bottom:146.475900px;}
.y102{bottom:151.275150px;}
.y182{bottom:154.940700px;}
.ydd{bottom:155.228850px;}
.y5d{bottom:155.363850px;}
.yc8{bottom:155.382600px;}
.y141{bottom:160.796700px;}
.y119{bottom:162.130050px;}
.y11e{bottom:162.154050px;}
.y101{bottom:167.523150px;}
.y181{bottom:169.940700px;}
.ydc{bottom:173.228850px;}
.y5c{bottom:173.363850px;}
.yc7{bottom:173.382600px;}
.y92{bottom:173.517600px;}
.y140{bottom:175.796700px;}
.y100{bottom:183.771150px;}
.y180{bottom:184.940700px;}
.y13f{bottom:190.796700px;}
.ydb{bottom:191.228850px;}
.y5b{bottom:191.363850px;}
.yc6{bottom:191.382600px;}
.y27{bottom:196.682550px;}
.y17f{bottom:199.940700px;}
.yff{bottom:200.019150px;}
.y13e{bottom:205.796700px;}
.yda{bottom:209.228850px;}
.y5a{bottom:209.363850px;}
.y91{bottom:209.367600px;}
.yc5{bottom:209.382600px;}
.y26{bottom:214.682550px;}
.y17e{bottom:214.940700px;}
.yfe{bottom:216.267150px;}
.y13d{bottom:220.796700px;}
.yd9{bottom:227.228850px;}
.y59{bottom:227.363850px;}
.y90{bottom:227.367600px;}
.yc4{bottom:227.382600px;}
.y17d{bottom:229.940700px;}
.yfd{bottom:232.515150px;}
.y25{bottom:232.682550px;}
.y13c{bottom:235.796700px;}
.y17c{bottom:244.940700px;}
.yd8{bottom:245.228850px;}
.y58{bottom:245.363850px;}
.y8f{bottom:245.367600px;}
.yc3{bottom:245.382600px;}
.yfc{bottom:248.763150px;}
.y24{bottom:250.682550px;}
.y13b{bottom:250.796700px;}
.y17b{bottom:259.940700px;}
.yd7{bottom:263.228850px;}
.y57{bottom:263.363850px;}
.y8e{bottom:263.367600px;}
.yc2{bottom:263.382600px;}
.yfb{bottom:265.011150px;}
.y13a{bottom:265.796700px;}
.y23{bottom:268.682550px;}
.y17a{bottom:274.940700px;}
.y139{bottom:280.796700px;}
.yd6{bottom:281.228850px;}
.yfa{bottom:281.259150px;}
.y56{bottom:281.363850px;}
.y8d{bottom:281.367600px;}
.yc1{bottom:281.382600px;}
.y22{bottom:286.682550px;}
.y179{bottom:289.940700px;}
.y138{bottom:295.796700px;}
.yf9{bottom:297.507150px;}
.yd5{bottom:299.228850px;}
.y55{bottom:299.363850px;}
.y8c{bottom:299.367600px;}
.yc0{bottom:299.382600px;}
.y21{bottom:304.682550px;}
.y178{bottom:304.940700px;}
.y137{bottom:310.796700px;}
.yf8{bottom:313.755150px;}
.yd4{bottom:317.228850px;}
.y54{bottom:317.363850px;}
.y8b{bottom:317.367600px;}
.ybf{bottom:317.382600px;}
.y177{bottom:319.940700px;}
.y20{bottom:322.682550px;}
.y136{bottom:325.796700px;}
.yf7{bottom:330.003150px;}
.y176{bottom:334.940700px;}
.yd3{bottom:335.228850px;}
.y53{bottom:335.363850px;}
.y8a{bottom:335.367600px;}
.ybe{bottom:335.382600px;}
.y1f{bottom:340.682550px;}
.y135{bottom:340.796700px;}
.yf6{bottom:346.251150px;}
.y175{bottom:349.940700px;}
.yd2{bottom:353.228850px;}
.y52{bottom:353.363850px;}
.y89{bottom:353.367600px;}
.ybd{bottom:353.382600px;}
.y134{bottom:355.796700px;}
.y1e{bottom:358.682550px;}
.yf5{bottom:362.499150px;}
.y174{bottom:364.940700px;}
.y133{bottom:370.796700px;}
.yd1{bottom:371.228850px;}
.y51{bottom:371.363850px;}
.y88{bottom:371.367600px;}
.ybc{bottom:371.382600px;}
.y1d{bottom:376.682550px;}
.yf4{bottom:378.747150px;}
.y173{bottom:379.940700px;}
.y132{bottom:385.796700px;}
.yd0{bottom:389.228850px;}
.y50{bottom:389.363850px;}
.y87{bottom:389.367600px;}
.ybb{bottom:389.382600px;}
.y28{bottom:394.682550px;}
.y172{bottom:394.940700px;}
.yf3{bottom:394.995150px;}
.y131{bottom:400.796700px;}
.ycf{bottom:407.228850px;}
.y4f{bottom:407.363850px;}
.y86{bottom:407.367600px;}
.yba{bottom:407.382600px;}
.y171{bottom:409.940700px;}
.yf2{bottom:411.243150px;}
.y1c{bottom:412.682550px;}
.y130{bottom:415.796700px;}
.y170{bottom:424.940700px;}
.yce{bottom:425.228850px;}
.y4e{bottom:425.363850px;}
.y85{bottom:425.367600px;}
.yb9{bottom:425.382600px;}
.yf1{bottom:427.491150px;}
.y12f{bottom:430.796700px;}
.y16f{bottom:439.940700px;}
.y4d{bottom:443.363850px;}
.y84{bottom:443.367600px;}
.yb8{bottom:443.382600px;}
.yf0{bottom:443.739150px;}
.y12e{bottom:445.796700px;}
.y16e{bottom:454.940700px;}
.yef{bottom:459.987150px;}
.y12d{bottom:460.796700px;}
.ycd{bottom:461.228850px;}
.y4c{bottom:461.363850px;}
.y83{bottom:461.367600px;}
.yb7{bottom:461.382600px;}
.y16d{bottom:469.940700px;}
.y12c{bottom:475.796700px;}
.yee{bottom:476.235150px;}
.y126{bottom:478.198050px;}
.y1a{bottom:479.055900px;}
.y4b{bottom:479.363850px;}
.y82{bottom:479.367600px;}
.yb6{bottom:479.382600px;}
.y16c{bottom:484.940700px;}
.y12b{bottom:490.796700px;}
.yed{bottom:492.483150px;}
.y127{bottom:496.162050px;}
.y4a{bottom:497.363850px;}
.y81{bottom:497.367600px;}
.yb5{bottom:497.382600px;}
.y16b{bottom:499.940700px;}
.y12a{bottom:505.796700px;}
.yec{bottom:508.731150px;}
.y19{bottom:511.911900px;}
.y16a{bottom:514.940700px;}
.y49{bottom:515.363850px;}
.y80{bottom:515.367600px;}
.yb4{bottom:515.382600px;}
.y129{bottom:520.796700px;}
.yeb{bottom:524.979150px;}
.y18{bottom:526.911900px;}
.y169{bottom:529.940700px;}
.y48{bottom:533.363850px;}
.y7f{bottom:533.367600px;}
.yb3{bottom:533.382600px;}
.y128{bottom:535.796700px;}
.yea{bottom:541.227150px;}
.y17{bottom:541.911900px;}
.y168{bottom:544.940700px;}
.y47{bottom:551.363850px;}
.y7e{bottom:551.367600px;}
.yb2{bottom:551.382600px;}
.y16{bottom:556.911900px;}
.y167{bottom:559.940700px;}
.y62{bottom:569.228850px;}
.y46{bottom:569.363850px;}
.y7d{bottom:569.367600px;}
.yb1{bottom:569.382600px;}
.y15{bottom:571.911900px;}
.y166{bottom:574.940700px;}
.ye9{bottom:576.987150px;}
.y14{bottom:586.911900px;}
.y45{bottom:587.363850px;}
.y7c{bottom:587.367600px;}
.yb0{bottom:587.382600px;}
.y165{bottom:589.940700px;}
.y13{bottom:601.911900px;}
.y1a4{bottom:604.938300px;}
.y164{bottom:604.940700px;}
.y44{bottom:605.363850px;}
.y7b{bottom:605.367600px;}
.yaf{bottom:605.382600px;}
.ye8{bottom:616.056600px;}
.y12{bottom:616.911900px;}
.y1a3{bottom:619.938300px;}
.y163{bottom:619.940700px;}
.y43{bottom:623.363850px;}
.y7a{bottom:623.367600px;}
.yae{bottom:623.382600px;}
.y11{bottom:631.911900px;}
.y1a2{bottom:634.938300px;}
.y162{bottom:634.940700px;}
.ye7{bottom:635.556600px;}
.y42{bottom:641.363850px;}
.y79{bottom:641.367600px;}
.yad{bottom:641.382600px;}
.y10{bottom:646.911900px;}
.y1a1{bottom:649.938300px;}
.y161{bottom:649.940700px;}
.y41{bottom:659.363850px;}
.y78{bottom:659.367600px;}
.yac{bottom:659.382600px;}
.yf{bottom:661.911900px;}
.y1a0{bottom:664.938300px;}
.y160{bottom:664.940700px;}
.ye{bottom:676.911900px;}
.y40{bottom:677.363850px;}
.y77{bottom:677.367600px;}
.yab{bottom:677.382600px;}
.y19f{bottom:679.938300px;}
.y15f{bottom:679.940700px;}
.yd{bottom:691.911900px;}
.y19e{bottom:694.938300px;}
.y15e{bottom:694.940700px;}
.y3f{bottom:695.363850px;}
.y76{bottom:695.367600px;}
.yaa{bottom:695.382600px;}
.y118{bottom:696.330150px;}
.yc{bottom:706.911900px;}
.y19d{bottom:709.938300px;}
.y15d{bottom:709.940700px;}
.y117{bottom:712.578150px;}
.y3e{bottom:713.363850px;}
.y75{bottom:713.367600px;}
.ya9{bottom:713.382600px;}
.yb{bottom:721.911900px;}
.y19c{bottom:724.938300px;}
.y15c{bottom:724.940700px;}
.y116{bottom:728.826150px;}
.y3d{bottom:731.363850px;}
.y74{bottom:731.367600px;}
.ya8{bottom:731.382600px;}
.ya{bottom:736.911900px;}
.y19b{bottom:739.938300px;}
.y15b{bottom:739.940700px;}
.y115{bottom:745.074150px;}
.y3c{bottom:749.363850px;}
.y73{bottom:749.367600px;}
.ya7{bottom:749.382600px;}
.y19a{bottom:754.938300px;}
.y15a{bottom:754.940700px;}
.y114{bottom:761.322150px;}
.y3b{bottom:767.363850px;}
.y72{bottom:767.367600px;}
.ya6{bottom:767.382600px;}
.y199{bottom:769.938300px;}
.y159{bottom:769.940700px;}
.y113{bottom:777.570150px;}
.y198{bottom:784.938300px;}
.y158{bottom:784.940700px;}
.y3a{bottom:785.363850px;}
.y71{bottom:785.367600px;}
.y9{bottom:785.370000px;}
.ya5{bottom:785.382600px;}
.y112{bottom:793.818150px;}
.y197{bottom:799.938300px;}
.y157{bottom:799.940700px;}
.y124{bottom:800.818050px;}
.y39{bottom:803.363850px;}
.y70{bottom:803.367600px;}
.ya4{bottom:803.382600px;}
.y111{bottom:810.066150px;}
.y196{bottom:814.938300px;}
.y156{bottom:814.940700px;}
.y8{bottom:820.155900px;}
.y38{bottom:821.363850px;}
.y6f{bottom:821.367600px;}
.ya3{bottom:821.382600px;}
.y110{bottom:826.314150px;}
.y125{bottom:829.522050px;}
.y195{bottom:829.938300px;}
.y155{bottom:829.940700px;}
.y37{bottom:839.363850px;}
.y6e{bottom:839.367600px;}
.ya2{bottom:839.382600px;}
.y7{bottom:840.773850px;}
.y10f{bottom:842.562150px;}
.y194{bottom:844.938300px;}
.y154{bottom:844.940700px;}
.y6{bottom:857.273850px;}
.y36{bottom:857.363850px;}
.y6d{bottom:857.367600px;}
.ya1{bottom:857.382600px;}
.y10e{bottom:858.810150px;}
.y193{bottom:859.938300px;}
.y153{bottom:859.940700px;}
.y5{bottom:869.655900px;}
.y192{bottom:874.938300px;}
.y152{bottom:874.940700px;}
.y10d{bottom:875.058150px;}
.y35{bottom:875.363850px;}
.y6c{bottom:875.367600px;}
.ya0{bottom:875.382600px;}
.y191{bottom:889.938300px;}
.y151{bottom:889.940700px;}
.y4{bottom:890.273850px;}
.y10c{bottom:891.306150px;}
.y34{bottom:893.363850px;}
.y6b{bottom:893.367600px;}
.y9f{bottom:893.382600px;}
.y190{bottom:904.938300px;}
.y150{bottom:904.940700px;}
.y3{bottom:905.541300px;}
.y10b{bottom:907.554150px;}
.y33{bottom:911.363850px;}
.y6a{bottom:911.367600px;}
.y9e{bottom:911.382600px;}
.y18f{bottom:919.938300px;}
.y14f{bottom:919.940700px;}
.y10a{bottom:923.802150px;}
.y32{bottom:929.363850px;}
.y69{bottom:929.367600px;}
.y9d{bottom:929.382600px;}
.y2{bottom:932.930700px;}
.y18e{bottom:934.938300px;}
.y14e{bottom:934.940700px;}
.y109{bottom:940.050150px;}
.y31{bottom:947.363850px;}
.y68{bottom:947.367600px;}
.y9c{bottom:947.382600px;}
.y18d{bottom:949.938300px;}
.y14d{bottom:949.940700px;}
.y1{bottom:959.936700px;}
.y18c{bottom:964.938300px;}
.y14c{bottom:964.940700px;}
.y30{bottom:965.363850px;}
.y67{bottom:965.367600px;}
.y9b{bottom:965.382600px;}
.y108{bottom:969.054150px;}
.y18b{bottom:979.938300px;}
.y14b{bottom:979.940700px;}
.y2f{bottom:983.363850px;}
.y66{bottom:983.367600px;}
.y9a{bottom:983.382600px;}
.y107{bottom:985.554150px;}
.y18a{bottom:994.938300px;}
.y14a{bottom:994.940700px;}
.y2e{bottom:1001.363850px;}
.y65{bottom:1001.367600px;}
.y99{bottom:1001.382600px;}
.y189{bottom:1009.938300px;}
.y149{bottom:1009.940700px;}
.y106{bottom:1017.867600px;}
.y2d{bottom:1019.363850px;}
.y98{bottom:1019.382600px;}
.y188{bottom:1024.938300px;}
.y148{bottom:1024.940700px;}
.y2c{bottom:1037.363850px;}
.y64{bottom:1037.367600px;}
.y97{bottom:1037.382600px;}
.y187{bottom:1039.938300px;}
.y147{bottom:1039.940700px;}
.y2a{bottom:1070.769450px;}
.y63{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h4{height:20.967187px;}
.h5{height:34.945312px;}
.h6{height:34.992188px;}
.hb{height:37.179199px;}
.h7{height:43.031250px;}
.h8{height:43.681641px;}
.h9{height:43.740234px;}
.hc{height:46.839741px;}
.h3{height:51.523955px;}
.ha{height:53.789062px;}
.h2{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.x14{left:78.661350px;}
.x7{left:96.094500px;}
.x1{left:97.795350px;}
.x22{left:106.295400px;}
.xa{left:110.555400px;}
.x2{left:125.427600px;}
.x25{left:127.559100px;}
.x5{left:131.816400px;}
.x1d{left:150.955350px;}
.x3{left:161.571600px;}
.x21{left:194.285400px;}
.x12{left:211.097250px;}
.x4{left:212.876400px;}
.x15{left:424.621350px;}
.x8{left:455.041500px;}
.xb{left:457.085400px;}
.xf{left:478.345350px;}
.x6{left:480.476400px;}
.x16{left:482.605350px;}
.x23{left:486.803400px;}
.xc{left:491.105400px;}
.x17{left:503.113350px;}
.x26{left:508.079100px;}
.x10{left:512.365350px;}
.xd{left:525.275400px;}
.x1f{left:529.807350px;}
.x1e{left:533.635350px;}
.x19{left:574.093350px;}
.x13{left:579.426600px;}
.x18{left:589.441350px;}
.x20{left:591.970350px;}
.x1b{left:640.513350px;}
.x1a{left:651.853350px;}
.x24{left:718.076550px;}
.xe{left:725.167350px;}
.x27{left:740.282550px;}
.x11{left:746.427300px;}
.x1c{left:765.061350px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v3{vertical-align:-3.084800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.ls79{letter-spacing:-3.157333pt;}
.lsa7{letter-spacing:-2.858667pt;}
.ls1c{letter-spacing:-0.853333pt;}
.ls3e{letter-spacing:-0.373333pt;}
.ls53{letter-spacing:-0.213333pt;}
.ls54{letter-spacing:-0.160000pt;}
.ls3d{letter-spacing:-0.106667pt;}
.ls78{letter-spacing:-0.085333pt;}
.ls55{letter-spacing:-0.053333pt;}
.ls9c{letter-spacing:-0.042667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls65{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls64{letter-spacing:0.012267pt;}
.ls6{letter-spacing:0.042667pt;}
.ls31{letter-spacing:0.053333pt;}
.ls6b{letter-spacing:0.082667pt;}
.ls2{letter-spacing:0.085333pt;}
.ls32{letter-spacing:0.106667pt;}
.ls97{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.160000pt;}
.ls6a{letter-spacing:0.163733pt;}
.ls8{letter-spacing:0.170667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls6d{letter-spacing:0.250667pt;}
.ls14{letter-spacing:0.266667pt;}
.ls7d{letter-spacing:0.298667pt;}
.ls51{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.341333pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls94{letter-spacing:0.384000pt;}
.ls6c{letter-spacing:0.395200pt;}
.ls63{letter-spacing:0.418133pt;}
.ls9{letter-spacing:0.426667pt;}
.ls7b{letter-spacing:0.469333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls92{letter-spacing:0.512000pt;}
.ls33{letter-spacing:0.533333pt;}
.ls95{letter-spacing:0.554667pt;}
.ls76{letter-spacing:0.562667pt;}
.ls18{letter-spacing:0.586667pt;}
.ls7c{letter-spacing:0.597333pt;}
.ls67{letter-spacing:0.629867pt;}
.ls62{letter-spacing:0.633067pt;}
.ls21{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.682667pt;}
.ls4d{letter-spacing:0.693333pt;}
.ls9e{letter-spacing:0.725333pt;}
.ls2a{letter-spacing:0.746667pt;}
.ls27{letter-spacing:0.800000pt;}
.ls96{letter-spacing:0.810667pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.864000pt;}
.lsa8{letter-spacing:0.896000pt;}
.ls49{letter-spacing:0.906667pt;}
.ls75{letter-spacing:0.910400pt;}
.ls7{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.960000pt;}
.ls8a{letter-spacing:0.981333pt;}
.ls69{letter-spacing:1.005333pt;}
.ls48{letter-spacing:1.013333pt;}
.ls77{letter-spacing:1.024000pt;}
.ls74{letter-spacing:1.053333pt;}
.ls66{letter-spacing:1.057600pt;}
.ls16{letter-spacing:1.066667pt;}
.ls8e{letter-spacing:1.109333pt;}
.ls30{letter-spacing:1.120000pt;}
.ls52{letter-spacing:1.145067pt;}
.ls93{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.173333pt;}
.ls24{letter-spacing:1.226667pt;}
.ls4{letter-spacing:1.237333pt;}
.ls6f{letter-spacing:1.256533pt;}
.ls37{letter-spacing:1.280000pt;}
.ls8b{letter-spacing:1.322667pt;}
.ls4f{letter-spacing:1.333333pt;}
.lsa2{letter-spacing:1.365333pt;}
.ls4a{letter-spacing:1.386667pt;}
.ls88{letter-spacing:1.408000pt;}
.ls5d{letter-spacing:1.440000pt;}
.ls90{letter-spacing:1.450667pt;}
.ls2c{letter-spacing:1.493333pt;}
.lsa3{letter-spacing:1.536000pt;}
.ls50{letter-spacing:1.546667pt;}
.ls61{letter-spacing:1.568000pt;}
.lsa5{letter-spacing:1.578667pt;}
.ls71{letter-spacing:1.592533pt;}
.ls20{letter-spacing:1.600000pt;}
.ls8f{letter-spacing:1.621333pt;}
.ls25{letter-spacing:1.653333pt;}
.ls9d{letter-spacing:1.664000pt;}
.ls68{letter-spacing:1.705067pt;}
.ls15{letter-spacing:1.706667pt;}
.ls73{letter-spacing:1.722133pt;}
.ls57{letter-spacing:1.722667pt;}
.ls86{letter-spacing:1.749333pt;}
.lse{letter-spacing:1.760000pt;}
.ls11{letter-spacing:1.813333pt;}
.ls3a{letter-spacing:1.866667pt;}
.ls2f{letter-spacing:1.920000pt;}
.ls13{letter-spacing:1.973333pt;}
.ls85{letter-spacing:2.005333pt;}
.ls28{letter-spacing:2.026667pt;}
.ls87{letter-spacing:2.048000pt;}
.ls6e{letter-spacing:2.067200pt;}
.ls2e{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:2.133333pt;}
.ls34{letter-spacing:2.186667pt;}
.ls8c{letter-spacing:2.218667pt;}
.ls23{letter-spacing:2.240000pt;}
.ls41{letter-spacing:2.293333pt;}
.ls58{letter-spacing:2.346667pt;}
.lsa6{letter-spacing:2.389333pt;}
.lsf{letter-spacing:2.400000pt;}
.ls9b{letter-spacing:2.432000pt;}
.ls22{letter-spacing:2.453333pt;}
.ls26{letter-spacing:2.506667pt;}
.lsa{letter-spacing:2.560000pt;}
.ls5a{letter-spacing:2.613333pt;}
.lsa0{letter-spacing:2.645333pt;}
.ls1d{letter-spacing:2.666667pt;}
.ls70{letter-spacing:2.678933pt;}
.ls98{letter-spacing:2.688000pt;}
.ls7e{letter-spacing:2.720000pt;}
.ls8d{letter-spacing:2.730667pt;}
.ls36{letter-spacing:2.773333pt;}
.ls1e{letter-spacing:2.826667pt;}
.ls47{letter-spacing:2.880000pt;}
.ls9f{letter-spacing:2.901333pt;}
.ls19{letter-spacing:2.933333pt;}
.ls80{letter-spacing:2.986667pt;}
.lsa1{letter-spacing:3.029333pt;}
.ls43{letter-spacing:3.040000pt;}
.ls5b{letter-spacing:3.146667pt;}
.ls9a{letter-spacing:3.157333pt;}
.ls46{letter-spacing:3.200000pt;}
.ls81{letter-spacing:3.253333pt;}
.ls3b{letter-spacing:3.306667pt;}
.ls5e{letter-spacing:3.360000pt;}
.ls40{letter-spacing:3.413333pt;}
.ls7a{letter-spacing:3.466667pt;}
.ls10{letter-spacing:3.520000pt;}
.ls44{letter-spacing:3.573333pt;}
.ls4e{letter-spacing:3.626667pt;}
.ls2b{letter-spacing:3.680000pt;}
.ls29{letter-spacing:3.733333pt;}
.ls17{letter-spacing:3.840000pt;}
.ls4c{letter-spacing:3.893333pt;}
.ls59{letter-spacing:3.946667pt;}
.ls5f{letter-spacing:4.000000pt;}
.ls89{letter-spacing:4.010667pt;}
.lsd{letter-spacing:4.053333pt;}
.lsa4{letter-spacing:4.096000pt;}
.ls38{letter-spacing:4.106667pt;}
.ls72{letter-spacing:4.160000pt;}
.ls99{letter-spacing:4.181333pt;}
.ls3c{letter-spacing:4.213333pt;}
.ls3f{letter-spacing:4.320000pt;}
.ls7f{letter-spacing:4.533333pt;}
.ls45{letter-spacing:4.640000pt;}
.ls83{letter-spacing:4.800000pt;}
.ls39{letter-spacing:5.013333pt;}
.ls4b{letter-spacing:5.066667pt;}
.ls84{letter-spacing:5.120000pt;}
.ls82{letter-spacing:5.386667pt;}
.ls42{letter-spacing:6.186667pt;}
.ls5c{letter-spacing:6.506667pt;}
.ws27{word-spacing:-16.906667pt;}
.ws28{word-spacing:-16.533333pt;}
.ws46{word-spacing:-16.266667pt;}
.ws45{word-spacing:-16.213333pt;}
.ws9c{word-spacing:-16.053333pt;}
.ws8e{word-spacing:-15.733333pt;}
.ws9b{word-spacing:-15.680000pt;}
.ws44{word-spacing:-14.826667pt;}
.wsc3{word-spacing:-13.226667pt;}
.wsa7{word-spacing:-12.970667pt;}
.wsc2{word-spacing:-12.544000pt;}
.wsc4{word-spacing:-12.160000pt;}
.wsa6{word-spacing:-11.861333pt;}
.ws43{word-spacing:-9.920000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws47{word-spacing:-9.760000pt;}
.ws29{word-spacing:-9.568000pt;}
.wsc5{word-spacing:-9.002667pt;}
.ws24{word-spacing:-5.013333pt;}
.wsac{word-spacing:-4.010667pt;}
.wsa0{word-spacing:-3.733333pt;}
.ws17{word-spacing:-3.520000pt;}
.ws2{word-spacing:-3.226667pt;}
.wsb9{word-spacing:-3.157333pt;}
.ws2f{word-spacing:-3.040000pt;}
.wsce{word-spacing:-3.029333pt;}
.ws11{word-spacing:-2.933333pt;}
.wscd{word-spacing:-2.901333pt;}
.wsa3{word-spacing:-2.826667pt;}
.ws4f{word-spacing:-2.773333pt;}
.wsb8{word-spacing:-2.688000pt;}
.ws56{word-spacing:-2.666667pt;}
.wsab{word-spacing:-2.560000pt;}
.wsd1{word-spacing:-2.389333pt;}
.ws3b{word-spacing:-2.293333pt;}
.wsb3{word-spacing:-2.218667pt;}
.ws39{word-spacing:-2.133333pt;}
.ws9f{word-spacing:-2.080000pt;}
.ws58{word-spacing:-2.026667pt;}
.ws23{word-spacing:-1.973333pt;}
.ws2c{word-spacing:-1.920000pt;}
.ws9d{word-spacing:-1.813333pt;}
.ws4a{word-spacing:-1.760000pt;}
.wsaa{word-spacing:-1.749333pt;}
.wsf{word-spacing:-1.706667pt;}
.wsc0{word-spacing:-1.664000pt;}
.wsae{word-spacing:-1.621333pt;}
.ws13{word-spacing:-1.600000pt;}
.wscf{word-spacing:-1.578667pt;}
.ws4d{word-spacing:-1.568000pt;}
.ws95{word-spacing:-1.546667pt;}
.wsa4{word-spacing:-1.386667pt;}
.wsa8{word-spacing:-1.280000pt;}
.wsc9{word-spacing:-1.237333pt;}
.ws12{word-spacing:-1.173333pt;}
.wsc8{word-spacing:-1.152000pt;}
.ws42{word-spacing:-1.120000pt;}
.wsad{word-spacing:-1.109333pt;}
.ws1b{word-spacing:-1.066667pt;}
.wscc{word-spacing:-0.981333pt;}
.ws37{word-spacing:-0.960000pt;}
.wsc1{word-spacing:-0.938667pt;}
.ws32{word-spacing:-0.906667pt;}
.wsd0{word-spacing:-0.896000pt;}
.wsca{word-spacing:-0.853333pt;}
.ws16{word-spacing:-0.800000pt;}
.wsc7{word-spacing:-0.725333pt;}
.wsa2{word-spacing:-0.640000pt;}
.ws8a{word-spacing:-0.597333pt;}
.ws10{word-spacing:-0.586667pt;}
.wsb5{word-spacing:-0.554667pt;}
.ws3a{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.512000pt;}
.ws19{word-spacing:-0.480000pt;}
.ws31{word-spacing:-0.426667pt;}
.wsbb{word-spacing:-0.384000pt;}
.ws3e{word-spacing:-0.373333pt;}
.wsb0{word-spacing:-0.341333pt;}
.wsbd{word-spacing:-0.298667pt;}
.wse{word-spacing:-0.266667pt;}
.ws9a{word-spacing:-0.213333pt;}
.wsaf{word-spacing:-0.170667pt;}
.wsb7{word-spacing:-0.128000pt;}
.ws90{word-spacing:-0.106667pt;}
.ws9e{word-spacing:-0.053333pt;}
.wsa9{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.042667pt;}
.ws34{word-spacing:0.053333pt;}
.ws2b{word-spacing:0.160000pt;}
.ws5c{word-spacing:0.170667pt;}
.ws1e{word-spacing:0.213333pt;}
.ws4e{word-spacing:0.266667pt;}
.ws98{word-spacing:0.320000pt;}
.ws26{word-spacing:0.373333pt;}
.wsb{word-spacing:0.426667pt;}
.ws25{word-spacing:0.480000pt;}
.ws89{word-spacing:0.586667pt;}
.ws3f{word-spacing:0.640000pt;}
.wsa1{word-spacing:0.693333pt;}
.ws91{word-spacing:0.853333pt;}
.ws8d{word-spacing:0.938667pt;}
.wsbe{word-spacing:0.981333pt;}
.ws1c{word-spacing:1.013333pt;}
.wsc6{word-spacing:1.024000pt;}
.ws97{word-spacing:1.066667pt;}
.ws59{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.386667pt;}
.ws9{word-spacing:1.578667pt;}
.ws1d{word-spacing:1.600000pt;}
.ws5{word-spacing:1.664000pt;}
.ws20{word-spacing:1.813333pt;}
.ws2e{word-spacing:1.866667pt;}
.ws40{word-spacing:1.973333pt;}
.ws96{word-spacing:2.026667pt;}
.wsbf{word-spacing:2.090667pt;}
.ws2d{word-spacing:2.133333pt;}
.ws7{word-spacing:2.176000pt;}
.ws49{word-spacing:2.186667pt;}
.wsb2{word-spacing:2.218667pt;}
.ws22{word-spacing:2.240000pt;}
.ws8f{word-spacing:2.293333pt;}
.ws5a{word-spacing:2.304000pt;}
.wsb6{word-spacing:2.346667pt;}
.ws4b{word-spacing:2.453333pt;}
.wscb{word-spacing:2.474667pt;}
.ws52{word-spacing:2.560000pt;}
.ws8c{word-spacing:2.602667pt;}
.ws18{word-spacing:2.666667pt;}
.ws5b{word-spacing:2.688000pt;}
.ws35{word-spacing:2.720000pt;}
.ws3c{word-spacing:2.826667pt;}
.wsbc{word-spacing:2.858667pt;}
.ws50{word-spacing:2.880000pt;}
.ws8b{word-spacing:2.901333pt;}
.ws30{word-spacing:3.146667pt;}
.wsb4{word-spacing:3.157333pt;}
.ws92{word-spacing:3.253333pt;}
.ws33{word-spacing:3.306667pt;}
.ws99{word-spacing:3.413333pt;}
.ws2a{word-spacing:3.466667pt;}
.ws21{word-spacing:3.520000pt;}
.ws14{word-spacing:3.573333pt;}
.ws6{word-spacing:3.626667pt;}
.wsa5{word-spacing:3.680000pt;}
.ws8{word-spacing:3.712000pt;}
.ws36{word-spacing:3.786667pt;}
.ws48{word-spacing:3.840000pt;}
.ws4{word-spacing:3.882667pt;}
.ws3{word-spacing:3.925333pt;}
.ws51{word-spacing:4.053333pt;}
.ws53{word-spacing:4.160000pt;}
.ws55{word-spacing:4.266667pt;}
.ws15{word-spacing:4.373333pt;}
.ws41{word-spacing:4.426667pt;}
.wsa{word-spacing:4.533333pt;}
.ws3d{word-spacing:4.586667pt;}
.ws93{word-spacing:4.640000pt;}
.ws1f{word-spacing:4.800000pt;}
.wsd{word-spacing:4.853333pt;}
.wsc{word-spacing:4.906667pt;}
.ws38{word-spacing:5.866667pt;}
.ws4c{word-spacing:6.293333pt;}
.ws94{word-spacing:6.560000pt;}
.ws57{word-spacing:6.666667pt;}
.ws54{word-spacing:6.986667pt;}
.ws74{word-spacing:33.066667pt;}
.ws80{word-spacing:37.845333pt;}
.ws72{word-spacing:39.040000pt;}
.ws7c{word-spacing:40.192000pt;}
.ws7b{word-spacing:41.386667pt;}
.ws83{word-spacing:47.317333pt;}
.ws85{word-spacing:48.512000pt;}
.ws87{word-spacing:49.706667pt;}
.ws79{word-spacing:52.096000pt;}
.ws77{word-spacing:54.442667pt;}
.ws76{word-spacing:55.594667pt;}
.ws75{word-spacing:73.386667pt;}
.ws7f{word-spacing:74.581333pt;}
.ws7d{word-spacing:75.733333pt;}
.ws7e{word-spacing:76.928000pt;}
.ws84{word-spacing:82.858667pt;}
.ws86{word-spacing:84.053333pt;}
.ws88{word-spacing:85.248000pt;}
.ws7a{word-spacing:87.594667pt;}
.ws78{word-spacing:89.941333pt;}
.ws81{word-spacing:195.925333pt;}
.ws73{word-spacing:198.741333pt;}
.ws82{word-spacing:212.565333pt;}
.ws64{word-spacing:228.736000pt;}
.ws6b{word-spacing:229.120000pt;}
.ws71{word-spacing:246.485333pt;}
.ws5f{word-spacing:265.514667pt;}
.ws61{word-spacing:267.562667pt;}
.ws66{word-spacing:269.909333pt;}
.ws5e{word-spacing:272.298667pt;}
.ws6c{word-spacing:272.682667pt;}
.ws68{word-spacing:273.450667pt;}
.ws63{word-spacing:273.493333pt;}
.ws6e{word-spacing:275.072000pt;}
.ws6a{word-spacing:276.224000pt;}
.ws6f{word-spacing:297.002667pt;}
.ws60{word-spacing:314.112000pt;}
.ws65{word-spacing:316.458667pt;}
.ws5d{word-spacing:318.848000pt;}
.ws67{word-spacing:320.000000pt;}
.ws62{word-spacing:320.042667pt;}
.ws69{word-spacing:322.773333pt;}
.ws6d{word-spacing:323.968000pt;}
.ws70{word-spacing:410.965333pt;}
._c{margin-left:-2576.629333pt;}
._e{margin-left:-2555.458667pt;}
._61{margin-left:-2554.472000pt;}
._d{margin-left:-6.453333pt;}
._4{margin-left:-5.504000pt;}
._2{margin-left:-4.341333pt;}
._0{margin-left:-2.837333pt;}
._3{margin-left:-1.365333pt;}
._6{width:0.896000pt;}
._1{width:2.240000pt;}
._5{width:3.413333pt;}
._7{width:5.120000pt;}
._8{width:6.613333pt;}
._9{width:7.786667pt;}
._a{width:8.800000pt;}
._b{width:9.866667pt;}
._44{width:28.032000pt;}
._43{width:37.802667pt;}
._58{width:56.960000pt;}
._60{width:66.560000pt;}
._53{width:73.557333pt;}
._46{width:86.400000pt;}
._51{width:88.789333pt;}
._4f{width:92.629333pt;}
._57{width:97.280000pt;}
._4b{width:99.669333pt;}
._50{width:102.101333pt;}
._4c{width:102.997333pt;}
._4a{width:104.448000pt;}
._5f{width:123.882667pt;}
._42{width:128.597333pt;}
._5e{width:130.432000pt;}
._5d{width:144.682667pt;}
._12{width:152.362667pt;}
._45{width:170.752000pt;}
._5a{width:177.920000pt;}
._13{width:190.976000pt;}
._4e{width:210.602667pt;}
._55{width:212.565333pt;}
._49{width:224.426667pt;}
._4d{width:225.408000pt;}
._11{width:234.325333pt;}
._56{width:235.349333pt;}
._52{width:236.330667pt;}
._5c{width:247.338667pt;}
._54{width:250.624000pt;}
._47{width:260.053333pt;}
._48{width:262.485333pt;}
._5b{width:274.346667pt;}
._59{width:275.840000pt;}
._24{width:277.376000pt;}
._2a{width:284.160000pt;}
._19{width:285.354667pt;}
._37{width:286.506667pt;}
._32{width:287.701333pt;}
._27{width:290.538667pt;}
._39{width:292.437333pt;}
._3e{width:293.632000pt;}
._1c{width:295.594667pt;}
._2b{width:297.130667pt;}
._2d{width:304.298667pt;}
._15{width:308.864000pt;}
._23{width:317.312000pt;}
._20{width:323.328000pt;}
._10{width:324.608000pt;}
._29{width:330.709333pt;}
._34{width:331.904000pt;}
._36{width:333.056000pt;}
._18{width:334.250667pt;}
._41{width:336.640000pt;}
._1e{width:337.536000pt;}
._26{width:338.986667pt;}
._3d{width:340.181333pt;}
._3b{width:341.376000pt;}
._1b{width:342.954667pt;}
._2c{width:350.357333pt;}
._1d{width:361.706667pt;}
._14{width:363.562667pt;}
._3f{width:368.874667pt;}
._1f{width:370.730667pt;}
._16{width:380.202667pt;}
._2e{width:399.722667pt;}
._35{width:413.888000pt;}
._2f{width:425.258667pt;}
._33{width:429.994667pt;}
._28{width:437.610667pt;}
._31{width:440.000000pt;}
._3c{width:447.125333pt;}
._40{width:451.370667pt;}
._21{width:453.717333pt;}
._1a{width:458.944000pt;}
._38{width:475.136000pt;}
._25{width:494.037333pt;}
._17{width:498.773333pt;}
._30{width:503.509333pt;}
._3a{width:505.898667pt;}
._22{width:541.738667pt;}
._f{width:589.056000pt;}
.fs3{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:73.981200pt;}
.y61{bottom:74.101200pt;}
.ycc{bottom:74.117867pt;}
.ye6{bottom:74.152667pt;}
.y123{bottom:74.163600pt;}
.y2b{bottom:74.216800pt;}
.y96{bottom:74.237867pt;}
.y146{bottom:76.263733pt;}
.y186{bottom:84.391733pt;}
.y11d{bottom:88.136933pt;}
.ye5{bottom:88.147333pt;}
.y122{bottom:88.158267pt;}
.y145{bottom:89.597067pt;}
.ye0{bottom:89.981200pt;}
.y60{bottom:90.101200pt;}
.ycb{bottom:90.117867pt;}
.y95{bottom:90.237867pt;}
.y105{bottom:91.138800pt;}
.y185{bottom:97.725067pt;}
.y11c{bottom:102.131600pt;}
.ye4{bottom:102.142000pt;}
.y121{bottom:102.152933pt;}
.y144{bottom:102.930400pt;}
.y104{bottom:105.581467pt;}
.ydf{bottom:105.981200pt;}
.y5f{bottom:106.101200pt;}
.yca{bottom:106.117867pt;}
.y94{bottom:106.237867pt;}
.y184{bottom:111.058400pt;}
.y11b{bottom:116.126267pt;}
.ye3{bottom:116.136667pt;}
.y120{bottom:116.147600pt;}
.y143{bottom:116.263733pt;}
.y103{bottom:120.024133pt;}
.yde{bottom:121.981200pt;}
.y5e{bottom:122.101200pt;}
.yc9{bottom:122.117867pt;}
.y93{bottom:122.237867pt;}
.y183{bottom:124.391733pt;}
.y142{bottom:129.597067pt;}
.y11a{bottom:130.120933pt;}
.ye2{bottom:130.131333pt;}
.y11f{bottom:130.142267pt;}
.y1b{bottom:130.200800pt;}
.y102{bottom:134.466800pt;}
.y182{bottom:137.725067pt;}
.ydd{bottom:137.981200pt;}
.y5d{bottom:138.101200pt;}
.yc8{bottom:138.117867pt;}
.y141{bottom:142.930400pt;}
.y119{bottom:144.115600pt;}
.y11e{bottom:144.136933pt;}
.y101{bottom:148.909467pt;}
.y181{bottom:151.058400pt;}
.ydc{bottom:153.981200pt;}
.y5c{bottom:154.101200pt;}
.yc7{bottom:154.117867pt;}
.y92{bottom:154.237867pt;}
.y140{bottom:156.263733pt;}
.y100{bottom:163.352133pt;}
.y180{bottom:164.391733pt;}
.y13f{bottom:169.597067pt;}
.ydb{bottom:169.981200pt;}
.y5b{bottom:170.101200pt;}
.yc6{bottom:170.117867pt;}
.y27{bottom:174.828933pt;}
.y17f{bottom:177.725067pt;}
.yff{bottom:177.794800pt;}
.y13e{bottom:182.930400pt;}
.yda{bottom:185.981200pt;}
.y5a{bottom:186.101200pt;}
.y91{bottom:186.104533pt;}
.yc5{bottom:186.117867pt;}
.y26{bottom:190.828933pt;}
.y17e{bottom:191.058400pt;}
.yfe{bottom:192.237467pt;}
.y13d{bottom:196.263733pt;}
.yd9{bottom:201.981200pt;}
.y59{bottom:202.101200pt;}
.y90{bottom:202.104533pt;}
.yc4{bottom:202.117867pt;}
.y17d{bottom:204.391733pt;}
.yfd{bottom:206.680133pt;}
.y25{bottom:206.828933pt;}
.y13c{bottom:209.597067pt;}
.y17c{bottom:217.725067pt;}
.yd8{bottom:217.981200pt;}
.y58{bottom:218.101200pt;}
.y8f{bottom:218.104533pt;}
.yc3{bottom:218.117867pt;}
.yfc{bottom:221.122800pt;}
.y24{bottom:222.828933pt;}
.y13b{bottom:222.930400pt;}
.y17b{bottom:231.058400pt;}
.yd7{bottom:233.981200pt;}
.y57{bottom:234.101200pt;}
.y8e{bottom:234.104533pt;}
.yc2{bottom:234.117867pt;}
.yfb{bottom:235.565467pt;}
.y13a{bottom:236.263733pt;}
.y23{bottom:238.828933pt;}
.y17a{bottom:244.391733pt;}
.y139{bottom:249.597067pt;}
.yd6{bottom:249.981200pt;}
.yfa{bottom:250.008133pt;}
.y56{bottom:250.101200pt;}
.y8d{bottom:250.104533pt;}
.yc1{bottom:250.117867pt;}
.y22{bottom:254.828933pt;}
.y179{bottom:257.725067pt;}
.y138{bottom:262.930400pt;}
.yf9{bottom:264.450800pt;}
.yd5{bottom:265.981200pt;}
.y55{bottom:266.101200pt;}
.y8c{bottom:266.104533pt;}
.yc0{bottom:266.117867pt;}
.y21{bottom:270.828933pt;}
.y178{bottom:271.058400pt;}
.y137{bottom:276.263733pt;}
.yf8{bottom:278.893467pt;}
.yd4{bottom:281.981200pt;}
.y54{bottom:282.101200pt;}
.y8b{bottom:282.104533pt;}
.ybf{bottom:282.117867pt;}
.y177{bottom:284.391733pt;}
.y20{bottom:286.828933pt;}
.y136{bottom:289.597067pt;}
.yf7{bottom:293.336133pt;}
.y176{bottom:297.725067pt;}
.yd3{bottom:297.981200pt;}
.y53{bottom:298.101200pt;}
.y8a{bottom:298.104533pt;}
.ybe{bottom:298.117867pt;}
.y1f{bottom:302.828933pt;}
.y135{bottom:302.930400pt;}
.yf6{bottom:307.778800pt;}
.y175{bottom:311.058400pt;}
.yd2{bottom:313.981200pt;}
.y52{bottom:314.101200pt;}
.y89{bottom:314.104533pt;}
.ybd{bottom:314.117867pt;}
.y134{bottom:316.263733pt;}
.y1e{bottom:318.828933pt;}
.yf5{bottom:322.221467pt;}
.y174{bottom:324.391733pt;}
.y133{bottom:329.597067pt;}
.yd1{bottom:329.981200pt;}
.y51{bottom:330.101200pt;}
.y88{bottom:330.104533pt;}
.ybc{bottom:330.117867pt;}
.y1d{bottom:334.828933pt;}
.yf4{bottom:336.664133pt;}
.y173{bottom:337.725067pt;}
.y132{bottom:342.930400pt;}
.yd0{bottom:345.981200pt;}
.y50{bottom:346.101200pt;}
.y87{bottom:346.104533pt;}
.ybb{bottom:346.117867pt;}
.y28{bottom:350.828933pt;}
.y172{bottom:351.058400pt;}
.yf3{bottom:351.106800pt;}
.y131{bottom:356.263733pt;}
.ycf{bottom:361.981200pt;}
.y4f{bottom:362.101200pt;}
.y86{bottom:362.104533pt;}
.yba{bottom:362.117867pt;}
.y171{bottom:364.391733pt;}
.yf2{bottom:365.549467pt;}
.y1c{bottom:366.828933pt;}
.y130{bottom:369.597067pt;}
.y170{bottom:377.725067pt;}
.yce{bottom:377.981200pt;}
.y4e{bottom:378.101200pt;}
.y85{bottom:378.104533pt;}
.yb9{bottom:378.117867pt;}
.yf1{bottom:379.992133pt;}
.y12f{bottom:382.930400pt;}
.y16f{bottom:391.058400pt;}
.y4d{bottom:394.101200pt;}
.y84{bottom:394.104533pt;}
.yb8{bottom:394.117867pt;}
.yf0{bottom:394.434800pt;}
.y12e{bottom:396.263733pt;}
.y16e{bottom:404.391733pt;}
.yef{bottom:408.877467pt;}
.y12d{bottom:409.597067pt;}
.ycd{bottom:409.981200pt;}
.y4c{bottom:410.101200pt;}
.y83{bottom:410.104533pt;}
.yb7{bottom:410.117867pt;}
.y16d{bottom:417.725067pt;}
.y12c{bottom:422.930400pt;}
.yee{bottom:423.320133pt;}
.y126{bottom:425.064933pt;}
.y1a{bottom:425.827467pt;}
.y4b{bottom:426.101200pt;}
.y82{bottom:426.104533pt;}
.yb6{bottom:426.117867pt;}
.y16c{bottom:431.058400pt;}
.y12b{bottom:436.263733pt;}
.yed{bottom:437.762800pt;}
.y127{bottom:441.032933pt;}
.y4a{bottom:442.101200pt;}
.y81{bottom:442.104533pt;}
.yb5{bottom:442.117867pt;}
.y16b{bottom:444.391733pt;}
.y12a{bottom:449.597067pt;}
.yec{bottom:452.205467pt;}
.y19{bottom:455.032800pt;}
.y16a{bottom:457.725067pt;}
.y49{bottom:458.101200pt;}
.y80{bottom:458.104533pt;}
.yb4{bottom:458.117867pt;}
.y129{bottom:462.930400pt;}
.yeb{bottom:466.648133pt;}
.y18{bottom:468.366133pt;}
.y169{bottom:471.058400pt;}
.y48{bottom:474.101200pt;}
.y7f{bottom:474.104533pt;}
.yb3{bottom:474.117867pt;}
.y128{bottom:476.263733pt;}
.yea{bottom:481.090800pt;}
.y17{bottom:481.699467pt;}
.y168{bottom:484.391733pt;}
.y47{bottom:490.101200pt;}
.y7e{bottom:490.104533pt;}
.yb2{bottom:490.117867pt;}
.y16{bottom:495.032800pt;}
.y167{bottom:497.725067pt;}
.y62{bottom:505.981200pt;}
.y46{bottom:506.101200pt;}
.y7d{bottom:506.104533pt;}
.yb1{bottom:506.117867pt;}
.y15{bottom:508.366133pt;}
.y166{bottom:511.058400pt;}
.ye9{bottom:512.877467pt;}
.y14{bottom:521.699467pt;}
.y45{bottom:522.101200pt;}
.y7c{bottom:522.104533pt;}
.yb0{bottom:522.117867pt;}
.y165{bottom:524.391733pt;}
.y13{bottom:535.032800pt;}
.y1a4{bottom:537.722933pt;}
.y164{bottom:537.725067pt;}
.y44{bottom:538.101200pt;}
.y7b{bottom:538.104533pt;}
.yaf{bottom:538.117867pt;}
.ye8{bottom:547.605867pt;}
.y12{bottom:548.366133pt;}
.y1a3{bottom:551.056267pt;}
.y163{bottom:551.058400pt;}
.y43{bottom:554.101200pt;}
.y7a{bottom:554.104533pt;}
.yae{bottom:554.117867pt;}
.y11{bottom:561.699467pt;}
.y1a2{bottom:564.389600pt;}
.y162{bottom:564.391733pt;}
.ye7{bottom:564.939200pt;}
.y42{bottom:570.101200pt;}
.y79{bottom:570.104533pt;}
.yad{bottom:570.117867pt;}
.y10{bottom:575.032800pt;}
.y1a1{bottom:577.722933pt;}
.y161{bottom:577.725067pt;}
.y41{bottom:586.101200pt;}
.y78{bottom:586.104533pt;}
.yac{bottom:586.117867pt;}
.yf{bottom:588.366133pt;}
.y1a0{bottom:591.056267pt;}
.y160{bottom:591.058400pt;}
.ye{bottom:601.699467pt;}
.y40{bottom:602.101200pt;}
.y77{bottom:602.104533pt;}
.yab{bottom:602.117867pt;}
.y19f{bottom:604.389600pt;}
.y15f{bottom:604.391733pt;}
.yd{bottom:615.032800pt;}
.y19e{bottom:617.722933pt;}
.y15e{bottom:617.725067pt;}
.y3f{bottom:618.101200pt;}
.y76{bottom:618.104533pt;}
.yaa{bottom:618.117867pt;}
.y118{bottom:618.960133pt;}
.yc{bottom:628.366133pt;}
.y19d{bottom:631.056267pt;}
.y15d{bottom:631.058400pt;}
.y117{bottom:633.402800pt;}
.y3e{bottom:634.101200pt;}
.y75{bottom:634.104533pt;}
.ya9{bottom:634.117867pt;}
.yb{bottom:641.699467pt;}
.y19c{bottom:644.389600pt;}
.y15c{bottom:644.391733pt;}
.y116{bottom:647.845467pt;}
.y3d{bottom:650.101200pt;}
.y74{bottom:650.104533pt;}
.ya8{bottom:650.117867pt;}
.ya{bottom:655.032800pt;}
.y19b{bottom:657.722933pt;}
.y15b{bottom:657.725067pt;}
.y115{bottom:662.288133pt;}
.y3c{bottom:666.101200pt;}
.y73{bottom:666.104533pt;}
.ya7{bottom:666.117867pt;}
.y19a{bottom:671.056267pt;}
.y15a{bottom:671.058400pt;}
.y114{bottom:676.730800pt;}
.y3b{bottom:682.101200pt;}
.y72{bottom:682.104533pt;}
.ya6{bottom:682.117867pt;}
.y199{bottom:684.389600pt;}
.y159{bottom:684.391733pt;}
.y113{bottom:691.173467pt;}
.y198{bottom:697.722933pt;}
.y158{bottom:697.725067pt;}
.y3a{bottom:698.101200pt;}
.y71{bottom:698.104533pt;}
.y9{bottom:698.106667pt;}
.ya5{bottom:698.117867pt;}
.y112{bottom:705.616133pt;}
.y197{bottom:711.056267pt;}
.y157{bottom:711.058400pt;}
.y124{bottom:711.838267pt;}
.y39{bottom:714.101200pt;}
.y70{bottom:714.104533pt;}
.ya4{bottom:714.117867pt;}
.y111{bottom:720.058800pt;}
.y196{bottom:724.389600pt;}
.y156{bottom:724.391733pt;}
.y8{bottom:729.027467pt;}
.y38{bottom:730.101200pt;}
.y6f{bottom:730.104533pt;}
.ya3{bottom:730.117867pt;}
.y110{bottom:734.501467pt;}
.y125{bottom:737.352933pt;}
.y195{bottom:737.722933pt;}
.y155{bottom:737.725067pt;}
.y37{bottom:746.101200pt;}
.y6e{bottom:746.104533pt;}
.ya2{bottom:746.117867pt;}
.y7{bottom:747.354533pt;}
.y10f{bottom:748.944133pt;}
.y194{bottom:751.056267pt;}
.y154{bottom:751.058400pt;}
.y6{bottom:762.021200pt;}
.y36{bottom:762.101200pt;}
.y6d{bottom:762.104533pt;}
.ya1{bottom:762.117867pt;}
.y10e{bottom:763.386800pt;}
.y193{bottom:764.389600pt;}
.y153{bottom:764.391733pt;}
.y5{bottom:773.027467pt;}
.y192{bottom:777.722933pt;}
.y152{bottom:777.725067pt;}
.y10d{bottom:777.829467pt;}
.y35{bottom:778.101200pt;}
.y6c{bottom:778.104533pt;}
.ya0{bottom:778.117867pt;}
.y191{bottom:791.056267pt;}
.y151{bottom:791.058400pt;}
.y4{bottom:791.354533pt;}
.y10c{bottom:792.272133pt;}
.y34{bottom:794.101200pt;}
.y6b{bottom:794.104533pt;}
.y9f{bottom:794.117867pt;}
.y190{bottom:804.389600pt;}
.y150{bottom:804.391733pt;}
.y3{bottom:804.925600pt;}
.y10b{bottom:806.714800pt;}
.y33{bottom:810.101200pt;}
.y6a{bottom:810.104533pt;}
.y9e{bottom:810.117867pt;}
.y18f{bottom:817.722933pt;}
.y14f{bottom:817.725067pt;}
.y10a{bottom:821.157467pt;}
.y32{bottom:826.101200pt;}
.y69{bottom:826.104533pt;}
.y9d{bottom:826.117867pt;}
.y2{bottom:829.271733pt;}
.y18e{bottom:831.056267pt;}
.y14e{bottom:831.058400pt;}
.y109{bottom:835.600133pt;}
.y31{bottom:842.101200pt;}
.y68{bottom:842.104533pt;}
.y9c{bottom:842.117867pt;}
.y18d{bottom:844.389600pt;}
.y14d{bottom:844.391733pt;}
.y1{bottom:853.277067pt;}
.y18c{bottom:857.722933pt;}
.y14c{bottom:857.725067pt;}
.y30{bottom:858.101200pt;}
.y67{bottom:858.104533pt;}
.y9b{bottom:858.117867pt;}
.y108{bottom:861.381467pt;}
.y18b{bottom:871.056267pt;}
.y14b{bottom:871.058400pt;}
.y2f{bottom:874.101200pt;}
.y66{bottom:874.104533pt;}
.y9a{bottom:874.117867pt;}
.y107{bottom:876.048133pt;}
.y18a{bottom:884.389600pt;}
.y14a{bottom:884.391733pt;}
.y2e{bottom:890.101200pt;}
.y65{bottom:890.104533pt;}
.y99{bottom:890.117867pt;}
.y189{bottom:897.722933pt;}
.y149{bottom:897.725067pt;}
.y106{bottom:904.771200pt;}
.y2d{bottom:906.101200pt;}
.y98{bottom:906.117867pt;}
.y188{bottom:911.056267pt;}
.y148{bottom:911.058400pt;}
.y2c{bottom:922.101200pt;}
.y64{bottom:922.104533pt;}
.y97{bottom:922.117867pt;}
.y187{bottom:924.389600pt;}
.y147{bottom:924.391733pt;}
.y2a{bottom:951.795067pt;}
.y63{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h4{height:18.637500pt;}
.h5{height:31.062500pt;}
.h6{height:31.104167pt;}
.hb{height:33.048177pt;}
.h7{height:38.250000pt;}
.h8{height:38.828125pt;}
.h9{height:38.880208pt;}
.hc{height:41.635325pt;}
.h3{height:45.799071pt;}
.ha{height:47.812500pt;}
.h2{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.x14{left:69.921200pt;}
.x7{left:85.417333pt;}
.x1{left:86.929200pt;}
.x22{left:94.484800pt;}
.xa{left:98.271467pt;}
.x2{left:111.491200pt;}
.x25{left:113.385867pt;}
.x5{left:117.170133pt;}
.x1d{left:134.182533pt;}
.x3{left:143.619200pt;}
.x21{left:172.698133pt;}
.x12{left:187.642000pt;}
.x4{left:189.223467pt;}
.x15{left:377.441200pt;}
.x8{left:404.481333pt;}
.xb{left:406.298133pt;}
.xf{left:425.195867pt;}
.x6{left:427.090133pt;}
.x16{left:428.982533pt;}
.x23{left:432.714133pt;}
.xc{left:436.538133pt;}
.x17{left:447.211867pt;}
.x26{left:451.625867pt;}
.x10{left:455.435867pt;}
.xd{left:466.911467pt;}
.x1f{left:470.939867pt;}
.x1e{left:474.342533pt;}
.x19{left:510.305200pt;}
.x13{left:515.045867pt;}
.x18{left:523.947867pt;}
.x20{left:526.195867pt;}
.x1b{left:569.345200pt;}
.x1a{left:579.425200pt;}
.x24{left:638.290267pt;}
.xe{left:644.593200pt;}
.x27{left:658.028933pt;}
.x11{left:663.490933pt;}
.x1c{left:680.054533pt;}
}




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