
    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_2020bcf49f8b33b37caa4696.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b954c79f17b1ed6108a0325c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_a49e7b47a7adc3af55de4025.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e4955196f29e0990d67ab74b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aae01f6edc48f779685dae5e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6f021261d8c14f5afa575f2d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e917f3b185e13501fb42c7f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_4f79f3b416ed3b05ccd14f3e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_08091a8a839f0b6179620a54.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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_e27308b41c2b218640371edf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_091c787497ae9de24ff534f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961914;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_3f29d4ae81b64c6298d1f643.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_23c2d96679823b9552bf5363.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c037082df946f2ef9ef3fd6a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.089355;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_5c1e3a43ba2c841cfbd41adb.woff2')format("woff");}.fff{font-family:fff;line-height:0.850586;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_b3eb591317f7d435651b5299.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.948242;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_cbb09818a5e8dea0439b2959.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.768555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5c9e6321fa7b6ceb9433a7f3.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8c4ac3807878157d6d277f8c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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;}
.m4{transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170685,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.170701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170701,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.279987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279987,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.298238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298238,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-25.200000px;}
.vf{vertical-align:-23.201750px;}
.v9{vertical-align:-18.000000px;}
.v14{vertical-align:-16.703593px;}
.v11{vertical-align:-14.295943px;}
.vc{vertical-align:-12.913002px;}
.v10{vertical-align:-11.330118px;}
.v7{vertical-align:-7.623617px;}
.v13{vertical-align:-5.790024px;}
.v4{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.600000px;}
.v8{vertical-align:7.140000px;}
.v12{vertical-align:8.497589px;}
.va{vertical-align:18.000000px;}
.v6{vertical-align:19.122572px;}
.vb{vertical-align:21.600000px;}
.v2{vertical-align:25.200000px;}
.ve{vertical-align:27.700473px;}
.v1{vertical-align:28.800000px;}
.vd{vertical-align:31.782648px;}
.ls29{letter-spacing:-5.616000px;}
.ls71{letter-spacing:-4.824000px;}
.ls91{letter-spacing:-4.016165px;}
.lsa4{letter-spacing:-3.450000px;}
.lsa8{letter-spacing:-3.030000px;}
.ls9a{letter-spacing:-2.226000px;}
.ls9c{letter-spacing:-1.710000px;}
.lsa3{letter-spacing:-1.680000px;}
.ls92{letter-spacing:-1.664648px;}
.ls2{letter-spacing:-1.626000px;}
.lse{letter-spacing:-1.584000px;}
.ls9e{letter-spacing:-1.518000px;}
.ls1a{letter-spacing:-1.476000px;}
.lsaa{letter-spacing:-1.392000px;}
.ls18{letter-spacing:-1.224000px;}
.ls1e{letter-spacing:-1.218000px;}
.ls14{letter-spacing:-1.182000px;}
.ls40{letter-spacing:-1.098000px;}
.ls99{letter-spacing:-1.020000px;}
.ls2d{letter-spacing:-0.984000px;}
.ls26{letter-spacing:-0.952952px;}
.ls25{letter-spacing:-0.895775px;}
.ls23{letter-spacing:-0.822000px;}
.ls2c{letter-spacing:-0.792000px;}
.lsa7{letter-spacing:-0.726000px;}
.ls24{letter-spacing:-0.625772px;}
.ls90{letter-spacing:-0.612000px;}
.lsb4{letter-spacing:-0.579600px;}
.lsa2{letter-spacing:-0.558000px;}
.ls6b{letter-spacing:-0.525102px;}
.ls6f{letter-spacing:-0.525014px;}
.lsa5{letter-spacing:-0.514800px;}
.ls8b{letter-spacing:-0.453600px;}
.lsa{letter-spacing:-0.432000px;}
.ls43{letter-spacing:-0.417600px;}
.ls6a{letter-spacing:-0.342145px;}
.ls6e{letter-spacing:-0.342088px;}
.ls81{letter-spacing:-0.124131px;}
.ls28{letter-spacing:-0.064483px;}
.ls83{letter-spacing:-0.052902px;}
.ls27{letter-spacing:-0.049554px;}
.ls82{letter-spacing:-0.046653px;}
.ls3d{letter-spacing:-0.028800px;}
.ls3c{letter-spacing:-0.021600px;}
.ls3e{letter-spacing:-0.014400px;}
.ls57{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.007200px;}
.ls2f{letter-spacing:0.014400px;}
.ls32{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.025200px;}
.ls31{letter-spacing:0.028800px;}
.ls59{letter-spacing:0.031200px;}
.ls86{letter-spacing:0.037489px;}
.ls84{letter-spacing:0.047070px;}
.ls85{letter-spacing:0.053318px;}
.ls56{letter-spacing:0.081600px;}
.lsab{letter-spacing:0.086400px;}
.ls49{letter-spacing:0.091200px;}
.lsb0{letter-spacing:0.098400px;}
.ls74{letter-spacing:0.110969px;}
.ls35{letter-spacing:0.121200px;}
.ls9d{letter-spacing:0.129600px;}
.ls58{letter-spacing:0.135600px;}
.ls87{letter-spacing:0.137461px;}
.ls6d{letter-spacing:0.138161px;}
.ls69{letter-spacing:0.138185px;}
.ls98{letter-spacing:0.147600px;}
.lsae{letter-spacing:0.158400px;}
.lsa9{letter-spacing:0.180000px;}
.lsad{letter-spacing:0.201600px;}
.ls96{letter-spacing:0.207600px;}
.ls6c{letter-spacing:0.219953px;}
.ls68{letter-spacing:0.219990px;}
.ls75{letter-spacing:0.224936px;}
.ls67{letter-spacing:0.236090px;}
.ls66{letter-spacing:0.236130px;}
.ls9b{letter-spacing:0.270000px;}
.lsa1{letter-spacing:0.324000px;}
.lsa0{letter-spacing:0.565200px;}
.ls9f{letter-spacing:0.660000px;}
.ls5e{letter-spacing:0.748800px;}
.ls21{letter-spacing:0.776815px;}
.lsb2{letter-spacing:0.810000px;}
.ls3a{letter-spacing:0.816000px;}
.ls0{letter-spacing:0.854400px;}
.ls20{letter-spacing:0.952952px;}
.ls1d{letter-spacing:0.984000px;}
.ls73{letter-spacing:0.986400px;}
.lsb3{letter-spacing:1.046400px;}
.ls5b{letter-spacing:1.152000px;}
.ls50{letter-spacing:1.164000px;}
.ls72{letter-spacing:1.180800px;}
.ls3{letter-spacing:1.218000px;}
.lsb5{letter-spacing:1.220400px;}
.ls11{letter-spacing:1.224000px;}
.lsa6{letter-spacing:1.272000px;}
.ls53{letter-spacing:1.280400px;}
.ls52{letter-spacing:1.284000px;}
.ls93{letter-spacing:1.285200px;}
.ls8e{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.344000px;}
.ls2b{letter-spacing:1.374000px;}
.ls19{letter-spacing:1.392000px;}
.ls1c{letter-spacing:1.400400px;}
.ls97{letter-spacing:1.464000px;}
.ls39{letter-spacing:1.468800px;}
.ls5a{letter-spacing:1.470000px;}
.lsc{letter-spacing:1.512000px;}
.ls16{letter-spacing:1.524000px;}
.ls89{letter-spacing:1.569600px;}
.ls8{letter-spacing:1.584000px;}
.ls4{letter-spacing:1.596000px;}
.ls42{letter-spacing:1.644000px;}
.ls4c{letter-spacing:1.656000px;}
.ls13{letter-spacing:1.704000px;}
.ls15{letter-spacing:1.728000px;}
.ls17{letter-spacing:1.764000px;}
.ls12{letter-spacing:1.800000px;}
.ls63{letter-spacing:1.884000px;}
.ls94{letter-spacing:1.922400px;}
.ls61{letter-spacing:1.944000px;}
.ls5d{letter-spacing:2.016000px;}
.ls95{letter-spacing:2.042400px;}
.ls65{letter-spacing:2.064000px;}
.ls62{letter-spacing:2.124000px;}
.ls3b{letter-spacing:2.208000px;}
.ls5c{letter-spacing:2.779200px;}
.ls3f{letter-spacing:2.839200px;}
.ls55{letter-spacing:2.899200px;}
.ls48{letter-spacing:3.168000px;}
.ls36{letter-spacing:3.525600px;}
.ls34{letter-spacing:3.585600px;}
.ls60{letter-spacing:3.588000px;}
.ls64{letter-spacing:3.600000px;}
.ls37{letter-spacing:3.645600px;}
.ls44{letter-spacing:3.765600px;}
.ls47{letter-spacing:5.184000px;}
.ls4d{letter-spacing:5.244000px;}
.ls8f{letter-spacing:5.328000px;}
.ls2a{letter-spacing:5.364000px;}
.ls30{letter-spacing:7.185600px;}
.ls38{letter-spacing:7.245600px;}
.ls46{letter-spacing:7.365600px;}
.ls51{letter-spacing:8.186400px;}
.ls88{letter-spacing:8.589600px;}
.ls1f{letter-spacing:8.784000px;}
.ls45{letter-spacing:10.725600px;}
.ls8c{letter-spacing:10.785600px;}
.ls4b{letter-spacing:10.965600px;}
.ls8d{letter-spacing:14.385600px;}
.ls4a{letter-spacing:14.544000px;}
.ls54{letter-spacing:15.984000px;}
.ls2e{letter-spacing:18.986400px;}
.ls41{letter-spacing:21.600000px;}
.lsb1{letter-spacing:27.381600px;}
.ls5f{letter-spacing:37.704000px;}
.lsb{letter-spacing:37.736700px;}
.ls77{letter-spacing:44.108317px;}
.ls8a{letter-spacing:55.584000px;}
.ls70{letter-spacing:62.934000px;}
.lsac{letter-spacing:68.385600px;}
.ls7{letter-spacing:82.705200px;}
.ls22{letter-spacing:85.781572px;}
.ls10{letter-spacing:131.334000px;}
.lsf{letter-spacing:142.286700px;}
.ls9{letter-spacing:158.275200px;}
.ls7e{letter-spacing:187.467637px;}
.ls7c{letter-spacing:194.190063px;}
.ls78{letter-spacing:194.374011px;}
.ls80{letter-spacing:195.731292px;}
.ls7f{letter-spacing:195.772947px;}
.ls7b{letter-spacing:197.387322px;}
.ls79{letter-spacing:198.678622px;}
.ls7a{letter-spacing:202.480044px;}
.lsaf{letter-spacing:223.485600px;}
.lsd{letter-spacing:253.824000px;}
.ls76{letter-spacing:304.826335px;}
.ls7d{letter-spacing:479.068225px;}
.ls6{letter-spacing:846.157200px;}
.ls4f{letter-spacing:2060.538000px;}
.ls4e{letter-spacing:2255.538000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(46,116,181);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-97.350000px;}
.ws52{word-spacing:-72.000000px;}
.ws54{word-spacing:-42.048000px;}
.ws15{word-spacing:-41.597700px;}
.ws92{word-spacing:-31.536000px;}
.ws3{word-spacing:-26.882700px;}
.ws57{word-spacing:-21.614400px;}
.wsa{word-spacing:-21.600000px;}
.ws10{word-spacing:-21.240000px;}
.ws8{word-spacing:-20.308800px;}
.ws81{word-spacing:-20.057700px;}
.ws0{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.930800px;}
.wsc{word-spacing:-19.584000px;}
.ws94{word-spacing:-19.522800px;}
.ws45{word-spacing:-19.224000px;}
.ws49{word-spacing:-19.221600px;}
.ws18{word-spacing:-18.813600px;}
.ws13{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.738000px;}
.ws6{word-spacing:-18.712800px;}
.wse{word-spacing:-18.432000px;}
.ws6f{word-spacing:-18.405600px;}
.ws86{word-spacing:-18.231600px;}
.ws4d{word-spacing:-18.043200px;}
.ws50{word-spacing:-18.036000px;}
.ws4a{word-spacing:-18.028800px;}
.ws4e{word-spacing:-18.021600px;}
.ws4f{word-spacing:-18.014400px;}
.ws6c{word-spacing:-18.007200px;}
.ws53{word-spacing:-18.000000px;}
.ws4b{word-spacing:-17.992800px;}
.ws4c{word-spacing:-17.985600px;}
.ws48{word-spacing:-17.829600px;}
.ws82{word-spacing:-17.055300px;}
.ws2{word-spacing:-17.013600px;}
.ws96{word-spacing:-16.434000px;}
.wsb{word-spacing:-16.305900px;}
.ws9{word-spacing:-16.272000px;}
.ws46{word-spacing:-16.029600px;}
.ws47{word-spacing:-15.795600px;}
.ws16{word-spacing:-15.537600px;}
.ws1{word-spacing:-15.387600px;}
.ws83{word-spacing:-15.345300px;}
.ws7e{word-spacing:-15.205200px;}
.ws88{word-spacing:-15.116400px;}
.ws90{word-spacing:-15.103200px;}
.ws12{word-spacing:-15.012000px;}
.wsf{word-spacing:-14.810400px;}
.ws6e{word-spacing:-14.644800px;}
.ws56{word-spacing:-14.480400px;}
.ws14{word-spacing:-14.402400px;}
.ws87{word-spacing:-14.396400px;}
.ws6d{word-spacing:-14.191200px;}
.ws8a{word-spacing:-14.155200px;}
.ws8c{word-spacing:-14.101200px;}
.ws58{word-spacing:-14.011049px;}
.ws5b{word-spacing:-14.008691px;}
.ws7f{word-spacing:-13.978800px;}
.ws7d{word-spacing:-13.831200px;}
.ws59{word-spacing:-13.791059px;}
.ws5c{word-spacing:-13.788738px;}
.ws8d{word-spacing:-13.788000px;}
.ws5a{word-spacing:-13.448914px;}
.ws5d{word-spacing:-13.446650px;}
.ws8f{word-spacing:-13.316400px;}
.ws89{word-spacing:-13.273200px;}
.ws84{word-spacing:-13.126800px;}
.ws91{word-spacing:-13.105200px;}
.ws17{word-spacing:-13.010400px;}
.ws1a{word-spacing:-12.188400px;}
.ws8b{word-spacing:-12.151200px;}
.ws55{word-spacing:-12.009600px;}
.ws11{word-spacing:-11.828400px;}
.ws80{word-spacing:-11.605200px;}
.ws51{word-spacing:-11.106000px;}
.ws19{word-spacing:-11.008800px;}
.ws44{word-spacing:-10.978802px;}
.ws95{word-spacing:-10.591200px;}
.ws8e{word-spacing:-10.381200px;}
.ws85{word-spacing:-9.609600px;}
.ws1b{word-spacing:-9.549374px;}
.ws1c{word-spacing:-8.653599px;}
.ws5e{word-spacing:-4.290782px;}
.ws93{word-spacing:-0.064800px;}
.ws5{word-spacing:0.000000px;}
.ws6a{word-spacing:20.556667px;}
.ws64{word-spacing:28.926792px;}
.ws31{word-spacing:56.253557px;}
.ws36{word-spacing:67.720748px;}
.ws2b{word-spacing:73.438460px;}
.ws21{word-spacing:105.367915px;}
.ws63{word-spacing:109.703870px;}
.ws23{word-spacing:112.959767px;}
.ws25{word-spacing:123.018891px;}
.ws2a{word-spacing:126.867308px;}
.ws1f{word-spacing:128.195565px;}
.ws7c{word-spacing:128.459695px;}
.ws35{word-spacing:130.679117px;}
.ws1d{word-spacing:132.050574px;}
.ws3f{word-spacing:133.913278px;}
.ws37{word-spacing:133.924713px;}
.ws3d{word-spacing:134.490925px;}
.ws26{word-spacing:137.736521px;}
.ws2d{word-spacing:137.745416px;}
.ws32{word-spacing:137.779722px;}
.ws1e{word-spacing:137.796875px;}
.ws3e{word-spacing:138.302734px;}
.ws3c{word-spacing:139.642426px;}
.ws2e{word-spacing:139.737721px;}
.ws24{word-spacing:140.208638px;}
.ws20{word-spacing:141.608683px;}
.ws3b{word-spacing:143.442799px;}
.ws3a{word-spacing:143.485999px;}
.ws28{word-spacing:143.514588px;}
.ws27{word-spacing:145.360138px;}
.ws42{word-spacing:145.455433px;}
.ws41{word-spacing:147.294631px;}
.ws40{word-spacing:147.326396px;}
.ws2c{word-spacing:152.983755px;}
.ws70{word-spacing:165.643159px;}
.ws22{word-spacing:166.854688px;}
.ws60{word-spacing:178.316067px;}
.ws62{word-spacing:178.357722px;}
.ws5f{word-spacing:178.441032px;}
.ws39{word-spacing:180.232627px;}
.ws67{word-spacing:182.038761px;}
.ws65{word-spacing:182.080416px;}
.ws66{word-spacing:182.088747px;}
.ws68{word-spacing:184.196482px;}
.ws69{word-spacing:184.371432px;}
.ws43{word-spacing:189.762148px;}
.ws33{word-spacing:222.162519px;}
.ws29{word-spacing:224.068424px;}
.ws38{word-spacing:235.467240px;}
.ws2f{word-spacing:237.473283px;}
.ws30{word-spacing:243.127466px;}
.ws79{word-spacing:281.997592px;}
.ws61{word-spacing:284.019406px;}
.ws7b{word-spacing:306.144783px;}
.ws72{word-spacing:357.451489px;}
.ws76{word-spacing:409.330923px;}
.ws34{word-spacing:422.369896px;}
.ws74{word-spacing:485.031891px;}
.ws7a{word-spacing:517.681613px;}
.ws75{word-spacing:557.036189px;}
.ws77{word-spacing:570.543068px;}
.ws73{word-spacing:579.385701px;}
.ws71{word-spacing:676.619110px;}
.ws78{word-spacing:725.690865px;}
.ws6b{word-spacing:766.553314px;}
._28{margin-left:-16.897200px;}
._27{margin-left:-15.626550px;}
._d{margin-left:-12.552450px;}
._47{margin-left:-11.068800px;}
._26{margin-left:-9.192000px;}
._8{margin-left:-7.133850px;}
._7{margin-left:-5.995950px;}
._9{margin-left:-4.550400px;}
._2f{margin-left:-3.528000px;}
._6{margin-left:-2.491200px;}
._0{margin-left:-1.224000px;}
._2{width:1.512000px;}
._4{width:2.976000px;}
._5{width:4.123200px;}
._c{width:5.280150px;}
._e{width:6.510000px;}
._33{width:7.545300px;}
._b{width:8.626500px;}
._a{width:9.922650px;}
._11{width:10.930650px;}
._3{width:12.438000px;}
._10{width:13.701600px;}
._69{width:14.875200px;}
._1{width:15.912000px;}
._f{width:17.629200px;}
._34{width:18.993600px;}
._1b{width:20.145600px;}
._1a{width:21.219600px;}
._18{width:22.870800px;}
._19{width:24.001200px;}
._71{width:25.230000px;}
._3c{width:26.340000px;}
._17{width:27.856800px;}
._79{width:29.167200px;}
._32{width:30.240000px;}
._68{width:31.370400px;}
._3d{width:33.033600px;}
._31{width:34.041600px;}
._16{width:35.506800px;}
._38{width:37.166400px;}
._15{width:38.700000px;}
._6a{width:39.859200px;}
._37{width:40.953600px;}
._60{width:42.062400px;}
._6b{width:43.290000px;}
._62{width:44.402400px;}
._61{width:45.567600px;}
._14{width:46.735200px;}
._39{width:47.820000px;}
._12{width:48.880800px;}
._13{width:50.749200px;}
._1c{width:52.466400px;}
._7d{width:53.848800px;}
._3a{width:55.555200px;}
._21{width:57.602400px;}
._3b{width:58.977600px;}
._67{width:60.110400px;}
._20{width:61.264800px;}
._66{width:62.467200px;}
._22{width:63.766800px;}
._a9{width:64.994400px;}
._63{width:66.110400px;}
._6c{width:67.159200px;}
._a6{width:68.493600px;}
._43{width:69.552000px;}
._42{width:70.910400px;}
._a3{width:71.928000px;}
._44{width:73.824000px;}
._46{width:75.667200px;}
._af{width:76.806000px;}
._45{width:77.944800px;}
._6f{width:79.610400px;}
._94{width:80.920800px;}
._1e{width:82.944000px;}
._2b{width:84.098400px;}
._1d{width:85.327200px;}
._73{width:86.342400px;}
._64{width:87.984000px;}
._80{width:90.007200px;}
._65{width:91.555200px;}
._1f{width:93.096000px;}
._9c{width:94.752000px;}
._a0{width:97.200000px;}
._9b{width:98.395200px;}
._74{width:100.828800px;}
._88{width:101.920800px;}
._9f{width:102.931200px;}
._75{width:104.328000px;}
._8c{width:105.624000px;}
._8a{width:106.653600px;}
._7e{width:108.328800px;}
._8b{width:109.586400px;}
._76{width:111.585600px;}
._77{width:115.279200px;}
._72{width:118.778400px;}
._4f{width:120.867443px;}
._a5{width:122.407200px;}
._4d{width:124.190843px;}
._a4{width:126.100800px;}
._9e{width:127.224000px;}
._a1{width:129.600000px;}
._36{width:131.467200px;}
._a2{width:133.164000px;}
._41{width:135.204000px;}
._3e{width:137.592000px;}
._87{width:138.943200px;}
._40{width:141.223200px;}
._4a{width:144.024918px;}
._3f{width:145.857600px;}
._6d{width:148.418400px;}
._5a{width:149.774396px;}
._25{width:150.944400px;}
._4b{width:152.684769px;}
._24{width:153.885600px;}
._7f{width:155.066400px;}
._49{width:159.173528px;}
._89{width:160.214400px;}
._7b{width:162.000000px;}
._ae{width:163.857600px;}
._23{width:165.150000px;}
._82{width:167.046000px;}
._7c{width:169.063200px;}
._81{width:170.646000px;}
._b1{width:173.055600px;}
._53{width:174.286960px;}
._5f{width:177.177519px;}
._8f{width:178.385557px;}
._6e{width:179.740881px;}
._2e{width:182.083200px;}
._a7{width:183.643200px;}
._78{width:191.095200px;}
._2c{width:192.684000px;}
._b2{width:194.659200px;}
._95{width:196.243200px;}
._8e{width:198.308034px;}
._a8{width:201.787200px;}
._97{width:206.928000px;}
._96{width:213.566400px;}
._aa{width:216.237600px;}
._ab{width:219.736800px;}
._ac{width:223.495200px;}
._93{width:225.538098px;}
._48{width:228.326302px;}
._52{width:229.368985px;}
._5b{width:236.256257px;}
._5d{width:239.237463px;}
._b0{width:243.252000px;}
._ad{width:248.572800px;}
._54{width:252.567404px;}
._9d{width:264.439200px;}
._57{width:275.304411px;}
._59{width:282.606199px;}
._5e{width:297.651763px;}
._50{width:301.351057px;}
._4e{width:309.052291px;}
._4c{width:321.250028px;}
._51{width:323.834598px;}
._9a{width:337.734000px;}
._56{width:340.004673px;}
._58{width:345.008921px;}
._5c{width:346.118067px;}
._55{width:352.582012px;}
._7a{width:356.659200px;}
._92{width:371.002228px;}
._91{width:388.506431px;}
._29{width:394.905600px;}
._35{width:423.878400px;}
._30{width:494.971200px;}
._2a{width:496.195200px;}
._8d{width:517.694337px;}
._2d{width:611.040000px;}
._90{width:626.837456px;}
._99{width:844.854000px;}
._98{width:1205.516850px;}
._83{width:2013.585282px;}
._84{width:2056.048460px;}
._86{width:2063.705737px;}
._85{width:2072.514791px;}
._70{width:2725.884000px;}
.fc12{color:rgb(28,29,30);}
.fc11{color:rgb(0,112,192);}
.fc10{color:rgb(34,34,34);}
.fcf{color:rgb(33,37,41);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(255,255,255);}
.fca{color:rgb(255,0,0);}
.fc2{color:rgb(118,113,113);}
.fce{color:rgb(68,84,106);}
.fc3{color:transparent;}
.fc1{color:rgb(46,116,181);}
.fc4{color:rgb(5,99,193);}
.fc9{color:rgb(47,84,150);}
.fc5{color:rgb(30,76,119);}
.fc7{color:rgb(255,192,0);}
.fcd{color:rgb(89,89,89);}
.fc8{color:rgb(31,78,121);}
.fcb{color:rgb(79,129,189);}
.fcc{color:rgb(15,71,97);}
.fs23{font-size:7.200000px;}
.fs18{font-size:11.273978px;}
.fs16{font-size:11.275876px;}
.fs19{font-size:18.494752px;}
.fs1c{font-size:22.993475px;}
.fsf{font-size:24.776755px;}
.fs1a{font-size:24.992908px;}
.fs1b{font-size:28.991773px;}
.fs1d{font-size:33.490497px;}
.fs1e{font-size:33.590468px;}
.fs10{font-size:34.385689px;}
.fs1f{font-size:37.489362px;}
.fse{font-size:38.197497px;}
.fsd{font-size:39.600000px;}
.fs14{font-size:43.200000px;}
.fs11{font-size:43.915210px;}
.fs20{font-size:45.555591px;}
.fsb{font-size:46.800000px;}
.fs21{font-size:48.585896px;}
.fs12{font-size:51.538827px;}
.fsc{font-size:54.000000px;}
.fs22{font-size:57.676812px;}
.fs17{font-size:61.012114px;}
.fs15{font-size:61.022386px;}
.fs1{font-size:61.200000px;}
.fs2{font-size:61.350000px;}
.fs9{font-size:64.800000px;}
.fs13{font-size:64.950000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:72.150000px;}
.fs6{font-size:82.800000px;}
.fs8{font-size:97.350000px;}
.fs4{font-size:108.150000px;}
.fs3{font-size:118.950000px;}
.fs7{font-size:133.350000px;}
.fs5{font-size:144.150000px;}
.y3c8{bottom:-455.214456px;}
.y3c7{bottom:-297.668909px;}
.y3c6{bottom:-142.126704px;}
.y6f{bottom:-11.662500px;}
.y4e1{bottom:-11.625000px;}
.y8{bottom:-10.762500px;}
.y270{bottom:-4.425000px;}
.y0{bottom:0.000000px;}
.y25a{bottom:0.015000px;}
.y4ad{bottom:2.685000px;}
.y255{bottom:2.700000px;}
.y25b{bottom:2.715000px;}
.y104{bottom:2.858859px;}
.y13d{bottom:2.858864px;}
.y125{bottom:3.335399px;}
.y1dc{bottom:3.585000px;}
.y1c0{bottom:3.600000px;}
.y1c9{bottom:3.615000px;}
.y516{bottom:3.645000px;}
.y4b3{bottom:3.808084px;}
.y102{bottom:3.811811px;}
.y137{bottom:3.811831px;}
.y3ed{bottom:3.946797px;}
.y3e1{bottom:3.967624px;}
.y3c5{bottom:4.304718px;}
.y4ec{bottom:4.485000px;}
.y4e8{bottom:4.500000px;}
.y1b8{bottom:4.515000px;}
.y3e6{bottom:4.519551px;}
.y456{bottom:4.521217px;}
.y565{bottom:4.530000px;}
.y1d5{bottom:4.545000px;}
.y3fb{bottom:4.623688px;}
.y41a{bottom:4.644515px;}
.y40d{bottom:4.696584px;}
.y107{bottom:4.764762px;}
.y10c{bottom:4.764791px;}
.y4c6{bottom:5.328327px;}
.y4d3{bottom:5.385000px;}
.y2d{bottom:5.400000px;}
.y4cf{bottom:5.415000px;}
.y4d1{bottom:5.445000px;}
.y2b{bottom:6.300000px;}
.y2f{bottom:6.315000px;}
.y47e{bottom:6.345000px;}
.y1c1{bottom:7.200000px;}
.y1da{bottom:7.215000px;}
.y48{bottom:9.900000px;}
.y2a2{bottom:10.800000px;}
.y49b{bottom:10.815000px;}
.y491{bottom:10.830000px;}
.y496{bottom:10.845000px;}
.yff{bottom:10.974884px;}
.y13b{bottom:11.451320px;}
.y493{bottom:11.685000px;}
.y1be{bottom:11.700000px;}
.y48a{bottom:11.715000px;}
.y44b{bottom:11.719175px;}
.y1ca{bottom:11.730000px;}
.y499{bottom:11.745000px;}
.y423{bottom:11.819563px;}
.y3da{bottom:11.965355px;}
.y527{bottom:12.585000px;}
.y50b{bottom:12.600000px;}
.y1c7{bottom:12.615000px;}
.y1d3{bottom:12.630000px;}
.y3f3{bottom:12.642246px;}
.y56d{bottom:12.645000px;}
.y404{bottom:12.694314px;}
.y279{bottom:13.485000px;}
.y274{bottom:13.500000px;}
.y5e3{bottom:13.515000px;}
.y5ea{bottom:13.530000px;}
.y56c{bottom:13.545000px;}
.y129{bottom:13.837351px;}
.y127{bottom:13.837661px;}
.y133{bottom:13.840043px;}
.y139{bottom:13.841632px;}
.y522{bottom:14.400000px;}
.y276{bottom:14.430000px;}
.y4e{bottom:14.445000px;}
.y26f{bottom:14.520000px;}
.y131{bottom:14.786642px;}
.y124{bottom:14.790360px;}
.y3d{bottom:15.300000px;}
.y52e{bottom:16.200000px;}
.y12e{bottom:16.224012px;}
.y2ab{bottom:16.245000px;}
.y3bc{bottom:16.625028px;}
.y47a{bottom:17.145000px;}
.y106{bottom:17.169023px;}
.y10b{bottom:17.169051px;}
.y141{bottom:17.176964px;}
.y1bc{bottom:18.000000px;}
.y101{bottom:18.121975px;}
.y488{bottom:18.900000px;}
.y12c{bottom:19.074928px;}
.y51e{bottom:19.785000px;}
.y1c5{bottom:19.800000px;}
.y1bf{bottom:19.815000px;}
.y44c{bottom:20.041813px;}
.y1c8{bottom:20.700000px;}
.y1b6{bottom:20.715000px;}
.y1cb{bottom:20.730000px;}
.y1d4{bottom:20.745000px;}
.y424{bottom:20.889906px;}
.y503{bottom:21.600000px;}
.y55b{bottom:21.615000px;}
.y50a{bottom:21.630000px;}
.y512{bottom:21.645000px;}
.y405{bottom:22.191620px;}
.y4f9{bottom:22.500000px;}
.y545{bottom:22.515000px;}
.y501{bottom:22.530000px;}
.y532{bottom:22.545000px;}
.y4ca{bottom:23.430000px;}
.y4c5{bottom:23.535412px;}
.y3f4{bottom:23.743263px;}
.y432{bottom:23.764090px;}
.y413{bottom:24.191052px;}
.y509{bottom:24.285000px;}
.y508{bottom:24.300000px;}
.y506{bottom:24.315000px;}
.y4eb{bottom:25.185000px;}
.y4d2{bottom:25.200000px;}
.y48b{bottom:25.215000px;}
.y4d7{bottom:25.230000px;}
.y3db{bottom:25.242837px;}
.y54{bottom:25.245000px;}
.y3e7{bottom:25.315733px;}
.y441{bottom:25.763523px;}
.y1ba{bottom:26.100000px;}
.y123{bottom:26.245638px;}
.y135{bottom:26.245891px;}
.y4cd{bottom:27.030000px;}
.y4d8{bottom:27.045000px;}
.y47b{bottom:27.945000px;}
.y44d{bottom:28.389444px;}
.y56a{bottom:28.800000px;}
.y573{bottom:28.845000px;}
.y2a1{bottom:29.730000px;}
.y425{bottom:29.960248px;}
.y526{bottom:30.600000px;}
.y529{bottom:30.630000px;}
.y524{bottom:30.645000px;}
.y2a{bottom:31.500000px;}
.y34{bottom:31.530000px;}
.y406{bottom:31.709752px;}
.y52d{bottom:32.430000px;}
.y4c7{bottom:32.445000px;}
.y12b{bottom:32.916556px;}
.y521{bottom:33.300000px;}
.y52b{bottom:33.330000px;}
.y26e{bottom:33.420000px;}
.y3f5{bottom:34.865107px;}
.y1bb{bottom:35.100000px;}
.y2aa{bottom:35.145000px;}
.y433{bottom:35.708617px;}
.y414{bottom:35.739858px;}
.y47{bottom:36.000000px;}
.y567{bottom:36.030000px;}
.y4ac{bottom:36.045000px;}
.y44e{bottom:36.712082px;}
.y609{bottom:36.885000px;}
.y1b7{bottom:36.900000px;}
.y601{bottom:36.915000px;}
.y1d9{bottom:36.930000px;}
.y5f5{bottom:36.945000px;}
.y440{bottom:37.739291px;}
.y520{bottom:37.800000px;}
.y48c{bottom:37.815000px;}
.y603{bottom:37.830000px;}
.y5ff{bottom:37.845000px;}
.y122{bottom:38.177393px;}
.y3dc{bottom:38.489078px;}
.y3e8{bottom:38.686939px;}
.y51d{bottom:38.730000px;}
.y426{bottom:39.041005px;}
.y4c4{bottom:39.495020px;}
.y517{bottom:39.645000px;}
.y442{bottom:39.686655px;}
.y515{bottom:40.500000px;}
.y539{bottom:40.515000px;}
.y502{bottom:40.530000px;}
.y500{bottom:40.545000px;}
.y6{bottom:40.575000px;}
.y4df{bottom:40.612500px;}
.y407{bottom:41.207057px;}
.y5b4{bottom:41.400000px;}
.y514{bottom:41.415000px;}
.y54e{bottom:41.430000px;}
.y5a0{bottom:41.445000px;}
.y5eb{bottom:42.300000px;}
.y1d0{bottom:42.330000px;}
.y5b0{bottom:42.345000px;}
.y447{bottom:43.539728px;}
.y569{bottom:44.130000px;}
.y4ea{bottom:44.985000px;}
.y4f0{bottom:45.000000px;}
.y4f1{bottom:45.015000px;}
.y4d6{bottom:45.030000px;}
.y44f{bottom:45.034721px;}
.y273{bottom:45.045000px;}
.y3f6{bottom:45.955709px;}
.y572{bottom:46.845000px;}
.y415{bottom:47.288665px;}
.y434{bottom:47.663558px;}
.y1c3{bottom:47.730000px;}
.y427{bottom:48.111348px;}
.y2a0{bottom:48.630000px;}
.y3c{bottom:49.545000px;}
.y121{bottom:49.632672px;}
.y56b{bottom:50.430000px;}
.y53{bottom:50.445000px;}
.y408{bottom:50.704362px;}
.y3dd{bottom:51.756147px;}
.y3e9{bottom:52.037317px;}
.y4c9{bottom:52.230000px;}
.y26d{bottom:52.305000px;}
.y4{bottom:53.137500px;}
.y571{bottom:53.145000px;}
.y450{bottom:53.357359px;}
.y443{bottom:53.630615px;}
.y540{bottom:54.930000px;}
.y560{bottom:54.937500px;}
.y4c3{bottom:55.429376px;}
.y51f{bottom:55.830000px;}
.y6c{bottom:55.837500px;}
.y4de{bottom:55.875000px;}
.y33{bottom:56.730000px;}
.y3f7{bottom:57.077554px;}
.y428{bottom:57.202518px;}
.y29{bottom:57.630000px;}
.y51a{bottom:58.530000px;}
.y531{bottom:58.545000px;}
.y45f{bottom:58.680953px;}
.y416{bottom:58.827057px;}
.y54d{bottom:59.430000px;}
.y511{bottom:59.445000px;}
.y550{bottom:59.475000px;}
.y435{bottom:59.608085px;}
.y409{bottom:60.201667px;}
.y50f{bottom:60.345000px;}
.y120{bottom:61.068097px;}
.y6d{bottom:61.200000px;}
.y46{bottom:61.245000px;}
.y451{bottom:61.679998px;}
.y568{bottom:62.145000px;}
.y293{bottom:62.190000px;}
.y5fb{bottom:63.030000px;}
.y5f4{bottom:63.045000px;}
.y590{bottom:63.075000px;}
.y608{bottom:63.930000px;}
.y605{bottom:63.945000px;}
.y604{bottom:63.975000px;}
.y4e7{bottom:64.830000px;}
.y4d9{bottom:64.860000px;}
.y4db{bottom:64.890000px;}
.y3de{bottom:65.002388px;}
.y45e{bottom:65.179109px;}
.y3ea{bottom:65.377282px;}
.y45d{bottom:65.479024px;}
.y4ef{bottom:65.745000px;}
.y429{bottom:66.283275px;}
.y449{bottom:67.376714px;}
.y29f{bottom:67.545000px;}
.y444{bottom:67.574575px;}
.y4c8{bottom:67.575000px;}
.y3f8{bottom:68.178570px;}
.y5a6{bottom:69.330000px;}
.y5e9{bottom:69.345000px;}
.y40a{bottom:69.698972px;}
.y452{bottom:70.002636px;}
.y402{bottom:70.053038px;}
.y5a3{bottom:70.230000px;}
.y5a2{bottom:70.245000px;}
.y5ad{bottom:70.260000px;}
.y5aa{bottom:70.275000px;}
.y59f{bottom:70.290000px;}
.y417{bottom:70.355036px;}
.y41f{bottom:70.532069px;}
.y420{bottom:70.979859px;}
.y570{bottom:71.145000px;}
.y26c{bottom:71.250000px;}
.y4c2{bottom:71.363732px;}
.y436{bottom:71.552613px;}
.y5{bottom:72.900000px;}
.y546{bottom:72.945000px;}
.y55d{bottom:72.975000px;}
.y11f{bottom:72.999852px;}
.y55e{bottom:73.845000px;}
.y53f{bottom:73.860000px;}
.y553{bottom:73.875000px;}
.y400{bottom:74.353901px;}
.y561{bottom:74.700000px;}
.y42a{bottom:75.353617px;}
.y6e{bottom:75.637500px;}
.y272{bottom:75.645000px;}
.y4e0{bottom:75.712500px;}
.y551{bottom:76.545000px;}
.y542{bottom:76.560000px;}
.y52{bottom:76.590000px;}
.y510{bottom:77.430000px;}
.y538{bottom:77.445000px;}
.y519{bottom:77.475000px;}
.y45c{bottom:77.625577px;}
.y3df{bottom:78.279870px;}
.y5dd{bottom:78.330000px;}
.y453{bottom:78.350267px;}
.y50e{bottom:78.375000px;}
.y3eb{bottom:78.727660px;}
.y40b{bottom:79.196277px;}
.y3f9{bottom:79.279587px;}
.y43f{bottom:80.154339px;}
.y411{bottom:80.279303px;}
.y43d{bottom:80.654197px;}
.y445{bottom:81.497707px;}
.y418{bottom:81.903842px;}
.y3ff{bottom:81.945497px;}
.y421{bottom:82.320391px;}
.y5da{bottom:82.830000px;}
.y292{bottom:82.890000px;}
.y437{bottom:83.497140px;}
.y4d{bottom:83.775000px;}
.y3f1{bottom:84.246927px;}
.y448{bottom:84.403133px;}
.y42b{bottom:84.423960px;}
.y11e{bottom:84.457512px;}
.y3b{bottom:84.645000px;}
.y41e{bottom:85.027956px;}
.y430{bottom:85.069610px;}
.y4ee{bottom:85.545000px;}
.y4f8{bottom:85.590000px;}
.y401{bottom:85.673606px;}
.y29e{bottom:86.475000px;}
.y45a{bottom:86.573038px;}
.y454{bottom:86.672905px;}
.y43c{bottom:86.996147px;}
.y4c1{bottom:87.323340px;}
.y7{bottom:87.337500px;}
.y45{bottom:87.345000px;}
.y43e{bottom:87.870899px;}
.y40c{bottom:88.693582px;}
.y606{bottom:89.130000px;}
.y5f3{bottom:89.145000px;}
.y58f{bottom:89.175000px;}
.y5f7{bottom:89.190000px;}
.y562{bottom:90.037500px;}
.y26b{bottom:90.150000px;}
.y410{bottom:90.276466px;}
.y3fa{bottom:90.401431px;}
.y49d{bottom:90.975000px;}
.y3e0{bottom:91.526112px;}
.y45b{bottom:91.546627px;}
.y53e{bottom:91.860000px;}
.y552{bottom:91.875000px;}
.y3fe{bottom:91.942660px;}
.y3ec{bottom:92.067625px;}
.y419{bottom:93.442235px;}
.y42c{bottom:93.494303px;}
.y3f0{bottom:94.244090px;}
.y455{bottom:94.995544px;}
.y41d{bottom:95.025119px;}
.y42f{bottom:95.066774px;}
.y564{bottom:95.430000px;}
.y438{bottom:95.441667px;}
.y537{bottom:95.445000px;}
.y518{bottom:95.475000px;}
.y3e4{bottom:95.618700px;}
.y11d{bottom:95.908820px;}
.y54c{bottom:96.375000px;}
.y459{bottom:96.570201px;}
.y43b{bottom:96.993310px;}
.y4fd{bottom:97.275000px;}
.y40e{bottom:98.117991px;}
.y5ac{bottom:98.160000px;}
.y530{bottom:98.175000px;}
.y5a1{bottom:98.190000px;}
.y5b3{bottom:99.030000px;}
.y5e8{bottom:99.045000px;}
.y5b8{bottom:99.060000px;}
.y5ae{bottom:99.075000px;}
.y5e2{bottom:99.090000px;}
.y3fc{bottom:99.794599px;}
.y3e2{bottom:101.367069px;}
.y51{bottom:101.775000px;}
.y3ee{bottom:102.064788px;}
.y48e{bottom:102.675000px;}
.y41b{bottom:102.845816px;}
.y42d{bottom:102.897885px;}
.y4c0{bottom:103.259716px;}
.y457{bottom:104.398084px;}
.y439{bottom:104.845249px;}
.y446{bottom:105.293038px;}
.y4f7{bottom:105.375000px;}
.y5dc{bottom:107.175000px;}
.y11c{bottom:107.820722px;}
.y26a{bottom:109.050000px;}
.y543{bottom:109.875000px;}
.y53d{bottom:110.775000px;}
.y44{bottom:112.590000px;}
.y536{bottom:113.475000px;}
.y55a{bottom:113.490000px;}
.y55f{bottom:113.520000px;}
.y5f2{bottom:114.375000px;}
.y54f{bottom:114.420000px;}
.y611{bottom:115.260000px;}
.y4fc{bottom:115.275000px;}
.y5fe{bottom:115.290000px;}
.y58e{bottom:115.305000px;}
.y52f{bottom:116.175000px;}
.y5d9{bottom:117.075000px;}
.y49c{bottom:117.120000px;}
.y3a{bottom:118.890000px;}
.y4c{bottom:118.920000px;}
.y4bf{bottom:119.219324px;}
.y11b{bottom:119.279971px;}
.y56f{bottom:120.675000px;}
.y291{bottom:120.720000px;}
.y541{bottom:125.205000px;}
.y4f6{bottom:126.120000px;}
.y5b7{bottom:126.960000px;}
.y5a5{bottom:126.975000px;}
.y5d1{bottom:126.990000px;}
.y5a9{bottom:127.005000px;}
.y59e{bottom:127.020000px;}
.y460{bottom:127.650000px;}
.y5c0{bottom:127.875000px;}
.y50{bottom:127.920000px;}
.y269{bottom:128.880000px;}
.y11a{bottom:130.731278px;}
.y559{bottom:132.375000px;}
.y535{bottom:132.390000px;}
.yf2{bottom:133.275000px;}
.y50d{bottom:133.305000px;}
.y458{bottom:133.626742px;}
.y44a{bottom:133.751810px;}
.y4fb{bottom:134.205000px;}
.y3aa{bottom:135.075000px;}
.y4be{bottom:135.148630px;}
.y2a8{bottom:135.975000px;}
.y21b{bottom:136.875000px;}
.y267{bottom:137.700000px;}
.y28a{bottom:137.775000px;}
.y2df{bottom:138.675000px;}
.y43{bottom:138.690000px;}
.y1a7{bottom:139.575000px;}
.y290{bottom:139.620000px;}
.y486{bottom:140.475000px;}
.y60f{bottom:140.505000px;}
.y58d{bottom:140.520000px;}
.y225{bottom:141.375000px;}
.y5f9{bottom:141.390000px;}
.y618{bottom:141.405000px;}
.y5fd{bottom:141.420000px;}
.y309{bottom:142.275000px;}
.y119{bottom:142.667004px;}
.y2cc{bottom:143.175000px;}
.y8b{bottom:144.075000px;}
.y4b{bottom:144.120000px;}
.y153{bottom:144.975000px;}
.y34d{bottom:145.875000px;}
.y4f5{bottom:145.920000px;}
.yfd{bottom:146.775000px;}
.y260{bottom:147.675000px;}
.y5d8{bottom:147.705000px;}
.y268{bottom:147.795000px;}
.y367{bottom:148.575000px;}
.ya7{bottom:149.512500px;}
.y534{bottom:150.375000px;}
.y16a{bottom:150.405000px;}
.y4bd{bottom:151.088036px;}
.y251{bottom:151.305000px;}
.y4fa{bottom:152.205000px;}
.y50c{bottom:152.220000px;}
.y3c4{bottom:153.055321px;}
.y35{bottom:153.105000px;}
.y4f{bottom:153.120000px;}
.yed{bottom:154.005000px;}
.y39{bottom:154.020000px;}
.y118{bottom:154.102429px;}
.y1cc{bottom:154.905000px;}
.y59d{bottom:154.920000px;}
.y5a8{bottom:155.805000px;}
.y5b2{bottom:155.820000px;}
.y2af{bottom:156.705000px;}
.y4e4{bottom:156.780000px;}
.y5f8{bottom:157.605000px;}
.y2bb{bottom:157.620000px;}
.y371{bottom:158.505000px;}
.y28f{bottom:158.520000px;}
.y5de{bottom:159.405000px;}
.y1b2{bottom:159.420000px;}
.y303{bottom:160.305000px;}
.y2e4{bottom:161.205000px;}
.y17c{bottom:162.105000px;}
.yd4{bottom:163.005000px;}
.y340{bottom:163.905000px;}
.y42{bottom:163.920000px;}
.yc0{bottom:164.805000px;}
.y117{bottom:165.553737px;}
.y21a{bottom:165.720000px;}
.y5bb{bottom:166.605000px;}
.y1f2{bottom:166.620000px;}
.y58c{bottom:166.650000px;}
.y4bc{bottom:167.047644px;}
.y2a7{bottom:167.505000px;}
.y615{bottom:167.520000px;}
.y289{bottom:168.405000px;}
.y533{bottom:168.420000px;}
.y38e{bottom:169.305000px;}
.y224{bottom:170.205000px;}
.y197{bottom:171.120000px;}
.y357{bottom:172.005000px;}
.y3c3{bottom:172.453194px;}
.y2fd{bottom:172.920000px;}
.y2cb{bottom:173.805000px;}
.y3bb{bottom:174.181898px;}
.y8a{bottom:174.705000px;}
.y152{bottom:175.605000px;}
.y266{bottom:176.505000px;}
.y5d7{bottom:176.520000px;}
.yfc{bottom:177.405000px;}
.y28e{bottom:177.465000px;}
.y333{bottom:178.305000px;}
.y116{bottom:178.918890px;}
.y1ce{bottom:179.205000px;}
.y25f{bottom:179.220000px;}
.y4a{bottom:179.250000px;}
.y582{bottom:180.120000px;}
.ya6{bottom:181.005000px;}
.y169{bottom:181.905000px;}
.y53a{bottom:182.820000px;}
.y4bb{bottom:182.976950px;}
.y3a5{bottom:183.705000px;}
.y5bf{bottom:183.720000px;}
.y5ce{bottom:183.735000px;}
.y5a7{bottom:183.750000px;}
.y59c{bottom:183.765000px;}
.y5b6{bottom:184.605000px;}
.yec{bottom:184.620000px;}
.y5e7{bottom:184.635000px;}
.y5ba{bottom:184.665000px;}
.y578{bottom:185.505000px;}
.y302{bottom:186.420000px;}
.y4f4{bottom:186.450000px;}
.y558{bottom:187.320000px;}
.y324{bottom:188.205000px;}
.y38{bottom:188.220000px;}
.y2ba{bottom:189.105000px;}
.y2e3{bottom:190.005000px;}
.y41{bottom:190.020000px;}
.y1b1{bottom:190.905000px;}
.y115{bottom:191.799626px;}
.y219{bottom:191.805000px;}
.y614{bottom:192.705000px;}
.y479{bottom:192.720000px;}
.y58b{bottom:192.750000px;}
.y60b{bottom:192.765000px;}
.y4da{bottom:193.605000px;}
.yd3{bottom:193.620000px;}
.y336{bottom:194.505000px;}
.y2de{bottom:195.405000px;}
.ybf{bottom:196.305000px;}
.y28d{bottom:196.350000px;}
.y1f1{bottom:197.205000px;}
.y223{bottom:198.120000px;}
.y4ba{bottom:198.936558px;}
.y2f2{bottom:199.005000px;}
.y288{bottom:199.920000px;}
.y196{bottom:201.750000px;}
.y485{bottom:202.650000px;}
.y2fc{bottom:203.550000px;}
.y3c2{bottom:203.650059px;}
.y363{bottom:204.450000px;}
.y1cd{bottom:205.350000px;}
.y557{bottom:205.365000px;}
.y114{bottom:206.117732px;}
.y89{bottom:206.250000px;}
.y151{bottom:207.150000px;}
.y34c{bottom:208.050000px;}
.yfb{bottom:208.950000px;}
.y23e{bottom:209.850000px;}
.ya5{bottom:211.650000px;}
.y5e6{bottom:212.535000px;}
.y168{bottom:212.550000px;}
.y5be{bottom:212.565000px;}
.y2ae{bottom:213.450000px;}
.y4a0{bottom:214.350000px;}
.y4b9{bottom:214.875964px;}
.y28c{bottom:215.250000px;}
.y40{bottom:215.265000px;}
.yeb{bottom:216.150000px;}
.y218{bottom:217.050000px;}
.y613{bottom:217.950000px;}
.y2e2{bottom:218.850000px;}
.y616{bottom:218.865000px;}
.y58a{bottom:218.895000px;}
.y2b9{bottom:219.750000px;}
.y113{bottom:219.951420px;}
.y2f5{bottom:220.650000px;}
.y1b0{bottom:221.550000px;}
.y330{bottom:222.450000px;}
.y37{bottom:222.465000px;}
.y3d2{bottom:223.350000px;}
.y556{bottom:223.365000px;}
.y17b{bottom:224.250000px;}
.yd2{bottom:225.150000px;}
.y33f{bottom:226.050000px;}
.ybe{bottom:226.950000px;}
.y4f3{bottom:226.995000px;}
.y222{bottom:227.850000px;}
.y1f0{bottom:228.750000px;}
.y2a6{bottom:229.650000px;}
.y287{bottom:230.550000px;}
.y4b8{bottom:230.835573px;}
.y248{bottom:232.350000px;}
.y195{bottom:233.250000px;}
.y112{bottom:233.793049px;}
.y29d{bottom:234.150000px;}
.y28b{bottom:234.195000px;}
.y3c1{bottom:234.653497px;}
.y2fb{bottom:235.050000px;}
.y362{bottom:235.950000px;}
.y88{bottom:236.850000px;}
.y150{bottom:237.750000px;}
.y23d{bottom:238.650000px;}
.yfa{bottom:239.550000px;}
.y5ed{bottom:240.435000px;}
.y19{bottom:240.450000px;}
.y3f{bottom:240.465000px;}
.y59b{bottom:240.495000px;}
.y1c2{bottom:241.350000px;}
.y5cd{bottom:241.380000px;}
.y5b9{bottom:241.395000px;}
.y555{bottom:242.250000px;}
.ya4{bottom:243.150000px;}
.y167{bottom:244.050000px;}
.y589{bottom:244.080000px;}
.y60e{bottom:244.095000px;}
.y323{bottom:244.950000px;}
.y617{bottom:244.995000px;}
.y111{bottom:246.197309px;}
.yea{bottom:246.750000px;}
.y4b7{bottom:246.764878px;}
.y4f2{bottom:246.795000px;}
.y311{bottom:247.650000px;}
.y2dd{bottom:249.450000px;}
.y3af{bottom:250.350000px;}
.y2b8{bottom:251.250000px;}
.y4a8{bottom:252.150000px;}
.y1af{bottom:253.080000px;}
.y30e{bottom:253.995000px;}
.y478{bottom:254.880000px;}
.yd1{bottom:255.780000px;}
.y335{bottom:256.680000px;}
.y36{bottom:257.595000px;}
.y43a{bottom:258.217117px;}
.y431{bottom:258.342081px;}
.ybd{bottom:258.495000px;}
.y110{bottom:259.062163px;}
.y1ef{bottom:259.380000px;}
.y2a5{bottom:260.280000px;}
.y554{bottom:260.295000px;}
.y2f1{bottom:261.195000px;}
.y286{bottom:262.080000px;}
.y4b6{bottom:262.704284px;}
.y301{bottom:262.980000px;}
.y505{bottom:262.995000px;}
.y4b0{bottom:263.267990px;}
.y194{bottom:263.880000px;}
.y39d{bottom:264.795000px;}
.y2fa{bottom:265.695000px;}
.y3c0{bottom:265.822729px;}
.y20e{bottom:266.580000px;}
.y3e{bottom:266.595000px;}
.y23c{bottom:267.495000px;}
.y87{bottom:268.380000px;}
.y14f{bottom:269.280000px;}
.y5bd{bottom:269.295000px;}
.y59a{bottom:269.340000px;}
.y2ad{bottom:270.180000px;}
.y49e{bottom:270.195000px;}
.y4a9{bottom:271.080000px;}
.yf9{bottom:271.095000px;}
.y25e{bottom:271.995000px;}
.y10f{bottom:272.903792px;}
.ya3{bottom:273.780000px;}
.y166{bottom:274.695000px;}
.y1c6{bottom:275.580000px;}
.y2db{bottom:276.480000px;}
.y482{bottom:278.280000px;}
.ye9{bottom:278.295000px;}
.y4b5{bottom:278.663892px;}
.y18{bottom:279.195000px;}
.y5e5{bottom:280.080000px;}
.y38d{bottom:280.995000px;}
.y2b7{bottom:281.880000px;}
.y370{bottom:282.780000px;}
.y1ae{bottom:283.680000px;}
.y51c{bottom:283.695000px;}
.y32f{bottom:284.595000px;}
.y3a4{bottom:285.495000px;}
.y10e{bottom:286.261004px;}
.y17a{bottom:286.380000px;}
.yd0{bottom:287.280000px;}
.y33e{bottom:288.195000px;}
.ybc{bottom:289.080000px;}
.y221{bottom:289.980000px;}
.y5d6{bottom:289.995000px;}
.y1ee{bottom:290.880000px;}
.y4ab{bottom:291.780000px;}
.y2a4{bottom:291.795000px;}
.y285{bottom:292.695000px;}
.y361{bottom:293.580000px;}
.y2a9{bottom:294.480000px;}
.y20d{bottom:294.495000px;}
.y4b4{bottom:294.593198px;}
.y193{bottom:295.380000px;}
.y6b{bottom:296.280000px;}
.y60d{bottom:296.325000px;}
.y3bf{bottom:296.826164px;}
.y2f9{bottom:297.180000px;}
.y5bc{bottom:297.225000px;}
.y5e4{bottom:298.080000px;}
.y5e1{bottom:298.095000px;}
.y5cc{bottom:298.110000px;}
.y5d0{bottom:298.125000px;}
.y599{bottom:298.140000px;}
.y86{bottom:298.995000px;}
.y14e{bottom:299.880000px;}
.y265{bottom:300.780000px;}
.yf8{bottom:301.695000px;}
.y25d{bottom:302.580000px;}
.y308{bottom:303.480000px;}
.y2e1{bottom:304.380000px;}
.ya2{bottom:305.325000px;}
.y165{bottom:306.225000px;}
.y5b1{bottom:307.125000px;}
.y2da{bottom:308.025000px;}
.ye8{bottom:308.925000px;}
.y577{bottom:309.825000px;}
.y38c{bottom:311.625000px;}
.y1c4{bottom:312.525000px;}
.y2b6{bottom:313.425000px;}
.y4a7{bottom:314.325000px;}
.y1ad{bottom:315.225000px;}
.y2ca{bottom:316.125000px;}
.y17{bottom:317.025000px;}
.y54a{bottom:317.040000px;}
.ycf{bottom:317.925000px;}
.y334{bottom:318.825000px;}
.ybb{bottom:320.625000px;}
.y1ed{bottom:321.525000px;}
.y2a3{bottom:322.425000px;}
.y20c{bottom:323.325000px;}
.y284{bottom:324.225000px;}
.y23b{bottom:325.125000px;}
.y4b1{bottom:325.734636px;}
.y192{bottom:326.025000px;}
.y598{bottom:326.070000px;}
.y2ac{bottom:326.925000px;}
.y6a{bottom:327.825000px;}
.y3ba{bottom:329.764108px;}
.y85{bottom:330.525000px;}
.y14d{bottom:331.425000px;}
.y380{bottom:332.325000px;}
.yf7{bottom:333.225000px;}
.y390{bottom:334.125000px;}
.y2e0{bottom:335.025000px;}
.ya1{bottom:335.925000px;}
.y164{bottom:336.825000px;}
.y2d9{bottom:338.625000px;}
.y49f{bottom:339.525000px;}
.ye7{bottom:340.425000px;}
.y38b{bottom:343.125000px;}
.y2b5{bottom:344.025000px;}
.y2c9{bottom:344.925000px;}
.y1ac{bottom:345.825000px;}
.y32e{bottom:346.725000px;}
.y3d1{bottom:347.625000px;}
.y5d5{bottom:347.655000px;}
.y179{bottom:348.525000px;}
.yce{bottom:349.425000px;}
.y39c{bottom:350.325000px;}
.yba{bottom:351.225000px;}
.y220{bottom:352.125000px;}
.y1ec{bottom:353.025000px;}
.y504{bottom:353.925000px;}
.y549{bottom:353.940000px;}
.y283{bottom:354.825000px;}
.y5cb{bottom:354.855000px;}
.y597{bottom:354.870000px;}
.y16{bottom:355.725000px;}
.y25c{bottom:356.625000px;}
.y191{bottom:357.555000px;}
.y610{bottom:357.570000px;}
.y69{bottom:358.470000px;}
.y322{bottom:359.370000px;}
.y38f{bottom:360.255000px;}
.y84{bottom:361.155000px;}
.y14c{bottom:362.070000px;}
.y264{bottom:362.955000px;}
.yf6{bottom:363.855000px;}
.y586{bottom:364.755000px;}
.y581{bottom:366.570000px;}
.ya0{bottom:367.455000px;}
.y5ec{bottom:367.470000px;}
.y163{bottom:368.370000px;}
.y2f8{bottom:369.255000px;}
.y2d8{bottom:370.155000px;}
.ye6{bottom:371.055000px;}
.y548{bottom:371.970000px;}
.y1bd{bottom:372.855000px;}
.y2c8{bottom:372.870000px;}
.y38a{bottom:373.755000px;}
.y3ae{bottom:374.655000px;}
.y5d4{bottom:375.555000px;}
.y2b4{bottom:375.570000px;}
.y360{bottom:376.455000px;}
.y1ab{bottom:377.355000px;}
.y32d{bottom:378.255000px;}
.y477{bottom:379.170000px;}
.y41c{bottom:379.182791px;}
.y412{bottom:379.307756px;}
.y42e{bottom:379.807614px;}
.y422{bottom:379.932578px;}
.ycd{bottom:380.070000px;}
.y34b{bottom:380.955000px;}
.y60a{bottom:381.855000px;}
.yb9{bottom:382.755000px;}
.y596{bottom:382.800000px;}
.y1eb{bottom:383.655000px;}
.y5c6{bottom:383.670000px;}
.y5ca{bottom:383.685000px;}
.y247{bottom:384.555000px;}
.y2f0{bottom:385.470000px;}
.y282{bottom:386.370000px;}
.y23a{bottom:387.255000px;}
.y190{bottom:388.155000px;}
.y68{bottom:389.955000px;}
.y231{bottom:390.855000px;}
.y547{bottom:390.870000px;}
.y5f6{bottom:391.755000px;}
.y481{bottom:392.655000px;}
.y83{bottom:392.670000px;}
.y14b{bottom:393.570000px;}
.y15{bottom:394.455000px;}
.yf5{bottom:395.370000px;}
.y9f{bottom:398.055000px;}
.y162{bottom:398.955000px;}
.y2d7{bottom:400.755000px;}
.y2c7{bottom:401.655000px;}
.ye5{bottom:402.570000px;}
.y5d3{bottom:404.400000px;}
.y2f4{bottom:405.255000px;}
.y2b3{bottom:406.155000px;}
.y1aa{bottom:407.955000px;}
.y1b9{bottom:408.900000px;}
.y3d0{bottom:409.800000px;}
.y178{bottom:410.700000px;}
.y5c9{bottom:411.585000px;}
.ycc{bottom:411.600000px;}
.y5e0{bottom:412.500000px;}
.yb8{bottom:413.400000px;}
.y21f{bottom:414.300000px;}
.y1ea{bottom:415.200000px;}
.y1a6{bottom:416.100000px;}
.y281{bottom:417.000000px;}
.y239{bottom:417.900000px;}
.y310{bottom:418.800000px;}
.y18f{bottom:419.700000px;}
.y67{bottom:420.600000px;}
.y230{bottom:421.500000px;}
.yf4{bottom:422.400000px;}
.y10d{bottom:423.153088px;}
.y82{bottom:423.300000px;}
.y128{bottom:423.629624px;}
.y14a{bottom:424.200000px;}
.y263{bottom:425.100000px;}
.y37f{bottom:426.000000px;}
.y585{bottom:426.900000px;}
.y580{bottom:428.700000px;}
.y9e{bottom:429.600000px;}
.y161{bottom:430.500000px;}
.y2f3{bottom:431.400000px;}
.y2d6{bottom:432.300000px;}
.y14{bottom:433.200000px;}
.y576{bottom:434.100000px;}
.y30d{bottom:435.000000px;}
.y20b{bottom:436.800000px;}
.y2b2{bottom:437.700000px;}
.y35f{bottom:438.600000px;}
.y32{bottom:439.500000px;}
.yf1{bottom:440.400000px;}
.y5c8{bottom:440.430000px;}
.y595{bottom:440.445000px;}
.y476{bottom:441.300000px;}
.y3be{bottom:441.937176px;}
.ycb{bottom:442.200000px;}
.y321{bottom:444.000000px;}
.yb7{bottom:444.900000px;}
.y1e9{bottom:445.800000px;}
.y30f{bottom:446.700000px;}
.y2ef{bottom:447.600000px;}
.y280{bottom:448.500000px;}
.y238{bottom:449.400000px;}
.y18e{bottom:450.300000px;}
.y36f{bottom:451.200000px;}
.y66{bottom:452.100000px;}
.y22f{bottom:453.000000px;}
.y37e{bottom:453.900000px;}
.y81{bottom:454.800000px;}
.y149{bottom:455.700000px;}
.y57e{bottom:456.600000px;}
.y498{bottom:457.500000px;}
.y2c6{bottom:458.400000px;}
.y126{bottom:458.471626px;}
.y9d{bottom:460.200000px;}
.y160{bottom:461.130000px;}
.y5d2{bottom:461.145000px;}
.y480{bottom:462.030000px;}
.y2d5{bottom:462.945000px;}
.ye4{bottom:464.745000px;}
.yf0{bottom:465.630000px;}
.y2b1{bottom:468.330000px;}
.y594{bottom:468.345000px;}
.y3ad{bottom:469.230000px;}
.y5c5{bottom:469.245000px;}
.y1a9{bottom:470.130000px;}
.y32c{bottom:471.030000px;}
.y332{bottom:471.945000px;}
.y177{bottom:472.830000px;}
.y1b5{bottom:473.730000px;}
.yca{bottom:473.745000px;}
.yb6{bottom:475.530000px;}
.y3b9{bottom:476.212305px;}
.y21e{bottom:476.445000px;}
.y1e8{bottom:477.330000px;}
.y27f{bottom:479.130000px;}
.y237{bottom:480.045000px;}
.y262{bottom:480.945000px;}
.y18d{bottom:481.830000px;}
.y13{bottom:482.730000px;}
.y22e{bottom:483.630000px;}
.y47f{bottom:484.530000px;}
.y80{bottom:485.445000px;}
.y148{bottom:486.330000px;}
.y2c5{bottom:487.245000px;}
.y57d{bottom:488.130000px;}
.y584{bottom:489.030000px;}
.y5db{bottom:489.945000px;}
.y57f{bottom:490.830000px;}
.y9c{bottom:491.745000px;}
.y15f{bottom:492.630000px;}
.y132{bottom:493.294084px;}
.y20a{bottom:494.445000px;}
.ye3{bottom:495.330000px;}
.y575{bottom:496.230000px;}
.y57a{bottom:497.130000px;}
.y5c4{bottom:497.145000px;}
.y593{bottom:497.175000px;}
.y5cf{bottom:497.190000px;}
.y31d{bottom:498.930000px;}
.y3fd{bottom:499.523643px;}
.y3f2{bottom:499.648607px;}
.y2b0{bottom:499.830000px;}
.y40f{bottom:500.148466px;}
.y403{bottom:500.273430px;}
.y331{bottom:500.745000px;}
.y1a8{bottom:501.630000px;}
.y36e{bottom:502.530000px;}
.yc9{bottom:504.345000px;}
.y37d{bottom:506.130000px;}
.yb5{bottom:507.030000px;}
.y47d{bottom:507.930000px;}
.y1e7{bottom:507.945000px;}
.y3b0{bottom:508.830000px;}
.y2ee{bottom:509.730000px;}
.y1a5{bottom:510.630000px;}
.y236{bottom:511.530000px;}
.y18c{bottom:512.475000px;}
.y484{bottom:513.375000px;}
.y65{bottom:514.275000px;}
.y22d{bottom:515.175000px;}
.y31{bottom:516.075000px;}
.y7f{bottom:516.975000px;}
.yef{bottom:517.875000px;}
.y57c{bottom:518.775000px;}
.y202{bottom:519.675000px;}
.y9b{bottom:522.375000px;}
.y15e{bottom:523.275000px;}
.y2d4{bottom:525.075000px;}
.y209{bottom:525.975000px;}
.y592{bottom:526.020000px;}
.ye2{bottom:526.875000px;}
.y320{bottom:527.775000px;}
.y138{bottom:528.114954px;}
.y36d{bottom:528.675000px;}
.y32b{bottom:529.575000px;}
.y47c{bottom:530.475000px;}
.y3ac{bottom:531.375000px;}
.y12{bottom:532.275000px;}
.y3a3{bottom:533.175000px;}
.y3cf{bottom:534.075000px;}
.y176{bottom:534.975000px;}
.y3bd{bottom:535.489106px;}
.yc8{bottom:535.875000px;}
.yb4{bottom:537.675000px;}
.y244{bottom:538.575000px;}
.y1a4{bottom:539.475000px;}
.y1b4{bottom:540.375000px;}
.yee{bottom:541.275000px;}
.y30{bottom:542.175000px;}
.y566{bottom:543.075000px;}
.y18b{bottom:543.975000px;}
.y462{bottom:544.293467px;}
.y64{bottom:544.875000px;}
.y22c{bottom:545.775000px;}
.y483{bottom:546.675000px;}
.y7e{bottom:547.575000px;}
.y147{bottom:548.475000px;}
.y473{bottom:549.375000px;}
.y465{bottom:549.948112px;}
.y201{bottom:550.275000px;}
.y3a9{bottom:551.175000px;}
.y461{bottom:551.791339px;}
.y4d5{bottom:552.975000px;}
.y9a{bottom:553.875000px;}
.y591{bottom:553.920000px;}
.y15d{bottom:554.775000px;}
.y5df{bottom:554.790000px;}
.y31c{bottom:555.675000px;}
.y208{bottom:556.575000px;}
.ye1{bottom:557.475000px;}
.y32a{bottom:558.375000px;}
.y33d{bottom:559.275000px;}
.y467{bottom:559.643278px;}
.y475{bottom:560.175000px;}
.y259{bottom:561.075000px;}
.y463{bottom:561.392781px;}
.y21d{bottom:561.975000px;}
.y464{bottom:562.767391px;}
.y35e{bottom:562.875000px;}
.y130{bottom:562.961236px;}
.y30c{bottom:564.705000px;}
.y602{bottom:565.605000px;}
.y466{bottom:565.745713px;}
.yc7{bottom:566.505000px;}
.y2e{bottom:567.405000px;}
.y1b3{bottom:568.320000px;}
.yb3{bottom:569.205000px;}
.y4b2{bottom:570.012712px;}
.y1e6{bottom:570.120000px;}
.y2ed{bottom:571.905000px;}
.y27e{bottom:572.805000px;}
.y235{bottom:573.720000px;}
.y18a{bottom:574.605000px;}
.y63{bottom:576.405000px;}
.y22b{bottom:577.320000px;}
.y389{bottom:578.205000px;}
.y7d{bottom:579.105000px;}
.y146{bottom:580.005000px;}
.y51b{bottom:580.905000px;}
.y200{bottom:581.820000px;}
.y258{bottom:582.705000px;}
.y5c3{bottom:582.720000px;}
.y37c{bottom:583.620000px;}
.y11{bottom:584.505000px;}
.y15c{bottom:585.405000px;}
.y21c{bottom:586.305000px;}
.y49a{bottom:587.205000px;}
.y253{bottom:587.220000px;}
.y207{bottom:588.105000px;}
.ye0{bottom:589.005000px;}
.y30b{bottom:589.905000px;}
.y35d{bottom:590.820000px;}
.y54b{bottom:591.705000px;}
.y3cd{bottom:592.605000px;}
.y2c{bottom:593.505000px;}
.y4a6{bottom:594.405000px;}
.y5af{bottom:595.305000px;}
.y3a2{bottom:595.320000px;}
.y1a3{bottom:596.205000px;}
.y175{bottom:597.120000px;}
.yc6{bottom:598.005000px;}
.y5c7{bottom:598.020000px;}
.y12f{bottom:599.213123px;}
.yb2{bottom:599.805000px;}
.y243{bottom:600.720000px;}
.y1e5{bottom:601.605000px;}
.y27d{bottom:603.405000px;}
.y257{bottom:604.305000px;}
.y234{bottom:604.320000px;}
.y189{bottom:606.105000px;}
.y62{bottom:607.005000px;}
.y22a{bottom:607.905000px;}
.y7c{bottom:609.705000px;}
.y145{bottom:610.620000px;}
.y472{bottom:611.505000px;}
.y5c2{bottom:611.565000px;}
.y1ff{bottom:612.405000px;}
.y4d4{bottom:613.305000px;}
.y252{bottom:615.105000px;}
.y30a{bottom:616.005000px;}
.y15b{bottom:616.950000px;}
.y3ef{bottom:617.115275px;}
.y3e3{bottom:617.240239px;}
.y3d9{bottom:617.365204px;}
.y607{bottom:617.850000px;}
.y28{bottom:618.750000px;}
.ydf{bottom:619.650000px;}
.y33c{bottom:621.450000px;}
.y36c{bottom:623.250000px;}
.y3cc{bottom:624.150000px;}
.y3b8{bottom:624.995828px;}
.y99{bottom:625.050000px;}
.y256{bottom:626.850000px;}
.y246{bottom:627.750000px;}
.yc5{bottom:628.650000px;}
.y3d8{bottom:629.550000px;}
.yb1{bottom:631.350000px;}
.y1e4{bottom:632.250000px;}
.y3d7{bottom:633.150000px;}
.y2dc{bottom:634.050000px;}
.y27c{bottom:634.950000px;}
.y233{bottom:635.850000px;}
.y188{bottom:636.750000px;}
.y34a{bottom:637.650000px;}
.y3b1{bottom:638.202913px;}
.y61{bottom:638.550000px;}
.y229{bottom:639.450000px;}
.y12d{bottom:640.245652px;}
.y388{bottom:640.350000px;}
.y7b{bottom:641.250000px;}
.y10{bottom:642.150000px;}
.yd5{bottom:643.050000px;}
.y1fe{bottom:643.950000px;}
.y3b7{bottom:644.396967px;}
.y15a{bottom:647.550000px;}
.y254{bottom:648.450000px;}
.y2d3{bottom:649.350000px;}
.y206{bottom:650.250000px;}
.yde{bottom:651.150000px;}
.y33b{bottom:652.050000px;}
.y36b{bottom:653.850000px;}
.y3cb{bottom:654.750000px;}
.y37b{bottom:655.650000px;}
.y245{bottom:656.550000px;}
.y31f{bottom:657.450000px;}
.y3ce{bottom:658.350000px;}
.y174{bottom:659.250000px;}
.yc4{bottom:660.150000px;}
.yb0{bottom:661.950000px;}
.y242{bottom:662.850000px;}
.y1e3{bottom:663.750000px;}
.y300{bottom:664.650000px;}
.y98{bottom:665.550000px;}
.y2c4{bottom:666.450000px;}
.y48d{bottom:667.350000px;}
.y250{bottom:668.280000px;}
.y5c1{bottom:668.295000px;}
.y349{bottom:669.180000px;}
.y600{bottom:670.080000px;}
.y228{bottom:670.095000px;}
.y4ed{bottom:670.980000px;}
.y7a{bottom:671.880000px;}
.y144{bottom:672.780000px;}
.y471{bottom:673.695000px;}
.y1a2{bottom:674.580000px;}
.y583{bottom:675.480000px;}
.y3b6{bottom:675.599084px;}
.y60{bottom:678.195000px;}
.y159{bottom:679.080000px;}
.y140{bottom:679.356395px;}
.y4af{bottom:679.995000px;}
.y205{bottom:680.880000px;}
.y5a4{bottom:680.895000px;}
.ydd{bottom:681.780000px;}
.y1fd{bottom:683.595000px;}
.y53b{bottom:684.480000px;}
.y36a{bottom:685.380000px;}
.y3ca{bottom:686.280000px;}
.y37a{bottom:687.195000px;}
.y474{bottom:688.080000px;}
.y3a1{bottom:688.980000px;}
.yc3{bottom:690.780000px;}
.y97{bottom:691.695000px;}
.y497{bottom:693.480000px;}
.yaf{bottom:693.495000px;}
.y1e2{bottom:694.380000px;}
.y4ae{bottom:695.280000px;}
.y2ec{bottom:696.180000px;}
.yf{bottom:697.095000px;}
.y31b{bottom:697.980000px;}
.y3e5{bottom:698.342226px;}
.y24f{bottom:698.880000px;}
.y2fe{bottom:699.780000px;}
.y329{bottom:700.695000px;}
.y27{bottom:701.580000px;}
.y55c{bottom:701.595000px;}
.y387{bottom:702.480000px;}
.y79{bottom:703.380000px;}
.y143{bottom:704.280000px;}
.y1a1{bottom:705.195000px;}
.y3b5{bottom:706.607742px;}
.y307{bottom:706.995000px;}
.y5f{bottom:709.680000px;}
.y487{bottom:710.595000px;}
.y2d2{bottom:711.480000px;}
.y204{bottom:712.380000px;}
.ydc{bottom:713.280000px;}
.y1fc{bottom:714.195000px;}
.y2ff{bottom:715.080000px;}
.y369{bottom:715.980000px;}
.y187{bottom:716.880000px;}
.y379{bottom:717.780000px;}
.y4a5{bottom:718.695000px;}
.y232{bottom:719.580000px;}
.yfe{bottom:720.396810px;}
.y10a{bottom:720.396842px;}
.y109{bottom:720.396845px;}
.y108{bottom:720.396848px;}
.y105{bottom:720.396850px;}
.y103{bottom:720.396853px;}
.y100{bottom:720.396856px;}
.y12a{bottom:720.396863px;}
.y134{bottom:720.396866px;}
.y3ab{bottom:720.525000px;}
.y173{bottom:721.425000px;}
.yc2{bottom:722.325000px;}
.yae{bottom:724.125000px;}
.y241{bottom:725.025000px;}
.y4e3{bottom:725.250000px;}
.y1e1{bottom:725.925000px;}
.y31a{bottom:726.825000px;}
.y26{bottom:727.725000px;}
.y2c3{bottom:728.625000px;}
.y328{bottom:729.525000px;}
.y24e{bottom:730.425000px;}
.y29c{bottom:731.325000px;}
.y227{bottom:732.225000px;}
.y306{bottom:733.125000px;}
.ye{bottom:734.025000px;}
.y142{bottom:734.925000px;}
.y470{bottom:735.825000px;}
.y1a0{bottom:736.725000px;}
.y3b4{bottom:737.782221px;}
.y27b{bottom:738.525000px;}
.y203{bottom:739.425000px;}
.y96{bottom:741.225000px;}
.y579{bottom:742.125000px;}
.y186{bottom:743.025000px;}
.ydb{bottom:743.925000px;}
.y495{bottom:744.825000px;}
.y33a{bottom:745.725000px;}
.y1fb{bottom:747.525000px;}
.y3c9{bottom:748.425000px;}
.y378{bottom:749.325000px;}
.y13a{bottom:749.501556px;}
.y13f{bottom:749.501573px;}
.y13e{bottom:749.501585px;}
.y13c{bottom:749.501596px;}
.y3a0{bottom:751.125000px;}
.y52c{bottom:752.025000px;}
.y25{bottom:752.925000px;}
.y351{bottom:753.825000px;}
.y240{bottom:754.725000px;}
.yad{bottom:755.625000px;}
.y4e2{bottom:755.850000px;}
.y1e0{bottom:756.525000px;}
.y305{bottom:757.425000px;}
.y2eb{bottom:758.325000px;}
.y2c2{bottom:759.225000px;}
.y35c{bottom:760.125000px;}
.y24d{bottom:761.025000px;}
.y16e{bottom:762.825000px;}
.y226{bottom:763.725000px;}
.y136{bottom:763.811738px;}
.y386{bottom:764.625000px;}
.y78{bottom:765.525000px;}
.y27a{bottom:766.425000px;}
.y19f{bottom:767.325000px;}
.y3b3{bottom:768.790876px;}
.y185{bottom:769.125000px;}
.yd{bottom:770.025000px;}
.y494{bottom:770.925000px;}
.y158{bottom:771.855000px;}
.y574{bottom:772.755000px;}
.y4e9{bottom:772.770000px;}
.y2d1{bottom:773.670000px;}
.yda{bottom:775.455000px;}
.y339{bottom:776.355000px;}
.y4dd{bottom:776.580000px;}
.y1dd{bottom:777.255000px;}
.y24{bottom:779.070000px;}
.y377{bottom:779.955000px;}
.y4a4{bottom:780.870000px;}
.y350{bottom:781.755000px;}
.y3a8{bottom:782.655000px;}
.y172{bottom:783.570000px;}
.yc1{bottom:784.455000px;}
.y348{bottom:785.355000px;}
.yac{bottom:786.255000px;}
.y31e{bottom:787.170000px;}
.y16d{bottom:788.955000px;}
.y2ea{bottom:789.855000px;}
.y2c1{bottom:790.755000px;}
.y24c{bottom:791.670000px;}
.yf3{bottom:792.570000px;}
.y29b{bottom:793.455000px;}
.y184{bottom:794.370000px;}
.y77{bottom:796.155000px;}
.y492{bottom:797.070000px;}
.y46f{bottom:797.955000px;}
.y19e{bottom:798.855000px;}
.y278{bottom:798.870000px;}
.y5fc{bottom:799.755000px;}
.y52a{bottom:799.770000px;}
.y5f1{bottom:800.670000px;}
.y1df{bottom:801.570000px;}
.y23{bottom:804.255000px;}
.y2d0{bottom:805.170000px;}
.yd9{bottom:806.070000px;}
.y338{bottom:807.870000px;}
.y23f{bottom:808.755000px;}
.y57b{bottom:808.770000px;}
.y5e{bottom:810.570000px;}
.y347{bottom:811.455000px;}
.y171{bottom:812.355000px;}
.y2c0{bottom:813.255000px;}
.y4dc{bottom:813.525000px;}
.y544{bottom:814.155000px;}
.y16c{bottom:814.170000px;}
.y95{bottom:815.070000px;}
.y396{bottom:816.855000px;}
.yab{bottom:817.755000px;}
.yc{bottom:819.570000px;}
.y183{bottom:820.455000px;}
.y344{bottom:821.370000px;}
.y24b{bottom:823.155000px;}
.y490{bottom:823.170000px;}
.y157{bottom:824.100000px;}
.y29a{bottom:825.000000px;}
.y217{bottom:825.900000px;}
.y1de{bottom:826.800000px;}
.y76{bottom:827.700000px;}
.y46e{bottom:828.600000px;}
.y22{bottom:829.500000px;}
.y277{bottom:830.400000px;}
.y356{bottom:834.000000px;}
.y507{bottom:834.900000px;}
.y2bf{bottom:835.800000px;}
.yd8{bottom:837.600000px;}
.y16b{bottom:838.500000px;}
.y34f{bottom:839.400000px;}
.y319{bottom:840.300000px;}
.y1fa{bottom:841.200000px;}
.y5f0{bottom:842.100000px;}
.y327{bottom:843.000000px;}
.y5d{bottom:843.900000px;}
.y3a7{bottom:844.800000px;}
.y94{bottom:846.600000px;}
.y528{bottom:847.500000px;}
.yaa{bottom:848.400000px;}
.y48f{bottom:850.200000px;}
.y2e9{bottom:852.000000px;}
.y1d8{bottom:852.900000px;}
.y56{bottom:853.800000px;}
.y39b{bottom:854.700000px;}
.y156{bottom:855.600000px;}
.y216{bottom:856.500000px;}
.y2be{bottom:857.400000px;}
.y75{bottom:858.300000px;}
.y5ef{bottom:859.200000px;}
.y376{bottom:860.100000px;}
.y19d{bottom:861.000000px;}
.y275{bottom:861.900000px;}
.y346{bottom:862.800000px;}
.y21{bottom:863.700000px;}
.y170{bottom:864.600000px;}
.y337{bottom:865.500000px;}
.y2cf{bottom:867.300000px;}
.yd7{bottom:868.200000px;}
.y318{bottom:869.100000px;}
.y395{bottom:870.000000px;}
.yb{bottom:871.800000px;}
.y182{bottom:872.700000px;}
.y1f9{bottom:873.600000px;}
.y4d0{bottom:874.500000px;}
.y39f{bottom:875.445000px;}
.y35b{bottom:876.330000px;}
.y5c{bottom:877.230000px;}
.y1db{bottom:877.245000px;}
.ya9{bottom:879.945000px;}
.y24a{bottom:881.730000px;}
.y2e8{bottom:882.630000px;}
.y5b5{bottom:882.645000px;}
.y343{bottom:883.545000px;}
.y385{bottom:886.245000px;}
.y155{bottom:887.130000px;}
.y16f{bottom:888.045000px;}
.y20{bottom:888.945000px;}
.y74{bottom:889.830000px;}
.y46d{bottom:890.730000px;}
.y19c{bottom:891.630000px;}
.y55{bottom:892.530000px;}
.y2ce{bottom:893.445000px;}
.y271{bottom:894.330000px;}
.y4e6{bottom:895.245000px;}
.y299{bottom:896.130000px;}
.y317{bottom:897.045000px;}
.y181{bottom:897.945000px;}
.yd6{bottom:899.745000px;}
.y2bd{bottom:900.630000px;}
.y56e{bottom:902.430000px;}
.y1f8{bottom:904.230000px;}
.y4a3{bottom:905.130000px;}
.y368{bottom:906.030000px;}
.y35a{bottom:906.945000px;}
.y93{bottom:908.730000px;}
.y5ee{bottom:909.630000px;}
.y249{bottom:910.545000px;}
.y5ab{bottom:911.445000px;}
.y261{bottom:912.330000px;}
.y49{bottom:913.230000px;}
.y3b2{bottom:913.912500px;}
.y1f{bottom:914.130000px;}
.y4ce{bottom:915.030000px;}
.y342{bottom:915.045000px;}
.y154{bottom:917.730000px;}
.y215{bottom:918.630000px;}
.y5b{bottom:919.530000px;}
.y73{bottom:920.445000px;}
.y394{bottom:921.330000px;}
.y46c{bottom:922.230000px;}
.y19b{bottom:923.130000px;}
.y180{bottom:924.045000px;}
.y2bc{bottom:925.830000px;}
.ya{bottom:926.745000px;}
.y326{bottom:928.575000px;}
.y3d6{bottom:930.375000px;}
.y563{bottom:931.275000px;}
.y39a{bottom:932.175000px;}
.y4a2{bottom:935.775000px;}
.y1f7{bottom:937.575000px;}
.y359{bottom:938.475000px;}
.y92{bottom:939.375000px;}
.y1e{bottom:940.275000px;}
.y341{bottom:942.075000px;}
.y384{bottom:942.975000px;}
.y46b{bottom:943.875000px;}
.y2cd{bottom:944.775000px;}
.y34e{bottom:947.475000px;}
.y366{bottom:948.375000px;}
.y17f{bottom:950.175000px;}
.y5a{bottom:951.975000px;}
.y19a{bottom:953.775000px;}
.y316{bottom:954.675000px;}
.y4cc{bottom:955.575000px;}
.y5fa{bottom:956.475000px;}
.y298{bottom:957.375000px;}
.y355{bottom:958.275000px;}
.y3d5{bottom:961.875000px;}
.y9{bottom:965.475000px;}
.y46a{bottom:966.375000px;}
.y39e{bottom:967.275000px;}
.y1f6{bottom:968.175000px;}
.y3a6{bottom:969.075000px;}
.ya8{bottom:969.975000px;}
.y91{bottom:970.875000px;}
.y489{bottom:972.675000px;}
.y1d7{bottom:973.575000px;}
.y17e{bottom:976.275000px;}
.y525{bottom:977.175000px;}
.y365{bottom:978.975000px;}
.y214{bottom:980.820000px;}
.y612{bottom:981.705000px;}
.y72{bottom:982.605000px;}
.y399{bottom:983.505000px;}
.y59{bottom:984.405000px;}
.y325{bottom:985.320000px;}
.y375{bottom:987.105000px;}
.y469{bottom:988.920000px;}
.y297{bottom:990.705000px;}
.y1d{bottom:991.620000px;}
.y3d4{bottom:992.505000px;}
.y354{bottom:993.420000px;}
.y4e5{bottom:997.005000px;}
.y383{bottom:999.705000px;}
.y1f5{bottom:1000.605000px;}
.y90{bottom:1001.505000px;}
.y17d{bottom:1003.320000px;}
.y2e7{bottom:1006.920000px;}
.y199{bottom:1008.705000px;}
.y398{bottom:1009.605000px;}
.y1d6{bottom:1010.505000px;}
.y315{bottom:1011.405000px;}
.y213{bottom:1012.320000px;}
.y71{bottom:1014.105000px;}
.y1c{bottom:1016.820000px;}
.y374{bottom:1017.705000px;}
.y53c{bottom:1017.720000px;}
.y4cb{bottom:1019.505000px;}
.y296{bottom:1020.420000px;}
.y364{bottom:1022.205000px;}
.y3d3{bottom:1023.105000px;}
.y393{bottom:1024.905000px;}
.y382{bottom:1028.505000px;}
.y588{bottom:1030.320000px;}
.y1f4{bottom:1031.250000px;}
.y58{bottom:1032.150000px;}
.y8f{bottom:1033.050000px;}
.y60c{bottom:1033.950000px;}
.y397{bottom:1035.750000px;}
.y353{bottom:1037.550000px;}
.y2e6{bottom:1038.450000px;}
.y314{bottom:1040.250000px;}
.y212{bottom:1042.050000px;}
.y1b{bottom:1042.950000px;}
.y70{bottom:1044.750000px;}
.y198{bottom:1045.650000px;}
.y1cf{bottom:1046.550000px;}
.y373{bottom:1049.250000px;}
.y4ff{bottom:1050.150000px;}
.y392{bottom:1051.050000px;}
.y295{bottom:1053.750000px;}
.y358{bottom:1054.650000px;}
.y381{bottom:1056.450000px;}
.y523{bottom:1060.050000px;}
.y1f3{bottom:1061.850000px;}
.y8e{bottom:1063.650000px;}
.y352{bottom:1065.450000px;}
.y313{bottom:1068.150000px;}
.y2e5{bottom:1069.050000px;}
.y211{bottom:1070.850000px;}
.y4aa{bottom:1074.450000px;}
.y391{bottom:1077.150000px;}
.y372{bottom:1079.850000px;}
.y1d2{bottom:1080.750000px;}
.y294{bottom:1084.380000px;}
.y1a{bottom:1086.195000px;}
.y513{bottom:1087.080000px;}
.y587{bottom:1088.880000px;}
.y57{bottom:1091.580000px;}
.y4a1{bottom:1094.280000px;}
.y8d{bottom:1095.195000px;}
.y312{bottom:1096.995000px;}
.y468{bottom:1097.880000px;}
.y210{bottom:1099.695000px;}
.y2f7{bottom:1100.580000px;}
.y304{bottom:1103.280000px;}
.y345{bottom:1105.080000px;}
.y4fe{bottom:1105.995000px;}
.y3{bottom:1114.995000px;}
.y1d1{bottom:1117.680000px;}
.y8c{bottom:1125.795000px;}
.y20f{bottom:1127.580000px;}
.y2f6{bottom:1128.495000px;}
.y2{bottom:1152.825000px;}
.y1{bottom:1183.425000px;}
.h59{height:11.543716px;}
.h56{height:11.545660px;}
.h2e{height:13.837670px;}
.h2d{height:13.837671px;}
.h8d{height:14.444456px;}
.h2a{height:16.696550px;}
.h5e{height:18.395415px;}
.h42{height:21.600000px;}
.h41{height:21.637500px;}
.h63{height:21.868794px;}
.h3a{height:22.500000px;}
.h36{height:22.537500px;}
.h62{height:22.869975px;}
.h6f{height:23.981476px;}
.h8a{height:24.285000px;}
.h9d{height:24.300000px;}
.hc6{height:24.337500px;}
.h86{height:25.200000px;}
.he{height:25.237500px;}
.h5f{height:26.066822px;}
.hf{height:26.100000px;}
.h84{height:26.137500px;}
.h1d{height:28.628273px;}
.h1b{height:28.628328px;}
.h80{height:28.800000px;}
.h60{height:30.237513px;}
.h47{height:30.600000px;}
.h48{height:30.637500px;}
.h2c{height:31.010668px;}
.h46{height:31.537500px;}
.h3f{height:32.385000px;}
.h35{height:32.400000px;}
.h3d{height:32.437500px;}
.h3c{height:33.300000px;}
.h68{height:33.310616px;}
.h38{height:33.337500px;}
.h72{height:33.410051px;}
.h23{height:34.345985px;}
.h24{height:34.365838px;}
.h22{height:34.654327px;}
.h29{height:35.775413px;}
.ha9{height:36.037500px;}
.h5c{height:36.894727px;}
.haa{height:36.900000px;}
.ha5{height:36.922500px;}
.ha3{height:36.937500px;}
.h76{height:37.288003px;}
.h1c{height:38.495915px;}
.h27{height:38.634269px;}
.h95{height:39.600000px;}
.h92{height:39.637500px;}
.ha8{height:40.537500px;}
.h28{height:40.560027px;}
.h81{height:41.437500px;}
.h88{height:42.337500px;}
.h7b{height:43.237500px;}
.h1f{height:44.029365px;}
.h1e{height:44.092896px;}
.h26{height:44.258297px;}
.hb4{height:45.037500px;}
.h4a{height:45.649687px;}
.h77{height:45.785592px;}
.h49{height:45.829687px;}
.h4e{height:46.548633px;}
.hb0{height:46.837500px;}
.h8c{height:47.513058px;}
.hb5{height:47.722500px;}
.hb3{height:47.737500px;}
.h1a{height:48.810937px;}
.hdb{height:49.232813px;}
.h30{height:49.537500px;}
.h51{height:49.893750px;}
.h4d{height:50.437500px;}
.h8e{height:50.673571px;}
.hf0{height:51.337500px;}
.h2b{height:51.941474px;}
.h82{height:52.237500px;}
.h33{height:53.709961px;}
.h90{height:54.037500px;}
.h5b{height:54.894727px;}
.ha6{height:54.937500px;}
.hae{height:54.975000px;}
.h5{height:55.029272px;}
.h31{height:55.291992px;}
.had{height:55.837500px;}
.h52{height:56.320312px;}
.hce{height:56.737500px;}
.h89{height:57.637500px;}
.hc4{height:57.675000px;}
.h79{height:58.123828px;}
.h78{height:59.219931px;}
.h97{height:59.437500px;}
.h96{height:59.475000px;}
.h25{height:60.115399px;}
.h8f{height:60.155113px;}
.ha0{height:60.322500px;}
.h9f{height:60.337500px;}
.h94{height:60.871289px;}
.h34{height:62.137500px;}
.h7e{height:62.175000px;}
.h6e{height:62.219080px;}
.h58{height:62.471876px;}
.h55{height:62.482394px;}
.h93{height:62.664258px;}
.h20{height:63.336200px;}
.h3{height:63.829687px;}
.h15{height:63.986133px;}
.h7d{height:64.451953px;}
.h17{height:64.582031px;}
.h4{height:64.800000px;}
.h6d{height:65.093264px;}
.h7c{height:66.350391px;}
.h5a{height:67.178320px;}
.h2f{height:67.584375px;}
.h44{height:67.740820px;}
.h50{height:70.196250px;}
.hb2{height:70.237500px;}
.h4f{height:70.256250px;}
.h53{height:70.316250px;}
.h7a{height:70.664062px;}
.hb1{height:71.137500px;}
.h18{height:71.613281px;}
.h40{height:72.037500px;}
.hb6{height:72.937500px;}
.hbf{height:72.960000px;}
.hc0{height:73.837500px;}
.hbd{height:73.875000px;}
.h2{height:75.093750px;}
.h9c{height:75.250195px;}
.h10{height:76.575000px;}
.hd{height:77.437500px;}
.he9{height:77.475000px;}
.hee{height:78.337500px;}
.hef{height:78.375000px;}
.h98{height:79.275000px;}
.h9e{height:80.137500px;}
.ha{height:82.355273px;}
.h39{height:82.837500px;}
.h3e{height:82.875000px;}
.hd2{height:84.675000px;}
.h13{height:84.781055px;}
.he7{height:85.537500px;}
.he0{height:85.560000px;}
.he2{height:85.575000px;}
.h7f{height:86.357813px;}
.h91{height:89.175000px;}
.hbc{height:90.937500px;}
.hac{height:91.875000px;}
.hc7{height:92.691650px;}
.h45{height:92.775000px;}
.h3b{height:93.675000px;}
.h99{height:98.175000px;}
.h14{height:99.679175px;}
.ha1{height:100.875000px;}
.h16{height:101.533008px;}
.h4c{height:101.775000px;}
.h37{height:103.575000px;}
.h69{height:108.969079px;}
.h7{height:108.994922px;}
.h6a{height:109.094043px;}
.haf{height:109.875000px;}
.h66{height:110.593618px;}
.h67{height:110.718582px;}
.h8{height:110.737573px;}
.hba{height:110.775000px;}
.hc{height:111.155273px;}
.h5d{height:112.218157px;}
.h61{height:112.343121px;}
.h64{height:112.842979px;}
.h65{height:112.967944px;}
.hca{height:113.475000px;}
.h6b{height:113.717731px;}
.h6c{height:113.842696px;}
.hd0{height:114.375000px;}
.h73{height:115.217306px;}
.h74{height:115.342270px;}
.h70{height:115.717164px;}
.h71{height:115.842128px;}
.h6{height:121.795972px;}
.h32{height:122.512500px;}
.hb8{height:125.197500px;}
.hc1{height:127.875000px;}
.hc2{height:127.912500px;}
.he8{height:128.775000px;}
.hbb{height:128.812500px;}
.hf5{height:129.675000px;}
.hed{height:129.712500px;}
.hc5{height:135.112500px;}
.hb{height:136.540503px;}
.he1{height:142.275000px;}
.hcb{height:142.312500px;}
.h9{height:147.598901px;}
.h19{height:150.343945px;}
.hf6{height:154.875000px;}
.hf4{height:154.905000px;}
.heb{height:154.920000px;}
.hec{height:155.805000px;}
.h43{height:163.800000px;}
.hc3{height:164.805000px;}
.hcc{height:170.220000px;}
.hd1{height:171.105000px;}
.hd6{height:171.120000px;}
.he5{height:171.150000px;}
.hdc{height:179.205000px;}
.hf1{height:181.020000px;}
.hb7{height:182.805000px;}
.hab{height:184.650000px;}
.ha4{height:185.550000px;}
.hcf{height:199.035000px;}
.h12{height:199.050000px;}
.hdd{height:199.950000px;}
.hf2{height:207.150000px;}
.h85{height:208.050000px;}
.h83{height:208.980000px;}
.h87{height:210.750000px;}
.hd3{height:227.835000px;}
.hcd{height:227.880000px;}
.hf7{height:232.395000px;}
.hea{height:233.250000px;}
.hf9{height:233.295000px;}
.h4b{height:249.495000px;}
.hc8{height:258.480000px;}
.hf8{height:258.495000px;}
.hfa{height:259.380000px;}
.hfb{height:259.395000px;}
.ha2{height:282.825000px;}
.he6{height:284.595000px;}
.hd4{height:285.525000px;}
.h11{height:286.395000px;}
.hbe{height:292.695000px;}
.hf3{height:310.725000px;}
.hdf{height:313.410000px;}
.hd9{height:313.425000px;}
.h8b{height:336.363897px;}
.h21{height:357.357099px;}
.he3{height:370.155000px;}
.hd5{height:370.170000px;}
.ha7{height:387.255000px;}
.hb9{height:423.300000px;}
.he4{height:455.700000px;}
.h54{height:473.890802px;}
.hda{height:476.445000px;}
.hd8{height:512.460000px;}
.hc9{height:569.220000px;}
.hde{height:570.105000px;}
.h57{height:576.589365px;}
.h75{height:610.425000px;}
.hd7{height:769.155000px;}
.h9b{height:892.500000px;}
.h9a{height:892.800000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w10{width:0.940223px;}
.wd{width:39.831220px;}
.wa{width:44.200718px;}
.wb{width:46.142718px;}
.wc{width:46.648447px;}
.w9{width:49.055717px;}
.w5a{width:49.537500px;}
.w8{width:50.026717px;}
.w57{width:50.437500px;}
.we{width:52.454217px;}
.w62{width:54.037500px;}
.w5c{width:54.937500px;}
.w7a{width:63.075000px;}
.w7e{width:67.575000px;}
.w77{width:70.275000px;}
.w5b{width:72.075000px;}
.w58{width:72.975000px;}
.w5f{width:74.775000px;}
.w39{width:75.675000px;}
.w33{width:78.412500px;}
.w34{width:79.275000px;}
.w80{width:80.212500px;}
.w14{width:81.112500px;}
.w3c{width:81.975000px;}
.w79{width:83.775000px;}
.w5d{width:84.675000px;}
.w16{width:85.612500px;}
.w7f{width:87.375000px;}
.w6b{width:89.175000px;}
.w15{width:90.960000px;}
.w1d{width:90.975000px;}
.w1c{width:91.012500px;}
.w19{width:91.875000px;}
.w1e{width:91.912500px;}
.w35{width:92.812500px;}
.w7c{width:93.675000px;}
.w52{width:94.575000px;}
.w21{width:94.612500px;}
.w4e{width:95.475000px;}
.w6f{width:96.412500px;}
.w81{width:100.875000px;}
.w7d{width:100.912500px;}
.w78{width:104.512500px;}
.w6d{width:107.212500px;}
.w36{width:112.612500px;}
.w3d{width:112.650000px;}
.w37{width:113.497500px;}
.w38{width:113.512500px;}
.w22{width:116.212500px;}
.w65{width:117.112500px;}
.w23{width:122.512500px;}
.w3b{width:125.212500px;}
.w71{width:126.150000px;}
.w51{width:127.050000px;}
.w6e{width:127.950000px;}
.w7b{width:134.250000px;}
.w76{width:138.750000px;}
.w18{width:140.512500px;}
.w68{width:147.750000px;}
.w4f{width:148.650000px;}
.w66{width:149.550000px;}
.w54{width:164.850000px;}
.w20{width:169.350000px;}
.w49{width:169.380000px;}
.w47{width:170.280000px;}
.w3e{width:174.750000px;}
.w63{width:180.180000px;}
.w5e{width:181.080000px;}
.w1a{width:181.980000px;}
.w1b{width:182.880000px;}
.w12{width:185.080644px;}
.w3a{width:186.480000px;}
.w61{width:187.395000px;}
.w13{width:188.940368px;}
.w48{width:201.825000px;}
.w11{width:202.073139px;}
.w59{width:202.725000px;}
.w55{width:204.525000px;}
.w2c{width:209.370662px;}
.w2d{width:209.510616px;}
.w2e{width:210.350338px;}
.w2a{width:210.490291px;}
.w2b{width:210.630245px;}
.w2f{width:212.309689px;}
.w30{width:212.449642px;}
.w60{width:212.625000px;}
.w70{width:216.225000px;}
.w6c{width:217.125000px;}
.w69{width:232.470000px;}
.w67{width:233.370000px;}
.w4{width:265.770000px;}
.w32{width:269.370000px;}
.w24{width:270.300000px;}
.w42{width:279.247578px;}
.w43{width:280.200000px;}
.w17{width:285.600000px;}
.w56{width:291.000000px;}
.w53{width:297.300000px;}
.w50{width:298.200000px;}
.w41{width:367.575000px;}
.w3f{width:369.375000px;}
.w29{width:387.888701px;}
.w46{width:392.775000px;}
.w73{width:395.505000px;}
.w28{width:402.217013px;}
.w5{width:404.505000px;}
.w40{width:406.320000px;}
.w1f{width:422.100000px;}
.w74{width:445.095000px;}
.w75{width:446.850000px;}
.w31{width:460.875000px;}
.w72{width:471.195000px;}
.w64{width:474.780000px;}
.w44{width:490.980000px;}
.w6a{width:502.695000px;}
.w45{width:529.725000px;}
.w26{width:563.985000px;}
.wf{width:577.057058px;}
.w6{width:599.400000px;}
.w3{width:600.300000px;}
.w25{width:654.075000px;}
.w7{width:671.739214px;}
.w27{width:719.805000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w4d{width:1162.725000px;}
.w4c{width:1262.699981px;}
.w4a{width:1262.700000px;}
.w4b{width:1263.000000px;}
.x9c{left:-51.209146px;}
.x9a{left:-47.825660px;}
.xe2{left:-21.600000px;}
.x0{left:0.000000px;}
.xb6{left:2.700000px;}
.x2e{left:3.884000px;}
.x9d{left:5.048448px;}
.x29{left:6.796999px;}
.x12{left:8.100000px;}
.x22{left:9.709998px;}
.x4{left:10.995000px;}
.x23{left:13.593997px;}
.x25{left:16.021496px;}
.x6d{left:17.145000px;}
.x2f{left:18.448996px;}
.x27{left:20.390995px;}
.xbf{left:21.600000px;}
.x51{left:23.400000px;}
.x4a{left:25.230000px;}
.x73{left:27.030000px;}
.x4f{left:30.637500px;}
.x4e{left:33.300000px;}
.x6c{left:36.945000px;}
.x50{left:38.730000px;}
.x4d{left:41.430000px;}
.xac{left:42.802492px;}
.xaa{left:43.805493px;}
.x34{left:45.167672px;}
.xb9{left:46.830000px;}
.x75{left:48.630000px;}
.xa7{left:49.823500px;}
.x2d{left:51.483218px;}
.xa4{left:52.826672px;}
.x14{left:54.074987px;}
.x55{left:56.745000px;}
.x9b{left:58.050265px;}
.x52{left:60.345000px;}
.x57{left:63.030000px;}
.x97{left:64.874987px;}
.x36{left:66.537758px;}
.x5a{left:68.430000px;}
.x33{left:69.952440px;}
.x18{left:74.774987px;}
.xa3{left:78.914032px;}
.x60{left:81.074987px;}
.xa9{left:82.887550px;}
.x53{left:84.675000px;}
.x48{left:87.375000px;}
.xa8{left:88.850625px;}
.xa1{left:89.858408px;}
.xb3{left:93.712487px;}
.x11{left:95.512500px;}
.x56{left:97.275000px;}
.x54{left:99.075000px;}
.x59{left:100.875000px;}
.x58{left:103.575000px;}
.x1{left:106.312487px;}
.x61{left:108.112487px;}
.xa{left:109.912487px;}
.xb0{left:114.062220px;}
.xad{left:119.777000px;}
.x7a{left:122.512500px;}
.x7{left:126.149987px;}
.x1e{left:128.849987px;}
.xb1{left:131.416473px;}
.x47{left:136.049987px;}
.x3a{left:138.749987px;}
.x38{left:149.549987px;}
.xb{left:151.349987px;}
.x8b{left:155.849987px;}
.xa6{left:162.970078px;}
.xb8{left:166.695000px;}
.x96{left:168.300000px;}
.x49{left:170.295000px;}
.xb2{left:172.061346px;}
.xb7{left:175.679987px;}
.x1c{left:177.300000px;}
.xab{left:178.780341px;}
.x7c{left:180.195000px;}
.x15{left:185.400000px;}
.x3{left:187.200000px;}
.x1d{left:188.279987px;}
.xd1{left:194.595000px;}
.x16{left:196.394987px;}
.x5{left:198.194987px;}
.x9f{left:202.724987px;}
.x30{left:203.927388px;}
.x31{left:209.833046px;}
.xcd{left:219.825000px;}
.x71{left:224.325000px;}
.x80{left:227.024987px;}
.xe3{left:242.370000px;}
.xe0{left:248.670000px;}
.x21{left:255.916334px;}
.xe{left:263.069987px;}
.x17{left:266.654987px;}
.xaf{left:276.268501px;}
.xba{left:280.200000px;}
.xa2{left:291.163118px;}
.xa5{left:292.282749px;}
.x10{left:293.699987px;}
.x86{left:299.099987px;}
.x19{left:304.499987px;}
.x24{left:306.432595px;}
.xdb{left:310.829987px;}
.xbc{left:316.245000px;}
.x72{left:319.845000px;}
.xf{left:321.644987px;}
.x67{left:328.844987px;}
.xd{left:335.144987px;}
.xe4{left:336.945000px;}
.xae{left:339.970738px;}
.xda{left:341.445000px;}
.x8{left:345.074987px;}
.x4b{left:349.575000px;}
.x64{left:354.074987px;}
.x26{left:355.969766px;}
.xc{left:361.274987px;}
.x81{left:376.574987px;}
.x5e{left:378.374987px;}
.x5d{left:381.119987px;}
.x45{left:391.904987px;}
.x1a{left:396.404987px;}
.x44{left:400.904987px;}
.x5b{left:403.619987px;}
.x28{left:406.486028px;}
.x5c{left:408.119987px;}
.x3e{left:409.904987px;}
.x3c{left:413.519987px;}
.x41{left:419.849987px;}
.x3d{left:423.449987px;}
.x3f{left:427.049987px;}
.x43{left:430.649987px;}
.x42{left:433.349987px;}
.x40{left:436.949987px;}
.xbd{left:441.450000px;}
.x9{left:446.849987px;}
.xca{left:448.650000px;}
.x2a{left:451.168199px;}
.x2c{left:453.189857px;}
.xb4{left:455.895000px;}
.xc2{left:461.279987px;}
.x5f{left:468.494987px;}
.xc3{left:472.095000px;}
.x68{left:473.895000px;}
.x98{left:475.694987px;}
.x3b{left:480.194987px;}
.x9e{left:481.994987px;}
.x2b{left:497.792371px;}
.xc1{left:504.524987px;}
.x77{left:506.324987px;}
.x78{left:509.925000px;}
.xa0{left:511.724987px;}
.xd9{left:514.424987px;}
.xd0{left:518.924987px;}
.xd5{left:520.725000px;}
.xbe{left:523.425000px;}
.xc8{left:527.069987px;}
.x46{left:529.754987px;}
.x8c{left:536.069987px;}
.x87{left:538.754987px;}
.x8e{left:548.654987px;}
.x94{left:551.369987px;}
.xcf{left:554.069987px;}
.xc9{left:556.754987px;}
.xc4{left:558.603753px;}
.x74{left:560.370000px;}
.x6a{left:564.900000px;}
.xdc{left:567.599987px;}
.x8d{left:569.399987px;}
.xe1{left:575.700000px;}
.x93{left:580.199987px;}
.xc6{left:583.799987px;}
.xd3{left:588.299987px;}
.xd4{left:590.999987px;}
.x35{left:592.044079px;}
.xc7{left:594.599987px;}
.x65{left:596.399987px;}
.x88{left:612.629987px;}
.xb5{left:614.445000px;}
.xbb{left:618.945000px;}
.x89{left:621.629987px;}
.x92{left:632.444987px;}
.x4c{left:636.075000px;}
.x91{left:639.674987px;}
.x7e{left:641.474987px;}
.xd6{left:648.675000px;}
.x6e{left:651.374987px;}
.x69{left:655.875000px;}
.x95{left:659.474987px;}
.x6{left:662.174987px;}
.x7d{left:669.374987px;}
.xe5{left:674.820000px;}
.x90{left:684.719987px;}
.x8a{left:692.819987px;}
.xdf{left:698.219987px;}
.x7b{left:705.404987px;}
.x39{left:713.549987px;}
.xce{left:715.350000px;}
.xd2{left:717.149987px;}
.x83{left:718.949987px;}
.x37{left:723.449987px;}
.x66{left:727.949987px;}
.x2{left:734.249987px;}
.xc5{left:736.949987px;}
.xd7{left:745.095000px;}
.x6b{left:747.780000px;}
.x6f{left:750.494987px;}
.x84{left:756.794987px;}
.xc0{left:759.494987px;}
.x85{left:765.779987px;}
.x70{left:768.494987px;}
.x7f{left:771.194987px;}
.x8f{left:772.994987px;}
.xde{left:774.794987px;}
.x1b{left:777.494987px;}
.x82{left:780.194987px;}
.x32{left:781.469946px;}
.x20{left:782.924987px;}
.x63{left:784.724987px;}
.x13{left:787.424987px;}
.x79{left:794.624987px;}
.xd8{left:802.724987px;}
.x76{left:809.924987px;}
.xdd{left:818.069987px;}
.x62{left:823.454987px;}
.x1f{left:836.069987px;}
.x99{left:844.169987px;}
.xcc{left:1083.479981px;}
.xcb{left:1139.324981px;}
@media print{
.v3{vertical-align:-22.400000pt;}
.vf{vertical-align:-20.623777pt;}
.v9{vertical-align:-16.000000pt;}
.v14{vertical-align:-14.847639pt;}
.v11{vertical-align:-12.707505pt;}
.vc{vertical-align:-11.478224pt;}
.v10{vertical-align:-10.071216pt;}
.v7{vertical-align:-6.776548pt;}
.v13{vertical-align:-5.146688pt;}
.v4{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.200000pt;}
.v8{vertical-align:6.346667pt;}
.v12{vertical-align:7.553412pt;}
.va{vertical-align:16.000000pt;}
.v6{vertical-align:16.997842pt;}
.vb{vertical-align:19.200000pt;}
.v2{vertical-align:22.400000pt;}
.ve{vertical-align:24.622643pt;}
.v1{vertical-align:25.600000pt;}
.vd{vertical-align:28.251243pt;}
.ls29{letter-spacing:-4.992000pt;}
.ls71{letter-spacing:-4.288000pt;}
.ls91{letter-spacing:-3.569924pt;}
.lsa4{letter-spacing:-3.066667pt;}
.lsa8{letter-spacing:-2.693333pt;}
.ls9a{letter-spacing:-1.978667pt;}
.ls9c{letter-spacing:-1.520000pt;}
.lsa3{letter-spacing:-1.493333pt;}
.ls92{letter-spacing:-1.479687pt;}
.ls2{letter-spacing:-1.445333pt;}
.lse{letter-spacing:-1.408000pt;}
.ls9e{letter-spacing:-1.349333pt;}
.ls1a{letter-spacing:-1.312000pt;}
.lsaa{letter-spacing:-1.237333pt;}
.ls18{letter-spacing:-1.088000pt;}
.ls1e{letter-spacing:-1.082667pt;}
.ls14{letter-spacing:-1.050667pt;}
.ls40{letter-spacing:-0.976000pt;}
.ls99{letter-spacing:-0.906667pt;}
.ls2d{letter-spacing:-0.874667pt;}
.ls26{letter-spacing:-0.847069pt;}
.ls25{letter-spacing:-0.796244pt;}
.ls23{letter-spacing:-0.730667pt;}
.ls2c{letter-spacing:-0.704000pt;}
.lsa7{letter-spacing:-0.645333pt;}
.ls24{letter-spacing:-0.556242pt;}
.ls90{letter-spacing:-0.544000pt;}
.lsb4{letter-spacing:-0.515200pt;}
.lsa2{letter-spacing:-0.496000pt;}
.ls6b{letter-spacing:-0.466757pt;}
.ls6f{letter-spacing:-0.466679pt;}
.lsa5{letter-spacing:-0.457600pt;}
.ls8b{letter-spacing:-0.403200pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls43{letter-spacing:-0.371200pt;}
.ls6a{letter-spacing:-0.304129pt;}
.ls6e{letter-spacing:-0.304078pt;}
.ls81{letter-spacing:-0.110339pt;}
.ls28{letter-spacing:-0.057318pt;}
.ls83{letter-spacing:-0.047024pt;}
.ls27{letter-spacing:-0.044048pt;}
.ls82{letter-spacing:-0.041470pt;}
.ls3d{letter-spacing:-0.025600pt;}
.ls3c{letter-spacing:-0.019200pt;}
.ls3e{letter-spacing:-0.012800pt;}
.ls57{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.006400pt;}
.ls2f{letter-spacing:0.012800pt;}
.ls32{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.022400pt;}
.ls31{letter-spacing:0.025600pt;}
.ls59{letter-spacing:0.027733pt;}
.ls86{letter-spacing:0.033324pt;}
.ls84{letter-spacing:0.041840pt;}
.ls85{letter-spacing:0.047394pt;}
.ls56{letter-spacing:0.072533pt;}
.lsab{letter-spacing:0.076800pt;}
.ls49{letter-spacing:0.081067pt;}
.lsb0{letter-spacing:0.087467pt;}
.ls74{letter-spacing:0.098639pt;}
.ls35{letter-spacing:0.107733pt;}
.ls9d{letter-spacing:0.115200pt;}
.ls58{letter-spacing:0.120533pt;}
.ls87{letter-spacing:0.122188pt;}
.ls6d{letter-spacing:0.122810pt;}
.ls69{letter-spacing:0.122831pt;}
.ls98{letter-spacing:0.131200pt;}
.lsae{letter-spacing:0.140800pt;}
.lsa9{letter-spacing:0.160000pt;}
.lsad{letter-spacing:0.179200pt;}
.ls96{letter-spacing:0.184533pt;}
.ls6c{letter-spacing:0.195514pt;}
.ls68{letter-spacing:0.195547pt;}
.ls75{letter-spacing:0.199943pt;}
.ls67{letter-spacing:0.209858pt;}
.ls66{letter-spacing:0.209893pt;}
.ls9b{letter-spacing:0.240000pt;}
.lsa1{letter-spacing:0.288000pt;}
.lsa0{letter-spacing:0.502400pt;}
.ls9f{letter-spacing:0.586667pt;}
.ls5e{letter-spacing:0.665600pt;}
.ls21{letter-spacing:0.690502pt;}
.lsb2{letter-spacing:0.720000pt;}
.ls3a{letter-spacing:0.725333pt;}
.ls0{letter-spacing:0.759467pt;}
.ls20{letter-spacing:0.847069pt;}
.ls1d{letter-spacing:0.874667pt;}
.ls73{letter-spacing:0.876800pt;}
.lsb3{letter-spacing:0.930133pt;}
.ls5b{letter-spacing:1.024000pt;}
.ls50{letter-spacing:1.034667pt;}
.ls72{letter-spacing:1.049600pt;}
.ls3{letter-spacing:1.082667pt;}
.lsb5{letter-spacing:1.084800pt;}
.ls11{letter-spacing:1.088000pt;}
.lsa6{letter-spacing:1.130667pt;}
.ls53{letter-spacing:1.138133pt;}
.ls52{letter-spacing:1.141333pt;}
.ls93{letter-spacing:1.142400pt;}
.ls8e{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.194667pt;}
.ls2b{letter-spacing:1.221333pt;}
.ls19{letter-spacing:1.237333pt;}
.ls1c{letter-spacing:1.244800pt;}
.ls97{letter-spacing:1.301333pt;}
.ls39{letter-spacing:1.305600pt;}
.ls5a{letter-spacing:1.306667pt;}
.lsc{letter-spacing:1.344000pt;}
.ls16{letter-spacing:1.354667pt;}
.ls89{letter-spacing:1.395200pt;}
.ls8{letter-spacing:1.408000pt;}
.ls4{letter-spacing:1.418667pt;}
.ls42{letter-spacing:1.461333pt;}
.ls4c{letter-spacing:1.472000pt;}
.ls13{letter-spacing:1.514667pt;}
.ls15{letter-spacing:1.536000pt;}
.ls17{letter-spacing:1.568000pt;}
.ls12{letter-spacing:1.600000pt;}
.ls63{letter-spacing:1.674667pt;}
.ls94{letter-spacing:1.708800pt;}
.ls61{letter-spacing:1.728000pt;}
.ls5d{letter-spacing:1.792000pt;}
.ls95{letter-spacing:1.815467pt;}
.ls65{letter-spacing:1.834667pt;}
.ls62{letter-spacing:1.888000pt;}
.ls3b{letter-spacing:1.962667pt;}
.ls5c{letter-spacing:2.470400pt;}
.ls3f{letter-spacing:2.523733pt;}
.ls55{letter-spacing:2.577067pt;}
.ls48{letter-spacing:2.816000pt;}
.ls36{letter-spacing:3.133867pt;}
.ls34{letter-spacing:3.187200pt;}
.ls60{letter-spacing:3.189333pt;}
.ls64{letter-spacing:3.200000pt;}
.ls37{letter-spacing:3.240533pt;}
.ls44{letter-spacing:3.347200pt;}
.ls47{letter-spacing:4.608000pt;}
.ls4d{letter-spacing:4.661333pt;}
.ls8f{letter-spacing:4.736000pt;}
.ls2a{letter-spacing:4.768000pt;}
.ls30{letter-spacing:6.387200pt;}
.ls38{letter-spacing:6.440533pt;}
.ls46{letter-spacing:6.547200pt;}
.ls51{letter-spacing:7.276800pt;}
.ls88{letter-spacing:7.635200pt;}
.ls1f{letter-spacing:7.808000pt;}
.ls45{letter-spacing:9.533867pt;}
.ls8c{letter-spacing:9.587200pt;}
.ls4b{letter-spacing:9.747200pt;}
.ls8d{letter-spacing:12.787200pt;}
.ls4a{letter-spacing:12.928000pt;}
.ls54{letter-spacing:14.208000pt;}
.ls2e{letter-spacing:16.876800pt;}
.ls41{letter-spacing:19.200000pt;}
.lsb1{letter-spacing:24.339200pt;}
.ls5f{letter-spacing:33.514667pt;}
.lsb{letter-spacing:33.543733pt;}
.ls77{letter-spacing:39.207393pt;}
.ls8a{letter-spacing:49.408000pt;}
.ls70{letter-spacing:55.941333pt;}
.lsac{letter-spacing:60.787200pt;}
.ls7{letter-spacing:73.515733pt;}
.ls22{letter-spacing:76.250287pt;}
.ls10{letter-spacing:116.741333pt;}
.lsf{letter-spacing:126.477067pt;}
.ls9{letter-spacing:140.689067pt;}
.ls7e{letter-spacing:166.637900pt;}
.ls7c{letter-spacing:172.613389pt;}
.ls78{letter-spacing:172.776898pt;}
.ls80{letter-spacing:173.983371pt;}
.ls7f{letter-spacing:174.020397pt;}
.ls7b{letter-spacing:175.455398pt;}
.ls79{letter-spacing:176.603220pt;}
.ls7a{letter-spacing:179.982261pt;}
.lsaf{letter-spacing:198.653867pt;}
.lsd{letter-spacing:225.621333pt;}
.ls76{letter-spacing:270.956742pt;}
.ls7d{letter-spacing:425.838422pt;}
.ls6{letter-spacing:752.139733pt;}
.ls4f{letter-spacing:1831.589333pt;}
.ls4e{letter-spacing:2004.922667pt;}
.wsd{word-spacing:-86.533333pt;}
.ws52{word-spacing:-64.000000pt;}
.ws54{word-spacing:-37.376000pt;}
.ws15{word-spacing:-36.975733pt;}
.ws92{word-spacing:-28.032000pt;}
.ws3{word-spacing:-23.895733pt;}
.ws57{word-spacing:-19.212800pt;}
.wsa{word-spacing:-19.200000pt;}
.ws10{word-spacing:-18.880000pt;}
.ws8{word-spacing:-18.052267pt;}
.ws81{word-spacing:-17.829067pt;}
.ws0{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.716267pt;}
.wsc{word-spacing:-17.408000pt;}
.ws94{word-spacing:-17.353600pt;}
.ws45{word-spacing:-17.088000pt;}
.ws49{word-spacing:-17.085867pt;}
.ws18{word-spacing:-16.723200pt;}
.ws13{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.656000pt;}
.ws6{word-spacing:-16.633600pt;}
.wse{word-spacing:-16.384000pt;}
.ws6f{word-spacing:-16.360533pt;}
.ws86{word-spacing:-16.205867pt;}
.ws4d{word-spacing:-16.038400pt;}
.ws50{word-spacing:-16.032000pt;}
.ws4a{word-spacing:-16.025600pt;}
.ws4e{word-spacing:-16.019200pt;}
.ws4f{word-spacing:-16.012800pt;}
.ws6c{word-spacing:-16.006400pt;}
.ws53{word-spacing:-16.000000pt;}
.ws4b{word-spacing:-15.993600pt;}
.ws4c{word-spacing:-15.987200pt;}
.ws48{word-spacing:-15.848533pt;}
.ws82{word-spacing:-15.160267pt;}
.ws2{word-spacing:-15.123200pt;}
.ws96{word-spacing:-14.608000pt;}
.wsb{word-spacing:-14.494133pt;}
.ws9{word-spacing:-14.464000pt;}
.ws46{word-spacing:-14.248533pt;}
.ws47{word-spacing:-14.040533pt;}
.ws16{word-spacing:-13.811200pt;}
.ws1{word-spacing:-13.677867pt;}
.ws83{word-spacing:-13.640267pt;}
.ws7e{word-spacing:-13.515733pt;}
.ws88{word-spacing:-13.436800pt;}
.ws90{word-spacing:-13.425067pt;}
.ws12{word-spacing:-13.344000pt;}
.wsf{word-spacing:-13.164800pt;}
.ws6e{word-spacing:-13.017600pt;}
.ws56{word-spacing:-12.871467pt;}
.ws14{word-spacing:-12.802133pt;}
.ws87{word-spacing:-12.796800pt;}
.ws6d{word-spacing:-12.614400pt;}
.ws8a{word-spacing:-12.582400pt;}
.ws8c{word-spacing:-12.534400pt;}
.ws58{word-spacing:-12.454266pt;}
.ws5b{word-spacing:-12.452170pt;}
.ws7f{word-spacing:-12.425600pt;}
.ws7d{word-spacing:-12.294400pt;}
.ws59{word-spacing:-12.258719pt;}
.ws5c{word-spacing:-12.256656pt;}
.ws8d{word-spacing:-12.256000pt;}
.ws5a{word-spacing:-11.954590pt;}
.ws5d{word-spacing:-11.952578pt;}
.ws8f{word-spacing:-11.836800pt;}
.ws89{word-spacing:-11.798400pt;}
.ws84{word-spacing:-11.668267pt;}
.ws91{word-spacing:-11.649067pt;}
.ws17{word-spacing:-11.564800pt;}
.ws1a{word-spacing:-10.834133pt;}
.ws8b{word-spacing:-10.801067pt;}
.ws55{word-spacing:-10.675200pt;}
.ws11{word-spacing:-10.514133pt;}
.ws80{word-spacing:-10.315733pt;}
.ws51{word-spacing:-9.872000pt;}
.ws19{word-spacing:-9.785600pt;}
.ws44{word-spacing:-9.758935pt;}
.ws95{word-spacing:-9.414400pt;}
.ws8e{word-spacing:-9.227733pt;}
.ws85{word-spacing:-8.541867pt;}
.ws1b{word-spacing:-8.488333pt;}
.ws1c{word-spacing:-7.692088pt;}
.ws5e{word-spacing:-3.814029pt;}
.ws93{word-spacing:-0.057600pt;}
.ws5{word-spacing:0.000000pt;}
.ws6a{word-spacing:18.272593pt;}
.ws64{word-spacing:25.712704pt;}
.ws31{word-spacing:50.003162pt;}
.ws36{word-spacing:60.196220pt;}
.ws2b{word-spacing:65.278631pt;}
.ws21{word-spacing:93.660369pt;}
.ws63{word-spacing:97.514551pt;}
.ws23{word-spacing:100.408681pt;}
.ws25{word-spacing:109.350125pt;}
.ws2a{word-spacing:112.770941pt;}
.ws1f{word-spacing:113.951613pt;}
.ws7c{word-spacing:114.186396pt;}
.ws35{word-spacing:116.159215pt;}
.ws1d{word-spacing:117.378288pt;}
.ws3f{word-spacing:119.034024pt;}
.ws37{word-spacing:119.044189pt;}
.ws3d{word-spacing:119.547489pt;}
.ws26{word-spacing:122.432463pt;}
.ws2d{word-spacing:122.440369pt;}
.ws32{word-spacing:122.470864pt;}
.ws1e{word-spacing:122.486111pt;}
.ws3e{word-spacing:122.935763pt;}
.ws3c{word-spacing:124.126601pt;}
.ws2e{word-spacing:124.211307pt;}
.ws24{word-spacing:124.629900pt;}
.ws20{word-spacing:125.874385pt;}
.ws3b{word-spacing:127.504710pt;}
.ws3a{word-spacing:127.543110pt;}
.ws28{word-spacing:127.568522pt;}
.ws27{word-spacing:129.209012pt;}
.ws42{word-spacing:129.293719pt;}
.ws41{word-spacing:130.928561pt;}
.ws40{word-spacing:130.956797pt;}
.ws2c{word-spacing:135.985560pt;}
.ws70{word-spacing:147.238363pt;}
.ws22{word-spacing:148.315278pt;}
.ws60{word-spacing:158.503171pt;}
.ws62{word-spacing:158.540197pt;}
.ws5f{word-spacing:158.614250pt;}
.ws39{word-spacing:160.206779pt;}
.ws67{word-spacing:161.812232pt;}
.ws65{word-spacing:161.849258pt;}
.ws66{word-spacing:161.856664pt;}
.ws68{word-spacing:163.730206pt;}
.ws69{word-spacing:163.885718pt;}
.ws43{word-spacing:168.677465pt;}
.ws33{word-spacing:197.477795pt;}
.ws29{word-spacing:199.171932pt;}
.ws38{word-spacing:209.304213pt;}
.ws2f{word-spacing:211.087363pt;}
.ws30{word-spacing:216.113303pt;}
.ws79{word-spacing:250.664526pt;}
.ws61{word-spacing:252.461694pt;}
.ws7b{word-spacing:272.128696pt;}
.ws72{word-spacing:317.734657pt;}
.ws76{word-spacing:363.849709pt;}
.ws34{word-spacing:375.439907pt;}
.ws74{word-spacing:431.139459pt;}
.ws7a{word-spacing:460.161434pt;}
.ws75{word-spacing:495.143279pt;}
.ws77{word-spacing:507.149394pt;}
.ws73{word-spacing:515.009512pt;}
.ws71{word-spacing:601.439209pt;}
.ws78{word-spacing:645.058547pt;}
.ws6b{word-spacing:681.380724pt;}
._28{margin-left:-15.019733pt;}
._27{margin-left:-13.890267pt;}
._d{margin-left:-11.157733pt;}
._47{margin-left:-9.838933pt;}
._26{margin-left:-8.170667pt;}
._8{margin-left:-6.341200pt;}
._7{margin-left:-5.329733pt;}
._9{margin-left:-4.044800pt;}
._2f{margin-left:-3.136000pt;}
._6{margin-left:-2.214400pt;}
._0{margin-left:-1.088000pt;}
._2{width:1.344000pt;}
._4{width:2.645333pt;}
._5{width:3.665067pt;}
._c{width:4.693467pt;}
._e{width:5.786667pt;}
._33{width:6.706933pt;}
._b{width:7.668000pt;}
._a{width:8.820133pt;}
._11{width:9.716133pt;}
._3{width:11.056000pt;}
._10{width:12.179200pt;}
._69{width:13.222400pt;}
._1{width:14.144000pt;}
._f{width:15.670400pt;}
._34{width:16.883200pt;}
._1b{width:17.907200pt;}
._1a{width:18.861867pt;}
._18{width:20.329600pt;}
._19{width:21.334400pt;}
._71{width:22.426667pt;}
._3c{width:23.413333pt;}
._17{width:24.761600pt;}
._79{width:25.926400pt;}
._32{width:26.880000pt;}
._68{width:27.884800pt;}
._3d{width:29.363200pt;}
._31{width:30.259200pt;}
._16{width:31.561600pt;}
._38{width:33.036800pt;}
._15{width:34.400000pt;}
._6a{width:35.430400pt;}
._37{width:36.403200pt;}
._60{width:37.388800pt;}
._6b{width:38.480000pt;}
._62{width:39.468800pt;}
._61{width:40.504533pt;}
._14{width:41.542400pt;}
._39{width:42.506667pt;}
._12{width:43.449600pt;}
._13{width:45.110400pt;}
._1c{width:46.636800pt;}
._7d{width:47.865600pt;}
._3a{width:49.382400pt;}
._21{width:51.202133pt;}
._3b{width:52.424533pt;}
._67{width:53.431467pt;}
._20{width:54.457600pt;}
._66{width:55.526400pt;}
._22{width:56.681600pt;}
._a9{width:57.772800pt;}
._63{width:58.764800pt;}
._6c{width:59.697067pt;}
._a6{width:60.883200pt;}
._43{width:61.824000pt;}
._42{width:63.031467pt;}
._a3{width:63.936000pt;}
._44{width:65.621333pt;}
._46{width:67.259733pt;}
._af{width:68.272000pt;}
._45{width:69.284267pt;}
._6f{width:70.764800pt;}
._94{width:71.929600pt;}
._1e{width:73.728000pt;}
._2b{width:74.754133pt;}
._1d{width:75.846400pt;}
._73{width:76.748800pt;}
._64{width:78.208000pt;}
._80{width:80.006400pt;}
._65{width:81.382400pt;}
._1f{width:82.752000pt;}
._9c{width:84.224000pt;}
._a0{width:86.400000pt;}
._9b{width:87.462400pt;}
._74{width:89.625600pt;}
._88{width:90.596267pt;}
._9f{width:91.494400pt;}
._75{width:92.736000pt;}
._8c{width:93.888000pt;}
._8a{width:94.803200pt;}
._7e{width:96.292267pt;}
._8b{width:97.410133pt;}
._76{width:99.187200pt;}
._77{width:102.470400pt;}
._72{width:105.580800pt;}
._4f{width:107.437727pt;}
._a5{width:108.806400pt;}
._4d{width:110.391860pt;}
._a4{width:112.089600pt;}
._9e{width:113.088000pt;}
._a1{width:115.200000pt;}
._36{width:116.859733pt;}
._a2{width:118.368000pt;}
._41{width:120.181333pt;}
._3e{width:122.304000pt;}
._87{width:123.505067pt;}
._40{width:125.531733pt;}
._4a{width:128.022150pt;}
._3f{width:129.651200pt;}
._6d{width:131.927467pt;}
._5a{width:133.132797pt;}
._25{width:134.172800pt;}
._4b{width:135.719795pt;}
._24{width:136.787200pt;}
._7f{width:137.836800pt;}
._49{width:141.487580pt;}
._89{width:142.412800pt;}
._7b{width:144.000000pt;}
._ae{width:145.651200pt;}
._23{width:146.800000pt;}
._82{width:148.485333pt;}
._7c{width:150.278400pt;}
._81{width:151.685333pt;}
._b1{width:153.827200pt;}
._53{width:154.921743pt;}
._5f{width:157.491128pt;}
._8f{width:158.564940pt;}
._6e{width:159.769672pt;}
._2e{width:161.851733pt;}
._a7{width:163.238400pt;}
._78{width:169.862400pt;}
._2c{width:171.274667pt;}
._b2{width:173.030400pt;}
._95{width:174.438400pt;}
._8e{width:176.273808pt;}
._a8{width:179.366400pt;}
._97{width:183.936000pt;}
._96{width:189.836800pt;}
._aa{width:192.211200pt;}
._ab{width:195.321600pt;}
._ac{width:198.662400pt;}
._93{width:200.478309pt;}
._48{width:202.956713pt;}
._52{width:203.883543pt;}
._5b{width:210.005562pt;}
._5d{width:212.655523pt;}
._b0{width:216.224000pt;}
._ad{width:220.953600pt;}
._54{width:224.504359pt;}
._9d{width:235.057067pt;}
._57{width:244.715032pt;}
._59{width:251.205510pt;}
._5e{width:264.579345pt;}
._50{width:267.867607pt;}
._4e{width:274.713148pt;}
._4c{width:285.555581pt;}
._51{width:287.852976pt;}
._9a{width:300.208000pt;}
._56{width:302.226376pt;}
._58{width:306.674597pt;}
._5c{width:307.660504pt;}
._55{width:313.406233pt;}
._7a{width:317.030400pt;}
._92{width:329.779758pt;}
._91{width:345.339050pt;}
._29{width:351.027200pt;}
._35{width:376.780800pt;}
._30{width:439.974400pt;}
._2a{width:441.062400pt;}
._8d{width:460.172744pt;}
._2d{width:543.146667pt;}
._90{width:557.188850pt;}
._99{width:750.981333pt;}
._98{width:1071.570533pt;}
._83{width:1789.853584pt;}
._84{width:1827.598631pt;}
._86{width:1834.405100pt;}
._85{width:1842.235370pt;}
._70{width:2423.008000pt;}
.fs23{font-size:6.400000pt;}
.fs18{font-size:10.021313pt;}
.fs16{font-size:10.023001pt;}
.fs19{font-size:16.439779pt;}
.fs1c{font-size:20.438645pt;}
.fsf{font-size:22.023782pt;}
.fs1a{font-size:22.215918pt;}
.fs1b{font-size:25.770465pt;}
.fs1d{font-size:29.769330pt;}
.fs1e{font-size:29.858194pt;}
.fs10{font-size:30.565057pt;}
.fs1f{font-size:33.323877pt;}
.fse{font-size:33.953331pt;}
.fsd{font-size:35.200000pt;}
.fs14{font-size:38.400000pt;}
.fs11{font-size:39.035742pt;}
.fs20{font-size:40.493859pt;}
.fsb{font-size:41.600000pt;}
.fs21{font-size:43.187463pt;}
.fs12{font-size:45.812290pt;}
.fsc{font-size:48.000000pt;}
.fs22{font-size:51.268278pt;}
.fs17{font-size:54.232990pt;}
.fs15{font-size:54.242120pt;}
.fs1{font-size:54.400000pt;}
.fs2{font-size:54.533333pt;}
.fs9{font-size:57.600000pt;}
.fs13{font-size:57.733333pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:64.133333pt;}
.fs6{font-size:73.600000pt;}
.fs8{font-size:86.533333pt;}
.fs4{font-size:96.133333pt;}
.fs3{font-size:105.733333pt;}
.fs7{font-size:118.533333pt;}
.fs5{font-size:128.133333pt;}
.y3c8{bottom:-404.635072pt;}
.y3c7{bottom:-264.594586pt;}
.y3c6{bottom:-126.334848pt;}
.y6f{bottom:-10.366667pt;}
.y4e1{bottom:-10.333333pt;}
.y8{bottom:-9.566667pt;}
.y270{bottom:-3.933333pt;}
.y0{bottom:0.000000pt;}
.y25a{bottom:0.013333pt;}
.y4ad{bottom:2.386667pt;}
.y255{bottom:2.400000pt;}
.y25b{bottom:2.413333pt;}
.y104{bottom:2.541208pt;}
.y13d{bottom:2.541213pt;}
.y125{bottom:2.964799pt;}
.y1dc{bottom:3.186667pt;}
.y1c0{bottom:3.200000pt;}
.y1c9{bottom:3.213333pt;}
.y516{bottom:3.240000pt;}
.y4b3{bottom:3.384963pt;}
.y102{bottom:3.388276pt;}
.y137{bottom:3.388294pt;}
.y3ed{bottom:3.508264pt;}
.y3e1{bottom:3.526777pt;}
.y3c5{bottom:3.826416pt;}
.y4ec{bottom:3.986667pt;}
.y4e8{bottom:4.000000pt;}
.y1b8{bottom:4.013333pt;}
.y3e6{bottom:4.017379pt;}
.y456{bottom:4.018860pt;}
.y565{bottom:4.026667pt;}
.y1d5{bottom:4.040000pt;}
.y3fb{bottom:4.109945pt;}
.y41a{bottom:4.128458pt;}
.y40d{bottom:4.174741pt;}
.y107{bottom:4.235344pt;}
.y10c{bottom:4.235370pt;}
.y4c6{bottom:4.736291pt;}
.y4d3{bottom:4.786667pt;}
.y2d{bottom:4.800000pt;}
.y4cf{bottom:4.813333pt;}
.y4d1{bottom:4.840000pt;}
.y2b{bottom:5.600000pt;}
.y2f{bottom:5.613333pt;}
.y47e{bottom:5.640000pt;}
.y1c1{bottom:6.400000pt;}
.y1da{bottom:6.413333pt;}
.y48{bottom:8.800000pt;}
.y2a2{bottom:9.600000pt;}
.y49b{bottom:9.613333pt;}
.y491{bottom:9.626667pt;}
.y496{bottom:9.640000pt;}
.yff{bottom:9.755453pt;}
.y13b{bottom:10.178951pt;}
.y493{bottom:10.386667pt;}
.y1be{bottom:10.400000pt;}
.y48a{bottom:10.413333pt;}
.y44b{bottom:10.417044pt;}
.y1ca{bottom:10.426667pt;}
.y499{bottom:10.440000pt;}
.y423{bottom:10.506278pt;}
.y3da{bottom:10.635871pt;}
.y527{bottom:11.186667pt;}
.y50b{bottom:11.200000pt;}
.y1c7{bottom:11.213333pt;}
.y1d3{bottom:11.226667pt;}
.y3f3{bottom:11.237552pt;}
.y56d{bottom:11.240000pt;}
.y404{bottom:11.283835pt;}
.y279{bottom:11.986667pt;}
.y274{bottom:12.000000pt;}
.y5e3{bottom:12.013333pt;}
.y5ea{bottom:12.026667pt;}
.y56c{bottom:12.040000pt;}
.y129{bottom:12.299868pt;}
.y127{bottom:12.300143pt;}
.y133{bottom:12.302261pt;}
.y139{bottom:12.303672pt;}
.y522{bottom:12.800000pt;}
.y276{bottom:12.826667pt;}
.y4e{bottom:12.840000pt;}
.y26f{bottom:12.906667pt;}
.y131{bottom:13.143682pt;}
.y124{bottom:13.146987pt;}
.y3d{bottom:13.600000pt;}
.y52e{bottom:14.400000pt;}
.y12e{bottom:14.421344pt;}
.y2ab{bottom:14.440000pt;}
.y3bc{bottom:14.777803pt;}
.y47a{bottom:15.240000pt;}
.y106{bottom:15.261353pt;}
.y10b{bottom:15.261379pt;}
.y141{bottom:15.268412pt;}
.y1bc{bottom:16.000000pt;}
.y101{bottom:16.108422pt;}
.y488{bottom:16.800000pt;}
.y12c{bottom:16.955491pt;}
.y51e{bottom:17.586667pt;}
.y1c5{bottom:17.600000pt;}
.y1bf{bottom:17.613333pt;}
.y44c{bottom:17.814945pt;}
.y1c8{bottom:18.400000pt;}
.y1b6{bottom:18.413333pt;}
.y1cb{bottom:18.426667pt;}
.y1d4{bottom:18.440000pt;}
.y424{bottom:18.568805pt;}
.y503{bottom:19.200000pt;}
.y55b{bottom:19.213333pt;}
.y50a{bottom:19.226667pt;}
.y512{bottom:19.240000pt;}
.y405{bottom:19.725884pt;}
.y4f9{bottom:20.000000pt;}
.y545{bottom:20.013333pt;}
.y501{bottom:20.026667pt;}
.y532{bottom:20.040000pt;}
.y4ca{bottom:20.826667pt;}
.y4c5{bottom:20.920366pt;}
.y3f4{bottom:21.105122pt;}
.y432{bottom:21.123636pt;}
.y413{bottom:21.503157pt;}
.y509{bottom:21.586667pt;}
.y508{bottom:21.600000pt;}
.y506{bottom:21.613333pt;}
.y4eb{bottom:22.386667pt;}
.y4d2{bottom:22.400000pt;}
.y48b{bottom:22.413333pt;}
.y4d7{bottom:22.426667pt;}
.y3db{bottom:22.438077pt;}
.y54{bottom:22.440000pt;}
.y3e7{bottom:22.502874pt;}
.y441{bottom:22.900909pt;}
.y1ba{bottom:23.200000pt;}
.y123{bottom:23.329456pt;}
.y135{bottom:23.329681pt;}
.y4cd{bottom:24.026667pt;}
.y4d8{bottom:24.040000pt;}
.y47b{bottom:24.840000pt;}
.y44d{bottom:25.235061pt;}
.y56a{bottom:25.600000pt;}
.y573{bottom:25.640000pt;}
.y2a1{bottom:26.426667pt;}
.y425{bottom:26.631332pt;}
.y526{bottom:27.200000pt;}
.y529{bottom:27.226667pt;}
.y524{bottom:27.240000pt;}
.y2a{bottom:28.000000pt;}
.y34{bottom:28.026667pt;}
.y406{bottom:28.186446pt;}
.y52d{bottom:28.826667pt;}
.y4c7{bottom:28.840000pt;}
.y12b{bottom:29.259161pt;}
.y521{bottom:29.600000pt;}
.y52b{bottom:29.626667pt;}
.y26e{bottom:29.706667pt;}
.y3f5{bottom:30.991206pt;}
.y1bb{bottom:31.200000pt;}
.y2aa{bottom:31.240000pt;}
.y433{bottom:31.740993pt;}
.y414{bottom:31.768763pt;}
.y47{bottom:32.000000pt;}
.y567{bottom:32.026667pt;}
.y4ac{bottom:32.040000pt;}
.y44e{bottom:32.632962pt;}
.y609{bottom:32.786667pt;}
.y1b7{bottom:32.800000pt;}
.y601{bottom:32.813333pt;}
.y1d9{bottom:32.826667pt;}
.y5f5{bottom:32.840000pt;}
.y440{bottom:33.546036pt;}
.y520{bottom:33.600000pt;}
.y48c{bottom:33.613333pt;}
.y603{bottom:33.626667pt;}
.y5ff{bottom:33.640000pt;}
.y122{bottom:33.935461pt;}
.y3dc{bottom:34.212514pt;}
.y3e8{bottom:34.388390pt;}
.y51d{bottom:34.426667pt;}
.y426{bottom:34.703116pt;}
.y4c4{bottom:35.106685pt;}
.y517{bottom:35.240000pt;}
.y442{bottom:35.277027pt;}
.y515{bottom:36.000000pt;}
.y539{bottom:36.013333pt;}
.y502{bottom:36.026667pt;}
.y500{bottom:36.040000pt;}
.y6{bottom:36.066667pt;}
.y4df{bottom:36.100000pt;}
.y407{bottom:36.628495pt;}
.y5b4{bottom:36.800000pt;}
.y514{bottom:36.813333pt;}
.y54e{bottom:36.826667pt;}
.y5a0{bottom:36.840000pt;}
.y5eb{bottom:37.600000pt;}
.y1d0{bottom:37.626667pt;}
.y5b0{bottom:37.640000pt;}
.y447{bottom:38.701981pt;}
.y569{bottom:39.226667pt;}
.y4ea{bottom:39.986667pt;}
.y4f0{bottom:40.000000pt;}
.y4f1{bottom:40.013333pt;}
.y4d6{bottom:40.026667pt;}
.y44f{bottom:40.030863pt;}
.y273{bottom:40.040000pt;}
.y3f6{bottom:40.849520pt;}
.y572{bottom:41.640000pt;}
.y415{bottom:42.034369pt;}
.y434{bottom:42.367607pt;}
.y1c3{bottom:42.426667pt;}
.y427{bottom:42.765642pt;}
.y2a0{bottom:43.226667pt;}
.y3c{bottom:44.040000pt;}
.y121{bottom:44.117930pt;}
.y56b{bottom:44.826667pt;}
.y53{bottom:44.840000pt;}
.y408{bottom:45.070544pt;}
.y3dd{bottom:46.005464pt;}
.y3e9{bottom:46.255393pt;}
.y4c9{bottom:46.426667pt;}
.y26d{bottom:46.493333pt;}
.y4{bottom:47.233333pt;}
.y571{bottom:47.240000pt;}
.y450{bottom:47.428764pt;}
.y443{bottom:47.671658pt;}
.y540{bottom:48.826667pt;}
.y560{bottom:48.833333pt;}
.y4c3{bottom:49.270557pt;}
.y51f{bottom:49.626667pt;}
.y6c{bottom:49.633333pt;}
.y4de{bottom:49.666667pt;}
.y33{bottom:50.426667pt;}
.y3f7{bottom:50.735603pt;}
.y428{bottom:50.846683pt;}
.y29{bottom:51.226667pt;}
.y51a{bottom:52.026667pt;}
.y531{bottom:52.040000pt;}
.y45f{bottom:52.160847pt;}
.y416{bottom:52.290717pt;}
.y54d{bottom:52.826667pt;}
.y511{bottom:52.840000pt;}
.y550{bottom:52.866667pt;}
.y435{bottom:52.984965pt;}
.y409{bottom:53.512593pt;}
.y50f{bottom:53.640000pt;}
.y120{bottom:54.282753pt;}
.y6d{bottom:54.400000pt;}
.y46{bottom:54.440000pt;}
.y451{bottom:54.826664pt;}
.y568{bottom:55.240000pt;}
.y293{bottom:55.280000pt;}
.y5fb{bottom:56.026667pt;}
.y5f4{bottom:56.040000pt;}
.y590{bottom:56.066667pt;}
.y608{bottom:56.826667pt;}
.y605{bottom:56.840000pt;}
.y604{bottom:56.866667pt;}
.y4e7{bottom:57.626667pt;}
.y4d9{bottom:57.653333pt;}
.y4db{bottom:57.680000pt;}
.y3de{bottom:57.779901pt;}
.y45e{bottom:57.936986pt;}
.y3ea{bottom:58.113139pt;}
.y45d{bottom:58.203577pt;}
.y4ef{bottom:58.440000pt;}
.y429{bottom:58.918466pt;}
.y449{bottom:59.890413pt;}
.y29f{bottom:60.040000pt;}
.y444{bottom:60.066289pt;}
.y4c8{bottom:60.066667pt;}
.y3f8{bottom:60.603173pt;}
.y5a6{bottom:61.626667pt;}
.y5e9{bottom:61.640000pt;}
.y40a{bottom:61.954642pt;}
.y452{bottom:62.224565pt;}
.y402{bottom:62.269367pt;}
.y5a3{bottom:62.426667pt;}
.y5a2{bottom:62.440000pt;}
.y5ad{bottom:62.453333pt;}
.y5aa{bottom:62.466667pt;}
.y59f{bottom:62.480000pt;}
.y417{bottom:62.537810pt;}
.y41f{bottom:62.695172pt;}
.y420{bottom:63.093208pt;}
.y570{bottom:63.240000pt;}
.y26c{bottom:63.333333pt;}
.y4c2{bottom:63.434428pt;}
.y436{bottom:63.602322pt;}
.y5{bottom:64.800000pt;}
.y546{bottom:64.840000pt;}
.y55d{bottom:64.866667pt;}
.y11f{bottom:64.888757pt;}
.y55e{bottom:65.640000pt;}
.y53f{bottom:65.653333pt;}
.y553{bottom:65.666667pt;}
.y400{bottom:66.092357pt;}
.y561{bottom:66.400000pt;}
.y42a{bottom:66.980993pt;}
.y6e{bottom:67.233333pt;}
.y272{bottom:67.240000pt;}
.y4e0{bottom:67.300000pt;}
.y551{bottom:68.040000pt;}
.y542{bottom:68.053333pt;}
.y52{bottom:68.080000pt;}
.y510{bottom:68.826667pt;}
.y538{bottom:68.840000pt;}
.y519{bottom:68.866667pt;}
.y45c{bottom:69.000513pt;}
.y3df{bottom:69.582107pt;}
.y5dd{bottom:69.626667pt;}
.y453{bottom:69.644682pt;}
.y50e{bottom:69.666667pt;}
.y3eb{bottom:69.980142pt;}
.y40b{bottom:70.396691pt;}
.y3f9{bottom:70.470744pt;}
.y43f{bottom:71.248301pt;}
.y411{bottom:71.359381pt;}
.y43d{bottom:71.692619pt;}
.y445{bottom:72.442407pt;}
.y418{bottom:72.803415pt;}
.y3ff{bottom:72.840442pt;}
.y421{bottom:73.173680pt;}
.y5da{bottom:73.626667pt;}
.y292{bottom:73.680000pt;}
.y437{bottom:74.219680pt;}
.y4d{bottom:74.466667pt;}
.y3f1{bottom:74.886158pt;}
.y448{bottom:75.025007pt;}
.y42b{bottom:75.043520pt;}
.y11e{bottom:75.073344pt;}
.y3b{bottom:75.240000pt;}
.y41e{bottom:75.580405pt;}
.y430{bottom:75.617431pt;}
.y4ee{bottom:76.040000pt;}
.y4f8{bottom:76.080000pt;}
.y401{bottom:76.154316pt;}
.y29e{bottom:76.866667pt;}
.y45a{bottom:76.953812pt;}
.y454{bottom:77.042583pt;}
.y43c{bottom:77.329909pt;}
.y4c1{bottom:77.620747pt;}
.y7{bottom:77.633333pt;}
.y45{bottom:77.640000pt;}
.y43e{bottom:78.107466pt;}
.y40c{bottom:78.838740pt;}
.y606{bottom:79.226667pt;}
.y5f3{bottom:79.240000pt;}
.y58f{bottom:79.266667pt;}
.y5f7{bottom:79.280000pt;}
.y562{bottom:80.033333pt;}
.y26b{bottom:80.133333pt;}
.y410{bottom:80.245748pt;}
.y3fa{bottom:80.356827pt;}
.y49d{bottom:80.866667pt;}
.y3e0{bottom:81.356544pt;}
.y45b{bottom:81.374779pt;}
.y53e{bottom:81.653333pt;}
.y552{bottom:81.666667pt;}
.y3fe{bottom:81.726809pt;}
.y3ec{bottom:81.837889pt;}
.y419{bottom:83.059764pt;}
.y42c{bottom:83.106047pt;}
.y3f0{bottom:83.772525pt;}
.y455{bottom:84.440483pt;}
.y41d{bottom:84.466772pt;}
.y42f{bottom:84.503799pt;}
.y564{bottom:84.826667pt;}
.y438{bottom:84.837038pt;}
.y537{bottom:84.840000pt;}
.y518{bottom:84.866667pt;}
.y3e4{bottom:84.994400pt;}
.y11d{bottom:85.252285pt;}
.y54c{bottom:85.666667pt;}
.y459{bottom:85.840179pt;}
.y43b{bottom:86.216276pt;}
.y4fd{bottom:86.466667pt;}
.y40e{bottom:87.215992pt;}
.y5ac{bottom:87.253333pt;}
.y530{bottom:87.266667pt;}
.y5a1{bottom:87.280000pt;}
.y5b3{bottom:88.026667pt;}
.y5e8{bottom:88.040000pt;}
.y5b8{bottom:88.053333pt;}
.y5ae{bottom:88.066667pt;}
.y5e2{bottom:88.080000pt;}
.y3fc{bottom:88.706310pt;}
.y3e2{bottom:90.104061pt;}
.y51{bottom:90.466667pt;}
.y3ee{bottom:90.724256pt;}
.y48e{bottom:91.266667pt;}
.y41b{bottom:91.418503pt;}
.y42d{bottom:91.464786pt;}
.y4c0{bottom:91.786414pt;}
.y457{bottom:92.798297pt;}
.y439{bottom:93.195777pt;}
.y446{bottom:93.593812pt;}
.y4f7{bottom:93.666667pt;}
.y5dc{bottom:95.266667pt;}
.y11c{bottom:95.840641pt;}
.y26a{bottom:96.933333pt;}
.y543{bottom:97.666667pt;}
.y53d{bottom:98.466667pt;}
.y44{bottom:100.080000pt;}
.y536{bottom:100.866667pt;}
.y55a{bottom:100.880000pt;}
.y55f{bottom:100.906667pt;}
.y5f2{bottom:101.666667pt;}
.y54f{bottom:101.706667pt;}
.y611{bottom:102.453333pt;}
.y4fc{bottom:102.466667pt;}
.y5fe{bottom:102.480000pt;}
.y58e{bottom:102.493333pt;}
.y52f{bottom:103.266667pt;}
.y5d9{bottom:104.066667pt;}
.y49c{bottom:104.106667pt;}
.y3a{bottom:105.680000pt;}
.y4c{bottom:105.706667pt;}
.y4bf{bottom:105.972733pt;}
.y11b{bottom:106.026641pt;}
.y56f{bottom:107.266667pt;}
.y291{bottom:107.306667pt;}
.y541{bottom:111.293333pt;}
.y4f6{bottom:112.106667pt;}
.y5b7{bottom:112.853333pt;}
.y5a5{bottom:112.866667pt;}
.y5d1{bottom:112.880000pt;}
.y5a9{bottom:112.893333pt;}
.y59e{bottom:112.906667pt;}
.y460{bottom:113.466667pt;}
.y5c0{bottom:113.666667pt;}
.y50{bottom:113.706667pt;}
.y269{bottom:114.560000pt;}
.y11a{bottom:116.205581pt;}
.y559{bottom:117.666667pt;}
.y535{bottom:117.680000pt;}
.yf2{bottom:118.466667pt;}
.y50d{bottom:118.493333pt;}
.y458{bottom:118.779326pt;}
.y44a{bottom:118.890498pt;}
.y4fb{bottom:119.293333pt;}
.y3aa{bottom:120.066667pt;}
.y4be{bottom:120.132115pt;}
.y2a8{bottom:120.866667pt;}
.y21b{bottom:121.666667pt;}
.y267{bottom:122.400000pt;}
.y28a{bottom:122.466667pt;}
.y2df{bottom:123.266667pt;}
.y43{bottom:123.280000pt;}
.y1a7{bottom:124.066667pt;}
.y290{bottom:124.106667pt;}
.y486{bottom:124.866667pt;}
.y60f{bottom:124.893333pt;}
.y58d{bottom:124.906667pt;}
.y225{bottom:125.666667pt;}
.y5f9{bottom:125.680000pt;}
.y618{bottom:125.693333pt;}
.y5fd{bottom:125.706667pt;}
.y309{bottom:126.466667pt;}
.y119{bottom:126.815114pt;}
.y2cc{bottom:127.266667pt;}
.y8b{bottom:128.066667pt;}
.y4b{bottom:128.106667pt;}
.y153{bottom:128.866667pt;}
.y34d{bottom:129.666667pt;}
.y4f5{bottom:129.706667pt;}
.yfd{bottom:130.466667pt;}
.y260{bottom:131.266667pt;}
.y5d8{bottom:131.293333pt;}
.y268{bottom:131.373333pt;}
.y367{bottom:132.066667pt;}
.ya7{bottom:132.900000pt;}
.y534{bottom:133.666667pt;}
.y16a{bottom:133.693333pt;}
.y4bd{bottom:134.300476pt;}
.y251{bottom:134.493333pt;}
.y4fa{bottom:135.293333pt;}
.y50c{bottom:135.306667pt;}
.y3c4{bottom:136.049174pt;}
.y35{bottom:136.093333pt;}
.y4f{bottom:136.106667pt;}
.yed{bottom:136.893333pt;}
.y39{bottom:136.906667pt;}
.y118{bottom:136.979937pt;}
.y1cc{bottom:137.693333pt;}
.y59d{bottom:137.706667pt;}
.y5a8{bottom:138.493333pt;}
.y5b2{bottom:138.506667pt;}
.y2af{bottom:139.293333pt;}
.y4e4{bottom:139.360000pt;}
.y5f8{bottom:140.093333pt;}
.y2bb{bottom:140.106667pt;}
.y371{bottom:140.893333pt;}
.y28f{bottom:140.906667pt;}
.y5de{bottom:141.693333pt;}
.y1b2{bottom:141.706667pt;}
.y303{bottom:142.493333pt;}
.y2e4{bottom:143.293333pt;}
.y17c{bottom:144.093333pt;}
.yd4{bottom:144.893333pt;}
.y340{bottom:145.693333pt;}
.y42{bottom:145.706667pt;}
.yc0{bottom:146.493333pt;}
.y117{bottom:147.158877pt;}
.y21a{bottom:147.306667pt;}
.y5bb{bottom:148.093333pt;}
.y1f2{bottom:148.106667pt;}
.y58c{bottom:148.133333pt;}
.y4bc{bottom:148.486795pt;}
.y2a7{bottom:148.893333pt;}
.y615{bottom:148.906667pt;}
.y289{bottom:149.693333pt;}
.y533{bottom:149.706667pt;}
.y38e{bottom:150.493333pt;}
.y224{bottom:151.293333pt;}
.y197{bottom:152.106667pt;}
.y357{bottom:152.893333pt;}
.y3c3{bottom:153.291728pt;}
.y2fd{bottom:153.706667pt;}
.y2cb{bottom:154.493333pt;}
.y3bb{bottom:154.828354pt;}
.y8a{bottom:155.293333pt;}
.y152{bottom:156.093333pt;}
.y266{bottom:156.893333pt;}
.y5d7{bottom:156.906667pt;}
.yfc{bottom:157.693333pt;}
.y28e{bottom:157.746667pt;}
.y333{bottom:158.493333pt;}
.y116{bottom:159.039014pt;}
.y1ce{bottom:159.293333pt;}
.y25f{bottom:159.306667pt;}
.y4a{bottom:159.333333pt;}
.y582{bottom:160.106667pt;}
.ya6{bottom:160.893333pt;}
.y169{bottom:161.693333pt;}
.y53a{bottom:162.506667pt;}
.y4bb{bottom:162.646177pt;}
.y3a5{bottom:163.293333pt;}
.y5bf{bottom:163.306667pt;}
.y5ce{bottom:163.320000pt;}
.y5a7{bottom:163.333333pt;}
.y59c{bottom:163.346667pt;}
.y5b6{bottom:164.093333pt;}
.yec{bottom:164.106667pt;}
.y5e7{bottom:164.120000pt;}
.y5ba{bottom:164.146667pt;}
.y578{bottom:164.893333pt;}
.y302{bottom:165.706667pt;}
.y4f4{bottom:165.733333pt;}
.y558{bottom:166.506667pt;}
.y324{bottom:167.293333pt;}
.y38{bottom:167.306667pt;}
.y2ba{bottom:168.093333pt;}
.y2e3{bottom:168.893333pt;}
.y41{bottom:168.906667pt;}
.y1b1{bottom:169.693333pt;}
.y115{bottom:170.488557pt;}
.y219{bottom:170.493333pt;}
.y614{bottom:171.293333pt;}
.y479{bottom:171.306667pt;}
.y58b{bottom:171.333333pt;}
.y60b{bottom:171.346667pt;}
.y4da{bottom:172.093333pt;}
.yd3{bottom:172.106667pt;}
.y336{bottom:172.893333pt;}
.y2de{bottom:173.693333pt;}
.ybf{bottom:174.493333pt;}
.y28d{bottom:174.533333pt;}
.y1f1{bottom:175.293333pt;}
.y223{bottom:176.106667pt;}
.y4ba{bottom:176.832496pt;}
.y2f2{bottom:176.893333pt;}
.y288{bottom:177.706667pt;}
.y196{bottom:179.333333pt;}
.y485{bottom:180.133333pt;}
.y2fc{bottom:180.933333pt;}
.y3c2{bottom:181.022274pt;}
.y363{bottom:181.733333pt;}
.y1cd{bottom:182.533333pt;}
.y557{bottom:182.546667pt;}
.y114{bottom:183.215761pt;}
.y89{bottom:183.333333pt;}
.y151{bottom:184.133333pt;}
.y34c{bottom:184.933333pt;}
.yfb{bottom:185.733333pt;}
.y23e{bottom:186.533333pt;}
.ya5{bottom:188.133333pt;}
.y5e6{bottom:188.920000pt;}
.y168{bottom:188.933333pt;}
.y5be{bottom:188.946667pt;}
.y2ae{bottom:189.733333pt;}
.y4a0{bottom:190.533333pt;}
.y4b9{bottom:191.000857pt;}
.y28c{bottom:191.333333pt;}
.y40{bottom:191.346667pt;}
.yeb{bottom:192.133333pt;}
.y218{bottom:192.933333pt;}
.y613{bottom:193.733333pt;}
.y2e2{bottom:194.533333pt;}
.y616{bottom:194.546667pt;}
.y58a{bottom:194.573333pt;}
.y2b9{bottom:195.333333pt;}
.y113{bottom:195.512373pt;}
.y2f5{bottom:196.133333pt;}
.y1b0{bottom:196.933333pt;}
.y330{bottom:197.733333pt;}
.y37{bottom:197.746667pt;}
.y3d2{bottom:198.533333pt;}
.y556{bottom:198.546667pt;}
.y17b{bottom:199.333333pt;}
.yd2{bottom:200.133333pt;}
.y33f{bottom:200.933333pt;}
.ybe{bottom:201.733333pt;}
.y4f3{bottom:201.773333pt;}
.y222{bottom:202.533333pt;}
.y1f0{bottom:203.333333pt;}
.y2a6{bottom:204.133333pt;}
.y287{bottom:204.933333pt;}
.y4b8{bottom:205.187176pt;}
.y248{bottom:206.533333pt;}
.y195{bottom:207.333333pt;}
.y112{bottom:207.816044pt;}
.y29d{bottom:208.133333pt;}
.y28b{bottom:208.173333pt;}
.y3c1{bottom:208.580886pt;}
.y2fb{bottom:208.933333pt;}
.y362{bottom:209.733333pt;}
.y88{bottom:210.533333pt;}
.y150{bottom:211.333333pt;}
.y23d{bottom:212.133333pt;}
.yfa{bottom:212.933333pt;}
.y5ed{bottom:213.720000pt;}
.y19{bottom:213.733333pt;}
.y3f{bottom:213.746667pt;}
.y59b{bottom:213.773333pt;}
.y1c2{bottom:214.533333pt;}
.y5cd{bottom:214.560000pt;}
.y5b9{bottom:214.573333pt;}
.y555{bottom:215.333333pt;}
.ya4{bottom:216.133333pt;}
.y167{bottom:216.933333pt;}
.y589{bottom:216.960000pt;}
.y60e{bottom:216.973333pt;}
.y323{bottom:217.733333pt;}
.y617{bottom:217.773333pt;}
.y111{bottom:218.842052pt;}
.yea{bottom:219.333333pt;}
.y4b7{bottom:219.346558pt;}
.y4f2{bottom:219.373333pt;}
.y311{bottom:220.133333pt;}
.y2dd{bottom:221.733333pt;}
.y3af{bottom:222.533333pt;}
.y2b8{bottom:223.333333pt;}
.y4a8{bottom:224.133333pt;}
.y1af{bottom:224.960000pt;}
.y30e{bottom:225.773333pt;}
.y478{bottom:226.560000pt;}
.yd1{bottom:227.360000pt;}
.y335{bottom:228.160000pt;}
.y36{bottom:228.973333pt;}
.y43a{bottom:229.526326pt;}
.y431{bottom:229.637405pt;}
.ybd{bottom:229.773333pt;}
.y110{bottom:230.277478pt;}
.y1ef{bottom:230.560000pt;}
.y2a5{bottom:231.360000pt;}
.y554{bottom:231.373333pt;}
.y2f1{bottom:232.173333pt;}
.y286{bottom:232.960000pt;}
.y4b6{bottom:233.514919pt;}
.y301{bottom:233.760000pt;}
.y505{bottom:233.773333pt;}
.y4b0{bottom:234.015991pt;}
.y194{bottom:234.560000pt;}
.y39d{bottom:235.373333pt;}
.y2fa{bottom:236.173333pt;}
.y3c0{bottom:236.286870pt;}
.y20e{bottom:236.960000pt;}
.y3e{bottom:236.973333pt;}
.y23c{bottom:237.773333pt;}
.y87{bottom:238.560000pt;}
.y14f{bottom:239.360000pt;}
.y5bd{bottom:239.373333pt;}
.y59a{bottom:239.413333pt;}
.y2ad{bottom:240.160000pt;}
.y49e{bottom:240.173333pt;}
.y4a9{bottom:240.960000pt;}
.yf9{bottom:240.973333pt;}
.y25e{bottom:241.773333pt;}
.y10f{bottom:242.581148pt;}
.ya3{bottom:243.360000pt;}
.y166{bottom:244.173333pt;}
.y1c6{bottom:244.960000pt;}
.y2db{bottom:245.760000pt;}
.y482{bottom:247.360000pt;}
.ye9{bottom:247.373333pt;}
.y4b5{bottom:247.701238pt;}
.y18{bottom:248.173333pt;}
.y5e5{bottom:248.960000pt;}
.y38d{bottom:249.773333pt;}
.y2b7{bottom:250.560000pt;}
.y370{bottom:251.360000pt;}
.y1ae{bottom:252.160000pt;}
.y51c{bottom:252.173333pt;}
.y32f{bottom:252.973333pt;}
.y3a4{bottom:253.773333pt;}
.y10e{bottom:254.454226pt;}
.y17a{bottom:254.560000pt;}
.yd0{bottom:255.360000pt;}
.y33e{bottom:256.173333pt;}
.ybc{bottom:256.960000pt;}
.y221{bottom:257.760000pt;}
.y5d6{bottom:257.773333pt;}
.y1ee{bottom:258.560000pt;}
.y4ab{bottom:259.360000pt;}
.y2a4{bottom:259.373333pt;}
.y285{bottom:260.173333pt;}
.y361{bottom:260.960000pt;}
.y2a9{bottom:261.760000pt;}
.y20d{bottom:261.773333pt;}
.y4b4{bottom:261.860620pt;}
.y193{bottom:262.560000pt;}
.y6b{bottom:263.360000pt;}
.y60d{bottom:263.400000pt;}
.y3bf{bottom:263.845479pt;}
.y2f9{bottom:264.160000pt;}
.y5bc{bottom:264.200000pt;}
.y5e4{bottom:264.960000pt;}
.y5e1{bottom:264.973333pt;}
.y5cc{bottom:264.986667pt;}
.y5d0{bottom:265.000000pt;}
.y599{bottom:265.013333pt;}
.y86{bottom:265.773333pt;}
.y14e{bottom:266.560000pt;}
.y265{bottom:267.360000pt;}
.yf8{bottom:268.173333pt;}
.y25d{bottom:268.960000pt;}
.y308{bottom:269.760000pt;}
.y2e1{bottom:270.560000pt;}
.ya2{bottom:271.400000pt;}
.y165{bottom:272.200000pt;}
.y5b1{bottom:273.000000pt;}
.y2da{bottom:273.800000pt;}
.ye8{bottom:274.600000pt;}
.y577{bottom:275.400000pt;}
.y38c{bottom:277.000000pt;}
.y1c4{bottom:277.800000pt;}
.y2b6{bottom:278.600000pt;}
.y4a7{bottom:279.400000pt;}
.y1ad{bottom:280.200000pt;}
.y2ca{bottom:281.000000pt;}
.y17{bottom:281.800000pt;}
.y54a{bottom:281.813333pt;}
.ycf{bottom:282.600000pt;}
.y334{bottom:283.400000pt;}
.ybb{bottom:285.000000pt;}
.y1ed{bottom:285.800000pt;}
.y2a3{bottom:286.600000pt;}
.y20c{bottom:287.400000pt;}
.y284{bottom:288.200000pt;}
.y23b{bottom:289.000000pt;}
.y4b1{bottom:289.541899pt;}
.y192{bottom:289.800000pt;}
.y598{bottom:289.840000pt;}
.y2ac{bottom:290.600000pt;}
.y6a{bottom:291.400000pt;}
.y3ba{bottom:293.123651pt;}
.y85{bottom:293.800000pt;}
.y14d{bottom:294.600000pt;}
.y380{bottom:295.400000pt;}
.yf7{bottom:296.200000pt;}
.y390{bottom:297.000000pt;}
.y2e0{bottom:297.800000pt;}
.ya1{bottom:298.600000pt;}
.y164{bottom:299.400000pt;}
.y2d9{bottom:301.000000pt;}
.y49f{bottom:301.800000pt;}
.ye7{bottom:302.600000pt;}
.y38b{bottom:305.000000pt;}
.y2b5{bottom:305.800000pt;}
.y2c9{bottom:306.600000pt;}
.y1ac{bottom:307.400000pt;}
.y32e{bottom:308.200000pt;}
.y3d1{bottom:309.000000pt;}
.y5d5{bottom:309.026667pt;}
.y179{bottom:309.800000pt;}
.yce{bottom:310.600000pt;}
.y39c{bottom:311.400000pt;}
.yba{bottom:312.200000pt;}
.y220{bottom:313.000000pt;}
.y1ec{bottom:313.800000pt;}
.y504{bottom:314.600000pt;}
.y549{bottom:314.613333pt;}
.y283{bottom:315.400000pt;}
.y5cb{bottom:315.426667pt;}
.y597{bottom:315.440000pt;}
.y16{bottom:316.200000pt;}
.y25c{bottom:317.000000pt;}
.y191{bottom:317.826667pt;}
.y610{bottom:317.840000pt;}
.y69{bottom:318.640000pt;}
.y322{bottom:319.440000pt;}
.y38f{bottom:320.226667pt;}
.y84{bottom:321.026667pt;}
.y14c{bottom:321.840000pt;}
.y264{bottom:322.626667pt;}
.yf6{bottom:323.426667pt;}
.y586{bottom:324.226667pt;}
.y581{bottom:325.840000pt;}
.ya0{bottom:326.626667pt;}
.y5ec{bottom:326.640000pt;}
.y163{bottom:327.440000pt;}
.y2f8{bottom:328.226667pt;}
.y2d8{bottom:329.026667pt;}
.ye6{bottom:329.826667pt;}
.y548{bottom:330.640000pt;}
.y1bd{bottom:331.426667pt;}
.y2c8{bottom:331.440000pt;}
.y38a{bottom:332.226667pt;}
.y3ae{bottom:333.026667pt;}
.y5d4{bottom:333.826667pt;}
.y2b4{bottom:333.840000pt;}
.y360{bottom:334.626667pt;}
.y1ab{bottom:335.426667pt;}
.y32d{bottom:336.226667pt;}
.y477{bottom:337.040000pt;}
.y41c{bottom:337.051370pt;}
.y412{bottom:337.162449pt;}
.y42e{bottom:337.606768pt;}
.y422{bottom:337.717847pt;}
.ycd{bottom:337.840000pt;}
.y34b{bottom:338.626667pt;}
.y60a{bottom:339.426667pt;}
.yb9{bottom:340.226667pt;}
.y596{bottom:340.266667pt;}
.y1eb{bottom:341.026667pt;}
.y5c6{bottom:341.040000pt;}
.y5ca{bottom:341.053333pt;}
.y247{bottom:341.826667pt;}
.y2f0{bottom:342.640000pt;}
.y282{bottom:343.440000pt;}
.y23a{bottom:344.226667pt;}
.y190{bottom:345.026667pt;}
.y68{bottom:346.626667pt;}
.y231{bottom:347.426667pt;}
.y547{bottom:347.440000pt;}
.y5f6{bottom:348.226667pt;}
.y481{bottom:349.026667pt;}
.y83{bottom:349.040000pt;}
.y14b{bottom:349.840000pt;}
.y15{bottom:350.626667pt;}
.yf5{bottom:351.440000pt;}
.y9f{bottom:353.826667pt;}
.y162{bottom:354.626667pt;}
.y2d7{bottom:356.226667pt;}
.y2c7{bottom:357.026667pt;}
.ye5{bottom:357.840000pt;}
.y5d3{bottom:359.466667pt;}
.y2f4{bottom:360.226667pt;}
.y2b3{bottom:361.026667pt;}
.y1aa{bottom:362.626667pt;}
.y1b9{bottom:363.466667pt;}
.y3d0{bottom:364.266667pt;}
.y178{bottom:365.066667pt;}
.y5c9{bottom:365.853333pt;}
.ycc{bottom:365.866667pt;}
.y5e0{bottom:366.666667pt;}
.yb8{bottom:367.466667pt;}
.y21f{bottom:368.266667pt;}
.y1ea{bottom:369.066667pt;}
.y1a6{bottom:369.866667pt;}
.y281{bottom:370.666667pt;}
.y239{bottom:371.466667pt;}
.y310{bottom:372.266667pt;}
.y18f{bottom:373.066667pt;}
.y67{bottom:373.866667pt;}
.y230{bottom:374.666667pt;}
.yf4{bottom:375.466667pt;}
.y10d{bottom:376.136078pt;}
.y82{bottom:376.266667pt;}
.y128{bottom:376.559666pt;}
.y14a{bottom:377.066667pt;}
.y263{bottom:377.866667pt;}
.y37f{bottom:378.666667pt;}
.y585{bottom:379.466667pt;}
.y580{bottom:381.066667pt;}
.y9e{bottom:381.866667pt;}
.y161{bottom:382.666667pt;}
.y2f3{bottom:383.466667pt;}
.y2d6{bottom:384.266667pt;}
.y14{bottom:385.066667pt;}
.y576{bottom:385.866667pt;}
.y30d{bottom:386.666667pt;}
.y20b{bottom:388.266667pt;}
.y2b2{bottom:389.066667pt;}
.y35f{bottom:389.866667pt;}
.y32{bottom:390.666667pt;}
.yf1{bottom:391.466667pt;}
.y5c8{bottom:391.493333pt;}
.y595{bottom:391.506667pt;}
.y476{bottom:392.266667pt;}
.y3be{bottom:392.833045pt;}
.ycb{bottom:393.066667pt;}
.y321{bottom:394.666667pt;}
.yb7{bottom:395.466667pt;}
.y1e9{bottom:396.266667pt;}
.y30f{bottom:397.066667pt;}
.y2ef{bottom:397.866667pt;}
.y280{bottom:398.666667pt;}
.y238{bottom:399.466667pt;}
.y18e{bottom:400.266667pt;}
.y36f{bottom:401.066667pt;}
.y66{bottom:401.866667pt;}
.y22f{bottom:402.666667pt;}
.y37e{bottom:403.466667pt;}
.y81{bottom:404.266667pt;}
.y149{bottom:405.066667pt;}
.y57e{bottom:405.866667pt;}
.y498{bottom:406.666667pt;}
.y2c6{bottom:407.466667pt;}
.y126{bottom:407.530334pt;}
.y9d{bottom:409.066667pt;}
.y160{bottom:409.893333pt;}
.y5d2{bottom:409.906667pt;}
.y480{bottom:410.693333pt;}
.y2d5{bottom:411.506667pt;}
.ye4{bottom:413.106667pt;}
.yf0{bottom:413.893333pt;}
.y2b1{bottom:416.293333pt;}
.y594{bottom:416.306667pt;}
.y3ad{bottom:417.093333pt;}
.y5c5{bottom:417.106667pt;}
.y1a9{bottom:417.893333pt;}
.y32c{bottom:418.693333pt;}
.y332{bottom:419.506667pt;}
.y177{bottom:420.293333pt;}
.y1b5{bottom:421.093333pt;}
.yca{bottom:421.106667pt;}
.yb6{bottom:422.693333pt;}
.y3b9{bottom:423.299827pt;}
.y21e{bottom:423.506667pt;}
.y1e8{bottom:424.293333pt;}
.y27f{bottom:425.893333pt;}
.y237{bottom:426.706667pt;}
.y262{bottom:427.506667pt;}
.y18d{bottom:428.293333pt;}
.y13{bottom:429.093333pt;}
.y22e{bottom:429.893333pt;}
.y47f{bottom:430.693333pt;}
.y80{bottom:431.506667pt;}
.y148{bottom:432.293333pt;}
.y2c5{bottom:433.106667pt;}
.y57d{bottom:433.893333pt;}
.y584{bottom:434.693333pt;}
.y5db{bottom:435.506667pt;}
.y57f{bottom:436.293333pt;}
.y9c{bottom:437.106667pt;}
.y15f{bottom:437.893333pt;}
.y132{bottom:438.483630pt;}
.y20a{bottom:439.506667pt;}
.ye3{bottom:440.293333pt;}
.y575{bottom:441.093333pt;}
.y57a{bottom:441.893333pt;}
.y5c4{bottom:441.906667pt;}
.y593{bottom:441.933333pt;}
.y5cf{bottom:441.946667pt;}
.y31d{bottom:443.493333pt;}
.y3fd{bottom:444.021016pt;}
.y3f2{bottom:444.132095pt;}
.y2b0{bottom:444.293333pt;}
.y40f{bottom:444.576414pt;}
.y403{bottom:444.687493pt;}
.y331{bottom:445.106667pt;}
.y1a8{bottom:445.893333pt;}
.y36e{bottom:446.693333pt;}
.yc9{bottom:448.306667pt;}
.y37d{bottom:449.893333pt;}
.yb5{bottom:450.693333pt;}
.y47d{bottom:451.493333pt;}
.y1e7{bottom:451.506667pt;}
.y3b0{bottom:452.293333pt;}
.y2ee{bottom:453.093333pt;}
.y1a5{bottom:453.893333pt;}
.y236{bottom:454.693333pt;}
.y18c{bottom:455.533333pt;}
.y484{bottom:456.333333pt;}
.y65{bottom:457.133333pt;}
.y22d{bottom:457.933333pt;}
.y31{bottom:458.733333pt;}
.y7f{bottom:459.533333pt;}
.yef{bottom:460.333333pt;}
.y57c{bottom:461.133333pt;}
.y202{bottom:461.933333pt;}
.y9b{bottom:464.333333pt;}
.y15e{bottom:465.133333pt;}
.y2d4{bottom:466.733333pt;}
.y209{bottom:467.533333pt;}
.y592{bottom:467.573333pt;}
.ye2{bottom:468.333333pt;}
.y320{bottom:469.133333pt;}
.y138{bottom:469.435515pt;}
.y36d{bottom:469.933333pt;}
.y32b{bottom:470.733333pt;}
.y47c{bottom:471.533333pt;}
.y3ac{bottom:472.333333pt;}
.y12{bottom:473.133333pt;}
.y3a3{bottom:473.933333pt;}
.y3cf{bottom:474.733333pt;}
.y176{bottom:475.533333pt;}
.y3bd{bottom:475.990316pt;}
.yc8{bottom:476.333333pt;}
.yb4{bottom:477.933333pt;}
.y244{bottom:478.733333pt;}
.y1a4{bottom:479.533333pt;}
.y1b4{bottom:480.333333pt;}
.yee{bottom:481.133333pt;}
.y30{bottom:481.933333pt;}
.y566{bottom:482.733333pt;}
.y18b{bottom:483.533333pt;}
.y462{bottom:483.816415pt;}
.y64{bottom:484.333333pt;}
.y22c{bottom:485.133333pt;}
.y483{bottom:485.933333pt;}
.y7e{bottom:486.733333pt;}
.y147{bottom:487.533333pt;}
.y473{bottom:488.333333pt;}
.y465{bottom:488.842766pt;}
.y201{bottom:489.133333pt;}
.y3a9{bottom:489.933333pt;}
.y461{bottom:490.481190pt;}
.y4d5{bottom:491.533333pt;}
.y9a{bottom:492.333333pt;}
.y591{bottom:492.373333pt;}
.y15d{bottom:493.133333pt;}
.y5df{bottom:493.146667pt;}
.y31c{bottom:493.933333pt;}
.y208{bottom:494.733333pt;}
.ye1{bottom:495.533333pt;}
.y32a{bottom:496.333333pt;}
.y33d{bottom:497.133333pt;}
.y467{bottom:497.460691pt;}
.y475{bottom:497.933333pt;}
.y259{bottom:498.733333pt;}
.y463{bottom:499.015805pt;}
.y21d{bottom:499.533333pt;}
.y464{bottom:500.237681pt;}
.y35e{bottom:500.333333pt;}
.y130{bottom:500.409988pt;}
.y30c{bottom:501.960000pt;}
.y602{bottom:502.760000pt;}
.y466{bottom:502.885078pt;}
.yc7{bottom:503.560000pt;}
.y2e{bottom:504.360000pt;}
.y1b3{bottom:505.173333pt;}
.yb3{bottom:505.960000pt;}
.y4b2{bottom:506.677967pt;}
.y1e6{bottom:506.773333pt;}
.y2ed{bottom:508.360000pt;}
.y27e{bottom:509.160000pt;}
.y235{bottom:509.973333pt;}
.y18a{bottom:510.760000pt;}
.y63{bottom:512.360000pt;}
.y22b{bottom:513.173333pt;}
.y389{bottom:513.960000pt;}
.y7d{bottom:514.760000pt;}
.y146{bottom:515.560000pt;}
.y51b{bottom:516.360000pt;}
.y200{bottom:517.173333pt;}
.y258{bottom:517.960000pt;}
.y5c3{bottom:517.973333pt;}
.y37c{bottom:518.773333pt;}
.y11{bottom:519.560000pt;}
.y15c{bottom:520.360000pt;}
.y21c{bottom:521.160000pt;}
.y49a{bottom:521.960000pt;}
.y253{bottom:521.973333pt;}
.y207{bottom:522.760000pt;}
.ye0{bottom:523.560000pt;}
.y30b{bottom:524.360000pt;}
.y35d{bottom:525.173333pt;}
.y54b{bottom:525.960000pt;}
.y3cd{bottom:526.760000pt;}
.y2c{bottom:527.560000pt;}
.y4a6{bottom:528.360000pt;}
.y5af{bottom:529.160000pt;}
.y3a2{bottom:529.173333pt;}
.y1a3{bottom:529.960000pt;}
.y175{bottom:530.773333pt;}
.yc6{bottom:531.560000pt;}
.y5c7{bottom:531.573333pt;}
.y12f{bottom:532.633887pt;}
.yb2{bottom:533.160000pt;}
.y243{bottom:533.973333pt;}
.y1e5{bottom:534.760000pt;}
.y27d{bottom:536.360000pt;}
.y257{bottom:537.160000pt;}
.y234{bottom:537.173333pt;}
.y189{bottom:538.760000pt;}
.y62{bottom:539.560000pt;}
.y22a{bottom:540.360000pt;}
.y7c{bottom:541.960000pt;}
.y145{bottom:542.773333pt;}
.y472{bottom:543.560000pt;}
.y5c2{bottom:543.613333pt;}
.y1ff{bottom:544.360000pt;}
.y4d4{bottom:545.160000pt;}
.y252{bottom:546.760000pt;}
.y30a{bottom:547.560000pt;}
.y15b{bottom:548.400000pt;}
.y3ef{bottom:548.546911pt;}
.y3e3{bottom:548.657990pt;}
.y3d9{bottom:548.769070pt;}
.y607{bottom:549.200000pt;}
.y28{bottom:550.000000pt;}
.ydf{bottom:550.800000pt;}
.y33c{bottom:552.400000pt;}
.y36c{bottom:554.000000pt;}
.y3cc{bottom:554.800000pt;}
.y3b8{bottom:555.551848pt;}
.y99{bottom:555.600000pt;}
.y256{bottom:557.200000pt;}
.y246{bottom:558.000000pt;}
.yc5{bottom:558.800000pt;}
.y3d8{bottom:559.600000pt;}
.yb1{bottom:561.200000pt;}
.y1e4{bottom:562.000000pt;}
.y3d7{bottom:562.800000pt;}
.y2dc{bottom:563.600000pt;}
.y27c{bottom:564.400000pt;}
.y233{bottom:565.200000pt;}
.y188{bottom:566.000000pt;}
.y34a{bottom:566.800000pt;}
.y3b1{bottom:567.291479pt;}
.y61{bottom:567.600000pt;}
.y229{bottom:568.400000pt;}
.y12d{bottom:569.107246pt;}
.y388{bottom:569.200000pt;}
.y7b{bottom:570.000000pt;}
.y10{bottom:570.800000pt;}
.yd5{bottom:571.600000pt;}
.y1fe{bottom:572.400000pt;}
.y3b7{bottom:572.797304pt;}
.y15a{bottom:575.600000pt;}
.y254{bottom:576.400000pt;}
.y2d3{bottom:577.200000pt;}
.y206{bottom:578.000000pt;}
.yde{bottom:578.800000pt;}
.y33b{bottom:579.600000pt;}
.y36b{bottom:581.200000pt;}
.y3cb{bottom:582.000000pt;}
.y37b{bottom:582.800000pt;}
.y245{bottom:583.600000pt;}
.y31f{bottom:584.400000pt;}
.y3ce{bottom:585.200000pt;}
.y174{bottom:586.000000pt;}
.yc4{bottom:586.800000pt;}
.yb0{bottom:588.400000pt;}
.y242{bottom:589.200000pt;}
.y1e3{bottom:590.000000pt;}
.y300{bottom:590.800000pt;}
.y98{bottom:591.600000pt;}
.y2c4{bottom:592.400000pt;}
.y48d{bottom:593.200000pt;}
.y250{bottom:594.026667pt;}
.y5c1{bottom:594.040000pt;}
.y349{bottom:594.826667pt;}
.y600{bottom:595.626667pt;}
.y228{bottom:595.640000pt;}
.y4ed{bottom:596.426667pt;}
.y7a{bottom:597.226667pt;}
.y144{bottom:598.026667pt;}
.y471{bottom:598.840000pt;}
.y1a2{bottom:599.626667pt;}
.y583{bottom:600.426667pt;}
.y3b6{bottom:600.532519pt;}
.y60{bottom:602.840000pt;}
.y159{bottom:603.626667pt;}
.y140{bottom:603.872351pt;}
.y4af{bottom:604.440000pt;}
.y205{bottom:605.226667pt;}
.y5a4{bottom:605.240000pt;}
.ydd{bottom:606.026667pt;}
.y1fd{bottom:607.640000pt;}
.y53b{bottom:608.426667pt;}
.y36a{bottom:609.226667pt;}
.y3ca{bottom:610.026667pt;}
.y37a{bottom:610.840000pt;}
.y474{bottom:611.626667pt;}
.y3a1{bottom:612.426667pt;}
.yc3{bottom:614.026667pt;}
.y97{bottom:614.840000pt;}
.y497{bottom:616.426667pt;}
.yaf{bottom:616.440000pt;}
.y1e2{bottom:617.226667pt;}
.y4ae{bottom:618.026667pt;}
.y2ec{bottom:618.826667pt;}
.yf{bottom:619.640000pt;}
.y31b{bottom:620.426667pt;}
.y3e5{bottom:620.748645pt;}
.y24f{bottom:621.226667pt;}
.y2fe{bottom:622.026667pt;}
.y329{bottom:622.840000pt;}
.y27{bottom:623.626667pt;}
.y55c{bottom:623.640000pt;}
.y387{bottom:624.426667pt;}
.y79{bottom:625.226667pt;}
.y143{bottom:626.026667pt;}
.y1a1{bottom:626.840000pt;}
.y3b5{bottom:628.095770pt;}
.y307{bottom:628.440000pt;}
.y5f{bottom:630.826667pt;}
.y487{bottom:631.640000pt;}
.y2d2{bottom:632.426667pt;}
.y204{bottom:633.226667pt;}
.ydc{bottom:634.026667pt;}
.y1fc{bottom:634.840000pt;}
.y2ff{bottom:635.626667pt;}
.y369{bottom:636.426667pt;}
.y187{bottom:637.226667pt;}
.y379{bottom:638.026667pt;}
.y4a5{bottom:638.840000pt;}
.y232{bottom:639.626667pt;}
.yfe{bottom:640.352720pt;}
.y10a{bottom:640.352748pt;}
.y109{bottom:640.352751pt;}
.y108{bottom:640.352753pt;}
.y105{bottom:640.352756pt;}
.y103{bottom:640.352759pt;}
.y100{bottom:640.352761pt;}
.y12a{bottom:640.352767pt;}
.y134{bottom:640.352770pt;}
.y3ab{bottom:640.466667pt;}
.y173{bottom:641.266667pt;}
.yc2{bottom:642.066667pt;}
.yae{bottom:643.666667pt;}
.y241{bottom:644.466667pt;}
.y4e3{bottom:644.666667pt;}
.y1e1{bottom:645.266667pt;}
.y31a{bottom:646.066667pt;}
.y26{bottom:646.866667pt;}
.y2c3{bottom:647.666667pt;}
.y328{bottom:648.466667pt;}
.y24e{bottom:649.266667pt;}
.y29c{bottom:650.066667pt;}
.y227{bottom:650.866667pt;}
.y306{bottom:651.666667pt;}
.ye{bottom:652.466667pt;}
.y142{bottom:653.266667pt;}
.y470{bottom:654.066667pt;}
.y1a0{bottom:654.866667pt;}
.y3b4{bottom:655.806419pt;}
.y27b{bottom:656.466667pt;}
.y203{bottom:657.266667pt;}
.y96{bottom:658.866667pt;}
.y579{bottom:659.666667pt;}
.y186{bottom:660.466667pt;}
.ydb{bottom:661.266667pt;}
.y495{bottom:662.066667pt;}
.y33a{bottom:662.866667pt;}
.y1fb{bottom:664.466667pt;}
.y3c9{bottom:665.266667pt;}
.y378{bottom:666.066667pt;}
.y13a{bottom:666.223605pt;}
.y13f{bottom:666.223621pt;}
.y13e{bottom:666.223631pt;}
.y13c{bottom:666.223641pt;}
.y3a0{bottom:667.666667pt;}
.y52c{bottom:668.466667pt;}
.y25{bottom:669.266667pt;}
.y351{bottom:670.066667pt;}
.y240{bottom:670.866667pt;}
.yad{bottom:671.666667pt;}
.y4e2{bottom:671.866667pt;}
.y1e0{bottom:672.466667pt;}
.y305{bottom:673.266667pt;}
.y2eb{bottom:674.066667pt;}
.y2c2{bottom:674.866667pt;}
.y35c{bottom:675.666667pt;}
.y24d{bottom:676.466667pt;}
.y16e{bottom:678.066667pt;}
.y226{bottom:678.866667pt;}
.y136{bottom:678.943767pt;}
.y386{bottom:679.666667pt;}
.y78{bottom:680.466667pt;}
.y27a{bottom:681.266667pt;}
.y19f{bottom:682.066667pt;}
.y3b3{bottom:683.369667pt;}
.y185{bottom:683.666667pt;}
.yd{bottom:684.466667pt;}
.y494{bottom:685.266667pt;}
.y158{bottom:686.093333pt;}
.y574{bottom:686.893333pt;}
.y4e9{bottom:686.906667pt;}
.y2d1{bottom:687.706667pt;}
.yda{bottom:689.293333pt;}
.y339{bottom:690.093333pt;}
.y4dd{bottom:690.293333pt;}
.y1dd{bottom:690.893333pt;}
.y24{bottom:692.506667pt;}
.y377{bottom:693.293333pt;}
.y4a4{bottom:694.106667pt;}
.y350{bottom:694.893333pt;}
.y3a8{bottom:695.693333pt;}
.y172{bottom:696.506667pt;}
.yc1{bottom:697.293333pt;}
.y348{bottom:698.093333pt;}
.yac{bottom:698.893333pt;}
.y31e{bottom:699.706667pt;}
.y16d{bottom:701.293333pt;}
.y2ea{bottom:702.093333pt;}
.y2c1{bottom:702.893333pt;}
.y24c{bottom:703.706667pt;}
.yf3{bottom:704.506667pt;}
.y29b{bottom:705.293333pt;}
.y184{bottom:706.106667pt;}
.y77{bottom:707.693333pt;}
.y492{bottom:708.506667pt;}
.y46f{bottom:709.293333pt;}
.y19e{bottom:710.093333pt;}
.y278{bottom:710.106667pt;}
.y5fc{bottom:710.893333pt;}
.y52a{bottom:710.906667pt;}
.y5f1{bottom:711.706667pt;}
.y1df{bottom:712.506667pt;}
.y23{bottom:714.893333pt;}
.y2d0{bottom:715.706667pt;}
.yd9{bottom:716.506667pt;}
.y338{bottom:718.106667pt;}
.y23f{bottom:718.893333pt;}
.y57b{bottom:718.906667pt;}
.y5e{bottom:720.506667pt;}
.y347{bottom:721.293333pt;}
.y171{bottom:722.093333pt;}
.y2c0{bottom:722.893333pt;}
.y4dc{bottom:723.133333pt;}
.y544{bottom:723.693333pt;}
.y16c{bottom:723.706667pt;}
.y95{bottom:724.506667pt;}
.y396{bottom:726.093333pt;}
.yab{bottom:726.893333pt;}
.yc{bottom:728.506667pt;}
.y183{bottom:729.293333pt;}
.y344{bottom:730.106667pt;}
.y24b{bottom:731.693333pt;}
.y490{bottom:731.706667pt;}
.y157{bottom:732.533333pt;}
.y29a{bottom:733.333333pt;}
.y217{bottom:734.133333pt;}
.y1de{bottom:734.933333pt;}
.y76{bottom:735.733333pt;}
.y46e{bottom:736.533333pt;}
.y22{bottom:737.333333pt;}
.y277{bottom:738.133333pt;}
.y356{bottom:741.333333pt;}
.y507{bottom:742.133333pt;}
.y2bf{bottom:742.933333pt;}
.yd8{bottom:744.533333pt;}
.y16b{bottom:745.333333pt;}
.y34f{bottom:746.133333pt;}
.y319{bottom:746.933333pt;}
.y1fa{bottom:747.733333pt;}
.y5f0{bottom:748.533333pt;}
.y327{bottom:749.333333pt;}
.y5d{bottom:750.133333pt;}
.y3a7{bottom:750.933333pt;}
.y94{bottom:752.533333pt;}
.y528{bottom:753.333333pt;}
.yaa{bottom:754.133333pt;}
.y48f{bottom:755.733333pt;}
.y2e9{bottom:757.333333pt;}
.y1d8{bottom:758.133333pt;}
.y56{bottom:758.933333pt;}
.y39b{bottom:759.733333pt;}
.y156{bottom:760.533333pt;}
.y216{bottom:761.333333pt;}
.y2be{bottom:762.133333pt;}
.y75{bottom:762.933333pt;}
.y5ef{bottom:763.733333pt;}
.y376{bottom:764.533333pt;}
.y19d{bottom:765.333333pt;}
.y275{bottom:766.133333pt;}
.y346{bottom:766.933333pt;}
.y21{bottom:767.733333pt;}
.y170{bottom:768.533333pt;}
.y337{bottom:769.333333pt;}
.y2cf{bottom:770.933333pt;}
.yd7{bottom:771.733333pt;}
.y318{bottom:772.533333pt;}
.y395{bottom:773.333333pt;}
.yb{bottom:774.933333pt;}
.y182{bottom:775.733333pt;}
.y1f9{bottom:776.533333pt;}
.y4d0{bottom:777.333333pt;}
.y39f{bottom:778.173333pt;}
.y35b{bottom:778.960000pt;}
.y5c{bottom:779.760000pt;}
.y1db{bottom:779.773333pt;}
.ya9{bottom:782.173333pt;}
.y24a{bottom:783.760000pt;}
.y2e8{bottom:784.560000pt;}
.y5b5{bottom:784.573333pt;}
.y343{bottom:785.373333pt;}
.y385{bottom:787.773333pt;}
.y155{bottom:788.560000pt;}
.y16f{bottom:789.373333pt;}
.y20{bottom:790.173333pt;}
.y74{bottom:790.960000pt;}
.y46d{bottom:791.760000pt;}
.y19c{bottom:792.560000pt;}
.y55{bottom:793.360000pt;}
.y2ce{bottom:794.173333pt;}
.y271{bottom:794.960000pt;}
.y4e6{bottom:795.773333pt;}
.y299{bottom:796.560000pt;}
.y317{bottom:797.373333pt;}
.y181{bottom:798.173333pt;}
.yd6{bottom:799.773333pt;}
.y2bd{bottom:800.560000pt;}
.y56e{bottom:802.160000pt;}
.y1f8{bottom:803.760000pt;}
.y4a3{bottom:804.560000pt;}
.y368{bottom:805.360000pt;}
.y35a{bottom:806.173333pt;}
.y93{bottom:807.760000pt;}
.y5ee{bottom:808.560000pt;}
.y249{bottom:809.373333pt;}
.y5ab{bottom:810.173333pt;}
.y261{bottom:810.960000pt;}
.y49{bottom:811.760000pt;}
.y3b2{bottom:812.366667pt;}
.y1f{bottom:812.560000pt;}
.y4ce{bottom:813.360000pt;}
.y342{bottom:813.373333pt;}
.y154{bottom:815.760000pt;}
.y215{bottom:816.560000pt;}
.y5b{bottom:817.360000pt;}
.y73{bottom:818.173333pt;}
.y394{bottom:818.960000pt;}
.y46c{bottom:819.760000pt;}
.y19b{bottom:820.560000pt;}
.y180{bottom:821.373333pt;}
.y2bc{bottom:822.960000pt;}
.ya{bottom:823.773333pt;}
.y326{bottom:825.400000pt;}
.y3d6{bottom:827.000000pt;}
.y563{bottom:827.800000pt;}
.y39a{bottom:828.600000pt;}
.y4a2{bottom:831.800000pt;}
.y1f7{bottom:833.400000pt;}
.y359{bottom:834.200000pt;}
.y92{bottom:835.000000pt;}
.y1e{bottom:835.800000pt;}
.y341{bottom:837.400000pt;}
.y384{bottom:838.200000pt;}
.y46b{bottom:839.000000pt;}
.y2cd{bottom:839.800000pt;}
.y34e{bottom:842.200000pt;}
.y366{bottom:843.000000pt;}
.y17f{bottom:844.600000pt;}
.y5a{bottom:846.200000pt;}
.y19a{bottom:847.800000pt;}
.y316{bottom:848.600000pt;}
.y4cc{bottom:849.400000pt;}
.y5fa{bottom:850.200000pt;}
.y298{bottom:851.000000pt;}
.y355{bottom:851.800000pt;}
.y3d5{bottom:855.000000pt;}
.y9{bottom:858.200000pt;}
.y46a{bottom:859.000000pt;}
.y39e{bottom:859.800000pt;}
.y1f6{bottom:860.600000pt;}
.y3a6{bottom:861.400000pt;}
.ya8{bottom:862.200000pt;}
.y91{bottom:863.000000pt;}
.y489{bottom:864.600000pt;}
.y1d7{bottom:865.400000pt;}
.y17e{bottom:867.800000pt;}
.y525{bottom:868.600000pt;}
.y365{bottom:870.200000pt;}
.y214{bottom:871.840000pt;}
.y612{bottom:872.626667pt;}
.y72{bottom:873.426667pt;}
.y399{bottom:874.226667pt;}
.y59{bottom:875.026667pt;}
.y325{bottom:875.840000pt;}
.y375{bottom:877.426667pt;}
.y469{bottom:879.040000pt;}
.y297{bottom:880.626667pt;}
.y1d{bottom:881.440000pt;}
.y3d4{bottom:882.226667pt;}
.y354{bottom:883.040000pt;}
.y4e5{bottom:886.226667pt;}
.y383{bottom:888.626667pt;}
.y1f5{bottom:889.426667pt;}
.y90{bottom:890.226667pt;}
.y17d{bottom:891.840000pt;}
.y2e7{bottom:895.040000pt;}
.y199{bottom:896.626667pt;}
.y398{bottom:897.426667pt;}
.y1d6{bottom:898.226667pt;}
.y315{bottom:899.026667pt;}
.y213{bottom:899.840000pt;}
.y71{bottom:901.426667pt;}
.y1c{bottom:903.840000pt;}
.y374{bottom:904.626667pt;}
.y53c{bottom:904.640000pt;}
.y4cb{bottom:906.226667pt;}
.y296{bottom:907.040000pt;}
.y364{bottom:908.626667pt;}
.y3d3{bottom:909.426667pt;}
.y393{bottom:911.026667pt;}
.y382{bottom:914.226667pt;}
.y588{bottom:915.840000pt;}
.y1f4{bottom:916.666667pt;}
.y58{bottom:917.466667pt;}
.y8f{bottom:918.266667pt;}
.y60c{bottom:919.066667pt;}
.y397{bottom:920.666667pt;}
.y353{bottom:922.266667pt;}
.y2e6{bottom:923.066667pt;}
.y314{bottom:924.666667pt;}
.y212{bottom:926.266667pt;}
.y1b{bottom:927.066667pt;}
.y70{bottom:928.666667pt;}
.y198{bottom:929.466667pt;}
.y1cf{bottom:930.266667pt;}
.y373{bottom:932.666667pt;}
.y4ff{bottom:933.466667pt;}
.y392{bottom:934.266667pt;}
.y295{bottom:936.666667pt;}
.y358{bottom:937.466667pt;}
.y381{bottom:939.066667pt;}
.y523{bottom:942.266667pt;}
.y1f3{bottom:943.866667pt;}
.y8e{bottom:945.466667pt;}
.y352{bottom:947.066667pt;}
.y313{bottom:949.466667pt;}
.y2e5{bottom:950.266667pt;}
.y211{bottom:951.866667pt;}
.y4aa{bottom:955.066667pt;}
.y391{bottom:957.466667pt;}
.y372{bottom:959.866667pt;}
.y1d2{bottom:960.666667pt;}
.y294{bottom:963.893333pt;}
.y1a{bottom:965.506667pt;}
.y513{bottom:966.293333pt;}
.y587{bottom:967.893333pt;}
.y57{bottom:970.293333pt;}
.y4a1{bottom:972.693333pt;}
.y8d{bottom:973.506667pt;}
.y312{bottom:975.106667pt;}
.y468{bottom:975.893333pt;}
.y210{bottom:977.506667pt;}
.y2f7{bottom:978.293333pt;}
.y304{bottom:980.693333pt;}
.y345{bottom:982.293333pt;}
.y4fe{bottom:983.106667pt;}
.y3{bottom:991.106667pt;}
.y1d1{bottom:993.493333pt;}
.y8c{bottom:1000.706667pt;}
.y20f{bottom:1002.293333pt;}
.y2f6{bottom:1003.106667pt;}
.y2{bottom:1024.733333pt;}
.y1{bottom:1051.933333pt;}
.h59{height:10.261081pt;}
.h56{height:10.262809pt;}
.h2e{height:12.300151pt;}
.h2d{height:12.300152pt;}
.h8d{height:12.839516pt;}
.h2a{height:14.841378pt;}
.h5e{height:16.351480pt;}
.h42{height:19.200000pt;}
.h41{height:19.233333pt;}
.h63{height:19.438928pt;}
.h3a{height:20.000000pt;}
.h36{height:20.033333pt;}
.h62{height:20.328867pt;}
.h6f{height:21.316868pt;}
.h8a{height:21.586667pt;}
.h9d{height:21.600000pt;}
.hc6{height:21.633333pt;}
.h86{height:22.400000pt;}
.he{height:22.433333pt;}
.h5f{height:23.170508pt;}
.hf{height:23.200000pt;}
.h84{height:23.233333pt;}
.h1d{height:25.447353pt;}
.h1b{height:25.447403pt;}
.h80{height:25.600000pt;}
.h60{height:26.877790pt;}
.h47{height:27.200000pt;}
.h48{height:27.233333pt;}
.h2c{height:27.565038pt;}
.h46{height:28.033333pt;}
.h3f{height:28.786667pt;}
.h35{height:28.800000pt;}
.h3d{height:28.833333pt;}
.h3c{height:29.600000pt;}
.h68{height:29.609436pt;}
.h38{height:29.633333pt;}
.h72{height:29.697823pt;}
.h23{height:30.529764pt;}
.h24{height:30.547411pt;}
.h22{height:30.803846pt;}
.h29{height:31.800367pt;}
.ha9{height:32.033333pt;}
.h5c{height:32.795312pt;}
.haa{height:32.800000pt;}
.ha5{height:32.820000pt;}
.ha3{height:32.833333pt;}
.h76{height:33.144892pt;}
.h1c{height:34.218591pt;}
.h27{height:34.341573pt;}
.h95{height:35.200000pt;}
.h92{height:35.233333pt;}
.ha8{height:36.033333pt;}
.h28{height:36.053357pt;}
.h81{height:36.833333pt;}
.h88{height:37.633333pt;}
.h7b{height:38.433333pt;}
.h1f{height:39.137214pt;}
.h1e{height:39.193685pt;}
.h26{height:39.340709pt;}
.hb4{height:40.033333pt;}
.h4a{height:40.577500pt;}
.h77{height:40.698304pt;}
.h49{height:40.737500pt;}
.h4e{height:41.376562pt;}
.hb0{height:41.633333pt;}
.h8c{height:42.233829pt;}
.hb5{height:42.420000pt;}
.hb3{height:42.433333pt;}
.h1a{height:43.387500pt;}
.hdb{height:43.762500pt;}
.h30{height:44.033333pt;}
.h51{height:44.350000pt;}
.h4d{height:44.833333pt;}
.h8e{height:45.043175pt;}
.hf0{height:45.633333pt;}
.h2b{height:46.170199pt;}
.h82{height:46.433333pt;}
.h33{height:47.742188pt;}
.h90{height:48.033333pt;}
.h5b{height:48.795312pt;}
.ha6{height:48.833333pt;}
.hae{height:48.866667pt;}
.h5{height:48.914909pt;}
.h31{height:49.148438pt;}
.had{height:49.633333pt;}
.h52{height:50.062500pt;}
.hce{height:50.433333pt;}
.h89{height:51.233333pt;}
.hc4{height:51.266667pt;}
.h79{height:51.665625pt;}
.h78{height:52.639938pt;}
.h97{height:52.833333pt;}
.h96{height:52.866667pt;}
.h25{height:53.435910pt;}
.h8f{height:53.471211pt;}
.ha0{height:53.620000pt;}
.h9f{height:53.633333pt;}
.h94{height:54.107812pt;}
.h34{height:55.233333pt;}
.h7e{height:55.266667pt;}
.h6e{height:55.305849pt;}
.h58{height:55.530557pt;}
.h55{height:55.539906pt;}
.h93{height:55.701562pt;}
.h20{height:56.298844pt;}
.h3{height:56.737500pt;}
.h15{height:56.876562pt;}
.h7d{height:57.290625pt;}
.h17{height:57.406250pt;}
.h4{height:57.600000pt;}
.h6d{height:57.860679pt;}
.h7c{height:58.978125pt;}
.h5a{height:59.714063pt;}
.h2f{height:60.075000pt;}
.h44{height:60.214063pt;}
.h50{height:62.396667pt;}
.hb2{height:62.433333pt;}
.h4f{height:62.450000pt;}
.h53{height:62.503333pt;}
.h7a{height:62.812500pt;}
.hb1{height:63.233333pt;}
.h18{height:63.656250pt;}
.h40{height:64.033333pt;}
.hb6{height:64.833333pt;}
.hbf{height:64.853333pt;}
.hc0{height:65.633333pt;}
.hbd{height:65.666667pt;}
.h2{height:66.750000pt;}
.h9c{height:66.889063pt;}
.h10{height:68.066667pt;}
.hd{height:68.833333pt;}
.he9{height:68.866667pt;}
.hee{height:69.633333pt;}
.hef{height:69.666667pt;}
.h98{height:70.466667pt;}
.h9e{height:71.233333pt;}
.ha{height:73.204688pt;}
.h39{height:73.633333pt;}
.h3e{height:73.666667pt;}
.hd2{height:75.266667pt;}
.h13{height:75.360938pt;}
.he7{height:76.033333pt;}
.he0{height:76.053333pt;}
.he2{height:76.066667pt;}
.h7f{height:76.762500pt;}
.h91{height:79.266667pt;}
.hbc{height:80.833333pt;}
.hac{height:81.666667pt;}
.hc7{height:82.392578pt;}
.h45{height:82.466667pt;}
.h3b{height:83.266667pt;}
.h99{height:87.266667pt;}
.h14{height:88.603711pt;}
.ha1{height:89.666667pt;}
.h16{height:90.251562pt;}
.h4c{height:90.466667pt;}
.h37{height:92.066667pt;}
.h69{height:96.861403pt;}
.h7{height:96.884375pt;}
.h6a{height:96.972483pt;}
.haf{height:97.666667pt;}
.h66{height:98.305438pt;}
.h67{height:98.416518pt;}
.h8{height:98.433398pt;}
.hba{height:98.466667pt;}
.hc{height:98.804687pt;}
.h5d{height:99.749473pt;}
.h61{height:99.860552pt;}
.h64{height:100.304871pt;}
.h65{height:100.415950pt;}
.hca{height:100.866667pt;}
.h6b{height:101.082428pt;}
.h6c{height:101.193507pt;}
.hd0{height:101.666667pt;}
.h73{height:102.415383pt;}
.h74{height:102.526462pt;}
.h70{height:102.859701pt;}
.h71{height:102.970781pt;}
.h6{height:108.263086pt;}
.h32{height:108.900000pt;}
.hb8{height:111.286667pt;}
.hc1{height:113.666667pt;}
.hc2{height:113.700000pt;}
.he8{height:114.466667pt;}
.hbb{height:114.500000pt;}
.hf5{height:115.266667pt;}
.hed{height:115.300000pt;}
.hc5{height:120.100000pt;}
.hb{height:121.369336pt;}
.he1{height:126.466667pt;}
.hcb{height:126.500000pt;}
.h9{height:131.199023pt;}
.h19{height:133.639062pt;}
.hf6{height:137.666667pt;}
.hf4{height:137.693333pt;}
.heb{height:137.706667pt;}
.hec{height:138.493333pt;}
.h43{height:145.600000pt;}
.hc3{height:146.493333pt;}
.hcc{height:151.306667pt;}
.hd1{height:152.093333pt;}
.hd6{height:152.106667pt;}
.he5{height:152.133333pt;}
.hdc{height:159.293333pt;}
.hf1{height:160.906667pt;}
.hb7{height:162.493333pt;}
.hab{height:164.133333pt;}
.ha4{height:164.933333pt;}
.hcf{height:176.920000pt;}
.h12{height:176.933333pt;}
.hdd{height:177.733333pt;}
.hf2{height:184.133333pt;}
.h85{height:184.933333pt;}
.h83{height:185.760000pt;}
.h87{height:187.333333pt;}
.hd3{height:202.520000pt;}
.hcd{height:202.560000pt;}
.hf7{height:206.573333pt;}
.hea{height:207.333333pt;}
.hf9{height:207.373333pt;}
.h4b{height:221.773333pt;}
.hc8{height:229.760000pt;}
.hf8{height:229.773333pt;}
.hfa{height:230.560000pt;}
.hfb{height:230.573333pt;}
.ha2{height:251.400000pt;}
.he6{height:252.973333pt;}
.hd4{height:253.800000pt;}
.h11{height:254.573333pt;}
.hbe{height:260.173333pt;}
.hf3{height:276.200000pt;}
.hdf{height:278.586667pt;}
.hd9{height:278.600000pt;}
.h8b{height:298.990131pt;}
.h21{height:317.650755pt;}
.he3{height:329.026667pt;}
.hd5{height:329.040000pt;}
.ha7{height:344.226667pt;}
.hb9{height:376.266667pt;}
.he4{height:405.066667pt;}
.h54{height:421.236268pt;}
.hda{height:423.506667pt;}
.hd8{height:455.520000pt;}
.hc9{height:505.973333pt;}
.hde{height:506.760000pt;}
.h57{height:512.523880pt;}
.h75{height:542.600000pt;}
.hd7{height:683.693333pt;}
.h9b{height:793.333333pt;}
.h9a{height:793.600000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w10{width:0.835754pt;}
.wd{width:35.405529pt;}
.wa{width:39.289528pt;}
.wb{width:41.015749pt;}
.wc{width:41.465286pt;}
.w9{width:43.605082pt;}
.w5a{width:44.033333pt;}
.w8{width:44.468193pt;}
.w57{width:44.833333pt;}
.we{width:46.625971pt;}
.w62{width:48.033333pt;}
.w5c{width:48.833333pt;}
.w7a{width:56.066667pt;}
.w7e{width:60.066667pt;}
.w77{width:62.466667pt;}
.w5b{width:64.066667pt;}
.w58{width:64.866667pt;}
.w5f{width:66.466667pt;}
.w39{width:67.266667pt;}
.w33{width:69.700000pt;}
.w34{width:70.466667pt;}
.w80{width:71.300000pt;}
.w14{width:72.100000pt;}
.w3c{width:72.866667pt;}
.w79{width:74.466667pt;}
.w5d{width:75.266667pt;}
.w16{width:76.100000pt;}
.w7f{width:77.666667pt;}
.w6b{width:79.266667pt;}
.w15{width:80.853333pt;}
.w1d{width:80.866667pt;}
.w1c{width:80.900000pt;}
.w19{width:81.666667pt;}
.w1e{width:81.700000pt;}
.w35{width:82.500000pt;}
.w7c{width:83.266667pt;}
.w52{width:84.066667pt;}
.w21{width:84.100000pt;}
.w4e{width:84.866667pt;}
.w6f{width:85.700000pt;}
.w81{width:89.666667pt;}
.w7d{width:89.700000pt;}
.w78{width:92.900000pt;}
.w6d{width:95.300000pt;}
.w36{width:100.100000pt;}
.w3d{width:100.133333pt;}
.w37{width:100.886667pt;}
.w38{width:100.900000pt;}
.w22{width:103.300000pt;}
.w65{width:104.100000pt;}
.w23{width:108.900000pt;}
.w3b{width:111.300000pt;}
.w71{width:112.133333pt;}
.w51{width:112.933333pt;}
.w6e{width:113.733333pt;}
.w7b{width:119.333333pt;}
.w76{width:123.333333pt;}
.w18{width:124.900000pt;}
.w68{width:131.333333pt;}
.w4f{width:132.133333pt;}
.w66{width:132.933333pt;}
.w54{width:146.533333pt;}
.w20{width:150.533333pt;}
.w49{width:150.560000pt;}
.w47{width:151.360000pt;}
.w3e{width:155.333333pt;}
.w63{width:160.160000pt;}
.w5e{width:160.960000pt;}
.w1a{width:161.760000pt;}
.w1b{width:162.560000pt;}
.w12{width:164.516128pt;}
.w3a{width:165.760000pt;}
.w61{width:166.573333pt;}
.w13{width:167.946994pt;}
.w48{width:179.400000pt;}
.w11{width:179.620568pt;}
.w59{width:180.200000pt;}
.w55{width:181.800000pt;}
.w2c{width:186.107255pt;}
.w2d{width:186.231658pt;}
.w2e{width:186.978078pt;}
.w2a{width:187.102481pt;}
.w2b{width:187.226884pt;}
.w2f{width:188.719723pt;}
.w30{width:188.844126pt;}
.w60{width:189.000000pt;}
.w70{width:192.200000pt;}
.w6c{width:193.000000pt;}
.w69{width:206.640000pt;}
.w67{width:207.440000pt;}
.w4{width:236.240000pt;}
.w32{width:239.440000pt;}
.w24{width:240.266667pt;}
.w42{width:248.220070pt;}
.w43{width:249.066667pt;}
.w17{width:253.866667pt;}
.w56{width:258.666667pt;}
.w53{width:264.266667pt;}
.w50{width:265.066667pt;}
.w41{width:326.733333pt;}
.w3f{width:328.333333pt;}
.w29{width:344.789956pt;}
.w46{width:349.133333pt;}
.w73{width:351.560000pt;}
.w28{width:357.526234pt;}
.w5{width:359.560000pt;}
.w40{width:361.173333pt;}
.w1f{width:375.200000pt;}
.w74{width:395.640000pt;}
.w75{width:397.200000pt;}
.w31{width:409.666667pt;}
.w72{width:418.840000pt;}
.w64{width:422.026667pt;}
.w44{width:436.426667pt;}
.w6a{width:446.840000pt;}
.w45{width:470.866667pt;}
.w26{width:501.320000pt;}
.wf{width:512.939607pt;}
.w6{width:532.800000pt;}
.w3{width:533.600000pt;}
.w25{width:581.400000pt;}
.w7{width:597.101523pt;}
.w27{width:639.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w4d{width:1033.533333pt;}
.w4c{width:1122.399983pt;}
.w4a{width:1122.400000pt;}
.w4b{width:1122.666667pt;}
.x9c{left:-45.519240pt;}
.x9a{left:-42.511698pt;}
.xe2{left:-19.200000pt;}
.x0{left:0.000000pt;}
.xb6{left:2.400000pt;}
.x2e{left:3.452444pt;}
.x9d{left:4.487509pt;}
.x29{left:6.041777pt;}
.x12{left:7.200000pt;}
.x22{left:8.631109pt;}
.x4{left:9.773333pt;}
.x23{left:12.083553pt;}
.x25{left:14.241330pt;}
.x6d{left:15.240000pt;}
.x2f{left:16.399108pt;}
.x27{left:18.125329pt;}
.xbf{left:19.200000pt;}
.x51{left:20.800000pt;}
.x4a{left:22.426667pt;}
.x73{left:24.026667pt;}
.x4f{left:27.233333pt;}
.x4e{left:29.600000pt;}
.x6c{left:32.840000pt;}
.x50{left:34.426667pt;}
.x4d{left:36.826667pt;}
.xac{left:38.046659pt;}
.xaa{left:38.938216pt;}
.x34{left:40.149042pt;}
.xb9{left:41.626667pt;}
.x75{left:43.226667pt;}
.xa7{left:44.287556pt;}
.x2d{left:45.762861pt;}
.xa4{left:46.957042pt;}
.x14{left:48.066655pt;}
.x55{left:50.440000pt;}
.x9b{left:51.600235pt;}
.x52{left:53.640000pt;}
.x57{left:56.026667pt;}
.x97{left:57.666655pt;}
.x36{left:59.144674pt;}
.x5a{left:60.826667pt;}
.x33{left:62.179947pt;}
.x18{left:66.466655pt;}
.xa3{left:70.145806pt;}
.x60{left:72.066655pt;}
.xa9{left:73.677822pt;}
.x53{left:75.266667pt;}
.x48{left:77.666667pt;}
.xa8{left:78.978333pt;}
.xa1{left:79.874140pt;}
.xb3{left:83.299988pt;}
.x11{left:84.900000pt;}
.x56{left:86.466667pt;}
.x54{left:88.066667pt;}
.x59{left:89.666667pt;}
.x58{left:92.066667pt;}
.x1{left:94.499988pt;}
.x61{left:96.099988pt;}
.xa{left:97.699988pt;}
.xb0{left:101.388640pt;}
.xad{left:106.468444pt;}
.x7a{left:108.900000pt;}
.x7{left:112.133322pt;}
.x1e{left:114.533322pt;}
.xb1{left:116.814643pt;}
.x47{left:120.933322pt;}
.x3a{left:123.333322pt;}
.x38{left:132.933322pt;}
.xb{left:134.533322pt;}
.x8b{left:138.533322pt;}
.xa6{left:144.862292pt;}
.xb8{left:148.173333pt;}
.x96{left:149.600000pt;}
.x49{left:151.373333pt;}
.xb2{left:152.943418pt;}
.xb7{left:156.159988pt;}
.x1c{left:157.600000pt;}
.xab{left:158.915859pt;}
.x7c{left:160.173333pt;}
.x15{left:164.800000pt;}
.x3{left:166.400000pt;}
.x1d{left:167.359988pt;}
.xd1{left:172.973333pt;}
.x16{left:174.573322pt;}
.x5{left:176.173322pt;}
.x9f{left:180.199988pt;}
.x30{left:181.268789pt;}
.x31{left:186.518263pt;}
.xcd{left:195.400000pt;}
.x71{left:199.400000pt;}
.x80{left:201.799988pt;}
.xe3{left:215.440000pt;}
.xe0{left:221.040000pt;}
.x21{left:227.481185pt;}
.xe{left:233.839988pt;}
.x17{left:237.026655pt;}
.xaf{left:245.572001pt;}
.xba{left:249.066667pt;}
.xa2{left:258.811661pt;}
.xa5{left:259.806888pt;}
.x10{left:261.066655pt;}
.x86{left:265.866655pt;}
.x19{left:270.666655pt;}
.x24{left:272.384529pt;}
.xdb{left:276.293322pt;}
.xbc{left:281.106667pt;}
.x72{left:284.306667pt;}
.xf{left:285.906655pt;}
.x67{left:292.306655pt;}
.xd{left:297.906655pt;}
.xe4{left:299.506667pt;}
.xae{left:302.196211pt;}
.xda{left:303.506667pt;}
.x8{left:306.733322pt;}
.x4b{left:310.733333pt;}
.x64{left:314.733322pt;}
.x26{left:316.417570pt;}
.xc{left:321.133322pt;}
.x81{left:334.733322pt;}
.x5e{left:336.333322pt;}
.x5d{left:338.773322pt;}
.x45{left:348.359988pt;}
.x1a{left:352.359988pt;}
.x44{left:356.359988pt;}
.x5b{left:358.773322pt;}
.x28{left:361.320914pt;}
.x5c{left:362.773322pt;}
.x3e{left:364.359988pt;}
.x3c{left:367.573322pt;}
.x41{left:373.199988pt;}
.x3d{left:376.399988pt;}
.x3f{left:379.599988pt;}
.x43{left:382.799988pt;}
.x42{left:385.199988pt;}
.x40{left:388.399988pt;}
.xbd{left:392.400000pt;}
.x9{left:397.199988pt;}
.xca{left:398.800000pt;}
.x2a{left:401.038399pt;}
.x2c{left:402.835429pt;}
.xb4{left:405.240000pt;}
.xc2{left:410.026655pt;}
.x5f{left:416.439988pt;}
.xc3{left:419.640000pt;}
.x68{left:421.240000pt;}
.x98{left:422.839988pt;}
.x3b{left:426.839988pt;}
.x9e{left:428.439988pt;}
.x2b{left:442.482107pt;}
.xc1{left:448.466655pt;}
.x77{left:450.066655pt;}
.x78{left:453.266667pt;}
.xa0{left:454.866655pt;}
.xd9{left:457.266655pt;}
.xd0{left:461.266655pt;}
.xd5{left:462.866667pt;}
.xbe{left:465.266667pt;}
.xc8{left:468.506655pt;}
.x46{left:470.893322pt;}
.x8c{left:476.506655pt;}
.x87{left:478.893322pt;}
.x8e{left:487.693322pt;}
.x94{left:490.106655pt;}
.xcf{left:492.506655pt;}
.xc9{left:494.893322pt;}
.xc4{left:496.536669pt;}
.x74{left:498.106667pt;}
.x6a{left:502.133333pt;}
.xdc{left:504.533322pt;}
.x8d{left:506.133322pt;}
.xe1{left:511.733333pt;}
.x93{left:515.733322pt;}
.xc6{left:518.933322pt;}
.xd3{left:522.933322pt;}
.xd4{left:525.333322pt;}
.x35{left:526.261403pt;}
.xc7{left:528.533322pt;}
.x65{left:530.133322pt;}
.x88{left:544.559988pt;}
.xb5{left:546.173333pt;}
.xbb{left:550.173333pt;}
.x89{left:552.559988pt;}
.x92{left:562.173322pt;}
.x4c{left:565.400000pt;}
.x91{left:568.599988pt;}
.x7e{left:570.199988pt;}
.xd6{left:576.600000pt;}
.x6e{left:578.999988pt;}
.x69{left:583.000000pt;}
.x95{left:586.199988pt;}
.x6{left:588.599988pt;}
.x7d{left:594.999988pt;}
.xe5{left:599.840000pt;}
.x90{left:608.639988pt;}
.x8a{left:615.839988pt;}
.xdf{left:620.639988pt;}
.x7b{left:627.026655pt;}
.x39{left:634.266655pt;}
.xce{left:635.866667pt;}
.xd2{left:637.466655pt;}
.x83{left:639.066655pt;}
.x37{left:643.066655pt;}
.x66{left:647.066655pt;}
.x2{left:652.666655pt;}
.xc5{left:655.066655pt;}
.xd7{left:662.306667pt;}
.x6b{left:664.693333pt;}
.x6f{left:667.106655pt;}
.x84{left:672.706655pt;}
.xc0{left:675.106655pt;}
.x85{left:680.693322pt;}
.x70{left:683.106655pt;}
.x7f{left:685.506655pt;}
.x8f{left:687.106655pt;}
.xde{left:688.706655pt;}
.x1b{left:691.106655pt;}
.x82{left:693.506655pt;}
.x32{left:694.639952pt;}
.x20{left:695.933322pt;}
.x63{left:697.533322pt;}
.x13{left:699.933322pt;}
.x79{left:706.333322pt;}
.xd8{left:713.533322pt;}
.x76{left:719.933322pt;}
.xdd{left:727.173322pt;}
.x62{left:731.959988pt;}
.x1f{left:743.173322pt;}
.x99{left:750.373322pt;}
.xcc{left:963.093317pt;}
.xcb{left:1012.733317pt;}
}




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