
    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_d66f8141fcb26765d02b9fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_3dc9e372cc7cac55e34c87bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_714d1e8a441061665cdd7db6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_5622e0c0ee7f7bd8917b962d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239000;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_dd9a5f95d242ba90c46ca7ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.146000;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_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_451689fb20709d235b9e01f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;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_69170763a71c7eef62e0ecd1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;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_591ff5630a86832be774b8d9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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_b0b94231e49bff16344ca53b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.677246;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_1ca39406f5dea145e7c357e9.woff2')format("woff");}.fff{font-family:fff;line-height:0.690000;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_6b8f6780c79a1d4b35d21e3f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls47{letter-spacing:-1.140000px;}
.ls45{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-1.020000px;}
.ls9{letter-spacing:-0.840000px;}
.ls48{letter-spacing:-0.660000px;}
.ls3b{letter-spacing:-0.561000px;}
.ls46{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.510000px;}
.ls44{letter-spacing:-0.480000px;}
.ls89{letter-spacing:-0.459000px;}
.ls33{letter-spacing:-0.420000px;}
.ls75{letter-spacing:-0.408000px;}
.lsa{letter-spacing:-0.360000px;}
.ls76{letter-spacing:-0.357000px;}
.ls74{letter-spacing:-0.306000px;}
.ls8{letter-spacing:-0.300000px;}
.ls88{letter-spacing:-0.255000px;}
.ls49{letter-spacing:-0.240000px;}
.ls77{letter-spacing:-0.204000px;}
.ls32{letter-spacing:-0.180000px;}
.ls73{letter-spacing:-0.153000px;}
.ls34{letter-spacing:-0.120000px;}
.ls72{letter-spacing:-0.102000px;}
.ls7{letter-spacing:-0.060000px;}
.ls51{letter-spacing:-0.051000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000037px;}
.ls1{letter-spacing:0.000085px;}
.ls6c{letter-spacing:0.025500px;}
.ls4a{letter-spacing:0.030000px;}
.ls5d{letter-spacing:0.051000px;}
.ls16{letter-spacing:0.060000px;}
.ls3d{letter-spacing:0.090000px;}
.ls60{letter-spacing:0.102000px;}
.lsd{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.150000px;}
.ls85{letter-spacing:0.153000px;}
.ls3{letter-spacing:0.178791px;}
.ls38{letter-spacing:0.180000px;}
.ls6b{letter-spacing:0.204000px;}
.ls54{letter-spacing:0.209290px;}
.ls59{letter-spacing:0.210000px;}
.ls86{letter-spacing:0.229500px;}
.ls2{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.255000px;}
.ls5f{letter-spacing:0.264000px;}
.ls8c{letter-spacing:0.280500px;}
.ls56{letter-spacing:0.287944px;}
.ls61{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.300000px;}
.ls79{letter-spacing:0.306000px;}
.ls42{letter-spacing:0.330000px;}
.ls5e{letter-spacing:0.357000px;}
.ls3f{letter-spacing:0.360000px;}
.ls3e{letter-spacing:0.407975px;}
.ls78{letter-spacing:0.408000px;}
.ls12{letter-spacing:0.420000px;}
.ls8a{letter-spacing:0.433500px;}
.ls5b{letter-spacing:0.459000px;}
.ls18{letter-spacing:0.480000px;}
.ls50{letter-spacing:0.510000px;}
.lse{letter-spacing:0.540000px;}
.ls6e{letter-spacing:0.561000px;}
.ls4b{letter-spacing:0.570000px;}
.ls17{letter-spacing:0.600000px;}
.ls7a{letter-spacing:0.612000px;}
.ls41{letter-spacing:0.630000px;}
.ls21{letter-spacing:0.660000px;}
.ls71{letter-spacing:0.663000px;}
.ls66{letter-spacing:0.683400px;}
.ls4d{letter-spacing:0.690000px;}
.ls7e{letter-spacing:0.714000px;}
.ls23{letter-spacing:0.720000px;}
.ls55{letter-spacing:0.727112px;}
.ls40{letter-spacing:0.750000px;}
.ls7c{letter-spacing:0.765000px;}
.ls11{letter-spacing:0.780000px;}
.ls52{letter-spacing:0.784794px;}
.ls43{letter-spacing:0.810000px;}
.ls5a{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.840000px;}
.ls69{letter-spacing:0.867000px;}
.ls39{letter-spacing:0.870000px;}
.ls10{letter-spacing:0.900000px;}
.ls7b{letter-spacing:0.918000px;}
.ls29{letter-spacing:0.930000px;}
.ls35{letter-spacing:0.953989px;}
.ls30{letter-spacing:0.960000px;}
.ls65{letter-spacing:0.969000px;}
.ls27{letter-spacing:0.990000px;}
.ls1f{letter-spacing:1.020000px;}
.ls87{letter-spacing:1.071000px;}
.lsf{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.110000px;}
.ls5c{letter-spacing:1.122000px;}
.ls31{letter-spacing:1.139988px;}
.ls1d{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.158000px;}
.ls57{letter-spacing:1.170000px;}
.ls6d{letter-spacing:1.173000px;}
.ls13{letter-spacing:1.200000px;}
.ls7d{letter-spacing:1.224000px;}
.ls24{letter-spacing:1.242000px;}
.ls14{letter-spacing:1.260000px;}
.ls6f{letter-spacing:1.275000px;}
.ls1b{letter-spacing:1.320000px;}
.ls8e{letter-spacing:1.326000px;}
.ls64{letter-spacing:1.377000px;}
.ls4e{letter-spacing:1.380000px;}
.ls82{letter-spacing:1.428000px;}
.ls2c{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.500000px;}
.ls37{letter-spacing:1.524000px;}
.ls58{letter-spacing:1.530000px;}
.ls36{letter-spacing:1.560000px;}
.ls8d{letter-spacing:1.581000px;}
.ls2a{letter-spacing:1.620000px;}
.ls70{letter-spacing:1.632000px;}
.ls1a{letter-spacing:1.680000px;}
.ls81{letter-spacing:1.683000px;}
.ls8b{letter-spacing:1.708500px;}
.ls20{letter-spacing:1.728000px;}
.ls83{letter-spacing:1.734000px;}
.ls28{letter-spacing:1.740000px;}
.ls4c{letter-spacing:1.770000px;}
.ls15{letter-spacing:1.800000px;}
.ls68{letter-spacing:1.836000px;}
.ls2e{letter-spacing:1.860000px;}
.ls67{letter-spacing:1.887000px;}
.ls7f{letter-spacing:1.938000px;}
.ls26{letter-spacing:1.980000px;}
.ls6a{letter-spacing:1.989000px;}
.ls2b{letter-spacing:2.004000px;}
.ls4f{letter-spacing:2.040000px;}
.ls2d{letter-spacing:2.100000px;}
.ls1c{letter-spacing:2.280000px;}
.ls63{letter-spacing:2.397000px;}
.ls53{letter-spacing:2.460000px;}
.ls2f{letter-spacing:2.519980px;}
.ls80{letter-spacing:2.677500px;}
.ls84{letter-spacing:2.805000px;}
.ls62{letter-spacing:2.958000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws1d{word-spacing:-17.100000px;}
.ws4b{word-spacing:-16.680000px;}
.ws1c{word-spacing:-16.620000px;}
.wsaa{word-spacing:-16.440000px;}
.ws18{word-spacing:-16.200000px;}
.ws98{word-spacing:-16.140000px;}
.ws1a{word-spacing:-16.080000px;}
.ws1b{word-spacing:-15.960000px;}
.ws19{word-spacing:-15.900000px;}
.ws7a{word-spacing:-15.840000px;}
.ws9a{word-spacing:-15.780000px;}
.wsab{word-spacing:-15.600000px;}
.ws4c{word-spacing:-15.300000px;}
.ws6b{word-spacing:-15.120000px;}
.ws68{word-spacing:-15.090000px;}
.ws17{word-spacing:-15.000000px;}
.ws99{word-spacing:-14.940000px;}
.ws7b{word-spacing:-14.880000px;}
.wsb7{word-spacing:-14.832000px;}
.ws97{word-spacing:-14.760000px;}
.wsa2{word-spacing:-14.700000px;}
.ws5{word-spacing:-14.640000px;}
.ws16{word-spacing:-14.544000px;}
.ws69{word-spacing:-14.520000px;}
.ws6a{word-spacing:-13.860000px;}
.wsdf{word-spacing:-13.005000px;}
.ws4d{word-spacing:-12.750000px;}
.ws85{word-spacing:-12.699000px;}
.ws84{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws4f{word-spacing:-12.240000px;}
.ws50{word-spacing:-12.189000px;}
.ws6{word-spacing:-11.520000px;}
.wsb6{word-spacing:-10.149000px;}
.ws1{word-spacing:-9.996000px;}
.wsb5{word-spacing:-9.741000px;}
.ws0{word-spacing:-9.408000px;}
.ws7{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws9f{word-spacing:-7.500000px;}
.ws96{word-spacing:-6.375000px;}
.wsc5{word-spacing:-2.244000px;}
.ws43{word-spacing:-2.100000px;}
.ws3c{word-spacing:-1.980000px;}
.ws8{word-spacing:-1.890000px;}
.ws8e{word-spacing:-1.860000px;}
.ws33{word-spacing:-1.680000px;}
.ws40{word-spacing:-1.620000px;}
.ws53{word-spacing:-1.560000px;}
.wsd{word-spacing:-1.500000px;}
.ws41{word-spacing:-1.440000px;}
.ws24{word-spacing:-1.380000px;}
.wsf1{word-spacing:-1.377000px;}
.wsd9{word-spacing:-1.326000px;}
.ws71{word-spacing:-1.320000px;}
.wsb8{word-spacing:-1.275000px;}
.ws44{word-spacing:-1.260000px;}
.ws113{word-spacing:-1.224000px;}
.ws83{word-spacing:-1.200000px;}
.wscd{word-spacing:-1.173000px;}
.ws37{word-spacing:-1.140000px;}
.ws118{word-spacing:-1.122000px;}
.ws2c{word-spacing:-1.080000px;}
.wsdc{word-spacing:-1.071000px;}
.ws59{word-spacing:-1.020000px;}
.wsda{word-spacing:-0.969000px;}
.ws10{word-spacing:-0.960000px;}
.ws27{word-spacing:-0.900000px;}
.ws5e{word-spacing:-0.840000px;}
.wsd7{word-spacing:-0.816000px;}
.ws21{word-spacing:-0.780000px;}
.wsdd{word-spacing:-0.765000px;}
.ws13{word-spacing:-0.720000px;}
.wsde{word-spacing:-0.714000px;}
.ws12{word-spacing:-0.660000px;}
.ws15{word-spacing:-0.612000px;}
.ws1f{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.ws22{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.480000px;}
.ws104{word-spacing:-0.459000px;}
.ws6c{word-spacing:-0.420000px;}
.ws56{word-spacing:-0.360000px;}
.ws25{word-spacing:-0.300000px;}
.wse7{word-spacing:-0.255000px;}
.ws11{word-spacing:-0.240000px;}
.wse{word-spacing:-0.180000px;}
.ws3e{word-spacing:-0.120000px;}
.ws106{word-spacing:-0.102000px;}
.ws1e{word-spacing:-0.060000px;}
.ws102{word-spacing:-0.051000px;}
.ws9{word-spacing:0.000000px;}
.ws10b{word-spacing:0.051000px;}
.wsc{word-spacing:0.060000px;}
.ws6f{word-spacing:0.120000px;}
.wsfa{word-spacing:0.153000px;}
.wsca{word-spacing:0.204000px;}
.ws74{word-spacing:0.240000px;}
.wsf{word-spacing:0.300000px;}
.ws114{word-spacing:0.306000px;}
.ws10e{word-spacing:0.357000px;}
.ws6d{word-spacing:0.360000px;}
.ws108{word-spacing:0.408000px;}
.ws20{word-spacing:0.420000px;}
.wsf9{word-spacing:0.459000px;}
.ws2f{word-spacing:0.480000px;}
.ws2e{word-spacing:0.540000px;}
.ws3d{word-spacing:0.600000px;}
.wsd3{word-spacing:0.612000px;}
.ws9e{word-spacing:0.660000px;}
.ws3a{word-spacing:0.720000px;}
.ws66{word-spacing:0.765000px;}
.ws4a{word-spacing:0.780000px;}
.wsc9{word-spacing:0.816000px;}
.ws75{word-spacing:0.840000px;}
.wsfb{word-spacing:0.867000px;}
.ws62{word-spacing:0.900000px;}
.ws110{word-spacing:0.918000px;}
.ws7f{word-spacing:0.960000px;}
.wsa0{word-spacing:0.969000px;}
.ws7c{word-spacing:1.020000px;}
.wsec{word-spacing:1.071000px;}
.ws38{word-spacing:1.080000px;}
.ws105{word-spacing:1.122000px;}
.ws70{word-spacing:1.140000px;}
.wsdb{word-spacing:1.173000px;}
.ws36{word-spacing:1.200000px;}
.ws67{word-spacing:1.224000px;}
.ws46{word-spacing:1.260000px;}
.wsba{word-spacing:1.275000px;}
.ws39{word-spacing:1.320000px;}
.wse1{word-spacing:1.326000px;}
.wse2{word-spacing:1.377000px;}
.ws5c{word-spacing:1.380000px;}
.ws76{word-spacing:1.440000px;}
.wsed{word-spacing:1.479000px;}
.wsb{word-spacing:1.500000px;}
.wsd1{word-spacing:1.530000px;}
.ws51{word-spacing:1.560000px;}
.wsfc{word-spacing:1.581000px;}
.ws28{word-spacing:1.620000px;}
.ws112{word-spacing:1.632000px;}
.ws52{word-spacing:1.680000px;}
.ws109{word-spacing:1.683000px;}
.wsf4{word-spacing:1.734000px;}
.ws3f{word-spacing:1.740000px;}
.wsd8{word-spacing:1.785000px;}
.ws61{word-spacing:1.800000px;}
.wsf2{word-spacing:1.836000px;}
.ws32{word-spacing:1.860000px;}
.ws10a{word-spacing:1.887000px;}
.ws34{word-spacing:1.920000px;}
.ws49{word-spacing:1.980000px;}
.ws48{word-spacing:2.040000px;}
.ws115{word-spacing:2.091000px;}
.ws31{word-spacing:2.100000px;}
.ws65{word-spacing:2.142000px;}
.ws26{word-spacing:2.160000px;}
.wse8{word-spacing:2.193000px;}
.ws9b{word-spacing:2.220000px;}
.ws58{word-spacing:2.280000px;}
.wsb9{word-spacing:2.295000px;}
.ws30{word-spacing:2.340000px;}
.ws107{word-spacing:2.346000px;}
.wsff{word-spacing:2.397000px;}
.ws55{word-spacing:2.400000px;}
.wsbd{word-spacing:2.448000px;}
.ws45{word-spacing:2.460000px;}
.wsd4{word-spacing:2.499000px;}
.ws8c{word-spacing:2.520000px;}
.wscc{word-spacing:2.550000px;}
.wsef{word-spacing:2.601000px;}
.ws73{word-spacing:2.640000px;}
.wsbc{word-spacing:2.652000px;}
.ws60{word-spacing:2.700000px;}
.ws117{word-spacing:2.703000px;}
.wscb{word-spacing:2.754000px;}
.ws5b{word-spacing:2.760000px;}
.ws103{word-spacing:2.805000px;}
.ws57{word-spacing:2.820000px;}
.ws80{word-spacing:2.880000px;}
.ws72{word-spacing:2.940000px;}
.wsc7{word-spacing:2.958000px;}
.ws47{word-spacing:3.000000px;}
.ws2d{word-spacing:3.060000px;}
.wsd2{word-spacing:3.111000px;}
.wsb1{word-spacing:3.120000px;}
.wsee{word-spacing:3.162000px;}
.ws23{word-spacing:3.180000px;}
.ws10d{word-spacing:3.213000px;}
.ws6e{word-spacing:3.240000px;}
.wsc4{word-spacing:3.264000px;}
.ws63{word-spacing:3.300000px;}
.wsfd{word-spacing:3.315000px;}
.ws5a{word-spacing:3.360000px;}
.ws101{word-spacing:3.417000px;}
.ws3b{word-spacing:3.420000px;}
.wsc3{word-spacing:3.468000px;}
.ws82{word-spacing:3.480000px;}
.wsd0{word-spacing:3.519000px;}
.ws7d{word-spacing:3.540000px;}
.wsa8{word-spacing:3.600000px;}
.ws9d{word-spacing:3.660000px;}
.ws92{word-spacing:3.720000px;}
.wse4{word-spacing:3.723000px;}
.ws54{word-spacing:3.780000px;}
.wsbb{word-spacing:3.825000px;}
.ws29{word-spacing:3.840000px;}
.wsa3{word-spacing:3.900000px;}
.wse9{word-spacing:3.927000px;}
.wsa7{word-spacing:3.960000px;}
.ws42{word-spacing:4.020000px;}
.wse3{word-spacing:4.029000px;}
.wsbe{word-spacing:4.131000px;}
.ws2a{word-spacing:4.200000px;}
.wsf3{word-spacing:4.233000px;}
.ws93{word-spacing:4.260000px;}
.wsb2{word-spacing:4.320000px;}
.ws91{word-spacing:4.380000px;}
.wsc6{word-spacing:4.386000px;}
.ws10c{word-spacing:4.437000px;}
.wsac{word-spacing:4.440000px;}
.ws8a{word-spacing:4.500000px;}
.wsea{word-spacing:4.539000px;}
.ws90{word-spacing:4.560000px;}
.wsc1{word-spacing:4.590000px;}
.wsa5{word-spacing:4.620000px;}
.ws11a{word-spacing:4.641000px;}
.ws8f{word-spacing:4.800000px;}
.wse6{word-spacing:4.845000px;}
.ws35{word-spacing:4.860000px;}
.wsce{word-spacing:5.049000px;}
.wsa4{word-spacing:5.100000px;}
.ws5d{word-spacing:5.160000px;}
.wsc8{word-spacing:5.253000px;}
.ws100{word-spacing:5.304000px;}
.wsb0{word-spacing:5.340000px;}
.ws94{word-spacing:5.400000px;}
.ws7e{word-spacing:5.580000px;}
.ws116{word-spacing:5.661000px;}
.wsf8{word-spacing:5.712000px;}
.ws119{word-spacing:5.865000px;}
.wsb3{word-spacing:5.880000px;}
.wsbf{word-spacing:6.018000px;}
.wscf{word-spacing:6.120000px;}
.wseb{word-spacing:6.222000px;}
.ws95{word-spacing:6.240000px;}
.wsa9{word-spacing:6.300000px;}
.wsf7{word-spacing:6.375000px;}
.wsc0{word-spacing:6.579000px;}
.ws81{word-spacing:6.600000px;}
.ws111{word-spacing:6.630000px;}
.wsb4{word-spacing:6.660000px;}
.ws10f{word-spacing:6.681000px;}
.wsa6{word-spacing:6.720000px;}
.ws2b{word-spacing:6.900000px;}
.ws8d{word-spacing:7.020000px;}
.wsf5{word-spacing:7.854000px;}
.wsd5{word-spacing:7.905000px;}
.ws8b{word-spacing:7.920000px;}
.wse5{word-spacing:8.007000px;}
.wsf0{word-spacing:8.262000px;}
.wsfe{word-spacing:8.568000px;}
.wse0{word-spacing:9.282000px;}
.ws64{word-spacing:9.333000px;}
.ws9c{word-spacing:9.960000px;}
.ws77{word-spacing:10.149000px;}
.ws79{word-spacing:10.710000px;}
.wsf6{word-spacing:11.424000px;}
.wsc2{word-spacing:12.240000px;}
.ws11b{word-spacing:13.668000px;}
.wsa1{word-spacing:14.229000px;}
.wsd6{word-spacing:16.524000px;}
.ws11c{word-spacing:17.799000px;}
.ws78{word-spacing:18.360000px;}
.ws14{word-spacing:72.267000px;}
.ws87{word-spacing:455.996100px;}
.ws86{word-spacing:554.982000px;}
.ws89{word-spacing:557.124000px;}
.ws88{word-spacing:591.957000px;}
.ws4e{word-spacing:643.416000px;}
.wsad{word-spacing:1119.807000px;}
.wsae{word-spacing:1170.807000px;}
.wsaf{word-spacing:1247.307000px;}
._11{margin-left:-2959.376944px;}
._c{margin-left:-96.900000px;}
._4f{margin-left:-23.052000px;}
._55{margin-left:-21.088500px;}
._51{margin-left:-19.992000px;}
._4a{margin-left:-17.850000px;}
._8{margin-left:-16.575000px;}
._50{margin-left:-15.198000px;}
._4c{margin-left:-14.076000px;}
._54{margin-left:-12.750000px;}
._52{margin-left:-11.628000px;}
._17{margin-left:-10.608009px;}
._16{margin-left:-9.600000px;}
._3{margin-left:-8.520000px;}
._5{margin-left:-6.428450px;}
._6{margin-left:-5.407258px;}
._10{margin-left:-4.134000px;}
._1{margin-left:-2.805000px;}
._0{margin-left:-1.632000px;}
._7{width:1.002000px;}
._2{width:2.102400px;}
._e{width:4.140000px;}
._2b{width:5.295000px;}
._f{width:6.612000px;}
._45{width:7.803000px;}
._42{width:9.129000px;}
._43{width:10.608000px;}
._41{width:11.781000px;}
._40{width:12.852000px;}
._44{width:14.433000px;}
._12{width:15.498900px;}
._56{width:16.983000px;}
._9{width:18.360000px;}
._4b{width:19.737000px;}
._4e{width:20.859000px;}
._48{width:22.224600px;}
._4d{width:23.460000px;}
._47{width:24.846000px;}
._46{width:26.316000px;}
._53{width:27.474000px;}
._49{width:29.427000px;}
._4{width:40.564200px;}
._b{width:54.621000px;}
._a{width:72.267000px;}
._28{width:74.766000px;}
._15{width:81.057000px;}
._2d{width:112.199981px;}
._2a{width:123.108900px;}
._14{width:138.891000px;}
._1a{width:151.623000px;}
._29{width:161.313000px;}
._21{width:177.123000px;}
._1c{width:202.623000px;}
._1d{width:227.817000px;}
._19{width:274.380000px;}
._3b{width:314.280000px;}
._35{width:323.289000px;}
._2c{width:334.509000px;}
._26{width:343.944000px;}
._33{width:386.375981px;}
._31{width:411.875981px;}
._2f{width:437.375981px;}
._30{width:439.365000px;}
._18{width:451.554000px;}
._1f{width:453.612000px;}
._37{width:470.526000px;}
._38{width:473.382000px;}
._25{width:478.533000px;}
._36{width:484.704000px;}
._34{width:487.458000px;}
._39{width:489.141000px;}
._32{width:507.297000px;}
._2e{width:521.526000px;}
._23{width:550.749000px;}
._3d{width:557.685000px;}
._27{width:587.571000px;}
._1e{width:606.186000px;}
._24{width:638.571000px;}
._22{width:644.181000px;}
._1b{width:655.554000px;}
._20{width:661.215000px;}
._13{width:825.486000px;}
._3c{width:917.439000px;}
._3f{width:985.218000px;}
._3a{width:1055.904000px;}
._3e{width:1161.372000px;}
._d{width:1844.822974px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y130{bottom:113.544342px;}
.ybd{bottom:113.773798px;}
.y196{bottom:114.729321px;}
.y1e2{bottom:114.735260px;}
.y217{bottom:114.735294px;}
.y243{bottom:114.735306px;}
.y26d{bottom:114.874786px;}
.y203{bottom:114.874947px;}
.y32f{bottom:116.614823px;}
.y371{bottom:117.010073px;}
.y199{bottom:118.750202px;}
.ya2{bottom:127.335434px;}
.y2ed{bottom:127.597838px;}
.ybc{bottom:128.767798px;}
.y7c{bottom:129.915344px;}
.y32e{bottom:131.608823px;}
.y370{bottom:132.004073px;}
.y12f{bottom:132.294342px;}
.y198{bottom:132.906739px;}
.y195{bottom:133.479321px;}
.y1e1{bottom:133.485260px;}
.y216{bottom:133.485294px;}
.y242{bottom:133.485306px;}
.y26c{bottom:133.624786px;}
.y202{bottom:133.624947px;}
.y2ec{bottom:142.591838px;}
.ybb{bottom:143.761798px;}
.ya1{bottom:146.085434px;}
.y32d{bottom:146.602823px;}
.y36f{bottom:146.998073px;}
.y7b{bottom:148.665344px;}
.y12e{bottom:151.044342px;}
.yce{bottom:151.503296px;}
.y194{bottom:152.229321px;}
.y1e0{bottom:152.235260px;}
.y215{bottom:152.235294px;}
.y15e{bottom:152.235306px;}
.yfd{bottom:152.238293px;}
.y26b{bottom:152.374786px;}
.y201{bottom:152.374947px;}
.y48{bottom:154.362746px;}
.y2b1{bottom:156.328949px;}
.y2eb{bottom:157.585838px;}
.yba{bottom:158.755798px;}
.y1af{bottom:160.532531px;}
.y2d{bottom:161.364909px;}
.y32c{bottom:161.596823px;}
.y36e{bottom:161.992073px;}
.ya0{bottom:164.835434px;}
.y7a{bottom:167.415344px;}
.y47{bottom:169.356746px;}
.y12d{bottom:169.794342px;}
.ycd{bottom:170.253296px;}
.y193{bottom:170.979321px;}
.y1df{bottom:170.985260px;}
.y214{bottom:170.985294px;}
.y15d{bottom:170.985306px;}
.yfc{bottom:170.988293px;}
.y200{bottom:171.120243px;}
.y26a{bottom:171.124786px;}
.y24b{bottom:171.124947px;}
.y2ea{bottom:172.579838px;}
.yb9{bottom:173.749798px;}
.y2c{bottom:176.358909px;}
.y32b{bottom:176.590823px;}
.y36d{bottom:176.986073px;}
.y1ae{bottom:179.326031px;}
.y9f{bottom:183.585434px;}
.y79{bottom:186.165344px;}
.y2b0{bottom:186.291449px;}
.y2e9{bottom:187.573838px;}
.y12c{bottom:188.544342px;}
.ycc{bottom:189.003296px;}
.y46{bottom:189.450748px;}
.y192{bottom:189.729321px;}
.y1de{bottom:189.735260px;}
.y15c{bottom:189.735306px;}
.yfb{bottom:189.738293px;}
.y1ff{bottom:189.870243px;}
.y269{bottom:189.874786px;}
.y24a{bottom:189.874947px;}
.y2b{bottom:191.352909px;}
.y32a{bottom:191.584823px;}
.y36c{bottom:191.980073px;}
.y1ad{bottom:198.043031px;}
.y2af{bottom:201.285449px;}
.y2e8{bottom:202.567838px;}
.y78{bottom:204.915344px;}
.y329{bottom:206.578823px;}
.y45{bottom:206.922010px;}
.y36b{bottom:206.974073px;}
.y12b{bottom:207.294342px;}
.ycb{bottom:207.753296px;}
.y191{bottom:208.479321px;}
.y1dd{bottom:208.485260px;}
.y15b{bottom:208.485306px;}
.yfa{bottom:208.488293px;}
.y1fe{bottom:208.620243px;}
.y268{bottom:208.624786px;}
.y249{bottom:208.624947px;}
.y2a{bottom:211.446899px;}
.y2ae{bottom:216.279449px;}
.y1ac{bottom:216.760031px;}
.y2e7{bottom:217.561838px;}
.y9e{bottom:221.085434px;}
.y328{bottom:221.572823px;}
.y44{bottom:221.916010px;}
.y36a{bottom:221.968073px;}
.y77{bottom:223.665344px;}
.y12a{bottom:226.044342px;}
.yca{bottom:226.503296px;}
.y190{bottom:227.229321px;}
.y1dc{bottom:227.235260px;}
.y15a{bottom:227.235306px;}
.yf9{bottom:227.238293px;}
.y1fd{bottom:227.370243px;}
.y267{bottom:227.374786px;}
.y248{bottom:227.374947px;}
.y29{bottom:228.912150px;}
.y2ad{bottom:231.273449px;}
.y2e6{bottom:232.555838px;}
.y1ab{bottom:235.477031px;}
.y327{bottom:236.566823px;}
.y43{bottom:236.910010px;}
.y369{bottom:236.962073px;}
.y76{bottom:242.415344px;}
.y28{bottom:243.906150px;}
.y129{bottom:244.794342px;}
.yc9{bottom:245.253296px;}
.y18f{bottom:245.979321px;}
.y1db{bottom:245.985260px;}
.y241{bottom:245.985306px;}
.yf8{bottom:245.988293px;}
.y1fc{bottom:246.120243px;}
.y266{bottom:246.124786px;}
.y247{bottom:246.124947px;}
.y2e5{bottom:247.549838px;}
.y326{bottom:251.560823px;}
.y42{bottom:251.904010px;}
.y368{bottom:251.956073px;}
.y1aa{bottom:254.194031px;}
.y9d{bottom:258.585434px;}
.y27{bottom:258.900150px;}
.y75{bottom:261.165344px;}
.y2ac{bottom:261.235949px;}
.y2e4{bottom:262.543838px;}
.y18e{bottom:264.729321px;}
.y1da{bottom:264.735260px;}
.y159{bottom:264.735306px;}
.yf7{bottom:264.738293px;}
.y1fb{bottom:264.870243px;}
.y265{bottom:264.874786px;}
.y246{bottom:264.874947px;}
.y325{bottom:266.554823px;}
.y367{bottom:266.950073px;}
.y41{bottom:271.998000px;}
.y1a9{bottom:272.911031px;}
.y2ab{bottom:276.229949px;}
.y9c{bottom:277.335434px;}
.y2e3{bottom:277.537838px;}
.y26{bottom:278.994141px;}
.y74{bottom:279.915344px;}
.y3a7{bottom:281.051606px;}
.y324{bottom:281.548823px;}
.y366{bottom:281.944073px;}
.y128{bottom:282.294342px;}
.yc8{bottom:282.753296px;}
.y18d{bottom:283.479321px;}
.y1d9{bottom:283.485260px;}
.y240{bottom:283.485306px;}
.yf6{bottom:283.488293px;}
.y1fa{bottom:283.620243px;}
.y264{bottom:283.624786px;}
.y245{bottom:283.624947px;}
.y40{bottom:289.463250px;}
.y2aa{bottom:291.223949px;}
.y1a8{bottom:291.628031px;}
.y2e2{bottom:292.531838px;}
.y3a6{bottom:296.045606px;}
.y9b{bottom:296.085434px;}
.y323{bottom:296.542823px;}
.y365{bottom:296.938073px;}
.y73{bottom:298.665344px;}
.y18c{bottom:302.229321px;}
.y1d8{bottom:302.235260px;}
.y23f{bottom:302.235306px;}
.yf5{bottom:302.238293px;}
.y1f9{bottom:302.370243px;}
.y263{bottom:302.374786px;}
.y244{bottom:302.374947px;}
.y25{bottom:304.073412px;}
.y3f{bottom:304.457250px;}
.y2a9{bottom:306.217949px;}
.y2e1{bottom:307.525838px;}
.y1a7{bottom:310.345031px;}
.y322{bottom:311.536823px;}
.y364{bottom:311.932073px;}
.y9a{bottom:314.835434px;}
.y72{bottom:317.415344px;}
.y24{bottom:319.067412px;}
.y3e{bottom:319.451250px;}
.y127{bottom:319.794342px;}
.yc7{bottom:320.253296px;}
.y18b{bottom:320.979321px;}
.y158{bottom:320.979378px;}
.y1d7{bottom:320.985260px;}
.y23e{bottom:320.985306px;}
.yf4{bottom:320.988293px;}
.y1f8{bottom:321.120243px;}
.y262{bottom:321.124786px;}
.y2a8{bottom:321.211949px;}
.y2e0{bottom:322.519838px;}
.y321{bottom:326.530823px;}
.y3a5{bottom:326.887856px;}
.y363{bottom:326.926073px;}
.y1a6{bottom:329.062031px;}
.y99{bottom:333.585434px;}
.y71{bottom:336.165344px;}
.y2a7{bottom:336.205949px;}
.y2df{bottom:337.513838px;}
.y126{bottom:338.544342px;}
.yc6{bottom:339.003296px;}
.y3d{bottom:339.545242px;}
.y18a{bottom:339.729321px;}
.y157{bottom:339.729378px;}
.y1d6{bottom:339.735260px;}
.y23d{bottom:339.735306px;}
.yf3{bottom:339.738293px;}
.y1f7{bottom:339.870243px;}
.y261{bottom:339.874786px;}
.y320{bottom:341.524823px;}
.y23{bottom:341.609412px;}
.y3a4{bottom:341.881856px;}
.y362{bottom:341.920073px;}
.y1a5{bottom:347.779031px;}
.y2a6{bottom:351.199949px;}
.y98{bottom:352.335434px;}
.y2de{bottom:352.507838px;}
.y70{bottom:354.915344px;}
.y31f{bottom:356.518823px;}
.y22{bottom:356.603412px;}
.y3a3{bottom:356.875856px;}
.y361{bottom:356.914073px;}
.y3c{bottom:357.016630px;}
.y125{bottom:357.294342px;}
.yc5{bottom:357.753296px;}
.y189{bottom:358.479321px;}
.y156{bottom:358.479378px;}
.y1d5{bottom:358.485260px;}
.y23c{bottom:358.485306px;}
.yf2{bottom:358.488293px;}
.y1f6{bottom:358.620243px;}
.y260{bottom:358.624786px;}
.y2a5{bottom:366.193949px;}
.y1a4{bottom:366.496031px;}
.y2dd{bottom:367.501838px;}
.y97{bottom:371.085434px;}
.y31e{bottom:371.512823px;}
.y3a2{bottom:371.869856px;}
.y360{bottom:371.908073px;}
.y3b{bottom:372.010630px;}
.y6f{bottom:373.665344px;}
.y124{bottom:376.044342px;}
.yc4{bottom:376.503296px;}
.y188{bottom:377.229321px;}
.y155{bottom:377.229378px;}
.y1d4{bottom:377.235260px;}
.y23b{bottom:377.235306px;}
.yf1{bottom:377.238293px;}
.y1f5{bottom:377.370243px;}
.y25f{bottom:377.374786px;}
.y21{bottom:379.145412px;}
.y2a4{bottom:381.187949px;}
.y2dc{bottom:382.495838px;}
.y1a3{bottom:385.213031px;}
.y31d{bottom:386.506823px;}
.y3a1{bottom:386.863856px;}
.y35f{bottom:386.902073px;}
.y3a{bottom:387.004630px;}
.y96{bottom:389.835434px;}
.y6e{bottom:392.415344px;}
.y20{bottom:394.139412px;}
.y123{bottom:394.794342px;}
.yc3{bottom:395.253296px;}
.y187{bottom:395.979321px;}
.y154{bottom:395.979378px;}
.y1d3{bottom:395.985260px;}
.y23a{bottom:395.985306px;}
.y1f4{bottom:396.120243px;}
.y25e{bottom:396.124786px;}
.y2a3{bottom:396.181949px;}
.y2db{bottom:397.489838px;}
.y31c{bottom:401.500823px;}
.y3a0{bottom:401.857856px;}
.y35e{bottom:401.896073px;}
.y39{bottom:401.998630px;}
.y1a2{bottom:403.930031px;}
.y95{bottom:408.585434px;}
.y6d{bottom:411.165344px;}
.y2a2{bottom:411.175949px;}
.y2da{bottom:412.483838px;}
.y122{bottom:413.544342px;}
.yc2{bottom:414.003296px;}
.y186{bottom:414.729321px;}
.y153{bottom:414.729378px;}
.y1d2{bottom:414.735260px;}
.y239{bottom:414.735306px;}
.yf0{bottom:414.738293px;}
.y1f3{bottom:414.870243px;}
.y25d{bottom:414.874786px;}
.y31b{bottom:416.494823px;}
.y1f{bottom:416.681412px;}
.y39f{bottom:416.851856px;}
.y35d{bottom:416.890073px;}
.y38{bottom:422.092667px;}
.y1a1{bottom:422.647031px;}
.y2a1{bottom:426.169949px;}
.y94{bottom:427.335434px;}
.y2d9{bottom:427.477838px;}
.y6c{bottom:429.915344px;}
.y31a{bottom:431.488823px;}
.y1e{bottom:431.675412px;}
.y39e{bottom:431.845856px;}
.y35c{bottom:431.884073px;}
.y121{bottom:432.294342px;}
.yc1{bottom:432.753296px;}
.y185{bottom:433.479321px;}
.y152{bottom:433.479378px;}
.y1d1{bottom:433.485260px;}
.y238{bottom:433.485306px;}
.y1f2{bottom:433.620243px;}
.y25c{bottom:433.624786px;}
.y37{bottom:439.557917px;}
.y2a0{bottom:441.163949px;}
.y1a0{bottom:441.364031px;}
.y2d8{bottom:442.471838px;}
.y93{bottom:446.085434px;}
.y319{bottom:446.482823px;}
.y39d{bottom:446.839856px;}
.y35b{bottom:446.878073px;}
.y6b{bottom:448.665344px;}
.y120{bottom:451.044342px;}
.yc0{bottom:451.503296px;}
.y184{bottom:452.229321px;}
.y151{bottom:452.229378px;}
.y1d0{bottom:452.235260px;}
.y237{bottom:452.235306px;}
.yef{bottom:452.238293px;}
.y1f1{bottom:452.370243px;}
.y25b{bottom:452.374786px;}
.y1d{bottom:454.217412px;}
.y36{bottom:454.551917px;}
.y29f{bottom:456.157949px;}
.y2d7{bottom:457.465838px;}
.y19f{bottom:460.081031px;}
.y318{bottom:461.476823px;}
.y39c{bottom:461.833856px;}
.y35a{bottom:461.872073px;}
.y92{bottom:464.835434px;}
.y6a{bottom:467.415344px;}
.y1c{bottom:469.211412px;}
.y35{bottom:469.545917px;}
.y11f{bottom:469.794342px;}
.ybf{bottom:470.253296px;}
.y183{bottom:470.979321px;}
.y150{bottom:470.979378px;}
.y1cf{bottom:470.985260px;}
.y236{bottom:470.985306px;}
.yee{bottom:470.988293px;}
.y1f0{bottom:471.120243px;}
.y270{bottom:471.124786px;}
.y29e{bottom:471.151949px;}
.y2d6{bottom:472.459838px;}
.y317{bottom:476.470823px;}
.y39b{bottom:476.827856px;}
.y359{bottom:476.866073px;}
.y91{bottom:483.585434px;}
.y29d{bottom:486.145949px;}
.y69{bottom:486.165344px;}
.y2d5{bottom:487.453838px;}
.y19c{bottom:488.156531px;}
.y11e{bottom:488.544342px;}
.ybe{bottom:489.003296px;}
.y34{bottom:489.639908px;}
.y182{bottom:489.729321px;}
.y14f{bottom:489.729378px;}
.y1ce{bottom:489.735260px;}
.y235{bottom:489.735306px;}
.yed{bottom:489.738293px;}
.y1ef{bottom:489.870243px;}
.y25a{bottom:489.874786px;}
.y316{bottom:491.464823px;}
.y1b{bottom:491.753412px;}
.y39a{bottom:491.821856px;}
.y358{bottom:491.860073px;}
.y29c{bottom:501.139949px;}
.y90{bottom:502.335434px;}
.y2d4{bottom:502.447838px;}
.y19b{bottom:503.150531px;}
.y19e{bottom:503.163281px;}
.y68{bottom:504.915344px;}
.y315{bottom:506.458823px;}
.y1a{bottom:506.747412px;}
.y399{bottom:506.815856px;}
.y357{bottom:506.854073px;}
.y33{bottom:507.117158px;}
.y11d{bottom:507.294342px;}
.y181{bottom:508.479321px;}
.y14e{bottom:508.479378px;}
.y1cd{bottom:508.485260px;}
.y234{bottom:508.485306px;}
.yec{bottom:508.488293px;}
.y1ee{bottom:508.620243px;}
.y26f{bottom:508.624786px;}
.y29b{bottom:516.133949px;}
.y2d3{bottom:517.441838px;}
.y19a{bottom:518.144531px;}
.y19d{bottom:518.157281px;}
.y8f{bottom:521.085434px;}
.y314{bottom:521.452823px;}
.y398{bottom:521.809856px;}
.y356{bottom:521.848073px;}
.y32{bottom:522.111158px;}
.y67{bottom:523.665344px;}
.y11c{bottom:526.044342px;}
.y180{bottom:527.229321px;}
.y14d{bottom:527.229378px;}
.y1cc{bottom:527.235260px;}
.y233{bottom:527.235306px;}
.yeb{bottom:527.238293px;}
.y1ed{bottom:527.370243px;}
.y26e{bottom:527.374786px;}
.y19{bottom:529.289412px;}
.y29a{bottom:531.127949px;}
.y2d2{bottom:532.435838px;}
.y313{bottom:536.446823px;}
.y397{bottom:536.803856px;}
.y355{bottom:536.842073px;}
.y31{bottom:537.105158px;}
.y8e{bottom:539.835434px;}
.y66{bottom:542.415344px;}
.y197{bottom:543.635239px;}
.y18{bottom:544.283412px;}
.y11b{bottom:544.794342px;}
.y17f{bottom:545.979321px;}
.y14c{bottom:545.979378px;}
.y1cb{bottom:545.985260px;}
.y232{bottom:545.985306px;}
.yea{bottom:545.988293px;}
.y1ec{bottom:546.120243px;}
.y299{bottom:546.121949px;}
.y259{bottom:546.124786px;}
.y2d1{bottom:547.429838px;}
.y312{bottom:551.440823px;}
.y396{bottom:551.797856px;}
.y354{bottom:551.836073px;}
.y30{bottom:552.099158px;}
.y8d{bottom:558.585434px;}
.y101{bottom:560.248820px;}
.y298{bottom:561.115949px;}
.y65{bottom:561.165344px;}
.y2d0{bottom:562.423838px;}
.y11a{bottom:563.544342px;}
.y17e{bottom:564.729321px;}
.y14b{bottom:564.729378px;}
.y1ca{bottom:564.735260px;}
.y231{bottom:564.735306px;}
.ye9{bottom:564.738293px;}
.y1eb{bottom:564.870243px;}
.y258{bottom:564.874786px;}
.y311{bottom:566.434823px;}
.y395{bottom:566.791856px;}
.y17{bottom:566.825412px;}
.y353{bottom:566.830073px;}
.y2f{bottom:567.093158px;}
.y100{bottom:575.242820px;}
.y297{bottom:576.109949px;}
.y8c{bottom:577.335434px;}
.y2cf{bottom:577.417838px;}
.y64{bottom:579.915344px;}
.y310{bottom:581.428823px;}
.y394{bottom:581.785856px;}
.y16{bottom:581.819412px;}
.y352{bottom:581.824073px;}
.y119{bottom:582.294342px;}
.y17d{bottom:583.479321px;}
.y14a{bottom:583.479378px;}
.y1c9{bottom:583.485260px;}
.ye8{bottom:583.488293px;}
.y1ea{bottom:583.620243px;}
.y257{bottom:583.624786px;}
.y2e{bottom:587.187149px;}
.yff{bottom:590.236820px;}
.y296{bottom:591.103949px;}
.y2ce{bottom:592.411838px;}
.y8b{bottom:596.085434px;}
.y30f{bottom:596.422823px;}
.y393{bottom:596.779856px;}
.y351{bottom:596.818073px;}
.y63{bottom:598.665344px;}
.y118{bottom:601.044342px;}
.y230{bottom:602.223306px;}
.y17c{bottom:602.229321px;}
.y149{bottom:602.229378px;}
.y1c8{bottom:602.235260px;}
.ye7{bottom:602.238293px;}
.y1e9{bottom:602.370243px;}
.y256{bottom:602.374786px;}
.yfe{bottom:605.230820px;}
.y295{bottom:606.097949px;}
.y2cd{bottom:607.405838px;}
.y30e{bottom:611.416823px;}
.y392{bottom:611.773856px;}
.y350{bottom:611.812073px;}
.y8a{bottom:614.835434px;}
.y62{bottom:617.415344px;}
.y117{bottom:619.794342px;}
.y22f{bottom:620.979306px;}
.y17b{bottom:620.979321px;}
.y148{bottom:620.979378px;}
.y1c7{bottom:620.985260px;}
.ye6{bottom:620.988293px;}
.y294{bottom:621.091949px;}
.y1e8{bottom:621.120243px;}
.y255{bottom:621.124786px;}
.y2cc{bottom:622.399838px;}
.y30d{bottom:626.410823px;}
.y391{bottom:626.767856px;}
.y34f{bottom:626.806073px;}
.y15{bottom:628.711395px;}
.y89{bottom:633.585434px;}
.y293{bottom:636.085949px;}
.y61{bottom:636.165344px;}
.y2cb{bottom:637.393838px;}
.y116{bottom:638.544342px;}
.y17a{bottom:639.729321px;}
.y147{bottom:639.729378px;}
.y1c6{bottom:639.735260px;}
.y22e{bottom:639.735306px;}
.ye5{bottom:639.738293px;}
.y1e7{bottom:639.870243px;}
.y254{bottom:639.874786px;}
.y30c{bottom:641.404823px;}
.y390{bottom:641.761856px;}
.y34e{bottom:641.800073px;}
.y292{bottom:651.079949px;}
.y88{bottom:652.335434px;}
.y2ca{bottom:652.387838px;}
.y60{bottom:654.915344px;}
.y30b{bottom:656.398823px;}
.y38f{bottom:656.755856px;}
.y34d{bottom:656.794073px;}
.y115{bottom:657.294342px;}
.y179{bottom:658.479321px;}
.y146{bottom:658.479378px;}
.y1c5{bottom:658.485260px;}
.ye4{bottom:658.488293px;}
.y1e6{bottom:658.620243px;}
.y253{bottom:658.624786px;}
.y291{bottom:666.073949px;}
.y14{bottom:666.211395px;}
.y2c9{bottom:667.381838px;}
.y87{bottom:671.085434px;}
.y30a{bottom:671.392823px;}
.y38e{bottom:671.749856px;}
.y34c{bottom:671.788073px;}
.y5f{bottom:673.665344px;}
.y114{bottom:676.044342px;}
.y178{bottom:677.229321px;}
.y145{bottom:677.229378px;}
.y1c4{bottom:677.235260px;}
.ye3{bottom:677.238293px;}
.y1e5{bottom:677.370243px;}
.y252{bottom:677.374786px;}
.y290{bottom:681.067949px;}
.y2c8{bottom:682.375838px;}
.y13{bottom:684.961395px;}
.y309{bottom:686.386823px;}
.y38d{bottom:686.743856px;}
.y34b{bottom:686.782073px;}
.y86{bottom:689.835434px;}
.y5e{bottom:692.415344px;}
.y113{bottom:694.794342px;}
.y177{bottom:695.979321px;}
.y144{bottom:695.979378px;}
.y1c3{bottom:695.985260px;}
.y22d{bottom:695.985294px;}
.ye2{bottom:695.988293px;}
.y28f{bottom:696.061949px;}
.y1e4{bottom:696.120243px;}
.y251{bottom:696.124786px;}
.y2c7{bottom:697.369838px;}
.y308{bottom:701.380823px;}
.y38c{bottom:701.737856px;}
.y34a{bottom:701.776073px;}
.y12{bottom:703.711395px;}
.y85{bottom:708.585434px;}
.y28e{bottom:711.055949px;}
.y5d{bottom:711.165344px;}
.y2c6{bottom:712.363838px;}
.y112{bottom:713.544342px;}
.y176{bottom:714.729321px;}
.y143{bottom:714.729378px;}
.y1c2{bottom:714.735260px;}
.y22c{bottom:714.735294px;}
.ye1{bottom:714.738293px;}
.y1e3{bottom:714.870243px;}
.y250{bottom:714.874786px;}
.y307{bottom:716.374823px;}
.y38b{bottom:716.731856px;}
.y349{bottom:716.770073px;}
.y11{bottom:722.461395px;}
.y28d{bottom:726.049949px;}
.yaa{bottom:727.335434px;}
.y2c5{bottom:727.357838px;}
.y5c{bottom:729.915344px;}
.y306{bottom:731.368823px;}
.y38a{bottom:731.725856px;}
.y348{bottom:731.764073px;}
.y111{bottom:732.294342px;}
.y175{bottom:733.479321px;}
.y142{bottom:733.479378px;}
.y1c1{bottom:733.485260px;}
.y22b{bottom:733.485294px;}
.ye0{bottom:733.488293px;}
.y24f{bottom:733.624786px;}
.y28c{bottom:741.043949px;}
.y10{bottom:741.211395px;}
.y2c4{bottom:742.351838px;}
.y84{bottom:746.085434px;}
.y305{bottom:746.362823px;}
.y389{bottom:746.719856px;}
.y347{bottom:746.758073px;}
.y5b{bottom:748.665344px;}
.y110{bottom:751.044342px;}
.y174{bottom:752.229321px;}
.y141{bottom:752.229378px;}
.y1c0{bottom:752.235260px;}
.y22a{bottom:752.235294px;}
.ydf{bottom:752.238293px;}
.y24e{bottom:752.374786px;}
.y28b{bottom:756.037949px;}
.y2c3{bottom:757.345838px;}
.yf{bottom:759.961395px;}
.y304{bottom:761.356823px;}
.y388{bottom:761.713856px;}
.y346{bottom:761.752073px;}
.ya9{bottom:764.835434px;}
.y5a{bottom:767.415344px;}
.y161{bottom:769.794342px;}
.y173{bottom:770.979321px;}
.y140{bottom:770.979378px;}
.y1bf{bottom:770.985260px;}
.y229{bottom:770.985294px;}
.yde{bottom:770.988293px;}
.y2c2{bottom:772.339838px;}
.y208{bottom:774.374594px;}
.y303{bottom:776.350823px;}
.y387{bottom:776.707856px;}
.y345{bottom:776.746073px;}
.ye{bottom:778.711395px;}
.ya8{bottom:783.585434px;}
.y83{bottom:783.585480px;}
.y59{bottom:786.165344px;}
.y2c1{bottom:787.333838px;}
.y10f{bottom:788.544342px;}
.y207{bottom:789.368594px;}
.y172{bottom:789.729321px;}
.y213{bottom:789.735260px;}
.y228{bottom:789.735294px;}
.ydd{bottom:789.738293px;}
.y28a{bottom:789.787994px;}
.y302{bottom:791.344823px;}
.y386{bottom:791.701856px;}
.y344{bottom:791.740073px;}
.yd{bottom:797.461395px;}
.y2c0{bottom:802.327838px;}
.ya7{bottom:802.335434px;}
.y82{bottom:802.335480px;}
.y58{bottom:804.915344px;}
.y301{bottom:806.338823px;}
.y385{bottom:806.695856px;}
.y343{bottom:806.734073px;}
.y160{bottom:807.294342px;}
.y171{bottom:808.479321px;}
.y13f{bottom:808.479378px;}
.y1be{bottom:808.485260px;}
.y227{bottom:808.485294px;}
.ydc{bottom:808.488293px;}
.y206{bottom:808.621094px;}
.y27f{bottom:812.791777px;}
.yc{bottom:816.211395px;}
.y2bf{bottom:817.321838px;}
.ya6{bottom:821.085434px;}
.y81{bottom:821.085480px;}
.y300{bottom:821.332823px;}
.y384{bottom:821.689856px;}
.y342{bottom:821.728073px;}
.y57{bottom:823.665344px;}
.y10e{bottom:826.044342px;}
.y170{bottom:827.229321px;}
.y212{bottom:827.235260px;}
.y226{bottom:827.235294px;}
.ydb{bottom:827.238293px;}
.y289{bottom:827.363733px;}
.y205{bottom:827.873594px;}
.y27e{bottom:831.585277px;}
.yb{bottom:834.961395px;}
.y2ff{bottom:836.326823px;}
.y383{bottom:836.683856px;}
.y341{bottom:836.722073px;}
.ya5{bottom:839.835434px;}
.y80{bottom:839.835480px;}
.y288{bottom:842.357733px;}
.y56{bottom:842.415344px;}
.y204{bottom:842.867594px;}
.y10d{bottom:844.794342px;}
.y16f{bottom:845.979321px;}
.y13e{bottom:845.979378px;}
.y1bd{bottom:845.985260px;}
.y225{bottom:845.985294px;}
.yda{bottom:845.988293px;}
.y27d{bottom:850.302277px;}
.y2be{bottom:851.071838px;}
.y2fe{bottom:851.320823px;}
.y382{bottom:851.677856px;}
.y340{bottom:851.716073px;}
.y287{bottom:857.351733px;}
.ya4{bottom:858.585434px;}
.y7f{bottom:858.585480px;}
.y55{bottom:861.165344px;}
.y10c{bottom:863.544342px;}
.y16e{bottom:864.729321px;}
.y13d{bottom:864.729378px;}
.y1bc{bottom:864.735260px;}
.y224{bottom:864.735294px;}
.y2fd{bottom:866.314823px;}
.y381{bottom:866.671856px;}
.y33f{bottom:866.710073px;}
.y27c{bottom:869.019277px;}
.y211{bottom:871.717524px;}
.ya3{bottom:877.335434px;}
.y7e{bottom:877.335480px;}
.ya{bottom:879.144153px;}
.y54{bottom:879.915344px;}
.y2fc{bottom:881.308823px;}
.y380{bottom:881.665856px;}
.y33e{bottom:881.704073px;}
.y10b{bottom:882.294342px;}
.y16d{bottom:883.479321px;}
.y13c{bottom:883.479378px;}
.y1bb{bottom:883.485260px;}
.y223{bottom:883.485294px;}
.yd9{bottom:883.488293px;}
.y27b{bottom:887.736277px;}
.y210{bottom:890.511024px;}
.y286{bottom:891.062733px;}
.y9{bottom:894.138153px;}
.y2fb{bottom:896.302823px;}
.y37f{bottom:896.659856px;}
.y33d{bottom:896.698073px;}
.y53{bottom:898.665344px;}
.y10a{bottom:901.044342px;}
.y16c{bottom:902.229321px;}
.y13b{bottom:902.229378px;}
.y1ba{bottom:902.235260px;}
.y222{bottom:902.235294px;}
.y285{bottom:906.056733px;}
.y27a{bottom:906.453277px;}
.y20f{bottom:909.228024px;}
.y2fa{bottom:911.296823px;}
.y37e{bottom:911.653856px;}
.y33c{bottom:911.692073px;}
.y52{bottom:917.415344px;}
.y109{bottom:919.794342px;}
.y16b{bottom:920.979321px;}
.y13a{bottom:920.979378px;}
.y1b9{bottom:920.985260px;}
.y221{bottom:920.985294px;}
.yd8{bottom:920.988293px;}
.y284{bottom:921.050733px;}
.y279{bottom:925.170277px;}
.y2f9{bottom:926.290823px;}
.y2bd{bottom:926.365215px;}
.y37d{bottom:926.647856px;}
.y33b{bottom:926.686073px;}
.y20e{bottom:927.945024px;}
.yac{bottom:934.157594px;}
.y283{bottom:936.044733px;}
.y51{bottom:936.165344px;}
.y8{bottom:936.738190px;}
.y108{bottom:938.544342px;}
.y16a{bottom:939.729321px;}
.y139{bottom:939.729378px;}
.y1b8{bottom:939.735260px;}
.y220{bottom:939.735294px;}
.yd7{bottom:939.738293px;}
.y2f8{bottom:941.284823px;}
.y2bc{bottom:941.359215px;}
.y37c{bottom:941.641856px;}
.y33a{bottom:941.680073px;}
.y278{bottom:943.887277px;}
.y20d{bottom:946.662024px;}
.y282{bottom:951.038733px;}
.y50{bottom:954.915344px;}
.y2f7{bottom:956.278823px;}
.y2bb{bottom:956.353215px;}
.y37b{bottom:956.635856px;}
.y339{bottom:956.674073px;}
.y107{bottom:957.294342px;}
.yb8{bottom:957.856524px;}
.y169{bottom:958.479321px;}
.y138{bottom:958.479378px;}
.y1b7{bottom:958.485260px;}
.y21f{bottom:958.485294px;}
.yd6{bottom:958.488293px;}
.y277{bottom:962.604277px;}
.y20c{bottom:965.379024px;}
.y281{bottom:966.032733px;}
.y2f6{bottom:971.272823px;}
.y2ba{bottom:971.347215px;}
.y37a{bottom:971.629856px;}
.y338{bottom:971.668073px;}
.yb7{bottom:972.850524px;}
.y4f{bottom:973.665344px;}
.y106{bottom:976.044342px;}
.y168{bottom:977.229321px;}
.y137{bottom:977.229378px;}
.y1b6{bottom:977.235260px;}
.y21e{bottom:977.235294px;}
.yd5{bottom:977.238293px;}
.y280{bottom:981.026733px;}
.y276{bottom:981.321277px;}
.y7{bottom:981.424622px;}
.y20b{bottom:984.096024px;}
.y2f5{bottom:986.266823px;}
.y2b9{bottom:986.341215px;}
.y379{bottom:986.623856px;}
.y337{bottom:986.662073px;}
.yb6{bottom:987.844524px;}
.y4e{bottom:992.415344px;}
.y105{bottom:994.794342px;}
.y167{bottom:995.979321px;}
.y136{bottom:995.979378px;}
.y1b5{bottom:995.985260px;}
.y21d{bottom:995.985294px;}
.yd4{bottom:995.988293px;}
.y275{bottom:1000.038277px;}
.y2f4{bottom:1001.260823px;}
.y2b8{bottom:1001.335215px;}
.y378{bottom:1001.617856px;}
.y336{bottom:1001.656073px;}
.y20a{bottom:1002.813024px;}
.yb0{bottom:1006.536024px;}
.yb3{bottom:1006.548774px;}
.y6{bottom:1008.424622px;}
.y4d{bottom:1011.165344px;}
.y104{bottom:1013.544342px;}
.y166{bottom:1014.729321px;}
.y135{bottom:1014.729378px;}
.y1b4{bottom:1014.735260px;}
.y21c{bottom:1014.735294px;}
.yd3{bottom:1014.738293px;}
.y2f3{bottom:1016.254823px;}
.y2b7{bottom:1016.329215px;}
.y377{bottom:1016.611856px;}
.y335{bottom:1016.650073px;}
.y274{bottom:1018.755277px;}
.yaf{bottom:1021.530024px;}
.yb2{bottom:1021.542774px;}
.yb5{bottom:1021.555524px;}
.y4c{bottom:1029.915344px;}
.y2f2{bottom:1031.248823px;}
.y2b6{bottom:1031.323215px;}
.y376{bottom:1031.605856px;}
.y334{bottom:1031.644073px;}
.y15f{bottom:1032.294342px;}
.y165{bottom:1033.479321px;}
.y134{bottom:1033.479378px;}
.y1b3{bottom:1033.485260px;}
.y21b{bottom:1033.485294px;}
.yd2{bottom:1033.488293px;}
.yae{bottom:1036.524024px;}
.yb1{bottom:1036.536774px;}
.yb4{bottom:1036.549524px;}
.y273{bottom:1037.472277px;}
.y2f1{bottom:1046.242823px;}
.y2b5{bottom:1046.317215px;}
.y375{bottom:1046.599856px;}
.y333{bottom:1046.638073px;}
.y4b{bottom:1048.665344px;}
.y209{bottom:1049.618274px;}
.y103{bottom:1051.044342px;}
.y164{bottom:1052.229321px;}
.y133{bottom:1052.229378px;}
.y1b2{bottom:1052.235260px;}
.y21a{bottom:1052.235294px;}
.yd1{bottom:1052.238293px;}
.y272{bottom:1056.189277px;}
.y24d{bottom:1060.114844px;}
.y2f0{bottom:1061.236823px;}
.y2b4{bottom:1061.311215px;}
.y374{bottom:1061.593856px;}
.y332{bottom:1061.632073px;}
.yad{bottom:1064.612274px;}
.y163{bottom:1070.979321px;}
.y132{bottom:1070.979378px;}
.y1b1{bottom:1070.985260px;}
.y219{bottom:1070.985294px;}
.yd0{bottom:1070.988293px;}
.y24c{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y2ef{bottom:1076.230823px;}
.y2b3{bottom:1076.305215px;}
.y373{bottom:1076.587856px;}
.y331{bottom:1076.626073px;}
.y271{bottom:1084.277527px;}
.y4a{bottom:1086.165344px;}
.y102{bottom:1088.544342px;}
.y162{bottom:1089.729321px;}
.y131{bottom:1089.729378px;}
.y1b0{bottom:1089.735260px;}
.y218{bottom:1089.735294px;}
.ycf{bottom:1089.738293px;}
.yab{bottom:1090.102844px;}
.y2ee{bottom:1091.224823px;}
.y2b2{bottom:1091.299215px;}
.y372{bottom:1091.581856px;}
.y330{bottom:1091.620073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y49{bottom:1127.482361px;}
.y7d{bottom:1127.482544px;}
.hc{height:33.129599px;}
.h2{height:42.048000px;}
.h4{height:44.676000px;}
.hb{height:47.328000px;}
.h10{height:52.173000px;}
.hf{height:53.160000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.ha{height:55.680000px;}
.he{height:59.004000px;}
.h8{height:59.340000px;}
.h9{height:61.380000px;}
.h11{height:62.976000px;}
.h12{height:62.994814px;}
.h7{height:64.866000px;}
.hd{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545402px;}
.x5{left:97.796100px;}
.x12{left:102.047253px;}
.xc{left:171.000000px;}
.xf{left:268.754402px;}
.x10{left:343.839152px;}
.xd{left:356.997019px;}
.x6{left:459.212540px;}
.xa{left:476.207545px;}
.x7{left:480.466799px;}
.x11{left:484.725290px;}
.xe{left:590.997769px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xb{left:792.153442px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls47{letter-spacing:-1.013333pt;}
.ls45{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.906667pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls48{letter-spacing:-0.586667pt;}
.ls3b{letter-spacing:-0.498667pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.453333pt;}
.ls44{letter-spacing:-0.426667pt;}
.ls89{letter-spacing:-0.408000pt;}
.ls33{letter-spacing:-0.373333pt;}
.ls75{letter-spacing:-0.362667pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls76{letter-spacing:-0.317333pt;}
.ls74{letter-spacing:-0.272000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls88{letter-spacing:-0.226667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls77{letter-spacing:-0.181333pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls73{letter-spacing:-0.136000pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls72{letter-spacing:-0.090667pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls51{letter-spacing:-0.045333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000033pt;}
.ls1{letter-spacing:0.000076pt;}
.ls6c{letter-spacing:0.022667pt;}
.ls4a{letter-spacing:0.026667pt;}
.ls5d{letter-spacing:0.045333pt;}
.ls16{letter-spacing:0.053333pt;}
.ls3d{letter-spacing:0.080000pt;}
.ls60{letter-spacing:0.090667pt;}
.lsd{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.133333pt;}
.ls85{letter-spacing:0.136000pt;}
.ls3{letter-spacing:0.158926pt;}
.ls38{letter-spacing:0.160000pt;}
.ls6b{letter-spacing:0.181333pt;}
.ls54{letter-spacing:0.186035pt;}
.ls59{letter-spacing:0.186667pt;}
.ls86{letter-spacing:0.204000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.226667pt;}
.ls5f{letter-spacing:0.234667pt;}
.ls8c{letter-spacing:0.249333pt;}
.ls56{letter-spacing:0.255950pt;}
.ls61{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.266667pt;}
.ls79{letter-spacing:0.272000pt;}
.ls42{letter-spacing:0.293333pt;}
.ls5e{letter-spacing:0.317333pt;}
.ls3f{letter-spacing:0.320000pt;}
.ls3e{letter-spacing:0.362645pt;}
.ls78{letter-spacing:0.362667pt;}
.ls12{letter-spacing:0.373333pt;}
.ls8a{letter-spacing:0.385333pt;}
.ls5b{letter-spacing:0.408000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls50{letter-spacing:0.453333pt;}
.lse{letter-spacing:0.480000pt;}
.ls6e{letter-spacing:0.498667pt;}
.ls4b{letter-spacing:0.506667pt;}
.ls17{letter-spacing:0.533333pt;}
.ls7a{letter-spacing:0.544000pt;}
.ls41{letter-spacing:0.560000pt;}
.ls21{letter-spacing:0.586667pt;}
.ls71{letter-spacing:0.589333pt;}
.ls66{letter-spacing:0.607467pt;}
.ls4d{letter-spacing:0.613333pt;}
.ls7e{letter-spacing:0.634667pt;}
.ls23{letter-spacing:0.640000pt;}
.ls55{letter-spacing:0.646322pt;}
.ls40{letter-spacing:0.666667pt;}
.ls7c{letter-spacing:0.680000pt;}
.ls11{letter-spacing:0.693333pt;}
.ls52{letter-spacing:0.697595pt;}
.ls43{letter-spacing:0.720000pt;}
.ls5a{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.746667pt;}
.ls69{letter-spacing:0.770667pt;}
.ls39{letter-spacing:0.773333pt;}
.ls10{letter-spacing:0.800000pt;}
.ls7b{letter-spacing:0.816000pt;}
.ls29{letter-spacing:0.826667pt;}
.ls35{letter-spacing:0.847990pt;}
.ls30{letter-spacing:0.853333pt;}
.ls65{letter-spacing:0.861333pt;}
.ls27{letter-spacing:0.880000pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls87{letter-spacing:0.952000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:0.986667pt;}
.ls5c{letter-spacing:0.997333pt;}
.ls31{letter-spacing:1.013323pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.029333pt;}
.ls57{letter-spacing:1.040000pt;}
.ls6d{letter-spacing:1.042667pt;}
.ls13{letter-spacing:1.066667pt;}
.ls7d{letter-spacing:1.088000pt;}
.ls24{letter-spacing:1.104000pt;}
.ls14{letter-spacing:1.120000pt;}
.ls6f{letter-spacing:1.133333pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls8e{letter-spacing:1.178667pt;}
.ls64{letter-spacing:1.224000pt;}
.ls4e{letter-spacing:1.226667pt;}
.ls82{letter-spacing:1.269333pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.333333pt;}
.ls37{letter-spacing:1.354667pt;}
.ls58{letter-spacing:1.360000pt;}
.ls36{letter-spacing:1.386667pt;}
.ls8d{letter-spacing:1.405333pt;}
.ls2a{letter-spacing:1.440000pt;}
.ls70{letter-spacing:1.450667pt;}
.ls1a{letter-spacing:1.493333pt;}
.ls81{letter-spacing:1.496000pt;}
.ls8b{letter-spacing:1.518667pt;}
.ls20{letter-spacing:1.536000pt;}
.ls83{letter-spacing:1.541333pt;}
.ls28{letter-spacing:1.546667pt;}
.ls4c{letter-spacing:1.573333pt;}
.ls15{letter-spacing:1.600000pt;}
.ls68{letter-spacing:1.632000pt;}
.ls2e{letter-spacing:1.653333pt;}
.ls67{letter-spacing:1.677333pt;}
.ls7f{letter-spacing:1.722667pt;}
.ls26{letter-spacing:1.760000pt;}
.ls6a{letter-spacing:1.768000pt;}
.ls2b{letter-spacing:1.781333pt;}
.ls4f{letter-spacing:1.813333pt;}
.ls2d{letter-spacing:1.866667pt;}
.ls1c{letter-spacing:2.026667pt;}
.ls63{letter-spacing:2.130667pt;}
.ls53{letter-spacing:2.186667pt;}
.ls2f{letter-spacing:2.239982pt;}
.ls80{letter-spacing:2.380000pt;}
.ls84{letter-spacing:2.493333pt;}
.ls62{letter-spacing:2.629333pt;}
.ls0{letter-spacing:3.546667pt;}
.ws1d{word-spacing:-15.200000pt;}
.ws4b{word-spacing:-14.826667pt;}
.ws1c{word-spacing:-14.773333pt;}
.wsaa{word-spacing:-14.613333pt;}
.ws18{word-spacing:-14.400000pt;}
.ws98{word-spacing:-14.346667pt;}
.ws1a{word-spacing:-14.293333pt;}
.ws1b{word-spacing:-14.186667pt;}
.ws19{word-spacing:-14.133333pt;}
.ws7a{word-spacing:-14.080000pt;}
.ws9a{word-spacing:-14.026667pt;}
.wsab{word-spacing:-13.866667pt;}
.ws4c{word-spacing:-13.600000pt;}
.ws6b{word-spacing:-13.440000pt;}
.ws68{word-spacing:-13.413333pt;}
.ws17{word-spacing:-13.333333pt;}
.ws99{word-spacing:-13.280000pt;}
.ws7b{word-spacing:-13.226667pt;}
.wsb7{word-spacing:-13.184000pt;}
.ws97{word-spacing:-13.120000pt;}
.wsa2{word-spacing:-13.066667pt;}
.ws5{word-spacing:-13.013333pt;}
.ws16{word-spacing:-12.928000pt;}
.ws69{word-spacing:-12.906667pt;}
.ws6a{word-spacing:-12.320000pt;}
.wsdf{word-spacing:-11.560000pt;}
.ws4d{word-spacing:-11.333333pt;}
.ws85{word-spacing:-11.288000pt;}
.ws84{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws4f{word-spacing:-10.880000pt;}
.ws50{word-spacing:-10.834667pt;}
.ws6{word-spacing:-10.240000pt;}
.wsb6{word-spacing:-9.021333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsb5{word-spacing:-8.658667pt;}
.ws0{word-spacing:-8.362667pt;}
.ws7{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws9f{word-spacing:-6.666667pt;}
.ws96{word-spacing:-5.666667pt;}
.wsc5{word-spacing:-1.994667pt;}
.ws43{word-spacing:-1.866667pt;}
.ws3c{word-spacing:-1.760000pt;}
.ws8{word-spacing:-1.680000pt;}
.ws8e{word-spacing:-1.653333pt;}
.ws33{word-spacing:-1.493333pt;}
.ws40{word-spacing:-1.440000pt;}
.ws53{word-spacing:-1.386667pt;}
.wsd{word-spacing:-1.333333pt;}
.ws41{word-spacing:-1.280000pt;}
.ws24{word-spacing:-1.226667pt;}
.wsf1{word-spacing:-1.224000pt;}
.wsd9{word-spacing:-1.178667pt;}
.ws71{word-spacing:-1.173333pt;}
.wsb8{word-spacing:-1.133333pt;}
.ws44{word-spacing:-1.120000pt;}
.ws113{word-spacing:-1.088000pt;}
.ws83{word-spacing:-1.066667pt;}
.wscd{word-spacing:-1.042667pt;}
.ws37{word-spacing:-1.013333pt;}
.ws118{word-spacing:-0.997333pt;}
.ws2c{word-spacing:-0.960000pt;}
.wsdc{word-spacing:-0.952000pt;}
.ws59{word-spacing:-0.906667pt;}
.wsda{word-spacing:-0.861333pt;}
.ws10{word-spacing:-0.853333pt;}
.ws27{word-spacing:-0.800000pt;}
.ws5e{word-spacing:-0.746667pt;}
.wsd7{word-spacing:-0.725333pt;}
.ws21{word-spacing:-0.693333pt;}
.wsdd{word-spacing:-0.680000pt;}
.ws13{word-spacing:-0.640000pt;}
.wsde{word-spacing:-0.634667pt;}
.ws12{word-spacing:-0.586667pt;}
.ws15{word-spacing:-0.544000pt;}
.ws1f{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.ws22{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.426667pt;}
.ws104{word-spacing:-0.408000pt;}
.ws6c{word-spacing:-0.373333pt;}
.ws56{word-spacing:-0.320000pt;}
.ws25{word-spacing:-0.266667pt;}
.wse7{word-spacing:-0.226667pt;}
.ws11{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.160000pt;}
.ws3e{word-spacing:-0.106667pt;}
.ws106{word-spacing:-0.090667pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws102{word-spacing:-0.045333pt;}
.ws9{word-spacing:0.000000pt;}
.ws10b{word-spacing:0.045333pt;}
.wsc{word-spacing:0.053333pt;}
.ws6f{word-spacing:0.106667pt;}
.wsfa{word-spacing:0.136000pt;}
.wsca{word-spacing:0.181333pt;}
.ws74{word-spacing:0.213333pt;}
.wsf{word-spacing:0.266667pt;}
.ws114{word-spacing:0.272000pt;}
.ws10e{word-spacing:0.317333pt;}
.ws6d{word-spacing:0.320000pt;}
.ws108{word-spacing:0.362667pt;}
.ws20{word-spacing:0.373333pt;}
.wsf9{word-spacing:0.408000pt;}
.ws2f{word-spacing:0.426667pt;}
.ws2e{word-spacing:0.480000pt;}
.ws3d{word-spacing:0.533333pt;}
.wsd3{word-spacing:0.544000pt;}
.ws9e{word-spacing:0.586667pt;}
.ws3a{word-spacing:0.640000pt;}
.ws66{word-spacing:0.680000pt;}
.ws4a{word-spacing:0.693333pt;}
.wsc9{word-spacing:0.725333pt;}
.ws75{word-spacing:0.746667pt;}
.wsfb{word-spacing:0.770667pt;}
.ws62{word-spacing:0.800000pt;}
.ws110{word-spacing:0.816000pt;}
.ws7f{word-spacing:0.853333pt;}
.wsa0{word-spacing:0.861333pt;}
.ws7c{word-spacing:0.906667pt;}
.wsec{word-spacing:0.952000pt;}
.ws38{word-spacing:0.960000pt;}
.ws105{word-spacing:0.997333pt;}
.ws70{word-spacing:1.013333pt;}
.wsdb{word-spacing:1.042667pt;}
.ws36{word-spacing:1.066667pt;}
.ws67{word-spacing:1.088000pt;}
.ws46{word-spacing:1.120000pt;}
.wsba{word-spacing:1.133333pt;}
.ws39{word-spacing:1.173333pt;}
.wse1{word-spacing:1.178667pt;}
.wse2{word-spacing:1.224000pt;}
.ws5c{word-spacing:1.226667pt;}
.ws76{word-spacing:1.280000pt;}
.wsed{word-spacing:1.314667pt;}
.wsb{word-spacing:1.333333pt;}
.wsd1{word-spacing:1.360000pt;}
.ws51{word-spacing:1.386667pt;}
.wsfc{word-spacing:1.405333pt;}
.ws28{word-spacing:1.440000pt;}
.ws112{word-spacing:1.450667pt;}
.ws52{word-spacing:1.493333pt;}
.ws109{word-spacing:1.496000pt;}
.wsf4{word-spacing:1.541333pt;}
.ws3f{word-spacing:1.546667pt;}
.wsd8{word-spacing:1.586667pt;}
.ws61{word-spacing:1.600000pt;}
.wsf2{word-spacing:1.632000pt;}
.ws32{word-spacing:1.653333pt;}
.ws10a{word-spacing:1.677333pt;}
.ws34{word-spacing:1.706667pt;}
.ws49{word-spacing:1.760000pt;}
.ws48{word-spacing:1.813333pt;}
.ws115{word-spacing:1.858667pt;}
.ws31{word-spacing:1.866667pt;}
.ws65{word-spacing:1.904000pt;}
.ws26{word-spacing:1.920000pt;}
.wse8{word-spacing:1.949333pt;}
.ws9b{word-spacing:1.973333pt;}
.ws58{word-spacing:2.026667pt;}
.wsb9{word-spacing:2.040000pt;}
.ws30{word-spacing:2.080000pt;}
.ws107{word-spacing:2.085333pt;}
.wsff{word-spacing:2.130667pt;}
.ws55{word-spacing:2.133333pt;}
.wsbd{word-spacing:2.176000pt;}
.ws45{word-spacing:2.186667pt;}
.wsd4{word-spacing:2.221333pt;}
.ws8c{word-spacing:2.240000pt;}
.wscc{word-spacing:2.266667pt;}
.wsef{word-spacing:2.312000pt;}
.ws73{word-spacing:2.346667pt;}
.wsbc{word-spacing:2.357333pt;}
.ws60{word-spacing:2.400000pt;}
.ws117{word-spacing:2.402667pt;}
.wscb{word-spacing:2.448000pt;}
.ws5b{word-spacing:2.453333pt;}
.ws103{word-spacing:2.493333pt;}
.ws57{word-spacing:2.506667pt;}
.ws80{word-spacing:2.560000pt;}
.ws72{word-spacing:2.613333pt;}
.wsc7{word-spacing:2.629333pt;}
.ws47{word-spacing:2.666667pt;}
.ws2d{word-spacing:2.720000pt;}
.wsd2{word-spacing:2.765333pt;}
.wsb1{word-spacing:2.773333pt;}
.wsee{word-spacing:2.810667pt;}
.ws23{word-spacing:2.826667pt;}
.ws10d{word-spacing:2.856000pt;}
.ws6e{word-spacing:2.880000pt;}
.wsc4{word-spacing:2.901333pt;}
.ws63{word-spacing:2.933333pt;}
.wsfd{word-spacing:2.946667pt;}
.ws5a{word-spacing:2.986667pt;}
.ws101{word-spacing:3.037333pt;}
.ws3b{word-spacing:3.040000pt;}
.wsc3{word-spacing:3.082667pt;}
.ws82{word-spacing:3.093333pt;}
.wsd0{word-spacing:3.128000pt;}
.ws7d{word-spacing:3.146667pt;}
.wsa8{word-spacing:3.200000pt;}
.ws9d{word-spacing:3.253333pt;}
.ws92{word-spacing:3.306667pt;}
.wse4{word-spacing:3.309333pt;}
.ws54{word-spacing:3.360000pt;}
.wsbb{word-spacing:3.400000pt;}
.ws29{word-spacing:3.413333pt;}
.wsa3{word-spacing:3.466667pt;}
.wse9{word-spacing:3.490667pt;}
.wsa7{word-spacing:3.520000pt;}
.ws42{word-spacing:3.573333pt;}
.wse3{word-spacing:3.581333pt;}
.wsbe{word-spacing:3.672000pt;}
.ws2a{word-spacing:3.733333pt;}
.wsf3{word-spacing:3.762667pt;}
.ws93{word-spacing:3.786667pt;}
.wsb2{word-spacing:3.840000pt;}
.ws91{word-spacing:3.893333pt;}
.wsc6{word-spacing:3.898667pt;}
.ws10c{word-spacing:3.944000pt;}
.wsac{word-spacing:3.946667pt;}
.ws8a{word-spacing:4.000000pt;}
.wsea{word-spacing:4.034667pt;}
.ws90{word-spacing:4.053333pt;}
.wsc1{word-spacing:4.080000pt;}
.wsa5{word-spacing:4.106667pt;}
.ws11a{word-spacing:4.125333pt;}
.ws8f{word-spacing:4.266667pt;}
.wse6{word-spacing:4.306667pt;}
.ws35{word-spacing:4.320000pt;}
.wsce{word-spacing:4.488000pt;}
.wsa4{word-spacing:4.533333pt;}
.ws5d{word-spacing:4.586667pt;}
.wsc8{word-spacing:4.669333pt;}
.ws100{word-spacing:4.714667pt;}
.wsb0{word-spacing:4.746667pt;}
.ws94{word-spacing:4.800000pt;}
.ws7e{word-spacing:4.960000pt;}
.ws116{word-spacing:5.032000pt;}
.wsf8{word-spacing:5.077333pt;}
.ws119{word-spacing:5.213333pt;}
.wsb3{word-spacing:5.226667pt;}
.wsbf{word-spacing:5.349333pt;}
.wscf{word-spacing:5.440000pt;}
.wseb{word-spacing:5.530667pt;}
.ws95{word-spacing:5.546667pt;}
.wsa9{word-spacing:5.600000pt;}
.wsf7{word-spacing:5.666667pt;}
.wsc0{word-spacing:5.848000pt;}
.ws81{word-spacing:5.866667pt;}
.ws111{word-spacing:5.893333pt;}
.wsb4{word-spacing:5.920000pt;}
.ws10f{word-spacing:5.938667pt;}
.wsa6{word-spacing:5.973333pt;}
.ws2b{word-spacing:6.133333pt;}
.ws8d{word-spacing:6.240000pt;}
.wsf5{word-spacing:6.981333pt;}
.wsd5{word-spacing:7.026667pt;}
.ws8b{word-spacing:7.040000pt;}
.wse5{word-spacing:7.117333pt;}
.wsf0{word-spacing:7.344000pt;}
.wsfe{word-spacing:7.616000pt;}
.wse0{word-spacing:8.250667pt;}
.ws64{word-spacing:8.296000pt;}
.ws9c{word-spacing:8.853333pt;}
.ws77{word-spacing:9.021333pt;}
.ws79{word-spacing:9.520000pt;}
.wsf6{word-spacing:10.154667pt;}
.wsc2{word-spacing:10.880000pt;}
.ws11b{word-spacing:12.149333pt;}
.wsa1{word-spacing:12.648000pt;}
.wsd6{word-spacing:14.688000pt;}
.ws11c{word-spacing:15.821333pt;}
.ws78{word-spacing:16.320000pt;}
.ws14{word-spacing:64.237333pt;}
.ws87{word-spacing:405.329867pt;}
.ws86{word-spacing:493.317333pt;}
.ws89{word-spacing:495.221333pt;}
.ws88{word-spacing:526.184000pt;}
.ws4e{word-spacing:571.925333pt;}
.wsad{word-spacing:995.384000pt;}
.wsae{word-spacing:1040.717333pt;}
.wsaf{word-spacing:1108.717333pt;}
._11{margin-left:-2630.557284pt;}
._c{margin-left:-86.133333pt;}
._4f{margin-left:-20.490667pt;}
._55{margin-left:-18.745333pt;}
._51{margin-left:-17.770667pt;}
._4a{margin-left:-15.866667pt;}
._8{margin-left:-14.733333pt;}
._50{margin-left:-13.509333pt;}
._4c{margin-left:-12.512000pt;}
._54{margin-left:-11.333333pt;}
._52{margin-left:-10.336000pt;}
._17{margin-left:-9.429341pt;}
._16{margin-left:-8.533333pt;}
._3{margin-left:-7.573333pt;}
._5{margin-left:-5.714177pt;}
._6{margin-left:-4.806452pt;}
._10{margin-left:-3.674667pt;}
._1{margin-left:-2.493333pt;}
._0{margin-left:-1.450667pt;}
._7{width:0.890667pt;}
._2{width:1.868800pt;}
._e{width:3.680000pt;}
._2b{width:4.706666pt;}
._f{width:5.877333pt;}
._45{width:6.936000pt;}
._42{width:8.114667pt;}
._43{width:9.429333pt;}
._41{width:10.472000pt;}
._40{width:11.424000pt;}
._44{width:12.829333pt;}
._12{width:13.776800pt;}
._56{width:15.096000pt;}
._9{width:16.320000pt;}
._4b{width:17.544000pt;}
._4e{width:18.541333pt;}
._48{width:19.755200pt;}
._4d{width:20.853333pt;}
._47{width:22.085334pt;}
._46{width:23.392000pt;}
._53{width:24.421333pt;}
._49{width:26.157333pt;}
._4{width:36.057067pt;}
._b{width:48.552000pt;}
._a{width:64.237333pt;}
._28{width:66.458667pt;}
._15{width:72.050667pt;}
._2d{width:99.733316pt;}
._2a{width:109.430133pt;}
._14{width:123.458667pt;}
._1a{width:134.776000pt;}
._29{width:143.389333pt;}
._21{width:157.442667pt;}
._1c{width:180.109333pt;}
._1d{width:202.504000pt;}
._19{width:243.893333pt;}
._3b{width:279.360000pt;}
._35{width:287.368000pt;}
._2c{width:297.341333pt;}
._26{width:305.728000pt;}
._33{width:343.445316pt;}
._31{width:366.111983pt;}
._2f{width:388.778650pt;}
._30{width:390.546667pt;}
._18{width:401.381333pt;}
._1f{width:403.210667pt;}
._37{width:418.245333pt;}
._38{width:420.784000pt;}
._25{width:425.362667pt;}
._36{width:430.848000pt;}
._34{width:433.296000pt;}
._39{width:434.792000pt;}
._32{width:450.930667pt;}
._2e{width:463.578667pt;}
._23{width:489.554667pt;}
._3d{width:495.720000pt;}
._27{width:522.285333pt;}
._1e{width:538.832000pt;}
._24{width:567.618667pt;}
._22{width:572.605333pt;}
._1b{width:582.714667pt;}
._20{width:587.746667pt;}
._13{width:733.765333pt;}
._3c{width:815.501333pt;}
._3f{width:875.749333pt;}
._3a{width:938.581333pt;}
._3e{width:1032.330667pt;}
._d{width:1639.842643pt;}
.fs7{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y130{bottom:100.928304pt;}
.ybd{bottom:101.132265pt;}
.y196{bottom:101.981618pt;}
.y1e2{bottom:101.986898pt;}
.y217{bottom:101.986928pt;}
.y243{bottom:101.986938pt;}
.y26d{bottom:102.110921pt;}
.y203{bottom:102.111064pt;}
.y32f{bottom:103.657620pt;}
.y371{bottom:104.008954pt;}
.y199{bottom:105.555735pt;}
.ya2{bottom:113.187052pt;}
.y2ed{bottom:113.420301pt;}
.ybc{bottom:114.460265pt;}
.y7c{bottom:115.480306pt;}
.y32e{bottom:116.985620pt;}
.y370{bottom:117.336954pt;}
.y12f{bottom:117.594971pt;}
.y198{bottom:118.139323pt;}
.y195{bottom:118.648285pt;}
.y1e1{bottom:118.653564pt;}
.y216{bottom:118.653595pt;}
.y242{bottom:118.653605pt;}
.y26c{bottom:118.777588pt;}
.y202{bottom:118.777730pt;}
.y2ec{bottom:126.748301pt;}
.ybb{bottom:127.788265pt;}
.ya1{bottom:129.853719pt;}
.y32d{bottom:130.313620pt;}
.y36f{bottom:130.664954pt;}
.y7b{bottom:132.146973pt;}
.y12e{bottom:134.261637pt;}
.yce{bottom:134.669596pt;}
.y194{bottom:135.314952pt;}
.y1e0{bottom:135.320231pt;}
.y215{bottom:135.320262pt;}
.y15e{bottom:135.320272pt;}
.yfd{bottom:135.322927pt;}
.y26b{bottom:135.444255pt;}
.y201{bottom:135.444397pt;}
.y48{bottom:137.211330pt;}
.y2b1{bottom:138.959065pt;}
.y2eb{bottom:140.076301pt;}
.yba{bottom:141.116265pt;}
.y1af{bottom:142.695583pt;}
.y2d{bottom:143.435474pt;}
.y32c{bottom:143.641620pt;}
.y36e{bottom:143.992954pt;}
.ya0{bottom:146.520386pt;}
.y7a{bottom:148.813639pt;}
.y47{bottom:150.539330pt;}
.y12d{bottom:150.928304pt;}
.ycd{bottom:151.336263pt;}
.y193{bottom:151.981618pt;}
.y1df{bottom:151.986898pt;}
.y214{bottom:151.986928pt;}
.y15d{bottom:151.986938pt;}
.yfc{bottom:151.989593pt;}
.y200{bottom:152.106883pt;}
.y26a{bottom:152.110921pt;}
.y24b{bottom:152.111064pt;}
.y2ea{bottom:153.404301pt;}
.yb9{bottom:154.444265pt;}
.y2c{bottom:156.763474pt;}
.y32b{bottom:156.969620pt;}
.y36d{bottom:157.320954pt;}
.y1ae{bottom:159.400917pt;}
.y9f{bottom:163.187052pt;}
.y79{bottom:165.480306pt;}
.y2b0{bottom:165.592399pt;}
.y2e9{bottom:166.732301pt;}
.y12c{bottom:167.594971pt;}
.ycc{bottom:168.002930pt;}
.y46{bottom:168.400665pt;}
.y192{bottom:168.648285pt;}
.y1de{bottom:168.653564pt;}
.y15c{bottom:168.653605pt;}
.yfb{bottom:168.656260pt;}
.y1ff{bottom:168.773549pt;}
.y269{bottom:168.777588pt;}
.y24a{bottom:168.777730pt;}
.y2b{bottom:170.091474pt;}
.y32a{bottom:170.297620pt;}
.y36c{bottom:170.648954pt;}
.y1ad{bottom:176.038250pt;}
.y2af{bottom:178.920399pt;}
.y2e8{bottom:180.060301pt;}
.y78{bottom:182.146973pt;}
.y329{bottom:183.625620pt;}
.y45{bottom:183.930676pt;}
.y36b{bottom:183.976954pt;}
.y12b{bottom:184.261637pt;}
.ycb{bottom:184.669596pt;}
.y191{bottom:185.314952pt;}
.y1dd{bottom:185.320231pt;}
.y15b{bottom:185.320272pt;}
.yfa{bottom:185.322927pt;}
.y1fe{bottom:185.440216pt;}
.y268{bottom:185.444255pt;}
.y249{bottom:185.444397pt;}
.y2a{bottom:187.952799pt;}
.y2ae{bottom:192.248399pt;}
.y1ac{bottom:192.675583pt;}
.y2e7{bottom:193.388301pt;}
.y9e{bottom:196.520386pt;}
.y328{bottom:196.953620pt;}
.y44{bottom:197.258676pt;}
.y36a{bottom:197.304954pt;}
.y77{bottom:198.813639pt;}
.y12a{bottom:200.928304pt;}
.yca{bottom:201.336263pt;}
.y190{bottom:201.981618pt;}
.y1dc{bottom:201.986898pt;}
.y15a{bottom:201.986938pt;}
.yf9{bottom:201.989593pt;}
.y1fd{bottom:202.106883pt;}
.y267{bottom:202.110921pt;}
.y248{bottom:202.111064pt;}
.y29{bottom:203.477466pt;}
.y2ad{bottom:205.576399pt;}
.y2e6{bottom:206.716301pt;}
.y1ab{bottom:209.312917pt;}
.y327{bottom:210.281620pt;}
.y43{bottom:210.586676pt;}
.y369{bottom:210.632954pt;}
.y76{bottom:215.480306pt;}
.y28{bottom:216.805466pt;}
.y129{bottom:217.594971pt;}
.yc9{bottom:218.002930pt;}
.y18f{bottom:218.648285pt;}
.y1db{bottom:218.653564pt;}
.y241{bottom:218.653605pt;}
.yf8{bottom:218.656260pt;}
.y1fc{bottom:218.773549pt;}
.y266{bottom:218.777588pt;}
.y247{bottom:218.777730pt;}
.y2e5{bottom:220.044301pt;}
.y326{bottom:223.609620pt;}
.y42{bottom:223.914676pt;}
.y368{bottom:223.960954pt;}
.y1aa{bottom:225.950250pt;}
.y9d{bottom:229.853719pt;}
.y27{bottom:230.133466pt;}
.y75{bottom:232.146973pt;}
.y2ac{bottom:232.209732pt;}
.y2e4{bottom:233.372301pt;}
.y18e{bottom:235.314952pt;}
.y1da{bottom:235.320231pt;}
.y159{bottom:235.320272pt;}
.yf7{bottom:235.322927pt;}
.y1fb{bottom:235.440216pt;}
.y265{bottom:235.444255pt;}
.y246{bottom:235.444397pt;}
.y325{bottom:236.937620pt;}
.y367{bottom:237.288954pt;}
.y41{bottom:241.776000pt;}
.y1a9{bottom:242.587583pt;}
.y2ab{bottom:245.537732pt;}
.y9c{bottom:246.520386pt;}
.y2e3{bottom:246.700301pt;}
.y26{bottom:247.994792pt;}
.y74{bottom:248.813639pt;}
.y3a7{bottom:249.823649pt;}
.y324{bottom:250.265620pt;}
.y366{bottom:250.616954pt;}
.y128{bottom:250.928304pt;}
.yc8{bottom:251.336263pt;}
.y18d{bottom:251.981618pt;}
.y1d9{bottom:251.986898pt;}
.y240{bottom:251.986938pt;}
.yf6{bottom:251.989593pt;}
.y1fa{bottom:252.106883pt;}
.y264{bottom:252.110921pt;}
.y245{bottom:252.111064pt;}
.y40{bottom:257.300667pt;}
.y2aa{bottom:258.865732pt;}
.y1a8{bottom:259.224917pt;}
.y2e2{bottom:260.028301pt;}
.y3a6{bottom:263.151649pt;}
.y9b{bottom:263.187052pt;}
.y323{bottom:263.593620pt;}
.y365{bottom:263.944954pt;}
.y73{bottom:265.480306pt;}
.y18c{bottom:268.648285pt;}
.y1d8{bottom:268.653564pt;}
.y23f{bottom:268.653605pt;}
.yf5{bottom:268.656260pt;}
.y1f9{bottom:268.773549pt;}
.y263{bottom:268.777588pt;}
.y244{bottom:268.777730pt;}
.y25{bottom:270.287478pt;}
.y3f{bottom:270.628667pt;}
.y2a9{bottom:272.193732pt;}
.y2e1{bottom:273.356301pt;}
.y1a7{bottom:275.862250pt;}
.y322{bottom:276.921620pt;}
.y364{bottom:277.272954pt;}
.y9a{bottom:279.853719pt;}
.y72{bottom:282.146973pt;}
.y24{bottom:283.615478pt;}
.y3e{bottom:283.956667pt;}
.y127{bottom:284.261637pt;}
.yc7{bottom:284.669596pt;}
.y18b{bottom:285.314952pt;}
.y158{bottom:285.315002pt;}
.y1d7{bottom:285.320231pt;}
.y23e{bottom:285.320272pt;}
.yf4{bottom:285.322927pt;}
.y1f8{bottom:285.440216pt;}
.y262{bottom:285.444255pt;}
.y2a8{bottom:285.521732pt;}
.y2e0{bottom:286.684301pt;}
.y321{bottom:290.249620pt;}
.y3a5{bottom:290.566983pt;}
.y363{bottom:290.600954pt;}
.y1a6{bottom:292.499583pt;}
.y99{bottom:296.520386pt;}
.y71{bottom:298.813639pt;}
.y2a7{bottom:298.849732pt;}
.y2df{bottom:300.012301pt;}
.y126{bottom:300.928304pt;}
.yc6{bottom:301.336263pt;}
.y3d{bottom:301.817993pt;}
.y18a{bottom:301.981618pt;}
.y157{bottom:301.981669pt;}
.y1d6{bottom:301.986898pt;}
.y23d{bottom:301.986938pt;}
.yf3{bottom:301.989593pt;}
.y1f7{bottom:302.106883pt;}
.y261{bottom:302.110921pt;}
.y320{bottom:303.577620pt;}
.y23{bottom:303.652811pt;}
.y3a4{bottom:303.894983pt;}
.y362{bottom:303.928954pt;}
.y1a5{bottom:309.136917pt;}
.y2a6{bottom:312.177732pt;}
.y98{bottom:313.187052pt;}
.y2de{bottom:313.340301pt;}
.y70{bottom:315.480306pt;}
.y31f{bottom:316.905620pt;}
.y22{bottom:316.980811pt;}
.y3a3{bottom:317.222983pt;}
.y361{bottom:317.256954pt;}
.y3c{bottom:317.348116pt;}
.y125{bottom:317.594971pt;}
.yc5{bottom:318.002930pt;}
.y189{bottom:318.648285pt;}
.y156{bottom:318.648336pt;}
.y1d5{bottom:318.653564pt;}
.y23c{bottom:318.653605pt;}
.yf2{bottom:318.656260pt;}
.y1f6{bottom:318.773549pt;}
.y260{bottom:318.777588pt;}
.y2a5{bottom:325.505732pt;}
.y1a4{bottom:325.774250pt;}
.y2dd{bottom:326.668301pt;}
.y97{bottom:329.853719pt;}
.y31e{bottom:330.233620pt;}
.y3a2{bottom:330.550983pt;}
.y360{bottom:330.584954pt;}
.y3b{bottom:330.676116pt;}
.y6f{bottom:332.146973pt;}
.y124{bottom:334.261637pt;}
.yc4{bottom:334.669596pt;}
.y188{bottom:335.314952pt;}
.y155{bottom:335.315002pt;}
.y1d4{bottom:335.320231pt;}
.y23b{bottom:335.320272pt;}
.yf1{bottom:335.322927pt;}
.y1f5{bottom:335.440216pt;}
.y25f{bottom:335.444255pt;}
.y21{bottom:337.018144pt;}
.y2a4{bottom:338.833732pt;}
.y2dc{bottom:339.996301pt;}
.y1a3{bottom:342.411583pt;}
.y31d{bottom:343.561620pt;}
.y3a1{bottom:343.878983pt;}
.y35f{bottom:343.912954pt;}
.y3a{bottom:344.004116pt;}
.y96{bottom:346.520386pt;}
.y6e{bottom:348.813639pt;}
.y20{bottom:350.346144pt;}
.y123{bottom:350.928304pt;}
.yc3{bottom:351.336263pt;}
.y187{bottom:351.981618pt;}
.y154{bottom:351.981669pt;}
.y1d3{bottom:351.986898pt;}
.y23a{bottom:351.986938pt;}
.y1f4{bottom:352.106883pt;}
.y25e{bottom:352.110921pt;}
.y2a3{bottom:352.161732pt;}
.y2db{bottom:353.324301pt;}
.y31c{bottom:356.889620pt;}
.y3a0{bottom:357.206983pt;}
.y35e{bottom:357.240954pt;}
.y39{bottom:357.332116pt;}
.y1a2{bottom:359.048917pt;}
.y95{bottom:363.187052pt;}
.y6d{bottom:365.480306pt;}
.y2a2{bottom:365.489732pt;}
.y2da{bottom:366.652301pt;}
.y122{bottom:367.594971pt;}
.yc2{bottom:368.002930pt;}
.y186{bottom:368.648285pt;}
.y153{bottom:368.648336pt;}
.y1d2{bottom:368.653564pt;}
.y239{bottom:368.653605pt;}
.yf0{bottom:368.656260pt;}
.y1f3{bottom:368.773549pt;}
.y25d{bottom:368.777588pt;}
.y31b{bottom:370.217620pt;}
.y1f{bottom:370.383478pt;}
.y39f{bottom:370.534983pt;}
.y35d{bottom:370.568954pt;}
.y38{bottom:375.193481pt;}
.y1a1{bottom:375.686250pt;}
.y2a1{bottom:378.817732pt;}
.y94{bottom:379.853719pt;}
.y2d9{bottom:379.980301pt;}
.y6c{bottom:382.146973pt;}
.y31a{bottom:383.545620pt;}
.y1e{bottom:383.711478pt;}
.y39e{bottom:383.862983pt;}
.y35c{bottom:383.896954pt;}
.y121{bottom:384.261637pt;}
.yc1{bottom:384.669596pt;}
.y185{bottom:385.314952pt;}
.y152{bottom:385.315002pt;}
.y1d1{bottom:385.320231pt;}
.y238{bottom:385.320272pt;}
.y1f2{bottom:385.440216pt;}
.y25c{bottom:385.444255pt;}
.y37{bottom:390.718148pt;}
.y2a0{bottom:392.145732pt;}
.y1a0{bottom:392.323583pt;}
.y2d8{bottom:393.308301pt;}
.y93{bottom:396.520386pt;}
.y319{bottom:396.873620pt;}
.y39d{bottom:397.190983pt;}
.y35b{bottom:397.224954pt;}
.y6b{bottom:398.813639pt;}
.y120{bottom:400.928304pt;}
.yc0{bottom:401.336263pt;}
.y184{bottom:401.981618pt;}
.y151{bottom:401.981669pt;}
.y1d0{bottom:401.986898pt;}
.y237{bottom:401.986938pt;}
.yef{bottom:401.989593pt;}
.y1f1{bottom:402.106883pt;}
.y25b{bottom:402.110921pt;}
.y1d{bottom:403.748811pt;}
.y36{bottom:404.046148pt;}
.y29f{bottom:405.473732pt;}
.y2d7{bottom:406.636301pt;}
.y19f{bottom:408.960917pt;}
.y318{bottom:410.201620pt;}
.y39c{bottom:410.518983pt;}
.y35a{bottom:410.552954pt;}
.y92{bottom:413.187052pt;}
.y6a{bottom:415.480306pt;}
.y1c{bottom:417.076811pt;}
.y35{bottom:417.374148pt;}
.y11f{bottom:417.594971pt;}
.ybf{bottom:418.002930pt;}
.y183{bottom:418.648285pt;}
.y150{bottom:418.648336pt;}
.y1cf{bottom:418.653564pt;}
.y236{bottom:418.653605pt;}
.yee{bottom:418.656260pt;}
.y1f0{bottom:418.773549pt;}
.y270{bottom:418.777588pt;}
.y29e{bottom:418.801732pt;}
.y2d6{bottom:419.964301pt;}
.y317{bottom:423.529620pt;}
.y39b{bottom:423.846983pt;}
.y359{bottom:423.880954pt;}
.y91{bottom:429.853719pt;}
.y29d{bottom:432.129732pt;}
.y69{bottom:432.146973pt;}
.y2d5{bottom:433.292301pt;}
.y19c{bottom:433.916917pt;}
.y11e{bottom:434.261637pt;}
.ybe{bottom:434.669596pt;}
.y34{bottom:435.235474pt;}
.y182{bottom:435.314952pt;}
.y14f{bottom:435.315002pt;}
.y1ce{bottom:435.320231pt;}
.y235{bottom:435.320272pt;}
.yed{bottom:435.322927pt;}
.y1ef{bottom:435.440216pt;}
.y25a{bottom:435.444255pt;}
.y316{bottom:436.857620pt;}
.y1b{bottom:437.114144pt;}
.y39a{bottom:437.174983pt;}
.y358{bottom:437.208954pt;}
.y29c{bottom:445.457732pt;}
.y90{bottom:446.520386pt;}
.y2d4{bottom:446.620301pt;}
.y19b{bottom:447.244917pt;}
.y19e{bottom:447.256250pt;}
.y68{bottom:448.813639pt;}
.y315{bottom:450.185620pt;}
.y1a{bottom:450.442144pt;}
.y399{bottom:450.502983pt;}
.y357{bottom:450.536954pt;}
.y33{bottom:450.770807pt;}
.y11d{bottom:450.928304pt;}
.y181{bottom:451.981618pt;}
.y14e{bottom:451.981669pt;}
.y1cd{bottom:451.986898pt;}
.y234{bottom:451.986938pt;}
.yec{bottom:451.989593pt;}
.y1ee{bottom:452.106883pt;}
.y26f{bottom:452.110921pt;}
.y29b{bottom:458.785732pt;}
.y2d3{bottom:459.948301pt;}
.y19a{bottom:460.572917pt;}
.y19d{bottom:460.584250pt;}
.y8f{bottom:463.187052pt;}
.y314{bottom:463.513620pt;}
.y398{bottom:463.830983pt;}
.y356{bottom:463.864954pt;}
.y32{bottom:464.098807pt;}
.y67{bottom:465.480306pt;}
.y11c{bottom:467.594971pt;}
.y180{bottom:468.648285pt;}
.y14d{bottom:468.648336pt;}
.y1cc{bottom:468.653564pt;}
.y233{bottom:468.653605pt;}
.yeb{bottom:468.656260pt;}
.y1ed{bottom:468.773549pt;}
.y26e{bottom:468.777588pt;}
.y19{bottom:470.479478pt;}
.y29a{bottom:472.113732pt;}
.y2d2{bottom:473.276301pt;}
.y313{bottom:476.841620pt;}
.y397{bottom:477.158983pt;}
.y355{bottom:477.192954pt;}
.y31{bottom:477.426807pt;}
.y8e{bottom:479.853719pt;}
.y66{bottom:482.146973pt;}
.y197{bottom:483.231323pt;}
.y18{bottom:483.807478pt;}
.y11b{bottom:484.261637pt;}
.y17f{bottom:485.314952pt;}
.y14c{bottom:485.315002pt;}
.y1cb{bottom:485.320231pt;}
.y232{bottom:485.320272pt;}
.yea{bottom:485.322927pt;}
.y1ec{bottom:485.440216pt;}
.y299{bottom:485.441732pt;}
.y259{bottom:485.444255pt;}
.y2d1{bottom:486.604301pt;}
.y312{bottom:490.169620pt;}
.y396{bottom:490.486983pt;}
.y354{bottom:490.520954pt;}
.y30{bottom:490.754807pt;}
.y8d{bottom:496.520386pt;}
.y101{bottom:497.998951pt;}
.y298{bottom:498.769732pt;}
.y65{bottom:498.813639pt;}
.y2d0{bottom:499.932301pt;}
.y11a{bottom:500.928304pt;}
.y17e{bottom:501.981618pt;}
.y14b{bottom:501.981669pt;}
.y1ca{bottom:501.986898pt;}
.y231{bottom:501.986938pt;}
.ye9{bottom:501.989593pt;}
.y1eb{bottom:502.106883pt;}
.y258{bottom:502.110921pt;}
.y311{bottom:503.497620pt;}
.y395{bottom:503.814983pt;}
.y17{bottom:503.844811pt;}
.y353{bottom:503.848954pt;}
.y2f{bottom:504.082807pt;}
.y100{bottom:511.326951pt;}
.y297{bottom:512.097732pt;}
.y8c{bottom:513.187052pt;}
.y2cf{bottom:513.260301pt;}
.y64{bottom:515.480306pt;}
.y310{bottom:516.825620pt;}
.y394{bottom:517.142983pt;}
.y16{bottom:517.172811pt;}
.y352{bottom:517.176954pt;}
.y119{bottom:517.594971pt;}
.y17d{bottom:518.648285pt;}
.y14a{bottom:518.648336pt;}
.y1c9{bottom:518.653564pt;}
.ye8{bottom:518.656260pt;}
.y1ea{bottom:518.773549pt;}
.y257{bottom:518.777588pt;}
.y2e{bottom:521.944132pt;}
.yff{bottom:524.654951pt;}
.y296{bottom:525.425732pt;}
.y2ce{bottom:526.588301pt;}
.y8b{bottom:529.853719pt;}
.y30f{bottom:530.153620pt;}
.y393{bottom:530.470983pt;}
.y351{bottom:530.504954pt;}
.y63{bottom:532.146973pt;}
.y118{bottom:534.261637pt;}
.y230{bottom:535.309605pt;}
.y17c{bottom:535.314952pt;}
.y149{bottom:535.315002pt;}
.y1c8{bottom:535.320231pt;}
.ye7{bottom:535.322927pt;}
.y1e9{bottom:535.440216pt;}
.y256{bottom:535.444255pt;}
.yfe{bottom:537.982951pt;}
.y295{bottom:538.753732pt;}
.y2cd{bottom:539.916301pt;}
.y30e{bottom:543.481620pt;}
.y392{bottom:543.798983pt;}
.y350{bottom:543.832954pt;}
.y8a{bottom:546.520386pt;}
.y62{bottom:548.813639pt;}
.y117{bottom:550.928304pt;}
.y22f{bottom:551.981605pt;}
.y17b{bottom:551.981618pt;}
.y148{bottom:551.981669pt;}
.y1c7{bottom:551.986898pt;}
.ye6{bottom:551.989593pt;}
.y294{bottom:552.081732pt;}
.y1e8{bottom:552.106883pt;}
.y255{bottom:552.110921pt;}
.y2cc{bottom:553.244301pt;}
.y30d{bottom:556.809620pt;}
.y391{bottom:557.126983pt;}
.y34f{bottom:557.160954pt;}
.y15{bottom:558.854574pt;}
.y89{bottom:563.187052pt;}
.y293{bottom:565.409732pt;}
.y61{bottom:565.480306pt;}
.y2cb{bottom:566.572301pt;}
.y116{bottom:567.594971pt;}
.y17a{bottom:568.648285pt;}
.y147{bottom:568.648336pt;}
.y1c6{bottom:568.653564pt;}
.y22e{bottom:568.653605pt;}
.ye5{bottom:568.656260pt;}
.y1e7{bottom:568.773549pt;}
.y254{bottom:568.777588pt;}
.y30c{bottom:570.137620pt;}
.y390{bottom:570.454983pt;}
.y34e{bottom:570.488954pt;}
.y292{bottom:578.737732pt;}
.y88{bottom:579.853719pt;}
.y2ca{bottom:579.900301pt;}
.y60{bottom:582.146973pt;}
.y30b{bottom:583.465620pt;}
.y38f{bottom:583.782983pt;}
.y34d{bottom:583.816954pt;}
.y115{bottom:584.261637pt;}
.y179{bottom:585.314952pt;}
.y146{bottom:585.315002pt;}
.y1c5{bottom:585.320231pt;}
.ye4{bottom:585.322927pt;}
.y1e6{bottom:585.440216pt;}
.y253{bottom:585.444255pt;}
.y291{bottom:592.065732pt;}
.y14{bottom:592.187907pt;}
.y2c9{bottom:593.228301pt;}
.y87{bottom:596.520386pt;}
.y30a{bottom:596.793620pt;}
.y38e{bottom:597.110983pt;}
.y34c{bottom:597.144954pt;}
.y5f{bottom:598.813639pt;}
.y114{bottom:600.928304pt;}
.y178{bottom:601.981618pt;}
.y145{bottom:601.981669pt;}
.y1c4{bottom:601.986898pt;}
.ye3{bottom:601.989593pt;}
.y1e5{bottom:602.106883pt;}
.y252{bottom:602.110921pt;}
.y290{bottom:605.393732pt;}
.y2c8{bottom:606.556301pt;}
.y13{bottom:608.854574pt;}
.y309{bottom:610.121620pt;}
.y38d{bottom:610.438983pt;}
.y34b{bottom:610.472954pt;}
.y86{bottom:613.187052pt;}
.y5e{bottom:615.480306pt;}
.y113{bottom:617.594971pt;}
.y177{bottom:618.648285pt;}
.y144{bottom:618.648336pt;}
.y1c3{bottom:618.653564pt;}
.y22d{bottom:618.653595pt;}
.ye2{bottom:618.656260pt;}
.y28f{bottom:618.721732pt;}
.y1e4{bottom:618.773549pt;}
.y251{bottom:618.777588pt;}
.y2c7{bottom:619.884301pt;}
.y308{bottom:623.449620pt;}
.y38c{bottom:623.766983pt;}
.y34a{bottom:623.800954pt;}
.y12{bottom:625.521240pt;}
.y85{bottom:629.853719pt;}
.y28e{bottom:632.049732pt;}
.y5d{bottom:632.146973pt;}
.y2c6{bottom:633.212301pt;}
.y112{bottom:634.261637pt;}
.y176{bottom:635.314952pt;}
.y143{bottom:635.315002pt;}
.y1c2{bottom:635.320231pt;}
.y22c{bottom:635.320262pt;}
.ye1{bottom:635.322927pt;}
.y1e3{bottom:635.440216pt;}
.y250{bottom:635.444255pt;}
.y307{bottom:636.777620pt;}
.y38b{bottom:637.094983pt;}
.y349{bottom:637.128954pt;}
.y11{bottom:642.187907pt;}
.y28d{bottom:645.377732pt;}
.yaa{bottom:646.520386pt;}
.y2c5{bottom:646.540301pt;}
.y5c{bottom:648.813639pt;}
.y306{bottom:650.105620pt;}
.y38a{bottom:650.422983pt;}
.y348{bottom:650.456954pt;}
.y111{bottom:650.928304pt;}
.y175{bottom:651.981618pt;}
.y142{bottom:651.981669pt;}
.y1c1{bottom:651.986898pt;}
.y22b{bottom:651.986928pt;}
.ye0{bottom:651.989593pt;}
.y24f{bottom:652.110921pt;}
.y28c{bottom:658.705732pt;}
.y10{bottom:658.854574pt;}
.y2c4{bottom:659.868301pt;}
.y84{bottom:663.187052pt;}
.y305{bottom:663.433620pt;}
.y389{bottom:663.750983pt;}
.y347{bottom:663.784954pt;}
.y5b{bottom:665.480306pt;}
.y110{bottom:667.594971pt;}
.y174{bottom:668.648285pt;}
.y141{bottom:668.648336pt;}
.y1c0{bottom:668.653564pt;}
.y22a{bottom:668.653595pt;}
.ydf{bottom:668.656260pt;}
.y24e{bottom:668.777588pt;}
.y28b{bottom:672.033732pt;}
.y2c3{bottom:673.196301pt;}
.yf{bottom:675.521240pt;}
.y304{bottom:676.761620pt;}
.y388{bottom:677.078983pt;}
.y346{bottom:677.112954pt;}
.ya9{bottom:679.853719pt;}
.y5a{bottom:682.146973pt;}
.y161{bottom:684.261637pt;}
.y173{bottom:685.314952pt;}
.y140{bottom:685.315002pt;}
.y1bf{bottom:685.320231pt;}
.y229{bottom:685.320262pt;}
.yde{bottom:685.322927pt;}
.y2c2{bottom:686.524301pt;}
.y208{bottom:688.332973pt;}
.y303{bottom:690.089620pt;}
.y387{bottom:690.406983pt;}
.y345{bottom:690.440954pt;}
.ye{bottom:692.187907pt;}
.ya8{bottom:696.520386pt;}
.y83{bottom:696.520426pt;}
.y59{bottom:698.813639pt;}
.y2c1{bottom:699.852301pt;}
.y10f{bottom:700.928304pt;}
.y207{bottom:701.660973pt;}
.y172{bottom:701.981618pt;}
.y213{bottom:701.986898pt;}
.y228{bottom:701.986928pt;}
.ydd{bottom:701.989593pt;}
.y28a{bottom:702.033773pt;}
.y302{bottom:703.417620pt;}
.y386{bottom:703.734983pt;}
.y344{bottom:703.768954pt;}
.yd{bottom:708.854574pt;}
.y2c0{bottom:713.180301pt;}
.ya7{bottom:713.187052pt;}
.y82{bottom:713.187093pt;}
.y58{bottom:715.480306pt;}
.y301{bottom:716.745620pt;}
.y385{bottom:717.062983pt;}
.y343{bottom:717.096954pt;}
.y160{bottom:717.594971pt;}
.y171{bottom:718.648285pt;}
.y13f{bottom:718.648336pt;}
.y1be{bottom:718.653564pt;}
.y227{bottom:718.653595pt;}
.ydc{bottom:718.656260pt;}
.y206{bottom:718.774306pt;}
.y27f{bottom:722.481579pt;}
.yc{bottom:725.521240pt;}
.y2bf{bottom:726.508301pt;}
.ya6{bottom:729.853719pt;}
.y81{bottom:729.853760pt;}
.y300{bottom:730.073620pt;}
.y384{bottom:730.390983pt;}
.y342{bottom:730.424954pt;}
.y57{bottom:732.146973pt;}
.y10e{bottom:734.261637pt;}
.y170{bottom:735.314952pt;}
.y212{bottom:735.320231pt;}
.y226{bottom:735.320262pt;}
.ydb{bottom:735.322927pt;}
.y289{bottom:735.434430pt;}
.y205{bottom:735.887639pt;}
.y27e{bottom:739.186913pt;}
.yb{bottom:742.187907pt;}
.y2ff{bottom:743.401620pt;}
.y383{bottom:743.718983pt;}
.y341{bottom:743.752954pt;}
.ya5{bottom:746.520386pt;}
.y80{bottom:746.520426pt;}
.y288{bottom:748.762430pt;}
.y56{bottom:748.813639pt;}
.y204{bottom:749.215639pt;}
.y10d{bottom:750.928304pt;}
.y16f{bottom:751.981618pt;}
.y13e{bottom:751.981669pt;}
.y1bd{bottom:751.986898pt;}
.y225{bottom:751.986928pt;}
.yda{bottom:751.989593pt;}
.y27d{bottom:755.824246pt;}
.y2be{bottom:756.508301pt;}
.y2fe{bottom:756.729620pt;}
.y382{bottom:757.046983pt;}
.y340{bottom:757.080954pt;}
.y287{bottom:762.090430pt;}
.ya4{bottom:763.187052pt;}
.y7f{bottom:763.187093pt;}
.y55{bottom:765.480306pt;}
.y10c{bottom:767.594971pt;}
.y16e{bottom:768.648285pt;}
.y13d{bottom:768.648336pt;}
.y1bc{bottom:768.653564pt;}
.y224{bottom:768.653595pt;}
.y2fd{bottom:770.057620pt;}
.y381{bottom:770.374983pt;}
.y33f{bottom:770.408954pt;}
.y27c{bottom:772.461579pt;}
.y211{bottom:774.860021pt;}
.ya3{bottom:779.853719pt;}
.y7e{bottom:779.853760pt;}
.ya{bottom:781.461469pt;}
.y54{bottom:782.146973pt;}
.y2fc{bottom:783.385620pt;}
.y380{bottom:783.702983pt;}
.y33e{bottom:783.736954pt;}
.y10b{bottom:784.261637pt;}
.y16d{bottom:785.314952pt;}
.y13c{bottom:785.315002pt;}
.y1bb{bottom:785.320231pt;}
.y223{bottom:785.320262pt;}
.yd9{bottom:785.322927pt;}
.y27b{bottom:789.098913pt;}
.y210{bottom:791.565355pt;}
.y286{bottom:792.055763pt;}
.y9{bottom:794.789469pt;}
.y2fb{bottom:796.713620pt;}
.y37f{bottom:797.030983pt;}
.y33d{bottom:797.064954pt;}
.y53{bottom:798.813639pt;}
.y10a{bottom:800.928304pt;}
.y16c{bottom:801.981618pt;}
.y13b{bottom:801.981669pt;}
.y1ba{bottom:801.986898pt;}
.y222{bottom:801.986928pt;}
.y285{bottom:805.383763pt;}
.y27a{bottom:805.736246pt;}
.y20f{bottom:808.202688pt;}
.y2fa{bottom:810.041620pt;}
.y37e{bottom:810.358983pt;}
.y33c{bottom:810.392954pt;}
.y52{bottom:815.480306pt;}
.y109{bottom:817.594971pt;}
.y16b{bottom:818.648285pt;}
.y13a{bottom:818.648336pt;}
.y1b9{bottom:818.653564pt;}
.y221{bottom:818.653595pt;}
.yd8{bottom:818.656260pt;}
.y284{bottom:818.711763pt;}
.y279{bottom:822.373579pt;}
.y2f9{bottom:823.369620pt;}
.y2bd{bottom:823.435747pt;}
.y37d{bottom:823.686983pt;}
.y33b{bottom:823.720954pt;}
.y20e{bottom:824.840021pt;}
.yac{bottom:830.362306pt;}
.y283{bottom:832.039763pt;}
.y51{bottom:832.146973pt;}
.y8{bottom:832.656169pt;}
.y108{bottom:834.261637pt;}
.y16a{bottom:835.314952pt;}
.y139{bottom:835.315002pt;}
.y1b8{bottom:835.320231pt;}
.y220{bottom:835.320262pt;}
.yd7{bottom:835.322927pt;}
.y2f8{bottom:836.697620pt;}
.y2bc{bottom:836.763747pt;}
.y37c{bottom:837.014983pt;}
.y33a{bottom:837.048954pt;}
.y278{bottom:839.010913pt;}
.y20d{bottom:841.477355pt;}
.y282{bottom:845.367763pt;}
.y50{bottom:848.813639pt;}
.y2f7{bottom:850.025620pt;}
.y2bb{bottom:850.091747pt;}
.y37b{bottom:850.342983pt;}
.y339{bottom:850.376954pt;}
.y107{bottom:850.928304pt;}
.yb8{bottom:851.428021pt;}
.y169{bottom:851.981618pt;}
.y138{bottom:851.981669pt;}
.y1b7{bottom:851.986898pt;}
.y21f{bottom:851.986928pt;}
.yd6{bottom:851.989593pt;}
.y277{bottom:855.648246pt;}
.y20c{bottom:858.114688pt;}
.y281{bottom:858.695763pt;}
.y2f6{bottom:863.353620pt;}
.y2ba{bottom:863.419747pt;}
.y37a{bottom:863.670983pt;}
.y338{bottom:863.704954pt;}
.yb7{bottom:864.756021pt;}
.y4f{bottom:865.480306pt;}
.y106{bottom:867.594971pt;}
.y168{bottom:868.648285pt;}
.y137{bottom:868.648336pt;}
.y1b6{bottom:868.653564pt;}
.y21e{bottom:868.653595pt;}
.yd5{bottom:868.656260pt;}
.y280{bottom:872.023763pt;}
.y276{bottom:872.285579pt;}
.y7{bottom:872.377441pt;}
.y20b{bottom:874.752021pt;}
.y2f5{bottom:876.681620pt;}
.y2b9{bottom:876.747747pt;}
.y379{bottom:876.998983pt;}
.y337{bottom:877.032954pt;}
.yb6{bottom:878.084021pt;}
.y4e{bottom:882.146973pt;}
.y105{bottom:884.261637pt;}
.y167{bottom:885.314952pt;}
.y136{bottom:885.315002pt;}
.y1b5{bottom:885.320231pt;}
.y21d{bottom:885.320262pt;}
.yd4{bottom:885.322927pt;}
.y275{bottom:888.922913pt;}
.y2f4{bottom:890.009620pt;}
.y2b8{bottom:890.075747pt;}
.y378{bottom:890.326983pt;}
.y336{bottom:890.360954pt;}
.y20a{bottom:891.389355pt;}
.yb0{bottom:894.698688pt;}
.yb3{bottom:894.710021pt;}
.y6{bottom:896.377441pt;}
.y4d{bottom:898.813639pt;}
.y104{bottom:900.928304pt;}
.y166{bottom:901.981618pt;}
.y135{bottom:901.981669pt;}
.y1b4{bottom:901.986898pt;}
.y21c{bottom:901.986928pt;}
.yd3{bottom:901.989593pt;}
.y2f3{bottom:903.337620pt;}
.y2b7{bottom:903.403747pt;}
.y377{bottom:903.654983pt;}
.y335{bottom:903.688954pt;}
.y274{bottom:905.560246pt;}
.yaf{bottom:908.026688pt;}
.yb2{bottom:908.038021pt;}
.yb5{bottom:908.049355pt;}
.y4c{bottom:915.480306pt;}
.y2f2{bottom:916.665620pt;}
.y2b6{bottom:916.731747pt;}
.y376{bottom:916.982983pt;}
.y334{bottom:917.016954pt;}
.y15f{bottom:917.594971pt;}
.y165{bottom:918.648285pt;}
.y134{bottom:918.648336pt;}
.y1b3{bottom:918.653564pt;}
.y21b{bottom:918.653595pt;}
.yd2{bottom:918.656260pt;}
.yae{bottom:921.354688pt;}
.yb1{bottom:921.366021pt;}
.yb4{bottom:921.377355pt;}
.y273{bottom:922.197579pt;}
.y2f1{bottom:929.993620pt;}
.y2b5{bottom:930.059747pt;}
.y375{bottom:930.310983pt;}
.y333{bottom:930.344954pt;}
.y4b{bottom:932.146973pt;}
.y209{bottom:932.994021pt;}
.y103{bottom:934.261637pt;}
.y164{bottom:935.314952pt;}
.y133{bottom:935.315002pt;}
.y1b2{bottom:935.320231pt;}
.y21a{bottom:935.320262pt;}
.yd1{bottom:935.322927pt;}
.y272{bottom:938.834913pt;}
.y24d{bottom:942.324306pt;}
.y2f0{bottom:943.321620pt;}
.y2b4{bottom:943.387747pt;}
.y374{bottom:943.638983pt;}
.y332{bottom:943.672954pt;}
.yad{bottom:946.322021pt;}
.y163{bottom:951.981618pt;}
.y132{bottom:951.981669pt;}
.y1b1{bottom:951.986898pt;}
.y219{bottom:951.986928pt;}
.yd0{bottom:951.989593pt;}
.y24c{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y2ef{bottom:956.649620pt;}
.y2b3{bottom:956.715747pt;}
.y373{bottom:956.966983pt;}
.y331{bottom:957.000954pt;}
.y271{bottom:963.802246pt;}
.y4a{bottom:965.480306pt;}
.y102{bottom:967.594971pt;}
.y162{bottom:968.648285pt;}
.y131{bottom:968.648336pt;}
.y1b0{bottom:968.653564pt;}
.y218{bottom:968.653595pt;}
.ycf{bottom:968.656260pt;}
.yab{bottom:968.980306pt;}
.y2ee{bottom:969.977620pt;}
.y2b2{bottom:970.043747pt;}
.y372{bottom:970.294983pt;}
.y330{bottom:970.328954pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y49{bottom:1002.206543pt;}
.y7d{bottom:1002.206706pt;}
.hc{height:29.448532pt;}
.h2{height:37.376000pt;}
.h4{height:39.712000pt;}
.hb{height:42.069333pt;}
.h10{height:46.376000pt;}
.hf{height:47.253333pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.ha{height:49.493333pt;}
.he{height:52.448000pt;}
.h8{height:52.746667pt;}
.h9{height:54.560000pt;}
.h11{height:55.978667pt;}
.h12{height:55.995390pt;}
.h7{height:57.658667pt;}
.hd{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151469pt;}
.x5{left:86.929867pt;}
.x12{left:90.708669pt;}
.xc{left:152.000000pt;}
.xf{left:238.892802pt;}
.x10{left:305.634802pt;}
.xd{left:317.330684pt;}
.x6{left:408.188924pt;}
.xa{left:423.295596pt;}
.x7{left:427.081599pt;}
.x11{left:430.866924pt;}
.xe{left:525.331351pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xb{left:704.136393pt;}
}




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