
    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_30c1e4b3e42f5517f19662c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_446c02cf1143ad837646e635.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ea2bf7e437e817ce8e3daf84.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_bfb04b35fe0937b1bcbec812.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_3f5ec4961e47371787b936d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.770508;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_f861d6ce150bad3c99139c3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765137;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_2c75c2ca346324732741e5b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_4ba6e21361d220abd55d8360.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_fcaf472f70d92d666a1364e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_8c48c7d6bd408e4b33beb9d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:3.716797;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_969ab19a848d84943e632ab5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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_738e32192befa608baa2cbfc.woff2')format("woff");}.ffe{font-family:ffe;line-height:3.716797;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_c334765251b961515275367c.woff2')format("woff");}.fff{font-family:fff;line-height:1.202148;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_7ec61658d9ae9fea8533aed3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.372070;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_ba15df534558aee79c4f0c54.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747559;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);}
.m1{transform:matrix(0.000000,-0.237173,0.237173,0.079050,0,0);-ms-transform:matrix(0.000000,-0.237173,0.237173,0.079050,0,0);-webkit-transform:matrix(0.000000,-0.237173,0.237173,0.079050,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m5{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v3{vertical-align:-17.940000px;}
.v1{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.000000px;}
.v2{vertical-align:13.500000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:49.500000px;}
.v4{vertical-align:54.120000px;}
.v7{vertical-align:58.500000px;}
.ls1f{letter-spacing:-4.032000px;}
.ls8{letter-spacing:-3.780000px;}
.ls59{letter-spacing:-2.017513px;}
.ls1e{letter-spacing:-1.985891px;}
.ls5b{letter-spacing:-1.980000px;}
.ls4e{letter-spacing:-1.941619px;}
.ls45{letter-spacing:-1.908000px;}
.ls23{letter-spacing:-1.842000px;}
.ls5{letter-spacing:-1.800000px;}
.lsd{letter-spacing:-1.656000px;}
.ls6{letter-spacing:-1.548000px;}
.ls50{letter-spacing:-1.511554px;}
.ls5c{letter-spacing:-1.380088px;}
.ls4c{letter-spacing:-1.368000px;}
.ls57{letter-spacing:-1.365136px;}
.ls5a{letter-spacing:-1.277922px;}
.lse{letter-spacing:-1.260000px;}
.ls58{letter-spacing:-1.069259px;}
.ls12{letter-spacing:-0.936000px;}
.ls46{letter-spacing:-0.900000px;}
.ls2{letter-spacing:-0.324000px;}
.ls64{letter-spacing:-0.252000px;}
.ls4b{letter-spacing:-0.216000px;}
.ls60{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.108000px;}
.ls52{letter-spacing:-0.101400px;}
.ls21{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.108000px;}
.ls66{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.360000px;}
.ls56{letter-spacing:0.430200px;}
.ls17{letter-spacing:0.432000px;}
.ls5f{letter-spacing:0.444000px;}
.ls20{letter-spacing:0.468000px;}
.ls1b{letter-spacing:0.474000px;}
.ls4{letter-spacing:0.493310px;}
.lsb{letter-spacing:0.504000px;}
.ls6e{letter-spacing:0.531257px;}
.ls27{letter-spacing:0.540000px;}
.ls70{letter-spacing:0.564000px;}
.ls26{letter-spacing:0.600000px;}
.ls38{letter-spacing:0.612000px;}
.ls6f{letter-spacing:0.624000px;}
.ls19{letter-spacing:0.654000px;}
.ls48{letter-spacing:0.660000px;}
.ls1a{letter-spacing:0.684000px;}
.ls7{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.758939px;}
.ls32{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.924000px;}
.ls13{letter-spacing:1.008000px;}
.ls18{letter-spacing:1.116000px;}
.ls16{letter-spacing:1.368000px;}
.ls54{letter-spacing:1.476000px;}
.ls31{letter-spacing:1.560000px;}
.ls40{letter-spacing:1.620000px;}
.ls6d{letter-spacing:1.800000px;}
.ls6c{letter-spacing:1.920000px;}
.ls6a{letter-spacing:1.944000px;}
.ls6b{letter-spacing:1.980000px;}
.ls4a{letter-spacing:2.016000px;}
.ls69{letter-spacing:2.052000px;}
.ls5d{letter-spacing:2.160000px;}
.ls28{letter-spacing:2.196000px;}
.ls42{letter-spacing:2.280000px;}
.ls68{letter-spacing:2.340000px;}
.ls2d{letter-spacing:2.376000px;}
.ls71{letter-spacing:2.428605px;}
.ls2a{letter-spacing:2.839500px;}
.ls3b{letter-spacing:2.899500px;}
.ls36{letter-spacing:2.959500px;}
.ls47{letter-spacing:3.000000px;}
.ls29{letter-spacing:3.019500px;}
.ls14{letter-spacing:3.060000px;}
.ls53{letter-spacing:3.132000px;}
.ls15{letter-spacing:3.180000px;}
.ls30{letter-spacing:3.217500px;}
.ls63{letter-spacing:3.240000px;}
.ls37{letter-spacing:3.576000px;}
.ls2b{letter-spacing:3.814500px;}
.ls3a{letter-spacing:3.874500px;}
.ls3c{letter-spacing:3.934500px;}
.ls25{letter-spacing:4.176000px;}
.ls1c{letter-spacing:4.500000px;}
.ls55{letter-spacing:4.680000px;}
.ls41{letter-spacing:5.040000px;}
.ls4f{letter-spacing:5.220000px;}
.ls35{letter-spacing:14.040000px;}
.ls67{letter-spacing:15.984000px;}
.ls5e{letter-spacing:16.092000px;}
.ls62{letter-spacing:16.272000px;}
.ls43{letter-spacing:16.279500px;}
.ls2e{letter-spacing:16.339500px;}
.ls33{letter-spacing:18.540000px;}
.ls49{letter-spacing:18.660000px;}
.ls2c{letter-spacing:18.720000px;}
.ls3e{letter-spacing:20.959500px;}
.ls44{letter-spacing:21.019500px;}
.ls3d{letter-spacing:23.220000px;}
.ls39{letter-spacing:25.339500px;}
.ls51{letter-spacing:33.954000px;}
.ls1d{letter-spacing:56.454000px;}
.ls24{letter-spacing:56.664000px;}
.lsa{letter-spacing:78.378000px;}
.ls10{letter-spacing:180.180000px;}
.ls2f{letter-spacing:260.472000px;}
.ls3f{letter-spacing:264.972000px;}
.ls34{letter-spacing:286.584000px;}
.ls0{letter-spacing:835.785300px;}
.ls9{letter-spacing:847.020000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws13{word-spacing:-21.375000px;}
.ws3e{word-spacing:-20.340000px;}
.ws40{word-spacing:-20.160000px;}
.ws3f{word-spacing:-20.052000px;}
.ws27{word-spacing:-19.476000px;}
.wsc{word-spacing:-19.368000px;}
.wsd{word-spacing:-19.116000px;}
.ws22{word-spacing:-19.013004px;}
.ws2{word-spacing:-18.973476px;}
.ws17{word-spacing:-18.864000px;}
.ws8{word-spacing:-18.720000px;}
.ws3b{word-spacing:-18.654000px;}
.wse{word-spacing:-18.504000px;}
.ws3d{word-spacing:-18.468000px;}
.ws28{word-spacing:-18.467700px;}
.ws3c{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.108000px;}
.ws25{word-spacing:-18.037500px;}
.ws19{word-spacing:-18.036000px;}
.ws5{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.964000px;}
.ws26{word-spacing:-17.936100px;}
.ws24{word-spacing:-17.892000px;}
.ws1c{word-spacing:-17.856000px;}
.ws1e{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.676000px;}
.ws1b{word-spacing:-17.460000px;}
.wsb{word-spacing:-17.064000px;}
.ws10{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.740000px;}
.ws21{word-spacing:-16.632000px;}
.ws4{word-spacing:-16.452000px;}
.ws7{word-spacing:-16.344000px;}
.ws34{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.200000px;}
.ws18{word-spacing:-16.092000px;}
.ws2e{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.840000px;}
.ws32{word-spacing:-15.588000px;}
.ws15{word-spacing:-15.415949px;}
.ws37{word-spacing:-14.662500px;}
.ws38{word-spacing:-14.625000px;}
.ws31{word-spacing:-14.580000px;}
.ws23{word-spacing:-13.474330px;}
.ws2b{word-spacing:-13.437965px;}
.ws11{word-spacing:-13.430059px;}
.ws41{word-spacing:-12.870000px;}
.ws39{word-spacing:-12.412500px;}
.ws14{word-spacing:-12.375000px;}
.ws3a{word-spacing:-11.187000px;}
.ws1a{word-spacing:-10.890000px;}
.ws42{word-spacing:-7.875000px;}
.ws30{word-spacing:-7.546505px;}
.ws2a{word-spacing:-7.464745px;}
.ws2d{word-spacing:-6.987848px;}
.ws2f{word-spacing:-6.542536px;}
.ws2c{word-spacing:-6.042707px;}
.ws35{word-spacing:-5.388000px;}
.ws33{word-spacing:-4.308000px;}
.ws36{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:23.574962px;}
.ws20{word-spacing:68.220000px;}
.ws1f{word-spacing:81.660000px;}
.ws1d{word-spacing:108.720000px;}
._2a{margin-left:-615.456000px;}
._32{margin-left:-32.364000px;}
._2e{margin-left:-28.971750px;}
._2f{margin-left:-27.598500px;}
._40{margin-left:-24.232500px;}
._e{margin-left:-13.163550px;}
._10{margin-left:-12.127050px;}
._21{margin-left:-9.952168px;}
._1c{margin-left:-8.892632px;}
._f{margin-left:-7.151850px;}
._27{margin-left:-6.092250px;}
._6{margin-left:-4.975200px;}
._9{margin-left:-3.835050px;}
._1{margin-left:-1.865700px;}
._0{width:1.347450px;}
._2{width:2.383950px;}
._a{width:3.876782px;}
._1a{width:5.400000px;}
._1e{width:6.441868px;}
._b{width:7.588500px;}
._1b{width:9.312086px;}
._7{width:10.468650px;}
._20{width:11.735709px;}
._1d{width:13.255950px;}
._8{width:14.303700px;}
._c{width:15.340200px;}
._1f{width:16.906500px;}
._31{width:18.269764px;}
._d{width:19.589850px;}
._12{width:21.557400px;}
._11{width:22.968000px;}
._42{width:24.042048px;}
._30{width:25.262250px;}
._14{width:26.318850px;}
._13{width:27.343350px;}
._41{width:29.190434px;}
._19{width:30.549150px;}
._18{width:31.570800px;}
._2b{width:33.319500px;}
._22{width:35.018250px;}
._23{width:36.053100px;}
._29{width:37.206900px;}
._48{width:38.226329px;}
._24{width:39.982200px;}
._15{width:41.198250px;}
._49{width:43.116111px;}
._16{width:45.000000px;}
._17{width:46.000350px;}
._38{width:47.705210px;}
._25{width:49.745700px;}
._39{width:52.923249px;}
._26{width:54.223950px;}
._3a{width:55.728000px;}
._3c{width:56.735478px;}
._2c{width:58.365750px;}
._28{width:59.446800px;}
._43{width:62.094880px;}
._2d{width:63.923400px;}
._37{width:66.638850px;}
._3b{width:67.724944px;}
._3d{width:70.445761px;}
._35{width:72.271350px;}
._33{width:76.362750px;}
._34{width:77.393700px;}
._36{width:82.057200px;}
._5{width:104.271900px;}
._3{width:108.832500px;}
._3f{width:112.228050px;}
._3e{width:113.284500px;}
._4{width:118.782900px;}
._47{width:172.195706px;}
._46{width:175.680000px;}
._44{width:180.525994px;}
._45{width:185.047981px;}
.fc6{color:rgb(5,99,193);}
.fc3{color:rgb(118,113,113);}
.fc2{color:transparent;}
.fc1{color:rgb(151,153,155);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:9.000000px;}
.fs11{font-size:26.737641px;}
.fsd{font-size:28.562396px;}
.fs14{font-size:28.949273px;}
.fs12{font-size:30.919683px;}
.fs1b{font-size:31.500000px;}
.fs13{font-size:32.976424px;}
.fse{font-size:33.029847px;}
.fs15{font-size:33.391617px;}
.fsf{font-size:35.226955px;}
.fs16{font-size:35.612789px;}
.fs3{font-size:42.690322px;}
.fsb{font-size:49.500000px;}
.fs19{font-size:49.650000px;}
.fs4{font-size:58.500000px;}
.fs18{font-size:58.650000px;}
.fs9{font-size:61.663798px;}
.fs10{font-size:61.821910px;}
.fs1a{font-size:63.150000px;}
.fs1{font-size:67.500000px;}
.fs8{font-size:67.650000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.150000px;}
.fs6{font-size:75.893905px;}
.fsc{font-size:76.052017px;}
.fsa{font-size:85.500000px;}
.fs5{font-size:85.650000px;}
.fs2{font-size:103.650000px;}
.y190{bottom:-21.630000px;}
.y5a0{bottom:-19.605000px;}
.y59b{bottom:-0.630000px;}
.y18d{bottom:-0.450000px;}
.y599{bottom:-0.300000px;}
.y0{bottom:0.000000px;}
.y56c{bottom:0.330000px;}
.y5a3{bottom:0.405000px;}
.y59d{bottom:0.570000px;}
.y18a{bottom:0.675000px;}
.y597{bottom:0.750000px;}
.y234{bottom:0.870000px;}
.y593{bottom:0.975000px;}
.y2cd{bottom:1.875000px;}
.y5a7{bottom:2.025000px;}
.y3f4{bottom:2.056744px;}
.y400{bottom:2.056746px;}
.y466{bottom:2.056748px;}
.y315{bottom:2.197110px;}
.y30f{bottom:2.197111px;}
.y301{bottom:2.197112px;}
.y367{bottom:2.211759px;}
.y372{bottom:2.211760px;}
.y3a4{bottom:2.215421px;}
.y346{bottom:2.219082px;}
.y39b{bottom:2.219084px;}
.y47a{bottom:2.221172px;}
.y491{bottom:2.243384px;}
.y585{bottom:2.475000px;}
.y460{bottom:2.570935px;}
.y33e{bottom:2.746387px;}
.y313{bottom:2.746388px;}
.y374{bottom:2.761035px;}
.y32a{bottom:2.761038px;}
.y3a6{bottom:2.764697px;}
.y348{bottom:2.768359px;}
.y579{bottom:2.775000px;}
.y493{bottom:2.776465px;}
.y490{bottom:2.791273px;}
.y595{bottom:3.120000px;}
.y143{bottom:3.375000px;}
.y2ed{bottom:3.390000px;}
.y4cf{bottom:3.405000px;}
.y13e{bottom:3.420000px;}
.y56e{bottom:3.675000px;}
.y589{bottom:3.705000px;}
.y57f{bottom:3.750000px;}
.y581{bottom:3.795000px;}
.y577{bottom:3.870000px;}
.y57b{bottom:4.005000px;}
.y3f2{bottom:4.113486px;}
.y572{bottom:4.125000px;}
.y574{bottom:4.170000px;}
.y2bc{bottom:4.320000px;}
.y5a5{bottom:4.350000px;}
.y148{bottom:4.500000px;}
.y146{bottom:4.515000px;}
.y17a{bottom:4.530000px;}
.y583{bottom:4.725000px;}
.y587{bottom:4.755000px;}
.y57d{bottom:5.070000px;}
.y570{bottom:5.175000px;}
.y2d0{bottom:5.205000px;}
.y185{bottom:5.250000px;}
.y192{bottom:5.295000px;}
.y1a3{bottom:5.370000px;}
.y2c2{bottom:5.400000px;}
.y2c0{bottom:5.475000px;}
.y51a{bottom:5.625000px;}
.y51b{bottom:5.655000px;}
.y194{bottom:6.150000px;}
.y468{bottom:6.170228px;}
.y46a{bottom:6.170230px;}
.y3cf{bottom:6.170243px;}
.y2cb{bottom:6.375000px;}
.y2c9{bottom:6.420000px;}
.y183{bottom:6.495000px;}
.y2ba{bottom:6.525000px;}
.y485{bottom:6.678323px;}
.y3d2{bottom:6.704980px;}
.y286{bottom:6.750000px;}
.y512{bottom:6.765000px;}
.y515{bottom:6.780000px;}
.y50f{bottom:6.795000px;}
.y3fd{bottom:7.198599px;}
.y41c{bottom:7.219167px;}
.y187{bottom:7.350000px;}
.y402{bottom:7.712784px;}
.y404{bottom:7.712786px;}
.y45c{bottom:7.712788px;}
.y408{bottom:7.729709px;}
.y440{bottom:7.733352px;}
.y447{bottom:7.733353px;}
.y496{bottom:7.792611px;}
.y2d1{bottom:7.875000px;}
.y518{bottom:7.905000px;}
.y328{bottom:8.239155px;}
.y390{bottom:8.239158px;}
.y320{bottom:8.239159px;}
.y31d{bottom:8.239160px;}
.y3ac{bottom:8.239454px;}
.y3d5{bottom:8.247537px;}
.y3c5{bottom:8.257467px;}
.y489{bottom:8.344202px;}
.y480{bottom:8.351606px;}
.y1a9{bottom:8.475000px;}
.y1a7{bottom:8.505000px;}
.y2c7{bottom:8.625000px;}
.y2c5{bottom:8.670000px;}
.y43c{bottom:8.741155px;}
.y271{bottom:9.000000px;}
.y4b1{bottom:9.015000px;}
.y290{bottom:9.030000px;}
.y4ae{bottom:9.045000px;}
.y3fa{bottom:9.275907px;}
.y3ea{bottom:9.275908px;}
.y3e2{bottom:9.275910px;}
.y3f8{bottom:9.769526px;}
.y18f{bottom:9.900000px;}
.y231{bottom:9.945000px;}
.y23d{bottom:10.005000px;}
.y291{bottom:10.125000px;}
.y513{bottom:10.140000px;}
.y516{bottom:10.155000px;}
.y1a{bottom:10.162500px;}
.y510{bottom:10.170000px;}
.y5aa{bottom:10.575000px;}
.y240{bottom:10.920000px;}
.y1a1{bottom:10.995000px;}
.y1a5{bottom:11.025000px;}
.y471{bottom:11.242500px;}
.y18{bottom:11.250000px;}
.y2a9{bottom:11.265000px;}
.y519{bottom:11.280000px;}
.y14{bottom:11.295000px;}
.y45a{bottom:11.312084px;}
.y2b4{bottom:11.880000px;}
.y242{bottom:12.075000px;}
.y486{bottom:12.231253px;}
.y2b0{bottom:12.255000px;}
.y435{bottom:12.340455px;}
.y411{bottom:12.357591px;}
.y3ff{bottom:12.357595px;}
.y4c2{bottom:12.360000px;}
.y3ec{bottom:12.361020px;}
.y424{bottom:12.361021px;}
.y3e4{bottom:12.361023px;}
.y1f8{bottom:12.375000px;}
.y4d4{bottom:12.390000px;}
.y1e6{bottom:12.405000px;}
.y22a{bottom:12.420000px;}
.y44b{bottom:12.854638px;}
.y415{bottom:12.871778px;}
.y40e{bottom:12.871779px;}
.y40a{bottom:12.871781px;}
.y59f{bottom:13.050000px;}
.y237{bottom:13.080000px;}
.y323{bottom:13.204619px;}
.y336{bottom:13.204620px;}
.y494{bottom:13.345541px;}
.y2b2{bottom:13.380000px;}
.y41e{bottom:13.389391px;}
.y454{bottom:13.389393px;}
.y1fb{bottom:13.485000px;}
.y17{bottom:13.500000px;}
.y1e2{bottom:13.515000px;}
.y164{bottom:13.530000px;}
.y28e{bottom:13.537500px;}
.y1ea{bottom:13.545000px;}
.y362{bottom:13.746574px;}
.y325{bottom:13.753894px;}
.y338{bottom:13.753895px;}
.y30d{bottom:13.753897px;}
.y31b{bottom:13.753900px;}
.y58d{bottom:13.845000px;}
.y492{bottom:13.900834px;}
.y3ee{bottom:13.903576px;}
.y3e6{bottom:13.903578px;}
.y481{bottom:13.904536px;}
.y488{bottom:13.919344px;}
.y196{bottom:13.980000px;}
.y58b{bottom:14.070000px;}
.y239{bottom:14.175000px;}
.y58f{bottom:14.205000px;}
.y591{bottom:14.400000px;}
.y3f1{bottom:14.417761px;}
.y1fa{bottom:14.610000px;}
.y20b{bottom:14.625000px;}
.y1bb{bottom:14.640000px;}
.y17d{bottom:14.655000px;}
.y289{bottom:14.662500px;}
.y159{bottom:14.670000px;}
.y3e8{bottom:14.931947px;}
.y1b6{bottom:15.750000px;}
.y5fc{bottom:15.765000px;}
.y5fb{bottom:15.780000px;}
.y28c{bottom:15.795000px;}
.y462{bottom:16.474504px;}
.y463{bottom:16.474505px;}
.y23b{bottom:16.545000px;}
.y498{bottom:16.695690px;}
.y2d4{bottom:16.875000px;}
.y3d1{bottom:16.988688px;}
.y3fc{bottom:17.502875px;}
.y457{bottom:17.502905px;}
.y484{bottom:17.806395px;}
.y40c{bottom:18.013632px;}
.y413{bottom:18.013634px;}
.y450{bottom:18.017059px;}
.y446{bottom:18.017064px;}
.y5f6{bottom:18.037500px;}
.y3d4{bottom:18.531244px;}
.y437{bottom:18.531246px;}
.y3aa{bottom:18.697421px;}
.y48d{bottom:18.894769px;}
.y48b{bottom:18.916980px;}
.y429{bottom:19.045430px;}
.y42f{bottom:19.045432px;}
.y2f2{bottom:19.125000px;}
.y12f{bottom:19.170000px;}
.y358{bottom:19.239339px;}
.y306{bottom:19.239342px;}
.y3c0{bottom:19.243001px;}
.y2ff{bottom:19.243004px;}
.y3c4{bottom:19.243006px;}
.y327{bottom:19.246663px;}
.y303{bottom:19.246666px;}
.y38f{bottom:19.246668px;}
.y47f{bottom:19.472273px;}
.y3f7{bottom:20.073802px;}
.y4c9{bottom:20.250000px;}
.y4d2{bottom:20.265000px;}
.y3da{bottom:21.616357px;}
.y459{bottom:21.616362px;}
.y449{bottom:22.644730px;}
.y421{bottom:23.172625px;}
.y43e{bottom:23.172628px;}
.y43a{bottom:23.172629px;}
.y483{bottom:23.359324px;}
.y3dd{bottom:23.673099px;}
.y3ae{bottom:24.190157px;}
.y431{bottom:24.200996px;}
.y322{bottom:24.204803px;}
.y335{bottom:24.204805px;}
.y4a0{bottom:24.469910px;}
.y355{bottom:24.732106px;}
.y35a{bottom:24.732111px;}
.y361{bottom:24.732113px;}
.y387{bottom:24.739430px;}
.y38b{bottom:24.739435px;}
.y19{bottom:24.750000px;}
.y351{bottom:24.754077px;}
.y344{bottom:24.754082px;}
.y33b{bottom:24.754084px;}
.y14d{bottom:24.765000px;}
.y176{bottom:24.780000px;}
.y142{bottom:24.795000px;}
.y49f{bottom:25.040011px;}
.y49c{bottom:25.047415px;}
.y4cc{bottom:25.875000px;}
.y2ec{bottom:25.890000px;}
.y147{bottom:25.905000px;}
.y145{bottom:25.920000px;}
.y2cf{bottom:27.705000px;}
.y452{bottom:28.314480px;}
.y406{bottom:28.314482px;}
.y445{bottom:28.314484px;}
.y47d{bottom:28.927062px;}
.y5b2{bottom:29.250000px;}
.y251{bottom:29.257500px;}
.y5b4{bottom:29.280000px;}
.y5ad{bottom:29.295000px;}
.y428{bottom:29.342849px;}
.y42e{bottom:29.342853px;}
.y42c{bottom:29.344221px;}
.y2be{bottom:30.150000px;}
.y331{bottom:30.246846px;}
.y32c{bottom:30.246850px;}
.y38e{bottom:30.246853px;}
.y27c{bottom:30.375000px;}
.y5c3{bottom:30.390000px;}
.y1e4{bottom:30.405000px;}
.y228{bottom:30.420000px;}
.y49e{bottom:30.592941px;}
.y49b{bottom:30.615152px;}
.y224{bottom:31.485000px;}
.y1fd{bottom:31.515000px;}
.y1e9{bottom:31.530000px;}
.y1e0{bottom:31.545000px;}
.y3d9{bottom:31.913777px;}
.y18c{bottom:32.205000px;}
.y233{bottom:32.400000px;}
.y5c5{bottom:32.625000px;}
.y189{bottom:33.330000px;}
.y420{bottom:33.456334px;}
.y439{bottom:33.456337px;}
.y5cc{bottom:33.795000px;}
.y3dc{bottom:33.970519px;}
.y482{bottom:34.479991px;}
.y41a{bottom:34.486080px;}
.y360{bottom:35.739621px;}
.y376{bottom:35.754268px;}
.y33a{bottom:35.761592px;}
.y4aa{bottom:36.030000px;}
.y1b8{bottom:36.045000px;}
.y499{bottom:36.168082px;}
.y1ab{bottom:36.750000px;}
.y1b9{bottom:37.170000px;}
.y198{bottom:38.250000px;}
.y444{bottom:38.618758px;}
.y5be{bottom:39.412500px;}
.y4ca{bottom:39.420000px;}
.y42b{bottom:39.627930px;}
.y5bd{bottom:40.537500px;}
.y52a{bottom:40.545000px;}
.y38d{bottom:41.232389px;}
.y3c3{bottom:41.250698px;}
.y49d{bottom:41.721012px;}
.y532{bottom:42.795000px;}
.y23f{bottom:43.575000px;}
.y5cf{bottom:43.920000px;}
.y236{bottom:44.625000px;}
.y1e5{bottom:45.030000px;}
.y252{bottom:45.037500px;}
.y1e1{bottom:45.045000px;}
.y14c{bottom:46.155000px;}
.y5b8{bottom:46.162500px;}
.y141{bottom:46.170000px;}
.y163{bottom:46.185000px;}
.y2f5{bottom:46.200000px;}
.y32f{bottom:46.747127px;}
.y14f{bottom:47.280000px;}
.y177{bottom:47.295000px;}
.y16{bottom:47.325000px;}
.y225{bottom:48.405000px;}
.y4b9{bottom:51.780000px;}
.y2e9{bottom:51.795000px;}
.y2e6{bottom:52.965000px;}
.y3e0{bottom:53.530135px;}
.y523{bottom:54.045000px;}
.y52e{bottom:55.170000px;}
.y5d6{bottom:56.295000px;}
.y617{bottom:57.420000px;}
.y5d3{bottom:57.450000px;}
.y3d7{bottom:58.685700px;}
.y5d1{bottom:59.670000px;}
.y527{bottom:61.905000px;}
.y5b0{bottom:61.920000px;}
.y5c8{bottom:61.950000px;}
.y203{bottom:63.030000px;}
.y16b{bottom:63.045000px;}
.y160{bottom:63.060000px;}
.y2f4{bottom:63.075000px;}
.y3df{bottom:63.827556px;}
.y5c7{bottom:64.170000px;}
.y1{bottom:65.287500px;}
.y5c4{bottom:65.295000px;}
.y2f7{bottom:65.325000px;}
.y5cb{bottom:66.420000px;}
.y14b{bottom:67.530000px;}
.y2eb{bottom:67.545000px;}
.y140{bottom:67.575000px;}
.y5d4{bottom:72.075000px;}
.y529{bottom:73.215000px;}
.y618{bottom:74.325000px;}
.y4bb{bottom:75.405000px;}
.y531{bottom:75.420000px;}
.y5ce{bottom:76.545000px;}
.y2f3{bottom:77.655000px;}
.y208{bottom:77.670000px;}
.y263{bottom:77.685000px;}
.y206{bottom:77.700000px;}
.y15e{bottom:78.780000px;}
.y200{bottom:78.795000px;}
.y162{bottom:78.810000px;}
.y1fe{bottom:78.825000px;}
.y5b7{bottom:78.832500px;}
.y169{bottom:78.840000px;}
.y15b{bottom:79.905000px;}
.y5c6{bottom:79.920000px;}
.y226{bottom:79.950000px;}
.y2f1{bottom:84.450000px;}
.y522{bottom:86.700000px;}
.y5c9{bottom:87.825000px;}
.y2e7{bottom:88.965000px;}
.y5c0{bottom:90.060000px;}
.y14a{bottom:90.075000px;}
.y2ea{bottom:90.090000px;}
.y526{bottom:94.575000px;}
.y202{bottom:95.700000px;}
.y166{bottom:95.715000px;}
.y3c{bottom:97.950000px;}
.y52c{bottom:97.965000px;}
.y2f6{bottom:97.987500px;}
.y5d5{bottom:100.230000px;}
.y4ba{bottom:101.310000px;}
.y534{bottom:102.450000px;}
.y2b6{bottom:103.245000px;}
.y205{bottom:110.325000px;}
.y262{bottom:110.355000px;}
.y16c{bottom:110.370000px;}
.y15d{bottom:111.450000px;}
.y168{bottom:111.465000px;}
.y161{bottom:111.480000px;}
.y5af{bottom:111.495000px;}
.y5d0{bottom:112.590000px;}
.y5cd{bottom:115.980000px;}
.y52b{bottom:117.120000px;}
.y600{bottom:120.487500px;}
.y285{bottom:121.612500px;}
.y533{bottom:121.620000px;}
.y9b{bottom:122.737500px;}
.y619{bottom:122.745000px;}
.y639{bottom:122.775000px;}
.y4dc{bottom:123.862500px;}
.y5bc{bottom:124.987500px;}
.y610{bottom:126.112500px;}
.y525{bottom:126.120000px;}
.y5b6{bottom:127.237500px;}
.y530{bottom:127.245000px;}
.y103{bottom:129.487500px;}
.yfd{bottom:130.612500px;}
.yb7{bottom:131.737500px;}
.y125{bottom:132.862500px;}
.y27a{bottom:133.987500px;}
.y60f{bottom:135.112500px;}
.y4b7{bottom:136.237500px;}
.y50b{bottom:137.362500px;}
.y604{bottom:138.487500px;}
.y2e1{bottom:139.612500px;}
.yde{bottom:140.737500px;}
.y1db{bottom:141.862500px;}
.y204{bottom:142.980000px;}
.y56{bottom:142.987500px;}
.y167{bottom:142.995000px;}
.y250{bottom:143.025000px;}
.y5f8{bottom:143.040000px;}
.y15c{bottom:144.105000px;}
.y4cd{bottom:144.112500px;}
.y123{bottom:145.237500px;}
.y524{bottom:145.245000px;}
.y52f{bottom:146.355000px;}
.y1da{bottom:146.362500px;}
.y288{bottom:148.612500px;}
.y470{bottom:148.687500px;}
.y2fb{bottom:149.812500px;}
.y609{bottom:151.995000px;}
.y1c4{bottom:153.150000px;}
.y139{bottom:154.275000px;}
.y9a{bottom:155.400000px;}
.y638{bottom:155.430000px;}
.y283{bottom:156.525000px;}
.y528{bottom:159.900000px;}
.y20e{bottom:161.025000px;}
.yfc{bottom:162.150000px;}
.y172{bottom:163.275000px;}
.yb6{bottom:164.400000px;}
.y151{bottom:165.525000px;}
.y26e{bottom:166.650000px;}
.y51f{bottom:168.900000px;}
.y4b6{bottom:170.025000px;}
.y2e0{bottom:172.275000px;}
.y2ee{bottom:174.525000px;}
.y25b{bottom:174.540000px;}
.y261{bottom:175.635000px;}
.y55{bottom:175.650000px;}
.y24f{bottom:175.680000px;}
.y29c{bottom:176.775000px;}
.y122{bottom:177.900000px;}
.y28d{bottom:179.025000px;}
.ydd{bottom:180.150000px;}
.y5ed{bottom:181.275000px;}
.y3c7{bottom:181.350000px;}
.y83{bottom:182.400000px;}
.y63e{bottom:182.475000px;}
.y3cc{bottom:183.080672px;}
.y1f5{bottom:183.525000px;}
.y407{bottom:183.594856px;}
.y611{bottom:184.650000px;}
.y17f{bottom:185.775000px;}
.y138{bottom:186.900000px;}
.y99{bottom:188.025000px;}
.y637{bottom:188.100000px;}
.y2d5{bottom:189.150000px;}
.y1c3{bottom:190.275000px;}
.y623{bottom:191.400000px;}
.y15{bottom:193.650000px;}
.yfb{bottom:194.775000px;}
.ycc{bottom:195.945000px;}
.yb5{bottom:197.070000px;}
.y150{bottom:198.195000px;}
.y26d{bottom:199.320000px;}
.y51e{bottom:200.445000px;}
.y4b5{bottom:202.695000px;}
.y50a{bottom:203.820000px;}
.y40d{bottom:204.196304px;}
.y40b{bottom:204.196310px;}
.y418{bottom:204.196314px;}
.y417{bottom:204.196317px;}
.y416{bottom:204.196329px;}
.y414{bottom:204.196339px;}
.y412{bottom:204.196346px;}
.y409{bottom:204.196358px;}
.y2df{bottom:204.945000px;}
.y17e{bottom:206.070000px;}
.y24e{bottom:207.180000px;}
.y25a{bottom:207.195000px;}
.y54{bottom:208.320000px;}
.y5bb{bottom:209.445000px;}
.y121{bottom:210.570000px;}
.y60b{bottom:211.695000px;}
.y60e{bottom:212.820000px;}
.y82{bottom:213.945000px;}
.y1f4{bottom:215.070000px;}
.y63d{bottom:215.145000px;}
.y2fc{bottom:215.610000px;}
.y3ab{bottom:216.156755px;}
.y1c2{bottom:216.195000px;}
.y14e{bottom:217.320000px;}
.y137{bottom:218.445000px;}
.y181{bottom:219.570000px;}
.y98{bottom:220.695000px;}
.y636{bottom:220.755000px;}
.y248{bottom:224.100000px;}
.y5f7{bottom:225.180000px;}
.y54c{bottom:225.195000px;}
.y102{bottom:226.320000px;}
.yfa{bottom:227.445000px;}
.y478{bottom:228.077332px;}
.y171{bottom:228.570000px;}
.y47b{bottom:228.647433px;}
.yb4{bottom:229.695000px;}
.y277{bottom:230.820000px;}
.y13a{bottom:231.945000px;}
.y625{bottom:233.070000px;}
.y51d{bottom:234.195000px;}
.y42a{bottom:235.081714px;}
.y410{bottom:235.081717px;}
.y40f{bottom:235.081720px;}
.y403{bottom:235.081733px;}
.y401{bottom:235.081742px;}
.y3fe{bottom:235.081750px;}
.y419{bottom:235.081761px;}
.ycb{bottom:235.320000px;}
.y2de{bottom:236.445000px;}
.y5f3{bottom:237.600000px;}
.y3c1{bottom:238.146402px;}
.y2fe{bottom:238.146408px;}
.y3bf{bottom:238.146419px;}
.y3be{bottom:238.146421px;}
.y3bd{bottom:238.146423px;}
.y3bc{bottom:238.146429px;}
.y3bb{bottom:238.146438px;}
.y3ba{bottom:238.146448px;}
.y3c2{bottom:238.146454px;}
.y29a{bottom:238.725000px;}
.y259{bottom:239.820000px;}
.y25c{bottom:239.835000px;}
.y24d{bottom:239.850000px;}
.y53{bottom:240.975000px;}
.y2a3{bottom:242.100000px;}
.y120{bottom:243.225000px;}
.y1d9{bottom:244.350000px;}
.y81{bottom:245.475000px;}
.y5ec{bottom:246.600000px;}
.y1f3{bottom:247.725000px;}
.y63c{bottom:247.800000px;}
.y220{bottom:248.850000px;}
.y3b9{bottom:249.150275px;}
.y3b8{bottom:249.150284px;}
.y3b7{bottom:249.150294px;}
.y60a{bottom:249.975000px;}
.y136{bottom:251.100000px;}
.y10e{bottom:252.225000px;}
.y635{bottom:252.300000px;}
.y97{bottom:253.350000px;}
.y29d{bottom:255.600000px;}
.y427{bottom:255.664217px;}
.y433{bottom:255.664219px;}
.y432{bottom:255.664232px;}
.y430{bottom:255.664241px;}
.y42d{bottom:255.664249px;}
.y54b{bottom:257.850000px;}
.y101{bottom:258.975000px;}
.ydc{bottom:260.100000px;}
.y3b6{bottom:260.154121px;}
.y3b5{bottom:260.154130px;}
.y3a8{bottom:260.154140px;}
.y170{bottom:261.225000px;}
.yb3{bottom:262.350000px;}
.y26c{bottom:263.475000px;}
.y5f9{bottom:264.600000px;}
.y582{bottom:265.500000px;}
.y51c{bottom:265.725000px;}
.y61c{bottom:266.850000px;}
.y509{bottom:267.975000px;}
.y1c1{bottom:269.100000px;}
.y5f2{bottom:270.225000px;}
.y584{bottom:271.125000px;}
.y3a7{bottom:271.139658px;}
.y3a5{bottom:271.139667px;}
.y3a3{bottom:271.139677px;}
.y17c{bottom:271.350000px;}
.y260{bottom:272.475000px;}
.y258{bottom:272.490000px;}
.y24c{bottom:272.520000px;}
.y52{bottom:273.600000px;}
.y11f{bottom:274.725000px;}
.y1d8{bottom:275.850000px;}
.yca{bottom:276.975000px;}
.y80{bottom:278.100000px;}
.y5eb{bottom:279.255000px;}
.y3cb{bottom:279.345000px;}
.y1f2{bottom:280.380000px;}
.y207{bottom:281.505000px;}
.y21f{bottom:281.520000px;}
.y30b{bottom:282.143483px;}
.y3a2{bottom:282.143504px;}
.y3a1{bottom:282.143513px;}
.y3c6{bottom:282.143523px;}
.y5ff{bottom:282.630000px;}
.y3b{bottom:283.755000px;}
.y10d{bottom:284.895000px;}
.y96{bottom:286.005000px;}
.y5f5{bottom:287.130000px;}
.y54a{bottom:289.380000px;}
.y100{bottom:291.645000px;}
.yf9{bottom:292.755000px;}
.y38a{bottom:293.145858px;}
.y30a{bottom:293.145864px;}
.y389{bottom:293.145875px;}
.y388{bottom:293.145877px;}
.y386{bottom:293.145879px;}
.y3a0{bottom:293.145885px;}
.y39f{bottom:293.145894px;}
.y39e{bottom:293.145904px;}
.y38c{bottom:293.145911px;}
.y16f{bottom:293.880000px;}
.yb2{bottom:295.020000px;}
.y26b{bottom:296.130000px;}
.y634{bottom:296.250000px;}
.y124{bottom:297.255000px;}
.y5d2{bottom:298.380000px;}
.y508{bottom:299.505000px;}
.y56a{bottom:299.670000px;}
.ydb{bottom:300.630000px;}
.y586{bottom:301.500000px;}
.y3a{bottom:301.770000px;}
.y1c0{bottom:302.880000px;}
.y299{bottom:304.005000px;}
.y39d{bottom:304.131422px;}
.y39c{bottom:304.131431px;}
.y39a{bottom:304.131441px;}
.y25f{bottom:305.130000px;}
.y51{bottom:305.145000px;}
.y24b{bottom:305.175000px;}
.y68{bottom:306.255000px;}
.y11e{bottom:307.380000px;}
.y5ba{bottom:308.505000px;}
.y1d7{bottom:308.520000px;}
.y3d6{bottom:309.208047px;}
.y3db{bottom:309.208053px;}
.y43b{bottom:309.208069px;}
.y3f5{bottom:309.208078px;}
.y3ed{bottom:309.208086px;}
.y3e5{bottom:309.208095px;}
.y3de{bottom:309.208101px;}
.y4b4{bottom:309.630000px;}
.y7f{bottom:310.755000px;}
.y61b{bottom:311.880000px;}
.y624{bottom:311.895000px;}
.y63b{bottom:312.000000px;}
.y19f{bottom:313.005000px;}
.y569{bottom:313.200000px;}
.y21e{bottom:314.130000px;}
.y399{bottom:315.138930px;}
.y398{bottom:315.138939px;}
.y397{bottom:315.138949px;}
.y17b{bottom:315.255000px;}
.yc9{bottom:316.380000px;}
.y95{bottom:317.505000px;}
.y39{bottom:319.755000px;}
.y549{bottom:322.050000px;}
.y29e{bottom:323.175000px;}
.yf8{bottom:324.300000px;}
.y16e{bottom:325.425000px;}
.y396{bottom:326.139114px;}
.y395{bottom:326.139123px;}
.y394{bottom:326.139133px;}
.yb1{bottom:326.550000px;}
.y149{bottom:327.675000px;}
.y26a{bottom:328.800000px;}
.y56d{bottom:329.625000px;}
.y507{bottom:332.175000px;}
.y1f1{bottom:334.425000px;}
.y1bf{bottom:335.550000px;}
.y22c{bottom:336.675000px;}
.y257{bottom:336.690000px;}
.y309{bottom:337.146601px;}
.y393{bottom:337.146622px;}
.y392{bottom:337.146631px;}
.y391{bottom:337.146641px;}
.y38{bottom:337.800000px;}
.y180{bottom:338.925000px;}
.yda{bottom:340.050000px;}
.y3fb{bottom:342.150214px;}
.y3f3{bottom:342.150223px;}
.y3eb{bottom:342.150231px;}
.y3e3{bottom:342.150240px;}
.y4b3{bottom:342.300000px;}
.y7e{bottom:343.425000px;}
.y19e{bottom:344.550000px;}
.y63a{bottom:344.670000px;}
.y21d{bottom:346.800000px;}
.y5fd{bottom:347.925000px;}
.y35e{bottom:348.132131px;}
.y308{bottom:348.132137px;}
.y35d{bottom:348.132148px;}
.y35c{bottom:348.132151px;}
.y35b{bottom:348.132153px;}
.y385{bottom:348.132159px;}
.y384{bottom:348.132168px;}
.y383{bottom:348.132178px;}
.y375{bottom:348.132184px;}
.y135{bottom:349.050000px;}
.y94{bottom:350.175000px;}
.y62b{bottom:351.300000px;}
.y5b9{bottom:353.550000px;}
.y548{bottom:354.675000px;}
.yc8{bottom:355.800000px;}
.y476{bottom:355.950000px;}
.y37{bottom:356.925000px;}
.y16d{bottom:358.050000px;}
.y382{bottom:359.132343px;}
.y381{bottom:359.132352px;}
.y380{bottom:359.132362px;}
.yb0{bottom:359.175000px;}
.y20d{bottom:360.300000px;}
.y588{bottom:361.125000px;}
.y269{bottom:361.425000px;}
.y506{bottom:364.830000px;}
.y568{bottom:365.895000px;}
.y2dd{bottom:367.080000px;}
.y298{bottom:368.205000px;}
.y3cd{bottom:368.582956px;}
.y256{bottom:369.315000px;}
.y25e{bottom:369.330000px;}
.y1be{bottom:369.345000px;}
.y37f{bottom:370.139851px;}
.y37e{bottom:370.139860px;}
.y37d{bottom:370.139870px;}
.y50{bottom:370.455000px;}
.y58c{bottom:372.375000px;}
.y3d8{bottom:372.521416px;}
.y3f9{bottom:372.521432px;}
.y3f0{bottom:372.521441px;}
.y3e9{bottom:372.521449px;}
.y3e1{bottom:372.521458px;}
.y11d{bottom:372.720000px;}
.y1d6{bottom:373.830000px;}
.y4b2{bottom:374.955000px;}
.y7d{bottom:376.095000px;}
.y19d{bottom:377.205000px;}
.y16a{bottom:378.330000px;}
.y21c{bottom:379.470000px;}
.yd9{bottom:380.580000px;}
.y37c{bottom:381.125388px;}
.y37b{bottom:381.125397px;}
.y37a{bottom:381.125407px;}
.y36{bottom:381.705000px;}
.y93{bottom:382.845000px;}
.y517{bottom:385.080000px;}
.y547{bottom:387.330000px;}
.y475{bottom:387.495000px;}
.y1f0{bottom:388.455000px;}
.y5b5{bottom:389.580000px;}
.yf7{bottom:389.595000px;}
.yff{bottom:390.705000px;}
.y56b{bottom:391.500000px;}
.yaf{bottom:391.830000px;}
.y307{bottom:392.125550px;}
.y379{bottom:392.125572px;}
.y378{bottom:392.125581px;}
.y377{bottom:392.125591px;}
.y20c{bottom:394.080000px;}
.yc7{bottom:395.205000px;}
.y3f6{bottom:396.722425px;}
.y3ef{bottom:396.722434px;}
.y3e7{bottom:396.722442px;}
.y422{bottom:396.722452px;}
.y505{bottom:397.455000px;}
.y2fd{bottom:398.679740px;}
.y297{bottom:400.830000px;}
.y1bd{bottom:401.955000px;}
.y255{bottom:401.970000px;}
.y24a{bottom:402.000000px;}
.y4f{bottom:403.095000px;}
.y359{bottom:403.133052px;}
.y305{bottom:403.133058px;}
.y357{bottom:403.133069px;}
.y356{bottom:403.133072px;}
.y354{bottom:403.133074px;}
.y36a{bottom:403.133080px;}
.y369{bottom:403.133089px;}
.y368{bottom:403.133099px;}
.y35f{bottom:403.133105px;}
.y2a2{bottom:404.205000px;}
.y11c{bottom:405.375000px;}
.y35{bottom:407.625000px;}
.y52d{bottom:408.750000px;}
.y19c{bottom:409.875000px;}
.y57e{bottom:411.750000px;}
.y201{bottom:412.125000px;}
.y134{bottom:413.250000px;}
.y366{bottom:414.118617px;}
.y373{bottom:414.118625px;}
.y371{bottom:414.118636px;}
.y10c{bottom:414.375000px;}
.y92{bottom:415.500000px;}
.y5e9{bottom:416.625000px;}
.y567{bottom:418.275000px;}
.yd8{bottom:418.875000px;}
.y2d3{bottom:420.000000px;}
.y474{bottom:420.150000px;}
.y22b{bottom:421.125000px;}
.yf6{bottom:422.250000px;}
.y563{bottom:422.625000px;}
.y1b4{bottom:423.375000px;}
.yae{bottom:424.500000px;}
.y370{bottom:425.118801px;}
.y36f{bottom:425.118810px;}
.y36e{bottom:425.118820px;}
.y179{bottom:425.625000px;}
.y20a{bottom:426.750000px;}
.y4cb{bottom:427.875000px;}
.y60d{bottom:429.000000px;}
.y284{bottom:430.125000px;}
.y405{bottom:431.721291px;}
.y41f{bottom:431.721296px;}
.y3d3{bottom:431.721309px;}
.y436{bottom:431.721312px;}
.y41d{bottom:431.721321px;}
.y455{bottom:431.721329px;}
.y453{bottom:431.721338px;}
.y438{bottom:431.721344px;}
.y566{bottom:431.820000px;}
.y34{bottom:432.375000px;}
.y296{bottom:433.500000px;}
.y1bc{bottom:434.625000px;}
.y249{bottom:434.670000px;}
.y4e{bottom:435.750000px;}
.y36d{bottom:436.126309px;}
.y36c{bottom:436.126318px;}
.y36b{bottom:436.126328px;}
.y2a1{bottom:436.875000px;}
.y11b{bottom:438.000000px;}
.y7c{bottom:440.250000px;}
.y514{bottom:441.375000px;}
.y19b{bottom:442.500000px;}
.y21b{bottom:444.750000px;}
.y133{bottom:445.875000px;}
.y61a{bottom:447.030000px;}
.y10b{bottom:447.045000px;}
.y304{bottom:447.126471px;}
.y365{bottom:447.126493px;}
.y364{bottom:447.126502px;}
.y363{bottom:447.126512px;}
.y4a1{bottom:447.195000px;}
.y91{bottom:448.155000px;}
.y5e8{bottom:449.295000px;}
.y5a2{bottom:451.125000px;}
.y546{bottom:451.530000px;}
.y2e8{bottom:453.780000px;}
.y1ef{bottom:453.795000px;}
.yf5{bottom:454.905000px;}
.y1b3{bottom:456.045000px;}
.yad{bottom:457.170000px;}
.y343{bottom:458.112002px;}
.y302{bottom:458.112008px;}
.y353{bottom:458.112019px;}
.y352{bottom:458.112021px;}
.y350{bottom:458.112023px;}
.y342{bottom:458.112030px;}
.y341{bottom:458.112038px;}
.y340{bottom:458.112049px;}
.y339{bottom:458.112055px;}
.y33{bottom:458.280000px;}
.y4b0{bottom:460.530000px;}
.y4c8{bottom:461.655000px;}
.y3d0{bottom:464.149268px;}
.y41b{bottom:464.149271px;}
.y426{bottom:464.149281px;}
.y425{bottom:464.149288px;}
.y423{bottom:464.149298px;}
.y5f1{bottom:465.030000px;}
.y295{bottom:466.170000px;}
.y25d{bottom:467.280000px;}
.y4d{bottom:467.295000px;}
.y67{bottom:468.405000px;}
.y34f{bottom:469.119537px;}
.y34e{bottom:469.119546px;}
.y34d{bottom:469.119557px;}
.y511{bottom:469.530000px;}
.y11a{bottom:469.545000px;}
.y209{bottom:471.780000px;}
.y580{bottom:472.500000px;}
.y7b{bottom:472.920000px;}
.y2dc{bottom:474.045000px;}
.yc6{bottom:475.155000px;}
.y21a{bottom:477.420000px;}
.y132{bottom:478.530000px;}
.y144{bottom:479.655000px;}
.y90{bottom:479.670000px;}
.y34c{bottom:480.119722px;}
.y34b{bottom:480.119731px;}
.y34a{bottom:480.119741px;}
.y5e7{bottom:481.905000px;}
.y477{bottom:482.025000px;}
.y497{bottom:482.578190px;}
.y32{bottom:483.045000px;}
.y545{bottom:484.170000px;}
.y565{bottom:484.500000px;}
.y2ac{bottom:486.420000px;}
.y229{bottom:487.530000px;}
.yf4{bottom:487.545000px;}
.yac{bottom:488.700000px;}
.y152{bottom:489.825000px;}
.y178{bottom:490.950000px;}
.y349{bottom:491.105258px;}
.y347{bottom:491.105267px;}
.y345{bottom:491.105278px;}
.y197{bottom:492.075000px;}
.y4af{bottom:493.200000px;}
.y43d{bottom:494.006283px;}
.y451{bottom:494.006289px;}
.y442{bottom:494.006293px;}
.y441{bottom:494.006296px;}
.y43f{bottom:494.006308px;}
.y44d{bottom:494.006317px;}
.y44c{bottom:494.006325px;}
.y443{bottom:494.006336px;}
.y504{bottom:494.325000px;}
.y62f{bottom:495.450000px;}
.y270{bottom:497.700000px;}
.y294{bottom:498.825000px;}
.y4c{bottom:499.950000px;}
.y5a9{bottom:500.625000px;}
.y66{bottom:501.075000px;}
.y300{bottom:502.112745px;}
.y33f{bottom:502.112766px;}
.y33d{bottom:502.112775px;}
.y33c{bottom:502.112785px;}
.y119{bottom:502.200000px;}
.y7a{bottom:505.575000px;}
.y19a{bottom:506.700000px;}
.y31{bottom:507.825000px;}
.y219{bottom:510.075000px;}
.y131{bottom:511.200000px;}
.y8f{bottom:512.325000px;}
.y32e{bottom:513.112923px;}
.y32d{bottom:513.112929px;}
.y332{bottom:513.112935px;}
.y330{bottom:513.112938px;}
.y3b3{bottom:513.112946px;}
.y3b1{bottom:513.112955px;}
.y3af{bottom:513.112963px;}
.y333{bottom:513.112976px;}
.y175{bottom:513.450000px;}
.y5e6{bottom:514.575000px;}
.y44f{bottom:514.607988px;}
.y44e{bottom:514.607991px;}
.y434{bottom:514.608003px;}
.y44a{bottom:514.608013px;}
.y448{bottom:514.608020px;}
.yc5{bottom:515.700000px;}
.y4c7{bottom:516.825000px;}
.yf3{bottom:519.075000px;}
.y227{bottom:520.200000px;}
.y13{bottom:521.325000px;}
.y48a{bottom:521.522619px;}
.y1d5{bottom:522.450000px;}
.y268{bottom:523.575000px;}
.y13f{bottom:524.700000px;}
.y50e{bottom:525.825000px;}
.y4ad{bottom:526.950000px;}
.y576{bottom:528.750000px;}
.y293{bottom:531.480000px;}
.y2aa{bottom:532.605000px;}
.y4b{bottom:532.620000px;}
.y30{bottom:534.855000px;}
.y79{bottom:538.230000px;}
.yd7{bottom:539.370000px;}
.y615{bottom:540.480000px;}
.y165{bottom:541.605000px;}
.y130{bottom:542.745000px;}
.y564{bottom:543.825000px;}
.y10a{bottom:543.870000px;}
.y495{bottom:544.326650px;}
.y8e{bottom:544.980000px;}
.y3ce{bottom:545.493382px;}
.y461{bottom:545.493388px;}
.y46e{bottom:545.493403px;}
.y46f{bottom:545.493407px;}
.y46d{bottom:545.493412px;}
.y46c{bottom:545.493416px;}
.y46b{bottom:545.493420px;}
.y469{bottom:545.493424px;}
.y467{bottom:545.493430px;}
.y458{bottom:545.493435px;}
.y32b{bottom:546.106158px;}
.y3b4{bottom:546.106164px;}
.y3b2{bottom:546.106175px;}
.y3b0{bottom:546.106184px;}
.y3ad{bottom:546.106192px;}
.ye3{bottom:546.120000px;}
.y5e5{bottom:547.245000px;}
.y60c{bottom:548.355000px;}
.y544{bottom:549.495000px;}
.y4c6{bottom:550.605000px;}
.yf2{bottom:551.730000px;}
.y1b2{bottom:552.870000px;}
.y50d{bottom:553.980000px;}
.yab{bottom:553.995000px;}
.y273{bottom:555.105000px;}
.yc4{bottom:556.245000px;}
.y12e{bottom:557.355000px;}
.y1d4{bottom:557.370000px;}
.y195{bottom:558.000000px;}
.y4ac{bottom:559.605000px;}
.y2f{bottom:559.620000px;}
.y199{bottom:561.855000px;}
.y465{bottom:562.996263px;}
.y464{bottom:562.996271px;}
.y45e{bottom:562.996278px;}
.y45d{bottom:562.996287px;}
.y45b{bottom:562.996295px;}
.y292{bottom:564.120000px;}
.y4a{bottom:565.230000px;}
.y487{bottom:565.467023px;}
.y1ee{bottom:566.370000px;}
.y2f0{bottom:567.480000px;}
.y118{bottom:567.495000px;}
.y5d9{bottom:568.605000px;}
.y78{bottom:569.745000px;}
.y2db{bottom:570.870000px;}
.y59a{bottom:571.500000px;}
.y4db{bottom:571.980000px;}
.y193{bottom:572.625000px;}
.y45f{bottom:573.293683px;}
.y1ff{bottom:574.275000px;}
.y28b{bottom:575.400000px;}
.y109{bottom:576.525000px;}
.y8d{bottom:577.650000px;}
.yd6{bottom:578.775000px;}
.y326{bottom:579.099392px;}
.y324{bottom:579.099395px;}
.y321{bottom:579.099404px;}
.y337{bottom:579.099413px;}
.y334{bottom:579.099421px;}
.y500{bottom:579.225000px;}
.y5e4{bottom:579.900000px;}
.y543{bottom:582.150000px;}
.y473{bottom:582.345000px;}
.y29b{bottom:583.275000px;}
.y456{bottom:583.577381px;}
.yf1{bottom:584.400000px;}
.y2e{bottom:585.525000px;}
.yaa{bottom:586.650000px;}
.ye2{bottom:587.775000px;}
.y4f2{bottom:588.630000px;}
.y5ca{bottom:588.900000px;}
.y578{bottom:589.500000px;}
.y274{bottom:590.025000px;}
.y503{bottom:592.275000px;}
.y4ab{bottom:593.400000px;}
.yc3{bottom:596.775000px;}
.y49{bottom:597.900000px;}
.y4ff{bottom:598.350000px;}
.y2a0{bottom:599.025000px;}
.y49a{bottom:599.391722px;}
.y117{bottom:600.150000px;}
.y1ed{bottom:601.275000px;}
.y58a{bottom:601.875000px;}
.y562{bottom:602.130000px;}
.y77{bottom:602.400000px;}
.y2da{bottom:603.525000px;}
.y63f{bottom:603.750000px;}
.y4da{bottom:604.650000px;}
.y218{bottom:606.900000px;}
.y4f1{bottom:607.755000px;}
.y246{bottom:608.025000px;}
.y108{bottom:609.150000px;}
.y2d{bottom:610.275000px;}
.y13d{bottom:611.400000px;}
.y30c{bottom:612.092610px;}
.y319{bottom:612.092616px;}
.y318{bottom:612.092633px;}
.y317{bottom:612.092637px;}
.y316{bottom:612.092642px;}
.y314{bottom:612.092646px;}
.y312{bottom:612.092650px;}
.y311{bottom:612.092656px;}
.y31a{bottom:612.092662px;}
.y174{bottom:612.525000px;}
.y542{bottom:613.650000px;}
.y472{bottom:615.045000px;}
.y50c{bottom:615.945000px;}
.yf0{bottom:617.070000px;}
.y4fe{bottom:617.505000px;}
.yd5{bottom:618.195000px;}
.ya9{bottom:619.320000px;}
.y1d3{bottom:620.445000px;}
.y310{bottom:623.100129px;}
.y30e{bottom:623.100134px;}
.y31f{bottom:623.100141px;}
.y31e{bottom:623.100150px;}
.y31c{bottom:623.100158px;}
.y502{bottom:623.820000px;}
.y62a{bottom:624.945000px;}
.y4a9{bottom:626.070000px;}
.y12b{bottom:626.895000px;}
.y129{bottom:627.525000px;}
.y5f0{bottom:628.320000px;}
.y59c{bottom:628.875000px;}
.y48{bottom:629.445000px;}
.y65{bottom:630.570000px;}
.y116{bottom:631.695000px;}
.y1ac{bottom:632.820000px;}
.y1ec{bottom:633.945000px;}
.y329{bottom:634.085666px;}
.y76{bottom:635.070000px;}
.yc2{bottom:636.195000px;}
.y3ca{bottom:636.405000px;}
.y4d9{bottom:637.320000px;}
.y217{bottom:639.570000px;}
.y28a{bottom:640.695000px;}
.y8c{bottom:641.820000px;}
.y247{bottom:642.945000px;}
.y47c{bottom:643.911410px;}
.y5fa{bottom:644.070000px;}
.y3a9{bottom:645.085838px;}
.y13c{bottom:645.195000px;}
.y128{bottom:645.525000px;}
.y12a{bottom:646.050000px;}
.y541{bottom:646.320000px;}
.y5d8{bottom:648.570000px;}
.y57c{bottom:649.125000px;}
.yef{bottom:649.695000px;}
.ya8{bottom:650.820000px;}
.y632{bottom:651.075000px;}
.y62e{bottom:651.945000px;}
.y1d2{bottom:653.070000px;}
.y501{bottom:656.475000px;}
.yd4{bottom:658.725000px;}
.y55e{bottom:658.800000px;}
.y47{bottom:659.850000px;}
.y4c5{bottom:660.975000px;}
.y561{bottom:661.200000px;}
.y2ae{bottom:662.100000px;}
.y12{bottom:663.225000px;}
.y115{bottom:664.350000px;}
.y4f0{bottom:665.130000px;}
.y1eb{bottom:665.475000px;}
.y603{bottom:666.600000px;}
.y75{bottom:667.725000px;}
.y2c{bottom:668.850000px;}
.y3c9{bottom:669.075000px;}
.y2e5{bottom:671.100000px;}
.y216{bottom:672.225000px;}
.y245{bottom:673.350000px;}
.y8b{bottom:674.475000px;}
.y47e{bottom:674.504351px;}
.yc1{bottom:675.600000px;}
.y5e3{bottom:677.850000px;}
.y4a8{bottom:678.975000px;}
.y5a8{bottom:679.500000px;}
.y1a8{bottom:680.625000px;}
.yee{bottom:681.225000px;}
.y282{bottom:682.350000px;}
.ya7{bottom:683.475000px;}
.y4ef{bottom:684.270000px;}
.y5b3{bottom:684.600000px;}
.y186{bottom:685.125000px;}
.y1e8{bottom:685.725000px;}
.y4fd{bottom:685.905000px;}
.y1d1{bottom:686.850000px;}
.y11{bottom:690.225000px;}
.y62d{bottom:691.350000px;}
.y5ef{bottom:693.600000px;}
.y64{bottom:694.725000px;}
.y4dd{bottom:695.850000px;}
.y114{bottom:696.975000px;}
.y2ef{bottom:699.255000px;}
.y2b{bottom:699.270000px;}
.y74{bottom:700.380000px;}
.y4d8{bottom:701.505000px;}
.y2fa{bottom:701.775000px;}
.y254{bottom:702.630000px;}
.y57a{bottom:703.125000px;}
.y4ee{bottom:703.425000px;}
.y215{bottom:703.755000px;}
.y1fc{bottom:704.880000px;}
.y1a6{bottom:705.375000px;}
.y107{bottom:706.020000px;}
.y631{bottom:706.275000px;}
.y8a{bottom:707.130000px;}
.y479{bottom:707.881160px;}
.y5e2{bottom:710.505000px;}
.y4a7{bottom:711.630000px;}
.yed{bottom:713.880000px;}
.y1b1{bottom:715.005000px;}
.y560{bottom:715.155000px;}
.y279{bottom:716.130000px;}
.ya6{bottom:716.145000px;}
.y1d0{bottom:718.380000px;}
.y48e{bottom:719.001827px;}
.y4d7{bottom:721.755000px;}
.y4c4{bottom:722.895000px;}
.y243{bottom:724.005000px;}
.y54f{bottom:725.220000px;}
.y5ee{bottom:726.270000px;}
.y2b3{bottom:726.750000px;}
.y63{bottom:727.380000px;}
.y55f{bottom:727.545000px;}
.y29f{bottom:728.505000px;}
.y614{bottom:729.630000px;}
.y2a{bottom:729.645000px;}
.y48f{bottom:730.129898px;}
.y62c{bottom:730.755000px;}
.y73{bottom:731.880000px;}
.y2d9{bottom:733.020000px;}
.y2f9{bottom:734.445000px;}
.y59e{bottom:735.750000px;}
.y2e4{bottom:736.380000px;}
.y214{bottom:736.395000px;}
.y244{bottom:737.505000px;}
.y15f{bottom:737.520000px;}
.y106{bottom:738.630000px;}
.y89{bottom:739.770000px;}
.y622{bottom:740.925000px;}
.y48c{bottom:741.272777px;}
.y5e1{bottom:743.175000px;}
.y10{bottom:744.300000px;}
.y54e{bottom:744.375000px;}
.y4a6{bottom:745.425000px;}
.yec{bottom:746.550000px;}
.y1b0{bottom:747.675000px;}
.ya5{bottom:748.800000px;}
.y188{bottom:749.250000px;}
.y267{bottom:749.925000px;}
.y1e7{bottom:751.050000px;}
.y1cf{bottom:752.175000px;}
.y4d6{bottom:754.425000px;}
.yc0{bottom:755.550000px;}
.y22f{bottom:758.925000px;}
.y62{bottom:760.050000px;}
.y29{bottom:761.175000px;}
.y630{bottom:761.475000px;}
.y113{bottom:762.300000px;}
.y633{bottom:762.600000px;}
.y238{bottom:762.750000px;}
.y54d{bottom:763.500000px;}
.y72{bottom:764.550000px;}
.y2d8{bottom:765.675000px;}
.y2f8{bottom:765.975000px;}
.y56f{bottom:768.375000px;}
.y213{bottom:769.050000px;}
.y2e3{bottom:770.175000px;}
.y4ed{bottom:770.205000px;}
.y105{bottom:771.300000px;}
.y88{bottom:772.425000px;}
.y28f{bottom:773.550000px;}
.y55d{bottom:773.925000px;}
.y18b{bottom:774.000000px;}
.yf{bottom:775.800000px;}
.y5e0{bottom:776.925000px;}
.yd3{bottom:778.050000px;}
.ye1{bottom:779.175000px;}
.y1af{bottom:780.300000px;}
.ya4{bottom:781.425000px;}
.y266{bottom:782.580000px;}
.y223{bottom:782.595000px;}
.y2ce{bottom:783.000000px;}
.y253{bottom:784.830000px;}
.y1ce{bottom:785.955000px;}
.y55c{bottom:786.300000px;}
.y4c3{bottom:788.205000px;}
.y4ec{bottom:789.330000px;}
.y22e{bottom:791.580000px;}
.y61{bottom:792.705000px;}
.y4e8{bottom:793.125000px;}
.y112{bottom:793.830000px;}
.ybf{bottom:796.080000px;}
.y71{bottom:797.205000px;}
.y1aa{bottom:797.625000px;}
.y2d7{bottom:798.330000px;}
.y281{bottom:799.455000px;}
.y12d{bottom:800.850000px;}
.y5a1{bottom:801.000000px;}
.y2e2{bottom:802.830000px;}
.y1f9{bottom:802.845000px;}
.y46{bottom:803.955000px;}
.y157{bottom:805.080000px;}
.y235{bottom:805.500000px;}
.ye{bottom:806.205000px;}
.y540{bottom:808.455000px;}
.y4c1{bottom:808.470000px;}
.y58e{bottom:808.875000px;}
.y5df{bottom:809.580000px;}
.y127{bottom:809.925000px;}
.y5d7{bottom:810.705000px;}
.yeb{bottom:811.830000px;}
.ya3{bottom:812.955000px;}
.y4e7{bottom:813.420000px;}
.y2a7{bottom:814.080000px;}
.y265{bottom:815.205000px;}
.y1e3{bottom:817.470000px;}
.y5fe{bottom:818.580000px;}
.y12c{bottom:818.850000px;}
.yd2{bottom:819.705000px;}
.y4d5{bottom:820.845000px;}
.y28{bottom:821.955000px;}
.y212{bottom:823.080000px;}
.y571{bottom:823.500000px;}
.y22d{bottom:824.250000px;}
.y60{bottom:825.375000px;}
.y111{bottom:826.500000px;}
.y2c6{bottom:826.875000px;}
.y184{bottom:828.000000px;}
.y613{bottom:828.750000px;}
.y70{bottom:829.875000px;}
.y521{bottom:832.125000px;}
.y4e6{bottom:832.545000px;}
.y55b{bottom:833.205000px;}
.y280{bottom:833.250000px;}
.y2cc{bottom:833.625000px;}
.ybe{bottom:835.500000px;}
.y45{bottom:836.625000px;}
.y53f{bottom:841.125000px;}
.y5de{bottom:842.250000px;}
.yea{bottom:843.375000px;}
.y606{bottom:844.500000px;}
.ya2{bottom:845.625000px;}
.y4eb{bottom:846.075000px;}
.y4f7{bottom:846.375000px;}
.y2a6{bottom:846.750000px;}
.y4fc{bottom:846.900000px;}
.y264{bottom:847.875000px;}
.y5b1{bottom:849.000000px;}
.y4e5{bottom:851.700000px;}
.y27{bottom:852.375000px;}
.y5f{bottom:856.875000px;}
.y2ca{bottom:857.250000px;}
.yd1{bottom:858.000000px;}
.ye0{bottom:859.125000px;}
.y601{bottom:861.375000px;}
.y6f{bottom:862.500000px;}
.y596{bottom:864.000000px;}
.y4f6{bottom:865.545000px;}
.y557{bottom:866.400000px;}
.yd{bottom:867.045000px;}
.y4ea{bottom:867.480000px;}
.y15a{bottom:868.170000px;}
.y4fb{bottom:868.320000px;}
.y23a{bottom:868.500000px;}
.y44{bottom:869.295000px;}
.y191{bottom:870.750000px;}
.y4e4{bottom:870.825000px;}
.y156{bottom:872.250000px;}
.y2d6{bottom:872.670000px;}
.y4c0{bottom:873.795000px;}
.y5dd{bottom:874.920000px;}
.ybd{bottom:876.045000px;}
.y605{bottom:877.170000px;}
.ya1{bottom:878.295000px;}
.y2b5{bottom:878.625000px;}
.y104{bottom:879.420000px;}
.y222{bottom:880.530000px;}
.y2c4{bottom:880.875000px;}
.y5ae{bottom:881.655000px;}
.y1df{bottom:882.780000px;}
.y26{bottom:882.795000px;}
.y4a5{bottom:885.045000px;}
.y1cd{bottom:886.170000px;}
.y4d3{bottom:887.280000px;}
.y55a{bottom:889.350000px;}
.y5e{bottom:889.545000px;}
.y573{bottom:889.875000px;}
.y2a8{bottom:891.780000px;}
.y110{bottom:891.795000px;}
.y23e{bottom:892.125000px;}
.y6e{bottom:894.045000px;}
.y5ea{bottom:895.170000px;}
.y621{bottom:897.420000px;}
.y2c8{bottom:897.750000px;}
.y27f{bottom:898.530000px;}
.yd0{bottom:899.670000px;}
.y43{bottom:900.795000px;}
.y1f7{bottom:901.905000px;}
.y87{bottom:901.920000px;}
.y5f4{bottom:905.295000px;}
.y559{bottom:906.225000px;}
.y4bf{bottom:906.405000px;}
.y53e{bottom:906.420000px;}
.y5dc{bottom:907.545000px;}
.ye9{bottom:908.700000px;}
.yc{bottom:909.825000px;}
.ya0{bottom:910.950000px;}
.y275{bottom:912.075000px;}
.y25{bottom:913.200000px;}
.y2d2{bottom:914.325000px;}
.ybc{bottom:915.450000px;}
.y2b8{bottom:916.575000px;}
.y126{bottom:917.025000px;}
.y1cc{bottom:918.825000px;}
.y1ae{bottom:919.950000px;}
.y26f{bottom:921.075000px;}
.y5d{bottom:922.200000px;}
.y4f5{bottom:922.920000px;}
.y287{bottom:923.325000px;}
.y278{bottom:924.450000px;}
.y598{bottom:924.750000px;}
.y221{bottom:925.575000px;}
.y4a4{bottom:926.700000px;}
.y602{bottom:927.825000px;}
.y27e{bottom:931.200000px;}
.y4e3{bottom:932.325000px;}
.y4fa{bottom:932.475000px;}
.y42{bottom:933.450000px;}
.y86{bottom:934.575000px;}
.y241{bottom:934.875000px;}
.y276{bottom:936.825000px;}
.ycf{bottom:937.950000px;}
.ydf{bottom:939.075000px;}
.y4be{bottom:940.200000px;}
.y1a0{bottom:940.500000px;}
.ye8{bottom:941.325000px;}
.y4e9{bottom:941.745000px;}
.y4f4{bottom:942.045000px;}
.y2ab{bottom:942.450000px;}
.yb{bottom:943.575000px;}
.y24{bottom:944.700000px;}
.y153{bottom:945.600000px;}
.y10f{bottom:945.825000px;}
.y1f6{bottom:946.950000px;}
.y575{bottom:947.250000px;}
.y6d{bottom:948.075000px;}
.y2b7{bottom:949.200000px;}
.y4e2{bottom:951.450000px;}
.y1cb{bottom:952.620000px;}
.y4d1{bottom:953.730000px;}
.y4f9{bottom:953.880000px;}
.y5c{bottom:954.870000px;}
.ybb{bottom:955.995000px;}
.y558{bottom:957.120000px;}
.y616{bottom:959.370000px;}
.y5c2{bottom:960.480000px;}
.y4f3{bottom:961.200000px;}
.y27d{bottom:964.980000px;}
.y3c8{bottom:964.995000px;}
.y41{bottom:966.120000px;}
.y182{bottom:967.500000px;}
.y232{bottom:968.625000px;}
.y53d{bottom:970.620000px;}
.y4bd{bottom:972.855000px;}
.y211{bottom:972.870000px;}
.y1ba{bottom:973.980000px;}
.ye7{bottom:973.995000px;}
.y23{bottom:975.120000px;}
.y620{bottom:976.245000px;}
.y520{bottom:977.355000px;}
.ya{bottom:977.370000px;}
.y155{bottom:977.775000px;}
.y629{bottom:978.495000px;}
.y2bd{bottom:978.750000px;}
.y2a5{bottom:979.605000px;}
.yce{bottom:979.620000px;}
.y2c3{bottom:979.875000px;}
.y4a3{bottom:980.745000px;}
.y594{bottom:983.250000px;}
.y18e{bottom:984.375000px;}
.y1ca{bottom:985.245000px;}
.y1a2{bottom:985.500000px;}
.y2ad{bottom:986.370000px;}
.y5b{bottom:987.495000px;}
.y1a4{bottom:987.750000px;}
.y1de{bottom:993.150000px;}
.yba{bottom:995.400000px;}
.y27b{bottom:997.650000px;}
.y40{bottom:998.775000px;}
.y6c{bottom:1001.025000px;}
.y53c{bottom:1003.275000px;}
.y22{bottom:1005.525000px;}
.y5a6{bottom:1005.750000px;}
.y4bc{bottom:1006.650000px;}
.y9f{bottom:1007.775000px;}
.y612{bottom:1008.900000px;}
.y590{bottom:1009.125000px;}
.y4d0{bottom:1010.025000px;}
.y9{bottom:1011.150000px;}
.y5ac{bottom:1012.275000px;}
.y556{bottom:1012.650000px;}
.y2a4{bottom:1013.400000px;}
.y61f{bottom:1015.650000px;}
.y1c9{bottom:1016.775000px;}
.y628{bottom:1017.900000px;}
.y5a{bottom:1019.025000px;}
.y13b{bottom:1020.150000px;}
.y1dd{bottom:1021.275000px;}
.y2b9{bottom:1023.750000px;}
.y5c1{bottom:1025.775000px;}
.y4e1{bottom:1027.650000px;}
.y2c1{bottom:1028.250000px;}
.y555{bottom:1028.445000px;}
.y4f8{bottom:1029.600000px;}
.y1b7{bottom:1030.275000px;}
.y3f{bottom:1031.400000px;}
.y6b{bottom:1033.650000px;}
.y21{bottom:1035.945000px;}
.y230{bottom:1037.250000px;}
.ye6{bottom:1038.195000px;}
.y4b8{bottom:1039.320000px;}
.y9e{bottom:1040.445000px;}
.y272{bottom:1041.570000px;}
.y154{bottom:1042.995000px;}
.y554{bottom:1044.195000px;}
.y8{bottom:1044.945000px;}
.y4a2{bottom:1046.070000px;}
.y1c8{bottom:1050.570000px;}
.y59{bottom:1051.695000px;}
.y173{bottom:1052.820000px;}
.y1dc{bottom:1053.945000px;}
.y61e{bottom:1055.070000px;}
.y627{bottom:1057.320000px;}
.y210{bottom:1058.445000px;}
.ycd{bottom:1059.570000px;}
.y553{bottom:1061.100000px;}
.y2bb{bottom:1062.000000px;}
.y3e{bottom:1062.945000px;}
.y85{bottom:1064.070000px;}
.y550{bottom:1064.850000px;}
.y20{bottom:1066.320000px;}
.y6a{bottom:1067.445000px;}
.y53b{bottom:1068.570000px;}
.ye5{bottom:1070.820000px;}
.y5db{bottom:1071.945000px;}
.y9d{bottom:1073.070000px;}
.y4ce{bottom:1074.195000px;}
.yb9{bottom:1075.320000px;}
.y2bf{bottom:1075.500000px;}
.y158{bottom:1076.475000px;}
.y5ab{bottom:1077.600000px;}
.y7{bottom:1078.725000px;}
.y1c7{bottom:1079.850000px;}
.y592{bottom:1082.250000px;}
.y58{bottom:1084.350000px;}
.y1b5{bottom:1085.475000px;}
.y20f{bottom:1091.100000px;}
.y1c5{bottom:1092.225000px;}
.y61d{bottom:1094.475000px;}
.y4e0{bottom:1094.745000px;}
.y607{bottom:1095.600000px;}
.y84{bottom:1096.725000px;}
.y539{bottom:1097.850000px;}
.y1f{bottom:1098.975000px;}
.y5da{bottom:1104.600000px;}
.y9c{bottom:1105.725000px;}
.y1c6{bottom:1109.100000px;}
.y5a4{bottom:1109.250000px;}
.y552{bottom:1109.850000px;}
.y538{bottom:1110.225000px;}
.y6{bottom:1112.475000px;}
.y2b1{bottom:1112.625000px;}
.y4df{bottom:1113.900000px;}
.y2af{bottom:1116.000000px;}
.y3d{bottom:1116.975000px;}
.yb8{bottom:1118.130000px;}
.y69{bottom:1120.380000px;}
.y23c{bottom:1121.625000px;}
.y537{bottom:1122.630000px;}
.y5bf{bottom:1123.755000px;}
.ye4{bottom:1124.880000px;}
.y551{bottom:1125.600000px;}
.y53a{bottom:1130.505000px;}
.y4de{bottom:1133.025000px;}
.y536{bottom:1133.880000px;}
.y626{bottom:1135.005000px;}
.yfe{bottom:1137.255000px;}
.y57{bottom:1138.380000px;}
.y608{bottom:1139.505000px;}
.y1ad{bottom:1140.630000px;}
.y1e{bottom:1141.755000px;}
.y535{bottom:1145.130000px;}
.y5{bottom:1146.255000px;}
.y4{bottom:1180.050000px;}
.y1c{bottom:1193.550000px;}
.y3{bottom:1213.830000px;}
.y1d{bottom:1237.455000px;}
.y1b{bottom:1238.580000px;}
.y2{bottom:1247.625000px;}
.hdb{height:7.576172px;}
.hb7{height:9.769530px;}
.hb8{height:9.769531px;}
.hb4{height:9.769538px;}
.h7e{height:10.436264px;}
.h6e{height:10.436266px;}
.h71{height:10.454573px;}
.h6d{height:10.454575px;}
.h77{height:10.454581px;}
.hbd{height:10.569076px;}
.hc9{height:10.587586px;}
.hba{height:16.985262px;}
.hb9{height:16.985264px;}
.h89{height:16.985319px;}
.he9{height:19.125000px;}
.h9a{height:20.070374px;}
.h99{height:20.070376px;}
.hb2{height:20.070378px;}
.hb3{height:20.070380px;}
.hb1{height:20.070382px;}
.haa{height:20.087513px;}
.ha9{height:20.087515px;}
.h9c{height:20.087571px;}
.he7{height:20.250000px;}
.h3f{height:20.287500px;}
.hcb{height:20.582859px;}
.h2c{height:21.375000px;}
.hd5{height:21.397500px;}
.h1e{height:21.412500px;}
.h74{height:21.440114px;}
.h73{height:21.440118px;}
.h85{height:21.440167px;}
.hc8{height:21.711955px;}
.hca{height:22.248738px;}
.h59{height:22.500000px;}
.h30{height:23.625000px;}
.h96{height:23.686812px;}
.h91{height:23.686814px;}
.h37{height:24.750000px;}
.h5b{height:24.787500px;}
.h2f{height:25.875000px;}
.hd{height:25.912500px;}
.hf6{height:26.985000px;}
.h55{height:27.000000px;}
.h26{height:27.037500px;}
.h88{height:27.377360px;}
.h33{height:28.125000px;}
.hf5{height:28.147500px;}
.hd9{height:28.162500px;}
.haf{height:28.178097px;}
.h6a{height:29.245773px;}
.h36{height:29.250000px;}
.h5c{height:29.287500px;}
.h8a{height:29.342850px;}
.ha3{height:29.342853px;}
.hbc{height:29.641907px;}
.h97{height:29.857036px;}
.h92{height:29.857038px;}
.hc1{height:30.041350px;}
.h84{height:30.101158px;}
.h9e{height:30.371222px;}
.h9f{height:30.371224px;}
.h9d{height:30.371226px;}
.h53{height:30.375000px;}
.h5a{height:30.412500px;}
.hc6{height:30.430850px;}
.h8b{height:30.753610px;}
.h44{height:31.485000px;}
.h5e{height:31.500000px;}
.h58{height:31.522500px;}
.h4c{height:31.537500px;}
.h95{height:31.659460px;}
.h8c{height:31.913777px;}
.had{height:31.913780px;}
.h98{height:32.427964px;}
.h93{height:32.427965px;}
.h76{height:32.443954px;}
.h75{height:32.443956px;}
.h6f{height:32.443958px;}
.h72{height:32.443960px;}
.h5f{height:32.610000px;}
.h34{height:32.625000px;}
.h48{height:32.647500px;}
.hf8{height:32.655000px;}
.h27{height:32.662500px;}
.hc0{height:32.817814px;}
.hc7{height:32.836324px;}
.h6c{height:32.852441px;}
.hbf{height:33.212268px;}
.hc3{height:33.373107px;}
.he8{height:33.750000px;}
.h39{height:33.787500px;}
.h70{height:33.820112px;}
.hc2{height:34.190538px;}
.h94{height:34.484705px;}
.ha2{height:34.484707px;}
.h51{height:34.875000px;}
.h1c{height:34.912500px;}
.h9{height:36.478546px;}
.hb5{height:37.569818px;}
.hb6{height:37.569820px;}
.hb0{height:37.569821px;}
.hcc{height:38.389254px;}
.h5d{height:40.537500px;}
.hae{height:40.672127px;}
.h25{height:41.668945px;}
.he3{height:41.795215px;}
.h22{height:42.787500px;}
.hc4{height:43.386891px;}
.h6b{height:43.447804px;}
.h83{height:43.447859px;}
.h20{height:43.912500px;}
.hc5{height:43.942184px;}
.hce{height:43.960693px;}
.hfb{height:45.037500px;}
.hfc{height:45.075000px;}
.h63{height:47.250000px;}
.h61{height:48.375000px;}
.he5{height:49.234131px;}
.hc{height:49.245117px;}
.he2{height:49.371387px;}
.he6{height:49.383325px;}
.hf9{height:49.992188px;}
.h4f{height:50.625000px;}
.hac{height:50.972917px;}
.ha8{height:50.972919px;}
.hab{height:50.972921px;}
.h32{height:51.750000px;}
.hd1{height:51.787500px;}
.h1d{height:51.908392px;}
.hcf{height:52.041491px;}
.h31{height:52.875000px;}
.hd8{height:52.912500px;}
.ha4{height:53.029658px;}
.ha6{height:53.029661px;}
.he4{height:53.159473px;}
.h35{height:54.037500px;}
.h80{height:54.433337px;}
.h81{height:54.433341px;}
.h82{height:54.433343px;}
.h7f{height:54.451646px;}
.h7d{height:54.451650px;}
.h7c{height:54.451652px;}
.h3b{height:55.162500px;}
.h3a{height:55.200000px;}
.h6{height:56.821289px;}
.h62{height:56.947559px;}
.h19{height:57.678223px;}
.h1b{height:57.806396px;}
.h8e{height:58.685698px;}
.h2{height:60.609375px;}
.h4e{height:60.735645px;}
.h13{height:61.523438px;}
.h1a{height:61.651611px;}
.ha1{height:61.770811px;}
.h9b{height:61.770813px;}
.ha7{height:61.770815px;}
.h8f{height:62.799182px;}
.h52{height:63.000000px;}
.hf2{height:63.075000px;}
.hbe{height:63.414457px;}
.h14{height:63.887252px;}
.h86{height:64.020350px;}
.h50{height:64.125000px;}
.h40{height:64.162500px;}
.h2d{height:64.200000px;}
.h10{height:64.613892px;}
.h49{height:64.850749px;}
.h4d{height:64.985855px;}
.h2e{height:65.287500px;}
.hd6{height:65.310000px;}
.h23{height:65.325000px;}
.h7a{height:65.437183px;}
.h78{height:65.437186px;}
.h3{height:67.137451px;}
.h16{height:71.613281px;}
.hd7{height:71.762476px;}
.hf1{height:71.824219px;}
.h24{height:71.973633px;}
.hd0{height:71.973853px;}
.h11{height:72.099902px;}
.h12{height:73.187256px;}
.ha5{height:73.617643px;}
.ha0{height:73.617646px;}
.h15{height:74.004654px;}
.h18{height:74.953125px;}
.h38{height:76.500000px;}
.hcd{height:77.889094px;}
.hf{height:78.192993px;}
.he{height:78.952148px;}
.heb{height:84.450000px;}
.h1f{height:85.575000px;}
.h4{height:87.252246px;}
.h5{height:88.568115px;}
.h66{height:96.825000px;}
.hed{height:96.862500px;}
.h4a{height:97.935000px;}
.h45{height:97.950000px;}
.hea{height:97.987500px;}
.h79{height:98.430416px;}
.h7b{height:98.430418px;}
.h4b{height:99.112500px;}
.he0{height:106.154297px;}
.h7{height:107.901270px;}
.h21{height:108.075000px;}
.h64{height:108.112500px;}
.hd2{height:117.075000px;}
.hdd{height:117.112500px;}
.hf0{height:118.237500px;}
.h60{height:121.500000px;}
.hdf{height:121.612500px;}
.h8d{height:121.999064px;}
.h90{height:121.999065px;}
.hef{height:124.987500px;}
.h47{height:129.487500px;}
.h46{height:130.612500px;}
.h29{height:130.650000px;}
.hec{height:133.987500px;}
.hf3{height:134.455078px;}
.hee{height:137.362500px;}
.hfa{height:141.862500px;}
.hb{height:144.150000px;}
.hda{height:145.237500px;}
.hde{height:146.362500px;}
.h17{height:154.406250px;}
.hdc{height:159.900000px;}
.h2b{height:162.150000px;}
.hf4{height:162.756851px;}
.h28{height:163.215000px;}
.he1{height:164.654297px;}
.h3c{height:167.906250px;}
.h65{height:175.650000px;}
.h2a{height:194.775000px;}
.hf7{height:194.820000px;}
.h43{height:203.906250px;}
.hd4{height:203.966250px;}
.hd3{height:204.026250px;}
.h3e{height:208.406250px;}
.h3d{height:208.526250px;}
.h41{height:221.906250px;}
.ha{height:268.005000px;}
.h42{height:271.406250px;}
.hbb{height:303.187860px;}
.h87{height:441.171141px;}
.h56{height:453.750000px;}
.h54{height:453.795000px;}
.h8{height:471.825000px;}
.h69{height:472.924901px;}
.h57{height:486.450000px;}
.h67{height:892.125000px;}
.h68{height:892.500000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w25{width:6.750000px;}
.w2d{width:6.787500px;}
.w2a{width:7.875000px;}
.w7a{width:34.625336px;}
.w7b{width:40.118514px;}
.w75{width:41.235460px;}
.w3{width:41.662500px;}
.w8b{width:48.413520px;}
.w76{width:48.907599px;}
.w94{width:48.992271px;}
.wa3{width:48.992272px;}
.w99{width:53.980508px;}
.wb3{width:54.075000px;}
.wa4{width:54.536817px;}
.w80{width:54.591779px;}
.wae{width:55.125000px;}
.wb8{width:58.575000px;}
.wb6{width:59.700000px;}
.wb5{width:63.075000px;}
.wb7{width:65.325000px;}
.w85{width:65.403731px;}
.w82{width:65.420894px;}
.w70{width:69.799987px;}
.w97{width:70.688319px;}
.w98{width:70.688320px;}
.w9a{width:70.706862px;}
.wb4{width:72.075000px;}
.wa7{width:73.200000px;}
.w3c{width:81.000000px;}
.w71{width:82.434298px;}
.w20{width:84.450000px;}
.w22{width:84.487500px;}
.w6e{width:90.688714px;}
.w8a{width:92.207076px;}
.wad{width:92.250000px;}
.w1a{width:93.375000px;}
.w87{width:94.273360px;}
.w6b{width:95.639899px;}
.w1e{width:96.750000px;}
.w86{width:98.385334px;}
.w81{width:98.385336px;}
.w84{width:98.392199px;}
.wb0{width:100.125000px;}
.w1b{width:103.500000px;}
.wa1{width:103.525378px;}
.w1c{width:104.625000px;}
.w6c{width:104.970978px;}
.w78{width:104.970979px;}
.w6f{width:104.978302px;}
.wc9{width:105.862500px;}
.w96{width:106.306923px;}
.wa2{width:106.314340px;}
.w14{width:106.875000px;}
.w5c{width:108.000000px;}
.w6d{width:110.471480px;}
.w3d{width:114.750000px;}
.w5b{width:115.875000px;}
.w34{width:116.025000px;}
.w42{width:118.125000px;}
.wcb{width:119.400000px;}
.w90{width:120.530958px;}
.wb2{width:123.750000px;}
.w3e{width:124.875000px;}
.wa0{width:125.785151px;}
.w58{width:126.150000px;}
.w57{width:127.275000px;}
.w8d{width:131.342911px;}
.w89{width:131.356640px;}
.w83{width:131.356642px;}
.wcc{width:131.812500px;}
.wb1{width:135.000000px;}
.w1d{width:136.125000px;}
.wac{width:136.312500px;}
.waf{width:137.250000px;}
.w51{width:137.400000px;}
.w12{width:139.500000px;}
.wb9{width:139.650000px;}
.wd1{width:139.687500px;}
.w72{width:140.149292px;}
.w79{width:140.149294px;}
.wd2{width:140.775000px;}
.wa9{width:140.812500px;}
.w91{width:141.138882px;}
.w9c{width:141.932945px;}
.w95{width:141.932946px;}
.w9e{width:141.955197px;}
.w43{width:142.875000px;}
.w5d{width:145.125000px;}
.waa{width:146.437500px;}
.w13{width:151.875000px;}
.w74{width:152.783603px;}
.w5f{width:154.125000px;}
.w60{width:155.250000px;}
.wbc{width:157.695000px;}
.w38{width:158.820000px;}
.w8e{width:160.209107px;}
.w40{width:163.125000px;}
.w5e{width:169.875000px;}
.w17{width:172.125000px;}
.w56{width:180.225000px;}
.w62{width:181.125000px;}
.w61{width:182.250000px;}
.wbb{width:182.475000px;}
.w3f{width:185.625000px;}
.w11{width:186.750000px;}
.w16{width:189.000000px;}
.w3a{width:190.350000px;}
.wba{width:196.005000px;}
.w8c{width:197.292387px;}
.wf{width:201.600000px;}
.w77{width:201.709511px;}
.wab{width:202.755000px;}
.wca{width:205.020000px;}
.wc5{width:209.520000px;}
.w73{width:210.498597px;}
.w15{width:211.500000px;}
.w36{width:211.755000px;}
.w9d{width:213.177571px;}
.w18{width:214.875000px;}
.w65{width:223.020000px;}
.wc3{width:225.270000px;}
.wc1{width:226.395000px;}
.wc2{width:226.425000px;}
.w4{width:228.495000px;}
.w2b{width:229.800000px;}
.w9f{width:229.866838px;}
.wc{width:244.425000px;}
.w23{width:253.425000px;}
.w21{width:254.595000px;}
.w8f{width:262.177830px;}
.w41{width:266.625000px;}
.w4e{width:269.205000px;}
.wa5{width:275.970000px;}
.w4d{width:278.250000px;}
.w28{width:290.625000px;}
.w26{width:315.405000px;}
.w35{width:318.750000px;}
.w54{width:325.500000px;}
.wc7{width:339.030000px;}
.wc8{width:339.045000px;}
.wc6{width:342.420000px;}
.w32{width:352.575000px;}
.wc0{width:363.825000px;}
.w50{width:364.950000px;}
.w4c{width:375.075000px;}
.w64{width:382.950000px;}
.wbf{width:388.650000px;}
.w2c{width:396.480000px;}
.wa6{width:402.120000px;}
.wbe{width:411.150000px;}
.w49{width:415.650000px;}
.wa8{width:422.400000px;}
.w4a{width:424.650000px;}
.wc4{width:429.150000px;}
.wd{width:434.775000px;}
.w2f{width:440.430000px;}
.w48{width:444.900000px;}
.w30{width:447.180000px;}
.w66{width:456.195000px;}
.w4f{width:456.225000px;}
.w37{width:466.320000px;}
.w10{width:477.600000px;}
.wce{width:485.475000px;}
.w3b{width:487.725000px;}
.w59{width:491.100000px;}
.w2e{width:491.130000px;}
.w4b{width:492.225000px;}
.we{width:496.725000px;}
.w5a{width:498.975000px;}
.wcf{width:501.225000px;}
.w39{width:519.270000px;}
.wcd{width:521.550000px;}
.w31{width:522.675000px;}
.w52{width:540.675000px;}
.w24{width:572.205000px;}
.wbd{width:577.860000px;}
.w47{width:595.875000px;}
.w27{width:597.000000px;}
.w1f{width:611.625000px;}
.w45{width:622.875000px;}
.w29{width:645.450000px;}
.w46{width:669.075000px;}
.w53{width:673.575000px;}
.w19{width:674.700000px;}
.w63{width:676.950000px;}
.w44{width:678.075000px;}
.w55{width:679.200000px;}
.wb{width:680.325000px;}
.w33{width:681.450000px;}
.wd0{width:704.025000px;}
.wa{width:821.174973px;}
.w9{width:892.124987px;}
.w7{width:892.125000px;}
.w8{width:892.500000px;}
.w6{width:893.249987px;}
.w5{width:893.250000px;}
.w7c{width:1049.197077px;}
.w9b{width:1049.198587px;}
.w88{width:1049.274229px;}
.w93{width:1049.743701px;}
.w6a{width:1049.746404px;}
.w7f{width:1049.782228px;}
.w7e{width:1049.782229px;}
.w92{width:1050.570000px;}
.w7d{width:1051.695000px;}
.w69{width:1263.374981px;}
.w67{width:1263.375000px;}
.w68{width:1263.750000px;}
.w2{width:1846.124972px;}
.w0{width:1846.125000px;}
.w1{width:1846.500000px;}
.x78{left:-1.125000px;}
.x0{left:0.000000px;}
.x11c{left:1.098637px;}
.x119{left:2.197272px;}
.x125{left:3.295908px;}
.x123{left:4.394543px;}
.x11f{left:5.493179px;}
.xf2{left:6.750000px;}
.x46{left:7.875000px;}
.x113{left:9.338403px;}
.x69{left:10.650000px;}
.x105{left:12.120000px;}
.x6b{left:13.170000px;}
.x9e{left:14.625000px;}
.x9c{left:15.750000px;}
.x9{left:16.875000px;}
.x62{left:18.000000px;}
.x61{left:19.620000px;}
.x59{left:20.625000px;}
.xc2{left:22.687500px;}
.x130{left:23.697054px;}
.xbf{left:24.900000px;}
.x17d{left:25.920000px;}
.xb{left:27.000000px;}
.x5c{left:28.725000px;}
.x117{left:30.227130px;}
.x11d{left:31.329429px;}
.xe{left:32.610000px;}
.xf9{left:33.780000px;}
.x120{left:35.178315px;}
.xf7{left:37.170000px;}
.xf6{left:38.295000px;}
.xf3{left:39.420000px;}
.x9d{left:41.662500px;}
.x19d{left:42.780000px;}
.x57{left:44.100000px;}
.x11e{left:46.161010px;}
.x135{left:47.380378px;}
.xb0{left:48.405000px;}
.xf0{left:49.530000px;}
.x18b{left:50.655000px;}
.x19a{left:51.825000px;}
.xf5{left:52.950000px;}
.xf4{left:54.030000px;}
.x124{left:55.517724px;}
.x4c{left:57.450000px;}
.x189{left:58.575000px;}
.xbe{left:59.880000px;}
.xa2{left:61.950000px;}
.xf8{left:63.075000px;}
.x144{left:64.200000px;}
.x18c{left:65.325000px;}
.x160{left:67.560000px;}
.xb3{left:68.700000px;}
.x109{left:70.200000px;}
.xe7{left:72.060000px;}
.x134{left:75.203135px;}
.x195{left:77.700000px;}
.x10e{left:81.075000px;}
.x5d{left:82.800000px;}
.x11b{left:86.843489px;}
.xe5{left:87.855000px;}
.x9a{left:92.355000px;}
.x1c5{left:94.612500px;}
.x162{left:95.730000px;}
.x199{left:96.870000px;}
.xc8{left:97.987500px;}
.x71{left:99.150000px;}
.xea{left:100.245000px;}
.x44{left:101.370000px;}
.x9b{left:104.745000px;}
.x92{left:105.900000px;}
.x14{left:107.024987px;}
.x29{left:108.149987px;}
.x10a{left:109.275000px;}
.x3d{left:111.495000px;}
.xc0{left:114.750000px;}
.x54{left:118.125000px;}
.xd5{left:120.524987px;}
.xdf{left:121.650000px;}
.xdd{left:122.775000px;}
.x6d{left:123.907500px;}
.x25{left:125.024987px;}
.xd2{left:126.149987px;}
.x15{left:127.274987px;}
.x56{left:129.375000px;}
.x15e{left:132.900000px;}
.x2e{left:134.062487px;}
.x55{left:136.125000px;}
.x6c{left:140.812500px;}
.x197{left:141.930000px;}
.x26{left:143.062487px;}
.x3f{left:145.312487px;}
.x93{left:146.400000px;}
.x96{left:147.562487px;}
.xd7{left:148.687500px;}
.x2b{left:149.812487px;}
.xc4{left:153.180000px;}
.xde{left:154.320000px;}
.xbd{left:156.375000px;}
.x1c{left:157.679987px;}
.x2f{left:161.054987px;}
.xc6{left:162.179987px;}
.x3a{left:166.724973px;}
.x65{left:168.750000px;}
.x15c{left:170.055000px;}
.x164{left:175.724987px;}
.x52{left:179.100000px;}
.x45{left:181.350000px;}
.x198{left:182.460000px;}
.xdb{left:183.600000px;}
.x149{left:185.249987px;}
.x147{left:187.649987px;}
.xd6{left:189.224987px;}
.x24{left:190.349987px;}
.x70{left:191.475000px;}
.x14a{left:193.124987px;}
.x148{left:194.249987px;}
.xa4{left:195.975000px;}
.xfb{left:197.145000px;}
.x4b{left:198.270000px;}
.xd8{left:200.512500px;}
.xfa{left:201.645000px;}
.x10b{left:203.850000px;}
.xca{left:206.130000px;}
.x1e{left:208.394987px;}
.xe8{left:209.519987px;}
.x18e{left:210.630000px;}
.x19c{left:212.895000px;}
.x10d{left:214.019987px;}
.x182{left:215.144987px;}
.xb2{left:216.255000px;}
.xe4{left:218.520000px;}
.xc9{left:219.629987px;}
.x67{left:221.625000px;}
.xa5{left:223.049987px;}
.x99{left:224.175000px;}
.x1af{left:225.299987px;}
.x1ac{left:226.424987px;}
.xec{left:227.505000px;}
.x106{left:229.500000px;}
.xb5{left:230.925000px;}
.xa1{left:232.049987px;}
.xed{left:233.145000px;}
.xc7{left:234.299987px;}
.x73{left:235.424987px;}
.x43{left:236.549987px;}
.xd0{left:237.674987px;}
.xdc{left:238.800000px;}
.x184{left:241.050000px;}
.x6e{left:242.174987px;}
.x1b0{left:243.299987px;}
.x1c1{left:244.424987px;}
.xe9{left:245.550000px;}
.xee{left:246.675000px;}
.x17f{left:247.800000px;}
.xbb{left:248.924987px;}
.x1b4{left:250.049987px;}
.x38{left:251.744987px;}
.x194{left:253.454987px;}
.x1a4{left:254.594987px;}
.x10c{left:255.720000px;}
.x39{left:259.619987px;}
.xe6{left:264.720000px;}
.xa6{left:266.970000px;}
.x1b5{left:268.094987px;}
.x6f{left:269.219987px;}
.x1bb{left:271.469987px;}
.x15d{left:272.595000px;}
.x15f{left:273.720000px;}
.xab{left:274.844987px;}
.xcb{left:275.955000px;}
.xb4{left:277.095000px;}
.x58{left:279.000000px;}
.x1b6{left:280.454987px;}
.xd4{left:281.594987px;}
.xeb{left:283.875000px;}
.x188{left:286.124987px;}
.xef{left:287.250000px;}
.x100{left:289.125000px;}
.x4d{left:290.624987px;}
.x1a3{left:295.124987px;}
.xa7{left:296.249987px;}
.x165{left:297.374987px;}
.xb1{left:298.500000px;}
.x9f{left:299.624987px;}
.x17e{left:301.875000px;}
.xaf{left:302.999987px;}
.xb6{left:304.125000px;}
.x1c2{left:305.249987px;}
.x51{left:307.499987px;}
.x50{left:308.625000px;}
.xd1{left:309.749987px;}
.xe3{left:312.045000px;}
.x181{left:314.250000px;}
.x1f{left:316.529987px;}
.x37{left:318.644987px;}
.xa3{left:319.920000px;}
.x64{left:321.000000px;}
.x18f{left:322.125000px;}
.x142{left:324.404987px;}
.x1a{left:325.544987px;}
.x183{left:328.919987px;}
.x10f{left:330.045000px;}
.x40{left:331.154987px;}
.x190{left:332.295000px;}
.x2c{left:333.404987px;}
.x14f{left:335.204987px;}
.x12{left:336.779987px;}
.x11{left:339.044987px;}
.x14b{left:340.844987px;}
.x14d{left:341.954987px;}
.xd3{left:343.574987px;}
.x4a{left:344.969987px;}
.x14c{left:346.469987px;}
.x82{left:349.199987px;}
.x145{left:350.324987px;}
.x10{left:351.449987px;}
.xac{left:352.574987px;}
.x14e{left:354.374987px;}
.x90{left:355.949987px;}
.x74{left:357.074987px;}
.xe0{left:358.199987px;}
.x3b{left:359.324987px;}
.x60{left:363.375000px;}
.x1b3{left:366.074987px;}
.x18{left:371.744987px;}
.x177{left:373.500000px;}
.x175{left:374.625000px;}
.x176{left:376.875000px;}
.x187{left:381.869987px;}
.x94{left:382.994987px;}
.x143{left:384.120000px;}
.x8d{left:385.244987px;}
.x8e{left:387.494987px;}
.x83{left:388.619973px;}
.x107{left:390.375000px;}
.x1b8{left:394.244987px;}
.x41{left:395.369987px;}
.x8f{left:396.479987px;}
.x1a0{left:397.619987px;}
.xe1{left:398.744987px;}
.x84{left:400.995000px;}
.x20{left:402.149987px;}
.x1b9{left:403.274987px;}
.x32{left:404.399987px;}
.x23{left:405.524987px;}
.x2a{left:406.649987px;}
.x68{left:410.625000px;}
.x1b{left:412.274987px;}
.x185{left:413.399987px;}
.x191{left:414.524987px;}
.xf1{left:415.650000px;}
.x47{left:416.999987px;}
.x166{left:419.024987px;}
.x161{left:421.275000px;}
.x108{left:423.000000px;}
.x179{left:426.900000px;}
.xce{left:428.024987px;}
.x141{left:430.271556px;}
.x85{left:432.569973px;}
.x1aa{left:433.694987px;}
.x5a{left:436.500000px;}
.x86{left:439.320000px;}
.x12f{left:441.972016px;}
.x196{left:443.820000px;}
.x87{left:444.945000px;}
.x1a5{left:446.069987px;}
.x1d{left:447.194987px;}
.x5b{left:450.000000px;}
.xa9{left:453.944987px;}
.x88{left:455.069987px;}
.x101{left:457.875000px;}
.x8c{left:459.569987px;}
.x95{left:460.694987px;}
.x75{left:461.849987px;}
.x16{left:462.974987px;}
.x66{left:468.000000px;}
.x13e{left:469.784323px;}
.x42{left:470.849987px;}
.x3c{left:471.974987px;}
.x133{left:477.510732px;}
.x153{left:479.444987px;}
.x49{left:481.229987px;}
.x151{left:486.194987px;}
.x17a{left:489.975000px;}
.x35{left:491.474987px;}
.x155{left:495.224987px;}
.x150{left:498.599987px;}
.xcf{left:500.129987px;}
.x12d{left:502.465607px;}
.x36{left:506.099987px;}
.x156{left:507.599987px;}
.x33{left:509.144987px;}
.x154{left:510.974987px;}
.x89{left:514.754973px;}
.x152{left:516.599987px;}
.x48{left:517.799987px;}
.x18d{left:520.379987px;}
.x8a{left:521.550000px;}
.x8b{left:527.175000px;}
.xa8{left:529.424987px;}
.xa0{left:530.549987px;}
.xbc{left:531.674987px;}
.x72{left:532.800000px;}
.x139{left:533.924060px;}
.xad{left:536.174987px;}
.xff{left:538.424987px;}
.x4e{left:539.549987px;}
.x1bd{left:540.674987px;}
.x16e{left:542.474987px;}
.x170{left:543.629987px;}
.x178{left:545.625000px;}
.x34{left:546.674987px;}
.x171{left:548.099987px;}
.x167{left:549.419987px;}
.x169{left:550.529987px;}
.x16a{left:551.654987px;}
.x16b{left:553.904987px;}
.x21{left:555.344987px;}
.x16d{left:558.269987px;}
.xfe{left:559.844987px;}
.x18a{left:560.970000px;}
.x76{left:564.329973px;}
.x30{left:565.469987px;}
.x12c{left:568.401351px;}
.x16c{left:569.669987px;}
.x77{left:571.095000px;}
.x1b1{left:575.594987px;}
.x79{left:576.720000px;}
.x16f{left:578.549987px;}
.x172{left:579.674987px;}
.x63{left:582.345000px;}
.x7a{left:583.499987px;}
.x168{left:585.449987px;}
.xaa{left:586.874987px;}
.x7b{left:589.124973px;}
.xcc{left:590.249987px;}
.x5e{left:591.750000px;}
.x5f{left:594.000000px;}
.x4f{left:595.874987px;}
.xae{left:598.124987px;}
.x6a{left:601.875000px;}
.x19b{left:603.749987px;}
.x13d{left:605.168686px;}
.x7c{left:608.249987px;}
.x157{left:611.444987px;}
.x17b{left:613.905000px;}
.xba{left:616.154987px;}
.xc1{left:619.875000px;}
.x163{left:624.030000px;}
.xc5{left:626.279987px;}
.x180{left:628.530000px;}
.xfc{left:629.654987px;}
.xfd{left:631.919987px;}
.x1b2{left:633.029987px;}
.x12e{left:634.337102px;}
.x7d{left:637.529973px;}
.xc3{left:640.125000px;}
.x158{left:641.699987px;}
.x159{left:642.824987px;}
.x7e{left:644.325000px;}
.x111{left:646.876691px;}
.x7f{left:649.950000px;}
.x15a{left:652.949987px;}
.x15b{left:654.074987px;}
.x80{left:655.575000px;}
.x1a6{left:657.824987px;}
.x97{left:658.949987px;}
.xb7{left:660.074987px;}
.xcd{left:661.199987px;}
.x22{left:662.324987px;}
.xd9{left:663.449987px;}
.x192{left:664.574987px;}
.x1c3{left:665.699987px;}
.x102{left:667.125000px;}
.x81{left:669.074987px;}
.x31{left:670.229987px;}
.x19f{left:671.369987px;}
.x1ae{left:672.494987px;}
.x13b{left:676.428149px;}
.x186{left:678.119987px;}
.x17c{left:679.245000px;}
.x1a7{left:680.354987px;}
.x118{left:681.878058px;}
.x1be{left:685.994987px;}
.x128{left:689.219057px;}
.x104{left:690.479987px;}
.x1c4{left:692.744987px;}
.x1a8{left:698.369987px;}
.x1bf{left:704.024987px;}
.x1bc{left:708.524987px;}
.xb8{left:711.899987px;}
.x103{left:713.024987px;}
.x1ba{left:719.774987px;}
.x3e{left:720.899987px;}
.x1c0{left:722.024987px;}
.x19e{left:723.149987px;}
.xda{left:727.649987px;}
.xb9{left:728.774987px;}
.x1ad{left:731.069987px;}
.x146{left:732.194987px;}
.xe2{left:734.444987px;}
.x1a9{left:738.944987px;}
.x1a2{left:741.194987px;}
.x1a1{left:742.319987px;}
.x98{left:743.444987px;}
.x13f{left:747.680191px;}
.x173{left:749.250000px;}
.x115{left:752.227362px;}
.x174{left:754.875000px;}
.x1b7{left:756.944987px;}
.x91{left:760.349987px;}
.x53{left:769.349987px;}
.x28{left:770.474987px;}
.x27{left:773.849987px;}
.x193{left:776.099987px;}
.x19{left:777.224987px;}
.x2d{left:778.349987px;}
.x17{left:780.599987px;}
.x1ab{left:782.849987px;}
.x13{left:783.974987px;}
.x121{left:787.405679px;}
.x1c6{left:789.629987px;}
.x129{left:795.054193px;}
.x138{left:818.219133px;}
.x122{left:822.576670px;}
.x131{left:850.164264px;}
.x116{left:863.248160px;}
.x126{left:871.544981px;}
.x137{left:874.014234px;}
.x4{left:893.819972px;}
.x5{left:903.944972px;}
.x11a{left:905.032938px;}
.x8{left:906.195000px;}
.xa{left:907.320000px;}
.xc{left:908.445000px;}
.x3{left:918.569972px;}
.x13c{left:923.562815px;}
.x132{left:942.886194px;}
.x112{left:954.486199px;}
.x2{left:965.849972px;}
.x13a{left:978.103338px;}
.x12b{left:991.817997px;}
.x140{left:1049.347964px;}
.x114{left:1050.675407px;}
.x12a{left:1057.753744px;}
.x136{left:1067.474981px;}
.x127{left:1077.599981px;}
.x1c7{left:1131.629981px;}
.x110{left:1140.644981px;}
.xd{left:1256.295000px;}
.x7{left:1284.419972px;}
.x6{left:1285.529972px;}
.xf{left:1287.524987px;}
.x1{left:1687.424972px;}
@media print{
.v3{vertical-align:-15.946667pt;}
.v1{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.000000pt;}
.v2{vertical-align:12.000000pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:44.000000pt;}
.v4{vertical-align:48.106667pt;}
.v7{vertical-align:52.000000pt;}
.ls1f{letter-spacing:-3.584000pt;}
.ls8{letter-spacing:-3.360000pt;}
.ls59{letter-spacing:-1.793345pt;}
.ls1e{letter-spacing:-1.765236pt;}
.ls5b{letter-spacing:-1.760000pt;}
.ls4e{letter-spacing:-1.725884pt;}
.ls45{letter-spacing:-1.696000pt;}
.ls23{letter-spacing:-1.637333pt;}
.ls5{letter-spacing:-1.600000pt;}
.lsd{letter-spacing:-1.472000pt;}
.ls6{letter-spacing:-1.376000pt;}
.ls50{letter-spacing:-1.343603pt;}
.ls5c{letter-spacing:-1.226745pt;}
.ls4c{letter-spacing:-1.216000pt;}
.ls57{letter-spacing:-1.213454pt;}
.ls5a{letter-spacing:-1.135931pt;}
.lse{letter-spacing:-1.120000pt;}
.ls58{letter-spacing:-0.950452pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls46{letter-spacing:-0.800000pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls64{letter-spacing:-0.224000pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls60{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.096000pt;}
.ls52{letter-spacing:-0.090133pt;}
.ls21{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls66{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.320000pt;}
.ls56{letter-spacing:0.382400pt;}
.ls17{letter-spacing:0.384000pt;}
.ls5f{letter-spacing:0.394667pt;}
.ls20{letter-spacing:0.416000pt;}
.ls1b{letter-spacing:0.421333pt;}
.ls4{letter-spacing:0.438498pt;}
.lsb{letter-spacing:0.448000pt;}
.ls6e{letter-spacing:0.472229pt;}
.ls27{letter-spacing:0.480000pt;}
.ls70{letter-spacing:0.501333pt;}
.ls26{letter-spacing:0.533333pt;}
.ls38{letter-spacing:0.544000pt;}
.ls6f{letter-spacing:0.554667pt;}
.ls19{letter-spacing:0.581333pt;}
.ls48{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:0.608000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.674612pt;}
.ls32{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.821333pt;}
.ls13{letter-spacing:0.896000pt;}
.ls18{letter-spacing:0.992000pt;}
.ls16{letter-spacing:1.216000pt;}
.ls54{letter-spacing:1.312000pt;}
.ls31{letter-spacing:1.386667pt;}
.ls40{letter-spacing:1.440000pt;}
.ls6d{letter-spacing:1.600000pt;}
.ls6c{letter-spacing:1.706667pt;}
.ls6a{letter-spacing:1.728000pt;}
.ls6b{letter-spacing:1.760000pt;}
.ls4a{letter-spacing:1.792000pt;}
.ls69{letter-spacing:1.824000pt;}
.ls5d{letter-spacing:1.920000pt;}
.ls28{letter-spacing:1.952000pt;}
.ls42{letter-spacing:2.026667pt;}
.ls68{letter-spacing:2.080000pt;}
.ls2d{letter-spacing:2.112000pt;}
.ls71{letter-spacing:2.158760pt;}
.ls2a{letter-spacing:2.524000pt;}
.ls3b{letter-spacing:2.577333pt;}
.ls36{letter-spacing:2.630667pt;}
.ls47{letter-spacing:2.666667pt;}
.ls29{letter-spacing:2.684000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls53{letter-spacing:2.784000pt;}
.ls15{letter-spacing:2.826667pt;}
.ls30{letter-spacing:2.860000pt;}
.ls63{letter-spacing:2.880000pt;}
.ls37{letter-spacing:3.178667pt;}
.ls2b{letter-spacing:3.390667pt;}
.ls3a{letter-spacing:3.444000pt;}
.ls3c{letter-spacing:3.497333pt;}
.ls25{letter-spacing:3.712000pt;}
.ls1c{letter-spacing:4.000000pt;}
.ls55{letter-spacing:4.160000pt;}
.ls41{letter-spacing:4.480000pt;}
.ls4f{letter-spacing:4.640000pt;}
.ls35{letter-spacing:12.480000pt;}
.ls67{letter-spacing:14.208000pt;}
.ls5e{letter-spacing:14.304000pt;}
.ls62{letter-spacing:14.464000pt;}
.ls43{letter-spacing:14.470667pt;}
.ls2e{letter-spacing:14.524000pt;}
.ls33{letter-spacing:16.480000pt;}
.ls49{letter-spacing:16.586667pt;}
.ls2c{letter-spacing:16.640000pt;}
.ls3e{letter-spacing:18.630667pt;}
.ls44{letter-spacing:18.684000pt;}
.ls3d{letter-spacing:20.640000pt;}
.ls39{letter-spacing:22.524000pt;}
.ls51{letter-spacing:30.181333pt;}
.ls1d{letter-spacing:50.181333pt;}
.ls24{letter-spacing:50.368000pt;}
.lsa{letter-spacing:69.669333pt;}
.ls10{letter-spacing:160.160000pt;}
.ls2f{letter-spacing:231.530667pt;}
.ls3f{letter-spacing:235.530667pt;}
.ls34{letter-spacing:254.741333pt;}
.ls0{letter-spacing:742.920267pt;}
.ls9{letter-spacing:752.906667pt;}
.wsf{word-spacing:-64.000000pt;}
.ws13{word-spacing:-19.000000pt;}
.ws3e{word-spacing:-18.080000pt;}
.ws40{word-spacing:-17.920000pt;}
.ws3f{word-spacing:-17.824000pt;}
.ws27{word-spacing:-17.312000pt;}
.wsc{word-spacing:-17.216000pt;}
.wsd{word-spacing:-16.992000pt;}
.ws22{word-spacing:-16.900448pt;}
.ws2{word-spacing:-16.865312pt;}
.ws17{word-spacing:-16.768000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws3b{word-spacing:-16.581333pt;}
.wse{word-spacing:-16.448000pt;}
.ws3d{word-spacing:-16.416000pt;}
.ws28{word-spacing:-16.415733pt;}
.ws3c{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.096000pt;}
.ws25{word-spacing:-16.033333pt;}
.ws19{word-spacing:-16.032000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.968000pt;}
.ws26{word-spacing:-15.943200pt;}
.ws24{word-spacing:-15.904000pt;}
.ws1c{word-spacing:-15.872000pt;}
.ws1e{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.712000pt;}
.ws1b{word-spacing:-15.520000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws10{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.880000pt;}
.ws21{word-spacing:-14.784000pt;}
.ws4{word-spacing:-14.624000pt;}
.ws7{word-spacing:-14.528000pt;}
.ws34{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.400000pt;}
.ws18{word-spacing:-14.304000pt;}
.ws2e{word-spacing:-14.240000pt;}
.ws16{word-spacing:-14.080000pt;}
.ws32{word-spacing:-13.856000pt;}
.ws15{word-spacing:-13.703066pt;}
.ws37{word-spacing:-13.033333pt;}
.ws38{word-spacing:-13.000000pt;}
.ws31{word-spacing:-12.960000pt;}
.ws23{word-spacing:-11.977183pt;}
.ws2b{word-spacing:-11.944857pt;}
.ws11{word-spacing:-11.937830pt;}
.ws41{word-spacing:-11.440000pt;}
.ws39{word-spacing:-11.033333pt;}
.ws14{word-spacing:-11.000000pt;}
.ws3a{word-spacing:-9.944000pt;}
.ws1a{word-spacing:-9.680000pt;}
.ws42{word-spacing:-7.000000pt;}
.ws30{word-spacing:-6.708005pt;}
.ws2a{word-spacing:-6.635329pt;}
.ws2d{word-spacing:-6.211421pt;}
.ws2f{word-spacing:-5.815587pt;}
.ws2c{word-spacing:-5.371295pt;}
.ws35{word-spacing:-4.789333pt;}
.ws33{word-spacing:-3.829333pt;}
.ws36{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:20.955522pt;}
.ws20{word-spacing:60.640000pt;}
.ws1f{word-spacing:72.586667pt;}
.ws1d{word-spacing:96.640000pt;}
._2a{margin-left:-547.072000pt;}
._32{margin-left:-28.768000pt;}
._2e{margin-left:-25.752667pt;}
._2f{margin-left:-24.532000pt;}
._40{margin-left:-21.540000pt;}
._e{margin-left:-11.700933pt;}
._10{margin-left:-10.779600pt;}
._21{margin-left:-8.846372pt;}
._1c{margin-left:-7.904562pt;}
._f{margin-left:-6.357200pt;}
._27{margin-left:-5.415333pt;}
._6{margin-left:-4.422400pt;}
._9{margin-left:-3.408933pt;}
._1{margin-left:-1.658400pt;}
._0{width:1.197733pt;}
._2{width:2.119067pt;}
._a{width:3.446028pt;}
._1a{width:4.800000pt;}
._1e{width:5.726105pt;}
._b{width:6.745333pt;}
._1b{width:8.277410pt;}
._7{width:9.305467pt;}
._20{width:10.431741pt;}
._1d{width:11.783067pt;}
._8{width:12.714400pt;}
._c{width:13.635733pt;}
._1f{width:15.028000pt;}
._31{width:16.239790pt;}
._d{width:17.413200pt;}
._12{width:19.162133pt;}
._11{width:20.416000pt;}
._42{width:21.370709pt;}
._30{width:22.455333pt;}
._14{width:23.394533pt;}
._13{width:24.305200pt;}
._41{width:25.947053pt;}
._19{width:27.154800pt;}
._18{width:28.062933pt;}
._2b{width:29.617333pt;}
._22{width:31.127333pt;}
._23{width:32.047200pt;}
._29{width:33.072800pt;}
._48{width:33.978959pt;}
._24{width:35.539733pt;}
._15{width:36.620667pt;}
._49{width:38.325432pt;}
._16{width:40.000000pt;}
._17{width:40.889200pt;}
._38{width:42.404631pt;}
._25{width:44.218400pt;}
._39{width:47.042888pt;}
._26{width:48.199067pt;}
._3a{width:49.536000pt;}
._3c{width:50.431536pt;}
._2c{width:51.880667pt;}
._28{width:52.841600pt;}
._43{width:55.195449pt;}
._2d{width:56.820800pt;}
._37{width:59.234533pt;}
._3b{width:60.199950pt;}
._3d{width:62.618454pt;}
._35{width:64.241200pt;}
._33{width:67.878000pt;}
._34{width:68.794400pt;}
._36{width:72.939733pt;}
._5{width:92.686133pt;}
._3{width:96.740000pt;}
._3f{width:99.758267pt;}
._3e{width:100.697333pt;}
._4{width:105.584800pt;}
._47{width:153.062850pt;}
._46{width:156.160000pt;}
._44{width:160.467550pt;}
._45{width:164.487094pt;}
.fs17{font-size:8.000000pt;}
.fs11{font-size:23.766792pt;}
.fsd{font-size:25.388796pt;}
.fs14{font-size:25.732688pt;}
.fs12{font-size:27.484162pt;}
.fs1b{font-size:28.000000pt;}
.fs13{font-size:29.312377pt;}
.fse{font-size:29.359864pt;}
.fs15{font-size:29.681438pt;}
.fsf{font-size:31.312849pt;}
.fs16{font-size:31.655813pt;}
.fs3{font-size:37.946952pt;}
.fsb{font-size:44.000000pt;}
.fs19{font-size:44.133333pt;}
.fs4{font-size:52.000000pt;}
.fs18{font-size:52.133333pt;}
.fs9{font-size:54.812265pt;}
.fs10{font-size:54.952809pt;}
.fs1a{font-size:56.133333pt;}
.fs1{font-size:60.000000pt;}
.fs8{font-size:60.133333pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.133333pt;}
.fs6{font-size:67.461249pt;}
.fsc{font-size:67.601793pt;}
.fsa{font-size:76.000000pt;}
.fs5{font-size:76.133333pt;}
.fs2{font-size:92.133333pt;}
.y190{bottom:-19.226667pt;}
.y5a0{bottom:-17.426667pt;}
.y59b{bottom:-0.560000pt;}
.y18d{bottom:-0.400000pt;}
.y599{bottom:-0.266667pt;}
.y0{bottom:0.000000pt;}
.y56c{bottom:0.293333pt;}
.y5a3{bottom:0.360000pt;}
.y59d{bottom:0.506667pt;}
.y18a{bottom:0.600000pt;}
.y597{bottom:0.666667pt;}
.y234{bottom:0.773333pt;}
.y593{bottom:0.866667pt;}
.y2cd{bottom:1.666667pt;}
.y5a7{bottom:1.800000pt;}
.y3f4{bottom:1.828217pt;}
.y400{bottom:1.828219pt;}
.y466{bottom:1.828220pt;}
.y315{bottom:1.952987pt;}
.y30f{bottom:1.952988pt;}
.y301{bottom:1.952989pt;}
.y367{bottom:1.966008pt;}
.y372{bottom:1.966009pt;}
.y3a4{bottom:1.969263pt;}
.y346{bottom:1.972518pt;}
.y39b{bottom:1.972519pt;}
.y47a{bottom:1.974375pt;}
.y491{bottom:1.994119pt;}
.y585{bottom:2.200000pt;}
.y460{bottom:2.285276pt;}
.y33e{bottom:2.441233pt;}
.y313{bottom:2.441234pt;}
.y374{bottom:2.454253pt;}
.y32a{bottom:2.454256pt;}
.y3a6{bottom:2.457508pt;}
.y348{bottom:2.460763pt;}
.y579{bottom:2.466667pt;}
.y493{bottom:2.467969pt;}
.y490{bottom:2.481131pt;}
.y595{bottom:2.773333pt;}
.y143{bottom:3.000000pt;}
.y2ed{bottom:3.013333pt;}
.y4cf{bottom:3.026667pt;}
.y13e{bottom:3.040000pt;}
.y56e{bottom:3.266667pt;}
.y589{bottom:3.293333pt;}
.y57f{bottom:3.333333pt;}
.y581{bottom:3.373333pt;}
.y577{bottom:3.440000pt;}
.y57b{bottom:3.560000pt;}
.y3f2{bottom:3.656432pt;}
.y572{bottom:3.666667pt;}
.y574{bottom:3.706667pt;}
.y2bc{bottom:3.840000pt;}
.y5a5{bottom:3.866667pt;}
.y148{bottom:4.000000pt;}
.y146{bottom:4.013333pt;}
.y17a{bottom:4.026667pt;}
.y583{bottom:4.200000pt;}
.y587{bottom:4.226667pt;}
.y57d{bottom:4.506667pt;}
.y570{bottom:4.600000pt;}
.y2d0{bottom:4.626667pt;}
.y185{bottom:4.666667pt;}
.y192{bottom:4.706667pt;}
.y1a3{bottom:4.773333pt;}
.y2c2{bottom:4.800000pt;}
.y2c0{bottom:4.866667pt;}
.y51a{bottom:5.000000pt;}
.y51b{bottom:5.026667pt;}
.y194{bottom:5.466667pt;}
.y468{bottom:5.484648pt;}
.y46a{bottom:5.484649pt;}
.y3cf{bottom:5.484660pt;}
.y2cb{bottom:5.666667pt;}
.y2c9{bottom:5.706667pt;}
.y183{bottom:5.773333pt;}
.y2ba{bottom:5.800000pt;}
.y485{bottom:5.936288pt;}
.y3d2{bottom:5.959983pt;}
.y286{bottom:6.000000pt;}
.y512{bottom:6.013333pt;}
.y515{bottom:6.026667pt;}
.y50f{bottom:6.040000pt;}
.y3fd{bottom:6.398754pt;}
.y41c{bottom:6.417037pt;}
.y187{bottom:6.533333pt;}
.y402{bottom:6.855808pt;}
.y404{bottom:6.855810pt;}
.y45c{bottom:6.855812pt;}
.y408{bottom:6.870853pt;}
.y440{bottom:6.874091pt;}
.y447{bottom:6.874092pt;}
.y496{bottom:6.926766pt;}
.y2d1{bottom:7.000000pt;}
.y518{bottom:7.026667pt;}
.y328{bottom:7.323693pt;}
.y390{bottom:7.323696pt;}
.y320{bottom:7.323697pt;}
.y31d{bottom:7.323698pt;}
.y3ac{bottom:7.323959pt;}
.y3d5{bottom:7.331144pt;}
.y3c5{bottom:7.339970pt;}
.y489{bottom:7.417069pt;}
.y480{bottom:7.423650pt;}
.y1a9{bottom:7.533333pt;}
.y1a7{bottom:7.560000pt;}
.y2c7{bottom:7.666667pt;}
.y2c5{bottom:7.706667pt;}
.y43c{bottom:7.769915pt;}
.y271{bottom:8.000000pt;}
.y4b1{bottom:8.013333pt;}
.y290{bottom:8.026667pt;}
.y4ae{bottom:8.040000pt;}
.y3fa{bottom:8.245250pt;}
.y3ea{bottom:8.245251pt;}
.y3e2{bottom:8.245253pt;}
.y3f8{bottom:8.684023pt;}
.y18f{bottom:8.800000pt;}
.y231{bottom:8.840000pt;}
.y23d{bottom:8.893333pt;}
.y291{bottom:9.000000pt;}
.y513{bottom:9.013333pt;}
.y516{bottom:9.026667pt;}
.y1a{bottom:9.033333pt;}
.y510{bottom:9.040000pt;}
.y5aa{bottom:9.400000pt;}
.y240{bottom:9.706667pt;}
.y1a1{bottom:9.773333pt;}
.y1a5{bottom:9.800000pt;}
.y471{bottom:9.993333pt;}
.y18{bottom:10.000000pt;}
.y2a9{bottom:10.013333pt;}
.y519{bottom:10.026667pt;}
.y14{bottom:10.040000pt;}
.y45a{bottom:10.055185pt;}
.y2b4{bottom:10.560000pt;}
.y242{bottom:10.733333pt;}
.y486{bottom:10.872225pt;}
.y2b0{bottom:10.893333pt;}
.y435{bottom:10.969293pt;}
.y411{bottom:10.984526pt;}
.y3ff{bottom:10.984529pt;}
.y4c2{bottom:10.986667pt;}
.y3ec{bottom:10.987574pt;}
.y424{bottom:10.987575pt;}
.y3e4{bottom:10.987576pt;}
.y1f8{bottom:11.000000pt;}
.y4d4{bottom:11.013333pt;}
.y1e6{bottom:11.026667pt;}
.y22a{bottom:11.040000pt;}
.y44b{bottom:11.426345pt;}
.y415{bottom:11.441580pt;}
.y40e{bottom:11.441581pt;}
.y40a{bottom:11.441583pt;}
.y59f{bottom:11.600000pt;}
.y237{bottom:11.626667pt;}
.y323{bottom:11.737439pt;}
.y336{bottom:11.737440pt;}
.y494{bottom:11.862703pt;}
.y2b2{bottom:11.893333pt;}
.y41e{bottom:11.901680pt;}
.y454{bottom:11.901683pt;}
.y1fb{bottom:11.986667pt;}
.y17{bottom:12.000000pt;}
.y1e2{bottom:12.013333pt;}
.y164{bottom:12.026667pt;}
.y28e{bottom:12.033333pt;}
.y1ea{bottom:12.040000pt;}
.y362{bottom:12.219177pt;}
.y325{bottom:12.225683pt;}
.y338{bottom:12.225685pt;}
.y30d{bottom:12.225686pt;}
.y31b{bottom:12.225689pt;}
.y58d{bottom:12.306667pt;}
.y492{bottom:12.356297pt;}
.y3ee{bottom:12.358735pt;}
.y3e6{bottom:12.358736pt;}
.y481{bottom:12.359587pt;}
.y488{bottom:12.372750pt;}
.y196{bottom:12.426667pt;}
.y58b{bottom:12.506667pt;}
.y239{bottom:12.600000pt;}
.y58f{bottom:12.626667pt;}
.y591{bottom:12.800000pt;}
.y3f1{bottom:12.815788pt;}
.y1fa{bottom:12.986667pt;}
.y20b{bottom:13.000000pt;}
.y1bb{bottom:13.013333pt;}
.y17d{bottom:13.026667pt;}
.y289{bottom:13.033333pt;}
.y159{bottom:13.040000pt;}
.y3e8{bottom:13.272842pt;}
.y1b6{bottom:14.000000pt;}
.y5fc{bottom:14.013333pt;}
.y5fb{bottom:14.026667pt;}
.y28c{bottom:14.040000pt;}
.y462{bottom:14.644003pt;}
.y463{bottom:14.644005pt;}
.y23b{bottom:14.706667pt;}
.y498{bottom:14.840613pt;}
.y2d4{bottom:15.000000pt;}
.y3d1{bottom:15.101056pt;}
.y3fc{bottom:15.558111pt;}
.y457{bottom:15.558137pt;}
.y484{bottom:15.827906pt;}
.y40c{bottom:16.012117pt;}
.y413{bottom:16.012119pt;}
.y450{bottom:16.015163pt;}
.y446{bottom:16.015168pt;}
.y5f6{bottom:16.033333pt;}
.y3d4{bottom:16.472217pt;}
.y437{bottom:16.472219pt;}
.y3aa{bottom:16.619930pt;}
.y48d{bottom:16.795350pt;}
.y48b{bottom:16.815094pt;}
.y429{bottom:16.929271pt;}
.y42f{bottom:16.929273pt;}
.y2f2{bottom:17.000000pt;}
.y12f{bottom:17.040000pt;}
.y358{bottom:17.101634pt;}
.y306{bottom:17.101637pt;}
.y3c0{bottom:17.104889pt;}
.y2ff{bottom:17.104892pt;}
.y3c4{bottom:17.104895pt;}
.y327{bottom:17.108145pt;}
.y303{bottom:17.108147pt;}
.y38f{bottom:17.108149pt;}
.y47f{bottom:17.308688pt;}
.y3f7{bottom:17.843380pt;}
.y4c9{bottom:18.000000pt;}
.y4d2{bottom:18.013333pt;}
.y3da{bottom:19.214540pt;}
.y459{bottom:19.214544pt;}
.y449{bottom:20.128649pt;}
.y421{bottom:20.597889pt;}
.y43e{bottom:20.597891pt;}
.y43a{bottom:20.597892pt;}
.y483{bottom:20.763844pt;}
.y3dd{bottom:21.042755pt;}
.y3ae{bottom:21.502362pt;}
.y431{bottom:21.511997pt;}
.y322{bottom:21.515381pt;}
.y335{bottom:21.515382pt;}
.y4a0{bottom:21.751031pt;}
.y355{bottom:21.984095pt;}
.y35a{bottom:21.984099pt;}
.y361{bottom:21.984100pt;}
.y387{bottom:21.990605pt;}
.y38b{bottom:21.990609pt;}
.y19{bottom:22.000000pt;}
.y351{bottom:22.003624pt;}
.y344{bottom:22.003629pt;}
.y33b{bottom:22.003630pt;}
.y14d{bottom:22.013333pt;}
.y176{bottom:22.026667pt;}
.y142{bottom:22.040000pt;}
.y49f{bottom:22.257787pt;}
.y49c{bottom:22.264369pt;}
.y4cc{bottom:23.000000pt;}
.y2ec{bottom:23.013333pt;}
.y147{bottom:23.026667pt;}
.y145{bottom:23.040000pt;}
.y2cf{bottom:24.626667pt;}
.y452{bottom:25.168426pt;}
.y406{bottom:25.168428pt;}
.y445{bottom:25.168430pt;}
.y47d{bottom:25.712944pt;}
.y5b2{bottom:26.000000pt;}
.y251{bottom:26.006667pt;}
.y5b4{bottom:26.026667pt;}
.y5ad{bottom:26.040000pt;}
.y428{bottom:26.082533pt;}
.y42e{bottom:26.082536pt;}
.y42c{bottom:26.083752pt;}
.y2be{bottom:26.800000pt;}
.y331{bottom:26.886086pt;}
.y32c{bottom:26.886089pt;}
.y38e{bottom:26.886091pt;}
.y27c{bottom:27.000000pt;}
.y5c3{bottom:27.013333pt;}
.y1e4{bottom:27.026667pt;}
.y228{bottom:27.040000pt;}
.y49e{bottom:27.193725pt;}
.y49b{bottom:27.213469pt;}
.y224{bottom:27.986667pt;}
.y1fd{bottom:28.013333pt;}
.y1e9{bottom:28.026667pt;}
.y1e0{bottom:28.040000pt;}
.y3d9{bottom:28.367802pt;}
.y18c{bottom:28.626667pt;}
.y233{bottom:28.800000pt;}
.y5c5{bottom:29.000000pt;}
.y189{bottom:29.626667pt;}
.y420{bottom:29.738963pt;}
.y439{bottom:29.738967pt;}
.y5cc{bottom:30.040000pt;}
.y3dc{bottom:30.196017pt;}
.y482{bottom:30.648881pt;}
.y41a{bottom:30.654293pt;}
.y360{bottom:31.768552pt;}
.y376{bottom:31.781572pt;}
.y33a{bottom:31.788082pt;}
.y4aa{bottom:32.026667pt;}
.y1b8{bottom:32.040000pt;}
.y499{bottom:32.149406pt;}
.y1ab{bottom:32.666667pt;}
.y1b9{bottom:33.040000pt;}
.y198{bottom:34.000000pt;}
.y444{bottom:34.327785pt;}
.y5be{bottom:35.033333pt;}
.y4ca{bottom:35.040000pt;}
.y42b{bottom:35.224826pt;}
.y5bd{bottom:36.033333pt;}
.y52a{bottom:36.040000pt;}
.y38d{bottom:36.651012pt;}
.y3c3{bottom:36.667287pt;}
.y49d{bottom:37.085344pt;}
.y532{bottom:38.040000pt;}
.y23f{bottom:38.733333pt;}
.y5cf{bottom:39.040000pt;}
.y236{bottom:39.666667pt;}
.y1e5{bottom:40.026667pt;}
.y252{bottom:40.033333pt;}
.y1e1{bottom:40.040000pt;}
.y14c{bottom:41.026667pt;}
.y5b8{bottom:41.033333pt;}
.y141{bottom:41.040000pt;}
.y163{bottom:41.053333pt;}
.y2f5{bottom:41.066667pt;}
.y32f{bottom:41.553002pt;}
.y14f{bottom:42.026667pt;}
.y177{bottom:42.040000pt;}
.y16{bottom:42.066667pt;}
.y225{bottom:43.026667pt;}
.y4b9{bottom:46.026667pt;}
.y2e9{bottom:46.040000pt;}
.y2e6{bottom:47.080000pt;}
.y3e0{bottom:47.582343pt;}
.y523{bottom:48.040000pt;}
.y52e{bottom:49.040000pt;}
.y5d6{bottom:50.040000pt;}
.y617{bottom:51.040000pt;}
.y5d3{bottom:51.066667pt;}
.y3d7{bottom:52.165066pt;}
.y5d1{bottom:53.040000pt;}
.y527{bottom:55.026667pt;}
.y5b0{bottom:55.040000pt;}
.y5c8{bottom:55.066667pt;}
.y203{bottom:56.026667pt;}
.y16b{bottom:56.040000pt;}
.y160{bottom:56.053333pt;}
.y2f4{bottom:56.066667pt;}
.y3df{bottom:56.735605pt;}
.y5c7{bottom:57.040000pt;}
.y1{bottom:58.033333pt;}
.y5c4{bottom:58.040000pt;}
.y2f7{bottom:58.066667pt;}
.y5cb{bottom:59.040000pt;}
.y14b{bottom:60.026667pt;}
.y2eb{bottom:60.040000pt;}
.y140{bottom:60.066667pt;}
.y5d4{bottom:64.066667pt;}
.y529{bottom:65.080000pt;}
.y618{bottom:66.066667pt;}
.y4bb{bottom:67.026667pt;}
.y531{bottom:67.040000pt;}
.y5ce{bottom:68.040000pt;}
.y2f3{bottom:69.026667pt;}
.y208{bottom:69.040000pt;}
.y263{bottom:69.053333pt;}
.y206{bottom:69.066667pt;}
.y15e{bottom:70.026667pt;}
.y200{bottom:70.040000pt;}
.y162{bottom:70.053333pt;}
.y1fe{bottom:70.066667pt;}
.y5b7{bottom:70.073333pt;}
.y169{bottom:70.080000pt;}
.y15b{bottom:71.026667pt;}
.y5c6{bottom:71.040000pt;}
.y226{bottom:71.066667pt;}
.y2f1{bottom:75.066667pt;}
.y522{bottom:77.066667pt;}
.y5c9{bottom:78.066667pt;}
.y2e7{bottom:79.080000pt;}
.y5c0{bottom:80.053333pt;}
.y14a{bottom:80.066667pt;}
.y2ea{bottom:80.080000pt;}
.y526{bottom:84.066667pt;}
.y202{bottom:85.066667pt;}
.y166{bottom:85.080000pt;}
.y3c{bottom:87.066667pt;}
.y52c{bottom:87.080000pt;}
.y2f6{bottom:87.100000pt;}
.y5d5{bottom:89.093333pt;}
.y4ba{bottom:90.053333pt;}
.y534{bottom:91.066667pt;}
.y2b6{bottom:91.773333pt;}
.y205{bottom:98.066667pt;}
.y262{bottom:98.093333pt;}
.y16c{bottom:98.106667pt;}
.y15d{bottom:99.066667pt;}
.y168{bottom:99.080000pt;}
.y161{bottom:99.093333pt;}
.y5af{bottom:99.106667pt;}
.y5d0{bottom:100.080000pt;}
.y5cd{bottom:103.093333pt;}
.y52b{bottom:104.106667pt;}
.y600{bottom:107.100000pt;}
.y285{bottom:108.100000pt;}
.y533{bottom:108.106667pt;}
.y9b{bottom:109.100000pt;}
.y619{bottom:109.106667pt;}
.y639{bottom:109.133333pt;}
.y4dc{bottom:110.100000pt;}
.y5bc{bottom:111.100000pt;}
.y610{bottom:112.100000pt;}
.y525{bottom:112.106667pt;}
.y5b6{bottom:113.100000pt;}
.y530{bottom:113.106667pt;}
.y103{bottom:115.100000pt;}
.yfd{bottom:116.100000pt;}
.yb7{bottom:117.100000pt;}
.y125{bottom:118.100000pt;}
.y27a{bottom:119.100000pt;}
.y60f{bottom:120.100000pt;}
.y4b7{bottom:121.100000pt;}
.y50b{bottom:122.100000pt;}
.y604{bottom:123.100000pt;}
.y2e1{bottom:124.100000pt;}
.yde{bottom:125.100000pt;}
.y1db{bottom:126.100000pt;}
.y204{bottom:127.093333pt;}
.y56{bottom:127.100000pt;}
.y167{bottom:127.106667pt;}
.y250{bottom:127.133333pt;}
.y5f8{bottom:127.146667pt;}
.y15c{bottom:128.093333pt;}
.y4cd{bottom:128.100000pt;}
.y123{bottom:129.100000pt;}
.y524{bottom:129.106667pt;}
.y52f{bottom:130.093333pt;}
.y1da{bottom:130.100000pt;}
.y288{bottom:132.100000pt;}
.y470{bottom:132.166667pt;}
.y2fb{bottom:133.166667pt;}
.y609{bottom:135.106667pt;}
.y1c4{bottom:136.133333pt;}
.y139{bottom:137.133333pt;}
.y9a{bottom:138.133333pt;}
.y638{bottom:138.160000pt;}
.y283{bottom:139.133333pt;}
.y528{bottom:142.133333pt;}
.y20e{bottom:143.133333pt;}
.yfc{bottom:144.133333pt;}
.y172{bottom:145.133333pt;}
.yb6{bottom:146.133333pt;}
.y151{bottom:147.133333pt;}
.y26e{bottom:148.133333pt;}
.y51f{bottom:150.133333pt;}
.y4b6{bottom:151.133333pt;}
.y2e0{bottom:153.133333pt;}
.y2ee{bottom:155.133333pt;}
.y25b{bottom:155.146667pt;}
.y261{bottom:156.120000pt;}
.y55{bottom:156.133333pt;}
.y24f{bottom:156.160000pt;}
.y29c{bottom:157.133333pt;}
.y122{bottom:158.133333pt;}
.y28d{bottom:159.133333pt;}
.ydd{bottom:160.133333pt;}
.y5ed{bottom:161.133333pt;}
.y3c7{bottom:161.200000pt;}
.y83{bottom:162.133333pt;}
.y63e{bottom:162.200000pt;}
.y3cc{bottom:162.738375pt;}
.y1f5{bottom:163.133333pt;}
.y407{bottom:163.195427pt;}
.y611{bottom:164.133333pt;}
.y17f{bottom:165.133333pt;}
.y138{bottom:166.133333pt;}
.y99{bottom:167.133333pt;}
.y637{bottom:167.200000pt;}
.y2d5{bottom:168.133333pt;}
.y1c3{bottom:169.133333pt;}
.y623{bottom:170.133333pt;}
.y15{bottom:172.133333pt;}
.yfb{bottom:173.133333pt;}
.ycc{bottom:174.173333pt;}
.yb5{bottom:175.173333pt;}
.y150{bottom:176.173333pt;}
.y26d{bottom:177.173333pt;}
.y51e{bottom:178.173333pt;}
.y4b5{bottom:180.173333pt;}
.y50a{bottom:181.173333pt;}
.y40d{bottom:181.507826pt;}
.y40b{bottom:181.507831pt;}
.y418{bottom:181.507835pt;}
.y417{bottom:181.507837pt;}
.y416{bottom:181.507848pt;}
.y414{bottom:181.507857pt;}
.y412{bottom:181.507863pt;}
.y409{bottom:181.507874pt;}
.y2df{bottom:182.173333pt;}
.y17e{bottom:183.173333pt;}
.y24e{bottom:184.160000pt;}
.y25a{bottom:184.173333pt;}
.y54{bottom:185.173333pt;}
.y5bb{bottom:186.173333pt;}
.y121{bottom:187.173333pt;}
.y60b{bottom:188.173333pt;}
.y60e{bottom:189.173333pt;}
.y82{bottom:190.173333pt;}
.y1f4{bottom:191.173333pt;}
.y63d{bottom:191.240000pt;}
.y2fc{bottom:191.653333pt;}
.y3ab{bottom:192.139338pt;}
.y1c2{bottom:192.173333pt;}
.y14e{bottom:193.173333pt;}
.y137{bottom:194.173333pt;}
.y181{bottom:195.173333pt;}
.y98{bottom:196.173333pt;}
.y636{bottom:196.226667pt;}
.y248{bottom:199.200000pt;}
.y5f7{bottom:200.160000pt;}
.y54c{bottom:200.173333pt;}
.y102{bottom:201.173333pt;}
.yfa{bottom:202.173333pt;}
.y478{bottom:202.735406pt;}
.y171{bottom:203.173333pt;}
.y47b{bottom:203.242162pt;}
.yb4{bottom:204.173333pt;}
.y277{bottom:205.173333pt;}
.y13a{bottom:206.173333pt;}
.y625{bottom:207.173333pt;}
.y51d{bottom:208.173333pt;}
.y42a{bottom:208.961523pt;}
.y410{bottom:208.961527pt;}
.y40f{bottom:208.961529pt;}
.y403{bottom:208.961540pt;}
.y401{bottom:208.961549pt;}
.y3fe{bottom:208.961555pt;}
.y419{bottom:208.961566pt;}
.ycb{bottom:209.173333pt;}
.y2de{bottom:210.173333pt;}
.y5f3{bottom:211.200000pt;}
.y3c1{bottom:211.685690pt;}
.y2fe{bottom:211.685696pt;}
.y3bf{bottom:211.685705pt;}
.y3be{bottom:211.685708pt;}
.y3bd{bottom:211.685709pt;}
.y3bc{bottom:211.685715pt;}
.y3bb{bottom:211.685723pt;}
.y3ba{bottom:211.685732pt;}
.y3c2{bottom:211.685737pt;}
.y29a{bottom:212.200000pt;}
.y259{bottom:213.173333pt;}
.y25c{bottom:213.186667pt;}
.y24d{bottom:213.200000pt;}
.y53{bottom:214.200000pt;}
.y2a3{bottom:215.200000pt;}
.y120{bottom:216.200000pt;}
.y1d9{bottom:217.200000pt;}
.y81{bottom:218.200000pt;}
.y5ec{bottom:219.200000pt;}
.y1f3{bottom:220.200000pt;}
.y63c{bottom:220.266667pt;}
.y220{bottom:221.200000pt;}
.y3b9{bottom:221.466911pt;}
.y3b8{bottom:221.466919pt;}
.y3b7{bottom:221.466928pt;}
.y60a{bottom:222.200000pt;}
.y136{bottom:223.200000pt;}
.y10e{bottom:224.200000pt;}
.y635{bottom:224.266667pt;}
.y97{bottom:225.200000pt;}
.y29d{bottom:227.200000pt;}
.y427{bottom:227.257081pt;}
.y433{bottom:227.257084pt;}
.y432{bottom:227.257095pt;}
.y430{bottom:227.257103pt;}
.y42d{bottom:227.257110pt;}
.y54b{bottom:229.200000pt;}
.y101{bottom:230.200000pt;}
.ydc{bottom:231.200000pt;}
.y3b6{bottom:231.248108pt;}
.y3b5{bottom:231.248116pt;}
.y3a8{bottom:231.248125pt;}
.y170{bottom:232.200000pt;}
.yb3{bottom:233.200000pt;}
.y26c{bottom:234.200000pt;}
.y5f9{bottom:235.200000pt;}
.y582{bottom:236.000000pt;}
.y51c{bottom:236.200000pt;}
.y61c{bottom:237.200000pt;}
.y509{bottom:238.200000pt;}
.y1c1{bottom:239.200000pt;}
.y5f2{bottom:240.200000pt;}
.y584{bottom:241.000000pt;}
.y3a7{bottom:241.013029pt;}
.y3a5{bottom:241.013037pt;}
.y3a3{bottom:241.013046pt;}
.y17c{bottom:241.200000pt;}
.y260{bottom:242.200000pt;}
.y258{bottom:242.213333pt;}
.y24c{bottom:242.240000pt;}
.y52{bottom:243.200000pt;}
.y11f{bottom:244.200000pt;}
.y1d8{bottom:245.200000pt;}
.yca{bottom:246.200000pt;}
.y80{bottom:247.200000pt;}
.y5eb{bottom:248.226667pt;}
.y3cb{bottom:248.306667pt;}
.y1f2{bottom:249.226667pt;}
.y207{bottom:250.226667pt;}
.y21f{bottom:250.240000pt;}
.y30b{bottom:250.794207pt;}
.y3a2{bottom:250.794226pt;}
.y3a1{bottom:250.794234pt;}
.y3c6{bottom:250.794243pt;}
.y5ff{bottom:251.226667pt;}
.y3b{bottom:252.226667pt;}
.y10d{bottom:253.240000pt;}
.y96{bottom:254.226667pt;}
.y5f5{bottom:255.226667pt;}
.y54a{bottom:257.226667pt;}
.y100{bottom:259.240000pt;}
.yf9{bottom:260.226667pt;}
.y38a{bottom:260.574096pt;}
.y30a{bottom:260.574101pt;}
.y389{bottom:260.574111pt;}
.y388{bottom:260.574113pt;}
.y386{bottom:260.574115pt;}
.y3a0{bottom:260.574120pt;}
.y39f{bottom:260.574128pt;}
.y39e{bottom:260.574137pt;}
.y38c{bottom:260.574143pt;}
.y16f{bottom:261.226667pt;}
.yb2{bottom:262.240000pt;}
.y26b{bottom:263.226667pt;}
.y634{bottom:263.333333pt;}
.y124{bottom:264.226667pt;}
.y5d2{bottom:265.226667pt;}
.y508{bottom:266.226667pt;}
.y56a{bottom:266.373333pt;}
.ydb{bottom:267.226667pt;}
.y586{bottom:268.000000pt;}
.y3a{bottom:268.240000pt;}
.y1c0{bottom:269.226667pt;}
.y299{bottom:270.226667pt;}
.y39d{bottom:270.339042pt;}
.y39c{bottom:270.339050pt;}
.y39a{bottom:270.339059pt;}
.y25f{bottom:271.226667pt;}
.y51{bottom:271.240000pt;}
.y24b{bottom:271.266667pt;}
.y68{bottom:272.226667pt;}
.y11e{bottom:273.226667pt;}
.y5ba{bottom:274.226667pt;}
.y1d7{bottom:274.240000pt;}
.y3d6{bottom:274.851598pt;}
.y3db{bottom:274.851603pt;}
.y43b{bottom:274.851616pt;}
.y3f5{bottom:274.851625pt;}
.y3ed{bottom:274.851632pt;}
.y3e5{bottom:274.851640pt;}
.y3de{bottom:274.851645pt;}
.y4b4{bottom:275.226667pt;}
.y7f{bottom:276.226667pt;}
.y61b{bottom:277.226667pt;}
.y624{bottom:277.240000pt;}
.y63b{bottom:277.333333pt;}
.y19f{bottom:278.226667pt;}
.y569{bottom:278.400000pt;}
.y21e{bottom:279.226667pt;}
.y399{bottom:280.123493pt;}
.y398{bottom:280.123501pt;}
.y397{bottom:280.123510pt;}
.y17b{bottom:280.226667pt;}
.yc9{bottom:281.226667pt;}
.y95{bottom:282.226667pt;}
.y39{bottom:284.226667pt;}
.y549{bottom:286.266667pt;}
.y29e{bottom:287.266667pt;}
.yf8{bottom:288.266667pt;}
.y16e{bottom:289.266667pt;}
.y396{bottom:289.901435pt;}
.y395{bottom:289.901443pt;}
.y394{bottom:289.901452pt;}
.yb1{bottom:290.266667pt;}
.y149{bottom:291.266667pt;}
.y26a{bottom:292.266667pt;}
.y56d{bottom:293.000000pt;}
.y507{bottom:295.266667pt;}
.y1f1{bottom:297.266667pt;}
.y1bf{bottom:298.266667pt;}
.y22c{bottom:299.266667pt;}
.y257{bottom:299.280000pt;}
.y309{bottom:299.685867pt;}
.y393{bottom:299.685886pt;}
.y392{bottom:299.685894pt;}
.y391{bottom:299.685903pt;}
.y38{bottom:300.266667pt;}
.y180{bottom:301.266667pt;}
.yda{bottom:302.266667pt;}
.y3fb{bottom:304.133523pt;}
.y3f3{bottom:304.133532pt;}
.y3eb{bottom:304.133538pt;}
.y3e3{bottom:304.133547pt;}
.y4b3{bottom:304.266667pt;}
.y7e{bottom:305.266667pt;}
.y19e{bottom:306.266667pt;}
.y63a{bottom:306.373333pt;}
.y21d{bottom:308.266667pt;}
.y5fd{bottom:309.266667pt;}
.y35e{bottom:309.450783pt;}
.y308{bottom:309.450789pt;}
.y35d{bottom:309.450798pt;}
.y35c{bottom:309.450801pt;}
.y35b{bottom:309.450802pt;}
.y385{bottom:309.450808pt;}
.y384{bottom:309.450816pt;}
.y383{bottom:309.450825pt;}
.y375{bottom:309.450830pt;}
.y135{bottom:310.266667pt;}
.y94{bottom:311.266667pt;}
.y62b{bottom:312.266667pt;}
.y5b9{bottom:314.266667pt;}
.y548{bottom:315.266667pt;}
.yc8{bottom:316.266667pt;}
.y476{bottom:316.400000pt;}
.y37{bottom:317.266667pt;}
.y16d{bottom:318.266667pt;}
.y382{bottom:319.228749pt;}
.y381{bottom:319.228757pt;}
.y380{bottom:319.228766pt;}
.yb0{bottom:319.266667pt;}
.y20d{bottom:320.266667pt;}
.y588{bottom:321.000000pt;}
.y269{bottom:321.266667pt;}
.y506{bottom:324.293333pt;}
.y568{bottom:325.240000pt;}
.y2dd{bottom:326.293333pt;}
.y298{bottom:327.293333pt;}
.y3cd{bottom:327.629294pt;}
.y256{bottom:328.280000pt;}
.y25e{bottom:328.293333pt;}
.y1be{bottom:328.306667pt;}
.y37f{bottom:329.013201pt;}
.y37e{bottom:329.013209pt;}
.y37d{bottom:329.013218pt;}
.y50{bottom:329.293333pt;}
.y58c{bottom:331.000000pt;}
.y3d8{bottom:331.130148pt;}
.y3f9{bottom:331.130162pt;}
.y3f0{bottom:331.130170pt;}
.y3e9{bottom:331.130177pt;}
.y3e1{bottom:331.130185pt;}
.y11d{bottom:331.306667pt;}
.y1d6{bottom:332.293333pt;}
.y4b2{bottom:333.293333pt;}
.y7d{bottom:334.306667pt;}
.y19d{bottom:335.293333pt;}
.y16a{bottom:336.293333pt;}
.y21c{bottom:337.306667pt;}
.yd9{bottom:338.293333pt;}
.y37c{bottom:338.778122pt;}
.y37b{bottom:338.778130pt;}
.y37a{bottom:338.778139pt;}
.y36{bottom:339.293333pt;}
.y93{bottom:340.306667pt;}
.y517{bottom:342.293333pt;}
.y547{bottom:344.293333pt;}
.y475{bottom:344.440000pt;}
.y1f0{bottom:345.293333pt;}
.y5b5{bottom:346.293333pt;}
.yf7{bottom:346.306667pt;}
.yff{bottom:347.293333pt;}
.y56b{bottom:348.000000pt;}
.yaf{bottom:348.293333pt;}
.y307{bottom:348.556045pt;}
.y379{bottom:348.556064pt;}
.y378{bottom:348.556072pt;}
.y377{bottom:348.556081pt;}
.y20c{bottom:350.293333pt;}
.yc7{bottom:351.293333pt;}
.y3f6{bottom:352.642156pt;}
.y3ef{bottom:352.642164pt;}
.y3e7{bottom:352.642171pt;}
.y422{bottom:352.642179pt;}
.y505{bottom:353.293333pt;}
.y2fd{bottom:354.381991pt;}
.y297{bottom:356.293333pt;}
.y1bd{bottom:357.293333pt;}
.y255{bottom:357.306667pt;}
.y24a{bottom:357.333333pt;}
.y4f{bottom:358.306667pt;}
.y359{bottom:358.340491pt;}
.y305{bottom:358.340496pt;}
.y357{bottom:358.340506pt;}
.y356{bottom:358.340508pt;}
.y354{bottom:358.340510pt;}
.y36a{bottom:358.340515pt;}
.y369{bottom:358.340523pt;}
.y368{bottom:358.340532pt;}
.y35f{bottom:358.340538pt;}
.y2a2{bottom:359.293333pt;}
.y11c{bottom:360.333333pt;}
.y35{bottom:362.333333pt;}
.y52d{bottom:363.333333pt;}
.y19c{bottom:364.333333pt;}
.y57e{bottom:366.000000pt;}
.y201{bottom:366.333333pt;}
.y134{bottom:367.333333pt;}
.y366{bottom:368.105437pt;}
.y373{bottom:368.105445pt;}
.y371{bottom:368.105454pt;}
.y10c{bottom:368.333333pt;}
.y92{bottom:369.333333pt;}
.y5e9{bottom:370.333333pt;}
.y567{bottom:371.800000pt;}
.yd8{bottom:372.333333pt;}
.y2d3{bottom:373.333333pt;}
.y474{bottom:373.466667pt;}
.y22b{bottom:374.333333pt;}
.yf6{bottom:375.333333pt;}
.y563{bottom:375.666667pt;}
.y1b4{bottom:376.333333pt;}
.yae{bottom:377.333333pt;}
.y370{bottom:377.883378pt;}
.y36f{bottom:377.883386pt;}
.y36e{bottom:377.883395pt;}
.y179{bottom:378.333333pt;}
.y20a{bottom:379.333333pt;}
.y4cb{bottom:380.333333pt;}
.y60d{bottom:381.333333pt;}
.y284{bottom:382.333333pt;}
.y405{bottom:383.752258pt;}
.y41f{bottom:383.752264pt;}
.y3d3{bottom:383.752274pt;}
.y436{bottom:383.752277pt;}
.y41d{bottom:383.752285pt;}
.y455{bottom:383.752292pt;}
.y453{bottom:383.752301pt;}
.y438{bottom:383.752306pt;}
.y566{bottom:383.840000pt;}
.y34{bottom:384.333333pt;}
.y296{bottom:385.333333pt;}
.y1bc{bottom:386.333333pt;}
.y249{bottom:386.373333pt;}
.y4e{bottom:387.333333pt;}
.y36d{bottom:387.667830pt;}
.y36c{bottom:387.667838pt;}
.y36b{bottom:387.667847pt;}
.y2a1{bottom:388.333333pt;}
.y11b{bottom:389.333333pt;}
.y7c{bottom:391.333333pt;}
.y514{bottom:392.333333pt;}
.y19b{bottom:393.333333pt;}
.y21b{bottom:395.333333pt;}
.y133{bottom:396.333333pt;}
.y61a{bottom:397.360000pt;}
.y10b{bottom:397.373333pt;}
.y304{bottom:397.445752pt;}
.y365{bottom:397.445771pt;}
.y364{bottom:397.445779pt;}
.y363{bottom:397.445788pt;}
.y4a1{bottom:397.506667pt;}
.y91{bottom:398.360000pt;}
.y5e8{bottom:399.373333pt;}
.y5a2{bottom:401.000000pt;}
.y546{bottom:401.360000pt;}
.y2e8{bottom:403.360000pt;}
.y1ef{bottom:403.373333pt;}
.yf5{bottom:404.360000pt;}
.y1b3{bottom:405.373333pt;}
.yad{bottom:406.373333pt;}
.y343{bottom:407.210668pt;}
.y302{bottom:407.210674pt;}
.y353{bottom:407.210684pt;}
.y352{bottom:407.210686pt;}
.y350{bottom:407.210688pt;}
.y342{bottom:407.210693pt;}
.y341{bottom:407.210701pt;}
.y340{bottom:407.210710pt;}
.y339{bottom:407.210715pt;}
.y33{bottom:407.360000pt;}
.y4b0{bottom:409.360000pt;}
.y4c8{bottom:410.360000pt;}
.y3d0{bottom:412.577127pt;}
.y41b{bottom:412.577130pt;}
.y426{bottom:412.577138pt;}
.y425{bottom:412.577145pt;}
.y423{bottom:412.577154pt;}
.y5f1{bottom:413.360000pt;}
.y295{bottom:414.373333pt;}
.y25d{bottom:415.360000pt;}
.y4d{bottom:415.373333pt;}
.y67{bottom:416.360000pt;}
.y34f{bottom:416.995144pt;}
.y34e{bottom:416.995152pt;}
.y34d{bottom:416.995161pt;}
.y511{bottom:417.360000pt;}
.y11a{bottom:417.373333pt;}
.y209{bottom:419.360000pt;}
.y580{bottom:420.000000pt;}
.y7b{bottom:420.373333pt;}
.y2dc{bottom:421.373333pt;}
.yc6{bottom:422.360000pt;}
.y21a{bottom:424.373333pt;}
.y132{bottom:425.360000pt;}
.y144{bottom:426.360000pt;}
.y90{bottom:426.373333pt;}
.y34c{bottom:426.773086pt;}
.y34b{bottom:426.773094pt;}
.y34a{bottom:426.773103pt;}
.y5e7{bottom:428.360000pt;}
.y477{bottom:428.466667pt;}
.y497{bottom:428.958391pt;}
.y32{bottom:429.373333pt;}
.y545{bottom:430.373333pt;}
.y565{bottom:430.666667pt;}
.y2ac{bottom:432.373333pt;}
.y229{bottom:433.360000pt;}
.yf4{bottom:433.373333pt;}
.yac{bottom:434.400000pt;}
.y152{bottom:435.400000pt;}
.y178{bottom:436.400000pt;}
.y349{bottom:436.538008pt;}
.y347{bottom:436.538015pt;}
.y345{bottom:436.538025pt;}
.y197{bottom:437.400000pt;}
.y4af{bottom:438.400000pt;}
.y43d{bottom:439.116696pt;}
.y451{bottom:439.116701pt;}
.y442{bottom:439.116705pt;}
.y441{bottom:439.116707pt;}
.y43f{bottom:439.116718pt;}
.y44d{bottom:439.116726pt;}
.y44c{bottom:439.116733pt;}
.y443{bottom:439.116744pt;}
.y504{bottom:439.400000pt;}
.y62f{bottom:440.400000pt;}
.y270{bottom:442.400000pt;}
.y294{bottom:443.400000pt;}
.y4c{bottom:444.400000pt;}
.y5a9{bottom:445.000000pt;}
.y66{bottom:445.400000pt;}
.y300{bottom:446.322440pt;}
.y33f{bottom:446.322459pt;}
.y33d{bottom:446.322467pt;}
.y33c{bottom:446.322476pt;}
.y119{bottom:446.400000pt;}
.y7a{bottom:449.400000pt;}
.y19a{bottom:450.400000pt;}
.y31{bottom:451.400000pt;}
.y219{bottom:453.400000pt;}
.y131{bottom:454.400000pt;}
.y8f{bottom:455.400000pt;}
.y32e{bottom:456.100376pt;}
.y32d{bottom:456.100381pt;}
.y332{bottom:456.100386pt;}
.y330{bottom:456.100389pt;}
.y3b3{bottom:456.100397pt;}
.y3b1{bottom:456.100405pt;}
.y3af{bottom:456.100412pt;}
.y333{bottom:456.100423pt;}
.y175{bottom:456.400000pt;}
.y5e6{bottom:457.400000pt;}
.y44f{bottom:457.429323pt;}
.y44e{bottom:457.429325pt;}
.y434{bottom:457.429336pt;}
.y44a{bottom:457.429345pt;}
.y448{bottom:457.429351pt;}
.yc5{bottom:458.400000pt;}
.y4c7{bottom:459.400000pt;}
.yf3{bottom:461.400000pt;}
.y227{bottom:462.400000pt;}
.y13{bottom:463.400000pt;}
.y48a{bottom:463.575661pt;}
.y1d5{bottom:464.400000pt;}
.y268{bottom:465.400000pt;}
.y13f{bottom:466.400000pt;}
.y50e{bottom:467.400000pt;}
.y4ad{bottom:468.400000pt;}
.y576{bottom:470.000000pt;}
.y293{bottom:472.426667pt;}
.y2aa{bottom:473.426667pt;}
.y4b{bottom:473.440000pt;}
.y30{bottom:475.426667pt;}
.y79{bottom:478.426667pt;}
.yd7{bottom:479.440000pt;}
.y615{bottom:480.426667pt;}
.y165{bottom:481.426667pt;}
.y130{bottom:482.440000pt;}
.y564{bottom:483.400000pt;}
.y10a{bottom:483.440000pt;}
.y495{bottom:483.845911pt;}
.y8e{bottom:484.426667pt;}
.y3ce{bottom:484.883006pt;}
.y461{bottom:484.883011pt;}
.y46e{bottom:484.883025pt;}
.y46f{bottom:484.883028pt;}
.y46d{bottom:484.883033pt;}
.y46c{bottom:484.883037pt;}
.y46b{bottom:484.883040pt;}
.y469{bottom:484.883043pt;}
.y467{bottom:484.883049pt;}
.y458{bottom:484.883054pt;}
.y32b{bottom:485.427696pt;}
.y3b4{bottom:485.427701pt;}
.y3b2{bottom:485.427711pt;}
.y3b0{bottom:485.427719pt;}
.y3ad{bottom:485.427727pt;}
.ye3{bottom:485.440000pt;}
.y5e5{bottom:486.440000pt;}
.y60c{bottom:487.426667pt;}
.y544{bottom:488.440000pt;}
.y4c6{bottom:489.426667pt;}
.yf2{bottom:490.426667pt;}
.y1b2{bottom:491.440000pt;}
.y50d{bottom:492.426667pt;}
.yab{bottom:492.440000pt;}
.y273{bottom:493.426667pt;}
.yc4{bottom:494.440000pt;}
.y12e{bottom:495.426667pt;}
.y1d4{bottom:495.440000pt;}
.y195{bottom:496.000000pt;}
.y4ac{bottom:497.426667pt;}
.y2f{bottom:497.440000pt;}
.y199{bottom:499.426667pt;}
.y465{bottom:500.441123pt;}
.y464{bottom:500.441130pt;}
.y45e{bottom:500.441136pt;}
.y45d{bottom:500.441144pt;}
.y45b{bottom:500.441151pt;}
.y292{bottom:501.440000pt;}
.y4a{bottom:502.426667pt;}
.y487{bottom:502.637354pt;}
.y1ee{bottom:503.440000pt;}
.y2f0{bottom:504.426667pt;}
.y118{bottom:504.440000pt;}
.y5d9{bottom:505.426667pt;}
.y78{bottom:506.440000pt;}
.y2db{bottom:507.440000pt;}
.y59a{bottom:508.000000pt;}
.y4db{bottom:508.426667pt;}
.y193{bottom:509.000000pt;}
.y45f{bottom:509.594385pt;}
.y1ff{bottom:510.466667pt;}
.y28b{bottom:511.466667pt;}
.y109{bottom:512.466667pt;}
.y8d{bottom:513.466667pt;}
.yd6{bottom:514.466667pt;}
.y326{bottom:514.755015pt;}
.y324{bottom:514.755018pt;}
.y321{bottom:514.755026pt;}
.y337{bottom:514.755034pt;}
.y334{bottom:514.755041pt;}
.y500{bottom:514.866667pt;}
.y5e4{bottom:515.466667pt;}
.y543{bottom:517.466667pt;}
.y473{bottom:517.640000pt;}
.y29b{bottom:518.466667pt;}
.y456{bottom:518.735450pt;}
.yf1{bottom:519.466667pt;}
.y2e{bottom:520.466667pt;}
.yaa{bottom:521.466667pt;}
.ye2{bottom:522.466667pt;}
.y4f2{bottom:523.226667pt;}
.y5ca{bottom:523.466667pt;}
.y578{bottom:524.000000pt;}
.y274{bottom:524.466667pt;}
.y503{bottom:526.466667pt;}
.y4ab{bottom:527.466667pt;}
.yc3{bottom:530.466667pt;}
.y49{bottom:531.466667pt;}
.y4ff{bottom:531.866667pt;}
.y2a0{bottom:532.466667pt;}
.y49a{bottom:532.792642pt;}
.y117{bottom:533.466667pt;}
.y1ed{bottom:534.466667pt;}
.y58a{bottom:535.000000pt;}
.y562{bottom:535.226667pt;}
.y77{bottom:535.466667pt;}
.y2da{bottom:536.466667pt;}
.y63f{bottom:536.666667pt;}
.y4da{bottom:537.466667pt;}
.y218{bottom:539.466667pt;}
.y4f1{bottom:540.226667pt;}
.y246{bottom:540.466667pt;}
.y108{bottom:541.466667pt;}
.y2d{bottom:542.466667pt;}
.y13d{bottom:543.466667pt;}
.y30c{bottom:544.082320pt;}
.y319{bottom:544.082325pt;}
.y318{bottom:544.082340pt;}
.y317{bottom:544.082344pt;}
.y316{bottom:544.082348pt;}
.y314{bottom:544.082352pt;}
.y312{bottom:544.082356pt;}
.y311{bottom:544.082361pt;}
.y31a{bottom:544.082367pt;}
.y174{bottom:544.466667pt;}
.y542{bottom:545.466667pt;}
.y472{bottom:546.706667pt;}
.y50c{bottom:547.506667pt;}
.yf0{bottom:548.506667pt;}
.y4fe{bottom:548.893333pt;}
.yd5{bottom:549.506667pt;}
.ya9{bottom:550.506667pt;}
.y1d3{bottom:551.506667pt;}
.y310{bottom:553.866781pt;}
.y30e{bottom:553.866786pt;}
.y31f{bottom:553.866792pt;}
.y31e{bottom:553.866800pt;}
.y31c{bottom:553.866807pt;}
.y502{bottom:554.506667pt;}
.y62a{bottom:555.506667pt;}
.y4a9{bottom:556.506667pt;}
.y12b{bottom:557.240000pt;}
.y129{bottom:557.800000pt;}
.y5f0{bottom:558.506667pt;}
.y59c{bottom:559.000000pt;}
.y48{bottom:559.506667pt;}
.y65{bottom:560.506667pt;}
.y116{bottom:561.506667pt;}
.y1ac{bottom:562.506667pt;}
.y1ec{bottom:563.506667pt;}
.y329{bottom:563.631703pt;}
.y76{bottom:564.506667pt;}
.yc2{bottom:565.506667pt;}
.y3ca{bottom:565.693333pt;}
.y4d9{bottom:566.506667pt;}
.y217{bottom:568.506667pt;}
.y28a{bottom:569.506667pt;}
.y8c{bottom:570.506667pt;}
.y247{bottom:571.506667pt;}
.y47c{bottom:572.365698pt;}
.y5fa{bottom:572.506667pt;}
.y3a9{bottom:573.409634pt;}
.y13c{bottom:573.506667pt;}
.y128{bottom:573.800000pt;}
.y12a{bottom:574.266667pt;}
.y541{bottom:574.506667pt;}
.y5d8{bottom:576.506667pt;}
.y57c{bottom:577.000000pt;}
.yef{bottom:577.506667pt;}
.ya8{bottom:578.506667pt;}
.y632{bottom:578.733333pt;}
.y62e{bottom:579.506667pt;}
.y1d2{bottom:580.506667pt;}
.y501{bottom:583.533333pt;}
.yd4{bottom:585.533333pt;}
.y55e{bottom:585.600000pt;}
.y47{bottom:586.533333pt;}
.y4c5{bottom:587.533333pt;}
.y561{bottom:587.733333pt;}
.y2ae{bottom:588.533333pt;}
.y12{bottom:589.533333pt;}
.y115{bottom:590.533333pt;}
.y4f0{bottom:591.226667pt;}
.y1eb{bottom:591.533333pt;}
.y603{bottom:592.533333pt;}
.y75{bottom:593.533333pt;}
.y2c{bottom:594.533333pt;}
.y3c9{bottom:594.733333pt;}
.y2e5{bottom:596.533333pt;}
.y216{bottom:597.533333pt;}
.y245{bottom:598.533333pt;}
.y8b{bottom:599.533333pt;}
.y47e{bottom:599.559423pt;}
.yc1{bottom:600.533333pt;}
.y5e3{bottom:602.533333pt;}
.y4a8{bottom:603.533333pt;}
.y5a8{bottom:604.000000pt;}
.y1a8{bottom:605.000000pt;}
.yee{bottom:605.533333pt;}
.y282{bottom:606.533333pt;}
.ya7{bottom:607.533333pt;}
.y4ef{bottom:608.240000pt;}
.y5b3{bottom:608.533333pt;}
.y186{bottom:609.000000pt;}
.y1e8{bottom:609.533333pt;}
.y4fd{bottom:609.693333pt;}
.y1d1{bottom:610.533333pt;}
.y11{bottom:613.533333pt;}
.y62d{bottom:614.533333pt;}
.y5ef{bottom:616.533333pt;}
.y64{bottom:617.533333pt;}
.y4dd{bottom:618.533333pt;}
.y114{bottom:619.533333pt;}
.y2ef{bottom:621.560000pt;}
.y2b{bottom:621.573333pt;}
.y74{bottom:622.560000pt;}
.y4d8{bottom:623.560000pt;}
.y2fa{bottom:623.800000pt;}
.y254{bottom:624.560000pt;}
.y57a{bottom:625.000000pt;}
.y4ee{bottom:625.266667pt;}
.y215{bottom:625.560000pt;}
.y1fc{bottom:626.560000pt;}
.y1a6{bottom:627.000000pt;}
.y107{bottom:627.573333pt;}
.y631{bottom:627.800000pt;}
.y8a{bottom:628.560000pt;}
.y479{bottom:629.227698pt;}
.y5e2{bottom:631.560000pt;}
.y4a7{bottom:632.560000pt;}
.yed{bottom:634.560000pt;}
.y1b1{bottom:635.560000pt;}
.y560{bottom:635.693333pt;}
.y279{bottom:636.560000pt;}
.ya6{bottom:636.573333pt;}
.y1d0{bottom:638.560000pt;}
.y48e{bottom:639.112735pt;}
.y4d7{bottom:641.560000pt;}
.y4c4{bottom:642.573333pt;}
.y243{bottom:643.560000pt;}
.y54f{bottom:644.640000pt;}
.y5ee{bottom:645.573333pt;}
.y2b3{bottom:646.000000pt;}
.y63{bottom:646.560000pt;}
.y55f{bottom:646.706667pt;}
.y29f{bottom:647.560000pt;}
.y614{bottom:648.560000pt;}
.y2a{bottom:648.573333pt;}
.y48f{bottom:649.004354pt;}
.y62c{bottom:649.560000pt;}
.y73{bottom:650.560000pt;}
.y2d9{bottom:651.573333pt;}
.y2f9{bottom:652.840000pt;}
.y59e{bottom:654.000000pt;}
.y2e4{bottom:654.560000pt;}
.y214{bottom:654.573333pt;}
.y244{bottom:655.560000pt;}
.y15f{bottom:655.573333pt;}
.y106{bottom:656.560000pt;}
.y89{bottom:657.573333pt;}
.y622{bottom:658.600000pt;}
.y48c{bottom:658.909135pt;}
.y5e1{bottom:660.600000pt;}
.y10{bottom:661.600000pt;}
.y54e{bottom:661.666667pt;}
.y4a6{bottom:662.600000pt;}
.yec{bottom:663.600000pt;}
.y1b0{bottom:664.600000pt;}
.ya5{bottom:665.600000pt;}
.y188{bottom:666.000000pt;}
.y267{bottom:666.600000pt;}
.y1e7{bottom:667.600000pt;}
.y1cf{bottom:668.600000pt;}
.y4d6{bottom:670.600000pt;}
.yc0{bottom:671.600000pt;}
.y22f{bottom:674.600000pt;}
.y62{bottom:675.600000pt;}
.y29{bottom:676.600000pt;}
.y630{bottom:676.866667pt;}
.y113{bottom:677.600000pt;}
.y633{bottom:677.866667pt;}
.y238{bottom:678.000000pt;}
.y54d{bottom:678.666667pt;}
.y72{bottom:679.600000pt;}
.y2d8{bottom:680.600000pt;}
.y2f8{bottom:680.866667pt;}
.y56f{bottom:683.000000pt;}
.y213{bottom:683.600000pt;}
.y2e3{bottom:684.600000pt;}
.y4ed{bottom:684.626667pt;}
.y105{bottom:685.600000pt;}
.y88{bottom:686.600000pt;}
.y28f{bottom:687.600000pt;}
.y55d{bottom:687.933333pt;}
.y18b{bottom:688.000000pt;}
.yf{bottom:689.600000pt;}
.y5e0{bottom:690.600000pt;}
.yd3{bottom:691.600000pt;}
.ye1{bottom:692.600000pt;}
.y1af{bottom:693.600000pt;}
.ya4{bottom:694.600000pt;}
.y266{bottom:695.626667pt;}
.y223{bottom:695.640000pt;}
.y2ce{bottom:696.000000pt;}
.y253{bottom:697.626667pt;}
.y1ce{bottom:698.626667pt;}
.y55c{bottom:698.933333pt;}
.y4c3{bottom:700.626667pt;}
.y4ec{bottom:701.626667pt;}
.y22e{bottom:703.626667pt;}
.y61{bottom:704.626667pt;}
.y4e8{bottom:705.000000pt;}
.y112{bottom:705.626667pt;}
.ybf{bottom:707.626667pt;}
.y71{bottom:708.626667pt;}
.y1aa{bottom:709.000000pt;}
.y2d7{bottom:709.626667pt;}
.y281{bottom:710.626667pt;}
.y12d{bottom:711.866667pt;}
.y5a1{bottom:712.000000pt;}
.y2e2{bottom:713.626667pt;}
.y1f9{bottom:713.640000pt;}
.y46{bottom:714.626667pt;}
.y157{bottom:715.626667pt;}
.y235{bottom:716.000000pt;}
.ye{bottom:716.626667pt;}
.y540{bottom:718.626667pt;}
.y4c1{bottom:718.640000pt;}
.y58e{bottom:719.000000pt;}
.y5df{bottom:719.626667pt;}
.y127{bottom:719.933333pt;}
.y5d7{bottom:720.626667pt;}
.yeb{bottom:721.626667pt;}
.ya3{bottom:722.626667pt;}
.y4e7{bottom:723.040000pt;}
.y2a7{bottom:723.626667pt;}
.y265{bottom:724.626667pt;}
.y1e3{bottom:726.640000pt;}
.y5fe{bottom:727.626667pt;}
.y12c{bottom:727.866667pt;}
.yd2{bottom:728.626667pt;}
.y4d5{bottom:729.640000pt;}
.y28{bottom:730.626667pt;}
.y212{bottom:731.626667pt;}
.y571{bottom:732.000000pt;}
.y22d{bottom:732.666667pt;}
.y60{bottom:733.666667pt;}
.y111{bottom:734.666667pt;}
.y2c6{bottom:735.000000pt;}
.y184{bottom:736.000000pt;}
.y613{bottom:736.666667pt;}
.y70{bottom:737.666667pt;}
.y521{bottom:739.666667pt;}
.y4e6{bottom:740.040000pt;}
.y55b{bottom:740.626667pt;}
.y280{bottom:740.666667pt;}
.y2cc{bottom:741.000000pt;}
.ybe{bottom:742.666667pt;}
.y45{bottom:743.666667pt;}
.y53f{bottom:747.666667pt;}
.y5de{bottom:748.666667pt;}
.yea{bottom:749.666667pt;}
.y606{bottom:750.666667pt;}
.ya2{bottom:751.666667pt;}
.y4eb{bottom:752.066667pt;}
.y4f7{bottom:752.333333pt;}
.y2a6{bottom:752.666667pt;}
.y4fc{bottom:752.800000pt;}
.y264{bottom:753.666667pt;}
.y5b1{bottom:754.666667pt;}
.y4e5{bottom:757.066667pt;}
.y27{bottom:757.666667pt;}
.y5f{bottom:761.666667pt;}
.y2ca{bottom:762.000000pt;}
.yd1{bottom:762.666667pt;}
.ye0{bottom:763.666667pt;}
.y601{bottom:765.666667pt;}
.y6f{bottom:766.666667pt;}
.y596{bottom:768.000000pt;}
.y4f6{bottom:769.373333pt;}
.y557{bottom:770.133333pt;}
.yd{bottom:770.706667pt;}
.y4ea{bottom:771.093333pt;}
.y15a{bottom:771.706667pt;}
.y4fb{bottom:771.840000pt;}
.y23a{bottom:772.000000pt;}
.y44{bottom:772.706667pt;}
.y191{bottom:774.000000pt;}
.y4e4{bottom:774.066667pt;}
.y156{bottom:775.333333pt;}
.y2d6{bottom:775.706667pt;}
.y4c0{bottom:776.706667pt;}
.y5dd{bottom:777.706667pt;}
.ybd{bottom:778.706667pt;}
.y605{bottom:779.706667pt;}
.ya1{bottom:780.706667pt;}
.y2b5{bottom:781.000000pt;}
.y104{bottom:781.706667pt;}
.y222{bottom:782.693333pt;}
.y2c4{bottom:783.000000pt;}
.y5ae{bottom:783.693333pt;}
.y1df{bottom:784.693333pt;}
.y26{bottom:784.706667pt;}
.y4a5{bottom:786.706667pt;}
.y1cd{bottom:787.706667pt;}
.y4d3{bottom:788.693333pt;}
.y55a{bottom:790.533333pt;}
.y5e{bottom:790.706667pt;}
.y573{bottom:791.000000pt;}
.y2a8{bottom:792.693333pt;}
.y110{bottom:792.706667pt;}
.y23e{bottom:793.000000pt;}
.y6e{bottom:794.706667pt;}
.y5ea{bottom:795.706667pt;}
.y621{bottom:797.706667pt;}
.y2c8{bottom:798.000000pt;}
.y27f{bottom:798.693333pt;}
.yd0{bottom:799.706667pt;}
.y43{bottom:800.706667pt;}
.y1f7{bottom:801.693333pt;}
.y87{bottom:801.706667pt;}
.y5f4{bottom:804.706667pt;}
.y559{bottom:805.533333pt;}
.y4bf{bottom:805.693333pt;}
.y53e{bottom:805.706667pt;}
.y5dc{bottom:806.706667pt;}
.ye9{bottom:807.733333pt;}
.yc{bottom:808.733333pt;}
.ya0{bottom:809.733333pt;}
.y275{bottom:810.733333pt;}
.y25{bottom:811.733333pt;}
.y2d2{bottom:812.733333pt;}
.ybc{bottom:813.733333pt;}
.y2b8{bottom:814.733333pt;}
.y126{bottom:815.133333pt;}
.y1cc{bottom:816.733333pt;}
.y1ae{bottom:817.733333pt;}
.y26f{bottom:818.733333pt;}
.y5d{bottom:819.733333pt;}
.y4f5{bottom:820.373333pt;}
.y287{bottom:820.733333pt;}
.y278{bottom:821.733333pt;}
.y598{bottom:822.000000pt;}
.y221{bottom:822.733333pt;}
.y4a4{bottom:823.733333pt;}
.y602{bottom:824.733333pt;}
.y27e{bottom:827.733333pt;}
.y4e3{bottom:828.733333pt;}
.y4fa{bottom:828.866667pt;}
.y42{bottom:829.733333pt;}
.y86{bottom:830.733333pt;}
.y241{bottom:831.000000pt;}
.y276{bottom:832.733333pt;}
.ycf{bottom:833.733333pt;}
.ydf{bottom:834.733333pt;}
.y4be{bottom:835.733333pt;}
.y1a0{bottom:836.000000pt;}
.ye8{bottom:836.733333pt;}
.y4e9{bottom:837.106667pt;}
.y4f4{bottom:837.373333pt;}
.y2ab{bottom:837.733333pt;}
.yb{bottom:838.733333pt;}
.y24{bottom:839.733333pt;}
.y153{bottom:840.533333pt;}
.y10f{bottom:840.733333pt;}
.y1f6{bottom:841.733333pt;}
.y575{bottom:842.000000pt;}
.y6d{bottom:842.733333pt;}
.y2b7{bottom:843.733333pt;}
.y4e2{bottom:845.733333pt;}
.y1cb{bottom:846.773333pt;}
.y4d1{bottom:847.760000pt;}
.y4f9{bottom:847.893333pt;}
.y5c{bottom:848.773333pt;}
.ybb{bottom:849.773333pt;}
.y558{bottom:850.773333pt;}
.y616{bottom:852.773333pt;}
.y5c2{bottom:853.760000pt;}
.y4f3{bottom:854.400000pt;}
.y27d{bottom:857.760000pt;}
.y3c8{bottom:857.773333pt;}
.y41{bottom:858.773333pt;}
.y182{bottom:860.000000pt;}
.y232{bottom:861.000000pt;}
.y53d{bottom:862.773333pt;}
.y4bd{bottom:864.760000pt;}
.y211{bottom:864.773333pt;}
.y1ba{bottom:865.760000pt;}
.ye7{bottom:865.773333pt;}
.y23{bottom:866.773333pt;}
.y620{bottom:867.773333pt;}
.y520{bottom:868.760000pt;}
.ya{bottom:868.773333pt;}
.y155{bottom:869.133333pt;}
.y629{bottom:869.773333pt;}
.y2bd{bottom:870.000000pt;}
.y2a5{bottom:870.760000pt;}
.yce{bottom:870.773333pt;}
.y2c3{bottom:871.000000pt;}
.y4a3{bottom:871.773333pt;}
.y594{bottom:874.000000pt;}
.y18e{bottom:875.000000pt;}
.y1ca{bottom:875.773333pt;}
.y1a2{bottom:876.000000pt;}
.y2ad{bottom:876.773333pt;}
.y5b{bottom:877.773333pt;}
.y1a4{bottom:878.000000pt;}
.y1de{bottom:882.800000pt;}
.yba{bottom:884.800000pt;}
.y27b{bottom:886.800000pt;}
.y40{bottom:887.800000pt;}
.y6c{bottom:889.800000pt;}
.y53c{bottom:891.800000pt;}
.y22{bottom:893.800000pt;}
.y5a6{bottom:894.000000pt;}
.y4bc{bottom:894.800000pt;}
.y9f{bottom:895.800000pt;}
.y612{bottom:896.800000pt;}
.y590{bottom:897.000000pt;}
.y4d0{bottom:897.800000pt;}
.y9{bottom:898.800000pt;}
.y5ac{bottom:899.800000pt;}
.y556{bottom:900.133333pt;}
.y2a4{bottom:900.800000pt;}
.y61f{bottom:902.800000pt;}
.y1c9{bottom:903.800000pt;}
.y628{bottom:904.800000pt;}
.y5a{bottom:905.800000pt;}
.y13b{bottom:906.800000pt;}
.y1dd{bottom:907.800000pt;}
.y2b9{bottom:910.000000pt;}
.y5c1{bottom:911.800000pt;}
.y4e1{bottom:913.466667pt;}
.y2c1{bottom:914.000000pt;}
.y555{bottom:914.173333pt;}
.y4f8{bottom:915.200000pt;}
.y1b7{bottom:915.800000pt;}
.y3f{bottom:916.800000pt;}
.y6b{bottom:918.800000pt;}
.y21{bottom:920.840000pt;}
.y230{bottom:922.000000pt;}
.ye6{bottom:922.840000pt;}
.y4b8{bottom:923.840000pt;}
.y9e{bottom:924.840000pt;}
.y272{bottom:925.840000pt;}
.y154{bottom:927.106667pt;}
.y554{bottom:928.173333pt;}
.y8{bottom:928.840000pt;}
.y4a2{bottom:929.840000pt;}
.y1c8{bottom:933.840000pt;}
.y59{bottom:934.840000pt;}
.y173{bottom:935.840000pt;}
.y1dc{bottom:936.840000pt;}
.y61e{bottom:937.840000pt;}
.y627{bottom:939.840000pt;}
.y210{bottom:940.840000pt;}
.ycd{bottom:941.840000pt;}
.y553{bottom:943.200000pt;}
.y2bb{bottom:944.000000pt;}
.y3e{bottom:944.840000pt;}
.y85{bottom:945.840000pt;}
.y550{bottom:946.533333pt;}
.y20{bottom:947.840000pt;}
.y6a{bottom:948.840000pt;}
.y53b{bottom:949.840000pt;}
.ye5{bottom:951.840000pt;}
.y5db{bottom:952.840000pt;}
.y9d{bottom:953.840000pt;}
.y4ce{bottom:954.840000pt;}
.yb9{bottom:955.840000pt;}
.y2bf{bottom:956.000000pt;}
.y158{bottom:956.866667pt;}
.y5ab{bottom:957.866667pt;}
.y7{bottom:958.866667pt;}
.y1c7{bottom:959.866667pt;}
.y592{bottom:962.000000pt;}
.y58{bottom:963.866667pt;}
.y1b5{bottom:964.866667pt;}
.y20f{bottom:969.866667pt;}
.y1c5{bottom:970.866667pt;}
.y61d{bottom:972.866667pt;}
.y4e0{bottom:973.106667pt;}
.y607{bottom:973.866667pt;}
.y84{bottom:974.866667pt;}
.y539{bottom:975.866667pt;}
.y1f{bottom:976.866667pt;}
.y5da{bottom:981.866667pt;}
.y9c{bottom:982.866667pt;}
.y1c6{bottom:985.866667pt;}
.y5a4{bottom:986.000000pt;}
.y552{bottom:986.533333pt;}
.y538{bottom:986.866667pt;}
.y6{bottom:988.866667pt;}
.y2b1{bottom:989.000000pt;}
.y4df{bottom:990.133333pt;}
.y2af{bottom:992.000000pt;}
.y3d{bottom:992.866667pt;}
.yb8{bottom:993.893333pt;}
.y69{bottom:995.893333pt;}
.y23c{bottom:997.000000pt;}
.y537{bottom:997.893333pt;}
.y5bf{bottom:998.893333pt;}
.ye4{bottom:999.893333pt;}
.y551{bottom:1000.533333pt;}
.y53a{bottom:1004.893333pt;}
.y4de{bottom:1007.133333pt;}
.y536{bottom:1007.893333pt;}
.y626{bottom:1008.893333pt;}
.yfe{bottom:1010.893333pt;}
.y57{bottom:1011.893333pt;}
.y608{bottom:1012.893333pt;}
.y1ad{bottom:1013.893333pt;}
.y1e{bottom:1014.893333pt;}
.y535{bottom:1017.893333pt;}
.y5{bottom:1018.893333pt;}
.y4{bottom:1048.933333pt;}
.y1c{bottom:1060.933333pt;}
.y3{bottom:1078.960000pt;}
.y1d{bottom:1099.960000pt;}
.y1b{bottom:1100.960000pt;}
.y2{bottom:1109.000000pt;}
.hdb{height:6.734375pt;}
.hb7{height:8.684026pt;}
.hb8{height:8.684028pt;}
.hb4{height:8.684034pt;}
.h7e{height:9.276679pt;}
.h6e{height:9.276680pt;}
.h71{height:9.292954pt;}
.h6d{height:9.292955pt;}
.h77{height:9.292961pt;}
.hbd{height:9.394734pt;}
.hc9{height:9.411187pt;}
.hba{height:15.098010pt;}
.hb9{height:15.098012pt;}
.h89{height:15.098061pt;}
.he9{height:17.000000pt;}
.h9a{height:17.840333pt;}
.h99{height:17.840334pt;}
.hb2{height:17.840336pt;}
.hb3{height:17.840338pt;}
.hb1{height:17.840339pt;}
.haa{height:17.855567pt;}
.ha9{height:17.855569pt;}
.h9c{height:17.855619pt;}
.he7{height:18.000000pt;}
.h3f{height:18.033333pt;}
.hcb{height:18.295875pt;}
.h2c{height:19.000000pt;}
.hd5{height:19.020000pt;}
.h1e{height:19.033333pt;}
.h74{height:19.057879pt;}
.h73{height:19.057883pt;}
.h85{height:19.057926pt;}
.hc8{height:19.299516pt;}
.hca{height:19.776656pt;}
.h59{height:20.000000pt;}
.h30{height:21.000000pt;}
.h96{height:21.054944pt;}
.h91{height:21.054945pt;}
.h37{height:22.000000pt;}
.h5b{height:22.033333pt;}
.h2f{height:23.000000pt;}
.hd{height:23.033333pt;}
.hf6{height:23.986667pt;}
.h55{height:24.000000pt;}
.h26{height:24.033333pt;}
.h88{height:24.335431pt;}
.h33{height:25.000000pt;}
.hf5{height:25.020000pt;}
.hd9{height:25.033333pt;}
.haf{height:25.047197pt;}
.h6a{height:25.996243pt;}
.h36{height:26.000000pt;}
.h5c{height:26.033333pt;}
.h8a{height:26.082534pt;}
.ha3{height:26.082536pt;}
.hbc{height:26.348362pt;}
.h97{height:26.539588pt;}
.h92{height:26.539590pt;}
.hc1{height:26.703422pt;}
.h84{height:26.756584pt;}
.h9e{height:26.996642pt;}
.h9f{height:26.996643pt;}
.h9d{height:26.996645pt;}
.h53{height:27.000000pt;}
.h5a{height:27.033333pt;}
.hc6{height:27.049644pt;}
.h8b{height:27.336542pt;}
.h44{height:27.986667pt;}
.h5e{height:28.000000pt;}
.h58{height:28.020000pt;}
.h4c{height:28.033333pt;}
.h95{height:28.141742pt;}
.h8c{height:28.367802pt;}
.had{height:28.367804pt;}
.h98{height:28.824856pt;}
.h93{height:28.824858pt;}
.h76{height:28.839071pt;}
.h75{height:28.839072pt;}
.h6f{height:28.839074pt;}
.h72{height:28.839076pt;}
.h5f{height:28.986667pt;}
.h34{height:29.000000pt;}
.h48{height:29.020000pt;}
.hf8{height:29.026667pt;}
.h27{height:29.033333pt;}
.hc0{height:29.171391pt;}
.hc7{height:29.187844pt;}
.h6c{height:29.202170pt;}
.hbf{height:29.522016pt;}
.hc3{height:29.664984pt;}
.he8{height:30.000000pt;}
.h39{height:30.033333pt;}
.h70{height:30.062322pt;}
.hc2{height:30.391589pt;}
.h94{height:30.653071pt;}
.ha2{height:30.653073pt;}
.h51{height:31.000000pt;}
.h1c{height:31.033333pt;}
.h9{height:32.425374pt;}
.hb5{height:33.395393pt;}
.hb6{height:33.395395pt;}
.hb0{height:33.395397pt;}
.hcc{height:34.123781pt;}
.h5d{height:36.033333pt;}
.hae{height:36.153002pt;}
.h25{height:37.039062pt;}
.he3{height:37.151302pt;}
.h22{height:38.033333pt;}
.hc4{height:38.566125pt;}
.h6b{height:38.620270pt;}
.h83{height:38.620319pt;}
.h20{height:39.033333pt;}
.hc5{height:39.059719pt;}
.hce{height:39.076172pt;}
.hfb{height:40.033333pt;}
.hfc{height:40.066667pt;}
.h63{height:42.000000pt;}
.h61{height:43.000000pt;}
.he5{height:43.763672pt;}
.hc{height:43.773438pt;}
.he2{height:43.885677pt;}
.he6{height:43.896289pt;}
.hf9{height:44.437500pt;}
.h4f{height:45.000000pt;}
.hac{height:45.309260pt;}
.ha8{height:45.309261pt;}
.hab{height:45.309263pt;}
.h32{height:46.000000pt;}
.hd1{height:46.033333pt;}
.h1d{height:46.140793pt;}
.hcf{height:46.259103pt;}
.h31{height:47.000000pt;}
.hd8{height:47.033333pt;}
.ha4{height:47.137474pt;}
.ha6{height:47.137476pt;}
.he4{height:47.252865pt;}
.h35{height:48.033333pt;}
.h80{height:48.385188pt;}
.h81{height:48.385192pt;}
.h82{height:48.385194pt;}
.h7f{height:48.401463pt;}
.h7d{height:48.401467pt;}
.h7c{height:48.401469pt;}
.h3b{height:49.033333pt;}
.h3a{height:49.066667pt;}
.h6{height:50.507812pt;}
.h62{height:50.620052pt;}
.h19{height:51.269531pt;}
.h1b{height:51.383464pt;}
.h8e{height:52.165065pt;}
.h2{height:53.875000pt;}
.h4e{height:53.987240pt;}
.h13{height:54.687500pt;}
.h1a{height:54.801432pt;}
.ha1{height:54.907387pt;}
.h9b{height:54.907389pt;}
.ha7{height:54.907391pt;}
.h8f{height:55.821495pt;}
.h52{height:56.000000pt;}
.hf2{height:56.066667pt;}
.hbe{height:56.368406pt;}
.h14{height:56.788668pt;}
.h86{height:56.906978pt;}
.h50{height:57.000000pt;}
.h40{height:57.033333pt;}
.h2d{height:57.066667pt;}
.h10{height:57.434570pt;}
.h49{height:57.645110pt;}
.h4d{height:57.765204pt;}
.h2e{height:58.033333pt;}
.hd6{height:58.053333pt;}
.h23{height:58.066667pt;}
.h7a{height:58.166385pt;}
.h78{height:58.166388pt;}
.h3{height:59.677734pt;}
.h16{height:63.656250pt;}
.hd7{height:63.788867pt;}
.hf1{height:63.843750pt;}
.h24{height:63.976562pt;}
.hd0{height:63.976758pt;}
.h11{height:64.088802pt;}
.h12{height:65.055339pt;}
.ha5{height:65.437905pt;}
.ha0{height:65.437908pt;}
.h15{height:65.781915pt;}
.h18{height:66.625000pt;}
.h38{height:68.000000pt;}
.hcd{height:69.234750pt;}
.hf{height:69.504883pt;}
.he{height:70.179688pt;}
.heb{height:75.066667pt;}
.h1f{height:76.066667pt;}
.h4{height:77.557552pt;}
.h5{height:78.727214pt;}
.h66{height:86.066667pt;}
.hed{height:86.100000pt;}
.h4a{height:87.053333pt;}
.h45{height:87.066667pt;}
.hea{height:87.100000pt;}
.h79{height:87.493703pt;}
.h7b{height:87.493705pt;}
.h4b{height:88.100000pt;}
.he0{height:94.359375pt;}
.h7{height:95.912240pt;}
.h21{height:96.066667pt;}
.h64{height:96.100000pt;}
.hd2{height:104.066667pt;}
.hdd{height:104.100000pt;}
.hf0{height:105.100000pt;}
.h60{height:108.000000pt;}
.hdf{height:108.100000pt;}
.h8d{height:108.443612pt;}
.h90{height:108.443614pt;}
.hef{height:111.100000pt;}
.h47{height:115.100000pt;}
.h46{height:116.100000pt;}
.h29{height:116.133333pt;}
.hec{height:119.100000pt;}
.hf3{height:119.515625pt;}
.hee{height:122.100000pt;}
.hfa{height:126.100000pt;}
.hb{height:128.133333pt;}
.hda{height:129.100000pt;}
.hde{height:130.100000pt;}
.h17{height:137.250000pt;}
.hdc{height:142.133333pt;}
.h2b{height:144.133333pt;}
.hf4{height:144.672756pt;}
.h28{height:145.080000pt;}
.he1{height:146.359375pt;}
.h3c{height:149.250000pt;}
.h65{height:156.133333pt;}
.h2a{height:173.133333pt;}
.hf7{height:173.173333pt;}
.h43{height:181.250000pt;}
.hd4{height:181.303333pt;}
.hd3{height:181.356667pt;}
.h3e{height:185.250000pt;}
.h3d{height:185.356667pt;}
.h41{height:197.250000pt;}
.ha{height:238.226667pt;}
.h42{height:241.250000pt;}
.hbb{height:269.500320pt;}
.h87{height:392.152125pt;}
.h56{height:403.333333pt;}
.h54{height:403.373333pt;}
.h8{height:419.400000pt;}
.h69{height:420.377690pt;}
.h57{height:432.400000pt;}
.h67{height:793.000000pt;}
.h68{height:793.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w25{width:6.000000pt;}
.w2d{width:6.033333pt;}
.w2a{width:7.000000pt;}
.w7a{width:30.778076pt;}
.w7b{width:35.660901pt;}
.w75{width:36.653742pt;}
.w3{width:37.033333pt;}
.w8b{width:43.034240pt;}
.w76{width:43.473421pt;}
.w94{width:43.548685pt;}
.wa3{width:43.548686pt;}
.w99{width:47.982674pt;}
.wb3{width:48.066667pt;}
.wa4{width:48.477171pt;}
.w80{width:48.526026pt;}
.wae{width:49.000000pt;}
.wb8{width:52.066667pt;}
.wb6{width:53.066667pt;}
.wb5{width:56.066667pt;}
.wb7{width:58.066667pt;}
.w85{width:58.136650pt;}
.w82{width:58.151906pt;}
.w70{width:62.044433pt;}
.w97{width:62.834061pt;}
.w98{width:62.834062pt;}
.w9a{width:62.850544pt;}
.wb4{width:64.066667pt;}
.wa7{width:65.066667pt;}
.w3c{width:72.000000pt;}
.w71{width:73.274931pt;}
.w20{width:75.066667pt;}
.w22{width:75.100000pt;}
.w6e{width:80.612190pt;}
.w8a{width:81.961845pt;}
.wad{width:82.000000pt;}
.w1a{width:83.000000pt;}
.w87{width:83.798542pt;}
.w6b{width:85.013244pt;}
.w1e{width:86.000000pt;}
.w86{width:87.453630pt;}
.w81{width:87.453632pt;}
.w84{width:87.459732pt;}
.wb0{width:89.000000pt;}
.w1b{width:92.000000pt;}
.wa1{width:92.022558pt;}
.w1c{width:93.000000pt;}
.w6c{width:93.307536pt;}
.w78{width:93.307537pt;}
.w6f{width:93.314046pt;}
.wc9{width:94.100000pt;}
.w96{width:94.495043pt;}
.wa2{width:94.501635pt;}
.w14{width:95.000000pt;}
.w5c{width:96.000000pt;}
.w6d{width:98.196871pt;}
.w3d{width:102.000000pt;}
.w5b{width:103.000000pt;}
.w34{width:103.133333pt;}
.w42{width:105.000000pt;}
.wcb{width:106.133333pt;}
.w90{width:107.138629pt;}
.wb2{width:110.000000pt;}
.w3e{width:111.000000pt;}
.wa0{width:111.809023pt;}
.w58{width:112.133333pt;}
.w57{width:113.133333pt;}
.w8d{width:116.749254pt;}
.w89{width:116.761458pt;}
.w83{width:116.761460pt;}
.wcc{width:117.166667pt;}
.wb1{width:120.000000pt;}
.w1d{width:121.000000pt;}
.wac{width:121.166667pt;}
.waf{width:122.000000pt;}
.w51{width:122.133333pt;}
.w12{width:124.000000pt;}
.wb9{width:124.133333pt;}
.wd1{width:124.166667pt;}
.w72{width:124.577149pt;}
.w79{width:124.577150pt;}
.wd2{width:125.133333pt;}
.wa9{width:125.166667pt;}
.w91{width:125.456784pt;}
.w9c{width:126.162618pt;}
.w95{width:126.162619pt;}
.w9e{width:126.182397pt;}
.w43{width:127.000000pt;}
.w5d{width:129.000000pt;}
.waa{width:130.166667pt;}
.w13{width:135.000000pt;}
.w74{width:135.807647pt;}
.w5f{width:137.000000pt;}
.w60{width:138.000000pt;}
.wbc{width:140.173333pt;}
.w38{width:141.173333pt;}
.w8e{width:142.408095pt;}
.w40{width:145.000000pt;}
.w5e{width:151.000000pt;}
.w17{width:153.000000pt;}
.w56{width:160.200000pt;}
.w62{width:161.000000pt;}
.w61{width:162.000000pt;}
.wbb{width:162.200000pt;}
.w3f{width:165.000000pt;}
.w11{width:166.000000pt;}
.w16{width:168.000000pt;}
.w3a{width:169.200000pt;}
.wba{width:174.226667pt;}
.w8c{width:175.371011pt;}
.wf{width:179.200000pt;}
.w77{width:179.297343pt;}
.wab{width:180.226667pt;}
.wca{width:182.240000pt;}
.wc5{width:186.240000pt;}
.w73{width:187.109864pt;}
.w15{width:188.000000pt;}
.w36{width:188.226667pt;}
.w9d{width:189.491174pt;}
.w18{width:191.000000pt;}
.w65{width:198.240000pt;}
.wc3{width:200.240000pt;}
.wc1{width:201.240000pt;}
.wc2{width:201.266667pt;}
.w4{width:203.106667pt;}
.w2b{width:204.266667pt;}
.w9f{width:204.326078pt;}
.wc{width:217.266667pt;}
.w23{width:225.266667pt;}
.w21{width:226.306667pt;}
.w8f{width:233.046960pt;}
.w41{width:237.000000pt;}
.w4e{width:239.293333pt;}
.wa5{width:245.306667pt;}
.w4d{width:247.333333pt;}
.w28{width:258.333333pt;}
.w26{width:280.360000pt;}
.w35{width:283.333333pt;}
.w54{width:289.333333pt;}
.wc7{width:301.360000pt;}
.wc8{width:301.373333pt;}
.wc6{width:304.373333pt;}
.w32{width:313.400000pt;}
.wc0{width:323.400000pt;}
.w50{width:324.400000pt;}
.w4c{width:333.400000pt;}
.w64{width:340.400000pt;}
.wbf{width:345.466667pt;}
.w2c{width:352.426667pt;}
.wa6{width:357.440000pt;}
.wbe{width:365.466667pt;}
.w49{width:369.466667pt;}
.wa8{width:375.466667pt;}
.w4a{width:377.466667pt;}
.wc4{width:381.466667pt;}
.wd{width:386.466667pt;}
.w2f{width:391.493333pt;}
.w48{width:395.466667pt;}
.w30{width:397.493333pt;}
.w66{width:405.506667pt;}
.w4f{width:405.533333pt;}
.w37{width:414.506667pt;}
.w10{width:424.533333pt;}
.wce{width:431.533333pt;}
.w3b{width:433.533333pt;}
.w59{width:436.533333pt;}
.w2e{width:436.560000pt;}
.w4b{width:437.533333pt;}
.we{width:441.533333pt;}
.w5a{width:443.533333pt;}
.wcf{width:445.533333pt;}
.w39{width:461.573333pt;}
.wcd{width:463.600000pt;}
.w31{width:464.600000pt;}
.w52{width:480.600000pt;}
.w24{width:508.626667pt;}
.wbd{width:513.653333pt;}
.w47{width:529.666667pt;}
.w27{width:530.666667pt;}
.w1f{width:543.666667pt;}
.w45{width:553.666667pt;}
.w29{width:573.733333pt;}
.w46{width:594.733333pt;}
.w53{width:598.733333pt;}
.w19{width:599.733333pt;}
.w63{width:601.733333pt;}
.w44{width:602.733333pt;}
.w55{width:603.733333pt;}
.wb{width:604.733333pt;}
.w33{width:605.733333pt;}
.wd0{width:625.800000pt;}
.wa{width:729.933310pt;}
.w9{width:792.999988pt;}
.w7{width:793.000000pt;}
.w8{width:793.333333pt;}
.w6{width:793.999988pt;}
.w5{width:794.000000pt;}
.w7c{width:932.619624pt;}
.w9b{width:932.620966pt;}
.w88{width:932.688204pt;}
.w93{width:933.105512pt;}
.w6a{width:933.107914pt;}
.w7f{width:933.139758pt;}
.w7e{width:933.139759pt;}
.w92{width:933.840000pt;}
.w7d{width:934.840000pt;}
.w69{width:1122.999983pt;}
.w67{width:1123.000000pt;}
.w68{width:1123.333333pt;}
.w2{width:1640.999976pt;}
.w0{width:1641.000000pt;}
.w1{width:1641.333333pt;}
.x78{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x11c{left:0.976566pt;}
.x119{left:1.953130pt;}
.x125{left:2.929696pt;}
.x123{left:3.906261pt;}
.x11f{left:4.882825pt;}
.xf2{left:6.000000pt;}
.x46{left:7.000000pt;}
.x113{left:8.300803pt;}
.x69{left:9.466667pt;}
.x105{left:10.773333pt;}
.x6b{left:11.706667pt;}
.x9e{left:13.000000pt;}
.x9c{left:14.000000pt;}
.x9{left:15.000000pt;}
.x62{left:16.000000pt;}
.x61{left:17.440000pt;}
.x59{left:18.333333pt;}
.xc2{left:20.166667pt;}
.x130{left:21.064048pt;}
.xbf{left:22.133333pt;}
.x17d{left:23.040000pt;}
.xb{left:24.000000pt;}
.x5c{left:25.533333pt;}
.x117{left:26.868560pt;}
.x11d{left:27.848381pt;}
.xe{left:28.986667pt;}
.xf9{left:30.026667pt;}
.x120{left:31.269613pt;}
.xf7{left:33.040000pt;}
.xf6{left:34.040000pt;}
.xf3{left:35.040000pt;}
.x9d{left:37.033333pt;}
.x19d{left:38.026667pt;}
.x57{left:39.200000pt;}
.x11e{left:41.032009pt;}
.x135{left:42.115891pt;}
.xb0{left:43.026667pt;}
.xf0{left:44.026667pt;}
.x18b{left:45.026667pt;}
.x19a{left:46.066667pt;}
.xf5{left:47.066667pt;}
.xf4{left:48.026667pt;}
.x124{left:49.349088pt;}
.x4c{left:51.066667pt;}
.x189{left:52.066667pt;}
.xbe{left:53.226667pt;}
.xa2{left:55.066667pt;}
.xf8{left:56.066667pt;}
.x144{left:57.066667pt;}
.x18c{left:58.066667pt;}
.x160{left:60.053333pt;}
.xb3{left:61.066667pt;}
.x109{left:62.400000pt;}
.xe7{left:64.053333pt;}
.x134{left:66.847231pt;}
.x195{left:69.066667pt;}
.x10e{left:72.066667pt;}
.x5d{left:73.600000pt;}
.x11b{left:77.194212pt;}
.xe5{left:78.093333pt;}
.x9a{left:82.093333pt;}
.x1c5{left:84.100000pt;}
.x162{left:85.093333pt;}
.x199{left:86.106667pt;}
.xc8{left:87.100000pt;}
.x71{left:88.133333pt;}
.xea{left:89.106667pt;}
.x44{left:90.106667pt;}
.x9b{left:93.106667pt;}
.x92{left:94.133333pt;}
.x14{left:95.133322pt;}
.x29{left:96.133322pt;}
.x10a{left:97.133333pt;}
.x3d{left:99.106667pt;}
.xc0{left:102.000000pt;}
.x54{left:105.000000pt;}
.xd5{left:107.133322pt;}
.xdf{left:108.133333pt;}
.xdd{left:109.133333pt;}
.x6d{left:110.140000pt;}
.x25{left:111.133322pt;}
.xd2{left:112.133322pt;}
.x15{left:113.133322pt;}
.x56{left:115.000000pt;}
.x15e{left:118.133333pt;}
.x2e{left:119.166655pt;}
.x55{left:121.000000pt;}
.x6c{left:125.166667pt;}
.x197{left:126.160000pt;}
.x26{left:127.166655pt;}
.x3f{left:129.166655pt;}
.x93{left:130.133333pt;}
.x96{left:131.166655pt;}
.xd7{left:132.166667pt;}
.x2b{left:133.166655pt;}
.xc4{left:136.160000pt;}
.xde{left:137.173333pt;}
.xbd{left:139.000000pt;}
.x1c{left:140.159988pt;}
.x2f{left:143.159988pt;}
.xc6{left:144.159988pt;}
.x3a{left:148.199976pt;}
.x65{left:150.000000pt;}
.x15c{left:151.160000pt;}
.x164{left:156.199988pt;}
.x52{left:159.200000pt;}
.x45{left:161.200000pt;}
.x198{left:162.186667pt;}
.xdb{left:163.200000pt;}
.x149{left:164.666655pt;}
.x147{left:166.799988pt;}
.xd6{left:168.199988pt;}
.x24{left:169.199988pt;}
.x70{left:170.200000pt;}
.x14a{left:171.666655pt;}
.x148{left:172.666655pt;}
.xa4{left:174.200000pt;}
.xfb{left:175.240000pt;}
.x4b{left:176.240000pt;}
.xd8{left:178.233333pt;}
.xfa{left:179.240000pt;}
.x10b{left:181.200000pt;}
.xca{left:183.226667pt;}
.x1e{left:185.239988pt;}
.xe8{left:186.239988pt;}
.x18e{left:187.226667pt;}
.x19c{left:189.240000pt;}
.x10d{left:190.239988pt;}
.x182{left:191.239988pt;}
.xb2{left:192.226667pt;}
.xe4{left:194.240000pt;}
.xc9{left:195.226655pt;}
.x67{left:197.000000pt;}
.xa5{left:198.266655pt;}
.x99{left:199.266667pt;}
.x1af{left:200.266655pt;}
.x1ac{left:201.266655pt;}
.xec{left:202.226667pt;}
.x106{left:204.000000pt;}
.xb5{left:205.266667pt;}
.xa1{left:206.266655pt;}
.xed{left:207.240000pt;}
.xc7{left:208.266655pt;}
.x73{left:209.266655pt;}
.x43{left:210.266655pt;}
.xd0{left:211.266655pt;}
.xdc{left:212.266667pt;}
.x184{left:214.266667pt;}
.x6e{left:215.266655pt;}
.x1b0{left:216.266655pt;}
.x1c1{left:217.266655pt;}
.xe9{left:218.266667pt;}
.xee{left:219.266667pt;}
.x17f{left:220.266667pt;}
.xbb{left:221.266655pt;}
.x1b4{left:222.266655pt;}
.x38{left:223.773322pt;}
.x194{left:225.293322pt;}
.x1a4{left:226.306655pt;}
.x10c{left:227.306667pt;}
.x39{left:230.773322pt;}
.xe6{left:235.306667pt;}
.xa6{left:237.306667pt;}
.x1b5{left:238.306655pt;}
.x6f{left:239.306655pt;}
.x1bb{left:241.306655pt;}
.x15d{left:242.306667pt;}
.x15f{left:243.306667pt;}
.xab{left:244.306655pt;}
.xcb{left:245.293333pt;}
.xb4{left:246.306667pt;}
.x58{left:248.000000pt;}
.x1b6{left:249.293322pt;}
.xd4{left:250.306655pt;}
.xeb{left:252.333333pt;}
.x188{left:254.333322pt;}
.xef{left:255.333333pt;}
.x100{left:257.000000pt;}
.x4d{left:258.333322pt;}
.x1a3{left:262.333322pt;}
.xa7{left:263.333322pt;}
.x165{left:264.333322pt;}
.xb1{left:265.333333pt;}
.x9f{left:266.333322pt;}
.x17e{left:268.333333pt;}
.xaf{left:269.333322pt;}
.xb6{left:270.333333pt;}
.x1c2{left:271.333322pt;}
.x51{left:273.333322pt;}
.x50{left:274.333333pt;}
.xd1{left:275.333322pt;}
.xe3{left:277.373333pt;}
.x181{left:279.333333pt;}
.x1f{left:281.359988pt;}
.x37{left:283.239988pt;}
.xa3{left:284.373333pt;}
.x64{left:285.333333pt;}
.x18f{left:286.333333pt;}
.x142{left:288.359988pt;}
.x1a{left:289.373322pt;}
.x183{left:292.373322pt;}
.x10f{left:293.373333pt;}
.x40{left:294.359988pt;}
.x190{left:295.373333pt;}
.x2c{left:296.359988pt;}
.x14f{left:297.959988pt;}
.x12{left:299.359988pt;}
.x11{left:301.373322pt;}
.x14b{left:302.973322pt;}
.x14d{left:303.959988pt;}
.xd3{left:305.399988pt;}
.x4a{left:306.639988pt;}
.x14c{left:307.973322pt;}
.x82{left:310.399988pt;}
.x145{left:311.399988pt;}
.x10{left:312.399988pt;}
.xac{left:313.399988pt;}
.x14e{left:314.999988pt;}
.x90{left:316.399988pt;}
.x74{left:317.399988pt;}
.xe0{left:318.399988pt;}
.x3b{left:319.399988pt;}
.x60{left:323.000000pt;}
.x1b3{left:325.399988pt;}
.x18{left:330.439988pt;}
.x177{left:332.000000pt;}
.x175{left:333.000000pt;}
.x176{left:335.000000pt;}
.x187{left:339.439988pt;}
.x94{left:340.439988pt;}
.x143{left:341.440000pt;}
.x8d{left:342.439988pt;}
.x8e{left:344.439988pt;}
.x83{left:345.439976pt;}
.x107{left:347.000000pt;}
.x1b8{left:350.439988pt;}
.x41{left:351.439988pt;}
.x8f{left:352.426655pt;}
.x1a0{left:353.439988pt;}
.xe1{left:354.439988pt;}
.x84{left:356.440000pt;}
.x20{left:357.466655pt;}
.x1b9{left:358.466655pt;}
.x32{left:359.466655pt;}
.x23{left:360.466655pt;}
.x2a{left:361.466655pt;}
.x68{left:365.000000pt;}
.x1b{left:366.466655pt;}
.x185{left:367.466655pt;}
.x191{left:368.466655pt;}
.xf1{left:369.466667pt;}
.x47{left:370.666655pt;}
.x166{left:372.466655pt;}
.x161{left:374.466667pt;}
.x108{left:376.000000pt;}
.x179{left:379.466667pt;}
.xce{left:380.466655pt;}
.x141{left:382.463606pt;}
.x85{left:384.506643pt;}
.x1aa{left:385.506655pt;}
.x5a{left:388.000000pt;}
.x86{left:390.506667pt;}
.x12f{left:392.864015pt;}
.x196{left:394.506667pt;}
.x87{left:395.506667pt;}
.x1a5{left:396.506655pt;}
.x1d{left:397.506655pt;}
.x5b{left:400.000000pt;}
.xa9{left:403.506655pt;}
.x88{left:404.506655pt;}
.x101{left:407.000000pt;}
.x8c{left:408.506655pt;}
.x95{left:409.506655pt;}
.x75{left:410.533322pt;}
.x16{left:411.533322pt;}
.x66{left:416.000000pt;}
.x13e{left:417.586065pt;}
.x42{left:418.533322pt;}
.x3c{left:419.533322pt;}
.x133{left:424.453984pt;}
.x153{left:426.173322pt;}
.x49{left:427.759988pt;}
.x151{left:432.173322pt;}
.x17a{left:435.533333pt;}
.x35{left:436.866655pt;}
.x155{left:440.199988pt;}
.x150{left:443.199988pt;}
.xcf{left:444.559988pt;}
.x12d{left:446.636095pt;}
.x36{left:449.866655pt;}
.x156{left:451.199988pt;}
.x33{left:452.573322pt;}
.x154{left:454.199988pt;}
.x89{left:457.559976pt;}
.x152{left:459.199988pt;}
.x48{left:460.266655pt;}
.x18d{left:462.559988pt;}
.x8a{left:463.600000pt;}
.x8b{left:468.600000pt;}
.xa8{left:470.599988pt;}
.xa0{left:471.599988pt;}
.xbc{left:472.599988pt;}
.x72{left:473.600000pt;}
.x139{left:474.599165pt;}
.xad{left:476.599988pt;}
.xff{left:478.599988pt;}
.x4e{left:479.599988pt;}
.x1bd{left:480.599988pt;}
.x16e{left:482.199988pt;}
.x170{left:483.226655pt;}
.x178{left:485.000000pt;}
.x34{left:485.933322pt;}
.x171{left:487.199988pt;}
.x167{left:488.373322pt;}
.x169{left:489.359988pt;}
.x16a{left:490.359988pt;}
.x16b{left:492.359988pt;}
.x21{left:493.639988pt;}
.x16d{left:496.239988pt;}
.xfe{left:497.639988pt;}
.x18a{left:498.640000pt;}
.x76{left:501.626643pt;}
.x30{left:502.639988pt;}
.x12c{left:505.245645pt;}
.x16c{left:506.373322pt;}
.x77{left:507.640000pt;}
.x1b1{left:511.639988pt;}
.x79{left:512.640000pt;}
.x16f{left:514.266655pt;}
.x172{left:515.266655pt;}
.x63{left:517.640000pt;}
.x7a{left:518.666655pt;}
.x168{left:520.399988pt;}
.xaa{left:521.666655pt;}
.x7b{left:523.666643pt;}
.xcc{left:524.666655pt;}
.x5e{left:526.000000pt;}
.x5f{left:528.000000pt;}
.x4f{left:529.666655pt;}
.xae{left:531.666655pt;}
.x6a{left:535.000000pt;}
.x19b{left:536.666655pt;}
.x13d{left:537.927721pt;}
.x7c{left:540.666655pt;}
.x157{left:543.506655pt;}
.x17b{left:545.693333pt;}
.xba{left:547.693322pt;}
.xc1{left:551.000000pt;}
.x163{left:554.693333pt;}
.xc5{left:556.693322pt;}
.x180{left:558.693333pt;}
.xfc{left:559.693322pt;}
.xfd{left:561.706655pt;}
.x1b2{left:562.693322pt;}
.x12e{left:563.855202pt;}
.x7d{left:566.693310pt;}
.xc3{left:569.000000pt;}
.x158{left:570.399988pt;}
.x159{left:571.399988pt;}
.x7e{left:572.733333pt;}
.x111{left:575.001503pt;}
.x7f{left:577.733333pt;}
.x15a{left:580.399988pt;}
.x15b{left:581.399988pt;}
.x80{left:582.733333pt;}
.x1a6{left:584.733322pt;}
.x97{left:585.733322pt;}
.xb7{left:586.733322pt;}
.xcd{left:587.733322pt;}
.x22{left:588.733322pt;}
.xd9{left:589.733322pt;}
.x192{left:590.733322pt;}
.x1c3{left:591.733322pt;}
.x102{left:593.000000pt;}
.x81{left:594.733322pt;}
.x31{left:595.759988pt;}
.x19f{left:596.773322pt;}
.x1ae{left:597.773322pt;}
.x13b{left:601.269466pt;}
.x186{left:602.773322pt;}
.x17c{left:603.773333pt;}
.x1a7{left:604.759988pt;}
.x118{left:606.113829pt;}
.x1be{left:609.773322pt;}
.x128{left:612.639162pt;}
.x104{left:613.759988pt;}
.x1c4{left:615.773322pt;}
.x1a8{left:620.773322pt;}
.x1bf{left:625.799988pt;}
.x1bc{left:629.799988pt;}
.xb8{left:632.799988pt;}
.x103{left:633.799988pt;}
.x1ba{left:639.799988pt;}
.x3e{left:640.799988pt;}
.x1c0{left:641.799988pt;}
.x19e{left:642.799988pt;}
.xda{left:646.799988pt;}
.xb9{left:647.799988pt;}
.x1ad{left:649.839988pt;}
.x146{left:650.839988pt;}
.xe2{left:652.839988pt;}
.x1a9{left:656.839988pt;}
.x1a2{left:658.839988pt;}
.x1a1{left:659.839988pt;}
.x98{left:660.839988pt;}
.x13f{left:664.604614pt;}
.x173{left:666.000000pt;}
.x115{left:668.646544pt;}
.x174{left:671.000000pt;}
.x1b7{left:672.839988pt;}
.x91{left:675.866655pt;}
.x53{left:683.866655pt;}
.x28{left:684.866655pt;}
.x27{left:687.866655pt;}
.x193{left:689.866655pt;}
.x19{left:690.866655pt;}
.x2d{left:691.866655pt;}
.x17{left:693.866655pt;}
.x1ab{left:695.866655pt;}
.x13{left:696.866655pt;}
.x121{left:699.916159pt;}
.x1c6{left:701.893322pt;}
.x129{left:706.714838pt;}
.x138{left:727.305896pt;}
.x122{left:731.179262pt;}
.x131{left:755.701568pt;}
.x116{left:767.331698pt;}
.x126{left:774.706650pt;}
.x137{left:776.901541pt;}
.x4{left:794.506642pt;}
.x5{left:803.506642pt;}
.x11a{left:804.473722pt;}
.x8{left:805.506667pt;}
.xa{left:806.506667pt;}
.xc{left:807.506667pt;}
.x3{left:816.506642pt;}
.x13c{left:820.944724pt;}
.x132{left:838.121061pt;}
.x112{left:848.432177pt;}
.x2{left:858.533309pt;}
.x13a{left:869.425190pt;}
.x12b{left:881.615997pt;}
.x140{left:932.753745pt;}
.x114{left:933.933695pt;}
.x12a{left:940.225551pt;}
.x136{left:948.866650pt;}
.x127{left:957.866650pt;}
.x1c7{left:1005.893317pt;}
.x110{left:1013.906650pt;}
.xd{left:1116.706667pt;}
.x7{left:1141.706642pt;}
.x6{left:1142.693309pt;}
.xf{left:1144.466655pt;}
.x1{left:1499.933309pt;}
}




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