
    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_ce0be0c2d7988d1acdb5fa4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bbc0b8a03dc7ffb83c9e6acb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e1e2aa26cb75a7855da35594.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_9e5787d07338dc6c8f3516c8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a23285bc56b186fdabaa2dfc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_36b8a6a707515d71d51b01bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_82353eb9a732c4001892c433.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_a0957eaa1f147f80d3115a18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_1a2739883400927d9f69c814.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a44e0ab4fe4340db8a1b97bb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d69d5962805d6c5e7dbac995.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_48214c1ff3dc3114db9e8b24.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d18719695825e3562ffe0d1b.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_de8e79e40ebc73496768e7c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_48214c1ff3dc3114db9e8b24.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_eec374186f8507f6ca176195.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.810000;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:-21.701400px;}
.v4{vertical-align:-11.697000px;}
.v9{vertical-align:-9.813355px;}
.va{vertical-align:-2.352000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.620000px;}
.v6{vertical-align:2.987155px;}
.v7{vertical-align:14.243400px;}
.v8{vertical-align:17.234755px;}
.v5{vertical-align:22.586400px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.lsbc{letter-spacing:-2.640000px;}
.ls49{letter-spacing:-1.776000px;}
.lsad{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.780000px;}
.ls67{letter-spacing:-0.540000px;}
.lsac{letter-spacing:-0.480000px;}
.ls46{letter-spacing:-0.420000px;}
.ls48{letter-spacing:-0.384000px;}
.ls61{letter-spacing:-0.360000px;}
.ls7a{letter-spacing:-0.346937px;}
.lsc3{letter-spacing:-0.300000px;}
.ls79{letter-spacing:-0.297374px;}
.ls7f{letter-spacing:-0.283764px;}
.ls3a{letter-spacing:-0.251262px;}
.ls3c{letter-spacing:-0.240000px;}
.ls7b{letter-spacing:-0.198250px;}
.ls57{letter-spacing:-0.192000px;}
.ls33{letter-spacing:-0.180000px;}
.ls7e{letter-spacing:-0.170258px;}
.ls39{letter-spacing:-0.150757px;}
.ls68{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.126600px;}
.ls34{letter-spacing:-0.120000px;}
.ls7c{letter-spacing:-0.099125px;}
.lsaa{letter-spacing:-0.096000px;}
.ls32{letter-spacing:-0.060000px;}
.ls7d{letter-spacing:-0.056753px;}
.ls38{letter-spacing:-0.050252px;}
.ls78{letter-spacing:-0.049562px;}
.ls6e{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005076px;}
.ls1{letter-spacing:0.005676px;}
.lsc0{letter-spacing:0.010200px;}
.ls5b{letter-spacing:0.034800px;}
.ls4f{letter-spacing:0.034980px;}
.ls89{letter-spacing:0.047400px;}
.lsa1{letter-spacing:0.048000px;}
.ls3b{letter-spacing:0.050252px;}
.ls80{letter-spacing:0.056753px;}
.ls1b{letter-spacing:0.060000px;}
.ls88{letter-spacing:0.069600px;}
.ls6a{letter-spacing:0.096000px;}
.ls59{letter-spacing:0.096600px;}
.ls77{letter-spacing:0.099125px;}
.ls6d{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.120000px;}
.ls9f{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.180000px;}
.lsa8{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.240000px;}
.ls52{letter-spacing:0.252000px;}
.ls69{letter-spacing:0.273600px;}
.ls9e{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.300000px;}
.ls58{letter-spacing:0.331200px;}
.ls6b{letter-spacing:0.336000px;}
.ls1f{letter-spacing:0.360000px;}
.ls92{letter-spacing:0.384000px;}
.ls3d{letter-spacing:0.420000px;}
.ls90{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.480000px;}
.ls8f{letter-spacing:0.528000px;}
.ls2a{letter-spacing:0.540000px;}
.ls99{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.600000px;}
.lsbe{letter-spacing:0.624000px;}
.ls26{letter-spacing:0.660000px;}
.lsae{letter-spacing:0.672000px;}
.ls63{letter-spacing:0.690600px;}
.ls5a{letter-spacing:0.713400px;}
.ls5c{letter-spacing:0.720000px;}
.ls66{letter-spacing:0.768000px;}
.ls29{letter-spacing:0.780000px;}
.ls62{letter-spacing:0.795000px;}
.lsb9{letter-spacing:0.816000px;}
.ls12{letter-spacing:0.840000px;}
.lsb0{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.900000px;}
.ls93{letter-spacing:0.912000px;}
.ls37{letter-spacing:0.960000px;}
.ls31{letter-spacing:1.020000px;}
.ls9b{letter-spacing:1.056000px;}
.ls86{letter-spacing:1.062600px;}
.ls16{letter-spacing:1.080000px;}
.ls8e{letter-spacing:1.104000px;}
.ls14{letter-spacing:1.140000px;}
.lsa2{letter-spacing:1.152000px;}
.ls11{letter-spacing:1.200000px;}
.lsa3{letter-spacing:1.248000px;}
.ls8a{letter-spacing:1.255200px;}
.lsc{letter-spacing:1.260000px;}
.lsb6{letter-spacing:1.296000px;}
.ls30{letter-spacing:1.320000px;}
.ls8d{letter-spacing:1.344000px;}
.ls1e{letter-spacing:1.380000px;}
.lsa9{letter-spacing:1.392000px;}
.ls85{letter-spacing:1.425600px;}
.ls1a{letter-spacing:1.440000px;}
.ls96{letter-spacing:1.488000px;}
.ls24{letter-spacing:1.500000px;}
.lsa5{letter-spacing:1.536000px;}
.lsd{letter-spacing:1.560000px;}
.ls9a{letter-spacing:1.584000px;}
.lse{letter-spacing:1.620000px;}
.lsb3{letter-spacing:1.632000px;}
.ls22{letter-spacing:1.680000px;}
.lsc2{letter-spacing:1.728000px;}
.ls18{letter-spacing:1.740000px;}
.lsaf{letter-spacing:1.776000px;}
.ls41{letter-spacing:1.800000px;}
.ls91{letter-spacing:1.824000px;}
.ls35{letter-spacing:1.860000px;}
.lsb4{letter-spacing:1.872000px;}
.ls53{letter-spacing:1.880400px;}
.ls2c{letter-spacing:1.920000px;}
.lsa4{letter-spacing:1.968000px;}
.ls23{letter-spacing:1.980000px;}
.lsab{letter-spacing:2.016000px;}
.ls36{letter-spacing:2.040000px;}
.ls17{letter-spacing:2.100000px;}
.lsb7{letter-spacing:2.112000px;}
.ls21{letter-spacing:2.160000px;}
.lsb2{letter-spacing:2.208000px;}
.ls19{letter-spacing:2.220000px;}
.ls94{letter-spacing:2.256000px;}
.lsa{letter-spacing:2.280000px;}
.lsa7{letter-spacing:2.304000px;}
.ls8{letter-spacing:2.340000px;}
.ls95{letter-spacing:2.352000px;}
.ls45{letter-spacing:2.400000px;}
.lsa0{letter-spacing:2.448000px;}
.ls84{letter-spacing:2.455200px;}
.ls40{letter-spacing:2.460000px;}
.ls2b{letter-spacing:2.520000px;}
.lsa6{letter-spacing:2.544000px;}
.ls9{letter-spacing:2.580000px;}
.ls15{letter-spacing:2.640000px;}
.ls9c{letter-spacing:2.688000px;}
.ls51{letter-spacing:2.700000px;}
.lsb1{letter-spacing:2.736000px;}
.ls13{letter-spacing:2.760000px;}
.lsb{letter-spacing:2.820000px;}
.ls4e{letter-spacing:2.880000px;}
.lsba{letter-spacing:2.928000px;}
.ls50{letter-spacing:2.940000px;}
.ls5e{letter-spacing:3.000000px;}
.lsbb{letter-spacing:3.024000px;}
.ls74{letter-spacing:3.060000px;}
.ls70{letter-spacing:3.120000px;}
.ls54{letter-spacing:3.180000px;}
.ls55{letter-spacing:3.216000px;}
.ls4a{letter-spacing:3.240000px;}
.ls44{letter-spacing:3.300000px;}
.lsb8{letter-spacing:3.312000px;}
.ls43{letter-spacing:3.360000px;}
.lsbf{letter-spacing:3.408000px;}
.ls56{letter-spacing:3.420000px;}
.ls28{letter-spacing:3.480000px;}
.ls98{letter-spacing:3.504000px;}
.ls2d{letter-spacing:3.540000px;}
.ls9d{letter-spacing:3.552000px;}
.ls81{letter-spacing:3.600000px;}
.ls87{letter-spacing:3.660000px;}
.ls72{letter-spacing:3.780000px;}
.ls4b{letter-spacing:3.900000px;}
.ls71{letter-spacing:4.080000px;}
.ls4d{letter-spacing:4.260000px;}
.ls1d{letter-spacing:4.380000px;}
.ls6c{letter-spacing:4.440000px;}
.ls7{letter-spacing:4.500000px;}
.ls5d{letter-spacing:4.740000px;}
.ls42{letter-spacing:4.800000px;}
.lsb5{letter-spacing:5.136000px;}
.ls73{letter-spacing:5.160000px;}
.ls2e{letter-spacing:5.220000px;}
.ls82{letter-spacing:5.280000px;}
.ls3e{letter-spacing:5.340000px;}
.ls4c{letter-spacing:5.400000px;}
.ls97{letter-spacing:5.472000px;}
.lsc1{letter-spacing:5.520000px;}
.ls5f{letter-spacing:5.580000px;}
.ls83{letter-spacing:5.640000px;}
.ls65{letter-spacing:6.120000px;}
.ls64{letter-spacing:6.300000px;}
.ls6f{letter-spacing:6.720000px;}
.ls60{letter-spacing:6.840000px;}
.ls3f{letter-spacing:7.200000px;}
.lsbd{letter-spacing:7.584000px;}
.ls2{letter-spacing:59.533476px;}
.ls8c{letter-spacing:200.112000px;}
.ls8b{letter-spacing:352.032000px;}
.ls47{letter-spacing:414.240000px;}
.ls76{letter-spacing:479.205542px;}
.ls75{letter-spacing:570.730027px;}
.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;}
}
.wsd2{word-spacing:-48.000000px;}
.wsc7{word-spacing:-18.600000px;}
.wsd8{word-spacing:-17.760000px;}
.ws42{word-spacing:-17.520000px;}
.ws82{word-spacing:-16.860000px;}
.ws2{word-spacing:-16.680000px;}
.ws6c{word-spacing:-16.500000px;}
.wsa4{word-spacing:-15.960000px;}
.ws83{word-spacing:-15.900000px;}
.ws8{word-spacing:-15.840000px;}
.wsc2{word-spacing:-15.777278px;}
.ws9{word-spacing:-15.660000px;}
.ws81{word-spacing:-15.600000px;}
.ws2f{word-spacing:-15.540000px;}
.ws6b{word-spacing:-15.420000px;}
.wsb6{word-spacing:-15.360000px;}
.ws84{word-spacing:-15.300000px;}
.ws5a{word-spacing:-15.180000px;}
.ws7c{word-spacing:-15.120000px;}
.ws30{word-spacing:-15.000000px;}
.ws9b{word-spacing:-14.760000px;}
.ws92{word-spacing:-14.460000px;}
.wsdd{word-spacing:-14.400000px;}
.wse7{word-spacing:-14.352000px;}
.ws10c{word-spacing:-14.304000px;}
.ws2e{word-spacing:-13.970167px;}
.ws112{word-spacing:-13.872000px;}
.ws113{word-spacing:-13.824000px;}
.ws109{word-spacing:-13.776000px;}
.wse6{word-spacing:-13.584000px;}
.ws10b{word-spacing:-13.536000px;}
.wse2{word-spacing:-13.488000px;}
.ws110{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.344000px;}
.wse0{word-spacing:-13.248000px;}
.ws10d{word-spacing:-13.152000px;}
.wsdc{word-spacing:-13.104000px;}
.wsde{word-spacing:-12.960000px;}
.wse5{word-spacing:-12.912000px;}
.ws10e{word-spacing:-12.864000px;}
.ws10f{word-spacing:-12.816000px;}
.wsb7{word-spacing:-12.720000px;}
.ws108{word-spacing:-12.672000px;}
.ws126{word-spacing:-12.624000px;}
.ws3{word-spacing:-12.510000px;}
.wse4{word-spacing:-12.432000px;}
.wse3{word-spacing:-12.288000px;}
.ws111{word-spacing:-12.240000px;}
.wsdf{word-spacing:-12.096000px;}
.wse1{word-spacing:-12.048000px;}
.ws5c{word-spacing:-12.000000px;}
.wsb8{word-spacing:-11.300227px;}
.ws0{word-spacing:-10.210662px;}
.ws10a{word-spacing:-9.360000px;}
.ws63{word-spacing:-8.779980px;}
.ws64{word-spacing:-8.745000px;}
.ws11e{word-spacing:-7.584000px;}
.ws1{word-spacing:-7.293330px;}
.ws96{word-spacing:-6.996000px;}
.ws8d{word-spacing:-6.300000px;}
.ws8e{word-spacing:-6.120000px;}
.ws12c{word-spacing:-5.520000px;}
.ws68{word-spacing:-5.400000px;}
.ws44{word-spacing:-5.340000px;}
.wsc9{word-spacing:-5.280000px;}
.ws22{word-spacing:-5.220000px;}
.wsb5{word-spacing:-5.160000px;}
.ws88{word-spacing:-4.980000px;}
.ws8b{word-spacing:-4.920000px;}
.ws75{word-spacing:-4.860000px;}
.ws4d{word-spacing:-4.800000px;}
.ws89{word-spacing:-4.740000px;}
.ws54{word-spacing:-4.500000px;}
.ws69{word-spacing:-4.320000px;}
.ws12b{word-spacing:-4.080000px;}
.wsb4{word-spacing:-3.780000px;}
.wsd9{word-spacing:-3.720000px;}
.wsd5{word-spacing:-3.660000px;}
.wsc8{word-spacing:-3.600000px;}
.ws21{word-spacing:-3.540000px;}
.wsf7{word-spacing:-3.504000px;}
.wsda{word-spacing:-3.480000px;}
.ws72{word-spacing:-3.420000px;}
.ws128{word-spacing:-3.408000px;}
.ws4e{word-spacing:-3.360000px;}
.ws121{word-spacing:-3.312000px;}
.ws6f{word-spacing:-3.300000px;}
.ws65{word-spacing:-3.240000px;}
.ws79{word-spacing:-3.216000px;}
.ws77{word-spacing:-3.180000px;}
.wsb1{word-spacing:-3.120000px;}
.ws124{word-spacing:-3.072000px;}
.wsa2{word-spacing:-3.060000px;}
.ws8a{word-spacing:-3.000000px;}
.ws6e{word-spacing:-2.940000px;}
.ws123{word-spacing:-2.928000px;}
.ws6{word-spacing:-2.886000px;}
.ws6a{word-spacing:-2.880000px;}
.ws9d{word-spacing:-2.820000px;}
.wse{word-spacing:-2.760000px;}
.ws119{word-spacing:-2.736000px;}
.ws71{word-spacing:-2.700000px;}
.ws52{word-spacing:-2.640000px;}
.ws76{word-spacing:-2.580000px;}
.ws103{word-spacing:-2.544000px;}
.ws1f{word-spacing:-2.520000px;}
.ws56{word-spacing:-2.460000px;}
.wsfb{word-spacing:-2.448000px;}
.ws51{word-spacing:-2.400000px;}
.wsf3{word-spacing:-2.352000px;}
.ws4c{word-spacing:-2.340000px;}
.ws104{word-spacing:-2.304000px;}
.ws67{word-spacing:-2.280000px;}
.wsf1{word-spacing:-2.256000px;}
.ws47{word-spacing:-2.220000px;}
.ws11a{word-spacing:-2.208000px;}
.ws38{word-spacing:-2.160000px;}
.ws120{word-spacing:-2.112000px;}
.ws1e{word-spacing:-2.100000px;}
.ws37{word-spacing:-2.040000px;}
.wsf4{word-spacing:-2.016000px;}
.ws12{word-spacing:-1.980000px;}
.wsff{word-spacing:-1.968000px;}
.ws20{word-spacing:-1.920000px;}
.ws11c{word-spacing:-1.872000px;}
.ws35{word-spacing:-1.860000px;}
.wsee{word-spacing:-1.824000px;}
.ws4a{word-spacing:-1.800000px;}
.ws116{word-spacing:-1.776000px;}
.ws36{word-spacing:-1.740000px;}
.ws117{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.680000px;}
.ws11b{word-spacing:-1.632000px;}
.ws6d{word-spacing:-1.620000px;}
.wsf8{word-spacing:-1.584000px;}
.ws40{word-spacing:-1.560000px;}
.ws101{word-spacing:-1.536000px;}
.ws4b{word-spacing:-1.500000px;}
.wsf6{word-spacing:-1.488000px;}
.wsf{word-spacing:-1.440000px;}
.ws107{word-spacing:-1.392000px;}
.ws43{word-spacing:-1.380000px;}
.wsea{word-spacing:-1.344000px;}
.ws29{word-spacing:-1.320000px;}
.ws11f{word-spacing:-1.296000px;}
.ws57{word-spacing:-1.260000px;}
.wsfe{word-spacing:-1.248000px;}
.ws3e{word-spacing:-1.200000px;}
.wsfd{word-spacing:-1.152000px;}
.ws55{word-spacing:-1.140000px;}
.wseb{word-spacing:-1.104000px;}
.ws7{word-spacing:-1.080000px;}
.wsf9{word-spacing:-1.056000px;}
.ws2c{word-spacing:-1.020000px;}
.ws3b{word-spacing:-0.960000px;}
.wsf0{word-spacing:-0.912000px;}
.ws14{word-spacing:-0.900000px;}
.ws118{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.840000px;}
.ws12a{word-spacing:-0.816000px;}
.ws50{word-spacing:-0.780000px;}
.ws94{word-spacing:-0.768000px;}
.ws86{word-spacing:-0.720000px;}
.ws115{word-spacing:-0.672000px;}
.ws25{word-spacing:-0.660000px;}
.ws127{word-spacing:-0.624000px;}
.ws24{word-spacing:-0.600000px;}
.wsec{word-spacing:-0.576000px;}
.ws1c{word-spacing:-0.540000px;}
.ws114{word-spacing:-0.528000px;}
.ws2b{word-spacing:-0.480000px;}
.wsed{word-spacing:-0.432000px;}
.ws3f{word-spacing:-0.420000px;}
.wsef{word-spacing:-0.384000px;}
.ws48{word-spacing:-0.360000px;}
.ws9a{word-spacing:-0.336000px;}
.ws16{word-spacing:-0.300000px;}
.wsfa{word-spacing:-0.288000px;}
.ws15{word-spacing:-0.240000px;}
.ws105{word-spacing:-0.192000px;}
.ws18{word-spacing:-0.180000px;}
.ws99{word-spacing:-0.144000px;}
.ws3d{word-spacing:-0.120000px;}
.wsc0{word-spacing:-0.099125px;}
.wse9{word-spacing:-0.096000px;}
.ws1b{word-spacing:-0.060000px;}
.wsc6{word-spacing:-0.056753px;}
.ws34{word-spacing:-0.050252px;}
.wsfc{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws90{word-spacing:0.048000px;}
.wsbb{word-spacing:0.049562px;}
.ws31{word-spacing:0.050252px;}
.wsc3{word-spacing:0.056753px;}
.wsa0{word-spacing:0.060000px;}
.wse8{word-spacing:0.096000px;}
.wsbf{word-spacing:0.099125px;}
.ws4f{word-spacing:0.120000px;}
.ws95{word-spacing:0.144000px;}
.ws32{word-spacing:0.150757px;}
.wsc4{word-spacing:0.170258px;}
.ws11{word-spacing:0.180000px;}
.ws7b{word-spacing:0.192000px;}
.wsbe{word-spacing:0.198250px;}
.ws39{word-spacing:0.240000px;}
.ws33{word-spacing:0.251262px;}
.wsc5{word-spacing:0.283764px;}
.wsbc{word-spacing:0.297374px;}
.ws49{word-spacing:0.300000px;}
.wsbd{word-spacing:0.346937px;}
.wscc{word-spacing:0.360000px;}
.ws62{word-spacing:0.384000px;}
.ws45{word-spacing:0.420000px;}
.ws11d{word-spacing:0.432000px;}
.ws9e{word-spacing:0.480000px;}
.ws93{word-spacing:0.540000px;}
.wscd{word-spacing:0.600000px;}
.wsca{word-spacing:0.660000px;}
.ws91{word-spacing:0.720000px;}
.ws106{word-spacing:0.768000px;}
.ws125{word-spacing:0.816000px;}
.ws26{word-spacing:0.960000px;}
.ws73{word-spacing:1.140000px;}
.ws102{word-spacing:1.152000px;}
.ws41{word-spacing:1.248000px;}
.ws1d{word-spacing:1.260000px;}
.ws7a{word-spacing:1.296000px;}
.ws97{word-spacing:1.380000px;}
.ws12d{word-spacing:1.500000px;}
.ws53{word-spacing:1.560000px;}
.ws59{word-spacing:1.620000px;}
.ws129{word-spacing:1.728000px;}
.ws122{word-spacing:1.872000px;}
.wsb3{word-spacing:1.920000px;}
.ws66{word-spacing:1.980000px;}
.wsa3{word-spacing:2.064000px;}
.ws10{word-spacing:2.100000px;}
.ws8c{word-spacing:2.160000px;}
.wsf5{word-spacing:2.208000px;}
.ws19{word-spacing:2.220000px;}
.ws80{word-spacing:2.352000px;}
.ws46{word-spacing:2.640000px;}
.ws17{word-spacing:2.700000px;}
.ws9c{word-spacing:2.760000px;}
.ws28{word-spacing:2.820000px;}
.ws100{word-spacing:2.880000px;}
.ws27{word-spacing:2.940000px;}
.ws87{word-spacing:3.000000px;}
.ws13{word-spacing:3.060000px;}
.ws7f{word-spacing:3.168000px;}
.wsb2{word-spacing:3.180000px;}
.wsd7{word-spacing:3.240000px;}
.ws3c{word-spacing:3.300000px;}
.ws85{word-spacing:3.420000px;}
.ws74{word-spacing:3.480000px;}
.wsf2{word-spacing:3.504000px;}
.ws7d{word-spacing:3.660000px;}
.wsd6{word-spacing:3.720000px;}
.ws9f{word-spacing:3.900000px;}
.ws98{word-spacing:3.936000px;}
.ws78{word-spacing:3.984000px;}
.ws23{word-spacing:4.140000px;}
.ws1a{word-spacing:4.200000px;}
.ws70{word-spacing:4.320000px;}
.ws58{word-spacing:4.440000px;}
.ws2a{word-spacing:4.620000px;}
.wsc{word-spacing:4.740000px;}
.wscb{word-spacing:4.860000px;}
.wsa{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.wsdb{word-spacing:5.520000px;}
.ws8f{word-spacing:6.120000px;}
.ws7e{word-spacing:6.180000px;}
.wsa1{word-spacing:6.240000px;}
.ws60{word-spacing:27.024000px;}
.ws5e{word-spacing:39.024000px;}
.ws5f{word-spacing:51.408000px;}
.ws5b{word-spacing:96.480000px;}
.wsd0{word-spacing:97.536000px;}
.wsb0{word-spacing:111.120000px;}
.wsab{word-spacing:154.944000px;}
.wsac{word-spacing:191.136000px;}
.ws2d{word-spacing:196.687894px;}
.wsc1{word-spacing:203.402035px;}
.ws5d{word-spacing:259.104000px;}
.wsae{word-spacing:281.568000px;}
.wsaf{word-spacing:310.848000px;}
.wsad{word-spacing:329.568000px;}
.wsce{word-spacing:566.784000px;}
.wscf{word-spacing:574.704000px;}
.wsaa{word-spacing:577.968000px;}
.wsa9{word-spacing:588.576000px;}
.wsa8{word-spacing:591.264000px;}
.wsa6{word-spacing:593.904000px;}
.wsa5{word-spacing:612.624000px;}
.wsa7{word-spacing:719.232000px;}
.wsd4{word-spacing:845.184000px;}
.wsd1{word-spacing:861.120000px;}
.wsd3{word-spacing:934.464000px;}
.wsba{word-spacing:1368.764801px;}
.wsb9{word-spacing:1416.507670px;}
.ws61{word-spacing:1643.376000px;}
._d{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._65{margin-left:-2455.192726px;}
._68{margin-left:-1021.323389px;}
._f{margin-left:-580.616230px;}
._64{margin-left:-14.070000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.514260px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.215000px;}
._5{width:1.056000px;}
._6{width:2.880000px;}
._9{width:3.960000px;}
._7{width:5.640000px;}
._c{width:6.660000px;}
._8{width:7.680000px;}
._a{width:9.360000px;}
._b{width:10.920000px;}
._32{width:39.024000px;}
._21{width:40.422000px;}
._19{width:41.766000px;}
._12{width:45.168000px;}
._47{width:46.806000px;}
._1e{width:51.024000px;}
._31{width:55.104000px;}
._2a{width:56.886000px;}
._35{width:63.456000px;}
._1d{width:67.104000px;}
._20{width:69.312000px;}
._18{width:70.656000px;}
._4c{width:72.480000px;}
._29{width:73.584000px;}
._2d{width:74.688000px;}
._50{width:79.152000px;}
._39{width:80.448000px;}
._4a{width:85.776000px;}
._1c{width:90.192000px;}
._5f{width:91.584000px;}
._4b{width:96.220740px;}
._4e{width:97.392000px;}
._38{width:103.536000px;}
._17{width:105.846000px;}
._13{width:107.136000px;}
._49{width:109.564740px;}
._5e{width:111.120000px;}
._53{width:121.776000px;}
._60{width:123.120000px;}
._63{width:138.864000px;}
._5d{width:151.584000px;}
._16{width:153.504000px;}
._61{width:157.584000px;}
._3c{width:176.592000px;}
._41{width:181.705260px;}
._62{width:186.864000px;}
._5b{width:228.000000px;}
._1b{width:237.312000px;}
._67{width:242.334456px;}
._15{width:254.640000px;}
._37{width:255.984000px;}
._e{width:264.227119px;}
._25{width:266.640000px;}
._30{width:277.999740px;}
._6c{width:284.783328px;}
._40{width:288.265260px;}
._73{width:293.328000px;}
._66{width:298.406222px;}
._72{width:306.672000px;}
._5a{width:328.272000px;}
._5c{width:389.568000px;}
._70{width:398.400000px;}
._3e{width:399.600000px;}
._42{width:416.233260px;}
._34{width:418.272000px;}
._24{width:419.616000px;}
._55{width:432.576000px;}
._52{width:448.608000px;}
._2e{width:454.224000px;}
._4f{width:459.919740px;}
._76{width:465.504000px;}
._45{width:474.919200px;}
._43{width:478.272000px;}
._69{width:479.578260px;}
._6e{width:501.360000px;}
._3d{width:518.953260px;}
._36{width:520.896000px;}
._2b{width:530.208000px;}
._27{width:538.272000px;}
._33{width:540.432000px;}
._1a{width:552.160260px;}
._14{width:569.488260px;}
._54{width:579.600000px;}
._57{width:580.608000px;}
._77{width:587.904000px;}
._28{width:590.496000px;}
._4d{width:595.632000px;}
._26{width:598.320000px;}
._59{width:604.560000px;}
._56{width:606.624000px;}
._3f{width:624.864000px;}
._58{width:633.840000px;}
._2c{width:661.008000px;}
._6a{width:666.528000px;}
._48{width:674.448000px;}
._44{width:682.224000px;}
._1f{width:699.222000px;}
._23{width:700.992000px;}
._74{width:703.824000px;}
._22{width:707.958000px;}
._3a{width:716.410260px;}
._6d{width:812.794260px;}
._11{width:843.456000px;}
._71{width:849.120000px;}
._46{width:856.944000px;}
._51{width:899.520000px;}
._2f{width:911.520000px;}
._3b{width:926.304000px;}
._75{width:933.865260px;}
._6b{width:982.556988px;}
._6f{width:1006.464000px;}
.fc4{color:rgb(61,151,56);}
.fc3{color:rgb(38,96,173);}
.fc2{color:rgb(231,36,24);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fse{font-size:49.562400px;}
.fsa{font-size:50.252400px;}
.fs10{font-size:56.752800px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs11{font-size:67.967400px;}
.fs1{font-size:78.000000px;}
.fsd{font-size:79.240800px;}
.fsf{font-size:93.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y2ce{bottom:65.770350px;}
.y2cc{bottom:80.263500px;}
.yb7{bottom:82.928850px;}
.y166{bottom:83.141400px;}
.y1b9{bottom:83.330550px;}
.y163{bottom:83.649450px;}
.yda{bottom:83.770350px;}
.y62{bottom:83.772600px;}
.y1b5{bottom:83.785350px;}
.y128{bottom:83.790900px;}
.y15f{bottom:83.912100px;}
.y1a9{bottom:83.920350px;}
.y8e{bottom:83.922600px;}
.y16c{bottom:84.003450px;}
.yf2{bottom:84.070350px;}
.y1de{bottom:84.192750px;}
.y1da{bottom:84.310800px;}
.y19c{bottom:84.399300px;}
.y21c{bottom:85.066500px;}
.y28b{bottom:89.263500px;}
.y2a{bottom:90.296250px;}
.y247{bottom:93.663000px;}
.y1d7{bottom:94.021050px;}
.y1ca{bottom:94.676550px;}
.y2cb{bottom:95.263500px;}
.yb6{bottom:98.672850px;}
.y165{bottom:98.885400px;}
.y1b8{bottom:99.074550px;}
.y162{bottom:99.393450px;}
.y1dd{bottom:99.936750px;}
.y1d9{bottom:100.054800px;}
.y19b{bottom:100.149300px;}
.yd9{bottom:101.770350px;}
.y61{bottom:101.772600px;}
.y1b4{bottom:101.785350px;}
.y15e{bottom:101.912100px;}
.y1a8{bottom:101.920350px;}
.y8d{bottom:101.922600px;}
.yf1{bottom:102.070350px;}
.y28a{bottom:104.263500px;}
.y29{bottom:105.292500px;}
.y126{bottom:108.415200px;}
.y246{bottom:110.163000px;}
.y2ca{bottom:110.263500px;}
.y1d6{bottom:110.269050px;}
.y1c9{bottom:113.480550px;}
.y1b7{bottom:114.818550px;}
.y161{bottom:115.137450px;}
.y1dc{bottom:115.680750px;}
.y19a{bottom:115.893300px;}
.y289{bottom:119.263500px;}
.yd8{bottom:119.770350px;}
.y60{bottom:119.772600px;}
.y1b3{bottom:119.785350px;}
.y20e{bottom:119.815604px;}
.y15d{bottom:119.912100px;}
.y1a7{bottom:119.920350px;}
.y8c{bottom:119.922600px;}
.yf0{bottom:120.070350px;}
.y28{bottom:120.285900px;}
.y2c9{bottom:125.263500px;}
.y125{bottom:125.515200px;}
.y1d5{bottom:126.517050px;}
.y245{bottom:126.663000px;}
.y1b6{bottom:130.562550px;}
.y160{bottom:130.881450px;}
.y1c8{bottom:132.284550px;}
.y20d{bottom:133.407900px;}
.y288{bottom:134.263500px;}
.y91{bottom:136.280426px;}
.yd7{bottom:137.770350px;}
.y5f{bottom:137.772600px;}
.y1b2{bottom:137.785350px;}
.y15c{bottom:137.912100px;}
.y1a6{bottom:137.920350px;}
.y8b{bottom:137.922600px;}
.yef{bottom:138.070350px;}
.y1e1{bottom:138.384000px;}
.y2c8{bottom:140.263500px;}
.y124{bottom:142.615200px;}
.y1d4{bottom:142.765050px;}
.y244{bottom:143.163000px;}
.y287{bottom:149.263500px;}
.y205{bottom:150.701700px;}
.y1c7{bottom:151.088550px;}
.y207{bottom:151.674152px;}
.y2c7{bottom:155.263500px;}
.y24d{bottom:155.365350px;}
.yd6{bottom:155.770350px;}
.y5e{bottom:155.772600px;}
.y1b1{bottom:155.785350px;}
.y15b{bottom:155.912100px;}
.y1a5{bottom:155.920350px;}
.y8a{bottom:155.922600px;}
.yee{bottom:156.070350px;}
.y1d3{bottom:159.013050px;}
.y243{bottom:159.663000px;}
.y123{bottom:159.715200px;}
.y200{bottom:161.238300px;}
.y286{bottom:164.263500px;}
.y90{bottom:164.786100px;}
.y206{bottom:166.505700px;}
.y1c6{bottom:169.892550px;}
.y2c6{bottom:170.263500px;}
.yd5{bottom:173.770350px;}
.y5d{bottom:173.772600px;}
.y1b0{bottom:173.785350px;}
.y15a{bottom:173.912100px;}
.y1a4{bottom:173.920350px;}
.y89{bottom:173.922600px;}
.y1d2{bottom:175.261050px;}
.y242{bottom:176.163000px;}
.y122{bottom:176.815200px;}
.y285{bottom:179.263500px;}
.y93{bottom:181.871916px;}
.y2c5{bottom:185.263500px;}
.y1c5{bottom:188.696550px;}
.y24c{bottom:191.365350px;}
.y1d1{bottom:191.509050px;}
.yed{bottom:191.665350px;}
.yd4{bottom:191.770350px;}
.y5c{bottom:191.772600px;}
.y1af{bottom:191.785350px;}
.y159{bottom:191.912100px;}
.y1a3{bottom:191.920350px;}
.y88{bottom:191.922600px;}
.y241{bottom:192.411000px;}
.y121{bottom:193.495200px;}
.y284{bottom:194.263500px;}
.y1ff{bottom:199.894050px;}
.y208{bottom:199.895550px;}
.y2c4{bottom:200.263500px;}
.y203{bottom:203.455050px;}
.y1c4{bottom:207.500550px;}
.y240{bottom:208.659000px;}
.y283{bottom:209.263500px;}
.yd3{bottom:209.770350px;}
.y5b{bottom:209.772600px;}
.y1ae{bottom:209.785350px;}
.y158{bottom:209.912100px;}
.y1a2{bottom:209.920350px;}
.y87{bottom:209.922600px;}
.y120{bottom:210.175200px;}
.y2c3{bottom:215.263500px;}
.y27{bottom:218.604900px;}
.y1d0{bottom:220.513050px;}
.y282{bottom:224.263500px;}
.y23f{bottom:224.907000px;}
.y1c3{bottom:226.304550px;}
.yd2{bottom:227.770350px;}
.y5a{bottom:227.772600px;}
.y1ad{bottom:227.785350px;}
.y157{bottom:227.912100px;}
.yec{bottom:227.920350px;}
.y86{bottom:227.922600px;}
.y2c2{bottom:230.263500px;}
.y26{bottom:236.614200px;}
.y11f{bottom:239.179200px;}
.y281{bottom:239.263500px;}
.y23e{bottom:241.155000px;}
.y20a{bottom:244.554961px;}
.y1c2{bottom:245.108550px;}
.y2c1{bottom:245.263500px;}
.yd1{bottom:245.770350px;}
.y59{bottom:245.772600px;}
.y1ac{bottom:245.785350px;}
.yeb{bottom:245.920350px;}
.y85{bottom:245.922600px;}
.y156{bottom:245.935350px;}
.y202{bottom:248.115811px;}
.y204{bottom:248.862300px;}
.y1cf{bottom:252.904200px;}
.y280{bottom:254.263500px;}
.y11e{bottom:256.279200px;}
.y23d{bottom:257.403000px;}
.y209{bottom:259.398900px;}
.y2c0{bottom:260.263500px;}
.y201{bottom:262.959750px;}
.y24b{bottom:263.365350px;}
.yd0{bottom:263.770350px;}
.y58{bottom:263.772600px;}
.y1c1{bottom:263.912550px;}
.yea{bottom:263.920350px;}
.y84{bottom:263.922600px;}
.y155{bottom:263.935350px;}
.y25{bottom:263.959200px;}
.y27f{bottom:269.263500px;}
.y1ce{bottom:272.404200px;}
.y23c{bottom:273.063000px;}
.y11d{bottom:273.428850px;}
.y2bf{bottom:275.263500px;}
.y1ab{bottom:281.380350px;}
.ycf{bottom:281.770350px;}
.y57{bottom:281.772600px;}
.ye9{bottom:281.920350px;}
.y83{bottom:281.922600px;}
.y154{bottom:281.935350px;}
.y24{bottom:281.959200px;}
.y1c0{bottom:282.716550px;}
.y27e{bottom:284.263500px;}
.y23b{bottom:289.899000px;}
.y2be{bottom:290.263500px;}
.y11c{bottom:290.528850px;}
.y1cd{bottom:291.904200px;}
.y94{bottom:299.148455px;}
.y27d{bottom:299.263500px;}
.y224{bottom:299.770350px;}
.y56{bottom:299.772600px;}
.ye8{bottom:299.920350px;}
.y82{bottom:299.922600px;}
.y153{bottom:299.935350px;}
.y23{bottom:299.959200px;}
.y2bd{bottom:305.263500px;}
.y23a{bottom:305.559000px;}
.y11b{bottom:307.628850px;}
.y1cc{bottom:311.404200px;}
.y27c{bottom:314.263500px;}
.y1bf{bottom:315.296550px;}
.yce{bottom:317.365350px;}
.y223{bottom:317.770350px;}
.y55{bottom:317.772600px;}
.ye7{bottom:317.920350px;}
.y81{bottom:317.922600px;}
.y152{bottom:317.935350px;}
.y22{bottom:317.959200px;}
.y2bc{bottom:320.263500px;}
.y239{bottom:322.395000px;}
.y11a{bottom:324.728850px;}
.y27b{bottom:329.263500px;}
.y92{bottom:329.840108px;}
.y1cb{bottom:330.904200px;}
.y9c{bottom:330.965250px;}
.y2bb{bottom:335.263500px;}
.y222{bottom:335.770350px;}
.y54{bottom:335.772600px;}
.ye6{bottom:335.920350px;}
.y80{bottom:335.922600px;}
.y21{bottom:335.959200px;}
.y238{bottom:338.643000px;}
.y119{bottom:341.828850px;}
.y27a{bottom:344.263500px;}
.y95{bottom:348.194797px;}
.y2ba{bottom:350.263500px;}
.y1be{bottom:350.404200px;}
.ycd{bottom:353.230350px;}
.y151{bottom:353.530350px;}
.y221{bottom:353.770350px;}
.y53{bottom:353.772600px;}
.ye5{bottom:353.920350px;}
.y7f{bottom:353.922600px;}
.y20{bottom:353.959200px;}
.y237{bottom:354.891000px;}
.y1fe{bottom:357.559500px;}
.y118{bottom:358.928850px;}
.y279{bottom:359.263500px;}
.y210{bottom:361.525780px;}
.y2b9{bottom:365.263500px;}
.y1bd{bottom:369.904200px;}
.y236{bottom:371.143050px;}
.y220{bottom:371.770350px;}
.y52{bottom:371.772600px;}
.ye4{bottom:371.920350px;}
.y7e{bottom:371.922600px;}
.y1f{bottom:371.959200px;}
.y278{bottom:374.263500px;}
.y1fc{bottom:375.143550px;}
.y117{bottom:376.028850px;}
.y2b8{bottom:380.263500px;}
.y235{bottom:387.402900px;}
.y277{bottom:389.263500px;}
.y1bc{bottom:389.404200px;}
.y21f{bottom:389.770350px;}
.y51{bottom:389.772600px;}
.y150{bottom:389.785350px;}
.ye3{bottom:389.920350px;}
.y7d{bottom:389.922600px;}
.y1e{bottom:389.959200px;}
.y99{bottom:390.607823px;}
.y1fd{bottom:392.655000px;}
.y116{bottom:393.128850px;}
.y2b7{bottom:395.263500px;}
.y234{bottom:403.650900px;}
.y276{bottom:404.263500px;}
.ycc{bottom:407.770350px;}
.y50{bottom:407.772600px;}
.y14f{bottom:407.785350px;}
.ye2{bottom:407.920350px;}
.y7c{bottom:407.922600px;}
.y1d{bottom:407.959200px;}
.y1bb{bottom:408.904200px;}
.y115{bottom:410.228850px;}
.y2b6{bottom:410.263500px;}
.y275{bottom:419.263500px;}
.y233{bottom:419.898900px;}
.y2b5{bottom:425.263500px;}
.ycb{bottom:425.770350px;}
.y4f{bottom:425.772600px;}
.y14e{bottom:425.785350px;}
.ye1{bottom:425.920350px;}
.y7b{bottom:425.922600px;}
.y1c{bottom:425.959200px;}
.y114{bottom:427.328850px;}
.y1df{bottom:433.609800px;}
.y274{bottom:434.263500px;}
.y2b4{bottom:440.263500px;}
.yca{bottom:443.770350px;}
.y4e{bottom:443.772600px;}
.y14d{bottom:443.785350px;}
.ye0{bottom:443.920350px;}
.y7a{bottom:443.922600px;}
.y1b{bottom:443.959200px;}
.y113{bottom:444.428850px;}
.y232{bottom:448.902900px;}
.y273{bottom:449.263500px;}
.y2b3{bottom:455.263500px;}
.y1ba{bottom:455.551350px;}
.y24a{bottom:461.365350px;}
.y112{bottom:461.528850px;}
.yc9{bottom:461.770350px;}
.y4d{bottom:461.772600px;}
.y14c{bottom:461.785350px;}
.ydf{bottom:461.920350px;}
.y79{bottom:461.922600px;}
.y194{bottom:461.935350px;}
.y1a{bottom:461.959200px;}
.y272{bottom:464.263500px;}
.y96{bottom:465.848228px;}
.y2b2{bottom:470.263500px;}
.y20b{bottom:473.304150px;}
.y111{bottom:478.628850px;}
.y271{bottom:479.263500px;}
.yc8{bottom:479.770350px;}
.y4c{bottom:479.772600px;}
.y14b{bottom:479.785350px;}
.yde{bottom:479.920350px;}
.y78{bottom:479.922600px;}
.y193{bottom:479.935350px;}
.y19{bottom:479.959200px;}
.y231{bottom:481.300350px;}
.y2b1{bottom:485.263500px;}
.y196{bottom:490.277400px;}
.y211{bottom:493.972627px;}
.y270{bottom:494.263500px;}
.y97{bottom:495.635339px;}
.y110{bottom:495.728850px;}
.yc7{bottom:497.770350px;}
.y4b{bottom:497.772600px;}
.y14a{bottom:497.785350px;}
.ydd{bottom:497.920350px;}
.y77{bottom:497.922600px;}
.y192{bottom:497.935350px;}
.y18{bottom:497.959200px;}
.y2b0{bottom:500.263500px;}
.y1e0{bottom:503.799150px;}
.y195{bottom:506.021400px;}
.y199{bottom:508.769400px;}
.y26f{bottom:509.263500px;}
.y19f{bottom:512.157300px;}
.y10f{bottom:512.828850px;}
.y2af{bottom:515.263500px;}
.yc6{bottom:515.770350px;}
.y4a{bottom:515.772600px;}
.y149{bottom:515.785350px;}
.ydc{bottom:515.920350px;}
.y76{bottom:515.922600px;}
.y191{bottom:515.935350px;}
.y17{bottom:515.959200px;}
.y26e{bottom:524.263500px;}
.y198{bottom:524.513400px;}
.y19e{bottom:527.901300px;}
.y20f{bottom:528.634399px;}
.y10e{bottom:529.928850px;}
.y2ae{bottom:530.263500px;}
.y230{bottom:533.635350px;}
.yc5{bottom:533.770350px;}
.y49{bottom:533.772600px;}
.y148{bottom:533.785350px;}
.y17c{bottom:533.920350px;}
.y75{bottom:533.922600px;}
.y190{bottom:533.935350px;}
.y16{bottom:533.959200px;}
.y26d{bottom:539.263500px;}
.y19d{bottom:543.645300px;}
.y2ad{bottom:545.263500px;}
.y1e9{bottom:546.084961px;}
.y10d{bottom:547.028850px;}
.y212{bottom:549.363359px;}
.ydb{bottom:551.515350px;}
.y22f{bottom:551.635350px;}
.yc4{bottom:551.770350px;}
.y48{bottom:551.772600px;}
.y147{bottom:551.785350px;}
.y17b{bottom:551.920350px;}
.y74{bottom:551.922600px;}
.y18f{bottom:551.935350px;}
.y15{bottom:551.959200px;}
.y26c{bottom:554.263500px;}
.y2ac{bottom:560.263500px;}
.y1e8{bottom:560.928900px;}
.y10c{bottom:564.128850px;}
.y1eb{bottom:567.156661px;}
.y26b{bottom:569.263500px;}
.y22e{bottom:569.635350px;}
.yc3{bottom:569.770350px;}
.y47{bottom:569.772600px;}
.y146{bottom:569.785350px;}
.y17a{bottom:569.920350px;}
.y73{bottom:569.922600px;}
.y18e{bottom:569.935350px;}
.y14{bottom:569.959200px;}
.y1f9{bottom:571.464600px;}
.y98{bottom:574.468791px;}
.y2ab{bottom:575.263500px;}
.y10b{bottom:581.228850px;}
.y1ea{bottom:582.000600px;}
.y26a{bottom:584.263500px;}
.y22d{bottom:587.635350px;}
.yc2{bottom:587.770350px;}
.y46{bottom:587.772600px;}
.y145{bottom:587.785350px;}
.y179{bottom:587.920350px;}
.y72{bottom:587.922600px;}
.y18d{bottom:587.935350px;}
.y13{bottom:587.959200px;}
.y2aa{bottom:590.263500px;}
.y1f4{bottom:591.715561px;}
.y216{bottom:597.276911px;}
.y1e2{bottom:597.868200px;}
.y10a{bottom:598.328850px;}
.y269{bottom:599.263500px;}
.y2a9{bottom:605.263500px;}
.y22c{bottom:605.635350px;}
.yc1{bottom:605.770350px;}
.y45{bottom:605.772600px;}
.y144{bottom:605.785350px;}
.y9a{bottom:605.838852px;}
.y178{bottom:605.920350px;}
.y71{bottom:605.922600px;}
.y18c{bottom:605.935350px;}
.y12{bottom:605.959200px;}
.y1f3{bottom:606.559500px;}
.y268{bottom:614.263500px;}
.y109{bottom:615.428850px;}
.y1e7{bottom:616.125811px;}
.y2a8{bottom:620.263500px;}
.y1f8{bottom:620.508300px;}
.y22b{bottom:623.635350px;}
.yc0{bottom:623.770350px;}
.y44{bottom:623.772600px;}
.y143{bottom:623.785350px;}
.y177{bottom:623.920350px;}
.y70{bottom:623.922600px;}
.y18b{bottom:623.935350px;}
.y11{bottom:623.959200px;}
.y1e5{bottom:623.994900px;}
.y267{bottom:629.263500px;}
.y1e6{bottom:630.969750px;}
.y108{bottom:632.575200px;}
.y2a7{bottom:635.263500px;}
.y22a{bottom:641.635350px;}
.ybf{bottom:641.770350px;}
.y43{bottom:641.772600px;}
.y142{bottom:641.785350px;}
.y176{bottom:641.920350px;}
.y6f{bottom:641.922600px;}
.y18a{bottom:641.935350px;}
.y266{bottom:644.263500px;}
.y1ef{bottom:647.806561px;}
.y1e4{bottom:647.807461px;}
.y107{bottom:649.675200px;}
.y2a6{bottom:650.263500px;}
.y1f7{bottom:651.220261px;}
.y265{bottom:659.263500px;}
.y229{bottom:659.635350px;}
.ybe{bottom:659.770350px;}
.y42{bottom:659.772600px;}
.y141{bottom:659.785350px;}
.y175{bottom:659.920350px;}
.y6e{bottom:659.922600px;}
.y189{bottom:659.935350px;}
.y219{bottom:660.238200px;}
.yb8{bottom:661.838400px;}
.y1ee{bottom:662.650500px;}
.y1e3{bottom:662.651400px;}
.y2a5{bottom:665.263500px;}
.y1f6{bottom:665.317411px;}
.y106{bottom:666.775200px;}
.y10{bottom:669.117300px;}
.y264{bottom:674.263500px;}
.y228{bottom:677.635350px;}
.ybd{bottom:677.770350px;}
.y41{bottom:677.772600px;}
.y140{bottom:677.785350px;}
.y174{bottom:677.920350px;}
.y6d{bottom:677.922600px;}
.y188{bottom:677.935350px;}
.y1f5{bottom:680.161350px;}
.y2a4{bottom:680.263500px;}
.yf{bottom:681.568050px;}
.y213{bottom:682.235852px;}
.y105{bottom:683.875200px;}
.y263{bottom:689.263500px;}
.y9b{bottom:692.197601px;}
.y2a3{bottom:695.263500px;}
.y249{bottom:695.365350px;}
.y227{bottom:695.635350px;}
.ybc{bottom:695.770350px;}
.y40{bottom:695.772600px;}
.y13f{bottom:695.785350px;}
.y173{bottom:695.920350px;}
.y6c{bottom:695.922600px;}
.y187{bottom:695.935350px;}
.y104{bottom:700.975200px;}
.y1f1{bottom:703.749661px;}
.y262{bottom:704.263500px;}
.y1ed{bottom:707.312161px;}
.y2a2{bottom:710.263500px;}
.ye{bottom:713.283600px;}
.y1aa{bottom:713.515350px;}
.y226{bottom:713.635350px;}
.ybb{bottom:713.770350px;}
.y3f{bottom:713.772600px;}
.y13e{bottom:713.785350px;}
.y172{bottom:713.920350px;}
.y6b{bottom:713.922600px;}
.y186{bottom:713.935350px;}
.y1fb{bottom:714.286411px;}
.y214{bottom:715.876075px;}
.y103{bottom:718.075200px;}
.y1f0{bottom:718.593600px;}
.y261{bottom:719.263500px;}
.y1ec{bottom:722.156100px;}
.y2a1{bottom:725.263500px;}
.y1fa{bottom:729.130350px;}
.yba{bottom:731.770350px;}
.y3e{bottom:731.772600px;}
.y13d{bottom:731.785350px;}
.y12b{bottom:731.920350px;}
.y6a{bottom:731.922600px;}
.y185{bottom:731.935350px;}
.yd{bottom:732.208950px;}
.y1f2{bottom:734.101800px;}
.y260{bottom:734.263500px;}
.y102{bottom:735.175200px;}
.y2a0{bottom:740.263500px;}
.yc{bottom:740.283600px;}
.y20c{bottom:747.528150px;}
.y225{bottom:749.230350px;}
.y25f{bottom:749.263500px;}
.yad{bottom:749.770350px;}
.y3d{bottom:749.772600px;}
.y13c{bottom:749.785350px;}
.yb5{bottom:749.920350px;}
.y69{bottom:749.922600px;}
.y184{bottom:749.935350px;}
.y101{bottom:752.275200px;}
.y29f{bottom:755.263500px;}
.yb{bottom:759.208950px;}
.y25e{bottom:764.263500px;}
.ya{bottom:767.283600px;}
.yac{bottom:767.770350px;}
.y3c{bottom:767.772600px;}
.y13b{bottom:767.785350px;}
.y215{bottom:767.790698px;}
.yb4{bottom:767.920350px;}
.y68{bottom:767.922600px;}
.y183{bottom:767.935350px;}
.y100{bottom:769.375200px;}
.y29e{bottom:770.263500px;}
.y25d{bottom:779.263500px;}
.y29d{bottom:785.263500px;}
.yab{bottom:785.770350px;}
.y3b{bottom:785.772600px;}
.y13a{bottom:785.785350px;}
.yb3{bottom:785.920350px;}
.y67{bottom:785.922600px;}
.y182{bottom:785.935350px;}
.y9{bottom:786.208950px;}
.yff{bottom:786.475200px;}
.y25c{bottom:794.263500px;}
.y29c{bottom:800.263500px;}
.y12a{bottom:803.515350px;}
.yfe{bottom:803.575200px;}
.yaa{bottom:803.770350px;}
.y3a{bottom:803.772600px;}
.y139{bottom:803.785350px;}
.yb2{bottom:803.920350px;}
.y66{bottom:803.922600px;}
.y181{bottom:803.935350px;}
.y25b{bottom:809.263500px;}
.y8{bottom:814.930800px;}
.y29b{bottom:815.263500px;}
.yfd{bottom:820.675200px;}
.ya9{bottom:821.770350px;}
.y39{bottom:821.772600px;}
.y138{bottom:821.785350px;}
.yb1{bottom:821.920350px;}
.y180{bottom:821.935350px;}
.y21a{bottom:823.444919px;}
.y25a{bottom:824.263500px;}
.y29a{bottom:830.263500px;}
.yfc{bottom:837.775200px;}
.y259{bottom:839.263500px;}
.y65{bottom:839.517600px;}
.ya8{bottom:839.770350px;}
.y38{bottom:839.772600px;}
.y137{bottom:839.785350px;}
.yb0{bottom:839.920350px;}
.y17f{bottom:839.935350px;}
.y217{bottom:840.349153px;}
.y299{bottom:845.263500px;}
.y258{bottom:854.263500px;}
.yfb{bottom:854.875200px;}
.ya7{bottom:857.770350px;}
.y37{bottom:857.772600px;}
.y136{bottom:857.785350px;}
.yaf{bottom:857.920350px;}
.y17e{bottom:857.935350px;}
.y298{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.y257{bottom:869.263500px;}
.yfa{bottom:871.975200px;}
.y297{bottom:875.263500px;}
.ya6{bottom:875.770350px;}
.y36{bottom:875.772600px;}
.y135{bottom:875.785350px;}
.y171{bottom:875.920350px;}
.y256{bottom:884.263500px;}
.yf9{bottom:889.075200px;}
.y296{bottom:890.263500px;}
.yae{bottom:893.515350px;}
.y17d{bottom:893.530350px;}
.ya5{bottom:893.770350px;}
.y35{bottom:893.772600px;}
.y134{bottom:893.785350px;}
.y170{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y255{bottom:899.263500px;}
.y295{bottom:905.263500px;}
.yf8{bottom:906.175200px;}
.y21b{bottom:910.528151px;}
.ya4{bottom:911.770350px;}
.y34{bottom:911.772600px;}
.y133{bottom:911.785350px;}
.y16f{bottom:911.920350px;}
.y254{bottom:914.263500px;}
.y294{bottom:920.263500px;}
.yf7{bottom:923.275200px;}
.y253{bottom:929.263500px;}
.ya3{bottom:929.770350px;}
.y33{bottom:929.772600px;}
.y132{bottom:929.785350px;}
.y16b{bottom:929.907600px;}
.y1a1{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y293{bottom:935.263500px;}
.yf6{bottom:940.375200px;}
.y252{bottom:944.263500px;}
.y16e{bottom:947.515350px;}
.ya2{bottom:947.770350px;}
.y32{bottom:947.772600px;}
.y131{bottom:947.785350px;}
.y16a{bottom:947.907600px;}
.y292{bottom:950.263500px;}
.y251{bottom:959.263500px;}
.y291{bottom:965.263500px;}
.y1a0{bottom:965.515350px;}
.ya1{bottom:965.770350px;}
.y31{bottom:965.772600px;}
.y130{bottom:965.785350px;}
.y169{bottom:965.907600px;}
.y218{bottom:966.340369px;}
.yf5{bottom:969.379200px;}
.y4{bottom:970.465200px;}
.y250{bottom:974.263500px;}
.y290{bottom:980.263500px;}
.ya0{bottom:983.770350px;}
.y30{bottom:983.772600px;}
.y12f{bottom:983.785350px;}
.yf4{bottom:985.879200px;}
.y24f{bottom:989.263500px;}
.y28f{bottom:995.263500px;}
.y168{bottom:1001.502600px;}
.y9f{bottom:1001.770350px;}
.y2f{bottom:1001.772600px;}
.y12e{bottom:1001.785350px;}
.y21d{bottom:1001.995950px;}
.y24e{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y28e{bottom:1010.263500px;}
.yf3{bottom:1018.270350px;}
.y21e{bottom:1018.378650px;}
.y9e{bottom:1019.770350px;}
.y64{bottom:1019.772600px;}
.y12d{bottom:1019.785350px;}
.y28d{bottom:1025.263500px;}
.y2e{bottom:1037.367600px;}
.y9d{bottom:1037.770350px;}
.y63{bottom:1037.772600px;}
.y12c{bottom:1037.785350px;}
.y28c{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.yb9{bottom:1132.418400px;}
.y8f{bottom:1132.418700px;}
.y16d{bottom:1132.419450px;}
.y167{bottom:1132.421400px;}
.y197{bottom:1132.421700px;}
.y129{bottom:1132.422900px;}
.y2cd{bottom:1132.423500px;}
.y1db{bottom:1132.426800px;}
.y127{bottom:1132.435200px;}
.y164{bottom:1132.437450px;}
.y1d8{bottom:1132.441050px;}
.y248{bottom:1132.467000px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.hc{height:32.816576px;}
.h15{height:33.328125px;}
.h14{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h27{height:35.280000px;}
.h1e{height:36.082782px;}
.h13{height:36.585121px;}
.h12{height:36.609659px;}
.h28{height:37.632000px;}
.h1f{height:39.069938px;}
.h23{height:41.345302px;}
.h10{height:41.660156px;}
.h29{height:41.680453px;}
.h11{height:41.689453px;}
.h1a{height:41.990761px;}
.h25{height:42.006961px;}
.h19{height:42.030361px;}
.h26{height:42.038161px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h24{height:49.482126px;}
.h20{height:50.326182px;}
.h17{height:52.457871px;}
.h1b{height:52.507951px;}
.h18{height:52.550871px;}
.h16{height:52.567951px;}
.h21{height:53.317538px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h1c{height:57.689469px;}
.h22{height:67.751953px;}
.h4{height:92.168262px;}
.h1d{height:609.963000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:70.582650px;}
.x8{left:76.535400px;}
.x2e{left:78.661350px;}
.x39{left:94.860927px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:99.921300px;}
.x38{left:101.982600px;}
.x35{left:103.393200px;}
.x34{left:104.506500px;}
.x4{left:106.299300px;}
.x57{left:109.275600px;}
.x9{left:110.558550px;}
.x19{left:115.091400px;}
.x5c{left:123.307350px;}
.x3{left:125.437200px;}
.x31{left:129.691500px;}
.x28{left:131.815350px;}
.x1e{left:144.755400px;}
.x47{left:153.550950px;}
.x48{left:156.822068px;}
.x27{left:163.677300px;}
.x17{left:168.649756px;}
.x53{left:179.031224px;}
.x37{left:180.181851px;}
.x36{left:188.421600px;}
.x5{left:191.338650px;}
.x5a{left:194.292600px;}
.x16{left:200.773602px;}
.x52{left:215.395581px;}
.x18{left:219.882077px;}
.x54{left:227.710939px;}
.x29{left:232.365300px;}
.x33{left:262.320000px;}
.x4a{left:265.731600px;}
.x58{left:270.001200px;}
.x49{left:286.878900px;}
.x32{left:342.822000px;}
.x46{left:349.648200px;}
.x13{left:387.260259px;}
.x12{left:388.315559px;}
.x43{left:402.178200px;}
.x2f{left:407.891850px;}
.x56{left:418.024661px;}
.x20{left:423.093300px;}
.x4f{left:426.005222px;}
.x4e{left:427.197031px;}
.x14{left:439.095609px;}
.x41{left:443.134500px;}
.x7{left:455.041500px;}
.xa{left:457.088550px;}
.x11{left:459.485521px;}
.x45{left:464.721398px;}
.x44{left:467.026050px;}
.x1a{left:478.332150px;}
.x5b{left:482.639400px;}
.x50{left:484.545735px;}
.xb{left:491.108550px;}
.x4b{left:492.703950px;}
.x5d{left:503.887350px;}
.x4d{left:507.573184px;}
.x1b{left:512.352150px;}
.x21{left:526.245300px;}
.x59{left:533.617200px;}
.x22{left:534.909300px;}
.x3c{left:567.263850px;}
.x55{left:569.337086px;}
.x3b{left:570.824850px;}
.x10{left:572.025770px;}
.x2d{left:579.444900px;}
.x23{left:581.553300px;}
.x15{left:583.910463px;}
.xe{left:624.991800px;}
.x24{left:633.681300px;}
.x3a{left:654.887850px;}
.x51{left:656.932365px;}
.xd{left:663.492300px;}
.x3e{left:668.985600px;}
.x40{left:672.398550px;}
.x42{left:682.935300px;}
.x30{left:684.862950px;}
.x2{left:693.365400px;}
.xf{left:696.149198px;}
.x25{left:708.117300px;}
.x3f{left:711.052950px;}
.x2a{left:721.715400px;}
.xc{left:728.391600px;}
.x3d{left:733.538059px;}
.x1c{left:737.195100px;}
.x2b{left:743.863350px;}
.x1d{left:749.651100px;}
.x26{left:756.981300px;}
.x4c{left:774.169462px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.397333pt;}
.v9{vertical-align:-8.722982pt;}
.va{vertical-align:-2.090667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.440000pt;}
.v6{vertical-align:2.655249pt;}
.v7{vertical-align:12.660800pt;}
.v8{vertical-align:15.319782pt;}
.v5{vertical-align:20.076800pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.lsbc{letter-spacing:-2.346667pt;}
.ls49{letter-spacing:-1.578667pt;}
.lsad{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls67{letter-spacing:-0.480000pt;}
.lsac{letter-spacing:-0.426667pt;}
.ls46{letter-spacing:-0.373333pt;}
.ls48{letter-spacing:-0.341333pt;}
.ls61{letter-spacing:-0.320000pt;}
.ls7a{letter-spacing:-0.308388pt;}
.lsc3{letter-spacing:-0.266667pt;}
.ls79{letter-spacing:-0.264333pt;}
.ls7f{letter-spacing:-0.252235pt;}
.ls3a{letter-spacing:-0.223344pt;}
.ls3c{letter-spacing:-0.213333pt;}
.ls7b{letter-spacing:-0.176222pt;}
.ls57{letter-spacing:-0.170667pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls7e{letter-spacing:-0.151341pt;}
.ls39{letter-spacing:-0.134006pt;}
.ls68{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.112533pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls7c{letter-spacing:-0.088111pt;}
.lsaa{letter-spacing:-0.085333pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls7d{letter-spacing:-0.050447pt;}
.ls38{letter-spacing:-0.044669pt;}
.ls78{letter-spacing:-0.044055pt;}
.ls6e{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.004512pt;}
.ls1{letter-spacing:0.005045pt;}
.lsc0{letter-spacing:0.009067pt;}
.ls5b{letter-spacing:0.030933pt;}
.ls4f{letter-spacing:0.031093pt;}
.ls89{letter-spacing:0.042133pt;}
.lsa1{letter-spacing:0.042667pt;}
.ls3b{letter-spacing:0.044669pt;}
.ls80{letter-spacing:0.050447pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls88{letter-spacing:0.061867pt;}
.ls6a{letter-spacing:0.085333pt;}
.ls59{letter-spacing:0.085867pt;}
.ls77{letter-spacing:0.088111pt;}
.ls6d{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.106667pt;}
.ls9f{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.160000pt;}
.lsa8{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.213333pt;}
.ls52{letter-spacing:0.224000pt;}
.ls69{letter-spacing:0.243200pt;}
.ls9e{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.266667pt;}
.ls58{letter-spacing:0.294400pt;}
.ls6b{letter-spacing:0.298667pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls92{letter-spacing:0.341333pt;}
.ls3d{letter-spacing:0.373333pt;}
.ls90{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls8f{letter-spacing:0.469333pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls99{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.533333pt;}
.lsbe{letter-spacing:0.554667pt;}
.ls26{letter-spacing:0.586667pt;}
.lsae{letter-spacing:0.597333pt;}
.ls63{letter-spacing:0.613867pt;}
.ls5a{letter-spacing:0.634133pt;}
.ls5c{letter-spacing:0.640000pt;}
.ls66{letter-spacing:0.682667pt;}
.ls29{letter-spacing:0.693333pt;}
.ls62{letter-spacing:0.706667pt;}
.lsb9{letter-spacing:0.725333pt;}
.ls12{letter-spacing:0.746667pt;}
.lsb0{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.800000pt;}
.ls93{letter-spacing:0.810667pt;}
.ls37{letter-spacing:0.853333pt;}
.ls31{letter-spacing:0.906667pt;}
.ls9b{letter-spacing:0.938667pt;}
.ls86{letter-spacing:0.944533pt;}
.ls16{letter-spacing:0.960000pt;}
.ls8e{letter-spacing:0.981333pt;}
.ls14{letter-spacing:1.013333pt;}
.lsa2{letter-spacing:1.024000pt;}
.ls11{letter-spacing:1.066667pt;}
.lsa3{letter-spacing:1.109333pt;}
.ls8a{letter-spacing:1.115733pt;}
.lsc{letter-spacing:1.120000pt;}
.lsb6{letter-spacing:1.152000pt;}
.ls30{letter-spacing:1.173333pt;}
.ls8d{letter-spacing:1.194667pt;}
.ls1e{letter-spacing:1.226667pt;}
.lsa9{letter-spacing:1.237333pt;}
.ls85{letter-spacing:1.267200pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls96{letter-spacing:1.322667pt;}
.ls24{letter-spacing:1.333333pt;}
.lsa5{letter-spacing:1.365333pt;}
.lsd{letter-spacing:1.386667pt;}
.ls9a{letter-spacing:1.408000pt;}
.lse{letter-spacing:1.440000pt;}
.lsb3{letter-spacing:1.450667pt;}
.ls22{letter-spacing:1.493333pt;}
.lsc2{letter-spacing:1.536000pt;}
.ls18{letter-spacing:1.546667pt;}
.lsaf{letter-spacing:1.578667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls91{letter-spacing:1.621333pt;}
.ls35{letter-spacing:1.653333pt;}
.lsb4{letter-spacing:1.664000pt;}
.ls53{letter-spacing:1.671467pt;}
.ls2c{letter-spacing:1.706667pt;}
.lsa4{letter-spacing:1.749333pt;}
.ls23{letter-spacing:1.760000pt;}
.lsab{letter-spacing:1.792000pt;}
.ls36{letter-spacing:1.813333pt;}
.ls17{letter-spacing:1.866667pt;}
.lsb7{letter-spacing:1.877333pt;}
.ls21{letter-spacing:1.920000pt;}
.lsb2{letter-spacing:1.962667pt;}
.ls19{letter-spacing:1.973333pt;}
.ls94{letter-spacing:2.005333pt;}
.lsa{letter-spacing:2.026667pt;}
.lsa7{letter-spacing:2.048000pt;}
.ls8{letter-spacing:2.080000pt;}
.ls95{letter-spacing:2.090667pt;}
.ls45{letter-spacing:2.133333pt;}
.lsa0{letter-spacing:2.176000pt;}
.ls84{letter-spacing:2.182400pt;}
.ls40{letter-spacing:2.186667pt;}
.ls2b{letter-spacing:2.240000pt;}
.lsa6{letter-spacing:2.261333pt;}
.ls9{letter-spacing:2.293333pt;}
.ls15{letter-spacing:2.346667pt;}
.ls9c{letter-spacing:2.389333pt;}
.ls51{letter-spacing:2.400000pt;}
.lsb1{letter-spacing:2.432000pt;}
.ls13{letter-spacing:2.453333pt;}
.lsb{letter-spacing:2.506667pt;}
.ls4e{letter-spacing:2.560000pt;}
.lsba{letter-spacing:2.602667pt;}
.ls50{letter-spacing:2.613333pt;}
.ls5e{letter-spacing:2.666667pt;}
.lsbb{letter-spacing:2.688000pt;}
.ls74{letter-spacing:2.720000pt;}
.ls70{letter-spacing:2.773333pt;}
.ls54{letter-spacing:2.826667pt;}
.ls55{letter-spacing:2.858667pt;}
.ls4a{letter-spacing:2.880000pt;}
.ls44{letter-spacing:2.933333pt;}
.lsb8{letter-spacing:2.944000pt;}
.ls43{letter-spacing:2.986667pt;}
.lsbf{letter-spacing:3.029333pt;}
.ls56{letter-spacing:3.040000pt;}
.ls28{letter-spacing:3.093333pt;}
.ls98{letter-spacing:3.114667pt;}
.ls2d{letter-spacing:3.146667pt;}
.ls9d{letter-spacing:3.157333pt;}
.ls81{letter-spacing:3.200000pt;}
.ls87{letter-spacing:3.253333pt;}
.ls72{letter-spacing:3.360000pt;}
.ls4b{letter-spacing:3.466667pt;}
.ls71{letter-spacing:3.626667pt;}
.ls4d{letter-spacing:3.786667pt;}
.ls1d{letter-spacing:3.893333pt;}
.ls6c{letter-spacing:3.946667pt;}
.ls7{letter-spacing:4.000000pt;}
.ls5d{letter-spacing:4.213333pt;}
.ls42{letter-spacing:4.266667pt;}
.lsb5{letter-spacing:4.565333pt;}
.ls73{letter-spacing:4.586667pt;}
.ls2e{letter-spacing:4.640000pt;}
.ls82{letter-spacing:4.693333pt;}
.ls3e{letter-spacing:4.746667pt;}
.ls4c{letter-spacing:4.800000pt;}
.ls97{letter-spacing:4.864000pt;}
.lsc1{letter-spacing:4.906667pt;}
.ls5f{letter-spacing:4.960000pt;}
.ls83{letter-spacing:5.013333pt;}
.ls65{letter-spacing:5.440000pt;}
.ls64{letter-spacing:5.600000pt;}
.ls6f{letter-spacing:5.973333pt;}
.ls60{letter-spacing:6.080000pt;}
.ls3f{letter-spacing:6.400000pt;}
.lsbd{letter-spacing:6.741333pt;}
.ls2{letter-spacing:52.918645pt;}
.ls8c{letter-spacing:177.877333pt;}
.ls8b{letter-spacing:312.917333pt;}
.ls47{letter-spacing:368.213333pt;}
.ls76{letter-spacing:425.960482pt;}
.ls75{letter-spacing:507.315580pt;}
.wsd2{word-spacing:-42.666667pt;}
.wsc7{word-spacing:-16.533333pt;}
.wsd8{word-spacing:-15.786667pt;}
.ws42{word-spacing:-15.573333pt;}
.ws82{word-spacing:-14.986667pt;}
.ws2{word-spacing:-14.826667pt;}
.ws6c{word-spacing:-14.666667pt;}
.wsa4{word-spacing:-14.186667pt;}
.ws83{word-spacing:-14.133333pt;}
.ws8{word-spacing:-14.080000pt;}
.wsc2{word-spacing:-14.024247pt;}
.ws9{word-spacing:-13.920000pt;}
.ws81{word-spacing:-13.866667pt;}
.ws2f{word-spacing:-13.813333pt;}
.ws6b{word-spacing:-13.706667pt;}
.wsb6{word-spacing:-13.653333pt;}
.ws84{word-spacing:-13.600000pt;}
.ws5a{word-spacing:-13.493333pt;}
.ws7c{word-spacing:-13.440000pt;}
.ws30{word-spacing:-13.333333pt;}
.ws9b{word-spacing:-13.120000pt;}
.ws92{word-spacing:-12.853333pt;}
.wsdd{word-spacing:-12.800000pt;}
.wse7{word-spacing:-12.757333pt;}
.ws10c{word-spacing:-12.714667pt;}
.ws2e{word-spacing:-12.417926pt;}
.ws112{word-spacing:-12.330667pt;}
.ws113{word-spacing:-12.288000pt;}
.ws109{word-spacing:-12.245333pt;}
.wse6{word-spacing:-12.074667pt;}
.ws10b{word-spacing:-12.032000pt;}
.wse2{word-spacing:-11.989333pt;}
.ws110{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.861333pt;}
.wse0{word-spacing:-11.776000pt;}
.ws10d{word-spacing:-11.690667pt;}
.wsdc{word-spacing:-11.648000pt;}
.wsde{word-spacing:-11.520000pt;}
.wse5{word-spacing:-11.477333pt;}
.ws10e{word-spacing:-11.434667pt;}
.ws10f{word-spacing:-11.392000pt;}
.wsb7{word-spacing:-11.306667pt;}
.ws108{word-spacing:-11.264000pt;}
.ws126{word-spacing:-11.221333pt;}
.ws3{word-spacing:-11.120000pt;}
.wse4{word-spacing:-11.050667pt;}
.wse3{word-spacing:-10.922667pt;}
.ws111{word-spacing:-10.880000pt;}
.wsdf{word-spacing:-10.752000pt;}
.wse1{word-spacing:-10.709333pt;}
.ws5c{word-spacing:-10.666667pt;}
.wsb8{word-spacing:-10.044646pt;}
.ws0{word-spacing:-9.076144pt;}
.ws10a{word-spacing:-8.320000pt;}
.ws63{word-spacing:-7.804427pt;}
.ws64{word-spacing:-7.773333pt;}
.ws11e{word-spacing:-6.741333pt;}
.ws1{word-spacing:-6.482960pt;}
.ws96{word-spacing:-6.218667pt;}
.ws8d{word-spacing:-5.600000pt;}
.ws8e{word-spacing:-5.440000pt;}
.ws12c{word-spacing:-4.906667pt;}
.ws68{word-spacing:-4.800000pt;}
.ws44{word-spacing:-4.746667pt;}
.wsc9{word-spacing:-4.693333pt;}
.ws22{word-spacing:-4.640000pt;}
.wsb5{word-spacing:-4.586667pt;}
.ws88{word-spacing:-4.426667pt;}
.ws8b{word-spacing:-4.373333pt;}
.ws75{word-spacing:-4.320000pt;}
.ws4d{word-spacing:-4.266667pt;}
.ws89{word-spacing:-4.213333pt;}
.ws54{word-spacing:-4.000000pt;}
.ws69{word-spacing:-3.840000pt;}
.ws12b{word-spacing:-3.626667pt;}
.wsb4{word-spacing:-3.360000pt;}
.wsd9{word-spacing:-3.306667pt;}
.wsd5{word-spacing:-3.253333pt;}
.wsc8{word-spacing:-3.200000pt;}
.ws21{word-spacing:-3.146667pt;}
.wsf7{word-spacing:-3.114667pt;}
.wsda{word-spacing:-3.093333pt;}
.ws72{word-spacing:-3.040000pt;}
.ws128{word-spacing:-3.029333pt;}
.ws4e{word-spacing:-2.986667pt;}
.ws121{word-spacing:-2.944000pt;}
.ws6f{word-spacing:-2.933333pt;}
.ws65{word-spacing:-2.880000pt;}
.ws79{word-spacing:-2.858667pt;}
.ws77{word-spacing:-2.826667pt;}
.wsb1{word-spacing:-2.773333pt;}
.ws124{word-spacing:-2.730667pt;}
.wsa2{word-spacing:-2.720000pt;}
.ws8a{word-spacing:-2.666667pt;}
.ws6e{word-spacing:-2.613333pt;}
.ws123{word-spacing:-2.602667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws6a{word-spacing:-2.560000pt;}
.ws9d{word-spacing:-2.506667pt;}
.wse{word-spacing:-2.453333pt;}
.ws119{word-spacing:-2.432000pt;}
.ws71{word-spacing:-2.400000pt;}
.ws52{word-spacing:-2.346667pt;}
.ws76{word-spacing:-2.293333pt;}
.ws103{word-spacing:-2.261333pt;}
.ws1f{word-spacing:-2.240000pt;}
.ws56{word-spacing:-2.186667pt;}
.wsfb{word-spacing:-2.176000pt;}
.ws51{word-spacing:-2.133333pt;}
.wsf3{word-spacing:-2.090667pt;}
.ws4c{word-spacing:-2.080000pt;}
.ws104{word-spacing:-2.048000pt;}
.ws67{word-spacing:-2.026667pt;}
.wsf1{word-spacing:-2.005333pt;}
.ws47{word-spacing:-1.973333pt;}
.ws11a{word-spacing:-1.962667pt;}
.ws38{word-spacing:-1.920000pt;}
.ws120{word-spacing:-1.877333pt;}
.ws1e{word-spacing:-1.866667pt;}
.ws37{word-spacing:-1.813333pt;}
.wsf4{word-spacing:-1.792000pt;}
.ws12{word-spacing:-1.760000pt;}
.wsff{word-spacing:-1.749333pt;}
.ws20{word-spacing:-1.706667pt;}
.ws11c{word-spacing:-1.664000pt;}
.ws35{word-spacing:-1.653333pt;}
.wsee{word-spacing:-1.621333pt;}
.ws4a{word-spacing:-1.600000pt;}
.ws116{word-spacing:-1.578667pt;}
.ws36{word-spacing:-1.546667pt;}
.ws117{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.493333pt;}
.ws11b{word-spacing:-1.450667pt;}
.ws6d{word-spacing:-1.440000pt;}
.wsf8{word-spacing:-1.408000pt;}
.ws40{word-spacing:-1.386667pt;}
.ws101{word-spacing:-1.365333pt;}
.ws4b{word-spacing:-1.333333pt;}
.wsf6{word-spacing:-1.322667pt;}
.wsf{word-spacing:-1.280000pt;}
.ws107{word-spacing:-1.237333pt;}
.ws43{word-spacing:-1.226667pt;}
.wsea{word-spacing:-1.194667pt;}
.ws29{word-spacing:-1.173333pt;}
.ws11f{word-spacing:-1.152000pt;}
.ws57{word-spacing:-1.120000pt;}
.wsfe{word-spacing:-1.109333pt;}
.ws3e{word-spacing:-1.066667pt;}
.wsfd{word-spacing:-1.024000pt;}
.ws55{word-spacing:-1.013333pt;}
.wseb{word-spacing:-0.981333pt;}
.ws7{word-spacing:-0.960000pt;}
.wsf9{word-spacing:-0.938667pt;}
.ws2c{word-spacing:-0.906667pt;}
.ws3b{word-spacing:-0.853333pt;}
.wsf0{word-spacing:-0.810667pt;}
.ws14{word-spacing:-0.800000pt;}
.ws118{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.746667pt;}
.ws12a{word-spacing:-0.725333pt;}
.ws50{word-spacing:-0.693333pt;}
.ws94{word-spacing:-0.682667pt;}
.ws86{word-spacing:-0.640000pt;}
.ws115{word-spacing:-0.597333pt;}
.ws25{word-spacing:-0.586667pt;}
.ws127{word-spacing:-0.554667pt;}
.ws24{word-spacing:-0.533333pt;}
.wsec{word-spacing:-0.512000pt;}
.ws1c{word-spacing:-0.480000pt;}
.ws114{word-spacing:-0.469333pt;}
.ws2b{word-spacing:-0.426667pt;}
.wsed{word-spacing:-0.384000pt;}
.ws3f{word-spacing:-0.373333pt;}
.wsef{word-spacing:-0.341333pt;}
.ws48{word-spacing:-0.320000pt;}
.ws9a{word-spacing:-0.298667pt;}
.ws16{word-spacing:-0.266667pt;}
.wsfa{word-spacing:-0.256000pt;}
.ws15{word-spacing:-0.213333pt;}
.ws105{word-spacing:-0.170667pt;}
.ws18{word-spacing:-0.160000pt;}
.ws99{word-spacing:-0.128000pt;}
.ws3d{word-spacing:-0.106667pt;}
.wsc0{word-spacing:-0.088111pt;}
.wse9{word-spacing:-0.085333pt;}
.ws1b{word-spacing:-0.053333pt;}
.wsc6{word-spacing:-0.050447pt;}
.ws34{word-spacing:-0.044669pt;}
.wsfc{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws90{word-spacing:0.042667pt;}
.wsbb{word-spacing:0.044055pt;}
.ws31{word-spacing:0.044669pt;}
.wsc3{word-spacing:0.050447pt;}
.wsa0{word-spacing:0.053333pt;}
.wse8{word-spacing:0.085333pt;}
.wsbf{word-spacing:0.088111pt;}
.ws4f{word-spacing:0.106667pt;}
.ws95{word-spacing:0.128000pt;}
.ws32{word-spacing:0.134006pt;}
.wsc4{word-spacing:0.151341pt;}
.ws11{word-spacing:0.160000pt;}
.ws7b{word-spacing:0.170667pt;}
.wsbe{word-spacing:0.176222pt;}
.ws39{word-spacing:0.213333pt;}
.ws33{word-spacing:0.223344pt;}
.wsc5{word-spacing:0.252235pt;}
.wsbc{word-spacing:0.264333pt;}
.ws49{word-spacing:0.266667pt;}
.wsbd{word-spacing:0.308388pt;}
.wscc{word-spacing:0.320000pt;}
.ws62{word-spacing:0.341333pt;}
.ws45{word-spacing:0.373333pt;}
.ws11d{word-spacing:0.384000pt;}
.ws9e{word-spacing:0.426667pt;}
.ws93{word-spacing:0.480000pt;}
.wscd{word-spacing:0.533333pt;}
.wsca{word-spacing:0.586667pt;}
.ws91{word-spacing:0.640000pt;}
.ws106{word-spacing:0.682667pt;}
.ws125{word-spacing:0.725333pt;}
.ws26{word-spacing:0.853333pt;}
.ws73{word-spacing:1.013333pt;}
.ws102{word-spacing:1.024000pt;}
.ws41{word-spacing:1.109333pt;}
.ws1d{word-spacing:1.120000pt;}
.ws7a{word-spacing:1.152000pt;}
.ws97{word-spacing:1.226667pt;}
.ws12d{word-spacing:1.333333pt;}
.ws53{word-spacing:1.386667pt;}
.ws59{word-spacing:1.440000pt;}
.ws129{word-spacing:1.536000pt;}
.ws122{word-spacing:1.664000pt;}
.wsb3{word-spacing:1.706667pt;}
.ws66{word-spacing:1.760000pt;}
.wsa3{word-spacing:1.834667pt;}
.ws10{word-spacing:1.866667pt;}
.ws8c{word-spacing:1.920000pt;}
.wsf5{word-spacing:1.962667pt;}
.ws19{word-spacing:1.973333pt;}
.ws80{word-spacing:2.090667pt;}
.ws46{word-spacing:2.346667pt;}
.ws17{word-spacing:2.400000pt;}
.ws9c{word-spacing:2.453333pt;}
.ws28{word-spacing:2.506667pt;}
.ws100{word-spacing:2.560000pt;}
.ws27{word-spacing:2.613333pt;}
.ws87{word-spacing:2.666667pt;}
.ws13{word-spacing:2.720000pt;}
.ws7f{word-spacing:2.816000pt;}
.wsb2{word-spacing:2.826667pt;}
.wsd7{word-spacing:2.880000pt;}
.ws3c{word-spacing:2.933333pt;}
.ws85{word-spacing:3.040000pt;}
.ws74{word-spacing:3.093333pt;}
.wsf2{word-spacing:3.114667pt;}
.ws7d{word-spacing:3.253333pt;}
.wsd6{word-spacing:3.306667pt;}
.ws9f{word-spacing:3.466667pt;}
.ws98{word-spacing:3.498667pt;}
.ws78{word-spacing:3.541333pt;}
.ws23{word-spacing:3.680000pt;}
.ws1a{word-spacing:3.733333pt;}
.ws70{word-spacing:3.840000pt;}
.ws58{word-spacing:3.946667pt;}
.ws2a{word-spacing:4.106667pt;}
.wsc{word-spacing:4.213333pt;}
.wscb{word-spacing:4.320000pt;}
.wsa{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.wsdb{word-spacing:4.906667pt;}
.ws8f{word-spacing:5.440000pt;}
.ws7e{word-spacing:5.493333pt;}
.wsa1{word-spacing:5.546667pt;}
.ws60{word-spacing:24.021333pt;}
.ws5e{word-spacing:34.688000pt;}
.ws5f{word-spacing:45.696000pt;}
.ws5b{word-spacing:85.760000pt;}
.wsd0{word-spacing:86.698667pt;}
.wsb0{word-spacing:98.773333pt;}
.wsab{word-spacing:137.728000pt;}
.wsac{word-spacing:169.898667pt;}
.ws2d{word-spacing:174.833683pt;}
.wsc1{word-spacing:180.801809pt;}
.ws5d{word-spacing:230.314667pt;}
.wsae{word-spacing:250.282667pt;}
.wsaf{word-spacing:276.309333pt;}
.wsad{word-spacing:292.949333pt;}
.wsce{word-spacing:503.808000pt;}
.wscf{word-spacing:510.848000pt;}
.wsaa{word-spacing:513.749333pt;}
.wsa9{word-spacing:523.178667pt;}
.wsa8{word-spacing:525.568000pt;}
.wsa6{word-spacing:527.914667pt;}
.wsa5{word-spacing:544.554667pt;}
.wsa7{word-spacing:639.317333pt;}
.wsd4{word-spacing:751.274667pt;}
.wsd1{word-spacing:765.440000pt;}
.wsd3{word-spacing:830.634667pt;}
.wsba{word-spacing:1216.679823pt;}
.wsb9{word-spacing:1259.117929pt;}
.ws61{word-spacing:1460.778667pt;}
._d{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._65{margin-left:-2182.393534pt;}
._68{margin-left:-907.843012pt;}
._f{margin-left:-516.103315pt;}
._64{margin-left:-12.506667pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.123787pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.080000pt;}
._5{width:0.938667pt;}
._6{width:2.560000pt;}
._9{width:3.520000pt;}
._7{width:5.013333pt;}
._c{width:5.920000pt;}
._8{width:6.826667pt;}
._a{width:8.320000pt;}
._b{width:9.706667pt;}
._32{width:34.688000pt;}
._21{width:35.930667pt;}
._19{width:37.125333pt;}
._12{width:40.149333pt;}
._47{width:41.605333pt;}
._1e{width:45.354667pt;}
._31{width:48.981333pt;}
._2a{width:50.565333pt;}
._35{width:56.405333pt;}
._1d{width:59.648000pt;}
._20{width:61.610667pt;}
._18{width:62.805333pt;}
._4c{width:64.426667pt;}
._29{width:65.408000pt;}
._2d{width:66.389333pt;}
._50{width:70.357333pt;}
._39{width:71.509333pt;}
._4a{width:76.245333pt;}
._1c{width:80.170667pt;}
._5f{width:81.408000pt;}
._4b{width:85.529547pt;}
._4e{width:86.570667pt;}
._38{width:92.032000pt;}
._17{width:94.085333pt;}
._13{width:95.232000pt;}
._49{width:97.390880pt;}
._5e{width:98.773333pt;}
._53{width:108.245333pt;}
._60{width:109.440000pt;}
._63{width:123.434667pt;}
._5d{width:134.741333pt;}
._16{width:136.448000pt;}
._61{width:140.074667pt;}
._3c{width:156.970667pt;}
._41{width:161.515787pt;}
._62{width:166.101333pt;}
._5b{width:202.666667pt;}
._1b{width:210.944000pt;}
._67{width:215.408405pt;}
._15{width:226.346667pt;}
._37{width:227.541333pt;}
._e{width:234.868550pt;}
._25{width:237.013333pt;}
._30{width:247.110880pt;}
._6c{width:253.140736pt;}
._40{width:256.235787pt;}
._73{width:260.736000pt;}
._66{width:265.249975pt;}
._72{width:272.597333pt;}
._5a{width:291.797333pt;}
._5c{width:346.282667pt;}
._70{width:354.133333pt;}
._3e{width:355.200000pt;}
._42{width:369.985120pt;}
._34{width:371.797333pt;}
._24{width:372.992000pt;}
._55{width:384.512000pt;}
._52{width:398.762667pt;}
._2e{width:403.754667pt;}
._4f{width:408.817547pt;}
._76{width:413.781333pt;}
._45{width:422.150400pt;}
._43{width:425.130667pt;}
._69{width:426.291787pt;}
._6e{width:445.653333pt;}
._3d{width:461.291787pt;}
._36{width:463.018667pt;}
._2b{width:471.296000pt;}
._27{width:478.464000pt;}
._33{width:480.384000pt;}
._1a{width:490.809120pt;}
._14{width:506.211787pt;}
._54{width:515.200000pt;}
._57{width:516.096000pt;}
._77{width:522.581333pt;}
._28{width:524.885333pt;}
._4d{width:529.450667pt;}
._26{width:531.840000pt;}
._59{width:537.386667pt;}
._56{width:539.221333pt;}
._3f{width:555.434667pt;}
._58{width:563.413333pt;}
._2c{width:587.562667pt;}
._6a{width:592.469333pt;}
._48{width:599.509333pt;}
._44{width:606.421333pt;}
._1f{width:621.530667pt;}
._23{width:623.104000pt;}
._74{width:625.621333pt;}
._22{width:629.296000pt;}
._3a{width:636.809120pt;}
._6d{width:722.483787pt;}
._11{width:749.738667pt;}
._71{width:754.773333pt;}
._46{width:761.728000pt;}
._51{width:799.573333pt;}
._2f{width:810.240000pt;}
._3b{width:823.381333pt;}
._75{width:830.102453pt;}
._6b{width:873.383989pt;}
._6f{width:894.634667pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fse{font-size:44.055467pt;}
.fsa{font-size:44.668800pt;}
.fs10{font-size:50.446933pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs11{font-size:60.415467pt;}
.fs1{font-size:69.333333pt;}
.fsd{font-size:70.436267pt;}
.fsf{font-size:82.666667pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y2ce{bottom:58.462533pt;}
.y2cc{bottom:71.345333pt;}
.yb7{bottom:73.714533pt;}
.y166{bottom:73.903467pt;}
.y1b9{bottom:74.071600pt;}
.y163{bottom:74.355067pt;}
.yda{bottom:74.462533pt;}
.y62{bottom:74.464533pt;}
.y1b5{bottom:74.475867pt;}
.y128{bottom:74.480800pt;}
.y15f{bottom:74.588533pt;}
.y1a9{bottom:74.595867pt;}
.y8e{bottom:74.597867pt;}
.y16c{bottom:74.669733pt;}
.yf2{bottom:74.729200pt;}
.y1de{bottom:74.838000pt;}
.y1da{bottom:74.942933pt;}
.y19c{bottom:75.021600pt;}
.y21c{bottom:75.614667pt;}
.y28b{bottom:79.345333pt;}
.y2a{bottom:80.263333pt;}
.y247{bottom:83.256000pt;}
.y1d7{bottom:83.574267pt;}
.y1ca{bottom:84.156933pt;}
.y2cb{bottom:84.678667pt;}
.yb6{bottom:87.709200pt;}
.y165{bottom:87.898133pt;}
.y1b8{bottom:88.066267pt;}
.y162{bottom:88.349733pt;}
.y1dd{bottom:88.832667pt;}
.y1d9{bottom:88.937600pt;}
.y19b{bottom:89.021600pt;}
.yd9{bottom:90.462533pt;}
.y61{bottom:90.464533pt;}
.y1b4{bottom:90.475867pt;}
.y15e{bottom:90.588533pt;}
.y1a8{bottom:90.595867pt;}
.y8d{bottom:90.597867pt;}
.yf1{bottom:90.729200pt;}
.y28a{bottom:92.678667pt;}
.y29{bottom:93.593333pt;}
.y126{bottom:96.369067pt;}
.y246{bottom:97.922667pt;}
.y2ca{bottom:98.012000pt;}
.y1d6{bottom:98.016933pt;}
.y1c9{bottom:100.871600pt;}
.y1b7{bottom:102.060933pt;}
.y161{bottom:102.344400pt;}
.y1dc{bottom:102.827333pt;}
.y19a{bottom:103.016267pt;}
.y289{bottom:106.012000pt;}
.yd8{bottom:106.462533pt;}
.y60{bottom:106.464533pt;}
.y1b3{bottom:106.475867pt;}
.y20e{bottom:106.502759pt;}
.y15d{bottom:106.588533pt;}
.y1a7{bottom:106.595867pt;}
.y8c{bottom:106.597867pt;}
.yf0{bottom:106.729200pt;}
.y28{bottom:106.920800pt;}
.y2c9{bottom:111.345333pt;}
.y125{bottom:111.569067pt;}
.y1d5{bottom:112.459600pt;}
.y245{bottom:112.589333pt;}
.y1b6{bottom:116.055600pt;}
.y160{bottom:116.339067pt;}
.y1c8{bottom:117.586267pt;}
.y20d{bottom:118.584800pt;}
.y288{bottom:119.345333pt;}
.y91{bottom:121.138157pt;}
.yd7{bottom:122.462533pt;}
.y5f{bottom:122.464533pt;}
.y1b2{bottom:122.475867pt;}
.y15c{bottom:122.588533pt;}
.y1a6{bottom:122.595867pt;}
.y8b{bottom:122.597867pt;}
.yef{bottom:122.729200pt;}
.y1e1{bottom:123.008000pt;}
.y2c8{bottom:124.678667pt;}
.y124{bottom:126.769067pt;}
.y1d4{bottom:126.902267pt;}
.y244{bottom:127.256000pt;}
.y287{bottom:132.678667pt;}
.y205{bottom:133.957067pt;}
.y1c7{bottom:134.300933pt;}
.y207{bottom:134.821468pt;}
.y2c7{bottom:138.012000pt;}
.y24d{bottom:138.102533pt;}
.yd6{bottom:138.462533pt;}
.y5e{bottom:138.464533pt;}
.y1b1{bottom:138.475867pt;}
.y15b{bottom:138.588533pt;}
.y1a5{bottom:138.595867pt;}
.y8a{bottom:138.597867pt;}
.yee{bottom:138.729200pt;}
.y1d3{bottom:141.344933pt;}
.y243{bottom:141.922667pt;}
.y123{bottom:141.969067pt;}
.y200{bottom:143.322933pt;}
.y286{bottom:146.012000pt;}
.y90{bottom:146.476533pt;}
.y206{bottom:148.005067pt;}
.y1c6{bottom:151.015600pt;}
.y2c6{bottom:151.345333pt;}
.yd5{bottom:154.462533pt;}
.y5d{bottom:154.464533pt;}
.y1b0{bottom:154.475867pt;}
.y15a{bottom:154.588533pt;}
.y1a4{bottom:154.595867pt;}
.y89{bottom:154.597867pt;}
.y1d2{bottom:155.787600pt;}
.y242{bottom:156.589333pt;}
.y122{bottom:157.169067pt;}
.y285{bottom:159.345333pt;}
.y93{bottom:161.663925pt;}
.y2c5{bottom:164.678667pt;}
.y1c5{bottom:167.730267pt;}
.y24c{bottom:170.102533pt;}
.y1d1{bottom:170.230267pt;}
.yed{bottom:170.369200pt;}
.yd4{bottom:170.462533pt;}
.y5c{bottom:170.464533pt;}
.y1af{bottom:170.475867pt;}
.y159{bottom:170.588533pt;}
.y1a3{bottom:170.595867pt;}
.y88{bottom:170.597867pt;}
.y241{bottom:171.032000pt;}
.y121{bottom:171.995733pt;}
.y284{bottom:172.678667pt;}
.y1ff{bottom:177.683600pt;}
.y208{bottom:177.684933pt;}
.y2c4{bottom:178.012000pt;}
.y203{bottom:180.848933pt;}
.y1c4{bottom:184.444933pt;}
.y240{bottom:185.474667pt;}
.y283{bottom:186.012000pt;}
.yd3{bottom:186.462533pt;}
.y5b{bottom:186.464533pt;}
.y1ae{bottom:186.475867pt;}
.y158{bottom:186.588533pt;}
.y1a2{bottom:186.595867pt;}
.y87{bottom:186.597867pt;}
.y120{bottom:186.822400pt;}
.y2c3{bottom:191.345333pt;}
.y27{bottom:194.315467pt;}
.y1d0{bottom:196.011600pt;}
.y282{bottom:199.345333pt;}
.y23f{bottom:199.917333pt;}
.y1c3{bottom:201.159600pt;}
.yd2{bottom:202.462533pt;}
.y5a{bottom:202.464533pt;}
.y1ad{bottom:202.475867pt;}
.y157{bottom:202.588533pt;}
.yec{bottom:202.595867pt;}
.y86{bottom:202.597867pt;}
.y2c2{bottom:204.678667pt;}
.y26{bottom:210.323733pt;}
.y11f{bottom:212.603733pt;}
.y281{bottom:212.678667pt;}
.y23e{bottom:214.360000pt;}
.y20a{bottom:217.382188pt;}
.y1c2{bottom:217.874267pt;}
.y2c1{bottom:218.012000pt;}
.yd1{bottom:218.462533pt;}
.y59{bottom:218.464533pt;}
.y1ac{bottom:218.475867pt;}
.yeb{bottom:218.595867pt;}
.y85{bottom:218.597867pt;}
.y156{bottom:218.609200pt;}
.y202{bottom:220.547388pt;}
.y204{bottom:221.210933pt;}
.y1cf{bottom:224.803733pt;}
.y280{bottom:226.012000pt;}
.y11e{bottom:227.803733pt;}
.y23d{bottom:228.802667pt;}
.y209{bottom:230.576800pt;}
.y2c0{bottom:231.345333pt;}
.y201{bottom:233.742000pt;}
.y24b{bottom:234.102533pt;}
.yd0{bottom:234.462533pt;}
.y58{bottom:234.464533pt;}
.y1c1{bottom:234.588933pt;}
.yea{bottom:234.595867pt;}
.y84{bottom:234.597867pt;}
.y155{bottom:234.609200pt;}
.y25{bottom:234.630400pt;}
.y27f{bottom:239.345333pt;}
.y1ce{bottom:242.137067pt;}
.y23c{bottom:242.722667pt;}
.y11d{bottom:243.047867pt;}
.y2bf{bottom:244.678667pt;}
.y1ab{bottom:250.115867pt;}
.ycf{bottom:250.462533pt;}
.y57{bottom:250.464533pt;}
.ye9{bottom:250.595867pt;}
.y83{bottom:250.597867pt;}
.y154{bottom:250.609200pt;}
.y24{bottom:250.630400pt;}
.y1c0{bottom:251.303600pt;}
.y27e{bottom:252.678667pt;}
.y23b{bottom:257.688000pt;}
.y2be{bottom:258.012000pt;}
.y11c{bottom:258.247867pt;}
.y1cd{bottom:259.470400pt;}
.y94{bottom:265.909737pt;}
.y27d{bottom:266.012000pt;}
.y224{bottom:266.462533pt;}
.y56{bottom:266.464533pt;}
.ye8{bottom:266.595867pt;}
.y82{bottom:266.597867pt;}
.y153{bottom:266.609200pt;}
.y23{bottom:266.630400pt;}
.y2bd{bottom:271.345333pt;}
.y23a{bottom:271.608000pt;}
.y11b{bottom:273.447867pt;}
.y1cc{bottom:276.803733pt;}
.y27c{bottom:279.345333pt;}
.y1bf{bottom:280.263600pt;}
.yce{bottom:282.102533pt;}
.y223{bottom:282.462533pt;}
.y55{bottom:282.464533pt;}
.ye7{bottom:282.595867pt;}
.y81{bottom:282.597867pt;}
.y152{bottom:282.609200pt;}
.y22{bottom:282.630400pt;}
.y2bc{bottom:284.678667pt;}
.y239{bottom:286.573333pt;}
.y11a{bottom:288.647867pt;}
.y27b{bottom:292.678667pt;}
.y92{bottom:293.191207pt;}
.y1cb{bottom:294.137067pt;}
.y9c{bottom:294.191333pt;}
.y2bb{bottom:298.012000pt;}
.y222{bottom:298.462533pt;}
.y54{bottom:298.464533pt;}
.ye6{bottom:298.595867pt;}
.y80{bottom:298.597867pt;}
.y21{bottom:298.630400pt;}
.y238{bottom:301.016000pt;}
.y119{bottom:303.847867pt;}
.y27a{bottom:306.012000pt;}
.y95{bottom:309.506486pt;}
.y2ba{bottom:311.345333pt;}
.y1be{bottom:311.470400pt;}
.ycd{bottom:313.982533pt;}
.y151{bottom:314.249200pt;}
.y221{bottom:314.462533pt;}
.y53{bottom:314.464533pt;}
.ye5{bottom:314.595867pt;}
.y7f{bottom:314.597867pt;}
.y20{bottom:314.630400pt;}
.y237{bottom:315.458667pt;}
.y1fe{bottom:317.830667pt;}
.y118{bottom:319.047867pt;}
.y279{bottom:319.345333pt;}
.y210{bottom:321.356249pt;}
.y2b9{bottom:324.678667pt;}
.y1bd{bottom:328.803733pt;}
.y236{bottom:329.904933pt;}
.y220{bottom:330.462533pt;}
.y52{bottom:330.464533pt;}
.ye4{bottom:330.595867pt;}
.y7e{bottom:330.597867pt;}
.y1f{bottom:330.630400pt;}
.y278{bottom:332.678667pt;}
.y1fc{bottom:333.460933pt;}
.y117{bottom:334.247867pt;}
.y2b8{bottom:338.012000pt;}
.y235{bottom:344.358133pt;}
.y277{bottom:346.012000pt;}
.y1bc{bottom:346.137067pt;}
.y21f{bottom:346.462533pt;}
.y51{bottom:346.464533pt;}
.y150{bottom:346.475867pt;}
.ye3{bottom:346.595867pt;}
.y7d{bottom:346.597867pt;}
.y1e{bottom:346.630400pt;}
.y99{bottom:347.206953pt;}
.y1fd{bottom:349.026667pt;}
.y116{bottom:349.447867pt;}
.y2b7{bottom:351.345333pt;}
.y234{bottom:358.800800pt;}
.y276{bottom:359.345333pt;}
.ycc{bottom:362.462533pt;}
.y50{bottom:362.464533pt;}
.y14f{bottom:362.475867pt;}
.ye2{bottom:362.595867pt;}
.y7c{bottom:362.597867pt;}
.y1d{bottom:362.630400pt;}
.y1bb{bottom:363.470400pt;}
.y115{bottom:364.647867pt;}
.y2b6{bottom:364.678667pt;}
.y275{bottom:372.678667pt;}
.y233{bottom:373.243467pt;}
.y2b5{bottom:378.012000pt;}
.ycb{bottom:378.462533pt;}
.y4f{bottom:378.464533pt;}
.y14e{bottom:378.475867pt;}
.ye1{bottom:378.595867pt;}
.y7b{bottom:378.597867pt;}
.y1c{bottom:378.630400pt;}
.y114{bottom:379.847867pt;}
.y1df{bottom:385.430933pt;}
.y274{bottom:386.012000pt;}
.y2b4{bottom:391.345333pt;}
.yca{bottom:394.462533pt;}
.y4e{bottom:394.464533pt;}
.y14d{bottom:394.475867pt;}
.ye0{bottom:394.595867pt;}
.y7a{bottom:394.597867pt;}
.y1b{bottom:394.630400pt;}
.y113{bottom:395.047867pt;}
.y232{bottom:399.024800pt;}
.y273{bottom:399.345333pt;}
.y2b3{bottom:404.678667pt;}
.y1ba{bottom:404.934533pt;}
.y24a{bottom:410.102533pt;}
.y112{bottom:410.247867pt;}
.yc9{bottom:410.462533pt;}
.y4d{bottom:410.464533pt;}
.y14c{bottom:410.475867pt;}
.ydf{bottom:410.595867pt;}
.y79{bottom:410.597867pt;}
.y194{bottom:410.609200pt;}
.y1a{bottom:410.630400pt;}
.y272{bottom:412.678667pt;}
.y96{bottom:414.087314pt;}
.y2b2{bottom:418.012000pt;}
.y20b{bottom:420.714800pt;}
.y111{bottom:425.447867pt;}
.y271{bottom:426.012000pt;}
.yc8{bottom:426.462533pt;}
.y4c{bottom:426.464533pt;}
.y14b{bottom:426.475867pt;}
.yde{bottom:426.595867pt;}
.y78{bottom:426.597867pt;}
.y193{bottom:426.609200pt;}
.y19{bottom:426.630400pt;}
.y231{bottom:427.822533pt;}
.y2b1{bottom:431.345333pt;}
.y196{bottom:435.802133pt;}
.y211{bottom:439.086779pt;}
.y270{bottom:439.345333pt;}
.y97{bottom:440.564745pt;}
.y110{bottom:440.647867pt;}
.yc7{bottom:442.462533pt;}
.y4b{bottom:442.464533pt;}
.y14a{bottom:442.475867pt;}
.ydd{bottom:442.595867pt;}
.y77{bottom:442.597867pt;}
.y192{bottom:442.609200pt;}
.y18{bottom:442.630400pt;}
.y2b0{bottom:444.678667pt;}
.y1e0{bottom:447.821467pt;}
.y195{bottom:449.796800pt;}
.y199{bottom:452.239467pt;}
.y26f{bottom:452.678667pt;}
.y19f{bottom:455.250933pt;}
.y10f{bottom:455.847867pt;}
.y2af{bottom:458.012000pt;}
.yc6{bottom:458.462533pt;}
.y4a{bottom:458.464533pt;}
.y149{bottom:458.475867pt;}
.ydc{bottom:458.595867pt;}
.y76{bottom:458.597867pt;}
.y191{bottom:458.609200pt;}
.y17{bottom:458.630400pt;}
.y26e{bottom:466.012000pt;}
.y198{bottom:466.234133pt;}
.y19e{bottom:469.245600pt;}
.y20f{bottom:469.897244pt;}
.y10e{bottom:471.047867pt;}
.y2ae{bottom:471.345333pt;}
.y230{bottom:474.342533pt;}
.yc5{bottom:474.462533pt;}
.y49{bottom:474.464533pt;}
.y148{bottom:474.475867pt;}
.y17c{bottom:474.595867pt;}
.y75{bottom:474.597867pt;}
.y190{bottom:474.609200pt;}
.y16{bottom:474.630400pt;}
.y26d{bottom:479.345333pt;}
.y19d{bottom:483.240267pt;}
.y2ad{bottom:484.678667pt;}
.y1e9{bottom:485.408854pt;}
.y10d{bottom:486.247867pt;}
.y212{bottom:488.322986pt;}
.ydb{bottom:490.235867pt;}
.y22f{bottom:490.342533pt;}
.yc4{bottom:490.462533pt;}
.y48{bottom:490.464533pt;}
.y147{bottom:490.475867pt;}
.y17b{bottom:490.595867pt;}
.y74{bottom:490.597867pt;}
.y18f{bottom:490.609200pt;}
.y15{bottom:490.630400pt;}
.y26c{bottom:492.678667pt;}
.y2ac{bottom:498.012000pt;}
.y1e8{bottom:498.603467pt;}
.y10c{bottom:501.447867pt;}
.y1eb{bottom:504.139254pt;}
.y26b{bottom:506.012000pt;}
.y22e{bottom:506.342533pt;}
.yc3{bottom:506.462533pt;}
.y47{bottom:506.464533pt;}
.y146{bottom:506.475867pt;}
.y17a{bottom:506.595867pt;}
.y73{bottom:506.597867pt;}
.y18e{bottom:506.609200pt;}
.y14{bottom:506.630400pt;}
.y1f9{bottom:507.968533pt;}
.y98{bottom:510.638925pt;}
.y2ab{bottom:511.345333pt;}
.y10b{bottom:516.647867pt;}
.y1ea{bottom:517.333867pt;}
.y26a{bottom:519.345333pt;}
.y22d{bottom:522.342533pt;}
.yc2{bottom:522.462533pt;}
.y46{bottom:522.464533pt;}
.y145{bottom:522.475867pt;}
.y179{bottom:522.595867pt;}
.y72{bottom:522.597867pt;}
.y18d{bottom:522.609200pt;}
.y13{bottom:522.630400pt;}
.y2aa{bottom:524.678667pt;}
.y1f4{bottom:525.969388pt;}
.y216{bottom:530.912810pt;}
.y1e2{bottom:531.438400pt;}
.y10a{bottom:531.847867pt;}
.y269{bottom:532.678667pt;}
.y2a9{bottom:538.012000pt;}
.y22c{bottom:538.342533pt;}
.yc1{bottom:538.462533pt;}
.y45{bottom:538.464533pt;}
.y144{bottom:538.475867pt;}
.y9a{bottom:538.523424pt;}
.y178{bottom:538.595867pt;}
.y71{bottom:538.597867pt;}
.y18c{bottom:538.609200pt;}
.y12{bottom:538.630400pt;}
.y1f3{bottom:539.164000pt;}
.y268{bottom:546.012000pt;}
.y109{bottom:547.047867pt;}
.y1e7{bottom:547.667388pt;}
.y2a8{bottom:551.345333pt;}
.y1f8{bottom:551.562933pt;}
.y22b{bottom:554.342533pt;}
.yc0{bottom:554.462533pt;}
.y44{bottom:554.464533pt;}
.y143{bottom:554.475867pt;}
.y177{bottom:554.595867pt;}
.y70{bottom:554.597867pt;}
.y18b{bottom:554.609200pt;}
.y11{bottom:554.630400pt;}
.y1e5{bottom:554.662133pt;}
.y267{bottom:559.345333pt;}
.y1e6{bottom:560.862000pt;}
.y108{bottom:562.289067pt;}
.y2a7{bottom:564.678667pt;}
.y22a{bottom:570.342533pt;}
.ybf{bottom:570.462533pt;}
.y43{bottom:570.464533pt;}
.y142{bottom:570.475867pt;}
.y176{bottom:570.595867pt;}
.y6f{bottom:570.597867pt;}
.y18a{bottom:570.609200pt;}
.y266{bottom:572.678667pt;}
.y1ef{bottom:575.828054pt;}
.y1e4{bottom:575.828854pt;}
.y107{bottom:577.489067pt;}
.y2a6{bottom:578.012000pt;}
.y1f7{bottom:578.862454pt;}
.y265{bottom:586.012000pt;}
.y229{bottom:586.342533pt;}
.ybe{bottom:586.462533pt;}
.y42{bottom:586.464533pt;}
.y141{bottom:586.475867pt;}
.y175{bottom:586.595867pt;}
.y6e{bottom:586.597867pt;}
.y189{bottom:586.609200pt;}
.y219{bottom:586.878400pt;}
.yb8{bottom:588.300800pt;}
.y1ee{bottom:589.022667pt;}
.y1e3{bottom:589.023467pt;}
.y2a5{bottom:591.345333pt;}
.y1f6{bottom:591.393254pt;}
.y106{bottom:592.689067pt;}
.y10{bottom:594.770933pt;}
.y264{bottom:599.345333pt;}
.y228{bottom:602.342533pt;}
.ybd{bottom:602.462533pt;}
.y41{bottom:602.464533pt;}
.y140{bottom:602.475867pt;}
.y174{bottom:602.595867pt;}
.y6d{bottom:602.597867pt;}
.y188{bottom:602.609200pt;}
.y1f5{bottom:604.587867pt;}
.y2a4{bottom:604.678667pt;}
.yf{bottom:605.838267pt;}
.y213{bottom:606.431869pt;}
.y105{bottom:607.889067pt;}
.y263{bottom:612.678667pt;}
.y9b{bottom:615.286757pt;}
.y2a3{bottom:618.012000pt;}
.y249{bottom:618.102533pt;}
.y227{bottom:618.342533pt;}
.ybc{bottom:618.462533pt;}
.y40{bottom:618.464533pt;}
.y13f{bottom:618.475867pt;}
.y173{bottom:618.595867pt;}
.y6c{bottom:618.597867pt;}
.y187{bottom:618.609200pt;}
.y104{bottom:623.089067pt;}
.y1f1{bottom:625.555254pt;}
.y262{bottom:626.012000pt;}
.y1ed{bottom:628.721921pt;}
.y2a2{bottom:631.345333pt;}
.ye{bottom:634.029867pt;}
.y1aa{bottom:634.235867pt;}
.y226{bottom:634.342533pt;}
.ybb{bottom:634.462533pt;}
.y3f{bottom:634.464533pt;}
.y13e{bottom:634.475867pt;}
.y172{bottom:634.595867pt;}
.y6b{bottom:634.597867pt;}
.y186{bottom:634.609200pt;}
.y1fb{bottom:634.921254pt;}
.y214{bottom:636.334289pt;}
.y103{bottom:638.289067pt;}
.y1f0{bottom:638.749867pt;}
.y261{bottom:639.345333pt;}
.y1ec{bottom:641.916533pt;}
.y2a1{bottom:644.678667pt;}
.y1fa{bottom:648.115867pt;}
.yba{bottom:650.462533pt;}
.y3e{bottom:650.464533pt;}
.y13d{bottom:650.475867pt;}
.y12b{bottom:650.595867pt;}
.y6a{bottom:650.597867pt;}
.y185{bottom:650.609200pt;}
.yd{bottom:650.852400pt;}
.y1f2{bottom:652.534933pt;}
.y260{bottom:652.678667pt;}
.y102{bottom:653.489067pt;}
.y2a0{bottom:658.012000pt;}
.yc{bottom:658.029867pt;}
.y20c{bottom:664.469467pt;}
.y225{bottom:665.982533pt;}
.y25f{bottom:666.012000pt;}
.yad{bottom:666.462533pt;}
.y3d{bottom:666.464533pt;}
.y13c{bottom:666.475867pt;}
.yb5{bottom:666.595867pt;}
.y69{bottom:666.597867pt;}
.y184{bottom:666.609200pt;}
.y101{bottom:668.689067pt;}
.y29f{bottom:671.345333pt;}
.yb{bottom:674.852400pt;}
.y25e{bottom:679.345333pt;}
.ya{bottom:682.029867pt;}
.yac{bottom:682.462533pt;}
.y3c{bottom:682.464533pt;}
.y13b{bottom:682.475867pt;}
.y215{bottom:682.480621pt;}
.yb4{bottom:682.595867pt;}
.y68{bottom:682.597867pt;}
.y183{bottom:682.609200pt;}
.y100{bottom:683.889067pt;}
.y29e{bottom:684.678667pt;}
.y25d{bottom:692.678667pt;}
.y29d{bottom:698.012000pt;}
.yab{bottom:698.462533pt;}
.y3b{bottom:698.464533pt;}
.y13a{bottom:698.475867pt;}
.yb3{bottom:698.595867pt;}
.y67{bottom:698.597867pt;}
.y182{bottom:698.609200pt;}
.y9{bottom:698.852400pt;}
.yff{bottom:699.089067pt;}
.y25c{bottom:706.012000pt;}
.y29c{bottom:711.345333pt;}
.y12a{bottom:714.235867pt;}
.yfe{bottom:714.289067pt;}
.yaa{bottom:714.462533pt;}
.y3a{bottom:714.464533pt;}
.y139{bottom:714.475867pt;}
.yb2{bottom:714.595867pt;}
.y66{bottom:714.597867pt;}
.y181{bottom:714.609200pt;}
.y25b{bottom:719.345333pt;}
.y8{bottom:724.382933pt;}
.y29b{bottom:724.678667pt;}
.yfd{bottom:729.489067pt;}
.ya9{bottom:730.462533pt;}
.y39{bottom:730.464533pt;}
.y138{bottom:730.475867pt;}
.yb1{bottom:730.595867pt;}
.y180{bottom:730.609200pt;}
.y21a{bottom:731.951039pt;}
.y25a{bottom:732.678667pt;}
.y29a{bottom:738.012000pt;}
.yfc{bottom:744.689067pt;}
.y259{bottom:746.012000pt;}
.y65{bottom:746.237867pt;}
.ya8{bottom:746.462533pt;}
.y38{bottom:746.464533pt;}
.y137{bottom:746.475867pt;}
.yb0{bottom:746.595867pt;}
.y17f{bottom:746.609200pt;}
.y217{bottom:746.977025pt;}
.y299{bottom:751.345333pt;}
.y258{bottom:759.345333pt;}
.yfb{bottom:759.889067pt;}
.ya7{bottom:762.462533pt;}
.y37{bottom:762.464533pt;}
.y136{bottom:762.475867pt;}
.yaf{bottom:762.595867pt;}
.y17e{bottom:762.609200pt;}
.y298{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.y257{bottom:772.678667pt;}
.yfa{bottom:775.089067pt;}
.y297{bottom:778.012000pt;}
.ya6{bottom:778.462533pt;}
.y36{bottom:778.464533pt;}
.y135{bottom:778.475867pt;}
.y171{bottom:778.595867pt;}
.y256{bottom:786.012000pt;}
.yf9{bottom:790.289067pt;}
.y296{bottom:791.345333pt;}
.yae{bottom:794.235867pt;}
.y17d{bottom:794.249200pt;}
.ya5{bottom:794.462533pt;}
.y35{bottom:794.464533pt;}
.y134{bottom:794.475867pt;}
.y170{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y255{bottom:799.345333pt;}
.y295{bottom:804.678667pt;}
.yf8{bottom:805.489067pt;}
.y21b{bottom:809.358356pt;}
.ya4{bottom:810.462533pt;}
.y34{bottom:810.464533pt;}
.y133{bottom:810.475867pt;}
.y16f{bottom:810.595867pt;}
.y254{bottom:812.678667pt;}
.y294{bottom:818.012000pt;}
.yf7{bottom:820.689067pt;}
.y253{bottom:826.012000pt;}
.ya3{bottom:826.462533pt;}
.y33{bottom:826.464533pt;}
.y132{bottom:826.475867pt;}
.y16b{bottom:826.584533pt;}
.y1a1{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y293{bottom:831.345333pt;}
.yf6{bottom:835.889067pt;}
.y252{bottom:839.345333pt;}
.y16e{bottom:842.235867pt;}
.ya2{bottom:842.462533pt;}
.y32{bottom:842.464533pt;}
.y131{bottom:842.475867pt;}
.y16a{bottom:842.584533pt;}
.y292{bottom:844.678667pt;}
.y251{bottom:852.678667pt;}
.y291{bottom:858.012000pt;}
.y1a0{bottom:858.235867pt;}
.ya1{bottom:858.462533pt;}
.y31{bottom:858.464533pt;}
.y130{bottom:858.475867pt;}
.y169{bottom:858.584533pt;}
.y218{bottom:858.969217pt;}
.yf5{bottom:861.670400pt;}
.y4{bottom:862.635733pt;}
.y250{bottom:866.012000pt;}
.y290{bottom:871.345333pt;}
.ya0{bottom:874.462533pt;}
.y30{bottom:874.464533pt;}
.y12f{bottom:874.475867pt;}
.yf4{bottom:876.337067pt;}
.y24f{bottom:879.345333pt;}
.y28f{bottom:884.678667pt;}
.y168{bottom:890.224533pt;}
.y9f{bottom:890.462533pt;}
.y2f{bottom:890.464533pt;}
.y12e{bottom:890.475867pt;}
.y21d{bottom:890.663067pt;}
.y24e{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y28e{bottom:898.012000pt;}
.yf3{bottom:905.129200pt;}
.y21e{bottom:905.225467pt;}
.y9e{bottom:906.462533pt;}
.y64{bottom:906.464533pt;}
.y12d{bottom:906.475867pt;}
.y28d{bottom:911.345333pt;}
.y2e{bottom:922.104533pt;}
.y9d{bottom:922.462533pt;}
.y63{bottom:922.464533pt;}
.y12c{bottom:922.475867pt;}
.y28c{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.yb9{bottom:1006.594133pt;}
.y8f{bottom:1006.594400pt;}
.y16d{bottom:1006.595067pt;}
.y167{bottom:1006.596800pt;}
.y197{bottom:1006.597067pt;}
.y129{bottom:1006.598133pt;}
.y2cd{bottom:1006.598667pt;}
.y1db{bottom:1006.601600pt;}
.y127{bottom:1006.609067pt;}
.y164{bottom:1006.611067pt;}
.y1d8{bottom:1006.614267pt;}
.y248{bottom:1006.637333pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.hc{height:29.170290pt;}
.h15{height:29.625000pt;}
.h14{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h27{height:31.360000pt;}
.h1e{height:32.073584pt;}
.h13{height:32.520108pt;}
.h12{height:32.541919pt;}
.h28{height:33.450667pt;}
.h1f{height:34.728833pt;}
.h23{height:36.751379pt;}
.h10{height:37.031250pt;}
.h29{height:37.049292pt;}
.h11{height:37.057292pt;}
.h1a{height:37.325121pt;}
.h25{height:37.339521pt;}
.h19{height:37.360321pt;}
.h26{height:37.367254pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h24{height:43.984112pt;}
.h20{height:44.734384pt;}
.h17{height:46.629219pt;}
.h1b{height:46.673734pt;}
.h18{height:46.711885pt;}
.h16{height:46.727068pt;}
.h21{height:47.393367pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h1c{height:51.279528pt;}
.h22{height:60.223958pt;}
.h4{height:81.927344pt;}
.h1d{height:542.189333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:62.740133pt;}
.x8{left:68.031467pt;}
.x2e{left:69.921200pt;}
.x39{left:84.320824pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:88.818933pt;}
.x38{left:90.651200pt;}
.x35{left:91.905067pt;}
.x34{left:92.894667pt;}
.x4{left:94.488267pt;}
.x57{left:97.133867pt;}
.x9{left:98.274267pt;}
.x19{left:102.303467pt;}
.x5c{left:109.606533pt;}
.x3{left:111.499733pt;}
.x31{left:115.281333pt;}
.x28{left:117.169200pt;}
.x1e{left:128.671467pt;}
.x47{left:136.489733pt;}
.x48{left:139.397394pt;}
.x27{left:145.490933pt;}
.x17{left:149.910894pt;}
.x53{left:159.138866pt;}
.x37{left:160.161645pt;}
.x36{left:167.485867pt;}
.x5{left:170.078800pt;}
.x5a{left:172.704533pt;}
.x16{left:178.465424pt;}
.x52{left:191.462739pt;}
.x18{left:195.450735pt;}
.x54{left:202.409723pt;}
.x29{left:206.546933pt;}
.x33{left:233.173333pt;}
.x4a{left:236.205867pt;}
.x58{left:240.001067pt;}
.x49{left:255.003467pt;}
.x32{left:304.730667pt;}
.x46{left:310.798400pt;}
.x13{left:344.231341pt;}
.x12{left:345.169386pt;}
.x43{left:357.491733pt;}
.x2f{left:362.570533pt;}
.x56{left:371.577477pt;}
.x20{left:376.082933pt;}
.x4f{left:378.671308pt;}
.x4e{left:379.730694pt;}
.x14{left:390.307208pt;}
.x41{left:393.897333pt;}
.x7{left:404.481333pt;}
.xa{left:406.300933pt;}
.x11{left:408.431574pt;}
.x45{left:413.085687pt;}
.x44{left:415.134267pt;}
.x1a{left:425.184133pt;}
.x5b{left:429.012800pt;}
.x50{left:430.707320pt;}
.xb{left:436.540933pt;}
.x4b{left:437.959067pt;}
.x5d{left:447.899867pt;}
.x4d{left:451.176163pt;}
.x1b{left:455.424133pt;}
.x21{left:467.773600pt;}
.x59{left:474.326400pt;}
.x22{left:475.474933pt;}
.x3c{left:504.234533pt;}
.x55{left:506.077409pt;}
.x3b{left:507.399867pt;}
.x10{left:508.467351pt;}
.x2d{left:515.062133pt;}
.x23{left:516.936267pt;}
.x15{left:519.031523pt;}
.xe{left:555.548267pt;}
.x24{left:563.272267pt;}
.x3a{left:582.122533pt;}
.x51{left:583.939880pt;}
.xd{left:589.770933pt;}
.x3e{left:594.653867pt;}
.x40{left:597.687600pt;}
.x42{left:607.053600pt;}
.x30{left:608.767067pt;}
.x2{left:616.324800pt;}
.xf{left:618.799287pt;}
.x25{left:629.437600pt;}
.x3f{left:632.047067pt;}
.x2a{left:641.524800pt;}
.xc{left:647.459200pt;}
.x3d{left:652.033830pt;}
.x1c{left:655.284533pt;}
.x2b{left:661.211867pt;}
.x1d{left:666.356533pt;}
.x26{left:672.872267pt;}
.x4c{left:688.150633pt;}
}




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