
    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_cced0a6000ca68f9cb635c69.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_294f5453892cd28007873c5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_539cb5db6c650844975357a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_5ab5b6c642acb6ddd1770cbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_f6de5a76f2afed2bb9b16a86.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_0619899e8ba9966599256750.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_17ff67e34766f494dda98679.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_044d7b98d973bc11337d362c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6ab2aa76583d9725520c5293.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003418;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_847e39b6566469ea3fcf76b1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1f139b7e84da2a4c14f49fc0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.125488;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_89ee8cbdc80034d0082af775.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;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_7f1d0a33e615a33a4030e17a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.997000;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_d667c5faf58f10ad5fff47bb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5080e1356074c8dabd7c9e5b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003418;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_3ae714d02b05c3d9ff7b9a12.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_dd8b990be6e1b536269d5538.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.055176;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_129515c042307fbac4ee5560.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_11b65899e3a653dd740eccf8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e2f7fc4b04cc16e20d359de3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.683105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_cbd5cd19fcdde0789f64b870.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_11e67387d785f80b8a0680f7.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2cf32294ab09659dfe2b8484.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_11323281c74cefa19c0851e1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.907227;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_2bc8fb5f889daf52ab063f2d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.861816;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;}
.m2d{transform:matrix(0.000000,-0.221354,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.221354,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.221354,0.250000,0.000000,0,0);}
.m34{transform:matrix(0.000000,-0.250139,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250139,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250139,0.250000,0.000000,0,0);}
.m31{transform:matrix(0.000000,-0.263445,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.263445,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.263445,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.263445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263445,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.263446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263446,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.263911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263911,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.263913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263913,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.282351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282351,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282353,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-28.441431px;}
.vb{vertical-align:-26.638984px;}
.va{vertical-align:-17.387310px;}
.v7{vertical-align:-11.766000px;}
.v6{vertical-align:-10.488000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.254000px;}
.v10{vertical-align:2.688000px;}
.v11{vertical-align:11.994000px;}
.vd{vertical-align:13.319492px;}
.vf{vertical-align:14.401471px;}
.v5{vertical-align:17.358000px;}
.v2{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.vc{vertical-align:26.638984px;}
.v8{vertical-align:29.394000px;}
.v3{vertical-align:33.654000px;}
.v9{vertical-align:46.370857px;}
.lsa6{letter-spacing:-3.399947px;}
.lsa5{letter-spacing:-3.057768px;}
.lsa2{letter-spacing:-1.196656px;}
.ls86{letter-spacing:-0.568995px;}
.ls71{letter-spacing:-0.463225px;}
.lsaf{letter-spacing:-0.454993px;}
.lsb1{letter-spacing:-0.433065px;}
.ls7e{letter-spacing:-0.416070px;}
.ls73{letter-spacing:-0.414000px;}
.ls83{letter-spacing:-0.335340px;}
.ls3a{letter-spacing:-0.330660px;}
.ls76{letter-spacing:-0.290380px;}
.lsa0{letter-spacing:-0.270042px;}
.ls79{letter-spacing:-0.207414px;}
.ls3b{letter-spacing:-0.156312px;}
.lsa9{letter-spacing:-0.154321px;}
.ls7c{letter-spacing:-0.152104px;}
.ls9b{letter-spacing:-0.151200px;}
.ls7b{letter-spacing:-0.145190px;}
.ls3c{letter-spacing:-0.144288px;}
.ls7d{letter-spacing:-0.131362px;}
.ls87{letter-spacing:-0.130869px;}
.ls39{letter-spacing:-0.126252px;}
.ls7a{letter-spacing:-0.117535px;}
.ls6f{letter-spacing:-0.104618px;}
.ls36{letter-spacing:-0.102204px;}
.ls72{letter-spacing:-0.096793px;}
.ls37{letter-spacing:-0.096192px;}
.ls99{letter-spacing:-0.090972px;}
.ls3d{letter-spacing:-0.090180px;}
.ls28{letter-spacing:-0.086184px;}
.ls2a{letter-spacing:-0.084168px;}
.ls31{letter-spacing:-0.078156px;}
.ls77{letter-spacing:-0.069138px;}
.ls82{letter-spacing:-0.068310px;}
.ls9c{letter-spacing:-0.064800px;}
.ls3e{letter-spacing:-0.060120px;}
.ls2c{letter-spacing:-0.054108px;}
.ls9d{letter-spacing:-0.054000px;}
.ls78{letter-spacing:-0.041400px;}
.ls7f{letter-spacing:-0.037260px;}
.ls9a{letter-spacing:-0.036072px;}
.ls35{letter-spacing:-0.030060px;}
.ls89{letter-spacing:-0.025187px;}
.ls80{letter-spacing:-0.024840px;}
.ls33{letter-spacing:-0.024048px;}
.ls30{letter-spacing:-0.018036px;}
.ls81{letter-spacing:-0.012420px;}
.ls2f{letter-spacing:-0.012024px;}
.ls9e{letter-spacing:-0.010800px;}
.ls70{letter-spacing:-0.006210px;}
.ls34{letter-spacing:-0.006012px;}
.ls9{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000061px;}
.ls40{letter-spacing:0.000433px;}
.lsc{letter-spacing:0.000435px;}
.lsc1{letter-spacing:0.000478px;}
.lsbd{letter-spacing:0.000800px;}
.ls42{letter-spacing:0.000840px;}
.lsbf{letter-spacing:0.001036px;}
.lsbb{letter-spacing:0.001074px;}
.lsba{letter-spacing:0.001484px;}
.lsb8{letter-spacing:0.001701px;}
.ls41{letter-spacing:0.001729px;}
.ls4e{letter-spacing:0.001921px;}
.ls5{letter-spacing:0.001952px;}
.lsb4{letter-spacing:0.002096px;}
.ls1{letter-spacing:0.002725px;}
.lsb{letter-spacing:0.003226px;}
.ls4{letter-spacing:0.003488px;}
.lsb3{letter-spacing:0.003859px;}
.lsbe{letter-spacing:0.003993px;}
.ls0{letter-spacing:0.004200px;}
.ls91{letter-spacing:0.005400px;}
.ls19{letter-spacing:0.006012px;}
.ls63{letter-spacing:0.006210px;}
.ls74{letter-spacing:0.006914px;}
.ls38{letter-spacing:0.007200px;}
.ls96{letter-spacing:0.010800px;}
.ls1b{letter-spacing:0.012024px;}
.ls61{letter-spacing:0.012420px;}
.ls18{letter-spacing:0.018036px;}
.ls65{letter-spacing:0.018630px;}
.ls95{letter-spacing:0.021600px;}
.ls8e{letter-spacing:0.023940px;}
.ls21{letter-spacing:0.024048px;}
.ls97{letter-spacing:0.027000px;}
.ls57{letter-spacing:0.027531px;}
.lse{letter-spacing:0.028728px;}
.ls15{letter-spacing:0.030060px;}
.ls62{letter-spacing:0.031050px;}
.ls12{letter-spacing:0.032400px;}
.ls1e{letter-spacing:0.036072px;}
.ls66{letter-spacing:0.037260px;}
.ls6c{letter-spacing:0.037781px;}
.ls16{letter-spacing:0.042084px;}
.ls8f{letter-spacing:0.043092px;}
.ls93{letter-spacing:0.043200px;}
.ls64{letter-spacing:0.043470px;}
.lsae{letter-spacing:0.047154px;}
.ls59{letter-spacing:0.049556px;}
.ls5c{letter-spacing:0.049680px;}
.ls10{letter-spacing:0.052668px;}
.ls1c{letter-spacing:0.054108px;}
.ls69{letter-spacing:0.055890px;}
.ls92{letter-spacing:0.059400px;}
.ls14{letter-spacing:0.060120px;}
.ls5b{letter-spacing:0.062100px;}
.ls5e{letter-spacing:0.062224px;}
.ls22{letter-spacing:0.066132px;}
.ls68{letter-spacing:0.068310px;}
.ls2e{letter-spacing:0.072144px;}
.ls6a{letter-spacing:0.074520px;}
.ls17{letter-spacing:0.078156px;}
.ls13{letter-spacing:0.081000px;}
.ls75{letter-spacing:0.082966px;}
.ls29{letter-spacing:0.090180px;}
.ls1d{letter-spacing:0.096192px;}
.ls1a{letter-spacing:0.102204px;}
.ls94{letter-spacing:0.108000px;}
.ls84{letter-spacing:0.108109px;}
.ls60{letter-spacing:0.110621px;}
.ls2d{letter-spacing:0.114228px;}
.ls5f{letter-spacing:0.117535px;}
.ls67{letter-spacing:0.124200px;}
.ls20{letter-spacing:0.144288px;}
.ls85{letter-spacing:0.153629px;}
.lsaa{letter-spacing:0.171468px;}
.ls90{letter-spacing:0.172368px;}
.ls2b{letter-spacing:0.174348px;}
.lsa1{letter-spacing:0.174733px;}
.ls11{letter-spacing:0.181944px;}
.lsf{letter-spacing:0.191520px;}
.ls1f{letter-spacing:0.192384px;}
.ls5a{letter-spacing:0.198223px;}
.ls58{letter-spacing:0.209236px;}
.ls88{letter-spacing:0.238978px;}
.ls6d{letter-spacing:0.258172px;}
.lsb0{letter-spacing:0.290538px;}
.lsab{letter-spacing:0.408664px;}
.ls6b{letter-spacing:0.447078px;}
.lsb2{letter-spacing:0.537984px;}
.lsa8{letter-spacing:0.594422px;}
.lsa3{letter-spacing:0.651596px;}
.ls23{letter-spacing:0.717483px;}
.ls44{letter-spacing:0.896634px;}
.lsa4{letter-spacing:0.993775px;}
.ls32{letter-spacing:1.178352px;}
.lsa{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls9f{letter-spacing:2.181515px;}
.lsa7{letter-spacing:2.554873px;}
.ls26{letter-spacing:2.983200px;}
.ls53{letter-spacing:3.436200px;}
.ls24{letter-spacing:3.559200px;}
.lsac{letter-spacing:4.420643px;}
.lsad{letter-spacing:4.782153px;}
.ls3{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.ls4c{letter-spacing:11.957700px;}
.ls7{letter-spacing:13.269192px;}
.lsb6{letter-spacing:13.448400px;}
.lsb5{letter-spacing:13.454400px;}
.lsb9{letter-spacing:13.473929px;}
.lsc0{letter-spacing:13.499247px;}
.ls6e{letter-spacing:13.513626px;}
.lsbc{letter-spacing:13.597459px;}
.lsc2{letter-spacing:13.611376px;}
.ls4a{letter-spacing:14.094088px;}
.ls49{letter-spacing:14.120467px;}
.lsb7{letter-spacing:14.591576px;}
.ls46{letter-spacing:14.604037px;}
.ls8d{letter-spacing:14.763088px;}
.ls54{letter-spacing:14.965200px;}
.ls3f{letter-spacing:14.991483px;}
.ls55{letter-spacing:15.003676px;}
.ls45{letter-spacing:15.057983px;}
.ls8a{letter-spacing:15.191792px;}
.ls47{letter-spacing:15.663483px;}
.lsd{letter-spacing:16.294178px;}
.ls4b{letter-spacing:16.440600px;}
.ls25{letter-spacing:17.935200px;}
.ls4d{letter-spacing:18.300435px;}
.ls27{letter-spacing:18.505200px;}
.ls8b{letter-spacing:20.312200px;}
.ls6{letter-spacing:28.453654px;}
.ls8c{letter-spacing:81.510600px;}
.ls4f{letter-spacing:103.110600px;}
.ls48{letter-spacing:103.116600px;}
.ls56{letter-spacing:126.777900px;}
.ls51{letter-spacing:185.592600px;}
.ls52{letter-spacing:194.790600px;}
.ls50{letter-spacing:217.842600px;}
.ls5d{letter-spacing:436.876108px;}
.ls98{letter-spacing:848.972556px;}
.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;}
}
.ws0{word-spacing:-91.154711px;}
.wsf5{word-spacing:-62.100000px;}
.ws52{word-spacing:-60.120000px;}
.ws163{word-spacing:-54.385335px;}
.wsf6{word-spacing:-15.525000px;}
.ws51{word-spacing:-15.144228px;}
.ws54{word-spacing:-15.132204px;}
.ws55{word-spacing:-15.126192px;}
.ws50{word-spacing:-14.975892px;}
.ws53{word-spacing:-14.951844px;}
.ws2{word-spacing:-14.943900px;}
.ws56{word-spacing:-14.903748px;}
.ws15e{word-spacing:-14.605803px;}
.ws160{word-spacing:-14.244293px;}
.ws185{word-spacing:-13.987584px;}
.wsf4{word-spacing:-13.974736px;}
.ws154{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.449600px;}
.ws155{word-spacing:-13.348800px;}
.ws4f{word-spacing:-12.161520px;}
.ws153{word-spacing:-12.151944px;}
.ws36{word-spacing:-11.955150px;}
.ws7{word-spacing:-10.460700px;}
.ws15f{word-spacing:-7.289148px;}
.wsa0{word-spacing:-4.064741px;}
.ws9f{word-spacing:-3.287658px;}
.ws98{word-spacing:-3.186360px;}
.ws8f{word-spacing:-3.180348px;}
.wsc6{word-spacing:-3.048556px;}
.ws12c{word-spacing:-2.929004px;}
.ws16f{word-spacing:-2.795580px;}
.ws16e{word-spacing:-2.765520px;}
.wsbb{word-spacing:-2.749678px;}
.wsd9{word-spacing:-2.689902px;}
.ws101{word-spacing:-2.510575px;}
.ws43{word-spacing:-2.450800px;}
.ws9b{word-spacing:-2.440872px;}
.ws80{word-spacing:-2.416824px;}
.wsee{word-spacing:-2.391024px;}
.ws170{word-spacing:-2.374740px;}
.ws18a{word-spacing:-2.367130px;}
.wse1{word-spacing:-2.271473px;}
.ws93{word-spacing:-2.092176px;}
.ws12e{word-spacing:-2.092146px;}
.ws7f{word-spacing:-2.062116px;}
.ws81{word-spacing:-2.038068px;}
.wsdf{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.908367px;}
.ws124{word-spacing:-1.906470px;}
.ws117{word-spacing:-1.894050px;}
.ws118{word-spacing:-1.869210px;}
.ws9d{word-spacing:-1.793268px;}
.ws7d{word-spacing:-1.749492px;}
.ws7e{word-spacing:-1.695384px;}
.ws7c{word-spacing:-1.683360px;}
.ws6e{word-spacing:-1.623240px;}
.ws9e{word-spacing:-1.613941px;}
.wsbc{word-spacing:-1.554166px;}
.wsdc{word-spacing:-1.494390px;}
.ws6d{word-spacing:-1.388772px;}
.ws19e{word-spacing:-1.344960px;}
.ws3{word-spacing:-1.322630px;}
.ws24{word-spacing:-1.315063px;}
.wsae{word-spacing:-1.195512px;}
.ws15{word-spacing:-1.183565px;}
.wsa2{word-spacing:-1.135736px;}
.ws128{word-spacing:-1.111590px;}
.ws9c{word-spacing:-1.075961px;}
.ws129{word-spacing:-1.049490px;}
.ws4c{word-spacing:-1.016185px;}
.wsa1{word-spacing:-0.956410px;}
.ws2c{word-spacing:-0.896634px;}
.ws4b{word-spacing:-0.836858px;}
.ws12a{word-spacing:-0.701730px;}
.ws197{word-spacing:-0.699379px;}
.wsa3{word-spacing:-0.672132px;}
.wsfd{word-spacing:-0.657532px;}
.wsfe{word-spacing:-0.640559px;}
.wsff{word-spacing:-0.631746px;}
.wsa6{word-spacing:-0.597756px;}
.ws172{word-spacing:-0.595188px;}
.ws21{word-spacing:-0.537984px;}
.ws171{word-spacing:-0.529056px;}
.ws14a{word-spacing:-0.478205px;}
.ws34{word-spacing:-0.418429px;}
.ws4e{word-spacing:-0.358654px;}
.ws92{word-spacing:-0.324648px;}
.ws184{word-spacing:-0.322790px;}
.ws107{word-spacing:-0.302841px;}
.ws27{word-spacing:-0.298878px;}
.ws181{word-spacing:-0.296512px;}
.ws183{word-spacing:-0.293184px;}
.ws182{word-spacing:-0.289231px;}
.ws89{word-spacing:-0.276552px;}
.ws1ad{word-spacing:-0.268992px;}
.ws68{word-spacing:-0.268128px;}
.ws16b{word-spacing:-0.263340px;}
.ws119{word-spacing:-0.248400px;}
.ws5a{word-spacing:-0.239102px;}
.ws11a{word-spacing:-0.217350px;}
.ws187{word-spacing:-0.215194px;}
.ws13d{word-spacing:-0.214562px;}
.wsb5{word-spacing:-0.199320px;}
.wsb6{word-spacing:-0.199163px;}
.wsb7{word-spacing:-0.196485px;}
.ws115{word-spacing:-0.179759px;}
.ws28{word-spacing:-0.179327px;}
.ws11b{word-spacing:-0.167670px;}
.ws112{word-spacing:-0.165931px;}
.ws19{word-spacing:-0.161395px;}
.ws58{word-spacing:-0.155941px;}
.ws59{word-spacing:-0.155931px;}
.ws106{word-spacing:-0.154174px;}
.wsef{word-spacing:-0.147543px;}
.ws13a{word-spacing:-0.143462px;}
.ws67{word-spacing:-0.138852px;}
.ws16a{word-spacing:-0.134064px;}
.ws26{word-spacing:-0.119551px;}
.ws18b{word-spacing:-0.107597px;}
.ws14f{word-spacing:-0.095831px;}
.ws150{word-spacing:-0.092380px;}
.ws41{word-spacing:-0.070926px;}
.ws42{word-spacing:-0.061991px;}
.ws40{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.053798px;}
.ws8a{word-spacing:-0.048096px;}
.ws12{word-spacing:-0.047821px;}
.ws194{word-spacing:-0.038883px;}
.ws195{word-spacing:-0.036174px;}
.ws19d{word-spacing:-0.024278px;}
.wsc9{word-spacing:-0.005645px;}
.ws1b8{word-spacing:-0.005088px;}
.wsea{word-spacing:-0.004973px;}
.ws105{word-spacing:-0.004926px;}
.wse8{word-spacing:-0.003744px;}
.ws139{word-spacing:-0.003264px;}
.ws137{word-spacing:-0.003158px;}
.ws1a2{word-spacing:-0.002986px;}
.wsf1{word-spacing:-0.002707px;}
.ws103{word-spacing:-0.002476px;}
.ws1b6{word-spacing:-0.002467px;}
.wse9{word-spacing:-0.002026px;}
.ws104{word-spacing:-0.001991px;}
.ws136{word-spacing:-0.001987px;}
.ws192{word-spacing:-0.001939px;}
.ws1b1{word-spacing:-0.001267px;}
.ws1b7{word-spacing:-0.000806px;}
.ws35{word-spacing:-0.000410px;}
.ws102{word-spacing:-0.000014px;}
.ws1{word-spacing:0.000000px;}
.wse4{word-spacing:0.000355px;}
.wscd{word-spacing:0.001142px;}
.ws6{word-spacing:0.001648px;}
.ws133{word-spacing:0.001997px;}
.wsf2{word-spacing:0.003293px;}
.ws70{word-spacing:0.018036px;}
.ws1a7{word-spacing:0.028350px;}
.ws1a9{word-spacing:0.029020px;}
.ws90{word-spacing:0.030060px;}
.ws1a8{word-spacing:0.045436px;}
.ws10e{word-spacing:0.045540px;}
.wsec{word-spacing:0.047821px;}
.ws16{word-spacing:0.053798px;}
.ws62{word-spacing:0.059201px;}
.ws38{word-spacing:0.059776px;}
.wsf0{word-spacing:0.063523px;}
.ws6c{word-spacing:0.066132px;}
.ws17{word-spacing:0.075526px;}
.ws6a{word-spacing:0.102600px;}
.ws14{word-spacing:0.107597px;}
.ws2b{word-spacing:0.119551px;}
.ws5e{word-spacing:0.129516px;}
.ws5f{word-spacing:0.129826px;}
.ws1b9{word-spacing:0.131142px;}
.ws1bb{word-spacing:0.132172px;}
.ws109{word-spacing:0.142830px;}
.ws60{word-spacing:0.147929px;}
.ws61{word-spacing:0.149363px;}
.ws69{word-spacing:0.151200px;}
.ws1ba{word-spacing:0.152636px;}
.ws10a{word-spacing:0.155250px;}
.ws196{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws91{word-spacing:0.192384px;}
.ws100{word-spacing:0.203535px;}
.ws8{word-spacing:0.209214px;}
.ws108{word-spacing:0.211140px;}
.ws1b{word-spacing:0.215194px;}
.ws111{word-spacing:0.221242px;}
.ws3e{word-spacing:0.223039px;}
.ws3f{word-spacing:0.226019px;}
.ws37{word-spacing:0.239102px;}
.ws113{word-spacing:0.241983px;}
.ws114{word-spacing:0.255811px;}
.wsfc{word-spacing:0.268992px;}
.ws6f{word-spacing:0.282564px;}
.wscf{word-spacing:0.286924px;}
.wsa{word-spacing:0.292900px;}
.ws3a{word-spacing:0.298878px;}
.ws19f{word-spacing:0.322790px;}
.wsde{word-spacing:0.358654px;}
.ws10d{word-spacing:0.394087px;}
.ws71{word-spacing:0.396792px;}
.ws13e{word-spacing:0.418429px;}
.ws96{word-spacing:0.456912px;}
.wsb1{word-spacing:0.478205px;}
.ws63{word-spacing:0.568500px;}
.wsc5{word-spacing:0.568800px;}
.ws1b4{word-spacing:0.591782px;}
.ws20{word-spacing:0.645581px;}
.ws64{word-spacing:0.657532px;}
.wsc0{word-spacing:0.717307px;}
.wsc4{word-spacing:0.742800px;}
.ws1a3{word-spacing:0.753178px;}
.ws66{word-spacing:0.777083px;}
.ws1c{word-spacing:0.806976px;}
.ws4d{word-spacing:0.836858px;}
.ws193{word-spacing:0.860774px;}
.wsab{word-spacing:0.896634px;}
.ws1a4{word-spacing:0.968371px;}
.wsa5{word-spacing:1.135736px;}
.ws18e{word-spacing:1.183565px;}
.ws47{word-spacing:1.195512px;}
.ws177{word-spacing:1.215000px;}
.ws17e{word-spacing:1.225800px;}
.ws17a{word-spacing:1.231200px;}
.ws178{word-spacing:1.236600px;}
.ws1b2{word-spacing:1.237363px;}
.ws179{word-spacing:1.247400px;}
.ws17b{word-spacing:1.258200px;}
.ws17d{word-spacing:1.312200px;}
.ws4a{word-spacing:1.315063px;}
.ws17c{word-spacing:1.323000px;}
.ws49{word-spacing:1.374839px;}
.ws190{word-spacing:1.452557px;}
.ws6b{word-spacing:1.478952px;}
.ws8e{word-spacing:1.484964px;}
.ws12d{word-spacing:1.494390px;}
.ws1b3{word-spacing:1.506355px;}
.ws13f{word-spacing:1.554166px;}
.wsda{word-spacing:1.613941px;}
.ws152{word-spacing:1.673717px;}
.wsed{word-spacing:1.721542px;}
.ws3d{word-spacing:1.733492px;}
.ws188{word-spacing:1.775347px;}
.wsac{word-spacing:1.793268px;}
.ws75{word-spacing:1.821636px;}
.ws7b{word-spacing:1.839672px;}
.ws7a{word-spacing:1.863720px;}
.ws77{word-spacing:1.881756px;}
.ws165{word-spacing:1.882944px;}
.ws79{word-spacing:1.911816px;}
.ws12b{word-spacing:1.912819px;}
.ws1f{word-spacing:1.936742px;}
.ws48{word-spacing:1.972595px;}
.ws76{word-spacing:1.977948px;}
.ws9{word-spacing:2.008454px;}
.ws45{word-spacing:2.032370px;}
.ws189{word-spacing:2.044339px;}
.wsc3{word-spacing:2.092146px;}
.ws186{word-spacing:2.098138px;}
.ws30{word-spacing:2.151922px;}
.ws1a0{word-spacing:2.151936px;}
.ws8c{word-spacing:2.194380px;}
.ws164{word-spacing:2.205734px;}
.ws2f{word-spacing:2.211697px;}
.ws11d{word-spacing:2.235600px;}
.ws11f{word-spacing:2.241810px;}
.ws11e{word-spacing:2.260440px;}
.ws78{word-spacing:2.266524px;}
.wsd7{word-spacing:2.271473px;}
.ws11c{word-spacing:2.303910px;}
.ws1a{word-spacing:2.313331px;}
.ws9a{word-spacing:2.314620px;}
.wsa7{word-spacing:2.331248px;}
.ws99{word-spacing:2.344680px;}
.wsc1{word-spacing:2.391024px;}
.wsb8{word-spacing:2.450800px;}
.ws97{word-spacing:2.555100px;}
.ws82{word-spacing:2.561112px;}
.ws46{word-spacing:2.570351px;}
.wsbe{word-spacing:2.623427px;}
.wsb0{word-spacing:2.630126px;}
.wsbf{word-spacing:2.632480px;}
.ws83{word-spacing:2.633256px;}
.ws1d{word-spacing:2.636122px;}
.wsbd{word-spacing:2.689902px;}
.ws1b5{word-spacing:2.689920px;}
.ws19b{word-spacing:2.743718px;}
.wse0{word-spacing:2.749678px;}
.ws44{word-spacing:2.809453px;}
.ws142{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws1ae{word-spacing:2.905114px;}
.wsdb{word-spacing:2.929004px;}
.ws16d{word-spacing:2.969928px;}
.ws16c{word-spacing:2.993976px;}
.wsba{word-spacing:3.048556px;}
.ws1ab{word-spacing:3.120307px;}
.wsd1{word-spacing:3.168107px;}
.ws22{word-spacing:3.219667px;}
.ws18c{word-spacing:3.222547px;}
.ws18f{word-spacing:3.225542px;}
.ws1ac{word-spacing:3.225600px;}
.ws198{word-spacing:3.226934px;}
.ws2d{word-spacing:3.227882px;}
.ws18d{word-spacing:3.227904px;}
.ws1a1{word-spacing:3.228518px;}
.ws1aa{word-spacing:3.285260px;}
.wsa4{word-spacing:3.287658px;}
.wsdd{word-spacing:3.347434px;}
.ws3c{word-spacing:3.407209px;}
.ws199{word-spacing:3.443098px;}
.wsaf{word-spacing:3.466985px;}
.ws19a{word-spacing:3.496896px;}
.ws116{word-spacing:3.508650px;}
.wsb2{word-spacing:3.526760px;}
.ws23{word-spacing:3.586536px;}
.ws74{word-spacing:3.595176px;}
.wsad{word-spacing:3.646312px;}
.ws8d{word-spacing:3.673332px;}
.ws72{word-spacing:3.679344px;}
.ws73{word-spacing:3.691368px;}
.ws146{word-spacing:3.706087px;}
.ws148{word-spacing:3.714833px;}
.ws149{word-spacing:3.716583px;}
.ws147{word-spacing:3.717545px;}
.wsd3{word-spacing:3.825638px;}
.ws95{word-spacing:3.841668px;}
.ws94{word-spacing:3.853692px;}
.wsfb{word-spacing:3.873485px;}
.ws39{word-spacing:3.885414px;}
.ws125{word-spacing:3.899880px;}
.ws126{word-spacing:3.918510px;}
.ws1b0{word-spacing:3.927283px;}
.ws3b{word-spacing:3.945190px;}
.ws127{word-spacing:3.999240px;}
.ws33{word-spacing:4.064741px;}
.ws17f{word-spacing:4.136400px;}
.ws180{word-spacing:4.152600px;}
.ws19c{word-spacing:4.196275px;}
.wsd2{word-spacing:4.244068px;}
.ws121{word-spacing:4.278690px;}
.ws122{word-spacing:4.291110px;}
.wsc2{word-spacing:4.303843px;}
.ws123{word-spacing:4.328370px;}
.ws120{word-spacing:4.359420px;}
.ws140{word-spacing:4.363619px;}
.ws8b{word-spacing:4.376736px;}
.ws130{word-spacing:4.423394px;}
.ws14d{word-spacing:4.483170px;}
.wsd8{word-spacing:4.602721px;}
.ws84{word-spacing:4.743468px;}
.ws85{word-spacing:4.749480px;}
.ws14b{word-spacing:4.841824px;}
.ws167{word-spacing:4.949453px;}
.ws2a{word-spacing:4.961375px;}
.ws1af{word-spacing:5.003251px;}
.ws176{word-spacing:5.162400px;}
.ws175{word-spacing:5.189400px;}
.wsd5{word-spacing:5.200477px;}
.ws174{word-spacing:5.216400px;}
.wsfa{word-spacing:5.272243px;}
.wsaa{word-spacing:5.379804px;}
.ws5b{word-spacing:5.439580px;}
.ws5c{word-spacing:5.441074px;}
.ws5d{word-spacing:5.445995px;}
.ws12f{word-spacing:5.499355px;}
.ws86{word-spacing:5.531040px;}
.ws87{word-spacing:5.597172px;}
.wsf9{word-spacing:5.648832px;}
.wsd6{word-spacing:5.678682px;}
.ws151{word-spacing:5.798233px;}
.ws14e{word-spacing:5.977560px;}
.ws169{word-spacing:6.025421px;}
.wsd0{word-spacing:6.037336px;}
.ws168{word-spacing:6.042961px;}
.ws10{word-spacing:6.067206px;}
.ws14c{word-spacing:6.097111px;}
.ws191{word-spacing:6.133018px;}
.ws11{word-spacing:6.150892px;}
.wsa9{word-spacing:6.276438px;}
.wsa8{word-spacing:6.336214px;}
.ws2e{word-spacing:6.395989px;}
.wsb9{word-spacing:6.515540px;}
.ws1a6{word-spacing:6.563405px;}
.ws65{word-spacing:6.573600px;}
.ws29{word-spacing:6.575316px;}
.ws145{word-spacing:6.814418px;}
.ws144{word-spacing:6.874194px;}
.ws143{word-spacing:6.933970px;}
.ws13c{word-spacing:7.029309px;}
.ws13b{word-spacing:7.053521px;}
.ws57{word-spacing:7.173072px;}
.ws32{word-spacing:7.352399px;}
.wsb3{word-spacing:7.471950px;}
.ws141{word-spacing:7.770828px;}
.ws1a5{word-spacing:8.231155px;}
.ws31{word-spacing:8.308808px;}
.wsd4{word-spacing:8.607686px;}
.wse{word-spacing:8.661460px;}
.ws173{word-spacing:9.036036px;}
.ws88{word-spacing:13.003956px;}
.ws5{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsd{word-spacing:17.699504px;}
.ws166{word-spacing:18.560448px;}
.wsb4{word-spacing:26.540366px;}
.wsf{word-spacing:27.448877px;}
.ws162{word-spacing:29.058357px;}
.ws159{word-spacing:39.772825px;}
.ws158{word-spacing:52.753778px;}
.ws15b{word-spacing:84.914945px;}
.ws135{word-spacing:92.856038px;}
.wscb{word-spacing:106.305638px;}
.ws132{word-spacing:111.475459px;}
.wsc8{word-spacing:112.223462px;}
.ws138{word-spacing:119.755238px;}
.wse7{word-spacing:124.005312px;}
.ws10c{word-spacing:126.059315px;}
.wse5{word-spacing:129.331354px;}
.wse3{word-spacing:133.796621px;}
.wscc{word-spacing:134.603597px;}
.ws134{word-spacing:137.459117px;}
.wseb{word-spacing:137.508710px;}
.wsca{word-spacing:147.296266px;}
.wsf3{word-spacing:150.904512px;}
.wse6{word-spacing:156.230554px;}
.ws10f{word-spacing:180.816611px;}
.ws15d{word-spacing:200.143116px;}
.wsce{word-spacing:202.638010px;}
.ws110{word-spacing:205.243067px;}
.ws157{word-spacing:221.859269px;}
.wsf8{word-spacing:233.078680px;}
.ws156{word-spacing:244.599753px;}
.wsf7{word-spacing:255.820017px;}
.ws15c{word-spacing:270.445045px;}
.wsc7{word-spacing:481.549478px;}
.ws131{word-spacing:503.176435px;}
.ws15a{word-spacing:528.342268px;}
.ws10b{word-spacing:538.349951px;}
.wse2{word-spacing:546.376550px;}
.ws161{word-spacing:557.790776px;}
._4d{margin-left:-146.662439px;}
._47{margin-left:-104.847777px;}
._4c{margin-left:-91.600936px;}
._4a{margin-left:-69.248621px;}
._4b{margin-left:-62.618287px;}
._48{margin-left:-58.652902px;}
._46{margin-left:-50.194188px;}
._49{margin-left:-46.889392px;}
._44{margin-left:-45.366700px;}
._45{margin-left:-38.191831px;}
._42{margin-left:-34.187085px;}
._41{margin-left:-25.223198px;}
._43{margin-left:-22.462936px;}
._6d{margin-left:-20.216221px;}
._3e{margin-left:-14.164224px;}
._9{margin-left:-7.029628px;}
._a{margin-left:-5.260266px;}
._17{margin-left:-4.176725px;}
._3{margin-left:-3.096367px;}
._1{margin-left:-1.322630px;}
._2{width:1.091170px;}
._6{width:2.301354px;}
._70{width:3.789431px;}
._72{width:7.098354px;}
._15{width:10.869686px;}
._5{width:12.971268px;}
._7{width:14.215636px;}
._71{width:15.354815px;}
._b{width:16.417651px;}
._e{width:18.192998px;}
._13{width:20.159512px;}
._f{width:21.220338px;}
._d{width:22.810522px;}
._c{width:24.841670px;}
._4{width:25.940136px;}
._57{width:27.541430px;}
._10{width:28.752064px;}
._59{width:30.851777px;}
._8{width:32.637384px;}
._5a{width:34.217784px;}
._16{width:35.467206px;}
._62{width:36.821770px;}
._3d{width:39.886923px;}
._6c{width:42.261349px;}
._3f{width:45.540000px;}
._51{width:57.999868px;}
._6f{width:61.868160px;}
._54{width:78.091371px;}
._4e{width:82.668307px;}
._0{width:84.305610px;}
._6e{width:88.767360px;}
._40{width:97.380873px;}
._61{width:98.672371px;}
._24{width:101.033395px;}
._4f{width:110.326950px;}
._50{width:112.973422px;}
._22{width:118.302682px;}
._27{width:119.701440px;}
._1d{width:121.207795px;}
._19{width:127.179418px;}
._5e{width:129.080192px;}
._5f{width:130.137679px;}
._25{width:133.204838px;}
._26{width:134.657395px;}
._36{width:136.056154px;}
._1f{width:137.454912px;}
._5d{width:140.660950px;}
._37{width:141.926033px;}
._5c{width:143.657741px;}
._1b{width:146.525174px;}
._3b{width:147.551180px;}
._2d{width:148.806374px;}
._31{width:151.012109px;}
._3a{width:152.727804px;}
._1c{width:153.797918px;}
._52{width:154.967057px;}
._55{width:157.301396px;}
._53{width:158.462141px;}
._60{width:159.532126px;}
._28{width:161.556595px;}
._1a{width:163.009152px;}
._30{width:164.300314px;}
._1e{width:165.334190px;}
._2e{width:168.749568px;}
._21{width:169.787750px;}
._35{width:172.854259px;}
._38{width:174.880543px;}
._29{width:177.803712px;}
._34{width:186.303859px;}
._2b{width:190.225289px;}
._33{width:191.581956px;}
._39{width:199.439990px;}
._2f{width:201.959194px;}
._2a{width:209.431318px;}
._20{width:212.390230px;}
._32{width:215.408794px;}
._23{width:251.609263px;}
._64{width:266.510215px;}
._56{width:270.363522px;}
._67{width:273.001811px;}
._65{width:276.417048px;}
._6b{width:280.840234px;}
._66{width:282.908644px;}
._6a{width:294.484859px;}
._68{width:297.725604px;}
._69{width:305.281627px;}
._11{width:689.749617px;}
._5b{width:845.388058px;}
._18{width:888.588173px;}
._2c{width:931.788288px;}
._63{width:2039.994432px;}
._14{width:2065.059612px;}
._3c{width:2372.642662px;}
._58{width:2425.886700px;}
._12{width:2449.796700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(70,45,144);}
.fs12{font-size:35.865600px;}
.fsf{font-size:36.000000px;}
.fs1d{font-size:36.402000px;}
.fs11{font-size:37.371600px;}
.fs17{font-size:38.088000px;}
.fs1f{font-size:39.294600px;}
.fs16{font-size:41.400000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs8{font-size:43.600200px;}
.fsa{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs1c{font-size:52.949400px;}
.fs7{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs21{font-size:54.818400px;}
.fs13{font-size:55.062000px;}
.fs10{font-size:56.058000px;}
.fs18{font-size:56.899470px;}
.fs1e{font-size:57.156000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs14{font-size:62.100000px;}
.fsb{font-size:62.286600px;}
.fs1a{font-size:62.968710px;}
.fs20{font-size:66.046200px;}
.fs15{font-size:69.138000px;}
.fs19{font-size:71.117610px;}
.fs1b{font-size:75.865500px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:117.165438px;}
.ya9{bottom:-676.076604px;}
.ya8{bottom:-656.907342px;}
.ya7{bottom:-637.647900px;}
.ya6{bottom:-618.478638px;}
.ya5{bottom:-599.219196px;}
.ya4{bottom:-579.959754px;}
.ya3{bottom:-560.790492px;}
.ya2{bottom:-541.531050px;}
.ya0{bottom:-541.518936px;}
.ya1{bottom:-537.751050px;}
.y9f{bottom:-522.349674px;}
.y9e{bottom:-503.090232px;}
.y9d{bottom:-483.830790px;}
.y9c{bottom:-464.661528px;}
.y9b{bottom:-445.402086px;}
.y9a{bottom:-426.142644px;}
.y99{bottom:-402.471897px;}
.y98{bottom:-365.212527px;}
.y97{bottom:-346.043265px;}
.y96{bottom:-326.783823px;}
.y95{bottom:-307.524381px;}
.y94{bottom:-288.355119px;}
.y93{bottom:-269.095677px;}
.y92{bottom:-249.924912px;}
.y91{bottom:-230.665470px;}
.y90{bottom:-211.406028px;}
.y8f{bottom:-192.236766px;}
.y8e{bottom:-172.977324px;}
.y8d{bottom:-153.808062px;}
.y8c{bottom:-134.548620px;}
.y26a{bottom:-132.170550px;}
.y1dd{bottom:-120.662543px;}
.y8b{bottom:-115.289178px;}
.y1dc{bottom:-100.790543px;}
.y8a{bottom:-96.119916px;}
.y269{bottom:-92.571300px;}
.y1db{bottom:-80.918543px;}
.y89{bottom:-76.860474px;}
.y268{bottom:-75.291300px;}
.y1da{bottom:-60.942525px;}
.y267{bottom:-57.920850px;}
.y88{bottom:-53.101050px;}
.y1d9{bottom:-40.966508px;}
.y266{bottom:-40.550400px;}
.y265{bottom:-23.270400px;}
.y1d8{bottom:-21.094508px;}
.y87{bottom:-16.291050px;}
.y264{bottom:-0.858471px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y1d7{bottom:4.676993px;}
.y29f{bottom:5.709825px;}
.y86{bottom:6.118950px;}
.y8{bottom:14.151273px;}
.y2{bottom:17.412896px;}
.y1fa{bottom:20.717924px;}
.y29e{bottom:28.929450px;}
.y4b{bottom:31.890000px;}
.y1ef{bottom:41.212665px;}
.y2a0{bottom:50.260069px;}
.y1f0{bottom:67.812222px;}
.y2b6{bottom:71.678606px;}
.y2b2{bottom:74.378145px;}
.y2b0{bottom:80.678051px;}
.y2b5{bottom:84.189024px;}
.y2e5{bottom:90.529500px;}
.y2bb{bottom:93.188470px;}
.y2a9{bottom:93.189452px;}
.y16c{bottom:94.044000px;}
.y2ab{bottom:94.088316px;}
.y1f1{bottom:94.307881px;}
.y257{bottom:96.160500px;}
.y2a1{bottom:99.399940px;}
.y2bc{bottom:101.198674px;}
.y30f{bottom:101.809500px;}
.y20{bottom:102.823500px;}
.y10b{bottom:103.557000px;}
.y4a{bottom:103.621500px;}
.y214{bottom:104.425500px;}
.y143{bottom:105.799500px;}
.y220{bottom:106.246500px;}
.y2bf{bottom:106.509339px;}
.y2b8{bottom:108.308049px;}
.yd3{bottom:108.982500px;}
.y2e4{bottom:109.359000px;}
.y16b{bottom:112.873500px;}
.y2ba{bottom:113.708110px;}
.y256{bottom:114.990000px;}
.y2b1{bottom:115.507802px;}
.y2af{bottom:116.407649px;}
.y2aa{bottom:118.118929px;}
.y30e{bottom:119.070000px;}
.y2ad{bottom:119.917639px;}
.y1f{bottom:120.711000px;}
.y345{bottom:120.817500px;}
.y2a8{bottom:120.819450px;}
.y1f2{bottom:120.907439px;}
.y10a{bottom:122.386500px;}
.y49{bottom:122.449500px;}
.y2b3{bottom:122.618160px;}
.y212{bottom:123.255000px;}
.y142{bottom:124.627500px;}
.y21f{bottom:125.076000px;}
.yd1{bottom:127.812000px;}
.y2e3{bottom:128.188500px;}
.y213{bottom:128.680500px;}
.y2ae{bottom:128.918067px;}
.y2cb{bottom:130.628365px;}
.y16a{bottom:131.703000px;}
.yd2{bottom:133.237500px;}
.y255{bottom:133.819500px;}
.y2cf{bottom:134.227750px;}
.y30d{bottom:136.330500px;}
.y2b7{bottom:136.928271px;}
.y344{bottom:138.078000px;}
.y1e{bottom:138.600000px;}
.y2ac{bottom:138.727964px;}
.y2b4{bottom:140.528639px;}
.y109{bottom:141.216000px;}
.y48{bottom:141.279000px;}
.y2c0{bottom:141.339090px;}
.y211{bottom:142.084500px;}
.y2b9{bottom:142.237954px;}
.y141{bottom:143.457000px;}
.y21e{bottom:143.905500px;}
.yd0{bottom:146.641500px;}
.y2e2{bottom:147.016500px;}
.y1f3{bottom:147.403098px;}
.y2a2{bottom:148.539811px;}
.y1fd{bottom:148.645493px;}
.y169{bottom:150.532500px;}
.y254{bottom:152.649000px;}
.y30c{bottom:153.589500px;}
.y343{bottom:155.338500px;}
.y1d{bottom:156.487500px;}
.y342{bottom:158.566500px;}
.y108{bottom:160.045500px;}
.y47{bottom:160.108500px;}
.y210{bottom:160.914000px;}
.y140{bottom:162.286500px;}
.y21d{bottom:162.735000px;}
.y187{bottom:163.183500px;}
.y2c3{bottom:163.748801px;}
.y2be{bottom:164.559252px;}
.yce{bottom:165.471000px;}
.y2e1{bottom:165.846000px;}
.y168{bottom:169.362000px;}
.y30b{bottom:170.850000px;}
.y2c5{bottom:170.859158px;}
.ycf{bottom:170.896500px;}
.y252{bottom:171.478500px;}
.y1fb{bottom:172.553993px;}
.y341{bottom:172.599000px;}
.y2ce{bottom:172.657869px;}
.y1f4{bottom:174.002655px;}
.y1c{bottom:174.375000px;}
.y1c0{bottom:175.245000px;}
.y253{bottom:176.902500px;}
.y1fc{bottom:177.211665px;}
.y46{bottom:178.938000px;}
.y2a7{bottom:179.229600px;}
.y20f{bottom:179.743500px;}
.y2c7{bottom:179.768227px;}
.y2cd{bottom:180.668073px;}
.y13f{bottom:181.116000px;}
.y21c{bottom:181.564500px;}
.y186{bottom:182.013000px;}
.y2cc{bottom:182.467766px;}
.y82{bottom:182.892000px;}
.y107{bottom:183.358500px;}
.y2ca{bottom:183.368594px;}
.ycd{bottom:184.300500px;}
.y2e0{bottom:184.675500px;}
.y30a{bottom:188.110500px;}
.y167{bottom:188.191500px;}
.y1be{bottom:189.441000px;}
.y340{bottom:189.858000px;}
.y251{bottom:190.308000px;}
.y1b{bottom:192.264000px;}
.y1bf{bottom:193.782000px;}
.y2c1{bottom:194.979166px;}
.y2a3{bottom:197.679682px;}
.y45{bottom:197.767500px;}
.y20e{bottom:198.573000px;}
.y13e{bottom:199.945500px;}
.y21b{bottom:200.394000px;}
.y1f5{bottom:200.498314px;}
.y185{bottom:200.842500px;}
.y81{bottom:201.721500px;}
.ycb{bottom:203.130000px;}
.y2de{bottom:203.505000px;}
.y1bc{bottom:203.638500px;}
.y309{bottom:205.371000px;}
.y166{bottom:207.021000px;}
.y33f{bottom:207.118500px;}
.y1bd{bottom:207.978000px;}
.ycc{bottom:208.555500px;}
.y2df{bottom:208.930500px;}
.y250{bottom:209.137500px;}
.y1a{bottom:210.151500px;}
.y2c2{bottom:215.498806px;}
.y44{bottom:216.597000px;}
.y106{bottom:216.982500px;}
.y20d{bottom:217.402500px;}
.y13d{bottom:218.775000px;}
.y21a{bottom:219.223500px;}
.y184{bottom:219.672000px;}
.y80{bottom:220.551000px;}
.y2bd{bottom:221.798713px;}
.yca{bottom:221.959500px;}
.y2dd{bottom:222.334500px;}
.y308{bottom:222.631500px;}
.y33e{bottom:224.379000px;}
.y165{bottom:225.850500px;}
.y1bb{bottom:226.386000px;}
.y1f6{bottom:227.097871px;}
.y24f{bottom:227.967000px;}
.y19{bottom:228.039000px;}
.y2c6{bottom:232.508456px;}
.y43{bottom:235.426500px;}
.y105{bottom:235.812000px;}
.y20c{bottom:236.232000px;}
.y13c{bottom:237.604500px;}
.y219{bottom:238.053000px;}
.y183{bottom:238.501500px;}
.y7f{bottom:239.380500px;}
.y307{bottom:239.892000px;}
.yc9{bottom:240.789000px;}
.y33d{bottom:241.639500px;}
.y2c4{bottom:242.318353px;}
.y1ba{bottom:242.824500px;}
.y164{bottom:244.680000px;}
.y2dc{bottom:245.647500px;}
.y24e{bottom:246.796500px;}
.y2a4{bottom:247.629740px;}
.y1f7{bottom:253.593530px;}
.y42{bottom:254.256000px;}
.y104{bottom:254.641500px;}
.y20b{bottom:255.061500px;}
.y13b{bottom:256.434000px;}
.y218{bottom:256.882500px;}
.y306{bottom:257.152500px;}
.y182{bottom:257.331000px;}
.y7e{bottom:258.210000px;}
.y33c{bottom:258.900000px;}
.y1b9{bottom:259.261500px;}
.yc7{bottom:259.618500px;}
.y2c8{bottom:261.038301px;}
.y163{bottom:263.509500px;}
.yc8{bottom:265.042500px;}
.y24d{bottom:265.624500px;}
.y41{bottom:273.085500px;}
.y102{bottom:273.471000px;}
.y20a{bottom:273.891000px;}
.y305{bottom:274.413000px;}
.y2d4{bottom:274.719611px;}
.y1b8{bottom:275.700000px;}
.y217{bottom:275.712000px;}
.y181{bottom:276.160500px;}
.y7d{bottom:277.039500px;}
.yc6{bottom:278.448000px;}
.y103{bottom:278.895000px;}
.y2db{bottom:279.064500px;}
.y13a{bottom:279.747000px;}
.y1f8{bottom:280.193087px;}
.y162{bottom:282.339000px;}
.y24c{bottom:284.454000px;}
.y304{bottom:291.672000px;}
.y40{bottom:291.915000px;}
.y1b7{bottom:292.138500px;}
.y101{bottom:292.300500px;}
.y33b{bottom:293.421000px;}
.y216{bottom:294.541500px;}
.y180{bottom:294.990000px;}
.y7c{bottom:295.869000px;}
.y201{bottom:296.236665px;}
.y2a5{bottom:296.769611px;}
.yc5{bottom:297.277500px;}
.y2d9{bottom:298.296000px;}
.y2d3{bottom:298.299746px;}
.y161{bottom:301.168500px;}
.y2da{bottom:303.178500px;}
.y24b{bottom:303.283500px;}
.y1f9{bottom:306.688746px;}
.y18{bottom:307.299000px;}
.y209{bottom:307.456500px;}
.y1b6{bottom:308.577000px;}
.y303{bottom:308.932500px;}
.y33a{bottom:310.681500px;}
.y3f{bottom:310.744500px;}
.yff{bottom:311.130000px;}
.y139{bottom:313.371000px;}
.y17f{bottom:313.819500px;}
.y7b{bottom:314.698500px;}
.y2c9{bottom:315.487845px;}
.yc4{bottom:316.107000px;}
.y100{bottom:316.554000px;}
.y2d7{bottom:317.529000px;}
.y215{bottom:317.854500px;}
.y160{bottom:319.998000px;}
.y2d2{bottom:321.519450px;}
.y24a{bottom:322.113000px;}
.y2d8{bottom:322.411500px;}
.y1b5{bottom:325.015500px;}
.y17{bottom:325.186500px;}
.y302{bottom:326.193000px;}
.y208{bottom:326.689500px;}
.y339{bottom:327.940500px;}
.y2d1{bottom:328.089450px;}
.y3e{bottom:329.574000px;}
.yfe{bottom:329.959500px;}
.y138{bottom:332.200500px;}
.y17e{bottom:332.649000px;}
.y7a{bottom:333.528000px;}
.yc2{bottom:334.936500px;}
.y2d6{bottom:336.762000px;}
.y15f{bottom:338.827500px;}
.yc3{bottom:340.360500px;}
.y249{bottom:340.942500px;}
.y16{bottom:343.074000px;}
.y301{bottom:343.453500px;}
.y338{bottom:345.201000px;}
.y2a6{bottom:345.909482px;}
.y206{bottom:345.922500px;}
.y3d{bottom:348.403500px;}
.y1b3{bottom:348.657000px;}
.yfd{bottom:348.789000px;}
.y207{bottom:350.805000px;}
.y137{bottom:351.030000px;}
.y17d{bottom:351.478500px;}
.y79{bottom:352.356000px;}
.yc1{bottom:353.766000px;}
.y2d5{bottom:355.995000px;}
.y1b2{bottom:356.875500px;}
.y15e{bottom:357.657000px;}
.y248{bottom:359.772000px;}
.y2ff{bottom:360.714000px;}
.y15{bottom:360.963000px;}
.y337{bottom:362.461500px;}
.y300{bottom:363.942000px;}
.y1b4{bottom:365.094000px;}
.y204{bottom:365.155500px;}
.y3c{bottom:367.233000px;}
.yfc{bottom:367.618500px;}
.y136{bottom:369.859500px;}
.y205{bottom:370.036500px;}
.y17c{bottom:370.308000px;}
.y77{bottom:371.185500px;}
.y15d{bottom:376.486500px;}
.y78{bottom:376.611000px;}
.yc0{bottom:377.079000px;}
.y2fe{bottom:377.974500px;}
.y25b{bottom:378.424500px;}
.y247{bottom:378.601500px;}
.y1e7{bottom:378.724603px;}
.y85{bottom:379.169535px;}
.y336{bottom:379.722000px;}
.y203{bottom:384.388500px;}
.y3b{bottom:386.062500px;}
.y135{bottom:388.689000px;}
.y1b1{bottom:388.735500px;}
.y84{bottom:388.978950px;}
.y17b{bottom:389.137500px;}
.y76{bottom:390.015000px;}
.yfb{bottom:390.930000px;}
.y2fd{bottom:395.235000px;}
.y15c{bottom:395.314500px;}
.y335{bottom:396.982500px;}
.y1de{bottom:397.252493px;}
.y246{bottom:397.431000px;}
.y14{bottom:399.024000px;}
.y202{bottom:403.620000px;}
.y3a{bottom:404.892000px;}
.y26c{bottom:406.390080px;}
.y134{bottom:407.518500px;}
.y17a{bottom:407.967000px;}
.y75{bottom:408.844500px;}
.ybf{bottom:410.703000px;}
.yfa{bottom:411.105000px;}
.y2fc{bottom:412.495500px;}
.y15b{bottom:414.144000px;}
.y334{bottom:414.243000px;}
.y245{bottom:416.260500px;}
.y13{bottom:416.913000px;}
.y1b0{bottom:420.355500px;}
.y39{bottom:423.721500px;}
.y1c1{bottom:426.049500px;}
.y133{bottom:426.348000px;}
.y179{bottom:426.796500px;}
.y74{bottom:427.674000px;}
.y26b{bottom:427.899450px;}
.ybe{bottom:429.532500px;}
.y2fb{bottom:429.756000px;}
.y1df{bottom:430.786195px;}
.y333{bottom:431.503500px;}
.y15a{bottom:432.973500px;}
.y12{bottom:434.800500px;}
.y244{bottom:435.090000px;}
.y38{bottom:442.551000px;}
.yf9{bottom:444.729000px;}
.y132{bottom:445.177500px;}
.y178{bottom:445.626000px;}
.y72{bottom:446.503500px;}
.y2fa{bottom:447.015000px;}
.y26d{bottom:447.789892px;}
.ybd{bottom:448.362000px;}
.y332{bottom:448.764000px;}
.y159{bottom:451.803000px;}
.y73{bottom:451.929000px;}
.y243{bottom:453.919500px;}
.y1af{bottom:455.964000px;}
.y131{bottom:461.277000px;}
.y37{bottom:461.380500px;}
.yf8{bottom:463.558500px;}
.y130{bottom:464.007000px;}
.y2f9{bottom:464.275500px;}
.y1e0{bottom:464.423739px;}
.y177{bottom:464.454000px;}
.y70{bottom:465.333000px;}
.y331{bottom:466.024500px;}
.ybb{bottom:467.190000px;}
.y283{bottom:467.499733px;}
.y27f{bottom:469.929566px;}
.y11{bottom:470.622000px;}
.y71{bottom:470.758500px;}
.ybc{bottom:472.615500px;}
.y242{bottom:472.749000px;}
.y1ae{bottom:474.793500px;}
.y27d{bottom:475.779368px;}
.y282{bottom:479.020056px;}
.y1ec{bottom:480.053008px;}
.yf7{bottom:482.388000px;}
.y12f{bottom:482.836500px;}
.y176{bottom:483.283500px;}
.y6f{bottom:484.162500px;}
.y36{bottom:484.693500px;}
.yb9{bottom:486.019500px;}
.y276{bottom:487.299691px;}
.y289{bottom:487.300601px;}
.y158{bottom:487.968000px;}
.y278{bottom:488.109635px;}
.yba{bottom:491.445000px;}
.y241{bottom:491.578500px;}
.y26e{bottom:493.240333px;}
.y1e1{bottom:497.957442px;}
.y1ad{bottom:498.106500px;}
.y28c{bottom:499.720963px;}
.y330{bottom:500.544000px;}
.yf5{bottom:501.217500px;}
.y285{bottom:501.430037px;}
.y12e{bottom:501.666000px;}
.y175{bottom:502.113000px;}
.y156{bottom:502.165500px;}
.y6e{bottom:502.992000px;}
.yb8{bottom:504.849000px;}
.y288{bottom:506.380709px;}
.y10{bottom:506.442000px;}
.y157{bottom:506.505000px;}
.yf6{bottom:506.641500px;}
.y27e{bottom:507.999688px;}
.y1ea{bottom:508.514992px;}
.y27c{bottom:508.809633px;}
.y240{bottom:510.408000px;}
.y277{bottom:510.519617px;}
.y27a{bottom:512.139506px;}
.y275{bottom:512.949450px;}
.y280{bottom:514.659434px;}
.y286{bottom:514.660344px;}
.y154{bottom:516.361500px;}
.y32f{bottom:517.804500px;}
.y2f8{bottom:519.643500px;}
.yf4{bottom:520.047000px;}
.y1eb{bottom:520.417492px;}
.y27b{bottom:520.419140px;}
.y12d{bottom:520.495500px;}
.y155{bottom:520.701000px;}
.y174{bottom:520.942500px;}
.y6c{bottom:521.821500px;}
.y298{bottom:522.040850px;}
.yb7{bottom:523.678500px;}
.yf{bottom:524.329500px;}
.y29d{bottom:525.371633px;}
.y6d{bottom:527.247000px;}
.y284{bottom:527.889741px;}
.y29a{bottom:527.890651px;}
.y23f{bottom:529.237500px;}
.y279{bottom:529.509630px;}
.y1e8{bottom:529.628992px;}
.y281{bottom:531.129519px;}
.y1e2{bottom:531.491145px;}
.y28d{bottom:532.030468px;}
.y1ac{bottom:532.627500px;}
.y287{bottom:532.840413px;}
.y32e{bottom:535.065000px;}
.y1e9{bottom:535.217993px;}
.y26f{bottom:538.780789px;}
.yf3{bottom:538.876500px;}
.y153{bottom:539.109000px;}
.y12b{bottom:539.323500px;}
.y173{bottom:539.772000px;}
.y6b{bottom:540.651000px;}
.ye{bottom:542.218500px;}
.yb5{bottom:542.508000px;}
.y12c{bottom:544.749000px;}
.y2f7{bottom:546.184500px;}
.y1ee{bottom:546.292526px;}
.y1ab{bottom:546.823500px;}
.yb6{bottom:547.933500px;}
.y23e{bottom:548.067000px;}
.y1aa{bottom:551.164500px;}
.y32d{bottom:552.325500px;}
.y290{bottom:552.640371px;}
.y28b{bottom:553.540410px;}
.y152{bottom:555.547500px;}
.yf2{bottom:557.706000px;}
.y129{bottom:558.153000px;}
.y172{bottom:558.601500px;}
.y292{bottom:559.300117px;}
.y6a{bottom:559.480500px;}
.y35{bottom:559.843500px;}
.yd{bottom:560.106000px;}
.y1fe{bottom:560.678993px;}
.y29c{bottom:560.920916px;}
.y1a9{bottom:561.021000px;}
.yb4{bottom:561.337500px;}
.y12a{bottom:563.578500px;}
.y2f6{bottom:563.758500px;}
.y1e3{bottom:565.128689px;}
.y23d{bottom:566.896500px;}
.y274{bottom:567.039450px;}
.y294{bottom:567.580662px;}
.y29b{bottom:568.390606px;}
.y32c{bottom:569.586000px;}
.y299{bottom:570.100590px;}
.y297{bottom:570.910535px;}
.y151{bottom:571.986000px;}
.y1a7{bottom:575.217000px;}
.yf1{bottom:576.535500px;}
.y128{bottom:576.982500px;}
.y171{bottom:577.431000px;}
.yc{bottom:577.993500px;}
.y69{bottom:578.310000px;}
.y1a8{bottom:579.558000px;}
.yb3{bottom:580.167000px;}
.y28e{bottom:581.620003px;}
.y270{bottom:584.321244px;}
.y23c{bottom:585.726000px;}
.y32b{bottom:586.846500px;}
.y150{bottom:588.423000px;}
.y1ed{bottom:589.452197px;}
.y2f5{bottom:590.298000px;}
.yf0{bottom:595.365000px;}
.y127{bottom:595.812000px;}
.yb{bottom:595.882500px;}
.y170{bottom:596.260500px;}
.y68{bottom:597.139500px;}
.y34{bottom:597.232500px;}
.y1a6{bottom:597.964500px;}
.y1e4{bottom:598.662391px;}
.yb2{bottom:598.996500px;}
.y28f{bottom:600.700111px;}
.y32a{bottom:604.107000px;}
.y23b{bottom:604.555500px;}
.y14f{bottom:604.861500px;}
.y28a{bottom:606.459818px;}
.ya{bottom:613.770000px;}
.yef{bottom:614.194500px;}
.y1a5{bottom:614.403000px;}
.y126{bottom:614.641500px;}
.y16f{bottom:615.090000px;}
.y67{bottom:615.969000px;}
.y293{bottom:616.360252px;}
.y33{bottom:616.690500px;}
.y2f4{bottom:616.839000px;}
.yb0{bottom:617.826000px;}
.y329{bottom:621.366000px;}
.y14e{bottom:621.925500px;}
.yb1{bottom:623.251500px;}
.y23a{bottom:623.385000px;}
.y291{bottom:625.449831px;}
.y271{bottom:630.580487px;}
.y1a4{bottom:630.841500px;}
.y1e5{bottom:632.196094px;}
.y1ff{bottom:632.405042px;}
.y25a{bottom:633.471000px;}
.y16e{bottom:633.919500px;}
.y66{bottom:634.798500px;}
.y7{bottom:636.141055px;}
.y32{bottom:636.147000px;}
.yaf{bottom:636.655500px;}
.yee{bottom:637.506000px;}
.y125{bottom:637.954500px;}
.y14d{bottom:638.364000px;}
.y328{bottom:638.626500px;}
.y239{bottom:642.214500px;}
.y295{bottom:642.820865px;}
.y2f3{bottom:643.380000px;}
.y1a3{bottom:647.280000px;}
.y259{bottom:652.300500px;}
.y16d{bottom:652.749000px;}
.y65{bottom:653.628000px;}
.y200{bottom:654.760493px;}
.yae{bottom:655.485000px;}
.y31{bottom:655.603500px;}
.y327{bottom:655.887000px;}
.y2f2{bottom:660.954000px;}
.y238{bottom:661.044000px;}
.y14b{bottom:662.004000px;}
.y1a2{bottom:663.718500px;}
.y1e6{bottom:665.833638px;}
.y14a{bottom:670.224000px;}
.yed{bottom:671.130000px;}
.y124{bottom:671.578500px;}
.y64{bottom:672.457500px;}
.y326{bottom:673.147500px;}
.yad{bottom:674.314500px;}
.y30{bottom:675.061500px;}
.y272{bottom:676.120942px;}
.y14c{bottom:678.442500px;}
.y2f1{bottom:678.528000px;}
.y237{bottom:679.873500px;}
.y1a1{bottom:680.781000px;}
.yec{bottom:689.959500px;}
.y122{bottom:690.408000px;}
.yac{bottom:693.144000px;}
.y296{bottom:693.310439px;}
.y2f{bottom:694.518000px;}
.y63{bottom:695.770500px;}
.y123{bottom:695.832000px;}
.y1a0{bottom:697.843500px;}
.y236{bottom:698.703000px;}
.y149{bottom:702.082500px;}
.y2d0{bottom:703.749450px;}
.y2f0{bottom:705.069000px;}
.y325{bottom:707.668500px;}
.yeb{bottom:708.789000px;}
.y121{bottom:709.237500px;}
.y1d6{bottom:712.823648px;}
.y2e{bottom:713.974500px;}
.y19f{bottom:714.907500px;}
.y62{bottom:715.944000px;}
.yab{bottom:716.457000px;}
.y235{bottom:717.532500px;}
.y273{bottom:721.661397px;}
.y2ef{bottom:722.643000px;}
.y324{bottom:724.929000px;}
.yea{bottom:727.618500px;}
.y120{bottom:728.067000px;}
.y19e{bottom:731.346000px;}
.y1d5{bottom:732.799665px;}
.y2d{bottom:733.432500px;}
.y148{bottom:733.702500px;}
.y234{bottom:736.362000px;}
.y2ee{bottom:740.217000px;}
.y323{bottom:742.189500px;}
.ye9{bottom:746.448000px;}
.y11e{bottom:746.896500px;}
.y19d{bottom:747.784500px;}
.y61{bottom:749.568000px;}
.yaa{bottom:751.368000px;}
.y11f{bottom:752.320500px;}
.y1d4{bottom:752.671493px;}
.y2c{bottom:752.889000px;}
.y2ed{bottom:757.791000px;}
.y322{bottom:759.450000px;}
.y19c{bottom:764.221500px;}
.y147{bottom:764.829000px;}
.ye8{bottom:765.277500px;}
.y11d{bottom:765.726000px;}
.y60{bottom:768.397500px;}
.y263{bottom:768.461097px;}
.y233{bottom:771.031500px;}
.y2a{bottom:772.347000px;}
.y1d3{bottom:772.543493px;}
.y83{bottom:773.796000px;}
.y321{bottom:776.709000px;}
.y2b{bottom:777.228000px;}
.y19b{bottom:780.660000px;}
.ye7{bottom:784.107000px;}
.y2ec{bottom:784.332000px;}
.y11c{bottom:784.555500px;}
.y232{bottom:785.227500px;}
.y5f{bottom:787.227000px;}
.y262{bottom:787.631862px;}
.y146{bottom:788.142000px;}
.y231{bottom:789.568500px;}
.y29{bottom:791.803500px;}
.y320{bottom:793.969500px;}
.y1d2{bottom:795.003665px;}
.y19a{bottom:797.098500px;}
.y22f{bottom:799.425000px;}
.y2eb{bottom:801.906000px;}
.ye5{bottom:802.936500px;}
.y11b{bottom:803.385000px;}
.y230{bottom:803.764500px;}
.y5e{bottom:806.056500px;}
.y261{bottom:806.891304px;}
.ye6{bottom:808.360500px;}
.y31f{bottom:811.230000px;}
.y28{bottom:811.260000px;}
.y199{bottom:813.537000px;}
.y22d{bottom:813.621000px;}
.y22e{bottom:817.962000px;}
.y1d1{bottom:818.187365px;}
.ye4{bottom:819.036000px;}
.y2ea{bottom:819.480000px;}
.ye3{bottom:821.766000px;}
.y11a{bottom:822.214500px;}
.y5d{bottom:824.886000px;}
.y260{bottom:826.150746px;}
.y31e{bottom:828.490500px;}
.y198{bottom:829.975500px;}
.y27{bottom:830.718000px;}
.y22c{bottom:836.368500px;}
.y2e9{bottom:837.054000px;}
.ye2{bottom:840.595500px;}
.y119{bottom:841.044000px;}
.y1d0{bottom:841.474772px;}
.y5c{bottom:843.715500px;}
.y25f{bottom:845.320008px;}
.y31d{bottom:845.751000px;}
.y197{bottom:846.414000px;}
.y26{bottom:850.174500px;}
.y22b{bottom:853.432500px;}
.y2e8{bottom:854.628000px;}
.ye1{bottom:859.425000px;}
.y118{bottom:859.873500px;}
.y5b{bottom:862.545000px;}
.y196{bottom:862.852500px;}
.y31c{bottom:863.011500px;}
.y25e{bottom:864.579450px;}
.y1cf{bottom:864.762179px;}
.y22a{bottom:870.495000px;}
.ye0{bottom:878.254500px;}
.y117{bottom:878.703000px;}
.y195{bottom:879.291000px;}
.y31b{bottom:880.272000px;}
.y2e7{bottom:881.169000px;}
.y5a{bottom:881.374500px;}
.y258{bottom:882.738000px;}
.y25{bottom:887.485500px;}
.y229{bottom:887.557500px;}
.y1ce{bottom:888.049586px;}
.y194{bottom:895.729500px;}
.ydf{bottom:897.084000px;}
.y116{bottom:897.532500px;}
.y2e6{bottom:899.212500px;}
.y59{bottom:900.204000px;}
.y145{bottom:902.508000px;}
.y24{bottom:903.625500px;}
.y228{bottom:903.996000px;}
.y1cd{bottom:911.336993px;}
.y193{bottom:912.168000px;}
.y31a{bottom:914.793000px;}
.yde{bottom:915.913500px;}
.y115{bottom:916.362000px;}
.y58{bottom:919.033500px;}
.y25d{bottom:919.120035px;}
.y23{bottom:919.764000px;}
.y227{bottom:920.434500px;}
.y192{bottom:928.606500px;}
.y25c{bottom:928.929450px;}
.y319{bottom:932.052000px;}
.y1cc{bottom:934.624493px;}
.ydd{bottom:934.743000px;}
.y114{bottom:935.191500px;}
.y22{bottom:935.904000px;}
.y226{bottom:936.873000px;}
.y56{bottom:937.863000px;}
.y144{bottom:939.226500px;}
.y57{bottom:943.287000px;}
.y191{bottom:945.043500px;}
.y318{bottom:949.312500px;}
.y21{bottom:952.044000px;}
.ydc{bottom:953.572500px;}
.y113{bottom:954.021000px;}
.y55{bottom:956.692500px;}
.y1ca{bottom:958.843586px;}
.y224{bottom:961.138500px;}
.y190{bottom:961.482000px;}
.y317{bottom:966.573000px;}
.y223{bottom:969.357000px;}
.y1c8{bottom:970.435493px;}
.ydb{bottom:972.402000px;}
.y112{bottom:972.849000px;}
.y1c9{bottom:974.782493px;}
.y54{bottom:975.522000px;}
.y225{bottom:977.577000px;}
.y18f{bottom:977.920500px;}
.y1cb{bottom:982.130993px;}
.y1c5{bottom:982.544993px;}
.y316{bottom:983.833500px;}
.yda{bottom:991.231500px;}
.y111{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y18e{bottom:994.359000px;}
.y6{bottom:995.302500px;}
.y315{bottom:1001.094000px;}
.y222{bottom:1001.217000px;}
.y1c6{bottom:1006.143520px;}
.y1c7{bottom:1006.247227px;}
.yd9{bottom:1010.061000px;}
.y110{bottom:1010.508000px;}
.y18d{bottom:1010.797500px;}
.y52{bottom:1013.181000px;}
.y314{bottom:1018.354500px;}
.yd8{bottom:1028.890500px;}
.y10f{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y221{bottom:1032.837000px;}
.y18b{bottom:1034.439000px;}
.y313{bottom:1035.615000px;}
.y1c4{bottom:1040.815493px;}
.y5{bottom:1041.199500px;}
.y18a{bottom:1042.657500px;}
.y10d{bottom:1048.167000px;}
.y50{bottom:1050.840000px;}
.y18c{bottom:1050.876000px;}
.yd7{bottom:1052.202000px;}
.y312{bottom:1052.875500px;}
.y10e{bottom:1053.592500px;}
.y10c{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y311{bottom:1070.134500px;}
.y189{bottom:1074.517500px;}
.yd6{bottom:1085.826000px;}
.y310{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y1c3{bottom:1101.777665px;}
.yd4{bottom:1104.655500px;}
.y188{bottom:1106.137500px;}
.y4d{bottom:1107.327000px;}
.yd5{bottom:1110.081000px;}
.y1c2{bottom:1113.058493px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h26{height:24.889486px;}
.h3e{height:25.239668px;}
.h7{height:25.508090px;}
.h27{height:26.110157px;}
.h1e{height:26.279297px;}
.h43{height:27.245279px;}
.h21{height:27.855430px;}
.h10{height:29.037733px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h14{height:31.526842px;}
.h15{height:33.072749px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hc{height:34.813397px;}
.h19{height:34.951465px;}
.h13{height:35.052500px;}
.h18{height:35.115117px;}
.h3d{height:36.712963px;}
.h47{height:37.473516px;}
.h41{height:38.559160px;}
.h35{height:38.896122px;}
.hd{height:38.896243px;}
.h22{height:39.057638px;}
.he{height:39.165235px;}
.h3b{height:39.418945px;}
.hf{height:39.434227px;}
.h1a{height:39.603516px;}
.h42{height:39.629648px;}
.h2c{height:40.194185px;}
.h2b{height:40.382385px;}
.h16{height:41.482876px;}
.h45{height:41.646750px;}
.h49{height:41.853235px;}
.h37{height:43.045017px;}
.h11{height:43.217759px;}
.h1b{height:43.269961px;}
.h28{height:43.468157px;}
.h12{height:43.516637px;}
.h4{height:43.815515px;}
.h1c{height:43.886426px;}
.h3c{height:44.091914px;}
.h6{height:44.473046px;}
.h46{height:45.148770px;}
.h33{height:45.331787px;}
.h34{height:45.332477px;}
.h2d{height:45.544043px;}
.h36{height:47.400165px;}
.h29{height:48.561733px;}
.h39{height:49.985558px;}
.h25{height:49.991558px;}
.h32{height:50.469390px;}
.h2e{height:50.705701px;}
.h2{height:50.930649px;}
.h4a{height:51.159235px;}
.h38{height:51.861182px;}
.h3f{height:51.878652px;}
.h48{height:52.077235px;}
.h1f{height:53.222842px;}
.h2f{height:53.642716px;}
.h20{height:54.774749px;}
.h40{height:55.118430px;}
.h44{height:55.686711px;}
.h1d{height:55.922168px;}
.h23{height:71.770243px;}
.h24{height:71.776243px;}
.h5{height:77.792486px;}
.h3{height:79.438167px;}
.h30{height:80.099701px;}
.h31{height:97.076558px;}
.h17{height:345.804000px;}
.h2a{height:693.555225px;}
.h3a{height:741.177000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.503181px;}
.w5{width:548.329200px;}
.w6{width:599.550900px;}
.w4{width:734.095800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb2{left:-219.530400px;}
.xbe{left:-185.996773px;}
.xc0{left:-182.891400px;}
.xbc{left:-180.097573px;}
.xbf{left:-175.231986px;}
.xbd{left:-173.887252px;}
.xba{left:-160.328400px;}
.xbb{left:-154.325400px;}
.xb3{left:-151.841400px;}
.xb4{left:-130.313400px;}
.xff{left:-91.757100px;}
.x100{left:-59.897100px;}
.xb6{left:-48.548400px;}
.x3d{left:-16.813200px;}
.xb5{left:-10.977755px;}
.x0{left:0.000000px;}
.xc2{left:5.375100px;}
.x11f{left:13.722900px;}
.x103{left:17.952900px;}
.x3{left:29.274117px;}
.x11e{left:34.783265px;}
.x11c{left:36.583251px;}
.x102{left:39.103005px;}
.x101{left:40.813183px;}
.x11d{left:41.893139px;}
.xc6{left:45.119100px;}
.x1{left:54.000000px;}
.xc4{left:55.364839px;}
.x2{left:57.742127px;}
.x92{left:63.036000px;}
.xb0{left:64.743000px;}
.xb1{left:66.309000px;}
.xc3{left:67.475100px;}
.xae{left:68.724000px;}
.xa9{left:69.733500px;}
.xa8{left:72.033000px;}
.xaf{left:73.558500px;}
.xee{left:75.072000px;}
.x8e{left:77.427000px;}
.x3c{left:79.409700px;}
.xa6{left:82.066500px;}
.xa7{left:83.442000px;}
.xad{left:84.604500px;}
.x93{left:86.289000px;}
.x89{left:87.472500px;}
.x8f{left:88.717500px;}
.x90{left:93.232500px;}
.xaa{left:94.602000px;}
.x123{left:95.621404px;}
.x91{left:98.272500px;}
.x10e{left:99.313331px;}
.x10c{left:102.012902px;}
.xa4{left:103.611000px;}
.x113{left:108.044022px;}
.x110{left:111.553944px;}
.xac{left:114.666000px;}
.x122{left:116.141512px;}
.x124{left:118.031638px;}
.x10d{left:119.473324px;}
.xcc{left:121.812600px;}
.x126{left:125.140990px;}
.x10f{left:127.303518px;}
.xca{left:130.195161px;}
.xc5{left:133.197924px;}
.xec{left:136.687500px;}
.x120{left:141.701956px;}
.x107{left:143.053093px;}
.x106{left:145.663478px;}
.xfe{left:146.682600px;}
.x125{left:150.611990px;}
.x111{left:151.783784px;}
.x112{left:153.493672px;}
.x105{left:156.103097px;}
.x12e{left:157.183500px;}
.x127{left:158.260957px;}
.xcd{left:160.418273px;}
.x12f{left:167.647500px;}
.x121{left:172.572054px;}
.x109{left:174.463057px;}
.x108{left:177.073441px;}
.x40{left:178.756800px;}
.x104{left:181.482900px;}
.x10a{left:183.192788px;}
.x139{left:205.662000px;}
.x41{left:210.616694px;}
.xa5{left:216.264000px;}
.xc7{left:221.690100px;}
.x10b{left:228.642438px;}
.x3f{left:241.486800px;}
.x8a{left:243.264000px;}
.xed{left:248.664000px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.xc8{left:255.845597px;}
.x51{left:262.351500px;}
.x52{left:269.158500px;}
.xd2{left:271.726500px;}
.x39{left:273.807000px;}
.xd3{left:278.055000px;}
.x3a{left:280.614000px;}
.xc{left:282.786000px;}
.x118{left:285.883891px;}
.x6f{left:287.451000px;}
.x11a{left:289.303667px;}
.x12d{left:291.640183px;}
.xf3{left:296.310000px;}
.xab{left:300.129000px;}
.x11b{left:301.452836px;}
.xdc{left:303.739500px;}
.x1f{left:305.803500px;}
.x6{left:309.438000px;}
.xf4{left:311.254500px;}
.x48{left:312.447000px;}
.x27{left:313.953000px;}
.xe3{left:315.864000px;}
.xdd{left:318.684000px;}
.x20{left:320.748000px;}
.xde{left:322.494000px;}
.x21{left:324.475500px;}
.x12b{left:326.560831px;}
.x28{left:328.897500px;}
.x13{left:330.033000px;}
.x70{left:331.608000px;}
.x6d{left:334.786500px;}
.x116{left:336.464164px;}
.x14{left:337.504500px;}
.x22{left:339.420000px;}
.x15{left:341.193000px;}
.x53{left:342.819000px;}
.x71{left:346.551000px;}
.x16{left:348.664500px;}
.xf0{left:350.107500px;}
.x11{left:352.768500px;}
.x54{left:355.110000px;}
.x81{left:356.530500px;}
.x57{left:358.726500px;}
.x12{left:360.240000px;}
.xc9{left:361.415967px;}
.x9e{left:362.550000px;}
.x3b{left:363.972000px;}
.x58{left:365.533500px;}
.x6e{left:367.263000px;}
.x119{left:368.863810px;}
.x82{left:370.201500px;}
.x12c{left:373.090571px;}
.x55{left:374.235000px;}
.x9f{left:377.493000px;}
.x56{left:381.040500px;}
.x129{left:382.091032px;}
.x117{left:383.623702px;}
.xe4{left:387.139500px;}
.xfc{left:388.591500px;}
.x94{left:390.919500px;}
.x114{left:392.353434px;}
.x132{left:393.435000px;}
.xe5{left:394.611000px;}
.x95{left:396.450000px;}
.xe6{left:398.422500px;}
.x5b{left:400.399500px;}
.x35{left:402.564000px;}
.x5e{left:405.853500px;}
.x5c{left:407.206500px;}
.x8{left:408.261000px;}
.x36{left:409.371000px;}
.xa3{left:411.507000px;}
.xe7{left:413.367000px;}
.x9{left:414.589500px;}
.xb7{left:415.856100px;}
.x88{left:418.230000px;}
.x5f{left:420.798000px;}
.x128{left:421.872146px;}
.x115{left:422.954005px;}
.xd1{left:424.756500px;}
.x76{left:427.924500px;}
.xfb{left:429.241500px;}
.x2f{left:430.669500px;}
.x130{left:432.201000px;}
.xcb{left:434.175600px;}
.x77{left:437.155500px;}
.x30{left:440.817000px;}
.xe2{left:443.217000px;}
.xe8{left:445.125000px;}
.x6b{left:446.382000px;}
.x86{left:448.522500px;}
.xd6{left:450.264000px;}
.xce{left:451.444500px;}
.x6c{left:453.189000px;}
.x68{left:455.929500px;}
.xd7{left:457.069500px;}
.x7d{left:458.233500px;}
.x5d{left:462.894000px;}
.x7e{left:465.039000px;}
.x72{left:468.415500px;}
.x26{left:469.567500px;}
.x69{left:470.874000px;}
.x29{left:472.405500px;}
.x83{left:475.575000px;}
.x73{left:480.141000px;}
.x12a{left:481.451916px;}
.x1b{left:484.077000px;}
.x2a{left:487.348500px;}
.x1c{left:491.548500px;}
.x133{left:493.315500px;}
.x1d{left:495.360000px;}
.x1e{left:502.831500px;}
.x4f{left:504.219000px;}
.x50{left:511.026000px;}
.xef{left:513.174000px;}
.xea{left:515.626500px;}
.x96{left:519.841500px;}
.x2b{left:521.553000px;}
.xb8{left:526.705200px;}
.x97{left:528.196500px;}
.xeb{left:530.569500px;}
.x60{left:532.453500px;}
.x2c{left:536.497500px;}
.x7b{left:537.933000px;}
.xcf{left:539.656500px;}
.xb9{left:541.091090px;}
.xc1{left:543.575100px;}
.x61{left:547.398000px;}
.xd0{left:548.626500px;}
.x17{left:551.019000px;}
.xd8{left:553.293000px;}
.x42{left:556.036800px;}
.x18{left:558.490500px;}
.x43{left:560.446800px;}
.xd9{left:564.574500px;}
.xfd{left:567.870000px;}
.x62{left:574.489500px;}
.xda{left:579.519000px;}
.x63{left:580.914000px;}
.x74{left:583.956000px;}
.x44{left:589.606800px;}
.x45{left:594.106800px;}
.xe0{left:597.429000px;}
.x46{left:599.146800px;}
.x7f{left:601.237500px;}
.x87{left:605.844000px;}
.x80{left:608.044500px;}
.x47{left:610.396800px;}
.xe1{left:612.372000px;}
.xe9{left:614.044500px;}
.xdb{left:617.028000px;}
.x84{left:618.268500px;}
.x64{left:622.917000px;}
.xa1{left:624.711000px;}
.x66{left:627.297000px;}
.x31{left:629.541000px;}
.x65{left:632.568000px;}
.x85{left:634.309500px;}
.x4b{left:635.668500px;}
.xa2{left:639.655500px;}
.x67{left:642.241500px;}
.xdf{left:643.381500px;}
.x32{left:646.140000px;}
.x4c{left:647.961000px;}
.x8b{left:651.334500px;}
.x6a{left:661.843500px;}
.xa0{left:663.111000px;}
.x7a{left:664.315500px;}
.x4d{left:667.050000px;}
.x4e{left:673.857000px;}
.x98{left:675.804000px;}
.xf5{left:679.131000px;}
.xf6{left:682.942500px;}
.x99{left:684.157500px;}
.x33{left:685.819500px;}
.x34{left:692.626500px;}
.xf7{left:697.887000px;}
.x9a{left:700.674000px;}
.xf8{left:701.697000px;}
.x23{left:704.235000px;}
.x8c{left:709.470000px;}
.xd4{left:711.000000px;}
.x9b{left:715.617000px;}
.xf9{left:716.641500px;}
.xf{left:718.756500px;}
.x8d{left:720.451500px;}
.x24{left:722.989500px;}
.x10{left:726.228000px;}
.xd{left:727.935000px;}
.x37{left:733.519500px;}
.xe{left:735.406500px;}
.x25{left:737.932500px;}
.x38{left:740.325000px;}
.x138{left:742.333500px;}
.x3e{left:745.936650px;}
.xfa{left:750.232500px;}
.x75{left:753.975000px;}
.x78{left:757.726500px;}
.x131{left:760.185000px;}
.x2d{left:762.978000px;}
.x13b{left:764.059500px;}
.x7{left:765.076500px;}
.x79{left:766.957500px;}
.x2e{left:769.785000px;}
.xa{left:771.772500px;}
.x13a{left:773.938500px;}
.xb{left:778.099500px;}
.xd5{left:780.766500px;}
.x13d{left:783.877500px;}
.x136{left:789.396000px;}
.x13c{left:790.959000px;}
.xf2{left:793.671000px;}
.x9c{left:799.441500px;}
.x134{left:810.373500px;}
.x9d{left:814.384500px;}
.x137{left:816.295500px;}
.xf1{left:817.698000px;}
.x49{left:818.893500px;}
.x59{left:821.299500px;}
.x19{left:825.274500px;}
.x5a{left:828.106500px;}
.x7c{left:830.062500px;}
.x1a{left:832.746000px;}
.x4a{left:833.838000px;}
.x135{left:837.273000px;}
@media print{
.ve{vertical-align:-25.281272pt;}
.vb{vertical-align:-23.679097pt;}
.va{vertical-align:-15.455387pt;}
.v7{vertical-align:-10.458667pt;}
.v6{vertical-align:-9.322667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.114667pt;}
.v10{vertical-align:2.389333pt;}
.v11{vertical-align:10.661333pt;}
.vd{vertical-align:11.839548pt;}
.vf{vertical-align:12.801307pt;}
.v5{vertical-align:15.429333pt;}
.v2{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.vc{vertical-align:23.679097pt;}
.v8{vertical-align:26.128000pt;}
.v3{vertical-align:29.914667pt;}
.v9{vertical-align:41.218539pt;}
.lsa6{letter-spacing:-3.022175pt;}
.lsa5{letter-spacing:-2.718016pt;}
.lsa2{letter-spacing:-1.063695pt;}
.ls86{letter-spacing:-0.505773pt;}
.ls71{letter-spacing:-0.411755pt;}
.lsaf{letter-spacing:-0.404438pt;}
.lsb1{letter-spacing:-0.384947pt;}
.ls7e{letter-spacing:-0.369840pt;}
.ls73{letter-spacing:-0.368000pt;}
.ls83{letter-spacing:-0.298080pt;}
.ls3a{letter-spacing:-0.293920pt;}
.ls76{letter-spacing:-0.258115pt;}
.lsa0{letter-spacing:-0.240037pt;}
.ls79{letter-spacing:-0.184368pt;}
.ls3b{letter-spacing:-0.138944pt;}
.lsa9{letter-spacing:-0.137174pt;}
.ls7c{letter-spacing:-0.135203pt;}
.ls9b{letter-spacing:-0.134400pt;}
.ls7b{letter-spacing:-0.129058pt;}
.ls3c{letter-spacing:-0.128256pt;}
.ls7d{letter-spacing:-0.116766pt;}
.ls87{letter-spacing:-0.116328pt;}
.ls39{letter-spacing:-0.112224pt;}
.ls7a{letter-spacing:-0.104475pt;}
.ls6f{letter-spacing:-0.092994pt;}
.ls36{letter-spacing:-0.090848pt;}
.ls72{letter-spacing:-0.086038pt;}
.ls37{letter-spacing:-0.085504pt;}
.ls99{letter-spacing:-0.080864pt;}
.ls3d{letter-spacing:-0.080160pt;}
.ls28{letter-spacing:-0.076608pt;}
.ls2a{letter-spacing:-0.074816pt;}
.ls31{letter-spacing:-0.069472pt;}
.ls77{letter-spacing:-0.061456pt;}
.ls82{letter-spacing:-0.060720pt;}
.ls9c{letter-spacing:-0.057600pt;}
.ls3e{letter-spacing:-0.053440pt;}
.ls2c{letter-spacing:-0.048096pt;}
.ls9d{letter-spacing:-0.048000pt;}
.ls78{letter-spacing:-0.036800pt;}
.ls7f{letter-spacing:-0.033120pt;}
.ls9a{letter-spacing:-0.032064pt;}
.ls35{letter-spacing:-0.026720pt;}
.ls89{letter-spacing:-0.022389pt;}
.ls80{letter-spacing:-0.022080pt;}
.ls33{letter-spacing:-0.021376pt;}
.ls30{letter-spacing:-0.016032pt;}
.ls81{letter-spacing:-0.011040pt;}
.ls2f{letter-spacing:-0.010688pt;}
.ls9e{letter-spacing:-0.009600pt;}
.ls70{letter-spacing:-0.005520pt;}
.ls34{letter-spacing:-0.005344pt;}
.ls9{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000054pt;}
.ls40{letter-spacing:0.000385pt;}
.lsc{letter-spacing:0.000387pt;}
.lsc1{letter-spacing:0.000425pt;}
.lsbd{letter-spacing:0.000711pt;}
.ls42{letter-spacing:0.000747pt;}
.lsbf{letter-spacing:0.000921pt;}
.lsbb{letter-spacing:0.000954pt;}
.lsba{letter-spacing:0.001319pt;}
.lsb8{letter-spacing:0.001512pt;}
.ls41{letter-spacing:0.001537pt;}
.ls4e{letter-spacing:0.001707pt;}
.ls5{letter-spacing:0.001735pt;}
.lsb4{letter-spacing:0.001863pt;}
.ls1{letter-spacing:0.002422pt;}
.lsb{letter-spacing:0.002868pt;}
.ls4{letter-spacing:0.003100pt;}
.lsb3{letter-spacing:0.003430pt;}
.lsbe{letter-spacing:0.003550pt;}
.ls0{letter-spacing:0.003733pt;}
.ls91{letter-spacing:0.004800pt;}
.ls19{letter-spacing:0.005344pt;}
.ls63{letter-spacing:0.005520pt;}
.ls74{letter-spacing:0.006146pt;}
.ls38{letter-spacing:0.006400pt;}
.ls96{letter-spacing:0.009600pt;}
.ls1b{letter-spacing:0.010688pt;}
.ls61{letter-spacing:0.011040pt;}
.ls18{letter-spacing:0.016032pt;}
.ls65{letter-spacing:0.016560pt;}
.ls95{letter-spacing:0.019200pt;}
.ls8e{letter-spacing:0.021280pt;}
.ls21{letter-spacing:0.021376pt;}
.ls97{letter-spacing:0.024000pt;}
.ls57{letter-spacing:0.024472pt;}
.lse{letter-spacing:0.025536pt;}
.ls15{letter-spacing:0.026720pt;}
.ls62{letter-spacing:0.027600pt;}
.ls12{letter-spacing:0.028800pt;}
.ls1e{letter-spacing:0.032064pt;}
.ls66{letter-spacing:0.033120pt;}
.ls6c{letter-spacing:0.033583pt;}
.ls16{letter-spacing:0.037408pt;}
.ls8f{letter-spacing:0.038304pt;}
.ls93{letter-spacing:0.038400pt;}
.ls64{letter-spacing:0.038640pt;}
.lsae{letter-spacing:0.041914pt;}
.ls59{letter-spacing:0.044050pt;}
.ls5c{letter-spacing:0.044160pt;}
.ls10{letter-spacing:0.046816pt;}
.ls1c{letter-spacing:0.048096pt;}
.ls69{letter-spacing:0.049680pt;}
.ls92{letter-spacing:0.052800pt;}
.ls14{letter-spacing:0.053440pt;}
.ls5b{letter-spacing:0.055200pt;}
.ls5e{letter-spacing:0.055310pt;}
.ls22{letter-spacing:0.058784pt;}
.ls68{letter-spacing:0.060720pt;}
.ls2e{letter-spacing:0.064128pt;}
.ls6a{letter-spacing:0.066240pt;}
.ls17{letter-spacing:0.069472pt;}
.ls13{letter-spacing:0.072000pt;}
.ls75{letter-spacing:0.073747pt;}
.ls29{letter-spacing:0.080160pt;}
.ls1d{letter-spacing:0.085504pt;}
.ls1a{letter-spacing:0.090848pt;}
.ls94{letter-spacing:0.096000pt;}
.ls84{letter-spacing:0.096097pt;}
.ls60{letter-spacing:0.098330pt;}
.ls2d{letter-spacing:0.101536pt;}
.ls5f{letter-spacing:0.104475pt;}
.ls67{letter-spacing:0.110400pt;}
.ls20{letter-spacing:0.128256pt;}
.ls85{letter-spacing:0.136559pt;}
.lsaa{letter-spacing:0.152416pt;}
.ls90{letter-spacing:0.153216pt;}
.ls2b{letter-spacing:0.154976pt;}
.lsa1{letter-spacing:0.155318pt;}
.ls11{letter-spacing:0.161728pt;}
.lsf{letter-spacing:0.170240pt;}
.ls1f{letter-spacing:0.171008pt;}
.ls5a{letter-spacing:0.176198pt;}
.ls58{letter-spacing:0.185987pt;}
.ls88{letter-spacing:0.212425pt;}
.ls6d{letter-spacing:0.229486pt;}
.lsb0{letter-spacing:0.258256pt;}
.lsab{letter-spacing:0.363257pt;}
.ls6b{letter-spacing:0.397403pt;}
.lsb2{letter-spacing:0.478208pt;}
.lsa8{letter-spacing:0.528375pt;}
.lsa3{letter-spacing:0.579196pt;}
.ls23{letter-spacing:0.637762pt;}
.ls44{letter-spacing:0.797008pt;}
.lsa4{letter-spacing:0.883355pt;}
.ls32{letter-spacing:1.047424pt;}
.lsa{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls9f{letter-spacing:1.939125pt;}
.lsa7{letter-spacing:2.270998pt;}
.ls26{letter-spacing:2.651733pt;}
.ls53{letter-spacing:3.054400pt;}
.ls24{letter-spacing:3.163733pt;}
.lsac{letter-spacing:3.929460pt;}
.lsad{letter-spacing:4.250803pt;}
.ls3{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.ls4c{letter-spacing:10.629067pt;}
.ls7{letter-spacing:11.794837pt;}
.lsb6{letter-spacing:11.954133pt;}
.lsb5{letter-spacing:11.959467pt;}
.lsb9{letter-spacing:11.976826pt;}
.lsc0{letter-spacing:11.999330pt;}
.ls6e{letter-spacing:12.012112pt;}
.lsbc{letter-spacing:12.086630pt;}
.lsc2{letter-spacing:12.099001pt;}
.ls4a{letter-spacing:12.528078pt;}
.ls49{letter-spacing:12.551526pt;}
.lsb7{letter-spacing:12.970290pt;}
.ls46{letter-spacing:12.981366pt;}
.ls8d{letter-spacing:13.122745pt;}
.ls54{letter-spacing:13.302400pt;}
.ls3f{letter-spacing:13.325762pt;}
.ls55{letter-spacing:13.336601pt;}
.ls45{letter-spacing:13.384874pt;}
.ls8a{letter-spacing:13.503815pt;}
.ls47{letter-spacing:13.923096pt;}
.lsd{letter-spacing:14.483714pt;}
.ls4b{letter-spacing:14.613867pt;}
.ls25{letter-spacing:15.942400pt;}
.ls4d{letter-spacing:16.267054pt;}
.ls27{letter-spacing:16.449067pt;}
.ls8b{letter-spacing:18.055289pt;}
.ls6{letter-spacing:25.292137pt;}
.ls8c{letter-spacing:72.453867pt;}
.ls4f{letter-spacing:91.653867pt;}
.ls48{letter-spacing:91.659200pt;}
.ls56{letter-spacing:112.691467pt;}
.ls51{letter-spacing:164.971200pt;}
.ls52{letter-spacing:173.147200pt;}
.ls50{letter-spacing:193.637867pt;}
.ls5d{letter-spacing:388.334318pt;}
.ls98{letter-spacing:754.642272pt;}
.ws0{word-spacing:-81.026410pt;}
.wsf5{word-spacing:-55.200000pt;}
.ws52{word-spacing:-53.440000pt;}
.ws163{word-spacing:-48.342520pt;}
.wsf6{word-spacing:-13.800000pt;}
.ws51{word-spacing:-13.461536pt;}
.ws54{word-spacing:-13.450848pt;}
.ws55{word-spacing:-13.445504pt;}
.ws50{word-spacing:-13.311904pt;}
.ws53{word-spacing:-13.290528pt;}
.ws2{word-spacing:-13.283467pt;}
.ws56{word-spacing:-13.247776pt;}
.ws15e{word-spacing:-12.982936pt;}
.ws160{word-spacing:-12.661593pt;}
.ws185{word-spacing:-12.433408pt;}
.wsf4{word-spacing:-12.421987pt;}
.ws154{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.955200pt;}
.ws155{word-spacing:-11.865600pt;}
.ws4f{word-spacing:-10.810240pt;}
.ws153{word-spacing:-10.801728pt;}
.ws36{word-spacing:-10.626800pt;}
.ws7{word-spacing:-9.298400pt;}
.ws15f{word-spacing:-6.479243pt;}
.wsa0{word-spacing:-3.613103pt;}
.ws9f{word-spacing:-2.922363pt;}
.ws98{word-spacing:-2.832320pt;}
.ws8f{word-spacing:-2.826976pt;}
.wsc6{word-spacing:-2.709827pt;}
.ws12c{word-spacing:-2.603559pt;}
.ws16f{word-spacing:-2.484960pt;}
.ws16e{word-spacing:-2.458240pt;}
.wsbb{word-spacing:-2.444158pt;}
.wsd9{word-spacing:-2.391024pt;}
.ws101{word-spacing:-2.231622pt;}
.ws43{word-spacing:-2.178489pt;}
.ws9b{word-spacing:-2.169664pt;}
.ws80{word-spacing:-2.148288pt;}
.wsee{word-spacing:-2.125355pt;}
.ws170{word-spacing:-2.110880pt;}
.ws18a{word-spacing:-2.104115pt;}
.wse1{word-spacing:-2.019087pt;}
.ws93{word-spacing:-1.859712pt;}
.ws12e{word-spacing:-1.859685pt;}
.ws7f{word-spacing:-1.832992pt;}
.ws81{word-spacing:-1.811616pt;}
.wsdf{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.696326pt;}
.ws124{word-spacing:-1.694640pt;}
.ws117{word-spacing:-1.683600pt;}
.ws118{word-spacing:-1.661520pt;}
.ws9d{word-spacing:-1.594016pt;}
.ws7d{word-spacing:-1.555104pt;}
.ws7e{word-spacing:-1.507008pt;}
.ws7c{word-spacing:-1.496320pt;}
.ws6e{word-spacing:-1.442880pt;}
.ws9e{word-spacing:-1.434614pt;}
.wsbc{word-spacing:-1.381481pt;}
.wsdc{word-spacing:-1.328347pt;}
.ws6d{word-spacing:-1.234464pt;}
.ws19e{word-spacing:-1.195520pt;}
.ws3{word-spacing:-1.175671pt;}
.ws24{word-spacing:-1.168945pt;}
.wsae{word-spacing:-1.062677pt;}
.ws15{word-spacing:-1.052058pt;}
.wsa2{word-spacing:-1.009543pt;}
.ws128{word-spacing:-0.988080pt;}
.ws9c{word-spacing:-0.956410pt;}
.ws129{word-spacing:-0.932880pt;}
.ws4c{word-spacing:-0.903276pt;}
.wsa1{word-spacing:-0.850142pt;}
.ws2c{word-spacing:-0.797008pt;}
.ws4b{word-spacing:-0.743874pt;}
.ws12a{word-spacing:-0.623760pt;}
.ws197{word-spacing:-0.621670pt;}
.wsa3{word-spacing:-0.597451pt;}
.wsfd{word-spacing:-0.584473pt;}
.wsfe{word-spacing:-0.569385pt;}
.wsff{word-spacing:-0.561552pt;}
.wsa6{word-spacing:-0.531339pt;}
.ws172{word-spacing:-0.529056pt;}
.ws21{word-spacing:-0.478208pt;}
.ws171{word-spacing:-0.470272pt;}
.ws14a{word-spacing:-0.425071pt;}
.ws34{word-spacing:-0.371937pt;}
.ws4e{word-spacing:-0.318803pt;}
.ws92{word-spacing:-0.288576pt;}
.ws184{word-spacing:-0.286925pt;}
.ws107{word-spacing:-0.269192pt;}
.ws27{word-spacing:-0.265669pt;}
.ws181{word-spacing:-0.263566pt;}
.ws183{word-spacing:-0.260608pt;}
.ws182{word-spacing:-0.257094pt;}
.ws89{word-spacing:-0.245824pt;}
.ws1ad{word-spacing:-0.239104pt;}
.ws68{word-spacing:-0.238336pt;}
.ws16b{word-spacing:-0.234080pt;}
.ws119{word-spacing:-0.220800pt;}
.ws5a{word-spacing:-0.212535pt;}
.ws11a{word-spacing:-0.193200pt;}
.ws187{word-spacing:-0.191283pt;}
.ws13d{word-spacing:-0.190722pt;}
.wsb5{word-spacing:-0.177173pt;}
.wsb6{word-spacing:-0.177034pt;}
.wsb7{word-spacing:-0.174654pt;}
.ws115{word-spacing:-0.159786pt;}
.ws28{word-spacing:-0.159402pt;}
.ws11b{word-spacing:-0.149040pt;}
.ws112{word-spacing:-0.147494pt;}
.ws19{word-spacing:-0.143462pt;}
.ws58{word-spacing:-0.138614pt;}
.ws59{word-spacing:-0.138605pt;}
.ws106{word-spacing:-0.137043pt;}
.wsef{word-spacing:-0.131150pt;}
.ws13a{word-spacing:-0.127522pt;}
.ws67{word-spacing:-0.123424pt;}
.ws16a{word-spacing:-0.119168pt;}
.ws26{word-spacing:-0.106268pt;}
.ws18b{word-spacing:-0.095642pt;}
.ws14f{word-spacing:-0.085183pt;}
.ws150{word-spacing:-0.082116pt;}
.ws41{word-spacing:-0.063045pt;}
.ws42{word-spacing:-0.055103pt;}
.ws40{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws8a{word-spacing:-0.042752pt;}
.ws12{word-spacing:-0.042507pt;}
.ws194{word-spacing:-0.034563pt;}
.ws195{word-spacing:-0.032154pt;}
.ws19d{word-spacing:-0.021581pt;}
.wsc9{word-spacing:-0.005018pt;}
.ws1b8{word-spacing:-0.004523pt;}
.wsea{word-spacing:-0.004420pt;}
.ws105{word-spacing:-0.004379pt;}
.wse8{word-spacing:-0.003328pt;}
.ws139{word-spacing:-0.002901pt;}
.ws137{word-spacing:-0.002807pt;}
.ws1a2{word-spacing:-0.002654pt;}
.wsf1{word-spacing:-0.002406pt;}
.ws103{word-spacing:-0.002201pt;}
.ws1b6{word-spacing:-0.002193pt;}
.wse9{word-spacing:-0.001801pt;}
.ws104{word-spacing:-0.001770pt;}
.ws136{word-spacing:-0.001766pt;}
.ws192{word-spacing:-0.001724pt;}
.ws1b1{word-spacing:-0.001126pt;}
.ws1b7{word-spacing:-0.000717pt;}
.ws35{word-spacing:-0.000364pt;}
.ws102{word-spacing:-0.000013pt;}
.ws1{word-spacing:0.000000pt;}
.wse4{word-spacing:0.000316pt;}
.wscd{word-spacing:0.001015pt;}
.ws6{word-spacing:0.001465pt;}
.ws133{word-spacing:0.001775pt;}
.wsf2{word-spacing:0.002927pt;}
.ws70{word-spacing:0.016032pt;}
.ws1a7{word-spacing:0.025200pt;}
.ws1a9{word-spacing:0.025795pt;}
.ws90{word-spacing:0.026720pt;}
.ws1a8{word-spacing:0.040388pt;}
.ws10e{word-spacing:0.040480pt;}
.wsec{word-spacing:0.042507pt;}
.ws16{word-spacing:0.047821pt;}
.ws62{word-spacing:0.052623pt;}
.ws38{word-spacing:0.053134pt;}
.wsf0{word-spacing:0.056465pt;}
.ws6c{word-spacing:0.058784pt;}
.ws17{word-spacing:0.067134pt;}
.ws6a{word-spacing:0.091200pt;}
.ws14{word-spacing:0.095642pt;}
.ws2b{word-spacing:0.106268pt;}
.ws5e{word-spacing:0.115126pt;}
.ws5f{word-spacing:0.115401pt;}
.ws1b9{word-spacing:0.116570pt;}
.ws1bb{word-spacing:0.117486pt;}
.ws109{word-spacing:0.126960pt;}
.ws60{word-spacing:0.131492pt;}
.ws61{word-spacing:0.132767pt;}
.ws69{word-spacing:0.134400pt;}
.ws1ba{word-spacing:0.135676pt;}
.ws10a{word-spacing:0.138000pt;}
.ws196{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws91{word-spacing:0.171008pt;}
.ws100{word-spacing:0.180920pt;}
.ws8{word-spacing:0.185968pt;}
.ws108{word-spacing:0.187680pt;}
.ws1b{word-spacing:0.191283pt;}
.ws111{word-spacing:0.196659pt;}
.ws3e{word-spacing:0.198257pt;}
.ws3f{word-spacing:0.200906pt;}
.ws37{word-spacing:0.212535pt;}
.ws113{word-spacing:0.215096pt;}
.ws114{word-spacing:0.227387pt;}
.wsfc{word-spacing:0.239104pt;}
.ws6f{word-spacing:0.251168pt;}
.wscf{word-spacing:0.255043pt;}
.wsa{word-spacing:0.260355pt;}
.ws3a{word-spacing:0.265669pt;}
.ws19f{word-spacing:0.286925pt;}
.wsde{word-spacing:0.318803pt;}
.ws10d{word-spacing:0.350299pt;}
.ws71{word-spacing:0.352704pt;}
.ws13e{word-spacing:0.371937pt;}
.ws96{word-spacing:0.406144pt;}
.wsb1{word-spacing:0.425071pt;}
.ws63{word-spacing:0.505333pt;}
.wsc5{word-spacing:0.505600pt;}
.ws1b4{word-spacing:0.526029pt;}
.ws20{word-spacing:0.573850pt;}
.ws64{word-spacing:0.584473pt;}
.wsc0{word-spacing:0.637606pt;}
.wsc4{word-spacing:0.660267pt;}
.ws1a3{word-spacing:0.669491pt;}
.ws66{word-spacing:0.690740pt;}
.ws1c{word-spacing:0.717312pt;}
.ws4d{word-spacing:0.743874pt;}
.ws193{word-spacing:0.765133pt;}
.wsab{word-spacing:0.797008pt;}
.ws1a4{word-spacing:0.860774pt;}
.wsa5{word-spacing:1.009543pt;}
.ws18e{word-spacing:1.052058pt;}
.ws47{word-spacing:1.062677pt;}
.ws177{word-spacing:1.080000pt;}
.ws17e{word-spacing:1.089600pt;}
.ws17a{word-spacing:1.094400pt;}
.ws178{word-spacing:1.099200pt;}
.ws1b2{word-spacing:1.099878pt;}
.ws179{word-spacing:1.108800pt;}
.ws17b{word-spacing:1.118400pt;}
.ws17d{word-spacing:1.166400pt;}
.ws4a{word-spacing:1.168945pt;}
.ws17c{word-spacing:1.176000pt;}
.ws49{word-spacing:1.222079pt;}
.ws190{word-spacing:1.291162pt;}
.ws6b{word-spacing:1.314624pt;}
.ws8e{word-spacing:1.319968pt;}
.ws12d{word-spacing:1.328347pt;}
.ws1b3{word-spacing:1.338982pt;}
.ws13f{word-spacing:1.381481pt;}
.wsda{word-spacing:1.434614pt;}
.ws152{word-spacing:1.487748pt;}
.wsed{word-spacing:1.530259pt;}
.ws3d{word-spacing:1.540882pt;}
.ws188{word-spacing:1.578086pt;}
.wsac{word-spacing:1.594016pt;}
.ws75{word-spacing:1.619232pt;}
.ws7b{word-spacing:1.635264pt;}
.ws7a{word-spacing:1.656640pt;}
.ws77{word-spacing:1.672672pt;}
.ws165{word-spacing:1.673728pt;}
.ws79{word-spacing:1.699392pt;}
.ws12b{word-spacing:1.700284pt;}
.ws1f{word-spacing:1.721549pt;}
.ws48{word-spacing:1.753418pt;}
.ws76{word-spacing:1.758176pt;}
.ws9{word-spacing:1.785293pt;}
.ws45{word-spacing:1.806551pt;}
.ws189{word-spacing:1.817190pt;}
.wsc3{word-spacing:1.859685pt;}
.ws186{word-spacing:1.865011pt;}
.ws30{word-spacing:1.912819pt;}
.ws1a0{word-spacing:1.912832pt;}
.ws8c{word-spacing:1.950560pt;}
.ws164{word-spacing:1.960653pt;}
.ws2f{word-spacing:1.965953pt;}
.ws11d{word-spacing:1.987200pt;}
.ws11f{word-spacing:1.992720pt;}
.ws11e{word-spacing:2.009280pt;}
.ws78{word-spacing:2.014688pt;}
.wsd7{word-spacing:2.019087pt;}
.ws11c{word-spacing:2.047920pt;}
.ws1a{word-spacing:2.056294pt;}
.ws9a{word-spacing:2.057440pt;}
.wsa7{word-spacing:2.072221pt;}
.ws99{word-spacing:2.084160pt;}
.wsc1{word-spacing:2.125355pt;}
.wsb8{word-spacing:2.178489pt;}
.ws97{word-spacing:2.271200pt;}
.ws82{word-spacing:2.276544pt;}
.ws46{word-spacing:2.284756pt;}
.wsbe{word-spacing:2.331935pt;}
.wsb0{word-spacing:2.337890pt;}
.wsbf{word-spacing:2.339982pt;}
.ws83{word-spacing:2.340672pt;}
.ws1d{word-spacing:2.343219pt;}
.wsbd{word-spacing:2.391024pt;}
.ws1b5{word-spacing:2.391040pt;}
.ws19b{word-spacing:2.438861pt;}
.wse0{word-spacing:2.444158pt;}
.ws44{word-spacing:2.497292pt;}
.ws142{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws1ae{word-spacing:2.582323pt;}
.wsdb{word-spacing:2.603559pt;}
.ws16d{word-spacing:2.639936pt;}
.ws16c{word-spacing:2.661312pt;}
.wsba{word-spacing:2.709827pt;}
.ws1ab{word-spacing:2.773606pt;}
.wsd1{word-spacing:2.816095pt;}
.ws22{word-spacing:2.861926pt;}
.ws18c{word-spacing:2.864486pt;}
.ws18f{word-spacing:2.867149pt;}
.ws1ac{word-spacing:2.867200pt;}
.ws198{word-spacing:2.868386pt;}
.ws2d{word-spacing:2.869229pt;}
.ws18d{word-spacing:2.869248pt;}
.ws1a1{word-spacing:2.869794pt;}
.ws1aa{word-spacing:2.920231pt;}
.wsa4{word-spacing:2.922363pt;}
.wsdd{word-spacing:2.975497pt;}
.ws3c{word-spacing:3.028630pt;}
.ws199{word-spacing:3.060531pt;}
.wsaf{word-spacing:3.081764pt;}
.ws19a{word-spacing:3.108352pt;}
.ws116{word-spacing:3.118800pt;}
.wsb2{word-spacing:3.134898pt;}
.ws23{word-spacing:3.188032pt;}
.ws74{word-spacing:3.195712pt;}
.wsad{word-spacing:3.241166pt;}
.ws8d{word-spacing:3.265184pt;}
.ws72{word-spacing:3.270528pt;}
.ws73{word-spacing:3.281216pt;}
.ws146{word-spacing:3.294300pt;}
.ws148{word-spacing:3.302074pt;}
.ws149{word-spacing:3.303630pt;}
.ws147{word-spacing:3.304484pt;}
.wsd3{word-spacing:3.400567pt;}
.ws95{word-spacing:3.414816pt;}
.ws94{word-spacing:3.425504pt;}
.wsfb{word-spacing:3.443098pt;}
.ws39{word-spacing:3.453701pt;}
.ws125{word-spacing:3.466560pt;}
.ws126{word-spacing:3.483120pt;}
.ws1b0{word-spacing:3.490918pt;}
.ws3b{word-spacing:3.506835pt;}
.ws127{word-spacing:3.554880pt;}
.ws33{word-spacing:3.613103pt;}
.ws17f{word-spacing:3.676800pt;}
.ws180{word-spacing:3.691200pt;}
.ws19c{word-spacing:3.730022pt;}
.wsd2{word-spacing:3.772505pt;}
.ws121{word-spacing:3.803280pt;}
.ws122{word-spacing:3.814320pt;}
.wsc2{word-spacing:3.825638pt;}
.ws123{word-spacing:3.847440pt;}
.ws120{word-spacing:3.875040pt;}
.ws140{word-spacing:3.878772pt;}
.ws8b{word-spacing:3.890432pt;}
.ws130{word-spacing:3.931906pt;}
.ws14d{word-spacing:3.985040pt;}
.wsd8{word-spacing:4.091308pt;}
.ws84{word-spacing:4.216416pt;}
.ws85{word-spacing:4.221760pt;}
.ws14b{word-spacing:4.303843pt;}
.ws167{word-spacing:4.399514pt;}
.ws2a{word-spacing:4.410111pt;}
.ws1af{word-spacing:4.447334pt;}
.ws176{word-spacing:4.588800pt;}
.ws175{word-spacing:4.612800pt;}
.wsd5{word-spacing:4.622646pt;}
.ws174{word-spacing:4.636800pt;}
.wsfa{word-spacing:4.686438pt;}
.wsaa{word-spacing:4.782048pt;}
.ws5b{word-spacing:4.835182pt;}
.ws5c{word-spacing:4.836510pt;}
.ws5d{word-spacing:4.840884pt;}
.ws12f{word-spacing:4.888316pt;}
.ws86{word-spacing:4.916480pt;}
.ws87{word-spacing:4.975264pt;}
.wsf9{word-spacing:5.021184pt;}
.wsd6{word-spacing:5.047717pt;}
.ws151{word-spacing:5.153985pt;}
.ws14e{word-spacing:5.313387pt;}
.ws169{word-spacing:5.355930pt;}
.wsd0{word-spacing:5.366521pt;}
.ws168{word-spacing:5.371521pt;}
.ws10{word-spacing:5.393072pt;}
.ws14c{word-spacing:5.419654pt;}
.ws191{word-spacing:5.451571pt;}
.ws11{word-spacing:5.467459pt;}
.wsa9{word-spacing:5.579056pt;}
.wsa8{word-spacing:5.632190pt;}
.ws2e{word-spacing:5.685324pt;}
.wsb9{word-spacing:5.791591pt;}
.ws1a6{word-spacing:5.834138pt;}
.ws65{word-spacing:5.843200pt;}
.ws29{word-spacing:5.844725pt;}
.ws145{word-spacing:6.057261pt;}
.ws144{word-spacing:6.110395pt;}
.ws143{word-spacing:6.163529pt;}
.ws13c{word-spacing:6.248275pt;}
.ws13b{word-spacing:6.269796pt;}
.ws57{word-spacing:6.376064pt;}
.ws32{word-spacing:6.535466pt;}
.wsb3{word-spacing:6.641733pt;}
.ws141{word-spacing:6.907403pt;}
.ws1a5{word-spacing:7.316582pt;}
.ws31{word-spacing:7.385607pt;}
.wsd4{word-spacing:7.651277pt;}
.wse{word-spacing:7.699075pt;}
.ws173{word-spacing:8.032032pt;}
.ws88{word-spacing:11.559072pt;}
.ws5{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsd{word-spacing:15.732893pt;}
.ws166{word-spacing:16.498176pt;}
.wsb4{word-spacing:23.591437pt;}
.wsf{word-spacing:24.399002pt;}
.ws162{word-spacing:25.829650pt;}
.ws159{word-spacing:35.353622pt;}
.ws158{word-spacing:46.892247pt;}
.ws15b{word-spacing:75.479951pt;}
.ws135{word-spacing:82.538701pt;}
.wscb{word-spacing:94.493901pt;}
.ws132{word-spacing:99.089297pt;}
.wsc8{word-spacing:99.754189pt;}
.ws138{word-spacing:106.449101pt;}
.wse7{word-spacing:110.226944pt;}
.ws10c{word-spacing:112.052725pt;}
.wse5{word-spacing:114.961203pt;}
.wse3{word-spacing:118.930330pt;}
.wscc{word-spacing:119.647642pt;}
.ws134{word-spacing:122.185882pt;}
.wseb{word-spacing:122.229965pt;}
.wsca{word-spacing:130.930014pt;}
.wsf3{word-spacing:134.137344pt;}
.wse6{word-spacing:138.871603pt;}
.ws10f{word-spacing:160.725877pt;}
.ws15d{word-spacing:177.904992pt;}
.wsce{word-spacing:180.122675pt;}
.ws110{word-spacing:182.438282pt;}
.ws157{word-spacing:197.208239pt;}
.wsf8{word-spacing:207.181049pt;}
.ws156{word-spacing:217.422003pt;}
.wsf7{word-spacing:227.395571pt;}
.ws15c{word-spacing:240.395596pt;}
.wsc7{word-spacing:428.043981pt;}
.ws131{word-spacing:447.267942pt;}
.ws15a{word-spacing:469.637572pt;}
.ws10b{word-spacing:478.533290pt;}
.wse2{word-spacing:485.668045pt;}
.ws161{word-spacing:495.814024pt;}
._4d{margin-left:-130.366613pt;}
._47{margin-left:-93.198024pt;}
._4c{margin-left:-81.423054pt;}
._4a{margin-left:-61.554330pt;}
._4b{margin-left:-55.660699pt;}
._48{margin-left:-52.135913pt;}
._46{margin-left:-44.617056pt;}
._49{margin-left:-41.679459pt;}
._44{margin-left:-40.325955pt;}
._45{margin-left:-33.948294pt;}
._42{margin-left:-30.388520pt;}
._41{margin-left:-22.420621pt;}
._43{margin-left:-19.967054pt;}
._6d{margin-left:-17.969974pt;}
._3e{margin-left:-12.590422pt;}
._9{margin-left:-6.248558pt;}
._a{margin-left:-4.675792pt;}
._17{margin-left:-3.712644pt;}
._3{margin-left:-2.752326pt;}
._1{margin-left:-1.175671pt;}
._2{width:0.969929pt;}
._6{width:2.045648pt;}
._70{width:3.368383pt;}
._72{width:6.309648pt;}
._15{width:9.661943pt;}
._5{width:11.530016pt;}
._7{width:12.636121pt;}
._71{width:13.648724pt;}
._b{width:14.593468pt;}
._e{width:16.171554pt;}
._13{width:17.919566pt;}
._f{width:18.862523pt;}
._d{width:20.276019pt;}
._c{width:22.081485pt;}
._4{width:23.057899pt;}
._57{width:24.481271pt;}
._10{width:25.557390pt;}
._59{width:27.423802pt;}
._8{width:29.011008pt;}
._5a{width:30.415808pt;}
._16{width:31.526405pt;}
._62{width:32.730462pt;}
._3d{width:35.455042pt;}
._6c{width:37.565644pt;}
._3f{width:40.480000pt;}
._51{width:51.555438pt;}
._6f{width:54.993920pt;}
._54{width:69.414552pt;}
._4e{width:73.482939pt;}
._0{width:74.938320pt;}
._6e{width:78.904320pt;}
._40{width:86.560776pt;}
._61{width:87.708774pt;}
._24{width:89.807462pt;}
._4f{width:98.068400pt;}
._50{width:100.420819pt;}
._22{width:105.157939pt;}
._27{width:106.401280pt;}
._1d{width:107.740262pt;}
._19{width:113.048371pt;}
._5e{width:114.737949pt;}
._5f{width:115.677937pt;}
._25{width:118.404301pt;}
._26{width:119.695462pt;}
._36{width:120.938803pt;}
._1f{width:122.182144pt;}
._5d{width:125.031955pt;}
._37{width:126.156474pt;}
._5c{width:127.695770pt;}
._1b{width:130.244599pt;}
._3b{width:131.156605pt;}
._2d{width:132.272333pt;}
._31{width:134.232986pt;}
._3a{width:135.758048pt;}
._1c{width:136.709261pt;}
._52{width:137.748495pt;}
._55{width:139.823463pt;}
._53{width:140.855237pt;}
._60{width:141.806334pt;}
._28{width:143.605862pt;}
._1a{width:144.897024pt;}
._30{width:146.044723pt;}
._1e{width:146.963725pt;}
._2e{width:149.999616pt;}
._21{width:150.922445pt;}
._35{width:153.648230pt;}
._38{width:155.449372pt;}
._29{width:158.047744pt;}
._34{width:165.603430pt;}
._2b{width:169.089146pt;}
._33{width:170.295072pt;}
._39{width:177.279991pt;}
._2f{width:179.519283pt;}
._2a{width:186.161171pt;}
._20{width:188.791315pt;}
._32{width:191.474483pt;}
._23{width:223.652678pt;}
._64{width:236.897969pt;}
._56{width:240.323130pt;}
._67{width:242.668277pt;}
._65{width:245.704042pt;}
._6b{width:249.635763pt;}
._66{width:251.474350pt;}
._6a{width:261.764319pt;}
._68{width:264.644981pt;}
._69{width:271.361446pt;}
._11{width:613.110771pt;}
._5b{width:751.456051pt;}
._18{width:789.856154pt;}
._2c{width:828.256256pt;}
._63{width:1813.328384pt;}
._14{width:1835.608544pt;}
._3c{width:2109.015700pt;}
._58{width:2156.343733pt;}
._12{width:2177.597067pt;}
.fs12{font-size:31.880533pt;}
.fsf{font-size:32.000000pt;}
.fs1d{font-size:32.357333pt;}
.fs11{font-size:33.219200pt;}
.fs17{font-size:33.856000pt;}
.fs1f{font-size:34.928533pt;}
.fs16{font-size:36.800000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs8{font-size:38.755733pt;}
.fsa{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs1c{font-size:47.066133pt;}
.fs7{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs21{font-size:48.727467pt;}
.fs13{font-size:48.944000pt;}
.fs10{font-size:49.829333pt;}
.fs18{font-size:50.577307pt;}
.fs1e{font-size:50.805333pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs14{font-size:55.200000pt;}
.fsb{font-size:55.365867pt;}
.fs1a{font-size:55.972187pt;}
.fs20{font-size:58.707733pt;}
.fs15{font-size:61.456000pt;}
.fs19{font-size:63.215653pt;}
.fs1b{font-size:67.436000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:104.147056pt;}
.ya9{bottom:-600.956981pt;}
.ya8{bottom:-583.917637pt;}
.ya7{bottom:-566.798133pt;}
.ya6{bottom:-549.758789pt;}
.ya5{bottom:-532.639285pt;}
.ya4{bottom:-515.519781pt;}
.ya3{bottom:-498.480437pt;}
.ya2{bottom:-481.360933pt;}
.ya0{bottom:-481.350165pt;}
.ya1{bottom:-478.000933pt;}
.y9f{bottom:-464.310821pt;}
.y9e{bottom:-447.191317pt;}
.y9d{bottom:-430.071813pt;}
.y9c{bottom:-413.032469pt;}
.y9b{bottom:-395.912965pt;}
.y9a{bottom:-378.793461pt;}
.y99{bottom:-357.752797pt;}
.y98{bottom:-324.633357pt;}
.y97{bottom:-307.594013pt;}
.y96{bottom:-290.474509pt;}
.y95{bottom:-273.355005pt;}
.y94{bottom:-256.315661pt;}
.y93{bottom:-239.196157pt;}
.y92{bottom:-222.155477pt;}
.y91{bottom:-205.035973pt;}
.y90{bottom:-187.916469pt;}
.y8f{bottom:-170.877125pt;}
.y8e{bottom:-153.757621pt;}
.y8d{bottom:-136.718277pt;}
.y8c{bottom:-119.598773pt;}
.y26a{bottom:-117.484933pt;}
.y1dd{bottom:-107.255593pt;}
.y8b{bottom:-102.479269pt;}
.y1dc{bottom:-89.591593pt;}
.y8a{bottom:-85.439925pt;}
.y269{bottom:-82.285600pt;}
.y1db{bottom:-71.927593pt;}
.y89{bottom:-68.320421pt;}
.y268{bottom:-66.925600pt;}
.y1da{bottom:-54.171133pt;}
.y267{bottom:-51.485200pt;}
.y88{bottom:-47.200933pt;}
.y1d9{bottom:-36.414673pt;}
.y266{bottom:-36.044800pt;}
.y265{bottom:-20.684800pt;}
.y1d8{bottom:-18.750673pt;}
.y87{bottom:-14.480933pt;}
.y264{bottom:-0.763085pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y1d7{bottom:4.157327pt;}
.y29f{bottom:5.075400pt;}
.y86{bottom:5.439067pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:15.478130pt;}
.y1fa{bottom:18.415933pt;}
.y29e{bottom:25.715067pt;}
.y4b{bottom:28.346667pt;}
.y1ef{bottom:36.633480pt;}
.y2a0{bottom:44.675617pt;}
.y1f0{bottom:60.277531pt;}
.y2b6{bottom:63.714316pt;}
.y2b2{bottom:66.113906pt;}
.y2b0{bottom:71.713823pt;}
.y2b5{bottom:74.834688pt;}
.y2e5{bottom:80.470667pt;}
.y2bb{bottom:82.834195pt;}
.y2a9{bottom:82.835068pt;}
.y16c{bottom:83.594667pt;}
.y2ab{bottom:83.634059pt;}
.y1f1{bottom:83.829228pt;}
.y257{bottom:85.476000pt;}
.y2a1{bottom:88.355502pt;}
.y2bc{bottom:89.954377pt;}
.y30f{bottom:90.497333pt;}
.y20{bottom:91.398667pt;}
.y10b{bottom:92.050667pt;}
.y4a{bottom:92.108000pt;}
.y214{bottom:92.822667pt;}
.y143{bottom:94.044000pt;}
.y220{bottom:94.441333pt;}
.y2bf{bottom:94.674968pt;}
.y2b8{bottom:96.273822pt;}
.yd3{bottom:96.873333pt;}
.y2e4{bottom:97.208000pt;}
.y16b{bottom:100.332000pt;}
.y2ba{bottom:101.073875pt;}
.y256{bottom:102.213333pt;}
.y2b1{bottom:102.673602pt;}
.y2af{bottom:103.473466pt;}
.y2aa{bottom:104.994603pt;}
.y30e{bottom:105.840000pt;}
.y2ad{bottom:106.593457pt;}
.y1f{bottom:107.298667pt;}
.y345{bottom:107.393333pt;}
.y2a8{bottom:107.395067pt;}
.y1f2{bottom:107.473279pt;}
.y10a{bottom:108.788000pt;}
.y49{bottom:108.844000pt;}
.y2b3{bottom:108.993920pt;}
.y212{bottom:109.560000pt;}
.y142{bottom:110.780000pt;}
.y21f{bottom:111.178667pt;}
.yd1{bottom:113.610667pt;}
.y2e3{bottom:113.945333pt;}
.y213{bottom:114.382667pt;}
.y2ae{bottom:114.593837pt;}
.y2cb{bottom:116.114102pt;}
.y16a{bottom:117.069333pt;}
.yd2{bottom:118.433333pt;}
.y255{bottom:118.950667pt;}
.y2cf{bottom:119.313555pt;}
.y30d{bottom:121.182667pt;}
.y2b7{bottom:121.714019pt;}
.y344{bottom:122.736000pt;}
.y1e{bottom:123.200000pt;}
.y2ac{bottom:123.313746pt;}
.y2b4{bottom:124.914346pt;}
.y109{bottom:125.525333pt;}
.y48{bottom:125.581333pt;}
.y2c0{bottom:125.634747pt;}
.y211{bottom:126.297333pt;}
.y2b9{bottom:126.433737pt;}
.y141{bottom:127.517333pt;}
.y21e{bottom:127.916000pt;}
.yd0{bottom:130.348000pt;}
.y2e2{bottom:130.681333pt;}
.y1f3{bottom:131.024976pt;}
.y2a2{bottom:132.035388pt;}
.y1fd{bottom:132.129327pt;}
.y169{bottom:133.806667pt;}
.y254{bottom:135.688000pt;}
.y30c{bottom:136.524000pt;}
.y343{bottom:138.078667pt;}
.y1d{bottom:139.100000pt;}
.y342{bottom:140.948000pt;}
.y108{bottom:142.262667pt;}
.y47{bottom:142.318667pt;}
.y210{bottom:143.034667pt;}
.y140{bottom:144.254667pt;}
.y21d{bottom:144.653333pt;}
.y187{bottom:145.052000pt;}
.y2c3{bottom:145.554489pt;}
.y2be{bottom:146.274890pt;}
.yce{bottom:147.085333pt;}
.y2e1{bottom:147.418667pt;}
.y168{bottom:150.544000pt;}
.y30b{bottom:151.866667pt;}
.y2c5{bottom:151.874807pt;}
.ycf{bottom:151.908000pt;}
.y252{bottom:152.425333pt;}
.y1fb{bottom:153.381327pt;}
.y341{bottom:153.421333pt;}
.y2ce{bottom:153.473661pt;}
.y1f4{bottom:154.669027pt;}
.y1c{bottom:155.000000pt;}
.y1c0{bottom:155.773333pt;}
.y253{bottom:157.246667pt;}
.y1fc{bottom:157.521480pt;}
.y46{bottom:159.056000pt;}
.y2a7{bottom:159.315200pt;}
.y20f{bottom:159.772000pt;}
.y2c7{bottom:159.793979pt;}
.y2cd{bottom:160.593843pt;}
.y13f{bottom:160.992000pt;}
.y21c{bottom:161.390667pt;}
.y186{bottom:161.789333pt;}
.y2cc{bottom:162.193569pt;}
.y82{bottom:162.570667pt;}
.y107{bottom:162.985333pt;}
.y2ca{bottom:162.994306pt;}
.ycd{bottom:163.822667pt;}
.y2e0{bottom:164.156000pt;}
.y30a{bottom:167.209333pt;}
.y167{bottom:167.281333pt;}
.y1be{bottom:168.392000pt;}
.y340{bottom:168.762667pt;}
.y251{bottom:169.162667pt;}
.y1b{bottom:170.901333pt;}
.y1bf{bottom:172.250667pt;}
.y2c1{bottom:173.314814pt;}
.y2a3{bottom:175.715273pt;}
.y45{bottom:175.793333pt;}
.y20e{bottom:176.509333pt;}
.y13e{bottom:177.729333pt;}
.y21b{bottom:178.128000pt;}
.y1f5{bottom:178.220723pt;}
.y185{bottom:178.526667pt;}
.y81{bottom:179.308000pt;}
.ycb{bottom:180.560000pt;}
.y2de{bottom:180.893333pt;}
.y1bc{bottom:181.012000pt;}
.y309{bottom:182.552000pt;}
.y166{bottom:184.018667pt;}
.y33f{bottom:184.105333pt;}
.y1bd{bottom:184.869333pt;}
.ycc{bottom:185.382667pt;}
.y2df{bottom:185.716000pt;}
.y250{bottom:185.900000pt;}
.y1a{bottom:186.801333pt;}
.y2c2{bottom:191.554495pt;}
.y44{bottom:192.530667pt;}
.y106{bottom:192.873333pt;}
.y20d{bottom:193.246667pt;}
.y13d{bottom:194.466667pt;}
.y21a{bottom:194.865333pt;}
.y184{bottom:195.264000pt;}
.y80{bottom:196.045333pt;}
.y2bd{bottom:197.154412pt;}
.yca{bottom:197.297333pt;}
.y2dd{bottom:197.630667pt;}
.y308{bottom:197.894667pt;}
.y33e{bottom:199.448000pt;}
.y165{bottom:200.756000pt;}
.y1bb{bottom:201.232000pt;}
.y1f6{bottom:201.864774pt;}
.y24f{bottom:202.637333pt;}
.y19{bottom:202.701333pt;}
.y2c6{bottom:206.674183pt;}
.y43{bottom:209.268000pt;}
.y105{bottom:209.610667pt;}
.y20c{bottom:209.984000pt;}
.y13c{bottom:211.204000pt;}
.y219{bottom:211.602667pt;}
.y183{bottom:212.001333pt;}
.y7f{bottom:212.782667pt;}
.y307{bottom:213.237333pt;}
.yc9{bottom:214.034667pt;}
.y33d{bottom:214.790667pt;}
.y2c4{bottom:215.394092pt;}
.y1ba{bottom:215.844000pt;}
.y164{bottom:217.493333pt;}
.y2dc{bottom:218.353333pt;}
.y24e{bottom:219.374667pt;}
.y2a4{bottom:220.115324pt;}
.y1f7{bottom:225.416471pt;}
.y42{bottom:226.005333pt;}
.y104{bottom:226.348000pt;}
.y20b{bottom:226.721333pt;}
.y13b{bottom:227.941333pt;}
.y218{bottom:228.340000pt;}
.y306{bottom:228.580000pt;}
.y182{bottom:228.738667pt;}
.y7e{bottom:229.520000pt;}
.y33c{bottom:230.133333pt;}
.y1b9{bottom:230.454667pt;}
.yc7{bottom:230.772000pt;}
.y2c8{bottom:232.034045pt;}
.y163{bottom:234.230667pt;}
.yc8{bottom:235.593333pt;}
.y24d{bottom:236.110667pt;}
.y41{bottom:242.742667pt;}
.y102{bottom:243.085333pt;}
.y20a{bottom:243.458667pt;}
.y305{bottom:243.922667pt;}
.y2d4{bottom:244.195210pt;}
.y1b8{bottom:245.066667pt;}
.y217{bottom:245.077333pt;}
.y181{bottom:245.476000pt;}
.y7d{bottom:246.257333pt;}
.yc6{bottom:247.509333pt;}
.y103{bottom:247.906667pt;}
.y2db{bottom:248.057333pt;}
.y13a{bottom:248.664000pt;}
.y1f8{bottom:249.060522pt;}
.y162{bottom:250.968000pt;}
.y24c{bottom:252.848000pt;}
.y304{bottom:259.264000pt;}
.y40{bottom:259.480000pt;}
.y1b7{bottom:259.678667pt;}
.y101{bottom:259.822667pt;}
.y33b{bottom:260.818667pt;}
.y216{bottom:261.814667pt;}
.y180{bottom:262.213333pt;}
.y7c{bottom:262.994667pt;}
.y201{bottom:263.321480pt;}
.y2a5{bottom:263.795209pt;}
.yc5{bottom:264.246667pt;}
.y2d9{bottom:265.152000pt;}
.y2d3{bottom:265.155330pt;}
.y161{bottom:267.705333pt;}
.y2da{bottom:269.492000pt;}
.y24b{bottom:269.585333pt;}
.y1f9{bottom:272.612219pt;}
.y18{bottom:273.154667pt;}
.y209{bottom:273.294667pt;}
.y1b6{bottom:274.290667pt;}
.y303{bottom:274.606667pt;}
.y33a{bottom:276.161333pt;}
.y3f{bottom:276.217333pt;}
.yff{bottom:276.560000pt;}
.y139{bottom:278.552000pt;}
.y17f{bottom:278.950667pt;}
.y7b{bottom:279.732000pt;}
.y2c9{bottom:280.433640pt;}
.yc4{bottom:280.984000pt;}
.y100{bottom:281.381333pt;}
.y2d7{bottom:282.248000pt;}
.y215{bottom:282.537333pt;}
.y160{bottom:284.442667pt;}
.y2d2{bottom:285.795067pt;}
.y24a{bottom:286.322667pt;}
.y2d8{bottom:286.588000pt;}
.y1b5{bottom:288.902667pt;}
.y17{bottom:289.054667pt;}
.y302{bottom:289.949333pt;}
.y208{bottom:290.390667pt;}
.y339{bottom:291.502667pt;}
.y2d1{bottom:291.635067pt;}
.y3e{bottom:292.954667pt;}
.yfe{bottom:293.297333pt;}
.y138{bottom:295.289333pt;}
.y17e{bottom:295.688000pt;}
.y7a{bottom:296.469333pt;}
.yc2{bottom:297.721333pt;}
.y2d6{bottom:299.344000pt;}
.y15f{bottom:301.180000pt;}
.yc3{bottom:302.542667pt;}
.y249{bottom:303.060000pt;}
.y16{bottom:304.954667pt;}
.y301{bottom:305.292000pt;}
.y338{bottom:306.845333pt;}
.y2a6{bottom:307.475095pt;}
.y206{bottom:307.486667pt;}
.y3d{bottom:309.692000pt;}
.y1b3{bottom:309.917333pt;}
.yfd{bottom:310.034667pt;}
.y207{bottom:311.826667pt;}
.y137{bottom:312.026667pt;}
.y17d{bottom:312.425333pt;}
.y79{bottom:313.205333pt;}
.yc1{bottom:314.458667pt;}
.y2d5{bottom:316.440000pt;}
.y1b2{bottom:317.222667pt;}
.y15e{bottom:317.917333pt;}
.y248{bottom:319.797333pt;}
.y2ff{bottom:320.634667pt;}
.y15{bottom:320.856000pt;}
.y337{bottom:322.188000pt;}
.y300{bottom:323.504000pt;}
.y1b4{bottom:324.528000pt;}
.y204{bottom:324.582667pt;}
.y3c{bottom:326.429333pt;}
.yfc{bottom:326.772000pt;}
.y136{bottom:328.764000pt;}
.y205{bottom:328.921333pt;}
.y17c{bottom:329.162667pt;}
.y77{bottom:329.942667pt;}
.y15d{bottom:334.654667pt;}
.y78{bottom:334.765333pt;}
.yc0{bottom:335.181333pt;}
.y2fe{bottom:335.977333pt;}
.y25b{bottom:336.377333pt;}
.y247{bottom:336.534667pt;}
.y1e7{bottom:336.644091pt;}
.y85{bottom:337.039587pt;}
.y336{bottom:337.530667pt;}
.y203{bottom:341.678667pt;}
.y3b{bottom:343.166667pt;}
.y135{bottom:345.501333pt;}
.y1b1{bottom:345.542667pt;}
.y84{bottom:345.759067pt;}
.y17b{bottom:345.900000pt;}
.y76{bottom:346.680000pt;}
.yfb{bottom:347.493333pt;}
.y2fd{bottom:351.320000pt;}
.y15c{bottom:351.390667pt;}
.y335{bottom:352.873333pt;}
.y1de{bottom:353.113327pt;}
.y246{bottom:353.272000pt;}
.y14{bottom:354.688000pt;}
.y202{bottom:358.773333pt;}
.y3a{bottom:359.904000pt;}
.y26c{bottom:361.235627pt;}
.y134{bottom:362.238667pt;}
.y17a{bottom:362.637333pt;}
.y75{bottom:363.417333pt;}
.ybf{bottom:365.069333pt;}
.yfa{bottom:365.426667pt;}
.y2fc{bottom:366.662667pt;}
.y15b{bottom:368.128000pt;}
.y334{bottom:368.216000pt;}
.y245{bottom:370.009333pt;}
.y13{bottom:370.589333pt;}
.y1b0{bottom:373.649333pt;}
.y39{bottom:376.641333pt;}
.y1c1{bottom:378.710667pt;}
.y133{bottom:378.976000pt;}
.y179{bottom:379.374667pt;}
.y74{bottom:380.154667pt;}
.y26b{bottom:380.355067pt;}
.ybe{bottom:381.806667pt;}
.y2fb{bottom:382.005333pt;}
.y1df{bottom:382.921062pt;}
.y333{bottom:383.558667pt;}
.y15a{bottom:384.865333pt;}
.y12{bottom:386.489333pt;}
.y244{bottom:386.746667pt;}
.y38{bottom:393.378667pt;}
.yf9{bottom:395.314667pt;}
.y132{bottom:395.713333pt;}
.y178{bottom:396.112000pt;}
.y72{bottom:396.892000pt;}
.y2fa{bottom:397.346667pt;}
.y26d{bottom:398.035460pt;}
.ybd{bottom:398.544000pt;}
.y332{bottom:398.901333pt;}
.y159{bottom:401.602667pt;}
.y73{bottom:401.714667pt;}
.y243{bottom:403.484000pt;}
.y1af{bottom:405.301333pt;}
.y131{bottom:410.024000pt;}
.y37{bottom:410.116000pt;}
.yf8{bottom:412.052000pt;}
.y130{bottom:412.450667pt;}
.y2f9{bottom:412.689333pt;}
.y1e0{bottom:412.821102pt;}
.y177{bottom:412.848000pt;}
.y70{bottom:413.629333pt;}
.y331{bottom:414.244000pt;}
.ybb{bottom:415.280000pt;}
.y283{bottom:415.555318pt;}
.y27f{bottom:417.715170pt;}
.y11{bottom:418.330667pt;}
.y71{bottom:418.452000pt;}
.ybc{bottom:420.102667pt;}
.y242{bottom:420.221333pt;}
.y1ae{bottom:422.038667pt;}
.y27d{bottom:422.914994pt;}
.y282{bottom:425.795605pt;}
.y1ec{bottom:426.713785pt;}
.yf7{bottom:428.789333pt;}
.y12f{bottom:429.188000pt;}
.y176{bottom:429.585333pt;}
.y6f{bottom:430.366667pt;}
.y36{bottom:430.838667pt;}
.yb9{bottom:432.017333pt;}
.y276{bottom:433.155281pt;}
.y289{bottom:433.156090pt;}
.y158{bottom:433.749333pt;}
.y278{bottom:433.875231pt;}
.yba{bottom:436.840000pt;}
.y241{bottom:436.958667pt;}
.y26e{bottom:438.435852pt;}
.y1e1{bottom:442.628837pt;}
.y1ad{bottom:442.761333pt;}
.y28c{bottom:444.196412pt;}
.y330{bottom:444.928000pt;}
.yf5{bottom:445.526667pt;}
.y285{bottom:445.715589pt;}
.y12e{bottom:445.925333pt;}
.y175{bottom:446.322667pt;}
.y156{bottom:446.369333pt;}
.y6e{bottom:447.104000pt;}
.yb8{bottom:448.754667pt;}
.y288{bottom:450.116186pt;}
.y10{bottom:450.170667pt;}
.y157{bottom:450.226667pt;}
.yf6{bottom:450.348000pt;}
.y27e{bottom:451.555278pt;}
.y1ea{bottom:452.013327pt;}
.y27c{bottom:452.275229pt;}
.y240{bottom:453.696000pt;}
.y277{bottom:453.795215pt;}
.y27a{bottom:455.235116pt;}
.y275{bottom:455.955067pt;}
.y280{bottom:457.475052pt;}
.y286{bottom:457.475861pt;}
.y154{bottom:458.988000pt;}
.y32f{bottom:460.270667pt;}
.y2f8{bottom:461.905333pt;}
.yf4{bottom:462.264000pt;}
.y1eb{bottom:462.593327pt;}
.y27b{bottom:462.594791pt;}
.y12d{bottom:462.662667pt;}
.y155{bottom:462.845333pt;}
.y174{bottom:463.060000pt;}
.y6c{bottom:463.841333pt;}
.y298{bottom:464.036311pt;}
.yb7{bottom:465.492000pt;}
.yf{bottom:466.070667pt;}
.y29d{bottom:466.997007pt;}
.y6d{bottom:468.664000pt;}
.y284{bottom:469.235325pt;}
.y29a{bottom:469.236134pt;}
.y23f{bottom:470.433333pt;}
.y279{bottom:470.675227pt;}
.y1e8{bottom:470.781327pt;}
.y281{bottom:472.115128pt;}
.y1e2{bottom:472.436573pt;}
.y28d{bottom:472.915972pt;}
.y1ac{bottom:473.446667pt;}
.y287{bottom:473.635923pt;}
.y32e{bottom:475.613333pt;}
.y1e9{bottom:475.749327pt;}
.y26f{bottom:478.916256pt;}
.yf3{bottom:479.001333pt;}
.y153{bottom:479.208000pt;}
.y12b{bottom:479.398667pt;}
.y173{bottom:479.797333pt;}
.y6b{bottom:480.578667pt;}
.ye{bottom:481.972000pt;}
.yb5{bottom:482.229333pt;}
.y12c{bottom:484.221333pt;}
.y2f7{bottom:485.497333pt;}
.y1ee{bottom:485.593357pt;}
.y1ab{bottom:486.065333pt;}
.yb6{bottom:487.052000pt;}
.y23e{bottom:487.170667pt;}
.y1aa{bottom:489.924000pt;}
.y32d{bottom:490.956000pt;}
.y290{bottom:491.235885pt;}
.y28b{bottom:492.035920pt;}
.y152{bottom:493.820000pt;}
.yf2{bottom:495.738667pt;}
.y129{bottom:496.136000pt;}
.y172{bottom:496.534667pt;}
.y292{bottom:497.155659pt;}
.y6a{bottom:497.316000pt;}
.y35{bottom:497.638667pt;}
.yd{bottom:497.872000pt;}
.y1fe{bottom:498.381327pt;}
.y29c{bottom:498.596369pt;}
.y1a9{bottom:498.685333pt;}
.yb4{bottom:498.966667pt;}
.y12a{bottom:500.958667pt;}
.y2f6{bottom:501.118667pt;}
.y1e3{bottom:502.336612pt;}
.y23d{bottom:503.908000pt;}
.y274{bottom:504.035067pt;}
.y294{bottom:504.516144pt;}
.y29b{bottom:505.236094pt;}
.y32c{bottom:506.298667pt;}
.y299{bottom:506.756080pt;}
.y297{bottom:507.476031pt;}
.y151{bottom:508.432000pt;}
.y1a7{bottom:511.304000pt;}
.yf1{bottom:512.476000pt;}
.y128{bottom:512.873333pt;}
.y171{bottom:513.272000pt;}
.yc{bottom:513.772000pt;}
.y69{bottom:514.053333pt;}
.y1a8{bottom:515.162667pt;}
.yb3{bottom:515.704000pt;}
.y28e{bottom:516.995558pt;}
.y270{bottom:519.396661pt;}
.y23c{bottom:520.645333pt;}
.y32b{bottom:521.641333pt;}
.y150{bottom:523.042667pt;}
.y1ed{bottom:523.957508pt;}
.y2f5{bottom:524.709333pt;}
.yf0{bottom:529.213333pt;}
.y127{bottom:529.610667pt;}
.yb{bottom:529.673333pt;}
.y170{bottom:530.009333pt;}
.y68{bottom:530.790667pt;}
.y34{bottom:530.873333pt;}
.y1a6{bottom:531.524000pt;}
.y1e4{bottom:532.144348pt;}
.yb2{bottom:532.441333pt;}
.y28f{bottom:533.955654pt;}
.y32a{bottom:536.984000pt;}
.y23b{bottom:537.382667pt;}
.y14f{bottom:537.654667pt;}
.y28a{bottom:539.075393pt;}
.ya{bottom:545.573333pt;}
.yef{bottom:545.950667pt;}
.y1a5{bottom:546.136000pt;}
.y126{bottom:546.348000pt;}
.y16f{bottom:546.746667pt;}
.y67{bottom:547.528000pt;}
.y293{bottom:547.875779pt;}
.y33{bottom:548.169333pt;}
.y2f4{bottom:548.301333pt;}
.yb0{bottom:549.178667pt;}
.y329{bottom:552.325333pt;}
.y14e{bottom:552.822667pt;}
.yb1{bottom:554.001333pt;}
.y23a{bottom:554.120000pt;}
.y291{bottom:555.955405pt;}
.y271{bottom:560.515988pt;}
.y1a4{bottom:560.748000pt;}
.y1e5{bottom:561.952084pt;}
.y1ff{bottom:562.137815pt;}
.y25a{bottom:563.085333pt;}
.y16e{bottom:563.484000pt;}
.y66{bottom:564.265333pt;}
.y7{bottom:565.458715pt;}
.y32{bottom:565.464000pt;}
.yaf{bottom:565.916000pt;}
.yee{bottom:566.672000pt;}
.y125{bottom:567.070667pt;}
.y14d{bottom:567.434667pt;}
.y328{bottom:567.668000pt;}
.y239{bottom:570.857333pt;}
.y295{bottom:571.396325pt;}
.y2f3{bottom:571.893333pt;}
.y1a3{bottom:575.360000pt;}
.y259{bottom:579.822667pt;}
.y16d{bottom:580.221333pt;}
.y65{bottom:581.002667pt;}
.y200{bottom:582.009327pt;}
.yae{bottom:582.653333pt;}
.y31{bottom:582.758667pt;}
.y327{bottom:583.010667pt;}
.y2f2{bottom:587.514667pt;}
.y238{bottom:587.594667pt;}
.y14b{bottom:588.448000pt;}
.y1a2{bottom:589.972000pt;}
.y1e6{bottom:591.852123pt;}
.y14a{bottom:595.754667pt;}
.yed{bottom:596.560000pt;}
.y124{bottom:596.958667pt;}
.y64{bottom:597.740000pt;}
.y326{bottom:598.353333pt;}
.yad{bottom:599.390667pt;}
.y30{bottom:600.054667pt;}
.y272{bottom:600.996393pt;}
.y14c{bottom:603.060000pt;}
.y2f1{bottom:603.136000pt;}
.y237{bottom:604.332000pt;}
.y1a1{bottom:605.138667pt;}
.yec{bottom:613.297333pt;}
.y122{bottom:613.696000pt;}
.yac{bottom:616.128000pt;}
.y296{bottom:616.275946pt;}
.y2f{bottom:617.349333pt;}
.y63{bottom:618.462667pt;}
.y123{bottom:618.517333pt;}
.y1a0{bottom:620.305333pt;}
.y236{bottom:621.069333pt;}
.y149{bottom:624.073333pt;}
.y2d0{bottom:625.555067pt;}
.y2f0{bottom:626.728000pt;}
.y325{bottom:629.038667pt;}
.yeb{bottom:630.034667pt;}
.y121{bottom:630.433333pt;}
.y1d6{bottom:633.621020pt;}
.y2e{bottom:634.644000pt;}
.y19f{bottom:635.473333pt;}
.y62{bottom:636.394667pt;}
.yab{bottom:636.850667pt;}
.y235{bottom:637.806667pt;}
.y273{bottom:641.476798pt;}
.y2ef{bottom:642.349333pt;}
.y324{bottom:644.381333pt;}
.yea{bottom:646.772000pt;}
.y120{bottom:647.170667pt;}
.y19e{bottom:650.085333pt;}
.y1d5{bottom:651.377480pt;}
.y2d{bottom:651.940000pt;}
.y148{bottom:652.180000pt;}
.y234{bottom:654.544000pt;}
.y2ee{bottom:657.970667pt;}
.y323{bottom:659.724000pt;}
.ye9{bottom:663.509333pt;}
.y11e{bottom:663.908000pt;}
.y19d{bottom:664.697333pt;}
.y61{bottom:666.282667pt;}
.yaa{bottom:667.882667pt;}
.y11f{bottom:668.729333pt;}
.y1d4{bottom:669.041327pt;}
.y2c{bottom:669.234667pt;}
.y2ed{bottom:673.592000pt;}
.y322{bottom:675.066667pt;}
.y19c{bottom:679.308000pt;}
.y147{bottom:679.848000pt;}
.ye8{bottom:680.246667pt;}
.y11d{bottom:680.645333pt;}
.y60{bottom:683.020000pt;}
.y263{bottom:683.076531pt;}
.y233{bottom:685.361333pt;}
.y2a{bottom:686.530667pt;}
.y1d3{bottom:686.705327pt;}
.y83{bottom:687.818667pt;}
.y321{bottom:690.408000pt;}
.y2b{bottom:690.869333pt;}
.y19b{bottom:693.920000pt;}
.ye7{bottom:696.984000pt;}
.y2ec{bottom:697.184000pt;}
.y11c{bottom:697.382667pt;}
.y232{bottom:697.980000pt;}
.y5f{bottom:699.757333pt;}
.y262{bottom:700.117211pt;}
.y146{bottom:700.570667pt;}
.y231{bottom:701.838667pt;}
.y29{bottom:703.825333pt;}
.y320{bottom:705.750667pt;}
.y1d2{bottom:706.669925pt;}
.y19a{bottom:708.532000pt;}
.y22f{bottom:710.600000pt;}
.y2eb{bottom:712.805333pt;}
.ye5{bottom:713.721333pt;}
.y11b{bottom:714.120000pt;}
.y230{bottom:714.457333pt;}
.y5e{bottom:716.494667pt;}
.y261{bottom:717.236715pt;}
.ye6{bottom:718.542667pt;}
.y31f{bottom:721.093333pt;}
.y28{bottom:721.120000pt;}
.y199{bottom:723.144000pt;}
.y22d{bottom:723.218667pt;}
.y22e{bottom:727.077333pt;}
.y1d1{bottom:727.277658pt;}
.ye4{bottom:728.032000pt;}
.y2ea{bottom:728.426667pt;}
.ye3{bottom:730.458667pt;}
.y11a{bottom:730.857333pt;}
.y5d{bottom:733.232000pt;}
.y260{bottom:734.356219pt;}
.y31e{bottom:736.436000pt;}
.y198{bottom:737.756000pt;}
.y27{bottom:738.416000pt;}
.y22c{bottom:743.438667pt;}
.y2e9{bottom:744.048000pt;}
.ye2{bottom:747.196000pt;}
.y119{bottom:747.594667pt;}
.y1d0{bottom:747.977575pt;}
.y5c{bottom:749.969333pt;}
.y25f{bottom:751.395563pt;}
.y31d{bottom:751.778667pt;}
.y197{bottom:752.368000pt;}
.y26{bottom:755.710667pt;}
.y22b{bottom:758.606667pt;}
.y2e8{bottom:759.669333pt;}
.ye1{bottom:763.933333pt;}
.y118{bottom:764.332000pt;}
.y5b{bottom:766.706667pt;}
.y196{bottom:766.980000pt;}
.y31c{bottom:767.121333pt;}
.y25e{bottom:768.515067pt;}
.y1cf{bottom:768.677492pt;}
.y22a{bottom:773.773333pt;}
.ye0{bottom:780.670667pt;}
.y117{bottom:781.069333pt;}
.y195{bottom:781.592000pt;}
.y31b{bottom:782.464000pt;}
.y2e7{bottom:783.261333pt;}
.y5a{bottom:783.444000pt;}
.y258{bottom:784.656000pt;}
.y25{bottom:788.876000pt;}
.y229{bottom:788.940000pt;}
.y1ce{bottom:789.377409pt;}
.y194{bottom:796.204000pt;}
.ydf{bottom:797.408000pt;}
.y116{bottom:797.806667pt;}
.y2e6{bottom:799.300000pt;}
.y59{bottom:800.181333pt;}
.y145{bottom:802.229333pt;}
.y24{bottom:803.222667pt;}
.y228{bottom:803.552000pt;}
.y1cd{bottom:810.077327pt;}
.y193{bottom:810.816000pt;}
.y31a{bottom:813.149333pt;}
.yde{bottom:814.145333pt;}
.y115{bottom:814.544000pt;}
.y58{bottom:816.918667pt;}
.y25d{bottom:816.995587pt;}
.y23{bottom:817.568000pt;}
.y227{bottom:818.164000pt;}
.y192{bottom:825.428000pt;}
.y25c{bottom:825.715067pt;}
.y319{bottom:828.490667pt;}
.y1cc{bottom:830.777327pt;}
.ydd{bottom:830.882667pt;}
.y114{bottom:831.281333pt;}
.y22{bottom:831.914667pt;}
.y226{bottom:832.776000pt;}
.y56{bottom:833.656000pt;}
.y144{bottom:834.868000pt;}
.y57{bottom:838.477333pt;}
.y191{bottom:840.038667pt;}
.y318{bottom:843.833333pt;}
.y21{bottom:846.261333pt;}
.ydc{bottom:847.620000pt;}
.y113{bottom:848.018667pt;}
.y55{bottom:850.393333pt;}
.y1ca{bottom:852.305409pt;}
.y224{bottom:854.345333pt;}
.y190{bottom:854.650667pt;}
.y317{bottom:859.176000pt;}
.y223{bottom:861.650667pt;}
.y1c8{bottom:862.609327pt;}
.ydb{bottom:864.357333pt;}
.y112{bottom:864.754667pt;}
.y1c9{bottom:866.473327pt;}
.y54{bottom:867.130667pt;}
.y225{bottom:868.957333pt;}
.y18f{bottom:869.262667pt;}
.y1cb{bottom:873.005327pt;}
.y1c5{bottom:873.373327pt;}
.y316{bottom:874.518667pt;}
.yda{bottom:881.094667pt;}
.y111{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y18e{bottom:883.874667pt;}
.y6{bottom:884.713333pt;}
.y315{bottom:889.861333pt;}
.y222{bottom:889.970667pt;}
.y1c6{bottom:894.349796pt;}
.y1c7{bottom:894.441980pt;}
.yd9{bottom:897.832000pt;}
.y110{bottom:898.229333pt;}
.y18d{bottom:898.486667pt;}
.y52{bottom:900.605333pt;}
.y314{bottom:905.204000pt;}
.yd8{bottom:914.569333pt;}
.y10f{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y221{bottom:918.077333pt;}
.y18b{bottom:919.501333pt;}
.y313{bottom:920.546667pt;}
.y1c4{bottom:925.169327pt;}
.y5{bottom:925.510667pt;}
.y18a{bottom:926.806667pt;}
.y10d{bottom:931.704000pt;}
.y50{bottom:934.080000pt;}
.y18c{bottom:934.112000pt;}
.yd7{bottom:935.290667pt;}
.y312{bottom:935.889333pt;}
.y10e{bottom:936.526667pt;}
.y10c{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y311{bottom:951.230667pt;}
.y189{bottom:955.126667pt;}
.yd6{bottom:965.178667pt;}
.y310{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y1c3{bottom:979.357925pt;}
.yd4{bottom:981.916000pt;}
.y188{bottom:983.233333pt;}
.y4d{bottom:984.290667pt;}
.yd5{bottom:986.738667pt;}
.y1c2{bottom:989.385327pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h26{height:22.123987pt;}
.h3e{height:22.435260pt;}
.h7{height:22.673858pt;}
.h27{height:23.209028pt;}
.h1e{height:23.359375pt;}
.h43{height:24.218026pt;}
.h21{height:24.760382pt;}
.h10{height:25.811318pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h14{height:28.023859pt;}
.h15{height:29.397999pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hc{height:30.945242pt;}
.h19{height:31.067969pt;}
.h13{height:31.157778pt;}
.h18{height:31.213438pt;}
.h3d{height:32.633745pt;}
.h47{height:33.309792pt;}
.h41{height:34.274809pt;}
.h35{height:34.574331pt;}
.hd{height:34.574438pt;}
.h22{height:34.717901pt;}
.he{height:34.813542pt;}
.h3b{height:35.039062pt;}
.hf{height:35.052646pt;}
.h1a{height:35.203125pt;}
.h42{height:35.226354pt;}
.h2c{height:35.728164pt;}
.h2b{height:35.895453pt;}
.h16{height:36.873667pt;}
.h45{height:37.019334pt;}
.h49{height:37.202876pt;}
.h37{height:38.262237pt;}
.h11{height:38.415786pt;}
.h1b{height:38.462187pt;}
.h28{height:38.638362pt;}
.h12{height:38.681455pt;}
.h4{height:38.947124pt;}
.h1c{height:39.010156pt;}
.h3c{height:39.192812pt;}
.h6{height:39.531597pt;}
.h46{height:40.132240pt;}
.h33{height:40.294922pt;}
.h34{height:40.295535pt;}
.h2d{height:40.483594pt;}
.h36{height:42.133480pt;}
.h29{height:43.165985pt;}
.h39{height:44.431607pt;}
.h25{height:44.436941pt;}
.h32{height:44.861680pt;}
.h2e{height:45.071734pt;}
.h2{height:45.271688pt;}
.h4a{height:45.474876pt;}
.h38{height:46.098828pt;}
.h3f{height:46.114357pt;}
.h48{height:46.290876pt;}
.h1f{height:47.309193pt;}
.h2f{height:47.682414pt;}
.h20{height:48.688666pt;}
.h40{height:48.994160pt;}
.h44{height:49.499298pt;}
.h1d{height:49.708594pt;}
.h23{height:63.795772pt;}
.h24{height:63.801105pt;}
.h5{height:69.148877pt;}
.h3{height:70.611704pt;}
.h30{height:71.199734pt;}
.h31{height:86.290274pt;}
.h17{height:307.381333pt;}
.h2a{height:616.493533pt;}
.h3a{height:658.824000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.447272pt;}
.w5{width:487.403733pt;}
.w6{width:532.934133pt;}
.w4{width:652.529600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb2{left:-195.138133pt;}
.xbe{left:-165.330465pt;}
.xc0{left:-162.570133pt;}
.xbc{left:-160.086731pt;}
.xbf{left:-155.761765pt;}
.xbd{left:-154.566446pt;}
.xba{left:-142.514133pt;}
.xbb{left:-137.178133pt;}
.xb3{left:-134.970133pt;}
.xb4{left:-115.834133pt;}
.xff{left:-81.561867pt;}
.x100{left:-53.241867pt;}
.xb6{left:-43.154133pt;}
.x3d{left:-14.945067pt;}
.xb5{left:-9.758005pt;}
.x0{left:0.000000pt;}
.xc2{left:4.777867pt;}
.x11f{left:12.198133pt;}
.x103{left:15.958133pt;}
.x3{left:26.021437pt;}
.x11e{left:30.918458pt;}
.x11c{left:32.518446pt;}
.x102{left:34.758227pt;}
.x101{left:36.278385pt;}
.x11d{left:37.238346pt;}
.xc6{left:40.105867pt;}
.x1{left:48.000000pt;}
.xc4{left:49.213191pt;}
.x2{left:51.326335pt;}
.x92{left:56.032000pt;}
.xb0{left:57.549333pt;}
.xb1{left:58.941333pt;}
.xc3{left:59.977867pt;}
.xae{left:61.088000pt;}
.xa9{left:61.985333pt;}
.xa8{left:64.029333pt;}
.xaf{left:65.385333pt;}
.xee{left:66.730667pt;}
.x8e{left:68.824000pt;}
.x3c{left:70.586400pt;}
.xa6{left:72.948000pt;}
.xa7{left:74.170667pt;}
.xad{left:75.204000pt;}
.x93{left:76.701333pt;}
.x89{left:77.753333pt;}
.x8f{left:78.860000pt;}
.x90{left:82.873333pt;}
.xaa{left:84.090667pt;}
.x123{left:84.996804pt;}
.x91{left:87.353333pt;}
.x10e{left:88.278517pt;}
.x10c{left:90.678135pt;}
.xa4{left:92.098667pt;}
.x113{left:96.039131pt;}
.x110{left:99.159061pt;}
.xac{left:101.925333pt;}
.x122{left:103.236899pt;}
.x124{left:104.917012pt;}
.x10d{left:106.198510pt;}
.xcc{left:108.277867pt;}
.x126{left:111.236436pt;}
.x10f{left:113.158683pt;}
.xca{left:115.729032pt;}
.xc5{left:118.398155pt;}
.xec{left:121.500000pt;}
.x120{left:125.957295pt;}
.x107{left:127.158305pt;}
.x106{left:129.478647pt;}
.xfe{left:130.384533pt;}
.x125{left:133.877325pt;}
.x111{left:134.918919pt;}
.x112{left:136.438819pt;}
.x105{left:138.758309pt;}
.x12e{left:139.718667pt;}
.x127{left:140.676406pt;}
.xcd{left:142.594020pt;}
.x12f{left:149.020000pt;}
.x121{left:153.397381pt;}
.x109{left:155.078273pt;}
.x108{left:157.398614pt;}
.x40{left:158.894933pt;}
.x104{left:161.318133pt;}
.x10a{left:162.838034pt;}
.x139{left:182.810667pt;}
.x41{left:187.214839pt;}
.xa5{left:192.234667pt;}
.xc7{left:197.057867pt;}
.x10b{left:203.237723pt;}
.x3f{left:214.654933pt;}
.x8a{left:216.234667pt;}
.xed{left:221.034667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.xc8{left:227.418309pt;}
.x51{left:233.201333pt;}
.x52{left:239.252000pt;}
.xd2{left:241.534667pt;}
.x39{left:243.384000pt;}
.xd3{left:247.160000pt;}
.x3a{left:249.434667pt;}
.xc{left:251.365333pt;}
.x118{left:254.119014pt;}
.x6f{left:255.512000pt;}
.x11a{left:257.158815pt;}
.x12d{left:259.235718pt;}
.xf3{left:263.386667pt;}
.xab{left:266.781333pt;}
.x11b{left:267.958077pt;}
.xdc{left:269.990667pt;}
.x1f{left:271.825333pt;}
.x6{left:275.056000pt;}
.xf4{left:276.670667pt;}
.x48{left:277.730667pt;}
.x27{left:279.069333pt;}
.xe3{left:280.768000pt;}
.xdd{left:283.274667pt;}
.x20{left:285.109333pt;}
.xde{left:286.661333pt;}
.x21{left:288.422667pt;}
.x12b{left:290.276295pt;}
.x28{left:292.353333pt;}
.x13{left:293.362667pt;}
.x70{left:294.762667pt;}
.x6d{left:297.588000pt;}
.x116{left:299.079257pt;}
.x14{left:300.004000pt;}
.x22{left:301.706667pt;}
.x15{left:303.282667pt;}
.x53{left:304.728000pt;}
.x71{left:308.045333pt;}
.x16{left:309.924000pt;}
.xf0{left:311.206667pt;}
.x11{left:313.572000pt;}
.x54{left:315.653333pt;}
.x81{left:316.916000pt;}
.x57{left:318.868000pt;}
.x12{left:320.213333pt;}
.xc9{left:321.258637pt;}
.x9e{left:322.266667pt;}
.x3b{left:323.530667pt;}
.x58{left:324.918667pt;}
.x6e{left:326.456000pt;}
.x119{left:327.878942pt;}
.x82{left:329.068000pt;}
.x12c{left:331.636063pt;}
.x55{left:332.653333pt;}
.x9f{left:335.549333pt;}
.x56{left:338.702667pt;}
.x129{left:339.636473pt;}
.x117{left:340.998846pt;}
.xe4{left:344.124000pt;}
.xfc{left:345.414667pt;}
.x94{left:347.484000pt;}
.x114{left:348.758608pt;}
.x132{left:349.720000pt;}
.xe5{left:350.765333pt;}
.x95{left:352.400000pt;}
.xe6{left:354.153333pt;}
.x5b{left:355.910667pt;}
.x35{left:357.834667pt;}
.x5e{left:360.758667pt;}
.x5c{left:361.961333pt;}
.x8{left:362.898667pt;}
.x36{left:363.885333pt;}
.xa3{left:365.784000pt;}
.xe7{left:367.437333pt;}
.x9{left:368.524000pt;}
.xb7{left:369.649867pt;}
.x88{left:371.760000pt;}
.x5f{left:374.042667pt;}
.x128{left:374.997463pt;}
.x115{left:375.959116pt;}
.xd1{left:377.561333pt;}
.x76{left:380.377333pt;}
.xfb{left:381.548000pt;}
.x2f{left:382.817333pt;}
.x130{left:384.178667pt;}
.xcb{left:385.933867pt;}
.x77{left:388.582667pt;}
.x30{left:391.837333pt;}
.xe2{left:393.970667pt;}
.xe8{left:395.666667pt;}
.x6b{left:396.784000pt;}
.x86{left:398.686667pt;}
.xd6{left:400.234667pt;}
.xce{left:401.284000pt;}
.x6c{left:402.834667pt;}
.x68{left:405.270667pt;}
.xd7{left:406.284000pt;}
.x7d{left:407.318667pt;}
.x5d{left:411.461333pt;}
.x7e{left:413.368000pt;}
.x72{left:416.369333pt;}
.x26{left:417.393333pt;}
.x69{left:418.554667pt;}
.x29{left:419.916000pt;}
.x83{left:422.733333pt;}
.x73{left:426.792000pt;}
.x12a{left:427.957259pt;}
.x1b{left:430.290667pt;}
.x2a{left:433.198667pt;}
.x1c{left:436.932000pt;}
.x133{left:438.502667pt;}
.x1d{left:440.320000pt;}
.x1e{left:446.961333pt;}
.x4f{left:448.194667pt;}
.x50{left:454.245333pt;}
.xef{left:456.154667pt;}
.xea{left:458.334667pt;}
.x96{left:462.081333pt;}
.x2b{left:463.602667pt;}
.xb8{left:468.182400pt;}
.x97{left:469.508000pt;}
.xeb{left:471.617333pt;}
.x60{left:473.292000pt;}
.x2c{left:476.886667pt;}
.x7b{left:478.162667pt;}
.xcf{left:479.694667pt;}
.xb9{left:480.969857pt;}
.xc1{left:483.177867pt;}
.x61{left:486.576000pt;}
.xd0{left:487.668000pt;}
.x17{left:489.794667pt;}
.xd8{left:491.816000pt;}
.x42{left:494.254933pt;}
.x18{left:496.436000pt;}
.x43{left:498.174933pt;}
.xd9{left:501.844000pt;}
.xfd{left:504.773333pt;}
.x62{left:510.657333pt;}
.xda{left:515.128000pt;}
.x63{left:516.368000pt;}
.x74{left:519.072000pt;}
.x44{left:524.094933pt;}
.x45{left:528.094933pt;}
.xe0{left:531.048000pt;}
.x46{left:532.574933pt;}
.x7f{left:534.433333pt;}
.x87{left:538.528000pt;}
.x80{left:540.484000pt;}
.x47{left:542.574933pt;}
.xe1{left:544.330667pt;}
.xe9{left:545.817333pt;}
.xdb{left:548.469333pt;}
.x84{left:549.572000pt;}
.x64{left:553.704000pt;}
.xa1{left:555.298667pt;}
.x66{left:557.597333pt;}
.x31{left:559.592000pt;}
.x65{left:562.282667pt;}
.x85{left:563.830667pt;}
.x4b{left:565.038667pt;}
.xa2{left:568.582667pt;}
.x67{left:570.881333pt;}
.xdf{left:571.894667pt;}
.x32{left:574.346667pt;}
.x4c{left:575.965333pt;}
.x8b{left:578.964000pt;}
.x6a{left:588.305333pt;}
.xa0{left:589.432000pt;}
.x7a{left:590.502667pt;}
.x4d{left:592.933333pt;}
.x4e{left:598.984000pt;}
.x98{left:600.714667pt;}
.xf5{left:603.672000pt;}
.xf6{left:607.060000pt;}
.x99{left:608.140000pt;}
.x33{left:609.617333pt;}
.x34{left:615.668000pt;}
.xf7{left:620.344000pt;}
.x9a{left:622.821333pt;}
.xf8{left:623.730667pt;}
.x23{left:625.986667pt;}
.x8c{left:630.640000pt;}
.xd4{left:632.000000pt;}
.x9b{left:636.104000pt;}
.xf9{left:637.014667pt;}
.xf{left:638.894667pt;}
.x8d{left:640.401333pt;}
.x24{left:642.657333pt;}
.x10{left:645.536000pt;}
.xd{left:647.053333pt;}
.x37{left:652.017333pt;}
.xe{left:653.694667pt;}
.x25{left:655.940000pt;}
.x38{left:658.066667pt;}
.x138{left:659.852000pt;}
.x3e{left:663.054800pt;}
.xfa{left:666.873333pt;}
.x75{left:670.200000pt;}
.x78{left:673.534667pt;}
.x131{left:675.720000pt;}
.x2d{left:678.202667pt;}
.x13b{left:679.164000pt;}
.x7{left:680.068000pt;}
.x79{left:681.740000pt;}
.x2e{left:684.253333pt;}
.xa{left:686.020000pt;}
.x13a{left:687.945333pt;}
.xb{left:691.644000pt;}
.xd5{left:694.014667pt;}
.x13d{left:696.780000pt;}
.x136{left:701.685333pt;}
.x13c{left:703.074667pt;}
.xf2{left:705.485333pt;}
.x9c{left:710.614667pt;}
.x134{left:720.332000pt;}
.x9d{left:723.897333pt;}
.x137{left:725.596000pt;}
.xf1{left:726.842667pt;}
.x49{left:727.905333pt;}
.x59{left:730.044000pt;}
.x19{left:733.577333pt;}
.x5a{left:736.094667pt;}
.x7c{left:737.833333pt;}
.x1a{left:740.218667pt;}
.x4a{left:741.189333pt;}
.x135{left:744.242667pt;}
}




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