
    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_f1f5195d504eb9d451c85e93.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_8400be93efc7c00cc154df0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9d2088afdd4e1939a6d0f872.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939000;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_79efd80494eac749a6f38012.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_d8ac82211836bbe559b27cc9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.725000;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_abd297dccd51a95fcdda161f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1a7e7546e8a1cd91b68d1a7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746000;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_412bd1c6ee2173980fbd7e9a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.759000;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_52eb6257180ef4ebdaebc24f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.957000;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_a1adec5017d9a5556801e58e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_5cc8162234a489a729afe849.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.386719;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_10973f8be43c649c99d9048e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.332520;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_fe73993b618d6a7d59a20a18.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.313477;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_135b4c5145fedadda100d2f6.woff2')format("woff");}.fff{font-family:fff;line-height:1.330566;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_c9882a47bfb02d44a6999a72.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.127000;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_80e0beec2f8df25dfc68d0ee.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.076000;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_9cc6ed54ee5021f30009edc6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206543;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_aaa49f701467a67d5f985680.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.229492;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_1819f0f12e0df6105b76a52b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.259277;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_b0ce64143f9879f0eace79ee.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.330078;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_477c603b83cb7809f215262e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.338867;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_a1adec5017d9a5556801e58e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.984000;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_fd9dcdcfdcba3be269284352.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.127000;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_da78b51d77d5ad433528171a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.076000;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_c5d3751d78a42beb1889b519.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.923587;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v8{vertical-align:-33.120000px;}
.v5{vertical-align:-30.240000px;}
.v6{vertical-align:-27.360000px;}
.vb{vertical-align:-18.720000px;}
.v3{vertical-align:-16.560000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.002760px;}
.v7{vertical-align:27.114480px;}
.va{vertical-align:30.246480px;}
.v4{vertical-align:33.120000px;}
.v9{vertical-align:53.980560px;}
.v2{vertical-align:55.427760px;}
.ls59{letter-spacing:-1.656000px;}
.ls40{letter-spacing:-1.640160px;}
.ls56{letter-spacing:-1.512000px;}
.ls4e{letter-spacing:-1.440000px;}
.ls48{letter-spacing:-1.061280px;}
.ls49{letter-spacing:-1.013040px;}
.ls8d{letter-spacing:-0.964800px;}
.lsa{letter-spacing:-0.936000px;}
.ls45{letter-spacing:-0.916560px;}
.ls46{letter-spacing:-0.820080px;}
.lsa4{letter-spacing:-0.792000px;}
.ls47{letter-spacing:-0.771840px;}
.ls50{letter-spacing:-0.728640px;}
.ls94{letter-spacing:-0.723600px;}
.ls13{letter-spacing:-0.720000px;}
.lsa1{letter-spacing:-0.657360px;}
.ls4d{letter-spacing:-0.576000px;}
.ls43{letter-spacing:-0.530640px;}
.ls11{letter-spacing:-0.504000px;}
.ls8c{letter-spacing:-0.486000px;}
.ls60{letter-spacing:-0.478080px;}
.ls9f{letter-spacing:-0.463680px;}
.ls44{letter-spacing:-0.434160px;}
.ls52{letter-spacing:-0.432000px;}
.ls77{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.358560px;}
.ls3f{letter-spacing:-0.337680px;}
.lsa0{letter-spacing:-0.336960px;}
.ls65{letter-spacing:-0.331200px;}
.ls42{letter-spacing:-0.289440px;}
.ls6{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.241200px;}
.ls5f{letter-spacing:-0.239040px;}
.ls7{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.192960px;}
.ls4c{letter-spacing:-0.144000px;}
.ls8e{letter-spacing:-0.096480px;}
.lsf{letter-spacing:-0.084240px;}
.ls54{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.059760px;}
.ls4b{letter-spacing:-0.048240px;}
.ls0{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.059760px;}
.ls64{letter-spacing:0.060480px;}
.ls9{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.084240px;}
.lsb{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.149760px;}
.ls4f{letter-spacing:0.174240px;}
.ls5b{letter-spacing:0.179280px;}
.ls62{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.192960px;}
.ls53{letter-spacing:0.216000px;}
.ls5e{letter-spacing:0.239040px;}
.ls12{letter-spacing:0.264960px;}
.ls10{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.288720px;}
.ls3d{letter-spacing:0.289440px;}
.ls63{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.331200px;}
.ls2{letter-spacing:0.336960px;}
.ls66{letter-spacing:0.337680px;}
.ls58{letter-spacing:0.358560px;}
.ls57{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.385920px;}
.ls55{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.482400px;}
.ls8f{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.ls5a{letter-spacing:0.896400px;}
.ls5d{letter-spacing:1.015920px;}
.lsa2{letter-spacing:1.440000px;}
.ls97{letter-spacing:33.960960px;}
.ls51{letter-spacing:33.984000px;}
.ls93{letter-spacing:49.831920px;}
.ls92{letter-spacing:49.880160px;}
.ls96{letter-spacing:50.555520px;}
.ls9a{letter-spacing:50.603760px;}
.ls95{letter-spacing:59.190480px;}
.ls91{letter-spacing:59.238720px;}
.ls5{letter-spacing:66.960000px;}
.ls1d{letter-spacing:80.078400px;}
.ls37{letter-spacing:80.802000px;}
.ls1e{letter-spacing:82.972800px;}
.ls29{letter-spacing:85.143600px;}
.ls1c{letter-spacing:87.989760px;}
.ls71{letter-spacing:97.396560px;}
.ls19{letter-spacing:102.401280px;}
.ls38{letter-spacing:103.137120px;}
.ls2a{letter-spacing:106.031520px;}
.ls3b{letter-spacing:106.755120px;}
.ls72{letter-spacing:111.772080px;}
.ls1f{letter-spacing:115.390080px;}
.ls70{letter-spacing:118.236240px;}
.ls2e{letter-spacing:124.025040px;}
.ls2c{letter-spacing:125.472240px;}
.ls20{letter-spacing:126.919440px;}
.ls33{letter-spacing:127.643040px;}
.ls6c{letter-spacing:128.318400px;}
.ls75{letter-spacing:129.042000px;}
.ls2f{letter-spacing:130.489200px;}
.ls2d{letter-spacing:131.212800px;}
.ls1b{letter-spacing:131.936400px;}
.ls74{letter-spacing:133.383600px;}
.ls16{letter-spacing:137.001600px;}
.ls36{letter-spacing:139.124160px;}
.ls21{letter-spacing:141.294960px;}
.ls28{letter-spacing:147.083760px;}
.ls6d{letter-spacing:148.482720px;}
.ls26{letter-spacing:150.653520px;}
.ls15{letter-spacing:152.100720px;}
.ls25{letter-spacing:158.564880px;}
.ls24{letter-spacing:163.630080px;}
.ls17{letter-spacing:164.353680px;}
.ls73{letter-spacing:165.800880px;}
.ls39{letter-spacing:168.647040px;}
.ls2b{letter-spacing:173.008080px;}
.ls30{letter-spacing:183.070800px;}
.lsa5{letter-spacing:184.104000px;}
.ls27{letter-spacing:185.241600px;}
.ls18{letter-spacing:192.429360px;}
.ls82{letter-spacing:193.876560px;}
.ls89{letter-spacing:206.804880px;}
.ls31{letter-spacing:212.593680px;}
.ls81{letter-spacing:215.439840px;}
.ls34{letter-spacing:237.774960px;}
.ls8b{letter-spacing:240.669360px;}
.ls9b{letter-spacing:249.304320px;}
.ls84{letter-spacing:256.443840px;}
.ls86{letter-spacing:257.215680px;}
.ls7b{letter-spacing:260.110080px;}
.ls35{letter-spacing:265.850640px;}
.ls7f{letter-spacing:268.021440px;}
.ls79{letter-spacing:275.932800px;}
.ls85{letter-spacing:286.738560px;}
.ls9d{letter-spacing:288.185760px;}
.ls9c{letter-spacing:298.991520px;}
.ls32{letter-spacing:314.814240px;}
.ls6e{letter-spacing:339.320160px;}
.ls99{letter-spacing:378.876960px;}
.ls6f{letter-spacing:409.847040px;}
.ls69{letter-spacing:456.639840px;}
.ls98{letter-spacing:456.736320px;}
.ls90{letter-spacing:483.316560px;}
.ls83{letter-spacing:486.886320px;}
.ls87{letter-spacing:489.780720px;}
.ls9e{letter-spacing:493.398720px;}
.ls7e{letter-spacing:495.521280px;}
.ls7d{letter-spacing:498.415680px;}
.ls7c{letter-spacing:506.278800px;}
.ls8a{letter-spacing:518.580000px;}
.ls88{letter-spacing:524.320560px;}
.ls80{letter-spacing:527.214960px;}
.ls78{letter-spacing:533.003760px;}
.ls68{letter-spacing:556.737840px;}
.ls7a{letter-spacing:578.349360px;}
.ls6a{letter-spacing:610.043040px;}
.ls3c{letter-spacing:751.877280px;}
.ls76{letter-spacing:760.503600px;}
.ls6b{letter-spacing:817.378560px;}
.lsa3{letter-spacing:849.029760px;}
.ls67{letter-spacing:884.335680px;}
.ls3a{letter-spacing:887.230080px;}
.ls23{letter-spacing:1219.844880px;}
.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;}
}
.ws2{word-spacing:-23.946030px;}
.ws15{word-spacing:-21.396960px;}
.ws14{word-spacing:-21.144240px;}
.ws4{word-spacing:-21.060000px;}
.ws7d{word-spacing:-20.723040px;}
.ws82{word-spacing:-20.016000px;}
.ws7f{word-spacing:-19.440000px;}
.ws7c{word-spacing:-18.720000px;}
.ws4c{word-spacing:-18.432000px;}
.ws1a{word-spacing:-18.288000px;}
.ws77{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws11{word-spacing:-18.000000px;}
.ws4b{word-spacing:-17.928000px;}
.ws4f{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws4a{word-spacing:-17.568000px;}
.ws41{word-spacing:-17.496000px;}
.ws42{word-spacing:-17.424000px;}
.ws1f{word-spacing:-17.280000px;}
.ws13{word-spacing:-17.064000px;}
.ws7{word-spacing:-16.891200px;}
.ws5{word-spacing:-16.692480px;}
.ws6{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.179750px;}
.ws54{word-spacing:-15.298560px;}
.ws1e{word-spacing:-15.235200px;}
.ws5a{word-spacing:-15.179040px;}
.ws61{word-spacing:-15.059520px;}
.ws57{word-spacing:-14.999760px;}
.ws63{word-spacing:-14.940000px;}
.ws5b{word-spacing:-14.880240px;}
.ws64{word-spacing:-14.700960px;}
.ws62{word-spacing:-14.581440px;}
.ws7b{word-spacing:-14.506560px;}
.ws5c{word-spacing:-14.461920px;}
.ws75{word-spacing:-13.500000px;}
.ws22{word-spacing:-12.445920px;}
.ws6d{word-spacing:-12.397680px;}
.ws25{word-spacing:-12.349440px;}
.ws2b{word-spacing:-12.252960px;}
.ws2a{word-spacing:-12.060000px;}
.ws2e{word-spacing:-12.011760px;}
.ws76{word-spacing:-11.963520px;}
.ws21{word-spacing:-11.867040px;}
.ws6a{word-spacing:-11.818800px;}
.ws23{word-spacing:-11.770560px;}
.ws28{word-spacing:-11.722320px;}
.ws24{word-spacing:-11.625840px;}
.ws27{word-spacing:-11.529360px;}
.ws79{word-spacing:-11.336400px;}
.ws29{word-spacing:-11.288160px;}
.ws26{word-spacing:-11.143440px;}
.ws74{word-spacing:-11.095200px;}
.ws2d{word-spacing:-11.046960px;}
.ws2c{word-spacing:-10.998720px;}
.ws59{word-spacing:-10.440000px;}
.ws58{word-spacing:-9.720000px;}
.ws46{word-spacing:-8.786880px;}
.ws6c{word-spacing:-0.916560px;}
.ws66{word-spacing:-0.896400px;}
.ws78{word-spacing:-0.864000px;}
.ws49{word-spacing:-0.728640px;}
.ws35{word-spacing:-0.723600px;}
.ws51{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.505440px;}
.ws4e{word-spacing:-0.432000px;}
.ws32{word-spacing:-0.385920px;}
.ws5f{word-spacing:-0.358560px;}
.ws48{word-spacing:-0.331200px;}
.ws2f{word-spacing:-0.289440px;}
.ws44{word-spacing:-0.288000px;}
.ws8{word-spacing:-0.252720px;}
.ws5d{word-spacing:-0.239040px;}
.ws70{word-spacing:-0.216000px;}
.ws3e{word-spacing:-0.192960px;}
.ws55{word-spacing:-0.179280px;}
.wsf{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.132480px;}
.ws67{word-spacing:-0.119520px;}
.ws38{word-spacing:-0.096480px;}
.ws1b{word-spacing:-0.084240px;}
.ws1c{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.071910px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.059760px;}
.ws7a{word-spacing:0.072000px;}
.ws68{word-spacing:0.119520px;}
.ws47{word-spacing:0.132480px;}
.ws43{word-spacing:0.144000px;}
.ws34{word-spacing:0.192960px;}
.wse{word-spacing:0.216000px;}
.ws18{word-spacing:0.239040px;}
.ws6b{word-spacing:0.241200px;}
.wsd{word-spacing:0.288000px;}
.ws69{word-spacing:0.331200px;}
.ws30{word-spacing:0.337680px;}
.ws65{word-spacing:0.358560px;}
.ws6e{word-spacing:0.378000px;}
.ws5e{word-spacing:0.418320px;}
.ws3d{word-spacing:0.434160px;}
.ws33{word-spacing:0.482400px;}
.ws1d{word-spacing:0.504000px;}
.ws37{word-spacing:0.530640px;}
.ws19{word-spacing:0.537840px;}
.ws71{word-spacing:0.540000px;}
.ws4d{word-spacing:0.576000px;}
.ws3c{word-spacing:0.627120px;}
.ws73{word-spacing:0.648000px;}
.ws7e{word-spacing:0.657360px;}
.ws16{word-spacing:0.720000px;}
.ws36{word-spacing:0.723600px;}
.ws53{word-spacing:0.728640px;}
.ws81{word-spacing:0.792000px;}
.ws39{word-spacing:0.820080px;}
.ws80{word-spacing:0.936000px;}
.ws20{word-spacing:1.008000px;}
.ws3b{word-spacing:1.013040px;}
.ws3f{word-spacing:1.061280px;}
.ws40{word-spacing:1.157760px;}
.ws72{word-spacing:1.206000px;}
.ws60{word-spacing:1.254960px;}
.ws45{word-spacing:1.440000px;}
.ws3a{word-spacing:1.447200px;}
.ws52{word-spacing:1.512000px;}
.ws31{word-spacing:1.640160px;}
.ws56{word-spacing:1.656000px;}
.ws50{word-spacing:1.728000px;}
.ws6f{word-spacing:1.833120px;}
._80{margin-left:-20.016000px;}
._32{margin-left:-15.276806px;}
._c{margin-left:-11.520000px;}
._7{margin-left:-7.489992px;}
._5c{margin-left:-5.472000px;}
._1{margin-left:-3.797218px;}
._2{margin-left:-1.726008px;}
._0{width:1.380806px;}
._27{width:2.579194px;}
._69{width:3.600000px;}
._4{width:4.763788px;}
._46{width:5.832000px;}
._14{width:25.905202px;}
._73{width:34.178294px;}
._72{width:35.414381px;}
._74{width:44.155944px;}
._7e{width:64.008000px;}
._a{width:66.960000px;}
._4a{width:78.166387px;}
._75{width:80.084621px;}
._7d{width:84.024000px;}
._4e{width:98.568000px;}
._7f{width:104.040000px;}
._24{width:107.985202px;}
._3e{width:109.512000px;}
._7a{width:124.056000px;}
._d{width:152.640000px;}
._7c{width:164.088000px;}
._7b{width:184.104000px;}
._77{width:204.813298px;}
._78{width:209.223101px;}
._59{width:227.433202px;}
._76{width:253.487458px;}
._79{width:257.040000px;}
._6d{width:286.744272px;}
._5d{width:293.966040px;}
._20{width:336.795226px;}
._1f{width:345.873202px;}
._71{width:363.240000px;}
._5f{width:427.161202px;}
._66{width:463.528032px;}
._6e{width:498.307267px;}
._49{width:553.218403px;}
._70{width:556.207200px;}
._6f{width:569.413027px;}
._13{width:597.806040px;}
._17{width:685.224000px;}
._34{width:710.280000px;}
._30{width:713.577202px;}
._52{width:714.786403px;}
._61{width:807.673234px;}
._2e{width:819.007968px;}
._6a{width:842.905440px;}
._6{width:845.553600px;}
._6b{width:849.070080px;}
._67{width:865.417234px;}
._16{width:878.250024px;}
._36{width:895.217549px;}
._4d{width:897.105202px;}
._15{width:921.081202px;}
._8{width:949.146403px;}
._51{width:962.972395px;}
._2b{width:997.627162px;}
._64{width:1009.440000px;}
._5b{width:1021.890024px;}
._11{width:1032.907162px;}
._f{width:1050.624000px;}
._6c{width:1061.665920px;}
._3{width:1102.260816px;}
._68{width:1109.721202px;}
._65{width:1132.776000px;}
._44{width:1135.558387px;}
._21{width:1140.834024px;}
._4b{width:1154.839589px;}
._41{width:1159.004774px;}
._5e{width:1174.528032px;}
._e{width:1178.959589px;}
._63{width:1215.057202px;}
._35{width:1247.370403px;}
._23{width:1304.994024px;}
._50{width:1313.928000px;}
._26{width:1336.608000px;}
._42{width:1347.694008px;}
._12{width:1374.619162px;}
._47{width:1394.405218px;}
._22{width:1398.642403px;}
._3c{width:1427.686008px;}
._2c{width:1463.601202px;}
._1d{width:1466.640000px;}
._1b{width:1468.584000px;}
._5a{width:1474.632000px;}
._57{width:1488.600000px;}
._60{width:1507.248000px;}
._40{width:1541.714371px;}
._4c{width:1546.977202px;}
._19{width:1586.660016px;}
._1e{width:1616.887210px;}
._25{width:1622.937202px;}
._58{width:1641.094008px;}
._53{width:1644.127968px;}
._1a{width:1657.224000px;}
._28{width:1677.140395px;}
._3b{width:1685.372016px;}
._4f{width:1688.760000px;}
._55{width:1705.678008px;}
._56{width:1716.393202px;}
._1c{width:1721.324774px;}
._10{width:1724.564774px;}
._18{width:1767.777581px;}
._39{width:1787.544000px;}
._54{width:1793.795194px;}
._45{width:1796.313202px;}
._62{width:1808.568000px;}
._29{width:1905.609202px;}
._3d{width:1914.282782px;}
._31{width:1933.272000px;}
._48{width:1951.272000px;}
._43{width:1961.987194px;}
._3a{width:1980.574008px;}
._37{width:1984.953202px;}
._2d{width:2029.248000px;}
._b{width:2135.577202px;}
._3f{width:2150.640000px;}
._2a{width:2171.494387px;}
._2f{width:2174.472000px;}
._9{width:2246.806387px;}
._38{width:2267.208000px;}
._33{width:2320.560000px;}
._5{width:6099.045600px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(41,37,38);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fs13{font-size:38.880000px;}
.fs14{font-size:41.760000px;}
.fs16{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:48.240000px;}
.fs15{font-size:54.000000px;}
.fs11{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs10{font-size:66.240000px;}
.fs9{font-size:71.910000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:76.140000px;}
.fs6{font-size:77.670600px;}
.fs8{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fsf{font-size:84.240000px;}
.fs5{font-size:86.300400px;}
.fse{font-size:90.000000px;}
.fsc{font-size:103.560600px;}
.fsb{font-size:138.081000px;}
.fsa{font-size:207.121200px;}
.y2ea{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y2ec{bottom:2.700000px;}
.y140{bottom:2.880000px;}
.y137{bottom:3.060000px;}
.y226{bottom:3.420000px;}
.y255{bottom:3.780000px;}
.y37{bottom:9.000000px;}
.y34a{bottom:11.520000px;}
.y349{bottom:11.700000px;}
.y354{bottom:12.600000px;}
.y353{bottom:12.780000px;}
.y366{bottom:12.960000px;}
.y12c{bottom:14.760000px;}
.y38d{bottom:16.560000px;}
.y309{bottom:16.740000px;}
.y305{bottom:16.920000px;}
.y225{bottom:20.700000px;}
.y3c1{bottom:22.680000px;}
.y3ab{bottom:22.860000px;}
.y3a9{bottom:23.040000px;}
.y12f{bottom:30.240000px;}
.y155{bottom:34.920000px;}
.y130{bottom:35.820000px;}
.y6{bottom:50.595005px;}
.y69{bottom:57.786480px;}
.y4c0{bottom:75.451050px;}
.y48c{bottom:75.451200px;}
.y5{bottom:75.795004px;}
.y68{bottom:77.940000px;}
.y67{bottom:87.547200px;}
.y4b7{bottom:97.051050px;}
.y481{bottom:97.051200px;}
.y4{bottom:100.995005px;}
.y3d1{bottom:108.720000px;}
.y16c{bottom:110.520000px;}
.y66{bottom:110.803200px;}
.y371{bottom:114.660000px;}
.y129{bottom:115.560000px;}
.y18c{bottom:116.640000px;}
.y444{bottom:117.360000px;}
.y1d5{bottom:117.720000px;}
.y510{bottom:118.633050px;}
.y4b6{bottom:118.651050px;}
.y480{bottom:118.651200px;}
.y1e2{bottom:118.800000px;}
.y26{bottom:119.116860px;}
.y20f{bottom:119.700000px;}
.y300{bottom:121.680000px;}
.y223{bottom:122.220000px;}
.y40b{bottom:123.660000px;}
.y1ab{bottom:123.840000px;}
.y43f{bottom:124.920000px;}
.y262{bottom:125.460000px;}
.y9b{bottom:126.180000px;}
.y359{bottom:127.980000px;}
.y16b{bottom:128.739600px;}
.y343{bottom:129.060000px;}
.y435{bottom:129.420000px;}
.y1b8{bottom:132.660000px;}
.y4e6{bottom:133.627050px;}
.y1f7{bottom:133.740000px;}
.y65{bottom:134.059200px;}
.y15d{bottom:135.360000px;}
.y454{bottom:135.900000px;}
.y23{bottom:139.264499px;}
.y25b{bottom:139.680000px;}
.y2fc{bottom:139.860000px;}
.y50f{bottom:140.233050px;}
.y4b5{bottom:140.251050px;}
.y47f{bottom:140.251200px;}
.y3d0{bottom:140.403060px;}
.y116{bottom:142.920000px;}
.y387{bottom:143.640000px;}
.y2da{bottom:144.586260px;}
.y25{bottom:145.006980px;}
.y2ff{bottom:146.520000px;}
.y128{bottom:146.700000px;}
.y9a{bottom:146.880000px;}
.y18b{bottom:147.600000px;}
.y16a{bottom:147.816720px;}
.y39e{bottom:148.140000px;}
.y1d4{bottom:148.680000px;}
.y26e{bottom:149.400000px;}
.y1e1{bottom:149.760000px;}
.y20e{bottom:150.840000px;}
.y2b6{bottom:154.018980px;}
.y3cf{bottom:154.260000px;}
.y1aa{bottom:154.980000px;}
.y4e5{bottom:155.227050px;}
.y370{bottom:156.060000px;}
.y261{bottom:156.420000px;}
.y453{bottom:156.600000px;}
.y64{bottom:157.315200px;}
.y434{bottom:160.380000px;}
.y50e{bottom:161.833050px;}
.y4be{bottom:161.851050px;}
.y489{bottom:161.851200px;}
.y179{bottom:162.720000px;}
.y333{bottom:163.260000px;}
.y443{bottom:163.440000px;}
.y1b7{bottom:163.800000px;}
.y459{bottom:164.160000px;}
.y1f6{bottom:164.700000px;}
.y3cd{bottom:165.060000px;}
.y15c{bottom:166.500000px;}
.y169{bottom:166.711680px;}
.y222{bottom:166.860000px;}
.y99{bottom:167.580000px;}
.y358{bottom:169.380000px;}
.y342{bottom:170.460000px;}
.y25a{bottom:170.820000px;}
.y24{bottom:170.897100px;}
.y321{bottom:172.080000px;}
.ycf{bottom:172.440000px;}
.y2b5{bottom:173.814480px;}
.y115{bottom:173.880000px;}
.y3ce{bottom:174.240000px;}
.y4e4{bottom:176.827050px;}
.y58{bottom:176.850720px;}
.y452{bottom:177.300000px;}
.y127{bottom:177.660000px;}
.y18a{bottom:178.740000px;}
.y2d9{bottom:179.501040px;}
.y1d3{bottom:179.820000px;}
.y1e0{bottom:180.900000px;}
.y2fb{bottom:181.260000px;}
.y20d{bottom:181.800000px;}
.y4b4{bottom:183.451050px;}
.y47e{bottom:183.451200px;}
.y386{bottom:185.040000px;}
.y168{bottom:185.606640px;}
.y1a9{bottom:185.940000px;}
.y43e{bottom:187.020000px;}
.y260{bottom:187.560000px;}
.y3a0{bottom:187.740000px;}
.y2fe{bottom:187.920000px;}
.y458{bottom:188.100000px;}
.y98{bottom:188.280000px;}
.y39d{bottom:189.540000px;}
.y433{bottom:191.520000px;}
.y178{bottom:193.680000px;}
.y1b6{bottom:194.760000px;}
.y1f5{bottom:195.840000px;}
.y1a{bottom:196.933500px;}
.y15b{bottom:197.460000px;}
.y451{bottom:198.000000px;}
.y4e3{bottom:198.427050px;}
.y3cc{bottom:198.720000px;}
.y2d8{bottom:199.296540px;}
.y259{bottom:201.780000px;}
.yce{bottom:203.580000px;}
.y332{bottom:204.660000px;}
.y167{bottom:204.683760px;}
.y114{bottom:205.020000px;}
.y50d{bottom:205.033050px;}
.y4b3{bottom:205.051050px;}
.y47d{bottom:205.051200px;}
.y40a{bottom:206.460000px;}
.y2b4{bottom:208.729260px;}
.y126{bottom:208.800000px;}
.y97{bottom:208.980000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y189{bottom:209.700000px;}
.y1d2{bottom:210.780000px;}
.y1df{bottom:211.860000px;}
.y221{bottom:212.940000px;}
.y320{bottom:213.480000px;}
.y57{bottom:213.928560px;}
.y511{bottom:215.545050px;}
.y1a8{bottom:217.080000px;}
.y30{bottom:218.078153px;}
.y43d{bottom:218.160000px;}
.y450{bottom:218.700000px;}
.y4e2{bottom:220.027050px;}
.y3ca{bottom:221.220000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y2fa{bottom:222.300000px;}
.y432{bottom:222.480000px;}
.y166{bottom:223.578720px;}
.y3cb{bottom:224.280000px;}
.y177{bottom:224.820000px;}
.y441{bottom:225.540000px;}
.y1b5{bottom:225.900000px;}
.y385{bottom:226.440000px;}
.y50c{bottom:226.633050px;}
.y4b2{bottom:226.651050px;}
.y488{bottom:226.651200px;}
.y1f4{bottom:226.800000px;}
.y20c{bottom:227.880000px;}
.y2b3{bottom:228.524760px;}
.y15a{bottom:228.600000px;}
.y2e5{bottom:229.320000px;}
.y96{bottom:229.680000px;}
.y39c{bottom:230.940000px;}
.y258{bottom:232.920000px;}
.y25f{bottom:233.640000px;}
.y2d7{bottom:233.852760px;}
.ycd{bottom:234.540000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y331{bottom:235.260000px;}
.y113{bottom:235.980000px;}
.y36f{bottom:238.860000px;}
.y17e{bottom:239.400000px;}
.y125{bottom:239.760000px;}
.y188{bottom:240.840000px;}
.y2f{bottom:241.341037px;}
.y4e1{bottom:241.627050px;}
.y1d1{bottom:241.920000px;}
.y165{bottom:242.655840px;}
.y1de{bottom:243.000000px;}
.y409{bottom:247.860000px;}
.y1a7{bottom:248.040000px;}
.y50b{bottom:248.233050px;}
.y4b1{bottom:248.251050px;}
.y47c{bottom:248.251200px;}
.y3c8{bottom:248.940000px;}
.y43c{bottom:249.120000px;}
.y95{bottom:250.380000px;}
.y56{bottom:250.824240px;}
.y357{bottom:252.180000px;}
.y341{bottom:253.260000px;}
.y431{bottom:253.620000px;}
.y402{bottom:254.160000px;}
.y31f{bottom:254.880000px;}
.y176{bottom:255.780000px;}
.y1ea{bottom:256.860000px;}
.y330{bottom:257.760000px;}
.y446{bottom:257.940000px;}
.y3c9{bottom:258.120000px;}
.y20b{bottom:259.020000px;}
.y159{bottom:259.560000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y44f{bottom:260.100000px;}
.y164{bottom:261.550800px;}
.y4e0{bottom:263.227050px;}
.y2b2{bottom:263.439540px;}
.y2f9{bottom:263.700000px;}
.y27{bottom:264.168750px;}
.ycc{bottom:265.680000px;}
.y112{bottom:266.940000px;}
.y384{bottom:267.840000px;}
.y2d6{bottom:268.946820px;}
.y50a{bottom:269.833050px;}
.y4b0{bottom:269.851050px;}
.y47b{bottom:269.851200px;}
.y124{bottom:270.900000px;}
.y94{bottom:271.080000px;}
.y187{bottom:271.800000px;}
.y39b{bottom:272.340000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1d0{bottom:272.880000px;}
.y1dd{bottom:273.960000px;}
.y290{bottom:275.142420px;}
.y257{bottom:279.000000px;}
.y25e{bottom:279.720000px;}
.y32f{bottom:280.260000px;}
.y44e{bottom:280.440000px;}
.y163{bottom:280.445760px;}
.y3c7{bottom:282.600000px;}
.y2b1{bottom:283.235040px;}
.y430{bottom:284.580000px;}
.y4df{bottom:284.827050px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y175{bottom:286.920000px;}
.y55{bottom:287.537760px;}
.y442{bottom:287.640000px;}
.y1e9{bottom:288.000000px;}
.y26a{bottom:288.900000px;}
.y408{bottom:289.260000px;}
.y20a{bottom:289.980000px;}
.y158{bottom:290.700000px;}
.y509{bottom:291.433050px;}
.y4bd{bottom:291.451050px;}
.y487{bottom:291.451200px;}
.y93{bottom:291.780000px;}
.y401{bottom:293.040000px;}
.y356{bottom:293.580000px;}
.y1a6{bottom:294.120000px;}
.y340{bottom:294.660000px;}
.y31e{bottom:296.280000px;}
.ycb{bottom:296.640000px;}
.y111{bottom:298.080000px;}
.y162{bottom:299.522880px;}
.y44d{bottom:300.785940px;}
.y123{bottom:301.860000px;}
.y32e{bottom:302.760000px;}
.y186{bottom:302.940000px;}
.y2d5{bottom:303.861600px;}
.y1cf{bottom:304.020000px;}
.y1dc{bottom:305.100000px;}
.y2f8{bottom:305.460000px;}
.y4de{bottom:306.427050px;}
.y383{bottom:309.240000px;}
.y256{bottom:309.960000px;}
.y28f{bottom:310.236480px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y400{bottom:310.860000px;}
.y43b{bottom:311.220000px;}
.y40d{bottom:312.120000px;}
.y92{bottom:312.480000px;}
.y508{bottom:313.033050px;}
.y4af{bottom:313.051050px;}
.y47a{bottom:313.051200px;}
.y39a{bottom:313.740000px;}
.y42f{bottom:315.720000px;}
.y174{bottom:317.880000px;}
.y2b0{bottom:317.970540px;}
.y440{bottom:318.600000px;}
.y1e8{bottom:318.960000px;}
.y269{bottom:320.040000px;}
.y209{bottom:321.120000px;}
.y25d{bottom:321.300000px;}
.y157{bottom:321.660000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y2d4{bottom:323.657100px;}
.y54{bottom:324.433440px;}
.y1a5{bottom:325.260000px;}
.y161{bottom:326.160000px;}
.y227{bottom:327.060000px;}
.y3c6{bottom:327.600000px;}
.yca{bottom:327.780000px;}
.y4dd{bottom:328.027050px;}
.y110{bottom:329.040000px;}
.y407{bottom:330.660000px;}
.y122{bottom:333.000000px;}
.y91{bottom:333.180000px;}
.y185{bottom:333.900000px;}
.y4ae{bottom:334.651050px;}
.y479{bottom:334.651200px;}
.y1e5{bottom:334.980000px;}
.y44c{bottom:335.880000px;}
.y216{bottom:336.060000px;}
.y31d{bottom:337.680000px;}
.y2af{bottom:337.945320px;}
.y3fe{bottom:338.400000px;}
.y160{bottom:338.580000px;}
.y43a{bottom:342.360000px;}
.y28e{bottom:345.151260px;}
.y53{bottom:346.209840px;}
.y42e{bottom:346.680000px;}
.y2f7{bottom:346.860000px;}
.y3ff{bottom:347.580000px;}
.y32d{bottom:347.760000px;}
.y254{bottom:347.874300px;}
.y11{bottom:348.133500px;}
.y173{bottom:349.020000px;}
.y1ce{bottom:350.100000px;}
.y1db{bottom:350.640000px;}
.y212{bottom:351.000000px;}
.y208{bottom:352.080000px;}
.y40e{bottom:353.520000px;}
.y90{bottom:353.880000px;}
.y399{bottom:355.140000px;}
.y3c5{bottom:355.320000px;}
.y1a4{bottom:356.220000px;}
.y507{bottom:356.233050px;}
.y4ad{bottom:356.251050px;}
.y478{bottom:356.251200px;}
.y154{bottom:356.760000px;}
.y2ae{bottom:357.740820px;}
.y2d3{bottom:358.571880px;}
.yc9{bottom:358.740000px;}
.y153{bottom:359.823060px;}
.y10f{bottom:360.180000px;}
.y36e{bottom:363.060000px;}
.y121{bottom:363.960000px;}
.y184{bottom:365.040000px;}
.y253{bottom:365.159880px;}
.y44a{bottom:365.760000px;}
.y1e4{bottom:366.120000px;}
.y215{bottom:367.020000px;}
.y52{bottom:367.986240px;}
.yb0{bottom:369.360000px;}
.y32c{bottom:370.260000px;}
.y4dc{bottom:371.227050px;}
.y406{bottom:372.060000px;}
.y3fd{bottom:372.240000px;}
.y439{bottom:373.320000px;}
.y152{bottom:373.680000px;}
.y8f{bottom:374.580000px;}
.y355{bottom:376.020000px;}
.y33f{bottom:377.460000px;}
.y156{bottom:377.820000px;}
.y506{bottom:377.833050px;}
.y4bc{bottom:377.851050px;}
.y477{bottom:377.851200px;}
.y31c{bottom:379.080000px;}
.y172{bottom:379.980000px;}
.y28d{bottom:380.066040px;}
.y1cd{bottom:381.060000px;}
.y268{bottom:382.140000px;}
.y252{bottom:382.445460px;}
.y10{bottom:386.785499px;}
.y1a3{bottom:387.360000px;}
.y2f6{bottom:388.260000px;}
.yc8{bottom:389.880000px;}
.y51{bottom:389.944800px;}
.y10e{bottom:391.140000px;}
.y382{bottom:392.040000px;}
.y2ad{bottom:392.476320px;}
.y32b{bottom:392.760000px;}
.y4db{bottom:392.827050px;}
.yaf{bottom:393.120000px;}
.y2d2{bottom:393.307380px;}
.y352{bottom:394.020000px;}
.y15e{bottom:394.740000px;}
.y120{bottom:395.100000px;}
.y8e{bottom:395.280000px;}
.y183{bottom:396.000000px;}
.y398{bottom:396.540000px;}
.y1da{bottom:397.080000px;}
.y301{bottom:397.620000px;}
.y207{bottom:398.160000px;}
.y505{bottom:399.433050px;}
.y4ac{bottom:399.451050px;}
.y476{bottom:399.451200px;}
.y251{bottom:399.551760px;}
.y28c{bottom:399.861540px;}
.y3c4{bottom:400.320000px;}
.y33e{bottom:403.020000px;}
.y36d{bottom:404.460000px;}
.y151{bottom:406.263960px;}
.yf{bottom:408.044999px;}
.y42d{bottom:408.780000px;}
.y171{bottom:411.120000px;}
.y1cc{bottom:412.020000px;}
.y214{bottom:413.100000px;}
.y2d1{bottom:413.102880px;}
.y405{bottom:413.460000px;}
.y4da{bottom:414.427050px;}
.y32a{bottom:415.260000px;}
.y8d{bottom:415.980000px;}
.y250{bottom:416.837340px;}
.yae{bottom:416.880000px;}
.y351{bottom:417.600000px;}
.y1a2{bottom:418.320000px;}
.y28b{bottom:419.657040px;}
.y150{bottom:419.940000px;}
.y31b{bottom:420.480000px;}
.yc7{bottom:420.840000px;}
.y4ab{bottom:421.051050px;}
.y475{bottom:421.051200px;}
.y10d{bottom:422.280000px;}
.y3c2{bottom:422.820000px;}
.y3fc{bottom:425.340000px;}
.y3c3{bottom:425.700000px;}
.y11f{bottom:426.060000px;}
.y50{bottom:426.658320px;}
.y182{bottom:427.140000px;}
.y2ac{bottom:427.391100px;}
.y329{bottom:427.500000px;}
.y447{bottom:427.860000px;}
.y1f3{bottom:428.220000px;}
.y220{bottom:429.120000px;}
.y2f5{bottom:429.300000px;}
.y381{bottom:433.080000px;}
.y24f{bottom:434.122920px;}
.y438{bottom:435.420000px;}
.y39f{bottom:436.140000px;}
.y8c{bottom:436.500000px;}
.y397{bottom:437.580000px;}
.yad{bottom:437.760000px;}
.y14f{bottom:438.663060px;}
.y28a{bottom:439.452540px;}
.y42c{bottom:439.920000px;}
.y350{bottom:440.100000px;}
.y170{bottom:442.080000px;}
.y504{bottom:442.633050px;}
.y4aa{bottom:442.651050px;}
.y486{bottom:442.651200px;}
.y1e7{bottom:442.800000px;}
.y1cb{bottom:443.160000px;}
.y328{bottom:444.060000px;}
.y206{bottom:444.240000px;}
.y36c{bottom:445.860000px;}
.y2ab{bottom:447.186600px;}
.y2d0{bottom:448.017660px;}
.y33d{bottom:448.560000px;}
.y1a1{bottom:449.460000px;}
.y3fa{bottom:449.820000px;}
.y3bf{bottom:450.360000px;}
.y24e{bottom:451.408500px;}
.yc6{bottom:451.980000px;}
.y14e{bottom:452.520000px;}
.y3fb{bottom:452.880000px;}
.y10c{bottom:453.240000px;}
.y326{bottom:453.600000px;}
.y404{bottom:454.860000px;}
.y11e{bottom:457.020000px;}
.y8b{bottom:457.200000px;}
.y4d9{bottom:457.627050px;}
.y181{bottom:458.100000px;}
.yac{bottom:458.460000px;}
.y213{bottom:459.180000px;}
.y289{bottom:459.248040px;}
.y3c0{bottom:459.540000px;}
.y21f{bottom:460.260000px;}
.y31a{bottom:461.880000px;}
.y34f{bottom:462.600000px;}
.y4f{bottom:463.554000px;}
.y327{bottom:463.860000px;}
.y503{bottom:464.233050px;}
.y4a9{bottom:464.251050px;}
.y474{bottom:464.251200px;}
.y2aa{bottom:466.982100px;}
.y2cf{bottom:467.813160px;}
.y24d{bottom:468.694080px;}
.y437{bottom:470.520000px;}
.y2f4{bottom:470.700000px;}
.y42b{bottom:470.880000px;}
.y33c{bottom:471.060000px;}
.y16f{bottom:473.220000px;}
.y26d{bottom:473.760000px;}
.y1ca{bottom:474.120000px;}
.y380{bottom:474.480000px;}
.y267{bottom:475.200000px;}
.y3f9{bottom:477.540000px;}
.y8a{bottom:477.900000px;}
.y396{bottom:478.980000px;}
.yab{bottom:479.160000px;}
.y288{bottom:479.222820px;}
.y4d8{bottom:479.227050px;}
.y14d{bottom:482.040000px;}
.yc5{bottom:482.940000px;}
.y3be{bottom:484.020000px;}
.y10b{bottom:484.380000px;}
.ye{bottom:484.864502px;}
.y34e{bottom:485.100000px;}
.y24c{bottom:485.800380px;}
.y502{bottom:485.833050px;}
.y4bb{bottom:485.851050px;}
.y473{bottom:485.851200px;}
.y36b{bottom:487.260000px;}
.y11d{bottom:488.160000px;}
.y325{bottom:489.060000px;}
.y1e6{bottom:489.240000px;}
.y205{bottom:490.320000px;}
.y21e{bottom:491.220000px;}
.y2f3{bottom:491.760000px;}
.y37f{bottom:492.660000px;}
.y33b{bottom:493.560000px;}
.y1a0{bottom:495.000000px;}
.y89{bottom:498.600000px;}
.y287{bottom:499.018320px;}
.yaa{bottom:499.860000px;}
.y3f7{bottom:500.040000px;}
.y4e{bottom:500.267520px;}
.y4d7{bottom:500.827050px;}
.y2a9{bottom:501.896880px;}
.y42a{bottom:502.020000px;}
.yd{bottom:502.864502px;}
.y24b{bottom:503.085960px;}
.y319{bottom:503.280000px;}
.y2ce{bottom:503.466480px;}
.y14b{bottom:503.823060px;}
.y16e{bottom:504.180000px;}
.y1c9{bottom:505.260000px;}
.y266{bottom:506.340000px;}
.y3bd{bottom:506.520000px;}
.y324{bottom:507.415500px;}
.y501{bottom:507.433050px;}
.y4a8{bottom:507.451050px;}
.y472{bottom:507.451200px;}
.y34d{bottom:507.600000px;}
.y3f8{bottom:509.220000px;}
.yc4{bottom:514.080000px;}
.y14c{bottom:514.620000px;}
.y10a{bottom:515.340000px;}
.y33a{bottom:516.060000px;}
.y37e{bottom:516.240000px;}
.y14a{bottom:517.680000px;}
.y286{bottom:518.813820px;}
.y11c{bottom:519.120000px;}
.y88{bottom:519.300000px;}
.y436{bottom:519.840000px;}
.y26c{bottom:520.200000px;}
.y24a{bottom:520.371540px;}
.ya9{bottom:520.560000px;}
.y395{bottom:520.740000px;}
.yc{bottom:520.864502px;}
.y204{bottom:521.280000px;}
.y2a8{bottom:521.692380px;}
.y21d{bottom:522.360000px;}
.y323{bottom:522.900000px;}
.y36a{bottom:528.660000px;}
.y3bc{bottom:529.020000px;}
.y500{bottom:529.033050px;}
.y4a7{bottom:529.051050px;}
.y471{bottom:529.051200px;}
.y34c{bottom:530.100000px;}
.y429{bottom:532.980000px;}
.y3f6{bottom:533.700000px;}
.y16d{bottom:535.320000px;}
.y1c8{bottom:536.220000px;}
.y149{bottom:536.403060px;}
.y4d{bottom:537.163200px;}
.y265{bottom:537.300000px;}
.y249{bottom:537.657120px;}
.y2f2{bottom:537.840000px;}
.y394{bottom:538.380000px;}
.y339{bottom:538.560000px;}
.y285{bottom:538.609320px;}
.y37d{bottom:538.740000px;}
.yb{bottom:538.864499px;}
.y87{bottom:540.000000px;}
.y2cd{bottom:540.208260px;}
.y19f{bottom:540.360000px;}
.ya8{bottom:541.260000px;}
.y4d6{bottom:544.027050px;}
.y318{bottom:544.680000px;}
.yc3{bottom:545.040000px;}
.y109{bottom:546.480000px;}
.y11b{bottom:550.260000px;}
.y4a6{bottom:550.651050px;}
.y470{bottom:550.651200px;}
.y26b{bottom:551.340000px;}
.y3bb{bottom:551.520000px;}
.y203{bottom:552.420000px;}
.y34b{bottom:552.600000px;}
.y21c{bottom:553.320000px;}
.y248{bottom:554.942700px;}
.y3f5{bottom:556.200000px;}
.y2a7{bottom:556.427880px;}
.ya{bottom:556.864499px;}
.y284{bottom:558.404820px;}
.y2e8{bottom:560.340000px;}
.y86{bottom:560.700000px;}
.y338{bottom:561.060000px;}
.y37c{bottom:561.240000px;}
.y393{bottom:561.960000px;}
.ya7{bottom:563.040000px;}
.y428{bottom:564.120000px;}
.y4d5{bottom:565.627050px;}
.y1b4{bottom:566.280000px;}
.y445{bottom:567.000000px;}
.y1c7{bottom:567.360000px;}
.y19e{bottom:567.718380px;}
.y264{bottom:568.440000px;}
.y369{bottom:570.060000px;}
.y247{bottom:572.228280px;}
.y4ff{bottom:572.233050px;}
.y4a5{bottom:572.251050px;}
.y46f{bottom:572.251200px;}
.y4c{bottom:573.876720px;}
.y3ba{bottom:574.020000px;}
.y348{bottom:575.100000px;}
.yc2{bottom:576.180000px;}
.y2cc{bottom:576.392940px;}
.y2a6{bottom:576.402660px;}
.y108{bottom:577.440000px;}
.y283{bottom:578.379600px;}
.y3f4{bottom:578.700000px;}
.y148{bottom:579.780000px;}
.y11a{bottom:581.220000px;}
.y85{bottom:581.400000px;}
.y25c{bottom:582.300000px;}
.yf7{bottom:582.480000px;}
.y2f1{bottom:582.840000px;}
.y202{bottom:583.380000px;}
.y337{bottom:583.560000px;}
.y37b{bottom:583.740000px;}
.y21b{bottom:584.460000px;}
.y317{bottom:586.080000px;}
.y4d4{bottom:587.227050px;}
.ya6{bottom:587.750400px;}
.y246{bottom:589.334580px;}
.y19d{bottom:593.460000px;}
.y4fe{bottom:593.833050px;}
.y4ba{bottom:593.851050px;}
.y46e{bottom:593.851200px;}
.y427{bottom:595.080000px;}
.y2a5{bottom:596.198160px;}
.y147{bottom:596.520000px;}
.y1b3{bottom:597.420000px;}
.y282{bottom:598.175100px;}
.y1c6{bottom:598.320000px;}
.y347{bottom:599.220000px;}
.y3f3{bottom:601.200000px;}
.y322{bottom:601.740000px;}
.y84{bottom:602.100000px;}
.yf6{bottom:602.628840px;}
.y2f0{bottom:605.340000px;}
.y37a{bottom:606.240000px;}
.y245{bottom:606.620160px;}
.y392{bottom:606.960000px;}
.yc1{bottom:607.140000px;}
.ya5{bottom:607.903920px;}
.y107{bottom:608.580000px;}
.y4d3{bottom:608.827050px;}
.y4b{bottom:610.772400px;}
.y2cb{bottom:611.128440px;}
.y368{bottom:611.460000px;}
.y119{bottom:612.360000px;}
.y44b{bottom:613.080000px;}
.y211{bottom:613.440000px;}
.ye1{bottom:613.980000px;}
.y201{bottom:614.520000px;}
.y336{bottom:614.884860px;}
.y4fd{bottom:615.433050px;}
.y4a4{bottom:615.451050px;}
.y46d{bottom:615.451200px;}
.y346{bottom:615.780000px;}
.y281{bottom:617.970600px;}
.y3b9{bottom:619.020000px;}
.yf5{bottom:619.914420px;}
.y19c{bottom:620.533440px;}
.y83{bottom:622.800000px;}
.y3f1{bottom:623.700000px;}
.y244{bottom:623.905740px;}
.y146{bottom:626.040000px;}
.y426{bottom:626.220000px;}
.y3f2{bottom:626.760000px;}
.y316{bottom:627.480000px;}
.y2ef{bottom:627.840000px;}
.ya4{bottom:628.057440px;}
.y1b2{bottom:628.380000px;}
.y379{bottom:628.740000px;}
.y145{bottom:629.103060px;}
.y1c5{bottom:629.460000px;}
.y4d2{bottom:630.427050px;}
.y21a{bottom:630.540000px;}
.y2ca{bottom:630.923940px;}
.y2a4{bottom:630.933660px;}
.y344{bottom:633.780000px;}
.y334{bottom:634.320000px;}
.y4fc{bottom:637.033050px;}
.y4a3{bottom:637.051050px;}
.y485{bottom:637.051200px;}
.yf4{bottom:637.200000px;}
.y280{bottom:637.766100px;}
.yc0{bottom:638.280000px;}
.y106{bottom:639.540000px;}
.y243{bottom:641.191320px;}
.y3b8{bottom:641.520000px;}
.y144{bottom:642.960000px;}
.y118{bottom:643.320000px;}
.y82{bottom:643.500000px;}
.y210{bottom:644.400000px;}
.ye0{bottom:645.121440px;}
.y200{bottom:645.480000px;}
.y9{bottom:645.510000px;}
.y63{bottom:645.565200px;}
.y4a{bottom:647.485920px;}
.y142{bottom:647.827020px;}
.ya3{bottom:648.210960px;}
.y19b{bottom:649.149120px;}
.y36{bottom:649.383750px;}
.y2ee{bottom:650.340000px;}
.y2c9{bottom:650.898720px;}
.y2a3{bottom:650.908440px;}
.y378{bottom:651.240000px;}
.y3f0{bottom:651.420000px;}
.y391{bottom:651.960000px;}
.y367{bottom:652.860000px;}
.yf3{bottom:655.200000px;}
.y345{bottom:655.379460px;}
.y425{bottom:657.180000px;}
.y27f{bottom:657.561600px;}
.y242{bottom:658.476900px;}
.y4a2{bottom:658.651050px;}
.y46c{bottom:658.651200px;}
.y1b1{bottom:659.520000px;}
.y335{bottom:660.417840px;}
.y1d9{bottom:660.420000px;}
.y141{bottom:661.683960px;}
.y3b7{bottom:664.020000px;}
.y81{bottom:664.200000px;}
.y8{bottom:666.771000px;}
.ya2{bottom:668.364480px;}
.y62{bottom:668.821200px;}
.y315{bottom:668.880000px;}
.ybf{bottom:669.240000px;}
.y365{bottom:670.500000px;}
.y105{bottom:670.680000px;}
.y2a2{bottom:670.703940px;}
.y143{bottom:672.480000px;}
.y2ed{bottom:672.840000px;}
.y4d1{bottom:673.627050px;}
.y377{bottom:673.740000px;}
.y3ef{bottom:673.920000px;}
.y15f{bottom:674.100000px;}
.y117{bottom:674.460000px;}
.ydf{bottom:675.360000px;}
.y1c4{bottom:675.540000px;}
.y241{bottom:675.762480px;}
.yf2{bottom:675.900000px;}
.y1ff{bottom:676.620000px;}
.y27e{bottom:677.536380px;}
.y19a{bottom:677.582640px;}
.y4fb{bottom:680.233050px;}
.y4a1{bottom:680.251050px;}
.y46b{bottom:680.251200px;}
.y49{bottom:684.381600px;}
.y2e7{bottom:684.540000px;}
.y80{bottom:684.900000px;}
.y2c8{bottom:685.634220px;}
.y3b6{bottom:686.520000px;}
.ya1{bottom:688.518000px;}
.y61{bottom:690.421200px;}
.y1b0{bottom:690.480000px;}
.y1d8{bottom:691.560000px;}
.y424{bottom:692.280000px;}
.y240{bottom:692.868780px;}
.y2eb{bottom:693.900000px;}
.y364{bottom:694.260000px;}
.y4d0{bottom:695.227050px;}
.yf1{bottom:696.600000px;}
.y390{bottom:696.960000px;}
.y376{bottom:697.680000px;}
.ybe{bottom:700.380000px;}
.y104{bottom:701.280000px;}
.y3ee{bottom:701.460000px;}
.y4fa{bottom:701.833050px;}
.y4a0{bottom:701.851050px;}
.y46a{bottom:701.851200px;}
.y13f{bottom:705.060000px;}
.yde{bottom:705.420000px;}
.y2a1{bottom:705.439440px;}
.y7f{bottom:705.600000px;}
.y199{bottom:706.016160px;}
.y1c3{bottom:706.500000px;}
.y1fe{bottom:707.580000px;}
.ya0{bottom:708.671520px;}
.y3b5{bottom:709.020000px;}
.y23f{bottom:710.154360px;}
.y314{bottom:710.280000px;}
.y27d{bottom:712.271880px;}
.y375{bottom:714.240000px;}
.y35{bottom:714.484894px;}
.y363{bottom:716.760000px;}
.y4cf{bottom:716.827050px;}
.yf0{bottom:717.300000px;}
.y2e9{bottom:718.920000px;}
.y38f{bottom:719.460000px;}
.y2c7{bottom:720.549000px;}
.y48{bottom:721.277280px;}
.y1af{bottom:721.620000px;}
.y13e{bottom:721.800000px;}
.y1d7{bottom:722.520000px;}
.y4f9{bottom:723.433050px;}
.y49f{bottom:723.451050px;}
.y469{bottom:723.451200px;}
.y3ed{bottom:723.960000px;}
.y373{bottom:724.320000px;}
.y2a0{bottom:725.414220px;}
.y2fd{bottom:725.940000px;}
.y7{bottom:726.298500px;}
.y7e{bottom:726.300000px;}
.y23e{bottom:727.439940px;}
.y9f{bottom:728.825040px;}
.ybd{bottom:731.340000px;}
.y3b3{bottom:731.520000px;}
.y27c{bottom:732.067380px;}
.y103{bottom:732.420000px;}
.y198{bottom:734.449680px;}
.y423{bottom:734.580000px;}
.y374{bottom:735.300000px;}
.y17b{bottom:736.200000px;}
.ydd{bottom:736.560000px;}
.y1c2{bottom:737.640000px;}
.yef{bottom:738.000000px;}
.y4ce{bottom:738.427050px;}
.y1fd{bottom:738.540000px;}
.y362{bottom:739.260000px;}
.y2c6{bottom:740.344500px;}
.y3b4{bottom:740.700000px;}
.y38c{bottom:743.580000px;}
.y23d{bottom:744.725520px;}
.y4f8{bottom:745.033050px;}
.y4b9{bottom:745.051050px;}
.y468{bottom:745.051200px;}
.y38b{bottom:746.460000px;}
.y38e{bottom:746.463960px;}
.y7d{bottom:747.000000px;}
.y9e{bottom:748.978560px;}
.y34{bottom:751.145400px;}
.y313{bottom:751.680000px;}
.y1ae{bottom:752.580000px;}
.y3{bottom:752.599495px;}
.y1d6{bottom:753.660000px;}
.y422{bottom:754.020000px;}
.y13d{bottom:754.383960px;}
.y3ec{bottom:755.643960px;}
.y47{bottom:757.990800px;}
.yee{bottom:758.700000px;}
.y4cd{bottom:760.027050px;}
.y27b{bottom:760.140000px;}
.y29f{bottom:760.149720px;}
.y361{bottom:761.760000px;}
.y23c{bottom:762.011100px;}
.ybc{bottom:762.480000px;}
.y197{bottom:762.883200px;}
.y102{bottom:763.380000px;}
.y3b2{bottom:765.360000px;}
.y4f7{bottom:766.633050px;}
.y49e{bottom:766.651050px;}
.y467{bottom:766.651200px;}
.y372{bottom:767.340000px;}
.ydc{bottom:767.520000px;}
.y7c{bottom:767.700000px;}
.y13c{bottom:768.060000px;}
.y1c1{bottom:768.600000px;}
.y9d{bottom:768.966480px;}
.y3eb{bottom:769.320000px;}
.y1fc{bottom:769.680000px;}
.y27a{bottom:771.283260px;}
.y2e3{bottom:772.380000px;}
.y38a{bottom:772.560000px;}
.y2c5{bottom:775.085220px;}
.y23b{bottom:779.296680px;}
.yed{bottom:779.400000px;}
.y228{bottom:779.940000px;}
.y29e{bottom:779.945220px;}
.y3ea{bottom:780.120000px;}
.y4cc{bottom:781.627050px;}
.y1ad{bottom:783.540000px;}
.y360{bottom:784.260000px;}
.y1f2{bottom:784.620000px;}
.y3b1{bottom:787.860000px;}
.y49d{bottom:788.251050px;}
.y466{bottom:788.251200px;}
.y7b{bottom:788.400000px;}
.y279{bottom:788.568840px;}
.y9c{bottom:789.120000px;}
.y421{bottom:790.020000px;}
.y196{bottom:791.316720px;}
.y3e9{bottom:791.820000px;}
.y312{bottom:792.720000px;}
.ybb{bottom:793.440000px;}
.y101{bottom:794.880000px;}
.y46{bottom:794.886480px;}
.y23a{bottom:796.402980px;}
.y17f{bottom:798.300000px;}
.ydb{bottom:798.660000px;}
.y1c0{bottom:799.740000px;}
.yec{bottom:800.100000px;}
.y13b{bottom:800.643060px;}
.y388{bottom:801.720000px;}
.y3e8{bottom:802.620000px;}
.y389{bottom:804.600000px;}
.y33{bottom:804.865420px;}
.y278{bottom:805.854420px;}
.y35f{bottom:806.760000px;}
.y40f{bottom:808.740000px;}
.y7a{bottom:809.100000px;}
.y420{bottom:809.386020px;}
.y4f6{bottom:809.833050px;}
.y49c{bottom:809.851050px;}
.y484{bottom:809.851200px;}
.y2c4{bottom:810.061380px;}
.y239{bottom:813.688560px;}
.y3e7{bottom:814.320000px;}
.y13a{bottom:814.500000px;}
.y1ac{bottom:814.680000px;}
.y29d{bottom:814.915440px;}
.y3b0{bottom:815.400000px;}
.y1fb{bottom:815.760000px;}
.y195{bottom:819.750240px;}
.yeb{bottom:820.800000px;}
.yba{bottom:824.580000px;}
.y4cb{bottom:824.827050px;}
.y3e6{bottom:825.120000px;}
.y100{bottom:825.840000px;}
.y41f{bottom:826.671600px;}
.y35e{bottom:829.260000px;}
.yda{bottom:829.620000px;}
.y79{bottom:829.800000px;}
.y2e2{bottom:829.856880px;}
.y277{bottom:829.980000px;}
.y448{bottom:830.340000px;}
.y1e3{bottom:830.700000px;}
.y238{bottom:830.974140px;}
.y4f5{bottom:831.433050px;}
.y49b{bottom:831.451050px;}
.y465{bottom:831.451200px;}
.y45{bottom:831.600000px;}
.y139{bottom:833.223060px;}
.y311{bottom:834.120000px;}
.y29c{bottom:834.710940px;}
.y410{bottom:835.020000px;}
.y3e5{bottom:836.820000px;}
.y3af{bottom:837.900000px;}
.y276{bottom:840.402540px;}
.yea{bottom:841.500000px;}
.y41e{bottom:843.957180px;}
.y2c3{bottom:844.796880px;}
.y1bf{bottom:845.640000px;}
.y4ca{bottom:846.427050px;}
.y1fa{bottom:846.720000px;}
.y138{bottom:847.080000px;}
.y3e4{bottom:847.620000px;}
.y194{bottom:848.183760px;}
.y237{bottom:848.259720px;}
.y78{bottom:850.500000px;}
.y35d{bottom:851.760000px;}
.y4f4{bottom:853.033050px;}
.y49a{bottom:853.051050px;}
.y464{bottom:853.051200px;}
.y29b{bottom:854.506440px;}
.yb9{bottom:855.540000px;}
.yff{bottom:856.980000px;}
.y275{bottom:857.508840px;}
.y3e3{bottom:859.320000px;}
.y3ae{bottom:860.400000px;}
.yd9{bottom:860.760000px;}
.y32{bottom:860.943485px;}
.y41d{bottom:861.063480px;}
.y1f1{bottom:861.840000px;}
.ye9{bottom:862.200000px;}
.y44{bottom:863.640000px;}
.y2c2{bottom:864.771660px;}
.y236{bottom:865.545300px;}
.y4c9{bottom:868.027050px;}
.y3e2{bottom:870.120000px;}
.y77{bottom:871.200000px;}
.y4f3{bottom:874.633050px;}
.y4bf{bottom:874.651050px;}
.y463{bottom:874.651200px;}
.y60{bottom:874.777200px;}
.y274{bottom:874.794420px;}
.y310{bottom:875.520000px;}
.y136{bottom:876.600000px;}
.y193{bottom:876.617280px;}
.y1be{bottom:876.780000px;}
.y1f9{bottom:877.860000px;}
.y41c{bottom:878.349060px;}
.y35c{bottom:878.760000px;}
.y2{bottom:879.369000px;}
.y3e1{bottom:881.820000px;}
.y235{bottom:882.651600px;}
.ye8{bottom:882.900000px;}
.y2c1{bottom:884.567160px;}
.yb8{bottom:886.680000px;}
.yfe{bottom:887.940000px;}
.y29a{bottom:889.421220px;}
.y43{bottom:889.920000px;}
.y2e6{bottom:891.540000px;}
.yd8{bottom:891.720000px;}
.y76{bottom:891.900000px;}
.y3e0{bottom:892.620000px;}
.y1f0{bottom:892.800000px;}
.y135{bottom:893.343060px;}
.y41b{bottom:895.634640px;}
.y35b{bottom:896.220000px;}
.y499{bottom:896.251050px;}
.y462{bottom:896.251200px;}
.y30f{bottom:896.580000px;}
.y5f{bottom:898.033200px;}
.y39{bottom:898.554600px;}
.y273{bottom:898.920000px;}
.y234{bottom:899.937180px;}
.ye7{bottom:903.600000px;}
.y3df{bottom:904.320000px;}
.y2c0{bottom:904.362660px;}
.y192{bottom:905.232960px;}
.y3ad{bottom:905.400000px;}
.y134{bottom:907.200000px;}
.y1bd{bottom:907.740000px;}
.y219{bottom:908.820000px;}
.y4c8{bottom:911.227050px;}
.y75{bottom:912.600000px;}
.y41a{bottom:912.920220px;}
.y42{bottom:914.961240px;}
.y3de{bottom:915.120000px;}
.y31{bottom:917.021550px;}
.y233{bottom:917.222760px;}
.y30e{bottom:917.280000px;}
.yb7{bottom:917.640000px;}
.y4f2{bottom:917.833050px;}
.y498{bottom:917.851050px;}
.y461{bottom:917.851200px;}
.yfd{bottom:919.080000px;}
.yd7{bottom:922.860000px;}
.y1f8{bottom:923.580000px;}
.y1ef{bottom:923.940000px;}
.y299{bottom:924.156720px;}
.y2e1{bottom:924.158160px;}
.y3dd{bottom:926.820000px;}
.y38{bottom:927.062100px;}
.y3ac{bottom:927.900000px;}
.y419{bottom:930.205800px;}
.y272{bottom:932.400000px;}
.y4c7{bottom:932.827050px;}
.y35a{bottom:932.940000px;}
.y74{bottom:933.300000px;}
.y191{bottom:933.666480px;}
.y232{bottom:934.508340px;}
.y3db{bottom:937.620000px;}
.y1bc{bottom:938.880000px;}
.y2bf{bottom:939.277440px;}
.y4f1{bottom:939.433050px;}
.y497{bottom:939.451050px;}
.y483{bottom:939.451200px;}
.y30d{bottom:939.780000px;}
.y218{bottom:939.960000px;}
.y133{bottom:941.220000px;}
.ye6{bottom:942.120000px;}
.y41{bottom:942.676200px;}
.y298{bottom:943.952220px;}
.y3dc{bottom:946.800000px;}
.y418{bottom:947.491380px;}
.yb6{bottom:948.780000px;}
.yfc{bottom:950.040000px;}
.y3a8{bottom:950.400000px;}
.y231{bottom:951.793920px;}
.y17a{bottom:953.460000px;}
.yd6{bottom:953.820000px;}
.y73{bottom:954.000000px;}
.y4c6{bottom:954.427050px;}
.y263{bottom:954.540000px;}
.y1ee{bottom:954.900000px;}
.y2e0{bottom:959.072940px;}
.y3aa{bottom:959.580000px;}
.y457{bottom:959.938560px;}
.y4f0{bottom:961.033050px;}
.y496{bottom:961.051050px;}
.y460{bottom:961.051200px;}
.y12e{bottom:961.920000px;}
.y190{bottom:962.100000px;}
.y30c{bottom:962.280000px;}
.y417{bottom:964.597680px;}
.y1{bottom:966.726000px;}
.y5e{bottom:967.783200px;}
.y230{bottom:969.079500px;}
.y1bb{bottom:969.840000px;}
.y132{bottom:970.020000px;}
.y40{bottom:970.391160px;}
.y217{bottom:970.920000px;}
.y3da{bottom:971.460000px;}
.y2be{bottom:974.012940px;}
.y72{bottom:974.700000px;}
.y271{bottom:975.052800px;}
.y4c5{bottom:976.027050px;}
.y297{bottom:978.867000px;}
.y2df{bottom:978.868440px;}
.yb5{bottom:979.740000px;}
.yfb{bottom:981.180000px;}
.y416{bottom:981.883260px;}
.ye5{bottom:981.900000px;}
.y4ef{bottom:982.633050px;}
.y495{bottom:982.651050px;}
.y45f{bottom:982.651200px;}
.y131{bottom:983.880000px;}
.y3a7{bottom:984.240000px;}
.y17d{bottom:984.600000px;}
.y30b{bottom:984.780000px;}
.yd5{bottom:984.960000px;}
.y449{bottom:985.680000px;}
.y1ed{bottom:986.040000px;}
.y22f{bottom:986.185800px;}
.y2bd{bottom:993.808440px;}
.y3d9{bottom:993.960000px;}
.y71{bottom:995.400000px;}
.y3f{bottom:998.295660px;}
.y296{bottom:998.662500px;}
.y415{bottom:999.168840px;}
.y456{bottom:999.185760px;}
.y1ba{bottom:1000.980000px;}
.y3d8{bottom:1003.143960px;}
.y22e{bottom:1003.471380px;}
.y4ee{bottom:1004.233050px;}
.y494{bottom:1004.251050px;}
.y45e{bottom:1004.251200px;}
.y18f{bottom:1006.740000px;}
.y30a{bottom:1007.280000px;}
.yb4{bottom:1010.700000px;}
.y3a6{bottom:1011.780000px;}
.yfa{bottom:1012.140000px;}
.y2de{bottom:1013.783220px;}
.y12d{bottom:1014.660000px;}
.y17c{bottom:1015.560000px;}
.yd4{bottom:1015.920000px;}
.y70{bottom:1016.100000px;}
.y414{bottom:1016.454420px;}
.y3d7{bottom:1016.820000px;}
.y1ec{bottom:1017.000000px;}
.y270{bottom:1018.440000px;}
.y22d{bottom:1020.756960px;}
.y4c4{bottom:1020.883050px;}
.ye4{bottom:1023.660000px;}
.y4b8{bottom:1025.851050px;}
.y48b{bottom:1025.851200px;}
.y3e{bottom:1026.010620px;}
.y3d6{bottom:1027.620000px;}
.y2bc{bottom:1028.723220px;}
.y308{bottom:1029.780000px;}
.y12b{bottom:1031.580000px;}
.y1b9{bottom:1031.940000px;}
.y295{bottom:1033.577280px;}
.y2dd{bottom:1033.578720px;}
.y413{bottom:1033.740000px;}
.y3a5{bottom:1034.280000px;}
.y6f{bottom:1036.800000px;}
.y455{bottom:1037.340000px;}
.y22c{bottom:1038.042540px;}
.yb3{bottom:1041.840000px;}
.y4c3{bottom:1044.139050px;}
.yf9{bottom:1045.638540px;}
.y2e{bottom:1045.708320px;}
.yd3{bottom:1047.060000px;}
.y4ed{bottom:1047.433050px;}
.y493{bottom:1047.451050px;}
.y45d{bottom:1047.451200px;}
.y2bb{bottom:1048.518720px;}
.y18e{bottom:1052.640000px;}
.y294{bottom:1053.372780px;}
.y2dc{bottom:1053.374220px;}
.y3d{bottom:1053.725580px;}
.y411{bottom:1054.260000px;}
.y22b{bottom:1055.328120px;}
.y3a4{bottom:1056.780000px;}
.y40c{bottom:1057.140000px;}
.y6e{bottom:1057.500000px;}
.y307{bottom:1060.380000px;}
.y5d{bottom:1060.789200px;}
.ye3{bottom:1062.540000px;}
.y1eb{bottom:1063.080000px;}
.y3d5{bottom:1064.523960px;}
.y4c2{bottom:1067.395050px;}
.y4ec{bottom:1069.033050px;}
.y492{bottom:1069.051050px;}
.y45c{bottom:1069.051200px;}
.y412{bottom:1069.560000px;}
.y22a{bottom:1072.613700px;}
.yb2{bottom:1072.800000px;}
.yd2{bottom:1078.020000px;}
.y6d{bottom:1078.200000px;}
.y3a2{bottom:1080.720000px;}
.y3c{bottom:1081.630080px;}
.yf8{bottom:1081.988100px;}
.y306{bottom:1082.880000px;}
.y2ba{bottom:1083.433500px;}
.y5c{bottom:1084.045200px;}
.y293{bottom:1088.108280px;}
.y2db{bottom:1088.109720px;}
.y4c1{bottom:1088.995050px;}
.y3d4{bottom:1089.000000px;}
.y229{bottom:1089.720000px;}
.y4eb{bottom:1090.633050px;}
.y491{bottom:1090.651050px;}
.y45b{bottom:1090.651200px;}
.y26f{bottom:1094.040000px;}
.y2d{bottom:1096.476780px;}
.y3a3{bottom:1097.460000px;}
.y403{bottom:1098.540000px;}
.y6c{bottom:1098.900000px;}
.y18d{bottom:1100.878920px;}
.ye2{bottom:1101.420000px;}
.y3a1{bottom:1102.140000px;}
.y2b9{bottom:1103.229000px;}
.y304{bottom:1103.760000px;}
.yb1{bottom:1103.940000px;}
.y303{bottom:1106.820000px;}
.y292{bottom:1108.083060px;}
.y12a{bottom:1108.800000px;}
.yd1{bottom:1109.160000px;}
.y3b{bottom:1109.345040px;}
.y3d3{bottom:1111.500000px;}
.y4ea{bottom:1112.233050px;}
.y490{bottom:1112.251050px;}
.y45a{bottom:1112.251200px;}
.y6b{bottom:1119.600000px;}
.y224{bottom:1121.220000px;}
.y2c{bottom:1121.861010px;}
.y2b8{bottom:1123.024500px;}
.y5b{bottom:1130.539200px;}
.y4e9{bottom:1133.833050px;}
.y48f{bottom:1133.851050px;}
.y48a{bottom:1133.851200px;}
.y3a{bottom:1137.060000px;}
.y180{bottom:1139.760000px;}
.y2e4{bottom:1139.940000px;}
.yd0{bottom:1140.120000px;}
.y6a{bottom:1140.300000px;}
.y291{bottom:1142.460000px;}
.y2b7{bottom:1142.820000px;}
.y302{bottom:1143.900000px;}
.y3d2{bottom:1145.700000px;}
.y2b{bottom:1147.245240px;}
.y5a{bottom:1153.795200px;}
.y4e8{bottom:1155.433050px;}
.y48e{bottom:1155.451050px;}
.y482{bottom:1155.451200px;}
.y2a{bottom:1172.629470px;}
.y4e7{bottom:1177.033050px;}
.y48d{bottom:1177.051050px;}
.y59{bottom:1177.051200px;}
.y29{bottom:1198.013700px;}
.y28{bottom:1235.728200px;}
.h46{height:22.498500px;}
.h45{height:22.500000px;}
.h4c{height:23.578500px;}
.h40{height:23.580000px;}
.h4e{height:23.760000px;}
.h13{height:26.532000px;}
.h44{height:27.540000px;}
.h43{height:27.720000px;}
.h5a{height:28.963440px;}
.h26{height:31.140000px;}
.h2e{height:31.680000px;}
.h30{height:31.860000px;}
.h7{height:32.130000px;}
.h53{height:33.660000px;}
.h56{height:33.661500px;}
.h52{height:33.838500px;}
.h51{height:33.840000px;}
.h37{height:34.560000px;}
.h48{height:34.918500px;}
.h4f{height:36.000000px;}
.h33{height:37.475156px;}
.h39{height:39.145781px;}
.h3a{height:42.045469px;}
.hd{height:42.498810px;}
.h2d{height:45.540000px;}
.h31{height:45.718500px;}
.h2f{height:45.720000px;}
.h6{height:45.900000px;}
.h47{height:46.440000px;}
.h27{height:46.800000px;}
.h3{height:48.195000px;}
.h29{height:48.569766px;}
.h49{height:48.764798px;}
.h54{height:49.370625px;}
.h28{height:49.488398px;}
.he{height:50.408910px;}
.h50{height:50.760000px;}
.h4b{height:51.658500px;}
.hf{height:52.566210px;}
.h59{height:54.864000px;}
.h2{height:55.080000px;}
.h41{height:55.397461px;}
.hb{height:55.658340px;}
.h34{height:57.600703px;}
.hc{height:57.954000px;}
.h2b{height:59.400000px;}
.h25{height:60.168516px;}
.h3b{height:61.160625px;}
.h36{height:61.306523px;}
.h3f{height:61.685859px;}
.h1e{height:61.920000px;}
.ha{height:63.085592px;}
.h1f{height:63.846562px;}
.h21{height:64.040625px;}
.h5{height:64.260000px;}
.h22{height:64.331719px;}
.h1d{height:65.592000px;}
.h3c{height:66.260261px;}
.h3d{height:66.484901px;}
.h1c{height:66.628125px;}
.h1b{height:66.692812px;}
.h3e{height:67.679460px;}
.h35{height:67.792500px;}
.h15{height:68.580000px;}
.h20{height:72.492188px;}
.h24{height:73.687500px;}
.h19{height:73.863281px;}
.h58{height:73.869041px;}
.h57{height:74.320312px;}
.h12{height:76.945526px;}
.h4d{height:78.816246px;}
.h23{height:81.196172px;}
.h32{height:81.689766px;}
.h1a{height:84.815859px;}
.h17{height:85.103789px;}
.h18{height:86.420039px;}
.h11{height:100.937211px;}
.h2c{height:103.273926px;}
.h4a{height:103.468958px;}
.h2a{height:103.997526px;}
.h55{height:104.192558px;}
.h4{height:119.055004px;}
.h10{height:151.405597px;}
.h42{height:413.821500px;}
.h38{height:793.440000px;}
.h0{height:1262.833500px;}
.h14{height:1262.835000px;}
.h16{height:1262.880000px;}
.h1{height:1263.000000px;}
.h9{height:1350.000000px;}
.h8{height:1350.354000px;}
.w41{width:35.640000px;}
.w40{width:36.360000px;}
.w29{width:36.361500px;}
.w3f{width:36.538500px;}
.w3e{width:36.540000px;}
.w25{width:38.158500px;}
.w3d{width:39.060000px;}
.w3c{width:42.480000px;}
.w24{width:46.260000px;}
.w23{width:48.960000px;}
.w26{width:53.460000px;}
.w2a{width:63.720000px;}
.w27{width:65.521500px;}
.w28{width:66.238500px;}
.w30{width:74.338500px;}
.w15{width:79.560000px;}
.wa{width:81.721500px;}
.we{width:83.518500px;}
.wb{width:83.520000px;}
.wc{width:83.700000px;}
.wf{width:85.500000px;}
.w9{width:85.501500px;}
.w13{width:86.040000px;}
.w2f{width:86.220000px;}
.w12{width:86.940000px;}
.w11{width:88.020000px;}
.w14{width:88.560000px;}
.w8{width:89.821500px;}
.w10{width:91.080000px;}
.wd{width:94.141500px;}
.w3a{width:98.098500px;}
.w36{width:98.100000px;}
.w2e{width:98.280000px;}
.w3b{width:106.198500px;}
.w35{width:108.898500px;}
.w31{width:128.160000px;}
.w37{width:141.660000px;}
.w42{width:153.000000px;}
.w39{width:154.620000px;}
.w33{width:155.338500px;}
.w18{width:171.360000px;}
.w17{width:174.778500px;}
.w2d{width:184.500000px;}
.w32{width:185.940000px;}
.w1a{width:199.800000px;}
.w34{width:207.000000px;}
.w1b{width:210.418500px;}
.w1d{width:231.840000px;}
.w2b{width:246.960000px;}
.w1c{width:252.180000px;}
.w19{width:257.760000px;}
.w16{width:262.440000px;}
.w20{width:270.720000px;}
.w1e{width:271.438500px;}
.w21{width:300.058500px;}
.w1f{width:301.501500px;}
.w2c{width:324.000000px;}
.w38{width:460.800000px;}
.w7{width:602.820000px;}
.w2{width:637.794021px;}
.w22{width:667.080000px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w6{width:892.980000px;}
.w1{width:893.250000px;}
.w4{width:1915.500000px;}
.w3{width:1915.860000px;}
.x0{left:0.000000px;}
.x6e{left:5.220000px;}
.xb8{left:6.300000px;}
.x18{left:7.380000px;}
.x48{left:9.000000px;}
.x80{left:10.800000px;}
.x44{left:12.060000px;}
.x3d{left:13.320000px;}
.x75{left:14.400000px;}
.x2f{left:15.480000px;}
.x7e{left:16.920000px;}
.x72{left:18.360000px;}
.x53{left:20.340000px;}
.x76{left:22.140000px;}
.x4e{left:23.400000px;}
.x7f{left:25.200000px;}
.x2b{left:27.000000px;}
.x78{left:28.080000px;}
.x4b{left:30.240000px;}
.x85{left:33.660000px;}
.x90{left:36.180000px;}
.x8f{left:38.160000px;}
.x9a{left:41.400000px;}
.x4c{left:43.200000px;}
.x4a{left:44.460000px;}
.x5a{left:51.480000px;}
.x16{left:56.340000px;}
.xb{left:58.759800px;}
.x83{left:64.260000px;}
.x93{left:65.340000px;}
.x92{left:67.320000px;}
.x96{left:75.420000px;}
.x5b{left:77.580000px;}
.xbe{left:85.039350px;}
.x17{left:99.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x32{left:110.340000px;}
.x55{left:112.683960px;}
.x24{left:117.180000px;}
.x5c{left:119.696760px;}
.x38{left:121.136940px;}
.xc{left:123.218700px;}
.x54{left:126.360000px;}
.x49{left:127.620000px;}
.x67{left:133.380000px;}
.xbf{left:136.069350px;}
.x8{left:144.180750px;}
.x69{left:148.860000px;}
.x68{left:160.380000px;}
.x8b{left:168.480000px;}
.x88{left:169.740000px;}
.x81{left:172.980000px;}
.x94{left:175.320000px;}
.xa0{left:181.080000px;}
.x3c{left:184.320000px;}
.x19{left:190.260000px;}
.x15{left:191.700000px;}
.x1a{left:197.640000px;}
.x25{left:200.514600px;}
.x4{left:203.484001px;}
.x4d{left:213.116760px;}
.x3b{left:216.360000px;}
.x8c{left:235.260000px;}
.x89{left:239.220000px;}
.x82{left:244.260000px;}
.x95{left:248.760000px;}
.x84{left:253.080000px;}
.x97{left:259.740000px;}
.x9b{left:261.720000px;}
.x3f{left:273.060000px;}
.x8a{left:275.761800px;}
.xd{left:277.276200px;}
.x58{left:280.800000px;}
.x1b{left:284.580000px;}
.x59{left:291.774600px;}
.x52{left:293.400000px;}
.x5f{left:295.020000px;}
.x36{left:296.994960px;}
.x60{left:299.337480px;}
.x35{left:300.420000px;}
.x26{left:302.035680px;}
.x3e{left:304.380000px;}
.x6a{left:309.780000px;}
.x13{left:317.700000px;}
.x66{left:324.360000px;}
.x91{left:326.700000px;}
.x8e{left:333.540000px;}
.xa2{left:341.280000px;}
.x87{left:342.540000px;}
.x9c{left:344.700000px;}
.x8d{left:349.200000px;}
.x86{left:352.080000px;}
.x70{left:353.340000px;}
.xa1{left:356.400000px;}
.x99{left:357.660000px;}
.x10{left:359.640000px;}
.x41{left:360.720000px;}
.x1c{left:364.140000px;}
.x33{left:370.269180px;}
.x1d{left:371.520000px;}
.x4f{left:372.604140px;}
.x56{left:374.422140px;}
.x6f{left:377.100000px;}
.x11{left:381.240000px;}
.x61{left:383.757480px;}
.x98{left:388.080000px;}
.x27{left:389.518920px;}
.x40{left:391.860000px;}
.x63{left:393.480000px;}
.x9e{left:394.918200px;}
.x71{left:402.300000px;}
.x73{left:408.960000px;}
.xa4{left:414.360000px;}
.xa3{left:429.480000px;}
.x64{left:431.100000px;}
.xbd{left:433.980000px;}
.x14{left:438.120000px;}
.xf{left:442.440000px;}
.x9d{left:443.520000px;}
.xe{left:446.580000px;}
.x74{left:448.560000px;}
.xa5{left:450.900000px;}
.x3{left:454.959000px;}
.xc0{left:458.647350px;}
.x50{left:460.087380px;}
.x28{left:462.602520px;}
.x5d{left:466.373520px;}
.x34{left:470.704860px;}
.x57{left:473.072940px;}
.x42{left:479.700000px;}
.x6d{left:485.820000px;}
.xa7{left:487.260000px;}
.x77{left:493.380000px;}
.x9f{left:497.878200px;}
.xa6{left:502.560000px;}
.xc3{left:503.951100px;}
.xc2{left:506.491350px;}
.xc1{left:509.677350px;}
.xa8{left:523.800000px;}
.x1e{left:532.260000px;}
.x2a{left:536.760000px;}
.x1f{left:539.640000px;}
.x79{left:546.840000px;}
.x39{left:551.522160px;}
.x51{left:554.408640px;}
.x29{left:557.101620px;}
.xaa{left:560.340000px;}
.x6b{left:562.680000px;}
.x43{left:564.120000px;}
.x12{left:567.360000px;}
.x6c{left:570.420000px;}
.xa9{left:575.460000px;}
.xbc{left:581.040000px;}
.xac{left:596.880000px;}
.xb9{left:603.180000px;}
.x7a{left:605.700000px;}
.xba{left:607.140000px;}
.xab{left:609.120000px;}
.x9{left:612.710355px;}
.x20{left:617.400000px;}
.x2e{left:623.160000px;}
.x21{left:624.780000px;}
.xad{left:633.420000px;}
.x62{left:640.611360px;}
.x2d{left:642.600360px;}
.xbb{left:643.680000px;}
.x2c{left:644.940000px;}
.x37{left:647.627400px;}
.x45{left:653.400000px;}
.xaf{left:669.960000px;}
.x7b{left:671.940000px;}
.x7c{left:678.960000px;}
.xae{left:682.200000px;}
.xb1{left:706.500000px;}
.x7d{left:708.300000px;}
.x22{left:713.160000px;}
.x47{left:714.960000px;}
.xb0{left:718.740000px;}
.x23{left:720.360000px;}
.x65{left:724.859640px;}
.x30{left:733.680000px;}
.x3a{left:734.942700px;}
.x5e{left:735.998940px;}
.x31{left:737.997480px;}
.x46{left:739.440000px;}
.xb3{left:743.040000px;}
.xb2{left:755.280000px;}
.xb5{left:779.580000px;}
.xb4{left:791.820000px;}
.xb7{left:816.120000px;}
.xb6{left:828.360000px;}
.x6{left:951.895200px;}
.x7{left:953.367150px;}
.xa{left:1047.224550px;}
.x5{left:1049.247450px;}
@media print{
.v8{vertical-align:-29.440000pt;}
.v5{vertical-align:-26.880000pt;}
.v6{vertical-align:-24.320000pt;}
.vb{vertical-align:-16.640000pt;}
.v3{vertical-align:-14.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.669120pt;}
.v7{vertical-align:24.101760pt;}
.va{vertical-align:26.885760pt;}
.v4{vertical-align:29.440000pt;}
.v9{vertical-align:47.982720pt;}
.v2{vertical-align:49.269120pt;}
.ls59{letter-spacing:-1.472000pt;}
.ls40{letter-spacing:-1.457920pt;}
.ls56{letter-spacing:-1.344000pt;}
.ls4e{letter-spacing:-1.280000pt;}
.ls48{letter-spacing:-0.943360pt;}
.ls49{letter-spacing:-0.900480pt;}
.ls8d{letter-spacing:-0.857600pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls45{letter-spacing:-0.814720pt;}
.ls46{letter-spacing:-0.728960pt;}
.lsa4{letter-spacing:-0.704000pt;}
.ls47{letter-spacing:-0.686080pt;}
.ls50{letter-spacing:-0.647680pt;}
.ls94{letter-spacing:-0.643200pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsa1{letter-spacing:-0.584320pt;}
.ls4d{letter-spacing:-0.512000pt;}
.ls43{letter-spacing:-0.471680pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls8c{letter-spacing:-0.432000pt;}
.ls60{letter-spacing:-0.424960pt;}
.ls9f{letter-spacing:-0.412160pt;}
.ls44{letter-spacing:-0.385920pt;}
.ls52{letter-spacing:-0.384000pt;}
.ls77{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.318720pt;}
.ls3f{letter-spacing:-0.300160pt;}
.lsa0{letter-spacing:-0.299520pt;}
.ls65{letter-spacing:-0.294400pt;}
.ls42{letter-spacing:-0.257280pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.214400pt;}
.ls5f{letter-spacing:-0.212480pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.171520pt;}
.ls4c{letter-spacing:-0.128000pt;}
.ls8e{letter-spacing:-0.085760pt;}
.lsf{letter-spacing:-0.074880pt;}
.ls54{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.053120pt;}
.ls4b{letter-spacing:-0.042880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.053120pt;}
.ls64{letter-spacing:0.053760pt;}
.ls9{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.074880pt;}
.lsb{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.133120pt;}
.ls4f{letter-spacing:0.154880pt;}
.ls5b{letter-spacing:0.159360pt;}
.ls62{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.171520pt;}
.ls53{letter-spacing:0.192000pt;}
.ls5e{letter-spacing:0.212480pt;}
.ls12{letter-spacing:0.235520pt;}
.ls10{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.256640pt;}
.ls3d{letter-spacing:0.257280pt;}
.ls63{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.294400pt;}
.ls2{letter-spacing:0.299520pt;}
.ls66{letter-spacing:0.300160pt;}
.ls58{letter-spacing:0.318720pt;}
.ls57{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.343040pt;}
.ls55{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.428800pt;}
.ls8f{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ls5a{letter-spacing:0.796800pt;}
.ls5d{letter-spacing:0.903040pt;}
.lsa2{letter-spacing:1.280000pt;}
.ls97{letter-spacing:30.187520pt;}
.ls51{letter-spacing:30.208000pt;}
.ls93{letter-spacing:44.295040pt;}
.ls92{letter-spacing:44.337920pt;}
.ls96{letter-spacing:44.938240pt;}
.ls9a{letter-spacing:44.981120pt;}
.ls95{letter-spacing:52.613760pt;}
.ls91{letter-spacing:52.656640pt;}
.ls5{letter-spacing:59.520000pt;}
.ls1d{letter-spacing:71.180800pt;}
.ls37{letter-spacing:71.824000pt;}
.ls1e{letter-spacing:73.753600pt;}
.ls29{letter-spacing:75.683200pt;}
.ls1c{letter-spacing:78.213120pt;}
.ls71{letter-spacing:86.574720pt;}
.ls19{letter-spacing:91.023360pt;}
.ls38{letter-spacing:91.677440pt;}
.ls2a{letter-spacing:94.250240pt;}
.ls3b{letter-spacing:94.893440pt;}
.ls72{letter-spacing:99.352960pt;}
.ls1f{letter-spacing:102.568960pt;}
.ls70{letter-spacing:105.098880pt;}
.ls2e{letter-spacing:110.244480pt;}
.ls2c{letter-spacing:111.530880pt;}
.ls20{letter-spacing:112.817280pt;}
.ls33{letter-spacing:113.460480pt;}
.ls6c{letter-spacing:114.060800pt;}
.ls75{letter-spacing:114.704000pt;}
.ls2f{letter-spacing:115.990400pt;}
.ls2d{letter-spacing:116.633600pt;}
.ls1b{letter-spacing:117.276800pt;}
.ls74{letter-spacing:118.563200pt;}
.ls16{letter-spacing:121.779200pt;}
.ls36{letter-spacing:123.665920pt;}
.ls21{letter-spacing:125.595520pt;}
.ls28{letter-spacing:130.741120pt;}
.ls6d{letter-spacing:131.984640pt;}
.ls26{letter-spacing:133.914240pt;}
.ls15{letter-spacing:135.200640pt;}
.ls25{letter-spacing:140.946560pt;}
.ls24{letter-spacing:145.448960pt;}
.ls17{letter-spacing:146.092160pt;}
.ls73{letter-spacing:147.378560pt;}
.ls39{letter-spacing:149.908480pt;}
.ls2b{letter-spacing:153.784960pt;}
.ls30{letter-spacing:162.729600pt;}
.lsa5{letter-spacing:163.648000pt;}
.ls27{letter-spacing:164.659200pt;}
.ls18{letter-spacing:171.048320pt;}
.ls82{letter-spacing:172.334720pt;}
.ls89{letter-spacing:183.826560pt;}
.ls31{letter-spacing:188.972160pt;}
.ls81{letter-spacing:191.502080pt;}
.ls34{letter-spacing:211.355520pt;}
.ls8b{letter-spacing:213.928320pt;}
.ls9b{letter-spacing:221.603840pt;}
.ls84{letter-spacing:227.950080pt;}
.ls86{letter-spacing:228.636160pt;}
.ls7b{letter-spacing:231.208960pt;}
.ls35{letter-spacing:236.311680pt;}
.ls7f{letter-spacing:238.241280pt;}
.ls79{letter-spacing:245.273600pt;}
.ls85{letter-spacing:254.878720pt;}
.ls9d{letter-spacing:256.165120pt;}
.ls9c{letter-spacing:265.770240pt;}
.ls32{letter-spacing:279.834880pt;}
.ls6e{letter-spacing:301.617920pt;}
.ls99{letter-spacing:336.779520pt;}
.ls6f{letter-spacing:364.308480pt;}
.ls69{letter-spacing:405.902080pt;}
.ls98{letter-spacing:405.987840pt;}
.ls90{letter-spacing:429.614720pt;}
.ls83{letter-spacing:432.787840pt;}
.ls87{letter-spacing:435.360640pt;}
.ls9e{letter-spacing:438.576640pt;}
.ls7e{letter-spacing:440.463360pt;}
.ls7d{letter-spacing:443.036160pt;}
.ls7c{letter-spacing:450.025600pt;}
.ls8a{letter-spacing:460.960000pt;}
.ls88{letter-spacing:466.062720pt;}
.ls80{letter-spacing:468.635520pt;}
.ls78{letter-spacing:473.781120pt;}
.ls68{letter-spacing:494.878080pt;}
.ls7a{letter-spacing:514.088320pt;}
.ls6a{letter-spacing:542.260480pt;}
.ls3c{letter-spacing:668.335360pt;}
.ls76{letter-spacing:676.003200pt;}
.ls6b{letter-spacing:726.558720pt;}
.lsa3{letter-spacing:754.693120pt;}
.ls67{letter-spacing:786.076160pt;}
.ls3a{letter-spacing:788.648960pt;}
.ls23{letter-spacing:1084.306560pt;}
.ws2{word-spacing:-21.285360pt;}
.ws15{word-spacing:-19.019520pt;}
.ws14{word-spacing:-18.794880pt;}
.ws4{word-spacing:-18.720000pt;}
.ws7d{word-spacing:-18.420480pt;}
.ws82{word-spacing:-17.792000pt;}
.ws7f{word-spacing:-17.280000pt;}
.ws7c{word-spacing:-16.640000pt;}
.ws4c{word-spacing:-16.384000pt;}
.ws1a{word-spacing:-16.256000pt;}
.ws77{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws4b{word-spacing:-15.936000pt;}
.ws4f{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4a{word-spacing:-15.616000pt;}
.ws41{word-spacing:-15.552000pt;}
.ws42{word-spacing:-15.488000pt;}
.ws1f{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.168000pt;}
.ws7{word-spacing:-15.014400pt;}
.ws5{word-spacing:-14.837760pt;}
.ws6{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.382000pt;}
.ws54{word-spacing:-13.598720pt;}
.ws1e{word-spacing:-13.542400pt;}
.ws5a{word-spacing:-13.492480pt;}
.ws61{word-spacing:-13.386240pt;}
.ws57{word-spacing:-13.333120pt;}
.ws63{word-spacing:-13.280000pt;}
.ws5b{word-spacing:-13.226880pt;}
.ws64{word-spacing:-13.067520pt;}
.ws62{word-spacing:-12.961280pt;}
.ws7b{word-spacing:-12.894720pt;}
.ws5c{word-spacing:-12.855040pt;}
.ws75{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.063040pt;}
.ws6d{word-spacing:-11.020160pt;}
.ws25{word-spacing:-10.977280pt;}
.ws2b{word-spacing:-10.891520pt;}
.ws2a{word-spacing:-10.720000pt;}
.ws2e{word-spacing:-10.677120pt;}
.ws76{word-spacing:-10.634240pt;}
.ws21{word-spacing:-10.548480pt;}
.ws6a{word-spacing:-10.505600pt;}
.ws23{word-spacing:-10.462720pt;}
.ws28{word-spacing:-10.419840pt;}
.ws24{word-spacing:-10.334080pt;}
.ws27{word-spacing:-10.248320pt;}
.ws79{word-spacing:-10.076800pt;}
.ws29{word-spacing:-10.033920pt;}
.ws26{word-spacing:-9.905280pt;}
.ws74{word-spacing:-9.862400pt;}
.ws2d{word-spacing:-9.819520pt;}
.ws2c{word-spacing:-9.776640pt;}
.ws59{word-spacing:-9.280000pt;}
.ws58{word-spacing:-8.640000pt;}
.ws46{word-spacing:-7.810560pt;}
.ws6c{word-spacing:-0.814720pt;}
.ws66{word-spacing:-0.796800pt;}
.ws78{word-spacing:-0.768000pt;}
.ws49{word-spacing:-0.647680pt;}
.ws35{word-spacing:-0.643200pt;}
.ws51{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.449280pt;}
.ws4e{word-spacing:-0.384000pt;}
.ws32{word-spacing:-0.343040pt;}
.ws5f{word-spacing:-0.318720pt;}
.ws48{word-spacing:-0.294400pt;}
.ws2f{word-spacing:-0.257280pt;}
.ws44{word-spacing:-0.256000pt;}
.ws8{word-spacing:-0.224640pt;}
.ws5d{word-spacing:-0.212480pt;}
.ws70{word-spacing:-0.192000pt;}
.ws3e{word-spacing:-0.171520pt;}
.ws55{word-spacing:-0.159360pt;}
.wsf{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.117760pt;}
.ws67{word-spacing:-0.106240pt;}
.ws38{word-spacing:-0.085760pt;}
.ws1b{word-spacing:-0.074880pt;}
.ws1c{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.063920pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.053120pt;}
.ws7a{word-spacing:0.064000pt;}
.ws68{word-spacing:0.106240pt;}
.ws47{word-spacing:0.117760pt;}
.ws43{word-spacing:0.128000pt;}
.ws34{word-spacing:0.171520pt;}
.wse{word-spacing:0.192000pt;}
.ws18{word-spacing:0.212480pt;}
.ws6b{word-spacing:0.214400pt;}
.wsd{word-spacing:0.256000pt;}
.ws69{word-spacing:0.294400pt;}
.ws30{word-spacing:0.300160pt;}
.ws65{word-spacing:0.318720pt;}
.ws6e{word-spacing:0.336000pt;}
.ws5e{word-spacing:0.371840pt;}
.ws3d{word-spacing:0.385920pt;}
.ws33{word-spacing:0.428800pt;}
.ws1d{word-spacing:0.448000pt;}
.ws37{word-spacing:0.471680pt;}
.ws19{word-spacing:0.478080pt;}
.ws71{word-spacing:0.480000pt;}
.ws4d{word-spacing:0.512000pt;}
.ws3c{word-spacing:0.557440pt;}
.ws73{word-spacing:0.576000pt;}
.ws7e{word-spacing:0.584320pt;}
.ws16{word-spacing:0.640000pt;}
.ws36{word-spacing:0.643200pt;}
.ws53{word-spacing:0.647680pt;}
.ws81{word-spacing:0.704000pt;}
.ws39{word-spacing:0.728960pt;}
.ws80{word-spacing:0.832000pt;}
.ws20{word-spacing:0.896000pt;}
.ws3b{word-spacing:0.900480pt;}
.ws3f{word-spacing:0.943360pt;}
.ws40{word-spacing:1.029120pt;}
.ws72{word-spacing:1.072000pt;}
.ws60{word-spacing:1.115520pt;}
.ws45{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.286400pt;}
.ws52{word-spacing:1.344000pt;}
.ws31{word-spacing:1.457920pt;}
.ws56{word-spacing:1.472000pt;}
.ws50{word-spacing:1.536000pt;}
.ws6f{word-spacing:1.629440pt;}
._80{margin-left:-17.792000pt;}
._32{margin-left:-13.579383pt;}
._c{margin-left:-10.240000pt;}
._7{margin-left:-6.657771pt;}
._5c{margin-left:-4.864000pt;}
._1{margin-left:-3.375305pt;}
._2{margin-left:-1.534229pt;}
._0{width:1.227383pt;}
._27{width:2.292617pt;}
._69{width:3.200000pt;}
._4{width:4.234478pt;}
._46{width:5.184000pt;}
._14{width:23.026846pt;}
._73{width:30.380706pt;}
._72{width:31.479450pt;}
._74{width:39.249728pt;}
._7e{width:56.896000pt;}
._a{width:59.520000pt;}
._4a{width:69.481233pt;}
._75{width:71.186330pt;}
._7d{width:74.688000pt;}
._4e{width:87.616000pt;}
._7f{width:92.480000pt;}
._24{width:95.986846pt;}
._3e{width:97.344000pt;}
._7a{width:110.272000pt;}
._d{width:135.680000pt;}
._7c{width:145.856000pt;}
._7b{width:163.648000pt;}
._77{width:182.056265pt;}
._78{width:185.976090pt;}
._59{width:202.162846pt;}
._76{width:225.322185pt;}
._79{width:228.480000pt;}
._6d{width:254.883797pt;}
._5d{width:261.303147pt;}
._20{width:299.373534pt;}
._1f{width:307.442846pt;}
._71{width:322.880000pt;}
._5f{width:379.698846pt;}
._66{width:412.024917pt;}
._6e{width:442.939793pt;}
._49{width:491.749692pt;}
._70{width:494.406400pt;}
._6f{width:506.144913pt;}
._13{width:531.383147pt;}
._17{width:609.088000pt;}
._34{width:631.360000pt;}
._30{width:634.290846pt;}
._52{width:635.365692pt;}
._61{width:717.931763pt;}
._2e{width:728.007083pt;}
._6a{width:749.249280pt;}
._6{width:751.603200pt;}
._6b{width:754.728960pt;}
._67{width:769.259763pt;}
._16{width:780.666688pt;}
._36{width:795.748932pt;}
._4d{width:797.426846pt;}
._15{width:818.738846pt;}
._8{width:843.685692pt;}
._51{width:855.975462pt;}
._2b{width:886.779699pt;}
._64{width:897.280000pt;}
._5b{width:908.346688pt;}
._11{width:918.139699pt;}
._f{width:933.888000pt;}
._6c{width:943.703040pt;}
._3{width:979.787392pt;}
._68{width:986.418846pt;}
._65{width:1006.912000pt;}
._44{width:1009.385233pt;}
._21{width:1014.074688pt;}
._4b{width:1026.524079pt;}
._41{width:1030.226466pt;}
._5e{width:1044.024917pt;}
._e{width:1047.964079pt;}
._63{width:1080.050846pt;}
._35{width:1108.773692pt;}
._23{width:1159.994688pt;}
._50{width:1167.936000pt;}
._26{width:1188.096000pt;}
._42{width:1197.950229pt;}
._12{width:1221.883699pt;}
._47{width:1239.471305pt;}
._22{width:1243.237692pt;}
._3c{width:1269.054229pt;}
._2c{width:1300.978846pt;}
._1d{width:1303.680000pt;}
._1b{width:1305.408000pt;}
._5a{width:1310.784000pt;}
._57{width:1323.200000pt;}
._60{width:1339.776000pt;}
._40{width:1370.412774pt;}
._4c{width:1375.090846pt;}
._19{width:1410.364459pt;}
._1e{width:1437.233075pt;}
._25{width:1442.610846pt;}
._58{width:1458.750229pt;}
._53{width:1461.447083pt;}
._1a{width:1473.088000pt;}
._28{width:1490.791462pt;}
._3b{width:1498.108459pt;}
._4f{width:1501.120000pt;}
._55{width:1516.158229pt;}
._56{width:1525.682846pt;}
._1c{width:1530.066466pt;}
._10{width:1532.946466pt;}
._18{width:1571.357850pt;}
._39{width:1588.928000pt;}
._54{width:1594.484617pt;}
._45{width:1596.722846pt;}
._62{width:1607.616000pt;}
._29{width:1693.874846pt;}
._3d{width:1701.584695pt;}
._31{width:1718.464000pt;}
._48{width:1734.464000pt;}
._43{width:1743.988617pt;}
._3a{width:1760.510229pt;}
._37{width:1764.402846pt;}
._2d{width:1803.776000pt;}
._b{width:1898.290846pt;}
._3f{width:1911.680000pt;}
._2a{width:1930.217233pt;}
._2f{width:1932.864000pt;}
._9{width:1997.161233pt;}
._38{width:2015.296000pt;}
._33{width:2062.720000pt;}
._5{width:5421.373867pt;}
.fsd{font-size:32.000000pt;}
.fs13{font-size:34.560000pt;}
.fs14{font-size:37.120000pt;}
.fs16{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:42.880000pt;}
.fs15{font-size:48.000000pt;}
.fs11{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs10{font-size:58.880000pt;}
.fs9{font-size:63.920000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:67.680000pt;}
.fs6{font-size:69.040533pt;}
.fs8{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fsf{font-size:74.880000pt;}
.fs5{font-size:76.711467pt;}
.fse{font-size:80.000000pt;}
.fsc{font-size:92.053867pt;}
.fsb{font-size:122.738667pt;}
.fsa{font-size:184.107733pt;}
.y2ea{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y2ec{bottom:2.400000pt;}
.y140{bottom:2.560000pt;}
.y137{bottom:2.720000pt;}
.y226{bottom:3.040000pt;}
.y255{bottom:3.360000pt;}
.y37{bottom:8.000000pt;}
.y34a{bottom:10.240000pt;}
.y349{bottom:10.400000pt;}
.y354{bottom:11.200000pt;}
.y353{bottom:11.360000pt;}
.y366{bottom:11.520000pt;}
.y12c{bottom:13.120000pt;}
.y38d{bottom:14.720000pt;}
.y309{bottom:14.880000pt;}
.y305{bottom:15.040000pt;}
.y225{bottom:18.400000pt;}
.y3c1{bottom:20.160000pt;}
.y3ab{bottom:20.320000pt;}
.y3a9{bottom:20.480000pt;}
.y12f{bottom:26.880000pt;}
.y155{bottom:31.040000pt;}
.y130{bottom:31.840000pt;}
.y6{bottom:44.973338pt;}
.y69{bottom:51.365760pt;}
.y4c0{bottom:67.067600pt;}
.y48c{bottom:67.067733pt;}
.y5{bottom:67.373337pt;}
.y68{bottom:69.280000pt;}
.y67{bottom:77.819733pt;}
.y4b7{bottom:86.267600pt;}
.y481{bottom:86.267733pt;}
.y4{bottom:89.773337pt;}
.y3d1{bottom:96.640000pt;}
.y16c{bottom:98.240000pt;}
.y66{bottom:98.491733pt;}
.y371{bottom:101.920000pt;}
.y129{bottom:102.720000pt;}
.y18c{bottom:103.680000pt;}
.y444{bottom:104.320000pt;}
.y1d5{bottom:104.640000pt;}
.y510{bottom:105.451600pt;}
.y4b6{bottom:105.467600pt;}
.y480{bottom:105.467733pt;}
.y1e2{bottom:105.600000pt;}
.y26{bottom:105.881653pt;}
.y20f{bottom:106.400000pt;}
.y300{bottom:108.160000pt;}
.y223{bottom:108.640000pt;}
.y40b{bottom:109.920000pt;}
.y1ab{bottom:110.080000pt;}
.y43f{bottom:111.040000pt;}
.y262{bottom:111.520000pt;}
.y9b{bottom:112.160000pt;}
.y359{bottom:113.760000pt;}
.y16b{bottom:114.435200pt;}
.y343{bottom:114.720000pt;}
.y435{bottom:115.040000pt;}
.y1b8{bottom:117.920000pt;}
.y4e6{bottom:118.779600pt;}
.y1f7{bottom:118.880000pt;}
.y65{bottom:119.163733pt;}
.y15d{bottom:120.320000pt;}
.y454{bottom:120.800000pt;}
.y23{bottom:123.790666pt;}
.y25b{bottom:124.160000pt;}
.y2fc{bottom:124.320000pt;}
.y50f{bottom:124.651600pt;}
.y4b5{bottom:124.667600pt;}
.y47f{bottom:124.667733pt;}
.y3d0{bottom:124.802720pt;}
.y116{bottom:127.040000pt;}
.y387{bottom:127.680000pt;}
.y2da{bottom:128.521120pt;}
.y25{bottom:128.895093pt;}
.y2ff{bottom:130.240000pt;}
.y128{bottom:130.400000pt;}
.y9a{bottom:130.560000pt;}
.y18b{bottom:131.200000pt;}
.y16a{bottom:131.392640pt;}
.y39e{bottom:131.680000pt;}
.y1d4{bottom:132.160000pt;}
.y26e{bottom:132.800000pt;}
.y1e1{bottom:133.120000pt;}
.y20e{bottom:134.080000pt;}
.y2b6{bottom:136.905760pt;}
.y3cf{bottom:137.120000pt;}
.y1aa{bottom:137.760000pt;}
.y4e5{bottom:137.979600pt;}
.y370{bottom:138.720000pt;}
.y261{bottom:139.040000pt;}
.y453{bottom:139.200000pt;}
.y64{bottom:139.835733pt;}
.y434{bottom:142.560000pt;}
.y50e{bottom:143.851600pt;}
.y4be{bottom:143.867600pt;}
.y489{bottom:143.867733pt;}
.y179{bottom:144.640000pt;}
.y333{bottom:145.120000pt;}
.y443{bottom:145.280000pt;}
.y1b7{bottom:145.600000pt;}
.y459{bottom:145.920000pt;}
.y1f6{bottom:146.400000pt;}
.y3cd{bottom:146.720000pt;}
.y15c{bottom:148.000000pt;}
.y169{bottom:148.188160pt;}
.y222{bottom:148.320000pt;}
.y99{bottom:148.960000pt;}
.y358{bottom:150.560000pt;}
.y342{bottom:151.520000pt;}
.y25a{bottom:151.840000pt;}
.y24{bottom:151.908533pt;}
.y321{bottom:152.960000pt;}
.ycf{bottom:153.280000pt;}
.y2b5{bottom:154.501760pt;}
.y115{bottom:154.560000pt;}
.y3ce{bottom:154.880000pt;}
.y4e4{bottom:157.179600pt;}
.y58{bottom:157.200640pt;}
.y452{bottom:157.600000pt;}
.y127{bottom:157.920000pt;}
.y18a{bottom:158.880000pt;}
.y2d9{bottom:159.556480pt;}
.y1d3{bottom:159.840000pt;}
.y1e0{bottom:160.800000pt;}
.y2fb{bottom:161.120000pt;}
.y20d{bottom:161.600000pt;}
.y4b4{bottom:163.067600pt;}
.y47e{bottom:163.067733pt;}
.y386{bottom:164.480000pt;}
.y168{bottom:164.983680pt;}
.y1a9{bottom:165.280000pt;}
.y43e{bottom:166.240000pt;}
.y260{bottom:166.720000pt;}
.y3a0{bottom:166.880000pt;}
.y2fe{bottom:167.040000pt;}
.y458{bottom:167.200000pt;}
.y98{bottom:167.360000pt;}
.y39d{bottom:168.480000pt;}
.y433{bottom:170.240000pt;}
.y178{bottom:172.160000pt;}
.y1b6{bottom:173.120000pt;}
.y1f5{bottom:174.080000pt;}
.y1a{bottom:175.052000pt;}
.y15b{bottom:175.520000pt;}
.y451{bottom:176.000000pt;}
.y4e3{bottom:176.379600pt;}
.y3cc{bottom:176.640000pt;}
.y2d8{bottom:177.152480pt;}
.y259{bottom:179.360000pt;}
.yce{bottom:180.960000pt;}
.y332{bottom:181.920000pt;}
.y167{bottom:181.941120pt;}
.y114{bottom:182.240000pt;}
.y50d{bottom:182.251600pt;}
.y4b3{bottom:182.267600pt;}
.y47d{bottom:182.267733pt;}
.y40a{bottom:183.520000pt;}
.y2b4{bottom:185.537120pt;}
.y126{bottom:185.600000pt;}
.y97{bottom:185.760000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y189{bottom:186.400000pt;}
.y1d2{bottom:187.360000pt;}
.y1df{bottom:188.320000pt;}
.y221{bottom:189.280000pt;}
.y320{bottom:189.760000pt;}
.y57{bottom:190.158720pt;}
.y511{bottom:191.595600pt;}
.y1a8{bottom:192.960000pt;}
.y30{bottom:193.847247pt;}
.y43d{bottom:193.920000pt;}
.y450{bottom:194.400000pt;}
.y4e2{bottom:195.579600pt;}
.y3ca{bottom:196.640000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y2fa{bottom:197.600000pt;}
.y432{bottom:197.760000pt;}
.y166{bottom:198.736640pt;}
.y3cb{bottom:199.360000pt;}
.y177{bottom:199.840000pt;}
.y441{bottom:200.480000pt;}
.y1b5{bottom:200.800000pt;}
.y385{bottom:201.280000pt;}
.y50c{bottom:201.451600pt;}
.y4b2{bottom:201.467600pt;}
.y488{bottom:201.467733pt;}
.y1f4{bottom:201.600000pt;}
.y20c{bottom:202.560000pt;}
.y2b3{bottom:203.133120pt;}
.y15a{bottom:203.200000pt;}
.y2e5{bottom:203.840000pt;}
.y96{bottom:204.160000pt;}
.y39c{bottom:205.280000pt;}
.y258{bottom:207.040000pt;}
.y25f{bottom:207.680000pt;}
.y2d7{bottom:207.869120pt;}
.ycd{bottom:208.480000pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y331{bottom:209.120000pt;}
.y113{bottom:209.760000pt;}
.y36f{bottom:212.320000pt;}
.y17e{bottom:212.800000pt;}
.y125{bottom:213.120000pt;}
.y188{bottom:214.080000pt;}
.y2f{bottom:214.525367pt;}
.y4e1{bottom:214.779600pt;}
.y1d1{bottom:215.040000pt;}
.y165{bottom:215.694080pt;}
.y1de{bottom:216.000000pt;}
.y409{bottom:220.320000pt;}
.y1a7{bottom:220.480000pt;}
.y50b{bottom:220.651600pt;}
.y4b1{bottom:220.667600pt;}
.y47c{bottom:220.667733pt;}
.y3c8{bottom:221.280000pt;}
.y43c{bottom:221.440000pt;}
.y95{bottom:222.560000pt;}
.y56{bottom:222.954880pt;}
.y357{bottom:224.160000pt;}
.y341{bottom:225.120000pt;}
.y431{bottom:225.440000pt;}
.y402{bottom:225.920000pt;}
.y31f{bottom:226.560000pt;}
.y176{bottom:227.360000pt;}
.y1ea{bottom:228.320000pt;}
.y330{bottom:229.120000pt;}
.y446{bottom:229.280000pt;}
.y3c9{bottom:229.440000pt;}
.y20b{bottom:230.240000pt;}
.y159{bottom:230.720000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y44f{bottom:231.200000pt;}
.y164{bottom:232.489600pt;}
.y4e0{bottom:233.979600pt;}
.y2b2{bottom:234.168480pt;}
.y2f9{bottom:234.400000pt;}
.y27{bottom:234.816667pt;}
.ycc{bottom:236.160000pt;}
.y112{bottom:237.280000pt;}
.y384{bottom:238.080000pt;}
.y2d6{bottom:239.063840pt;}
.y50a{bottom:239.851600pt;}
.y4b0{bottom:239.867600pt;}
.y47b{bottom:239.867733pt;}
.y124{bottom:240.800000pt;}
.y94{bottom:240.960000pt;}
.y187{bottom:241.600000pt;}
.y39b{bottom:242.080000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1d0{bottom:242.560000pt;}
.y1dd{bottom:243.520000pt;}
.y290{bottom:244.571040pt;}
.y257{bottom:248.000000pt;}
.y25e{bottom:248.640000pt;}
.y32f{bottom:249.120000pt;}
.y44e{bottom:249.280000pt;}
.y163{bottom:249.285120pt;}
.y3c7{bottom:251.200000pt;}
.y2b1{bottom:251.764480pt;}
.y430{bottom:252.960000pt;}
.y4df{bottom:253.179600pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y175{bottom:255.040000pt;}
.y55{bottom:255.589120pt;}
.y442{bottom:255.680000pt;}
.y1e9{bottom:256.000000pt;}
.y26a{bottom:256.800000pt;}
.y408{bottom:257.120000pt;}
.y20a{bottom:257.760000pt;}
.y158{bottom:258.400000pt;}
.y509{bottom:259.051600pt;}
.y4bd{bottom:259.067600pt;}
.y487{bottom:259.067733pt;}
.y93{bottom:259.360000pt;}
.y401{bottom:260.480000pt;}
.y356{bottom:260.960000pt;}
.y1a6{bottom:261.440000pt;}
.y340{bottom:261.920000pt;}
.y31e{bottom:263.360000pt;}
.ycb{bottom:263.680000pt;}
.y111{bottom:264.960000pt;}
.y162{bottom:266.242560pt;}
.y44d{bottom:267.365280pt;}
.y123{bottom:268.320000pt;}
.y32e{bottom:269.120000pt;}
.y186{bottom:269.280000pt;}
.y2d5{bottom:270.099200pt;}
.y1cf{bottom:270.240000pt;}
.y1dc{bottom:271.200000pt;}
.y2f8{bottom:271.520000pt;}
.y4de{bottom:272.379600pt;}
.y383{bottom:274.880000pt;}
.y256{bottom:275.520000pt;}
.y28f{bottom:275.765760pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y400{bottom:276.320000pt;}
.y43b{bottom:276.640000pt;}
.y40d{bottom:277.440000pt;}
.y92{bottom:277.760000pt;}
.y508{bottom:278.251600pt;}
.y4af{bottom:278.267600pt;}
.y47a{bottom:278.267733pt;}
.y39a{bottom:278.880000pt;}
.y42f{bottom:280.640000pt;}
.y174{bottom:282.560000pt;}
.y2b0{bottom:282.640480pt;}
.y440{bottom:283.200000pt;}
.y1e8{bottom:283.520000pt;}
.y269{bottom:284.480000pt;}
.y209{bottom:285.440000pt;}
.y25d{bottom:285.600000pt;}
.y157{bottom:285.920000pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y2d4{bottom:287.695200pt;}
.y54{bottom:288.385280pt;}
.y1a5{bottom:289.120000pt;}
.y161{bottom:289.920000pt;}
.y227{bottom:290.720000pt;}
.y3c6{bottom:291.200000pt;}
.yca{bottom:291.360000pt;}
.y4dd{bottom:291.579600pt;}
.y110{bottom:292.480000pt;}
.y407{bottom:293.920000pt;}
.y122{bottom:296.000000pt;}
.y91{bottom:296.160000pt;}
.y185{bottom:296.800000pt;}
.y4ae{bottom:297.467600pt;}
.y479{bottom:297.467733pt;}
.y1e5{bottom:297.760000pt;}
.y44c{bottom:298.560000pt;}
.y216{bottom:298.720000pt;}
.y31d{bottom:300.160000pt;}
.y2af{bottom:300.395840pt;}
.y3fe{bottom:300.800000pt;}
.y160{bottom:300.960000pt;}
.y43a{bottom:304.320000pt;}
.y28e{bottom:306.801120pt;}
.y53{bottom:307.742080pt;}
.y42e{bottom:308.160000pt;}
.y2f7{bottom:308.320000pt;}
.y3ff{bottom:308.960000pt;}
.y32d{bottom:309.120000pt;}
.y254{bottom:309.221600pt;}
.y11{bottom:309.452000pt;}
.y173{bottom:310.240000pt;}
.y1ce{bottom:311.200000pt;}
.y1db{bottom:311.680000pt;}
.y212{bottom:312.000000pt;}
.y208{bottom:312.960000pt;}
.y40e{bottom:314.240000pt;}
.y90{bottom:314.560000pt;}
.y399{bottom:315.680000pt;}
.y3c5{bottom:315.840000pt;}
.y1a4{bottom:316.640000pt;}
.y507{bottom:316.651600pt;}
.y4ad{bottom:316.667600pt;}
.y478{bottom:316.667733pt;}
.y154{bottom:317.120000pt;}
.y2ae{bottom:317.991840pt;}
.y2d3{bottom:318.730560pt;}
.yc9{bottom:318.880000pt;}
.y153{bottom:319.842720pt;}
.y10f{bottom:320.160000pt;}
.y36e{bottom:322.720000pt;}
.y121{bottom:323.520000pt;}
.y184{bottom:324.480000pt;}
.y253{bottom:324.586560pt;}
.y44a{bottom:325.120000pt;}
.y1e4{bottom:325.440000pt;}
.y215{bottom:326.240000pt;}
.y52{bottom:327.098880pt;}
.yb0{bottom:328.320000pt;}
.y32c{bottom:329.120000pt;}
.y4dc{bottom:329.979600pt;}
.y406{bottom:330.720000pt;}
.y3fd{bottom:330.880000pt;}
.y439{bottom:331.840000pt;}
.y152{bottom:332.160000pt;}
.y8f{bottom:332.960000pt;}
.y355{bottom:334.240000pt;}
.y33f{bottom:335.520000pt;}
.y156{bottom:335.840000pt;}
.y506{bottom:335.851600pt;}
.y4bc{bottom:335.867600pt;}
.y477{bottom:335.867733pt;}
.y31c{bottom:336.960000pt;}
.y172{bottom:337.760000pt;}
.y28d{bottom:337.836480pt;}
.y1cd{bottom:338.720000pt;}
.y268{bottom:339.680000pt;}
.y252{bottom:339.951520pt;}
.y10{bottom:343.809333pt;}
.y1a3{bottom:344.320000pt;}
.y2f6{bottom:345.120000pt;}
.yc8{bottom:346.560000pt;}
.y51{bottom:346.617600pt;}
.y10e{bottom:347.680000pt;}
.y382{bottom:348.480000pt;}
.y2ad{bottom:348.867840pt;}
.y32b{bottom:349.120000pt;}
.y4db{bottom:349.179600pt;}
.yaf{bottom:349.440000pt;}
.y2d2{bottom:349.606560pt;}
.y352{bottom:350.240000pt;}
.y15e{bottom:350.880000pt;}
.y120{bottom:351.200000pt;}
.y8e{bottom:351.360000pt;}
.y183{bottom:352.000000pt;}
.y398{bottom:352.480000pt;}
.y1da{bottom:352.960000pt;}
.y301{bottom:353.440000pt;}
.y207{bottom:353.920000pt;}
.y505{bottom:355.051600pt;}
.y4ac{bottom:355.067600pt;}
.y476{bottom:355.067733pt;}
.y251{bottom:355.157120pt;}
.y28c{bottom:355.432480pt;}
.y3c4{bottom:355.840000pt;}
.y33e{bottom:358.240000pt;}
.y36d{bottom:359.520000pt;}
.y151{bottom:361.123520pt;}
.yf{bottom:362.706666pt;}
.y42d{bottom:363.360000pt;}
.y171{bottom:365.440000pt;}
.y1cc{bottom:366.240000pt;}
.y214{bottom:367.200000pt;}
.y2d1{bottom:367.202560pt;}
.y405{bottom:367.520000pt;}
.y4da{bottom:368.379600pt;}
.y32a{bottom:369.120000pt;}
.y8d{bottom:369.760000pt;}
.y250{bottom:370.522080pt;}
.yae{bottom:370.560000pt;}
.y351{bottom:371.200000pt;}
.y1a2{bottom:371.840000pt;}
.y28b{bottom:373.028480pt;}
.y150{bottom:373.280000pt;}
.y31b{bottom:373.760000pt;}
.yc7{bottom:374.080000pt;}
.y4ab{bottom:374.267600pt;}
.y475{bottom:374.267733pt;}
.y10d{bottom:375.360000pt;}
.y3c2{bottom:375.840000pt;}
.y3fc{bottom:378.080000pt;}
.y3c3{bottom:378.400000pt;}
.y11f{bottom:378.720000pt;}
.y50{bottom:379.251840pt;}
.y182{bottom:379.680000pt;}
.y2ac{bottom:379.903200pt;}
.y329{bottom:380.000000pt;}
.y447{bottom:380.320000pt;}
.y1f3{bottom:380.640000pt;}
.y220{bottom:381.440000pt;}
.y2f5{bottom:381.600000pt;}
.y381{bottom:384.960000pt;}
.y24f{bottom:385.887040pt;}
.y438{bottom:387.040000pt;}
.y39f{bottom:387.680000pt;}
.y8c{bottom:388.000000pt;}
.y397{bottom:388.960000pt;}
.yad{bottom:389.120000pt;}
.y14f{bottom:389.922720pt;}
.y28a{bottom:390.624480pt;}
.y42c{bottom:391.040000pt;}
.y350{bottom:391.200000pt;}
.y170{bottom:392.960000pt;}
.y504{bottom:393.451600pt;}
.y4aa{bottom:393.467600pt;}
.y486{bottom:393.467733pt;}
.y1e7{bottom:393.600000pt;}
.y1cb{bottom:393.920000pt;}
.y328{bottom:394.720000pt;}
.y206{bottom:394.880000pt;}
.y36c{bottom:396.320000pt;}
.y2ab{bottom:397.499200pt;}
.y2d0{bottom:398.237920pt;}
.y33d{bottom:398.720000pt;}
.y1a1{bottom:399.520000pt;}
.y3fa{bottom:399.840000pt;}
.y3bf{bottom:400.320000pt;}
.y24e{bottom:401.252000pt;}
.yc6{bottom:401.760000pt;}
.y14e{bottom:402.240000pt;}
.y3fb{bottom:402.560000pt;}
.y10c{bottom:402.880000pt;}
.y326{bottom:403.200000pt;}
.y404{bottom:404.320000pt;}
.y11e{bottom:406.240000pt;}
.y8b{bottom:406.400000pt;}
.y4d9{bottom:406.779600pt;}
.y181{bottom:407.200000pt;}
.yac{bottom:407.520000pt;}
.y213{bottom:408.160000pt;}
.y289{bottom:408.220480pt;}
.y3c0{bottom:408.480000pt;}
.y21f{bottom:409.120000pt;}
.y31a{bottom:410.560000pt;}
.y34f{bottom:411.200000pt;}
.y4f{bottom:412.048000pt;}
.y327{bottom:412.320000pt;}
.y503{bottom:412.651600pt;}
.y4a9{bottom:412.667600pt;}
.y474{bottom:412.667733pt;}
.y2aa{bottom:415.095200pt;}
.y2cf{bottom:415.833920pt;}
.y24d{bottom:416.616960pt;}
.y437{bottom:418.240000pt;}
.y2f4{bottom:418.400000pt;}
.y42b{bottom:418.560000pt;}
.y33c{bottom:418.720000pt;}
.y16f{bottom:420.640000pt;}
.y26d{bottom:421.120000pt;}
.y1ca{bottom:421.440000pt;}
.y380{bottom:421.760000pt;}
.y267{bottom:422.400000pt;}
.y3f9{bottom:424.480000pt;}
.y8a{bottom:424.800000pt;}
.y396{bottom:425.760000pt;}
.yab{bottom:425.920000pt;}
.y288{bottom:425.975840pt;}
.y4d8{bottom:425.979600pt;}
.y14d{bottom:428.480000pt;}
.yc5{bottom:429.280000pt;}
.y3be{bottom:430.240000pt;}
.y10b{bottom:430.560000pt;}
.ye{bottom:430.990669pt;}
.y34e{bottom:431.200000pt;}
.y24c{bottom:431.822560pt;}
.y502{bottom:431.851600pt;}
.y4bb{bottom:431.867600pt;}
.y473{bottom:431.867733pt;}
.y36b{bottom:433.120000pt;}
.y11d{bottom:433.920000pt;}
.y325{bottom:434.720000pt;}
.y1e6{bottom:434.880000pt;}
.y205{bottom:435.840000pt;}
.y21e{bottom:436.640000pt;}
.y2f3{bottom:437.120000pt;}
.y37f{bottom:437.920000pt;}
.y33b{bottom:438.720000pt;}
.y1a0{bottom:440.000000pt;}
.y89{bottom:443.200000pt;}
.y287{bottom:443.571840pt;}
.yaa{bottom:444.320000pt;}
.y3f7{bottom:444.480000pt;}
.y4e{bottom:444.682240pt;}
.y4d7{bottom:445.179600pt;}
.y2a9{bottom:446.130560pt;}
.y42a{bottom:446.240000pt;}
.yd{bottom:446.990669pt;}
.y24b{bottom:447.187520pt;}
.y319{bottom:447.360000pt;}
.y2ce{bottom:447.525760pt;}
.y14b{bottom:447.842720pt;}
.y16e{bottom:448.160000pt;}
.y1c9{bottom:449.120000pt;}
.y266{bottom:450.080000pt;}
.y3bd{bottom:450.240000pt;}
.y324{bottom:451.036000pt;}
.y501{bottom:451.051600pt;}
.y4a8{bottom:451.067600pt;}
.y472{bottom:451.067733pt;}
.y34d{bottom:451.200000pt;}
.y3f8{bottom:452.640000pt;}
.yc4{bottom:456.960000pt;}
.y14c{bottom:457.440000pt;}
.y10a{bottom:458.080000pt;}
.y33a{bottom:458.720000pt;}
.y37e{bottom:458.880000pt;}
.y14a{bottom:460.160000pt;}
.y286{bottom:461.167840pt;}
.y11c{bottom:461.440000pt;}
.y88{bottom:461.600000pt;}
.y436{bottom:462.080000pt;}
.y26c{bottom:462.400000pt;}
.y24a{bottom:462.552480pt;}
.ya9{bottom:462.720000pt;}
.y395{bottom:462.880000pt;}
.yc{bottom:462.990669pt;}
.y204{bottom:463.360000pt;}
.y2a8{bottom:463.726560pt;}
.y21d{bottom:464.320000pt;}
.y323{bottom:464.800000pt;}
.y36a{bottom:469.920000pt;}
.y3bc{bottom:470.240000pt;}
.y500{bottom:470.251600pt;}
.y4a7{bottom:470.267600pt;}
.y471{bottom:470.267733pt;}
.y34c{bottom:471.200000pt;}
.y429{bottom:473.760000pt;}
.y3f6{bottom:474.400000pt;}
.y16d{bottom:475.840000pt;}
.y1c8{bottom:476.640000pt;}
.y149{bottom:476.802720pt;}
.y4d{bottom:477.478400pt;}
.y265{bottom:477.600000pt;}
.y249{bottom:477.917440pt;}
.y2f2{bottom:478.080000pt;}
.y394{bottom:478.560000pt;}
.y339{bottom:478.720000pt;}
.y285{bottom:478.763840pt;}
.y37d{bottom:478.880000pt;}
.yb{bottom:478.990666pt;}
.y87{bottom:480.000000pt;}
.y2cd{bottom:480.185120pt;}
.y19f{bottom:480.320000pt;}
.ya8{bottom:481.120000pt;}
.y4d6{bottom:483.579600pt;}
.y318{bottom:484.160000pt;}
.yc3{bottom:484.480000pt;}
.y109{bottom:485.760000pt;}
.y11b{bottom:489.120000pt;}
.y4a6{bottom:489.467600pt;}
.y470{bottom:489.467733pt;}
.y26b{bottom:490.080000pt;}
.y3bb{bottom:490.240000pt;}
.y203{bottom:491.040000pt;}
.y34b{bottom:491.200000pt;}
.y21c{bottom:491.840000pt;}
.y248{bottom:493.282400pt;}
.y3f5{bottom:494.400000pt;}
.y2a7{bottom:494.602560pt;}
.ya{bottom:494.990666pt;}
.y284{bottom:496.359840pt;}
.y2e8{bottom:498.080000pt;}
.y86{bottom:498.400000pt;}
.y338{bottom:498.720000pt;}
.y37c{bottom:498.880000pt;}
.y393{bottom:499.520000pt;}
.ya7{bottom:500.480000pt;}
.y428{bottom:501.440000pt;}
.y4d5{bottom:502.779600pt;}
.y1b4{bottom:503.360000pt;}
.y445{bottom:504.000000pt;}
.y1c7{bottom:504.320000pt;}
.y19e{bottom:504.638560pt;}
.y264{bottom:505.280000pt;}
.y369{bottom:506.720000pt;}
.y247{bottom:508.647360pt;}
.y4ff{bottom:508.651600pt;}
.y4a5{bottom:508.667600pt;}
.y46f{bottom:508.667733pt;}
.y4c{bottom:510.112640pt;}
.y3ba{bottom:510.240000pt;}
.y348{bottom:511.200000pt;}
.yc2{bottom:512.160000pt;}
.y2cc{bottom:512.349280pt;}
.y2a6{bottom:512.357920pt;}
.y108{bottom:513.280000pt;}
.y283{bottom:514.115200pt;}
.y3f4{bottom:514.400000pt;}
.y148{bottom:515.360000pt;}
.y11a{bottom:516.640000pt;}
.y85{bottom:516.800000pt;}
.y25c{bottom:517.600000pt;}
.yf7{bottom:517.760000pt;}
.y2f1{bottom:518.080000pt;}
.y202{bottom:518.560000pt;}
.y337{bottom:518.720000pt;}
.y37b{bottom:518.880000pt;}
.y21b{bottom:519.520000pt;}
.y317{bottom:520.960000pt;}
.y4d4{bottom:521.979600pt;}
.ya6{bottom:522.444800pt;}
.y246{bottom:523.852960pt;}
.y19d{bottom:527.520000pt;}
.y4fe{bottom:527.851600pt;}
.y4ba{bottom:527.867600pt;}
.y46e{bottom:527.867733pt;}
.y427{bottom:528.960000pt;}
.y2a5{bottom:529.953920pt;}
.y147{bottom:530.240000pt;}
.y1b3{bottom:531.040000pt;}
.y282{bottom:531.711200pt;}
.y1c6{bottom:531.840000pt;}
.y347{bottom:532.640000pt;}
.y3f3{bottom:534.400000pt;}
.y322{bottom:534.880000pt;}
.y84{bottom:535.200000pt;}
.yf6{bottom:535.670080pt;}
.y2f0{bottom:538.080000pt;}
.y37a{bottom:538.880000pt;}
.y245{bottom:539.217920pt;}
.y392{bottom:539.520000pt;}
.yc1{bottom:539.680000pt;}
.ya5{bottom:540.359040pt;}
.y107{bottom:540.960000pt;}
.y4d3{bottom:541.179600pt;}
.y4b{bottom:542.908800pt;}
.y2cb{bottom:543.225280pt;}
.y368{bottom:543.520000pt;}
.y119{bottom:544.320000pt;}
.y44b{bottom:544.960000pt;}
.y211{bottom:545.280000pt;}
.ye1{bottom:545.760000pt;}
.y201{bottom:546.240000pt;}
.y336{bottom:546.564320pt;}
.y4fd{bottom:547.051600pt;}
.y4a4{bottom:547.067600pt;}
.y46d{bottom:547.067733pt;}
.y346{bottom:547.360000pt;}
.y281{bottom:549.307200pt;}
.y3b9{bottom:550.240000pt;}
.yf5{bottom:551.035040pt;}
.y19c{bottom:551.585280pt;}
.y83{bottom:553.600000pt;}
.y3f1{bottom:554.400000pt;}
.y244{bottom:554.582880pt;}
.y146{bottom:556.480000pt;}
.y426{bottom:556.640000pt;}
.y3f2{bottom:557.120000pt;}
.y316{bottom:557.760000pt;}
.y2ef{bottom:558.080000pt;}
.ya4{bottom:558.273280pt;}
.y1b2{bottom:558.560000pt;}
.y379{bottom:558.880000pt;}
.y145{bottom:559.202720pt;}
.y1c5{bottom:559.520000pt;}
.y4d2{bottom:560.379600pt;}
.y21a{bottom:560.480000pt;}
.y2ca{bottom:560.821280pt;}
.y2a4{bottom:560.829920pt;}
.y344{bottom:563.360000pt;}
.y334{bottom:563.840000pt;}
.y4fc{bottom:566.251600pt;}
.y4a3{bottom:566.267600pt;}
.y485{bottom:566.267733pt;}
.yf4{bottom:566.400000pt;}
.y280{bottom:566.903200pt;}
.yc0{bottom:567.360000pt;}
.y106{bottom:568.480000pt;}
.y243{bottom:569.947840pt;}
.y3b8{bottom:570.240000pt;}
.y144{bottom:571.520000pt;}
.y118{bottom:571.840000pt;}
.y82{bottom:572.000000pt;}
.y210{bottom:572.800000pt;}
.ye0{bottom:573.441280pt;}
.y200{bottom:573.760000pt;}
.y9{bottom:573.786667pt;}
.y63{bottom:573.835733pt;}
.y4a{bottom:575.543040pt;}
.y142{bottom:575.846240pt;}
.ya3{bottom:576.187520pt;}
.y19b{bottom:577.021440pt;}
.y36{bottom:577.230000pt;}
.y2ee{bottom:578.080000pt;}
.y2c9{bottom:578.576640pt;}
.y2a3{bottom:578.585280pt;}
.y378{bottom:578.880000pt;}
.y3f0{bottom:579.040000pt;}
.y391{bottom:579.520000pt;}
.y367{bottom:580.320000pt;}
.yf3{bottom:582.400000pt;}
.y345{bottom:582.559520pt;}
.y425{bottom:584.160000pt;}
.y27f{bottom:584.499200pt;}
.y242{bottom:585.312800pt;}
.y4a2{bottom:585.467600pt;}
.y46c{bottom:585.467733pt;}
.y1b1{bottom:586.240000pt;}
.y335{bottom:587.038080pt;}
.y1d9{bottom:587.040000pt;}
.y141{bottom:588.163520pt;}
.y3b7{bottom:590.240000pt;}
.y81{bottom:590.400000pt;}
.y8{bottom:592.685334pt;}
.ya2{bottom:594.101760pt;}
.y62{bottom:594.507733pt;}
.y315{bottom:594.560000pt;}
.ybf{bottom:594.880000pt;}
.y365{bottom:596.000000pt;}
.y105{bottom:596.160000pt;}
.y2a2{bottom:596.181280pt;}
.y143{bottom:597.760000pt;}
.y2ed{bottom:598.080000pt;}
.y4d1{bottom:598.779600pt;}
.y377{bottom:598.880000pt;}
.y3ef{bottom:599.040000pt;}
.y15f{bottom:599.200000pt;}
.y117{bottom:599.520000pt;}
.ydf{bottom:600.320000pt;}
.y1c4{bottom:600.480000pt;}
.y241{bottom:600.677760pt;}
.yf2{bottom:600.800000pt;}
.y1ff{bottom:601.440000pt;}
.y27e{bottom:602.254560pt;}
.y19a{bottom:602.295680pt;}
.y4fb{bottom:604.651600pt;}
.y4a1{bottom:604.667600pt;}
.y46b{bottom:604.667733pt;}
.y49{bottom:608.339200pt;}
.y2e7{bottom:608.480000pt;}
.y80{bottom:608.800000pt;}
.y2c8{bottom:609.452640pt;}
.y3b6{bottom:610.240000pt;}
.ya1{bottom:612.016000pt;}
.y61{bottom:613.707733pt;}
.y1b0{bottom:613.760000pt;}
.y1d8{bottom:614.720000pt;}
.y424{bottom:615.360000pt;}
.y240{bottom:615.883360pt;}
.y2eb{bottom:616.800000pt;}
.y364{bottom:617.120000pt;}
.y4d0{bottom:617.979600pt;}
.yf1{bottom:619.200000pt;}
.y390{bottom:619.520000pt;}
.y376{bottom:620.160000pt;}
.ybe{bottom:622.560000pt;}
.y104{bottom:623.360000pt;}
.y3ee{bottom:623.520000pt;}
.y4fa{bottom:623.851600pt;}
.y4a0{bottom:623.867600pt;}
.y46a{bottom:623.867733pt;}
.y13f{bottom:626.720000pt;}
.yde{bottom:627.040000pt;}
.y2a1{bottom:627.057280pt;}
.y7f{bottom:627.200000pt;}
.y199{bottom:627.569920pt;}
.y1c3{bottom:628.000000pt;}
.y1fe{bottom:628.960000pt;}
.ya0{bottom:629.930240pt;}
.y3b5{bottom:630.240000pt;}
.y23f{bottom:631.248320pt;}
.y314{bottom:631.360000pt;}
.y27d{bottom:633.130560pt;}
.y375{bottom:634.880000pt;}
.y35{bottom:635.097684pt;}
.y363{bottom:637.120000pt;}
.y4cf{bottom:637.179600pt;}
.yf0{bottom:637.600000pt;}
.y2e9{bottom:639.040000pt;}
.y38f{bottom:639.520000pt;}
.y2c7{bottom:640.488000pt;}
.y48{bottom:641.135360pt;}
.y1af{bottom:641.440000pt;}
.y13e{bottom:641.600000pt;}
.y1d7{bottom:642.240000pt;}
.y4f9{bottom:643.051600pt;}
.y49f{bottom:643.067600pt;}
.y469{bottom:643.067733pt;}
.y3ed{bottom:643.520000pt;}
.y373{bottom:643.840000pt;}
.y2a0{bottom:644.812640pt;}
.y2fd{bottom:645.280000pt;}
.y7{bottom:645.598667pt;}
.y7e{bottom:645.600000pt;}
.y23e{bottom:646.613280pt;}
.y9f{bottom:647.844480pt;}
.ybd{bottom:650.080000pt;}
.y3b3{bottom:650.240000pt;}
.y27c{bottom:650.726560pt;}
.y103{bottom:651.040000pt;}
.y198{bottom:652.844160pt;}
.y423{bottom:652.960000pt;}
.y374{bottom:653.600000pt;}
.y17b{bottom:654.400000pt;}
.ydd{bottom:654.720000pt;}
.y1c2{bottom:655.680000pt;}
.yef{bottom:656.000000pt;}
.y4ce{bottom:656.379600pt;}
.y1fd{bottom:656.480000pt;}
.y362{bottom:657.120000pt;}
.y2c6{bottom:658.084000pt;}
.y3b4{bottom:658.400000pt;}
.y38c{bottom:660.960000pt;}
.y23d{bottom:661.978240pt;}
.y4f8{bottom:662.251600pt;}
.y4b9{bottom:662.267600pt;}
.y468{bottom:662.267733pt;}
.y38b{bottom:663.520000pt;}
.y38e{bottom:663.523520pt;}
.y7d{bottom:664.000000pt;}
.y9e{bottom:665.758720pt;}
.y34{bottom:667.684800pt;}
.y313{bottom:668.160000pt;}
.y1ae{bottom:668.960000pt;}
.y3{bottom:668.977329pt;}
.y1d6{bottom:669.920000pt;}
.y422{bottom:670.240000pt;}
.y13d{bottom:670.563520pt;}
.y3ec{bottom:671.683520pt;}
.y47{bottom:673.769600pt;}
.yee{bottom:674.400000pt;}
.y4cd{bottom:675.579600pt;}
.y27b{bottom:675.680000pt;}
.y29f{bottom:675.688640pt;}
.y361{bottom:677.120000pt;}
.y23c{bottom:677.343200pt;}
.ybc{bottom:677.760000pt;}
.y197{bottom:678.118400pt;}
.y102{bottom:678.560000pt;}
.y3b2{bottom:680.320000pt;}
.y4f7{bottom:681.451600pt;}
.y49e{bottom:681.467600pt;}
.y467{bottom:681.467733pt;}
.y372{bottom:682.080000pt;}
.ydc{bottom:682.240000pt;}
.y7c{bottom:682.400000pt;}
.y13c{bottom:682.720000pt;}
.y1c1{bottom:683.200000pt;}
.y9d{bottom:683.525760pt;}
.y3eb{bottom:683.840000pt;}
.y1fc{bottom:684.160000pt;}
.y27a{bottom:685.585120pt;}
.y2e3{bottom:686.560000pt;}
.y38a{bottom:686.720000pt;}
.y2c5{bottom:688.964640pt;}
.y23b{bottom:692.708160pt;}
.yed{bottom:692.800000pt;}
.y228{bottom:693.280000pt;}
.y29e{bottom:693.284640pt;}
.y3ea{bottom:693.440000pt;}
.y4cc{bottom:694.779600pt;}
.y1ad{bottom:696.480000pt;}
.y360{bottom:697.120000pt;}
.y1f2{bottom:697.440000pt;}
.y3b1{bottom:700.320000pt;}
.y49d{bottom:700.667600pt;}
.y466{bottom:700.667733pt;}
.y7b{bottom:700.800000pt;}
.y279{bottom:700.950080pt;}
.y9c{bottom:701.440000pt;}
.y421{bottom:702.240000pt;}
.y196{bottom:703.392640pt;}
.y3e9{bottom:703.840000pt;}
.y312{bottom:704.640000pt;}
.ybb{bottom:705.280000pt;}
.y101{bottom:706.560000pt;}
.y46{bottom:706.565760pt;}
.y23a{bottom:707.913760pt;}
.y17f{bottom:709.600000pt;}
.ydb{bottom:709.920000pt;}
.y1c0{bottom:710.880000pt;}
.yec{bottom:711.200000pt;}
.y13b{bottom:711.682720pt;}
.y388{bottom:712.640000pt;}
.y3e8{bottom:713.440000pt;}
.y389{bottom:715.200000pt;}
.y33{bottom:715.435929pt;}
.y278{bottom:716.315040pt;}
.y35f{bottom:717.120000pt;}
.y40f{bottom:718.880000pt;}
.y7a{bottom:719.200000pt;}
.y420{bottom:719.454240pt;}
.y4f6{bottom:719.851600pt;}
.y49c{bottom:719.867600pt;}
.y484{bottom:719.867733pt;}
.y2c4{bottom:720.054560pt;}
.y239{bottom:723.278720pt;}
.y3e7{bottom:723.840000pt;}
.y13a{bottom:724.000000pt;}
.y1ac{bottom:724.160000pt;}
.y29d{bottom:724.369280pt;}
.y3b0{bottom:724.800000pt;}
.y1fb{bottom:725.120000pt;}
.y195{bottom:728.666880pt;}
.yeb{bottom:729.600000pt;}
.yba{bottom:732.960000pt;}
.y4cb{bottom:733.179600pt;}
.y3e6{bottom:733.440000pt;}
.y100{bottom:734.080000pt;}
.y41f{bottom:734.819200pt;}
.y35e{bottom:737.120000pt;}
.yda{bottom:737.440000pt;}
.y79{bottom:737.600000pt;}
.y2e2{bottom:737.650560pt;}
.y277{bottom:737.760000pt;}
.y448{bottom:738.080000pt;}
.y1e3{bottom:738.400000pt;}
.y238{bottom:738.643680pt;}
.y4f5{bottom:739.051600pt;}
.y49b{bottom:739.067600pt;}
.y465{bottom:739.067733pt;}
.y45{bottom:739.200000pt;}
.y139{bottom:740.642720pt;}
.y311{bottom:741.440000pt;}
.y29c{bottom:741.965280pt;}
.y410{bottom:742.240000pt;}
.y3e5{bottom:743.840000pt;}
.y3af{bottom:744.800000pt;}
.y276{bottom:747.024480pt;}
.yea{bottom:748.000000pt;}
.y41e{bottom:750.184160pt;}
.y2c3{bottom:750.930560pt;}
.y1bf{bottom:751.680000pt;}
.y4ca{bottom:752.379600pt;}
.y1fa{bottom:752.640000pt;}
.y138{bottom:752.960000pt;}
.y3e4{bottom:753.440000pt;}
.y194{bottom:753.941120pt;}
.y237{bottom:754.008640pt;}
.y78{bottom:756.000000pt;}
.y35d{bottom:757.120000pt;}
.y4f4{bottom:758.251600pt;}
.y49a{bottom:758.267600pt;}
.y464{bottom:758.267733pt;}
.y29b{bottom:759.561280pt;}
.yb9{bottom:760.480000pt;}
.yff{bottom:761.760000pt;}
.y275{bottom:762.230080pt;}
.y3e3{bottom:763.840000pt;}
.y3ae{bottom:764.800000pt;}
.yd9{bottom:765.120000pt;}
.y32{bottom:765.283098pt;}
.y41d{bottom:765.389760pt;}
.y1f1{bottom:766.080000pt;}
.ye9{bottom:766.400000pt;}
.y44{bottom:767.680000pt;}
.y2c2{bottom:768.685920pt;}
.y236{bottom:769.373600pt;}
.y4c9{bottom:771.579600pt;}
.y3e2{bottom:773.440000pt;}
.y77{bottom:774.400000pt;}
.y4f3{bottom:777.451600pt;}
.y4bf{bottom:777.467600pt;}
.y463{bottom:777.467733pt;}
.y60{bottom:777.579733pt;}
.y274{bottom:777.595040pt;}
.y310{bottom:778.240000pt;}
.y136{bottom:779.200000pt;}
.y193{bottom:779.215360pt;}
.y1be{bottom:779.360000pt;}
.y1f9{bottom:780.320000pt;}
.y41c{bottom:780.754720pt;}
.y35c{bottom:781.120000pt;}
.y2{bottom:781.661334pt;}
.y3e1{bottom:783.840000pt;}
.y235{bottom:784.579200pt;}
.ye8{bottom:784.800000pt;}
.y2c1{bottom:786.281920pt;}
.yb8{bottom:788.160000pt;}
.yfe{bottom:789.280000pt;}
.y29a{bottom:790.596640pt;}
.y43{bottom:791.040000pt;}
.y2e6{bottom:792.480000pt;}
.yd8{bottom:792.640000pt;}
.y76{bottom:792.800000pt;}
.y3e0{bottom:793.440000pt;}
.y1f0{bottom:793.600000pt;}
.y135{bottom:794.082720pt;}
.y41b{bottom:796.119680pt;}
.y35b{bottom:796.640000pt;}
.y499{bottom:796.667600pt;}
.y462{bottom:796.667733pt;}
.y30f{bottom:796.960000pt;}
.y5f{bottom:798.251733pt;}
.y39{bottom:798.715200pt;}
.y273{bottom:799.040000pt;}
.y234{bottom:799.944160pt;}
.ye7{bottom:803.200000pt;}
.y3df{bottom:803.840000pt;}
.y2c0{bottom:803.877920pt;}
.y192{bottom:804.651520pt;}
.y3ad{bottom:804.800000pt;}
.y134{bottom:806.400000pt;}
.y1bd{bottom:806.880000pt;}
.y219{bottom:807.840000pt;}
.y4c8{bottom:809.979600pt;}
.y75{bottom:811.200000pt;}
.y41a{bottom:811.484640pt;}
.y42{bottom:813.298880pt;}
.y3de{bottom:813.440000pt;}
.y31{bottom:815.130267pt;}
.y233{bottom:815.309120pt;}
.y30e{bottom:815.360000pt;}
.yb7{bottom:815.680000pt;}
.y4f2{bottom:815.851600pt;}
.y498{bottom:815.867600pt;}
.y461{bottom:815.867733pt;}
.yfd{bottom:816.960000pt;}
.yd7{bottom:820.320000pt;}
.y1f8{bottom:820.960000pt;}
.y1ef{bottom:821.280000pt;}
.y299{bottom:821.472640pt;}
.y2e1{bottom:821.473920pt;}
.y3dd{bottom:823.840000pt;}
.y38{bottom:824.055200pt;}
.y3ac{bottom:824.800000pt;}
.y419{bottom:826.849600pt;}
.y272{bottom:828.800000pt;}
.y4c7{bottom:829.179600pt;}
.y35a{bottom:829.280000pt;}
.y74{bottom:829.600000pt;}
.y191{bottom:829.925760pt;}
.y232{bottom:830.674080pt;}
.y3db{bottom:833.440000pt;}
.y1bc{bottom:834.560000pt;}
.y2bf{bottom:834.913280pt;}
.y4f1{bottom:835.051600pt;}
.y497{bottom:835.067600pt;}
.y483{bottom:835.067733pt;}
.y30d{bottom:835.360000pt;}
.y218{bottom:835.520000pt;}
.y133{bottom:836.640000pt;}
.ye6{bottom:837.440000pt;}
.y41{bottom:837.934400pt;}
.y298{bottom:839.068640pt;}
.y3dc{bottom:841.600000pt;}
.y418{bottom:842.214560pt;}
.yb6{bottom:843.360000pt;}
.yfc{bottom:844.480000pt;}
.y3a8{bottom:844.800000pt;}
.y231{bottom:846.039040pt;}
.y17a{bottom:847.520000pt;}
.yd6{bottom:847.840000pt;}
.y73{bottom:848.000000pt;}
.y4c6{bottom:848.379600pt;}
.y263{bottom:848.480000pt;}
.y1ee{bottom:848.800000pt;}
.y2e0{bottom:852.509280pt;}
.y3aa{bottom:852.960000pt;}
.y457{bottom:853.278720pt;}
.y4f0{bottom:854.251600pt;}
.y496{bottom:854.267600pt;}
.y460{bottom:854.267733pt;}
.y12e{bottom:855.040000pt;}
.y190{bottom:855.200000pt;}
.y30c{bottom:855.360000pt;}
.y417{bottom:857.420160pt;}
.y1{bottom:859.312000pt;}
.y5e{bottom:860.251733pt;}
.y230{bottom:861.404000pt;}
.y1bb{bottom:862.080000pt;}
.y132{bottom:862.240000pt;}
.y40{bottom:862.569920pt;}
.y217{bottom:863.040000pt;}
.y3da{bottom:863.520000pt;}
.y2be{bottom:865.789280pt;}
.y72{bottom:866.400000pt;}
.y271{bottom:866.713600pt;}
.y4c5{bottom:867.579600pt;}
.y297{bottom:870.104000pt;}
.y2df{bottom:870.105280pt;}
.yb5{bottom:870.880000pt;}
.yfb{bottom:872.160000pt;}
.y416{bottom:872.785120pt;}
.ye5{bottom:872.800000pt;}
.y4ef{bottom:873.451600pt;}
.y495{bottom:873.467600pt;}
.y45f{bottom:873.467733pt;}
.y131{bottom:874.560000pt;}
.y3a7{bottom:874.880000pt;}
.y17d{bottom:875.200000pt;}
.y30b{bottom:875.360000pt;}
.yd5{bottom:875.520000pt;}
.y449{bottom:876.160000pt;}
.y1ed{bottom:876.480000pt;}
.y22f{bottom:876.609600pt;}
.y2bd{bottom:883.385280pt;}
.y3d9{bottom:883.520000pt;}
.y71{bottom:884.800000pt;}
.y3f{bottom:887.373920pt;}
.y296{bottom:887.700000pt;}
.y415{bottom:888.150080pt;}
.y456{bottom:888.165120pt;}
.y1ba{bottom:889.760000pt;}
.y3d8{bottom:891.683520pt;}
.y22e{bottom:891.974560pt;}
.y4ee{bottom:892.651600pt;}
.y494{bottom:892.667600pt;}
.y45e{bottom:892.667733pt;}
.y18f{bottom:894.880000pt;}
.y30a{bottom:895.360000pt;}
.yb4{bottom:898.400000pt;}
.y3a6{bottom:899.360000pt;}
.yfa{bottom:899.680000pt;}
.y2de{bottom:901.140640pt;}
.y12d{bottom:901.920000pt;}
.y17c{bottom:902.720000pt;}
.yd4{bottom:903.040000pt;}
.y70{bottom:903.200000pt;}
.y414{bottom:903.515040pt;}
.y3d7{bottom:903.840000pt;}
.y1ec{bottom:904.000000pt;}
.y270{bottom:905.280000pt;}
.y22d{bottom:907.339520pt;}
.y4c4{bottom:907.451600pt;}
.ye4{bottom:909.920000pt;}
.y4b8{bottom:911.867600pt;}
.y48b{bottom:911.867733pt;}
.y3e{bottom:912.009440pt;}
.y3d6{bottom:913.440000pt;}
.y2bc{bottom:914.420640pt;}
.y308{bottom:915.360000pt;}
.y12b{bottom:916.960000pt;}
.y1b9{bottom:917.280000pt;}
.y295{bottom:918.735360pt;}
.y2dd{bottom:918.736640pt;}
.y413{bottom:918.880000pt;}
.y3a5{bottom:919.360000pt;}
.y6f{bottom:921.600000pt;}
.y455{bottom:922.080000pt;}
.y22c{bottom:922.704480pt;}
.yb3{bottom:926.080000pt;}
.y4c3{bottom:928.123600pt;}
.yf9{bottom:929.456480pt;}
.y2e{bottom:929.518507pt;}
.yd3{bottom:930.720000pt;}
.y4ed{bottom:931.051600pt;}
.y493{bottom:931.067600pt;}
.y45d{bottom:931.067733pt;}
.y2bb{bottom:932.016640pt;}
.y18e{bottom:935.680000pt;}
.y294{bottom:936.331360pt;}
.y2dc{bottom:936.332640pt;}
.y3d{bottom:936.644960pt;}
.y411{bottom:937.120000pt;}
.y22b{bottom:938.069440pt;}
.y3a4{bottom:939.360000pt;}
.y40c{bottom:939.680000pt;}
.y6e{bottom:940.000000pt;}
.y307{bottom:942.560000pt;}
.y5d{bottom:942.923733pt;}
.ye3{bottom:944.480000pt;}
.y1eb{bottom:944.960000pt;}
.y3d5{bottom:946.243520pt;}
.y4c2{bottom:948.795600pt;}
.y4ec{bottom:950.251600pt;}
.y492{bottom:950.267600pt;}
.y45c{bottom:950.267733pt;}
.y412{bottom:950.720000pt;}
.y22a{bottom:953.434400pt;}
.yb2{bottom:953.600000pt;}
.yd2{bottom:958.240000pt;}
.y6d{bottom:958.400000pt;}
.y3a2{bottom:960.640000pt;}
.y3c{bottom:961.448960pt;}
.yf8{bottom:961.767200pt;}
.y306{bottom:962.560000pt;}
.y2ba{bottom:963.052000pt;}
.y5c{bottom:963.595733pt;}
.y293{bottom:967.207360pt;}
.y2db{bottom:967.208640pt;}
.y4c1{bottom:967.995600pt;}
.y3d4{bottom:968.000000pt;}
.y229{bottom:968.640000pt;}
.y4eb{bottom:969.451600pt;}
.y491{bottom:969.467600pt;}
.y45b{bottom:969.467733pt;}
.y26f{bottom:972.480000pt;}
.y2d{bottom:974.646027pt;}
.y3a3{bottom:975.520000pt;}
.y403{bottom:976.480000pt;}
.y6c{bottom:976.800000pt;}
.y18d{bottom:978.559040pt;}
.ye2{bottom:979.040000pt;}
.y3a1{bottom:979.680000pt;}
.y2b9{bottom:980.648000pt;}
.y304{bottom:981.120000pt;}
.yb1{bottom:981.280000pt;}
.y303{bottom:983.840000pt;}
.y292{bottom:984.962720pt;}
.y12a{bottom:985.600000pt;}
.yd1{bottom:985.920000pt;}
.y3b{bottom:986.084480pt;}
.y3d3{bottom:988.000000pt;}
.y4ea{bottom:988.651600pt;}
.y490{bottom:988.667600pt;}
.y45a{bottom:988.667733pt;}
.y6b{bottom:995.200000pt;}
.y224{bottom:996.640000pt;}
.y2c{bottom:997.209787pt;}
.y2b8{bottom:998.244000pt;}
.y5b{bottom:1004.923733pt;}
.y4e9{bottom:1007.851600pt;}
.y48f{bottom:1007.867600pt;}
.y48a{bottom:1007.867733pt;}
.y3a{bottom:1010.720000pt;}
.y180{bottom:1013.120000pt;}
.y2e4{bottom:1013.280000pt;}
.yd0{bottom:1013.440000pt;}
.y6a{bottom:1013.600000pt;}
.y291{bottom:1015.520000pt;}
.y2b7{bottom:1015.840000pt;}
.y302{bottom:1016.800000pt;}
.y3d2{bottom:1018.400000pt;}
.y2b{bottom:1019.773547pt;}
.y5a{bottom:1025.595733pt;}
.y4e8{bottom:1027.051600pt;}
.y48e{bottom:1027.067600pt;}
.y482{bottom:1027.067733pt;}
.y2a{bottom:1042.337307pt;}
.y4e7{bottom:1046.251600pt;}
.y48d{bottom:1046.267600pt;}
.y59{bottom:1046.267733pt;}
.y29{bottom:1064.901067pt;}
.y28{bottom:1098.425067pt;}
.h46{height:19.998667pt;}
.h45{height:20.000000pt;}
.h4c{height:20.958667pt;}
.h40{height:20.960000pt;}
.h4e{height:21.120000pt;}
.h13{height:23.584000pt;}
.h44{height:24.480000pt;}
.h43{height:24.640000pt;}
.h5a{height:25.745280pt;}
.h26{height:27.680000pt;}
.h2e{height:28.160000pt;}
.h30{height:28.320000pt;}
.h7{height:28.560000pt;}
.h53{height:29.920000pt;}
.h56{height:29.921333pt;}
.h52{height:30.078667pt;}
.h51{height:30.080000pt;}
.h37{height:30.720000pt;}
.h48{height:31.038667pt;}
.h4f{height:32.000000pt;}
.h33{height:33.311250pt;}
.h39{height:34.796250pt;}
.h3a{height:37.373750pt;}
.hd{height:37.776720pt;}
.h2d{height:40.480000pt;}
.h31{height:40.638667pt;}
.h2f{height:40.640000pt;}
.h6{height:40.800000pt;}
.h47{height:41.280000pt;}
.h27{height:41.600000pt;}
.h3{height:42.840000pt;}
.h29{height:43.173125pt;}
.h49{height:43.346487pt;}
.h54{height:43.885000pt;}
.h28{height:43.989687pt;}
.he{height:44.807920pt;}
.h50{height:45.120000pt;}
.h4b{height:45.918667pt;}
.hf{height:46.725520pt;}
.h59{height:48.768000pt;}
.h2{height:48.960000pt;}
.h41{height:49.242188pt;}
.hb{height:49.474080pt;}
.h34{height:51.200625pt;}
.hc{height:51.514667pt;}
.h2b{height:52.800000pt;}
.h25{height:53.483125pt;}
.h3b{height:54.365000pt;}
.h36{height:54.494687pt;}
.h3f{height:54.831875pt;}
.h1e{height:55.040000pt;}
.ha{height:56.076082pt;}
.h1f{height:56.752500pt;}
.h21{height:56.925000pt;}
.h5{height:57.120000pt;}
.h22{height:57.183750pt;}
.h1d{height:58.304000pt;}
.h3c{height:58.898010pt;}
.h3d{height:59.097690pt;}
.h1c{height:59.225000pt;}
.h1b{height:59.282500pt;}
.h3e{height:60.159520pt;}
.h35{height:60.260000pt;}
.h15{height:60.960000pt;}
.h20{height:64.437500pt;}
.h24{height:65.500000pt;}
.h19{height:65.656250pt;}
.h58{height:65.661370pt;}
.h57{height:66.062500pt;}
.h12{height:68.396023pt;}
.h4d{height:70.058885pt;}
.h23{height:72.174375pt;}
.h32{height:72.613125pt;}
.h1a{height:75.391875pt;}
.h17{height:75.647813pt;}
.h18{height:76.817812pt;}
.h11{height:89.721965pt;}
.h2c{height:91.799045pt;}
.h4a{height:91.972407pt;}
.h2a{height:92.442245pt;}
.h55{height:92.615608pt;}
.h4{height:105.826671pt;}
.h10{height:134.582753pt;}
.h42{height:367.841333pt;}
.h38{height:705.280000pt;}
.h0{height:1122.518667pt;}
.h14{height:1122.520000pt;}
.h16{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h9{height:1200.000000pt;}
.h8{height:1200.314667pt;}
.w41{width:31.680000pt;}
.w40{width:32.320000pt;}
.w29{width:32.321333pt;}
.w3f{width:32.478667pt;}
.w3e{width:32.480000pt;}
.w25{width:33.918667pt;}
.w3d{width:34.720000pt;}
.w3c{width:37.760000pt;}
.w24{width:41.120000pt;}
.w23{width:43.520000pt;}
.w26{width:47.520000pt;}
.w2a{width:56.640000pt;}
.w27{width:58.241333pt;}
.w28{width:58.878667pt;}
.w30{width:66.078667pt;}
.w15{width:70.720000pt;}
.wa{width:72.641333pt;}
.we{width:74.238667pt;}
.wb{width:74.240000pt;}
.wc{width:74.400000pt;}
.wf{width:76.000000pt;}
.w9{width:76.001333pt;}
.w13{width:76.480000pt;}
.w2f{width:76.640000pt;}
.w12{width:77.280000pt;}
.w11{width:78.240000pt;}
.w14{width:78.720000pt;}
.w8{width:79.841333pt;}
.w10{width:80.960000pt;}
.wd{width:83.681333pt;}
.w3a{width:87.198667pt;}
.w36{width:87.200000pt;}
.w2e{width:87.360000pt;}
.w3b{width:94.398667pt;}
.w35{width:96.798667pt;}
.w31{width:113.920000pt;}
.w37{width:125.920000pt;}
.w42{width:136.000000pt;}
.w39{width:137.440000pt;}
.w33{width:138.078667pt;}
.w18{width:152.320000pt;}
.w17{width:155.358667pt;}
.w2d{width:164.000000pt;}
.w32{width:165.280000pt;}
.w1a{width:177.600000pt;}
.w34{width:184.000000pt;}
.w1b{width:187.038667pt;}
.w1d{width:206.080000pt;}
.w2b{width:219.520000pt;}
.w1c{width:224.160000pt;}
.w19{width:229.120000pt;}
.w16{width:233.280000pt;}
.w20{width:240.640000pt;}
.w1e{width:241.278667pt;}
.w21{width:266.718667pt;}
.w1f{width:268.001333pt;}
.w2c{width:288.000000pt;}
.w38{width:409.600000pt;}
.w7{width:535.840000pt;}
.w2{width:566.928019pt;}
.w22{width:592.960000pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w6{width:793.760000pt;}
.w1{width:794.000000pt;}
.w4{width:1702.666667pt;}
.w3{width:1702.986667pt;}
.x0{left:0.000000pt;}
.x6e{left:4.640000pt;}
.xb8{left:5.600000pt;}
.x18{left:6.560000pt;}
.x48{left:8.000000pt;}
.x80{left:9.600000pt;}
.x44{left:10.720000pt;}
.x3d{left:11.840000pt;}
.x75{left:12.800000pt;}
.x2f{left:13.760000pt;}
.x7e{left:15.040000pt;}
.x72{left:16.320000pt;}
.x53{left:18.080000pt;}
.x76{left:19.680000pt;}
.x4e{left:20.800000pt;}
.x7f{left:22.400000pt;}
.x2b{left:24.000000pt;}
.x78{left:24.960000pt;}
.x4b{left:26.880000pt;}
.x85{left:29.920000pt;}
.x90{left:32.160000pt;}
.x8f{left:33.920000pt;}
.x9a{left:36.800000pt;}
.x4c{left:38.400000pt;}
.x4a{left:39.520000pt;}
.x5a{left:45.760000pt;}
.x16{left:50.080000pt;}
.xb{left:52.230933pt;}
.x83{left:57.120000pt;}
.x93{left:58.080000pt;}
.x92{left:59.840000pt;}
.x96{left:67.040000pt;}
.x5b{left:68.960000pt;}
.xbe{left:75.590533pt;}
.x17{left:88.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x32{left:98.080000pt;}
.x55{left:100.163520pt;}
.x24{left:104.160000pt;}
.x5c{left:106.397120pt;}
.x38{left:107.677280pt;}
.xc{left:109.527733pt;}
.x54{left:112.320000pt;}
.x49{left:113.440000pt;}
.x67{left:118.560000pt;}
.xbf{left:120.950533pt;}
.x8{left:128.160667pt;}
.x69{left:132.320000pt;}
.x68{left:142.560000pt;}
.x8b{left:149.760000pt;}
.x88{left:150.880000pt;}
.x81{left:153.760000pt;}
.x94{left:155.840000pt;}
.xa0{left:160.960000pt;}
.x3c{left:163.840000pt;}
.x19{left:169.120000pt;}
.x15{left:170.400000pt;}
.x1a{left:175.680000pt;}
.x25{left:178.235200pt;}
.x4{left:180.874667pt;}
.x4d{left:189.437120pt;}
.x3b{left:192.320000pt;}
.x8c{left:209.120000pt;}
.x89{left:212.640000pt;}
.x82{left:217.120000pt;}
.x95{left:221.120000pt;}
.x84{left:224.960000pt;}
.x97{left:230.880000pt;}
.x9b{left:232.640000pt;}
.x3f{left:242.720000pt;}
.x8a{left:245.121600pt;}
.xd{left:246.467733pt;}
.x58{left:249.600000pt;}
.x1b{left:252.960000pt;}
.x59{left:259.355200pt;}
.x52{left:260.800000pt;}
.x5f{left:262.240000pt;}
.x36{left:263.995520pt;}
.x60{left:266.077760pt;}
.x35{left:267.040000pt;}
.x26{left:268.476160pt;}
.x3e{left:270.560000pt;}
.x6a{left:275.360000pt;}
.x13{left:282.400000pt;}
.x66{left:288.320000pt;}
.x91{left:290.400000pt;}
.x8e{left:296.480000pt;}
.xa2{left:303.360000pt;}
.x87{left:304.480000pt;}
.x9c{left:306.400000pt;}
.x8d{left:310.400000pt;}
.x86{left:312.960000pt;}
.x70{left:314.080000pt;}
.xa1{left:316.800000pt;}
.x99{left:317.920000pt;}
.x10{left:319.680000pt;}
.x41{left:320.640000pt;}
.x1c{left:323.680000pt;}
.x33{left:329.128160pt;}
.x1d{left:330.240000pt;}
.x4f{left:331.203680pt;}
.x56{left:332.819680pt;}
.x6f{left:335.200000pt;}
.x11{left:338.880000pt;}
.x61{left:341.117760pt;}
.x98{left:344.960000pt;}
.x27{left:346.239040pt;}
.x40{left:348.320000pt;}
.x63{left:349.760000pt;}
.x9e{left:351.038400pt;}
.x71{left:357.600000pt;}
.x73{left:363.520000pt;}
.xa4{left:368.320000pt;}
.xa3{left:381.760000pt;}
.x64{left:383.200000pt;}
.xbd{left:385.760000pt;}
.x14{left:389.440000pt;}
.xf{left:393.280000pt;}
.x9d{left:394.240000pt;}
.xe{left:396.960000pt;}
.x74{left:398.720000pt;}
.xa5{left:400.800000pt;}
.x3{left:404.408000pt;}
.xc0{left:407.686533pt;}
.x50{left:408.966560pt;}
.x28{left:411.202240pt;}
.x5d{left:414.554240pt;}
.x34{left:418.404320pt;}
.x57{left:420.509280pt;}
.x42{left:426.400000pt;}
.x6d{left:431.840000pt;}
.xa7{left:433.120000pt;}
.x77{left:438.560000pt;}
.x9f{left:442.558400pt;}
.xa6{left:446.720000pt;}
.xc3{left:447.956533pt;}
.xc2{left:450.214533pt;}
.xc1{left:453.046533pt;}
.xa8{left:465.600000pt;}
.x1e{left:473.120000pt;}
.x2a{left:477.120000pt;}
.x1f{left:479.680000pt;}
.x79{left:486.080000pt;}
.x39{left:490.241920pt;}
.x51{left:492.807680pt;}
.x29{left:495.201440pt;}
.xaa{left:498.080000pt;}
.x6b{left:500.160000pt;}
.x43{left:501.440000pt;}
.x12{left:504.320000pt;}
.x6c{left:507.040000pt;}
.xa9{left:511.520000pt;}
.xbc{left:516.480000pt;}
.xac{left:530.560000pt;}
.xb9{left:536.160000pt;}
.x7a{left:538.400000pt;}
.xba{left:539.680000pt;}
.xab{left:541.440000pt;}
.x9{left:544.631427pt;}
.x20{left:548.800000pt;}
.x2e{left:553.920000pt;}
.x21{left:555.360000pt;}
.xad{left:563.040000pt;}
.x62{left:569.432320pt;}
.x2d{left:571.200320pt;}
.xbb{left:572.160000pt;}
.x2c{left:573.280000pt;}
.x37{left:575.668800pt;}
.x45{left:580.800000pt;}
.xaf{left:595.520000pt;}
.x7b{left:597.280000pt;}
.x7c{left:603.520000pt;}
.xae{left:606.400000pt;}
.xb1{left:628.000000pt;}
.x7d{left:629.600000pt;}
.x22{left:633.920000pt;}
.x47{left:635.520000pt;}
.xb0{left:638.880000pt;}
.x23{left:640.320000pt;}
.x65{left:644.319680pt;}
.x30{left:652.160000pt;}
.x3a{left:653.282400pt;}
.x5e{left:654.221280pt;}
.x31{left:655.997760pt;}
.x46{left:657.280000pt;}
.xb3{left:660.480000pt;}
.xb2{left:671.360000pt;}
.xb5{left:692.960000pt;}
.xb4{left:703.840000pt;}
.xb7{left:725.440000pt;}
.xb6{left:736.320000pt;}
.x6{left:846.129067pt;}
.x7{left:847.437467pt;}
.xa{left:930.866267pt;}
.x5{left:932.664400pt;}
}




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