
    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_becf6ca00549912937526274.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ec447785900b35f72ed66a97.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.985352;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_30e5a8952813a4979087db92.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985352;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_0cea1b4e2844ad8889222ca8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.058594;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_a820ae5ab34d238c00c895bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.092773;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_b98deb005cf8280f90c65a3f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_c3b4128f2c4259adf96282f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996094;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_f897b9452087bf72e7c03605.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979004;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_8c84f244406a5bb1ba6ee8d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_59fe769b24cd45f9e13891d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_39801c12e813f61d3f451709.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200195;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_8cfa8800c3cf6cc04ec6cd1d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_8e9803f9c855603201c928f9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_9d565482ca9fa93a658448f7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.711000;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_53876716a396d3e86bef9dc2.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;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_255323a188f011c24862e09e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_3b979345d84ba3a12e71b675.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_3904cae210e976de40239db9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;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_b7464f0d15bba1fb94c62b61.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_255323a188f011c24862e09e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_88d2eb696dd7bdb132c589e3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2af55372ba7f391d68fabfe3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8208844ee4dbbc6372416b77.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.004395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_30d094f6386ff57c58550f3d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.004395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_eeaf478b1045b94ac36c4998.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a7cb6fc9f9a472f5ad551880.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_478a24504bfcc9138333532d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_5ab3e12593288d24d873ed82.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_dca03985824a7865d89d5d75.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5bac2798a4a02a116f273cfa.woff2')format("woff");}.ff1e{font-family:ff1e;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;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_a7cb6fc9f9a472f5ad551880.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_bb620c71d3012c2f36d70daf.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.985352;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:ff21;src:url('chunks/assets/font_c03117a1d1464eac936974f7.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.008301;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:ff22;src:url('chunks/assets/font_a7cb6fc9f9a472f5ad551880.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-17.820000px;}
.vb{vertical-align:-12.241200px;}
.v7{vertical-align:-9.880200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.759000px;}
.va{vertical-align:15.304154px;}
.v2{vertical-align:19.799400px;}
.v4{vertical-align:27.723166px;}
.v8{vertical-align:29.789100px;}
.v9{vertical-align:31.179258px;}
.v6{vertical-align:37.335182px;}
.v5{vertical-align:55.446331px;}
.ls4d{letter-spacing:-3.996000px;}
.ls21{letter-spacing:-1.115370px;}
.ls45{letter-spacing:-0.963240px;}
.ls6a{letter-spacing:-0.676322px;}
.ls67{letter-spacing:-0.624298px;}
.ls5b{letter-spacing:-0.556063px;}
.ls44{letter-spacing:-0.539414px;}
.ls1a{letter-spacing:-0.537030px;}
.lsc{letter-spacing:-0.533138px;}
.ls62{letter-spacing:-0.521307px;}
.ls5d{letter-spacing:-0.516344px;}
.ls47{letter-spacing:-0.500885px;}
.ls6c{letter-spacing:-0.489648px;}
.ls5a{letter-spacing:-0.476626px;}
.ls69{letter-spacing:-0.468223px;}
.ls46{letter-spacing:-0.462355px;}
.ls59{letter-spacing:-0.436907px;}
.ls41{letter-spacing:-0.423826px;}
.ls6b{letter-spacing:-0.416198px;}
.ls58{letter-spacing:-0.397188px;}
.ls40{letter-spacing:-0.385296px;}
.ls63{letter-spacing:-0.382292px;}
.ls18{letter-spacing:-0.371790px;}
.lsb{letter-spacing:-0.369095px;}
.ls5e{letter-spacing:-0.357469px;}
.ls42{letter-spacing:-0.346766px;}
.ls17{letter-spacing:-0.330480px;}
.ls9{letter-spacing:-0.328085px;}
.ls48{letter-spacing:-0.308237px;}
.ls1e{letter-spacing:-0.289170px;}
.ls5c{letter-spacing:-0.278032px;}
.ls1c{letter-spacing:-0.206550px;}
.lse{letter-spacing:-0.205053px;}
.ls4c{letter-spacing:-0.192648px;}
.ls61{letter-spacing:-0.173769px;}
.ls1f{letter-spacing:-0.123930px;}
.lsf{letter-spacing:-0.123032px;}
.ls4b{letter-spacing:-0.115589px;}
.ls2{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000300px;}
.ls5{letter-spacing:0.000600px;}
.ls30{letter-spacing:0.077059px;}
.ls8{letter-spacing:0.082021px;}
.ls19{letter-spacing:0.082620px;}
.ls68{letter-spacing:0.104050px;}
.ls43{letter-spacing:0.115589px;}
.ls10{letter-spacing:0.123032px;}
.ls65{letter-spacing:0.146894px;}
.ls4a{letter-spacing:0.154118px;}
.ls12{letter-spacing:0.164042px;}
.ls22{letter-spacing:0.168000px;}
.ls20{letter-spacing:0.206550px;}
.ls23{letter-spacing:0.231178px;}
.ls60{letter-spacing:0.238313px;}
.ls1d{letter-spacing:0.247860px;}
.ls11{letter-spacing:0.287074px;}
.ls5f{letter-spacing:0.397188px;}
.ls2f{letter-spacing:0.423826px;}
.ls52{letter-spacing:0.436907px;}
.lsd{letter-spacing:0.492127px;}
.ls1b{letter-spacing:0.495720px;}
.ls49{letter-spacing:0.500885px;}
.ls66{letter-spacing:0.538613px;}
.lsa{letter-spacing:0.574148px;}
.ls15{letter-spacing:0.578340px;}
.ls16{letter-spacing:0.607500px;}
.ls13{letter-spacing:0.619650px;}
.ls3{letter-spacing:0.627600px;}
.ls64{letter-spacing:0.780372px;}
.ls6d{letter-spacing:2.754000px;}
.ls4{letter-spacing:7.671600px;}
.ls1{letter-spacing:28.031400px;}
.ls28{letter-spacing:48.316118px;}
.ls29{letter-spacing:52.978200px;}
.ls2a{letter-spacing:68.621218px;}
.ls6{letter-spacing:71.768550px;}
.ls53{letter-spacing:90.717739px;}
.ls2e{letter-spacing:91.507800px;}
.ls4e{letter-spacing:104.381006px;}
.ls24{letter-spacing:108.499354px;}
.ls3b{letter-spacing:120.559118px;}
.ls39{letter-spacing:139.669800px;}
.ls51{letter-spacing:141.633269px;}
.ls2b{letter-spacing:143.291582px;}
.ls38{letter-spacing:144.601589px;}
.ls50{letter-spacing:147.833374px;}
.ls4f{letter-spacing:151.566941px;}
.ls36{letter-spacing:158.934600px;}
.ls3d{letter-spacing:160.244606px;}
.ls2c{letter-spacing:162.671971px;}
.ls3e{letter-spacing:166.139635px;}
.ls31{letter-spacing:166.255224px;}
.ls27{letter-spacing:169.877006px;}
.ls3a{letter-spacing:169.915536px;}
.ls26{letter-spacing:181.821182px;}
.ls3f{letter-spacing:184.325606px;}
.ls25{letter-spacing:184.364136px;}
.ls54{letter-spacing:191.285741px;}
.ls3c{letter-spacing:193.842418px;}
.ls2d{letter-spacing:198.658618px;}
.ls37{letter-spacing:207.212189px;}
.ls55{letter-spacing:258.291356px;}
.ls32{letter-spacing:267.279835px;}
.ls33{letter-spacing:308.352389px;}
.ls35{letter-spacing:322.800989px;}
.ls56{letter-spacing:329.070258px;}
.ls34{letter-spacing:409.531118px;}
.ls14{letter-spacing:468.579330px;}
.ls7{letter-spacing:503.692189px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.wsf5{word-spacing:-13.110250px;}
.wsf7{word-spacing:-13.006200px;}
.wsfa{word-spacing:-12.590002px;}
.wsf6{word-spacing:-12.537977px;}
.wsf9{word-spacing:-12.381902px;}
.wsa3{word-spacing:-10.905840px;}
.ws8f{word-spacing:-10.826798px;}
.wsa7{word-spacing:-10.668000px;}
.wsa0{word-spacing:-10.575360px;}
.ws8d{word-spacing:-10.539724px;}
.ws2{word-spacing:-10.500000px;}
.ws8e{word-spacing:-10.416692px;}
.ws8c{word-spacing:-10.375682px;}
.wsd6{word-spacing:-10.366607px;}
.wsdc{word-spacing:-10.326888px;}
.wsa4{word-spacing:-10.203570px;}
.wsdd{word-spacing:-10.168013px;}
.ws8b{word-spacing:-10.129618px;}
.ws9f{word-spacing:-10.120950px;}
.wsb9{word-spacing:-10.056226px;}
.ws8a{word-spacing:-10.047597px;}
.wsa1{word-spacing:-10.038330px;}
.ws9e{word-spacing:-9.955710px;}
.wsdb{word-spacing:-9.929700px;}
.ws87{word-spacing:-9.924565px;}
.ws88{word-spacing:-9.883555px;}
.wsbc{word-spacing:-9.863578px;}
.wsa2{word-spacing:-9.790470px;}
.wsc1{word-spacing:-9.786518px;}
.ws1{word-spacing:-9.750000px;}
.wsba{word-spacing:-9.747989px;}
.ws89{word-spacing:-9.719512px;}
.wsc2{word-spacing:-9.709459px;}
.wsd8{word-spacing:-9.651668px;}
.wsd9{word-spacing:-9.572231px;}
.wsd4{word-spacing:-9.532512px;}
.wsc3{word-spacing:-9.516811px;}
.wscb{word-spacing:-9.504000px;}
.wsd3{word-spacing:-9.492793px;}
.wsda{word-spacing:-9.453074px;}
.wsc4{word-spacing:-9.439752px;}
.wsd5{word-spacing:-9.373637px;}
.wsc0{word-spacing:-9.324163px;}
.wsbb{word-spacing:-9.247104px;}
.wsa5{word-spacing:-9.212130px;}
.wsb8{word-spacing:-9.208574px;}
.wsbe{word-spacing:-9.170045px;}
.wsbf{word-spacing:-9.131515px;}
.wsa6{word-spacing:-8.700000px;}
.wsbd{word-spacing:-8.669160px;}
.ws6{word-spacing:-7.830000px;}
.wsf8{word-spacing:-7.650750px;}
.wsd7{word-spacing:-6.206100px;}
.ws11f{word-spacing:-5.076000px;}
.ws66{word-spacing:-3.780000px;}
.ws9b{word-spacing:-3.360000px;}
.ws52{word-spacing:-3.300000px;}
.ws115{word-spacing:-3.078000px;}
.ws103{word-spacing:-3.000000px;}
.ws4c{word-spacing:-2.940000px;}
.ws61{word-spacing:-2.820000px;}
.ws7d{word-spacing:-2.700000px;}
.wsd{word-spacing:-2.640000px;}
.ws51{word-spacing:-2.580000px;}
.ws1b{word-spacing:-2.520000px;}
.ws2b{word-spacing:-2.460000px;}
.ws5c{word-spacing:-2.340000px;}
.ws10b{word-spacing:-2.322000px;}
.ws105{word-spacing:-2.280000px;}
.wsb6{word-spacing:-2.220000px;}
.ws2f{word-spacing:-2.160000px;}
.ws47{word-spacing:-2.100000px;}
.ws73{word-spacing:-2.040000px;}
.wsea{word-spacing:-1.920000px;}
.ws11b{word-spacing:-1.890000px;}
.ws68{word-spacing:-1.860000px;}
.ws55{word-spacing:-1.800000px;}
.ws2c{word-spacing:-1.740000px;}
.ws30{word-spacing:-1.680000px;}
.ws4a{word-spacing:-1.620000px;}
.ws41{word-spacing:-1.500000px;}
.wsf3{word-spacing:-1.380000px;}
.wsd2{word-spacing:-1.320000px;}
.ws4b{word-spacing:-1.260000px;}
.ws11d{word-spacing:-1.242000px;}
.wsef{word-spacing:-1.200000px;}
.ws62{word-spacing:-1.140000px;}
.ws17{word-spacing:-1.020000px;}
.ws53{word-spacing:-0.960000px;}
.ws26{word-spacing:-0.900000px;}
.ws119{word-spacing:-0.864000px;}
.wsf4{word-spacing:-0.798000px;}
.ws92{word-spacing:-0.780000px;}
.ws72{word-spacing:-0.720000px;}
.ws3d{word-spacing:-0.660000px;}
.ws118{word-spacing:-0.648000px;}
.ws7b{word-spacing:-0.600000px;}
.wsac{word-spacing:-0.578340px;}
.ws96{word-spacing:-0.574148px;}
.wsf{word-spacing:-0.540000px;}
.wsca{word-spacing:-0.500885px;}
.wsa{word-spacing:-0.480000px;}
.wsdf{word-spacing:-0.436907px;}
.wsc{word-spacing:-0.420000px;}
.wse3{word-spacing:-0.397188px;}
.ws6a{word-spacing:-0.378000px;}
.wsc9{word-spacing:-0.231178px;}
.ws6c{word-spacing:-0.216000px;}
.ws102{word-spacing:-0.180000px;}
.ws9c{word-spacing:-0.120000px;}
.ws126{word-spacing:-0.108000px;}
.wsae{word-spacing:-0.082620px;}
.ws95{word-spacing:-0.082021px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.042000px;}
.ws9a{word-spacing:0.060000px;}
.ws99{word-spacing:0.082021px;}
.wsb0{word-spacing:0.082620px;}
.wsc7{word-spacing:0.115589px;}
.ws45{word-spacing:0.120000px;}
.ws9{word-spacing:0.168000px;}
.wse5{word-spacing:0.173769px;}
.ws50{word-spacing:0.180000px;}
.ws6d{word-spacing:0.240000px;}
.wse4{word-spacing:0.278032px;}
.ws18{word-spacing:0.300000px;}
.ws109{word-spacing:0.324000px;}
.wsc6{word-spacing:0.346766px;}
.ws2e{word-spacing:0.360000px;}
.wsb3{word-spacing:0.371790px;}
.ws112{word-spacing:0.378000px;}
.wse7{word-spacing:0.382292px;}
.wsc5{word-spacing:0.385296px;}
.wsde{word-spacing:0.397188px;}
.wsb{word-spacing:0.420000px;}
.wsb2{word-spacing:0.454410px;}
.wsfd{word-spacing:0.468223px;}
.wse0{word-spacing:0.476626px;}
.ws122{word-spacing:0.486000px;}
.wsff{word-spacing:0.489648px;}
.wse1{word-spacing:0.516344px;}
.wse6{word-spacing:0.521307px;}
.wsc8{word-spacing:0.539414px;}
.ws79{word-spacing:0.540000px;}
.wse2{word-spacing:0.556063px;}
.ws77{word-spacing:0.561000px;}
.wsb1{word-spacing:0.578340px;}
.ws10c{word-spacing:0.594000px;}
.ws7a{word-spacing:0.600000px;}
.wsfc{word-spacing:0.624298px;}
.ws69{word-spacing:0.660000px;}
.wsfe{word-spacing:0.676322px;}
.ws97{word-spacing:0.697180px;}
.wsad{word-spacing:0.702270px;}
.ws75{word-spacing:0.714000px;}
.ws22{word-spacing:0.780000px;}
.ws6f{word-spacing:0.840000px;}
.ws10f{word-spacing:0.864000px;}
.ws76{word-spacing:0.867000px;}
.wsab{word-spacing:0.908820px;}
.ws7e{word-spacing:0.960000px;}
.ws49{word-spacing:1.020000px;}
.ws106{word-spacing:1.080000px;}
.ws98{word-spacing:1.107286px;}
.wsaf{word-spacing:1.115370px;}
.wsb5{word-spacing:1.140000px;}
.ws59{word-spacing:1.200000px;}
.ws7f{word-spacing:1.260000px;}
.ws24{word-spacing:1.380000px;}
.ws46{word-spacing:1.440000px;}
.ws36{word-spacing:1.500000px;}
.ws7{word-spacing:1.512000px;}
.ws71{word-spacing:1.560000px;}
.wsf1{word-spacing:1.620000px;}
.wsd1{word-spacing:1.680000px;}
.ws11{word-spacing:1.800000px;}
.ws5b{word-spacing:1.860000px;}
.ws65{word-spacing:1.920000px;}
.ws11c{word-spacing:1.944000px;}
.ws29{word-spacing:1.980000px;}
.ws20{word-spacing:2.040000px;}
.ws6b{word-spacing:2.052000px;}
.ws34{word-spacing:2.100000px;}
.ws37{word-spacing:2.160000px;}
.ws23{word-spacing:2.220000px;}
.ws1e{word-spacing:2.280000px;}
.ws16{word-spacing:2.340000px;}
.ws82{word-spacing:2.400000px;}
.ws78{word-spacing:2.460000px;}
.wsce{word-spacing:2.520000px;}
.ws5f{word-spacing:2.700000px;}
.ws116{word-spacing:2.754000px;}
.ws38{word-spacing:2.760000px;}
.ws4f{word-spacing:2.820000px;}
.ws33{word-spacing:2.940000px;}
.ws1f{word-spacing:3.000000px;}
.wsec{word-spacing:3.120000px;}
.wsaa{word-spacing:3.180000px;}
.ws56{word-spacing:3.240000px;}
.wse9{word-spacing:3.300000px;}
.ws44{word-spacing:3.360000px;}
.ws1a{word-spacing:3.420000px;}
.wsed{word-spacing:3.480000px;}
.ws48{word-spacing:3.600000px;}
.ws114{word-spacing:3.618000px;}
.ws3b{word-spacing:3.660000px;}
.wscc{word-spacing:3.720000px;}
.ws19{word-spacing:3.780000px;}
.ws104{word-spacing:3.840000px;}
.wscf{word-spacing:3.960000px;}
.ws4d{word-spacing:4.020000px;}
.ws67{word-spacing:4.080000px;}
.ws83{word-spacing:4.140000px;}
.ws3e{word-spacing:4.200000px;}
.ws25{word-spacing:4.260000px;}
.wse8{word-spacing:4.320000px;}
.ws6e{word-spacing:4.380000px;}
.ws39{word-spacing:4.500000px;}
.ws35{word-spacing:4.560000px;}
.ws107{word-spacing:4.620000px;}
.ws74{word-spacing:4.680000px;}
.wsf2{word-spacing:4.740000px;}
.ws110{word-spacing:4.806000px;}
.ws5a{word-spacing:4.920000px;}
.wsd0{word-spacing:4.980000px;}
.wsa8{word-spacing:5.040000px;}
.ws81{word-spacing:5.100000px;}
.ws123{word-spacing:5.184000px;}
.ws15{word-spacing:5.220000px;}
.wsb4{word-spacing:5.280000px;}
.ws7c{word-spacing:5.400000px;}
.ws21{word-spacing:5.460000px;}
.ws40{word-spacing:5.520000px;}
.ws121{word-spacing:5.562000px;}
.ws12{word-spacing:5.580000px;}
.ws120{word-spacing:5.670000px;}
.ws5e{word-spacing:5.700000px;}
.ws84{word-spacing:5.760000px;}
.ws70{word-spacing:5.880000px;}
.ws117{word-spacing:5.886000px;}
.wsfb{word-spacing:5.940000px;}
.ws28{word-spacing:6.120000px;}
.ws54{word-spacing:6.180000px;}
.ws14{word-spacing:6.240000px;}
.wsee{word-spacing:6.300000px;}
.ws32{word-spacing:6.360000px;}
.ws43{word-spacing:6.480000px;}
.ws3f{word-spacing:6.540000px;}
.ws111{word-spacing:6.588000px;}
.ws1d{word-spacing:6.720000px;}
.ws2a{word-spacing:6.960000px;}
.ws5d{word-spacing:7.020000px;}
.ws108{word-spacing:7.074000px;}
.ws93{word-spacing:7.080000px;}
.wse{word-spacing:7.140000px;}
.ws10e{word-spacing:7.236000px;}
.ws94{word-spacing:7.260000px;}
.ws91{word-spacing:7.500000px;}
.ws125{word-spacing:7.506000px;}
.ws57{word-spacing:7.620000px;}
.ws80{word-spacing:7.680000px;}
.wscd{word-spacing:7.860000px;}
.wsa9{word-spacing:7.920000px;}
.ws64{word-spacing:7.980000px;}
.ws60{word-spacing:8.040000px;}
.ws10a{word-spacing:8.100000px;}
.ws85{word-spacing:8.220000px;}
.ws42{word-spacing:8.280000px;}
.ws1c{word-spacing:8.340000px;}
.ws58{word-spacing:8.400000px;}
.ws86{word-spacing:8.460000px;}
.ws4e{word-spacing:8.520000px;}
.ws31{word-spacing:8.580000px;}
.ws10d{word-spacing:8.694000px;}
.ws2d{word-spacing:8.700000px;}
.wsf0{word-spacing:8.760000px;}
.ws10{word-spacing:8.820000px;}
.ws124{word-spacing:8.910000px;}
.ws27{word-spacing:9.000000px;}
.wseb{word-spacing:9.120000px;}
.ws63{word-spacing:10.020000px;}
.ws101{word-spacing:10.140000px;}
.ws3c{word-spacing:10.380000px;}
.ws9d{word-spacing:10.440000px;}
.ws90{word-spacing:10.860000px;}
.ws113{word-spacing:11.124000px;}
.ws100{word-spacing:11.160000px;}
.ws13{word-spacing:11.880000px;}
.ws11e{word-spacing:11.988000px;}
.ws11a{word-spacing:12.366000px;}
.wsb7{word-spacing:15.834000px;}
.ws3a{word-spacing:18.300000px;}
.ws5{word-spacing:114.621000px;}
._3{margin-left:-15.626251px;}
._4{margin-left:-14.206200px;}
._f{margin-left:-7.938451px;}
._8{margin-left:-6.690000px;}
._0{margin-left:-5.393105px;}
._2{margin-left:-3.408000px;}
._6{margin-left:-2.294102px;}
._1{margin-left:-1.091549px;}
._5{width:1.428000px;}
._7{width:2.438251px;}
._b{width:3.840000px;}
._9{width:4.860000px;}
._d{width:6.282000px;}
._a{width:7.674000px;}
._4d{width:8.676000px;}
._c{width:9.678000px;}
._12{width:10.716000px;}
._14{width:11.790000px;}
._11{width:13.296000px;}
._68{width:14.659800px;}
._e{width:15.666000px;}
._13{width:17.046000px;}
._10{width:18.948000px;}
._17{width:37.737123px;}
._2e{width:67.580918px;}
._34{width:69.854165px;}
._33{width:74.318670px;}
._2d{width:77.059200px;}
._3c{width:79.448035px;}
._35{width:80.680982px;}
._29{width:86.691600px;}
._2a{width:89.080435px;}
._2f{width:90.313382px;}
._3b{width:91.567298px;}
._20{width:92.935919px;}
._2c{width:98.712835px;}
._3d{width:99.981788px;}
._31{width:101.255789px;}
._2b{width:102.450206px;}
._32{width:103.606094px;}
._18{width:105.561284px;}
._30{width:106.595835px;}
._27{width:109.115827px;}
._19{width:110.210224px;}
._21{width:116.494200px;}
._26{width:118.131754px;}
._28{width:120.559118px;}
._1b{width:122.416641px;}
._1f{width:126.763765px;}
._1c{width:127.994083px;}
._36{width:135.585662px;}
._4b{width:144.522006px;}
._37{width:148.647197px;}
._3e{width:154.233989px;}
._58{width:156.236189px;}
._41{width:169.877006px;}
._40{width:172.304371px;}
._42{width:174.521527px;}
._43{width:178.314989px;}
._38{width:179.509406px;}
._49{width:180.703824px;}
._1a{width:184.670732px;}
._25{width:190.787430px;}
._59{width:205.104955px;}
._23{width:207.871920px;}
._60{width:209.200796px;}
._3f{width:215.534582px;}
._1e{width:219.693784px;}
._22{width:224.313300px;}
._1d{width:226.870639px;}
._39{width:233.720554px;}
._3a{width:234.799382px;}
._52{width:241.534138px;}
._55{width:243.011470px;}
._48{width:246.634001px;}
._4a{width:248.340833px;}
._24{width:252.858510px;}
._4e{width:259.177021px;}
._67{width:261.462972px;}
._5f{width:264.487489px;}
._4c{width:265.860271px;}
._61{width:266.950055px;}
._5c{width:268.262652px;}
._5b{width:283.592232px;}
._56{width:286.881539px;}
._63{width:292.057824px;}
._57{width:295.944779px;}
._53{width:299.718065px;}
._5d{width:303.014725px;}
._5a{width:304.608701px;}
._50{width:307.781794px;}
._62{width:310.839329px;}
._44{width:311.858582px;}
._4f{width:315.406991px;}
._65{width:321.194084px;}
._64{width:323.390470px;}
._66{width:326.261346px;}
._54{width:328.931830px;}
._5e{width:333.320170px;}
._45{width:338.444006px;}
._51{width:339.516302px;}
._47{width:374.584771px;}
._46{width:448.137778px;}
._15{width:626.535000px;}
._16{width:781.830000px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,65,65);}
.fc1{color:rgb(96,88,97);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs20{font-size:19.859400px;}
.fs16{font-size:24.123600px;}
.fs1d{font-size:24.824400px;}
.fs14{font-size:30.000000px;}
.fs22{font-size:30.603000px;}
.fs12{font-size:31.320000px;}
.fs21{font-size:34.753800px;}
.fs11{font-size:34.800000px;}
.fs1b{font-size:38.529600px;}
.fsb{font-size:39.000000px;}
.fs1e{font-size:39.718800px;}
.fs9{font-size:40.535154px;}
.fs18{font-size:41.010600px;}
.fs19{font-size:41.310000px;}
.fsa{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fs25{font-size:48.964800px;}
.fs7{font-size:49.478028px;}
.fs15{font-size:51.000000px;}
.fs23{font-size:52.024800px;}
.fs1c{font-size:52.978200px;}
.fs1a{font-size:53.460000px;}
.fs10{font-size:54.000000px;}
.fs1f{font-size:54.613200px;}
.fs17{font-size:57.897000px;}
.fs2{font-size:58.478028px;}
.fs0{font-size:59.976564px;}
.fsf{font-size:60.000000px;}
.fs6{font-size:65.975100px;}
.fs24{font-size:67.326600px;}
.fs3{font-size:67.473630px;}
.fs5{font-size:71.969238px;}
.fse{font-size:72.000000px;}
.fs8{font-size:77.967774px;}
.fs13{font-size:78.000000px;}
.fs1{font-size:80.969238px;}
.fsd{font-size:84.000000px;}
.fs4{font-size:101.957520px;}
.y177{bottom:-7.265250px;}
.y0{bottom:0.000000px;}
.y295{bottom:2.781000px;}
.y25a{bottom:2.792250px;}
.y298{bottom:2.792700px;}
.y29e{bottom:2.793150px;}
.y12d{bottom:3.014850px;}
.y13a{bottom:3.015000px;}
.y136{bottom:3.015600px;}
.y132{bottom:3.015900px;}
.y13e{bottom:3.016050px;}
.y160{bottom:3.037500px;}
.y164{bottom:3.328800px;}
.y159{bottom:3.341250px;}
.y170{bottom:3.342000px;}
.y154{bottom:3.342300px;}
.y143{bottom:3.619350px;}
.y156{bottom:3.669300px;}
.y10f{bottom:3.777450px;}
.y18c{bottom:4.201200px;}
.y1a6{bottom:4.213350px;}
.y1ea{bottom:4.213800px;}
.y19b{bottom:4.214700px;}
.y12f{bottom:4.221450px;}
.y1ec{bottom:4.515750px;}
.y281{bottom:4.654500px;}
.y1c5{bottom:4.803450px;}
.y28f{bottom:4.964250px;}
.y283{bottom:4.964550px;}
.y28c{bottom:4.965000px;}
.y1f2{bottom:5.117100px;}
.y1f4{bottom:5.718600px;}
.y193{bottom:5.718750px;}
.y1ac{bottom:6.021000px;}
.y1af{bottom:6.320850px;}
.y19e{bottom:6.321750px;}
.y1a1{bottom:6.621750px;}
.y1bc{bottom:6.622050px;}
.y18e{bottom:6.622500px;}
.y1d0{bottom:6.622800px;}
.y1b3{bottom:6.623400px;}
.y1ef{bottom:6.923700px;}
.y1bf{bottom:6.923850px;}
.y1d5{bottom:6.924000px;}
.y1da{bottom:6.924300px;}
.y1e3{bottom:7.224150px;}
.y188{bottom:7.224450px;}
.y1fb{bottom:7.224750px;}
.y1de{bottom:7.513800px;}
.y194{bottom:7.520009px;}
.y1d3{bottom:7.524450px;}
.y1cb{bottom:7.525800px;}
.y1a9{bottom:7.525950px;}
.y1e8{bottom:7.526100px;}
.y1b6{bottom:7.825500px;}
.y1b9{bottom:7.826550px;}
.y1fd{bottom:7.826850px;}
.y1c7{bottom:7.827150px;}
.y198{bottom:8.114700px;}
.y1c2{bottom:8.428950px;}
.y191{bottom:9.631950px;}
.y1d8{bottom:9.632850px;}
.y202{bottom:10.123650px;}
.y1ba{bottom:11.438700px;}
.y1e0{bottom:12.027450px;}
.y1a2{bottom:12.039900px;}
.yfe{bottom:12.373800px;}
.yfc{bottom:12.375300px;}
.y10d{bottom:12.390450px;}
.y100{bottom:12.405300px;}
.y1bd{bottom:13.846350px;}
.y1b7{bottom:13.857750px;}
.y1f8{bottom:14.146950px;}
.y1ce{bottom:14.448750px;}
.y1aa{bottom:15.376350px;}
.y1e4{bottom:15.652500px;}
.y1a4{bottom:15.652800px;}
.y1c0{bottom:15.653250px;}
.y199{bottom:15.952950px;}
.y1b0{bottom:15.953250px;}
.y297{bottom:16.123350px;}
.y291{bottom:16.135200px;}
.y29c{bottom:16.136100px;}
.y294{bottom:16.434300px;}
.y1d4{bottom:16.550009px;}
.y1f7{bottom:16.551359px;}
.y19f{bottom:16.556100px;}
.y1ff{bottom:17.157900px;}
.y1cc{bottom:17.158200px;}
.y1b4{bottom:17.158800px;}
.y1f6{bottom:17.160646px;}
.y1dc{bottom:17.193000px;}
.y1c3{bottom:18.049200px;}
.y1c8{bottom:18.962204px;}
.y279{bottom:20.169750px;}
.y286{bottom:20.207400px;}
.y1e6{bottom:21.673350px;}
.y316{bottom:22.480200px;}
.y23{bottom:24.338400px;}
.y39{bottom:34.834350px;}
.y27d{bottom:35.710200px;}
.y22{bottom:37.988400px;}
.y106{bottom:38.280450px;}
.y29d{bottom:43.169700px;}
.y2f1{bottom:45.522300px;}
.y30a{bottom:45.522900px;}
.y2f3{bottom:45.904800px;}
.y2f7{bottom:45.905400px;}
.y2ed{bottom:46.287150px;}
.y109{bottom:63.750300px;}
.y102{bottom:63.750450px;}
.y2fb{bottom:64.265550px;}
.y201{bottom:83.334000px;}
.y117{bottom:84.679500px;}
.y5d{bottom:85.039500px;}
.y2d3{bottom:86.339850px;}
.y81{bottom:86.404050px;}
.y120{bottom:86.458500px;}
.yb4{bottom:86.554200px;}
.y33c{bottom:86.626500px;}
.yf6{bottom:86.694600px;}
.y366{bottom:87.312450px;}
.y234{bottom:87.357000px;}
.yd6{bottom:87.583950px;}
.y8e{bottom:87.684450px;}
.y14c{bottom:88.021500px;}
.y393{bottom:88.150500px;}
.y231{bottom:88.192350px;}
.y311{bottom:88.314900px;}
.y211{bottom:88.434450px;}
.y183{bottom:89.494500px;}
.y36{bottom:90.145500px;}
.y317{bottom:91.070700px;}
.y187{bottom:93.457500px;}
.y2ad{bottom:94.120500px;}
.y2d5{bottom:98.539500px;}
.y5c{bottom:102.994500px;}
.y365{bottom:103.812450px;}
.y392{bottom:104.650500px;}
.y2ac{bottom:105.601650px;}
.y116{bottom:106.729500px;}
.y182{bottom:107.246700px;}
.y189{bottom:108.207300px;}
.yb3{bottom:108.604050px;}
.y2d2{bottom:108.839850px;}
.y80{bottom:109.054200px;}
.y11f{bottom:109.108500px;}
.y33b{bottom:109.276500px;}
.yf5{bottom:109.344600px;}
.yd5{bottom:110.233950px;}
.y8d{bottom:110.334450px;}
.y315{bottom:110.580000px;}
.y14b{bottom:110.671650px;}
.y230{bottom:110.842200px;}
.y210{bottom:111.084450px;}
.y2d4{bottom:116.494500px;}
.y2ab{bottom:117.393150px;}
.y35{bottom:121.149450px;}
.y251{bottom:123.226800px;}
.y314{bottom:123.973477px;}
.y5b{bottom:125.044950px;}
.y181{bottom:125.178450px;}
.y2aa{bottom:126.393223px;}
.y391{bottom:127.528350px;}
.y364{bottom:127.965900px;}
.y115{bottom:128.779500px;}
.yb2{bottom:130.654050px;}
.y2d1{bottom:131.339850px;}
.y7f{bottom:131.704050px;}
.y11e{bottom:131.758350px;}
.y33a{bottom:131.926500px;}
.yf4{bottom:131.994750px;}
.yd4{bottom:132.884100px;}
.y8c{bottom:132.984450px;}
.y14a{bottom:133.321500px;}
.y22f{bottom:133.492350px;}
.y20f{bottom:133.734450px;}
.y2a9{bottom:140.665800px;}
.y18b{bottom:143.131500px;}
.y313{bottom:143.485950px;}
.y34{bottom:143.649450px;}
.y390{bottom:144.028350px;}
.y363{bottom:144.465900px;}
.y180{bottom:147.228450px;}
.y5a{bottom:147.695100px;}
.y114{bottom:150.829500px;}
.yb1{bottom:152.704050px;}
.y2d0{bottom:153.839850px;}
.y2a8{bottom:154.319100px;}
.y7e{bottom:154.354050px;}
.y11d{bottom:154.408500px;}
.y339{bottom:154.576500px;}
.yf3{bottom:154.644600px;}
.yd3{bottom:155.533950px;}
.y8b{bottom:155.634450px;}
.y149{bottom:155.971500px;}
.y22e{bottom:156.142200px;}
.y20e{bottom:156.384450px;}
.y312{bottom:156.874650px;}
.y362{bottom:160.965900px;}
.y33{bottom:166.149450px;}
.y38f{bottom:166.906350px;}
.y2a7{bottom:167.966250px;}
.y17f{bottom:169.278450px;}
.y18a{bottom:170.548193px;}
.y113{bottom:172.879500px;}
.yb0{bottom:174.754050px;}
.y2cf{bottom:176.339850px;}
.y310{bottom:176.414700px;}
.y7d{bottom:177.004050px;}
.y11c{bottom:177.058350px;}
.y338{bottom:177.226500px;}
.yf2{bottom:177.294600px;}
.yd2{bottom:178.183950px;}
.y8a{bottom:178.284450px;}
.y148{bottom:178.621650px;}
.y22d{bottom:178.792350px;}
.y20d{bottom:179.034450px;}
.y2a6{bottom:179.447400px;}
.y38e{bottom:183.406350px;}
.y361{bottom:185.119500px;}
.y1e1{bottom:185.597250px;}
.y30f{bottom:190.183027px;}
.y2a5{bottom:191.251350px;}
.y17e{bottom:191.328450px;}
.y112{bottom:194.929500px;}
.y18d{bottom:195.229500px;}
.yaf{bottom:196.804050px;}
.y32{bottom:197.153400px;}
.y2ce{bottom:198.839850px;}
.y7c{bottom:199.654050px;}
.y11b{bottom:199.708350px;}
.y337{bottom:199.876500px;}
.yf1{bottom:199.944600px;}
.yd1{bottom:200.833950px;}
.y89{bottom:200.934450px;}
.y147{bottom:201.271650px;}
.y22c{bottom:201.442350px;}
.y2a4{bottom:201.516150px;}
.y360{bottom:201.619500px;}
.y20c{bottom:201.684450px;}
.y38d{bottom:206.284350px;}
.y30e{bottom:209.695500px;}
.y18f{bottom:212.387400px;}
.y59{bottom:212.864700px;}
.y17d{bottom:213.378450px;}
.y111{bottom:216.979500px;}
.yae{bottom:218.854050px;}
.y2cd{bottom:221.339850px;}
.y7b{bottom:222.304050px;}
.y11a{bottom:222.358500px;}
.y336{bottom:222.526500px;}
.yf0{bottom:222.594600px;}
.y38c{bottom:222.784350px;}
.yd0{bottom:223.483950px;}
.y88{bottom:223.584450px;}
.y146{bottom:223.921500px;}
.y22b{bottom:224.092350px;}
.y30d{bottom:224.232000px;}
.y20b{bottom:224.334450px;}
.y35f{bottom:225.772950px;}
.y17c{bottom:235.428450px;}
.y58{bottom:235.514700px;}
.y1e{bottom:237.849607px;}
.y110{bottom:239.029500px;}
.yad{bottom:240.904050px;}
.y35e{bottom:242.272950px;}
.y2cc{bottom:243.839850px;}
.y190{bottom:244.596000px;}
.y7a{bottom:244.954050px;}
.y335{bottom:245.176500px;}
.yef{bottom:245.244600px;}
.y38b{bottom:245.662200px;}
.ycf{bottom:246.134100px;}
.y87{bottom:246.234450px;}
.y145{bottom:246.571500px;}
.y22a{bottom:246.742350px;}
.y20a{bottom:246.984450px;}
.y119{bottom:249.260400px;}
.y31{bottom:249.757350px;}
.y309{bottom:250.243500px;}
.y2a3{bottom:252.095400px;}
.y1d{bottom:252.691407px;}
.y125{bottom:253.641600px;}
.y17b{bottom:257.478450px;}
.y192{bottom:258.141150px;}
.y195{bottom:259.345200px;}
.y30c{bottom:260.954861px;}
.y38a{bottom:262.162200px;}
.yac{bottom:262.954050px;}
.y2a2{bottom:264.507450px;}
.y2cb{bottom:266.339850px;}
.y35d{bottom:266.426550px;}
.y79{bottom:267.604050px;}
.y334{bottom:267.826650px;}
.yee{bottom:267.894600px;}
.yce{bottom:268.784100px;}
.y86{bottom:268.884450px;}
.y124{bottom:269.020500px;}
.y229{bottom:269.392200px;}
.y209{bottom:269.634450px;}
.y29b{bottom:271.644000px;}
.y57{bottom:275.172600px;}
.yf9{bottom:276.079500px;}
.y30b{bottom:278.552250px;}
.y17a{bottom:279.528450px;}
.y30{bottom:280.761300px;}
.y2a1{bottom:281.263707px;}
.y118{bottom:282.390300px;}
.y35c{bottom:282.926550px;}
.yab{bottom:285.004050px;}
.y389{bottom:285.040200px;}
.y29a{bottom:287.777694px;}
.y2ca{bottom:288.839850px;}
.y1e2{bottom:288.880500px;}
.y78{bottom:290.254050px;}
.y333{bottom:290.476500px;}
.ycd{bottom:291.433950px;}
.y85{bottom:291.534450px;}
.y144{bottom:291.871650px;}
.y228{bottom:292.042350px;}
.y208{bottom:292.284450px;}
.y2a0{bottom:294.609224px;}
.y56{bottom:294.672600px;}
.y1c4{bottom:299.415750px;}
.y10e{bottom:300.106950px;}
.y299{bottom:301.470750px;}
.y388{bottom:301.540200px;}
.y179{bottom:301.578450px;}
.y1fa{bottom:301.823850px;}
.y2f{bottom:303.261300px;}
.yed{bottom:303.300600px;}
.y123{bottom:304.830000px;}
.yaa{bottom:307.054050px;}
.y35b{bottom:307.080150px;}
.y126{bottom:307.801050px;}
.y29f{bottom:307.974600px;}
.y306{bottom:310.348500px;}
.y2c9{bottom:311.339850px;}
.y77{bottom:312.904050px;}
.y332{bottom:313.126500px;}
.ycc{bottom:314.083950px;}
.y55{bottom:314.172600px;}
.y84{bottom:314.184450px;}
.y10c{bottom:314.386500px;}
.y227{bottom:314.692350px;}
.y142{bottom:314.760000px;}
.y207{bottom:314.934450px;}
.y308{bottom:321.046105px;}
.y1f3{bottom:321.678600px;}
.y1f1{bottom:321.991650px;}
.y35a{bottom:323.580150px;}
.y387{bottom:324.418050px;}
.y140{bottom:325.616400px;}
.y2e{bottom:325.761300px;}
.y296{bottom:325.984500px;}
.y197{bottom:327.109500px;}
.ya9{bottom:329.104050px;}
.y141{bottom:330.441000px;}
.y54{bottom:333.672600px;}
.y2c8{bottom:333.839850px;}
.y76{bottom:335.554050px;}
.y331{bottom:335.776500px;}
.y1e5{bottom:335.838150px;}
.ycb{bottom:336.733950px;}
.yc6{bottom:336.834450px;}
.y226{bottom:337.342350px;}
.y206{bottom:337.584450px;}
.y307{bottom:338.656500px;}
.y386{bottom:340.918050px;}
.y108{bottom:341.011500px;}
.y178{bottom:343.128450px;}
.y359{bottom:347.733600px;}
.y13f{bottom:348.847650px;}
.y83{bottom:349.590300px;}
.ya8{bottom:351.154050px;}
.y186{bottom:352.194300px;}
.y53{bottom:353.172600px;}
.y293{bottom:353.290500px;}
.y10b{bottom:353.386800px;}
.yec{bottom:354.338400px;}
.yfa{bottom:354.882300px;}
.y1c{bottom:355.628918px;}
.y13c{bottom:356.072700px;}
.y2c7{bottom:356.339850px;}
.y2d{bottom:356.765250px;}
.y385{bottom:357.418050px;}
.y75{bottom:358.204050px;}
.y330{bottom:358.426500px;}
.y176{bottom:359.004000px;}
.yca{bottom:359.384100px;}
.yc5{bottom:359.484450px;}
.y225{bottom:359.992350px;}
.y205{bottom:360.234450px;}
.y13d{bottom:361.198500px;}
.y1f5{bottom:361.424100px;}
.y1c6{bottom:362.315250px;}
.y358{bottom:364.233600px;}
.y175{bottom:365.103000px;}
.y19a{bottom:367.167000px;}
.y52{bottom:372.672600px;}
.y82{bottom:372.990300px;}
.ya7{bottom:373.204050px;}
.y173{bottom:376.038750px;}
.y1b{bottom:376.728524px;}
.yeb{bottom:376.988400px;}
.y2c6{bottom:378.839850px;}
.y10a{bottom:378.886800px;}
.y13b{bottom:379.593450px;}
.y174{bottom:380.290500px;}
.y384{bottom:380.296050px;}
.y74{bottom:380.854050px;}
.y290{bottom:380.908500px;}
.y32f{bottom:381.076650px;}
.y302{bottom:381.499373px;}
.y305{bottom:381.500700px;}
.yc9{bottom:382.034100px;}
.yc4{bottom:382.134450px;}
.y224{bottom:382.642200px;}
.y204{bottom:382.884450px;}
.y138{bottom:386.830650px;}
.y357{bottom:388.387200px;}
.y292{bottom:390.217050px;}
.y51{bottom:392.172600px;}
.y139{bottom:392.259000px;}
.ya6{bottom:395.254050px;}
.y172{bottom:395.478000px;}
.y383{bottom:396.796050px;}
.y1a{bottom:397.863290px;}
.y301{bottom:399.096761px;}
.y304{bottom:399.098089px;}
.y1fc{bottom:399.375750px;}
.yea{bottom:399.638400px;}
.y1f0{bottom:399.676800px;}
.y2c5{bottom:401.339850px;}
.y19c{bottom:402.385800px;}
.y73{bottom:403.504050px;}
.y32e{bottom:403.726500px;}
.yc8{bottom:404.683950px;}
.yc3{bottom:404.784450px;}
.y356{bottom:404.887200px;}
.y223{bottom:405.292350px;}
.y19d{bottom:406.900500px;}
.y28e{bottom:408.240000px;}
.y185{bottom:408.789900px;}
.y2c{bottom:409.369200px;}
.y137{bottom:410.652900px;}
.y171{bottom:410.665500px;}
.y50{bottom:411.672600px;}
.y382{bottom:413.296050px;}
.y16e{bottom:414.007500px;}
.y300{bottom:416.694150px;}
.y303{bottom:416.695477px;}
.ya5{bottom:417.304050px;}
.y134{bottom:417.926250px;}
.y203{bottom:418.290300px;}
.y19{bottom:418.857427px;}
.y105{bottom:419.026500px;}
.ye9{bottom:422.288400px;}
.y135{bottom:423.052500px;}
.y1e7{bottom:423.757650px;}
.y2c4{bottom:423.839850px;}
.y16f{bottom:425.853000px;}
.y72{bottom:426.154050px;}
.y32d{bottom:426.376500px;}
.yc2{bottom:427.434450px;}
.y222{bottom:427.942350px;}
.y28d{bottom:429.029700px;}
.y355{bottom:429.040650px;}
.y4f{bottom:431.172600px;}
.y2fa{bottom:431.262000px;}
.y107{bottom:431.431950px;}
.y381{bottom:436.174050px;}
.y169{bottom:436.813050px;}
.y1fe{bottom:437.604150px;}
.y1d1{bottom:438.507300px;}
.ya4{bottom:439.354050px;}
.y18{bottom:439.957032px;}
.yc7{bottom:440.089950px;}
.y28b{bottom:440.200500px;}
.y2b{bottom:440.373150px;}
.y16d{bottom:441.064500px;}
.y133{bottom:441.447000px;}
.y2fe{bottom:443.113153px;}
.ye8{bottom:444.938400px;}
.y1a0{bottom:445.431000px;}
.y354{bottom:445.540650px;}
.y2c3{bottom:446.339850px;}
.y130{bottom:448.684200px;}
.y71{bottom:448.804050px;}
.y32c{bottom:449.026500px;}
.yc1{bottom:450.084450px;}
.y221{bottom:450.592350px;}
.y4e{bottom:450.672600px;}
.y380{bottom:452.674050px;}
.y131{bottom:453.810000px;}
.y16c{bottom:456.252000px;}
.y16a{bottom:459.595515px;}
.y2ff{bottom:460.333361px;}
.y2fd{bottom:460.710541px;}
.y28a{bottom:460.995859px;}
.ya3{bottom:461.404050px;}
.y353{bottom:462.040650px;}
.y2a{bottom:462.873150px;}
.ye7{bottom:467.588400px;}
.y12e{bottom:468.285000px;}
.y2c2{bottom:468.839850px;}
.y1d2{bottom:468.945450px;}
.y4d{bottom:470.172600px;}
.y16b{bottom:471.439500px;}
.y70{bottom:471.454050px;}
.y101{bottom:471.556500px;}
.y32b{bottom:471.676500px;}
.yc0{bottom:472.734450px;}
.y17{bottom:472.810547px;}
.y220{bottom:473.242350px;}
.y1a3{bottom:474.664500px;}
.y37f{bottom:475.552050px;}
.y288{bottom:476.506050px;}
.y2fc{bottom:477.930750px;}
.y12b{bottom:479.743500px;}
.ya2{bottom:483.454050px;}
.y104{bottom:483.931950px;}
.y12c{bottom:484.870500px;}
.y29{bottom:485.373150px;}
.y352{bottom:486.194250px;}
.y168{bottom:486.627000px;}
.y4c{bottom:489.672600px;}
.ye6{bottom:490.238400px;}
.y2c1{bottom:491.339850px;}
.y289{bottom:492.016241px;}
.y184{bottom:493.211850px;}
.y6f{bottom:494.104050px;}
.y32a{bottom:494.326650px;}
.ybf{bottom:495.384450px;}
.y21f{bottom:495.892200px;}
.y166{bottom:497.563050px;}
.y37e{bottom:498.430050px;}
.y1f9{bottom:499.046700px;}
.y167{bottom:501.814500px;}
.y351{bottom:502.694250px;}
.y285{bottom:503.191500px;}
.ya1{bottom:505.504050px;}
.y287{bottom:507.846600px;}
.y28{bottom:507.873150px;}
.y4b{bottom:509.172600px;}
.y103{bottom:509.431950px;}
.y2f6{bottom:510.063000px;}
.ye5{bottom:512.888400px;}
.y1a5{bottom:513.195000px;}
.y2c0{bottom:513.839850px;}
.y37d{bottom:514.930050px;}
.y284{bottom:515.641350px;}
.y129{bottom:516.244012px;}
.y128{bottom:516.254265px;}
.y6e{bottom:516.754050px;}
.y329{bottom:516.976500px;}
.y165{bottom:517.002000px;}
.ybe{bottom:518.034450px;}
.y21e{bottom:518.542350px;}
.y2f9{bottom:520.774361px;}
.y350{bottom:526.847850px;}
.ya0{bottom:527.554050px;}
.y12a{bottom:530.115847px;}
.y127{bottom:530.126100px;}
.y37c{bottom:531.430050px;}
.y163{bottom:532.203000px;}
.y4a{bottom:532.924650px;}
.y282{bottom:534.570000px;}
.y161{bottom:535.531800px;}
.ye4{bottom:535.538400px;}
.y2bf{bottom:536.339850px;}
.y16{bottom:537.146486px;}
.y2f8{bottom:538.371750px;}
.y27{bottom:538.876950px;}
.y6d{bottom:539.404050px;}
.y328{bottom:539.626500px;}
.ybd{bottom:540.684450px;}
.y21d{bottom:541.192350px;}
.y34f{bottom:543.347850px;}
.y162{bottom:547.414500px;}
.y37b{bottom:547.930050px;}
.y1a7{bottom:548.713650px;}
.yff{bottom:549.556500px;}
.y9f{bottom:549.604050px;}
.y280{bottom:550.705500px;}
.y15{bottom:551.988286px;}
.y1a8{bottom:552.927000px;}
.y49{bottom:555.574650px;}
.y15b{bottom:558.045750px;}
.ye3{bottom:558.188250px;}
.y2be{bottom:558.839850px;}
.y34e{bottom:559.847850px;}
.y6c{bottom:562.054050px;}
.y327{bottom:562.276500px;}
.y15f{bottom:562.602000px;}
.ybc{bottom:563.334450px;}
.y21c{bottom:563.842350px;}
.y14{bottom:566.835937px;}
.y2f0{bottom:570.550500px;}
.y37a{bottom:570.807900px;}
.y122{bottom:570.852150px;}
.y27f{bottom:571.495800px;}
.y9e{bottom:571.654050px;}
.yfd{bottom:576.213000px;}
.y15e{bottom:577.182000px;}
.y15c{bottom:580.828215px;}
.ye2{bottom:580.838400px;}
.y2f5{bottom:581.261111px;}
.y2bd{bottom:581.339850px;}
.y13{bottom:581.677738px;}
.y27c{bottom:582.666000px;}
.y34d{bottom:584.001300px;}
.y1d6{bottom:584.257050px;}
.y6b{bottom:584.704050px;}
.y326{bottom:584.926500px;}
.ybb{bottom:585.984450px;}
.y21b{bottom:586.492350px;}
.y379{bottom:587.307900px;}
.y27e{bottom:587.633829px;}
.y121{bottom:588.304050px;}
.y1ab{bottom:591.781500px;}
.y15d{bottom:592.369500px;}
.y196{bottom:592.385430px;}
.y9d{bottom:593.704050px;}
.y12{bottom:596.455080px;}
.y2f4{bottom:598.858500px;}
.y34c{bottom:600.501300px;}
.y27b{bottom:602.836200px;}
.yfb{bottom:602.836500px;}
.ye1{bottom:603.488400px;}
.y2bc{bottom:603.839850px;}
.y6a{bottom:607.354050px;}
.y15a{bottom:607.557000px;}
.y325{bottom:607.576500px;}
.yba{bottom:608.634450px;}
.y21a{bottom:609.142200px;}
.y378{bottom:610.185900px;}
.y9c{bottom:615.754050px;}
.y157{bottom:618.492000px;}
.y2f2{bottom:619.898100px;}
.y48{bottom:620.744250px;}
.y2eb{bottom:621.725250px;}
.y158{bottom:622.744500px;}
.y11{bottom:624.123045px;}
.y34b{bottom:624.654900px;}
.ye0{bottom:626.138400px;}
.y2bb{bottom:626.339850px;}
.y377{bottom:626.685900px;}
.y1e9{bottom:629.408850px;}
.y278{bottom:629.547000px;}
.y69{bottom:630.004050px;}
.y324{bottom:630.226650px;}
.y2ec{bottom:630.609000px;}
.y1ad{bottom:631.214850px;}
.yb9{bottom:631.284450px;}
.y219{bottom:631.792350px;}
.y27a{bottom:634.511850px;}
.y1ae{bottom:636.934500px;}
.y9b{bottom:637.804050px;}
.y155{bottom:637.932000px;}
.y10{bottom:638.894525px;}
.y34a{bottom:641.154900px;}
.y2ef{bottom:641.702111px;}
.y376{bottom:643.185900px;}
.y1c9{bottom:643.255350px;}
.y47{bottom:643.394250px;}
.y2ea{bottom:645.060000px;}
.y26{bottom:645.526950px;}
.ydf{bottom:648.788400px;}
.y2ba{bottom:648.839850px;}
.y152{bottom:649.195050px;}
.yf8{bottom:650.652150px;}
.y68{bottom:652.654050px;}
.y323{bottom:652.876500px;}
.yb8{bottom:653.934450px;}
.y153{bottom:654.054000px;}
.y218{bottom:654.442350px;}
.y349{bottom:657.654900px;}
.y2ee{bottom:659.299500px;}
.y9a{bottom:659.854050px;}
.y375{bottom:666.063750px;}
.yf{bottom:666.568353px;}
.y277{bottom:666.783300px;}
.y1d7{bottom:667.336200px;}
.yf7{bottom:668.104050px;}
.y2e9{bottom:668.777400px;}
.y1eb{bottom:669.768300px;}
.y2b9{bottom:671.339850px;}
.yde{bottom:671.438250px;}
.y1ca{bottom:674.283000px;}
.y67{bottom:675.304050px;}
.y322{bottom:675.526500px;}
.y150{bottom:676.223332px;}
.yb7{bottom:676.584450px;}
.y25{bottom:677.026950px;}
.y217{bottom:677.092350px;}
.ye{bottom:681.410153px;}
.y348{bottom:681.808350px;}
.y99{bottom:681.904050px;}
.y374{bottom:682.563750px;}
.y46{bottom:683.052150px;}
.y14f{bottom:683.215050px;}
.y276{bottom:684.780900px;}
.y1b1{bottom:685.722000px;}
.y151{bottom:690.196440px;}
.y2e8{bottom:692.112150px;}
.y2b8{bottom:693.839850px;}
.ydd{bottom:694.088400px;}
.yd{bottom:696.251954px;}
.y66{bottom:697.954050px;}
.y321{bottom:698.176500px;}
.y347{bottom:698.308350px;}
.y216{bottom:699.742350px;}
.y275{bottom:701.847600px;}
.y45{bottom:702.552150px;}
.y98{bottom:703.954050px;}
.y373{bottom:705.441750px;}
.y1d9{bottom:705.889800px;}
.y24{bottom:708.526950px;}
.y1ed{bottom:711.006900px;}
.yc{bottom:711.029297px;}
.yb6{bottom:711.990300px;}
.y2d7{bottom:712.602150px;}
.y2e7{bottom:715.447050px;}
.y1b2{bottom:715.521000px;}
.y2b7{bottom:716.339850px;}
.ydc{bottom:716.738400px;}
.y274{bottom:719.224500px;}
.y14e{bottom:719.952150px;}
.y65{bottom:720.604050px;}
.y320{bottom:720.826500px;}
.y372{bottom:721.941750px;}
.y44{bottom:722.052150px;}
.y215{bottom:722.392200px;}
.y346{bottom:722.461950px;}
.y97{bottom:726.004050px;}
.y2d6{bottom:730.054050px;}
.yb5{bottom:735.390300px;}
.y273{bottom:737.259150px;}
.y14d{bottom:737.404050px;}
.y2e6{bottom:738.812250px;}
.y2b6{bottom:738.839850px;}
.y345{bottom:738.961950px;}
.y43{bottom:741.552150px;}
.y64{bottom:743.254050px;}
.y31f{bottom:743.476650px;}
.y1cd{bottom:743.817150px;}
.y371{bottom:743.969400px;}
.y214{bottom:745.042350px;}
.y96{bottom:748.054050px;}
.y1db{bottom:748.344450px;}
.y250{bottom:749.349000px;}
.y1b5{bottom:755.557500px;}
.ydb{bottom:756.396300px;}
.y272{bottom:758.642572px;}
.y370{bottom:760.469400px;}
.y42{bottom:761.052150px;}
.y2b5{bottom:761.339850px;}
.y2e5{bottom:762.147000px;}
.y344{bottom:763.115550px;}
.y269{bottom:765.474206px;}
.y259{bottom:765.476623px;}
.y24f{bottom:765.476762px;}
.y63{bottom:765.904050px;}
.y31e{bottom:766.126500px;}
.y213{bottom:767.692350px;}
.y95{bottom:770.104050px;}
.y271{bottom:772.295910px;}
.y261{bottom:772.305839px;}
.y36f{bottom:776.969400px;}
.yda{bottom:777.546150px;}
.y268{bottom:778.819723px;}
.y258{bottom:778.822139px;}
.y24e{bottom:778.822279px;}
.y343{bottom:779.615550px;}
.y41{bottom:780.552150px;}
.y2b4{bottom:783.839850px;}
.y2e4{bottom:785.481900px;}
.y270{bottom:785.641426px;}
.y260{bottom:785.651356px;}
.y62{bottom:788.554200px;}
.y31d{bottom:788.776650px;}
.y1b8{bottom:791.112000px;}
.y94{bottom:792.154050px;}
.y267{bottom:792.165239px;}
.y257{bottom:792.167656px;}
.y24d{bottom:792.167796px;}
.y212{bottom:794.594250px;}
.yd9{bottom:798.696300px;}
.y26f{bottom:798.986943px;}
.y25f{bottom:798.996873px;}
.y36e{bottom:798.996900px;}
.y40{bottom:800.052150px;}
.y342{bottom:803.769150px;}
.y1dd{bottom:804.356700px;}
.y266{bottom:805.510756px;}
.y256{bottom:805.513173px;}
.y249{bottom:805.513312px;}
.y2b3{bottom:806.339850px;}
.y246{bottom:806.629650px;}
.y2e3{bottom:808.816650px;}
.y61{bottom:811.204050px;}
.y31c{bottom:811.426500px;}
.y26e{bottom:812.332460px;}
.y25e{bottom:812.342390px;}
.y93{bottom:814.204050px;}
.y245{bottom:815.007900px;}
.y36d{bottom:815.496900px;}
.y265{bottom:819.164094px;}
.y255{bottom:819.166510px;}
.y248{bottom:819.166650px;}
.y3f{bottom:819.552150px;}
.yd8{bottom:819.846150px;}
.y341{bottom:820.269150px;}
.y1bb{bottom:821.815500px;}
.y244{bottom:823.386000px;}
.y26d{bottom:825.677977px;}
.y25d{bottom:825.687907px;}
.y2b2{bottom:828.839850px;}
.y243{bottom:831.764250px;}
.y2e2{bottom:832.151400px;}
.y264{bottom:832.539400px;}
.y254{bottom:832.541816px;}
.y24c{bottom:832.541956px;}
.y60{bottom:833.854050px;}
.y31b{bottom:834.076500px;}
.y92{bottom:836.254050px;}
.y200{bottom:837.166950px;}
.y36c{bottom:837.524400px;}
.y1ee{bottom:838.972950px;}
.y3e{bottom:839.052150px;}
.y26c{bottom:839.053283px;}
.y25c{bottom:839.063213px;}
.y242{bottom:840.142350px;}
.y1cf{bottom:840.177000px;}
.yd7{bottom:840.996150px;}
.yb{bottom:843.287109px;}
.y340{bottom:844.422600px;}
.y263{bottom:845.884916px;}
.y253{bottom:845.887333px;}
.y24b{bottom:845.887473px;}
.y241{bottom:848.545350px;}
.y2b1{bottom:851.339850px;}
.y26b{bottom:852.706620px;}
.y25b{bottom:852.716550px;}
.y395{bottom:853.174050px;}
.y36b{bottom:854.024400px;}
.y1be{bottom:854.625000px;}
.y2e1{bottom:855.868800px;}
.y5f{bottom:856.504050px;}
.y31a{bottom:856.726650px;}
.y240{bottom:856.923450px;}
.y91{bottom:858.304200px;}
.y3d{bottom:858.552150px;}
.y262{bottom:859.230433px;}
.y252{bottom:859.232850px;}
.y24a{bottom:859.232990px;}
.y33f{bottom:860.922600px;}
.y23f{bottom:865.301700px;}
.y26a{bottom:866.052137px;}
.y394{bottom:869.674050px;}
.y36a{bottom:870.524400px;}
.y23e{bottom:873.679800px;}
.y2b0{bottom:873.839850px;}
.y3c{bottom:878.052150px;}
.y5e{bottom:879.154050px;}
.y2e0{bottom:879.249450px;}
.y319{bottom:879.376500px;}
.y90{bottom:880.354050px;}
.y23d{bottom:882.057900px;}
.y33e{bottom:885.076200px;}
.y247{bottom:885.608550px;}
.ya{bottom:887.214849px;}
.y23c{bottom:890.436150px;}
.y1c1{bottom:891.685500px;}
.y369{bottom:892.552050px;}
.y2af{bottom:896.339850px;}
.y23b{bottom:898.814250px;}
.y33d{bottom:901.576200px;}
.y3b{bottom:901.804200px;}
.y8f{bottom:902.404050px;}
.y2df{bottom:902.584200px;}
.y23a{bottom:907.192500px;}
.y368{bottom:909.052050px;}
.y233{bottom:909.198000px;}
.y9{bottom:912.574218px;}
.y318{bottom:914.782500px;}
.y239{bottom:915.570600px;}
.y2ae{bottom:923.091750px;}
.y238{bottom:923.948850px;}
.y3a{bottom:924.454050px;}
.y367{bottom:925.552050px;}
.y2de{bottom:925.919100px;}
.y232{bottom:926.649900px;}
.y1df{bottom:928.999500px;}
.y237{bottom:932.326950px;}
.y236{bottom:940.705200px;}
.y8{bottom:940.939464px;}
.y235{bottom:949.083150px;}
.y2dd{bottom:949.253850px;}
.y38{bottom:956.767500px;}
.y21{bottom:957.667350px;}
.y37{bottom:967.827750px;}
.y7{bottom:968.900396px;}
.y20{bottom:970.267500px;}
.y2dc{bottom:972.588600px;}
.y2db{bottom:995.953950px;}
.y6{bottom:996.861329px;}
.y2da{bottom:1019.288700px;}
.y2d9{bottom:1042.623600px;}
.y2d8{bottom:1066.340850px;}
.y5{bottom:1072.669924px;}
.y4{bottom:1089.533204px;}
.y1{bottom:1100.390625px;}
.y3{bottom:1106.132812px;}
.y2{bottom:1137.287109px;}
.y1f{bottom:1204.458984px;}
.h30{height:13.569000px;}
.h31{height:13.570500px;}
.h2e{height:13.870500px;}
.h37{height:13.972500px;}
.h35{height:14.580000px;}
.h38{height:14.599500px;}
.h39{height:14.611500px;}
.h32{height:15.078000px;}
.h60{height:15.205500px;}
.h69{height:15.337777px;}
.h6b{height:15.338377px;}
.h6a{height:15.362977px;}
.h61{height:15.514500px;}
.h36{height:15.522000px;}
.h2f{height:15.981000px;}
.h29{height:17.444849px;}
.h58{height:18.048599px;}
.h20{height:19.995117px;}
.h70{height:22.249935px;}
.h7b{height:23.358696px;}
.h6c{height:25.267777px;}
.h21{height:25.873500px;}
.h27{height:25.875000px;}
.h24{height:25.914000px;}
.h66{height:26.685000px;}
.h64{height:26.718000px;}
.h65{height:26.995500px;}
.h3d{height:28.012976px;}
.h59{height:28.877585px;}
.h45{height:28.926000px;}
.h19{height:28.964883px;}
.h5f{height:28.993948px;}
.h2b{height:29.656591px;}
.h34{height:30.155493px;}
.h15{height:30.228516px;}
.h4b{height:30.402000px;}
.h6e{height:30.659180px;}
.h5c{height:30.720000px;}
.h62{height:30.750000px;}
.hc{height:31.292031px;}
.h4c{height:32.509500px;}
.h18{height:34.828125px;}
.h4a{height:35.248500px;}
.h56{height:35.310177px;}
.h7c{height:35.599896px;}
.h3b{height:35.631299px;}
.h68{height:36.399911px;}
.h4d{height:36.754500px;}
.h23{height:36.880371px;}
.h48{height:37.054500px;}
.h22{height:37.104492px;}
.h1a{height:37.800000px;}
.h72{height:37.824671px;}
.h75{height:37.827026px;}
.h77{height:37.829980px;}
.h52{height:37.927500px;}
.h8{height:38.195685px;}
.h44{height:38.229000px;}
.h46{height:38.560500px;}
.h2a{height:38.588577px;}
.hf{height:38.841797px;}
.h1e{height:39.418945px;}
.h43{height:39.432000px;}
.h49{height:39.735000px;}
.h42{height:39.763500px;}
.h1{height:39.974614px;}
.h4f{height:40.938000px;}
.h6d{height:43.359375px;}
.h17{height:43.535156px;}
.h1b{height:43.798828px;}
.h40{height:43.977000px;}
.h10{height:44.390625px;}
.h47{height:44.851500px;}
.h7a{height:44.873442px;}
.h3{height:45.143439px;}
.hb{height:45.392419px;}
.h4e{height:45.453000px;}
.h5e{height:46.266000px;}
.h14{height:48.600797px;}
.h3f{height:48.763500px;}
.ha{height:48.906671px;}
.h3c{height:49.065000px;}
.h1d{height:49.939453px;}
.h7{height:50.930973px;}
.h3e{height:51.490500px;}
.h26{height:51.772500px;}
.h4{height:52.087797px;}
.h67{height:53.713500px;}
.h13{height:55.488281px;}
.h16{height:55.810547px;}
.h5a{height:56.164400px;}
.h2d{height:57.379757px;}
.h33{height:58.081053px;}
.h5d{height:58.666685px;}
.h73{height:59.293500px;}
.h79{height:59.332500px;}
.h78{height:59.676000px;}
.h74{height:59.715000px;}
.h63{height:60.056843px;}
.h71{height:60.082500px;}
.h9{height:60.188990px;}
.h6{height:61.075457px;}
.h2{height:62.506038px;}
.h50{height:63.213000px;}
.h41{height:65.348158px;}
.h51{height:65.952000px;}
.h12{height:66.972656px;}
.h54{height:67.455000px;}
.h1c{height:72.553711px;}
.h25{height:77.251500px;}
.h53{height:77.962500px;}
.h76{height:78.037500px;}
.h11{height:78.134766px;}
.h5{height:83.139189px;}
.h2c{height:85.102922px;}
.h5b{height:133.764000px;}
.h28{height:256.212000px;}
.h3a{height:346.992000px;}
.h1f{height:358.374000px;}
.h6f{height:611.806500px;}
.h57{height:805.555500px;}
.h55{height:853.804500px;}
.hd{height:1020.472500px;}
.he{height:1020.750000px;}
.h0{height:1261.500000px;}
.w23{width:18.060000px;}
.w1f{width:25.887000px;}
.w1d{width:25.905000px;}
.w21{width:25.917000px;}
.w1e{width:26.188500px;}
.w25{width:26.218500px;}
.w22{width:36.723000px;}
.w10{width:41.946000px;}
.wd{width:42.247500px;}
.we{width:42.547500px;}
.w20{width:44.580000px;}
.w24{width:44.881500px;}
.wc{width:50.659500px;}
.wf{width:50.689500px;}
.w14{width:51.334500px;}
.w15{width:57.742500px;}
.w16{width:58.653000px;}
.wa{width:59.104500px;}
.w17{width:60.019500px;}
.w2a{width:60.850500px;}
.w29{width:61.440000px;}
.w18{width:64.699500px;}
.w1c{width:68.661000px;}
.w2b{width:78.537000px;}
.w19{width:79.005000px;}
.w1a{width:84.624000px;}
.w2d{width:87.537000px;}
.w28{width:87.568500px;}
.wb{width:93.237000px;}
.w2c{width:95.914500px;}
.w31{width:96.820500px;}
.w33{width:97.203000px;}
.w32{width:107.913000px;}
.w30{width:108.334500px;}
.w11{width:109.683000px;}
.w2e{width:114.253500px;}
.w6{width:116.052000px;}
.w12{width:119.275500px;}
.w9{width:136.662000px;}
.w8{width:153.246000px;}
.w4{width:159.030000px;}
.w5{width:202.200000px;}
.w13{width:229.573500px;}
.w26{width:377.362500px;}
.w3{width:477.283500px;}
.w7{width:530.067000px;}
.w2f{width:531.496500px;}
.w1b{width:553.827000px;}
.w27{width:596.883000px;}
.w1{width:722.835000px;}
.w2{width:723.000000px;}
.w0{width:892.500000px;}
.x22{left:-69.457200px;}
.x0{left:0.000000px;}
.x9b{left:3.413550px;}
.x90{left:4.654650px;}
.x23{left:7.455300px;}
.x27{left:9.045900px;}
.x36{left:10.578750px;}
.x34{left:12.061650px;}
.x39{left:13.268700px;}
.x3e{left:14.474700px;}
.x3d{left:16.005750px;}
.x31{left:17.490450px;}
.x3c{left:19.286850px;}
.x4a{left:20.946450px;}
.x4f{left:22.197450px;}
.x4e{left:23.691900px;}
.x4c{left:26.121900px;}
.x47{left:28.272900px;}
.xa5{left:29.456100px;}
.x33{left:30.480150px;}
.x45{left:32.197650px;}
.x9a{left:33.226500px;}
.x3a{left:34.701750px;}
.x51{left:35.866650px;}
.x95{left:37.570800px;}
.x97{left:41.581200px;}
.x5b{left:44.580000px;}
.x48{left:45.866400px;}
.x5d{left:49.398646px;}
.x15{left:51.023550px;}
.x49{left:53.180400px;}
.x30{left:59.127300px;}
.x2d{left:64.555950px;}
.x2f{left:67.269900px;}
.x77{left:80.838000px;}
.x50{left:84.175350px;}
.x54{left:86.629500px;}
.x8f{left:89.040150px;}
.x4d{left:90.238200px;}
.x16{left:93.543300px;}
.x5{left:97.795350px;}
.x29{left:101.495100px;}
.x28{left:103.304400px;}
.xab{left:106.995750px;}
.x2a{left:109.369135px;}
.x17{left:114.803100px;}
.x1d{left:119.055150px;}
.x21{left:120.649500px;}
.x3{left:127.558593px;}
.x1e{left:140.314950px;}
.x7{left:141.554100px;}
.x91{left:146.446500px;}
.x56{left:152.287200px;}
.x6{left:154.976400px;}
.x93{left:161.684417px;}
.x98{left:166.640756px;}
.x92{left:168.198300px;}
.x18{left:170.043300px;}
.x58{left:189.820500px;}
.x3f{left:201.249450px;}
.x55{left:205.501350px;}
.x19{left:207.543300px;}
.x5c{left:213.028650px;}
.x7d{left:215.348463px;}
.x5a{left:217.847146px;}
.x7c{left:219.072101px;}
.x20{left:223.078500px;}
.x7a{left:224.394420px;}
.x5e{left:226.268309px;}
.x7b{left:228.733699px;}
.x7e{left:230.590553px;}
.x59{left:232.594350px;}
.x76{left:234.874350px;}
.x99{left:236.804016px;}
.x94{left:241.161736px;}
.x1{left:244.488282px;}
.x41{left:245.971950px;}
.xa{left:248.173350px;}
.x8{left:251.332350px;}
.x60{left:259.089000px;}
.x2c{left:261.098103px;}
.x10{left:262.465050px;}
.x2{left:265.746093px;}
.x2b{left:271.955659px;}
.x61{left:275.976150px;}
.x24{left:279.679500px;}
.x5f{left:285.307500px;}
.x26{left:287.929800px;}
.x81{left:295.769794px;}
.x62{left:298.552050px;}
.x7f{left:303.236929px;}
.x63{left:304.270500px;}
.x80{left:305.411533px;}
.x83{left:308.519529px;}
.x82{left:311.309775px;}
.xae{left:318.998100px;}
.x42{left:320.303002px;}
.xa9{left:322.440900px;}
.x1c{left:325.473150px;}
.x78{left:328.254150px;}
.xac{left:329.323733px;}
.x1b{left:331.271850px;}
.x14{left:334.461450px;}
.xb{left:335.956350px;}
.x43{left:337.353705px;}
.x9c{left:339.244783px;}
.x1f{left:342.267000px;}
.x64{left:343.727850px;}
.x40{left:346.518900px;}
.x66{left:349.749000px;}
.x38{left:354.017400px;}
.x67{left:366.303750px;}
.x65{left:375.635100px;}
.xa0{left:381.165000px;}
.x87{left:382.411084px;}
.x75{left:383.682450px;}
.x68{left:389.180550px;}
.x85{left:391.099571px;}
.x32{left:393.822000px;}
.x6a{left:394.894500px;}
.x84{left:400.403700px;}
.xa1{left:402.819000px;}
.x86{left:403.819517px;}
.x79{left:409.092150px;}
.x44{left:410.883000px;}
.xa2{left:413.148150px;}
.xe{left:418.104750px;}
.x69{left:421.111950px;}
.xa6{left:425.389350px;}
.x11{left:427.501800px;}
.xad{left:432.268657px;}
.x6b{left:434.356500px;}
.xa7{left:436.860818px;}
.x6c{left:440.076000px;}
.x3b{left:445.108500px;}
.x12{left:452.118450px;}
.xf{left:455.461200px;}
.xd{left:458.124300px;}
.x9{left:462.316800px;}
.xc{left:468.297600px;}
.x13{left:471.888000px;}
.x52{left:476.226000px;}
.x6e{left:477.406500px;}
.x9d{left:480.486600px;}
.x25{left:481.879500px;}
.x89{left:483.594727px;}
.x2e{left:487.663500px;}
.x88{left:492.591035px;}
.x6f{left:494.293800px;}
.x9e{left:496.930183px;}
.x8a{left:498.489277px;}
.x6d{left:503.625150px;}
.xa3{left:511.491000px;}
.x70{left:516.869700px;}
.x46{left:521.181000px;}
.x72{left:522.889500px;}
.xa4{left:524.497200px;}
.xa8{left:528.322500px;}
.x73{left:535.532400px;}
.xaa{left:537.882057px;}
.x35{left:538.926000px;}
.x71{left:544.863750px;}
.x74{left:554.219250px;}
.x53{left:555.832500px;}
.x96{left:559.960500px;}
.x8d{left:571.144891px;}
.x8b{left:574.242958px;}
.x4b{left:580.437000px;}
.x37{left:581.770500px;}
.x57{left:584.925000px;}
.x9f{left:586.945050px;}
.x8e{left:599.712638px;}
.x8c{left:603.436276px;}
.x1a{left:657.960450px;}
.x4{left:783.732422px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.vb{vertical-align:-10.881067pt;}
.v7{vertical-align:-8.782400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.674667pt;}
.va{vertical-align:13.603693pt;}
.v2{vertical-align:17.599467pt;}
.v4{vertical-align:24.642814pt;}
.v8{vertical-align:26.479200pt;}
.v9{vertical-align:27.714896pt;}
.v6{vertical-align:33.186829pt;}
.v5{vertical-align:49.285628pt;}
.ls4d{letter-spacing:-3.552000pt;}
.ls21{letter-spacing:-0.991440pt;}
.ls45{letter-spacing:-0.856213pt;}
.ls6a{letter-spacing:-0.601175pt;}
.ls67{letter-spacing:-0.554931pt;}
.ls5b{letter-spacing:-0.494278pt;}
.ls44{letter-spacing:-0.479479pt;}
.ls1a{letter-spacing:-0.477360pt;}
.lsc{letter-spacing:-0.473900pt;}
.ls62{letter-spacing:-0.463384pt;}
.ls5d{letter-spacing:-0.458973pt;}
.ls47{letter-spacing:-0.445231pt;}
.ls6c{letter-spacing:-0.435243pt;}
.ls5a{letter-spacing:-0.423667pt;}
.ls69{letter-spacing:-0.416198pt;}
.ls46{letter-spacing:-0.410982pt;}
.ls59{letter-spacing:-0.388362pt;}
.ls41{letter-spacing:-0.376734pt;}
.ls6b{letter-spacing:-0.369954pt;}
.ls58{letter-spacing:-0.353056pt;}
.ls40{letter-spacing:-0.342485pt;}
.ls63{letter-spacing:-0.339815pt;}
.ls18{letter-spacing:-0.330480pt;}
.lsb{letter-spacing:-0.328085pt;}
.ls5e{letter-spacing:-0.317750pt;}
.ls42{letter-spacing:-0.308237pt;}
.ls17{letter-spacing:-0.293760pt;}
.ls9{letter-spacing:-0.291631pt;}
.ls48{letter-spacing:-0.273988pt;}
.ls1e{letter-spacing:-0.257040pt;}
.ls5c{letter-spacing:-0.247139pt;}
.ls1c{letter-spacing:-0.183600pt;}
.lse{letter-spacing:-0.182269pt;}
.ls4c{letter-spacing:-0.171243pt;}
.ls61{letter-spacing:-0.154461pt;}
.ls1f{letter-spacing:-0.110160pt;}
.lsf{letter-spacing:-0.109362pt;}
.ls4b{letter-spacing:-0.102746pt;}
.ls2{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000267pt;}
.ls5{letter-spacing:0.000533pt;}
.ls30{letter-spacing:0.068497pt;}
.ls8{letter-spacing:0.072908pt;}
.ls19{letter-spacing:0.073440pt;}
.ls68{letter-spacing:0.092489pt;}
.ls43{letter-spacing:0.102746pt;}
.ls10{letter-spacing:0.109362pt;}
.ls65{letter-spacing:0.130573pt;}
.ls4a{letter-spacing:0.136994pt;}
.ls12{letter-spacing:0.145815pt;}
.ls22{letter-spacing:0.149333pt;}
.ls20{letter-spacing:0.183600pt;}
.ls23{letter-spacing:0.205491pt;}
.ls60{letter-spacing:0.211834pt;}
.ls1d{letter-spacing:0.220320pt;}
.ls11{letter-spacing:0.255177pt;}
.ls5f{letter-spacing:0.353056pt;}
.ls2f{letter-spacing:0.376734pt;}
.ls52{letter-spacing:0.388362pt;}
.lsd{letter-spacing:0.437446pt;}
.ls1b{letter-spacing:0.440640pt;}
.ls49{letter-spacing:0.445231pt;}
.ls66{letter-spacing:0.478767pt;}
.lsa{letter-spacing:0.510354pt;}
.ls15{letter-spacing:0.514080pt;}
.ls16{letter-spacing:0.540000pt;}
.ls13{letter-spacing:0.550800pt;}
.ls3{letter-spacing:0.557867pt;}
.ls64{letter-spacing:0.693664pt;}
.ls6d{letter-spacing:2.448000pt;}
.ls4{letter-spacing:6.819200pt;}
.ls1{letter-spacing:24.916800pt;}
.ls28{letter-spacing:42.947661pt;}
.ls29{letter-spacing:47.091733pt;}
.ls2a{letter-spacing:60.996638pt;}
.ls6{letter-spacing:63.794267pt;}
.ls53{letter-spacing:80.637990pt;}
.ls2e{letter-spacing:81.340267pt;}
.ls4e{letter-spacing:92.783117pt;}
.ls24{letter-spacing:96.443870pt;}
.ls3b{letter-spacing:107.163661pt;}
.ls39{letter-spacing:124.150933pt;}
.ls51{letter-spacing:125.896239pt;}
.ls2b{letter-spacing:127.370295pt;}
.ls38{letter-spacing:128.534746pt;}
.ls50{letter-spacing:131.407443pt;}
.ls4f{letter-spacing:134.726170pt;}
.ls36{letter-spacing:141.275200pt;}
.ls3d{letter-spacing:142.439650pt;}
.ls2c{letter-spacing:144.597308pt;}
.ls3e{letter-spacing:147.679676pt;}
.ls31{letter-spacing:147.782421pt;}
.ls27{letter-spacing:151.001783pt;}
.ls3a{letter-spacing:151.036032pt;}
.ls26{letter-spacing:161.618829pt;}
.ls3f{letter-spacing:163.844983pt;}
.ls25{letter-spacing:163.879232pt;}
.ls54{letter-spacing:170.031770pt;}
.ls3c{letter-spacing:172.304371pt;}
.ls2d{letter-spacing:176.585438pt;}
.ls37{letter-spacing:184.188612pt;}
.ls55{letter-spacing:229.592317pt;}
.ls32{letter-spacing:237.582076pt;}
.ls33{letter-spacing:274.091012pt;}
.ls35{letter-spacing:286.934212pt;}
.ls56{letter-spacing:292.506896pt;}
.ls34{letter-spacing:364.027661pt;}
.ls14{letter-spacing:416.514960pt;}
.ls7{letter-spacing:447.726390pt;}
.ws4{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.wsf5{word-spacing:-11.653555pt;}
.wsf7{word-spacing:-11.561067pt;}
.wsfa{word-spacing:-11.191113pt;}
.wsf6{word-spacing:-11.144868pt;}
.wsf9{word-spacing:-11.006135pt;}
.wsa3{word-spacing:-9.694080pt;}
.ws8f{word-spacing:-9.623821pt;}
.wsa7{word-spacing:-9.482667pt;}
.wsa0{word-spacing:-9.400320pt;}
.ws8d{word-spacing:-9.368644pt;}
.ws2{word-spacing:-9.333333pt;}
.ws8e{word-spacing:-9.259282pt;}
.ws8c{word-spacing:-9.222828pt;}
.wsd6{word-spacing:-9.214762pt;}
.wsdc{word-spacing:-9.179456pt;}
.wsa4{word-spacing:-9.069840pt;}
.wsdd{word-spacing:-9.038234pt;}
.ws8b{word-spacing:-9.004105pt;}
.ws9f{word-spacing:-8.996400pt;}
.wsb9{word-spacing:-8.938867pt;}
.ws8a{word-spacing:-8.931197pt;}
.wsa1{word-spacing:-8.922960pt;}
.ws9e{word-spacing:-8.849520pt;}
.wsdb{word-spacing:-8.826400pt;}
.ws87{word-spacing:-8.821836pt;}
.ws88{word-spacing:-8.785382pt;}
.wsbc{word-spacing:-8.767625pt;}
.wsa2{word-spacing:-8.702640pt;}
.wsc1{word-spacing:-8.699127pt;}
.ws1{word-spacing:-8.666667pt;}
.wsba{word-spacing:-8.664879pt;}
.ws89{word-spacing:-8.639566pt;}
.wsc2{word-spacing:-8.630630pt;}
.wsd8{word-spacing:-8.579261pt;}
.wsd9{word-spacing:-8.508650pt;}
.wsd4{word-spacing:-8.473344pt;}
.wsc3{word-spacing:-8.459388pt;}
.wscb{word-spacing:-8.448000pt;}
.wsd3{word-spacing:-8.438038pt;}
.wsda{word-spacing:-8.402733pt;}
.wsc4{word-spacing:-8.390891pt;}
.wsd5{word-spacing:-8.332122pt;}
.wsc0{word-spacing:-8.288145pt;}
.wsbb{word-spacing:-8.219648pt;}
.wsa5{word-spacing:-8.188560pt;}
.wsb8{word-spacing:-8.185399pt;}
.wsbe{word-spacing:-8.151151pt;}
.wsbf{word-spacing:-8.116902pt;}
.wsa6{word-spacing:-7.733333pt;}
.wsbd{word-spacing:-7.705920pt;}
.ws6{word-spacing:-6.960000pt;}
.wsf8{word-spacing:-6.800667pt;}
.wsd7{word-spacing:-5.516533pt;}
.ws11f{word-spacing:-4.512000pt;}
.ws66{word-spacing:-3.360000pt;}
.ws9b{word-spacing:-2.986667pt;}
.ws52{word-spacing:-2.933333pt;}
.ws115{word-spacing:-2.736000pt;}
.ws103{word-spacing:-2.666667pt;}
.ws4c{word-spacing:-2.613333pt;}
.ws61{word-spacing:-2.506667pt;}
.ws7d{word-spacing:-2.400000pt;}
.wsd{word-spacing:-2.346667pt;}
.ws51{word-spacing:-2.293333pt;}
.ws1b{word-spacing:-2.240000pt;}
.ws2b{word-spacing:-2.186667pt;}
.ws5c{word-spacing:-2.080000pt;}
.ws10b{word-spacing:-2.064000pt;}
.ws105{word-spacing:-2.026667pt;}
.wsb6{word-spacing:-1.973333pt;}
.ws2f{word-spacing:-1.920000pt;}
.ws47{word-spacing:-1.866667pt;}
.ws73{word-spacing:-1.813333pt;}
.wsea{word-spacing:-1.706667pt;}
.ws11b{word-spacing:-1.680000pt;}
.ws68{word-spacing:-1.653333pt;}
.ws55{word-spacing:-1.600000pt;}
.ws2c{word-spacing:-1.546667pt;}
.ws30{word-spacing:-1.493333pt;}
.ws4a{word-spacing:-1.440000pt;}
.ws41{word-spacing:-1.333333pt;}
.wsf3{word-spacing:-1.226667pt;}
.wsd2{word-spacing:-1.173333pt;}
.ws4b{word-spacing:-1.120000pt;}
.ws11d{word-spacing:-1.104000pt;}
.wsef{word-spacing:-1.066667pt;}
.ws62{word-spacing:-1.013333pt;}
.ws17{word-spacing:-0.906667pt;}
.ws53{word-spacing:-0.853333pt;}
.ws26{word-spacing:-0.800000pt;}
.ws119{word-spacing:-0.768000pt;}
.wsf4{word-spacing:-0.709333pt;}
.ws92{word-spacing:-0.693333pt;}
.ws72{word-spacing:-0.640000pt;}
.ws3d{word-spacing:-0.586667pt;}
.ws118{word-spacing:-0.576000pt;}
.ws7b{word-spacing:-0.533333pt;}
.wsac{word-spacing:-0.514080pt;}
.ws96{word-spacing:-0.510354pt;}
.wsf{word-spacing:-0.480000pt;}
.wsca{word-spacing:-0.445231pt;}
.wsa{word-spacing:-0.426667pt;}
.wsdf{word-spacing:-0.388362pt;}
.wsc{word-spacing:-0.373333pt;}
.wse3{word-spacing:-0.353056pt;}
.ws6a{word-spacing:-0.336000pt;}
.wsc9{word-spacing:-0.205491pt;}
.ws6c{word-spacing:-0.192000pt;}
.ws102{word-spacing:-0.160000pt;}
.ws9c{word-spacing:-0.106667pt;}
.ws126{word-spacing:-0.096000pt;}
.wsae{word-spacing:-0.073440pt;}
.ws95{word-spacing:-0.072908pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.037333pt;}
.ws9a{word-spacing:0.053333pt;}
.ws99{word-spacing:0.072908pt;}
.wsb0{word-spacing:0.073440pt;}
.wsc7{word-spacing:0.102746pt;}
.ws45{word-spacing:0.106667pt;}
.ws9{word-spacing:0.149333pt;}
.wse5{word-spacing:0.154461pt;}
.ws50{word-spacing:0.160000pt;}
.ws6d{word-spacing:0.213333pt;}
.wse4{word-spacing:0.247139pt;}
.ws18{word-spacing:0.266667pt;}
.ws109{word-spacing:0.288000pt;}
.wsc6{word-spacing:0.308237pt;}
.ws2e{word-spacing:0.320000pt;}
.wsb3{word-spacing:0.330480pt;}
.ws112{word-spacing:0.336000pt;}
.wse7{word-spacing:0.339815pt;}
.wsc5{word-spacing:0.342485pt;}
.wsde{word-spacing:0.353056pt;}
.wsb{word-spacing:0.373333pt;}
.wsb2{word-spacing:0.403920pt;}
.wsfd{word-spacing:0.416198pt;}
.wse0{word-spacing:0.423667pt;}
.ws122{word-spacing:0.432000pt;}
.wsff{word-spacing:0.435243pt;}
.wse1{word-spacing:0.458973pt;}
.wse6{word-spacing:0.463384pt;}
.wsc8{word-spacing:0.479479pt;}
.ws79{word-spacing:0.480000pt;}
.wse2{word-spacing:0.494278pt;}
.ws77{word-spacing:0.498667pt;}
.wsb1{word-spacing:0.514080pt;}
.ws10c{word-spacing:0.528000pt;}
.ws7a{word-spacing:0.533333pt;}
.wsfc{word-spacing:0.554931pt;}
.ws69{word-spacing:0.586667pt;}
.wsfe{word-spacing:0.601175pt;}
.ws97{word-spacing:0.619716pt;}
.wsad{word-spacing:0.624240pt;}
.ws75{word-spacing:0.634667pt;}
.ws22{word-spacing:0.693333pt;}
.ws6f{word-spacing:0.746667pt;}
.ws10f{word-spacing:0.768000pt;}
.ws76{word-spacing:0.770667pt;}
.wsab{word-spacing:0.807840pt;}
.ws7e{word-spacing:0.853333pt;}
.ws49{word-spacing:0.906667pt;}
.ws106{word-spacing:0.960000pt;}
.ws98{word-spacing:0.984254pt;}
.wsaf{word-spacing:0.991440pt;}
.wsb5{word-spacing:1.013333pt;}
.ws59{word-spacing:1.066667pt;}
.ws7f{word-spacing:1.120000pt;}
.ws24{word-spacing:1.226667pt;}
.ws46{word-spacing:1.280000pt;}
.ws36{word-spacing:1.333333pt;}
.ws7{word-spacing:1.344000pt;}
.ws71{word-spacing:1.386667pt;}
.wsf1{word-spacing:1.440000pt;}
.wsd1{word-spacing:1.493333pt;}
.ws11{word-spacing:1.600000pt;}
.ws5b{word-spacing:1.653333pt;}
.ws65{word-spacing:1.706667pt;}
.ws11c{word-spacing:1.728000pt;}
.ws29{word-spacing:1.760000pt;}
.ws20{word-spacing:1.813333pt;}
.ws6b{word-spacing:1.824000pt;}
.ws34{word-spacing:1.866667pt;}
.ws37{word-spacing:1.920000pt;}
.ws23{word-spacing:1.973333pt;}
.ws1e{word-spacing:2.026667pt;}
.ws16{word-spacing:2.080000pt;}
.ws82{word-spacing:2.133333pt;}
.ws78{word-spacing:2.186667pt;}
.wsce{word-spacing:2.240000pt;}
.ws5f{word-spacing:2.400000pt;}
.ws116{word-spacing:2.448000pt;}
.ws38{word-spacing:2.453333pt;}
.ws4f{word-spacing:2.506667pt;}
.ws33{word-spacing:2.613333pt;}
.ws1f{word-spacing:2.666667pt;}
.wsec{word-spacing:2.773333pt;}
.wsaa{word-spacing:2.826667pt;}
.ws56{word-spacing:2.880000pt;}
.wse9{word-spacing:2.933333pt;}
.ws44{word-spacing:2.986667pt;}
.ws1a{word-spacing:3.040000pt;}
.wsed{word-spacing:3.093333pt;}
.ws48{word-spacing:3.200000pt;}
.ws114{word-spacing:3.216000pt;}
.ws3b{word-spacing:3.253333pt;}
.wscc{word-spacing:3.306667pt;}
.ws19{word-spacing:3.360000pt;}
.ws104{word-spacing:3.413333pt;}
.wscf{word-spacing:3.520000pt;}
.ws4d{word-spacing:3.573333pt;}
.ws67{word-spacing:3.626667pt;}
.ws83{word-spacing:3.680000pt;}
.ws3e{word-spacing:3.733333pt;}
.ws25{word-spacing:3.786667pt;}
.wse8{word-spacing:3.840000pt;}
.ws6e{word-spacing:3.893333pt;}
.ws39{word-spacing:4.000000pt;}
.ws35{word-spacing:4.053333pt;}
.ws107{word-spacing:4.106667pt;}
.ws74{word-spacing:4.160000pt;}
.wsf2{word-spacing:4.213333pt;}
.ws110{word-spacing:4.272000pt;}
.ws5a{word-spacing:4.373333pt;}
.wsd0{word-spacing:4.426667pt;}
.wsa8{word-spacing:4.480000pt;}
.ws81{word-spacing:4.533333pt;}
.ws123{word-spacing:4.608000pt;}
.ws15{word-spacing:4.640000pt;}
.wsb4{word-spacing:4.693333pt;}
.ws7c{word-spacing:4.800000pt;}
.ws21{word-spacing:4.853333pt;}
.ws40{word-spacing:4.906667pt;}
.ws121{word-spacing:4.944000pt;}
.ws12{word-spacing:4.960000pt;}
.ws120{word-spacing:5.040000pt;}
.ws5e{word-spacing:5.066667pt;}
.ws84{word-spacing:5.120000pt;}
.ws70{word-spacing:5.226667pt;}
.ws117{word-spacing:5.232000pt;}
.wsfb{word-spacing:5.280000pt;}
.ws28{word-spacing:5.440000pt;}
.ws54{word-spacing:5.493333pt;}
.ws14{word-spacing:5.546667pt;}
.wsee{word-spacing:5.600000pt;}
.ws32{word-spacing:5.653333pt;}
.ws43{word-spacing:5.760000pt;}
.ws3f{word-spacing:5.813333pt;}
.ws111{word-spacing:5.856000pt;}
.ws1d{word-spacing:5.973333pt;}
.ws2a{word-spacing:6.186667pt;}
.ws5d{word-spacing:6.240000pt;}
.ws108{word-spacing:6.288000pt;}
.ws93{word-spacing:6.293333pt;}
.wse{word-spacing:6.346667pt;}
.ws10e{word-spacing:6.432000pt;}
.ws94{word-spacing:6.453333pt;}
.ws91{word-spacing:6.666667pt;}
.ws125{word-spacing:6.672000pt;}
.ws57{word-spacing:6.773333pt;}
.ws80{word-spacing:6.826667pt;}
.wscd{word-spacing:6.986667pt;}
.wsa9{word-spacing:7.040000pt;}
.ws64{word-spacing:7.093333pt;}
.ws60{word-spacing:7.146667pt;}
.ws10a{word-spacing:7.200000pt;}
.ws85{word-spacing:7.306667pt;}
.ws42{word-spacing:7.360000pt;}
.ws1c{word-spacing:7.413333pt;}
.ws58{word-spacing:7.466667pt;}
.ws86{word-spacing:7.520000pt;}
.ws4e{word-spacing:7.573333pt;}
.ws31{word-spacing:7.626667pt;}
.ws10d{word-spacing:7.728000pt;}
.ws2d{word-spacing:7.733333pt;}
.wsf0{word-spacing:7.786667pt;}
.ws10{word-spacing:7.840000pt;}
.ws124{word-spacing:7.920000pt;}
.ws27{word-spacing:8.000000pt;}
.wseb{word-spacing:8.106667pt;}
.ws63{word-spacing:8.906667pt;}
.ws101{word-spacing:9.013333pt;}
.ws3c{word-spacing:9.226667pt;}
.ws9d{word-spacing:9.280000pt;}
.ws90{word-spacing:9.653333pt;}
.ws113{word-spacing:9.888000pt;}
.ws100{word-spacing:9.920000pt;}
.ws13{word-spacing:10.560000pt;}
.ws11e{word-spacing:10.656000pt;}
.ws11a{word-spacing:10.992000pt;}
.wsb7{word-spacing:14.074667pt;}
.ws3a{word-spacing:16.266667pt;}
.ws5{word-spacing:101.885333pt;}
._3{margin-left:-13.890001pt;}
._4{margin-left:-12.627733pt;}
._f{margin-left:-7.056401pt;}
._8{margin-left:-5.946667pt;}
._0{margin-left:-4.793871pt;}
._2{margin-left:-3.029333pt;}
._6{margin-left:-2.039202pt;}
._1{margin-left:-0.970266pt;}
._5{width:1.269333pt;}
._7{width:2.167334pt;}
._b{width:3.413333pt;}
._9{width:4.320000pt;}
._d{width:5.584000pt;}
._a{width:6.821333pt;}
._4d{width:7.712000pt;}
._c{width:8.602667pt;}
._12{width:9.525333pt;}
._14{width:10.480000pt;}
._11{width:11.818667pt;}
._68{width:13.030933pt;}
._e{width:13.925333pt;}
._13{width:15.152000pt;}
._10{width:16.842667pt;}
._17{width:33.544109pt;}
._2e{width:60.071927pt;}
._34{width:62.092591pt;}
._33{width:66.061040pt;}
._2d{width:68.497067pt;}
._3c{width:70.620476pt;}
._35{width:71.716429pt;}
._29{width:77.059200pt;}
._2a{width:79.182609pt;}
._2f{width:80.278562pt;}
._3b{width:81.393154pt;}
._20{width:82.609706pt;}
._2c{width:87.744742pt;}
._3d{width:88.872701pt;}
._31{width:90.005146pt;}
._2b{width:91.066850pt;}
._32{width:92.094306pt;}
._18{width:93.832253pt;}
._30{width:94.751853pt;}
._27{width:96.991846pt;}
._19{width:97.964644pt;}
._21{width:103.550400pt;}
._26{width:105.006003pt;}
._28{width:107.163661pt;}
._1b{width:108.814792pt;}
._1f{width:112.678902pt;}
._1c{width:113.772518pt;}
._36{width:120.520589pt;}
._4b{width:128.464005pt;}
._37{width:132.130842pt;}
._3e{width:137.096879pt;}
._58{width:138.876612pt;}
._41{width:151.001783pt;}
._40{width:153.159441pt;}
._42{width:155.130246pt;}
._43{width:158.502212pt;}
._38{width:159.563917pt;}
._49{width:160.625621pt;}
._1a{width:164.151762pt;}
._25{width:169.588827pt;}
._59{width:182.315516pt;}
._23{width:184.775040pt;}
._60{width:185.956263pt;}
._3f{width:191.586295pt;}
._1e{width:195.283364pt;}
._22{width:199.389600pt;}
._1d{width:201.662790pt;}
._39{width:207.751603pt;}
._3a{width:208.710562pt;}
._52{width:214.697011pt;}
._55{width:216.010195pt;}
._48{width:219.230223pt;}
._4a{width:220.747407pt;}
._24{width:224.763120pt;}
._4e{width:230.379574pt;}
._67{width:232.411531pt;}
._5f{width:235.099990pt;}
._4c{width:236.320241pt;}
._61{width:237.288938pt;}
._5c{width:238.455691pt;}
._5b{width:252.081984pt;}
._56{width:255.005812pt;}
._63{width:259.606955pt;}
._57{width:263.062026pt;}
._53{width:266.416058pt;}
._5d{width:269.346422pt;}
._5a{width:270.763290pt;}
._50{width:273.583817pt;}
._62{width:276.301626pt;}
._44{width:277.207629pt;}
._4f{width:280.361770pt;}
._65{width:285.505853pt;}
._64{width:287.458195pt;}
._66{width:290.010085pt;}
._54{width:292.383849pt;}
._5e{width:296.284595pt;}
._45{width:300.839117pt;}
._51{width:301.792269pt;}
._47{width:332.964241pt;}
._46{width:398.344691pt;}
._15{width:556.920000pt;}
._16{width:694.960000pt;}
.fs20{font-size:17.652800pt;}
.fs16{font-size:21.443200pt;}
.fs1d{font-size:22.066133pt;}
.fs14{font-size:26.666667pt;}
.fs22{font-size:27.202667pt;}
.fs12{font-size:27.840000pt;}
.fs21{font-size:30.892267pt;}
.fs11{font-size:30.933333pt;}
.fs1b{font-size:34.248533pt;}
.fsb{font-size:34.666667pt;}
.fs1e{font-size:35.305600pt;}
.fs9{font-size:36.031248pt;}
.fs18{font-size:36.453867pt;}
.fs19{font-size:36.720000pt;}
.fsa{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fs25{font-size:43.524267pt;}
.fs7{font-size:43.980469pt;}
.fs15{font-size:45.333333pt;}
.fs23{font-size:46.244267pt;}
.fs1c{font-size:47.091733pt;}
.fs1a{font-size:47.520000pt;}
.fs10{font-size:48.000000pt;}
.fs1f{font-size:48.545067pt;}
.fs17{font-size:51.464000pt;}
.fs2{font-size:51.980469pt;}
.fs0{font-size:53.312501pt;}
.fsf{font-size:53.333333pt;}
.fs6{font-size:58.644533pt;}
.fs24{font-size:59.845867pt;}
.fs3{font-size:59.976560pt;}
.fs5{font-size:63.972656pt;}
.fse{font-size:64.000000pt;}
.fs8{font-size:69.304688pt;}
.fs13{font-size:69.333333pt;}
.fs1{font-size:71.972656pt;}
.fsd{font-size:74.666667pt;}
.fs4{font-size:90.628907pt;}
.y177{bottom:-6.458000pt;}
.y0{bottom:0.000000pt;}
.y295{bottom:2.472000pt;}
.y25a{bottom:2.482000pt;}
.y298{bottom:2.482400pt;}
.y29e{bottom:2.482800pt;}
.y12d{bottom:2.679867pt;}
.y13a{bottom:2.680000pt;}
.y136{bottom:2.680533pt;}
.y132{bottom:2.680800pt;}
.y13e{bottom:2.680933pt;}
.y160{bottom:2.700000pt;}
.y164{bottom:2.958933pt;}
.y159{bottom:2.970000pt;}
.y170{bottom:2.970667pt;}
.y154{bottom:2.970933pt;}
.y143{bottom:3.217200pt;}
.y156{bottom:3.261600pt;}
.y10f{bottom:3.357733pt;}
.y18c{bottom:3.734400pt;}
.y1a6{bottom:3.745200pt;}
.y1ea{bottom:3.745600pt;}
.y19b{bottom:3.746400pt;}
.y12f{bottom:3.752400pt;}
.y1ec{bottom:4.014000pt;}
.y281{bottom:4.137333pt;}
.y1c5{bottom:4.269733pt;}
.y28f{bottom:4.412667pt;}
.y283{bottom:4.412933pt;}
.y28c{bottom:4.413333pt;}
.y1f2{bottom:4.548533pt;}
.y1f4{bottom:5.083200pt;}
.y193{bottom:5.083333pt;}
.y1ac{bottom:5.352000pt;}
.y1af{bottom:5.618533pt;}
.y19e{bottom:5.619333pt;}
.y1a1{bottom:5.886000pt;}
.y1bc{bottom:5.886267pt;}
.y18e{bottom:5.886667pt;}
.y1d0{bottom:5.886933pt;}
.y1b3{bottom:5.887467pt;}
.y1ef{bottom:6.154400pt;}
.y1bf{bottom:6.154533pt;}
.y1d5{bottom:6.154667pt;}
.y1da{bottom:6.154933pt;}
.y1e3{bottom:6.421467pt;}
.y188{bottom:6.421733pt;}
.y1fb{bottom:6.422000pt;}
.y1de{bottom:6.678933pt;}
.y194{bottom:6.684452pt;}
.y1d3{bottom:6.688400pt;}
.y1cb{bottom:6.689600pt;}
.y1a9{bottom:6.689733pt;}
.y1e8{bottom:6.689867pt;}
.y1b6{bottom:6.956000pt;}
.y1b9{bottom:6.956933pt;}
.y1fd{bottom:6.957200pt;}
.y1c7{bottom:6.957467pt;}
.y198{bottom:7.213067pt;}
.y1c2{bottom:7.492400pt;}
.y191{bottom:8.561733pt;}
.y1d8{bottom:8.562533pt;}
.y202{bottom:8.998800pt;}
.y1ba{bottom:10.167733pt;}
.y1e0{bottom:10.691067pt;}
.y1a2{bottom:10.702133pt;}
.yfe{bottom:10.998933pt;}
.yfc{bottom:11.000267pt;}
.y10d{bottom:11.013733pt;}
.y100{bottom:11.026933pt;}
.y1bd{bottom:12.307867pt;}
.y1b7{bottom:12.318000pt;}
.y1f8{bottom:12.575067pt;}
.y1ce{bottom:12.843333pt;}
.y1aa{bottom:13.667867pt;}
.y1e4{bottom:13.913333pt;}
.y1a4{bottom:13.913600pt;}
.y1c0{bottom:13.914000pt;}
.y199{bottom:14.180400pt;}
.y1b0{bottom:14.180667pt;}
.y297{bottom:14.331867pt;}
.y291{bottom:14.342400pt;}
.y29c{bottom:14.343200pt;}
.y294{bottom:14.608267pt;}
.y1d4{bottom:14.711119pt;}
.y1f7{bottom:14.712319pt;}
.y19f{bottom:14.716533pt;}
.y1ff{bottom:15.251467pt;}
.y1cc{bottom:15.251733pt;}
.y1b4{bottom:15.252267pt;}
.y1f6{bottom:15.253907pt;}
.y1dc{bottom:15.282667pt;}
.y1c3{bottom:16.043733pt;}
.y1c8{bottom:16.855293pt;}
.y279{bottom:17.928667pt;}
.y286{bottom:17.962133pt;}
.y1e6{bottom:19.265200pt;}
.y316{bottom:19.982400pt;}
.y23{bottom:21.634133pt;}
.y39{bottom:30.963867pt;}
.y27d{bottom:31.742400pt;}
.y22{bottom:33.767467pt;}
.y106{bottom:34.027067pt;}
.y29d{bottom:38.373067pt;}
.y2f1{bottom:40.464267pt;}
.y30a{bottom:40.464800pt;}
.y2f3{bottom:40.804267pt;}
.y2f7{bottom:40.804800pt;}
.y2ed{bottom:41.144133pt;}
.y109{bottom:56.666933pt;}
.y102{bottom:56.667067pt;}
.y2fb{bottom:57.124933pt;}
.y201{bottom:74.074667pt;}
.y117{bottom:75.270667pt;}
.y5d{bottom:75.590667pt;}
.y2d3{bottom:76.746533pt;}
.y81{bottom:76.803600pt;}
.y120{bottom:76.852000pt;}
.yb4{bottom:76.937067pt;}
.y33c{bottom:77.001333pt;}
.yf6{bottom:77.061867pt;}
.y366{bottom:77.611067pt;}
.y234{bottom:77.650667pt;}
.yd6{bottom:77.852400pt;}
.y8e{bottom:77.941733pt;}
.y14c{bottom:78.241333pt;}
.y393{bottom:78.356000pt;}
.y231{bottom:78.393200pt;}
.y311{bottom:78.502133pt;}
.y211{bottom:78.608400pt;}
.y183{bottom:79.550667pt;}
.y36{bottom:80.129333pt;}
.y317{bottom:80.951733pt;}
.y187{bottom:83.073333pt;}
.y2ad{bottom:83.662667pt;}
.y2d5{bottom:87.590667pt;}
.y5c{bottom:91.550667pt;}
.y365{bottom:92.277733pt;}
.y392{bottom:93.022667pt;}
.y2ac{bottom:93.868133pt;}
.y116{bottom:94.870667pt;}
.y182{bottom:95.330400pt;}
.y189{bottom:96.184267pt;}
.yb3{bottom:96.536933pt;}
.y2d2{bottom:96.746533pt;}
.y80{bottom:96.937067pt;}
.y11f{bottom:96.985333pt;}
.y33b{bottom:97.134667pt;}
.yf5{bottom:97.195200pt;}
.yd5{bottom:97.985733pt;}
.y8d{bottom:98.075067pt;}
.y315{bottom:98.293333pt;}
.y14b{bottom:98.374800pt;}
.y230{bottom:98.526400pt;}
.y210{bottom:98.741733pt;}
.y2d4{bottom:103.550667pt;}
.y2ab{bottom:104.349467pt;}
.y35{bottom:107.688400pt;}
.y251{bottom:109.534933pt;}
.y314{bottom:110.198646pt;}
.y5b{bottom:111.151067pt;}
.y181{bottom:111.269733pt;}
.y2aa{bottom:112.349532pt;}
.y391{bottom:113.358533pt;}
.y364{bottom:113.747467pt;}
.y115{bottom:114.470667pt;}
.yb2{bottom:116.136933pt;}
.y2d1{bottom:116.746533pt;}
.y7f{bottom:117.070267pt;}
.y11e{bottom:117.118533pt;}
.y33a{bottom:117.268000pt;}
.yf4{bottom:117.328667pt;}
.yd4{bottom:118.119200pt;}
.y8c{bottom:118.208400pt;}
.y14a{bottom:118.508000pt;}
.y22f{bottom:118.659867pt;}
.y20f{bottom:118.875067pt;}
.y2a9{bottom:125.036267pt;}
.y18b{bottom:127.228000pt;}
.y313{bottom:127.543067pt;}
.y34{bottom:127.688400pt;}
.y390{bottom:128.025200pt;}
.y363{bottom:128.414133pt;}
.y180{bottom:130.869733pt;}
.y5a{bottom:131.284533pt;}
.y114{bottom:134.070667pt;}
.yb1{bottom:135.736933pt;}
.y2d0{bottom:136.746533pt;}
.y2a8{bottom:137.172533pt;}
.y7e{bottom:137.203600pt;}
.y11d{bottom:137.252000pt;}
.y339{bottom:137.401333pt;}
.yf3{bottom:137.461867pt;}
.yd3{bottom:138.252400pt;}
.y8b{bottom:138.341733pt;}
.y149{bottom:138.641333pt;}
.y22e{bottom:138.793067pt;}
.y20e{bottom:139.008400pt;}
.y312{bottom:139.444133pt;}
.y362{bottom:143.080800pt;}
.y33{bottom:147.688400pt;}
.y38f{bottom:148.361200pt;}
.y2a7{bottom:149.303333pt;}
.y17f{bottom:150.469733pt;}
.y18a{bottom:151.598394pt;}
.y113{bottom:153.670667pt;}
.yb0{bottom:155.336933pt;}
.y2cf{bottom:156.746533pt;}
.y310{bottom:156.813067pt;}
.y7d{bottom:157.336933pt;}
.y11c{bottom:157.385200pt;}
.y338{bottom:157.534667pt;}
.yf2{bottom:157.595200pt;}
.yd2{bottom:158.385733pt;}
.y8a{bottom:158.475067pt;}
.y148{bottom:158.774800pt;}
.y22d{bottom:158.926533pt;}
.y20d{bottom:159.141733pt;}
.y2a6{bottom:159.508800pt;}
.y38e{bottom:163.027867pt;}
.y361{bottom:164.550667pt;}
.y1e1{bottom:164.975333pt;}
.y30f{bottom:169.051580pt;}
.y2a5{bottom:170.001200pt;}
.y17e{bottom:170.069733pt;}
.y112{bottom:173.270667pt;}
.y18d{bottom:173.537333pt;}
.yaf{bottom:174.936933pt;}
.y32{bottom:175.247467pt;}
.y2ce{bottom:176.746533pt;}
.y7c{bottom:177.470267pt;}
.y11b{bottom:177.518533pt;}
.y337{bottom:177.668000pt;}
.yf1{bottom:177.728533pt;}
.yd1{bottom:178.519067pt;}
.y89{bottom:178.608400pt;}
.y147{bottom:178.908133pt;}
.y22c{bottom:179.059867pt;}
.y2a4{bottom:179.125467pt;}
.y360{bottom:179.217333pt;}
.y20c{bottom:179.275067pt;}
.y38d{bottom:183.363867pt;}
.y30e{bottom:186.396000pt;}
.y18f{bottom:188.788800pt;}
.y59{bottom:189.213067pt;}
.y17d{bottom:189.669733pt;}
.y111{bottom:192.870667pt;}
.yae{bottom:194.536933pt;}
.y2cd{bottom:196.746533pt;}
.y7b{bottom:197.603600pt;}
.y11a{bottom:197.652000pt;}
.y336{bottom:197.801333pt;}
.yf0{bottom:197.861867pt;}
.y38c{bottom:198.030533pt;}
.yd0{bottom:198.652400pt;}
.y88{bottom:198.741733pt;}
.y146{bottom:199.041333pt;}
.y22b{bottom:199.193200pt;}
.y30d{bottom:199.317333pt;}
.y20b{bottom:199.408400pt;}
.y35f{bottom:200.687067pt;}
.y17c{bottom:209.269733pt;}
.y58{bottom:209.346400pt;}
.y1e{bottom:211.421873pt;}
.y110{bottom:212.470667pt;}
.yad{bottom:214.136933pt;}
.y35e{bottom:215.353733pt;}
.y2cc{bottom:216.746533pt;}
.y190{bottom:217.418667pt;}
.y7a{bottom:217.736933pt;}
.y335{bottom:217.934667pt;}
.yef{bottom:217.995200pt;}
.y38b{bottom:218.366400pt;}
.ycf{bottom:218.785867pt;}
.y87{bottom:218.875067pt;}
.y145{bottom:219.174667pt;}
.y22a{bottom:219.326533pt;}
.y20a{bottom:219.541733pt;}
.y119{bottom:221.564800pt;}
.y31{bottom:222.006533pt;}
.y309{bottom:222.438667pt;}
.y2a3{bottom:224.084800pt;}
.y1d{bottom:224.614584pt;}
.y125{bottom:225.459200pt;}
.y17b{bottom:228.869733pt;}
.y192{bottom:229.458800pt;}
.y195{bottom:230.529067pt;}
.y30c{bottom:231.959877pt;}
.y38a{bottom:233.033067pt;}
.yac{bottom:233.736933pt;}
.y2a2{bottom:235.117733pt;}
.y2cb{bottom:236.746533pt;}
.y35d{bottom:236.823600pt;}
.y79{bottom:237.870267pt;}
.y334{bottom:238.068133pt;}
.yee{bottom:238.128533pt;}
.yce{bottom:238.919200pt;}
.y86{bottom:239.008400pt;}
.y124{bottom:239.129333pt;}
.y229{bottom:239.459733pt;}
.y209{bottom:239.675067pt;}
.y29b{bottom:241.461333pt;}
.y57{bottom:244.597867pt;}
.yf9{bottom:245.404000pt;}
.y30b{bottom:247.602000pt;}
.y17a{bottom:248.469733pt;}
.y30{bottom:249.565600pt;}
.y2a1{bottom:250.012184pt;}
.y118{bottom:251.013600pt;}
.y35c{bottom:251.490267pt;}
.yab{bottom:253.336933pt;}
.y389{bottom:253.369067pt;}
.y29a{bottom:255.802394pt;}
.y2ca{bottom:256.746533pt;}
.y1e2{bottom:256.782667pt;}
.y78{bottom:258.003600pt;}
.y333{bottom:258.201333pt;}
.ycd{bottom:259.052400pt;}
.y85{bottom:259.141733pt;}
.y144{bottom:259.441467pt;}
.y228{bottom:259.593200pt;}
.y208{bottom:259.808400pt;}
.y2a0{bottom:261.874866pt;}
.y56{bottom:261.931200pt;}
.y1c4{bottom:266.147333pt;}
.y10e{bottom:266.761733pt;}
.y299{bottom:267.974000pt;}
.y388{bottom:268.035733pt;}
.y179{bottom:268.069733pt;}
.y1fa{bottom:268.287867pt;}
.y2f{bottom:269.565600pt;}
.yed{bottom:269.600533pt;}
.y123{bottom:270.960000pt;}
.yaa{bottom:272.936933pt;}
.y35b{bottom:272.960133pt;}
.y126{bottom:273.600933pt;}
.y29f{bottom:273.755200pt;}
.y306{bottom:275.865333pt;}
.y2c9{bottom:276.746533pt;}
.y77{bottom:278.136933pt;}
.y332{bottom:278.334667pt;}
.ycc{bottom:279.185733pt;}
.y55{bottom:279.264533pt;}
.y84{bottom:279.275067pt;}
.y10c{bottom:279.454667pt;}
.y227{bottom:279.726533pt;}
.y142{bottom:279.786667pt;}
.y207{bottom:279.941733pt;}
.y308{bottom:285.374316pt;}
.y1f3{bottom:285.936533pt;}
.y1f1{bottom:286.214800pt;}
.y35a{bottom:287.626800pt;}
.y387{bottom:288.371600pt;}
.y140{bottom:289.436800pt;}
.y2e{bottom:289.565600pt;}
.y296{bottom:289.764000pt;}
.y197{bottom:290.764000pt;}
.ya9{bottom:292.536933pt;}
.y141{bottom:293.725333pt;}
.y54{bottom:296.597867pt;}
.y2c8{bottom:296.746533pt;}
.y76{bottom:298.270267pt;}
.y331{bottom:298.468000pt;}
.y1e5{bottom:298.522800pt;}
.ycb{bottom:299.319067pt;}
.yc6{bottom:299.408400pt;}
.y226{bottom:299.859867pt;}
.y206{bottom:300.075067pt;}
.y307{bottom:301.028000pt;}
.y386{bottom:303.038267pt;}
.y108{bottom:303.121333pt;}
.y178{bottom:305.003067pt;}
.y359{bottom:309.096533pt;}
.y13f{bottom:310.086800pt;}
.y83{bottom:310.746933pt;}
.ya8{bottom:312.136933pt;}
.y186{bottom:313.061600pt;}
.y53{bottom:313.931200pt;}
.y293{bottom:314.036000pt;}
.y10b{bottom:314.121600pt;}
.yec{bottom:314.967467pt;}
.yfa{bottom:315.450933pt;}
.y1c{bottom:316.114594pt;}
.y13c{bottom:316.509067pt;}
.y2c7{bottom:316.746533pt;}
.y2d{bottom:317.124667pt;}
.y385{bottom:317.704933pt;}
.y75{bottom:318.403600pt;}
.y330{bottom:318.601333pt;}
.y176{bottom:319.114667pt;}
.yca{bottom:319.452533pt;}
.yc5{bottom:319.541733pt;}
.y225{bottom:319.993200pt;}
.y205{bottom:320.208400pt;}
.y13d{bottom:321.065333pt;}
.y1f5{bottom:321.265867pt;}
.y1c6{bottom:322.058000pt;}
.y358{bottom:323.763200pt;}
.y175{bottom:324.536000pt;}
.y19a{bottom:326.370667pt;}
.y52{bottom:331.264533pt;}
.y82{bottom:331.546933pt;}
.ya7{bottom:331.736933pt;}
.y173{bottom:334.256667pt;}
.y1b{bottom:334.869799pt;}
.yeb{bottom:335.100800pt;}
.y2c6{bottom:336.746533pt;}
.y10a{bottom:336.788267pt;}
.y13b{bottom:337.416400pt;}
.y174{bottom:338.036000pt;}
.y384{bottom:338.040933pt;}
.y74{bottom:338.536933pt;}
.y290{bottom:338.585333pt;}
.y32f{bottom:338.734800pt;}
.y302{bottom:339.110554pt;}
.y305{bottom:339.111733pt;}
.yc9{bottom:339.585867pt;}
.yc4{bottom:339.675067pt;}
.y224{bottom:340.126400pt;}
.y204{bottom:340.341733pt;}
.y138{bottom:343.849467pt;}
.y357{bottom:345.233067pt;}
.y292{bottom:346.859600pt;}
.y51{bottom:348.597867pt;}
.y139{bottom:348.674667pt;}
.ya6{bottom:351.336933pt;}
.y172{bottom:351.536000pt;}
.y383{bottom:352.707600pt;}
.y1a{bottom:353.656258pt;}
.y301{bottom:354.752677pt;}
.y304{bottom:354.753857pt;}
.y1fc{bottom:355.000667pt;}
.yea{bottom:355.234133pt;}
.y1f0{bottom:355.268267pt;}
.y2c5{bottom:356.746533pt;}
.y19c{bottom:357.676267pt;}
.y73{bottom:358.670267pt;}
.y32e{bottom:358.868000pt;}
.yc8{bottom:359.719067pt;}
.yc3{bottom:359.808400pt;}
.y356{bottom:359.899733pt;}
.y223{bottom:360.259867pt;}
.y19d{bottom:361.689333pt;}
.y28e{bottom:362.880000pt;}
.y185{bottom:363.368800pt;}
.y2c{bottom:363.883733pt;}
.y137{bottom:365.024800pt;}
.y171{bottom:365.036000pt;}
.y50{bottom:365.931200pt;}
.y382{bottom:367.374267pt;}
.y16e{bottom:368.006667pt;}
.y300{bottom:370.394800pt;}
.y303{bottom:370.395980pt;}
.ya5{bottom:370.936933pt;}
.y134{bottom:371.490000pt;}
.y203{bottom:371.813600pt;}
.y19{bottom:372.317713pt;}
.y105{bottom:372.468000pt;}
.ye9{bottom:375.367467pt;}
.y135{bottom:376.046667pt;}
.y1e7{bottom:376.673467pt;}
.y2c4{bottom:376.746533pt;}
.y16f{bottom:378.536000pt;}
.y72{bottom:378.803600pt;}
.y32d{bottom:379.001333pt;}
.yc2{bottom:379.941733pt;}
.y222{bottom:380.393200pt;}
.y28d{bottom:381.359733pt;}
.y355{bottom:381.369467pt;}
.y4f{bottom:383.264533pt;}
.y2fa{bottom:383.344000pt;}
.y107{bottom:383.495067pt;}
.y381{bottom:387.710267pt;}
.y169{bottom:388.278267pt;}
.y1fe{bottom:388.981467pt;}
.y1d1{bottom:389.784267pt;}
.ya4{bottom:390.536933pt;}
.y18{bottom:391.072917pt;}
.yc7{bottom:391.191067pt;}
.y28b{bottom:391.289333pt;}
.y2b{bottom:391.442800pt;}
.y16d{bottom:392.057333pt;}
.y133{bottom:392.397333pt;}
.y2fe{bottom:393.878358pt;}
.ye8{bottom:395.500800pt;}
.y1a0{bottom:395.938667pt;}
.y354{bottom:396.036133pt;}
.y2c3{bottom:396.746533pt;}
.y130{bottom:398.830400pt;}
.y71{bottom:398.936933pt;}
.y32c{bottom:399.134667pt;}
.yc1{bottom:400.075067pt;}
.y221{bottom:400.526533pt;}
.y4e{bottom:400.597867pt;}
.y380{bottom:402.376933pt;}
.y131{bottom:403.386667pt;}
.y16c{bottom:405.557333pt;}
.y16a{bottom:408.529347pt;}
.y2ff{bottom:409.185210pt;}
.y2fd{bottom:409.520481pt;}
.y28a{bottom:409.774097pt;}
.ya3{bottom:410.136933pt;}
.y353{bottom:410.702800pt;}
.y2a{bottom:411.442800pt;}
.ye7{bottom:415.634133pt;}
.y12e{bottom:416.253333pt;}
.y2c2{bottom:416.746533pt;}
.y1d2{bottom:416.840400pt;}
.y4d{bottom:417.931200pt;}
.y16b{bottom:419.057333pt;}
.y70{bottom:419.070267pt;}
.y101{bottom:419.161333pt;}
.y32b{bottom:419.268000pt;}
.yc0{bottom:420.208400pt;}
.y17{bottom:420.276041pt;}
.y220{bottom:420.659867pt;}
.y1a3{bottom:421.924000pt;}
.y37f{bottom:422.712933pt;}
.y288{bottom:423.560933pt;}
.y2fc{bottom:424.827333pt;}
.y12b{bottom:426.438667pt;}
.ya2{bottom:429.736933pt;}
.y104{bottom:430.161733pt;}
.y12c{bottom:430.996000pt;}
.y29{bottom:431.442800pt;}
.y352{bottom:432.172667pt;}
.y168{bottom:432.557333pt;}
.y4c{bottom:435.264533pt;}
.ye6{bottom:435.767467pt;}
.y2c1{bottom:436.746533pt;}
.y289{bottom:437.347770pt;}
.y184{bottom:438.410533pt;}
.y6f{bottom:439.203600pt;}
.y32a{bottom:439.401467pt;}
.ybf{bottom:440.341733pt;}
.y21f{bottom:440.793067pt;}
.y166{bottom:442.278267pt;}
.y37e{bottom:443.048933pt;}
.y1f9{bottom:443.597067pt;}
.y167{bottom:446.057333pt;}
.y351{bottom:446.839333pt;}
.y285{bottom:447.281333pt;}
.ya1{bottom:449.336933pt;}
.y287{bottom:451.419200pt;}
.y28{bottom:451.442800pt;}
.y4b{bottom:452.597867pt;}
.y103{bottom:452.828400pt;}
.y2f6{bottom:453.389333pt;}
.ye5{bottom:455.900800pt;}
.y1a5{bottom:456.173333pt;}
.y2c0{bottom:456.746533pt;}
.y37d{bottom:457.715600pt;}
.y284{bottom:458.347867pt;}
.y129{bottom:458.883566pt;}
.y128{bottom:458.892680pt;}
.y6e{bottom:459.336933pt;}
.y329{bottom:459.534667pt;}
.y165{bottom:459.557333pt;}
.ybe{bottom:460.475067pt;}
.y21e{bottom:460.926533pt;}
.y2f9{bottom:462.910543pt;}
.y350{bottom:468.309200pt;}
.ya0{bottom:468.936933pt;}
.y12a{bottom:471.214087pt;}
.y127{bottom:471.223200pt;}
.y37c{bottom:472.382267pt;}
.y163{bottom:473.069333pt;}
.y4a{bottom:473.710800pt;}
.y282{bottom:475.173333pt;}
.y161{bottom:476.028267pt;}
.ye4{bottom:476.034133pt;}
.y2bf{bottom:476.746533pt;}
.y16{bottom:477.463543pt;}
.y2f8{bottom:478.552667pt;}
.y27{bottom:479.001733pt;}
.y6d{bottom:479.470267pt;}
.y328{bottom:479.668000pt;}
.ybd{bottom:480.608400pt;}
.y21d{bottom:481.059867pt;}
.y34f{bottom:482.975867pt;}
.y162{bottom:486.590667pt;}
.y37b{bottom:487.048933pt;}
.y1a7{bottom:487.745467pt;}
.yff{bottom:488.494667pt;}
.y9f{bottom:488.536933pt;}
.y280{bottom:489.516000pt;}
.y15{bottom:490.656254pt;}
.y1a8{bottom:491.490667pt;}
.y49{bottom:493.844133pt;}
.y15b{bottom:496.040667pt;}
.ye3{bottom:496.167333pt;}
.y2be{bottom:496.746533pt;}
.y34e{bottom:497.642533pt;}
.y6c{bottom:499.603600pt;}
.y327{bottom:499.801333pt;}
.y15f{bottom:500.090667pt;}
.ybc{bottom:500.741733pt;}
.y21c{bottom:501.193200pt;}
.y14{bottom:503.854166pt;}
.y2f0{bottom:507.156000pt;}
.y37a{bottom:507.384800pt;}
.y122{bottom:507.424133pt;}
.y27f{bottom:507.996267pt;}
.y9e{bottom:508.136933pt;}
.yfd{bottom:512.189333pt;}
.y15e{bottom:513.050667pt;}
.y15c{bottom:516.291747pt;}
.ye2{bottom:516.300800pt;}
.y2f5{bottom:516.676543pt;}
.y2bd{bottom:516.746533pt;}
.y13{bottom:517.046878pt;}
.y27c{bottom:517.925333pt;}
.y34d{bottom:519.112267pt;}
.y1d6{bottom:519.339600pt;}
.y6b{bottom:519.736933pt;}
.y326{bottom:519.934667pt;}
.ybb{bottom:520.875067pt;}
.y21b{bottom:521.326533pt;}
.y379{bottom:522.051467pt;}
.y27e{bottom:522.341182pt;}
.y121{bottom:522.936933pt;}
.y1ab{bottom:526.028000pt;}
.y15d{bottom:526.550667pt;}
.y196{bottom:526.564827pt;}
.y9d{bottom:527.736933pt;}
.y12{bottom:530.182294pt;}
.y2f4{bottom:532.318667pt;}
.y34c{bottom:533.778933pt;}
.y27b{bottom:535.854400pt;}
.yfb{bottom:535.854667pt;}
.ye1{bottom:536.434133pt;}
.y2bc{bottom:536.746533pt;}
.y6a{bottom:539.870267pt;}
.y15a{bottom:540.050667pt;}
.y325{bottom:540.068000pt;}
.yba{bottom:541.008400pt;}
.y21a{bottom:541.459733pt;}
.y378{bottom:542.387467pt;}
.y9c{bottom:547.336933pt;}
.y157{bottom:549.770667pt;}
.y2f2{bottom:551.020533pt;}
.y48{bottom:551.772667pt;}
.y2eb{bottom:552.644667pt;}
.y158{bottom:553.550667pt;}
.y11{bottom:554.776040pt;}
.y34b{bottom:555.248800pt;}
.ye0{bottom:556.567467pt;}
.y2bb{bottom:556.746533pt;}
.y377{bottom:557.054133pt;}
.y1e9{bottom:559.474533pt;}
.y278{bottom:559.597333pt;}
.y69{bottom:560.003600pt;}
.y324{bottom:560.201467pt;}
.y2ec{bottom:560.541333pt;}
.y1ad{bottom:561.079867pt;}
.yb9{bottom:561.141733pt;}
.y219{bottom:561.593200pt;}
.y27a{bottom:564.010533pt;}
.y1ae{bottom:566.164000pt;}
.y9b{bottom:566.936933pt;}
.y155{bottom:567.050667pt;}
.y10{bottom:567.906244pt;}
.y34a{bottom:569.915467pt;}
.y2ef{bottom:570.401877pt;}
.y376{bottom:571.720800pt;}
.y1c9{bottom:571.782533pt;}
.y47{bottom:571.906000pt;}
.y2ea{bottom:573.386667pt;}
.y26{bottom:573.801733pt;}
.ydf{bottom:576.700800pt;}
.y2ba{bottom:576.746533pt;}
.y152{bottom:577.062267pt;}
.yf8{bottom:578.357467pt;}
.y68{bottom:580.136933pt;}
.y323{bottom:580.334667pt;}
.yb8{bottom:581.275067pt;}
.y153{bottom:581.381333pt;}
.y218{bottom:581.726533pt;}
.y349{bottom:584.582133pt;}
.y2ee{bottom:586.044000pt;}
.y9a{bottom:586.536933pt;}
.y375{bottom:592.056667pt;}
.yf{bottom:592.505203pt;}
.y277{bottom:592.696267pt;}
.y1d7{bottom:593.187733pt;}
.yf7{bottom:593.870267pt;}
.y2e9{bottom:594.468800pt;}
.y1eb{bottom:595.349600pt;}
.y2b9{bottom:596.746533pt;}
.yde{bottom:596.834000pt;}
.y1ca{bottom:599.362667pt;}
.y67{bottom:600.270267pt;}
.y322{bottom:600.468000pt;}
.y150{bottom:601.087407pt;}
.yb7{bottom:601.408400pt;}
.y25{bottom:601.801733pt;}
.y217{bottom:601.859867pt;}
.ye{bottom:605.697914pt;}
.y348{bottom:606.051867pt;}
.y99{bottom:606.136933pt;}
.y374{bottom:606.723333pt;}
.y46{bottom:607.157467pt;}
.y14f{bottom:607.302267pt;}
.y276{bottom:608.694133pt;}
.y1b1{bottom:609.530667pt;}
.y151{bottom:613.507947pt;}
.y2e8{bottom:615.210800pt;}
.y2b8{bottom:616.746533pt;}
.ydd{bottom:616.967467pt;}
.yd{bottom:618.890625pt;}
.y66{bottom:620.403600pt;}
.y321{bottom:620.601333pt;}
.y347{bottom:620.718533pt;}
.y216{bottom:621.993200pt;}
.y275{bottom:623.864533pt;}
.y45{bottom:624.490800pt;}
.y98{bottom:625.736933pt;}
.y373{bottom:627.059333pt;}
.y1d9{bottom:627.457600pt;}
.y24{bottom:629.801733pt;}
.y1ed{bottom:632.006133pt;}
.yc{bottom:632.026041pt;}
.yb6{bottom:632.880267pt;}
.y2d7{bottom:633.424133pt;}
.y2e7{bottom:635.952933pt;}
.y1b2{bottom:636.018667pt;}
.y2b7{bottom:636.746533pt;}
.ydc{bottom:637.100800pt;}
.y274{bottom:639.310667pt;}
.y14e{bottom:639.957467pt;}
.y65{bottom:640.536933pt;}
.y320{bottom:640.734667pt;}
.y372{bottom:641.726000pt;}
.y44{bottom:641.824133pt;}
.y215{bottom:642.126400pt;}
.y346{bottom:642.188400pt;}
.y97{bottom:645.336933pt;}
.y2d6{bottom:648.936933pt;}
.yb5{bottom:653.680267pt;}
.y273{bottom:655.341467pt;}
.y14d{bottom:655.470267pt;}
.y2e6{bottom:656.722000pt;}
.y2b6{bottom:656.746533pt;}
.y345{bottom:656.855067pt;}
.y43{bottom:659.157467pt;}
.y64{bottom:660.670267pt;}
.y31f{bottom:660.868133pt;}
.y1cd{bottom:661.170800pt;}
.y371{bottom:661.306133pt;}
.y214{bottom:662.259867pt;}
.y96{bottom:664.936933pt;}
.y1db{bottom:665.195067pt;}
.y250{bottom:666.088000pt;}
.y1b5{bottom:671.606667pt;}
.ydb{bottom:672.352267pt;}
.y272{bottom:674.348953pt;}
.y370{bottom:675.972800pt;}
.y42{bottom:676.490800pt;}
.y2b5{bottom:676.746533pt;}
.y2e5{bottom:677.464000pt;}
.y344{bottom:678.324933pt;}
.y269{bottom:680.421516pt;}
.y259{bottom:680.423665pt;}
.y24f{bottom:680.423789pt;}
.y63{bottom:680.803600pt;}
.y31e{bottom:681.001333pt;}
.y213{bottom:682.393200pt;}
.y95{bottom:684.536933pt;}
.y271{bottom:686.485253pt;}
.y261{bottom:686.494079pt;}
.y36f{bottom:690.639467pt;}
.yda{bottom:691.152133pt;}
.y268{bottom:692.284198pt;}
.y258{bottom:692.286346pt;}
.y24e{bottom:692.286470pt;}
.y343{bottom:692.991600pt;}
.y41{bottom:693.824133pt;}
.y2b4{bottom:696.746533pt;}
.y2e4{bottom:698.206133pt;}
.y270{bottom:698.347935pt;}
.y260{bottom:698.356761pt;}
.y62{bottom:700.937067pt;}
.y31d{bottom:701.134800pt;}
.y1b8{bottom:703.210667pt;}
.y94{bottom:704.136933pt;}
.y267{bottom:704.146879pt;}
.y257{bottom:704.149028pt;}
.y24d{bottom:704.149152pt;}
.y212{bottom:706.306000pt;}
.yd9{bottom:709.952267pt;}
.y26f{bottom:710.210616pt;}
.y25f{bottom:710.219443pt;}
.y36e{bottom:710.219467pt;}
.y40{bottom:711.157467pt;}
.y342{bottom:714.461467pt;}
.y1dd{bottom:714.983733pt;}
.y266{bottom:716.009561pt;}
.y256{bottom:716.011709pt;}
.y249{bottom:716.011833pt;}
.y2b3{bottom:716.746533pt;}
.y246{bottom:717.004133pt;}
.y2e3{bottom:718.948133pt;}
.y61{bottom:721.070267pt;}
.y31c{bottom:721.268000pt;}
.y26e{bottom:722.073298pt;}
.y25e{bottom:722.082124pt;}
.y93{bottom:723.736933pt;}
.y245{bottom:724.451467pt;}
.y36d{bottom:724.886133pt;}
.y265{bottom:728.145861pt;}
.y255{bottom:728.148009pt;}
.y248{bottom:728.148133pt;}
.y3f{bottom:728.490800pt;}
.yd8{bottom:728.752133pt;}
.y341{bottom:729.128133pt;}
.y1bb{bottom:730.502667pt;}
.y244{bottom:731.898667pt;}
.y26d{bottom:733.935979pt;}
.y25d{bottom:733.944806pt;}
.y2b2{bottom:736.746533pt;}
.y243{bottom:739.346000pt;}
.y2e2{bottom:739.690133pt;}
.y264{bottom:740.035022pt;}
.y254{bottom:740.037170pt;}
.y24c{bottom:740.037294pt;}
.y60{bottom:741.203600pt;}
.y31b{bottom:741.401333pt;}
.y92{bottom:743.336933pt;}
.y200{bottom:744.148400pt;}
.y36c{bottom:744.466133pt;}
.y1ee{bottom:745.753733pt;}
.y3e{bottom:745.824133pt;}
.y26c{bottom:745.825140pt;}
.y25c{bottom:745.833967pt;}
.y242{bottom:746.793200pt;}
.y1cf{bottom:746.824000pt;}
.yd7{bottom:747.552133pt;}
.yb{bottom:749.588541pt;}
.y340{bottom:750.597867pt;}
.y263{bottom:751.897703pt;}
.y253{bottom:751.899852pt;}
.y24b{bottom:751.899976pt;}
.y241{bottom:754.262533pt;}
.y2b1{bottom:756.746533pt;}
.y26b{bottom:757.961440pt;}
.y25b{bottom:757.970267pt;}
.y395{bottom:758.376933pt;}
.y36b{bottom:759.132800pt;}
.y1be{bottom:759.666667pt;}
.y2e1{bottom:760.772267pt;}
.y5f{bottom:761.336933pt;}
.y31a{bottom:761.534800pt;}
.y240{bottom:761.709733pt;}
.y91{bottom:762.937067pt;}
.y3d{bottom:763.157467pt;}
.y262{bottom:763.760385pt;}
.y252{bottom:763.762533pt;}
.y24a{bottom:763.762657pt;}
.y33f{bottom:765.264533pt;}
.y23f{bottom:769.157067pt;}
.y26a{bottom:769.824122pt;}
.y394{bottom:773.043600pt;}
.y36a{bottom:773.799467pt;}
.y23e{bottom:776.604267pt;}
.y2b0{bottom:776.746533pt;}
.y3c{bottom:780.490800pt;}
.y5e{bottom:781.470267pt;}
.y2e0{bottom:781.555067pt;}
.y319{bottom:781.668000pt;}
.y90{bottom:782.536933pt;}
.y23d{bottom:784.051467pt;}
.y33e{bottom:786.734400pt;}
.y247{bottom:787.207600pt;}
.ya{bottom:788.635422pt;}
.y23c{bottom:791.498800pt;}
.y1c1{bottom:792.609333pt;}
.y369{bottom:793.379600pt;}
.y2af{bottom:796.746533pt;}
.y23b{bottom:798.946000pt;}
.y33d{bottom:801.401067pt;}
.y3b{bottom:801.603733pt;}
.y8f{bottom:802.136933pt;}
.y2df{bottom:802.297067pt;}
.y23a{bottom:806.393333pt;}
.y368{bottom:808.046267pt;}
.y233{bottom:808.176000pt;}
.y9{bottom:811.177083pt;}
.y318{bottom:813.140000pt;}
.y239{bottom:813.840533pt;}
.y2ae{bottom:820.526000pt;}
.y238{bottom:821.287867pt;}
.y3a{bottom:821.736933pt;}
.y367{bottom:822.712933pt;}
.y2de{bottom:823.039200pt;}
.y232{bottom:823.688800pt;}
.y1df{bottom:825.777333pt;}
.y237{bottom:828.735067pt;}
.y236{bottom:836.182400pt;}
.y8{bottom:836.390635pt;}
.y235{bottom:843.629467pt;}
.y2dd{bottom:843.781200pt;}
.y38{bottom:850.460000pt;}
.y21{bottom:851.259867pt;}
.y37{bottom:860.291333pt;}
.y7{bottom:861.244797pt;}
.y20{bottom:862.460000pt;}
.y2dc{bottom:864.523200pt;}
.y2db{bottom:885.292400pt;}
.y6{bottom:886.098959pt;}
.y2da{bottom:906.034400pt;}
.y2d9{bottom:926.776533pt;}
.y2d8{bottom:947.858533pt;}
.y5{bottom:953.484377pt;}
.y4{bottom:968.473959pt;}
.y1{bottom:978.125000pt;}
.y3{bottom:983.229167pt;}
.y2{bottom:1010.921875pt;}
.y1f{bottom:1070.630208pt;}
.h30{height:12.061333pt;}
.h31{height:12.062667pt;}
.h2e{height:12.329333pt;}
.h37{height:12.420000pt;}
.h35{height:12.960000pt;}
.h38{height:12.977333pt;}
.h39{height:12.988000pt;}
.h32{height:13.402667pt;}
.h60{height:13.516000pt;}
.h69{height:13.633580pt;}
.h6b{height:13.634113pt;}
.h6a{height:13.655980pt;}
.h61{height:13.790667pt;}
.h36{height:13.797333pt;}
.h2f{height:14.205333pt;}
.h29{height:15.506533pt;}
.h58{height:16.043199pt;}
.h20{height:17.773438pt;}
.h70{height:19.777720pt;}
.h7b{height:20.763285pt;}
.h6c{height:22.460247pt;}
.h21{height:22.998667pt;}
.h27{height:23.000000pt;}
.h24{height:23.034667pt;}
.h66{height:23.720000pt;}
.h64{height:23.749333pt;}
.h65{height:23.996000pt;}
.h3d{height:24.900423pt;}
.h59{height:25.668964pt;}
.h45{height:25.712000pt;}
.h19{height:25.746562pt;}
.h5f{height:25.772398pt;}
.h2b{height:26.361414pt;}
.h34{height:26.804883pt;}
.h15{height:26.869792pt;}
.h4b{height:27.024000pt;}
.h6e{height:27.252604pt;}
.h5c{height:27.306667pt;}
.h62{height:27.333333pt;}
.hc{height:27.815138pt;}
.h4c{height:28.897333pt;}
.h18{height:30.958333pt;}
.h4a{height:31.332000pt;}
.h56{height:31.386824pt;}
.h7c{height:31.644352pt;}
.h3b{height:31.672266pt;}
.h68{height:32.355477pt;}
.h4d{height:32.670667pt;}
.h23{height:32.782552pt;}
.h48{height:32.937333pt;}
.h22{height:32.981771pt;}
.h1a{height:33.600000pt;}
.h72{height:33.621930pt;}
.h75{height:33.624023pt;}
.h77{height:33.626649pt;}
.h52{height:33.713333pt;}
.h8{height:33.951720pt;}
.h44{height:33.981333pt;}
.h46{height:34.276000pt;}
.h2a{height:34.300957pt;}
.hf{height:34.526042pt;}
.h1e{height:35.039062pt;}
.h43{height:35.050667pt;}
.h49{height:35.320000pt;}
.h42{height:35.345333pt;}
.h1{height:35.532990pt;}
.h4f{height:36.389333pt;}
.h6d{height:38.541667pt;}
.h17{height:38.697917pt;}
.h1b{height:38.932292pt;}
.h40{height:39.090667pt;}
.h10{height:39.458333pt;}
.h47{height:39.868000pt;}
.h7a{height:39.887504pt;}
.h3{height:40.127501pt;}
.hb{height:40.348817pt;}
.h4e{height:40.402667pt;}
.h5e{height:41.125333pt;}
.h14{height:43.200708pt;}
.h3f{height:43.345333pt;}
.ha{height:43.472596pt;}
.h3c{height:43.613333pt;}
.h1d{height:44.390625pt;}
.h7{height:45.271976pt;}
.h3e{height:45.769333pt;}
.h26{height:46.020000pt;}
.h4{height:46.300264pt;}
.h67{height:47.745333pt;}
.h13{height:49.322917pt;}
.h16{height:49.609375pt;}
.h5a{height:49.923911pt;}
.h2d{height:51.004228pt;}
.h33{height:51.627603pt;}
.h5d{height:52.148164pt;}
.h73{height:52.705333pt;}
.h79{height:52.740000pt;}
.h78{height:53.045333pt;}
.h74{height:53.080000pt;}
.h63{height:53.383860pt;}
.h71{height:53.406667pt;}
.h9{height:53.501324pt;}
.h6{height:54.289295pt;}
.h2{height:55.560922pt;}
.h50{height:56.189333pt;}
.h41{height:58.087252pt;}
.h51{height:58.624000pt;}
.h12{height:59.531250pt;}
.h54{height:59.960000pt;}
.h1c{height:64.492188pt;}
.h25{height:68.668000pt;}
.h53{height:69.300000pt;}
.h76{height:69.366667pt;}
.h11{height:69.453125pt;}
.h5{height:73.901501pt;}
.h2c{height:75.647042pt;}
.h5b{height:118.901333pt;}
.h28{height:227.744000pt;}
.h3a{height:308.437333pt;}
.h1f{height:318.554667pt;}
.h6f{height:543.828000pt;}
.h57{height:716.049333pt;}
.h55{height:758.937333pt;}
.hd{height:907.086667pt;}
.he{height:907.333333pt;}
.h0{height:1121.333333pt;}
.w23{width:16.053333pt;}
.w1f{width:23.010667pt;}
.w1d{width:23.026667pt;}
.w21{width:23.037333pt;}
.w1e{width:23.278667pt;}
.w25{width:23.305333pt;}
.w22{width:32.642667pt;}
.w10{width:37.285333pt;}
.wd{width:37.553333pt;}
.we{width:37.820000pt;}
.w20{width:39.626667pt;}
.w24{width:39.894667pt;}
.wc{width:45.030667pt;}
.wf{width:45.057333pt;}
.w14{width:45.630667pt;}
.w15{width:51.326667pt;}
.w16{width:52.136000pt;}
.wa{width:52.537333pt;}
.w17{width:53.350667pt;}
.w2a{width:54.089333pt;}
.w29{width:54.613333pt;}
.w18{width:57.510667pt;}
.w1c{width:61.032000pt;}
.w2b{width:69.810667pt;}
.w19{width:70.226667pt;}
.w1a{width:75.221333pt;}
.w2d{width:77.810667pt;}
.w28{width:77.838667pt;}
.wb{width:82.877333pt;}
.w2c{width:85.257333pt;}
.w31{width:86.062667pt;}
.w33{width:86.402667pt;}
.w32{width:95.922667pt;}
.w30{width:96.297333pt;}
.w11{width:97.496000pt;}
.w2e{width:101.558667pt;}
.w6{width:103.157333pt;}
.w12{width:106.022667pt;}
.w9{width:121.477333pt;}
.w8{width:136.218667pt;}
.w4{width:141.360000pt;}
.w5{width:179.733333pt;}
.w13{width:204.065333pt;}
.w26{width:335.433333pt;}
.w3{width:424.252000pt;}
.w7{width:471.170667pt;}
.w2f{width:472.441333pt;}
.w1b{width:492.290667pt;}
.w27{width:530.562667pt;}
.w1{width:642.520000pt;}
.w2{width:642.666667pt;}
.w0{width:793.333333pt;}
.x22{left:-61.739733pt;}
.x0{left:0.000000pt;}
.x9b{left:3.034267pt;}
.x90{left:4.137467pt;}
.x23{left:6.626933pt;}
.x27{left:8.040800pt;}
.x36{left:9.403333pt;}
.x34{left:10.721467pt;}
.x39{left:11.794400pt;}
.x3e{left:12.866400pt;}
.x3d{left:14.227333pt;}
.x31{left:15.547067pt;}
.x3c{left:17.143867pt;}
.x4a{left:18.619067pt;}
.x4f{left:19.731067pt;}
.x4e{left:21.059467pt;}
.x4c{left:23.219467pt;}
.x47{left:25.131467pt;}
.xa5{left:26.183200pt;}
.x33{left:27.093467pt;}
.x45{left:28.620133pt;}
.x9a{left:29.534667pt;}
.x3a{left:30.846000pt;}
.x51{left:31.881467pt;}
.x95{left:33.396267pt;}
.x97{left:36.961067pt;}
.x5b{left:39.626667pt;}
.x48{left:40.770133pt;}
.x5d{left:43.909907pt;}
.x15{left:45.354267pt;}
.x49{left:47.271467pt;}
.x30{left:52.557600pt;}
.x2d{left:57.383067pt;}
.x2f{left:59.795467pt;}
.x77{left:71.856000pt;}
.x50{left:74.822533pt;}
.x54{left:77.004000pt;}
.x8f{left:79.146800pt;}
.x4d{left:80.211733pt;}
.x16{left:83.149600pt;}
.x5{left:86.929200pt;}
.x29{left:90.217867pt;}
.x28{left:91.826133pt;}
.xab{left:95.107333pt;}
.x2a{left:97.217009pt;}
.x17{left:102.047200pt;}
.x1d{left:105.826800pt;}
.x21{left:107.244000pt;}
.x3{left:113.385416pt;}
.x1e{left:124.724400pt;}
.x7{left:125.825867pt;}
.x91{left:130.174667pt;}
.x56{left:135.366400pt;}
.x6{left:137.756800pt;}
.x93{left:143.719482pt;}
.x98{left:148.125116pt;}
.x92{left:149.509600pt;}
.x18{left:151.149600pt;}
.x58{left:168.729333pt;}
.x3f{left:178.888400pt;}
.x55{left:182.667867pt;}
.x19{left:184.482933pt;}
.x5c{left:189.358800pt;}
.x7d{left:191.420856pt;}
.x5a{left:193.641907pt;}
.x7c{left:194.730756pt;}
.x20{left:198.292000pt;}
.x7a{left:199.461707pt;}
.x5e{left:201.127386pt;}
.x7b{left:203.318843pt;}
.x7e{left:204.969380pt;}
.x59{left:206.750533pt;}
.x76{left:208.777200pt;}
.x99{left:210.492458pt;}
.x94{left:214.365987pt;}
.x1{left:217.322917pt;}
.x41{left:218.641733pt;}
.xa{left:220.598533pt;}
.x8{left:223.406533pt;}
.x60{left:230.301333pt;}
.x2c{left:232.087202pt;}
.x10{left:233.302267pt;}
.x2{left:236.218749pt;}
.x2b{left:241.738363pt;}
.x61{left:245.312133pt;}
.x24{left:248.604000pt;}
.x5f{left:253.606667pt;}
.x26{left:255.937600pt;}
.x81{left:262.906484pt;}
.x62{left:265.379600pt;}
.x7f{left:269.543937pt;}
.x63{left:270.462667pt;}
.x80{left:271.476918pt;}
.x83{left:274.239582pt;}
.x82{left:276.719800pt;}
.xae{left:283.553867pt;}
.x42{left:284.713780pt;}
.xa9{left:286.614133pt;}
.x1c{left:289.309467pt;}
.x78{left:291.781467pt;}
.xac{left:292.732207pt;}
.x1b{left:294.463867pt;}
.x14{left:297.299067pt;}
.xb{left:298.627867pt;}
.x43{left:299.869960pt;}
.x9c{left:301.550918pt;}
.x1f{left:304.237333pt;}
.x64{left:305.535867pt;}
.x40{left:308.016800pt;}
.x66{left:310.888000pt;}
.x38{left:314.682133pt;}
.x67{left:325.603333pt;}
.x65{left:333.897867pt;}
.xa0{left:338.813333pt;}
.x87{left:339.920963pt;}
.x75{left:341.051067pt;}
.x68{left:345.938267pt;}
.x85{left:347.644063pt;}
.x32{left:350.064000pt;}
.x6a{left:351.017333pt;}
.x84{left:355.914400pt;}
.xa1{left:358.061333pt;}
.x86{left:358.950682pt;}
.x79{left:363.637467pt;}
.x44{left:365.229333pt;}
.xa2{left:367.242800pt;}
.xe{left:371.648667pt;}
.x69{left:374.321733pt;}
.xa6{left:378.123867pt;}
.x11{left:380.001600pt;}
.xad{left:384.238806pt;}
.x6b{left:386.094667pt;}
.xa7{left:388.320727pt;}
.x6c{left:391.178667pt;}
.x3b{left:395.652000pt;}
.x12{left:401.883067pt;}
.xf{left:404.854400pt;}
.xd{left:407.221600pt;}
.x9{left:410.948267pt;}
.xc{left:416.264533pt;}
.x13{left:419.456000pt;}
.x52{left:423.312000pt;}
.x6e{left:424.361333pt;}
.x9d{left:427.099200pt;}
.x25{left:428.337333pt;}
.x89{left:429.861979pt;}
.x2e{left:433.478667pt;}
.x88{left:437.858698pt;}
.x6f{left:439.372267pt;}
.x9e{left:441.715718pt;}
.x8a{left:443.101579pt;}
.x6d{left:447.666800pt;}
.xa3{left:454.658667pt;}
.x70{left:459.439733pt;}
.x46{left:463.272000pt;}
.x72{left:464.790667pt;}
.xa4{left:466.219733pt;}
.xa8{left:469.620000pt;}
.x73{left:476.028800pt;}
.xaa{left:478.117384pt;}
.x35{left:479.045333pt;}
.x71{left:484.323333pt;}
.x74{left:492.639333pt;}
.x53{left:494.073333pt;}
.x96{left:497.742667pt;}
.x8d{left:507.684348pt;}
.x8b{left:510.438185pt;}
.x4b{left:515.944000pt;}
.x37{left:517.129333pt;}
.x57{left:519.933333pt;}
.x9f{left:521.728933pt;}
.x8e{left:533.077901pt;}
.x8c{left:536.387801pt;}
.x1a{left:584.853733pt;}
.x4{left:696.651041pt;}
}




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