
    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_54bbf0f46d6f6753e3c41ca9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693000;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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_fff6472737497e4e4ec237e6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e6704e5ef958a8dc5ce583be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_7b787a8ec4a6c2b9fd6b9669.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2f3c0db620e659485a6dfa2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.226000;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_0a9a556ab243c718c6f9cbb7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0279355739e78af4c338945c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_00fd6ce3b3b68e4f5adca30f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e9f468d820271f1ea1e3f782.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ade37eabdb3723ba53bbc103.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.215332;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_f8b5c891c0365d2949e6f05b.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_9343cf0fac76e348c10952a0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_00fd6ce3b3b68e4f5adca30f.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_7c7ab90fa245b58c2cacd7e4.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_cc27d369a46a286296cc2145.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.215332;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_4e664984fc5014d2d725fadd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758000;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_41a6ced57666bef412210f58.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.848000;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_00fd6ce3b3b68e4f5adca30f.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_c194d8c2b70a1c40e08538b2.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_649aa99294111f8bd7a7bb74.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.215332;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_147924fe965fc90977d27fae.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_725bc412afd397dd7d7f7ed0.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_bbc309759110542362cb586c.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_c2f2c80c47a14deb8e65e8af.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_b51843ce2adb419e3bf52d9a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_c20920cd039c69b229a5426f.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_772492dd05e85f83af59b467.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_347e5959b921c2005f802d33.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.215332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_f4a03ad8c67dc3407865fbca.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_5c0ed70c26aa62ccb534c733.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.186000;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;}
.m1f{transform:matrix(0.000000,-0.250480,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250480,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250480,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);}
.m2e{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);}
.mc{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);}
.m2c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m4{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);}
.m2a{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);}
.m29{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);}
.ma{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);}
.m22{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);}
.m1c{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);}
.m1a{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);}
.m2f{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);}
.m9{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);}
.m6{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);}
.m13{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);}
.m15{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);}
.m19{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);}
.m1d{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m26{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);}
.m28{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);}
.m27{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);}
.m18{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);}
.m10{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);}
.m23{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.mb{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);}
.m24{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m21{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);}
.m5{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);}
.md{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);}
.m31{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);}
.m8{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);}
.m11{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);}
.m30{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);}
.m2d{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);}
.m12{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);}
.m16{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);}
.m7{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);}
.m17{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);}
.m3{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);}
.me{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);}
.v5{vertical-align:-19.530000px;}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-15.120600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.646767px;}
.v1{vertical-align:21.696000px;}
.ls60{letter-spacing:-0.418709px;}
.ls30{letter-spacing:-0.213032px;}
.ls2e{letter-spacing:-0.183816px;}
.ls95{letter-spacing:-0.180360px;}
.ls90{letter-spacing:-0.162324px;}
.ls35{letter-spacing:-0.161388px;}
.ls94{letter-spacing:-0.156312px;}
.ls8b{letter-spacing:-0.150300px;}
.ls3b{letter-spacing:-0.148477px;}
.ls70{letter-spacing:-0.144288px;}
.ls92{letter-spacing:-0.138276px;}
.ls93{letter-spacing:-0.132264px;}
.ls8c{letter-spacing:-0.126252px;}
.ls96{letter-spacing:-0.120240px;}
.ls25{letter-spacing:-0.116152px;}
.ls59{letter-spacing:-0.108216px;}
.ls2a{letter-spacing:-0.105090px;}
.ls57{letter-spacing:-0.102204px;}
.ls5c{letter-spacing:-0.096192px;}
.ls27{letter-spacing:-0.094028px;}
.ls50{letter-spacing:-0.090972px;}
.ls54{letter-spacing:-0.090180px;}
.ls6d{letter-spacing:-0.086184px;}
.ls39{letter-spacing:-0.085184px;}
.ls72{letter-spacing:-0.084168px;}
.ls23{letter-spacing:-0.083694px;}
.ls37{letter-spacing:-0.079353px;}
.ls56{letter-spacing:-0.078156px;}
.ls38{letter-spacing:-0.073826px;}
.ls55{letter-spacing:-0.072144px;}
.ls4e{letter-spacing:-0.071820px;}
.ls91{letter-spacing:-0.066132px;}
.ls21{letter-spacing:-0.066074px;}
.ls86{letter-spacing:-0.064800px;}
.ls6b{letter-spacing:-0.062244px;}
.ls71{letter-spacing:-0.060120px;}
.ls5f{letter-spacing:-0.059165px;}
.ls5a{letter-spacing:-0.054108px;}
.ls3d{letter-spacing:-0.051110px;}
.ls8d{letter-spacing:-0.048096px;}
.ls24{letter-spacing:-0.038717px;}
.ls73{letter-spacing:-0.036072px;}
.ls29{letter-spacing:-0.033186px;}
.ls6f{letter-spacing:-0.032400px;}
.ls8e{letter-spacing:-0.030060px;}
.ls28{letter-spacing:-0.027655px;}
.ls85{letter-spacing:-0.027000px;}
.ls58{letter-spacing:-0.024048px;}
.ls89{letter-spacing:-0.023184px;}
.ls5e{letter-spacing:-0.022754px;}
.ls3c{letter-spacing:-0.022716px;}
.ls52{letter-spacing:-0.021600px;}
.ls2c{letter-spacing:-0.019872px;}
.ls32{letter-spacing:-0.019367px;}
.ls53{letter-spacing:-0.018036px;}
.ls8a{letter-spacing:-0.016200px;}
.ls34{letter-spacing:-0.012911px;}
.ls5d{letter-spacing:-0.012024px;}
.ls2b{letter-spacing:-0.011062px;}
.ls51{letter-spacing:-0.010800px;}
.ls2d{letter-spacing:-0.009936px;}
.ls5b{letter-spacing:-0.006012px;}
.ls26{letter-spacing:-0.005531px;}
.ls6e{letter-spacing:-0.005400px;}
.ls2f{letter-spacing:-0.004968px;}
.lse{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000184px;}
.lsb0{letter-spacing:0.000800px;}
.lsa0{letter-spacing:0.001036px;}
.ls9f{letter-spacing:0.001155px;}
.lsb7{letter-spacing:0.001357px;}
.lsa{letter-spacing:0.001933px;}
.ls9{letter-spacing:0.001952px;}
.lsac{letter-spacing:0.002220px;}
.lsa6{letter-spacing:0.002249px;}
.ls9e{letter-spacing:0.002544px;}
.lsa3{letter-spacing:0.002841px;}
.lsaa{letter-spacing:0.002892px;}
.lsab{letter-spacing:0.003284px;}
.ls6{letter-spacing:0.003313px;}
.lsbc{letter-spacing:0.004113px;}
.ls2{letter-spacing:0.004200px;}
.lsad{letter-spacing:0.004267px;}
.ls97{letter-spacing:0.004672px;}
.ls1d{letter-spacing:0.004968px;}
.ls66{letter-spacing:0.005400px;}
.ls69{letter-spacing:0.006012px;}
.ls19{letter-spacing:0.009936px;}
.ls40{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.011062px;}
.ls77{letter-spacing:0.012024px;}
.ls41{letter-spacing:0.016200px;}
.ls67{letter-spacing:0.018036px;}
.ls1b{letter-spacing:0.019872px;}
.ls49{letter-spacing:0.021600px;}
.ls13{letter-spacing:0.022124px;}
.ls68{letter-spacing:0.024048px;}
.ls46{letter-spacing:0.027000px;}
.ls1a{letter-spacing:0.029808px;}
.ls4c{letter-spacing:0.030060px;}
.ls10{letter-spacing:0.030835px;}
.ls63{letter-spacing:0.032400px;}
.ls14{letter-spacing:0.033186px;}
.ls3e{letter-spacing:0.033516px;}
.ls1e{letter-spacing:0.034776px;}
.ls75{letter-spacing:0.036072px;}
.ls43{letter-spacing:0.037800px;}
.ls1f{letter-spacing:0.038733px;}
.ls4b{letter-spacing:0.042084px;}
.ls61{letter-spacing:0.043092px;}
.ls44{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.044248px;}
.ls6a{letter-spacing:0.048096px;}
.ls47{letter-spacing:0.048600px;}
.ls31{letter-spacing:0.051644px;}
.ls4a{letter-spacing:0.054000px;}
.ls4d{letter-spacing:0.054108px;}
.ls12{letter-spacing:0.055310px;}
.ls78{letter-spacing:0.059400px;}
.ls7d{letter-spacing:0.060120px;}
.ls48{letter-spacing:0.064800px;}
.ls45{letter-spacing:0.066132px;}
.ls64{letter-spacing:0.070200px;}
.ls18{letter-spacing:0.071904px;}
.ls76{letter-spacing:0.072144px;}
.ls15{letter-spacing:0.077435px;}
.ls81{letter-spacing:0.084168px;}
.ls7c{letter-spacing:0.086400px;}
.ls74{letter-spacing:0.090180px;}
.ls1c{letter-spacing:0.114264px;}
.ls36{letter-spacing:0.116200px;}
.ls80{letter-spacing:0.124200px;}
.ls65{letter-spacing:0.140400px;}
.ls33{letter-spacing:0.142022px;}
.ls42{letter-spacing:0.145800px;}
.ls79{letter-spacing:0.151200px;}
.ls11{letter-spacing:0.154174px;}
.ls7b{letter-spacing:0.156600px;}
.ls22{letter-spacing:0.167388px;}
.ls3f{letter-spacing:0.167580px;}
.ls62{letter-spacing:0.177156px;}
.ls4f{letter-spacing:0.181944px;}
.ls7a{letter-spacing:0.183600px;}
.ls6c{letter-spacing:0.191520px;}
.ls3a{letter-spacing:0.219488px;}
.ls20{letter-spacing:0.335688px;}
.ls7f{letter-spacing:0.361800px;}
.ls87{letter-spacing:0.372600px;}
.ls8f{letter-spacing:0.450900px;}
.ls88{letter-spacing:0.901800px;}
.lsf{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls98{letter-spacing:2.988089px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls5{letter-spacing:10.461300px;}
.lsb{letter-spacing:11.951700px;}
.lsd{letter-spacing:11.954850px;}
.lsa9{letter-spacing:12.711624px;}
.lsb6{letter-spacing:13.103461px;}
.lsb3{letter-spacing:13.132753px;}
.lsa2{letter-spacing:13.164728px;}
.lsb2{letter-spacing:13.238023px;}
.ls82{letter-spacing:13.270443px;}
.lsb9{letter-spacing:13.289530px;}
.lsba{letter-spacing:13.361211px;}
.lsa4{letter-spacing:13.366242px;}
.lsbb{letter-spacing:13.385235px;}
.lsa5{letter-spacing:13.438842px;}
.lsae{letter-spacing:13.441966px;}
.ls84{letter-spacing:13.444800px;}
.lsa1{letter-spacing:13.448400px;}
.lsa8{letter-spacing:13.450560px;}
.ls7e{letter-spacing:13.450800px;}
.lsa7{letter-spacing:13.454400px;}
.lsb5{letter-spacing:13.484400px;}
.ls83{letter-spacing:13.500915px;}
.lsb1{letter-spacing:13.553433px;}
.ls9c{letter-spacing:14.714180px;}
.ls9d{letter-spacing:14.944200px;}
.lsaf{letter-spacing:16.032753px;}
.ls9b{letter-spacing:16.112200px;}
.lsb8{letter-spacing:16.244518px;}
.ls99{letter-spacing:17.341612px;}
.ls9a{letter-spacing:17.347494px;}
.lsb4{letter-spacing:18.909224px;}
.lsbd{letter-spacing:19.709224px;}
.ls8{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.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;}
}
.wsf4{word-spacing:-54.000000px;}
.ws59{word-spacing:-17.933461px;}
.ws5b{word-spacing:-17.784984px;}
.ws58{word-spacing:-17.733340px;}
.ws5c{word-spacing:-15.677816px;}
.wsf8{word-spacing:-15.114168px;}
.ws3f{word-spacing:-14.943900px;}
.ws2{word-spacing:-14.355754px;}
.wsf3{word-spacing:-13.500000px;}
.ws2a{word-spacing:-13.449600px;}
.ws57{word-spacing:-12.420000px;}
.wsc5{word-spacing:-12.161520px;}
.ws8a{word-spacing:-12.151944px;}
.ws32{word-spacing:-11.955150px;}
.ws4{word-spacing:-11.357400px;}
.ws56{word-spacing:-11.179788px;}
.ws9{word-spacing:-10.460700px;}
.ws5a{word-spacing:-4.770636px;}
.ws137{word-spacing:-3.901788px;}
.ws138{word-spacing:-3.577140px;}
.wsb1{word-spacing:-3.186360px;}
.ws178{word-spacing:-3.168107px;}
.ws49{word-spacing:-3.108331px;}
.wse8{word-spacing:-3.084156px;}
.wse7{word-spacing:-2.999988px;}
.ws2d{word-spacing:-2.749678px;}
.ws175{word-spacing:-2.689902px;}
.ws17f{word-spacing:-2.630126px;}
.ws183{word-spacing:-2.510575px;}
.ws101{word-spacing:-2.494980px;}
.ws50{word-spacing:-2.450800px;}
.ws160{word-spacing:-2.434860px;}
.ws161{word-spacing:-2.296584px;}
.ws39{word-spacing:-2.211697px;}
.ws1b5{word-spacing:-2.205734px;}
.ws16d{word-spacing:-2.116224px;}
.wsfe{word-spacing:-2.098188px;}
.ws90{word-spacing:-2.092146px;}
.ws102{word-spacing:-2.074140px;}
.wsfd{word-spacing:-2.056104px;}
.ws1ab{word-spacing:-2.044339px;}
.wsfb{word-spacing:-2.044080px;}
.ws16b{word-spacing:-2.032056px;}
.ws1aa{word-spacing:-1.936742px;}
.ws6{word-spacing:-1.908367px;}
.ws7f{word-spacing:-1.833192px;}
.ws7e{word-spacing:-1.813320px;}
.ws7d{word-spacing:-1.803384px;}
.ws1ac{word-spacing:-1.775347px;}
.ws146{word-spacing:-1.755504px;}
.ws3a{word-spacing:-1.733492px;}
.wsa3{word-spacing:-1.689372px;}
.ws80{word-spacing:-1.639440px;}
.ws72{word-spacing:-1.570815px;}
.ws71{word-spacing:-1.537629px;}
.ws16c{word-spacing:-1.527048px;}
.ws180{word-spacing:-1.434614px;}
.ws15{word-spacing:-1.386797px;}
.wsbd{word-spacing:-1.382760px;}
.ws181{word-spacing:-1.374839px;}
.wsed{word-spacing:-1.370736px;}
.ws126{word-spacing:-1.340676px;}
.ws127{word-spacing:-1.322640px;}
.ws5{word-spacing:-1.322630px;}
.ws144{word-spacing:-1.304604px;}
.wsde{word-spacing:-1.290600px;}
.wsad{word-spacing:-1.279800px;}
.ws74{word-spacing:-1.277670px;}
.ws9b{word-spacing:-1.274400px;}
.ws9a{word-spacing:-1.269000px;}
.ws132{word-spacing:-1.263600px;}
.ws18a{word-spacing:-1.255288px;}
.wsdf{word-spacing:-1.252800px;}
.ws143{word-spacing:-1.226448px;}
.ws8b{word-spacing:-1.183565px;}
.ws73{word-spacing:-1.139394px;}
.ws91{word-spacing:-1.135736px;}
.ws1bb{word-spacing:-1.075968px;}
.ws8f{word-spacing:-1.075961px;}
.wsb0{word-spacing:-1.034064px;}
.ws1c4{word-spacing:-1.022170px;}
.ws3e{word-spacing:-1.016185px;}
.ws14a{word-spacing:-0.973944px;}
.ws68{word-spacing:-0.967932px;}
.wse0{word-spacing:-0.966600px;}
.ws69{word-spacing:-0.934746px;}
.wsaf{word-spacing:-0.919836px;}
.ws8c{word-spacing:-0.914573px;}
.wse1{word-spacing:-0.912600px;}
.ws110{word-spacing:-0.869400px;}
.ws47{word-spacing:-0.836858px;}
.ws1c5{word-spacing:-0.753178px;}
.ws1be{word-spacing:-0.699379px;}
.ws162{word-spacing:-0.661320px;}
.ws15c{word-spacing:-0.631260px;}
.ws14e{word-spacing:-0.583164px;}
.ws10e{word-spacing:-0.567000px;}
.ws11a{word-spacing:-0.545400px;}
.ws10f{word-spacing:-0.534600px;}
.ws14f{word-spacing:-0.505008px;}
.ws1bd{word-spacing:-0.484186px;}
.ws185{word-spacing:-0.478205px;}
.ws196{word-spacing:-0.418429px;}
.wsc8{word-spacing:-0.376589px;}
.wsc3{word-spacing:-0.359543px;}
.wsc2{word-spacing:-0.359510px;}
.ws193{word-spacing:-0.358654px;}
.ws63{word-spacing:-0.322790px;}
.ws15b{word-spacing:-0.300600px;}
.ws3d{word-spacing:-0.298878px;}
.ws16a{word-spacing:-0.288576px;}
.ws1a3{word-spacing:-0.268992px;}
.ws117{word-spacing:-0.259200px;}
.ws141{word-spacing:-0.240480px;}
.ws37{word-spacing:-0.239102px;}
.ws135{word-spacing:-0.234468px;}
.ws150{word-spacing:-0.216432px;}
.ws61{word-spacing:-0.215194px;}
.ws151{word-spacing:-0.204408px;}
.ws119{word-spacing:-0.199800px;}
.wsb2{word-spacing:-0.192384px;}
.ws142{word-spacing:-0.186372px;}
.ws30{word-spacing:-0.179327px;}
.ws118{word-spacing:-0.178200px;}
.wsb3{word-spacing:-0.168336px;}
.ws1e{word-spacing:-0.161395px;}
.ws170{word-spacing:-0.150300px;}
.wsd2{word-spacing:-0.129276px;}
.ws98{word-spacing:-0.124488px;}
.ws3b{word-spacing:-0.119551px;}
.ws66{word-spacing:-0.114529px;}
.ws27{word-spacing:-0.107597px;}
.ws2e{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.wsd1{word-spacing:-0.023940px;}
.ws97{word-spacing:-0.019152px;}
.ws65{word-spacing:-0.017620px;}
.wsf6{word-spacing:-0.015706px;}
.ws1b8{word-spacing:-0.005251px;}
.ws1c6{word-spacing:-0.004320px;}
.ws1c2{word-spacing:-0.003466px;}
.ws1d6{word-spacing:-0.003437px;}
.ws3{word-spacing:-0.003283px;}
.ws1c1{word-spacing:-0.002899px;}
.ws1a0{word-spacing:-0.001991px;}
.ws1{word-spacing:-0.001032px;}
.ws0{word-spacing:0.000000px;}
.wscf{word-spacing:0.000600px;}
.ws6f{word-spacing:0.005531px;}
.wsef{word-spacing:0.006012px;}
.ws18b{word-spacing:0.015756px;}
.ws18d{word-spacing:0.016491px;}
.ws123{word-spacing:0.024048px;}
.wsb5{word-spacing:0.048096px;}
.ws6e{word-spacing:0.049779px;}
.wsf5{word-spacing:0.053798px;}
.ws34{word-spacing:0.059776px;}
.ws149{word-spacing:0.060120px;}
.ws75{word-spacing:0.071904px;}
.ws15f{word-spacing:0.078156px;}
.ws14{word-spacing:0.095641px;}
.wsc0{word-spacing:0.102204px;}
.ws28{word-spacing:0.107597px;}
.ws128{word-spacing:0.108216px;}
.ws7c{word-spacing:0.110621px;}
.wsd9{word-spacing:0.113400px;}
.ws2c{word-spacing:0.119551px;}
.ws76{word-spacing:0.121683px;}
.wsae{word-spacing:0.124200px;}
.wsd8{word-spacing:0.140400px;}
.ws134{word-spacing:0.156600px;}
.ws1a{word-spacing:0.161395px;}
.wsbf{word-spacing:0.162324px;}
.wsda{word-spacing:0.167400px;}
.wse6{word-spacing:0.172800px;}
.wsa2{word-spacing:0.178200px;}
.ws2f{word-spacing:0.179327px;}
.wsa6{word-spacing:0.180360px;}
.ws133{word-spacing:0.194400px;}
.wsb6{word-spacing:0.198396px;}
.ws122{word-spacing:0.204408px;}
.wsa{word-spacing:0.209214px;}
.ws62{word-spacing:0.215194px;}
.ws11b{word-spacing:0.216000px;}
.ws95{word-spacing:0.239102px;}
.ws19{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws40{word-spacing:0.298878px;}
.ws25{word-spacing:0.322790px;}
.ws42{word-spacing:0.358654px;}
.wsc4{word-spacing:0.359543px;}
.ws8d{word-spacing:0.376589px;}
.ws19c{word-spacing:0.418429px;}
.wsab{word-spacing:0.475200px;}
.ws85{word-spacing:0.476928px;}
.ws172{word-spacing:0.478205px;}
.ws87{word-spacing:0.491832px;}
.wsac{word-spacing:0.496800px;}
.ws86{word-spacing:0.501768px;}
.ws29{word-spacing:0.591782px;}
.ws176{word-spacing:0.597756px;}
.ws14d{word-spacing:0.613224px;}
.ws4d{word-spacing:0.657532px;}
.ws1c0{word-spacing:0.699379px;}
.ws17e{word-spacing:0.717307px;}
.ws1a5{word-spacing:0.753178px;}
.wsfc{word-spacing:0.763524px;}
.ws182{word-spacing:0.777083px;}
.wsff{word-spacing:0.781560px;}
.ws1a9{word-spacing:0.806976px;}
.ws10d{word-spacing:0.869400px;}
.ws10c{word-spacing:0.896400px;}
.ws12d{word-spacing:0.901800px;}
.ws12e{word-spacing:0.907200px;}
.ws1f{word-spacing:0.914573px;}
.ws197{word-spacing:0.956410px;}
.ws1cd{word-spacing:0.968371px;}
.ws19b{word-spacing:1.016185px;}
.ws24{word-spacing:1.022170px;}
.ws55{word-spacing:1.075961px;}
.ws18{word-spacing:1.075968px;}
.ws6c{word-spacing:1.084084px;}
.wscb{word-spacing:1.129766px;}
.wsf2{word-spacing:1.130256px;}
.ws19e{word-spacing:1.135736px;}
.ws26{word-spacing:1.183565px;}
.ws4e{word-spacing:1.195512px;}
.wsf0{word-spacing:1.202400px;}
.ws13f{word-spacing:1.208412px;}
.wse5{word-spacing:1.215000px;}
.ws140{word-spacing:1.232460px;}
.ws1a4{word-spacing:1.237363px;}
.ws166{word-spacing:1.244484px;}
.ws89{word-spacing:1.255288px;}
.ws18e{word-spacing:1.270738px;}
.ws18c{word-spacing:1.278220px;}
.wsf1{word-spacing:1.286568px;}
.ws165{word-spacing:1.328652px;}
.ws1a8{word-spacing:1.344960px;}
.ws17c{word-spacing:1.374839px;}
.ws11e{word-spacing:1.472940px;}
.ws11d{word-spacing:1.503000px;}
.ws11f{word-spacing:1.521036px;}
.ws11c{word-spacing:1.551096px;}
.ws14c{word-spacing:1.557108px;}
.ws1ad{word-spacing:1.560154px;}
.ws54{word-spacing:1.613941px;}
.ws14b{word-spacing:1.629252px;}
.ws171{word-spacing:1.673717px;}
.ws177{word-spacing:1.733492px;}
.ws82{word-spacing:1.788480px;}
.ws84{word-spacing:1.813320px;}
.ws83{word-spacing:1.833192px;}
.ws195{word-spacing:1.853044px;}
.ws104{word-spacing:1.905804px;}
.ws4f{word-spacing:1.912819px;}
.ws157{word-spacing:1.941876px;}
.wsd6{word-spacing:1.960200px;}
.ws173{word-spacing:1.972595px;}
.ws13b{word-spacing:1.977948px;}
.wsd7{word-spacing:1.987200px;}
.wsb{word-spacing:2.008454px;}
.ws13a{word-spacing:2.038068px;}
.ws1ca{word-spacing:2.044339px;}
.ws158{word-spacing:2.050092px;}
.ws1d0{word-spacing:2.098138px;}
.ws174{word-spacing:2.151922px;}
.ws124{word-spacing:2.176344px;}
.ws1d4{word-spacing:2.205734px;}
.ws16f{word-spacing:2.260512px;}
.ws41{word-spacing:2.271473px;}
.ws125{word-spacing:2.278548px;}
.ws22{word-spacing:2.313331px;}
.ws77{word-spacing:2.356223px;}
.ws192{word-spacing:2.391024px;}
.ws1b{word-spacing:2.420928px;}
.ws1a7{word-spacing:2.474726px;}
.ws8{word-spacing:2.510568px;}
.ws1a1{word-spacing:2.528525px;}
.ws13c{word-spacing:2.555100px;}
.ws1cc{word-spacing:2.582323px;}
.wsb8{word-spacing:2.615220px;}
.ws31{word-spacing:2.630126px;}
.ws12c{word-spacing:2.635200px;}
.ws16e{word-spacing:2.639268px;}
.ws131{word-spacing:2.646000px;}
.wsa1{word-spacing:2.656800px;}
.ws13e{word-spacing:2.657304px;}
.wsa0{word-spacing:2.662200px;}
.wsb7{word-spacing:2.663316px;}
.ws129{word-spacing:2.673000px;}
.ws9f{word-spacing:2.683800px;}
.ws12f{word-spacing:2.689200px;}
.ws184{word-spacing:2.689902px;}
.ws5f{word-spacing:2.689920px;}
.ws12a{word-spacing:2.700000px;}
.ws12b{word-spacing:2.710800px;}
.ws9e{word-spacing:2.721600px;}
.ws130{word-spacing:2.727000px;}
.ws13d{word-spacing:2.735460px;}
.wscc{word-spacing:2.749678px;}
.ws1d8{word-spacing:2.797517px;}
.ws4b{word-spacing:2.809453px;}
.ws6d{word-spacing:2.826361px;}
.ws1a2{word-spacing:2.851315px;}
.ws53{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.ws35{word-spacing:2.929004px;}
.ws5e{word-spacing:2.958912px;}
.ws36{word-spacing:2.988780px;}
.ws167{word-spacing:3.006000px;}
.ws168{word-spacing:3.030048px;}
.ws38{word-spacing:3.048556px;}
.ws169{word-spacing:3.072132px;}
.ws9c{word-spacing:3.072600px;}
.ws9d{word-spacing:3.083400px;}
.ws1b1{word-spacing:3.120307px;}
.ws17d{word-spacing:3.168107px;}
.ws1b0{word-spacing:3.174106px;}
.ws1d5{word-spacing:3.219331px;}
.ws1ba{word-spacing:3.220934px;}
.ws1c3{word-spacing:3.222845px;}
.ws1b2{word-spacing:3.223747px;}
.ws1c7{word-spacing:3.224717px;}
.ws1ae{word-spacing:3.225600px;}
.ws1bf{word-spacing:3.225917px;}
.ws1bc{word-spacing:3.226368px;}
.ws1da{word-spacing:3.227155px;}
.ws1b7{word-spacing:3.227827px;}
.ws1af{word-spacing:3.227904px;}
.ws1cf{word-spacing:3.228192px;}
.ws1d9{word-spacing:3.228490px;}
.ws1c8{word-spacing:3.229008px;}
.wsbe{word-spacing:3.276540px;}
.ws21{word-spacing:3.281702px;}
.ws1b3{word-spacing:3.335501px;}
.ws96{word-spacing:3.347434px;}
.wsec{word-spacing:3.372732px;}
.ws111{word-spacing:3.385800px;}
.ws1b6{word-spacing:3.389299px;}
.ws116{word-spacing:3.396600px;}
.ws198{word-spacing:3.407209px;}
.ws112{word-spacing:3.407400px;}
.wseb{word-spacing:3.420828px;}
.ws70{word-spacing:3.423714px;}
.ws115{word-spacing:3.434400px;}
.wsdb{word-spacing:3.450600px;}
.wsdc{word-spacing:3.461400px;}
.ws1a6{word-spacing:3.496896px;}
.ws2b{word-spacing:3.586536px;}
.ws154{word-spacing:3.601188px;}
.wsdd{word-spacing:3.731400px;}
.ws152{word-spacing:3.745476px;}
.ws1ce{word-spacing:3.765888px;}
.ws153{word-spacing:3.829644px;}
.wsc7{word-spacing:3.873485px;}
.wsc6{word-spacing:3.927283px;}
.ws186{word-spacing:3.945190px;}
.ws188{word-spacing:3.967774px;}
.ws103{word-spacing:4.003992px;}
.ws190{word-spacing:4.004965px;}
.ws155{word-spacing:4.058100px;}
.ws148{word-spacing:4.070124px;}
.ws7b{word-spacing:4.070845px;}
.ws147{word-spacing:4.088160px;}
.ws64{word-spacing:4.088678px;}
.ws113{word-spacing:4.104000px;}
.ws52{word-spacing:4.124516px;}
.ws23{word-spacing:4.142477px;}
.ws3c{word-spacing:4.184292px;}
.ws114{word-spacing:4.212000px;}
.ws191{word-spacing:4.303843px;}
.ws1d1{word-spacing:4.303872px;}
.ws43{word-spacing:4.363619px;}
.ws1c{word-spacing:4.411469px;}
.ws7a{word-spacing:4.413770px;}
.wsc9{word-spacing:4.465267px;}
.wsd4{word-spacing:4.476600px;}
.ws93{word-spacing:4.602721px;}
.ws1b9{word-spacing:4.734259px;}
.ws6a{word-spacing:4.756694px;}
.ws18f{word-spacing:4.782048px;}
.wsaa{word-spacing:4.811400px;}
.wsa8{word-spacing:4.816800px;}
.wsa7{word-spacing:4.833000px;}
.ws6b{word-spacing:4.834129px;}
.ws199{word-spacing:4.841824px;}
.ws1c9{word-spacing:4.841856px;}
.ws156{word-spacing:4.845672px;}
.wsd3{word-spacing:4.849200px;}
.wsd5{word-spacing:4.865400px;}
.wsa9{word-spacing:4.870800px;}
.ws1d{word-spacing:4.949453px;}
.ws19f{word-spacing:4.961375px;}
.ws45{word-spacing:5.021150px;}
.ws1b4{word-spacing:5.057050px;}
.ws46{word-spacing:5.080926px;}
.ws15e{word-spacing:5.122224px;}
.ws189{word-spacing:5.188326px;}
.ws187{word-spacing:5.193135px;}
.ws33{word-spacing:5.200477px;}
.ws15d{word-spacing:5.206392px;}
.ws48{word-spacing:5.260253px;}
.wsf7{word-spacing:5.272243px;}
.ws1d3{word-spacing:5.433638px;}
.ws81{word-spacing:5.434992px;}
.ws145{word-spacing:5.464908px;}
.ws1dc{word-spacing:5.487437px;}
.ws94{word-spacing:5.499355px;}
.ws10b{word-spacing:5.524200px;}
.ws107{word-spacing:5.545800px;}
.ws17b{word-spacing:5.559131px;}
.ws51{word-spacing:5.618906px;}
.wsea{word-spacing:5.801580px;}
.wsee{word-spacing:5.849676px;}
.ws44{word-spacing:5.858009px;}
.ws139{word-spacing:5.861700px;}
.wsd0{word-spacing:5.917784px;}
.ws78{word-spacing:5.973523px;}
.wsf9{word-spacing:5.975100px;}
.wsfa{word-spacing:5.975700px;}
.ws179{word-spacing:5.977560px;}
.ws79{word-spacing:6.050958px;}
.ws12{word-spacing:6.067206px;}
.wscd{word-spacing:6.097111px;}
.ws13{word-spacing:6.150892px;}
.ws4a{word-spacing:6.156887px;}
.wse9{word-spacing:6.198372px;}
.ws1dd{word-spacing:6.240614px;}
.ws108{word-spacing:6.264000px;}
.wse2{word-spacing:6.285600px;}
.wse4{word-spacing:6.296400px;}
.wse3{word-spacing:6.301800px;}
.ws19a{word-spacing:6.336214px;}
.ws4c{word-spacing:6.395989px;}
.wsba{word-spacing:6.577128px;}
.ws159{word-spacing:6.595164px;}
.ws15a{word-spacing:6.601176px;}
.wsb9{word-spacing:6.649272px;}
.ws10a{word-spacing:6.663600px;}
.ws109{word-spacing:6.674400px;}
.ws1db{word-spacing:6.778598px;}
.wsa4{word-spacing:6.865704px;}
.ws17a{word-spacing:6.874194px;}
.ws19d{word-spacing:6.933970px;}
.ws194{word-spacing:7.173072px;}
.wsa5{word-spacing:7.310592px;}
.ws92{word-spacing:7.651277px;}
.ws8e{word-spacing:8.009930px;}
.wsbb{word-spacing:8.013996px;}
.wsb4{word-spacing:8.032032px;}
.wsbc{word-spacing:8.104176px;}
.ws88{word-spacing:8.410824px;}
.ws10{word-spacing:8.661460px;}
.ws106{word-spacing:8.769600px;}
.ws105{word-spacing:8.812800px;}
.ws100{word-spacing:9.066096px;}
.ws1cb{word-spacing:9.737510px;}
.ws1d7{word-spacing:10.275494px;}
.ws67{word-spacing:10.690838px;}
.ws99{word-spacing:11.620476px;}
.ws136{word-spacing:13.436820px;}
.ws120{word-spacing:14.440824px;}
.ws121{word-spacing:14.506956px;}
.wsc1{word-spacing:14.717158px;}
.ws60{word-spacing:15.171149px;}
.ws7{word-spacing:15.483541px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.ws1d2{word-spacing:16.623706px;}
.wsca{word-spacing:17.161690px;}
.wsf{word-spacing:17.699504px;}
.ws163{word-spacing:18.793512px;}
.ws164{word-spacing:19.202328px;}
.wsce{word-spacing:22.415850px;}
.ws11{word-spacing:27.448877px;}
.ws5d{word-spacing:1465.689263px;}
._0{margin-left:-35.544868px;}
._28{margin-left:-21.250368px;}
._1f{margin-left:-7.711052px;}
._1{margin-left:-6.681028px;}
._6{margin-left:-5.397721px;}
._7{margin-left:-3.849538px;}
._4{margin-left:-2.243666px;}
._c{margin-left:-1.195515px;}
._5{width:1.091170px;}
._2{width:2.991538px;}
._3{width:4.117109px;}
._27{width:5.355893px;}
._9{width:10.460700px;}
._14{width:12.266035px;}
._8{width:13.708572px;}
._e{width:15.298690px;}
._13{width:16.516109px;}
._f{width:17.763498px;}
._10{width:19.423601px;}
._19{width:21.280114px;}
._20{width:22.654952px;}
._11{width:23.886490px;}
._a{width:25.946136px;}
._21{width:27.221990px;}
._12{width:29.427725px;}
._17{width:30.816406px;}
._b{width:32.637384px;}
._18{width:34.131868px;}
._22{width:35.686036px;}
._23{width:37.957506px;}
._24{width:40.707184px;}
._d{width:56.810873px;}
._26{width:61.868160px;}
._1d{width:66.255362px;}
._1e{width:101.344090px;}
._1b{width:125.862090px;}
._15{width:811.910995px;}
._1a{width:1838.666804px;}
._1c{width:1997.554588px;}
._25{width:2351.859440px;}
._16{width:2375.769440px;}
.fc8{color:rgb(0,112,192);}
.fc6{color:rgb(8,117,183);}
.fc5{color:rgb(12,11,11);}
.fca{color:rgb(166,166,166);}
.fc9{color:rgb(0,176,80);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(53,30,58);}
.fc7{color:transparent;}
.fc2{color:rgb(90,40,100);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(72,62,33);}
.fs1a{font-size:33.120000px;}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs10{font-size:43.198416px;}
.fs1b{font-size:43.600200px;}
.fsc{font-size:44.049600px;}
.fs5{font-size:45.429600px;}
.fs17{font-size:45.507600px;}
.fs18{font-size:45.511800px;}
.fs6{font-size:47.236800px;}
.fs1c{font-size:47.337600px;}
.fsa{font-size:47.820600px;}
.fs14{font-size:47.880000px;}
.fse{font-size:49.680000px;}
.fs0{font-size:52.914960px;}
.fsb{font-size:53.798400px;}
.fs16{font-size:54.000000px;}
.fsd{font-size:55.310400px;}
.fs19{font-size:56.058000px;}
.fs12{font-size:56.680464px;}
.fs1{font-size:56.694600px;}
.fs13{font-size:56.789208px;}
.fs3{font-size:59.775600px;}
.fs15{font-size:60.120000px;}
.fs1d{font-size:62.286600px;}
.fsf{font-size:64.555296px;}
.fs2{font-size:68.033520px;}
.fs11{font-size:72.807144px;}
.fs4{font-size:107.596800px;}
.y178{bottom:-887.422050px;}
.y1a3{bottom:-832.322280px;}
.y1a2{bottom:-813.062838px;}
.y1a1{bottom:-793.893576px;}
.y1a0{bottom:-774.634134px;}
.y19f{bottom:-755.463369px;}
.y19e{bottom:-736.203927px;}
.y19d{bottom:-716.944485px;}
.y19c{bottom:-697.775223px;}
.y19b{bottom:-678.515781px;}
.y19a{bottom:-659.346519px;}
.y199{bottom:-640.087077px;}
.y198{bottom:-620.827635px;}
.y197{bottom:-601.658373px;}
.y196{bottom:-582.398931px;}
.y195{bottom:-563.229669px;}
.y194{bottom:-543.970227px;}
.y193{bottom:-524.710785px;}
.yce{bottom:-507.562050px;}
.y192{bottom:-505.541523px;}
.y191{bottom:-486.282081px;}
.y190{bottom:-467.022639px;}
.y14c{bottom:-463.576050px;}
.y18f{bottom:-447.853377px;}
.y18e{bottom:-428.593935px;}
.y126{bottom:-412.963050px;}
.y18d{bottom:-409.424673px;}
.y18c{bottom:-390.165231px;}
.y169{bottom:-372.222342px;}
.y18b{bottom:-370.905789px;}
.y139{bottom:-354.638604px;}
.y168{bottom:-352.962900px;}
.y18a{bottom:-351.736527px;}
.y138{bottom:-335.379162px;}
.y167{bottom:-333.703458px;}
.y189{bottom:-332.477085px;}
.y137{bottom:-316.209900px;}
.y166{bottom:-314.534196px;}
.y188{bottom:-313.307823px;}
.ye6{bottom:-312.615600px;}
.y136{bottom:-296.950458px;}
.y165{bottom:-295.274754px;}
.y187{bottom:-294.048381px;}
.ye5{bottom:-293.356158px;}
.y135{bottom:-277.781196px;}
.y164{bottom:-276.105492px;}
.y186{bottom:-274.788939px;}
.ye4{bottom:-274.186896px;}
.y134{bottom:-258.521754px;}
.y163{bottom:-256.846050px;}
.y185{bottom:-255.618174px;}
.ye3{bottom:-254.927454px;}
.y133{bottom:-239.262312px;}
.y184{bottom:-236.358732px;}
.ye2{bottom:-235.758192px;}
.y132{bottom:-220.093050px;}
.y162{bottom:-220.037850px;}
.y183{bottom:-217.189470px;}
.ye1{bottom:-216.498750px;}
.y161{bottom:-202.667400px;}
.y182{bottom:-197.930028px;}
.ye0{bottom:-197.239308px;}
.y160{bottom:-185.387400px;}
.y131{bottom:-183.284400px;}
.y181{bottom:-178.670586px;}
.ydf{bottom:-178.070046px;}
.y15f{bottom:-168.016950px;}
.y130{bottom:-165.913950px;}
.y180{bottom:-159.501324px;}
.yde{bottom:-158.810604px;}
.y15e{bottom:-150.736950px;}
.y12f{bottom:-148.543500px;}
.y97{bottom:-141.315726px;}
.ydd{bottom:-139.641342px;}
.y17f{bottom:-135.741900px;}
.y15d{bottom:-133.456950px;}
.y12e{bottom:-131.263500px;}
.ydc{bottom:-120.381900px;}
.y15c{bottom:-116.176950px;}
.y12d{bottom:-113.983500px;}
.y15b{bottom:-98.806500px;}
.y12c{bottom:-96.703500px;}
.y17e{bottom:-95.151900px;}
.ydb{bottom:-83.572800px;}
.y17d{bottom:-81.562500px;}
.y15a{bottom:-81.526500px;}
.y12b{bottom:-79.333050px;}
.yab{bottom:-79.216140px;}
.yda{bottom:-66.202350px;}
.y17c{bottom:-64.282500px;}
.y159{bottom:-64.246500px;}
.yaa{bottom:-63.318540px;}
.y12a{bottom:-62.053050px;}
.yd9{bottom:-48.922350px;}
.ya9{bottom:-47.420940px;}
.y158{bottom:-46.966500px;}
.y17b{bottom:-46.912050px;}
.y129{bottom:-44.773050px;}
.yd8{bottom:-31.551900px;}
.ya8{bottom:-31.523340px;}
.y17a{bottom:-29.632050px;}
.y157{bottom:-29.596050px;}
.y128{bottom:-27.493050px;}
.ya7{bottom:-15.542526px;}
.yd7{bottom:-9.142068px;}
.y156{bottom:-7.271262px;}
.y179{bottom:-7.221663px;}
.y127{bottom:-4.993239px;}
.y0{bottom:0.000000px;}
.yef{bottom:3.420600px;}
.yc{bottom:3.425340px;}
.ya6{bottom:4.998258px;}
.y4{bottom:9.473101px;}
.yb{bottom:14.151273px;}
.yf7{bottom:16.777950px;}
.y3{bottom:28.937869px;}
.y50{bottom:31.890000px;}
.y2{bottom:32.769195px;}
.yb9{bottom:49.124359px;}
.yb8{bottom:49.372812px;}
.y104{bottom:52.685391px;}
.yf6{bottom:53.137950px;}
.y103{bottom:78.335841px;}
.yf5{bottom:78.787950px;}
.y122{bottom:92.652000px;}
.yca{bottom:92.839500px;}
.y148{bottom:99.693000px;}
.y1de{bottom:102.211500px;}
.y25{bottom:102.823500px;}
.y211{bottom:103.557000px;}
.y102{bottom:104.076178px;}
.yf4{bottom:104.527950px;}
.y1a9{bottom:105.640500px;}
.y87{bottom:109.366500px;}
.y121{bottom:111.481500px;}
.yc9{bottom:112.072500px;}
.y4f{bottom:113.907000px;}
.y147{bottom:118.522500px;}
.y1a8{bottom:119.991000px;}
.yba{bottom:120.663474px;}
.y24{bottom:120.711000px;}
.y2ae{bottom:120.817500px;}
.y1dd{bottom:121.041000px;}
.y210{bottom:122.386500px;}
.y86{bottom:128.196000px;}
.y101{bottom:129.816514px;}
.yf3{bottom:130.267950px;}
.y120{bottom:130.311000px;}
.yc8{bottom:131.305500px;}
.y241{bottom:132.609000px;}
.y4e{bottom:132.736500px;}
.y275{bottom:136.105500px;}
.y146{bottom:137.352000px;}
.y2ad{bottom:138.078000px;}
.y23{bottom:138.600000px;}
.y1a6{bottom:139.224000px;}
.y1dc{bottom:139.870500px;}
.y20f{bottom:141.216000px;}
.y1a7{bottom:144.106500px;}
.y85{bottom:147.025500px;}
.y11f{bottom:149.140500px;}
.y240{bottom:150.183000px;}
.yc7{bottom:150.538500px;}
.y4d{bottom:151.566000px;}
.y274{bottom:153.366000px;}
.y2ac{bottom:155.338500px;}
.y100{bottom:155.466964px;}
.yf2{bottom:156.007950px;}
.y145{bottom:156.181500px;}
.y22{bottom:156.487500px;}
.y1a5{bottom:158.457000px;}
.y1db{bottom:158.700000px;}
.y20e{bottom:160.045500px;}
.y84{bottom:165.855000px;}
.ybd{bottom:167.528274px;}
.y23f{bottom:167.757000px;}
.ybf{bottom:167.859474px;}
.y11e{bottom:167.970000px;}
.yc6{bottom:169.771500px;}
.y4c{bottom:170.395500px;}
.y273{bottom:170.626500px;}
.y2ab{bottom:172.599000px;}
.y21{bottom:174.375000px;}
.y144{bottom:175.011000px;}
.y1da{bottom:177.529500px;}
.y1a4{bottom:177.690000px;}
.y20d{bottom:178.875000px;}
.yff{bottom:181.117415px;}
.yf1{bottom:181.567950px;}
.y83{bottom:184.684500px;}
.y23e{bottom:185.331000px;}
.y11d{bottom:186.799500px;}
.ybc{bottom:187.731612px;}
.y272{bottom:187.887000px;}
.yc5{bottom:189.004500px;}
.y4b{bottom:189.225000px;}
.y2aa{bottom:189.858000px;}
.y20{bottom:192.264000px;}
.y1d9{bottom:196.359000px;}
.y175{bottom:200.119500px;}
.y20c{bottom:202.188000px;}
.y23d{bottom:202.905000px;}
.y82{bottom:203.514000px;}
.y143{bottom:204.093000px;}
.y271{bottom:205.147500px;}
.y11c{bottom:205.629000px;}
.yfe{bottom:206.857751px;}
.y2a9{bottom:207.118500px;}
.yf0{bottom:207.307950px;}
.y4a{bottom:208.054500px;}
.yc4{bottom:208.237500px;}
.yc0{bottom:208.348812px;}
.ybb{bottom:209.176674px;}
.y1f{bottom:210.151500px;}
.y1d8{bottom:215.188500px;}
.y23c{bottom:220.479000px;}
.y81{bottom:222.343500px;}
.y270{bottom:222.406500px;}
.y142{bottom:223.326000px;}
.y2a8{bottom:224.379000px;}
.y11b{bottom:224.458500px;}
.yc3{bottom:227.470500px;}
.y1e{bottom:228.039000px;}
.y49{bottom:231.367500px;}
.yfd{bottom:232.598087px;}
.yed{bottom:233.048100px;}
.y1d7{bottom:234.018000px;}
.y20b{bottom:235.812000px;}
.ybe{bottom:238.653612px;}
.y26f{bottom:239.667000px;}
.y80{bottom:241.173000px;}
.y2a7{bottom:241.639500px;}
.y141{bottom:242.559000px;}
.y11a{bottom:243.288000px;}
.y177{bottom:246.668085px;}
.yc2{bottom:246.703500px;}
.y1d6{bottom:252.847500px;}
.y20a{bottom:254.641500px;}
.y23b{bottom:255.985500px;}
.y176{bottom:256.297950px;}
.y26e{bottom:256.927500px;}
.yfc{bottom:258.157514px;}
.yec{bottom:258.607950px;}
.y2a6{bottom:258.900000px;}
.y7f{bottom:260.002500px;}
.y140{bottom:261.792000px;}
.y119{bottom:262.117500px;}
.yc1{bottom:265.936500px;}
.y1d5{bottom:271.677000px;}
.y209{bottom:273.471000px;}
.y26d{bottom:274.188000px;}
.y239{bottom:274.815000px;}
.y2a5{bottom:276.160500px;}
.y7e{bottom:278.832000px;}
.y23a{bottom:280.240500px;}
.y118{bottom:280.945500px;}
.y13f{bottom:281.023500px;}
.yfb{bottom:283.897851px;}
.yeb{bottom:284.347950px;}
.y94{bottom:288.364500px;}
.y1d4{bottom:290.506500px;}
.y26c{bottom:291.448500px;}
.y208{bottom:292.300500px;}
.y2a4{bottom:293.421000px;}
.y238{bottom:293.644500px;}
.y7d{bottom:297.661500px;}
.y117{bottom:299.775000px;}
.y13e{bottom:300.256500px;}
.y48{bottom:305.266500px;}
.y1d{bottom:307.299000px;}
.y26b{bottom:308.709000px;}
.y1d3{bottom:309.336000px;}
.yfa{bottom:309.638187px;}
.yea{bottom:310.087950px;}
.y2a3{bottom:310.681500px;}
.y207{bottom:311.130000px;}
.y237{bottom:312.474000px;}
.yb2{bottom:312.925616px;}
.y7c{bottom:316.491000px;}
.y116{bottom:318.604500px;}
.y13d{bottom:319.489500px;}
.y47{bottom:324.724500px;}
.y1c{bottom:325.186500px;}
.y26a{bottom:325.969500px;}
.y2a2{bottom:327.940500px;}
.y1d2{bottom:328.165500px;}
.y206{bottom:329.959500px;}
.y236{bottom:331.303500px;}
.yb1{bottom:332.300274px;}
.yf9{bottom:335.197614px;}
.y7b{bottom:335.320500px;}
.ye9{bottom:335.647950px;}
.y115{bottom:337.434000px;}
.y13c{bottom:338.722500px;}
.y1b{bottom:343.074000px;}
.y269{bottom:343.230000px;}
.y2a1{bottom:345.201000px;}
.y1d1{bottom:346.995000px;}
.y205{bottom:348.789000px;}
.yb3{bottom:349.936781px;}
.y235{bottom:350.133000px;}
.y7a{bottom:354.150000px;}
.y114{bottom:356.263500px;}
.y13b{bottom:357.955500px;}
.yae{bottom:360.203547px;}
.yb0{bottom:360.203874px;}
.y268{bottom:360.489000px;}
.yf8{bottom:360.937950px;}
.y1a{bottom:360.963000px;}
.ye8{bottom:361.387950px;}
.y46{bottom:362.113500px;}
.y2a0{bottom:362.461500px;}
.yaf{bottom:365.089074px;}
.y1d0{bottom:365.824500px;}
.y204{bottom:367.618500px;}
.y234{bottom:368.962500px;}
.y79{bottom:372.979500px;}
.y113{bottom:375.093000px;}
.y13a{bottom:377.188500px;}
.y267{bottom:377.749500px;}
.y29f{bottom:379.722000px;}
.y45{bottom:381.571500px;}
.y1cf{bottom:384.654000px;}
.y203{bottom:390.930000px;}
.y78{bottom:391.809000px;}
.y233{bottom:392.275500px;}
.y112{bottom:393.922500px;}
.y266{bottom:395.010000px;}
.y29e{bottom:396.982500px;}
.ye7{bottom:397.298100px;}
.y19{bottom:399.024000px;}
.y123{bottom:399.618000px;}
.y44{bottom:401.028000px;}
.y1ce{bottom:403.483500px;}
.yad{bottom:407.233694px;}
.y77{bottom:410.638500px;}
.y265{bottom:412.270500px;}
.y111{bottom:412.752000px;}
.y29d{bottom:414.243000px;}
.y18{bottom:416.913000px;}
.y43{bottom:420.486000px;}
.y1cd{bottom:422.313000px;}
.y202{bottom:424.554000px;}
.y174{bottom:424.987500px;}
.y232{bottom:425.899500px;}
.yac{bottom:426.692274px;}
.yd6{bottom:428.887743px;}
.y76{bottom:429.468000px;}
.y264{bottom:429.531000px;}
.y29c{bottom:431.503500px;}
.y110{bottom:431.581500px;}
.y17{bottom:434.800500px;}
.y42{bottom:439.942500px;}
.y1cc{bottom:441.142500px;}
.y201{bottom:443.383500px;}
.y173{bottom:444.219000px;}
.y231{bottom:444.729000px;}
.yb5{bottom:445.736840px;}
.y263{bottom:446.791500px;}
.yd5{bottom:448.058508px;}
.y75{bottom:448.297500px;}
.y29b{bottom:448.764000px;}
.y10f{bottom:450.411000px;}
.y41{bottom:459.399000px;}
.y1cb{bottom:459.972000px;}
.y155{bottom:461.987883px;}
.y200{bottom:462.213000px;}
.y172{bottom:463.452000px;}
.y230{bottom:463.558500px;}
.y262{bottom:464.052000px;}
.y29a{bottom:466.024500px;}
.y74{bottom:467.127000px;}
.yd4{bottom:467.317950px;}
.y10e{bottom:469.240500px;}
.y16{bottom:470.622000px;}
.y1ca{bottom:478.801500px;}
.y40{bottom:478.857000px;}
.y1ff{bottom:481.042500px;}
.y154{bottom:481.247325px;}
.y261{bottom:481.312500px;}
.y22f{bottom:482.388000px;}
.y171{bottom:482.685000px;}
.y299{bottom:483.283500px;}
.y73{bottom:485.956500px;}
.y10d{bottom:488.070000px;}
.y15{bottom:488.509500px;}
.y1c9{bottom:497.631000px;}
.y3f{bottom:498.313500px;}
.y260{bottom:498.573000px;}
.y1fe{bottom:499.872000px;}
.yb4{bottom:500.384512px;}
.y153{bottom:500.506767px;}
.y298{bottom:500.544000px;}
.y22e{bottom:501.217500px;}
.y170{bottom:501.918000px;}
.yd3{bottom:504.127050px;}
.y72{bottom:504.786000px;}
.y10c{bottom:506.899500px;}
.y25f{bottom:515.832000px;}
.y1c8{bottom:516.460500px;}
.y3e{bottom:517.770000px;}
.y297{bottom:517.804500px;}
.y1fd{bottom:518.701500px;}
.y152{bottom:519.676029px;}
.y22d{bottom:520.047000px;}
.y16f{bottom:521.151000px;}
.yd2{bottom:521.497500px;}
.y71{bottom:523.615500px;}
.y14{bottom:524.329500px;}
.y10b{bottom:525.729000px;}
.y25e{bottom:533.092500px;}
.y296{bottom:535.065000px;}
.y1c7{bottom:535.290000px;}
.y3d{bottom:537.228000px;}
.y1fc{bottom:537.531000px;}
.yd1{bottom:538.777500px;}
.y22c{bottom:538.876500px;}
.y151{bottom:538.935471px;}
.y16e{bottom:540.384000px;}
.y13{bottom:542.218500px;}
.y70{bottom:542.445000px;}
.y10a{bottom:544.558500px;}
.y25d{bottom:550.353000px;}
.yb6{bottom:551.471874px;}
.y295{bottom:552.325500px;}
.y1c6{bottom:554.118000px;}
.yd0{bottom:556.147950px;}
.y1fb{bottom:556.360500px;}
.y3c{bottom:556.684500px;}
.yb7{bottom:557.350674px;}
.y22a{bottom:557.706000px;}
.y150{bottom:558.104733px;}
.y16d{bottom:559.617000px;}
.y12{bottom:560.106000px;}
.y6f{bottom:561.274500px;}
.y22b{bottom:563.130000px;}
.y109{bottom:563.388000px;}
.y25c{bottom:567.613500px;}
.y294{bottom:569.586000px;}
.y1c5{bottom:572.947500px;}
.ycf{bottom:573.427950px;}
.y1fa{bottom:575.190000px;}
.y3b{bottom:576.142500px;}
.y229{bottom:576.535500px;}
.y14f{bottom:577.364175px;}
.y11{bottom:577.993500px;}
.y16c{bottom:578.850000px;}
.y6e{bottom:580.104000px;}
.y25b{bottom:584.874000px;}
.y293{bottom:586.846500px;}
.y1f9{bottom:591.289500px;}
.y1c4{bottom:591.777000px;}
.y108{bottom:592.470000px;}
.y1f8{bottom:594.019500px;}
.y228{bottom:595.365000px;}
.y3a{bottom:595.599000px;}
.y10{bottom:595.882500px;}
.y14e{bottom:596.623617px;}
.y16b{bottom:598.083000px;}
.y6d{bottom:598.932000px;}
.ya5{bottom:601.075673px;}
.y25a{bottom:602.134500px;}
.y292{bottom:604.107000px;}
.y1c3{bottom:610.606500px;}
.y107{bottom:611.703000px;}
.y1f6{bottom:612.849000px;}
.yf{bottom:613.770000px;}
.y227{bottom:614.194500px;}
.y39{bottom:615.055500px;}
.y14d{bottom:615.794382px;}
.y16a{bottom:617.316000px;}
.y6c{bottom:617.761500px;}
.y1f7{bottom:618.273000px;}
.ya4{bottom:618.794360px;}
.y259{bottom:619.395000px;}
.y291{bottom:621.366000px;}
.ycd{bottom:626.528085px;}
.y1c2{bottom:629.436000px;}
.y106{bottom:630.936000px;}
.ye{bottom:631.657500px;}
.y226{bottom:633.022500px;}
.y38{bottom:634.513500px;}
.ycc{bottom:636.157950px;}
.y1f5{bottom:636.162000px;}
.ya3{bottom:636.430081px;}
.y6b{bottom:636.591000px;}
.y258{bottom:636.655500px;}
.y290{bottom:638.626500px;}
.y149{bottom:639.744000px;}
.y1c1{bottom:648.265500px;}
.yd{bottom:649.546500px;}
.y105{bottom:650.169000px;}
.y225{bottom:651.852000px;}
.y257{bottom:653.914500px;}
.y37{bottom:653.970000px;}
.ya2{bottom:654.148767px;}
.y6a{bottom:655.420500px;}
.y28f{bottom:655.887000px;}
.y1c0{bottom:667.095000px;}
.y1f4{bottom:669.786000px;}
.y14b{bottom:670.514085px;}
.y256{bottom:671.175000px;}
.ya1{bottom:671.867454px;}
.ya{bottom:671.917464px;}
.ycb{bottom:672.598500px;}
.y28e{bottom:673.147500px;}
.y36{bottom:673.426500px;}
.y69{bottom:674.250000px;}
.y224{bottom:675.165000px;}
.y14a{bottom:680.143950px;}
.y1bf{bottom:685.924500px;}
.y255{bottom:688.435500px;}
.y1f3{bottom:688.615500px;}
.ya0{bottom:689.503175px;}
.y28d{bottom:690.408000px;}
.y35{bottom:692.884500px;}
.y68{bottom:693.079500px;}
.y1be{bottom:704.754000px;}
.y254{bottom:705.696000px;}
.y9f{bottom:707.221862px;}
.y1f2{bottom:707.445000px;}
.y28c{bottom:707.668500px;}
.y223{bottom:708.789000px;}
.y67{bottom:711.909000px;}
.y34{bottom:712.341000px;}
.y125{bottom:721.127085px;}
.y1bd{bottom:723.583500px;}
.y28b{bottom:724.929000px;}
.y9e{bottom:724.940548px;}
.y1f1{bottom:726.273000px;}
.y253{bottom:727.440000px;}
.y222{bottom:727.618500px;}
.y66{bottom:730.738500px;}
.y124{bottom:730.756950px;}
.y33{bottom:731.799000px;}
.y28a{bottom:742.189500px;}
.y1bc{bottom:742.413000px;}
.y1f0{bottom:745.102500px;}
.y221{bottom:746.448000px;}
.y9d{bottom:746.716253px;}
.y65{bottom:749.568000px;}
.y32{bottom:751.255500px;}
.y289{bottom:759.450000px;}
.y252{bottom:761.064000px;}
.y1bb{bottom:761.242500px;}
.y1ef{bottom:763.932000px;}
.y220{bottom:765.277500px;}
.y64{bottom:768.397500px;}
.y288{bottom:776.709000px;}
.y251{bottom:778.638000px;}
.y1ba{bottom:780.072000px;}
.y9c{bottom:780.994873px;}
.y1ee{bottom:782.761500px;}
.y21f{bottom:784.107000px;}
.y63{bottom:787.227000px;}
.y31{bottom:789.841500px;}
.y287{bottom:793.969500px;}
.y250{bottom:796.212000px;}
.y9b{bottom:798.630594px;}
.y1b9{bottom:798.901500px;}
.y1ec{bottom:801.591000px;}
.y21e{bottom:802.936500px;}
.y30{bottom:805.980000px;}
.y62{bottom:806.056500px;}
.y1ed{bottom:807.016500px;}
.y286{bottom:811.230000px;}
.y9a{bottom:816.349281px;}
.y1b8{bottom:817.731000px;}
.y1ea{bottom:820.420500px;}
.y21d{bottom:821.766000px;}
.y2f{bottom:822.120000px;}
.y24f{bottom:822.753000px;}
.y61{bottom:824.886000px;}
.y1eb{bottom:825.846000px;}
.y285{bottom:828.490500px;}
.y99{bottom:834.067968px;}
.y1b7{bottom:836.560500px;}
.y1e9{bottom:839.250000px;}
.y24e{bottom:840.327000px;}
.y2e{bottom:842.599500px;}
.y60{bottom:843.715500px;}
.y21c{bottom:845.079000px;}
.y284{bottom:845.751000px;}
.y98{bottom:851.705071px;}
.y2d{bottom:854.398500px;}
.y1b6{bottom:855.390000px;}
.y24d{bottom:857.901000px;}
.y1e8{bottom:858.079500px;}
.y5f{bottom:862.545000px;}
.y283{bottom:863.011500px;}
.y2c{bottom:870.538500px;}
.y1b5{bottom:874.219500px;}
.y2b{bottom:874.878000px;}
.y24c{bottom:875.475000px;}
.y1e7{bottom:876.909000px;}
.y93{bottom:878.254500px;}
.y21b{bottom:878.703000px;}
.y282{bottom:880.272000px;}
.y5e{bottom:881.374500px;}
.y2a{bottom:891.018000px;}
.y1b4{bottom:893.049000px;}
.y1e6{bottom:895.738500px;}
.y92{bottom:897.084000px;}
.y219{bottom:897.532500px;}
.y5d{bottom:900.204000px;}
.y24b{bottom:902.016000px;}
.y96{bottom:902.047198px;}
.yee{bottom:902.226000px;}
.y29{bottom:902.817000px;}
.y21a{bottom:902.956500px;}
.y95{bottom:910.906674px;}
.y1b3{bottom:911.878500px;}
.y1e5{bottom:914.568000px;}
.y280{bottom:914.791500px;}
.y281{bottom:914.793000px;}
.y91{bottom:915.913500px;}
.y218{bottom:916.362000px;}
.y28{bottom:918.957000px;}
.y5c{bottom:919.033500px;}
.y24a{bottom:919.590000px;}
.y1b2{bottom:930.708000px;}
.y27f{bottom:932.052000px;}
.y1e4{bottom:933.397500px;}
.y90{bottom:934.743000px;}
.y27{bottom:935.097000px;}
.y217{bottom:935.191500px;}
.y5b{bottom:937.863000px;}
.y26{bottom:939.436500px;}
.y249{bottom:946.129500px;}
.y27e{bottom:949.312500px;}
.y1b1{bottom:949.537500px;}
.y1e3{bottom:952.227000px;}
.y8f{bottom:953.572500px;}
.y216{bottom:954.021000px;}
.y5a{bottom:956.692500px;}
.y27d{bottom:966.573000px;}
.y1b0{bottom:968.367000px;}
.y8e{bottom:972.402000px;}
.y248{bottom:972.670500px;}
.y215{bottom:972.849000px;}
.y59{bottom:975.522000px;}
.y1e2{bottom:975.540000px;}
.y9{bottom:979.630500px;}
.y27c{bottom:983.833500px;}
.y1af{bottom:987.196500px;}
.y8d{bottom:991.231500px;}
.y214{bottom:991.678500px;}
.y58{bottom:994.351500px;}
.y1e1{bottom:995.713500px;}
.y8{bottom:998.460000px;}
.y247{bottom:999.211500px;}
.y27b{bottom:1001.094000px;}
.y1ae{bottom:1006.026000px;}
.y8c{bottom:1010.061000px;}
.y213{bottom:1010.508000px;}
.y57{bottom:1013.181000px;}
.y246{bottom:1016.785500px;}
.y27a{bottom:1018.354500px;}
.y1ad{bottom:1024.855500px;}
.y1e0{bottom:1029.337500px;}
.y56{bottom:1032.010500px;}
.y8b{bottom:1033.372500px;}
.y245{bottom:1034.359500px;}
.y279{bottom:1035.615000px;}
.y7{bottom:1041.199500px;}
.y1ac{bottom:1043.685000px;}
.y1df{bottom:1048.167000px;}
.y55{bottom:1050.840000px;}
.y244{bottom:1051.933500px;}
.y278{bottom:1052.875500px;}
.y1ab{bottom:1062.513000px;}
.y8a{bottom:1066.996500px;}
.y6{bottom:1069.443000px;}
.y243{bottom:1069.507500px;}
.y54{bottom:1069.669500px;}
.y277{bottom:1070.134500px;}
.y1aa{bottom:1081.342500px;}
.y89{bottom:1085.826000px;}
.y242{bottom:1087.081500px;}
.y276{bottom:1087.395000px;}
.y53{bottom:1088.499000px;}
.y212{bottom:1091.251500px;}
.y5{bottom:1097.688000px;}
.y88{bottom:1104.655500px;}
.y52{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.h27{height:12.960000px;}
.h9{height:25.508090px;}
.h26{height:27.987174px;}
.h29{height:27.989757px;}
.h30{height:29.037733px;}
.h28{height:29.761970px;}
.h1c{height:31.470721px;}
.h31{height:31.526842px;}
.hb{height:33.112997px;}
.hd{height:33.821261px;}
.ha{height:34.199443px;}
.h2e{height:35.319830px;}
.h3{height:35.876343px;}
.h2b{height:37.334628px;}
.h11{height:37.551283px;}
.hf{height:38.734848px;}
.h4{height:39.402747px;}
.hc{height:39.457760px;}
.h18{height:40.564561px;}
.h16{height:41.145940px;}
.h1e{height:41.292604px;}
.h1f{height:41.344096px;}
.h21{height:41.371825px;}
.h34{height:41.482876px;}
.h14{height:41.723369px;}
.h35{height:41.783144px;}
.h33{height:42.840113px;}
.h12{height:43.038432px;}
.h6{height:43.815515px;}
.h23{height:44.723848px;}
.he{height:45.094826px;}
.h5{height:46.126727px;}
.h19{height:46.405195px;}
.h2f{height:46.645840px;}
.h1a{height:46.998021px;}
.h1b{height:47.029542px;}
.h20{height:49.676309px;}
.h25{height:50.440430px;}
.h10{height:50.731891px;}
.h2{height:50.931027px;}
.h17{height:51.664451px;}
.h1d{height:53.005592px;}
.h8{height:54.405312px;}
.h24{height:56.157012px;}
.h13{height:56.368391px;}
.h32{height:64.542113px;}
.h7{height:77.469696px;}
.h2d{height:207.126000px;}
.h22{height:375.241500px;}
.h2c{height:432.312000px;}
.h15{height:572.228040px;}
.h2a{height:672.439500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:68.130000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w4{width:467.066520px;}
.w7{width:467.476500px;}
.w8{width:507.937500px;}
.w5{width:579.418500px;}
.w9{width:595.980000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x99{left:-212.949000px;}
.x8f{left:-202.993500px;}
.x81{left:-191.956500px;}
.x63{left:-186.754020px;}
.xa5{left:-96.124500px;}
.xa6{left:-64.264500px;}
.x9a{left:-17.380090px;}
.x64{left:-6.829289px;}
.x0{left:0.000000px;}
.x78{left:3.023580px;}
.x76{left:5.838780px;}
.x86{left:10.453500px;}
.x73{left:11.551980px;}
.x9c{left:14.481000px;}
.x65{left:22.482458px;}
.x91{left:24.436500px;}
.x4{left:29.274117px;}
.x82{left:35.473500px;}
.x7a{left:38.793180px;}
.x1{left:54.000000px;}
.x85{left:55.183500px;}
.x77{left:56.512380px;}
.x3{left:60.027581px;}
.x84{left:61.200000px;}
.xa9{left:85.890000px;}
.xa7{left:99.445500px;}
.x69{left:109.339379px;}
.x79{left:114.803580px;}
.x75{left:125.485389px;}
.xa8{left:131.304591px;}
.x6a{left:138.898380px;}
.xaa{left:143.170500px;}
.x6b{left:146.681580px;}
.xa4{left:148.467000px;}
.xae{left:150.292500px;}
.x6e{left:158.191217px;}
.x67{left:170.527980px;}
.x6d{left:173.011980px;}
.x6c{left:179.884380px;}
.x2{left:181.274369px;}
.x74{left:186.591180px;}
.x68{left:188.164382px;}
.xaf{left:199.566000px;}
.xb3{left:204.823500px;}
.xb0{left:207.784500px;}
.x70{left:219.711638px;}
.xb4{left:221.359500px;}
.x7b{left:223.851180px;}
.xb1{left:232.971000px;}
.xb2{left:239.298000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xa2{left:254.842500px;}
.xa3{left:260.814000px;}
.x6f{left:263.677808px;}
.xd9{left:267.043500px;}
.x71{left:268.811355px;}
.x6{left:271.060500px;}
.x10{left:282.786000px;}
.x4b{left:284.599500px;}
.x27{left:288.373500px;}
.xd7{left:291.055500px;}
.xc9{left:296.605500px;}
.x4c{left:299.544000px;}
.x28{left:303.318000px;}
.xd8{left:306.000000px;}
.x87{left:307.734000px;}
.x8{left:310.129500px;}
.xed{left:311.245500px;}
.xc5{left:317.608500px;}
.xf{left:321.205500px;}
.x98{left:322.234500px;}
.x45{left:325.077000px;}
.xe4{left:327.484500px;}
.xdf{left:328.767000px;}
.x2f{left:331.300500px;}
.x72{left:336.210780px;}
.xc6{left:339.874500px;}
.x30{left:346.245000px;}
.x31{left:349.987500px;}
.xcb{left:355.519500px;}
.xbb{left:358.395000px;}
.xbc{left:362.205000px;}
.x32{left:364.932000px;}
.x92{left:368.289000px;}
.xbd{left:369.678000px;}
.x11{left:372.625500px;}
.xef{left:374.245500px;}
.x21{left:375.636000px;}
.x46{left:377.047500px;}
.xa0{left:378.255000px;}
.x12{left:380.098500px;}
.x9e{left:382.621500px;}
.xa1{left:386.473500px;}
.xbe{left:388.432500px;}
.x22{left:390.580500px;}
.xca{left:392.485500px;}
.xec{left:393.925500px;}
.xbf{left:396.054000px;}
.xc4{left:401.989500px;}
.xe7{left:403.756500px;}
.x47{left:406.054500px;}
.xcc{left:407.925000px;}
.xc0{left:410.997000px;}
.xcd{left:418.936500px;}
.xee{left:429.477000px;}
.xce{left:433.879500px;}
.xdc{left:438.718500px;}
.xe2{left:440.248500px;}
.xdd{left:442.867500px;}
.xd{left:448.746000px;}
.x48{left:455.962500px;}
.x90{left:460.574513px;}
.x1b{left:472.347000px;}
.x66{left:474.072515px;}
.xab{left:481.726500px;}
.x1c{left:487.290000px;}
.xac{left:490.035000px;}
.x1d{left:491.101500px;}
.xe{left:492.160500px;}
.xd2{left:496.257000px;}
.xd0{left:501.424500px;}
.x23{left:502.953000px;}
.xe0{left:504.930000px;}
.x1e{left:506.044500px;}
.xd3{left:511.200000px;}
.x9b{left:512.268494px;}
.xd4{left:514.951500px;}
.x55{left:516.723000px;}
.x24{left:517.896000px;}
.xd1{left:520.030500px;}
.xe6{left:524.905500px;}
.xd5{left:529.894500px;}
.x4d{left:532.783500px;}
.x4e{left:540.360000px;}
.x8a{left:543.696000px;}
.x50{left:547.143000px;}
.xd6{left:548.590500px;}
.x4f{left:555.304500px;}
.x8b{left:558.640500px;}
.x62{left:559.788000px;}
.xad{left:561.109500px;}
.x8c{left:562.450500px;}
.xe5{left:566.928000px;}
.x40{left:568.326000px;}
.x13{left:569.658000px;}
.x60{left:575.521500px;}
.x14{left:577.129500px;}
.x29{left:579.261000px;}
.x8d{left:581.205000px;}
.x41{left:583.270500px;}
.x15{left:584.467500px;}
.x61{left:590.464500px;}
.x16{left:591.939000px;}
.x2a{left:594.205500px;}
.x5a{left:595.225500px;}
.x2b{left:598.012500px;}
.x9{left:604.192500px;}
.x5b{left:610.168500px;}
.x2c{left:612.955500px;}
.xa{left:616.476000px;}
.x3c{left:619.839000px;}
.xda{left:623.914500px;}
.x3d{left:627.310500px;}
.x5c{left:628.774500px;}
.x3e{left:631.087500px;}
.x5d{left:632.436000px;}
.x51{left:635.475000px;}
.x3f{left:638.559000px;}
.x95{left:641.907000px;}
.xcf{left:644.742000px;}
.x5e{left:647.379000px;}
.x9f{left:649.653000px;}
.xb{left:650.893500px;}
.x52{left:654.229500px;}
.x38{left:656.499000px;}
.x96{left:657.544500px;}
.xc{left:659.805000px;}
.xdb{left:664.462500px;}
.xc1{left:665.836500px;}
.x49{left:667.234500px;}
.x3a{left:668.877000px;}
.x39{left:671.442000px;}
.x53{left:672.984000px;}
.x4a{left:674.706000px;}
.x3b{left:676.350000px;}
.x25{left:677.797500px;}
.xe8{left:681.781500px;}
.x93{left:684.537000px;}
.x54{left:687.928500px;}
.xf7{left:689.634000px;}
.x94{left:691.261500px;}
.x26{left:692.742000px;}
.xfa{left:695.373000px;}
.xc2{left:696.846000px;}
.xf4{left:698.452500px;}
.xea{left:701.701500px;}
.xe3{left:703.735500px;}
.xc3{left:711.790500px;}
.xf8{left:716.533500px;}
.xeb{left:719.484000px;}
.xb5{left:720.694500px;}
.x33{left:723.103500px;}
.xb6{left:728.167500px;}
.x80{left:729.190500px;}
.x88{left:730.242000px;}
.xb7{left:731.977500px;}
.xf6{left:735.064500px;}
.x34{left:736.117500px;}
.xb8{left:739.450500px;}
.xb9{left:743.260500px;}
.x89{left:745.185000px;}
.xf5{left:747.349500px;}
.xf2{left:749.617500px;}
.xc7{left:751.317000px;}
.xc8{left:754.572000px;}
.x83{left:756.711000px;}
.xba{left:758.205000px;}
.x7c{left:762.135000px;}
.x7e{left:763.995000px;}
.x97{left:765.334500px;}
.x56{left:766.912500px;}
.x7d{left:768.859500px;}
.xf9{left:770.214000px;}
.x7f{left:772.212000px;}
.x35{left:774.165000px;}
.x9d{left:775.191000px;}
.x42{left:779.350500px;}
.x57{left:781.857000px;}
.x36{left:784.065000px;}
.x58{left:785.518500px;}
.x43{left:786.822000px;}
.x44{left:790.588500px;}
.xe9{left:794.847000px;}
.xf0{left:796.638000px;}
.x5f{left:798.943500px;}
.x59{left:800.461500px;}
.x17{left:802.605000px;}
.x1f{left:805.668000px;}
.xe1{left:807.705000px;}
.x18{left:810.076500px;}
.x20{left:813.139500px;}
.x19{left:817.698000px;}
.x2d{left:818.898000px;}
.xde{left:821.490000px;}
.xf1{left:823.536000px;}
.x37{left:829.012500px;}
.x1a{left:832.642500px;}
.x2e{left:833.842500px;}
.x8e{left:835.332000px;}
.xf3{left:837.276000px;}
@media print{
.v5{vertical-align:-17.360000pt;}
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-13.440533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.352682pt;}
.v1{vertical-align:19.285333pt;}
.ls60{letter-spacing:-0.372185pt;}
.ls30{letter-spacing:-0.189362pt;}
.ls2e{letter-spacing:-0.163392pt;}
.ls95{letter-spacing:-0.160320pt;}
.ls90{letter-spacing:-0.144288pt;}
.ls35{letter-spacing:-0.143456pt;}
.ls94{letter-spacing:-0.138944pt;}
.ls8b{letter-spacing:-0.133600pt;}
.ls3b{letter-spacing:-0.131980pt;}
.ls70{letter-spacing:-0.128256pt;}
.ls92{letter-spacing:-0.122912pt;}
.ls93{letter-spacing:-0.117568pt;}
.ls8c{letter-spacing:-0.112224pt;}
.ls96{letter-spacing:-0.106880pt;}
.ls25{letter-spacing:-0.103246pt;}
.ls59{letter-spacing:-0.096192pt;}
.ls2a{letter-spacing:-0.093413pt;}
.ls57{letter-spacing:-0.090848pt;}
.ls5c{letter-spacing:-0.085504pt;}
.ls27{letter-spacing:-0.083580pt;}
.ls50{letter-spacing:-0.080864pt;}
.ls54{letter-spacing:-0.080160pt;}
.ls6d{letter-spacing:-0.076608pt;}
.ls39{letter-spacing:-0.075719pt;}
.ls72{letter-spacing:-0.074816pt;}
.ls23{letter-spacing:-0.074395pt;}
.ls37{letter-spacing:-0.070536pt;}
.ls56{letter-spacing:-0.069472pt;}
.ls38{letter-spacing:-0.065623pt;}
.ls55{letter-spacing:-0.064128pt;}
.ls4e{letter-spacing:-0.063840pt;}
.ls91{letter-spacing:-0.058784pt;}
.ls21{letter-spacing:-0.058733pt;}
.ls86{letter-spacing:-0.057600pt;}
.ls6b{letter-spacing:-0.055328pt;}
.ls71{letter-spacing:-0.053440pt;}
.ls5f{letter-spacing:-0.052591pt;}
.ls5a{letter-spacing:-0.048096pt;}
.ls3d{letter-spacing:-0.045431pt;}
.ls8d{letter-spacing:-0.042752pt;}
.ls24{letter-spacing:-0.034415pt;}
.ls73{letter-spacing:-0.032064pt;}
.ls29{letter-spacing:-0.029499pt;}
.ls6f{letter-spacing:-0.028800pt;}
.ls8e{letter-spacing:-0.026720pt;}
.ls28{letter-spacing:-0.024582pt;}
.ls85{letter-spacing:-0.024000pt;}
.ls58{letter-spacing:-0.021376pt;}
.ls89{letter-spacing:-0.020608pt;}
.ls5e{letter-spacing:-0.020226pt;}
.ls3c{letter-spacing:-0.020192pt;}
.ls52{letter-spacing:-0.019200pt;}
.ls2c{letter-spacing:-0.017664pt;}
.ls32{letter-spacing:-0.017215pt;}
.ls53{letter-spacing:-0.016032pt;}
.ls8a{letter-spacing:-0.014400pt;}
.ls34{letter-spacing:-0.011476pt;}
.ls5d{letter-spacing:-0.010688pt;}
.ls2b{letter-spacing:-0.009833pt;}
.ls51{letter-spacing:-0.009600pt;}
.ls2d{letter-spacing:-0.008832pt;}
.ls5b{letter-spacing:-0.005344pt;}
.ls26{letter-spacing:-0.004916pt;}
.ls6e{letter-spacing:-0.004800pt;}
.ls2f{letter-spacing:-0.004416pt;}
.lse{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000164pt;}
.lsb0{letter-spacing:0.000711pt;}
.lsa0{letter-spacing:0.000921pt;}
.ls9f{letter-spacing:0.001026pt;}
.lsb7{letter-spacing:0.001207pt;}
.lsa{letter-spacing:0.001718pt;}
.ls9{letter-spacing:0.001735pt;}
.lsac{letter-spacing:0.001974pt;}
.lsa6{letter-spacing:0.001999pt;}
.ls9e{letter-spacing:0.002262pt;}
.lsa3{letter-spacing:0.002525pt;}
.lsaa{letter-spacing:0.002571pt;}
.lsab{letter-spacing:0.002919pt;}
.ls6{letter-spacing:0.002945pt;}
.lsbc{letter-spacing:0.003656pt;}
.ls2{letter-spacing:0.003733pt;}
.lsad{letter-spacing:0.003793pt;}
.ls97{letter-spacing:0.004153pt;}
.ls1d{letter-spacing:0.004416pt;}
.ls66{letter-spacing:0.004800pt;}
.ls69{letter-spacing:0.005344pt;}
.ls19{letter-spacing:0.008832pt;}
.ls40{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.009833pt;}
.ls77{letter-spacing:0.010688pt;}
.ls41{letter-spacing:0.014400pt;}
.ls67{letter-spacing:0.016032pt;}
.ls1b{letter-spacing:0.017664pt;}
.ls49{letter-spacing:0.019200pt;}
.ls13{letter-spacing:0.019666pt;}
.ls68{letter-spacing:0.021376pt;}
.ls46{letter-spacing:0.024000pt;}
.ls1a{letter-spacing:0.026496pt;}
.ls4c{letter-spacing:0.026720pt;}
.ls10{letter-spacing:0.027409pt;}
.ls63{letter-spacing:0.028800pt;}
.ls14{letter-spacing:0.029499pt;}
.ls3e{letter-spacing:0.029792pt;}
.ls1e{letter-spacing:0.030912pt;}
.ls75{letter-spacing:0.032064pt;}
.ls43{letter-spacing:0.033600pt;}
.ls1f{letter-spacing:0.034429pt;}
.ls4b{letter-spacing:0.037408pt;}
.ls61{letter-spacing:0.038304pt;}
.ls44{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.039332pt;}
.ls6a{letter-spacing:0.042752pt;}
.ls47{letter-spacing:0.043200pt;}
.ls31{letter-spacing:0.045906pt;}
.ls4a{letter-spacing:0.048000pt;}
.ls4d{letter-spacing:0.048096pt;}
.ls12{letter-spacing:0.049165pt;}
.ls78{letter-spacing:0.052800pt;}
.ls7d{letter-spacing:0.053440pt;}
.ls48{letter-spacing:0.057600pt;}
.ls45{letter-spacing:0.058784pt;}
.ls64{letter-spacing:0.062400pt;}
.ls18{letter-spacing:0.063914pt;}
.ls76{letter-spacing:0.064128pt;}
.ls15{letter-spacing:0.068831pt;}
.ls81{letter-spacing:0.074816pt;}
.ls7c{letter-spacing:0.076800pt;}
.ls74{letter-spacing:0.080160pt;}
.ls1c{letter-spacing:0.101568pt;}
.ls36{letter-spacing:0.103288pt;}
.ls80{letter-spacing:0.110400pt;}
.ls65{letter-spacing:0.124800pt;}
.ls33{letter-spacing:0.126241pt;}
.ls42{letter-spacing:0.129600pt;}
.ls79{letter-spacing:0.134400pt;}
.ls11{letter-spacing:0.137043pt;}
.ls7b{letter-spacing:0.139200pt;}
.ls22{letter-spacing:0.148790pt;}
.ls3f{letter-spacing:0.148960pt;}
.ls62{letter-spacing:0.157472pt;}
.ls4f{letter-spacing:0.161728pt;}
.ls7a{letter-spacing:0.163200pt;}
.ls6c{letter-spacing:0.170240pt;}
.ls3a{letter-spacing:0.195100pt;}
.ls20{letter-spacing:0.298389pt;}
.ls7f{letter-spacing:0.321600pt;}
.ls87{letter-spacing:0.331200pt;}
.ls8f{letter-spacing:0.400800pt;}
.ls88{letter-spacing:0.801600pt;}
.lsf{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls98{letter-spacing:2.656079pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls5{letter-spacing:9.298933pt;}
.lsb{letter-spacing:10.623733pt;}
.lsd{letter-spacing:10.626533pt;}
.lsa9{letter-spacing:11.299222pt;}
.lsb6{letter-spacing:11.647521pt;}
.lsb3{letter-spacing:11.673558pt;}
.lsa2{letter-spacing:11.701980pt;}
.lsb2{letter-spacing:11.767131pt;}
.ls82{letter-spacing:11.795949pt;}
.lsb9{letter-spacing:11.812916pt;}
.lsba{letter-spacing:11.876632pt;}
.lsa4{letter-spacing:11.881104pt;}
.lsbb{letter-spacing:11.897987pt;}
.lsa5{letter-spacing:11.945638pt;}
.lsae{letter-spacing:11.948414pt;}
.ls84{letter-spacing:11.950933pt;}
.lsa1{letter-spacing:11.954133pt;}
.lsa8{letter-spacing:11.956053pt;}
.ls7e{letter-spacing:11.956267pt;}
.lsa7{letter-spacing:11.959467pt;}
.lsb5{letter-spacing:11.986133pt;}
.ls83{letter-spacing:12.000814pt;}
.lsb1{letter-spacing:12.047496pt;}
.ls9c{letter-spacing:13.079271pt;}
.ls9d{letter-spacing:13.283733pt;}
.lsaf{letter-spacing:14.251336pt;}
.ls9b{letter-spacing:14.321956pt;}
.lsb8{letter-spacing:14.439571pt;}
.ls99{letter-spacing:15.414766pt;}
.ls9a{letter-spacing:15.419995pt;}
.lsb4{letter-spacing:16.808199pt;}
.lsbd{letter-spacing:17.519310pt;}
.ls8{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.wsf4{word-spacing:-48.000000pt;}
.ws59{word-spacing:-15.940854pt;}
.ws5b{word-spacing:-15.808875pt;}
.ws58{word-spacing:-15.762969pt;}
.ws5c{word-spacing:-13.935837pt;}
.wsf8{word-spacing:-13.434816pt;}
.ws3f{word-spacing:-13.283467pt;}
.ws2{word-spacing:-12.760670pt;}
.wsf3{word-spacing:-12.000000pt;}
.ws2a{word-spacing:-11.955200pt;}
.ws57{word-spacing:-11.040000pt;}
.wsc5{word-spacing:-10.810240pt;}
.ws8a{word-spacing:-10.801728pt;}
.ws32{word-spacing:-10.626800pt;}
.ws4{word-spacing:-10.095467pt;}
.ws56{word-spacing:-9.937590pt;}
.ws9{word-spacing:-9.298400pt;}
.ws5a{word-spacing:-4.240566pt;}
.ws137{word-spacing:-3.468256pt;}
.ws138{word-spacing:-3.179680pt;}
.wsb1{word-spacing:-2.832320pt;}
.ws178{word-spacing:-2.816095pt;}
.ws49{word-spacing:-2.762961pt;}
.wse8{word-spacing:-2.741472pt;}
.wse7{word-spacing:-2.666656pt;}
.ws2d{word-spacing:-2.444158pt;}
.ws175{word-spacing:-2.391024pt;}
.ws17f{word-spacing:-2.337890pt;}
.ws183{word-spacing:-2.231622pt;}
.ws101{word-spacing:-2.217760pt;}
.ws50{word-spacing:-2.178489pt;}
.ws160{word-spacing:-2.164320pt;}
.ws161{word-spacing:-2.041408pt;}
.ws39{word-spacing:-1.965953pt;}
.ws1b5{word-spacing:-1.960653pt;}
.ws16d{word-spacing:-1.881088pt;}
.wsfe{word-spacing:-1.865056pt;}
.ws90{word-spacing:-1.859685pt;}
.ws102{word-spacing:-1.843680pt;}
.wsfd{word-spacing:-1.827648pt;}
.ws1ab{word-spacing:-1.817190pt;}
.wsfb{word-spacing:-1.816960pt;}
.ws16b{word-spacing:-1.806272pt;}
.ws1aa{word-spacing:-1.721549pt;}
.ws6{word-spacing:-1.696326pt;}
.ws7f{word-spacing:-1.629504pt;}
.ws7e{word-spacing:-1.611840pt;}
.ws7d{word-spacing:-1.603008pt;}
.ws1ac{word-spacing:-1.578086pt;}
.ws146{word-spacing:-1.560448pt;}
.ws3a{word-spacing:-1.540882pt;}
.wsa3{word-spacing:-1.501664pt;}
.ws80{word-spacing:-1.457280pt;}
.ws72{word-spacing:-1.396280pt;}
.ws71{word-spacing:-1.366781pt;}
.ws16c{word-spacing:-1.357376pt;}
.ws180{word-spacing:-1.275213pt;}
.ws15{word-spacing:-1.232709pt;}
.wsbd{word-spacing:-1.229120pt;}
.ws181{word-spacing:-1.222079pt;}
.wsed{word-spacing:-1.218432pt;}
.ws126{word-spacing:-1.191712pt;}
.ws127{word-spacing:-1.175680pt;}
.ws5{word-spacing:-1.175671pt;}
.ws144{word-spacing:-1.159648pt;}
.wsde{word-spacing:-1.147200pt;}
.wsad{word-spacing:-1.137600pt;}
.ws74{word-spacing:-1.135707pt;}
.ws9b{word-spacing:-1.132800pt;}
.ws9a{word-spacing:-1.128000pt;}
.ws132{word-spacing:-1.123200pt;}
.ws18a{word-spacing:-1.115811pt;}
.wsdf{word-spacing:-1.113600pt;}
.ws143{word-spacing:-1.090176pt;}
.ws8b{word-spacing:-1.052058pt;}
.ws73{word-spacing:-1.012795pt;}
.ws91{word-spacing:-1.009543pt;}
.ws1bb{word-spacing:-0.956416pt;}
.ws8f{word-spacing:-0.956410pt;}
.wsb0{word-spacing:-0.919168pt;}
.ws1c4{word-spacing:-0.908595pt;}
.ws3e{word-spacing:-0.903276pt;}
.ws14a{word-spacing:-0.865728pt;}
.ws68{word-spacing:-0.860384pt;}
.wse0{word-spacing:-0.859200pt;}
.ws69{word-spacing:-0.830885pt;}
.wsaf{word-spacing:-0.817632pt;}
.ws8c{word-spacing:-0.812954pt;}
.wse1{word-spacing:-0.811200pt;}
.ws110{word-spacing:-0.772800pt;}
.ws47{word-spacing:-0.743874pt;}
.ws1c5{word-spacing:-0.669491pt;}
.ws1be{word-spacing:-0.621670pt;}
.ws162{word-spacing:-0.587840pt;}
.ws15c{word-spacing:-0.561120pt;}
.ws14e{word-spacing:-0.518368pt;}
.ws10e{word-spacing:-0.504000pt;}
.ws11a{word-spacing:-0.484800pt;}
.ws10f{word-spacing:-0.475200pt;}
.ws14f{word-spacing:-0.448896pt;}
.ws1bd{word-spacing:-0.430387pt;}
.ws185{word-spacing:-0.425071pt;}
.ws196{word-spacing:-0.371937pt;}
.wsc8{word-spacing:-0.334746pt;}
.wsc3{word-spacing:-0.319594pt;}
.wsc2{word-spacing:-0.319564pt;}
.ws193{word-spacing:-0.318803pt;}
.ws63{word-spacing:-0.286925pt;}
.ws15b{word-spacing:-0.267200pt;}
.ws3d{word-spacing:-0.265669pt;}
.ws16a{word-spacing:-0.256512pt;}
.ws1a3{word-spacing:-0.239104pt;}
.ws117{word-spacing:-0.230400pt;}
.ws141{word-spacing:-0.213760pt;}
.ws37{word-spacing:-0.212535pt;}
.ws135{word-spacing:-0.208416pt;}
.ws150{word-spacing:-0.192384pt;}
.ws61{word-spacing:-0.191283pt;}
.ws151{word-spacing:-0.181696pt;}
.ws119{word-spacing:-0.177600pt;}
.wsb2{word-spacing:-0.171008pt;}
.ws142{word-spacing:-0.165664pt;}
.ws30{word-spacing:-0.159402pt;}
.ws118{word-spacing:-0.158400pt;}
.wsb3{word-spacing:-0.149632pt;}
.ws1e{word-spacing:-0.143462pt;}
.ws170{word-spacing:-0.133600pt;}
.wsd2{word-spacing:-0.114912pt;}
.ws98{word-spacing:-0.110656pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws66{word-spacing:-0.101804pt;}
.ws27{word-spacing:-0.095642pt;}
.ws2e{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.wsd1{word-spacing:-0.021280pt;}
.ws97{word-spacing:-0.017024pt;}
.ws65{word-spacing:-0.015662pt;}
.wsf6{word-spacing:-0.013961pt;}
.ws1b8{word-spacing:-0.004668pt;}
.ws1c6{word-spacing:-0.003840pt;}
.ws1c2{word-spacing:-0.003081pt;}
.ws1d6{word-spacing:-0.003055pt;}
.ws3{word-spacing:-0.002918pt;}
.ws1c1{word-spacing:-0.002577pt;}
.ws1a0{word-spacing:-0.001770pt;}
.ws1{word-spacing:-0.000917pt;}
.ws0{word-spacing:0.000000pt;}
.wscf{word-spacing:0.000533pt;}
.ws6f{word-spacing:0.004916pt;}
.wsef{word-spacing:0.005344pt;}
.ws18b{word-spacing:0.014005pt;}
.ws18d{word-spacing:0.014658pt;}
.ws123{word-spacing:0.021376pt;}
.wsb5{word-spacing:0.042752pt;}
.ws6e{word-spacing:0.044248pt;}
.wsf5{word-spacing:0.047821pt;}
.ws34{word-spacing:0.053134pt;}
.ws149{word-spacing:0.053440pt;}
.ws75{word-spacing:0.063914pt;}
.ws15f{word-spacing:0.069472pt;}
.ws14{word-spacing:0.085014pt;}
.wsc0{word-spacing:0.090848pt;}
.ws28{word-spacing:0.095642pt;}
.ws128{word-spacing:0.096192pt;}
.ws7c{word-spacing:0.098330pt;}
.wsd9{word-spacing:0.100800pt;}
.ws2c{word-spacing:0.106268pt;}
.ws76{word-spacing:0.108163pt;}
.wsae{word-spacing:0.110400pt;}
.wsd8{word-spacing:0.124800pt;}
.ws134{word-spacing:0.139200pt;}
.ws1a{word-spacing:0.143462pt;}
.wsbf{word-spacing:0.144288pt;}
.wsda{word-spacing:0.148800pt;}
.wse6{word-spacing:0.153600pt;}
.wsa2{word-spacing:0.158400pt;}
.ws2f{word-spacing:0.159402pt;}
.wsa6{word-spacing:0.160320pt;}
.ws133{word-spacing:0.172800pt;}
.wsb6{word-spacing:0.176352pt;}
.ws122{word-spacing:0.181696pt;}
.wsa{word-spacing:0.185968pt;}
.ws62{word-spacing:0.191283pt;}
.ws11b{word-spacing:0.192000pt;}
.ws95{word-spacing:0.212535pt;}
.ws19{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws40{word-spacing:0.265669pt;}
.ws25{word-spacing:0.286925pt;}
.ws42{word-spacing:0.318803pt;}
.wsc4{word-spacing:0.319594pt;}
.ws8d{word-spacing:0.334746pt;}
.ws19c{word-spacing:0.371937pt;}
.wsab{word-spacing:0.422400pt;}
.ws85{word-spacing:0.423936pt;}
.ws172{word-spacing:0.425071pt;}
.ws87{word-spacing:0.437184pt;}
.wsac{word-spacing:0.441600pt;}
.ws86{word-spacing:0.446016pt;}
.ws29{word-spacing:0.526029pt;}
.ws176{word-spacing:0.531339pt;}
.ws14d{word-spacing:0.545088pt;}
.ws4d{word-spacing:0.584473pt;}
.ws1c0{word-spacing:0.621670pt;}
.ws17e{word-spacing:0.637606pt;}
.ws1a5{word-spacing:0.669491pt;}
.wsfc{word-spacing:0.678688pt;}
.ws182{word-spacing:0.690740pt;}
.wsff{word-spacing:0.694720pt;}
.ws1a9{word-spacing:0.717312pt;}
.ws10d{word-spacing:0.772800pt;}
.ws10c{word-spacing:0.796800pt;}
.ws12d{word-spacing:0.801600pt;}
.ws12e{word-spacing:0.806400pt;}
.ws1f{word-spacing:0.812954pt;}
.ws197{word-spacing:0.850142pt;}
.ws1cd{word-spacing:0.860774pt;}
.ws19b{word-spacing:0.903276pt;}
.ws24{word-spacing:0.908595pt;}
.ws55{word-spacing:0.956410pt;}
.ws18{word-spacing:0.956416pt;}
.ws6c{word-spacing:0.963630pt;}
.wscb{word-spacing:1.004237pt;}
.wsf2{word-spacing:1.004672pt;}
.ws19e{word-spacing:1.009543pt;}
.ws26{word-spacing:1.052058pt;}
.ws4e{word-spacing:1.062677pt;}
.wsf0{word-spacing:1.068800pt;}
.ws13f{word-spacing:1.074144pt;}
.wse5{word-spacing:1.080000pt;}
.ws140{word-spacing:1.095520pt;}
.ws1a4{word-spacing:1.099878pt;}
.ws166{word-spacing:1.106208pt;}
.ws89{word-spacing:1.115811pt;}
.ws18e{word-spacing:1.129545pt;}
.ws18c{word-spacing:1.136196pt;}
.wsf1{word-spacing:1.143616pt;}
.ws165{word-spacing:1.181024pt;}
.ws1a8{word-spacing:1.195520pt;}
.ws17c{word-spacing:1.222079pt;}
.ws11e{word-spacing:1.309280pt;}
.ws11d{word-spacing:1.336000pt;}
.ws11f{word-spacing:1.352032pt;}
.ws11c{word-spacing:1.378752pt;}
.ws14c{word-spacing:1.384096pt;}
.ws1ad{word-spacing:1.386803pt;}
.ws54{word-spacing:1.434614pt;}
.ws14b{word-spacing:1.448224pt;}
.ws171{word-spacing:1.487748pt;}
.ws177{word-spacing:1.540882pt;}
.ws82{word-spacing:1.589760pt;}
.ws84{word-spacing:1.611840pt;}
.ws83{word-spacing:1.629504pt;}
.ws195{word-spacing:1.647150pt;}
.ws104{word-spacing:1.694048pt;}
.ws4f{word-spacing:1.700284pt;}
.ws157{word-spacing:1.726112pt;}
.wsd6{word-spacing:1.742400pt;}
.ws173{word-spacing:1.753418pt;}
.ws13b{word-spacing:1.758176pt;}
.wsd7{word-spacing:1.766400pt;}
.wsb{word-spacing:1.785293pt;}
.ws13a{word-spacing:1.811616pt;}
.ws1ca{word-spacing:1.817190pt;}
.ws158{word-spacing:1.822304pt;}
.ws1d0{word-spacing:1.865011pt;}
.ws174{word-spacing:1.912819pt;}
.ws124{word-spacing:1.934528pt;}
.ws1d4{word-spacing:1.960653pt;}
.ws16f{word-spacing:2.009344pt;}
.ws41{word-spacing:2.019087pt;}
.ws125{word-spacing:2.025376pt;}
.ws22{word-spacing:2.056294pt;}
.ws77{word-spacing:2.094420pt;}
.ws192{word-spacing:2.125355pt;}
.ws1b{word-spacing:2.151936pt;}
.ws1a7{word-spacing:2.199757pt;}
.ws8{word-spacing:2.231616pt;}
.ws1a1{word-spacing:2.247578pt;}
.ws13c{word-spacing:2.271200pt;}
.ws1cc{word-spacing:2.295398pt;}
.wsb8{word-spacing:2.324640pt;}
.ws31{word-spacing:2.337890pt;}
.ws12c{word-spacing:2.342400pt;}
.ws16e{word-spacing:2.346016pt;}
.ws131{word-spacing:2.352000pt;}
.wsa1{word-spacing:2.361600pt;}
.ws13e{word-spacing:2.362048pt;}
.wsa0{word-spacing:2.366400pt;}
.wsb7{word-spacing:2.367392pt;}
.ws129{word-spacing:2.376000pt;}
.ws9f{word-spacing:2.385600pt;}
.ws12f{word-spacing:2.390400pt;}
.ws184{word-spacing:2.391024pt;}
.ws5f{word-spacing:2.391040pt;}
.ws12a{word-spacing:2.400000pt;}
.ws12b{word-spacing:2.409600pt;}
.ws9e{word-spacing:2.419200pt;}
.ws130{word-spacing:2.424000pt;}
.ws13d{word-spacing:2.431520pt;}
.wscc{word-spacing:2.444158pt;}
.ws1d8{word-spacing:2.486682pt;}
.ws4b{word-spacing:2.497292pt;}
.ws6d{word-spacing:2.512321pt;}
.ws1a2{word-spacing:2.534502pt;}
.ws53{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.ws35{word-spacing:2.603559pt;}
.ws5e{word-spacing:2.630144pt;}
.ws36{word-spacing:2.656693pt;}
.ws167{word-spacing:2.672000pt;}
.ws168{word-spacing:2.693376pt;}
.ws38{word-spacing:2.709827pt;}
.ws169{word-spacing:2.730784pt;}
.ws9c{word-spacing:2.731200pt;}
.ws9d{word-spacing:2.740800pt;}
.ws1b1{word-spacing:2.773606pt;}
.ws17d{word-spacing:2.816095pt;}
.ws1b0{word-spacing:2.821427pt;}
.ws1d5{word-spacing:2.861628pt;}
.ws1ba{word-spacing:2.863053pt;}
.ws1c3{word-spacing:2.864751pt;}
.ws1b2{word-spacing:2.865553pt;}
.ws1c7{word-spacing:2.866415pt;}
.ws1ae{word-spacing:2.867200pt;}
.ws1bf{word-spacing:2.867482pt;}
.ws1bc{word-spacing:2.867883pt;}
.ws1da{word-spacing:2.868582pt;}
.ws1b7{word-spacing:2.869180pt;}
.ws1af{word-spacing:2.869248pt;}
.ws1cf{word-spacing:2.869504pt;}
.ws1d9{word-spacing:2.869769pt;}
.ws1c8{word-spacing:2.870229pt;}
.wsbe{word-spacing:2.912480pt;}
.ws21{word-spacing:2.917069pt;}
.ws1b3{word-spacing:2.964890pt;}
.ws96{word-spacing:2.975497pt;}
.wsec{word-spacing:2.997984pt;}
.ws111{word-spacing:3.009600pt;}
.ws1b6{word-spacing:3.012710pt;}
.ws116{word-spacing:3.019200pt;}
.ws198{word-spacing:3.028630pt;}
.ws112{word-spacing:3.028800pt;}
.wseb{word-spacing:3.040736pt;}
.ws70{word-spacing:3.043301pt;}
.ws115{word-spacing:3.052800pt;}
.wsdb{word-spacing:3.067200pt;}
.wsdc{word-spacing:3.076800pt;}
.ws1a6{word-spacing:3.108352pt;}
.ws2b{word-spacing:3.188032pt;}
.ws154{word-spacing:3.201056pt;}
.wsdd{word-spacing:3.316800pt;}
.ws152{word-spacing:3.329312pt;}
.ws1ce{word-spacing:3.347456pt;}
.ws153{word-spacing:3.404128pt;}
.wsc7{word-spacing:3.443098pt;}
.wsc6{word-spacing:3.490918pt;}
.ws186{word-spacing:3.506835pt;}
.ws188{word-spacing:3.526910pt;}
.ws103{word-spacing:3.559104pt;}
.ws190{word-spacing:3.559969pt;}
.ws155{word-spacing:3.607200pt;}
.ws148{word-spacing:3.617888pt;}
.ws7b{word-spacing:3.618529pt;}
.ws147{word-spacing:3.633920pt;}
.ws64{word-spacing:3.634381pt;}
.ws113{word-spacing:3.648000pt;}
.ws52{word-spacing:3.666237pt;}
.ws23{word-spacing:3.682202pt;}
.ws3c{word-spacing:3.719371pt;}
.ws114{word-spacing:3.744000pt;}
.ws191{word-spacing:3.825638pt;}
.ws1d1{word-spacing:3.825664pt;}
.ws43{word-spacing:3.878772pt;}
.ws1c{word-spacing:3.921306pt;}
.ws7a{word-spacing:3.923351pt;}
.wsc9{word-spacing:3.969126pt;}
.wsd4{word-spacing:3.979200pt;}
.ws93{word-spacing:4.091308pt;}
.ws1b9{word-spacing:4.208230pt;}
.ws6a{word-spacing:4.228173pt;}
.ws18f{word-spacing:4.250709pt;}
.wsaa{word-spacing:4.276800pt;}
.wsa8{word-spacing:4.281600pt;}
.wsa7{word-spacing:4.296000pt;}
.ws6b{word-spacing:4.297004pt;}
.ws199{word-spacing:4.303843pt;}
.ws1c9{word-spacing:4.303872pt;}
.ws156{word-spacing:4.307264pt;}
.wsd3{word-spacing:4.310400pt;}
.wsd5{word-spacing:4.324800pt;}
.wsa9{word-spacing:4.329600pt;}
.ws1d{word-spacing:4.399514pt;}
.ws19f{word-spacing:4.410111pt;}
.ws45{word-spacing:4.463245pt;}
.ws1b4{word-spacing:4.495155pt;}
.ws46{word-spacing:4.516379pt;}
.ws15e{word-spacing:4.553088pt;}
.ws189{word-spacing:4.611845pt;}
.ws187{word-spacing:4.616120pt;}
.ws33{word-spacing:4.622646pt;}
.ws15d{word-spacing:4.627904pt;}
.ws48{word-spacing:4.675780pt;}
.wsf7{word-spacing:4.686438pt;}
.ws1d3{word-spacing:4.829901pt;}
.ws81{word-spacing:4.831104pt;}
.ws145{word-spacing:4.857696pt;}
.ws1dc{word-spacing:4.877722pt;}
.ws94{word-spacing:4.888316pt;}
.ws10b{word-spacing:4.910400pt;}
.ws107{word-spacing:4.929600pt;}
.ws17b{word-spacing:4.941450pt;}
.ws51{word-spacing:4.994583pt;}
.wsea{word-spacing:5.156960pt;}
.wsee{word-spacing:5.199712pt;}
.ws44{word-spacing:5.207119pt;}
.ws139{word-spacing:5.210400pt;}
.wsd0{word-spacing:5.260253pt;}
.ws78{word-spacing:5.309798pt;}
.wsf9{word-spacing:5.311200pt;}
.wsfa{word-spacing:5.311733pt;}
.ws179{word-spacing:5.313387pt;}
.ws79{word-spacing:5.378629pt;}
.ws12{word-spacing:5.393072pt;}
.wscd{word-spacing:5.419654pt;}
.ws13{word-spacing:5.467459pt;}
.ws4a{word-spacing:5.472788pt;}
.wse9{word-spacing:5.509664pt;}
.ws1dd{word-spacing:5.547213pt;}
.ws108{word-spacing:5.568000pt;}
.wse2{word-spacing:5.587200pt;}
.wse4{word-spacing:5.596800pt;}
.wse3{word-spacing:5.601600pt;}
.ws19a{word-spacing:5.632190pt;}
.ws4c{word-spacing:5.685324pt;}
.wsba{word-spacing:5.846336pt;}
.ws159{word-spacing:5.862368pt;}
.ws15a{word-spacing:5.867712pt;}
.wsb9{word-spacing:5.910464pt;}
.ws10a{word-spacing:5.923200pt;}
.ws109{word-spacing:5.932800pt;}
.ws1db{word-spacing:6.025421pt;}
.wsa4{word-spacing:6.102848pt;}
.ws17a{word-spacing:6.110395pt;}
.ws19d{word-spacing:6.163529pt;}
.ws194{word-spacing:6.376064pt;}
.wsa5{word-spacing:6.498304pt;}
.ws92{word-spacing:6.801135pt;}
.ws8e{word-spacing:7.119938pt;}
.wsbb{word-spacing:7.123552pt;}
.wsb4{word-spacing:7.139584pt;}
.wsbc{word-spacing:7.203712pt;}
.ws88{word-spacing:7.476288pt;}
.ws10{word-spacing:7.699075pt;}
.ws106{word-spacing:7.795200pt;}
.ws105{word-spacing:7.833600pt;}
.ws100{word-spacing:8.058752pt;}
.ws1cb{word-spacing:8.655565pt;}
.ws1d7{word-spacing:9.133773pt;}
.ws67{word-spacing:9.502967pt;}
.ws99{word-spacing:10.329312pt;}
.ws136{word-spacing:11.943840pt;}
.ws120{word-spacing:12.836288pt;}
.ws121{word-spacing:12.895072pt;}
.wsc1{word-spacing:13.081918pt;}
.ws60{word-spacing:13.485466pt;}
.ws7{word-spacing:13.763148pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.ws1d2{word-spacing:14.776627pt;}
.wsca{word-spacing:15.254835pt;}
.wsf{word-spacing:15.732893pt;}
.ws163{word-spacing:16.705344pt;}
.ws164{word-spacing:17.068736pt;}
.wsce{word-spacing:19.925200pt;}
.ws11{word-spacing:24.399002pt;}
.ws5d{word-spacing:1302.834900pt;}
._0{margin-left:-31.595439pt;}
._28{margin-left:-18.889216pt;}
._1f{margin-left:-6.854269pt;}
._1{margin-left:-5.938691pt;}
._6{margin-left:-4.797974pt;}
._7{margin-left:-3.421811pt;}
._4{margin-left:-1.994370pt;}
._c{margin-left:-1.062680pt;}
._5{width:0.969929pt;}
._2{width:2.659145pt;}
._3{width:3.659652pt;}
._27{width:4.760794pt;}
._9{width:9.298400pt;}
._14{width:10.903142pt;}
._8{width:12.185397pt;}
._e{width:13.598836pt;}
._13{width:14.680986pt;}
._f{width:15.789776pt;}
._10{width:17.265423pt;}
._19{width:18.915657pt;}
._20{width:20.137735pt;}
._11{width:21.232435pt;}
._a{width:23.063232pt;}
._21{width:24.197325pt;}
._12{width:26.157978pt;}
._17{width:27.392361pt;}
._b{width:29.011008pt;}
._18{width:30.339438pt;}
._22{width:31.720921pt;}
._23{width:33.740005pt;}
._24{width:36.184163pt;}
._d{width:50.498554pt;}
._26{width:54.993920pt;}
._1d{width:58.893655pt;}
._1e{width:90.083636pt;}
._1b{width:111.877413pt;}
._15{width:721.698662pt;}
._1a{width:1634.370492pt;}
._1c{width:1775.604078pt;}
._25{width:2090.541725pt;}
._16{width:2111.795058pt;}
.fs1a{font-size:29.440000pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs10{font-size:38.398592pt;}
.fs1b{font-size:38.755733pt;}
.fsc{font-size:39.155200pt;}
.fs5{font-size:40.381867pt;}
.fs17{font-size:40.451200pt;}
.fs18{font-size:40.454933pt;}
.fs6{font-size:41.988267pt;}
.fs1c{font-size:42.077867pt;}
.fsa{font-size:42.507200pt;}
.fs14{font-size:42.560000pt;}
.fse{font-size:44.160000pt;}
.fs0{font-size:47.035520pt;}
.fsb{font-size:47.820800pt;}
.fs16{font-size:48.000000pt;}
.fsd{font-size:49.164800pt;}
.fs19{font-size:49.829333pt;}
.fs12{font-size:50.382635pt;}
.fs1{font-size:50.395200pt;}
.fs13{font-size:50.479296pt;}
.fs3{font-size:53.133867pt;}
.fs15{font-size:53.440000pt;}
.fs1d{font-size:55.365867pt;}
.fsf{font-size:57.382485pt;}
.fs2{font-size:60.474240pt;}
.fs11{font-size:64.717461pt;}
.fs4{font-size:95.641600pt;}
.y178{bottom:-788.819600pt;}
.y1a3{bottom:-739.842027pt;}
.y1a2{bottom:-722.722523pt;}
.y1a1{bottom:-705.683179pt;}
.y1a0{bottom:-688.563675pt;}
.y19f{bottom:-671.522995pt;}
.y19e{bottom:-654.403491pt;}
.y19d{bottom:-637.283987pt;}
.y19c{bottom:-620.244643pt;}
.y19b{bottom:-603.125139pt;}
.y19a{bottom:-586.085795pt;}
.y199{bottom:-568.966291pt;}
.y198{bottom:-551.846787pt;}
.y197{bottom:-534.807443pt;}
.y196{bottom:-517.687939pt;}
.y195{bottom:-500.648595pt;}
.y194{bottom:-483.529091pt;}
.y193{bottom:-466.409587pt;}
.yce{bottom:-451.166267pt;}
.y192{bottom:-449.370243pt;}
.y191{bottom:-432.250739pt;}
.y190{bottom:-415.131235pt;}
.y14c{bottom:-412.067600pt;}
.y18f{bottom:-398.091891pt;}
.y18e{bottom:-380.972387pt;}
.y126{bottom:-367.078267pt;}
.y18d{bottom:-363.933043pt;}
.y18c{bottom:-346.813539pt;}
.y169{bottom:-330.864304pt;}
.y18b{bottom:-329.694035pt;}
.y139{bottom:-315.234315pt;}
.y168{bottom:-313.744800pt;}
.y18a{bottom:-312.654691pt;}
.y138{bottom:-298.114811pt;}
.y167{bottom:-296.625296pt;}
.y189{bottom:-295.535187pt;}
.y137{bottom:-281.075467pt;}
.y166{bottom:-279.585952pt;}
.y188{bottom:-278.495843pt;}
.ye6{bottom:-277.880533pt;}
.y136{bottom:-263.955963pt;}
.y165{bottom:-262.466448pt;}
.y187{bottom:-261.376339pt;}
.ye5{bottom:-260.761029pt;}
.y135{bottom:-246.916619pt;}
.y164{bottom:-245.427104pt;}
.y186{bottom:-244.256835pt;}
.ye4{bottom:-243.721685pt;}
.y134{bottom:-229.797115pt;}
.y163{bottom:-228.307600pt;}
.y185{bottom:-227.216155pt;}
.ye3{bottom:-226.602181pt;}
.y133{bottom:-212.677611pt;}
.y184{bottom:-210.096651pt;}
.ye2{bottom:-209.562837pt;}
.y132{bottom:-195.638267pt;}
.y162{bottom:-195.589200pt;}
.y183{bottom:-193.057307pt;}
.ye1{bottom:-192.443333pt;}
.y161{bottom:-180.148800pt;}
.y182{bottom:-175.937803pt;}
.ye0{bottom:-175.323829pt;}
.y160{bottom:-164.788800pt;}
.y131{bottom:-162.919467pt;}
.y181{bottom:-158.818299pt;}
.ydf{bottom:-158.284485pt;}
.y15f{bottom:-149.348400pt;}
.y130{bottom:-147.479067pt;}
.y180{bottom:-141.778955pt;}
.yde{bottom:-141.164981pt;}
.y15e{bottom:-133.988400pt;}
.y12f{bottom:-132.038667pt;}
.y97{bottom:-125.613979pt;}
.ydd{bottom:-124.125637pt;}
.y17f{bottom:-120.659467pt;}
.y15d{bottom:-118.628400pt;}
.y12e{bottom:-116.678667pt;}
.ydc{bottom:-107.006133pt;}
.y15c{bottom:-103.268400pt;}
.y12d{bottom:-101.318667pt;}
.y15b{bottom:-87.828000pt;}
.y12c{bottom:-85.958667pt;}
.y17e{bottom:-84.579467pt;}
.ydb{bottom:-74.286933pt;}
.y17d{bottom:-72.500000pt;}
.y15a{bottom:-72.468000pt;}
.y12b{bottom:-70.518267pt;}
.yab{bottom:-70.414347pt;}
.yda{bottom:-58.846533pt;}
.y17c{bottom:-57.140000pt;}
.y159{bottom:-57.108000pt;}
.yaa{bottom:-56.283147pt;}
.y12a{bottom:-55.158267pt;}
.yd9{bottom:-43.486533pt;}
.ya9{bottom:-42.151947pt;}
.y158{bottom:-41.748000pt;}
.y17b{bottom:-41.699600pt;}
.y129{bottom:-39.798267pt;}
.yd8{bottom:-28.046133pt;}
.ya8{bottom:-28.020747pt;}
.y17a{bottom:-26.339600pt;}
.y157{bottom:-26.307600pt;}
.y128{bottom:-24.438267pt;}
.ya7{bottom:-13.815579pt;}
.yd7{bottom:-8.126283pt;}
.y156{bottom:-6.463344pt;}
.y179{bottom:-6.419256pt;}
.y127{bottom:-4.438435pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:3.040533pt;}
.yc{bottom:3.044747pt;}
.ya6{bottom:4.442896pt;}
.y4{bottom:8.420534pt;}
.yb{bottom:12.578910pt;}
.yf7{bottom:14.913733pt;}
.y3{bottom:25.722550pt;}
.y50{bottom:28.346667pt;}
.y2{bottom:29.128174pt;}
.yb9{bottom:43.666097pt;}
.yb8{bottom:43.886944pt;}
.y104{bottom:46.831458pt;}
.yf6{bottom:47.233733pt;}
.y103{bottom:69.631859pt;}
.yf5{bottom:70.033733pt;}
.y122{bottom:82.357333pt;}
.yca{bottom:82.524000pt;}
.y148{bottom:88.616000pt;}
.y1de{bottom:90.854667pt;}
.y25{bottom:91.398667pt;}
.y211{bottom:92.050667pt;}
.y102{bottom:92.512158pt;}
.yf4{bottom:92.913733pt;}
.y1a9{bottom:93.902667pt;}
.y87{bottom:97.214667pt;}
.y121{bottom:99.094667pt;}
.yc9{bottom:99.620000pt;}
.y4f{bottom:101.250667pt;}
.y147{bottom:105.353333pt;}
.y1a8{bottom:106.658667pt;}
.yba{bottom:107.256421pt;}
.y24{bottom:107.298667pt;}
.y2ae{bottom:107.393333pt;}
.y1dd{bottom:107.592000pt;}
.y210{bottom:108.788000pt;}
.y86{bottom:113.952000pt;}
.y101{bottom:115.392457pt;}
.yf3{bottom:115.793733pt;}
.y120{bottom:115.832000pt;}
.yc8{bottom:116.716000pt;}
.y241{bottom:117.874667pt;}
.y4e{bottom:117.988000pt;}
.y275{bottom:120.982667pt;}
.y146{bottom:122.090667pt;}
.y2ad{bottom:122.736000pt;}
.y23{bottom:123.200000pt;}
.y1a6{bottom:123.754667pt;}
.y1dc{bottom:124.329333pt;}
.y20f{bottom:125.525333pt;}
.y1a7{bottom:128.094667pt;}
.y85{bottom:130.689333pt;}
.y11f{bottom:132.569333pt;}
.y240{bottom:133.496000pt;}
.yc7{bottom:133.812000pt;}
.y4d{bottom:134.725333pt;}
.y274{bottom:136.325333pt;}
.y2ac{bottom:138.078667pt;}
.y100{bottom:138.192857pt;}
.yf2{bottom:138.673733pt;}
.y145{bottom:138.828000pt;}
.y22{bottom:139.100000pt;}
.y1a5{bottom:140.850667pt;}
.y1db{bottom:141.066667pt;}
.y20e{bottom:142.262667pt;}
.y84{bottom:147.426667pt;}
.ybd{bottom:148.914021pt;}
.y23f{bottom:149.117333pt;}
.ybf{bottom:149.208421pt;}
.y11e{bottom:149.306667pt;}
.yc6{bottom:150.908000pt;}
.y4c{bottom:151.462667pt;}
.y273{bottom:151.668000pt;}
.y2ab{bottom:153.421333pt;}
.y21{bottom:155.000000pt;}
.y144{bottom:155.565333pt;}
.y1da{bottom:157.804000pt;}
.y1a4{bottom:157.946667pt;}
.y20d{bottom:159.000000pt;}
.yff{bottom:160.993258pt;}
.yf1{bottom:161.393733pt;}
.y83{bottom:164.164000pt;}
.y23e{bottom:164.738667pt;}
.y11d{bottom:166.044000pt;}
.ybc{bottom:166.872544pt;}
.y272{bottom:167.010667pt;}
.yc5{bottom:168.004000pt;}
.y4b{bottom:168.200000pt;}
.y2aa{bottom:168.762667pt;}
.y20{bottom:170.901333pt;}
.y1d9{bottom:174.541333pt;}
.y175{bottom:177.884000pt;}
.y20c{bottom:179.722667pt;}
.y23d{bottom:180.360000pt;}
.y82{bottom:180.901333pt;}
.y143{bottom:181.416000pt;}
.y271{bottom:182.353333pt;}
.y11c{bottom:182.781333pt;}
.yfe{bottom:183.873557pt;}
.y2a9{bottom:184.105333pt;}
.yf0{bottom:184.273733pt;}
.y4a{bottom:184.937333pt;}
.yc4{bottom:185.100000pt;}
.yc0{bottom:185.198944pt;}
.ybb{bottom:185.934821pt;}
.y1f{bottom:186.801333pt;}
.y1d8{bottom:191.278667pt;}
.y23c{bottom:195.981333pt;}
.y81{bottom:197.638667pt;}
.y270{bottom:197.694667pt;}
.y142{bottom:198.512000pt;}
.y2a8{bottom:199.448000pt;}
.y11b{bottom:199.518667pt;}
.yc3{bottom:202.196000pt;}
.y1e{bottom:202.701333pt;}
.y49{bottom:205.660000pt;}
.yfd{bottom:206.753855pt;}
.yed{bottom:207.153867pt;}
.y1d7{bottom:208.016000pt;}
.y20b{bottom:209.610667pt;}
.ybe{bottom:212.136544pt;}
.y26f{bottom:213.037333pt;}
.y80{bottom:214.376000pt;}
.y2a7{bottom:214.790667pt;}
.y141{bottom:215.608000pt;}
.y11a{bottom:216.256000pt;}
.y177{bottom:219.260520pt;}
.yc2{bottom:219.292000pt;}
.y1d6{bottom:224.753333pt;}
.y20a{bottom:226.348000pt;}
.y23b{bottom:227.542667pt;}
.y176{bottom:227.820400pt;}
.y26e{bottom:228.380000pt;}
.yfc{bottom:229.473346pt;}
.yec{bottom:229.873733pt;}
.y2a6{bottom:230.133333pt;}
.y7f{bottom:231.113333pt;}
.y140{bottom:232.704000pt;}
.y119{bottom:232.993333pt;}
.yc1{bottom:236.388000pt;}
.y1d5{bottom:241.490667pt;}
.y209{bottom:243.085333pt;}
.y26d{bottom:243.722667pt;}
.y239{bottom:244.280000pt;}
.y2a5{bottom:245.476000pt;}
.y7e{bottom:247.850667pt;}
.y23a{bottom:249.102667pt;}
.y118{bottom:249.729333pt;}
.y13f{bottom:249.798667pt;}
.yfb{bottom:252.353645pt;}
.yeb{bottom:252.753733pt;}
.y94{bottom:256.324000pt;}
.y1d4{bottom:258.228000pt;}
.y26c{bottom:259.065333pt;}
.y208{bottom:259.822667pt;}
.y2a4{bottom:260.818667pt;}
.y238{bottom:261.017333pt;}
.y7d{bottom:264.588000pt;}
.y117{bottom:266.466667pt;}
.y13e{bottom:266.894667pt;}
.y48{bottom:271.348000pt;}
.y1d{bottom:273.154667pt;}
.y26b{bottom:274.408000pt;}
.y1d3{bottom:274.965333pt;}
.yfa{bottom:275.233944pt;}
.yea{bottom:275.633733pt;}
.y2a3{bottom:276.161333pt;}
.y207{bottom:276.560000pt;}
.y237{bottom:277.754667pt;}
.yb2{bottom:278.156103pt;}
.y7c{bottom:281.325333pt;}
.y116{bottom:283.204000pt;}
.y13d{bottom:283.990667pt;}
.y47{bottom:288.644000pt;}
.y1c{bottom:289.054667pt;}
.y26a{bottom:289.750667pt;}
.y2a2{bottom:291.502667pt;}
.y1d2{bottom:291.702667pt;}
.y206{bottom:293.297333pt;}
.y236{bottom:294.492000pt;}
.yb1{bottom:295.378021pt;}
.yf9{bottom:297.953434pt;}
.y7b{bottom:298.062667pt;}
.ye9{bottom:298.353733pt;}
.y115{bottom:299.941333pt;}
.y13c{bottom:301.086667pt;}
.y1b{bottom:304.954667pt;}
.y269{bottom:305.093333pt;}
.y2a1{bottom:306.845333pt;}
.y1d1{bottom:308.440000pt;}
.y205{bottom:310.034667pt;}
.yb3{bottom:311.054916pt;}
.y235{bottom:311.229333pt;}
.y7a{bottom:314.800000pt;}
.y114{bottom:316.678667pt;}
.y13b{bottom:318.182667pt;}
.yae{bottom:320.180931pt;}
.yb0{bottom:320.181221pt;}
.y268{bottom:320.434667pt;}
.yf8{bottom:320.833733pt;}
.y1a{bottom:320.856000pt;}
.ye8{bottom:321.233733pt;}
.y46{bottom:321.878667pt;}
.y2a0{bottom:322.188000pt;}
.yaf{bottom:324.523621pt;}
.y1d0{bottom:325.177333pt;}
.y204{bottom:326.772000pt;}
.y234{bottom:327.966667pt;}
.y79{bottom:331.537333pt;}
.y113{bottom:333.416000pt;}
.y13a{bottom:335.278667pt;}
.y267{bottom:335.777333pt;}
.y29f{bottom:337.530667pt;}
.y45{bottom:339.174667pt;}
.y1cf{bottom:341.914667pt;}
.y203{bottom:347.493333pt;}
.y78{bottom:348.274667pt;}
.y233{bottom:348.689333pt;}
.y112{bottom:350.153333pt;}
.y266{bottom:351.120000pt;}
.y29e{bottom:352.873333pt;}
.ye7{bottom:353.153867pt;}
.y19{bottom:354.688000pt;}
.y123{bottom:355.216000pt;}
.y44{bottom:356.469333pt;}
.y1ce{bottom:358.652000pt;}
.yad{bottom:361.985506pt;}
.y77{bottom:365.012000pt;}
.y265{bottom:366.462667pt;}
.y111{bottom:366.890667pt;}
.y29d{bottom:368.216000pt;}
.y18{bottom:370.589333pt;}
.y43{bottom:373.765333pt;}
.y1cd{bottom:375.389333pt;}
.y202{bottom:377.381333pt;}
.y174{bottom:377.766667pt;}
.y232{bottom:378.577333pt;}
.yac{bottom:379.282021pt;}
.yd6{bottom:381.233549pt;}
.y76{bottom:381.749333pt;}
.y264{bottom:381.805333pt;}
.y29c{bottom:383.558667pt;}
.y110{bottom:383.628000pt;}
.y17{bottom:386.489333pt;}
.y42{bottom:391.060000pt;}
.y1cc{bottom:392.126667pt;}
.y201{bottom:394.118667pt;}
.y173{bottom:394.861333pt;}
.y231{bottom:395.314667pt;}
.yb5{bottom:396.210525pt;}
.y263{bottom:397.148000pt;}
.yd5{bottom:398.274229pt;}
.y75{bottom:398.486667pt;}
.y29b{bottom:398.901333pt;}
.y10f{bottom:400.365333pt;}
.y41{bottom:408.354667pt;}
.y1cb{bottom:408.864000pt;}
.y155{bottom:410.655896pt;}
.y200{bottom:410.856000pt;}
.y172{bottom:411.957333pt;}
.y230{bottom:412.052000pt;}
.y262{bottom:412.490667pt;}
.y29a{bottom:414.244000pt;}
.y74{bottom:415.224000pt;}
.yd4{bottom:415.393733pt;}
.y10e{bottom:417.102667pt;}
.y16{bottom:418.330667pt;}
.y1ca{bottom:425.601333pt;}
.y40{bottom:425.650667pt;}
.y1ff{bottom:427.593333pt;}
.y154{bottom:427.775400pt;}
.y261{bottom:427.833333pt;}
.y22f{bottom:428.789333pt;}
.y171{bottom:429.053333pt;}
.y299{bottom:429.585333pt;}
.y73{bottom:431.961333pt;}
.y10d{bottom:433.840000pt;}
.y15{bottom:434.230667pt;}
.y1c9{bottom:442.338667pt;}
.y3f{bottom:442.945333pt;}
.y260{bottom:443.176000pt;}
.y1fe{bottom:444.330667pt;}
.yb4{bottom:444.786233pt;}
.y153{bottom:444.894904pt;}
.y298{bottom:444.928000pt;}
.y22e{bottom:445.526667pt;}
.y170{bottom:446.149333pt;}
.yd3{bottom:448.112933pt;}
.y72{bottom:448.698667pt;}
.y10c{bottom:450.577333pt;}
.y25f{bottom:458.517333pt;}
.y1c8{bottom:459.076000pt;}
.y3e{bottom:460.240000pt;}
.y297{bottom:460.270667pt;}
.y1fd{bottom:461.068000pt;}
.y152{bottom:461.934248pt;}
.y22d{bottom:462.264000pt;}
.y16f{bottom:463.245333pt;}
.yd2{bottom:463.553333pt;}
.y71{bottom:465.436000pt;}
.y14{bottom:466.070667pt;}
.y10b{bottom:467.314667pt;}
.y25e{bottom:473.860000pt;}
.y296{bottom:475.613333pt;}
.y1c7{bottom:475.813333pt;}
.y3d{bottom:477.536000pt;}
.y1fc{bottom:477.805333pt;}
.yd1{bottom:478.913333pt;}
.y22c{bottom:479.001333pt;}
.y151{bottom:479.053752pt;}
.y16e{bottom:480.341333pt;}
.y13{bottom:481.972000pt;}
.y70{bottom:482.173333pt;}
.y10a{bottom:484.052000pt;}
.y25d{bottom:489.202667pt;}
.yb6{bottom:490.197221pt;}
.y295{bottom:490.956000pt;}
.y1c6{bottom:492.549333pt;}
.yd0{bottom:494.353733pt;}
.y1fb{bottom:494.542667pt;}
.y3c{bottom:494.830667pt;}
.yb7{bottom:495.422821pt;}
.y22a{bottom:495.738667pt;}
.y150{bottom:496.093096pt;}
.y16d{bottom:497.437333pt;}
.y12{bottom:497.872000pt;}
.y6f{bottom:498.910667pt;}
.y22b{bottom:500.560000pt;}
.y109{bottom:500.789333pt;}
.y25c{bottom:504.545333pt;}
.y294{bottom:506.298667pt;}
.y1c5{bottom:509.286667pt;}
.ycf{bottom:509.713733pt;}
.y1fa{bottom:511.280000pt;}
.y3b{bottom:512.126667pt;}
.y229{bottom:512.476000pt;}
.y14f{bottom:513.212600pt;}
.y11{bottom:513.772000pt;}
.y16c{bottom:514.533333pt;}
.y6e{bottom:515.648000pt;}
.y25b{bottom:519.888000pt;}
.y293{bottom:521.641333pt;}
.y1f9{bottom:525.590667pt;}
.y1c4{bottom:526.024000pt;}
.y108{bottom:526.640000pt;}
.y1f8{bottom:528.017333pt;}
.y228{bottom:529.213333pt;}
.y3a{bottom:529.421333pt;}
.y10{bottom:529.673333pt;}
.y14e{bottom:530.332104pt;}
.y16b{bottom:531.629333pt;}
.y6d{bottom:532.384000pt;}
.ya5{bottom:534.289487pt;}
.y25a{bottom:535.230667pt;}
.y292{bottom:536.984000pt;}
.y1c3{bottom:542.761333pt;}
.y107{bottom:543.736000pt;}
.y1f6{bottom:544.754667pt;}
.yf{bottom:545.573333pt;}
.y227{bottom:545.950667pt;}
.y39{bottom:546.716000pt;}
.y14d{bottom:547.372784pt;}
.y16a{bottom:548.725333pt;}
.y6c{bottom:549.121333pt;}
.y1f7{bottom:549.576000pt;}
.ya4{bottom:550.039431pt;}
.y259{bottom:550.573333pt;}
.y291{bottom:552.325333pt;}
.ycd{bottom:556.913853pt;}
.y1c2{bottom:559.498667pt;}
.y106{bottom:560.832000pt;}
.ye{bottom:561.473333pt;}
.y226{bottom:562.686667pt;}
.y38{bottom:564.012000pt;}
.ycc{bottom:565.473733pt;}
.y1f5{bottom:565.477333pt;}
.ya3{bottom:565.715627pt;}
.y6b{bottom:565.858667pt;}
.y258{bottom:565.916000pt;}
.y290{bottom:567.668000pt;}
.y149{bottom:568.661333pt;}
.y1c1{bottom:576.236000pt;}
.yd{bottom:577.374667pt;}
.y105{bottom:577.928000pt;}
.y225{bottom:579.424000pt;}
.y257{bottom:581.257333pt;}
.y37{bottom:581.306667pt;}
.ya2{bottom:581.465571pt;}
.y6a{bottom:582.596000pt;}
.y28f{bottom:583.010667pt;}
.y1c0{bottom:592.973333pt;}
.y1f4{bottom:595.365333pt;}
.y14b{bottom:596.012520pt;}
.y256{bottom:596.600000pt;}
.ya1{bottom:597.215515pt;}
.ya{bottom:597.259968pt;}
.ycb{bottom:597.865333pt;}
.y28e{bottom:598.353333pt;}
.y36{bottom:598.601333pt;}
.y69{bottom:599.333333pt;}
.y224{bottom:600.146667pt;}
.y14a{bottom:604.572400pt;}
.y1bf{bottom:609.710667pt;}
.y255{bottom:611.942667pt;}
.y1f3{bottom:612.102667pt;}
.ya0{bottom:612.891711pt;}
.y28d{bottom:613.696000pt;}
.y35{bottom:615.897333pt;}
.y68{bottom:616.070667pt;}
.y1be{bottom:626.448000pt;}
.y254{bottom:627.285333pt;}
.y9f{bottom:628.641655pt;}
.y1f2{bottom:628.840000pt;}
.y28c{bottom:629.038667pt;}
.y223{bottom:630.034667pt;}
.y67{bottom:632.808000pt;}
.y34{bottom:633.192000pt;}
.y125{bottom:641.001853pt;}
.y1bd{bottom:643.185333pt;}
.y28b{bottom:644.381333pt;}
.y9e{bottom:644.391599pt;}
.y1f1{bottom:645.576000pt;}
.y253{bottom:646.613333pt;}
.y222{bottom:646.772000pt;}
.y66{bottom:649.545333pt;}
.y124{bottom:649.561733pt;}
.y33{bottom:650.488000pt;}
.y28a{bottom:659.724000pt;}
.y1bc{bottom:659.922667pt;}
.y1f0{bottom:662.313333pt;}
.y221{bottom:663.509333pt;}
.y9d{bottom:663.747780pt;}
.y65{bottom:666.282667pt;}
.y32{bottom:667.782667pt;}
.y289{bottom:675.066667pt;}
.y252{bottom:676.501333pt;}
.y1bb{bottom:676.660000pt;}
.y1ef{bottom:679.050667pt;}
.y220{bottom:680.246667pt;}
.y64{bottom:683.020000pt;}
.y288{bottom:690.408000pt;}
.y251{bottom:692.122667pt;}
.y1ba{bottom:693.397333pt;}
.y9c{bottom:694.217665pt;}
.y1ee{bottom:695.788000pt;}
.y21f{bottom:696.984000pt;}
.y63{bottom:699.757333pt;}
.y31{bottom:702.081333pt;}
.y287{bottom:705.750667pt;}
.y250{bottom:707.744000pt;}
.y9b{bottom:709.893862pt;}
.y1b9{bottom:710.134667pt;}
.y1ec{bottom:712.525333pt;}
.y21e{bottom:713.721333pt;}
.y30{bottom:716.426667pt;}
.y62{bottom:716.494667pt;}
.y1ed{bottom:717.348000pt;}
.y286{bottom:721.093333pt;}
.y9a{bottom:725.643805pt;}
.y1b8{bottom:726.872000pt;}
.y1ea{bottom:729.262667pt;}
.y21d{bottom:730.458667pt;}
.y2f{bottom:730.773333pt;}
.y24f{bottom:731.336000pt;}
.y61{bottom:733.232000pt;}
.y1eb{bottom:734.085333pt;}
.y285{bottom:736.436000pt;}
.y99{bottom:741.393749pt;}
.y1b7{bottom:743.609333pt;}
.y1e9{bottom:746.000000pt;}
.y24e{bottom:746.957333pt;}
.y2e{bottom:748.977333pt;}
.y60{bottom:749.969333pt;}
.y21c{bottom:751.181333pt;}
.y284{bottom:751.778667pt;}
.y98{bottom:757.071175pt;}
.y2d{bottom:759.465333pt;}
.y1b6{bottom:760.346667pt;}
.y24d{bottom:762.578667pt;}
.y1e8{bottom:762.737333pt;}
.y5f{bottom:766.706667pt;}
.y283{bottom:767.121333pt;}
.y2c{bottom:773.812000pt;}
.y1b5{bottom:777.084000pt;}
.y2b{bottom:777.669333pt;}
.y24c{bottom:778.200000pt;}
.y1e7{bottom:779.474667pt;}
.y93{bottom:780.670667pt;}
.y21b{bottom:781.069333pt;}
.y282{bottom:782.464000pt;}
.y5e{bottom:783.444000pt;}
.y2a{bottom:792.016000pt;}
.y1b4{bottom:793.821333pt;}
.y1e6{bottom:796.212000pt;}
.y92{bottom:797.408000pt;}
.y219{bottom:797.806667pt;}
.y5d{bottom:800.181333pt;}
.y24b{bottom:801.792000pt;}
.y96{bottom:801.819732pt;}
.yee{bottom:801.978667pt;}
.y29{bottom:802.504000pt;}
.y21a{bottom:802.628000pt;}
.y95{bottom:809.694821pt;}
.y1b3{bottom:810.558667pt;}
.y1e5{bottom:812.949333pt;}
.y280{bottom:813.148000pt;}
.y281{bottom:813.149333pt;}
.y91{bottom:814.145333pt;}
.y218{bottom:814.544000pt;}
.y28{bottom:816.850667pt;}
.y5c{bottom:816.918667pt;}
.y24a{bottom:817.413333pt;}
.y1b2{bottom:827.296000pt;}
.y27f{bottom:828.490667pt;}
.y1e4{bottom:829.686667pt;}
.y90{bottom:830.882667pt;}
.y27{bottom:831.197333pt;}
.y217{bottom:831.281333pt;}
.y5b{bottom:833.656000pt;}
.y26{bottom:835.054667pt;}
.y249{bottom:841.004000pt;}
.y27e{bottom:843.833333pt;}
.y1b1{bottom:844.033333pt;}
.y1e3{bottom:846.424000pt;}
.y8f{bottom:847.620000pt;}
.y216{bottom:848.018667pt;}
.y5a{bottom:850.393333pt;}
.y27d{bottom:859.176000pt;}
.y1b0{bottom:860.770667pt;}
.y8e{bottom:864.357333pt;}
.y248{bottom:864.596000pt;}
.y215{bottom:864.754667pt;}
.y59{bottom:867.130667pt;}
.y1e2{bottom:867.146667pt;}
.y9{bottom:870.782667pt;}
.y27c{bottom:874.518667pt;}
.y1af{bottom:877.508000pt;}
.y8d{bottom:881.094667pt;}
.y214{bottom:881.492000pt;}
.y58{bottom:883.868000pt;}
.y1e1{bottom:885.078667pt;}
.y8{bottom:887.520000pt;}
.y247{bottom:888.188000pt;}
.y27b{bottom:889.861333pt;}
.y1ae{bottom:894.245333pt;}
.y8c{bottom:897.832000pt;}
.y213{bottom:898.229333pt;}
.y57{bottom:900.605333pt;}
.y246{bottom:903.809333pt;}
.y27a{bottom:905.204000pt;}
.y1ad{bottom:910.982667pt;}
.y1e0{bottom:914.966667pt;}
.y56{bottom:917.342667pt;}
.y8b{bottom:918.553333pt;}
.y245{bottom:919.430667pt;}
.y279{bottom:920.546667pt;}
.y7{bottom:925.510667pt;}
.y1ac{bottom:927.720000pt;}
.y1df{bottom:931.704000pt;}
.y55{bottom:934.080000pt;}
.y244{bottom:935.052000pt;}
.y278{bottom:935.889333pt;}
.y1ab{bottom:944.456000pt;}
.y8a{bottom:948.441333pt;}
.y6{bottom:950.616000pt;}
.y243{bottom:950.673333pt;}
.y54{bottom:950.817333pt;}
.y277{bottom:951.230667pt;}
.y1aa{bottom:961.193333pt;}
.y89{bottom:965.178667pt;}
.y242{bottom:966.294667pt;}
.y276{bottom:966.573333pt;}
.y53{bottom:967.554667pt;}
.y212{bottom:970.001333pt;}
.y5{bottom:975.722667pt;}
.y88{bottom:981.916000pt;}
.y52{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.h27{height:11.520000pt;}
.h9{height:22.673858pt;}
.h26{height:24.877488pt;}
.h29{height:24.879784pt;}
.h30{height:25.811318pt;}
.h28{height:26.455085pt;}
.h1c{height:27.973974pt;}
.h31{height:28.023859pt;}
.hb{height:29.433775pt;}
.hd{height:30.063343pt;}
.ha{height:30.399505pt;}
.h2e{height:31.395404pt;}
.h3{height:31.890083pt;}
.h2b{height:33.186336pt;}
.h11{height:33.378918pt;}
.hf{height:34.430976pt;}
.h4{height:35.024664pt;}
.hc{height:35.073565pt;}
.h18{height:36.057387pt;}
.h16{height:36.574169pt;}
.h1e{height:36.704537pt;}
.h1f{height:36.750308pt;}
.h21{height:36.774956pt;}
.h34{height:36.873667pt;}
.h14{height:37.087439pt;}
.h35{height:37.140573pt;}
.h33{height:38.080100pt;}
.h12{height:38.256384pt;}
.h6{height:38.947124pt;}
.h23{height:39.754531pt;}
.he{height:40.084290pt;}
.h5{height:41.001535pt;}
.h19{height:41.249063pt;}
.h2f{height:41.462969pt;}
.h1a{height:41.776018pt;}
.h1b{height:41.804037pt;}
.h20{height:44.156719pt;}
.h25{height:44.835938pt;}
.h10{height:45.095014pt;}
.h2{height:45.272024pt;}
.h17{height:45.923956pt;}
.h1d{height:47.116081pt;}
.h8{height:48.360277pt;}
.h24{height:49.917344pt;}
.h13{height:50.105236pt;}
.h32{height:57.370767pt;}
.h7{height:68.861952pt;}
.h2d{height:184.112000pt;}
.h22{height:333.548000pt;}
.h2c{height:384.277333pt;}
.h15{height:508.647147pt;}
.h2a{height:597.724000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:60.560000pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w4{width:415.170240pt;}
.w7{width:415.534667pt;}
.w8{width:451.500000pt;}
.w5{width:515.038667pt;}
.w9{width:529.760000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x99{left:-189.288000pt;}
.x8f{left:-180.438667pt;}
.x81{left:-170.628000pt;}
.x63{left:-166.003573pt;}
.xa5{left:-85.444000pt;}
.xa6{left:-57.124000pt;}
.x9a{left:-15.448969pt;}
.x64{left:-6.070479pt;}
.x0{left:0.000000pt;}
.x78{left:2.687627pt;}
.x76{left:5.190027pt;}
.x86{left:9.292000pt;}
.x73{left:10.268427pt;}
.x9c{left:12.872000pt;}
.x65{left:19.984407pt;}
.x91{left:21.721333pt;}
.x4{left:26.021437pt;}
.x82{left:31.532000pt;}
.x7a{left:34.482827pt;}
.x1{left:48.000000pt;}
.x85{left:49.052000pt;}
.x77{left:50.233227pt;}
.x3{left:53.357850pt;}
.x84{left:54.400000pt;}
.xa9{left:76.346667pt;}
.xa7{left:88.396000pt;}
.x69{left:97.190559pt;}
.x79{left:102.047627pt;}
.x75{left:111.542568pt;}
.xa8{left:116.715192pt;}
.x6a{left:123.465227pt;}
.xaa{left:127.262667pt;}
.x6b{left:130.383627pt;}
.xa4{left:131.970667pt;}
.xae{left:133.593333pt;}
.x6e{left:140.614415pt;}
.x67{left:151.580427pt;}
.x6d{left:153.788427pt;}
.x6c{left:159.897227pt;}
.x2{left:161.132773pt;}
.x74{left:165.858827pt;}
.x68{left:167.257228pt;}
.xaf{left:177.392000pt;}
.xb3{left:182.065333pt;}
.xb0{left:184.697333pt;}
.x70{left:195.299234pt;}
.xb4{left:196.764000pt;}
.x7b{left:198.978827pt;}
.xb1{left:207.085333pt;}
.xb2{left:212.709333pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xa2{left:226.526667pt;}
.xa3{left:231.834667pt;}
.x6f{left:234.380273pt;}
.xd9{left:237.372000pt;}
.x71{left:238.943427pt;}
.x6{left:240.942667pt;}
.x10{left:251.365333pt;}
.x4b{left:252.977333pt;}
.x27{left:256.332000pt;}
.xd7{left:258.716000pt;}
.xc9{left:263.649333pt;}
.x4c{left:266.261333pt;}
.x28{left:269.616000pt;}
.xd8{left:272.000000pt;}
.x87{left:273.541333pt;}
.x8{left:275.670667pt;}
.xed{left:276.662667pt;}
.xc5{left:282.318667pt;}
.xf{left:285.516000pt;}
.x98{left:286.430667pt;}
.x45{left:288.957333pt;}
.xe4{left:291.097333pt;}
.xdf{left:292.237333pt;}
.x2f{left:294.489333pt;}
.x72{left:298.854027pt;}
.xc6{left:302.110667pt;}
.x30{left:307.773333pt;}
.x31{left:311.100000pt;}
.xcb{left:316.017333pt;}
.xbb{left:318.573333pt;}
.xbc{left:321.960000pt;}
.x32{left:324.384000pt;}
.x92{left:327.368000pt;}
.xbd{left:328.602667pt;}
.x11{left:331.222667pt;}
.xef{left:332.662667pt;}
.x21{left:333.898667pt;}
.x46{left:335.153333pt;}
.xa0{left:336.226667pt;}
.x12{left:337.865333pt;}
.x9e{left:340.108000pt;}
.xa1{left:343.532000pt;}
.xbe{left:345.273333pt;}
.x22{left:347.182667pt;}
.xca{left:348.876000pt;}
.xec{left:350.156000pt;}
.xbf{left:352.048000pt;}
.xc4{left:357.324000pt;}
.xe7{left:358.894667pt;}
.x47{left:360.937333pt;}
.xcc{left:362.600000pt;}
.xc0{left:365.330667pt;}
.xcd{left:372.388000pt;}
.xee{left:381.757333pt;}
.xce{left:385.670667pt;}
.xdc{left:389.972000pt;}
.xe2{left:391.332000pt;}
.xdd{left:393.660000pt;}
.xd{left:398.885333pt;}
.x48{left:405.300000pt;}
.x90{left:409.399567pt;}
.x1b{left:419.864000pt;}
.x66{left:421.397791pt;}
.xab{left:428.201333pt;}
.x1c{left:433.146667pt;}
.xac{left:435.586667pt;}
.x1d{left:436.534667pt;}
.xe{left:437.476000pt;}
.xd2{left:441.117333pt;}
.xd0{left:445.710667pt;}
.x23{left:447.069333pt;}
.xe0{left:448.826667pt;}
.x1e{left:449.817333pt;}
.xd3{left:454.400000pt;}
.x9b{left:455.349773pt;}
.xd4{left:457.734667pt;}
.x55{left:459.309333pt;}
.x24{left:460.352000pt;}
.xd1{left:462.249333pt;}
.xe6{left:466.582667pt;}
.xd5{left:471.017333pt;}
.x4d{left:473.585333pt;}
.x4e{left:480.320000pt;}
.x8a{left:483.285333pt;}
.x50{left:486.349333pt;}
.xd6{left:487.636000pt;}
.x4f{left:493.604000pt;}
.x8b{left:496.569333pt;}
.x62{left:497.589333pt;}
.xad{left:498.764000pt;}
.x8c{left:499.956000pt;}
.xe5{left:503.936000pt;}
.x40{left:505.178667pt;}
.x13{left:506.362667pt;}
.x60{left:511.574667pt;}
.x14{left:513.004000pt;}
.x29{left:514.898667pt;}
.x8d{left:516.626667pt;}
.x41{left:518.462667pt;}
.x15{left:519.526667pt;}
.x61{left:524.857333pt;}
.x16{left:526.168000pt;}
.x2a{left:528.182667pt;}
.x5a{left:529.089333pt;}
.x2b{left:531.566667pt;}
.x9{left:537.060000pt;}
.x5b{left:542.372000pt;}
.x2c{left:544.849333pt;}
.xa{left:547.978667pt;}
.x3c{left:550.968000pt;}
.xda{left:554.590667pt;}
.x3d{left:557.609333pt;}
.x5c{left:558.910667pt;}
.x3e{left:560.966667pt;}
.x5d{left:562.165333pt;}
.x51{left:564.866667pt;}
.x3f{left:567.608000pt;}
.x95{left:570.584000pt;}
.xcf{left:573.104000pt;}
.x5e{left:575.448000pt;}
.x9f{left:577.469333pt;}
.xb{left:578.572000pt;}
.x52{left:581.537333pt;}
.x38{left:583.554667pt;}
.x96{left:584.484000pt;}
.xc{left:586.493333pt;}
.xdb{left:590.633333pt;}
.xc1{left:591.854667pt;}
.x49{left:593.097333pt;}
.x3a{left:594.557333pt;}
.x39{left:596.837333pt;}
.x53{left:598.208000pt;}
.x4a{left:599.738667pt;}
.x3b{left:601.200000pt;}
.x25{left:602.486667pt;}
.xe8{left:606.028000pt;}
.x93{left:608.477333pt;}
.x54{left:611.492000pt;}
.xf7{left:613.008000pt;}
.x94{left:614.454667pt;}
.x26{left:615.770667pt;}
.xfa{left:618.109333pt;}
.xc2{left:619.418667pt;}
.xf4{left:620.846667pt;}
.xea{left:623.734667pt;}
.xe3{left:625.542667pt;}
.xc3{left:632.702667pt;}
.xf8{left:636.918667pt;}
.xeb{left:639.541333pt;}
.xb5{left:640.617333pt;}
.x33{left:642.758667pt;}
.xb6{left:647.260000pt;}
.x80{left:648.169333pt;}
.x88{left:649.104000pt;}
.xb7{left:650.646667pt;}
.xf6{left:653.390667pt;}
.x34{left:654.326667pt;}
.xb8{left:657.289333pt;}
.xb9{left:660.676000pt;}
.x89{left:662.386667pt;}
.xf5{left:664.310667pt;}
.xf2{left:666.326667pt;}
.xc7{left:667.837333pt;}
.xc8{left:670.730667pt;}
.x83{left:672.632000pt;}
.xba{left:673.960000pt;}
.x7c{left:677.453333pt;}
.x7e{left:679.106667pt;}
.x97{left:680.297333pt;}
.x56{left:681.700000pt;}
.x7d{left:683.430667pt;}
.xf9{left:684.634667pt;}
.x7f{left:686.410667pt;}
.x35{left:688.146667pt;}
.x9d{left:689.058667pt;}
.x42{left:692.756000pt;}
.x57{left:694.984000pt;}
.x36{left:696.946667pt;}
.x58{left:698.238667pt;}
.x43{left:699.397333pt;}
.x44{left:702.745333pt;}
.xe9{left:706.530667pt;}
.xf0{left:708.122667pt;}
.x5f{left:710.172000pt;}
.x59{left:711.521333pt;}
.x17{left:713.426667pt;}
.x1f{left:716.149333pt;}
.xe1{left:717.960000pt;}
.x18{left:720.068000pt;}
.x20{left:722.790667pt;}
.x19{left:726.842667pt;}
.x2d{left:727.909333pt;}
.xde{left:730.213333pt;}
.xf1{left:732.032000pt;}
.x37{left:736.900000pt;}
.x1a{left:740.126667pt;}
.x2e{left:741.193333pt;}
.x8e{left:742.517333pt;}
.xf3{left:744.245333pt;}
}




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