
    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_8e46f9a028ca14e65e56c634.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0c9c1f7e8871ca7290cd60fd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bf0583f61370cc20735f3c97.woff')format("woff");}.ff3{font-family:ff3;line-height:0.995000;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_33158637100e174013125f54.woff')format("woff");}.ff4{font-family:ff4;line-height:0.677000;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_d49a70b70f4d2b15abe92ff0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_dda9c4f2ac61c19441e5722f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.995000;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_bc2f2f8f6468aa238995b150.woff')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_08d40821eb73169ad168aa42.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7e0f0e08ee338fec2ff6f6bf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.995000;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_fae05f05d856ee6f7ba9df8f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.388000;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_94790fee25b4c85561be8b37.woff')format("woff");}.ffb{font-family:ffb;line-height:0.931000;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_1928f5a9e4c525f01d72e461.woff')format("woff");}.ffc{font-family:ffc;line-height:1.413000;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_af57094ef2e9ad7aa7fcf9a7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.689000;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_1af6d34d6ea94798408a2057.woff')format("woff");}.ffe{font-family:ffe;line-height:0.248000;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_0784bb88e41ac40d204537e7.woff')format("woff");}.fff{font-family:fff;line-height:0.920000;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_b48c0b939179a9c7597fb626.woff')format("woff");}.ff10{font-family:ff10;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0784bb88e41ac40d204537e7.woff')format("woff");}.ff11{font-family:ff11;line-height:0.920000;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_2546ed31e4b02f732ed6c0ce.woff')format("woff");}.ff12{font-family:ff12;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_119f84401e7da7dbdbd82075.woff')format("woff");}.ff13{font-family:ff13;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_676e4523832f07d38548658b.woff')format("woff");}.ff14{font-family:ff14;line-height:0.882324;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_fd147e218dde88648595d6c3.woff')format("woff");}.ff15{font-family:ff15;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bf59e34a8d65d11363a7cb9f.woff')format("woff");}.ff16{font-family:ff16;line-height:0.646000;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;}
.md{transform:matrix(0.000000,-0.249654,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249654,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249654,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250053,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250053,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250053,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250054,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250054,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250054,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);}
.ma{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-11.222096px;}
.v3{vertical-align:-8.165154px;}
.v2{vertical-align:-1.016767px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.675800px;}
.v5{vertical-align:7.140000px;}
.v6{vertical-align:12.971400px;}
.v1{vertical-align:19.728183px;}
.ls24{letter-spacing:-2.331786px;}
.ls28{letter-spacing:-2.072467px;}
.ls9{letter-spacing:-1.733077px;}
.ls12{letter-spacing:-1.136143px;}
.ls29{letter-spacing:-1.136099px;}
.ls1{letter-spacing:-1.074892px;}
.ls2a{letter-spacing:-1.009766px;}
.ls13{letter-spacing:-0.566336px;}
.ls38{letter-spacing:-0.537463px;}
.ls5{letter-spacing:-0.537434px;}
.ls2{letter-spacing:-0.506822px;}
.ls14{letter-spacing:-0.503382px;}
.ls6{letter-spacing:-0.477666px;}
.ls39{letter-spacing:-0.477661px;}
.lsa{letter-spacing:-0.450497px;}
.ls25{letter-spacing:-0.418380px;}
.ls8{letter-spacing:-0.387765px;}
.ls26{letter-spacing:-0.371871px;}
.ls7{letter-spacing:-0.358268px;}
.ls36{letter-spacing:-0.344664px;}
.ls3a{letter-spacing:-0.059541px;}
.ls2b{letter-spacing:-0.003900px;}
.ls3{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.368063px;}
.ls1b{letter-spacing:0.372058px;}
.lsd{letter-spacing:0.381206px;}
.ls27{letter-spacing:0.418380px;}
.ls15{letter-spacing:0.477666px;}
.ls16{letter-spacing:0.477691px;}
.lsb{letter-spacing:0.537434px;}
.ls0{letter-spacing:0.596956px;}
.lsf{letter-spacing:1.031670px;}
.ls4{letter-spacing:1.074868px;}
.lsc{letter-spacing:1.115271px;}
.ls17{letter-spacing:1.398727px;}
.ls22{letter-spacing:2.813918px;}
.lse{letter-spacing:2.945700px;}
.ls23{letter-spacing:3.155918px;}
.ls1a{letter-spacing:7.300280px;}
.ls1e{letter-spacing:8.381604px;}
.ls18{letter-spacing:8.849639px;}
.ls21{letter-spacing:8.881918px;}
.ls20{letter-spacing:8.908816px;}
.ls1f{letter-spacing:8.914196px;}
.ls19{letter-spacing:8.994892px;}
.ls1c{letter-spacing:11.783700px;}
.ls10{letter-spacing:16.889700px;}
.ls11{letter-spacing:23.345700px;}
.ls37{letter-spacing:62.754932px;}
.ls2e{letter-spacing:178.720547px;}
.ls33{letter-spacing:178.737284px;}
.ls30{letter-spacing:178.846074px;}
.ls31{letter-spacing:178.971558px;}
.ls35{letter-spacing:179.030137px;}
.ls32{letter-spacing:179.892129px;}
.ls2f{letter-spacing:180.017613px;}
.ls34{letter-spacing:181.231079px;}
.ls2d{letter-spacing:181.427696px;}
.ls2c{letter-spacing:182.377513px;}
.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;}
}
.ws13{word-spacing:-50.945948px;}
.ws15{word-spacing:-41.951057px;}
.ws1a{word-spacing:-34.752991px;}
.ws11{word-spacing:-34.215557px;}
.ws28{word-spacing:-26.611681px;}
.ws19{word-spacing:-24.326164px;}
.ws3{word-spacing:-14.524168px;}
.ws10{word-spacing:-13.449300px;}
.ws12{word-spacing:-12.911866px;}
.wsd{word-spacing:-12.098736px;}
.ws45{word-spacing:-10.878930px;}
.wsdb{word-spacing:-10.460550px;}
.wsd8{word-spacing:-10.042170px;}
.wsf{word-spacing:-9.463500px;}
.ws17{word-spacing:-9.414150px;}
.wsc{word-spacing:-8.965200px;}
.wsb{word-spacing:-8.487534px;}
.ws29{word-spacing:-7.489796px;}
.ws4f{word-spacing:-7.371000px;}
.ws8{word-spacing:-7.149173px;}
.ws25{word-spacing:-6.972750px;}
.ws4c{word-spacing:-6.892733px;}
.wse{word-spacing:-6.461754px;}
.ws6{word-spacing:-6.385732px;}
.ws26{word-spacing:-4.899528px;}
.ws24{word-spacing:-4.760073px;}
.ws14{word-spacing:-4.486686px;}
.ws4e{word-spacing:-4.261633px;}
.ws18{word-spacing:-2.135749px;}
.ws7{word-spacing:-0.879970px;}
.ws1c{word-spacing:-0.039000px;}
.wsa{word-spacing:0.000000px;}
.ws16{word-spacing:0.129113px;}
.ws5{word-spacing:2.749037px;}
.ws0{word-spacing:6.676233px;}
.ws1{word-spacing:8.435401px;}
.ws4{word-spacing:12.948986px;}
.ws2{word-spacing:13.836640px;}
.ws9{word-spacing:22.034103px;}
.wsd9{word-spacing:31.373282px;}
.wsda{word-spacing:31.377466px;}
.wsd5{word-spacing:67.600007px;}
.wsd7{word-spacing:75.265540px;}
.ws98{word-spacing:82.240509px;}
.ws80{word-spacing:82.244694px;}
.ws51{word-spacing:82.968564px;}
.ws59{word-spacing:83.265643px;}
.ws9b{word-spacing:83.307485px;}
.ws67{word-spacing:83.989513px;}
.wsb5{word-spacing:85.257332px;}
.ws7b{word-spacing:85.261516px;}
.wsa4{word-spacing:85.303358px;}
.ws6c{word-spacing:85.307543px;}
.ws8c{word-spacing:85.349385px;}
.ws62{word-spacing:85.370306px;}
.wscd{word-spacing:85.688307px;}
.wsb0{word-spacing:85.709228px;}
.wsbd{word-spacing:86.370335px;}
.wsa9{word-spacing:86.663230px;}
.ws76{word-spacing:86.667414px;}
.ws94{word-spacing:86.709256px;}
.wsc2{word-spacing:86.730177px;}
.ws4a{word-spacing:86.737200px;}
.ws89{word-spacing:87.069099px;}
.ws71{word-spacing:87.746943px;}
.wsb8{word-spacing:89.428999px;}
.ws47{word-spacing:89.634600px;}
.ws49{word-spacing:89.954400px;}
.ws48{word-spacing:94.326000px;}
.ws22{word-spacing:97.551000px;}
.ws21{word-spacing:99.167400px;}
.ws1f{word-spacing:99.168600px;}
.ws1e{word-spacing:99.170400px;}
.ws20{word-spacing:99.198000px;}
.ws23{word-spacing:99.644400px;}
.wsd4{word-spacing:107.601192px;}
.wsba{word-spacing:113.241479px;}
.wsbc{word-spacing:114.153681px;}
.ws73{word-spacing:114.463271px;}
.wsb4{word-spacing:117.316993px;}
.ws9a{word-spacing:117.814831px;}
.ws82{word-spacing:124.564020px;}
.ws84{word-spacing:124.706284px;}
.wsb7{word-spacing:125.480364px;}
.ws93{word-spacing:127.392595px;}
.ws5f{word-spacing:128.053660px;}
.wsb9{word-spacing:130.317365px;}
.ws99{word-spacing:131.162535px;}
.wsc1{word-spacing:131.468025px;}
.ws1d{word-spacing:132.427200px;}
.wsbf{word-spacing:132.597723px;}
.wsbe{word-spacing:132.748396px;}
.wsd6{word-spacing:133.166777px;}
.wsb1{word-spacing:133.388582px;}
.ws66{word-spacing:134.091531px;}
.ws91{word-spacing:134.488990px;}
.ws5e{word-spacing:134.752638px;}
.ws90{word-spacing:135.028796px;}
.wscf{word-spacing:135.275623px;}
.wsa3{word-spacing:135.392823px;}
.ws7f{word-spacing:135.710824px;}
.ws88{word-spacing:136.208746px;}
.ws61{word-spacing:136.539300px;}
.ws6b{word-spacing:136.899143px;}
.wsd1{word-spacing:137.112538px;}
.ws77{word-spacing:137.154380px;}
.ws7a{word-spacing:138.112566px;}
.wsc6{word-spacing:138.116751px;}
.ws70{word-spacing:138.175330px;}
.ws56{word-spacing:139.137700px;}
.wscc{word-spacing:139.238122px;}
.ws9f{word-spacing:139.493359px;}
.wsa8{word-spacing:139.618886px;}
.ws55{word-spacing:140.853230px;}
.ws5d{word-spacing:141.150310px;}
.ws72{word-spacing:145.167161px;}
.ws57{word-spacing:145.573031px;}
.wsc5{word-spacing:150.259399px;}
.ws8f{word-spacing:150.280320px;}
.wsc8{word-spacing:150.301241px;}
.wscb{word-spacing:150.309610px;}
.ws54{word-spacing:150.343083px;}
.ws6a{word-spacing:150.347268px;}
.ws5c{word-spacing:150.405847px;}
.wsa7{word-spacing:150.548068px;}
.ws6f{word-spacing:150.778242px;}
.ws87{word-spacing:150.803347px;}
.ws9e{word-spacing:151.493744px;}
.wsb3{word-spacing:151.870282px;}
.ws92{word-spacing:151.916308px;}
.wsce{word-spacing:152.096230px;}
.ws85{word-spacing:152.196651px;}
.ws65{word-spacing:152.661141px;}
.ws8a{word-spacing:152.715494px;}
.ws68{word-spacing:152.740600px;}
.ws6d{word-spacing:152.757336px;}
.ws60{word-spacing:152.949811px;}
.ws7c{word-spacing:153.234337px;}
.wsb6{word-spacing:153.330575px;}
.ws83{word-spacing:153.410075px;}
.ws79{word-spacing:153.974944px;}
.wsa2{word-spacing:154.067039px;}
.wsc3{word-spacing:154.238550px;}
.ws5a{word-spacing:154.443577px;}
.ws7e{word-spacing:154.443619px;}
.wsd0{word-spacing:154.640235px;}
.wsb2{word-spacing:154.719694px;}
.wsaa{word-spacing:155.184184px;}
.wsbb{word-spacing:155.305526px;}
.wsc0{word-spacing:155.498000px;}
.ws8b{word-spacing:156.355724px;}
.wsa5{word-spacing:156.502213px;}
.wsae{word-spacing:156.882977px;}
.ws7d{word-spacing:159.247020px;}
.wsad{word-spacing:161.924921px;}
.wsac{word-spacing:165.598708px;}
.ws95{word-spacing:168.046476px;}
.wsa6{word-spacing:168.067397px;}
.ws8d{word-spacing:168.787083px;}
.ws9c{word-spacing:169.084163px;}
.wsa0{word-spacing:169.109268px;}
.ws74{word-spacing:169.552795px;}
.ws6e{word-spacing:170.167834px;}
.ws78{word-spacing:170.192981px;}
.ws63{word-spacing:170.787140px;}
.wsc9{word-spacing:172.469197px;}
.ws52{word-spacing:172.808119px;}
.ws36{word-spacing:174.230291px;}
.ws81{word-spacing:175.544599px;}
.wsc4{word-spacing:176.444206px;}
.ws5b{word-spacing:176.611533px;}
.ws3a{word-spacing:176.991876px;}
.ws8e{word-spacing:177.862615px;}
.wsa1{word-spacing:178.389868px;}
.ws64{word-spacing:178.741301px;}
.ws9d{word-spacing:180.051003px;}
.ws3f{word-spacing:180.293687px;}
.ws96{word-spacing:180.306241px;}
.ws53{word-spacing:180.415031px;}
.wsc7{word-spacing:180.448504px;}
.ws42{word-spacing:181.256057px;}
.wsca{word-spacing:181.599123px;}
.wsd3{word-spacing:181.603516px;}
.ws69{word-spacing:182.498772px;}
.ws3d{word-spacing:182.682415px;}
.ws86{word-spacing:182.800036px;}
.wsaf{word-spacing:183.159879px;}
.wsab{word-spacing:183.448590px;}
.ws75{word-spacing:183.804249px;}
.ws33{word-spacing:188.465008px;}
.ws2a{word-spacing:192.791491px;}
.ws2d{word-spacing:194.917075px;}
.ws30{word-spacing:199.235190px;}
.ws43{word-spacing:199.649428px;}
.ws40{word-spacing:201.666222px;}
.ws3b{word-spacing:202.431934px;}
.ws3e{word-spacing:202.515618px;}
.ws44{word-spacing:207.369313px;}
.ws34{word-spacing:208.122473px;}
.ws31{word-spacing:208.833790px;}
.ws37{word-spacing:209.419581px;}
.ws2e{word-spacing:210.549321px;}
.ws41{word-spacing:210.716689px;}
.ws2b{word-spacing:212.139324px;}
.ws39{word-spacing:214.395164px;}
.ws35{word-spacing:214.939113px;}
.ws27{word-spacing:215.529088px;}
.ws38{word-spacing:216.863854px;}
.ws2f{word-spacing:216.905696px;}
.ws32{word-spacing:216.993565px;}
.ws3c{word-spacing:217.868067px;}
.ws2c{word-spacing:218.202804px;}
.ws4b{word-spacing:367.224022px;}
.wsd2{word-spacing:374.370281px;}
.ws58{word-spacing:375.148797px;}
.ws97{word-spacing:375.152981px;}
.ws4d{word-spacing:484.302000px;}
.ws50{word-spacing:577.652400px;}
.ws1b{word-spacing:1019.745000px;}
.ws46{word-spacing:1542.444000px;}
._2b{margin-left:-2015.976300px;}
._29{margin-left:-1742.208000px;}
._27{margin-left:-944.384998px;}
._2a{margin-left:-715.439400px;}
._a{margin-left:-28.881277px;}
._26{margin-left:-22.192315px;}
._19{margin-left:-6.029846px;}
._d{margin-left:-4.642566px;}
._1{margin-left:-3.167791px;}
._0{margin-left:-1.906372px;}
._8{width:1.825562px;}
._4{width:2.982708px;}
._3{width:4.775559px;}
._5{width:5.841204px;}
._6{width:6.931440px;}
._2{width:8.189196px;}
._b{width:9.252283px;}
._9{width:10.254969px;}
._7{width:11.977466px;}
._28{width:13.051823px;}
._11{width:14.267605px;}
._e{width:15.762248px;}
._17{width:17.248098px;}
._14{width:18.415023px;}
._1a{width:19.761187px;}
._10{width:20.784686px;}
._c{width:21.886850px;}
._16{width:23.314863px;}
._1e{width:25.050666px;}
._1b{width:26.104553px;}
._20{width:27.374167px;}
._1c{width:28.677673px;}
._1d{width:29.929005px;}
._12{width:30.998213px;}
._f{width:33.474490px;}
._1f{width:35.743936px;}
._21{width:37.731742px;}
._4b{width:41.838016px;}
._15{width:43.062941px;}
._4a{width:62.759116px;}
._2f{width:84.716718px;}
._30{width:92.717838px;}
._25{width:180.499054px;}
._24{width:205.193150px;}
._3e{width:263.074046px;}
._40{width:268.513532px;}
._41{width:274.538767px;}
._32{width:281.752362px;}
._3d{width:316.171839px;}
._35{width:321.423119px;}
._44{width:323.117728px;}
._3a{width:328.804083px;}
._43{width:329.858465px;}
._46{width:334.080343px;}
._31{width:335.628546px;}
._47{width:337.344034px;}
._42{width:340.273072px;}
._34{width:348.557786px;}
._36{width:350.231474px;}
._2e{width:351.315187px;}
._3b{width:356.089382px;}
._33{width:357.219163px;}
._37{width:358.227560px;}
._39{width:362.177464px;}
._45{width:367.303133px;}
._3f{width:372.114986px;}
._38{width:379.018991px;}
._3c{width:396.931637px;}
._48{width:417.890520px;}
._2d{width:676.743349px;}
._23{width:1029.945000px;}
._49{width:2258.577011px;}
._4d{width:2260.501753px;}
._4c{width:2269.126009px;}
._22{width:2278.452146px;}
._18{width:2280.669693px;}
._2c{width:2286.134863px;}
._13{width:2289.536634px;}
.fc5{color:rgb(12,12,11);}
.fc2{color:rgb(74,101,112);}
.fc4{color:transparent;}
.fc1{color:rgb(178,13,53);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:22.737000px;}
.fs13{font-size:25.899000px;}
.fs5{font-size:26.976000px;}
.fs11{font-size:27.000000px;}
.fs10{font-size:27.891000px;}
.fs8{font-size:33.869400px;}
.fs4{font-size:35.860800px;}
.fsc{font-size:37.656600px;}
.fsb{font-size:37.854000px;}
.fs6{font-size:38.854200px;}
.fs12{font-size:38.999400px;}
.fse{font-size:39.000000px;}
.fs7{font-size:41.842200px;}
.fs1{font-size:50.809200px;}
.fsd{font-size:51.000000px;}
.fs3{font-size:53.797200px;}
.fsa{font-size:56.787000px;}
.fs2{font-size:65.754000px;}
.fs9{font-size:71.730600px;}
.fs0{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y312{bottom:8.704125px;}
.y2d8{bottom:8.824200px;}
.y259{bottom:9.194850px;}
.y2d5{bottom:12.070200px;}
.y2d7{bottom:12.070350px;}
.y258{bottom:12.199350px;}
.y2d6{bottom:15.316350px;}
.y311{bottom:23.704500px;}
.y2d4{bottom:27.065700px;}
.y257{bottom:27.194850px;}
.y64{bottom:29.848800px;}
.y2ae{bottom:46.082550px;}
.y2d3{bottom:46.165950px;}
.y159{bottom:73.729050px;}
.y11c{bottom:75.939914px;}
.y213{bottom:75.939957px;}
.y158{bottom:75.940013px;}
.y15a{bottom:75.940050px;}
.y1df{bottom:75.940066px;}
.y203{bottom:75.940659px;}
.y41{bottom:76.025100px;}
.y3d0{bottom:77.215650px;}
.y1a4{bottom:77.215666px;}
.y29a{bottom:77.300700px;}
.y299{bottom:79.086600px;}
.y45{bottom:80.447100px;}
.y214{bottom:81.977850px;}
.y231{bottom:84.529200px;}
.y2e6{bottom:85.124400px;}
.y2c9{bottom:85.754850px;}
.y30c{bottom:86.853000px;}
.y2a8{bottom:87.760500px;}
.y334{bottom:87.930600px;}
.y3cf{bottom:89.206200px;}
.y388{bottom:89.461350px;}
.y2a7{bottom:89.971650px;}
.y2a2{bottom:89.972339px;}
.y1de{bottom:90.141600px;}
.y32a{bottom:90.226650px;}
.y1a2{bottom:91.417200px;}
.y11b{bottom:92.437498px;}
.y212{bottom:92.437541px;}
.y202{bottom:92.437570px;}
.y157{bottom:92.437597px;}
.y1dd{bottom:92.437613px;}
.y40{bottom:92.437650px;}
.y298{bottom:92.522700px;}
.y1a1{bottom:93.713163px;}
.y1a3{bottom:93.713250px;}
.y2a3{bottom:94.478700px;}
.y25a{bottom:98.305650px;}
.y2e4{bottom:99.325950px;}
.y7c{bottom:99.411000px;}
.y44f{bottom:100.771650px;}
.y3ce{bottom:101.112327px;}
.y2e5{bottom:101.622000px;}
.y2e3{bottom:101.622369px;}
.y7b{bottom:101.707050px;}
.y2ca{bottom:102.329850px;}
.y387{bottom:102.897600px;}
.y41b{bottom:103.067700px;}
.y297{bottom:105.958950px;}
.y2a1{bottom:106.469250px;}
.y2a6{bottom:106.469619px;}
.y3e{bottom:106.639350px;}
.y332{bottom:106.639719px;}
.y211{bottom:108.850259px;}
.y201{bottom:108.850289px;}
.y1dc{bottom:108.850332px;}
.y3d{bottom:108.850350px;}
.y11a{bottom:108.850620px;}
.y156{bottom:108.850719px;}
.y1a0{bottom:110.125882px;}
.y333{bottom:111.146400px;}
.y44e{bottom:112.762200px;}
.y3f{bottom:113.357400px;}
.y41a{bottom:115.058250px;}
.y3cd{bottom:115.398300px;}
.y2eb{bottom:115.823550px;}
.y386{bottom:116.333850px;}
.y296{bottom:117.694350px;}
.y2ef{bottom:117.892500px;}
.y2e2{bottom:118.034550px;}
.y79{bottom:118.119600px;}
.y2cb{bottom:118.904850px;}
.y294{bottom:119.395200px;}
.y7a{bottom:122.626650px;}
.y29f{bottom:122.881800px;}
.y155{bottom:123.051900px;}
.y295{bottom:124.072350px;}
.y44d{bottom:124.667700px;}
.y119{bottom:125.262801px;}
.y210{bottom:125.262844px;}
.y200{bottom:125.262873px;}
.y154{bottom:125.262890px;}
.y3c{bottom:125.262900px;}
.y1db{bottom:125.262916px;}
.y19f{bottom:126.538466px;}
.y419{bottom:127.048800px;}
.y2a0{bottom:127.388850px;}
.y385{bottom:129.769950px;}
.y293{bottom:131.130600px;}
.y7e{bottom:132.321150px;}
.y292{bottom:132.831450px;}
.y2e1{bottom:134.447100px;}
.y78{bottom:134.532150px;}
.y2cc{bottom:135.479850px;}
.y44c{bottom:136.659027px;}
.y2a5{bottom:137.083350px;}
.y2ea{bottom:138.954300px;}
.y418{bottom:138.955527px;}
.y29e{bottom:139.294350px;}
.y3cc{bottom:139.294527px;}
.y44{bottom:139.464450px;}
.y118{bottom:141.760385px;}
.y20f{bottom:141.760428px;}
.y1ff{bottom:141.760457px;}
.y153{bottom:141.760473px;}
.y3b{bottom:141.760500px;}
.y1d9{bottom:141.760512px;}
.y19e{bottom:142.951051px;}
.y384{bottom:143.206200px;}
.y329{bottom:143.971650px;}
.y24b{bottom:144.056100px;}
.y1da{bottom:147.713250px;}
.y77{bottom:148.733850px;}
.y2e0{bottom:150.945000px;}
.y76{bottom:151.030500px;}
.y2cd{bottom:152.054850px;}
.y417{bottom:153.241500px;}
.y3cb{bottom:153.580500px;}
.y27e{bottom:154.431000px;}
.y24a{bottom:155.356350px;}
.y29d{bottom:155.707500px;}
.y328{bottom:155.962500px;}
.y27d{bottom:156.642000px;}
.y383{bottom:156.727500px;}
.y19c{bottom:157.153500px;}
.y117{bottom:158.173373px;}
.y20e{bottom:158.173415px;}
.y152{bottom:158.173461px;}
.y1d7{bottom:158.173466px;}
.y3a{bottom:158.173500px;}
.y1fe{bottom:158.174252px;}
.y19d{bottom:159.448500px;}
.y19b{bottom:159.448525px;}
.y2ad{bottom:159.760200px;}
.y2a4{bottom:161.745000px;}
.y310{bottom:162.060000px;}
.y44b{bottom:162.850500px;}
.y1d8{bottom:164.125500px;}
.y416{bottom:165.231000px;}
.y3ca{bottom:165.571500px;}
.y249{bottom:166.832100px;}
.y2e9{bottom:167.357319px;}
.y2df{bottom:167.358000px;}
.y75{bottom:167.442000px;}
.y30d{bottom:167.551800px;}
.y2ce{bottom:168.629850px;}
.y331{bottom:170.163000px;}
.y27c{bottom:170.844000px;}
.y25b{bottom:171.021150px;}
.y29b{bottom:172.204500px;}
.y327{bottom:172.374000px;}
.y330{bottom:172.374819px;}
.y27b{bottom:173.140500px;}
.y116{bottom:174.586360px;}
.y151{bottom:174.586449px;}
.y1d6{bottom:174.586454px;}
.y38{bottom:174.586500px;}
.y20d{bottom:174.586538px;}
.y1fd{bottom:174.586567px;}
.y44a{bottom:174.841500px;}
.y19a{bottom:175.862319px;}
.y29c{bottom:176.626500px;}
.y415{bottom:177.136500px;}
.y3c9{bottom:177.562527px;}
.y248{bottom:178.639350px;}
.y39{bottom:179.092500px;}
.y73{bottom:181.644000px;}
.y382{bottom:183.600000px;}
.y2e8{bottom:183.769500px;}
.y2de{bottom:183.771089px;}
.y72{bottom:183.855000px;}
.y2cf{bottom:185.204850px;}
.y449{bottom:186.832527px;}
.y27a{bottom:187.341000px;}
.y74{bottom:188.362500px;}
.y326{bottom:188.787000px;}
.y414{bottom:189.127500px;}
.y279{bottom:189.552000px;}
.y247{bottom:190.622100px;}
.y115{bottom:191.083406px;}
.y20c{bottom:191.083449px;}
.y1fc{bottom:191.083479px;}
.y150{bottom:191.083495px;}
.y37{bottom:191.083500px;}
.y1d4{bottom:191.083504px;}
.y3c8{bottom:191.848500px;}
.y197{bottom:192.274433px;}
.y199{bottom:192.274500px;}
.y1d5{bottom:197.035500px;}
.y198{bottom:198.312000px;}
.y15b{bottom:198.396000px;}
.y413{bottom:199.332000px;}
.y2e7{bottom:200.266547px;}
.y2dd{bottom:200.268000px;}
.y70{bottom:200.353500px;}
.y412{bottom:201.118500px;}
.y2d0{bottom:201.779850px;}
.y246{bottom:202.088100px;}
.y3c7{bottom:203.754000px;}
.y71{bottom:204.775500px;}
.y2dc{bottom:204.945000px;}
.y32f{bottom:205.284819px;}
.y325{bottom:205.285500px;}
.y278{bottom:205.965000px;}
.y2db{bottom:206.730000px;}
.y114{bottom:207.496394px;}
.y20b{bottom:207.496437px;}
.y1fb{bottom:207.496466px;}
.y14f{bottom:207.496483px;}
.y1d3{bottom:207.496492px;}
.y35{bottom:207.496500px;}
.y196{bottom:208.772286px;}
.y381{bottom:210.472500px;}
.y36{bottom:212.002500px;}
.y448{bottom:213.024000px;}
.y411{bottom:213.024027px;}
.y245{bottom:214.207350px;}
.y25f{bottom:214.447200px;}
.y3c6{bottom:215.745027px;}
.y6e{bottom:216.765000px;}
.y2d1{bottom:218.354850px;}
.y277{bottom:220.167000px;}
.y6f{bottom:221.272500px;}
.y1d2{bottom:221.697000px;}
.y324{bottom:221.697819px;}
.y276{bottom:222.463500px;}
.y113{bottom:223.907902px;}
.y20a{bottom:223.907945px;}
.y1fa{bottom:223.907975px;}
.y34{bottom:223.908000px;}
.y1d1{bottom:223.908012px;}
.y14e{bottom:223.908798px;}
.y291{bottom:223.909589px;}
.y2da{bottom:224.758500px;}
.y447{bottom:225.015027px;}
.y195{bottom:225.184466px;}
.y244{bottom:225.741600px;}
.y31c{bottom:226.119000px;}
.y410{bottom:227.310000px;}
.y3c5{bottom:230.031000px;}
.y6d{bottom:230.967000px;}
.y6c{bottom:233.178000px;}
.y2d9{bottom:233.602500px;}
.y2d2{bottom:234.929850px;}
.y32e{bottom:235.899000px;}
.y380{bottom:237.345000px;}
.y243{bottom:237.548850px;}
.y31b{bottom:237.769500px;}
.y1f9{bottom:238.110000px;}
.y32d{bottom:238.110089px;}
.y275{bottom:238.875000px;}
.y446{bottom:239.301000px;}
.y40f{bottom:239.301027px;}
.y31a{bottom:239.556000px;}
.y112{bottom:240.320890px;}
.y1ce{bottom:240.320975px;}
.y14d{bottom:240.320979px;}
.y1d0{bottom:240.321000px;}
.y209{bottom:240.406470px;}
.y1f8{bottom:240.406483px;}
.y32{bottom:240.406500px;}
.y194{bottom:241.597454px;}
.y3c4{bottom:241.936500px;}
.y25c{bottom:243.736650px;}
.y33{bottom:244.828500px;}
.y1cf{bottom:246.358500px;}
.y30e{bottom:248.250600px;}
.y242{bottom:248.673600px;}
.y6b{bottom:249.591000px;}
.y2a9{bottom:250.101000px;}
.y37f{bottom:250.866000px;}
.y318{bottom:251.206500px;}
.y32c{bottom:252.312000px;}
.y317{bottom:252.991500px;}
.y274{bottom:253.077000px;}
.y40e{bottom:253.587000px;}
.y3c3{bottom:253.927527px;}
.y323{bottom:254.607000px;}
.y273{bottom:255.288000px;}
.y111{bottom:256.819415px;}
.y208{bottom:256.819458px;}
.y1f7{bottom:256.819470px;}
.y1cc{bottom:256.819492px;}
.y31{bottom:256.819500px;}
.y14c{bottom:256.819504px;}
.y319{bottom:257.670000px;}
.y193{bottom:258.094500px;}
.y241{bottom:260.490600px;}
.y1cd{bottom:262.771500px;}
.y445{bottom:263.197527px;}
.y37e{bottom:264.303000px;}
.y40d{bottom:265.492500px;}
.y6a{bottom:266.088000px;}
.y316{bottom:266.428500px;}
.y3c2{bottom:268.213500px;}
.y290{bottom:271.020000px;}
.y322{bottom:271.020819px;}
.y272{bottom:271.785000px;}
.y240{bottom:272.132100px;}
.y1ca{bottom:273.230966px;}
.y1f6{bottom:273.230979px;}
.y30{bottom:273.231000px;}
.y14b{bottom:273.231012px;}
.y110{bottom:273.231731px;}
.y255{bottom:273.397650px;}
.y260{bottom:273.484800px;}
.y191{bottom:274.507410px;}
.y2c1{bottom:274.535100px;}
.y21a{bottom:274.746150px;}
.y32b{bottom:275.527500px;}
.y40c{bottom:277.483500px;}
.y43{bottom:277.738500px;}
.y3c1{bottom:278.419500px;}
.y192{bottom:279.013500px;}
.y1cb{bottom:279.184500px;}
.y315{bottom:279.864000px;}
.y3c0{bottom:280.204500px;}
.y68{bottom:282.501000px;}
.y23f{bottom:284.798550px;}
.y254{bottom:285.721650px;}
.y69{bottom:287.008500px;}
.y14a{bottom:287.433000px;}
.y271{bottom:288.198000px;}
.y40b{bottom:289.389000px;}
.y444{bottom:289.389027px;}
.y10f{bottom:289.643911px;}
.y149{bottom:289.643954px;}
.y2e{bottom:289.644000px;}
.y1c9{bottom:289.644089px;}
.y1f5{bottom:289.644101px;}
.y219{bottom:289.737300px;}
.y217{bottom:289.738800px;}
.y190{bottom:290.918918px;}
.y2c2{bottom:291.080850px;}
.y37d{bottom:291.175500px;}
.y3bf{bottom:292.110027px;}
.y2f{bottom:294.151500px;}
.y23e{bottom:295.916700px;}
.y2ec{bottom:296.362500px;}
.y253{bottom:297.363150px;}
.y7d{bottom:298.912500px;}
.y67{bottom:298.914089px;}
.y40a{bottom:301.380027px;}
.y321{bottom:301.635000px;}
.y443{bottom:303.675000px;}
.y1c8{bottom:303.846000px;}
.y270{bottom:304.611000px;}
.y21c{bottom:304.615800px;}
.y21b{bottom:304.625550px;}
.y218{bottom:304.627050px;}
.y206{bottom:306.140895px;}
.y10e{bottom:306.140957px;}
.y2d{bottom:306.141000px;}
.y1c7{bottom:306.141003px;}
.y1f4{bottom:306.141012px;}
.y3be{bottom:306.396000px;}
.y18f{bottom:307.333520px;}
.y23d{bottom:307.450950px;}
.y2c3{bottom:307.616850px;}
.y252{bottom:308.829150px;}
.y207{bottom:312.094500px;}
.y66{bottom:313.114500px;}
.y65{bottom:315.411000px;}
.y409{bottom:315.666000px;}
.y25d{bottom:316.452150px;}
.y37c{bottom:318.046500px;}
.y3bd{bottom:318.388527px;}
.y23c{bottom:319.177800px;}
.y1f3{bottom:320.343000px;}
.y31f{bottom:320.343819px;}
.y251{bottom:320.675400px;}
.y216{bottom:320.786100px;}
.y26f{bottom:321.024000px;}
.y205{bottom:322.553883px;}
.y10d{bottom:322.553945px;}
.y1c6{bottom:322.553991px;}
.y2c{bottom:322.554000px;}
.y28f{bottom:322.554819px;}
.y18e{bottom:323.830431px;}
.y2c4{bottom:324.152850px;}
.y320{bottom:324.765000px;}
.y408{bottom:327.657000px;}
.y30f{bottom:328.949400px;}
.y23b{bottom:330.960150px;}
.y37b{bottom:331.569000px;}
.y2ac{bottom:331.915950px;}
.y250{bottom:332.482650px;}
.y3bc{bottom:332.674500px;}
.y31e{bottom:334.545000px;}
.y31d{bottom:336.756000px;}
.y204{bottom:338.966871px;}
.y10c{bottom:338.966933px;}
.y1c5{bottom:338.966979px;}
.y2b{bottom:338.967000px;}
.y407{bottom:339.562527px;}
.y18d{bottom:340.241940px;}
.y2c5{bottom:340.688850px;}
.y23a{bottom:342.545700px;}
.y2f0{bottom:343.531500px;}
.y24f{bottom:343.958400px;}
.y3bb{bottom:344.580000px;}
.y37a{bottom:345.004500px;}
.y406{bottom:353.848500px;}
.y239{bottom:354.246300px;}
.y10b{bottom:355.463979px;}
.y2a{bottom:355.464000px;}
.y148{bottom:355.464003px;}
.y1c4{bottom:355.464025px;}
.y24e{bottom:355.599900px;}
.y3ba{bottom:356.571027px;}
.y18c{bottom:356.655062px;}
.y2c6{bottom:357.224850px;}
.y379{bottom:358.441500px;}
.y42{bottom:359.886000px;}
.y405{bottom:365.839500px;}
.y238{bottom:366.141300px;}
.y24d{bottom:367.241400px;}
.yaa{bottom:367.455000px;}
.y314{bottom:368.635125px;}
.y364{bottom:370.347000px;}
.y3b9{bottom:370.857000px;}
.y10a{bottom:371.876966px;}
.y147{bottom:371.876991px;}
.y28e{bottom:371.877000px;}
.y1c3{bottom:371.877012px;}
.y26e{bottom:371.877819px;}
.y363{bottom:372.132000px;}
.y18b{bottom:373.151973px;}
.y2c7{bottom:373.760850px;}
.y237{bottom:377.629050px;}
.y404{bottom:377.745000px;}
.y442{bottom:377.745027px;}
.y24c{bottom:377.872800px;}
.y230{bottom:379.275005px;}
.y3b8{bottom:382.762500px;}
.y313{bottom:383.635500px;}
.ya9{bottom:383.868000px;}
.y378{bottom:385.312500px;}
.y28d{bottom:386.079000px;}
.y29{bottom:386.844000px;}
.y109{bottom:388.289954px;}
.y146{bottom:388.289979px;}
.y1c2{bottom:388.290000px;}
.y25e{bottom:389.167650px;}
.y236{bottom:389.329050px;}
.y18a{bottom:389.564961px;}
.y403{bottom:389.736027px;}
.y2c8{bottom:390.306600px;}
.yc5{bottom:391.351500px;}
.y441{bottom:392.031000px;}
.y22e{bottom:392.712000px;}
.y361{bottom:394.072500px;}
.y3b7{bottom:394.753527px;}
.y362{bottom:395.688000px;}
.y360{bottom:395.688145px;}
.y22f{bottom:397.389000px;}
.y377{bottom:398.749500px;}
.ya8{bottom:400.279500px;}
.y1f2{bottom:402.490500px;}
.y28{bottom:403.257138px;}
.y256{bottom:403.693350px;}
.y402{bottom:404.022000px;}
.y108{bottom:404.787000px;}
.y1f1{bottom:404.787012px;}
.y106{bottom:404.787016px;}
.y26d{bottom:404.787819px;}
.y145{bottom:404.787831px;}
.y189{bottom:405.977949px;}
.y35f{bottom:406.743000px;}
.yc4{bottom:407.763000px;}
.y35e{bottom:408.358500px;}
.y3b6{bottom:409.039500px;}
.y107{bottom:409.209000px;}
.y376{bottom:412.272363px;}
.y401{bottom:416.013000px;}
.y22d{bottom:416.268000px;}
.ya7{bottom:416.778000px;}
.y3b5{bottom:421.030527px;}
.y1f0{bottom:421.200000px;}
.y144{bottom:421.200012px;}
.y105{bottom:421.200811px;}
.yc3{bottom:422.136000px;}
.y188{bottom:422.474995px;}
.yc2{bottom:424.261500px;}
.y375{bottom:425.708939px;}
.y400{bottom:427.918527px;}
.y2ba{bottom:430.618650px;}
.y35d{bottom:432.256148px;}
.ya6{bottom:433.191000px;}
.y3b4{bottom:435.316500px;}
.y28c{bottom:435.402000px;}
.y22c{bottom:435.996997px;}
.y27{bottom:436.081500px;}
.y1c1{bottom:437.612966px;}
.y1ee{bottom:437.612970px;}
.y104{bottom:437.612992px;}
.y143{bottom:437.613000px;}
.y187{bottom:438.887983px;}
.yc1{bottom:440.674500px;}
.y3ff{bottom:442.204500px;}
.y306{bottom:442.411875px;}
.y1ef{bottom:443.565000px;}
.y307{bottom:446.853000px;}
.y2bb{bottom:447.135150px;}
.y3b3{bottom:447.222027px;}
.y35c{bottom:448.072879px;}
.ya5{bottom:449.602500px;}
.y22b{bottom:451.815231px;}
.y26{bottom:452.495408px;}
.y374{bottom:452.580000px;}
.y141{bottom:454.024457px;}
.y1c0{bottom:454.024475px;}
.y1ed{bottom:454.024479px;}
.y103{bottom:454.024500px;}
.y3fe{bottom:454.195500px;}
.y305{bottom:454.396575px;}
.y186{bottom:455.300970px;}
.yc0{bottom:457.086000px;}
.y142{bottom:458.532000px;}
.y62{bottom:460.148718px;}
.y3b2{bottom:461.508000px;}
.y2bc{bottom:463.651650px;}
.y35b{bottom:463.804879px;}
.y3fd{bottom:464.400000px;}
.y373{bottom:466.015500px;}
.y304{bottom:466.098525px;}
.ya4{bottom:466.101000px;}
.y22a{bottom:467.547271px;}
.y140{bottom:470.522983px;}
.y102{bottom:470.523000px;}
.y1ec{bottom:470.523004px;}
.y185{bottom:471.798016px;}
.y3b1{bottom:473.499000px;}
.y61{bottom:473.584500px;}
.y3fc{bottom:476.305500px;}
.y303{bottom:477.840450px;}
.y2ed{bottom:477.879000px;}
.y3fb{bottom:478.092000px;}
.y440{bottom:478.092027px;}
.y372{bottom:479.452500px;}
.y35a{bottom:479.537648px;}
.y2ab{bottom:479.637450px;}
.y2bd{bottom:480.168150px;}
.ya3{bottom:482.512500px;}
.y229{bottom:483.280043px;}
.y28b{bottom:484.725000px;}
.y25{bottom:485.404500px;}
.y3b0{bottom:485.404527px;}
.y26c{bottom:486.935319px;}
.y13f{bottom:486.935970px;}
.y1eb{bottom:486.935992px;}
.y1bf{bottom:486.936000px;}
.y60{bottom:487.020000px;}
.y101{bottom:487.105500px;}
.ybf{bottom:487.870500px;}
.y184{bottom:488.211004px;}
.y302{bottom:489.579450px;}
.ybe{bottom:489.996000px;}
.y3fa{bottom:489.997527px;}
.y43f{bottom:492.378000px;}
.y1e1{bottom:492.887985px;}
.y371{bottom:492.888739px;}
.y359{bottom:495.354379px;}
.y2be{bottom:496.684650px;}
.ya2{bottom:498.925500px;}
.y228{bottom:499.096813px;}
.y24{bottom:499.606500px;}
.y3af{bottom:499.690500px;}
.y5f{bottom:500.457130px;}
.y1e9{bottom:501.136500px;}
.y301{bottom:501.318450px;}
.y23{bottom:501.901500px;}
.y1e8{bottom:503.347475px;}
.y13e{bottom:503.347479px;}
.y1ea{bottom:503.347500px;}
.y26b{bottom:503.349089px;}
.ybd{bottom:504.283500px;}
.y183{bottom:504.623319px;}
.y1e0{bottom:506.408955px;}
.ybc{bottom:506.409000px;}
.y370{bottom:506.410844px;}
.y3ae{bottom:509.980500px;}
.y358{bottom:511.087148px;}
.y3ad{bottom:511.681500px;}
.y300{bottom:513.060375px;}
.y2bf{bottom:513.201150px;}
.y227{bottom:514.829585px;}
.ya1{bottom:515.424000px;}
.y3f9{bottom:516.274500px;}
.y43e{bottom:516.274527px;}
.yff{bottom:517.549500px;}
.y22{bottom:518.315408px;}
.y5e{bottom:518.400000px;}
.y181{bottom:518.824500px;}
.y13d{bottom:519.845331px;}
.y1be{bottom:519.845983px;}
.yfe{bottom:519.845992px;}
.y100{bottom:519.846000px;}
.ybb{bottom:520.780500px;}
.y180{bottom:521.035487px;}
.y182{bottom:521.035500px;}
.y30b{bottom:522.139500px;}
.yba{bottom:522.822000px;}
.y3ac{bottom:523.672527px;}
.y28a{bottom:524.268000px;}
.y2ff{bottom:524.797425px;}
.y1e7{bottom:525.798000px;}
.y357{bottom:526.903879px;}
.y308{bottom:527.605425px;}
.y3f8{bottom:528.264000px;}
.y36f{bottom:528.775470px;}
.y2c0{bottom:529.717650px;}
.y43d{bottom:530.560500px;}
.y226{bottom:530.646355px;}
.y5d{bottom:531.835500px;}
.yfc{bottom:534.046500px;}
.yfb{bottom:536.257487px;}
.y1bd{bottom:536.257491px;}
.yfd{bottom:536.257500px;}
.y13c{bottom:536.257512px;}
.y2fe{bottom:536.538375px;}
.y17f{bottom:537.534012px;}
.y3ab{bottom:537.958500px;}
.yb9{bottom:539.319000px;}
.y3f7{bottom:540.171027px;}
.y36e{bottom:542.212087px;}
.y43c{bottom:542.551527px;}
.y356{bottom:542.637379px;}
.y5c{bottom:545.358000px;}
.y225{bottom:546.378394px;}
.ya0{bottom:548.248500px;}
.y2fd{bottom:548.280300px;}
.y3aa{bottom:549.864000px;}
.y1e6{bottom:550.459500px;}
.y21{bottom:551.224500px;}
.y17d{bottom:551.736000px;}
.y139{bottom:552.670433px;}
.y1bc{bottom:552.670479px;}
.y13b{bottom:552.670500px;}
.yfa{bottom:552.672089px;}
.yb8{bottom:553.606500px;}
.y17c{bottom:553.946992px;}
.y17e{bottom:553.947000px;}
.y3f6{bottom:554.457000px;}
.yb7{bottom:555.732000px;}
.y43b{bottom:556.837500px;}
.y13a{bottom:557.178000px;}
.y355{bottom:558.370148px;}
.y5b{bottom:558.793500px;}
.y2fc{bottom:560.017350px;}
.y3a9{bottom:561.855000px;}
.y224{bottom:562.111166px;}
.y9f{bottom:564.661500px;}
.y20{bottom:565.426500px;}
.y3f5{bottom:566.446500px;}
.yf8{bottom:566.872500px;}
.y1f{bottom:567.637500px;}
.y17a{bottom:568.147500px;}
.y43a{bottom:568.743000px;}
.y138{bottom:569.168958px;}
.yf9{bottom:569.169000px;}
.yf7{bottom:569.169004px;}
.y2af{bottom:569.272650px;}
.y179{bottom:570.358487px;}
.y17b{bottom:570.358500px;}
.y2fb{bottom:571.757325px;}
.yb6{bottom:572.145000px;}
.y5a{bottom:572.230500px;}
.y3a8{bottom:573.760527px;}
.y354{bottom:574.186879px;}
.y1e5{bottom:575.121000px;}
.y223{bottom:577.928878px;}
.y3f4{bottom:578.353527px;}
.y439{bottom:580.734027px;}
.y36d{bottom:581.074500px;}
.y9e{bottom:581.158500px;}
.y1e{bottom:581.839500px;}
.y289{bottom:583.369500px;}
.y2fa{bottom:583.496325px;}
.y1d{bottom:584.136000px;}
.y137{bottom:585.580466px;}
.y1e4{bottom:585.580500px;}
.yf6{bottom:585.580512px;}
.y59{bottom:585.666000px;}
.y2b0{bottom:585.867150px;}
.y178{bottom:586.857012px;}
.y3a7{bottom:588.046500px;}
.yb5{bottom:588.643628px;}
.y353{bottom:589.919648px;}
.y1e3{bottom:591.534000px;}
.y3f3{bottom:592.639500px;}
.y36c{bottom:594.510000px;}
.y438{bottom:595.020000px;}
.y2f9{bottom:595.311375px;}
.y9d{bottom:595.446000px;}
.y222{bottom:597.147000px;}
.y9c{bottom:597.571500px;}
.y1c{bottom:598.336500px;}
.y58{bottom:599.101500px;}
.yf4{bottom:599.782500px;}
.y3a6{bottom:600.037500px;}
.y1b{bottom:600.547500px;}
.y1bb{bottom:601.993470px;}
.yf3{bottom:601.993491px;}
.yf5{bottom:601.993500px;}
.y136{bottom:601.993589px;}
.y2b1{bottom:602.451900px;}
.y3f2{bottom:602.929500px;}
.y175{bottom:603.269992px;}
.y177{bottom:603.270000px;}
.y3f1{bottom:604.630500px;}
.yb4{bottom:605.055306px;}
.y352{bottom:605.736379px;}
.y437{bottom:606.925500px;}
.y2f8{bottom:607.693875px;}
.y176{bottom:607.776000px;}
.y1e2{bottom:608.031000px;}
.y309{bottom:608.357850px;}
.y3a5{bottom:612.028500px;}
.y57{bottom:612.538500px;}
.y9b{bottom:613.984500px;}
.y3f0{bottom:616.621527px;}
.y19{bottom:616.960500px;}
.y135{bottom:618.490482px;}
.y26a{bottom:618.490500px;}
.y1ba{bottom:618.490515px;}
.yf2{bottom:618.490537px;}
.y436{bottom:618.916527px;}
.y2b2{bottom:619.046400px;}
.y2f7{bottom:619.050675px;}
.y172{bottom:619.681402px;}
.y174{bottom:619.681500px;}
.y36b{bottom:621.468000px;}
.y351{bottom:621.468379px;}
.y1a{bottom:622.998000px;}
.y3a4{bottom:623.934027px;}
.y173{bottom:624.189000px;}
.y288{bottom:624.444000px;}
.y56{bottom:625.975500px;}
.y9a{bottom:628.356000px;}
.y99{bottom:630.481500px;}
.y2f6{bottom:630.862800px;}
.y3ef{bottom:630.907500px;}
.y287{bottom:632.692500px;}
.y435{bottom:633.202500px;}
.y18{bottom:633.457500px;}
.y269{bottom:634.903500px;}
.y1b9{bottom:634.903503px;}
.y134{bottom:634.904276px;}
.yf1{bottom:634.904331px;}
.y2b3{bottom:635.640900px;}
.y171{bottom:636.179928px;}
.y220{bottom:636.264000px;}
.y350{bottom:637.201148px;}
.y221{bottom:637.965000px;}
.y21f{bottom:637.965005px;}
.y3a3{bottom:638.220000px;}
.y55{bottom:639.496500px;}
.y2f5{bottom:642.109425px;}
.y3ee{bottom:642.813000px;}
.yb3{bottom:644.769000px;}
.y434{bottom:645.195027px;}
.y98{bottom:646.894500px;}
.y36a{bottom:648.340500px;}
.y268{bottom:649.105500px;}
.y21e{bottom:649.701000px;}
.y17{bottom:649.871408px;}
.y3a2{bottom:650.211027px;}
.y133{bottom:651.316457px;}
.y1b8{bottom:651.316491px;}
.y267{bottom:651.316500px;}
.yf0{bottom:651.316512px;}
.y21d{bottom:651.402000px;}
.y2aa{bottom:651.690000px;}
.y2b4{bottom:652.235400px;}
.y170{bottom:652.591436px;}
.y54{bottom:652.932000px;}
.y34f{bottom:653.017879px;}
.y2f4{bottom:653.923500px;}
.y3ed{bottom:654.804027px;}
.y433{bottom:659.481000px;}
.yb2{bottom:661.180500px;}
.y369{bottom:661.776000px;}
.y97{bottom:663.307500px;}
.y3a1{bottom:664.497000px;}
.y2f3{bottom:665.623500px;}
.y53{bottom:666.369000px;}
.y132{bottom:667.729445px;}
.y1b7{bottom:667.729479px;}
.yef{bottom:667.729500px;}
.y215{bottom:667.899000px;}
.y34e{bottom:668.749879px;}
.y2b5{bottom:668.820150px;}
.y16f{bottom:669.006038px;}
.y3ec{bottom:669.090000px;}
.y432{bottom:671.386500px;}
.y368{bottom:675.212970px;}
.y3a0{bottom:676.402500px;}
.y2f2{bottom:677.037825px;}
.y96{bottom:677.679000px;}
.y52{bottom:679.804500px;}
.y16{bottom:680.569500px;}
.y3eb{bottom:680.995500px;}
.y266{bottom:681.930000px;}
.y15{bottom:682.780500px;}
.y431{bottom:683.376000px;}
.yed{bottom:684.226470px;}
.y131{bottom:684.226491px;}
.y265{bottom:684.226500px;}
.y1b6{bottom:684.227331px;}
.y34d{bottom:684.482648px;}
.y2b6{bottom:685.414650px;}
.y16e{bottom:685.502949px;}
.y39f{bottom:688.395027px;}
.yee{bottom:688.648500px;}
.y2f1{bottom:689.021550px;}
.y30a{bottom:689.110275px;}
.y3ea{bottom:692.986527px;}
.y51{bottom:693.241500px;}
.y95{bottom:694.092000px;}
.y430{bottom:695.283027px;}
.y94{bottom:696.217500px;}
.y14{bottom:696.982500px;}
.y286{bottom:698.428500px;}
.y13{bottom:699.279000px;}
.y34c{bottom:700.299379px;}
.yec{bottom:700.639457px;}
.y130{bottom:700.639479px;}
.y264{bottom:700.639500px;}
.y1b5{bottom:700.639512px;}
.yb1{bottom:701.830500px;}
.y16d{bottom:701.914457px;}
.y2b7{bottom:702.009150px;}
.y39e{bottom:702.681000px;}
.y2ee{bottom:703.723350px;}
.y50{bottom:706.677000px;}
.y3e9{bottom:707.272500px;}
.y42f{bottom:709.569000px;}
.y93{bottom:712.630500px;}
.y12{bottom:713.481000px;}
.y39d{bottom:714.586484px;}
.y1b3{bottom:714.841500px;}
.y11{bottom:715.690500px;}
.y34b{bottom:716.032148px;}
.yeb{bottom:717.052445px;}
.y1b4{bottom:717.052500px;}
.y12f{bottom:717.052601px;}
.y16c{bottom:718.327445px;}
.y2b8{bottom:718.593900px;}
.y3e8{bottom:719.263500px;}
.y4f{bottom:720.198000px;}
.y285{bottom:721.558500px;}
.y39c{bottom:726.576367px;}
.y92{bottom:727.002000px;}
.y91{bottom:729.127500px;}
.y3e7{bottom:729.468000px;}
.y3e6{bottom:731.169027px;}
.y263{bottom:731.253000px;}
.y34a{bottom:731.848879px;}
.y10{bottom:732.103500px;}
.yea{bottom:733.549491px;}
.y262{bottom:733.549500px;}
.y12e{bottom:733.549512px;}
.y42e{bottom:733.549527px;}
.y4e{bottom:733.635000px;}
.y16b{bottom:734.740433px;}
.y2b9{bottom:735.188400px;}
.yb0{bottom:743.413500px;}
.y3e5{bottom:745.455000px;}
.y90{bottom:745.540500px;}
.yf{bottom:746.305500px;}
.y4d{bottom:747.070500px;}
.y349{bottom:747.580879px;}
.y283{bottom:747.751500px;}
.y42d{bottom:747.835500px;}
.ye{bottom:748.516500px;}
.y1b2{bottom:749.961806px;}
.ye9{bottom:749.962479px;}
.y12d{bottom:749.962500px;}
.yaf{bottom:751.153500px;}
.y16a{bottom:751.237479px;}
.y284{bottom:755.914500px;}
.y39b{bottom:756.424500px;}
.y3e4{bottom:757.446000px;}
.y42c{bottom:759.741000px;}
.y4c{bottom:760.507500px;}
.y8f{bottom:761.953500px;}
.y348{bottom:763.313648px;}
.y282{bottom:764.163000px;}
.yd{bottom:765.013500px;}
.y12b{bottom:766.373975px;}
.ye8{bottom:766.373987px;}
.y261{bottom:766.374000px;}
.y169{bottom:767.650466px;}
.y3e3{bottom:769.351500px;}
.y39a{bottom:769.947000px;}
.y12c{bottom:770.881500px;}
.y42b{bottom:771.732000px;}
.y4b{bottom:773.943000px;}
.yae{bottom:776.325000px;}
.y8e{bottom:778.365000px;}
.y347{bottom:779.131879px;}
.y3e2{bottom:781.342527px;}
.yc{bottom:781.427408px;}
.y12a{bottom:782.872473px;}
.ye7{bottom:782.872512px;}
.y1b1{bottom:782.873319px;}
.y399{bottom:783.382500px;}
.y42a{bottom:783.639027px;}
.y168{bottom:784.063454px;}
.y4a{bottom:787.380130px;}
.yad{bottom:792.736500px;}
.y346{bottom:794.863148px;}
.y8d{bottom:794.863500px;}
.y3e1{bottom:795.628500px;}
.y398{bottom:796.818000px;}
.y1b0{bottom:797.074500px;}
.y429{bottom:797.925000px;}
.y166{bottom:798.264000px;}
.y129{bottom:799.285461px;}
.y1af{bottom:799.285466px;}
.ye4{bottom:799.285492px;}
.ye6{bottom:799.285500px;}
.y167{bottom:800.560500px;}
.y165{bottom:800.561286px;}
.ye5{bottom:803.791500px;}
.y49{bottom:805.323000px;}
.y3e0{bottom:805.833000px;}
.y3df{bottom:807.534000px;}
.y428{bottom:808.129500px;}
.y427{bottom:809.914500px;}
.y397{bottom:810.255000px;}
.y345{bottom:810.681379px;}
.y8c{bottom:811.275000px;}
.yb{bottom:812.125500px;}
.ye2{bottom:813.486000px;}
.ya{bottom:814.336500px;}
.y128{bottom:815.696970px;}
.ye1{bottom:815.696975px;}
.ye3{bottom:815.697000px;}
.y1ae{bottom:815.698589px;}
.y164{bottom:816.973466px;}
.y48{bottom:818.758500px;}
.y3de{bottom:819.525027px;}
.y426{bottom:821.821527px;}
.y396{bottom:823.692000px;}
.yac{bottom:825.562500px;}
.y344{bottom:826.413379px;}
.y8b{bottom:827.688000px;}
.y9{bottom:828.538500px;}
.ye0{bottom:829.899000px;}
.y8{bottom:830.835000px;}
.y127{bottom:832.195495px;}
.ydf{bottom:832.195500px;}
.ydd{bottom:832.195512px;}
.y1ad{bottom:832.196311px;}
.y367{bottom:832.196319px;}
.y47{bottom:832.281110px;}
.y163{bottom:833.386454px;}
.y3dd{bottom:833.811000px;}
.y425{bottom:836.107500px;}
.yde{bottom:836.617500px;}
.y395{bottom:837.127500px;}
.y343{bottom:842.146148px;}
.y8a{bottom:844.185000px;}
.y7{bottom:845.035500px;}
.y3dc{bottom:845.802000px;}
.y6{bottom:847.246500px;}
.y424{bottom:848.097000px;}
.y126{bottom:848.608483px;}
.y1ac{bottom:848.608492px;}
.ydc{bottom:848.608500px;}
.y160{bottom:849.883482px;}
.y162{bottom:849.883500px;}
.y46{bottom:850.138500px;}
.y394{bottom:850.648500px;}
.y281{bottom:853.114500px;}
.y161{bottom:854.305500px;}
.y3db{bottom:857.707527px;}
.y342{bottom:857.962879px;}
.y423{bottom:860.088000px;}
.y89{bottom:860.598000px;}
.y235{bottom:862.626000px;}
.ydb{bottom:862.809000px;}
.y5{bottom:863.659500px;}
.y393{bottom:864.085500px;}
.y125{bottom:865.019991px;}
.y1ab{bottom:865.020000px;}
.yda{bottom:865.020012px;}
.y1aa{bottom:865.020773px;}
.y366{bottom:865.020819px;}
.y15f{bottom:866.297815px;}
.y3da{bottom:871.993500px;}
.y422{bottom:871.995027px;}
.y341{bottom:873.695648px;}
.y233{bottom:874.333050px;}
.y88{bottom:874.885500px;}
.y87{bottom:877.011000px;}
.y392{bottom:877.521000px;}
.yd7{bottom:879.222000px;}
.yd6{bottom:881.432954px;}
.yd8{bottom:881.433000px;}
.y365{bottom:881.433089px;}
.y124{bottom:881.433113px;}
.y3d9{bottom:883.984500px;}
.yd9{bottom:885.940500px;}
.y421{bottom:886.281000px;}
.y234{bottom:889.211550px;}
.y340{bottom:889.512379px;}
.y391{bottom:890.958000px;}
.y86{bottom:891.382500px;}
.y85{bottom:893.508000px;}
.yd4{bottom:895.635000px;}
.y3d8{bottom:895.890027px;}
.y4{bottom:896.995500px;}
.yd5{bottom:897.930000px;}
.y1a9{bottom:897.930012px;}
.y123{bottom:897.930025px;}
.yd3{bottom:897.930831px;}
.y420{bottom:898.270500px;}
.y15e{bottom:903.628691px;}
.y232{bottom:903.952200px;}
.y390{bottom:904.393500px;}
.y33f{bottom:905.244379px;}
.y84{bottom:909.921000px;}
.y3d7{bottom:910.176000px;}
.y453{bottom:912.558000px;}
.y1a8{bottom:914.343000px;}
.yd2{bottom:914.343012px;}
.y38f{bottom:917.830500px;}
.y280{bottom:920.296500px;}
.y33e{bottom:920.977148px;}
.y3d6{bottom:922.167000px;}
.y41f{bottom:922.167027px;}
.y83{bottom:924.208500px;}
.y452{bottom:924.463500px;}
.y15d{bottom:925.145500px;}
.y82{bottom:926.334000px;}
.y3{bottom:929.736000px;}
.ycf{bottom:930.755966px;}
.yd1{bottom:930.756000px;}
.y122{bottom:930.756089px;}
.y38e{bottom:931.351500px;}
.y3d5{bottom:934.158027px;}
.yd0{bottom:935.263500px;}
.y41e{bottom:936.453000px;}
.y33d{bottom:936.794878px;}
.y81{bottom:942.832628px;}
.y38d{bottom:944.787000px;}
.y15c{bottom:946.658789px;}
.y121{bottom:947.253000px;}
.yce{bottom:947.253012px;}
.y11f{bottom:947.253819px;}
.y3d4{bottom:948.444000px;}
.y451{bottom:948.444027px;}
.y120{bottom:953.206500px;}
.y33c{bottom:954.226500px;}
.y33a{bottom:956.013000px;}
.y38c{bottom:958.224000px;}
.y41d{bottom:958.648500px;}
.yab{bottom:959.242455px;}
.y80{bottom:959.244306px;}
.y3d3{bottom:960.349527px;}
.ycc{bottom:961.455000px;}
.y2{bottom:962.646000px;}
.y450{bottom:962.730000px;}
.y1a7{bottom:963.665966px;}
.ycd{bottom:963.666000px;}
.ycb{bottom:963.666012px;}
.y339{bottom:966.982500px;}
.y33b{bottom:968.682818px;}
.y338{bottom:968.683742px;}
.y38b{bottom:971.659500px;}
.y3d2{bottom:974.635500px;}
.y336{bottom:975.231000px;}
.y11e{bottom:977.868000px;}
.yc8{bottom:980.078954px;}
.yca{bottom:980.079000px;}
.yc9{bottom:984.585000px;}
.y7f{bottom:984.670500px;}
.y38a{bottom:985.096500px;}
.y3d1{bottom:986.626500px;}
.y337{bottom:987.986595px;}
.y335{bottom:987.987000px;}
.y11d{bottom:994.195500px;}
.y1a6{bottom:994.281000px;}
.y1{bottom:995.470500px;}
.y27f{bottom:996.568269px;}
.yc7{bottom:996.576000px;}
.y1a5{bottom:996.576056px;}
.y41c{bottom:998.519023px;}
.y454{bottom:998.531168px;}
.y389{bottom:998.532000px;}
.yc6{bottom:1127.622000px;}
.y63{bottom:1127.877000px;}
.h21{height:16.279692px;}
.h2b{height:18.543684px;}
.h1f{height:19.332000px;}
.h8{height:19.935264px;}
.h1c{height:19.969956px;}
.h2e{height:20.611449px;}
.hb{height:24.250490px;}
.h1b{height:26.481000px;}
.h6{height:26.501131px;}
.hf{height:27.103464px;}
.h9{height:27.819607px;}
.h20{height:27.923570px;}
.h18{height:27.924000px;}
.h1a{height:27.930000px;}
.h19{height:28.409823px;}
.h1e{height:29.599800px;}
.ha{height:29.959015px;}
.h2a{height:29.960422px;}
.h28{height:29.960637px;}
.h29{height:29.961743px;}
.h2d{height:30.921386px;}
.h2c{height:30.921507px;}
.h30{height:30.924712px;}
.h2f{height:30.973292px;}
.h27{height:32.946000px;}
.h17{height:34.629000px;}
.h3{height:36.379387px;}
.hc{height:36.385568px;}
.h7{height:39.755577px;}
.h5{height:39.756131px;}
.h11{height:39.756204px;}
.h10{height:39.756237px;}
.h12{height:39.758821px;}
.h22{height:39.758854px;}
.h25{height:39.761942px;}
.h23{height:39.787054px;}
.he{height:40.659492px;}
.h4{height:47.079864px;}
.hd{height:51.359110px;}
.h14{height:57.670598px;}
.h15{height:57.675978px;}
.h13{height:57.676824px;}
.h2{height:77.039309px;}
.h16{height:337.606500px;}
.h26{height:720.708000px;}
.h24{height:755.404500px;}
.h1d{height:920.976000px;}
.h0{height:1199.055000px;}
.h1{height:1199.250000px;}
.w4{width:659.395500px;}
.w5{width:659.565000px;}
.w3{width:791.035500px;}
.w2{width:791.121000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc9{left:8.901900px;}
.xd3{left:10.675800px;}
.xd6{left:15.826950px;}
.x10e{left:17.431650px;}
.xd7{left:19.073700px;}
.xca{left:23.370150px;}
.x10d{left:25.492650px;}
.x10c{left:34.129350px;}
.x6d{left:42.519600px;}
.xb8{left:44.900657px;}
.xff{left:50.900098px;}
.x103{left:52.206718px;}
.x102{left:54.205653px;}
.x1{left:55.275450px;}
.xc8{left:57.231450px;}
.xb7{left:58.592100px;}
.x106{left:62.737690px;}
.x101{left:64.551358px;}
.x6e{left:65.735400px;}
.xc2{left:67.181100px;}
.x105{left:68.441967px;}
.xcb{left:70.703550px;}
.xfe{left:72.049800px;}
.xd5{left:74.216250px;}
.x13{left:75.429900px;}
.x6c{left:77.215650px;}
.xc3{left:79.001550px;}
.x100{left:81.868956px;}
.x104{left:87.124691px;}
.x76{left:90.311700px;}
.x14{left:92.607750px;}
.xd4{left:96.209400px;}
.x122{left:102.557400px;}
.x123{left:118.800000px;}
.x124{left:135.042450px;}
.xde{left:137.083350px;}
.x26{left:138.529050px;}
.xd{left:140.995200px;}
.x85{left:145.927500px;}
.x27{left:147.543300px;}
.x29{left:150.264000px;}
.xdf{left:151.965000px;}
.x2a{left:155.112000px;}
.x111{left:156.132000px;}
.x82{left:157.237500px;}
.xe{left:158.428500px;}
.x7b{left:161.659500px;}
.x1d{left:166.762500px;}
.xd9{left:168.378000px;}
.xc1{left:172.459500px;}
.x23{left:173.650500px;}
.x2b{left:174.756000px;}
.xdc{left:177.136500px;}
.x38{left:178.582500px;}
.x1e{left:179.688000px;}
.x7c{left:181.644000px;}
.x126{left:183.259500px;}
.x24{left:187.086000px;}
.x3c{left:189.042000px;}
.x4c{left:190.573500px;}
.x11d{left:192.108197px;}
.x77{left:196.780500px;}
.x41{left:198.481500px;}
.x12a{left:199.501500px;}
.x73{left:202.224000px;}
.x71{left:204.604500px;}
.x78{left:206.646000px;}
.x74{left:211.663500px;}
.x97{left:214.554000px;}
.x6f{left:215.574000px;}
.x42{left:216.595500px;}
.x75{left:219.826500px;}
.x72{left:221.953500px;}
.x94{left:223.059000px;}
.x79{left:226.545000px;}
.x70{left:227.820000px;}
.xbe{left:230.541000px;}
.x54{left:231.732000px;}
.xdb{left:234.538500px;}
.x90{left:235.815536px;}
.xb9{left:237.685500px;}
.xc4{left:239.215500px;}
.x7a{left:241.597500px;}
.x28{left:243.042000px;}
.xbd{left:246.444000px;}
.xf{left:248.230500px;}
.x83{left:254.692500px;}
.xf4{left:256.648500px;}
.x121{left:257.925000px;}
.xc5{left:259.030500px;}
.x10{left:261.241500px;}
.x3d{left:263.877000px;}
.x84{left:267.448500px;}
.x40{left:270.340500px;}
.xcc{left:272.200200px;}
.x56{left:273.741000px;}
.x112{left:275.101500px;}
.xbc{left:277.312500px;}
.xdd{left:279.184500px;}
.x12b{left:280.545000px;}
.x3e{left:282.330000px;}
.x2{left:284.031000px;}
.xbf{left:285.391500px;}
.x7d{left:286.923000px;}
.x107{left:288.634350px;}
.x91{left:290.580000px;}
.x99{left:293.641500px;}
.x3{left:296.958000px;}
.x9a{left:298.573500px;}
.x4d{left:299.848500px;}
.x7e{left:302.995500px;}
.x92{left:306.481500px;}
.x119{left:307.927500px;}
.x110{left:309.600711px;}
.x4e{left:311.584500px;}
.x7f{left:313.455000px;}
.x125{left:315.241500px;}
.x1f{left:316.771500px;}
.x108{left:319.492500px;}
.x93{left:322.384500px;}
.xd8{left:326.551500px;}
.x25{left:327.826500px;}
.xc0{left:330.547500px;}
.x20{left:333.780000px;}
.x9{left:335.140500px;}
.xba{left:338.031000px;}
.x81{left:339.646500px;}
.xbb{left:342.879000px;}
.x57{left:348.321000px;}
.x9b{left:350.787000px;}
.xa{left:351.978000px;}
.xda{left:355.294500px;}
.x12d{left:356.485500px;}
.x4f{left:357.505500px;}
.xcf{left:359.886000px;}
.x11a{left:361.925905px;}
.x58{left:363.202500px;}
.x3f{left:367.200000px;}
.x80{left:368.815500px;}
.x19{left:370.261500px;}
.x50{left:371.536500px;}
.x9c{left:377.490000px;}
.x52{left:380.892000px;}
.x98{left:382.677000px;}
.x51{left:384.547500px;}
.x1a{left:386.419500px;}
.x48{left:391.351500px;}
.x2c{left:393.307500px;}
.x45{left:395.943000px;}
.xd1{left:402.661500px;}
.x30{left:403.767000px;}
.x49{left:407.593500px;}
.xf3{left:408.699000px;}
.x47{left:411.336000px;}
.x6{left:413.802000px;}
.x46{left:417.033000px;}
.x95{left:418.564500px;}
.xf1{left:420.349500px;}
.x114{left:421.540500px;}
.x120{left:424.347000px;}
.x3b{left:425.791500px;}
.x34{left:428.683500px;}
.x7{left:431.149500px;}
.x43{left:434.551500px;}
.x96{left:437.101500px;}
.x115{left:439.908000px;}
.x2f{left:446.286000px;}
.x44{left:447.307500px;}
.xc6{left:449.602500px;}
.x39{left:450.793500px;}
.x8c{left:454.110000px;}
.xc7{left:456.576000px;}
.xed{left:458.872500px;}
.xe4{left:460.743000px;}
.xe8{left:462.529500px;}
.xe0{left:463.975500px;}
.x3a{left:467.206500px;}
.x8d{left:470.182500px;}
.xea{left:474.690000px;}
.x11c{left:476.391000px;}
.x128{left:478.176000px;}
.x55{left:479.196000px;}
.xe9{left:481.407000px;}
.xf5{left:482.938500px;}
.x53{left:488.551500px;}
.x12c{left:489.826500px;}
.x129{left:491.697000px;}
.xb{left:494.844000px;}
.x86{left:496.885500px;}
.x89{left:499.521000px;}
.xe2{left:501.987000px;}
.x8a{left:504.708000px;}
.x109{left:506.835000px;}
.xc{left:511.512000px;}
.x21{left:512.787000px;}
.xe3{left:514.659000px;}
.x35{left:515.848500px;}
.x15{left:519.079500px;}
.x10a{left:521.716500px;}
.xa0{left:527.074500px;}
.x22{left:529.795500px;}
.x33{left:531.241500px;}
.x5c{left:532.431000px;}
.xcd{left:535.549800px;}
.x16{left:536.769000px;}
.xeb{left:540.424500px;}
.xf2{left:541.615500px;}
.x5e{left:545.017500px;}
.x5d{left:547.312500px;}
.xb2{left:549.609000px;}
.xb4{left:551.650500px;}
.x5f{left:552.670500px;}
.xb3{left:554.541000px;}
.xb5{left:556.582500px;}
.x4{left:558.624000px;}
.x87{left:559.984500px;}
.xec{left:563.046000px;}
.xb1{left:564.916500px;}
.x127{left:568.402500px;}
.xfb{left:572.649150px;}
.xfc{left:574.428150px;}
.x5{left:576.141000px;}
.x11{left:579.798000px;}
.x1b{left:581.244000px;}
.xe6{left:585.580500px;}
.xee{left:587.026500px;}
.x12{left:588.217500px;}
.xa8{left:589.407000px;}
.xfd{left:590.912100px;}
.xe7{left:593.319000px;}
.xac{left:596.041500px;}
.x1c{left:597.402000px;}
.x8e{left:599.782500px;}
.xaf{left:600.973500px;}
.xce{left:602.618400px;}
.xad{left:605.310000px;}
.x10b{left:611.602500px;}
.xa6{left:613.558500px;}
.x5b{left:614.919000px;}
.xf8{left:616.620000px;}
.xb0{left:618.321000px;}
.xb6{left:620.277000px;}
.xae{left:623.934000px;}
.xa7{left:626.230500px;}
.x69{left:629.121000px;}
.x4a{left:630.481500px;}
.x113{left:631.842000px;}
.xf9{left:633.883500px;}
.x10f{left:635.025000px;}
.xd0{left:636.349500px;}
.x8b{left:639.325500px;}
.xe5{left:641.026500px;}
.x2d{left:644.512500px;}
.x4b{left:646.044000px;}
.x2e{left:650.976000px;}
.x61{left:652.167000px;}
.x88{left:653.613000px;}
.xe1{left:655.143000px;}
.x62{left:658.800000px;}
.xef{left:661.435500px;}
.xa5{left:663.391500px;}
.x31{left:669.174000px;}
.x11e{left:671.046000px;}
.xf0{left:674.191500px;}
.x60{left:677.934000px;}
.x11f{left:679.975500px;}
.x66{left:682.611000px;}
.x9d{left:684.481500px;}
.x65{left:686.097000px;}
.x63{left:687.202500px;}
.x32{left:693.496500px;}
.x17{left:698.428500px;}
.x8{left:701.319000px;}
.x118{left:702.340500px;}
.x6a{left:709.143000px;}
.x18{left:710.929500px;}
.x6b{left:720.879000px;}
.x36{left:727.086000px;}
.x11b{left:731.932289px;}
.x37{left:734.400000px;}
.x59{left:739.332000px;}
.xa3{left:745.710000px;}
.x5a{left:750.982500px;}
.xa1{left:758.551500px;}
.x8f{left:761.613000px;}
.x67{left:762.973500px;}
.xa4{left:765.439500px;}
.xa2{left:773.773500px;}
.x68{left:777.855000px;}
.xd2{left:779.386500px;}
.x64{left:782.617500px;}
.x9f{left:785.083500px;}
.x116{left:788.655000px;}
.xf7{left:791.886000px;}
.xa9{left:794.523000px;}
.x9e{left:798.009000px;}
.x117{left:806.428500px;}
.xaa{left:816.973500px;}
.xfa{left:824.797500px;}
.xab{left:826.923000px;}
.xf6{left:830.154000px;}
@media print{
.v4{vertical-align:-9.975196pt;}
.v3{vertical-align:-7.257915pt;}
.v2{vertical-align:-0.903793pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.489600pt;}
.v5{vertical-align:6.346667pt;}
.v6{vertical-align:11.530133pt;}
.v1{vertical-align:17.536163pt;}
.ls24{letter-spacing:-2.072699pt;}
.ls28{letter-spacing:-1.842193pt;}
.ls9{letter-spacing:-1.540513pt;}
.ls12{letter-spacing:-1.009905pt;}
.ls29{letter-spacing:-1.009866pt;}
.ls1{letter-spacing:-0.955460pt;}
.ls2a{letter-spacing:-0.897570pt;}
.ls13{letter-spacing:-0.503410pt;}
.ls38{letter-spacing:-0.477745pt;}
.ls5{letter-spacing:-0.477719pt;}
.ls2{letter-spacing:-0.450508pt;}
.ls14{letter-spacing:-0.447451pt;}
.ls6{letter-spacing:-0.424592pt;}
.ls39{letter-spacing:-0.424588pt;}
.lsa{letter-spacing:-0.400442pt;}
.ls25{letter-spacing:-0.371893pt;}
.ls8{letter-spacing:-0.344680pt;}
.ls26{letter-spacing:-0.330552pt;}
.ls7{letter-spacing:-0.318461pt;}
.ls36{letter-spacing:-0.306368pt;}
.ls3a{letter-spacing:-0.052926pt;}
.ls2b{letter-spacing:-0.003467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.327167pt;}
.ls1b{letter-spacing:0.330718pt;}
.lsd{letter-spacing:0.338849pt;}
.ls27{letter-spacing:0.371893pt;}
.ls15{letter-spacing:0.424592pt;}
.ls16{letter-spacing:0.424614pt;}
.lsb{letter-spacing:0.477719pt;}
.ls0{letter-spacing:0.530627pt;}
.lsf{letter-spacing:0.917040pt;}
.ls4{letter-spacing:0.955438pt;}
.lsc{letter-spacing:0.991352pt;}
.ls17{letter-spacing:1.243313pt;}
.ls22{letter-spacing:2.501260pt;}
.lse{letter-spacing:2.618400pt;}
.ls23{letter-spacing:2.805260pt;}
.ls1a{letter-spacing:6.489138pt;}
.ls1e{letter-spacing:7.450314pt;}
.ls18{letter-spacing:7.866346pt;}
.ls21{letter-spacing:7.895038pt;}
.ls20{letter-spacing:7.918948pt;}
.ls1f{letter-spacing:7.923730pt;}
.ls19{letter-spacing:7.995459pt;}
.ls1c{letter-spacing:10.474400pt;}
.ls10{letter-spacing:15.013067pt;}
.ls11{letter-spacing:20.751733pt;}
.ls37{letter-spacing:55.782161pt;}
.ls2e{letter-spacing:158.862708pt;}
.ls33{letter-spacing:158.877586pt;}
.ls30{letter-spacing:158.974288pt;}
.ls31{letter-spacing:159.085830pt;}
.ls35{letter-spacing:159.137900pt;}
.ls32{letter-spacing:159.904114pt;}
.ls2f{letter-spacing:160.015656pt;}
.ls34{letter-spacing:161.094292pt;}
.ls2d{letter-spacing:161.269063pt;}
.ls2c{letter-spacing:162.113345pt;}
.ws13{word-spacing:-45.285287pt;}
.ws15{word-spacing:-37.289828pt;}
.ws1a{word-spacing:-30.891548pt;}
.ws11{word-spacing:-30.413829pt;}
.ws28{word-spacing:-23.654828pt;}
.ws19{word-spacing:-21.623257pt;}
.ws3{word-spacing:-12.910372pt;}
.ws10{word-spacing:-11.954933pt;}
.ws12{word-spacing:-11.477214pt;}
.wsd{word-spacing:-10.754432pt;}
.ws45{word-spacing:-9.670160pt;}
.wsdb{word-spacing:-9.298267pt;}
.wsd8{word-spacing:-8.926373pt;}
.wsf{word-spacing:-8.412000pt;}
.ws17{word-spacing:-8.368133pt;}
.wsc{word-spacing:-7.969067pt;}
.wsb{word-spacing:-7.544475pt;}
.ws29{word-spacing:-6.657596pt;}
.ws4f{word-spacing:-6.552000pt;}
.ws8{word-spacing:-6.354820pt;}
.ws25{word-spacing:-6.198000pt;}
.ws4c{word-spacing:-6.126873pt;}
.wse{word-spacing:-5.743781pt;}
.ws6{word-spacing:-5.676206pt;}
.ws26{word-spacing:-4.355136pt;}
.ws24{word-spacing:-4.231176pt;}
.ws14{word-spacing:-3.988166pt;}
.ws4e{word-spacing:-3.788118pt;}
.ws18{word-spacing:-1.898443pt;}
.ws7{word-spacing:-0.782195pt;}
.ws1c{word-spacing:-0.034667pt;}
.wsa{word-spacing:0.000000pt;}
.ws16{word-spacing:0.114767pt;}
.ws5{word-spacing:2.443588pt;}
.ws0{word-spacing:5.934429pt;}
.ws1{word-spacing:7.498134pt;}
.ws4{word-spacing:11.510210pt;}
.ws2{word-spacing:12.299235pt;}
.ws9{word-spacing:19.585869pt;}
.wsd9{word-spacing:27.887361pt;}
.wsda{word-spacing:27.891081pt;}
.wsd5{word-spacing:60.088895pt;}
.wsd7{word-spacing:66.902702pt;}
.ws98{word-spacing:73.102675pt;}
.ws80{word-spacing:73.106394pt;}
.ws51{word-spacing:73.749834pt;}
.ws59{word-spacing:74.013905pt;}
.ws9b{word-spacing:74.051098pt;}
.ws67{word-spacing:74.657345pt;}
.wsb5{word-spacing:75.784295pt;}
.ws7b{word-spacing:75.788014pt;}
.wsa4{word-spacing:75.825207pt;}
.ws6c{word-spacing:75.828927pt;}
.ws8c{word-spacing:75.866120pt;}
.ws62{word-spacing:75.884716pt;}
.wscd{word-spacing:76.167384pt;}
.wsb0{word-spacing:76.185980pt;}
.wsbd{word-spacing:76.773631pt;}
.wsa9{word-spacing:77.033982pt;}
.ws76{word-spacing:77.037701pt;}
.ws94{word-spacing:77.074895pt;}
.wsc2{word-spacing:77.093491pt;}
.ws4a{word-spacing:77.099733pt;}
.ws89{word-spacing:77.394755pt;}
.ws71{word-spacing:77.997283pt;}
.wsb8{word-spacing:79.492444pt;}
.ws47{word-spacing:79.675200pt;}
.ws49{word-spacing:79.959467pt;}
.ws48{word-spacing:83.845333pt;}
.ws22{word-spacing:86.712000pt;}
.ws21{word-spacing:88.148800pt;}
.ws1f{word-spacing:88.149867pt;}
.ws1e{word-spacing:88.151467pt;}
.ws20{word-spacing:88.176000pt;}
.ws23{word-spacing:88.572800pt;}
.wsd4{word-spacing:95.645504pt;}
.wsba{word-spacing:100.659092pt;}
.wsbc{word-spacing:101.469939pt;}
.ws73{word-spacing:101.745130pt;}
.wsb4{word-spacing:104.281772pt;}
.ws9a{word-spacing:104.724295pt;}
.ws82{word-spacing:110.723574pt;}
.ws84{word-spacing:110.850030pt;}
.wsb7{word-spacing:111.538102pt;}
.ws93{word-spacing:113.237862pt;}
.ws5f{word-spacing:113.825475pt;}
.wsb9{word-spacing:115.837657pt;}
.ws99{word-spacing:116.588920pt;}
.wsc1{word-spacing:116.860467pt;}
.ws1d{word-spacing:117.713067pt;}
.wsbf{word-spacing:117.864642pt;}
.wsbe{word-spacing:117.998575pt;}
.wsd6{word-spacing:118.370468pt;}
.wsb1{word-spacing:118.567628pt;}
.ws66{word-spacing:119.192472pt;}
.ws91{word-spacing:119.545769pt;}
.ws5e{word-spacing:119.780122pt;}
.ws90{word-spacing:120.025597pt;}
.wscf{word-spacing:120.244999pt;}
.wsa3{word-spacing:120.349176pt;}
.ws7f{word-spacing:120.631844pt;}
.ws88{word-spacing:121.074441pt;}
.ws61{word-spacing:121.368266pt;}
.ws6b{word-spacing:121.688127pt;}
.wsd1{word-spacing:121.877811pt;}
.ws77{word-spacing:121.915004pt;}
.ws7a{word-spacing:122.766726pt;}
.wsc6{word-spacing:122.770445pt;}
.ws70{word-spacing:122.822515pt;}
.ws56{word-spacing:123.677956pt;}
.wscc{word-spacing:123.767219pt;}
.ws9f{word-spacing:123.994097pt;}
.wsa8{word-spacing:124.105676pt;}
.ws55{word-spacing:125.202872pt;}
.ws5d{word-spacing:125.466942pt;}
.ws72{word-spacing:129.037477pt;}
.ws57{word-spacing:129.398249pt;}
.wsc5{word-spacing:133.563910pt;}
.ws8f{word-spacing:133.582507pt;}
.wsc8{word-spacing:133.601103pt;}
.wscb{word-spacing:133.608542pt;}
.ws54{word-spacing:133.638296pt;}
.ws6a{word-spacing:133.642016pt;}
.ws5c{word-spacing:133.694086pt;}
.wsa7{word-spacing:133.820505pt;}
.ws6f{word-spacing:134.025104pt;}
.ws87{word-spacing:134.047420pt;}
.ws9e{word-spacing:134.661106pt;}
.wsb3{word-spacing:134.995806pt;}
.ws92{word-spacing:135.036718pt;}
.wsce{word-spacing:135.196649pt;}
.ws85{word-spacing:135.285912pt;}
.ws65{word-spacing:135.698792pt;}
.ws8a{word-spacing:135.747106pt;}
.ws68{word-spacing:135.769422pt;}
.ws6d{word-spacing:135.784299pt;}
.ws60{word-spacing:135.955387pt;}
.ws7c{word-spacing:136.208300pt;}
.wsb6{word-spacing:136.293844pt;}
.ws83{word-spacing:136.364511pt;}
.ws79{word-spacing:136.866617pt;}
.wsa2{word-spacing:136.948479pt;}
.wsc3{word-spacing:137.100934pt;}
.ws5a{word-spacing:137.283180pt;}
.ws7e{word-spacing:137.283217pt;}
.wsd0{word-spacing:137.457987pt;}
.wsb2{word-spacing:137.528617pt;}
.wsaa{word-spacing:137.941497pt;}
.wsbb{word-spacing:138.049357pt;}
.wsc0{word-spacing:138.220445pt;}
.ws8b{word-spacing:138.982866pt;}
.wsa5{word-spacing:139.113078pt;}
.wsae{word-spacing:139.451535pt;}
.ws7d{word-spacing:141.552906pt;}
.wsad{word-spacing:143.933263pt;}
.wsac{word-spacing:147.198851pt;}
.ws95{word-spacing:149.374646pt;}
.wsa6{word-spacing:149.393242pt;}
.ws8d{word-spacing:150.032963pt;}
.ws9c{word-spacing:150.297034pt;}
.wsa0{word-spacing:150.319349pt;}
.ws74{word-spacing:150.713596pt;}
.ws6e{word-spacing:151.260297pt;}
.ws78{word-spacing:151.282650pt;}
.ws63{word-spacing:151.810791pt;}
.wsc9{word-spacing:153.305953pt;}
.ws52{word-spacing:153.607217pt;}
.ws36{word-spacing:154.871370pt;}
.ws81{word-spacing:156.039643pt;}
.wsc4{word-spacing:156.839294pt;}
.ws5b{word-spacing:156.988029pt;}
.ws3a{word-spacing:157.326112pt;}
.ws8e{word-spacing:158.100102pt;}
.wsa1{word-spacing:158.568772pt;}
.ws64{word-spacing:158.881156pt;}
.ws9d{word-spacing:160.045336pt;}
.ws3f{word-spacing:160.261055pt;}
.ws96{word-spacing:160.272214pt;}
.ws53{word-spacing:160.368916pt;}
.wsc7{word-spacing:160.398671pt;}
.ws42{word-spacing:161.116495pt;}
.wsca{word-spacing:161.421443pt;}
.wsd3{word-spacing:161.425348pt;}
.ws69{word-spacing:162.221131pt;}
.ws3d{word-spacing:162.384369pt;}
.ws86{word-spacing:162.488921pt;}
.wsaf{word-spacing:162.808781pt;}
.wsab{word-spacing:163.065413pt;}
.ws75{word-spacing:163.381554pt;}
.ws33{word-spacing:167.524451pt;}
.ws2a{word-spacing:171.370214pt;}
.ws2d{word-spacing:173.259622pt;}
.ws30{word-spacing:177.097946pt;}
.ws43{word-spacing:177.466158pt;}
.ws40{word-spacing:179.258864pt;}
.ws3b{word-spacing:179.939497pt;}
.ws3e{word-spacing:180.013883pt;}
.ws44{word-spacing:184.328279pt;}
.ws34{word-spacing:184.997754pt;}
.ws31{word-spacing:185.630036pt;}
.ws37{word-spacing:186.150739pt;}
.ws2e{word-spacing:187.154952pt;}
.ws41{word-spacing:187.303724pt;}
.ws2b{word-spacing:188.568288pt;}
.ws39{word-spacing:190.573479pt;}
.ws35{word-spacing:191.056989pt;}
.ws27{word-spacing:191.581411pt;}
.ws38{word-spacing:192.767870pt;}
.ws2f{word-spacing:192.805063pt;}
.ws32{word-spacing:192.883169pt;}
.ws3c{word-spacing:193.660504pt;}
.ws2c{word-spacing:193.958048pt;}
.ws4b{word-spacing:326.421353pt;}
.wsd2{word-spacing:332.773583pt;}
.ws58{word-spacing:333.465597pt;}
.ws97{word-spacing:333.469316pt;}
.ws4d{word-spacing:430.490667pt;}
.ws50{word-spacing:513.468800pt;}
.ws1b{word-spacing:906.440000pt;}
.ws46{word-spacing:1371.061333pt;}
._2b{margin-left:-1791.978933pt;}
._29{margin-left:-1548.629333pt;}
._27{margin-left:-839.453331pt;}
._2a{margin-left:-635.946133pt;}
._a{margin-left:-25.672246pt;}
._26{margin-left:-19.726502pt;}
._19{margin-left:-5.359863pt;}
._d{margin-left:-4.126725pt;}
._1{margin-left:-2.815814pt;}
._0{margin-left:-1.694553pt;}
._8{width:1.622722pt;}
._4{width:2.651296pt;}
._3{width:4.244941pt;}
._5{width:5.192182pt;}
._6{width:6.161280pt;}
._2{width:7.279285pt;}
._b{width:8.224252pt;}
._9{width:9.115528pt;}
._7{width:10.646637pt;}
._28{width:11.601621pt;}
._11{width:12.682316pt;}
._e{width:14.010887pt;}
._17{width:15.331643pt;}
._14{width:16.368909pt;}
._1a{width:17.565500pt;}
._10{width:18.475277pt;}
._c{width:19.454977pt;}
._16{width:20.724323pt;}
._1e{width:22.267259pt;}
._1b{width:23.204047pt;}
._20{width:24.332593pt;}
._1c{width:25.491265pt;}
._1d{width:26.603560pt;}
._12{width:27.553968pt;}
._f{width:29.755102pt;}
._1f{width:31.772387pt;}
._21{width:33.539326pt;}
._4b{width:37.189347pt;}
._15{width:38.278169pt;}
._4a{width:55.785881pt;}
._2f{width:75.303749pt;}
._30{width:82.415856pt;}
._25{width:160.443604pt;}
._24{width:182.393911pt;}
._3e{width:233.843596pt;}
._40{width:238.678695pt;}
._41{width:244.034459pt;}
._32{width:250.446544pt;}
._3d{width:281.041635pt;}
._35{width:285.709439pt;}
._44{width:287.215758pt;}
._3a{width:292.270296pt;}
._43{width:293.207524pt;}
._46{width:296.960305pt;}
._31{width:298.336485pt;}
._47{width:299.861364pt;}
._42{width:302.464953pt;}
._34{width:309.829143pt;}
._36{width:311.316866pt;}
._2e{width:312.280166pt;}
._3b{width:316.523895pt;}
._33{width:317.528145pt;}
._37{width:318.424498pt;}
._39{width:321.935523pt;}
._45{width:326.491674pt;}
._3f{width:330.768877pt;}
._38{width:336.905770pt;}
._3c{width:352.828122pt;}
._48{width:371.458240pt;}
._2d{width:601.549643pt;}
._23{width:915.506667pt;}
._49{width:2007.624010pt;}
._4d{width:2009.334891pt;}
._4c{width:2017.000897pt;}
._22{width:2025.290796pt;}
._18{width:2027.261949pt;}
._2c{width:2032.119878pt;}
._13{width:2035.143675pt;}
.fsf{font-size:20.210667pt;}
.fs13{font-size:23.021333pt;}
.fs5{font-size:23.978667pt;}
.fs11{font-size:24.000000pt;}
.fs10{font-size:24.792000pt;}
.fs8{font-size:30.106133pt;}
.fs4{font-size:31.876267pt;}
.fsc{font-size:33.472533pt;}
.fsb{font-size:33.648000pt;}
.fs6{font-size:34.537067pt;}
.fs12{font-size:34.666133pt;}
.fse{font-size:34.666667pt;}
.fs7{font-size:37.193067pt;}
.fs1{font-size:45.163733pt;}
.fsd{font-size:45.333333pt;}
.fs3{font-size:47.819733pt;}
.fsa{font-size:50.477333pt;}
.fs2{font-size:58.448000pt;}
.fs9{font-size:63.760533pt;}
.fs0{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y312{bottom:7.737000pt;}
.y2d8{bottom:7.843733pt;}
.y259{bottom:8.173200pt;}
.y2d5{bottom:10.729067pt;}
.y2d7{bottom:10.729200pt;}
.y258{bottom:10.843867pt;}
.y2d6{bottom:13.614533pt;}
.y311{bottom:21.070667pt;}
.y2d4{bottom:24.058400pt;}
.y257{bottom:24.173200pt;}
.y64{bottom:26.532267pt;}
.y2ae{bottom:40.962267pt;}
.y2d3{bottom:41.036400pt;}
.y159{bottom:65.536933pt;}
.y11c{bottom:67.502146pt;}
.y213{bottom:67.502184pt;}
.y158{bottom:67.502234pt;}
.y15a{bottom:67.502267pt;}
.y1df{bottom:67.502281pt;}
.y203{bottom:67.502808pt;}
.y41{bottom:67.577867pt;}
.y3d0{bottom:68.636133pt;}
.y1a4{bottom:68.636148pt;}
.y29a{bottom:68.711733pt;}
.y299{bottom:70.299200pt;}
.y45{bottom:71.508533pt;}
.y214{bottom:72.869200pt;}
.y231{bottom:75.137067pt;}
.y2e6{bottom:75.666133pt;}
.y2c9{bottom:76.226533pt;}
.y30c{bottom:77.202667pt;}
.y2a8{bottom:78.009333pt;}
.y334{bottom:78.160533pt;}
.y3cf{bottom:79.294400pt;}
.y388{bottom:79.521200pt;}
.y2a7{bottom:79.974800pt;}
.y2a2{bottom:79.975412pt;}
.y1de{bottom:80.125867pt;}
.y32a{bottom:80.201467pt;}
.y1a2{bottom:81.259733pt;}
.y11b{bottom:82.166665pt;}
.y212{bottom:82.166703pt;}
.y202{bottom:82.166729pt;}
.y157{bottom:82.166753pt;}
.y1dd{bottom:82.166767pt;}
.y40{bottom:82.166800pt;}
.y298{bottom:82.242400pt;}
.y1a1{bottom:83.300590pt;}
.y1a3{bottom:83.300667pt;}
.y2a3{bottom:83.981067pt;}
.y25a{bottom:87.382800pt;}
.y2e4{bottom:88.289733pt;}
.y7c{bottom:88.365333pt;}
.y44f{bottom:89.574800pt;}
.y3ce{bottom:89.877624pt;}
.y2e5{bottom:90.330667pt;}
.y2e3{bottom:90.330995pt;}
.y7b{bottom:90.406267pt;}
.y2ca{bottom:90.959867pt;}
.y387{bottom:91.464533pt;}
.y41b{bottom:91.615733pt;}
.y297{bottom:94.185733pt;}
.y2a1{bottom:94.639333pt;}
.y2a6{bottom:94.639662pt;}
.y3e{bottom:94.790533pt;}
.y332{bottom:94.790862pt;}
.y211{bottom:96.755786pt;}
.y201{bottom:96.755813pt;}
.y1dc{bottom:96.755851pt;}
.y3d{bottom:96.755867pt;}
.y11a{bottom:96.756107pt;}
.y156{bottom:96.756195pt;}
.y1a0{bottom:97.889673pt;}
.y333{bottom:98.796800pt;}
.y44e{bottom:100.233067pt;}
.y3f{bottom:100.762133pt;}
.y41a{bottom:102.274000pt;}
.y3cd{bottom:102.576267pt;}
.y2eb{bottom:102.954267pt;}
.y386{bottom:103.407867pt;}
.y296{bottom:104.617200pt;}
.y2ef{bottom:104.793333pt;}
.y2e2{bottom:104.919600pt;}
.y79{bottom:104.995200pt;}
.y2cb{bottom:105.693200pt;}
.y294{bottom:106.129067pt;}
.y7a{bottom:109.001467pt;}
.y29f{bottom:109.228267pt;}
.y155{bottom:109.379467pt;}
.y295{bottom:110.286533pt;}
.y44d{bottom:110.815733pt;}
.y119{bottom:111.344712pt;}
.y210{bottom:111.344750pt;}
.y200{bottom:111.344776pt;}
.y154{bottom:111.344791pt;}
.y3c{bottom:111.344800pt;}
.y1db{bottom:111.344814pt;}
.y19f{bottom:112.478637pt;}
.y419{bottom:112.932267pt;}
.y2a0{bottom:113.234533pt;}
.y385{bottom:115.351067pt;}
.y293{bottom:116.560533pt;}
.y7e{bottom:117.618800pt;}
.y292{bottom:118.072400pt;}
.y2e1{bottom:119.508533pt;}
.y78{bottom:119.584133pt;}
.y2cc{bottom:120.426533pt;}
.y44c{bottom:121.474691pt;}
.y2a5{bottom:121.851867pt;}
.y2ea{bottom:123.514933pt;}
.y418{bottom:123.516024pt;}
.y29e{bottom:123.817200pt;}
.y3cc{bottom:123.817357pt;}
.y44{bottom:123.968400pt;}
.y118{bottom:126.009231pt;}
.y20f{bottom:126.009269pt;}
.y1ff{bottom:126.009295pt;}
.y153{bottom:126.009310pt;}
.y3b{bottom:126.009333pt;}
.y1d9{bottom:126.009344pt;}
.y19e{bottom:127.067601pt;}
.y384{bottom:127.294400pt;}
.y329{bottom:127.974800pt;}
.y24b{bottom:128.049867pt;}
.y1da{bottom:131.300667pt;}
.y77{bottom:132.207867pt;}
.y2e0{bottom:134.173333pt;}
.y76{bottom:134.249333pt;}
.y2cd{bottom:135.159867pt;}
.y417{bottom:136.214667pt;}
.y3cb{bottom:136.516000pt;}
.y27e{bottom:137.272000pt;}
.y24a{bottom:138.094533pt;}
.y29d{bottom:138.406667pt;}
.y328{bottom:138.633333pt;}
.y27d{bottom:139.237333pt;}
.y383{bottom:139.313333pt;}
.y19c{bottom:139.692000pt;}
.y117{bottom:140.598553pt;}
.y20e{bottom:140.598591pt;}
.y152{bottom:140.598632pt;}
.y1d7{bottom:140.598637pt;}
.y3a{bottom:140.598667pt;}
.y1fe{bottom:140.599335pt;}
.y19d{bottom:141.732000pt;}
.y19b{bottom:141.732022pt;}
.y2ad{bottom:142.009067pt;}
.y2a4{bottom:143.773333pt;}
.y310{bottom:144.053333pt;}
.y44b{bottom:144.756000pt;}
.y1d8{bottom:145.889333pt;}
.y416{bottom:146.872000pt;}
.y3ca{bottom:147.174667pt;}
.y249{bottom:148.295200pt;}
.y2e9{bottom:148.762062pt;}
.y2df{bottom:148.762667pt;}
.y75{bottom:148.837333pt;}
.y30d{bottom:148.934933pt;}
.y2ce{bottom:149.893200pt;}
.y331{bottom:151.256000pt;}
.y27c{bottom:151.861333pt;}
.y25b{bottom:152.018800pt;}
.y29b{bottom:153.070667pt;}
.y327{bottom:153.221333pt;}
.y330{bottom:153.222062pt;}
.y27b{bottom:153.902667pt;}
.y116{bottom:155.187876pt;}
.y151{bottom:155.187955pt;}
.y1d6{bottom:155.187959pt;}
.y38{bottom:155.188000pt;}
.y20d{bottom:155.188033pt;}
.y1fd{bottom:155.188060pt;}
.y44a{bottom:155.414667pt;}
.y19a{bottom:156.322062pt;}
.y29c{bottom:157.001333pt;}
.y415{bottom:157.454667pt;}
.y3c9{bottom:157.833357pt;}
.y248{bottom:158.790533pt;}
.y39{bottom:159.193333pt;}
.y73{bottom:161.461333pt;}
.y382{bottom:163.200000pt;}
.y2e8{bottom:163.350667pt;}
.y2de{bottom:163.352079pt;}
.y72{bottom:163.426667pt;}
.y2cf{bottom:164.626533pt;}
.y449{bottom:166.073357pt;}
.y27a{bottom:166.525333pt;}
.y74{bottom:167.433333pt;}
.y326{bottom:167.810667pt;}
.y414{bottom:168.113333pt;}
.y279{bottom:168.490667pt;}
.y247{bottom:169.441867pt;}
.y115{bottom:169.851917pt;}
.y20c{bottom:169.851955pt;}
.y1fc{bottom:169.851981pt;}
.y150{bottom:169.851995pt;}
.y37{bottom:169.852000pt;}
.y1d4{bottom:169.852003pt;}
.y3c8{bottom:170.532000pt;}
.y197{bottom:170.910607pt;}
.y199{bottom:170.910667pt;}
.y1d5{bottom:175.142667pt;}
.y198{bottom:176.277333pt;}
.y15b{bottom:176.352000pt;}
.y413{bottom:177.184000pt;}
.y2e7{bottom:178.014709pt;}
.y2dd{bottom:178.016000pt;}
.y70{bottom:178.092000pt;}
.y412{bottom:178.772000pt;}
.y2d0{bottom:179.359867pt;}
.y246{bottom:179.633867pt;}
.y3c7{bottom:181.114667pt;}
.y71{bottom:182.022667pt;}
.y2dc{bottom:182.173333pt;}
.y32f{bottom:182.475395pt;}
.y325{bottom:182.476000pt;}
.y278{bottom:183.080000pt;}
.y2db{bottom:183.760000pt;}
.y114{bottom:184.441239pt;}
.y20b{bottom:184.441277pt;}
.y1fb{bottom:184.441303pt;}
.y14f{bottom:184.441318pt;}
.y1d3{bottom:184.441326pt;}
.y35{bottom:184.441333pt;}
.y196{bottom:185.575365pt;}
.y381{bottom:187.086667pt;}
.y36{bottom:188.446667pt;}
.y448{bottom:189.354667pt;}
.y411{bottom:189.354691pt;}
.y245{bottom:190.406533pt;}
.y25f{bottom:190.619733pt;}
.y3c6{bottom:191.773357pt;}
.y6e{bottom:192.680000pt;}
.y2d1{bottom:194.093200pt;}
.y277{bottom:195.704000pt;}
.y6f{bottom:196.686667pt;}
.y1d2{bottom:197.064000pt;}
.y324{bottom:197.064728pt;}
.y276{bottom:197.745333pt;}
.y113{bottom:199.029246pt;}
.y20a{bottom:199.029284pt;}
.y1fa{bottom:199.029311pt;}
.y34{bottom:199.029333pt;}
.y1d1{bottom:199.029344pt;}
.y14e{bottom:199.030043pt;}
.y291{bottom:199.030745pt;}
.y2da{bottom:199.785333pt;}
.y447{bottom:200.013357pt;}
.y195{bottom:200.163970pt;}
.y244{bottom:200.659200pt;}
.y31c{bottom:200.994667pt;}
.y410{bottom:202.053333pt;}
.y3c5{bottom:204.472000pt;}
.y6d{bottom:205.304000pt;}
.y6c{bottom:207.269333pt;}
.y2d9{bottom:207.646667pt;}
.y2d2{bottom:208.826533pt;}
.y32e{bottom:209.688000pt;}
.y380{bottom:210.973333pt;}
.y243{bottom:211.154533pt;}
.y31b{bottom:211.350667pt;}
.y1f9{bottom:211.653333pt;}
.y32d{bottom:211.653412pt;}
.y275{bottom:212.333333pt;}
.y446{bottom:212.712000pt;}
.y40f{bottom:212.712024pt;}
.y31a{bottom:212.938667pt;}
.y112{bottom:213.618569pt;}
.y1ce{bottom:213.618644pt;}
.y14d{bottom:213.618648pt;}
.y1d0{bottom:213.618667pt;}
.y209{bottom:213.694640pt;}
.y1f8{bottom:213.694651pt;}
.y32{bottom:213.694667pt;}
.y194{bottom:214.753293pt;}
.y3c4{bottom:215.054667pt;}
.y25c{bottom:216.654800pt;}
.y33{bottom:217.625333pt;}
.y1cf{bottom:218.985333pt;}
.y30e{bottom:220.667200pt;}
.y242{bottom:221.043200pt;}
.y6b{bottom:221.858667pt;}
.y2a9{bottom:222.312000pt;}
.y37f{bottom:222.992000pt;}
.y318{bottom:223.294667pt;}
.y32c{bottom:224.277333pt;}
.y317{bottom:224.881333pt;}
.y274{bottom:224.957333pt;}
.y40e{bottom:225.410667pt;}
.y3c3{bottom:225.713357pt;}
.y323{bottom:226.317333pt;}
.y273{bottom:226.922667pt;}
.y111{bottom:228.283925pt;}
.y208{bottom:228.283963pt;}
.y1f7{bottom:228.283974pt;}
.y1cc{bottom:228.283993pt;}
.y31{bottom:228.284000pt;}
.y14c{bottom:228.284003pt;}
.y319{bottom:229.040000pt;}
.y193{bottom:229.417333pt;}
.y241{bottom:231.547200pt;}
.y1cd{bottom:233.574667pt;}
.y445{bottom:233.953357pt;}
.y37e{bottom:234.936000pt;}
.y40d{bottom:235.993333pt;}
.y6a{bottom:236.522667pt;}
.y316{bottom:236.825333pt;}
.y3c2{bottom:238.412000pt;}
.y290{bottom:240.906667pt;}
.y322{bottom:240.907395pt;}
.y272{bottom:241.586667pt;}
.y240{bottom:241.895200pt;}
.y1ca{bottom:242.871970pt;}
.y1f6{bottom:242.871981pt;}
.y30{bottom:242.872000pt;}
.y14b{bottom:242.872011pt;}
.y110{bottom:242.872649pt;}
.y255{bottom:243.020133pt;}
.y260{bottom:243.097600pt;}
.y191{bottom:244.006587pt;}
.y2c1{bottom:244.031200pt;}
.y21a{bottom:244.218800pt;}
.y32b{bottom:244.913333pt;}
.y40c{bottom:246.652000pt;}
.y43{bottom:246.878667pt;}
.y3c1{bottom:247.484000pt;}
.y192{bottom:248.012000pt;}
.y1cb{bottom:248.164000pt;}
.y315{bottom:248.768000pt;}
.y3c0{bottom:249.070667pt;}
.y68{bottom:251.112000pt;}
.y23f{bottom:253.154267pt;}
.y254{bottom:253.974800pt;}
.y69{bottom:255.118667pt;}
.y14a{bottom:255.496000pt;}
.y271{bottom:256.176000pt;}
.y40b{bottom:257.234667pt;}
.y444{bottom:257.234691pt;}
.y10f{bottom:257.461255pt;}
.y149{bottom:257.461293pt;}
.y2e{bottom:257.461333pt;}
.y1c9{bottom:257.461412pt;}
.y1f5{bottom:257.461423pt;}
.y219{bottom:257.544267pt;}
.y217{bottom:257.545600pt;}
.y190{bottom:258.594594pt;}
.y2c2{bottom:258.738533pt;}
.y37d{bottom:258.822667pt;}
.y3bf{bottom:259.653357pt;}
.y2f{bottom:261.468000pt;}
.y23e{bottom:263.037067pt;}
.y2ec{bottom:263.433333pt;}
.y253{bottom:264.322800pt;}
.y7d{bottom:265.700000pt;}
.y67{bottom:265.701412pt;}
.y40a{bottom:267.893357pt;}
.y321{bottom:268.120000pt;}
.y443{bottom:269.933333pt;}
.y1c8{bottom:270.085333pt;}
.y270{bottom:270.765333pt;}
.y21c{bottom:270.769600pt;}
.y21b{bottom:270.778267pt;}
.y218{bottom:270.779600pt;}
.y206{bottom:272.125240pt;}
.y10e{bottom:272.125295pt;}
.y2d{bottom:272.125333pt;}
.y1c7{bottom:272.125336pt;}
.y1f4{bottom:272.125344pt;}
.y3be{bottom:272.352000pt;}
.y18f{bottom:273.185351pt;}
.y23d{bottom:273.289733pt;}
.y2c3{bottom:273.437200pt;}
.y252{bottom:274.514800pt;}
.y207{bottom:277.417333pt;}
.y66{bottom:278.324000pt;}
.y65{bottom:280.365333pt;}
.y409{bottom:280.592000pt;}
.y25d{bottom:281.290800pt;}
.y37c{bottom:282.708000pt;}
.y3bd{bottom:283.012024pt;}
.y23c{bottom:283.713600pt;}
.y1f3{bottom:284.749333pt;}
.y31f{bottom:284.750062pt;}
.y251{bottom:285.044800pt;}
.y216{bottom:285.143200pt;}
.y26f{bottom:285.354667pt;}
.y205{bottom:286.714563pt;}
.y10d{bottom:286.714618pt;}
.y1c6{bottom:286.714659pt;}
.y2c{bottom:286.714667pt;}
.y28f{bottom:286.715395pt;}
.y18e{bottom:287.849272pt;}
.y2c4{bottom:288.135867pt;}
.y320{bottom:288.680000pt;}
.y408{bottom:291.250667pt;}
.y30f{bottom:292.399467pt;}
.y23b{bottom:294.186800pt;}
.y37b{bottom:294.728000pt;}
.y2ac{bottom:295.036400pt;}
.y250{bottom:295.540133pt;}
.y3bc{bottom:295.710667pt;}
.y31e{bottom:297.373333pt;}
.y31d{bottom:299.338667pt;}
.y204{bottom:301.303885pt;}
.y10c{bottom:301.303940pt;}
.y1c5{bottom:301.303981pt;}
.y2b{bottom:301.304000pt;}
.y407{bottom:301.833357pt;}
.y18d{bottom:302.437280pt;}
.y2c5{bottom:302.834533pt;}
.y23a{bottom:304.485067pt;}
.y2f0{bottom:305.361333pt;}
.y24f{bottom:305.740800pt;}
.y3bb{bottom:306.293333pt;}
.y37a{bottom:306.670667pt;}
.y406{bottom:314.532000pt;}
.y239{bottom:314.885600pt;}
.y10b{bottom:315.967981pt;}
.y2a{bottom:315.968000pt;}
.y148{bottom:315.968003pt;}
.y1c4{bottom:315.968022pt;}
.y24e{bottom:316.088800pt;}
.y3ba{bottom:316.952024pt;}
.y18c{bottom:317.026722pt;}
.y2c6{bottom:317.533200pt;}
.y379{bottom:318.614667pt;}
.y42{bottom:319.898667pt;}
.y405{bottom:325.190667pt;}
.y238{bottom:325.458933pt;}
.y24d{bottom:326.436800pt;}
.yaa{bottom:326.626667pt;}
.y314{bottom:327.675667pt;}
.y364{bottom:329.197333pt;}
.y3b9{bottom:329.650667pt;}
.y10a{bottom:330.557303pt;}
.y147{bottom:330.557325pt;}
.y28e{bottom:330.557333pt;}
.y1c3{bottom:330.557344pt;}
.y26e{bottom:330.558062pt;}
.y363{bottom:330.784000pt;}
.y18b{bottom:331.690643pt;}
.y2c7{bottom:332.231867pt;}
.y237{bottom:335.670267pt;}
.y404{bottom:335.773333pt;}
.y442{bottom:335.773357pt;}
.y24c{bottom:335.886933pt;}
.y230{bottom:337.133338pt;}
.y3b8{bottom:340.233333pt;}
.y313{bottom:341.009333pt;}
.ya9{bottom:341.216000pt;}
.y378{bottom:342.500000pt;}
.y28d{bottom:343.181333pt;}
.y29{bottom:343.861333pt;}
.y109{bottom:345.146626pt;}
.y146{bottom:345.146648pt;}
.y1c2{bottom:345.146667pt;}
.y25e{bottom:345.926800pt;}
.y236{bottom:346.070267pt;}
.y18a{bottom:346.279966pt;}
.y403{bottom:346.432024pt;}
.y2c8{bottom:346.939200pt;}
.yc5{bottom:347.868000pt;}
.y441{bottom:348.472000pt;}
.y22e{bottom:349.077333pt;}
.y361{bottom:350.286667pt;}
.y3b7{bottom:350.892024pt;}
.y362{bottom:351.722667pt;}
.y360{bottom:351.722796pt;}
.y22f{bottom:353.234667pt;}
.y377{bottom:354.444000pt;}
.ya8{bottom:355.804000pt;}
.y1f2{bottom:357.769333pt;}
.y28{bottom:358.450790pt;}
.y256{bottom:358.838533pt;}
.y402{bottom:359.130667pt;}
.y108{bottom:359.810667pt;}
.y1f1{bottom:359.810678pt;}
.y106{bottom:359.810681pt;}
.y26d{bottom:359.811395pt;}
.y145{bottom:359.811406pt;}
.y189{bottom:360.869288pt;}
.y35f{bottom:361.549333pt;}
.yc4{bottom:362.456000pt;}
.y35e{bottom:362.985333pt;}
.y3b6{bottom:363.590667pt;}
.y107{bottom:363.741333pt;}
.y376{bottom:366.464322pt;}
.y401{bottom:369.789333pt;}
.y22d{bottom:370.016000pt;}
.ya7{bottom:370.469333pt;}
.y3b5{bottom:374.249357pt;}
.y1f0{bottom:374.400000pt;}
.y144{bottom:374.400011pt;}
.y105{bottom:374.400721pt;}
.yc3{bottom:375.232000pt;}
.y188{bottom:375.533329pt;}
.yc2{bottom:377.121333pt;}
.y375{bottom:378.407946pt;}
.y400{bottom:380.372024pt;}
.y2ba{bottom:382.772133pt;}
.y35d{bottom:384.227687pt;}
.ya6{bottom:385.058667pt;}
.y3b4{bottom:386.948000pt;}
.y28c{bottom:387.024000pt;}
.y22c{bottom:387.552886pt;}
.y27{bottom:387.628000pt;}
.y1c1{bottom:388.989303pt;}
.y1ee{bottom:388.989307pt;}
.y104{bottom:388.989326pt;}
.y143{bottom:388.989333pt;}
.y187{bottom:390.122651pt;}
.yc1{bottom:391.710667pt;}
.y3ff{bottom:393.070667pt;}
.y306{bottom:393.255000pt;}
.y1ef{bottom:394.280000pt;}
.y307{bottom:397.202667pt;}
.y2bb{bottom:397.453467pt;}
.y3b3{bottom:397.530691pt;}
.y35c{bottom:398.287003pt;}
.ya5{bottom:399.646667pt;}
.y22b{bottom:401.613539pt;}
.y26{bottom:402.218140pt;}
.y374{bottom:402.293333pt;}
.y141{bottom:403.577295pt;}
.y1c0{bottom:403.577311pt;}
.y1ed{bottom:403.577314pt;}
.y103{bottom:403.577333pt;}
.y3fe{bottom:403.729333pt;}
.y305{bottom:403.908067pt;}
.y186{bottom:404.711974pt;}
.yc0{bottom:406.298667pt;}
.y142{bottom:407.584000pt;}
.y62{bottom:409.021082pt;}
.y3b2{bottom:410.229333pt;}
.y2bc{bottom:412.134800pt;}
.y35b{bottom:412.271003pt;}
.y3fd{bottom:412.800000pt;}
.y373{bottom:414.236000pt;}
.y304{bottom:414.309800pt;}
.ya4{bottom:414.312000pt;}
.y22a{bottom:415.597574pt;}
.y140{bottom:418.242651pt;}
.y102{bottom:418.242667pt;}
.y1ec{bottom:418.242670pt;}
.y185{bottom:419.376014pt;}
.y3b1{bottom:420.888000pt;}
.y61{bottom:420.964000pt;}
.y3fc{bottom:423.382667pt;}
.y303{bottom:424.747067pt;}
.y2ed{bottom:424.781333pt;}
.y3fb{bottom:424.970667pt;}
.y440{bottom:424.970691pt;}
.y372{bottom:426.180000pt;}
.y35a{bottom:426.255687pt;}
.y2ab{bottom:426.344400pt;}
.y2bd{bottom:426.816133pt;}
.ya3{bottom:428.900000pt;}
.y229{bottom:429.582260pt;}
.y28b{bottom:430.866667pt;}
.y25{bottom:431.470667pt;}
.y3b0{bottom:431.470691pt;}
.y26c{bottom:432.831395pt;}
.y13f{bottom:432.831974pt;}
.y1eb{bottom:432.831993pt;}
.y1bf{bottom:432.832000pt;}
.y60{bottom:432.906667pt;}
.y101{bottom:432.982667pt;}
.ybf{bottom:433.662667pt;}
.y184{bottom:433.965337pt;}
.y302{bottom:435.181733pt;}
.ybe{bottom:435.552000pt;}
.y3fa{bottom:435.553357pt;}
.y43f{bottom:437.669333pt;}
.y1e1{bottom:438.122653pt;}
.y371{bottom:438.123324pt;}
.y359{bottom:440.315003pt;}
.y2be{bottom:441.497467pt;}
.ya2{bottom:443.489333pt;}
.y228{bottom:443.641611pt;}
.y24{bottom:444.094667pt;}
.y3af{bottom:444.169333pt;}
.y5f{bottom:444.850783pt;}
.y1e9{bottom:445.454667pt;}
.y301{bottom:445.616400pt;}
.y23{bottom:446.134667pt;}
.y1e8{bottom:447.419978pt;}
.y13e{bottom:447.419981pt;}
.y1ea{bottom:447.420000pt;}
.y26b{bottom:447.421412pt;}
.ybd{bottom:448.252000pt;}
.y183{bottom:448.554062pt;}
.y1e0{bottom:450.141293pt;}
.ybc{bottom:450.141333pt;}
.y370{bottom:450.142973pt;}
.y3ae{bottom:453.316000pt;}
.y358{bottom:454.299687pt;}
.y3ad{bottom:454.828000pt;}
.y300{bottom:456.053667pt;}
.y2bf{bottom:456.178800pt;}
.y227{bottom:457.626297pt;}
.ya1{bottom:458.154667pt;}
.y3f9{bottom:458.910667pt;}
.y43e{bottom:458.910691pt;}
.yff{bottom:460.044000pt;}
.y22{bottom:460.724807pt;}
.y5e{bottom:460.800000pt;}
.y181{bottom:461.177333pt;}
.y13d{bottom:462.084739pt;}
.y1be{bottom:462.085318pt;}
.yfe{bottom:462.085326pt;}
.y100{bottom:462.085333pt;}
.ybb{bottom:462.916000pt;}
.y180{bottom:463.142655pt;}
.y182{bottom:463.142667pt;}
.y30b{bottom:464.124000pt;}
.yba{bottom:464.730667pt;}
.y3ac{bottom:465.486691pt;}
.y28a{bottom:466.016000pt;}
.y2ff{bottom:466.486600pt;}
.y1e7{bottom:467.376000pt;}
.y357{bottom:468.359003pt;}
.y308{bottom:468.982600pt;}
.y3f8{bottom:469.568000pt;}
.y36f{bottom:470.022640pt;}
.y2c0{bottom:470.860133pt;}
.y43d{bottom:471.609333pt;}
.y226{bottom:471.685649pt;}
.y5d{bottom:472.742667pt;}
.yfc{bottom:474.708000pt;}
.yfb{bottom:476.673322pt;}
.y1bd{bottom:476.673325pt;}
.yfd{bottom:476.673333pt;}
.y13c{bottom:476.673344pt;}
.y2fe{bottom:476.923000pt;}
.y17f{bottom:477.808011pt;}
.y3ab{bottom:478.185333pt;}
.yb9{bottom:479.394667pt;}
.y3f7{bottom:480.152024pt;}
.y36e{bottom:481.966300pt;}
.y43c{bottom:482.268024pt;}
.y356{bottom:482.344337pt;}
.y5c{bottom:484.762667pt;}
.y225{bottom:485.669684pt;}
.ya0{bottom:487.332000pt;}
.y2fd{bottom:487.360267pt;}
.y3aa{bottom:488.768000pt;}
.y1e6{bottom:489.297333pt;}
.y21{bottom:489.977333pt;}
.y17d{bottom:490.432000pt;}
.y139{bottom:491.262607pt;}
.y1bc{bottom:491.262648pt;}
.y13b{bottom:491.262667pt;}
.yfa{bottom:491.264079pt;}
.yb8{bottom:492.094667pt;}
.y17c{bottom:492.397326pt;}
.y17e{bottom:492.397333pt;}
.y3f6{bottom:492.850667pt;}
.yb7{bottom:493.984000pt;}
.y43b{bottom:494.966667pt;}
.y13a{bottom:495.269333pt;}
.y355{bottom:496.329021pt;}
.y5b{bottom:496.705333pt;}
.y2fc{bottom:497.793200pt;}
.y3a9{bottom:499.426667pt;}
.y224{bottom:499.654370pt;}
.y9f{bottom:501.921333pt;}
.y20{bottom:502.601333pt;}
.y3f5{bottom:503.508000pt;}
.yf8{bottom:503.886667pt;}
.y1f{bottom:504.566667pt;}
.y17a{bottom:505.020000pt;}
.y43a{bottom:505.549333pt;}
.y138{bottom:505.927963pt;}
.yf9{bottom:505.928000pt;}
.yf7{bottom:505.928003pt;}
.y2af{bottom:506.020133pt;}
.y179{bottom:506.985322pt;}
.y17b{bottom:506.985333pt;}
.y2fb{bottom:508.228733pt;}
.yb6{bottom:508.573333pt;}
.y5a{bottom:508.649333pt;}
.y3a8{bottom:510.009357pt;}
.y354{bottom:510.388337pt;}
.y1e5{bottom:511.218667pt;}
.y223{bottom:513.714558pt;}
.y3f4{bottom:514.092024pt;}
.y439{bottom:516.208024pt;}
.y36d{bottom:516.510667pt;}
.y9e{bottom:516.585333pt;}
.y1e{bottom:517.190667pt;}
.y289{bottom:518.550667pt;}
.y2fa{bottom:518.663400pt;}
.y1d{bottom:519.232000pt;}
.y137{bottom:520.515970pt;}
.y1e4{bottom:520.516000pt;}
.yf6{bottom:520.516011pt;}
.y59{bottom:520.592000pt;}
.y2b0{bottom:520.770800pt;}
.y178{bottom:521.650678pt;}
.y3a7{bottom:522.708000pt;}
.yb5{bottom:523.238781pt;}
.y353{bottom:524.373021pt;}
.y1e3{bottom:525.808000pt;}
.y3f3{bottom:526.790667pt;}
.y36c{bottom:528.453333pt;}
.y438{bottom:528.906667pt;}
.y2f9{bottom:529.165667pt;}
.y9d{bottom:529.285333pt;}
.y222{bottom:530.797333pt;}
.y9c{bottom:531.174667pt;}
.y1c{bottom:531.854667pt;}
.y58{bottom:532.534667pt;}
.yf4{bottom:533.140000pt;}
.y3a6{bottom:533.366667pt;}
.y1b{bottom:533.820000pt;}
.y1bb{bottom:535.105306pt;}
.yf3{bottom:535.105325pt;}
.yf5{bottom:535.105333pt;}
.y136{bottom:535.105412pt;}
.y2b1{bottom:535.512800pt;}
.y3f2{bottom:535.937333pt;}
.y175{bottom:536.239993pt;}
.y177{bottom:536.240000pt;}
.y3f1{bottom:537.449333pt;}
.yb4{bottom:537.826939pt;}
.y352{bottom:538.432337pt;}
.y437{bottom:539.489333pt;}
.y2f8{bottom:540.172333pt;}
.y176{bottom:540.245333pt;}
.y1e2{bottom:540.472000pt;}
.y309{bottom:540.762533pt;}
.y3a5{bottom:544.025333pt;}
.y57{bottom:544.478667pt;}
.y9b{bottom:545.764000pt;}
.y3f0{bottom:548.108024pt;}
.y19{bottom:548.409333pt;}
.y135{bottom:549.769317pt;}
.y26a{bottom:549.769333pt;}
.y1ba{bottom:549.769347pt;}
.yf2{bottom:549.769366pt;}
.y436{bottom:550.148024pt;}
.y2b2{bottom:550.263467pt;}
.y2f7{bottom:550.267267pt;}
.y172{bottom:550.827913pt;}
.y174{bottom:550.828000pt;}
.y36b{bottom:552.416000pt;}
.y351{bottom:552.416337pt;}
.y1a{bottom:553.776000pt;}
.y3a4{bottom:554.608024pt;}
.y173{bottom:554.834667pt;}
.y288{bottom:555.061333pt;}
.y56{bottom:556.422667pt;}
.y9a{bottom:558.538667pt;}
.y99{bottom:560.428000pt;}
.y2f6{bottom:560.766933pt;}
.y3ef{bottom:560.806667pt;}
.y287{bottom:562.393333pt;}
.y435{bottom:562.846667pt;}
.y18{bottom:563.073333pt;}
.y269{bottom:564.358667pt;}
.y1b9{bottom:564.358669pt;}
.y134{bottom:564.359357pt;}
.yf1{bottom:564.359406pt;}
.y2b3{bottom:565.014133pt;}
.y171{bottom:565.493269pt;}
.y220{bottom:565.568000pt;}
.y350{bottom:566.401021pt;}
.y221{bottom:567.080000pt;}
.y21f{bottom:567.080005pt;}
.y3a3{bottom:567.306667pt;}
.y55{bottom:568.441333pt;}
.y2f5{bottom:570.763933pt;}
.y3ee{bottom:571.389333pt;}
.yb3{bottom:573.128000pt;}
.y434{bottom:573.506691pt;}
.y98{bottom:575.017333pt;}
.y36a{bottom:576.302667pt;}
.y268{bottom:576.982667pt;}
.y21e{bottom:577.512000pt;}
.y17{bottom:577.663474pt;}
.y3a2{bottom:577.965357pt;}
.y133{bottom:578.947962pt;}
.y1b8{bottom:578.947992pt;}
.y267{bottom:578.948000pt;}
.yf0{bottom:578.948011pt;}
.y21d{bottom:579.024000pt;}
.y2aa{bottom:579.280000pt;}
.y2b4{bottom:579.764800pt;}
.y170{bottom:580.081276pt;}
.y54{bottom:580.384000pt;}
.y34f{bottom:580.460337pt;}
.y2f4{bottom:581.265333pt;}
.y3ed{bottom:582.048024pt;}
.y433{bottom:586.205333pt;}
.yb2{bottom:587.716000pt;}
.y369{bottom:588.245333pt;}
.y97{bottom:589.606667pt;}
.y3a1{bottom:590.664000pt;}
.y2f3{bottom:591.665333pt;}
.y53{bottom:592.328000pt;}
.y132{bottom:593.537284pt;}
.y1b7{bottom:593.537314pt;}
.yef{bottom:593.537333pt;}
.y215{bottom:593.688000pt;}
.y34e{bottom:594.444337pt;}
.y2b5{bottom:594.506800pt;}
.y16f{bottom:594.672033pt;}
.y3ec{bottom:594.746667pt;}
.y432{bottom:596.788000pt;}
.y368{bottom:600.189306pt;}
.y3a0{bottom:601.246667pt;}
.y2f2{bottom:601.811400pt;}
.y96{bottom:602.381333pt;}
.y52{bottom:604.270667pt;}
.y16{bottom:604.950667pt;}
.y3eb{bottom:605.329333pt;}
.y266{bottom:606.160000pt;}
.y15{bottom:606.916000pt;}
.y431{bottom:607.445333pt;}
.yed{bottom:608.201306pt;}
.y131{bottom:608.201325pt;}
.y265{bottom:608.201333pt;}
.y1b6{bottom:608.202072pt;}
.y34d{bottom:608.429021pt;}
.y2b6{bottom:609.257467pt;}
.y16e{bottom:609.335955pt;}
.y39f{bottom:611.906691pt;}
.yee{bottom:612.132000pt;}
.y2f1{bottom:612.463600pt;}
.y30a{bottom:612.542467pt;}
.y3ea{bottom:615.988024pt;}
.y51{bottom:616.214667pt;}
.y95{bottom:616.970667pt;}
.y430{bottom:618.029357pt;}
.y94{bottom:618.860000pt;}
.y14{bottom:619.540000pt;}
.y286{bottom:620.825333pt;}
.y13{bottom:621.581333pt;}
.y34c{bottom:622.488337pt;}
.yec{bottom:622.790629pt;}
.y130{bottom:622.790648pt;}
.y264{bottom:622.790667pt;}
.y1b5{bottom:622.790678pt;}
.yb1{bottom:623.849333pt;}
.y16d{bottom:623.923962pt;}
.y2b7{bottom:624.008133pt;}
.y39e{bottom:624.605333pt;}
.y2ee{bottom:625.531867pt;}
.y50{bottom:628.157333pt;}
.y3e9{bottom:628.686667pt;}
.y42f{bottom:630.728000pt;}
.y93{bottom:633.449333pt;}
.y12{bottom:634.205333pt;}
.y39d{bottom:635.187986pt;}
.y1b3{bottom:635.414667pt;}
.y11{bottom:636.169333pt;}
.y34b{bottom:636.473021pt;}
.yeb{bottom:637.379951pt;}
.y1b4{bottom:637.380000pt;}
.y12f{bottom:637.380090pt;}
.y16c{bottom:638.513284pt;}
.y2b8{bottom:638.750133pt;}
.y3e8{bottom:639.345333pt;}
.y4f{bottom:640.176000pt;}
.y285{bottom:641.385333pt;}
.y39c{bottom:645.845659pt;}
.y92{bottom:646.224000pt;}
.y91{bottom:648.113333pt;}
.y3e7{bottom:648.416000pt;}
.y3e6{bottom:649.928024pt;}
.y263{bottom:650.002667pt;}
.y34a{bottom:650.532337pt;}
.y10{bottom:650.758667pt;}
.yea{bottom:652.043992pt;}
.y262{bottom:652.044000pt;}
.y12e{bottom:652.044011pt;}
.y42e{bottom:652.044024pt;}
.y4e{bottom:652.120000pt;}
.y16b{bottom:653.102607pt;}
.y2b9{bottom:653.500800pt;}
.yb0{bottom:660.812000pt;}
.y3e5{bottom:662.626667pt;}
.y90{bottom:662.702667pt;}
.yf{bottom:663.382667pt;}
.y4d{bottom:664.062667pt;}
.y349{bottom:664.516337pt;}
.y283{bottom:664.668000pt;}
.y42d{bottom:664.742667pt;}
.ye{bottom:665.348000pt;}
.y1b2{bottom:666.632717pt;}
.ye9{bottom:666.633314pt;}
.y12d{bottom:666.633333pt;}
.yaf{bottom:667.692000pt;}
.y16a{bottom:667.766648pt;}
.y284{bottom:671.924000pt;}
.y39b{bottom:672.377333pt;}
.y3e4{bottom:673.285333pt;}
.y42c{bottom:675.325333pt;}
.y4c{bottom:676.006667pt;}
.y8f{bottom:677.292000pt;}
.y348{bottom:678.501021pt;}
.y282{bottom:679.256000pt;}
.yd{bottom:680.012000pt;}
.y12b{bottom:681.221311pt;}
.ye8{bottom:681.221322pt;}
.y261{bottom:681.221333pt;}
.y169{bottom:682.355970pt;}
.y3e3{bottom:683.868000pt;}
.y39a{bottom:684.397333pt;}
.y12c{bottom:685.228000pt;}
.y42b{bottom:685.984000pt;}
.y4b{bottom:687.949333pt;}
.yae{bottom:690.066667pt;}
.y8e{bottom:691.880000pt;}
.y347{bottom:692.561670pt;}
.y3e2{bottom:694.526691pt;}
.yc{bottom:694.602140pt;}
.y12a{bottom:695.886643pt;}
.ye7{bottom:695.886678pt;}
.y1b1{bottom:695.887395pt;}
.y399{bottom:696.340000pt;}
.y42a{bottom:696.568024pt;}
.y168{bottom:696.945293pt;}
.y4a{bottom:699.893449pt;}
.yad{bottom:704.654667pt;}
.y346{bottom:706.545021pt;}
.y8d{bottom:706.545333pt;}
.y3e1{bottom:707.225333pt;}
.y398{bottom:708.282667pt;}
.y1b0{bottom:708.510667pt;}
.y429{bottom:709.266667pt;}
.y166{bottom:709.568000pt;}
.y129{bottom:710.475966pt;}
.y1af{bottom:710.475970pt;}
.ye4{bottom:710.475993pt;}
.ye6{bottom:710.476000pt;}
.y167{bottom:711.609333pt;}
.y165{bottom:711.610032pt;}
.ye5{bottom:714.481333pt;}
.y49{bottom:715.842667pt;}
.y3e0{bottom:716.296000pt;}
.y3df{bottom:717.808000pt;}
.y428{bottom:718.337333pt;}
.y427{bottom:719.924000pt;}
.y397{bottom:720.226667pt;}
.y345{bottom:720.605670pt;}
.y8c{bottom:721.133333pt;}
.yb{bottom:721.889333pt;}
.ye2{bottom:723.098667pt;}
.ya{bottom:723.854667pt;}
.y128{bottom:725.063973pt;}
.ye1{bottom:725.063978pt;}
.ye3{bottom:725.064000pt;}
.y1ae{bottom:725.065412pt;}
.y164{bottom:726.198637pt;}
.y48{bottom:727.785333pt;}
.y3de{bottom:728.466691pt;}
.y426{bottom:730.508024pt;}
.y396{bottom:732.170667pt;}
.yac{bottom:733.833333pt;}
.y344{bottom:734.589670pt;}
.y8b{bottom:735.722667pt;}
.y9{bottom:736.478667pt;}
.ye0{bottom:737.688000pt;}
.y8{bottom:738.520000pt;}
.y127{bottom:739.729329pt;}
.ydf{bottom:739.729333pt;}
.ydd{bottom:739.729344pt;}
.y1ad{bottom:739.730054pt;}
.y367{bottom:739.730062pt;}
.y47{bottom:739.805431pt;}
.y163{bottom:740.787959pt;}
.y3dd{bottom:741.165333pt;}
.y425{bottom:743.206667pt;}
.yde{bottom:743.660000pt;}
.y395{bottom:744.113333pt;}
.y343{bottom:748.574354pt;}
.y8a{bottom:750.386667pt;}
.y7{bottom:751.142667pt;}
.y3dc{bottom:751.824000pt;}
.y6{bottom:753.108000pt;}
.y424{bottom:753.864000pt;}
.y126{bottom:754.318651pt;}
.y1ac{bottom:754.318659pt;}
.ydc{bottom:754.318667pt;}
.y160{bottom:755.451984pt;}
.y162{bottom:755.452000pt;}
.y46{bottom:755.678667pt;}
.y394{bottom:756.132000pt;}
.y281{bottom:758.324000pt;}
.y161{bottom:759.382667pt;}
.y3db{bottom:762.406691pt;}
.y342{bottom:762.633670pt;}
.y423{bottom:764.522667pt;}
.y89{bottom:764.976000pt;}
.y235{bottom:766.778667pt;}
.ydb{bottom:766.941333pt;}
.y5{bottom:767.697333pt;}
.y393{bottom:768.076000pt;}
.y125{bottom:768.906659pt;}
.y1ab{bottom:768.906667pt;}
.yda{bottom:768.906678pt;}
.y1aa{bottom:768.907354pt;}
.y366{bottom:768.907395pt;}
.y15f{bottom:770.042502pt;}
.y3da{bottom:775.105333pt;}
.y422{bottom:775.106691pt;}
.y341{bottom:776.618354pt;}
.y233{bottom:777.184933pt;}
.y88{bottom:777.676000pt;}
.y87{bottom:779.565333pt;}
.y392{bottom:780.018667pt;}
.yd7{bottom:781.530667pt;}
.yd6{bottom:783.495959pt;}
.yd8{bottom:783.496000pt;}
.y365{bottom:783.496079pt;}
.y124{bottom:783.496101pt;}
.y3d9{bottom:785.764000pt;}
.yd9{bottom:787.502667pt;}
.y421{bottom:787.805333pt;}
.y234{bottom:790.410267pt;}
.y340{bottom:790.677670pt;}
.y391{bottom:791.962667pt;}
.y86{bottom:792.340000pt;}
.y85{bottom:794.229333pt;}
.yd4{bottom:796.120000pt;}
.y3d8{bottom:796.346691pt;}
.y4{bottom:797.329333pt;}
.yd5{bottom:798.160000pt;}
.y1a9{bottom:798.160011pt;}
.y123{bottom:798.160022pt;}
.yd3{bottom:798.160739pt;}
.y420{bottom:798.462667pt;}
.y15e{bottom:803.225504pt;}
.y232{bottom:803.513067pt;}
.y390{bottom:803.905333pt;}
.y33f{bottom:804.661670pt;}
.y84{bottom:808.818667pt;}
.y3d7{bottom:809.045333pt;}
.y453{bottom:811.162667pt;}
.y1a8{bottom:812.749333pt;}
.yd2{bottom:812.749344pt;}
.y38f{bottom:815.849333pt;}
.y280{bottom:818.041333pt;}
.y33e{bottom:818.646354pt;}
.y3d6{bottom:819.704000pt;}
.y41f{bottom:819.704024pt;}
.y83{bottom:821.518667pt;}
.y452{bottom:821.745333pt;}
.y15d{bottom:822.351555pt;}
.y82{bottom:823.408000pt;}
.y3{bottom:826.432000pt;}
.ycf{bottom:827.338637pt;}
.yd1{bottom:827.338667pt;}
.y122{bottom:827.338745pt;}
.y38e{bottom:827.868000pt;}
.y3d5{bottom:830.362691pt;}
.yd0{bottom:831.345333pt;}
.y41e{bottom:832.402667pt;}
.y33d{bottom:832.706558pt;}
.y81{bottom:838.073447pt;}
.y38d{bottom:839.810667pt;}
.y15c{bottom:841.474479pt;}
.y121{bottom:842.002667pt;}
.yce{bottom:842.002678pt;}
.y11f{bottom:842.003395pt;}
.y3d4{bottom:843.061333pt;}
.y451{bottom:843.061357pt;}
.y120{bottom:847.294667pt;}
.y33c{bottom:848.201333pt;}
.y33a{bottom:849.789333pt;}
.y38c{bottom:851.754667pt;}
.y41d{bottom:852.132000pt;}
.yab{bottom:852.659960pt;}
.y80{bottom:852.661605pt;}
.y3d3{bottom:853.644024pt;}
.ycc{bottom:854.626667pt;}
.y2{bottom:855.685333pt;}
.y450{bottom:855.760000pt;}
.y1a7{bottom:856.591970pt;}
.ycd{bottom:856.592000pt;}
.ycb{bottom:856.592011pt;}
.y339{bottom:859.540000pt;}
.y33b{bottom:861.051394pt;}
.y338{bottom:861.052215pt;}
.y38b{bottom:863.697333pt;}
.y3d2{bottom:866.342667pt;}
.y336{bottom:866.872000pt;}
.y11e{bottom:869.216000pt;}
.yc8{bottom:871.181293pt;}
.yca{bottom:871.181333pt;}
.yc9{bottom:875.186667pt;}
.y7f{bottom:875.262667pt;}
.y38a{bottom:875.641333pt;}
.y3d1{bottom:877.001333pt;}
.y337{bottom:878.210306pt;}
.y335{bottom:878.210667pt;}
.y11d{bottom:883.729333pt;}
.y1a6{bottom:883.805333pt;}
.y1{bottom:884.862667pt;}
.y27f{bottom:885.838461pt;}
.yc7{bottom:885.845333pt;}
.y1a5{bottom:885.845383pt;}
.y41c{bottom:887.572465pt;}
.y454{bottom:887.583261pt;}
.y389{bottom:887.584000pt;}
.yc6{bottom:1002.330667pt;}
.y63{bottom:1002.557333pt;}
.h21{height:14.470837pt;}
.h2b{height:16.483275pt;}
.h1f{height:17.184000pt;}
.h8{height:17.720235pt;}
.h1c{height:17.751072pt;}
.h2e{height:18.321288pt;}
.hb{height:21.555991pt;}
.h1b{height:23.538667pt;}
.h6{height:23.556561pt;}
.hf{height:24.091968pt;}
.h9{height:24.728540pt;}
.h20{height:24.820951pt;}
.h18{height:24.821333pt;}
.h1a{height:24.826667pt;}
.h19{height:25.253176pt;}
.h1e{height:26.310933pt;}
.ha{height:26.630236pt;}
.h2a{height:26.631486pt;}
.h28{height:26.631677pt;}
.h29{height:26.632660pt;}
.h2d{height:27.485676pt;}
.h2c{height:27.485784pt;}
.h30{height:27.488633pt;}
.h2f{height:27.531815pt;}
.h27{height:29.285333pt;}
.h17{height:30.781333pt;}
.h3{height:32.337233pt;}
.hc{height:32.342727pt;}
.h7{height:35.338291pt;}
.h5{height:35.338783pt;}
.h11{height:35.338848pt;}
.h10{height:35.338877pt;}
.h12{height:35.341174pt;}
.h22{height:35.341204pt;}
.h25{height:35.343949pt;}
.h23{height:35.366271pt;}
.he{height:36.141771pt;}
.h4{height:41.848768pt;}
.hd{height:45.652542pt;}
.h14{height:51.262754pt;}
.h15{height:51.267536pt;}
.h13{height:51.268288pt;}
.h2{height:68.479386pt;}
.h16{height:300.094667pt;}
.h26{height:640.629333pt;}
.h24{height:671.470667pt;}
.h1d{height:818.645333pt;}
.h0{height:1065.826667pt;}
.h1{height:1066.000000pt;}
.w4{width:586.129333pt;}
.w5{width:586.280000pt;}
.w3{width:703.142667pt;}
.w2{width:703.218667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc9{left:7.912800pt;}
.xd3{left:9.489600pt;}
.xd6{left:14.068400pt;}
.x10e{left:15.494800pt;}
.xd7{left:16.954400pt;}
.xca{left:20.773467pt;}
.x10d{left:22.660133pt;}
.x10c{left:30.337200pt;}
.x6d{left:37.795200pt;}
.xb8{left:39.911695pt;}
.xff{left:45.244531pt;}
.x103{left:46.405972pt;}
.x102{left:48.182803pt;}
.x1{left:49.133733pt;}
.xc8{left:50.872400pt;}
.xb7{left:52.081867pt;}
.x106{left:55.766836pt;}
.x101{left:57.378985pt;}
.x6e{left:58.431467pt;}
.xc2{left:59.716533pt;}
.x105{left:60.837304pt;}
.xcb{left:62.847600pt;}
.xfe{left:64.044267pt;}
.xd5{left:65.970000pt;}
.x13{left:67.048800pt;}
.x6c{left:68.636133pt;}
.xc3{left:70.223600pt;}
.x100{left:72.772406pt;}
.x104{left:77.444170pt;}
.x76{left:80.277067pt;}
.x14{left:82.318000pt;}
.xd4{left:85.519467pt;}
.x122{left:91.162133pt;}
.x123{left:105.600000pt;}
.x124{left:120.037733pt;}
.xde{left:121.851867pt;}
.x26{left:123.136933pt;}
.xd{left:125.329067pt;}
.x85{left:129.713333pt;}
.x27{left:131.149600pt;}
.x29{left:133.568000pt;}
.xdf{left:135.080000pt;}
.x2a{left:137.877333pt;}
.x111{left:138.784000pt;}
.x82{left:139.766667pt;}
.xe{left:140.825333pt;}
.x7b{left:143.697333pt;}
.x1d{left:148.233333pt;}
.xd9{left:149.669333pt;}
.xc1{left:153.297333pt;}
.x23{left:154.356000pt;}
.x2b{left:155.338667pt;}
.xdc{left:157.454667pt;}
.x38{left:158.740000pt;}
.x1e{left:159.722667pt;}
.x7c{left:161.461333pt;}
.x126{left:162.897333pt;}
.x24{left:166.298667pt;}
.x3c{left:168.037333pt;}
.x4c{left:169.398667pt;}
.x11d{left:170.762842pt;}
.x77{left:174.916000pt;}
.x41{left:176.428000pt;}
.x12a{left:177.334667pt;}
.x73{left:179.754667pt;}
.x71{left:181.870667pt;}
.x78{left:183.685333pt;}
.x74{left:188.145333pt;}
.x97{left:190.714667pt;}
.x6f{left:191.621333pt;}
.x42{left:192.529333pt;}
.x75{left:195.401333pt;}
.x72{left:197.292000pt;}
.x94{left:198.274667pt;}
.x79{left:201.373333pt;}
.x70{left:202.506667pt;}
.xbe{left:204.925333pt;}
.x54{left:205.984000pt;}
.xdb{left:208.478667pt;}
.x90{left:209.613809pt;}
.xb9{left:211.276000pt;}
.xc4{left:212.636000pt;}
.x7a{left:214.753333pt;}
.x28{left:216.037333pt;}
.xbd{left:219.061333pt;}
.xf{left:220.649333pt;}
.x83{left:226.393333pt;}
.xf4{left:228.132000pt;}
.x121{left:229.266667pt;}
.xc5{left:230.249333pt;}
.x10{left:232.214667pt;}
.x3d{left:234.557333pt;}
.x84{left:237.732000pt;}
.x40{left:240.302667pt;}
.xcc{left:241.955733pt;}
.x56{left:243.325333pt;}
.x112{left:244.534667pt;}
.xbc{left:246.500000pt;}
.xdd{left:248.164000pt;}
.x12b{left:249.373333pt;}
.x3e{left:250.960000pt;}
.x2{left:252.472000pt;}
.xbf{left:253.681333pt;}
.x7d{left:255.042667pt;}
.x107{left:256.563867pt;}
.x91{left:258.293333pt;}
.x99{left:261.014667pt;}
.x3{left:263.962667pt;}
.x9a{left:265.398667pt;}
.x4d{left:266.532000pt;}
.x7e{left:269.329333pt;}
.x92{left:272.428000pt;}
.x119{left:273.713333pt;}
.x110{left:275.200632pt;}
.x4e{left:276.964000pt;}
.x7f{left:278.626667pt;}
.x125{left:280.214667pt;}
.x1f{left:281.574667pt;}
.x108{left:283.993333pt;}
.x93{left:286.564000pt;}
.xd8{left:290.268000pt;}
.x25{left:291.401333pt;}
.xc0{left:293.820000pt;}
.x20{left:296.693333pt;}
.x9{left:297.902667pt;}
.xba{left:300.472000pt;}
.x81{left:301.908000pt;}
.xbb{left:304.781333pt;}
.x57{left:309.618667pt;}
.x9b{left:311.810667pt;}
.xa{left:312.869333pt;}
.xda{left:315.817333pt;}
.x12d{left:316.876000pt;}
.x4f{left:317.782667pt;}
.xcf{left:319.898667pt;}
.x11a{left:321.711916pt;}
.x58{left:322.846667pt;}
.x3f{left:326.400000pt;}
.x80{left:327.836000pt;}
.x19{left:329.121333pt;}
.x50{left:330.254667pt;}
.x9c{left:335.546667pt;}
.x52{left:338.570667pt;}
.x98{left:340.157333pt;}
.x51{left:341.820000pt;}
.x1a{left:343.484000pt;}
.x48{left:347.868000pt;}
.x2c{left:349.606667pt;}
.x45{left:351.949333pt;}
.xd1{left:357.921333pt;}
.x30{left:358.904000pt;}
.x49{left:362.305333pt;}
.xf3{left:363.288000pt;}
.x47{left:365.632000pt;}
.x6{left:367.824000pt;}
.x46{left:370.696000pt;}
.x95{left:372.057333pt;}
.xf1{left:373.644000pt;}
.x114{left:374.702667pt;}
.x120{left:377.197333pt;}
.x3b{left:378.481333pt;}
.x34{left:381.052000pt;}
.x7{left:383.244000pt;}
.x43{left:386.268000pt;}
.x96{left:388.534667pt;}
.x115{left:391.029333pt;}
.x2f{left:396.698667pt;}
.x44{left:397.606667pt;}
.xc6{left:399.646667pt;}
.x39{left:400.705333pt;}
.x8c{left:403.653333pt;}
.xc7{left:405.845333pt;}
.xed{left:407.886667pt;}
.xe4{left:409.549333pt;}
.xe8{left:411.137333pt;}
.xe0{left:412.422667pt;}
.x3a{left:415.294667pt;}
.x8d{left:417.940000pt;}
.xea{left:421.946667pt;}
.x11c{left:423.458667pt;}
.x128{left:425.045333pt;}
.x55{left:425.952000pt;}
.xe9{left:427.917333pt;}
.xf5{left:429.278667pt;}
.x53{left:434.268000pt;}
.x12c{left:435.401333pt;}
.x129{left:437.064000pt;}
.xb{left:439.861333pt;}
.x86{left:441.676000pt;}
.x89{left:444.018667pt;}
.xe2{left:446.210667pt;}
.x8a{left:448.629333pt;}
.x109{left:450.520000pt;}
.xc{left:454.677333pt;}
.x21{left:455.810667pt;}
.xe3{left:457.474667pt;}
.x35{left:458.532000pt;}
.x15{left:461.404000pt;}
.x10a{left:463.748000pt;}
.xa0{left:468.510667pt;}
.x22{left:470.929333pt;}
.x33{left:472.214667pt;}
.x5c{left:473.272000pt;}
.xcd{left:476.044267pt;}
.x16{left:477.128000pt;}
.xeb{left:480.377333pt;}
.xf2{left:481.436000pt;}
.x5e{left:484.460000pt;}
.x5d{left:486.500000pt;}
.xb2{left:488.541333pt;}
.xb4{left:490.356000pt;}
.x5f{left:491.262667pt;}
.xb3{left:492.925333pt;}
.xb5{left:494.740000pt;}
.x4{left:496.554667pt;}
.x87{left:497.764000pt;}
.xec{left:500.485333pt;}
.xb1{left:502.148000pt;}
.x127{left:505.246667pt;}
.xfb{left:509.021467pt;}
.xfc{left:510.602800pt;}
.x5{left:512.125333pt;}
.x11{left:515.376000pt;}
.x1b{left:516.661333pt;}
.xe6{left:520.516000pt;}
.xee{left:521.801333pt;}
.x12{left:522.860000pt;}
.xa8{left:523.917333pt;}
.xfd{left:525.255200pt;}
.xe7{left:527.394667pt;}
.xac{left:529.814667pt;}
.x1c{left:531.024000pt;}
.x8e{left:533.140000pt;}
.xaf{left:534.198667pt;}
.xce{left:535.660800pt;}
.xad{left:538.053333pt;}
.x10b{left:543.646667pt;}
.xa6{left:545.385333pt;}
.x5b{left:546.594667pt;}
.xf8{left:548.106667pt;}
.xb0{left:549.618667pt;}
.xb6{left:551.357333pt;}
.xae{left:554.608000pt;}
.xa7{left:556.649333pt;}
.x69{left:559.218667pt;}
.x4a{left:560.428000pt;}
.x113{left:561.637333pt;}
.xf9{left:563.452000pt;}
.x10f{left:564.466667pt;}
.xd0{left:565.644000pt;}
.x8b{left:568.289333pt;}
.xe5{left:569.801333pt;}
.x2d{left:572.900000pt;}
.x4b{left:574.261333pt;}
.x2e{left:578.645333pt;}
.x61{left:579.704000pt;}
.x88{left:580.989333pt;}
.xe1{left:582.349333pt;}
.x62{left:585.600000pt;}
.xef{left:587.942667pt;}
.xa5{left:589.681333pt;}
.x31{left:594.821333pt;}
.x11e{left:596.485333pt;}
.xf0{left:599.281333pt;}
.x60{left:602.608000pt;}
.x11f{left:604.422667pt;}
.x66{left:606.765333pt;}
.x9d{left:608.428000pt;}
.x65{left:609.864000pt;}
.x63{left:610.846667pt;}
.x32{left:616.441333pt;}
.x17{left:620.825333pt;}
.x8{left:623.394667pt;}
.x118{left:624.302667pt;}
.x6a{left:630.349333pt;}
.x18{left:631.937333pt;}
.x6b{left:640.781333pt;}
.x36{left:646.298667pt;}
.x11b{left:650.606479pt;}
.x37{left:652.800000pt;}
.x59{left:657.184000pt;}
.xa3{left:662.853333pt;}
.x5a{left:667.540000pt;}
.xa1{left:674.268000pt;}
.x8f{left:676.989333pt;}
.x67{left:678.198667pt;}
.xa4{left:680.390667pt;}
.xa2{left:687.798667pt;}
.x68{left:691.426667pt;}
.xd2{left:692.788000pt;}
.x64{left:695.660000pt;}
.x9f{left:697.852000pt;}
.x116{left:701.026667pt;}
.xf7{left:703.898667pt;}
.xa9{left:706.242667pt;}
.x9e{left:709.341333pt;}
.x117{left:716.825333pt;}
.xaa{left:726.198667pt;}
.xfa{left:733.153333pt;}
.xab{left:735.042667pt;}
.xf6{left:737.914667pt;}
}




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