
    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_6b0d14df93bee0ffe7677d7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_43e892201d25ad528731c536.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_8564eeaaf65db12c09b78dba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_7f451064b140acb745fa549e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_35df9f2f7e302077dfdd6cea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_6d33916f96ca23826e448938.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.903809;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_35df9f2f7e302077dfdd6cea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_866a906b61bb312e025204e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903809;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_35df9f2f7e302077dfdd6cea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_004a1eeb8188faaa4acddb4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903809;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_7b5427af569f9c797970c48e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_fba8de2e4a6b022e05ecdfca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_6ccb140f136ed87a14e78321.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_17f56fd2ff1eecc2f95e8301.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_7c9afa5a427a8e5891e5f7b5.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_b044b08400e03fd33fc89758.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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:ff11;src:url('chunks/assets/font_30ae9785897e7feed3791b3c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_35df9f2f7e302077dfdd6cea.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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:ff14;src:url('chunks/assets/font_a5d4fb1f9287e8679d97bb1a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.903809;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:ff15;src:url('chunks/assets/font_7b5427af569f9c797970c48e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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:ff16;src:url('chunks/assets/font_836bd2b52e41e06085d7c09e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.903809;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:ff17;src:url('chunks/assets/font_35df9f2f7e302077dfdd6cea.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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:ff18;src:url('chunks/assets/font_7b5427af569f9c797970c48e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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:ff19;src:url('chunks/assets/font_e7d2f8aed8270e4040afb656.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.903809;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:ff1a;src:url('chunks/assets/font_7b5427af569f9c797970c48e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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:ff1b;src:url('chunks/assets/font_8daafcf1f7c03604adfad013.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.104004;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:ff1c;src:url('chunks/assets/font_9b3c29dea05edbdd37baeb23.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.903809;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:ff1d;src:url('chunks/assets/font_7b5427af569f9c797970c48e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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:ff1e;src:url('chunks/assets/font_7ccbd3035b0dda105db6e5d2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.903809;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:ff1f;src:url('chunks/assets/font_7b5427af569f9c797970c48e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;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:ff20;src:url('chunks/assets/font_475c3a63a0c7fa6b122c8d9b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.903809;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);}
.v1{vertical-align:-90.000000px;}
.v3{vertical-align:-85.500000px;}
.v2{vertical-align:-81.000000px;}
.v7{vertical-align:-63.000000px;}
.v9{vertical-align:-22.500000px;}
.v4{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.500000px;}
.v8{vertical-align:22.500000px;}
.v6{vertical-align:27.000000px;}
.ls4f{letter-spacing:-9.960000px;}
.ls4{letter-spacing:-6.540000px;}
.lse{letter-spacing:-5.268000px;}
.ls22{letter-spacing:-4.518000px;}
.ls3{letter-spacing:-4.500000px;}
.ls23{letter-spacing:-4.482000px;}
.ls2e{letter-spacing:-4.032000px;}
.ls47{letter-spacing:-3.738000px;}
.ls1a{letter-spacing:-3.492000px;}
.ls3b{letter-spacing:-3.378000px;}
.ls37{letter-spacing:-3.024000px;}
.ls33{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.484000px;}
.ls29{letter-spacing:-2.016000px;}
.lsc{letter-spacing:-1.740000px;}
.ls46{letter-spacing:-1.530000px;}
.ls1f{letter-spacing:-1.512000px;}
.ls1e{letter-spacing:-1.494000px;}
.ls8{letter-spacing:-1.476000px;}
.ls3d{letter-spacing:-1.326000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls53{letter-spacing:-0.858000px;}
.ls17{letter-spacing:-0.468000px;}
.ls40{letter-spacing:-0.021600px;}
.ls20{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.021600px;}
.ls10{letter-spacing:0.022500px;}
.ls25{letter-spacing:0.060000px;}
.ls52{letter-spacing:0.075600px;}
.ls31{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.150000px;}
.ls2b{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.396000px;}
.ls3e{letter-spacing:0.468000px;}
.ls19{letter-spacing:1.008000px;}
.ls57{letter-spacing:1.044000px;}
.ls4a{letter-spacing:1.125000px;}
.lsf{letter-spacing:1.128000px;}
.ls1d{letter-spacing:1.404000px;}
.ls2d{letter-spacing:1.476000px;}
.ls21{letter-spacing:1.512000px;}
.ls50{letter-spacing:1.854000px;}
.lsa{letter-spacing:2.016000px;}
.ls4d{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.250000px;}
.ls45{letter-spacing:2.310000px;}
.ls9{letter-spacing:3.024000px;}
.ls48{letter-spacing:3.144000px;}
.ls59{letter-spacing:4.242000px;}
.ls12{letter-spacing:4.500000px;}
.ls27{letter-spacing:4.560000px;}
.ls2c{letter-spacing:5.625000px;}
.ls4c{letter-spacing:5.916000px;}
.ls43{letter-spacing:5.976000px;}
.ls4e{letter-spacing:5.994000px;}
.ls4b{letter-spacing:6.156000px;}
.ls55{letter-spacing:9.000000px;}
.ls44{letter-spacing:9.120000px;}
.ls15{letter-spacing:13.500000px;}
.ls26{letter-spacing:13.620000px;}
.ls16{letter-spacing:13.680000px;}
.ls11{letter-spacing:18.000000px;}
.ls41{letter-spacing:22.500000px;}
.ls30{letter-spacing:22.620000px;}
.ls54{letter-spacing:22.680000px;}
.ls3a{letter-spacing:27.000000px;}
.ls56{letter-spacing:27.120000px;}
.ls3c{letter-spacing:31.680000px;}
.ls38{letter-spacing:32.888400px;}
.ls18{letter-spacing:33.984000px;}
.ls32{letter-spacing:36.000000px;}
.ls1b{letter-spacing:38.484000px;}
.ls3f{letter-spacing:38.899800px;}
.ls58{letter-spacing:40.500000px;}
.ls34{letter-spacing:54.120000px;}
.ls35{letter-spacing:56.604000px;}
.ls39{letter-spacing:63.120000px;}
.ls1c{letter-spacing:65.604000px;}
.ls36{letter-spacing:74.917200px;}
.ls51{letter-spacing:80.929200px;}
.ls6{letter-spacing:108.120000px;}
.lsd{letter-spacing:116.946600px;}
.ls13{letter-spacing:193.800000px;}
.ls49{letter-spacing:198.300000px;}
.ls7{letter-spacing:310.980000px;}
.ls1{letter-spacing:833.700000px;}
.ls0{letter-spacing:1257.180000px;}
.ls42{letter-spacing:2338.500000px;}
.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;}
}
.ws1a{word-spacing:-72.000000px;}
.ws25{word-spacing:-54.000000px;}
.ws2a{word-spacing:-28.549500px;}
.ws29{word-spacing:-27.075600px;}
.ws3{word-spacing:-27.021600px;}
.ws1e{word-spacing:-27.000000px;}
.ws1f{word-spacing:-26.978400px;}
.ws5{word-spacing:-21.024000px;}
.ws6{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.476000px;}
.ws1d{word-spacing:-19.125000px;}
.wsc{word-spacing:-19.008000px;}
.ws21{word-spacing:-18.468000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.532000px;}
.ws2b{word-spacing:-17.142000px;}
.ws18{word-spacing:-16.992000px;}
.ws9{word-spacing:-16.897500px;}
.wsa{word-spacing:-16.875000px;}
.ws1c{word-spacing:-16.674000px;}
.ws2e{word-spacing:-16.617000px;}
.ws4{word-spacing:-16.524000px;}
.ws15{word-spacing:-15.984000px;}
.ws7{word-spacing:-15.516000px;}
.ws28{word-spacing:-15.354000px;}
.ws22{word-spacing:-15.345000px;}
.wse{word-spacing:-15.012000px;}
.wsf{word-spacing:-14.994000px;}
.ws1b{word-spacing:-14.976000px;}
.ws2f{word-spacing:-14.625000px;}
.ws2d{word-spacing:-14.544000px;}
.ws14{word-spacing:-14.508000px;}
.ws17{word-spacing:-13.896000px;}
.wsd{word-spacing:-13.518000px;}
.ws11{word-spacing:-13.500000px;}
.ws20{word-spacing:-13.482000px;}
.ws23{word-spacing:-13.137000px;}
.ws8{word-spacing:-12.885000px;}
.ws27{word-spacing:-12.375000px;}
.ws13{word-spacing:-12.006000px;}
.ws2c{word-spacing:-11.988000px;}
.ws2{word-spacing:-11.460000px;}
.ws12{word-spacing:-10.530000px;}
.ws19{word-spacing:-10.512000px;}
.ws10{word-spacing:-10.494000px;}
.ws24{word-spacing:-8.982000px;}
.ws26{word-spacing:-8.040000px;}
.ws0{word-spacing:0.000000px;}
._2d{margin-left:-14.064000px;}
._27{margin-left:-12.648000px;}
._53{margin-left:-10.824000px;}
._28{margin-left:-9.144000px;}
._9{margin-left:-7.992000px;}
._8{margin-left:-6.264000px;}
._d{margin-left:-5.004000px;}
._4{margin-left:-3.528000px;}
._0{margin-left:-2.520000px;}
._2{margin-left:-1.008000px;}
._1{width:1.944000px;}
._1a{width:3.240000px;}
._3{width:4.392000px;}
._a{width:5.400000px;}
._26{width:6.900000px;}
._5{width:8.136000px;}
._7{width:9.804000px;}
._3e{width:10.836000px;}
._b{width:12.072000px;}
._6{width:13.176000px;}
._1f{width:14.352000px;}
._25{width:15.756000px;}
._17{width:16.980000px;}
._44{width:18.066000px;}
._36{width:19.080000px;}
._43{width:20.208000px;}
._16{width:21.252000px;}
._e{width:22.632000px;}
._3a{width:23.844000px;}
._24{width:24.984000px;}
._c{width:26.640000px;}
._19{width:27.912000px;}
._49{width:28.968000px;}
._39{width:30.528000px;}
._1c{width:31.536000px;}
._12{width:32.664000px;}
._46{width:34.116000px;}
._10{width:35.424000px;}
._f{width:36.504000px;}
._11{width:37.740000px;}
._18{width:39.648000px;}
._15{width:40.956000px;}
._38{width:42.012000px;}
._14{width:44.496000px;}
._13{width:45.792000px;}
._52{width:47.640000px;}
._42{width:48.744000px;}
._1b{width:49.872000px;}
._3b{width:50.940000px;}
._3c{width:53.796000px;}
._23{width:54.924000px;}
._21{width:57.816000px;}
._22{width:59.220000px;}
._45{width:61.296000px;}
._32{width:62.580000px;}
._33{width:64.068000px;}
._20{width:67.548000px;}
._35{width:68.568000px;}
._4e{width:71.088000px;}
._34{width:72.636000px;}
._4a{width:75.672000px;}
._4d{width:77.040000px;}
._4b{width:80.088000px;}
._3d{width:81.120000px;}
._56{width:83.748000px;}
._55{width:86.148000px;}
._50{width:89.376000px;}
._54{width:91.032000px;}
._41{width:94.104000px;}
._4f{width:95.376000px;}
._3f{width:99.660000px;}
._40{width:102.864000px;}
._2b{width:104.160000px;}
._2a{width:107.832000px;}
._62{width:117.252000px;}
._60{width:121.428000px;}
._61{width:122.508000px;}
._47{width:136.092000px;}
._5f{width:148.452000px;}
._4c{width:152.364000px;}
._5e{width:153.972000px;}
._5d{width:157.392000px;}
._48{width:161.580000px;}
._5c{width:162.648000px;}
._59{width:175.452000px;}
._5a{width:177.456000px;}
._58{width:180.012000px;}
._57{width:181.716000px;}
._2e{width:184.860000px;}
._1e{width:193.800000px;}
._37{width:194.925000px;}
._1d{width:198.300000px;}
._30{width:257.172000px;}
._31{width:260.868000px;}
._2f{width:262.176000px;}
._29{width:310.980000px;}
._2c{width:504.720000px;}
._5b{width:1135.680000px;}
._51{width:2334.300000px;}
.fc7{color:rgb(84,141,212);}
.fc8{color:rgb(0,204,255);}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,255);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(51,102,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs8{font-size:40.500000px;}
.fs9{font-size:49.500000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:85.650000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:108.150000px;}
.y0{bottom:0.000000px;}
.y312{bottom:3.300000px;}
.y1d4{bottom:3.315000px;}
.y1cc{bottom:3.330000px;}
.y1a9{bottom:3.345000px;}
.y1da{bottom:3.346500px;}
.y10c{bottom:3.360000px;}
.y1ad{bottom:3.375000px;}
.y1c5{bottom:3.390000px;}
.y2cc{bottom:3.405000px;}
.ya0{bottom:3.412500px;}
.y1ba{bottom:3.420000px;}
.y1b0{bottom:3.435000px;}
.y304{bottom:3.465000px;}
.y3f8{bottom:4.425000px;}
.y1ef{bottom:4.440000px;}
.y16b{bottom:4.455000px;}
.y1d2{bottom:4.470000px;}
.y207{bottom:4.471500px;}
.y1de{bottom:4.485000px;}
.y176{bottom:4.500000px;}
.y1ce{bottom:4.515000px;}
.y18a{bottom:4.530000px;}
.y1e8{bottom:4.545000px;}
.y203{bottom:4.560000px;}
.y17b{bottom:5.550000px;}
.y2ec{bottom:5.625000px;}
.y193{bottom:5.640000px;}
.y182{bottom:5.655000px;}
.y181{bottom:5.670000px;}
.y2ff{bottom:6.750000px;}
.y2fe{bottom:6.795000px;}
.y3a7{bottom:7.875000px;}
.y396{bottom:7.905000px;}
.y39f{bottom:7.920000px;}
.y302{bottom:9.045000px;}
.y113{bottom:10.050000px;}
.y127{bottom:10.065000px;}
.y468{bottom:10.080000px;}
.y123{bottom:10.095000px;}
.y12e{bottom:10.096500px;}
.y136{bottom:10.110000px;}
.y116{bottom:10.125000px;}
.y132{bottom:10.140000px;}
.y492{bottom:10.155000px;}
.y4a2{bottom:10.170000px;}
.y480{bottom:11.205000px;}
.y474{bottom:11.220000px;}
.y44d{bottom:11.235000px;}
.y479{bottom:11.250000px;}
.y47b{bottom:11.265000px;}
.y47e{bottom:11.295000px;}
.y477{bottom:12.300000px;}
.y484{bottom:12.315000px;}
.y450{bottom:12.330000px;}
.y1a1{bottom:12.345000px;}
.y470{bottom:12.360000px;}
.y1b1{bottom:12.375000px;}
.y1ab{bottom:12.390000px;}
.y46d{bottom:12.405000px;}
.y1e2{bottom:12.420000px;}
.y46b{bottom:12.435000px;}
.y3ae{bottom:13.515000px;}
.y2f9{bottom:14.565000px;}
.y2e5{bottom:14.580000px;}
.y2b2{bottom:14.610000px;}
.y167{bottom:14.625000px;}
.y2c7{bottom:14.640000px;}
.y451{bottom:14.655000px;}
.y19c{bottom:14.670000px;}
.y2b0{bottom:14.730000px;}
.y49f{bottom:15.720000px;}
.y1c8{bottom:15.750000px;}
.y30d{bottom:15.765000px;}
.y17e{bottom:15.780000px;}
.y138{bottom:16.830000px;}
.y117{bottom:16.875000px;}
.y130{bottom:16.890000px;}
.y36d{bottom:16.905000px;}
.y141{bottom:16.920000px;}
.y125{bottom:17.940000px;}
.y10e{bottom:17.955000px;}
.y111{bottom:17.970000px;}
.y12c{bottom:17.971500px;}
.y121{bottom:17.985000px;}
.y7d{bottom:18.000000px;}
.y108{bottom:18.015000px;}
.y142{bottom:18.030000px;}
.y106{bottom:18.045000px;}
.y10a{bottom:19.110000px;}
.y469{bottom:21.330000px;}
.y19f{bottom:21.345000px;}
.y1bc{bottom:21.360000px;}
.y1b2{bottom:21.375000px;}
.y1ac{bottom:21.390000px;}
.y40e{bottom:21.420000px;}
.y1b8{bottom:21.435000px;}
.y1af{bottom:21.450000px;}
.y1c0{bottom:21.465000px;}
.y44e{bottom:23.580000px;}
.y475{bottom:23.595000px;}
.y483{bottom:23.610000px;}
.y46e{bottom:23.655000px;}
.y2da{bottom:24.720000px;}
.y16a{bottom:24.735000px;}
.y147{bottom:24.750000px;}
.y131{bottom:24.765000px;}
.y13b{bottom:24.780000px;}
.y115{bottom:24.795000px;}
.y49c{bottom:24.810000px;}
.y126{bottom:25.815000px;}
.y329{bottom:25.830000px;}
.y112{bottom:25.845000px;}
.y12d{bottom:25.846500px;}
.y135{bottom:25.860000px;}
.y12a{bottom:25.875000px;}
.y122{bottom:25.890000px;}
.y11f{bottom:25.905000px;}
.y149{bottom:25.920000px;}
.y18f{bottom:25.965000px;}
.y2f6{bottom:26.955000px;}
.y30e{bottom:26.970000px;}
.y1c9{bottom:27.030000px;}
.y2c9{bottom:27.045000px;}
.y3e5{bottom:28.095000px;}
.y1f6{bottom:28.125000px;}
.y3ea{bottom:28.140000px;}
.y201{bottom:28.155000px;}
.y4a1{bottom:28.200000px;}
.y42e{bottom:29.220000px;}
.y429{bottom:29.235000px;}
.y37b{bottom:29.280000px;}
.y3f2{bottom:29.295000px;}
.y3ff{bottom:30.330000px;}
.y423{bottom:30.345000px;}
.y41b{bottom:30.360000px;}
.y1a0{bottom:30.375000px;}
.y3ec{bottom:30.390000px;}
.y2f3{bottom:30.405000px;}
.y2fa{bottom:30.420000px;}
.y491{bottom:30.480000px;}
.y4ba{bottom:31.485000px;}
.y2d3{bottom:31.500000px;}
.y395{bottom:31.530000px;}
.y39e{bottom:31.545000px;}
.y35f{bottom:32.730000px;}
.y49e{bottom:33.750000px;}
.y366{bottom:33.795000px;}
.y473{bottom:34.845000px;}
.y10b{bottom:34.905000px;}
.y179{bottom:35.970000px;}
.y44f{bottom:35.985000px;}
.y17d{bottom:36.030000px;}
.y326{bottom:38.280000px;}
.yff{bottom:38.295000px;}
.y247{bottom:39.360000px;}
.y19e{bottom:39.375000px;}
.y1a8{bottom:39.390000px;}
.y1be{bottom:39.405000px;}
.yb0{bottom:39.420000px;}
.y494{bottom:39.465000px;}
.y3b0{bottom:42.750000px;}
.y49b{bottom:42.825000px;}
.y48e{bottom:45.030000px;}
.y467{bottom:45.075000px;}
.y178{bottom:46.095000px;}
.y169{bottom:46.110000px;}
.y2d5{bottom:46.125000px;}
.y2c6{bottom:46.140000px;}
.y191{bottom:46.155000px;}
.y175{bottom:46.170000px;}
.y17f{bottom:46.185000px;}
.y189{bottom:46.200000px;}
.y30c{bottom:47.265000px;}
.y18e{bottom:47.340000px;}
.y48f{bottom:48.420000px;}
.y327{bottom:50.655000px;}
.y3e4{bottom:51.750000px;}
.y406{bottom:51.780000px;}
.y3e9{bottom:51.795000px;}
.y2d9{bottom:54.000000px;}
.y9f{bottom:56.250000px;}
.y35d{bottom:56.295000px;}
.y1a7{bottom:57.390000px;}
.y1{bottom:57.412500px;}
.y1b7{bottom:57.465000px;}
.y354{bottom:58.500000px;}
.y363{bottom:58.530000px;}
.y359{bottom:58.545000px;}
.y365{bottom:58.560000px;}
.y350{bottom:58.590000px;}
.y36a{bottom:58.620000px;}
.y44c{bottom:60.735000px;}
.y49a{bottom:60.855000px;}
.y2d2{bottom:61.905000px;}
.y48d{bottom:63.060000px;}
.y174{bottom:66.465000px;}
.y17a{bottom:67.500000px;}
.y188{bottom:67.560000px;}
.y18c{bottom:67.590000px;}
.y1a6{bottom:75.420000px;}
.y1b6{bottom:75.465000px;}
.y2f4{bottom:76.575000px;}
.y2d4{bottom:77.655000px;}
.y2b1{bottom:77.685000px;}
.y499{bottom:78.855000px;}
.y48c{bottom:81.060000px;}
.y353{bottom:82.125000px;}
.y362{bottom:82.155000px;}
.y34f{bottom:82.200000px;}
.y357{bottom:83.325000px;}
.y173{bottom:87.840000px;}
.y187{bottom:87.855000px;}
.y1a5{bottom:93.420000px;}
.y1b9{bottom:93.450000px;}
.y1b5{bottom:93.495000px;}
.y498{bottom:96.855000px;}
.y48b{bottom:99.105000px;}
.y3a4{bottom:101.325000px;}
.y186{bottom:108.105000px;}
.y172{bottom:108.120000px;}
.y449{bottom:110.325000px;}
.y19a{bottom:111.450000px;}
.y1a4{bottom:111.465000px;}
.y383{bottom:112.575000px;}
.y338{bottom:113.700000px;}
.y393{bottom:113.730000px;}
.y39c{bottom:113.745000px;}
.yae{bottom:114.825000px;}
.y497{bottom:114.885000px;}
.yb1{bottom:115.950000px;}
.y3f1{bottom:117.075000px;}
.y48a{bottom:117.105000px;}
.y28f{bottom:118.200000px;}
.y9e{bottom:119.160030px;}
.y22e{bottom:119.325000px;}
.y12b{bottom:119.391000px;}
.yfd{bottom:120.487500px;}
.y28a{bottom:121.612500px;}
.y208{bottom:121.641000px;}
.y22{bottom:122.737500px;}
.y245{bottom:123.862500px;}
.y148{bottom:123.891000px;}
.y2b8{bottom:124.987500px;}
.y3a3{bottom:126.105000px;}
.y294{bottom:126.112500px;}
.y5e{bottom:127.237500px;}
.y388{bottom:128.362500px;}
.y1a3{bottom:129.450000px;}
.y324{bottom:129.487500px;}
.y171{bottom:129.495000px;}
.y185{bottom:129.525000px;}
.y2ea{bottom:130.612500px;}
.y2a7{bottom:131.737500px;}
.y1d9{bottom:131.766000px;}
.y495{bottom:132.855000px;}
.y104{bottom:132.862500px;}
.y264{bottom:133.987500px;}
.y445{bottom:135.112500px;}
.y22b{bottom:136.237500px;}
.y42{bottom:137.362500px;}
.y44a{bottom:138.487500px;}
.y346{bottom:139.612500px;}
.y376{bottom:140.737500px;}
.y199{bottom:141.862500px;}
.y289{bottom:142.987500px;}
.y375{bottom:144.112500px;}
.y378{bottom:145.237500px;}
.y206{bottom:145.266000px;}
.yad{bottom:146.362500px;}
.y1a2{bottom:147.450000px;}
.y28e{bottom:147.487500px;}
.yfc{bottom:148.612500px;}
.y184{bottom:149.775000px;}
.y170{bottom:149.790000px;}
.y9d{bottom:150.120000px;}
.y22d{bottom:150.870000px;}
.y165{bottom:151.995000px;}
.y2fc{bottom:153.105000px;}
.y21{bottom:154.245000px;}
.y244{bottom:155.370000px;}
.y1d8{bottom:155.385000px;}
.y14a{bottom:156.480000px;}
.y7c{bottom:157.620000px;}
.y461{bottom:158.745000px;}
.y45b{bottom:159.855000px;}
.y345{bottom:160.995000px;}
.y28b{bottom:162.150000px;}
.y103{bottom:163.275000px;}
.y270{bottom:164.400000px;}
.y263{bottom:165.525000px;}
.y129{bottom:166.650000px;}
.y1c3{bottom:167.775000px;}
.y41{bottom:168.900000px;}
.y205{bottom:170.025000px;}
.y16f{bottom:170.040000px;}
.y146{bottom:171.150000px;}
.y382{bottom:172.275000px;}
.y198{bottom:173.400000px;}
.y3f0{bottom:174.525000px;}
.y28d{bottom:175.650000px;}
.y22c{bottom:176.775000px;}
.y5d{bottom:177.900000px;}
.y3dc{bottom:179.025000px;}
.y1d7{bottom:180.150000px;}
.y9c{bottom:181.080000px;}
.y297{bottom:181.275000px;}
.y2fb{bottom:182.400000px;}
.y164{bottom:183.525000px;}
.y288{bottom:184.650000px;}
.y20{bottom:185.775000px;}
.y299{bottom:186.900000px;}
.y7b{bottom:188.025000px;}
.y293{bottom:189.150000px;}
.y28c{bottom:190.275000px;}
.y30f{bottom:191.400000px;}
.y16e{bottom:191.445000px;}
.y2e9{bottom:192.525000px;}
.y204{bottom:193.650000px;}
.y102{bottom:194.775000px;}
.y1c2{bottom:195.900000px;}
.y262{bottom:197.025000px;}
.y22a{bottom:198.150000px;}
.y218{bottom:199.275000px;}
.y40{bottom:200.400000px;}
.y3c3{bottom:201.525000px;}
.y344{bottom:202.650000px;}
.y197{bottom:203.820000px;}
.ye6{bottom:204.945000px;}
.y38a{bottom:206.070000px;}
.yfb{bottom:207.195000px;}
.yac{bottom:208.320000px;}
.y5c{bottom:209.445000px;}
.y443{bottom:210.570000px;}
.y16d{bottom:211.695000px;}
.y9b{bottom:212.400000px;}
.y296{bottom:212.820000px;}
.y128{bottom:213.945000px;}
.y447{bottom:215.070000px;}
.y1f{bottom:216.195000px;}
.y202{bottom:217.260000px;}
.y145{bottom:217.320000px;}
.y2b7{bottom:218.445000px;}
.y292{bottom:219.570000px;}
.y287{bottom:220.695000px;}
.ye5{bottom:221.820000px;}
.y343{bottom:222.945000px;}
.y1c1{bottom:224.070000px;}
.y2a9{bottom:225.195000px;}
.y101{bottom:226.320000px;}
.y1d6{bottom:227.445000px;}
.y32c{bottom:228.570000px;}
.y7a{bottom:229.695000px;}
.y3f{bottom:230.820000px;}
.y34b{bottom:231.945000px;}
.y16c{bottom:233.115000px;}
.y369{bottom:235.260000px;}
.y196{bottom:235.320000px;}
.y2d7{bottom:236.445000px;}
.y3eb{bottom:237.570000px;}
.ye4{bottom:238.695000px;}
.y5b{bottom:239.820000px;}
.y1bf{bottom:240.885000px;}
.y1bd{bottom:240.945000px;}
.y53{bottom:242.070000px;}
.y419{bottom:243.195000px;}
.y9a{bottom:243.360000px;}
.y377{bottom:244.320000px;}
.y163{bottom:245.475000px;}
.y298{bottom:246.600000px;}
.y3aa{bottom:246.660000px;}
.y1e{bottom:247.725000px;}
.y291{bottom:248.850000px;}
.y79{bottom:249.975000px;}
.y38c{bottom:251.100000px;}
.y442{bottom:252.225000px;}
.y1d5{bottom:252.285000px;}
.y38f{bottom:253.350000px;}
.y3ef{bottom:253.410000px;}
.y2e8{bottom:254.475000px;}
.ye3{bottom:255.600000px;}
.y446{bottom:256.725000px;}
.y26f{bottom:257.850000px;}
.y261{bottom:258.975000px;}
.y27f{bottom:260.100000px;}
.y124{bottom:260.160000px;}
.y229{bottom:261.225000px;}
.y40f{bottom:261.285000px;}
.y3e{bottom:262.350000px;}
.y36c{bottom:262.410000px;}
.y389{bottom:263.475000px;}
.y2f8{bottom:263.535000px;}
.y441{bottom:264.600000px;}
.y144{bottom:264.660000px;}
.y200{bottom:265.785000px;}
.y195{bottom:266.850000px;}
.y40d{bottom:267.975000px;}
.yfa{bottom:269.100000px;}
.yab{bottom:270.225000px;}
.y5a{bottom:271.350000px;}
.y428{bottom:272.475000px;}
.ye2{bottom:273.600000px;}
.y99{bottom:274.320000px;}
.y418{bottom:274.725000px;}
.y3a9{bottom:274.785000px;}
.y162{bottom:275.850000px;}
.y1d3{bottom:275.910000px;}
.y1d{bottom:278.100000px;}
.y243{bottom:279.225000px;}
.y2b6{bottom:280.350000px;}
.y3ee{bottom:280.410000px;}
.y38b{bottom:281.475000px;}
.y52{bottom:283.725000px;}
.y381{bottom:283.785000px;}
.y2e7{bottom:284.850000px;}
.y2a6{bottom:287.130000px;}
.y36b{bottom:288.285000px;}
.y260{bottom:289.380000px;}
.y1ff{bottom:289.410000px;}
.ye1{bottom:290.505000px;}
.y78{bottom:291.645000px;}
.y3db{bottom:291.660000px;}
.y3d{bottom:292.755000px;}
.y32b{bottom:292.785000px;}
.y34a{bottom:293.880000px;}
.y487{bottom:295.020000px;}
.y194{bottom:296.130000px;}
.y448{bottom:297.255000px;}
.y1bb{bottom:297.285000px;}
.y40c{bottom:298.395000px;}
.y1d1{bottom:299.535000px;}
.yf9{bottom:300.630000px;}
.y59{bottom:301.770000px;}
.y3a8{bottom:301.785000px;}
.y290{bottom:302.880000px;}
.y45a{bottom:305.145000px;}
.y98{bottom:305.280000px;}
.y342{bottom:306.255000px;}
.y3ed{bottom:306.285000px;}
.ye0{bottom:307.380000px;}
.y120{bottom:307.410000px;}
.y100{bottom:308.520000px;}
.y1c{bottom:309.630000px;}
.y380{bottom:309.660000px;}
.y242{bottom:310.755000px;}
.y2b5{bottom:311.895000px;}
.y143{bottom:311.910000px;}
.y77{bottom:313.005000px;}
.y460{bottom:314.130000px;}
.y1fe{bottom:314.160000px;}
.y444{bottom:316.380000px;}
.y2a5{bottom:317.505000px;}
.y433{bottom:318.645000px;}
.y3da{bottom:318.660000px;}
.y26e{bottom:319.755000px;}
.y25f{bottom:320.880000px;}
.y30b{bottom:320.910000px;}
.y27e{bottom:322.020000px;}
.y228{bottom:323.130000px;}
.y3c{bottom:324.255000px;}
.y1d0{bottom:324.285000px;}
.ydf{bottom:325.395000px;}
.y341{bottom:326.505000px;}
.y40b{bottom:326.535000px;}
.y3a6{bottom:328.800000px;}
.y374{bottom:331.050000px;}
.yf8{bottom:332.175000px;}
.y58{bottom:333.300000px;}
.y51{bottom:334.425000px;}
.y97{bottom:336.600000px;}
.y37f{bottom:336.675000px;}
.y1fd{bottom:337.800000px;}
.y161{bottom:338.925000px;}
.y2d6{bottom:340.050000px;}
.y192{bottom:341.160000px;}
.y190{bottom:341.175000px;}
.yde{bottom:342.300000px;}
.y2f7{bottom:343.425000px;}
.y3d9{bottom:344.550000px;}
.y459{bottom:345.675000px;}
.y340{bottom:346.800000px;}
.y1cf{bottom:347.925000px;}
.y2a4{bottom:349.050000px;}
.y26d{bottom:351.300000px;}
.y25e{bottom:352.425000px;}
.y76{bottom:353.550000px;}
.y11e{bottom:354.675000px;}
.y3b{bottom:355.800000px;}
.y32a{bottom:356.925000px;}
.y2e6{bottom:358.050000px;}
.ydd{bottom:359.175000px;}
.y1b{bottom:361.425000px;}
.yf7{bottom:362.550000px;}
.yaa{bottom:363.675000px;}
.y57{bottom:364.800000px;}
.y482{bottom:365.925000px;}
.y368{bottom:367.050000px;}
.y96{bottom:367.560000px;}
.y33f{bottom:368.175000px;}
.y160{bottom:369.300000px;}
.y3d8{bottom:370.455000px;}
.y1b4{bottom:371.535000px;}
.y1b3{bottom:371.580000px;}
.y241{bottom:372.720000px;}
.y2b4{bottom:373.830000px;}
.y75{bottom:374.955000px;}
.y2a8{bottom:376.095000px;}
.ydc{bottom:377.205000px;}
.y40a{bottom:378.285000px;}
.y409{bottom:378.330000px;}
.y2a3{bottom:379.470000px;}
.y1a{bottom:381.705000px;}
.y25d{bottom:382.845000px;}
.y3a5{bottom:383.955000px;}
.y50{bottom:385.080000px;}
.y1fc{bottom:386.205000px;}
.y3a{bottom:386.220000px;}
.y33e{bottom:387.330000px;}
.y37e{bottom:388.455000px;}
.y481{bottom:390.705000px;}
.y367{bottom:392.955000px;}
.y373{bottom:392.970000px;}
.ydb{bottom:394.080000px;}
.y56{bottom:395.205000px;}
.y1cd{bottom:396.330000px;}
.y3d7{bottom:397.455000px;}
.y95{bottom:398.520000px;}
.y417{bottom:398.580000px;}
.y3d2{bottom:399.705000px;}
.y15f{bottom:400.830000px;}
.y11d{bottom:401.955000px;}
.y432{bottom:403.080000px;}
.y19{bottom:403.095000px;}
.y18d{bottom:405.285000px;}
.y18b{bottom:405.330000px;}
.y140{bottom:406.455000px;}
.yb2{bottom:406.470000px;}
.y45f{bottom:407.580000px;}
.y458{bottom:408.705000px;}
.y1fb{bottom:409.830000px;}
.y4b8{bottom:409.845000px;}
.yda{bottom:410.955000px;}
.y3c2{bottom:412.125000px;}
.y26c{bottom:413.250000px;}
.y25c{bottom:414.375000px;}
.y2e4{bottom:414.420000px;}
.y27d{bottom:415.500000px;}
.y37d{bottom:415.545000px;}
.y74{bottom:416.625000px;}
.y39{bottom:417.750000px;}
.y2f5{bottom:417.795000px;}
.y3e8{bottom:418.920000px;}
.y416{bottom:420.000000px;}
.y1cb{bottom:420.045000px;}
.y328{bottom:421.170000px;}
.y18{bottom:423.375000px;}
.y3d6{bottom:423.420000px;}
.yf6{bottom:424.500000px;}
.ya9{bottom:425.625000px;}
.y3d1{bottom:425.670000px;}
.y55{bottom:426.750000px;}
.yd9{bottom:429.000000px;}
.y94{bottom:429.480000px;}
.y431{bottom:430.170000px;}
.y15e{bottom:431.250000px;}
.y30a{bottom:432.375000px;}
.y1fa{bottom:433.545000px;}
.y4f{bottom:434.625000px;}
.y73{bottom:436.875000px;}
.y45e{bottom:439.125000px;}
.y3a2{bottom:439.170000px;}
.y415{bottom:440.250000px;}
.y2d1{bottom:441.420000px;}
.y2a2{bottom:442.500000px;}
.y1ca{bottom:443.670000px;}
.y17{bottom:444.750000px;}
.y3fd{bottom:444.795000px;}
.yd8{bottom:445.875000px;}
.y361{bottom:445.920000px;}
.y27c{bottom:447.000000px;}
.y427{bottom:447.045000px;}
.y38{bottom:448.125000px;}
.y349{bottom:449.250000px;}
.y11c{bottom:449.295000px;}
.y440{bottom:451.500000px;}
.y3af{bottom:451.545000px;}
.y3c1{bottom:452.625000px;}
.y13f{bottom:452.670000px;}
.y37a{bottom:453.795000px;}
.y372{bottom:454.905000px;}
.yf5{bottom:456.045000px;}
.y54{bottom:457.170000px;}
.y1f9{bottom:458.295000px;}
.y465{bottom:459.420000px;}
.y93{bottom:460.440000px;}
.y2b3{bottom:460.545000px;}
.y309{bottom:461.655000px;}
.yd7{bottom:462.795000px;}
.y16{bottom:465.030000px;}
.y240{bottom:466.170000px;}
.y37c{bottom:467.295000px;}
.y1c7{bottom:468.420000px;}
.y45d{bottom:469.545000px;}
.y3fc{bottom:470.670000px;}
.y4b7{bottom:471.780000px;}
.y364{bottom:471.795000px;}
.y2a1{bottom:472.920000px;}
.y2f2{bottom:474.045000px;}
.y26b{bottom:475.155000px;}
.y25b{bottom:476.295000px;}
.y27b{bottom:477.420000px;}
.y72{bottom:478.530000px;}
.y3d0{bottom:478.545000px;}
.y217{bottom:479.670000px;}
.yd6{bottom:480.795000px;}
.y43f{bottom:481.905000px;}
.y1f8{bottom:481.920000px;}
.y3c0{bottom:483.045000px;}
.y4e{bottom:485.280000px;}
.y325{bottom:485.295000px;}
.y15{bottom:486.420000px;}
.yf4{bottom:487.545000px;}
.y37{bottom:488.655000px;}
.y308{bottom:489.795000px;}
.y183{bottom:490.920000px;}
.y92{bottom:491.760000px;}
.y47f{bottom:492.045000px;}
.y2e3{bottom:493.170000px;}
.y15d{bottom:494.295000px;}
.y11b{bottom:495.450000px;}
.y23f{bottom:496.575000px;}
.yd5{bottom:497.700000px;}
.y71{bottom:498.825000px;}
.y13e{bottom:499.950000px;}
.y457{bottom:501.075000px;}
.y3d5{bottom:502.200000px;}
.y2a0{bottom:504.450000px;}
.y1f7{bottom:505.545000px;}
.y1f5{bottom:505.575000px;}
.y26a{bottom:506.700000px;}
.y25a{bottom:507.825000px;}
.y27a{bottom:508.950000px;}
.y216{bottom:510.075000px;}
.y14{bottom:511.200000px;}
.y227{bottom:512.325000px;}
.y43e{bottom:513.450000px;}
.yd4{bottom:514.575000px;}
.y1c6{bottom:515.700000px;}
.yf3{bottom:517.950000px;}
.ya8{bottom:519.075000px;}
.y36{bottom:520.200000px;}
.y3a1{bottom:521.325000px;}
.y386{bottom:522.450000px;}
.y91{bottom:522.720000px;}
.y3fb{bottom:523.575000px;}
.y15c{bottom:524.700000px;}
.y426{bottom:525.825000px;}
.y23e{bottom:528.075000px;}
.y3b1{bottom:530.325000px;}
.y3cf{bottom:531.450000px;}
.yd3{bottom:532.575000px;}
.y4b6{bottom:533.700000px;}
.y13{bottom:534.825000px;}
.y4d{bottom:535.950000px;}
.y269{bottom:537.120000px;}
.y1ae{bottom:538.170000px;}
.y1aa{bottom:538.230000px;}
.y1c4{bottom:540.480000px;}
.y70{bottom:540.495000px;}
.y215{bottom:541.605000px;}
.y11a{bottom:542.730000px;}
.y226{bottom:542.745000px;}
.y307{bottom:543.870000px;}
.y3bf{bottom:544.980000px;}
.y13d{bottom:547.230000px;}
.y3a0{bottom:548.355000px;}
.y3fa{bottom:549.480000px;}
.yd2{bottom:549.495000px;}
.y35e{bottom:550.545000px;}
.y35c{bottom:550.605000px;}
.y35{bottom:550.620000px;}
.y2c8{bottom:551.730000px;}
.y425{bottom:552.855000px;}
.y2d0{bottom:552.870000px;}
.y90{bottom:553.680000px;}
.y1f4{bottom:553.980000px;}
.y2e2{bottom:553.995000px;}
.y3ad{bottom:556.230000px;}
.y15b{bottom:556.245000px;}
.y3cc{bottom:557.355000px;}
.y23d{bottom:558.480000px;}
.y12{bottom:559.620000px;}
.y430{bottom:560.730000px;}
.y6f{bottom:560.745000px;}
.y348{bottom:562.995000px;}
.y4b5{bottom:565.230000px;}
.yd1{bottom:566.370000px;}
.y47d{bottom:567.480000px;}
.y268{bottom:568.605000px;}
.y259{bottom:569.745000px;}
.y279{bottom:570.870000px;}
.y387{bottom:571.980000px;}
.y2af{bottom:573.045000px;}
.y2ae{bottom:573.105000px;}
.y214{bottom:573.120000px;}
.y225{bottom:574.245000px;}
.y39d{bottom:575.355000px;}
.y3e7{bottom:576.480000px;}
.y3be{bottom:576.495000px;}
.y1f3{bottom:577.605000px;}
.y422{bottom:578.805000px;}
.yf2{bottom:579.900000px;}
.ya7{bottom:581.025000px;}
.y34{bottom:582.150000px;}
.y11{bottom:583.275000px;}
.y3ce{bottom:583.305000px;}
.yd0{bottom:584.400000px;}
.y408{bottom:584.430000px;}
.y8f{bottom:584.640000px;}
.y4c{bottom:586.650000px;}
.y42d{bottom:587.805000px;}
.y3ac{bottom:588.900000px;}
.y23c{bottom:590.025000px;}
.y119{bottom:590.055000px;}
.y47c{bottom:592.305000px;}
.y31f{bottom:593.400000px;}
.y310{bottom:593.430000px;}
.y337{bottom:594.525000px;}
.y13c{bottom:594.555000px;}
.y4b4{bottom:595.650000px;}
.y4a4{bottom:596.775000px;}
.y29f{bottom:597.900000px;}
.y258{bottom:600.150000px;}
.ycf{bottom:601.275000px;}
.y6e{bottom:602.400000px;}
.y1f2{bottom:602.430000px;}
.y213{bottom:603.525000px;}
.y360{bottom:603.555000px;}
.y347{bottom:604.650000px;}
.y424{bottom:604.680000px;}
.y224{bottom:605.775000px;}
.y43d{bottom:606.900000px;}
.y10{bottom:608.025000px;}
.y2c5{bottom:608.055000px;}
.y4aa{bottom:610.275000px;}
.y3cd{bottom:610.305000px;}
.yf1{bottom:611.400000px;}
.y33{bottom:612.525000px;}
.y2cf{bottom:613.650000px;}
.y42f{bottom:613.680000px;}
.y336{bottom:614.775000px;}
.y2f1{bottom:615.900000px;}
.y8e{bottom:615.960000px;}
.y47a{bottom:617.055000px;}
.yce{bottom:618.150000px;}
.y3ab{bottom:619.275000px;}
.y3d4{bottom:620.445000px;}
.y23b{bottom:621.570000px;}
.y6d{bottom:623.820000px;}
.y385{bottom:624.945000px;}
.y1f1{bottom:626.070000px;}
.y4a3{bottom:627.195000px;}
.y29e{bottom:628.320000px;}
.y358{bottom:629.430000px;}
.y356{bottom:629.445000px;}
.y267{bottom:630.570000px;}
.yf{bottom:631.695000px;}
.y278{bottom:632.820000px;}
.y212{bottom:635.070000px;}
.y4b{bottom:636.195000px;}
.y118{bottom:637.320000px;}
.y384{bottom:638.445000px;}
.y2e1{bottom:639.570000px;}
.yf0{bottom:641.820000px;}
.ya6{bottom:642.945000px;}
.y32{bottom:644.070000px;}
.y2f0{bottom:645.195000px;}
.y456{bottom:646.320000px;}
.y8d{bottom:646.920000px;}
.y3d3{bottom:648.570000px;}
.y15a{bottom:649.695000px;}
.y2ad{bottom:650.820000px;}
.y23a{bottom:651.945000px;}
.ycd{bottom:653.070000px;}
.y31e{bottom:655.320000px;}
.ye{bottom:656.445000px;}
.y392{bottom:657.570000px;}
.y180{bottom:658.680000px;}
.y17c{bottom:658.695000px;}
.y29d{bottom:659.820000px;}
.y266{bottom:662.100000px;}
.y257{bottom:663.225000px;}
.y6c{bottom:664.350000px;}
.y211{bottom:665.475000px;}
.y335{bottom:666.600000px;}
.y223{bottom:668.850000px;}
.ycc{bottom:669.975000px;}
.y3cb{bottom:672.225000px;}
.yef{bottom:673.350000px;}
.ya5{bottom:674.475000px;}
.y31{bottom:675.600000px;}
.y45c{bottom:676.725000px;}
.y455{bottom:677.850000px;}
.y8c{bottom:677.880000px;}
.y2ac{bottom:678.975000px;}
.yd{bottom:680.100000px;}
.y3f9{bottom:681.225000px;}
.y35b{bottom:682.350000px;}
.y4a0{bottom:683.430000px;}
.y496{bottom:683.445000px;}
.y239{bottom:683.475000px;}
.y114{bottom:684.600000px;}
.y6b{bottom:685.725000px;}
.y4a{bottom:686.850000px;}
.ycb{bottom:687.975000px;}
.y29c{bottom:689.100000px;}
.y478{bottom:691.350000px;}
.y256{bottom:693.600000px;}
.y313{bottom:694.680000px;}
.y277{bottom:695.850000px;}
.y210{bottom:696.975000px;}
.y1f0{bottom:698.100000px;}
.y43c{bottom:699.225000px;}
.y3bd{bottom:700.350000px;}
.y222{bottom:701.475000px;}
.y2ef{bottom:702.645000px;}
.y4a9{bottom:703.755000px;}
.yca{bottom:704.880000px;}
.y30{bottom:706.020000px;}
.y3f7{bottom:707.205000px;}
.y2ab{bottom:708.255000px;}
.y35a{bottom:708.330000px;}
.y8b{bottom:708.840000px;}
.y159{bottom:711.630000px;}
.y39b{bottom:712.830000px;}
.y238{bottom:713.880000px;}
.y311{bottom:713.955000px;}
.y286{bottom:716.145000px;}
.y476{bottom:716.205000px;}
.y29b{bottom:717.255000px;}
.y2c4{bottom:718.380000px;}
.y295{bottom:720.630000px;}
.y3e6{bottom:720.705000px;}
.yc9{bottom:721.755000px;}
.y1ee{bottom:721.830000px;}
.y177{bottom:722.955000px;}
.y2ce{bottom:724.005000px;}
.y421{bottom:724.080000px;}
.y255{bottom:725.130000px;}
.y6a{bottom:726.270000px;}
.yc{bottom:727.380000px;}
.y3ca{bottom:727.455000px;}
.y20f{bottom:728.505000px;}
.y2ee{bottom:730.755000px;}
.y110{bottom:730.830000px;}
.y221{bottom:731.880000px;}
.y42c{bottom:733.020000px;}
.y2d8{bottom:734.205000px;}
.yee{bottom:735.255000px;}
.y13a{bottom:735.330000px;}
.ya4{bottom:736.395000px;}
.y2f{bottom:737.505000px;}
.y464{bottom:738.630000px;}
.yc8{bottom:739.770000px;}
.y39a{bottom:739.830000px;}
.y8a{bottom:740.160000px;}
.y158{bottom:742.005000px;}
.y29a{bottom:743.145000px;}
.y472{bottom:743.205000px;}
.y237{bottom:745.425000px;}
.y1ed{bottom:746.580000px;}
.yb{bottom:747.675000px;}
.y31d{bottom:748.800000px;}
.y4b3{bottom:751.050000px;}
.y420{bottom:751.080000px;}
.y49d{bottom:752.205000px;}
.y3c9{bottom:753.330000px;}
.y407{bottom:754.455000px;}
.y254{bottom:755.550000px;}
.yc7{bottom:756.675000px;}
.y276{bottom:757.800000px;}
.y2de{bottom:757.830000px;}
.y20e{bottom:758.925000px;}
.y19d{bottom:758.955000px;}
.y334{bottom:760.050000px;}
.y355{bottom:761.205000px;}
.y43b{bottom:762.300000px;}
.y220{bottom:763.425000px;}
.y2aa{bottom:764.550000px;}
.y4a8{bottom:765.675000px;}
.yed{bottom:766.800000px;}
.y2e{bottom:767.925000px;}
.y399{bottom:767.955000px;}
.ya{bottom:769.050000px;}
.y3f6{bottom:770.175000px;}
.y1ec{bottom:770.205000px;}
.y89{bottom:771.120000px;}
.y454{bottom:771.300000px;}
.yc6{bottom:773.550000px;}
.y305{bottom:775.830000px;}
.y236{bottom:776.925000px;}
.y41f{bottom:776.955000px;}
.y285{bottom:778.050000px;}
.y10f{bottom:778.080000px;}
.y3c8{bottom:779.205000px;}
.y31c{bottom:780.300000px;}
.y2eb{bottom:780.330000px;}
.y4b2{bottom:782.550000px;}
.y139{bottom:782.580000px;}
.y2df{bottom:783.705000px;}
.y306{bottom:784.830000px;}
.y20d{bottom:787.080000px;}
.y49{bottom:788.205000px;}
.y9{bottom:789.330000px;}
.y333{bottom:790.455000px;}
.yc5{bottom:791.580000px;}
.y43a{bottom:792.705000px;}
.y1eb{bottom:793.830000px;}
.y398{bottom:794.955000px;}
.yec{bottom:797.205000px;}
.ya3{bottom:798.330000px;}
.y2d{bottom:799.455000px;}
.y2e0{bottom:800.580000px;}
.y453{bottom:801.705000px;}
.y88{bottom:802.080000px;}
.y41e{bottom:802.830000px;}
.y157{bottom:803.955000px;}
.y2c3{bottom:805.080000px;}
.y3c7{bottom:806.205000px;}
.y405{bottom:806.220000px;}
.y235{bottom:807.330000px;}
.yc4{bottom:808.455000px;}
.y69{bottom:809.580000px;}
.y31b{bottom:810.705000px;}
.y20c{bottom:811.830000px;}
.y42b{bottom:812.955000px;}
.y2ed{bottom:814.080000px;}
.y19b{bottom:815.205000px;}
.y371{bottom:816.330000px;}
.y2dc{bottom:817.455000px;}
.y1ea{bottom:818.580000px;}
.y275{bottom:819.705000px;}
.y3e3{bottom:820.830000px;}
.y332{bottom:821.955000px;}
.y394{bottom:821.970000px;}
.y2fd{bottom:823.080000px;}
.y3f5{bottom:824.205000px;}
.yc3{bottom:825.330000px;}
.y21f{bottom:826.455000px;}
.yeb{bottom:828.750000px;}
.y300{bottom:829.830000px;}
.y2c{bottom:829.875000px;}
.y4ad{bottom:831.000000px;}
.y3c6{bottom:832.125000px;}
.y87{bottom:833.040000px;}
.y493{bottom:833.205000px;}
.y2c2{bottom:833.250000px;}
.y2db{bottom:835.455000px;}
.y156{bottom:835.500000px;}
.y48{bottom:838.875000px;}
.y2dd{bottom:839.955000px;}
.y284{bottom:840.000000px;}
.y20b{bottom:841.125000px;}
.y1e9{bottom:842.250000px;}
.yc2{bottom:843.375000px;}
.y4b1{bottom:844.500000px;}
.y3e2{bottom:846.750000px;}
.y301{bottom:847.830000px;}
.y253{bottom:849.000000px;}
.y397{bottom:850.125000px;}
.y68{bottom:851.250000px;}
.y331{bottom:853.500000px;}
.y439{bottom:854.625000px;}
.y3bc{bottom:855.750000px;}
.y21e{bottom:858.000000px;}
.y4a7{bottom:859.125000px;}
.yc1{bottom:860.250000px;}
.y2c0{bottom:861.330000px;}
.y2b{bottom:861.375000px;}
.y463{bottom:863.625000px;}
.y86{bottom:864.360000px;}
.y155{bottom:864.750000px;}
.y303{bottom:865.830000px;}
.y1e7{bottom:865.875000px;}
.y471{bottom:867.000000px;}
.y20a{bottom:869.295000px;}
.y2be{bottom:870.465000px;}
.y67{bottom:871.545000px;}
.y31a{bottom:872.670000px;}
.y10d{bottom:872.715000px;}
.y33d{bottom:873.795000px;}
.y3e1{bottom:873.840000px;}
.y4b0{bottom:876.045000px;}
.yc0{bottom:877.170000px;}
.y137{bottom:877.215000px;}
.y2bf{bottom:879.465000px;}
.y252{bottom:880.545000px;}
.y404{bottom:880.590000px;}
.y274{bottom:881.670000px;}
.y41a{bottom:881.715000px;}
.y330{bottom:883.920000px;}
.y154{bottom:885.045000px;}
.y3c5{bottom:885.090000px;}
.y438{bottom:886.170000px;}
.y370{bottom:886.215000px;}
.y3bb{bottom:887.295000px;}
.y2bb{bottom:887.340000px;}
.y47{bottom:888.420000px;}
.yea{bottom:890.670000px;}
.y1e6{bottom:890.715000px;}
.ya2{bottom:891.795000px;}
.y42a{bottom:891.840000px;}
.y2a{bottom:892.920000px;}
.y352{bottom:892.965000px;}
.y462{bottom:894.045000px;}
.ybf{bottom:895.170000px;}
.y85{bottom:895.320000px;}
.y2ba{bottom:896.340000px;}
.y209{bottom:897.420000px;}
.y486{bottom:899.670000px;}
.y3e0{bottom:899.715000px;}
.y234{bottom:900.795000px;}
.y283{bottom:903.045000px;}
.y2bd{bottom:903.090000px;}
.y319{bottom:904.170000px;}
.y391{bottom:904.215000px;}
.y33c{bottom:905.295000px;}
.y437{bottom:906.420000px;}
.y403{bottom:907.590000px;}
.y41d{bottom:908.715000px;}
.y251{bottom:910.950000px;}
.y3c4{bottom:910.965000px;}
.ybe{bottom:912.075000px;}
.y36f{bottom:912.090000px;}
.y66{bottom:913.200000px;}
.y2b9{bottom:913.215000px;}
.y1e5{bottom:914.340000px;}
.y32f{bottom:915.450000px;}
.y452{bottom:916.575000px;}
.y46f{bottom:916.590000px;}
.y3ba{bottom:918.825000px;}
.y351{bottom:918.840000px;}
.y21d{bottom:919.950000px;}
.y109{bottom:919.965000px;}
.y4a6{bottom:921.075000px;}
.ye9{bottom:922.200000px;}
.y29{bottom:923.325000px;}
.y134{bottom:923.340000px;}
.y318{bottom:924.450000px;}
.y24d{bottom:925.575000px;}
.y3df{bottom:925.590000px;}
.y84{bottom:926.280000px;}
.y436{bottom:927.825000px;}
.ybd{bottom:928.950000px;}
.y2c1{bottom:930.090000px;}
.y233{bottom:932.325000px;}
.y65{bottom:933.450000px;}
.y402{bottom:933.465000px;}
.y41c{bottom:934.590000px;}
.y153{bottom:935.700000px;}
.y390{bottom:936.825000px;}
.y4af{bottom:937.950000px;}
.y1e4{bottom:937.965000px;}
.y46{bottom:939.075000px;}
.y2bc{bottom:939.090000px;}
.y3b6{bottom:941.325000px;}
.y250{bottom:942.450000px;}
.y273{bottom:943.575000px;}
.y46c{bottom:943.590000px;}
.y34e{bottom:944.715000px;}
.y379{bottom:945.825000px;}
.ybc{bottom:946.950000px;}
.y3b9{bottom:949.200000px;}
.ye8{bottom:952.620000px;}
.y485{bottom:953.745000px;}
.y2cd{bottom:954.840000px;}
.y28{bottom:954.870000px;}
.y24c{bottom:955.995000px;}
.y32e{bottom:957.120000px;}
.y83{bottom:957.240000px;}
.y414{bottom:958.245000px;}
.y152{bottom:959.370000px;}
.y1e3{bottom:962.745000px;}
.ybb{bottom:963.870000px;}
.y282{bottom:964.995000px;}
.y317{bottom:966.120000px;}
.y33b{bottom:967.245000px;}
.y4ae{bottom:968.370000px;}
.y435{bottom:969.495000px;}
.y107{bottom:970.605000px;}
.y8{bottom:970.620000px;}
.y3b5{bottom:971.745000px;}
.y24f{bottom:973.995000px;}
.y64{bottom:975.120000px;}
.y34d{bottom:977.370000px;}
.y3de{bottom:978.480000px;}
.y3dd{bottom:978.495000px;}
.y2cb{bottom:980.715000px;}
.yba{bottom:980.745000px;}
.y3f4{bottom:981.855000px;}
.y151{bottom:982.995000px;}
.ye7{bottom:984.120000px;}
.y27{bottom:985.245000px;}
.y1e1{bottom:986.355000px;}
.y4ac{bottom:986.370000px;}
.y24b{bottom:987.495000px;}
.y82{bottom:988.560000px;}
.y45{bottom:989.745000px;}
.y36e{bottom:990.855000px;}
.y7{bottom:990.870000px;}
.y46a{bottom:993.090000px;}
.y466{bottom:993.120000px;}
.y232{bottom:994.275000px;}
.ya1{bottom:995.400000px;}
.y63{bottom:996.525000px;}
.y33a{bottom:997.650000px;}
.yb9{bottom:998.775000px;}
.y434{bottom:999.900000px;}
.y3b4{bottom:1001.025000px;}
.y3b7{bottom:1003.275000px;}
.y24e{bottom:1004.400000px;}
.y150{bottom:1005.525000px;}
.y2ca{bottom:1006.590000px;}
.y272{bottom:1006.650000px;}
.y316{bottom:1007.775000px;}
.y34c{bottom:1008.900000px;}
.y1e0{bottom:1010.025000px;}
.y3b8{bottom:1011.150000px;}
.y490{bottom:1012.215000px;}
.y401{bottom:1012.275000px;}
.y21c{bottom:1014.525000px;}
.yb8{bottom:1015.650000px;}
.y26{bottom:1016.775000px;}
.y105{bottom:1017.900000px;}
.y32d{bottom:1019.025000px;}
.y81{bottom:1019.520000px;}
.y413{bottom:1021.275000px;}
.y6{bottom:1022.400000px;}
.y231{bottom:1024.650000px;}
.y320{bottom:1025.775000px;}
.y281{bottom:1026.900000px;}
.y14f{bottom:1029.150000px;}
.y3b3{bottom:1031.400000px;}
.yb7{bottom:1032.525000px;}
.yfe{bottom:1033.650000px;}
.yaf{bottom:1034.775000px;}
.y265{bottom:1035.945000px;}
.y62{bottom:1037.070000px;}
.y3fe{bottom:1038.240000px;}
.y323{bottom:1039.320000px;}
.y44{bottom:1040.445000px;}
.y44b{bottom:1041.615000px;}
.y246{bottom:1042.740000px;}
.y21b{bottom:1046.070000px;}
.y280{bottom:1047.195000px;}
.y25{bottom:1048.320000px;}
.y4ab{bottom:1048.365000px;}
.y24a{bottom:1049.445000px;}
.y4b9{bottom:1049.490000px;}
.y80{bottom:1050.480000px;}
.yb6{bottom:1050.570000px;}
.y412{bottom:1051.695000px;}
.y5{bottom:1052.820000px;}
.y61{bottom:1058.445000px;}
.y1df{bottom:1058.490000px;}
.y168{bottom:1059.615000px;}
.y339{bottom:1060.695000px;}
.y3f3{bottom:1060.740000px;}
.y3b2{bottom:1061.820000px;}
.y38e{bottom:1064.070000px;}
.y133{bottom:1065.240000px;}
.yb5{bottom:1067.445000px;}
.y271{bottom:1068.570000px;}
.y322{bottom:1070.820000px;}
.y411{bottom:1073.070000px;}
.y14e{bottom:1075.320000px;}
.y21a{bottom:1077.600000px;}
.y489{bottom:1077.615000px;}
.y24{bottom:1078.725000px;}
.y249{bottom:1080.975000px;}
.y7f{bottom:1081.440000px;}
.y1dd{bottom:1082.115000px;}
.y4{bottom:1084.350000px;}
.y43{bottom:1091.100000px;}
.y400{bottom:1091.115000px;}
.y38d{bottom:1093.350000px;}
.y14d{bottom:1098.975000px;}
.y60{bottom:1100.100000px;}
.y321{bottom:1101.225000px;}
.yb4{bottom:1102.350000px;}
.y410{bottom:1103.475000px;}
.y1dc{bottom:1106.865000px;}
.y219{bottom:1109.100000px;}
.y23{bottom:1110.225000px;}
.y248{bottom:1111.350000px;}
.y3{bottom:1112.475000px;}
.y12f{bottom:1112.490000px;}
.y7e{bottom:1112.760000px;}
.y5f{bottom:1120.380000px;}
.y14c{bottom:1122.630000px;}
.y166{bottom:1123.755000px;}
.y1db{bottom:1130.505000px;}
.y488{bottom:1131.630000px;}
.y315{bottom:1132.755000px;}
.y2{bottom:1140.630000px;}
.y4a5{bottom:1141.755000px;}
.y230{bottom:1142.880000px;}
.y14b{bottom:1145.130000px;}
.y22f{bottom:1173.300000px;}
.y314{bottom:1183.425000px;}
.yb3{bottom:1194.675000px;}
.hb{height:16.875000px;}
.h64{height:18.000000px;}
.h65{height:18.141000px;}
.h57{height:21.375000px;}
.h95{height:22.440000px;}
.h92{height:22.455000px;}
.h93{height:22.470000px;}
.h8b{height:22.485000px;}
.h96{height:22.492500px;}
.h5f{height:22.500000px;}
.h94{height:22.537500px;}
.h58{height:22.641000px;}
.h7c{height:23.550000px;}
.h3e{height:23.565000px;}
.h42{height:23.580000px;}
.h6e{height:23.587500px;}
.h4e{height:23.595000px;}
.h4a{height:23.596500px;}
.h47{height:23.602500px;}
.h45{height:23.610000px;}
.h4c{height:23.617500px;}
.h46{height:23.625000px;}
.h43{height:23.662500px;}
.h71{height:24.675000px;}
.h4d{height:24.690000px;}
.h44{height:24.705000px;}
.h4f{height:24.712500px;}
.h3f{height:24.720000px;}
.h79{height:24.727500px;}
.h4b{height:24.735000px;}
.h41{height:24.742500px;}
.h49{height:24.750000px;}
.h48{height:24.787500px;}
.h30{height:28.125000px;}
.h62{height:30.352500px;}
.h25{height:30.360000px;}
.h5a{height:31.537500px;}
.h38{height:35.970000px;}
.h5b{height:35.985000px;}
.h21{height:41.602500px;}
.h22{height:41.610000px;}
.h1e{height:41.617500px;}
.h1f{height:41.625000px;}
.h1c{height:41.662500px;}
.h1b{height:42.712500px;}
.h1d{height:42.720000px;}
.h19{height:42.727500px;}
.h17{height:42.735000px;}
.h20{height:42.742500px;}
.h1a{height:42.750000px;}
.h15{height:42.787500px;}
.h18{height:46.125000px;}
.h8c{height:47.242500px;}
.h40{height:47.250000px;}
.h90{height:47.325000px;}
.h91{height:47.391000px;}
.h50{height:48.345000px;}
.h51{height:48.346500px;}
.h52{height:48.375000px;}
.h3b{height:48.410156px;}
.h53{height:48.412500px;}
.h54{height:48.516000px;}
.h8f{height:48.557373px;}
.h77{height:49.500000px;}
.h83{height:49.537500px;}
.h84{height:49.575000px;}
.h8e{height:49.886719px;}
.h80{height:50.610000px;}
.h86{height:50.617500px;}
.h81{height:50.625000px;}
.h7f{height:50.662500px;}
.h75{height:50.700000px;}
.h7e{height:51.735000px;}
.h7b{height:51.825000px;}
.h67{height:52.852500px;}
.h59{height:52.912500px;}
.h23{height:52.971680px;}
.h33{height:52.998047px;}
.h61{height:53.992500px;}
.h32{height:54.000000px;}
.h36{height:54.037500px;}
.h3d{height:54.075000px;}
.h37{height:54.141000px;}
.h31{height:54.421875px;}
.h16{height:56.320312px;}
.h10{height:57.414551px;}
.hc{height:58.957031px;}
.h63{height:61.013672px;}
.h2f{height:61.855500px;}
.h6a{height:61.860000px;}
.h5e{height:61.866000px;}
.h69{height:61.867500px;}
.h26{height:61.875000px;}
.h2a{height:61.950000px;}
.h2b{height:62.016000px;}
.h66{height:63.000000px;}
.h9a{height:63.037500px;}
.h9b{height:63.141000px;}
.h24{height:64.546875px;}
.ha4{height:65.242500px;}
.h11{height:66.214600px;}
.hf{height:66.247559px;}
.h9c{height:66.375000px;}
.ha2{height:66.450000px;}
.ha3{height:66.516000px;}
.h76{height:66.728760px;}
.h5{height:68.027344px;}
.h13{height:70.628906px;}
.h4{height:70.664062px;}
.h5c{height:70.875000px;}
.ha5{height:71.081543px;}
.h9{height:71.982422px;}
.h8a{height:71.992500px;}
.h3c{height:72.000000px;}
.h89{height:72.037500px;}
.h87{height:72.075000px;}
.h88{height:72.141000px;}
.h6{height:72.562500px;}
.h14{height:75.093750px;}
.h82{height:76.485000px;}
.h85{height:76.492500px;}
.h68{height:76.500000px;}
.h72{height:76.575000px;}
.h73{height:76.641000px;}
.ha1{height:78.750000px;}
.h97{height:78.825000px;}
.hd{height:79.950000px;}
.h55{height:81.000000px;}
.h12{height:81.075000px;}
.h29{height:83.250000px;}
.h2d{height:83.325000px;}
.h2e{height:83.391000px;}
.h7{height:86.319141px;}
.h8d{height:90.111000px;}
.h60{height:92.250000px;}
.h56{height:93.375000px;}
.ha{height:95.923828px;}
.h6d{height:102.375000px;}
.h6b{height:102.450000px;}
.h6c{height:102.516000px;}
.h6f{height:103.575000px;}
.h74{height:103.593000px;}
.h70{height:103.641000px;}
.h9d{height:108.075000px;}
.h9e{height:108.141000px;}
.he{height:108.994922px;}
.h5d{height:112.797070px;}
.h39{height:126.084000px;}
.h3a{height:126.141000px;}
.h98{height:131.719500px;}
.h99{height:131.766000px;}
.h9f{height:147.478500px;}
.ha0{height:147.516000px;}
.h34{height:162.120000px;}
.h35{height:162.135000px;}
.h2c{height:165.510000px;}
.h7d{height:243.120000px;}
.h7a{height:243.225000px;}
.h27{height:248.850000px;}
.h28{height:248.910000px;}
.h78{height:764.550000px;}
.h8{height:1226.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h2{height:1263.375000px;}
.h3{height:1263.750000px;}
.w4{width:6.750000px;}
.w2e{width:7.875000px;}
.w6{width:15.750000px;}
.w59{width:21.375000px;}
.w37{width:21.516000px;}
.w82{width:22.500000px;}
.w5a{width:24.750000px;}
.w33{width:24.891000px;}
.w34{width:25.875000px;}
.w38{width:26.016000px;}
.w4d{width:29.250000px;}
.w4a{width:29.391000px;}
.w35{width:33.750000px;}
.w36{width:33.891000px;}
.w61{width:34.875000px;}
.w4f{width:35.016000px;}
.w49{width:38.250000px;}
.w5b{width:38.391000px;}
.w39{width:41.625000px;}
.w4c{width:42.750000px;}
.w4b{width:42.891000px;}
.w96{width:43.912500px;}
.w94{width:44.992500px;}
.w95{width:45.000000px;}
.w97{width:45.075000px;}
.w9a{width:47.220000px;}
.w99{width:47.325000px;}
.w98{width:48.375000px;}
.w4e{width:51.891000px;}
.w6b{width:57.441000px;}
.w80{width:65.361000px;}
.w76{width:67.500000px;}
.w6e{width:69.825000px;}
.w6a{width:70.875000px;}
.w6d{width:70.957500px;}
.w74{width:72.075000px;}
.w73{width:76.581000px;}
.wa8{width:77.700000px;}
.w19{width:77.737500px;}
.w1f{width:77.766000px;}
.wa6{width:78.750000px;}
.wa5{width:78.825000px;}
.w77{width:78.846000px;}
.wc{width:78.862500px;}
.w12{width:78.891000px;}
.wb0{width:82.125000px;}
.wb1{width:82.236000px;}
.waf{width:83.362500px;}
.w48{width:84.486000px;}
.w46{width:85.500000px;}
.w47{width:85.596000px;}
.w6c{width:85.612500px;}
.w57{width:86.625000px;}
.w7c{width:87.831000px;}
.w58{width:87.846000px;}
.w7b{width:87.847500px;}
.w87{width:87.861000px;}
.w75{width:87.862500px;}
.w64{width:91.221000px;}
.w78{width:91.236000px;}
.w89{width:92.316000px;}
.wa4{width:92.331000px;}
.wa7{width:92.346000px;}
.w9f{width:92.355000px;}
.w8f{width:92.361000px;}
.wad{width:92.362500px;}
.wa9{width:93.507000px;}
.w79{width:95.721000px;}
.w45{width:99.067500px;}
.w44{width:100.237500px;}
.w1d{width:101.331000px;}
.w24{width:101.334000px;}
.w25{width:101.391000px;}
.w55{width:102.456000px;}
.w10{width:102.486000px;}
.wb5{width:102.495000px;}
.w16{width:102.496500px;}
.w17{width:102.516000px;}
.wbe{width:103.620000px;}
.w56{width:103.650000px;}
.w88{width:105.831000px;}
.wa0{width:105.832500px;}
.wa1{width:105.840000px;}
.wba{width:105.843000px;}
.w14{width:105.844500px;}
.wf{width:105.846000px;}
.wb6{width:105.847500px;}
.w8a{width:105.861000px;}
.w8{width:105.862500px;}
.w90{width:105.876000px;}
.w15{width:105.891000px;}
.w22{width:106.969500px;}
.w1c{width:106.971000px;}
.wbf{width:106.972500px;}
.w23{width:107.016000px;}
.w18{width:108.132000px;}
.w1e{width:108.141000px;}
.w13{width:112.603500px;}
.we{width:112.611000px;}
.wb{width:112.632000px;}
.w11{width:112.641000px;}
.w54{width:113.625000px;}
.w7f{width:113.745000px;}
.wae{width:113.766000px;}
.w20{width:121.603500px;}
.w1b{width:121.611000px;}
.w21{width:121.641000px;}
.wb3{width:122.812500px;}
.wb7{width:122.907000px;}
.wbc{width:123.937500px;}
.w43{width:124.965000px;}
.wb2{width:128.344500px;}
.wb4{width:128.355000px;}
.wb8{width:128.362500px;}
.wb9{width:128.391000px;}
.wbd{width:130.605000px;}
.w67{width:130.641000px;}
.w9b{width:131.752500px;}
.w83{width:131.757000px;}
.w8c{width:131.766000px;}
.w81{width:132.876000px;}
.w8b{width:132.882000px;}
.w52{width:132.891000px;}
.w6f{width:136.219500px;}
.w3f{width:136.255500px;}
.w42{width:136.260000px;}
.w40{width:136.266000px;}
.wc0{width:138.507000px;}
.wc4{width:138.516000px;}
.w3b{width:138.562500px;}
.w3c{width:138.657000px;}
.w3d{width:140.746500px;}
.w41{width:140.752500px;}
.w3e{width:140.766000px;}
.w2a{width:143.002500px;}
.wd{width:145.266000px;}
.w5c{width:146.371500px;}
.w60{width:146.376000px;}
.w5d{width:146.391000px;}
.w30{width:146.437500px;}
.w31{width:146.532000px;}
.w26{width:147.502500px;}
.w50{width:147.562500px;}
.w51{width:147.657000px;}
.w1a{width:150.885000px;}
.w70{width:150.930000px;}
.wc3{width:153.120000px;}
.wc7{width:153.135000px;}
.w91{width:154.350000px;}
.wc1{width:156.555000px;}
.wc5{width:156.660000px;}
.w71{width:157.635000px;}
.w69{width:158.745000px;}
.w68{width:158.850000px;}
.w53{width:159.870000px;}
.w32{width:159.885000px;}
.w5e{width:159.960000px;}
.w5f{width:160.035000px;}
.wac{width:163.245000px;}
.wab{width:167.760000px;}
.w3a{width:168.885000px;}
.w65{width:170.100000px;}
.w62{width:171.225000px;}
.w28{width:172.260000px;}
.w72{width:172.350000px;}
.w2f{width:173.385000px;}
.wa3{width:173.430000px;}
.w27{width:176.850000px;}
.wc2{width:179.100000px;}
.wc6{width:179.160000px;}
.w2b{width:181.335000px;}
.w2d{width:181.350000px;}
.w2c{width:181.410000px;}
.w7e{width:183.600000px;}
.w66{width:183.645000px;}
.w7{width:192.645000px;}
.w85{width:200.475000px;}
.w9d{width:200.520000px;}
.waa{width:208.395000px;}
.w9e{width:213.975000px;}
.w86{width:214.005000px;}
.w8e{width:214.035000px;}
.w92{width:233.130000px;}
.w93{width:247.770000px;}
.w7d{width:299.625000px;}
.w63{width:306.360000px;}
.wc8{width:334.530000px;}
.wc9{width:334.545000px;}
.w9{width:344.655000px;}
.w7a{width:388.620000px;}
.w9c{width:416.775000px;}
.wbb{width:469.725000px;}
.w29{width:496.695000px;}
.w84{width:506.895000px;}
.wa2{width:523.770000px;}
.w8d{width:524.895000px;}
.w5{width:646.575000px;}
.wa{width:647.700000px;}
.w3{width:856.440000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:1.125000px;}
.x57{left:2.235000px;}
.x3a{left:3.375000px;}
.x53{left:4.500000px;}
.x38{left:5.625000px;}
.x56{left:6.750000px;}
.x75{left:7.860000px;}
.x76{left:9.000000px;}
.x72{left:10.125000px;}
.x7c{left:11.280000px;}
.x6a{left:12.412500px;}
.x63{left:13.485000px;}
.x2e{left:14.625000px;}
.x64{left:15.750000px;}
.x3c{left:16.860000px;}
.x11{left:18.000000px;}
.x79{left:19.155000px;}
.x60{left:20.250000px;}
.x48{left:21.405000px;}
.x73{left:22.537500px;}
.x32{left:23.655000px;}
.x5b{left:24.780000px;}
.x59{left:25.905000px;}
.x77{left:27.030000px;}
.x49{left:28.155000px;}
.x43{left:29.280000px;}
.x2d{left:30.405000px;}
.x3e{left:31.530000px;}
.x4c{left:32.655000px;}
.x35{left:33.780000px;}
.x37{left:34.905000px;}
.x46{left:36.030000px;}
.x51{left:37.155000px;}
.x4b{left:38.280000px;}
.x4f{left:39.405000px;}
.x29{left:40.530000px;}
.x86{left:41.670000px;}
.x33{left:42.780000px;}
.x85{left:43.935000px;}
.x4e{left:45.075000px;}
.x82{left:46.170000px;}
.x31{left:47.325000px;}
.x70{left:48.405000px;}
.x68{left:49.530000px;}
.x7b{left:50.700000px;}
.x6e{left:51.825000px;}
.x7a{left:52.920000px;}
.x83{left:54.084000px;}
.x74{left:55.209000px;}
.x78{left:56.355000px;}
.x7f{left:57.450000px;}
.x96{left:58.575000px;}
.x50{left:59.700000px;}
.x84{left:60.855000px;}
.x93{left:61.890000px;}
.x8c{left:63.060000px;}
.x91{left:64.140000px;}
.x61{left:65.325000px;}
.x8a{left:66.420000px;}
.x62{left:67.560000px;}
.x67{left:68.745000px;}
.x44{left:69.870000px;}
.x3b{left:70.995000px;}
.x52{left:72.120000px;}
.x34{left:73.245000px;}
.x2c{left:74.370000px;}
.x3d{left:75.435000px;}
.x41{left:76.620000px;}
.x54{left:77.685000px;}
.xee{left:78.870000px;}
.xed{left:79.935000px;}
.xad{left:81.045000px;}
.x27{left:82.245000px;}
.x90{left:83.295000px;}
.x69{left:88.980000px;}
.x120{left:90.075000px;}
.x47{left:91.230000px;}
.x4d{left:92.355000px;}
.x58{left:97.980000px;}
.x30{left:99.105000px;}
.x122{left:101.325000px;}
.x5a{left:106.980000px;}
.x2a{left:108.105000px;}
.x12{left:109.439925px;}
.x5e{left:111.480000px;}
.x97{left:112.590000px;}
.x119{left:116.025000px;}
.x11e{left:119.400000px;}
.x18{left:120.525000px;}
.x36{left:121.635000px;}
.x26{left:122.775000px;}
.x65{left:125.010000px;}
.x1{left:127.275000px;}
.x139{left:128.400000px;}
.x2b{left:129.570000px;}
.x45{left:132.900000px;}
.x42{left:135.195000px;}
.x5d{left:136.275000px;}
.x39{left:137.400000px;}
.xa2{left:140.820000px;}
.x13c{left:143.010000px;}
.x55{left:144.150000px;}
.x8f{left:145.260000px;}
.x131{left:146.437500px;}
.x13d{left:147.555000px;}
.xf{left:148.687500px;}
.x4a{left:150.930000px;}
.x7{left:152.055000px;}
.x66{left:153.195000px;}
.x22{left:154.305000px;}
.xd2{left:155.430000px;}
.x15{left:158.805000px;}
.x8d{left:159.915000px;}
.xd6{left:162.285000px;}
.x5f{left:164.475000px;}
.x92{left:165.540000px;}
.x8e{left:167.790000px;}
.x1e{left:168.975000px;}
.x5c{left:172.305000px;}
.x9{left:175.725000px;}
.x16{left:176.850000px;}
.xfc{left:177.975000px;}
.xd{left:180.225000px;}
.x25{left:181.350000px;}
.xab{left:182.535000px;}
.x87{left:183.660000px;}
.xae{left:184.725000px;}
.x94{left:186.960000px;}
.x111{left:192.630000px;}
.x140{left:193.755000px;}
.x142{left:196.005000px;}
.x40{left:198.255000px;}
.x8{left:199.395000px;}
.xe{left:201.645000px;}
.x1f{left:203.880000px;}
.xa3{left:207.270000px;}
.xdd{left:208.410000px;}
.x17{left:209.520000px;}
.xea{left:210.630000px;}
.x5{left:214.020000px;}
.x95{left:215.115000px;}
.x12b{left:223.005000px;}
.xc5{left:227.535000px;}
.x9f{left:228.675000px;}
.x7d{left:230.925000px;}
.x24{left:233.175000px;}
.x23{left:234.300000px;}
.x6b{left:235.425000px;}
.xdb{left:236.535000px;}
.x3{left:246.675000px;}
.x11a{left:250.095000px;}
.x105{left:251.220000px;}
.x107{left:252.345000px;}
.x118{left:253.455000px;}
.xfa{left:259.095000px;}
.x98{left:260.205000px;}
.xaf{left:262.410000px;}
.x110{left:263.595000px;}
.x116{left:264.720000px;}
.x13a{left:269.220000px;}
.xfe{left:273.720000px;}
.x19{left:274.845000px;}
.xb7{left:275.970000px;}
.xb8{left:277.095000px;}
.xd7{left:278.220000px;}
.x11f{left:283.920000px;}
.x99{left:287.250000px;}
.xa{left:296.250000px;}
.xdc{left:303.045000px;}
.xb0{left:304.170000px;}
.xd3{left:305.295000px;}
.xc0{left:309.795000px;}
.x7e{left:310.920000px;}
.xf5{left:313.170000px;}
.x9a{left:314.280000px;}
.x6c{left:316.545000px;}
.x28{left:317.670000px;}
.xf4{left:319.920000px;}
.x3f{left:323.295000px;}
.x8b{left:326.670000px;}
.x88{left:331.170000px;}
.x10b{left:333.420000px;}
.xb1{left:339.045000px;}
.x108{left:340.200000px;}
.x12c{left:344.700000px;}
.x100{left:352.575000px;}
.xbd{left:353.700000px;}
.xec{left:357.075000px;}
.x4{left:358.200000px;}
.xc7{left:367.170000px;}
.x114{left:371.745000px;}
.xa0{left:373.709100px;}
.xe0{left:375.045000px;}
.x123{left:378.495000px;}
.xd8{left:382.995000px;}
.xc{left:384.120000px;}
.xe5{left:385.245000px;}
.xf7{left:386.370000px;}
.xc6{left:388.545000px;}
.xce{left:390.795000px;}
.xe6{left:399.945000px;}
.x134{left:403.320000px;}
.x132{left:404.445000px;}
.xbb{left:408.945000px;}
.x138{left:411.150000px;}
.xc1{left:412.320000px;}
.x124{left:424.695000px;}
.xb{left:425.775000px;}
.xff{left:426.945000px;}
.x13b{left:428.070000px;}
.x12d{left:433.695000px;}
.x10d{left:435.945000px;}
.x21{left:439.320000px;}
.xd4{left:440.445000px;}
.xdf{left:441.570000px;}
.x9c{left:442.695000px;}
.x14{left:443.820000px;}
.x6{left:446.070000px;}
.x11b{left:452.820000px;}
.xb2{left:458.445000px;}
.x6d{left:464.100000px;}
.x112{left:466.350000px;}
.xcf{left:467.445000px;}
.x125{left:471.975000px;}
.x2{left:473.100000px;}
.x1c{left:475.723650px;}
.x13e{left:477.187050px;}
.xc8{left:482.070000px;}
.xba{left:485.580000px;}
.xe7{left:486.705000px;}
.xde{left:487.830000px;}
.xd9{left:488.955000px;}
.xf2{left:492.330000px;}
.xbe{left:494.580000px;}
.xac{left:506.955000px;}
.x89{left:508.080000px;}
.xd0{left:510.330000px;}
.xc2{left:513.705000px;}
.x101{left:517.080000px;}
.x121{left:519.330000px;}
.x129{left:520.455000px;}
.x109{left:526.080000px;}
.x1a{left:531.187050px;}
.xf8{left:533.955000px;}
.x135{left:535.080000px;}
.x133{left:536.205000px;}
.x9d{left:538.675350px;}
.xe4{left:542.925000px;}
.x10c{left:549.720000px;}
.xcc{left:553.080000px;}
.xe3{left:556.455000px;}
.x11d{left:560.970000px;}
.xfb{left:564.330000px;}
.xb9{left:569.955000px;}
.x115{left:574.500000px;}
.x117{left:575.625000px;}
.xda{left:577.875000px;}
.x6f{left:579.000000px;}
.xf3{left:580.125000px;}
.xcb{left:582.330000px;}
.xe2{left:583.455000px;}
.xcd{left:586.875000px;}
.x80{left:588.000000px;}
.x103{left:590.250000px;}
.xb3{left:592.455000px;}
.x130{left:600.375000px;}
.xc3{left:601.500000px;}
.xd5{left:602.715000px;}
.x12e{left:603.840000px;}
.xf6{left:607.215000px;}
.x10{left:608.295000px;}
.xb5{left:609.465000px;}
.x104{left:611.670000px;}
.x126{left:619.590000px;}
.xb6{left:621.795000px;}
.xa1{left:622.905000px;}
.xca{left:625.215000px;}
.xb4{left:626.340000px;}
.x12a{left:628.590000px;}
.xf9{left:636.450000px;}
.xbf{left:637.590000px;}
.x10e{left:638.700000px;}
.x136{left:640.965000px;}
.x106{left:642.090000px;}
.x13{left:649.720800px;}
.x13f{left:664.620000px;}
.x1d{left:667.995000px;}
.x11c{left:669.120000px;}
.xef{left:670.230000px;}
.xaa{left:671.370000px;}
.x141{left:673.605000px;}
.xc9{left:675.840000px;}
.x1b{left:678.120000px;}
.x10f{left:680.355000px;}
.x113{left:682.620000px;}
.xe9{left:683.730000px;}
.x12f{left:684.870000px;}
.x71{left:687.120000px;}
.x128{left:688.245000px;}
.xc4{left:689.370000px;}
.x137{left:690.480000px;}
.xeb{left:693.900000px;}
.x10a{left:695.025000px;}
.x9e{left:696.150000px;}
.x81{left:697.275000px;}
.xe1{left:706.215000px;}
.x20{left:709.650000px;}
.xf0{left:718.650000px;}
.x127{left:719.775000px;}
.xbc{left:743.445000px;}
.xe8{left:747.239850px;}
.xa9{left:749.070000px;}
.x9b{left:750.225000px;}
.xfd{left:752.475000px;}
.xd1{left:755.850000px;}
.xa7{left:762.600000px;}
.x102{left:763.725000px;}
.xa6{left:764.850000px;}
.xa8{left:765.975000px;}
.xf1{left:768.225000px;}
.xa5{left:769.350000px;}
.xa4{left:770.475000px;}
@media print{
.v1{vertical-align:-80.000000pt;}
.v3{vertical-align:-76.000000pt;}
.v2{vertical-align:-72.000000pt;}
.v7{vertical-align:-56.000000pt;}
.v9{vertical-align:-20.000000pt;}
.v4{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.000000pt;}
.v8{vertical-align:20.000000pt;}
.v6{vertical-align:24.000000pt;}
.ls4f{letter-spacing:-8.853333pt;}
.ls4{letter-spacing:-5.813333pt;}
.lse{letter-spacing:-4.682667pt;}
.ls22{letter-spacing:-4.016000pt;}
.ls3{letter-spacing:-4.000000pt;}
.ls23{letter-spacing:-3.984000pt;}
.ls2e{letter-spacing:-3.584000pt;}
.ls47{letter-spacing:-3.322667pt;}
.ls1a{letter-spacing:-3.104000pt;}
.ls3b{letter-spacing:-3.002667pt;}
.ls37{letter-spacing:-2.688000pt;}
.ls33{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.208000pt;}
.ls29{letter-spacing:-1.792000pt;}
.lsc{letter-spacing:-1.546667pt;}
.ls46{letter-spacing:-1.360000pt;}
.ls1f{letter-spacing:-1.344000pt;}
.ls1e{letter-spacing:-1.328000pt;}
.ls8{letter-spacing:-1.312000pt;}
.ls3d{letter-spacing:-1.178667pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls53{letter-spacing:-0.762667pt;}
.ls17{letter-spacing:-0.416000pt;}
.ls40{letter-spacing:-0.019200pt;}
.ls20{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.019200pt;}
.ls10{letter-spacing:0.020000pt;}
.ls25{letter-spacing:0.053333pt;}
.ls52{letter-spacing:0.067200pt;}
.ls31{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.133333pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.352000pt;}
.ls3e{letter-spacing:0.416000pt;}
.ls19{letter-spacing:0.896000pt;}
.ls57{letter-spacing:0.928000pt;}
.ls4a{letter-spacing:1.000000pt;}
.lsf{letter-spacing:1.002667pt;}
.ls1d{letter-spacing:1.248000pt;}
.ls2d{letter-spacing:1.312000pt;}
.ls21{letter-spacing:1.344000pt;}
.ls50{letter-spacing:1.648000pt;}
.lsa{letter-spacing:1.792000pt;}
.ls4d{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.000000pt;}
.ls45{letter-spacing:2.053333pt;}
.ls9{letter-spacing:2.688000pt;}
.ls48{letter-spacing:2.794667pt;}
.ls59{letter-spacing:3.770667pt;}
.ls12{letter-spacing:4.000000pt;}
.ls27{letter-spacing:4.053333pt;}
.ls2c{letter-spacing:5.000000pt;}
.ls4c{letter-spacing:5.258667pt;}
.ls43{letter-spacing:5.312000pt;}
.ls4e{letter-spacing:5.328000pt;}
.ls4b{letter-spacing:5.472000pt;}
.ls55{letter-spacing:8.000000pt;}
.ls44{letter-spacing:8.106667pt;}
.ls15{letter-spacing:12.000000pt;}
.ls26{letter-spacing:12.106667pt;}
.ls16{letter-spacing:12.160000pt;}
.ls11{letter-spacing:16.000000pt;}
.ls41{letter-spacing:20.000000pt;}
.ls30{letter-spacing:20.106667pt;}
.ls54{letter-spacing:20.160000pt;}
.ls3a{letter-spacing:24.000000pt;}
.ls56{letter-spacing:24.106667pt;}
.ls3c{letter-spacing:28.160000pt;}
.ls38{letter-spacing:29.234133pt;}
.ls18{letter-spacing:30.208000pt;}
.ls32{letter-spacing:32.000000pt;}
.ls1b{letter-spacing:34.208000pt;}
.ls3f{letter-spacing:34.577600pt;}
.ls58{letter-spacing:36.000000pt;}
.ls34{letter-spacing:48.106667pt;}
.ls35{letter-spacing:50.314667pt;}
.ls39{letter-spacing:56.106667pt;}
.ls1c{letter-spacing:58.314667pt;}
.ls36{letter-spacing:66.593067pt;}
.ls51{letter-spacing:71.937067pt;}
.ls6{letter-spacing:96.106667pt;}
.lsd{letter-spacing:103.952533pt;}
.ls13{letter-spacing:172.266667pt;}
.ls49{letter-spacing:176.266667pt;}
.ls7{letter-spacing:276.426667pt;}
.ls1{letter-spacing:741.066667pt;}
.ls0{letter-spacing:1117.493333pt;}
.ls42{letter-spacing:2078.666667pt;}
.ws1a{word-spacing:-64.000000pt;}
.ws25{word-spacing:-48.000000pt;}
.ws2a{word-spacing:-25.377333pt;}
.ws29{word-spacing:-24.067200pt;}
.ws3{word-spacing:-24.019200pt;}
.ws1e{word-spacing:-24.000000pt;}
.ws1f{word-spacing:-23.980800pt;}
.ws5{word-spacing:-18.688000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.312000pt;}
.ws1d{word-spacing:-17.000000pt;}
.wsc{word-spacing:-16.896000pt;}
.ws21{word-spacing:-16.416000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.584000pt;}
.ws2b{word-spacing:-15.237333pt;}
.ws18{word-spacing:-15.104000pt;}
.ws9{word-spacing:-15.020000pt;}
.wsa{word-spacing:-15.000000pt;}
.ws1c{word-spacing:-14.821333pt;}
.ws2e{word-spacing:-14.770667pt;}
.ws4{word-spacing:-14.688000pt;}
.ws15{word-spacing:-14.208000pt;}
.ws7{word-spacing:-13.792000pt;}
.ws28{word-spacing:-13.648000pt;}
.ws22{word-spacing:-13.640000pt;}
.wse{word-spacing:-13.344000pt;}
.wsf{word-spacing:-13.328000pt;}
.ws1b{word-spacing:-13.312000pt;}
.ws2f{word-spacing:-13.000000pt;}
.ws2d{word-spacing:-12.928000pt;}
.ws14{word-spacing:-12.896000pt;}
.ws17{word-spacing:-12.352000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws11{word-spacing:-12.000000pt;}
.ws20{word-spacing:-11.984000pt;}
.ws23{word-spacing:-11.677333pt;}
.ws8{word-spacing:-11.453333pt;}
.ws27{word-spacing:-11.000000pt;}
.ws13{word-spacing:-10.672000pt;}
.ws2c{word-spacing:-10.656000pt;}
.ws2{word-spacing:-10.186667pt;}
.ws12{word-spacing:-9.360000pt;}
.ws19{word-spacing:-9.344000pt;}
.ws10{word-spacing:-9.328000pt;}
.ws24{word-spacing:-7.984000pt;}
.ws26{word-spacing:-7.146667pt;}
.ws0{word-spacing:0.000000pt;}
._2d{margin-left:-12.501333pt;}
._27{margin-left:-11.242667pt;}
._53{margin-left:-9.621333pt;}
._28{margin-left:-8.128000pt;}
._9{margin-left:-7.104000pt;}
._8{margin-left:-5.568000pt;}
._d{margin-left:-4.448000pt;}
._4{margin-left:-3.136000pt;}
._0{margin-left:-2.240000pt;}
._2{margin-left:-0.896000pt;}
._1{width:1.728000pt;}
._1a{width:2.880000pt;}
._3{width:3.904000pt;}
._a{width:4.800000pt;}
._26{width:6.133333pt;}
._5{width:7.232000pt;}
._7{width:8.714667pt;}
._3e{width:9.632000pt;}
._b{width:10.730667pt;}
._6{width:11.712000pt;}
._1f{width:12.757333pt;}
._25{width:14.005333pt;}
._17{width:15.093333pt;}
._44{width:16.058667pt;}
._36{width:16.960000pt;}
._43{width:17.962667pt;}
._16{width:18.890667pt;}
._e{width:20.117333pt;}
._3a{width:21.194667pt;}
._24{width:22.208000pt;}
._c{width:23.680000pt;}
._19{width:24.810667pt;}
._49{width:25.749333pt;}
._39{width:27.136000pt;}
._1c{width:28.032000pt;}
._12{width:29.034667pt;}
._46{width:30.325333pt;}
._10{width:31.488000pt;}
._f{width:32.448000pt;}
._11{width:33.546667pt;}
._18{width:35.242667pt;}
._15{width:36.405333pt;}
._38{width:37.344000pt;}
._14{width:39.552000pt;}
._13{width:40.704000pt;}
._52{width:42.346667pt;}
._42{width:43.328000pt;}
._1b{width:44.330667pt;}
._3b{width:45.280000pt;}
._3c{width:47.818667pt;}
._23{width:48.821333pt;}
._21{width:51.392000pt;}
._22{width:52.640000pt;}
._45{width:54.485333pt;}
._32{width:55.626667pt;}
._33{width:56.949333pt;}
._20{width:60.042667pt;}
._35{width:60.949333pt;}
._4e{width:63.189333pt;}
._34{width:64.565333pt;}
._4a{width:67.264000pt;}
._4d{width:68.480000pt;}
._4b{width:71.189333pt;}
._3d{width:72.106667pt;}
._56{width:74.442667pt;}
._55{width:76.576000pt;}
._50{width:79.445333pt;}
._54{width:80.917333pt;}
._41{width:83.648000pt;}
._4f{width:84.778667pt;}
._3f{width:88.586667pt;}
._40{width:91.434667pt;}
._2b{width:92.586667pt;}
._2a{width:95.850667pt;}
._62{width:104.224000pt;}
._60{width:107.936000pt;}
._61{width:108.896000pt;}
._47{width:120.970667pt;}
._5f{width:131.957333pt;}
._4c{width:135.434667pt;}
._5e{width:136.864000pt;}
._5d{width:139.904000pt;}
._48{width:143.626667pt;}
._5c{width:144.576000pt;}
._59{width:155.957333pt;}
._5a{width:157.738667pt;}
._58{width:160.010667pt;}
._57{width:161.525333pt;}
._2e{width:164.320000pt;}
._1e{width:172.266667pt;}
._37{width:173.266667pt;}
._1d{width:176.266667pt;}
._30{width:228.597333pt;}
._31{width:231.882667pt;}
._2f{width:233.045333pt;}
._29{width:276.426667pt;}
._2c{width:448.640000pt;}
._5b{width:1009.493333pt;}
._51{width:2074.933333pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:36.000000pt;}
.fs9{font-size:44.000000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:76.133333pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:96.133333pt;}
.y0{bottom:0.000000pt;}
.y312{bottom:2.933333pt;}
.y1d4{bottom:2.946667pt;}
.y1cc{bottom:2.960000pt;}
.y1a9{bottom:2.973333pt;}
.y1da{bottom:2.974667pt;}
.y10c{bottom:2.986667pt;}
.y1ad{bottom:3.000000pt;}
.y1c5{bottom:3.013333pt;}
.y2cc{bottom:3.026667pt;}
.ya0{bottom:3.033333pt;}
.y1ba{bottom:3.040000pt;}
.y1b0{bottom:3.053333pt;}
.y304{bottom:3.080000pt;}
.y3f8{bottom:3.933333pt;}
.y1ef{bottom:3.946667pt;}
.y16b{bottom:3.960000pt;}
.y1d2{bottom:3.973333pt;}
.y207{bottom:3.974667pt;}
.y1de{bottom:3.986667pt;}
.y176{bottom:4.000000pt;}
.y1ce{bottom:4.013333pt;}
.y18a{bottom:4.026667pt;}
.y1e8{bottom:4.040000pt;}
.y203{bottom:4.053333pt;}
.y17b{bottom:4.933333pt;}
.y2ec{bottom:5.000000pt;}
.y193{bottom:5.013333pt;}
.y182{bottom:5.026667pt;}
.y181{bottom:5.040000pt;}
.y2ff{bottom:6.000000pt;}
.y2fe{bottom:6.040000pt;}
.y3a7{bottom:7.000000pt;}
.y396{bottom:7.026667pt;}
.y39f{bottom:7.040000pt;}
.y302{bottom:8.040000pt;}
.y113{bottom:8.933333pt;}
.y127{bottom:8.946667pt;}
.y468{bottom:8.960000pt;}
.y123{bottom:8.973333pt;}
.y12e{bottom:8.974667pt;}
.y136{bottom:8.986667pt;}
.y116{bottom:9.000000pt;}
.y132{bottom:9.013333pt;}
.y492{bottom:9.026667pt;}
.y4a2{bottom:9.040000pt;}
.y480{bottom:9.960000pt;}
.y474{bottom:9.973333pt;}
.y44d{bottom:9.986667pt;}
.y479{bottom:10.000000pt;}
.y47b{bottom:10.013333pt;}
.y47e{bottom:10.040000pt;}
.y477{bottom:10.933333pt;}
.y484{bottom:10.946667pt;}
.y450{bottom:10.960000pt;}
.y1a1{bottom:10.973333pt;}
.y470{bottom:10.986667pt;}
.y1b1{bottom:11.000000pt;}
.y1ab{bottom:11.013333pt;}
.y46d{bottom:11.026667pt;}
.y1e2{bottom:11.040000pt;}
.y46b{bottom:11.053333pt;}
.y3ae{bottom:12.013333pt;}
.y2f9{bottom:12.946667pt;}
.y2e5{bottom:12.960000pt;}
.y2b2{bottom:12.986667pt;}
.y167{bottom:13.000000pt;}
.y2c7{bottom:13.013333pt;}
.y451{bottom:13.026667pt;}
.y19c{bottom:13.040000pt;}
.y2b0{bottom:13.093333pt;}
.y49f{bottom:13.973333pt;}
.y1c8{bottom:14.000000pt;}
.y30d{bottom:14.013333pt;}
.y17e{bottom:14.026667pt;}
.y138{bottom:14.960000pt;}
.y117{bottom:15.000000pt;}
.y130{bottom:15.013333pt;}
.y36d{bottom:15.026667pt;}
.y141{bottom:15.040000pt;}
.y125{bottom:15.946667pt;}
.y10e{bottom:15.960000pt;}
.y111{bottom:15.973333pt;}
.y12c{bottom:15.974667pt;}
.y121{bottom:15.986667pt;}
.y7d{bottom:16.000000pt;}
.y108{bottom:16.013333pt;}
.y142{bottom:16.026667pt;}
.y106{bottom:16.040000pt;}
.y10a{bottom:16.986667pt;}
.y469{bottom:18.960000pt;}
.y19f{bottom:18.973333pt;}
.y1bc{bottom:18.986667pt;}
.y1b2{bottom:19.000000pt;}
.y1ac{bottom:19.013333pt;}
.y40e{bottom:19.040000pt;}
.y1b8{bottom:19.053333pt;}
.y1af{bottom:19.066667pt;}
.y1c0{bottom:19.080000pt;}
.y44e{bottom:20.960000pt;}
.y475{bottom:20.973333pt;}
.y483{bottom:20.986667pt;}
.y46e{bottom:21.026667pt;}
.y2da{bottom:21.973333pt;}
.y16a{bottom:21.986667pt;}
.y147{bottom:22.000000pt;}
.y131{bottom:22.013333pt;}
.y13b{bottom:22.026667pt;}
.y115{bottom:22.040000pt;}
.y49c{bottom:22.053333pt;}
.y126{bottom:22.946667pt;}
.y329{bottom:22.960000pt;}
.y112{bottom:22.973333pt;}
.y12d{bottom:22.974667pt;}
.y135{bottom:22.986667pt;}
.y12a{bottom:23.000000pt;}
.y122{bottom:23.013333pt;}
.y11f{bottom:23.026667pt;}
.y149{bottom:23.040000pt;}
.y18f{bottom:23.080000pt;}
.y2f6{bottom:23.960000pt;}
.y30e{bottom:23.973333pt;}
.y1c9{bottom:24.026667pt;}
.y2c9{bottom:24.040000pt;}
.y3e5{bottom:24.973333pt;}
.y1f6{bottom:25.000000pt;}
.y3ea{bottom:25.013333pt;}
.y201{bottom:25.026667pt;}
.y4a1{bottom:25.066667pt;}
.y42e{bottom:25.973333pt;}
.y429{bottom:25.986667pt;}
.y37b{bottom:26.026667pt;}
.y3f2{bottom:26.040000pt;}
.y3ff{bottom:26.960000pt;}
.y423{bottom:26.973333pt;}
.y41b{bottom:26.986667pt;}
.y1a0{bottom:27.000000pt;}
.y3ec{bottom:27.013333pt;}
.y2f3{bottom:27.026667pt;}
.y2fa{bottom:27.040000pt;}
.y491{bottom:27.093333pt;}
.y4ba{bottom:27.986667pt;}
.y2d3{bottom:28.000000pt;}
.y395{bottom:28.026667pt;}
.y39e{bottom:28.040000pt;}
.y35f{bottom:29.093333pt;}
.y49e{bottom:30.000000pt;}
.y366{bottom:30.040000pt;}
.y473{bottom:30.973333pt;}
.y10b{bottom:31.026667pt;}
.y179{bottom:31.973333pt;}
.y44f{bottom:31.986667pt;}
.y17d{bottom:32.026667pt;}
.y326{bottom:34.026667pt;}
.yff{bottom:34.040000pt;}
.y247{bottom:34.986667pt;}
.y19e{bottom:35.000000pt;}
.y1a8{bottom:35.013333pt;}
.y1be{bottom:35.026667pt;}
.yb0{bottom:35.040000pt;}
.y494{bottom:35.080000pt;}
.y3b0{bottom:38.000000pt;}
.y49b{bottom:38.066667pt;}
.y48e{bottom:40.026667pt;}
.y467{bottom:40.066667pt;}
.y178{bottom:40.973333pt;}
.y169{bottom:40.986667pt;}
.y2d5{bottom:41.000000pt;}
.y2c6{bottom:41.013333pt;}
.y191{bottom:41.026667pt;}
.y175{bottom:41.040000pt;}
.y17f{bottom:41.053333pt;}
.y189{bottom:41.066667pt;}
.y30c{bottom:42.013333pt;}
.y18e{bottom:42.080000pt;}
.y48f{bottom:43.040000pt;}
.y327{bottom:45.026667pt;}
.y3e4{bottom:46.000000pt;}
.y406{bottom:46.026667pt;}
.y3e9{bottom:46.040000pt;}
.y2d9{bottom:48.000000pt;}
.y9f{bottom:50.000000pt;}
.y35d{bottom:50.040000pt;}
.y1a7{bottom:51.013333pt;}
.y1{bottom:51.033333pt;}
.y1b7{bottom:51.080000pt;}
.y354{bottom:52.000000pt;}
.y363{bottom:52.026667pt;}
.y359{bottom:52.040000pt;}
.y365{bottom:52.053333pt;}
.y350{bottom:52.080000pt;}
.y36a{bottom:52.106667pt;}
.y44c{bottom:53.986667pt;}
.y49a{bottom:54.093333pt;}
.y2d2{bottom:55.026667pt;}
.y48d{bottom:56.053333pt;}
.y174{bottom:59.080000pt;}
.y17a{bottom:60.000000pt;}
.y188{bottom:60.053333pt;}
.y18c{bottom:60.080000pt;}
.y1a6{bottom:67.040000pt;}
.y1b6{bottom:67.080000pt;}
.y2f4{bottom:68.066667pt;}
.y2d4{bottom:69.026667pt;}
.y2b1{bottom:69.053333pt;}
.y499{bottom:70.093333pt;}
.y48c{bottom:72.053333pt;}
.y353{bottom:73.000000pt;}
.y362{bottom:73.026667pt;}
.y34f{bottom:73.066667pt;}
.y357{bottom:74.066667pt;}
.y173{bottom:78.080000pt;}
.y187{bottom:78.093333pt;}
.y1a5{bottom:83.040000pt;}
.y1b9{bottom:83.066667pt;}
.y1b5{bottom:83.106667pt;}
.y498{bottom:86.093333pt;}
.y48b{bottom:88.093333pt;}
.y3a4{bottom:90.066667pt;}
.y186{bottom:96.093333pt;}
.y172{bottom:96.106667pt;}
.y449{bottom:98.066667pt;}
.y19a{bottom:99.066667pt;}
.y1a4{bottom:99.080000pt;}
.y383{bottom:100.066667pt;}
.y338{bottom:101.066667pt;}
.y393{bottom:101.093333pt;}
.y39c{bottom:101.106667pt;}
.yae{bottom:102.066667pt;}
.y497{bottom:102.120000pt;}
.yb1{bottom:103.066667pt;}
.y3f1{bottom:104.066667pt;}
.y48a{bottom:104.093333pt;}
.y28f{bottom:105.066667pt;}
.y9e{bottom:105.920027pt;}
.y22e{bottom:106.066667pt;}
.y12b{bottom:106.125333pt;}
.yfd{bottom:107.100000pt;}
.y28a{bottom:108.100000pt;}
.y208{bottom:108.125333pt;}
.y22{bottom:109.100000pt;}
.y245{bottom:110.100000pt;}
.y148{bottom:110.125333pt;}
.y2b8{bottom:111.100000pt;}
.y3a3{bottom:112.093333pt;}
.y294{bottom:112.100000pt;}
.y5e{bottom:113.100000pt;}
.y388{bottom:114.100000pt;}
.y1a3{bottom:115.066667pt;}
.y324{bottom:115.100000pt;}
.y171{bottom:115.106667pt;}
.y185{bottom:115.133333pt;}
.y2ea{bottom:116.100000pt;}
.y2a7{bottom:117.100000pt;}
.y1d9{bottom:117.125333pt;}
.y495{bottom:118.093333pt;}
.y104{bottom:118.100000pt;}
.y264{bottom:119.100000pt;}
.y445{bottom:120.100000pt;}
.y22b{bottom:121.100000pt;}
.y42{bottom:122.100000pt;}
.y44a{bottom:123.100000pt;}
.y346{bottom:124.100000pt;}
.y376{bottom:125.100000pt;}
.y199{bottom:126.100000pt;}
.y289{bottom:127.100000pt;}
.y375{bottom:128.100000pt;}
.y378{bottom:129.100000pt;}
.y206{bottom:129.125333pt;}
.yad{bottom:130.100000pt;}
.y1a2{bottom:131.066667pt;}
.y28e{bottom:131.100000pt;}
.yfc{bottom:132.100000pt;}
.y184{bottom:133.133333pt;}
.y170{bottom:133.146667pt;}
.y9d{bottom:133.440000pt;}
.y22d{bottom:134.106667pt;}
.y165{bottom:135.106667pt;}
.y2fc{bottom:136.093333pt;}
.y21{bottom:137.106667pt;}
.y244{bottom:138.106667pt;}
.y1d8{bottom:138.120000pt;}
.y14a{bottom:139.093333pt;}
.y7c{bottom:140.106667pt;}
.y461{bottom:141.106667pt;}
.y45b{bottom:142.093333pt;}
.y345{bottom:143.106667pt;}
.y28b{bottom:144.133333pt;}
.y103{bottom:145.133333pt;}
.y270{bottom:146.133333pt;}
.y263{bottom:147.133333pt;}
.y129{bottom:148.133333pt;}
.y1c3{bottom:149.133333pt;}
.y41{bottom:150.133333pt;}
.y205{bottom:151.133333pt;}
.y16f{bottom:151.146667pt;}
.y146{bottom:152.133333pt;}
.y382{bottom:153.133333pt;}
.y198{bottom:154.133333pt;}
.y3f0{bottom:155.133333pt;}
.y28d{bottom:156.133333pt;}
.y22c{bottom:157.133333pt;}
.y5d{bottom:158.133333pt;}
.y3dc{bottom:159.133333pt;}
.y1d7{bottom:160.133333pt;}
.y9c{bottom:160.960000pt;}
.y297{bottom:161.133333pt;}
.y2fb{bottom:162.133333pt;}
.y164{bottom:163.133333pt;}
.y288{bottom:164.133333pt;}
.y20{bottom:165.133333pt;}
.y299{bottom:166.133333pt;}
.y7b{bottom:167.133333pt;}
.y293{bottom:168.133333pt;}
.y28c{bottom:169.133333pt;}
.y30f{bottom:170.133333pt;}
.y16e{bottom:170.173333pt;}
.y2e9{bottom:171.133333pt;}
.y204{bottom:172.133333pt;}
.y102{bottom:173.133333pt;}
.y1c2{bottom:174.133333pt;}
.y262{bottom:175.133333pt;}
.y22a{bottom:176.133333pt;}
.y218{bottom:177.133333pt;}
.y40{bottom:178.133333pt;}
.y3c3{bottom:179.133333pt;}
.y344{bottom:180.133333pt;}
.y197{bottom:181.173333pt;}
.ye6{bottom:182.173333pt;}
.y38a{bottom:183.173333pt;}
.yfb{bottom:184.173333pt;}
.yac{bottom:185.173333pt;}
.y5c{bottom:186.173333pt;}
.y443{bottom:187.173333pt;}
.y16d{bottom:188.173333pt;}
.y9b{bottom:188.800000pt;}
.y296{bottom:189.173333pt;}
.y128{bottom:190.173333pt;}
.y447{bottom:191.173333pt;}
.y1f{bottom:192.173333pt;}
.y202{bottom:193.120000pt;}
.y145{bottom:193.173333pt;}
.y2b7{bottom:194.173333pt;}
.y292{bottom:195.173333pt;}
.y287{bottom:196.173333pt;}
.ye5{bottom:197.173333pt;}
.y343{bottom:198.173333pt;}
.y1c1{bottom:199.173333pt;}
.y2a9{bottom:200.173333pt;}
.y101{bottom:201.173333pt;}
.y1d6{bottom:202.173333pt;}
.y32c{bottom:203.173333pt;}
.y7a{bottom:204.173333pt;}
.y3f{bottom:205.173333pt;}
.y34b{bottom:206.173333pt;}
.y16c{bottom:207.213333pt;}
.y369{bottom:209.120000pt;}
.y196{bottom:209.173333pt;}
.y2d7{bottom:210.173333pt;}
.y3eb{bottom:211.173333pt;}
.ye4{bottom:212.173333pt;}
.y5b{bottom:213.173333pt;}
.y1bf{bottom:214.120000pt;}
.y1bd{bottom:214.173333pt;}
.y53{bottom:215.173333pt;}
.y419{bottom:216.173333pt;}
.y9a{bottom:216.320000pt;}
.y377{bottom:217.173333pt;}
.y163{bottom:218.200000pt;}
.y298{bottom:219.200000pt;}
.y3aa{bottom:219.253333pt;}
.y1e{bottom:220.200000pt;}
.y291{bottom:221.200000pt;}
.y79{bottom:222.200000pt;}
.y38c{bottom:223.200000pt;}
.y442{bottom:224.200000pt;}
.y1d5{bottom:224.253333pt;}
.y38f{bottom:225.200000pt;}
.y3ef{bottom:225.253333pt;}
.y2e8{bottom:226.200000pt;}
.ye3{bottom:227.200000pt;}
.y446{bottom:228.200000pt;}
.y26f{bottom:229.200000pt;}
.y261{bottom:230.200000pt;}
.y27f{bottom:231.200000pt;}
.y124{bottom:231.253333pt;}
.y229{bottom:232.200000pt;}
.y40f{bottom:232.253333pt;}
.y3e{bottom:233.200000pt;}
.y36c{bottom:233.253333pt;}
.y389{bottom:234.200000pt;}
.y2f8{bottom:234.253333pt;}
.y441{bottom:235.200000pt;}
.y144{bottom:235.253333pt;}
.y200{bottom:236.253333pt;}
.y195{bottom:237.200000pt;}
.y40d{bottom:238.200000pt;}
.yfa{bottom:239.200000pt;}
.yab{bottom:240.200000pt;}
.y5a{bottom:241.200000pt;}
.y428{bottom:242.200000pt;}
.ye2{bottom:243.200000pt;}
.y99{bottom:243.840000pt;}
.y418{bottom:244.200000pt;}
.y3a9{bottom:244.253333pt;}
.y162{bottom:245.200000pt;}
.y1d3{bottom:245.253333pt;}
.y1d{bottom:247.200000pt;}
.y243{bottom:248.200000pt;}
.y2b6{bottom:249.200000pt;}
.y3ee{bottom:249.253333pt;}
.y38b{bottom:250.200000pt;}
.y52{bottom:252.200000pt;}
.y381{bottom:252.253333pt;}
.y2e7{bottom:253.200000pt;}
.y2a6{bottom:255.226667pt;}
.y36b{bottom:256.253333pt;}
.y260{bottom:257.226667pt;}
.y1ff{bottom:257.253333pt;}
.ye1{bottom:258.226667pt;}
.y78{bottom:259.240000pt;}
.y3db{bottom:259.253333pt;}
.y3d{bottom:260.226667pt;}
.y32b{bottom:260.253333pt;}
.y34a{bottom:261.226667pt;}
.y487{bottom:262.240000pt;}
.y194{bottom:263.226667pt;}
.y448{bottom:264.226667pt;}
.y1bb{bottom:264.253333pt;}
.y40c{bottom:265.240000pt;}
.y1d1{bottom:266.253333pt;}
.yf9{bottom:267.226667pt;}
.y59{bottom:268.240000pt;}
.y3a8{bottom:268.253333pt;}
.y290{bottom:269.226667pt;}
.y45a{bottom:271.240000pt;}
.y98{bottom:271.360000pt;}
.y342{bottom:272.226667pt;}
.y3ed{bottom:272.253333pt;}
.ye0{bottom:273.226667pt;}
.y120{bottom:273.253333pt;}
.y100{bottom:274.240000pt;}
.y1c{bottom:275.226667pt;}
.y380{bottom:275.253333pt;}
.y242{bottom:276.226667pt;}
.y2b5{bottom:277.240000pt;}
.y143{bottom:277.253333pt;}
.y77{bottom:278.226667pt;}
.y460{bottom:279.226667pt;}
.y1fe{bottom:279.253333pt;}
.y444{bottom:281.226667pt;}
.y2a5{bottom:282.226667pt;}
.y433{bottom:283.240000pt;}
.y3da{bottom:283.253333pt;}
.y26e{bottom:284.226667pt;}
.y25f{bottom:285.226667pt;}
.y30b{bottom:285.253333pt;}
.y27e{bottom:286.240000pt;}
.y228{bottom:287.226667pt;}
.y3c{bottom:288.226667pt;}
.y1d0{bottom:288.253333pt;}
.ydf{bottom:289.240000pt;}
.y341{bottom:290.226667pt;}
.y40b{bottom:290.253333pt;}
.y3a6{bottom:292.266667pt;}
.y374{bottom:294.266667pt;}
.yf8{bottom:295.266667pt;}
.y58{bottom:296.266667pt;}
.y51{bottom:297.266667pt;}
.y97{bottom:299.200000pt;}
.y37f{bottom:299.266667pt;}
.y1fd{bottom:300.266667pt;}
.y161{bottom:301.266667pt;}
.y2d6{bottom:302.266667pt;}
.y192{bottom:303.253333pt;}
.y190{bottom:303.266667pt;}
.yde{bottom:304.266667pt;}
.y2f7{bottom:305.266667pt;}
.y3d9{bottom:306.266667pt;}
.y459{bottom:307.266667pt;}
.y340{bottom:308.266667pt;}
.y1cf{bottom:309.266667pt;}
.y2a4{bottom:310.266667pt;}
.y26d{bottom:312.266667pt;}
.y25e{bottom:313.266667pt;}
.y76{bottom:314.266667pt;}
.y11e{bottom:315.266667pt;}
.y3b{bottom:316.266667pt;}
.y32a{bottom:317.266667pt;}
.y2e6{bottom:318.266667pt;}
.ydd{bottom:319.266667pt;}
.y1b{bottom:321.266667pt;}
.yf7{bottom:322.266667pt;}
.yaa{bottom:323.266667pt;}
.y57{bottom:324.266667pt;}
.y482{bottom:325.266667pt;}
.y368{bottom:326.266667pt;}
.y96{bottom:326.720000pt;}
.y33f{bottom:327.266667pt;}
.y160{bottom:328.266667pt;}
.y3d8{bottom:329.293333pt;}
.y1b4{bottom:330.253333pt;}
.y1b3{bottom:330.293333pt;}
.y241{bottom:331.306667pt;}
.y2b4{bottom:332.293333pt;}
.y75{bottom:333.293333pt;}
.y2a8{bottom:334.306667pt;}
.ydc{bottom:335.293333pt;}
.y40a{bottom:336.253333pt;}
.y409{bottom:336.293333pt;}
.y2a3{bottom:337.306667pt;}
.y1a{bottom:339.293333pt;}
.y25d{bottom:340.306667pt;}
.y3a5{bottom:341.293333pt;}
.y50{bottom:342.293333pt;}
.y1fc{bottom:343.293333pt;}
.y3a{bottom:343.306667pt;}
.y33e{bottom:344.293333pt;}
.y37e{bottom:345.293333pt;}
.y481{bottom:347.293333pt;}
.y367{bottom:349.293333pt;}
.y373{bottom:349.306667pt;}
.ydb{bottom:350.293333pt;}
.y56{bottom:351.293333pt;}
.y1cd{bottom:352.293333pt;}
.y3d7{bottom:353.293333pt;}
.y95{bottom:354.240000pt;}
.y417{bottom:354.293333pt;}
.y3d2{bottom:355.293333pt;}
.y15f{bottom:356.293333pt;}
.y11d{bottom:357.293333pt;}
.y432{bottom:358.293333pt;}
.y19{bottom:358.306667pt;}
.y18d{bottom:360.253333pt;}
.y18b{bottom:360.293333pt;}
.y140{bottom:361.293333pt;}
.yb2{bottom:361.306667pt;}
.y45f{bottom:362.293333pt;}
.y458{bottom:363.293333pt;}
.y1fb{bottom:364.293333pt;}
.y4b8{bottom:364.306667pt;}
.yda{bottom:365.293333pt;}
.y3c2{bottom:366.333333pt;}
.y26c{bottom:367.333333pt;}
.y25c{bottom:368.333333pt;}
.y2e4{bottom:368.373333pt;}
.y27d{bottom:369.333333pt;}
.y37d{bottom:369.373333pt;}
.y74{bottom:370.333333pt;}
.y39{bottom:371.333333pt;}
.y2f5{bottom:371.373333pt;}
.y3e8{bottom:372.373333pt;}
.y416{bottom:373.333333pt;}
.y1cb{bottom:373.373333pt;}
.y328{bottom:374.373333pt;}
.y18{bottom:376.333333pt;}
.y3d6{bottom:376.373333pt;}
.yf6{bottom:377.333333pt;}
.ya9{bottom:378.333333pt;}
.y3d1{bottom:378.373333pt;}
.y55{bottom:379.333333pt;}
.yd9{bottom:381.333333pt;}
.y94{bottom:381.760000pt;}
.y431{bottom:382.373333pt;}
.y15e{bottom:383.333333pt;}
.y30a{bottom:384.333333pt;}
.y1fa{bottom:385.373333pt;}
.y4f{bottom:386.333333pt;}
.y73{bottom:388.333333pt;}
.y45e{bottom:390.333333pt;}
.y3a2{bottom:390.373333pt;}
.y415{bottom:391.333333pt;}
.y2d1{bottom:392.373333pt;}
.y2a2{bottom:393.333333pt;}
.y1ca{bottom:394.373333pt;}
.y17{bottom:395.333333pt;}
.y3fd{bottom:395.373333pt;}
.yd8{bottom:396.333333pt;}
.y361{bottom:396.373333pt;}
.y27c{bottom:397.333333pt;}
.y427{bottom:397.373333pt;}
.y38{bottom:398.333333pt;}
.y349{bottom:399.333333pt;}
.y11c{bottom:399.373333pt;}
.y440{bottom:401.333333pt;}
.y3af{bottom:401.373333pt;}
.y3c1{bottom:402.333333pt;}
.y13f{bottom:402.373333pt;}
.y37a{bottom:403.373333pt;}
.y372{bottom:404.360000pt;}
.yf5{bottom:405.373333pt;}
.y54{bottom:406.373333pt;}
.y1f9{bottom:407.373333pt;}
.y465{bottom:408.373333pt;}
.y93{bottom:409.280000pt;}
.y2b3{bottom:409.373333pt;}
.y309{bottom:410.360000pt;}
.yd7{bottom:411.373333pt;}
.y16{bottom:413.360000pt;}
.y240{bottom:414.373333pt;}
.y37c{bottom:415.373333pt;}
.y1c7{bottom:416.373333pt;}
.y45d{bottom:417.373333pt;}
.y3fc{bottom:418.373333pt;}
.y4b7{bottom:419.360000pt;}
.y364{bottom:419.373333pt;}
.y2a1{bottom:420.373333pt;}
.y2f2{bottom:421.373333pt;}
.y26b{bottom:422.360000pt;}
.y25b{bottom:423.373333pt;}
.y27b{bottom:424.373333pt;}
.y72{bottom:425.360000pt;}
.y3d0{bottom:425.373333pt;}
.y217{bottom:426.373333pt;}
.yd6{bottom:427.373333pt;}
.y43f{bottom:428.360000pt;}
.y1f8{bottom:428.373333pt;}
.y3c0{bottom:429.373333pt;}
.y4e{bottom:431.360000pt;}
.y325{bottom:431.373333pt;}
.y15{bottom:432.373333pt;}
.yf4{bottom:433.373333pt;}
.y37{bottom:434.360000pt;}
.y308{bottom:435.373333pt;}
.y183{bottom:436.373333pt;}
.y92{bottom:437.120000pt;}
.y47f{bottom:437.373333pt;}
.y2e3{bottom:438.373333pt;}
.y15d{bottom:439.373333pt;}
.y11b{bottom:440.400000pt;}
.y23f{bottom:441.400000pt;}
.yd5{bottom:442.400000pt;}
.y71{bottom:443.400000pt;}
.y13e{bottom:444.400000pt;}
.y457{bottom:445.400000pt;}
.y3d5{bottom:446.400000pt;}
.y2a0{bottom:448.400000pt;}
.y1f7{bottom:449.373333pt;}
.y1f5{bottom:449.400000pt;}
.y26a{bottom:450.400000pt;}
.y25a{bottom:451.400000pt;}
.y27a{bottom:452.400000pt;}
.y216{bottom:453.400000pt;}
.y14{bottom:454.400000pt;}
.y227{bottom:455.400000pt;}
.y43e{bottom:456.400000pt;}
.yd4{bottom:457.400000pt;}
.y1c6{bottom:458.400000pt;}
.yf3{bottom:460.400000pt;}
.ya8{bottom:461.400000pt;}
.y36{bottom:462.400000pt;}
.y3a1{bottom:463.400000pt;}
.y386{bottom:464.400000pt;}
.y91{bottom:464.640000pt;}
.y3fb{bottom:465.400000pt;}
.y15c{bottom:466.400000pt;}
.y426{bottom:467.400000pt;}
.y23e{bottom:469.400000pt;}
.y3b1{bottom:471.400000pt;}
.y3cf{bottom:472.400000pt;}
.yd3{bottom:473.400000pt;}
.y4b6{bottom:474.400000pt;}
.y13{bottom:475.400000pt;}
.y4d{bottom:476.400000pt;}
.y269{bottom:477.440000pt;}
.y1ae{bottom:478.373333pt;}
.y1aa{bottom:478.426667pt;}
.y1c4{bottom:480.426667pt;}
.y70{bottom:480.440000pt;}
.y215{bottom:481.426667pt;}
.y11a{bottom:482.426667pt;}
.y226{bottom:482.440000pt;}
.y307{bottom:483.440000pt;}
.y3bf{bottom:484.426667pt;}
.y13d{bottom:486.426667pt;}
.y3a0{bottom:487.426667pt;}
.y3fa{bottom:488.426667pt;}
.yd2{bottom:488.440000pt;}
.y35e{bottom:489.373333pt;}
.y35c{bottom:489.426667pt;}
.y35{bottom:489.440000pt;}
.y2c8{bottom:490.426667pt;}
.y425{bottom:491.426667pt;}
.y2d0{bottom:491.440000pt;}
.y90{bottom:492.160000pt;}
.y1f4{bottom:492.426667pt;}
.y2e2{bottom:492.440000pt;}
.y3ad{bottom:494.426667pt;}
.y15b{bottom:494.440000pt;}
.y3cc{bottom:495.426667pt;}
.y23d{bottom:496.426667pt;}
.y12{bottom:497.440000pt;}
.y430{bottom:498.426667pt;}
.y6f{bottom:498.440000pt;}
.y348{bottom:500.440000pt;}
.y4b5{bottom:502.426667pt;}
.yd1{bottom:503.440000pt;}
.y47d{bottom:504.426667pt;}
.y268{bottom:505.426667pt;}
.y259{bottom:506.440000pt;}
.y279{bottom:507.440000pt;}
.y387{bottom:508.426667pt;}
.y2af{bottom:509.373333pt;}
.y2ae{bottom:509.426667pt;}
.y214{bottom:509.440000pt;}
.y225{bottom:510.440000pt;}
.y39d{bottom:511.426667pt;}
.y3e7{bottom:512.426667pt;}
.y3be{bottom:512.440000pt;}
.y1f3{bottom:513.426667pt;}
.y422{bottom:514.493333pt;}
.yf2{bottom:515.466667pt;}
.ya7{bottom:516.466667pt;}
.y34{bottom:517.466667pt;}
.y11{bottom:518.466667pt;}
.y3ce{bottom:518.493333pt;}
.yd0{bottom:519.466667pt;}
.y408{bottom:519.493333pt;}
.y8f{bottom:519.680000pt;}
.y4c{bottom:521.466667pt;}
.y42d{bottom:522.493333pt;}
.y3ac{bottom:523.466667pt;}
.y23c{bottom:524.466667pt;}
.y119{bottom:524.493333pt;}
.y47c{bottom:526.493333pt;}
.y31f{bottom:527.466667pt;}
.y310{bottom:527.493333pt;}
.y337{bottom:528.466667pt;}
.y13c{bottom:528.493333pt;}
.y4b4{bottom:529.466667pt;}
.y4a4{bottom:530.466667pt;}
.y29f{bottom:531.466667pt;}
.y258{bottom:533.466667pt;}
.ycf{bottom:534.466667pt;}
.y6e{bottom:535.466667pt;}
.y1f2{bottom:535.493333pt;}
.y213{bottom:536.466667pt;}
.y360{bottom:536.493333pt;}
.y347{bottom:537.466667pt;}
.y424{bottom:537.493333pt;}
.y224{bottom:538.466667pt;}
.y43d{bottom:539.466667pt;}
.y10{bottom:540.466667pt;}
.y2c5{bottom:540.493333pt;}
.y4aa{bottom:542.466667pt;}
.y3cd{bottom:542.493333pt;}
.yf1{bottom:543.466667pt;}
.y33{bottom:544.466667pt;}
.y2cf{bottom:545.466667pt;}
.y42f{bottom:545.493333pt;}
.y336{bottom:546.466667pt;}
.y2f1{bottom:547.466667pt;}
.y8e{bottom:547.520000pt;}
.y47a{bottom:548.493333pt;}
.yce{bottom:549.466667pt;}
.y3ab{bottom:550.466667pt;}
.y3d4{bottom:551.506667pt;}
.y23b{bottom:552.506667pt;}
.y6d{bottom:554.506667pt;}
.y385{bottom:555.506667pt;}
.y1f1{bottom:556.506667pt;}
.y4a3{bottom:557.506667pt;}
.y29e{bottom:558.506667pt;}
.y358{bottom:559.493333pt;}
.y356{bottom:559.506667pt;}
.y267{bottom:560.506667pt;}
.yf{bottom:561.506667pt;}
.y278{bottom:562.506667pt;}
.y212{bottom:564.506667pt;}
.y4b{bottom:565.506667pt;}
.y118{bottom:566.506667pt;}
.y384{bottom:567.506667pt;}
.y2e1{bottom:568.506667pt;}
.yf0{bottom:570.506667pt;}
.ya6{bottom:571.506667pt;}
.y32{bottom:572.506667pt;}
.y2f0{bottom:573.506667pt;}
.y456{bottom:574.506667pt;}
.y8d{bottom:575.040000pt;}
.y3d3{bottom:576.506667pt;}
.y15a{bottom:577.506667pt;}
.y2ad{bottom:578.506667pt;}
.y23a{bottom:579.506667pt;}
.ycd{bottom:580.506667pt;}
.y31e{bottom:582.506667pt;}
.ye{bottom:583.506667pt;}
.y392{bottom:584.506667pt;}
.y180{bottom:585.493333pt;}
.y17c{bottom:585.506667pt;}
.y29d{bottom:586.506667pt;}
.y266{bottom:588.533333pt;}
.y257{bottom:589.533333pt;}
.y6c{bottom:590.533333pt;}
.y211{bottom:591.533333pt;}
.y335{bottom:592.533333pt;}
.y223{bottom:594.533333pt;}
.ycc{bottom:595.533333pt;}
.y3cb{bottom:597.533333pt;}
.yef{bottom:598.533333pt;}
.ya5{bottom:599.533333pt;}
.y31{bottom:600.533333pt;}
.y45c{bottom:601.533333pt;}
.y455{bottom:602.533333pt;}
.y8c{bottom:602.560000pt;}
.y2ac{bottom:603.533333pt;}
.yd{bottom:604.533333pt;}
.y3f9{bottom:605.533333pt;}
.y35b{bottom:606.533333pt;}
.y4a0{bottom:607.493333pt;}
.y496{bottom:607.506667pt;}
.y239{bottom:607.533333pt;}
.y114{bottom:608.533333pt;}
.y6b{bottom:609.533333pt;}
.y4a{bottom:610.533333pt;}
.ycb{bottom:611.533333pt;}
.y29c{bottom:612.533333pt;}
.y478{bottom:614.533333pt;}
.y256{bottom:616.533333pt;}
.y313{bottom:617.493333pt;}
.y277{bottom:618.533333pt;}
.y210{bottom:619.533333pt;}
.y1f0{bottom:620.533333pt;}
.y43c{bottom:621.533333pt;}
.y3bd{bottom:622.533333pt;}
.y222{bottom:623.533333pt;}
.y2ef{bottom:624.573333pt;}
.y4a9{bottom:625.560000pt;}
.yca{bottom:626.560000pt;}
.y30{bottom:627.573333pt;}
.y3f7{bottom:628.626667pt;}
.y2ab{bottom:629.560000pt;}
.y35a{bottom:629.626667pt;}
.y8b{bottom:630.080000pt;}
.y159{bottom:632.560000pt;}
.y39b{bottom:633.626667pt;}
.y238{bottom:634.560000pt;}
.y311{bottom:634.626667pt;}
.y286{bottom:636.573333pt;}
.y476{bottom:636.626667pt;}
.y29b{bottom:637.560000pt;}
.y2c4{bottom:638.560000pt;}
.y295{bottom:640.560000pt;}
.y3e6{bottom:640.626667pt;}
.yc9{bottom:641.560000pt;}
.y1ee{bottom:641.626667pt;}
.y177{bottom:642.626667pt;}
.y2ce{bottom:643.560000pt;}
.y421{bottom:643.626667pt;}
.y255{bottom:644.560000pt;}
.y6a{bottom:645.573333pt;}
.yc{bottom:646.560000pt;}
.y3ca{bottom:646.626667pt;}
.y20f{bottom:647.560000pt;}
.y2ee{bottom:649.560000pt;}
.y110{bottom:649.626667pt;}
.y221{bottom:650.560000pt;}
.y42c{bottom:651.573333pt;}
.y2d8{bottom:652.626667pt;}
.yee{bottom:653.560000pt;}
.y13a{bottom:653.626667pt;}
.ya4{bottom:654.573333pt;}
.y2f{bottom:655.560000pt;}
.y464{bottom:656.560000pt;}
.yc8{bottom:657.573333pt;}
.y39a{bottom:657.626667pt;}
.y8a{bottom:657.920000pt;}
.y158{bottom:659.560000pt;}
.y29a{bottom:660.573333pt;}
.y472{bottom:660.626667pt;}
.y237{bottom:662.600000pt;}
.y1ed{bottom:663.626667pt;}
.yb{bottom:664.600000pt;}
.y31d{bottom:665.600000pt;}
.y4b3{bottom:667.600000pt;}
.y420{bottom:667.626667pt;}
.y49d{bottom:668.626667pt;}
.y3c9{bottom:669.626667pt;}
.y407{bottom:670.626667pt;}
.y254{bottom:671.600000pt;}
.yc7{bottom:672.600000pt;}
.y276{bottom:673.600000pt;}
.y2de{bottom:673.626667pt;}
.y20e{bottom:674.600000pt;}
.y19d{bottom:674.626667pt;}
.y334{bottom:675.600000pt;}
.y355{bottom:676.626667pt;}
.y43b{bottom:677.600000pt;}
.y220{bottom:678.600000pt;}
.y2aa{bottom:679.600000pt;}
.y4a8{bottom:680.600000pt;}
.yed{bottom:681.600000pt;}
.y2e{bottom:682.600000pt;}
.y399{bottom:682.626667pt;}
.ya{bottom:683.600000pt;}
.y3f6{bottom:684.600000pt;}
.y1ec{bottom:684.626667pt;}
.y89{bottom:685.440000pt;}
.y454{bottom:685.600000pt;}
.yc6{bottom:687.600000pt;}
.y305{bottom:689.626667pt;}
.y236{bottom:690.600000pt;}
.y41f{bottom:690.626667pt;}
.y285{bottom:691.600000pt;}
.y10f{bottom:691.626667pt;}
.y3c8{bottom:692.626667pt;}
.y31c{bottom:693.600000pt;}
.y2eb{bottom:693.626667pt;}
.y4b2{bottom:695.600000pt;}
.y139{bottom:695.626667pt;}
.y2df{bottom:696.626667pt;}
.y306{bottom:697.626667pt;}
.y20d{bottom:699.626667pt;}
.y49{bottom:700.626667pt;}
.y9{bottom:701.626667pt;}
.y333{bottom:702.626667pt;}
.yc5{bottom:703.626667pt;}
.y43a{bottom:704.626667pt;}
.y1eb{bottom:705.626667pt;}
.y398{bottom:706.626667pt;}
.yec{bottom:708.626667pt;}
.ya3{bottom:709.626667pt;}
.y2d{bottom:710.626667pt;}
.y2e0{bottom:711.626667pt;}
.y453{bottom:712.626667pt;}
.y88{bottom:712.960000pt;}
.y41e{bottom:713.626667pt;}
.y157{bottom:714.626667pt;}
.y2c3{bottom:715.626667pt;}
.y3c7{bottom:716.626667pt;}
.y405{bottom:716.640000pt;}
.y235{bottom:717.626667pt;}
.yc4{bottom:718.626667pt;}
.y69{bottom:719.626667pt;}
.y31b{bottom:720.626667pt;}
.y20c{bottom:721.626667pt;}
.y42b{bottom:722.626667pt;}
.y2ed{bottom:723.626667pt;}
.y19b{bottom:724.626667pt;}
.y371{bottom:725.626667pt;}
.y2dc{bottom:726.626667pt;}
.y1ea{bottom:727.626667pt;}
.y275{bottom:728.626667pt;}
.y3e3{bottom:729.626667pt;}
.y332{bottom:730.626667pt;}
.y394{bottom:730.640000pt;}
.y2fd{bottom:731.626667pt;}
.y3f5{bottom:732.626667pt;}
.yc3{bottom:733.626667pt;}
.y21f{bottom:734.626667pt;}
.yeb{bottom:736.666667pt;}
.y300{bottom:737.626667pt;}
.y2c{bottom:737.666667pt;}
.y4ad{bottom:738.666667pt;}
.y3c6{bottom:739.666667pt;}
.y87{bottom:740.480000pt;}
.y493{bottom:740.626667pt;}
.y2c2{bottom:740.666667pt;}
.y2db{bottom:742.626667pt;}
.y156{bottom:742.666667pt;}
.y48{bottom:745.666667pt;}
.y2dd{bottom:746.626667pt;}
.y284{bottom:746.666667pt;}
.y20b{bottom:747.666667pt;}
.y1e9{bottom:748.666667pt;}
.yc2{bottom:749.666667pt;}
.y4b1{bottom:750.666667pt;}
.y3e2{bottom:752.666667pt;}
.y301{bottom:753.626667pt;}
.y253{bottom:754.666667pt;}
.y397{bottom:755.666667pt;}
.y68{bottom:756.666667pt;}
.y331{bottom:758.666667pt;}
.y439{bottom:759.666667pt;}
.y3bc{bottom:760.666667pt;}
.y21e{bottom:762.666667pt;}
.y4a7{bottom:763.666667pt;}
.yc1{bottom:764.666667pt;}
.y2c0{bottom:765.626667pt;}
.y2b{bottom:765.666667pt;}
.y463{bottom:767.666667pt;}
.y86{bottom:768.320000pt;}
.y155{bottom:768.666667pt;}
.y303{bottom:769.626667pt;}
.y1e7{bottom:769.666667pt;}
.y471{bottom:770.666667pt;}
.y20a{bottom:772.706667pt;}
.y2be{bottom:773.746667pt;}
.y67{bottom:774.706667pt;}
.y31a{bottom:775.706667pt;}
.y10d{bottom:775.746667pt;}
.y33d{bottom:776.706667pt;}
.y3e1{bottom:776.746667pt;}
.y4b0{bottom:778.706667pt;}
.yc0{bottom:779.706667pt;}
.y137{bottom:779.746667pt;}
.y2bf{bottom:781.746667pt;}
.y252{bottom:782.706667pt;}
.y404{bottom:782.746667pt;}
.y274{bottom:783.706667pt;}
.y41a{bottom:783.746667pt;}
.y330{bottom:785.706667pt;}
.y154{bottom:786.706667pt;}
.y3c5{bottom:786.746667pt;}
.y438{bottom:787.706667pt;}
.y370{bottom:787.746667pt;}
.y3bb{bottom:788.706667pt;}
.y2bb{bottom:788.746667pt;}
.y47{bottom:789.706667pt;}
.yea{bottom:791.706667pt;}
.y1e6{bottom:791.746667pt;}
.ya2{bottom:792.706667pt;}
.y42a{bottom:792.746667pt;}
.y2a{bottom:793.706667pt;}
.y352{bottom:793.746667pt;}
.y462{bottom:794.706667pt;}
.ybf{bottom:795.706667pt;}
.y85{bottom:795.840000pt;}
.y2ba{bottom:796.746667pt;}
.y209{bottom:797.706667pt;}
.y486{bottom:799.706667pt;}
.y3e0{bottom:799.746667pt;}
.y234{bottom:800.706667pt;}
.y283{bottom:802.706667pt;}
.y2bd{bottom:802.746667pt;}
.y319{bottom:803.706667pt;}
.y391{bottom:803.746667pt;}
.y33c{bottom:804.706667pt;}
.y437{bottom:805.706667pt;}
.y403{bottom:806.746667pt;}
.y41d{bottom:807.746667pt;}
.y251{bottom:809.733333pt;}
.y3c4{bottom:809.746667pt;}
.ybe{bottom:810.733333pt;}
.y36f{bottom:810.746667pt;}
.y66{bottom:811.733333pt;}
.y2b9{bottom:811.746667pt;}
.y1e5{bottom:812.746667pt;}
.y32f{bottom:813.733333pt;}
.y452{bottom:814.733333pt;}
.y46f{bottom:814.746667pt;}
.y3ba{bottom:816.733333pt;}
.y351{bottom:816.746667pt;}
.y21d{bottom:817.733333pt;}
.y109{bottom:817.746667pt;}
.y4a6{bottom:818.733333pt;}
.ye9{bottom:819.733333pt;}
.y29{bottom:820.733333pt;}
.y134{bottom:820.746667pt;}
.y318{bottom:821.733333pt;}
.y24d{bottom:822.733333pt;}
.y3df{bottom:822.746667pt;}
.y84{bottom:823.360000pt;}
.y436{bottom:824.733333pt;}
.ybd{bottom:825.733333pt;}
.y2c1{bottom:826.746667pt;}
.y233{bottom:828.733333pt;}
.y65{bottom:829.733333pt;}
.y402{bottom:829.746667pt;}
.y41c{bottom:830.746667pt;}
.y153{bottom:831.733333pt;}
.y390{bottom:832.733333pt;}
.y4af{bottom:833.733333pt;}
.y1e4{bottom:833.746667pt;}
.y46{bottom:834.733333pt;}
.y2bc{bottom:834.746667pt;}
.y3b6{bottom:836.733333pt;}
.y250{bottom:837.733333pt;}
.y273{bottom:838.733333pt;}
.y46c{bottom:838.746667pt;}
.y34e{bottom:839.746667pt;}
.y379{bottom:840.733333pt;}
.ybc{bottom:841.733333pt;}
.y3b9{bottom:843.733333pt;}
.ye8{bottom:846.773333pt;}
.y485{bottom:847.773333pt;}
.y2cd{bottom:848.746667pt;}
.y28{bottom:848.773333pt;}
.y24c{bottom:849.773333pt;}
.y32e{bottom:850.773333pt;}
.y83{bottom:850.880000pt;}
.y414{bottom:851.773333pt;}
.y152{bottom:852.773333pt;}
.y1e3{bottom:855.773333pt;}
.ybb{bottom:856.773333pt;}
.y282{bottom:857.773333pt;}
.y317{bottom:858.773333pt;}
.y33b{bottom:859.773333pt;}
.y4ae{bottom:860.773333pt;}
.y435{bottom:861.773333pt;}
.y107{bottom:862.760000pt;}
.y8{bottom:862.773333pt;}
.y3b5{bottom:863.773333pt;}
.y24f{bottom:865.773333pt;}
.y64{bottom:866.773333pt;}
.y34d{bottom:868.773333pt;}
.y3de{bottom:869.760000pt;}
.y3dd{bottom:869.773333pt;}
.y2cb{bottom:871.746667pt;}
.yba{bottom:871.773333pt;}
.y3f4{bottom:872.760000pt;}
.y151{bottom:873.773333pt;}
.ye7{bottom:874.773333pt;}
.y27{bottom:875.773333pt;}
.y1e1{bottom:876.760000pt;}
.y4ac{bottom:876.773333pt;}
.y24b{bottom:877.773333pt;}
.y82{bottom:878.720000pt;}
.y45{bottom:879.773333pt;}
.y36e{bottom:880.760000pt;}
.y7{bottom:880.773333pt;}
.y46a{bottom:882.746667pt;}
.y466{bottom:882.773333pt;}
.y232{bottom:883.800000pt;}
.ya1{bottom:884.800000pt;}
.y63{bottom:885.800000pt;}
.y33a{bottom:886.800000pt;}
.yb9{bottom:887.800000pt;}
.y434{bottom:888.800000pt;}
.y3b4{bottom:889.800000pt;}
.y3b7{bottom:891.800000pt;}
.y24e{bottom:892.800000pt;}
.y150{bottom:893.800000pt;}
.y2ca{bottom:894.746667pt;}
.y272{bottom:894.800000pt;}
.y316{bottom:895.800000pt;}
.y34c{bottom:896.800000pt;}
.y1e0{bottom:897.800000pt;}
.y3b8{bottom:898.800000pt;}
.y490{bottom:899.746667pt;}
.y401{bottom:899.800000pt;}
.y21c{bottom:901.800000pt;}
.yb8{bottom:902.800000pt;}
.y26{bottom:903.800000pt;}
.y105{bottom:904.800000pt;}
.y32d{bottom:905.800000pt;}
.y81{bottom:906.240000pt;}
.y413{bottom:907.800000pt;}
.y6{bottom:908.800000pt;}
.y231{bottom:910.800000pt;}
.y320{bottom:911.800000pt;}
.y281{bottom:912.800000pt;}
.y14f{bottom:914.800000pt;}
.y3b3{bottom:916.800000pt;}
.yb7{bottom:917.800000pt;}
.yfe{bottom:918.800000pt;}
.yaf{bottom:919.800000pt;}
.y265{bottom:920.840000pt;}
.y62{bottom:921.840000pt;}
.y3fe{bottom:922.880000pt;}
.y323{bottom:923.840000pt;}
.y44{bottom:924.840000pt;}
.y44b{bottom:925.880000pt;}
.y246{bottom:926.880000pt;}
.y21b{bottom:929.840000pt;}
.y280{bottom:930.840000pt;}
.y25{bottom:931.840000pt;}
.y4ab{bottom:931.880000pt;}
.y24a{bottom:932.840000pt;}
.y4b9{bottom:932.880000pt;}
.y80{bottom:933.760000pt;}
.yb6{bottom:933.840000pt;}
.y412{bottom:934.840000pt;}
.y5{bottom:935.840000pt;}
.y61{bottom:940.840000pt;}
.y1df{bottom:940.880000pt;}
.y168{bottom:941.880000pt;}
.y339{bottom:942.840000pt;}
.y3f3{bottom:942.880000pt;}
.y3b2{bottom:943.840000pt;}
.y38e{bottom:945.840000pt;}
.y133{bottom:946.880000pt;}
.yb5{bottom:948.840000pt;}
.y271{bottom:949.840000pt;}
.y322{bottom:951.840000pt;}
.y411{bottom:953.840000pt;}
.y14e{bottom:955.840000pt;}
.y21a{bottom:957.866667pt;}
.y489{bottom:957.880000pt;}
.y24{bottom:958.866667pt;}
.y249{bottom:960.866667pt;}
.y7f{bottom:961.280000pt;}
.y1dd{bottom:961.880000pt;}
.y4{bottom:963.866667pt;}
.y43{bottom:969.866667pt;}
.y400{bottom:969.880000pt;}
.y38d{bottom:971.866667pt;}
.y14d{bottom:976.866667pt;}
.y60{bottom:977.866667pt;}
.y321{bottom:978.866667pt;}
.yb4{bottom:979.866667pt;}
.y410{bottom:980.866667pt;}
.y1dc{bottom:983.880000pt;}
.y219{bottom:985.866667pt;}
.y23{bottom:986.866667pt;}
.y248{bottom:987.866667pt;}
.y3{bottom:988.866667pt;}
.y12f{bottom:988.880000pt;}
.y7e{bottom:989.120000pt;}
.y5f{bottom:995.893333pt;}
.y14c{bottom:997.893333pt;}
.y166{bottom:998.893333pt;}
.y1db{bottom:1004.893333pt;}
.y488{bottom:1005.893333pt;}
.y315{bottom:1006.893333pt;}
.y2{bottom:1013.893333pt;}
.y4a5{bottom:1014.893333pt;}
.y230{bottom:1015.893333pt;}
.y14b{bottom:1017.893333pt;}
.y22f{bottom:1042.933333pt;}
.y314{bottom:1051.933333pt;}
.yb3{bottom:1061.933333pt;}
.hb{height:15.000000pt;}
.h64{height:16.000000pt;}
.h65{height:16.125333pt;}
.h57{height:19.000000pt;}
.h95{height:19.946667pt;}
.h92{height:19.960000pt;}
.h93{height:19.973333pt;}
.h8b{height:19.986667pt;}
.h96{height:19.993333pt;}
.h5f{height:20.000000pt;}
.h94{height:20.033333pt;}
.h58{height:20.125333pt;}
.h7c{height:20.933333pt;}
.h3e{height:20.946667pt;}
.h42{height:20.960000pt;}
.h6e{height:20.966667pt;}
.h4e{height:20.973333pt;}
.h4a{height:20.974667pt;}
.h47{height:20.980000pt;}
.h45{height:20.986667pt;}
.h4c{height:20.993333pt;}
.h46{height:21.000000pt;}
.h43{height:21.033333pt;}
.h71{height:21.933333pt;}
.h4d{height:21.946667pt;}
.h44{height:21.960000pt;}
.h4f{height:21.966667pt;}
.h3f{height:21.973333pt;}
.h79{height:21.980000pt;}
.h4b{height:21.986667pt;}
.h41{height:21.993333pt;}
.h49{height:22.000000pt;}
.h48{height:22.033333pt;}
.h30{height:25.000000pt;}
.h62{height:26.980000pt;}
.h25{height:26.986667pt;}
.h5a{height:28.033333pt;}
.h38{height:31.973333pt;}
.h5b{height:31.986667pt;}
.h21{height:36.980000pt;}
.h22{height:36.986667pt;}
.h1e{height:36.993333pt;}
.h1f{height:37.000000pt;}
.h1c{height:37.033333pt;}
.h1b{height:37.966667pt;}
.h1d{height:37.973333pt;}
.h19{height:37.980000pt;}
.h17{height:37.986667pt;}
.h20{height:37.993333pt;}
.h1a{height:38.000000pt;}
.h15{height:38.033333pt;}
.h18{height:41.000000pt;}
.h8c{height:41.993333pt;}
.h40{height:42.000000pt;}
.h90{height:42.066667pt;}
.h91{height:42.125333pt;}
.h50{height:42.973333pt;}
.h51{height:42.974667pt;}
.h52{height:43.000000pt;}
.h3b{height:43.031250pt;}
.h53{height:43.033333pt;}
.h54{height:43.125333pt;}
.h8f{height:43.162109pt;}
.h77{height:44.000000pt;}
.h83{height:44.033333pt;}
.h84{height:44.066667pt;}
.h8e{height:44.343750pt;}
.h80{height:44.986667pt;}
.h86{height:44.993333pt;}
.h81{height:45.000000pt;}
.h7f{height:45.033333pt;}
.h75{height:45.066667pt;}
.h7e{height:45.986667pt;}
.h7b{height:46.066667pt;}
.h67{height:46.980000pt;}
.h59{height:47.033333pt;}
.h23{height:47.085938pt;}
.h33{height:47.109375pt;}
.h61{height:47.993333pt;}
.h32{height:48.000000pt;}
.h36{height:48.033333pt;}
.h3d{height:48.066667pt;}
.h37{height:48.125333pt;}
.h31{height:48.375000pt;}
.h16{height:50.062500pt;}
.h10{height:51.035156pt;}
.hc{height:52.406250pt;}
.h63{height:54.234375pt;}
.h2f{height:54.982667pt;}
.h6a{height:54.986667pt;}
.h5e{height:54.992000pt;}
.h69{height:54.993333pt;}
.h26{height:55.000000pt;}
.h2a{height:55.066667pt;}
.h2b{height:55.125333pt;}
.h66{height:56.000000pt;}
.h9a{height:56.033333pt;}
.h9b{height:56.125333pt;}
.h24{height:57.375000pt;}
.ha4{height:57.993333pt;}
.h11{height:58.857422pt;}
.hf{height:58.886719pt;}
.h9c{height:59.000000pt;}
.ha2{height:59.066667pt;}
.ha3{height:59.125333pt;}
.h76{height:59.314453pt;}
.h5{height:60.468750pt;}
.h13{height:62.781250pt;}
.h4{height:62.812500pt;}
.h5c{height:63.000000pt;}
.ha5{height:63.183594pt;}
.h9{height:63.984375pt;}
.h8a{height:63.993333pt;}
.h3c{height:64.000000pt;}
.h89{height:64.033333pt;}
.h87{height:64.066667pt;}
.h88{height:64.125333pt;}
.h6{height:64.500000pt;}
.h14{height:66.750000pt;}
.h82{height:67.986667pt;}
.h85{height:67.993333pt;}
.h68{height:68.000000pt;}
.h72{height:68.066667pt;}
.h73{height:68.125333pt;}
.ha1{height:70.000000pt;}
.h97{height:70.066667pt;}
.hd{height:71.066667pt;}
.h55{height:72.000000pt;}
.h12{height:72.066667pt;}
.h29{height:74.000000pt;}
.h2d{height:74.066667pt;}
.h2e{height:74.125333pt;}
.h7{height:76.728125pt;}
.h8d{height:80.098667pt;}
.h60{height:82.000000pt;}
.h56{height:83.000000pt;}
.ha{height:85.265625pt;}
.h6d{height:91.000000pt;}
.h6b{height:91.066667pt;}
.h6c{height:91.125333pt;}
.h6f{height:92.066667pt;}
.h74{height:92.082667pt;}
.h70{height:92.125333pt;}
.h9d{height:96.066667pt;}
.h9e{height:96.125333pt;}
.he{height:96.884375pt;}
.h5d{height:100.264062pt;}
.h39{height:112.074667pt;}
.h3a{height:112.125333pt;}
.h98{height:117.084000pt;}
.h99{height:117.125333pt;}
.h9f{height:131.092000pt;}
.ha0{height:131.125333pt;}
.h34{height:144.106667pt;}
.h35{height:144.120000pt;}
.h2c{height:147.120000pt;}
.h7d{height:216.106667pt;}
.h7a{height:216.200000pt;}
.h27{height:221.200000pt;}
.h28{height:221.253333pt;}
.h78{height:679.600000pt;}
.h8{height:1089.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h2{height:1123.000000pt;}
.h3{height:1123.333333pt;}
.w4{width:6.000000pt;}
.w2e{width:7.000000pt;}
.w6{width:14.000000pt;}
.w59{width:19.000000pt;}
.w37{width:19.125333pt;}
.w82{width:20.000000pt;}
.w5a{width:22.000000pt;}
.w33{width:22.125333pt;}
.w34{width:23.000000pt;}
.w38{width:23.125333pt;}
.w4d{width:26.000000pt;}
.w4a{width:26.125333pt;}
.w35{width:30.000000pt;}
.w36{width:30.125333pt;}
.w61{width:31.000000pt;}
.w4f{width:31.125333pt;}
.w49{width:34.000000pt;}
.w5b{width:34.125333pt;}
.w39{width:37.000000pt;}
.w4c{width:38.000000pt;}
.w4b{width:38.125333pt;}
.w96{width:39.033333pt;}
.w94{width:39.993333pt;}
.w95{width:40.000000pt;}
.w97{width:40.066667pt;}
.w9a{width:41.973333pt;}
.w99{width:42.066667pt;}
.w98{width:43.000000pt;}
.w4e{width:46.125333pt;}
.w6b{width:51.058667pt;}
.w80{width:58.098667pt;}
.w76{width:60.000000pt;}
.w6e{width:62.066667pt;}
.w6a{width:63.000000pt;}
.w6d{width:63.073333pt;}
.w74{width:64.066667pt;}
.w73{width:68.072000pt;}
.wa8{width:69.066667pt;}
.w19{width:69.100000pt;}
.w1f{width:69.125333pt;}
.wa6{width:70.000000pt;}
.wa5{width:70.066667pt;}
.w77{width:70.085333pt;}
.wc{width:70.100000pt;}
.w12{width:70.125333pt;}
.wb0{width:73.000000pt;}
.wb1{width:73.098667pt;}
.waf{width:74.100000pt;}
.w48{width:75.098667pt;}
.w46{width:76.000000pt;}
.w47{width:76.085333pt;}
.w6c{width:76.100000pt;}
.w57{width:77.000000pt;}
.w7c{width:78.072000pt;}
.w58{width:78.085333pt;}
.w7b{width:78.086667pt;}
.w87{width:78.098667pt;}
.w75{width:78.100000pt;}
.w64{width:81.085333pt;}
.w78{width:81.098667pt;}
.w89{width:82.058667pt;}
.wa4{width:82.072000pt;}
.wa7{width:82.085333pt;}
.w9f{width:82.093333pt;}
.w8f{width:82.098667pt;}
.wad{width:82.100000pt;}
.wa9{width:83.117333pt;}
.w79{width:85.085333pt;}
.w45{width:88.060000pt;}
.w44{width:89.100000pt;}
.w1d{width:90.072000pt;}
.w24{width:90.074667pt;}
.w25{width:90.125333pt;}
.w55{width:91.072000pt;}
.w10{width:91.098667pt;}
.wb5{width:91.106667pt;}
.w16{width:91.108000pt;}
.w17{width:91.125333pt;}
.wbe{width:92.106667pt;}
.w56{width:92.133333pt;}
.w88{width:94.072000pt;}
.wa0{width:94.073333pt;}
.wa1{width:94.080000pt;}
.wba{width:94.082667pt;}
.w14{width:94.084000pt;}
.wf{width:94.085333pt;}
.wb6{width:94.086667pt;}
.w8a{width:94.098667pt;}
.w8{width:94.100000pt;}
.w90{width:94.112000pt;}
.w15{width:94.125333pt;}
.w22{width:95.084000pt;}
.w1c{width:95.085333pt;}
.wbf{width:95.086667pt;}
.w23{width:95.125333pt;}
.w18{width:96.117333pt;}
.w1e{width:96.125333pt;}
.w13{width:100.092000pt;}
.we{width:100.098667pt;}
.wb{width:100.117333pt;}
.w11{width:100.125333pt;}
.w54{width:101.000000pt;}
.w7f{width:101.106667pt;}
.wae{width:101.125333pt;}
.w20{width:108.092000pt;}
.w1b{width:108.098667pt;}
.w21{width:108.125333pt;}
.wb3{width:109.166667pt;}
.wb7{width:109.250667pt;}
.wbc{width:110.166667pt;}
.w43{width:111.080000pt;}
.wb2{width:114.084000pt;}
.wb4{width:114.093333pt;}
.wb8{width:114.100000pt;}
.wb9{width:114.125333pt;}
.wbd{width:116.093333pt;}
.w67{width:116.125333pt;}
.w9b{width:117.113333pt;}
.w83{width:117.117333pt;}
.w8c{width:117.125333pt;}
.w81{width:118.112000pt;}
.w8b{width:118.117333pt;}
.w52{width:118.125333pt;}
.w6f{width:121.084000pt;}
.w3f{width:121.116000pt;}
.w42{width:121.120000pt;}
.w40{width:121.125333pt;}
.wc0{width:123.117333pt;}
.wc4{width:123.125333pt;}
.w3b{width:123.166667pt;}
.w3c{width:123.250667pt;}
.w3d{width:125.108000pt;}
.w41{width:125.113333pt;}
.w3e{width:125.125333pt;}
.w2a{width:127.113333pt;}
.wd{width:129.125333pt;}
.w5c{width:130.108000pt;}
.w60{width:130.112000pt;}
.w5d{width:130.125333pt;}
.w30{width:130.166667pt;}
.w31{width:130.250667pt;}
.w26{width:131.113333pt;}
.w50{width:131.166667pt;}
.w51{width:131.250667pt;}
.w1a{width:134.120000pt;}
.w70{width:134.160000pt;}
.wc3{width:136.106667pt;}
.wc7{width:136.120000pt;}
.w91{width:137.200000pt;}
.wc1{width:139.160000pt;}
.wc5{width:139.253333pt;}
.w71{width:140.120000pt;}
.w69{width:141.106667pt;}
.w68{width:141.200000pt;}
.w53{width:142.106667pt;}
.w32{width:142.120000pt;}
.w5e{width:142.186667pt;}
.w5f{width:142.253333pt;}
.wac{width:145.106667pt;}
.wab{width:149.120000pt;}
.w3a{width:150.120000pt;}
.w65{width:151.200000pt;}
.w62{width:152.200000pt;}
.w28{width:153.120000pt;}
.w72{width:153.200000pt;}
.w2f{width:154.120000pt;}
.wa3{width:154.160000pt;}
.w27{width:157.200000pt;}
.wc2{width:159.200000pt;}
.wc6{width:159.253333pt;}
.w2b{width:161.186667pt;}
.w2d{width:161.200000pt;}
.w2c{width:161.253333pt;}
.w7e{width:163.200000pt;}
.w66{width:163.240000pt;}
.w7{width:171.240000pt;}
.w85{width:178.200000pt;}
.w9d{width:178.240000pt;}
.waa{width:185.240000pt;}
.w9e{width:190.200000pt;}
.w86{width:190.226667pt;}
.w8e{width:190.253333pt;}
.w92{width:207.226667pt;}
.w93{width:220.240000pt;}
.w7d{width:266.333333pt;}
.w63{width:272.320000pt;}
.wc8{width:297.360000pt;}
.wc9{width:297.373333pt;}
.w9{width:306.360000pt;}
.w7a{width:345.440000pt;}
.w9c{width:370.466667pt;}
.wbb{width:417.533333pt;}
.w29{width:441.506667pt;}
.w84{width:450.573333pt;}
.wa2{width:465.573333pt;}
.w8d{width:466.573333pt;}
.w5{width:574.733333pt;}
.wa{width:575.733333pt;}
.w3{width:761.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.000000pt;}
.x57{left:1.986667pt;}
.x3a{left:3.000000pt;}
.x53{left:4.000000pt;}
.x38{left:5.000000pt;}
.x56{left:6.000000pt;}
.x75{left:6.986667pt;}
.x76{left:8.000000pt;}
.x72{left:9.000000pt;}
.x7c{left:10.026667pt;}
.x6a{left:11.033333pt;}
.x63{left:11.986667pt;}
.x2e{left:13.000000pt;}
.x64{left:14.000000pt;}
.x3c{left:14.986667pt;}
.x11{left:16.000000pt;}
.x79{left:17.026667pt;}
.x60{left:18.000000pt;}
.x48{left:19.026667pt;}
.x73{left:20.033333pt;}
.x32{left:21.026667pt;}
.x5b{left:22.026667pt;}
.x59{left:23.026667pt;}
.x77{left:24.026667pt;}
.x49{left:25.026667pt;}
.x43{left:26.026667pt;}
.x2d{left:27.026667pt;}
.x3e{left:28.026667pt;}
.x4c{left:29.026667pt;}
.x35{left:30.026667pt;}
.x37{left:31.026667pt;}
.x46{left:32.026667pt;}
.x51{left:33.026667pt;}
.x4b{left:34.026667pt;}
.x4f{left:35.026667pt;}
.x29{left:36.026667pt;}
.x86{left:37.040000pt;}
.x33{left:38.026667pt;}
.x85{left:39.053333pt;}
.x4e{left:40.066667pt;}
.x82{left:41.040000pt;}
.x31{left:42.066667pt;}
.x70{left:43.026667pt;}
.x68{left:44.026667pt;}
.x7b{left:45.066667pt;}
.x6e{left:46.066667pt;}
.x7a{left:47.040000pt;}
.x83{left:48.074667pt;}
.x74{left:49.074667pt;}
.x78{left:50.093333pt;}
.x7f{left:51.066667pt;}
.x96{left:52.066667pt;}
.x50{left:53.066667pt;}
.x84{left:54.093333pt;}
.x93{left:55.013333pt;}
.x8c{left:56.053333pt;}
.x91{left:57.013333pt;}
.x61{left:58.066667pt;}
.x8a{left:59.040000pt;}
.x62{left:60.053333pt;}
.x67{left:61.106667pt;}
.x44{left:62.106667pt;}
.x3b{left:63.106667pt;}
.x52{left:64.106667pt;}
.x34{left:65.106667pt;}
.x2c{left:66.106667pt;}
.x3d{left:67.053333pt;}
.x41{left:68.106667pt;}
.x54{left:69.053333pt;}
.xee{left:70.106667pt;}
.xed{left:71.053333pt;}
.xad{left:72.040000pt;}
.x27{left:73.106667pt;}
.x90{left:74.040000pt;}
.x69{left:79.093333pt;}
.x120{left:80.066667pt;}
.x47{left:81.093333pt;}
.x4d{left:82.093333pt;}
.x58{left:87.093333pt;}
.x30{left:88.093333pt;}
.x122{left:90.066667pt;}
.x5a{left:95.093333pt;}
.x2a{left:96.093333pt;}
.x12{left:97.279933pt;}
.x5e{left:99.093333pt;}
.x97{left:100.080000pt;}
.x119{left:103.133333pt;}
.x11e{left:106.133333pt;}
.x18{left:107.133333pt;}
.x36{left:108.120000pt;}
.x26{left:109.133333pt;}
.x65{left:111.120000pt;}
.x1{left:113.133333pt;}
.x139{left:114.133333pt;}
.x2b{left:115.173333pt;}
.x45{left:118.133333pt;}
.x42{left:120.173333pt;}
.x5d{left:121.133333pt;}
.x39{left:122.133333pt;}
.xa2{left:125.173333pt;}
.x13c{left:127.120000pt;}
.x55{left:128.133333pt;}
.x8f{left:129.120000pt;}
.x131{left:130.166667pt;}
.x13d{left:131.160000pt;}
.xf{left:132.166667pt;}
.x4a{left:134.160000pt;}
.x7{left:135.160000pt;}
.x66{left:136.173333pt;}
.x22{left:137.160000pt;}
.xd2{left:138.160000pt;}
.x15{left:141.160000pt;}
.x8d{left:142.146667pt;}
.xd6{left:144.253333pt;}
.x5f{left:146.200000pt;}
.x92{left:147.146667pt;}
.x8e{left:149.146667pt;}
.x1e{left:150.200000pt;}
.x5c{left:153.160000pt;}
.x9{left:156.200000pt;}
.x16{left:157.200000pt;}
.xfc{left:158.200000pt;}
.xd{left:160.200000pt;}
.x25{left:161.200000pt;}
.xab{left:162.253333pt;}
.x87{left:163.253333pt;}
.xae{left:164.200000pt;}
.x94{left:166.186667pt;}
.x111{left:171.226667pt;}
.x140{left:172.226667pt;}
.x142{left:174.226667pt;}
.x40{left:176.226667pt;}
.x8{left:177.240000pt;}
.xe{left:179.240000pt;}
.x1f{left:181.226667pt;}
.xa3{left:184.240000pt;}
.xdd{left:185.253333pt;}
.x17{left:186.240000pt;}
.xea{left:187.226667pt;}
.x5{left:190.240000pt;}
.x95{left:191.213333pt;}
.x12b{left:198.226667pt;}
.xc5{left:202.253333pt;}
.x9f{left:203.266667pt;}
.x7d{left:205.266667pt;}
.x24{left:207.266667pt;}
.x23{left:208.266667pt;}
.x6b{left:209.266667pt;}
.xdb{left:210.253333pt;}
.x3{left:219.266667pt;}
.x11a{left:222.306667pt;}
.x105{left:223.306667pt;}
.x107{left:224.306667pt;}
.x118{left:225.293333pt;}
.xfa{left:230.306667pt;}
.x98{left:231.293333pt;}
.xaf{left:233.253333pt;}
.x110{left:234.306667pt;}
.x116{left:235.306667pt;}
.x13a{left:239.306667pt;}
.xfe{left:243.306667pt;}
.x19{left:244.306667pt;}
.xb7{left:245.306667pt;}
.xb8{left:246.306667pt;}
.xd7{left:247.306667pt;}
.x11f{left:252.373333pt;}
.x99{left:255.333333pt;}
.xa{left:263.333333pt;}
.xdc{left:269.373333pt;}
.xb0{left:270.373333pt;}
.xd3{left:271.373333pt;}
.xc0{left:275.373333pt;}
.x7e{left:276.373333pt;}
.xf5{left:278.373333pt;}
.x9a{left:279.360000pt;}
.x6c{left:281.373333pt;}
.x28{left:282.373333pt;}
.xf4{left:284.373333pt;}
.x3f{left:287.373333pt;}
.x8b{left:290.373333pt;}
.x88{left:294.373333pt;}
.x10b{left:296.373333pt;}
.xb1{left:301.373333pt;}
.x108{left:302.400000pt;}
.x12c{left:306.400000pt;}
.x100{left:313.400000pt;}
.xbd{left:314.400000pt;}
.xec{left:317.400000pt;}
.x4{left:318.400000pt;}
.xc7{left:326.373333pt;}
.x114{left:330.440000pt;}
.xa0{left:332.185867pt;}
.xe0{left:333.373333pt;}
.x123{left:336.440000pt;}
.xd8{left:340.440000pt;}
.xc{left:341.440000pt;}
.xe5{left:342.440000pt;}
.xf7{left:343.440000pt;}
.xc6{left:345.373333pt;}
.xce{left:347.373333pt;}
.xe6{left:355.506667pt;}
.x134{left:358.506667pt;}
.x132{left:359.506667pt;}
.xbb{left:363.506667pt;}
.x138{left:365.466667pt;}
.xc1{left:366.506667pt;}
.x124{left:377.506667pt;}
.xb{left:378.466667pt;}
.xff{left:379.506667pt;}
.x13b{left:380.506667pt;}
.x12d{left:385.506667pt;}
.x10d{left:387.506667pt;}
.x21{left:390.506667pt;}
.xd4{left:391.506667pt;}
.xdf{left:392.506667pt;}
.x9c{left:393.506667pt;}
.x14{left:394.506667pt;}
.x6{left:396.506667pt;}
.x11b{left:402.506667pt;}
.xb2{left:407.506667pt;}
.x6d{left:412.533333pt;}
.x112{left:414.533333pt;}
.xcf{left:415.506667pt;}
.x125{left:419.533333pt;}
.x2{left:420.533333pt;}
.x1c{left:422.865467pt;}
.x13e{left:424.166267pt;}
.xc8{left:428.506667pt;}
.xba{left:431.626667pt;}
.xe7{left:432.626667pt;}
.xde{left:433.626667pt;}
.xd9{left:434.626667pt;}
.xf2{left:437.626667pt;}
.xbe{left:439.626667pt;}
.xac{left:450.626667pt;}
.x89{left:451.626667pt;}
.xd0{left:453.626667pt;}
.xc2{left:456.626667pt;}
.x101{left:459.626667pt;}
.x121{left:461.626667pt;}
.x129{left:462.626667pt;}
.x109{left:467.626667pt;}
.x1a{left:472.166267pt;}
.xf8{left:474.626667pt;}
.x135{left:475.626667pt;}
.x133{left:476.626667pt;}
.x9d{left:478.822533pt;}
.xe4{left:482.600000pt;}
.x10c{left:488.640000pt;}
.xcc{left:491.626667pt;}
.xe3{left:494.626667pt;}
.x11d{left:498.640000pt;}
.xfb{left:501.626667pt;}
.xb9{left:506.626667pt;}
.x115{left:510.666667pt;}
.x117{left:511.666667pt;}
.xda{left:513.666667pt;}
.x6f{left:514.666667pt;}
.xf3{left:515.666667pt;}
.xcb{left:517.626667pt;}
.xe2{left:518.626667pt;}
.xcd{left:521.666667pt;}
.x80{left:522.666667pt;}
.x103{left:524.666667pt;}
.xb3{left:526.626667pt;}
.x130{left:533.666667pt;}
.xc3{left:534.666667pt;}
.xd5{left:535.746667pt;}
.x12e{left:536.746667pt;}
.xf6{left:539.746667pt;}
.x10{left:540.706667pt;}
.xb5{left:541.746667pt;}
.x104{left:543.706667pt;}
.x126{left:550.746667pt;}
.xb6{left:552.706667pt;}
.xa1{left:553.693333pt;}
.xca{left:555.746667pt;}
.xb4{left:556.746667pt;}
.x12a{left:558.746667pt;}
.xf9{left:565.733333pt;}
.xbf{left:566.746667pt;}
.x10e{left:567.733333pt;}
.x136{left:569.746667pt;}
.x106{left:570.746667pt;}
.x13{left:577.529600pt;}
.x13f{left:590.773333pt;}
.x1d{left:593.773333pt;}
.x11c{left:594.773333pt;}
.xef{left:595.760000pt;}
.xaa{left:596.773333pt;}
.x141{left:598.760000pt;}
.xc9{left:600.746667pt;}
.x1b{left:602.773333pt;}
.x10f{left:604.760000pt;}
.x113{left:606.773333pt;}
.xe9{left:607.760000pt;}
.x12f{left:608.773333pt;}
.x71{left:610.773333pt;}
.x128{left:611.773333pt;}
.xc4{left:612.773333pt;}
.x137{left:613.760000pt;}
.xeb{left:616.800000pt;}
.x10a{left:617.800000pt;}
.x9e{left:618.800000pt;}
.x81{left:619.800000pt;}
.xe1{left:627.746667pt;}
.x20{left:630.800000pt;}
.xf0{left:638.800000pt;}
.x127{left:639.800000pt;}
.xbc{left:660.840000pt;}
.xe8{left:664.213200pt;}
.xa9{left:665.840000pt;}
.x9b{left:666.866667pt;}
.xfd{left:668.866667pt;}
.xd1{left:671.866667pt;}
.xa7{left:677.866667pt;}
.x102{left:678.866667pt;}
.xa6{left:679.866667pt;}
.xa8{left:680.866667pt;}
.xf1{left:682.866667pt;}
.xa5{left:683.866667pt;}
.xa4{left:684.866667pt;}
}




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