
    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_daee00a44c9b488f4a5ab837.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_952516a494946639681b4e43.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2152fab14b8d78f6375052fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_394408122340a2e65e9f6fb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9d76c01e01d7ddff388f7766.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_387ad0895ac8b89039ee8b57.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_39e4c0a9691c8a7b28095266.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_528d7dcb07712011ef7692c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8e48409840c77c2322d2432a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d718f3df6599c999c3b062f6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b8e006cf94d50fe0e2fbcc24.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_002f8f358550c8a5635995ac.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cf727009b5e8edf67c29dc0b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0dbe789d0cf34743765f0483.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5d07aae6c131916170948f9b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2b31ca160a03e57c5919f833.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871094;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_d718f3df6599c999c3b062f6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_40cc6df435a6b0638a043010.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_34181a138b2f4b116d25ddf0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1ea78a53c8763b8b8d1127b5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.743000;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_bab8c0c194a6903f9562ae2d.woff2')format("woff");}.ff18{font-family:ff18;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;}
.m3{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);}
.m1b{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);}
.m22{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);}
.m26{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);}
.md{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);}
.m1a{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);}
.m24{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);}
.ma{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);}
.m21{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);}
.m5{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);}
.mf{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);}
.m18{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);}
.m9{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);}
.m13{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);}
.m25{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);}
.mb{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);}
.m7{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);}
.m6{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);}
.m27{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);}
.m2b{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2a{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);}
.m29{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);}
.me{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);}
.m19{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);}
.mc{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);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m12{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);}
.m16{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);}
.m8{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);}
.m1d{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);}
.m15{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);}
.m1{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);}
.m4{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m20{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);}
.m1e{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);}
.m2{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);}
.m10{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);}
.v8{vertical-align:-21.696000px;}
.vd{vertical-align:-19.530000px;}
.ve{vertical-align:-14.364000px;}
.v7{vertical-align:-10.920000px;}
.vb{vertical-align:-9.546000px;}
.v10{vertical-align:-6.276000px;}
.v4{vertical-align:-1.884000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.884000px;}
.v9{vertical-align:15.192000px;}
.v2{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v11{vertical-align:25.764000px;}
.vc{vertical-align:30.018000px;}
.v3{vertical-align:32.880000px;}
.v6{vertical-align:34.764000px;}
.vf{vertical-align:41.370000px;}
.va{vertical-align:65.754000px;}
.ls5d{letter-spacing:-2.650090px;}
.ls5b{letter-spacing:-0.331261px;}
.ls3e{letter-spacing:-0.330660px;}
.ls56{letter-spacing:-0.285570px;}
.ls6c{letter-spacing:-0.252504px;}
.ls82{letter-spacing:-0.228456px;}
.ls76{letter-spacing:-0.210420px;}
.ls73{letter-spacing:-0.180360px;}
.ls6f{letter-spacing:-0.174348px;}
.ls62{letter-spacing:-0.171342px;}
.ls41{letter-spacing:-0.168336px;}
.ls57{letter-spacing:-0.165631px;}
.ls75{letter-spacing:-0.156312px;}
.ls68{letter-spacing:-0.150300px;}
.ls6e{letter-spacing:-0.144288px;}
.ls71{letter-spacing:-0.138276px;}
.ls6d{letter-spacing:-0.120240px;}
.ls66{letter-spacing:-0.114228px;}
.ls3f{letter-spacing:-0.108216px;}
.ls74{letter-spacing:-0.108000px;}
.ls84{letter-spacing:-0.102204px;}
.ls6a{letter-spacing:-0.096192px;}
.ls55{letter-spacing:-0.091382px;}
.ls2f{letter-spacing:-0.090972px;}
.ls53{letter-spacing:-0.086423px;}
.ls7f{letter-spacing:-0.086184px;}
.ls6b{letter-spacing:-0.084168px;}
.ls64{letter-spacing:-0.078156px;}
.ls81{letter-spacing:-0.072144px;}
.ls31{letter-spacing:-0.066132px;}
.ls72{letter-spacing:-0.054108px;}
.ls34{letter-spacing:-0.054000px;}
.ls67{letter-spacing:-0.048096px;}
.ls3c{letter-spacing:-0.042084px;}
.ls58{letter-spacing:-0.039980px;}
.ls39{letter-spacing:-0.036072px;}
.ls60{letter-spacing:-0.034268px;}
.ls3a{letter-spacing:-0.030060px;}
.ls5f{letter-spacing:-0.028557px;}
.ls3d{letter-spacing:-0.024048px;}
.ls5a{letter-spacing:-0.022846px;}
.ls35{letter-spacing:-0.021600px;}
.ls65{letter-spacing:-0.018036px;}
.ls5c{letter-spacing:-0.017134px;}
.ls36{letter-spacing:-0.016200px;}
.ls30{letter-spacing:-0.014364px;}
.ls54{letter-spacing:-0.013646px;}
.ls38{letter-spacing:-0.012024px;}
.ls5e{letter-spacing:-0.011423px;}
.ls3b{letter-spacing:-0.006012px;}
.ls59{letter-spacing:-0.005711px;}
.ls33{letter-spacing:-0.005400px;}
.ls80{letter-spacing:-0.004788px;}
.ls6{letter-spacing:0.000000px;}
.ls99{letter-spacing:0.000088px;}
.ls92{letter-spacing:0.000335px;}
.ls8a{letter-spacing:0.000800px;}
.ls98{letter-spacing:0.001036px;}
.ls8d{letter-spacing:0.001502px;}
.ls8c{letter-spacing:0.002186px;}
.ls0{letter-spacing:0.002725px;}
.ls9a{letter-spacing:0.003490px;}
.ls8e{letter-spacing:0.003965px;}
.ls91{letter-spacing:0.004178px;}
.ls1{letter-spacing:0.004200px;}
.ls96{letter-spacing:0.004749px;}
.ls23{letter-spacing:0.006012px;}
.ls48{letter-spacing:0.011423px;}
.ls29{letter-spacing:0.012024px;}
.ls4e{letter-spacing:0.017134px;}
.ls63{letter-spacing:0.018036px;}
.ls4a{letter-spacing:0.022846px;}
.ls26{letter-spacing:0.024048px;}
.ls49{letter-spacing:0.028557px;}
.ls2c{letter-spacing:0.030060px;}
.ls20{letter-spacing:0.032400px;}
.ls4b{letter-spacing:0.034268px;}
.ls22{letter-spacing:0.036072px;}
.ls50{letter-spacing:0.039980px;}
.ls2b{letter-spacing:0.042084px;}
.ls1f{letter-spacing:0.043200px;}
.ls46{letter-spacing:0.045691px;}
.ls28{letter-spacing:0.048096px;}
.ls43{letter-spacing:0.050035px;}
.ls4c{letter-spacing:0.051403px;}
.ls1c{letter-spacing:0.052668px;}
.ls27{letter-spacing:0.054108px;}
.ls47{letter-spacing:0.057114px;}
.ls79{letter-spacing:0.057456px;}
.ls25{letter-spacing:0.060120px;}
.ls21{letter-spacing:0.064800px;}
.ls24{letter-spacing:0.066132px;}
.ls4f{letter-spacing:0.068537px;}
.ls70{letter-spacing:0.072144px;}
.ls4d{letter-spacing:0.074248px;}
.ls51{letter-spacing:0.079960px;}
.ls7c{letter-spacing:0.081000px;}
.ls7b{letter-spacing:0.090180px;}
.ls83{letter-spacing:0.102204px;}
.ls42{letter-spacing:0.108216px;}
.ls37{letter-spacing:0.118800px;}
.ls40{letter-spacing:0.138276px;}
.ls69{letter-spacing:0.144288px;}
.ls32{letter-spacing:0.156312px;}
.ls45{letter-spacing:0.159201px;}
.ls1e{letter-spacing:0.167580px;}
.ls44{letter-spacing:0.172847px;}
.ls2a{letter-spacing:0.180360px;}
.ls1d{letter-spacing:0.181944px;}
.ls7a{letter-spacing:0.191520px;}
.ls19{letter-spacing:0.497764px;}
.ls14{letter-spacing:0.503764px;}
.ls10{letter-spacing:0.542815px;}
.lsf{letter-spacing:0.548815px;}
.ls8{letter-spacing:0.717483px;}
.ls7{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls15{letter-spacing:2.988600px;}
.lsd{letter-spacing:2.989200px;}
.ls52{letter-spacing:2.993263px;}
.ls11{letter-spacing:3.553200px;}
.ls9{letter-spacing:3.559200px;}
.ls61{letter-spacing:7.264901px;}
.ls3{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls1b{letter-spacing:12.095779px;}
.ls94{letter-spacing:12.521829px;}
.ls8f{letter-spacing:12.846318px;}
.ls93{letter-spacing:13.309224px;}
.ls8b{letter-spacing:13.355983px;}
.ls90{letter-spacing:13.398464px;}
.ls87{letter-spacing:13.414994px;}
.ls86{letter-spacing:13.448400px;}
.ls89{letter-spacing:13.454400px;}
.ls9b{letter-spacing:13.556436px;}
.ls97{letter-spacing:13.592996px;}
.ls88{letter-spacing:13.653639px;}
.ls95{letter-spacing:13.715106px;}
.ls77{letter-spacing:14.047266px;}
.ls78{letter-spacing:14.107042px;}
.ls12{letter-spacing:16.188671px;}
.ls18{letter-spacing:16.434600px;}
.ls2d{letter-spacing:16.439263px;}
.ls17{letter-spacing:16.440600px;}
.ls85{letter-spacing:16.585694px;}
.ls2e{letter-spacing:16.937764px;}
.lse{letter-spacing:18.476815px;}
.ls13{letter-spacing:19.606397px;}
.ls4{letter-spacing:28.453654px;}
.ls1a{letter-spacing:89.731133px;}
.ls7d{letter-spacing:106.106100px;}
.ls16{letter-spacing:121.609133px;}
.lsb{letter-spacing:257.066932px;}
.lsc{letter-spacing:342.392932px;}
.lsa{letter-spacing:435.240600px;}
.ls7e{letter-spacing:2120.252100px;}
.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;}
}
.ws118{word-spacing:-36.000000px;}
.ws0{word-spacing:-28.532313px;}
.ws8b{word-spacing:-15.030000px;}
.ws117{word-spacing:-14.981904px;}
.ws119{word-spacing:-14.945832px;}
.ws3{word-spacing:-14.943900px;}
.ws89{word-spacing:-13.618800px;}
.ws88{word-spacing:-13.500000px;}
.ws78{word-spacing:-13.449600px;}
.ws16d{word-spacing:-12.161520px;}
.ws87{word-spacing:-12.151944px;}
.ws33{word-spacing:-11.955150px;}
.wsc1{word-spacing:-11.544347px;}
.ws9{word-spacing:-10.460700px;}
.ws8c{word-spacing:-9.000000px;}
.ws11a{word-spacing:-8.892000px;}
.wsc2{word-spacing:-8.550000px;}
.ws8a{word-spacing:-8.280000px;}
.ws107{word-spacing:-3.700987px;}
.ws9f{word-spacing:-3.517020px;}
.ws108{word-spacing:-3.403994px;}
.ws13c{word-spacing:-3.168324px;}
.ws198{word-spacing:-3.138264px;}
.ws13d{word-spacing:-3.120228px;}
.ws199{word-spacing:-3.102192px;}
.ws19a{word-spacing:-3.090168px;}
.ws102{word-spacing:-3.044176px;}
.ws103{word-spacing:-3.038465px;}
.wsf7{word-spacing:-3.021331px;}
.wsf9{word-spacing:-2.981351px;}
.ws19d{word-spacing:-2.452896px;}
.wsf5{word-spacing:-2.375942px;}
.wsf6{word-spacing:-2.341674px;}
.ws1b8{word-spacing:-2.320632px;}
.wse4{word-spacing:-2.318828px;}
.ws1c4{word-spacing:-2.205734px;}
.ws18{word-spacing:-2.151936px;}
.wse5{word-spacing:-2.141775px;}
.wsa0{word-spacing:-2.134260px;}
.ws151{word-spacing:-2.116224px;}
.ws3d{word-spacing:-2.092146px;}
.ws19e{word-spacing:-2.056104px;}
.ws1c5{word-spacing:-2.044339px;}
.wse3{word-spacing:-2.027547px;}
.wse2{word-spacing:-2.021836px;}
.ws95{word-spacing:-1.976400px;}
.ws66{word-spacing:-1.972595px;}
.ws1e6{word-spacing:-1.936742px;}
.ws96{word-spacing:-1.927800px;}
.ws5{word-spacing:-1.908367px;}
.ws6e{word-spacing:-1.853044px;}
.ws24{word-spacing:-1.793268px;}
.ws1c6{word-spacing:-1.775347px;}
.ws25{word-spacing:-1.733492px;}
.wsa5{word-spacing:-1.701396px;}
.ws30{word-spacing:-1.673717px;}
.wsa4{word-spacing:-1.665324px;}
.ws77{word-spacing:-1.613941px;}
.ws27{word-spacing:-1.554166px;}
.ws1b4{word-spacing:-1.406808px;}
.ws1ae{word-spacing:-1.382760px;}
.ws16b{word-spacing:-1.374839px;}
.ws1ac{word-spacing:-1.364724px;}
.wsfd{word-spacing:-1.330756px;}
.ws1b7{word-spacing:-1.328652px;}
.ws4{word-spacing:-1.322630px;}
.wscb{word-spacing:-1.255288px;}
.wsfe{word-spacing:-1.245085px;}
.ws1e0{word-spacing:-1.237363px;}
.ws16f{word-spacing:-1.195512px;}
.ws1dd{word-spacing:-1.183565px;}
.ws3f{word-spacing:-1.135736px;}
.ws47{word-spacing:-1.075961px;}
.wsa6{word-spacing:-1.058112px;}
.wsba{word-spacing:-1.046088px;}
.wsb9{word-spacing:-1.034064px;}
.ws197{word-spacing:-1.028052px;}
.ws15b{word-spacing:-1.016028px;}
.ws1ab{word-spacing:-1.010016px;}
.ws19f{word-spacing:-0.991980px;}
.ws1af{word-spacing:-0.985968px;}
.ws15d{word-spacing:-0.967932px;}
.ws1c0{word-spacing:-0.956410px;}
.ws1b3{word-spacing:-0.955908px;}
.ws1e2{word-spacing:-0.914573px;}
.ws196{word-spacing:-0.913824px;}
.ws29{word-spacing:-0.896634px;}
.ws16c{word-spacing:-0.836858px;}
.ws1d9{word-spacing:-0.806976px;}
.ws65{word-spacing:-0.717307px;}
.ws1a3{word-spacing:-0.673344px;}
.ws148{word-spacing:-0.667332px;}
.ws1a2{word-spacing:-0.661320px;}
.ws40{word-spacing:-0.657532px;}
.wsa7{word-spacing:-0.655308px;}
.wsee{word-spacing:-0.651100px;}
.ws14c{word-spacing:-0.649296px;}
.ws15a{word-spacing:-0.643284px;}
.ws14b{word-spacing:-0.619236px;}
.ws1db{word-spacing:-0.591782px;}
.wsef{word-spacing:-0.576851px;}
.ws31{word-spacing:-0.537980px;}
.ws3c{word-spacing:-0.478205px;}
.ws15c{word-spacing:-0.474948px;}
.ws1e4{word-spacing:-0.430387px;}
.ws1c1{word-spacing:-0.418429px;}
.ws1b6{word-spacing:-0.414828px;}
.wsbc{word-spacing:-0.378756px;}
.ws1ad{word-spacing:-0.366732px;}
.ws26{word-spacing:-0.358654px;}
.wsc6{word-spacing:-0.322790px;}
.wsf1{word-spacing:-0.314127px;}
.ws9c{word-spacing:-0.306612px;}
.ws101{word-spacing:-0.302704px;}
.ws3a{word-spacing:-0.298878px;}
.ws52{word-spacing:-0.286924px;}
.wsb1{word-spacing:-0.282564px;}
.ws14a{word-spacing:-0.270540px;}
.wsc5{word-spacing:-0.268992px;}
.wsf0{word-spacing:-0.268436px;}
.ws12a{word-spacing:-0.264528px;}
.ws9d{word-spacing:-0.258516px;}
.ws15f{word-spacing:-0.246492px;}
.wscf{word-spacing:-0.245472px;}
.wsb4{word-spacing:-0.240480px;}
.wsf2{word-spacing:-0.239879px;}
.ws2f{word-spacing:-0.239102px;}
.ws8d{word-spacing:-0.215194px;}
.ws1b5{word-spacing:-0.180360px;}
.ws35{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.ws91{word-spacing:-0.143640px;}
.wsdc{word-spacing:-0.136458px;}
.ws23{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.ws190{word-spacing:-0.081396px;}
.ws92{word-spacing:-0.076608px;}
.wsdd{word-spacing:-0.072778px;}
.ws94{word-spacing:-0.066132px;}
.ws15e{word-spacing:-0.060120px;}
.ws2{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws34{word-spacing:-0.047821px;}
.wsa{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws49{word-spacing:0.001421px;}
.ws4e{word-spacing:0.002400px;}
.ws112{word-spacing:0.005711px;}
.wsf3{word-spacing:0.017134px;}
.ws160{word-spacing:0.024048px;}
.ws147{word-spacing:0.042084px;}
.ws1bd{word-spacing:0.048096px;}
.ws8e{word-spacing:0.053798px;}
.ws111{word-spacing:0.057114px;}
.ws3b{word-spacing:0.059776px;}
.wsb2{word-spacing:0.060120px;}
.ws113{word-spacing:0.062825px;}
.ws137{word-spacing:0.066132px;}
.ws128{word-spacing:0.078156px;}
.ws138{word-spacing:0.090180px;}
.ws100{word-spacing:0.097094px;}
.ws1a9{word-spacing:0.102600px;}
.ws1b{word-spacing:0.107597px;}
.ws129{word-spacing:0.108216px;}
.ws9b{word-spacing:0.113400px;}
.ws21{word-spacing:0.119551px;}
.ws10c{word-spacing:0.119939px;}
.ws159{word-spacing:0.126252px;}
.ws81{word-spacing:0.143462px;}
.ws1a8{word-spacing:0.151200px;}
.ws19{word-spacing:0.161395px;}
.ws125{word-spacing:0.168336px;}
.ws3e{word-spacing:0.179327px;}
.ws1aa{word-spacing:0.189000px;}
.wsb{word-spacing:0.209214px;}
.ws1cf{word-spacing:0.215194px;}
.ws38{word-spacing:0.239102px;}
.wsbb{word-spacing:0.258516px;}
.ws1ce{word-spacing:0.268992px;}
.wsd{word-spacing:0.292900px;}
.ws28{word-spacing:0.298878px;}
.ws1d7{word-spacing:0.322790px;}
.wseb{word-spacing:0.354107px;}
.ws36{word-spacing:0.358654px;}
.ws1c3{word-spacing:0.376589px;}
.ws106{word-spacing:0.388375px;}
.wsec{word-spacing:0.394087px;}
.ws194{word-spacing:0.402804px;}
.ws1ba{word-spacing:0.408816px;}
.ws104{word-spacing:0.416932px;}
.ws6a{word-spacing:0.418429px;}
.ws1b9{word-spacing:0.420840px;}
.wsed{word-spacing:0.434066px;}
.wsae{word-spacing:0.444888px;}
.ws195{word-spacing:0.474948px;}
.ws9a{word-spacing:0.507600px;}
.ws164{word-spacing:0.537980px;}
.ws1c2{word-spacing:0.537984px;}
.ws48{word-spacing:0.568500px;}
.ws57{word-spacing:0.597756px;}
.ws115{word-spacing:0.657532px;}
.ws163{word-spacing:0.717307px;}
.wse6{word-spacing:0.742482px;}
.wsf4{word-spacing:0.753905px;}
.ws1a5{word-spacing:0.757512px;}
.wsf8{word-spacing:0.759616px;}
.wsad{word-spacing:0.763524px;}
.ws58{word-spacing:0.777083px;}
.wsfc{word-spacing:0.782462px;}
.wsfb{word-spacing:0.799596px;}
.ws5a{word-spacing:0.836858px;}
.ws99{word-spacing:0.858600px;}
.ws116{word-spacing:0.896634px;}
.ws85{word-spacing:0.956410px;}
.ws60{word-spacing:1.016185px;}
.ws145{word-spacing:1.064124px;}
.wsbf{word-spacing:1.075961px;}
.ws144{word-spacing:1.106208px;}
.ws1a4{word-spacing:1.112220px;}
.ws131{word-spacing:1.148292px;}
.wsa2{word-spacing:1.178352px;}
.ws6c{word-spacing:1.242759px;}
.ws6d{word-spacing:1.255288px;}
.ws11d{word-spacing:1.315063px;}
.ws5e{word-spacing:1.317074px;}
.wsd2{word-spacing:1.374839px;}
.ws82{word-spacing:1.386797px;}
.wsff{word-spacing:1.399293px;}
.ws37{word-spacing:1.434614px;}
.ws1b1{word-spacing:1.484964px;}
.ws55{word-spacing:1.494390px;}
.ws22{word-spacing:1.554166px;}
.wsa1{word-spacing:1.557108px;}
.ws1ec{word-spacing:1.560154px;}
.ws5c{word-spacing:1.613941px;}
.ws2e{word-spacing:1.673717px;}
.ws42{word-spacing:1.733492px;}
.ws10a{word-spacing:1.741977px;}
.ws62{word-spacing:1.793268px;}
.ws1a7{word-spacing:1.833660px;}
.ws1b0{word-spacing:1.839672px;}
.ws158{word-spacing:1.845684px;}
.ws86{word-spacing:1.853044px;}
.ws8f{word-spacing:1.912819px;}
.ws1a6{word-spacing:1.941876px;}
.wsc4{word-spacing:1.990541px;}
.wsc{word-spacing:2.008454px;}
.ws105{word-spacing:2.078950px;}
.ws90{word-spacing:2.092146px;}
.ws5d{word-spacing:2.151922px;}
.ws150{word-spacing:2.206404px;}
.ws14f{word-spacing:2.212416px;}
.wsdf{word-spacing:2.227446px;}
.ws1a1{word-spacing:2.230452px;}
.ws13b{word-spacing:2.236464px;}
.ws1a0{word-spacing:2.272536px;}
.wsc3{word-spacing:2.313331px;}
.ws56{word-spacing:2.331248px;}
.ws98{word-spacing:2.343600px;}
.ws97{word-spacing:2.354400px;}
.ws1e8{word-spacing:2.367130px;}
.ws2a{word-spacing:2.391024px;}
.wse0{word-spacing:2.421634px;}
.wsea{word-spacing:2.427345px;}
.wse9{word-spacing:2.444479px;}
.ws124{word-spacing:2.450800px;}
.ws1c7{word-spacing:2.474726px;}
.ws7{word-spacing:2.510418px;}
.wsb3{word-spacing:2.543076px;}
.wsa3{word-spacing:2.549088px;}
.wsa8{word-spacing:2.555100px;}
.ws19c{word-spacing:2.591172px;}
.ws193{word-spacing:2.603196px;}
.ws12c{word-spacing:2.621232px;}
.wsda{word-spacing:2.689902px;}
.ws12b{word-spacing:2.723436px;}
.ws76{word-spacing:2.869229px;}
.ws15{word-spacing:2.869236px;}
.ws14e{word-spacing:2.915820px;}
.ws41{word-spacing:2.929004px;}
.wsac{word-spacing:2.945880px;}
.ws12d{word-spacing:2.957904px;}
.ws1e7{word-spacing:2.958912px;}
.ws12f{word-spacing:3.006000px;}
.ws72{word-spacing:3.048556px;}
.wsd5{word-spacing:3.108331px;}
.wsd3{word-spacing:3.110003px;}
.ws11b{word-spacing:3.120307px;}
.ws192{word-spacing:3.144276px;}
.ws5b{word-spacing:3.168107px;}
.ws1c9{word-spacing:3.223584px;}
.ws54{word-spacing:3.227882px;}
.ws1cc{word-spacing:3.227904px;}
.ws157{word-spacing:3.270528px;}
.ws1e{word-spacing:3.281702px;}
.ws12e{word-spacing:3.336660px;}
.ws130{word-spacing:3.342672px;}
.ws146{word-spacing:3.396780px;}
.ws1c{word-spacing:3.443098px;}
.ws122{word-spacing:3.466985px;}
.ws149{word-spacing:3.474936px;}
.ws123{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws1b2{word-spacing:3.625236px;}
.wsb8{word-spacing:3.643272px;}
.ws70{word-spacing:3.646312px;}
.ws1bc{word-spacing:3.661308px;}
.wsb5{word-spacing:3.679344px;}
.wsc7{word-spacing:3.765863px;}
.ws75{word-spacing:3.825638px;}
.ws120{word-spacing:3.885414px;}
.ws134{word-spacing:3.907800px;}
.ws121{word-spacing:3.945190px;}
.ws140{word-spacing:3.997980px;}
.ws39{word-spacing:4.004965px;}
.ws1bb{word-spacing:4.022028px;}
.wsb7{word-spacing:4.046076px;}
.wsb0{word-spacing:4.052088px;}
.wsab{word-spacing:4.064112px;}
.ws2b{word-spacing:4.064741px;}
.wsaa{word-spacing:4.076136px;}
.wsd7{word-spacing:4.097186px;}
.wsd9{word-spacing:4.124516px;}
.ws110{word-spacing:4.140765px;}
.ws10b{word-spacing:4.157899px;}
.wsb6{word-spacing:4.160304px;}
.ws2d{word-spacing:4.184292px;}
.ws19b{word-spacing:4.286556px;}
.ws10f{word-spacing:4.363510px;}
.ws162{word-spacing:4.363619px;}
.wsaf{word-spacing:4.400784px;}
.ws136{word-spacing:4.430844px;}
.ws13e{word-spacing:4.448880px;}
.ws132{word-spacing:4.490964px;}
.ws135{word-spacing:4.509000px;}
.ws141{word-spacing:4.527036px;}
.ws53{word-spacing:4.542946px;}
.ws133{word-spacing:4.563108px;}
.ws6f{word-spacing:4.602721px;}
.ws13f{word-spacing:4.665312px;}
.wsa9{word-spacing:4.707396px;}
.ws71{word-spacing:4.901599px;}
.ws67{word-spacing:4.961375px;}
.ws69{word-spacing:5.140702px;}
.ws171{word-spacing:5.164646px;}
.ws63{word-spacing:5.200477px;}
.ws1d1{word-spacing:5.379840px;}
.ws16e{word-spacing:5.439580px;}
.wsc0{word-spacing:5.499355px;}
.ws109{word-spacing:5.511501px;}
.wse8{word-spacing:5.534347px;}
.ws170{word-spacing:5.541235px;}
.ws59{word-spacing:5.559131px;}
.wse7{word-spacing:5.597172px;}
.ws84{word-spacing:5.618906px;}
.ws46{word-spacing:5.678682px;}
.ws11e{word-spacing:5.798233px;}
.wse1{word-spacing:5.854185px;}
.ws20{word-spacing:5.917784px;}
.ws13{word-spacing:6.067206px;}
.ws153{word-spacing:6.138252px;}
.ws14{word-spacing:6.150892px;}
.ws152{word-spacing:6.384744px;}
.wsbe{word-spacing:6.455765px;}
.wsbd{word-spacing:6.515540px;}
.ws14d{word-spacing:6.541056px;}
.ws45{word-spacing:6.575316px;}
.ws61{word-spacing:6.694867px;}
.ws83{word-spacing:6.754643px;}
.ws139{word-spacing:6.889752px;}
.ws10d{word-spacing:6.916505px;}
.ws11f{word-spacing:6.933970px;}
.ws154{word-spacing:7.070112px;}
.wsfa{word-spacing:7.213498px;}
.ws10e{word-spacing:7.253478px;}
.ws126{word-spacing:7.280532px;}
.ws1be{word-spacing:7.292623px;}
.ws13a{word-spacing:7.298568px;}
.ws127{word-spacing:7.316604px;}
.ws155{word-spacing:7.346664px;}
.ws44{word-spacing:7.412174px;}
.ws156{word-spacing:7.472916px;}
.ws17{word-spacing:7.477978px;}
.ws161{word-spacing:7.711052px;}
.ws1bf{word-spacing:8.069706px;}
.ws74{word-spacing:8.368584px;}
.ws11{word-spacing:8.661460px;}
.wsc8{word-spacing:8.846789px;}
.ws142{word-spacing:9.444852px;}
.ws143{word-spacing:9.468900px;}
.ws174{word-spacing:10.418857px;}
.ws9e{word-spacing:10.923804px;}
.wsde{word-spacing:11.039452px;}
.wsca{word-spacing:11.178037px;}
.ws191{word-spacing:11.615688px;}
.ws93{word-spacing:11.620476px;}
.ws32{word-spacing:11.904929px;}
.ws1e3{word-spacing:12.804019px;}
.ws8{word-spacing:12.929425px;}
.ws11c{word-spacing:13.073011px;}
.ws73{word-spacing:13.210408px;}
.ws1d4{word-spacing:13.288205px;}
.ws1df{word-spacing:13.342003px;}
.ws1d0{word-spacing:13.392499px;}
.ws1e5{word-spacing:13.394304px;}
.ws1ca{word-spacing:13.395802px;}
.ws1cd{word-spacing:13.557197px;}
.wscc{word-spacing:13.641764px;}
.ws1eb{word-spacing:13.718592px;}
.ws1d2{word-spacing:13.933786px;}
.wsd0{word-spacing:14.631789px;}
.ws64{word-spacing:14.704798px;}
.wscd{word-spacing:14.798907px;}
.ws43{word-spacing:14.884124px;}
.wsd1{word-spacing:14.926504px;}
.ws6b{word-spacing:14.972294px;}
.ws114{word-spacing:15.057057px;}
.wsce{word-spacing:15.063451px;}
.ws6{word-spacing:15.483541px;}
.ws5f{word-spacing:15.868668px;}
.ws1c8{word-spacing:15.870528px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.ws1d5{word-spacing:16.354714px;}
.ws2c{word-spacing:16.378514px;}
.ws1e1{word-spacing:16.462310px;}
.ws1da{word-spacing:16.569907px;}
.ws1d3{word-spacing:16.614691px;}
.ws1dc{word-spacing:16.618358px;}
.ws1de{word-spacing:16.620691px;}
.ws1d8{word-spacing:16.622256px;}
.ws1cb{word-spacing:16.623706px;}
.ws1d6{word-spacing:16.625107px;}
.ws1ea{word-spacing:16.785101px;}
.ws1e9{word-spacing:16.946496px;}
.wsdb{word-spacing:17.570656px;}
.ws10{word-spacing:17.699504px;}
.wsd4{word-spacing:17.990624px;}
.wsd6{word-spacing:18.948865px;}
.wsd8{word-spacing:18.972977px;}
.ws68{word-spacing:19.849447px;}
.wsc9{word-spacing:23.730913px;}
.ws12{word-spacing:27.448877px;}
.ws175{word-spacing:38.258149px;}
.ws18c{word-spacing:41.366400px;}
.ws173{word-spacing:52.382041px;}
.ws17f{word-spacing:62.960400px;}
.ws18e{word-spacing:69.050400px;}
.ws186{word-spacing:69.104400px;}
.ws181{word-spacing:70.756175px;}
.ws177{word-spacing:71.928277px;}
.ws180{word-spacing:79.844400px;}
.ws185{word-spacing:80.426400px;}
.ws178{word-spacing:80.463704px;}
.ws17e{word-spacing:84.554400px;}
.ws176{word-spacing:95.510352px;}
.ws188{word-spacing:98.456108px;}
.ws17d{word-spacing:99.680400px;}
.ws189{word-spacing:103.065559px;}
.ws184{word-spacing:103.088114px;}
.ws17c{word-spacing:116.960400px;}
.ws182{word-spacing:121.093063px;}
.ws7d{word-spacing:123.689578px;}
.ws168{word-spacing:136.409578px;}
.ws7e{word-spacing:137.189578px;}
.ws183{word-spacing:139.787933px;}
.ws7c{word-spacing:140.123578px;}
.ws17b{word-spacing:145.040400px;}
.ws167{word-spacing:152.063578px;}
.ws17a{word-spacing:156.032400px;}
.ws172{word-spacing:158.557795px;}
.ws7f{word-spacing:161.053555px;}
.ws79{word-spacing:165.513600px;}
.ws165{word-spacing:166.995600px;}
.ws7a{word-spacing:167.073600px;}
.ws7b{word-spacing:168.501600px;}
.ws166{word-spacing:170.007600px;}
.ws80{word-spacing:174.553555px;}
.ws179{word-spacing:175.370690px;}
.ws169{word-spacing:176.545555px;}
.ws16a{word-spacing:180.469555px;}
.ws51{word-spacing:196.849555px;}
.ws4a{word-spacing:198.813600px;}
.ws4b{word-spacing:232.329600px;}
.ws50{word-spacing:269.449555px;}
.ws4c{word-spacing:340.253578px;}
.ws4d{word-spacing:387.859555px;}
.ws4f{word-spacing:550.569475px;}
.ws187{word-spacing:1198.286041px;}
.ws18a{word-spacing:2267.516897px;}
.ws18b{word-spacing:2463.099398px;}
.ws18d{word-spacing:2616.132277px;}
.ws18f{word-spacing:2798.631448px;}
._81{margin-left:-31.609487px;}
._0{margin-left:-7.962163px;}
._8{margin-left:-6.168857px;}
._22{margin-left:-5.140608px;}
._4{margin-left:-4.033248px;}
._18{margin-left:-2.958912px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._6{width:2.301354px;}
._59{width:3.622048px;}
._80{width:6.770357px;}
._9{width:11.094379px;}
._5{width:12.971268px;}
._11{width:14.824386px;}
._e{width:16.117190px;}
._c{width:17.155836px;}
._f{width:18.829314px;}
._10{width:20.204153px;}
._21{width:21.566856px;}
._b{width:22.918118px;}
._15{width:24.670826px;}
._d{width:26.522611px;}
._1f{width:28.190158px;}
._5a{width:29.529146px;}
._14{width:31.023536px;}
._7{width:32.637384px;}
._20{width:33.976647px;}
._57{width:35.865360px;}
._56{width:37.972640px;}
._a{width:39.089107px;}
._7e{width:40.176770px;}
._23{width:43.337310px;}
._1{width:54.420244px;}
._7f{width:61.868160px;}
._4f{width:81.312290px;}
._75{width:90.359100px;}
._53{width:95.485874px;}
._7b{width:102.683608px;}
._78{width:107.841562px;}
._79{width:108.916808px;}
._40{width:110.394317px;}
._28{width:113.945011px;}
._2f{width:115.505165px;}
._24{width:119.271053px;}
._43{width:120.885005px;}
._47{width:122.391360px;}
._30{width:123.574925px;}
._2b{width:125.404070px;}
._35{width:126.802829px;}
._5b{width:128.309184px;}
._6b{width:130.353523px;}
._5d{width:132.397862px;}
._4e{width:137.292734px;}
._32{width:138.315686px;}
._29{width:139.983437px;}
._48{width:142.189171px;}
._3b{width:144.018317px;}
._36{width:145.417075px;}
._38{width:150.258931px;}
._52{width:152.289161px;}
._67{width:153.809626px;}
._44{width:155.961562px;}
._4b{width:157.145126px;}
._25{width:158.920474px;}
._41{width:160.319232px;}
._45{width:161.448998px;}
._5c{width:166.344653px;}
._31{width:169.518758px;}
._2a{width:173.123251px;}
._72{width:174.291210px;}
._74{width:175.608414px;}
._50{width:183.143546px;}
._77{width:184.490852px;}
._3c{width:186.626650px;}
._37{width:188.993779px;}
._71{width:190.091621px;}
._61{width:193.243853px;}
._5e{width:194.266022px;}
._64{width:196.310362px;}
._3d{width:197.709120px;}
._54{width:200.025242px;}
._42{width:201.475008px;}
._1b{width:203.895936px;}
._62{width:204.971904px;}
._2c{width:206.047872px;}
._49{width:207.608026px;}
._39{width:210.566938px;}
._17{width:212.337312px;}
._6f{width:216.896852px;}
._26{width:220.161514px;}
._4c{width:222.510182px;}
._55{width:226.664414px;}
._6a{width:236.174976px;}
._60{width:237.412339px;}
._65{width:239.510477px;}
._2e{width:249.409382px;}
._6c{width:252.403632px;}
._69{width:262.751386px;}
._4a{width:264.311539px;}
._63{width:265.871693px;}
._46{width:267.951370px;}
._27{width:271.916774px;}
._34{width:277.707341px;}
._3f{width:280.666253px;}
._51{width:351.311210px;}
._5f{width:357.328973px;}
._2d{width:358.835328px;}
._3e{width:360.341683px;}
._66{width:368.412226px;}
._33{width:372.284928px;}
._3a{width:373.683686px;}
._68{width:386.164915px;}
._1c{width:394.173917px;}
._70{width:461.973905px;}
._19{width:469.575014px;}
._1e{width:481.924435px;}
._16{width:492.791712px;}
._1a{width:502.098835px;}
._1d{width:606.701107px;}
._73{width:708.806036px;}
._12{width:913.138557px;}
._76{width:988.771648px;}
._7a{width:1477.660544px;}
._7c{width:1620.308897px;}
._7d{width:1824.622308px;}
._58{width:1998.782695px;}
._6e{width:2081.214818px;}
._4d{width:2104.039214px;}
._6d{width:2487.194700px;}
._13{width:2511.104700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs15{font-size:29.887800px;}
.fs10{font-size:33.120000px;}
.fs14{font-size:34.200000px;}
.fsa{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fs16{font-size:37.371600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsc{font-size:43.600200px;}
.fsb{font-size:45.429600px;}
.fs12{font-size:45.486000px;}
.fs3{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs13{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y230{bottom:-311.937900px;}
.y22f{bottom:-292.678458px;}
.y22e{bottom:-273.419016px;}
.y22d{bottom:-254.249754px;}
.y22c{bottom:-234.990312px;}
.y22b{bottom:-215.821050px;}
.y229{bottom:-215.819196px;}
.y22a{bottom:-212.041050px;}
.y228{bottom:-196.559754px;}
.y227{bottom:-177.300312px;}
.y226{bottom:-158.131050px;}
.y225{bottom:-158.128638px;}
.y224{bottom:-138.869196px;}
.y223{bottom:-119.699934px;}
.y222{bottom:-100.440492px;}
.y1d6{bottom:-90.202254px;}
.y221{bottom:-81.181050px;}
.y19c{bottom:-76.660620px;}
.y1d5{bottom:-70.942812px;}
.y160{bottom:-69.604431px;}
.y19b{bottom:-58.449821px;}
.y1d4{bottom:-51.762615px;}
.y15f{bottom:-50.344989px;}
.y220{bottom:-44.460600px;}
.y19a{bottom:-40.153351px;}
.y15e{bottom:-31.175727px;}
.y1d3{bottom:-27.732651px;}
.y21f{bottom:-27.001050px;}
.y199{bottom:-17.324885px;}
.y15d{bottom:-7.145763px;}
.y21e{bottom:-4.583976px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.yb{bottom:3.425340px;}
.ya{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y4d{bottom:31.890000px;}
.y1b2{bottom:88.993500px;}
.yc2{bottom:92.092500px;}
.y136{bottom:96.192000px;}
.y1ea{bottom:98.286000px;}
.y291{bottom:98.805000px;}
.y24{bottom:102.823500px;}
.y4c{bottom:103.621500px;}
.y102{bottom:105.799500px;}
.y172{bottom:107.422500px;}
.y1b1{bottom:107.823000px;}
.y25d{bottom:109.539000px;}
.yc1{bottom:110.922000px;}
.y135{bottom:115.021500px;}
.y290{bottom:116.065500px;}
.y1e9{bottom:117.115500px;}
.y23{bottom:120.711000px;}
.y2c9{bottom:120.817500px;}
.y4b{bottom:122.449500px;}
.y25c{bottom:123.735000px;}
.y101{bottom:124.627500px;}
.y171{bottom:126.252000px;}
.y1b0{bottom:126.652500px;}
.ybf{bottom:129.751500px;}
.y28f{bottom:133.326000px;}
.y134{bottom:133.851000px;}
.yc0{bottom:135.175500px;}
.y25b{bottom:135.831000px;}
.y1e8{bottom:135.945000px;}
.y25a{bottom:137.932500px;}
.y2c8{bottom:138.078000px;}
.y22{bottom:138.600000px;}
.y4a{bottom:141.279000px;}
.y100{bottom:143.457000px;}
.y170{bottom:145.081500px;}
.y81{bottom:145.233000px;}
.y1af{bottom:145.482000px;}
.ybe{bottom:145.851000px;}
.ybd{bottom:148.581000px;}
.y258{bottom:150.028500px;}
.y28e{bottom:150.586500px;}
.y257{bottom:152.128500px;}
.y133{bottom:152.680500px;}
.y1e7{bottom:154.774500px;}
.y2c7{bottom:155.338500px;}
.y259{bottom:156.469500px;}
.y21{bottom:156.487500px;}
.y49{bottom:160.108500px;}
.yff{bottom:162.286500px;}
.y16f{bottom:163.911000px;}
.y80{bottom:164.062500px;}
.y1ae{bottom:164.311500px;}
.y256{bottom:166.326000px;}
.ybc{bottom:167.410500px;}
.y28d{bottom:167.847000px;}
.y132{bottom:171.510000px;}
.y2c6{bottom:172.599000px;}
.y1e6{bottom:173.604000px;}
.y20{bottom:174.375000px;}
.y48{bottom:178.938000px;}
.yfe{bottom:181.116000px;}
.y16e{bottom:182.740500px;}
.y7f{bottom:182.892000px;}
.y1ad{bottom:183.141000px;}
.y28c{bottom:185.107500px;}
.ybb{bottom:186.240000px;}
.y255{bottom:187.279500px;}
.y2c5{bottom:189.858000px;}
.y131{bottom:190.339500px;}
.y1f{bottom:192.264000px;}
.y1e5{bottom:192.433500px;}
.y254{bottom:197.740500px;}
.y47{bottom:197.767500px;}
.yfd{bottom:199.945500px;}
.y16d{bottom:201.570000px;}
.y7e{bottom:201.721500px;}
.y1ac{bottom:201.970500px;}
.y28b{bottom:202.366500px;}
.yba{bottom:205.069500px;}
.y2c4{bottom:207.118500px;}
.y253{bottom:208.437000px;}
.y1e{bottom:210.151500px;}
.y1e4{bottom:211.263000px;}
.y130{bottom:213.652500px;}
.y46{bottom:216.597000px;}
.yfc{bottom:218.775000px;}
.y252{bottom:218.898000px;}
.y28a{bottom:219.627000px;}
.y16c{bottom:220.399500px;}
.y7d{bottom:220.551000px;}
.y1aa{bottom:220.800000px;}
.y20c{bottom:221.274000px;}
.y2c3{bottom:224.379000px;}
.y1ab{bottom:226.224000px;}
.y1d{bottom:228.039000px;}
.yb9{bottom:228.381000px;}
.y251{bottom:229.357500px;}
.y1e3{bottom:230.092500px;}
.y45{bottom:235.426500px;}
.y289{bottom:236.887500px;}
.yfb{bottom:237.604500px;}
.y16b{bottom:239.229000px;}
.y7c{bottom:239.380500px;}
.y1a9{bottom:239.629500px;}
.y250{bottom:239.818500px;}
.y20b{bottom:240.103500px;}
.y2c2{bottom:241.639500px;}
.y1e2{bottom:248.922000px;}
.y24f{bottom:250.515000px;}
.y12f{bottom:252.655500px;}
.y288{bottom:254.148000px;}
.y44{bottom:254.256000px;}
.yfa{bottom:256.434000px;}
.y16a{bottom:258.058500px;}
.y7b{bottom:258.210000px;}
.y1a8{bottom:258.459000px;}
.y2c1{bottom:258.900000px;}
.y20a{bottom:258.933000px;}
.y24e{bottom:261.211500px;}
.yb8{bottom:262.005000px;}
.y12e{bottom:266.853000px;}
.y1e1{bottom:267.751500px;}
.y287{bottom:271.408500px;}
.y24d{bottom:271.765500px;}
.y43{bottom:273.085500px;}
.yf9{bottom:275.263500px;}
.y2c0{bottom:276.160500px;}
.y169{bottom:276.888000px;}
.y7a{bottom:277.039500px;}
.y1a7{bottom:277.288500px;}
.y209{bottom:277.762500px;}
.y12d{bottom:278.949000px;}
.yb7{bottom:280.834500px;}
.y12c{bottom:281.049000px;}
.y24c{bottom:282.226500px;}
.y1e0{bottom:286.581000px;}
.y286{bottom:288.669000px;}
.y42{bottom:291.915000px;}
.y24b{bottom:292.923000px;}
.y2bf{bottom:293.421000px;}
.y12b{bottom:295.246500px;}
.y168{bottom:295.717500px;}
.y79{bottom:295.869000px;}
.y1a6{bottom:296.118000px;}
.y208{bottom:296.592000px;}
.yf8{bottom:298.576500px;}
.yb6{bottom:299.664000px;}
.y24a{bottom:303.384000px;}
.y1df{bottom:305.410500px;}
.y285{bottom:305.929500px;}
.y1c{bottom:307.299000px;}
.y2be{bottom:310.681500px;}
.y41{bottom:310.744500px;}
.y249{bottom:314.080500px;}
.y167{bottom:314.547000px;}
.y78{bottom:314.698500px;}
.y1a5{bottom:314.947500px;}
.y207{bottom:315.421500px;}
.y12a{bottom:317.994000px;}
.yb5{bottom:318.493500px;}
.y284{bottom:323.190000px;}
.y1de{bottom:324.240000px;}
.y248{bottom:324.540000px;}
.y1b{bottom:325.186500px;}
.y2bd{bottom:327.940500px;}
.y40{bottom:329.574000px;}
.yf7{bottom:332.200500px;}
.y166{bottom:333.376500px;}
.y77{bottom:333.528000px;}
.y1a4{bottom:333.777000px;}
.y206{bottom:334.251000px;}
.y129{bottom:334.432500px;}
.y247{bottom:335.001000px;}
.yb4{bottom:337.323000px;}
.y283{bottom:340.450500px;}
.y1dd{bottom:343.069500px;}
.y1a{bottom:343.074000px;}
.y198{bottom:344.425196px;}
.y2bc{bottom:345.201000px;}
.y245{bottom:346.209000px;}
.y244{bottom:346.327500px;}
.y3f{bottom:348.403500px;}
.y128{bottom:350.869500px;}
.yf6{bottom:351.030000px;}
.y165{bottom:352.206000px;}
.y76{bottom:352.356000px;}
.y205{bottom:353.080500px;}
.yb3{bottom:356.152500px;}
.y246{bottom:356.670000px;}
.y243{bottom:356.788500px;}
.y1a3{bottom:357.088500px;}
.y282{bottom:357.709500px;}
.y19{bottom:360.963000px;}
.y1dc{bottom:361.899000px;}
.y2bb{bottom:362.461500px;}
.y197{bottom:362.635995px;}
.y3e{bottom:367.233000px;}
.y127{bottom:367.308000px;}
.yf5{bottom:369.859500px;}
.y75{bottom:371.185500px;}
.y204{bottom:371.908500px;}
.y281{bottom:374.970000px;}
.yb2{bottom:374.982000px;}
.y2ba{bottom:379.722000px;}
.y196{bottom:380.932465px;}
.y126{bottom:383.746500px;}
.y242{bottom:384.340500px;}
.y1d2{bottom:384.468105px;}
.y1db{bottom:385.210500px;}
.y1a2{bottom:385.390500px;}
.y163{bottom:385.771500px;}
.y3d{bottom:386.062500px;}
.yf3{bottom:388.689000px;}
.y74{bottom:390.015000px;}
.y164{bottom:390.654000px;}
.y203{bottom:390.738000px;}
.y280{bottom:392.230500px;}
.yb0{bottom:393.811500px;}
.yf4{bottom:394.113000px;}
.y2b9{bottom:396.982500px;}
.y18{bottom:399.024000px;}
.y195{bottom:399.228935px;}
.yb1{bottom:399.235500px;}
.y125{bottom:400.185000px;}
.y1a0{bottom:402.001500px;}
.y241{bottom:403.573500px;}
.y1d1{bottom:403.727547px;}
.y19f{bottom:404.623500px;}
.y3c{bottom:404.892000px;}
.y162{bottom:405.004500px;}
.yf2{bottom:407.518500px;}
.y27f{bottom:409.491000px;}
.y1a1{bottom:409.506000px;}
.y202{bottom:409.567500px;}
.yaf{bottom:409.911000px;}
.yae{bottom:412.641000px;}
.y73{bottom:413.328000px;}
.y2b8{bottom:414.243000px;}
.y124{bottom:416.623500px;}
.y17{bottom:416.913000px;}
.y194{bottom:417.439734px;}
.y1d0{bottom:422.896809px;}
.y3b{bottom:423.721500px;}
.y19e{bottom:423.856500px;}
.y161{bottom:424.237500px;}
.y1da{bottom:424.605000px;}
.yf1{bottom:426.348000px;}
.y27e{bottom:426.751500px;}
.y201{bottom:428.397000px;}
.yac{bottom:428.740500px;}
.yab{bottom:431.470500px;}
.y2b7{bottom:431.503500px;}
.y21d{bottom:431.825601px;}
.y123{bottom:433.062000px;}
.y72{bottom:433.503000px;}
.y16{bottom:434.800500px;}
.y193{bottom:435.736204px;}
.y240{bottom:436.416000px;}
.yad{bottom:436.894500px;}
.y15c{bottom:438.624498px;}
.y1cf{bottom:442.156251px;}
.y3a{bottom:442.551000px;}
.y19d{bottom:443.089500px;}
.y1d9{bottom:443.838000px;}
.y27d{bottom:444.012000px;}
.yef{bottom:445.177500px;}
.y140{bottom:446.667000px;}
.y200{bottom:447.226500px;}
.y2b6{bottom:448.764000px;}
.y122{bottom:449.500500px;}
.yaa{bottom:450.300000px;}
.yf0{bottom:450.601500px;}
.y21c{bottom:451.085043px;}
.y192{bottom:454.032673px;}
.y23f{bottom:455.245500px;}
.y15b{bottom:457.795263px;}
.y27c{bottom:461.272500px;}
.y39{bottom:461.380500px;}
.y1ce{bottom:461.415693px;}
.y1d7{bottom:463.071000px;}
.yee{bottom:464.007000px;}
.y177{bottom:465.519000px;}
.y2b5{bottom:466.024500px;}
.y1ff{bottom:466.056000px;}
.y71{bottom:467.127000px;}
.y1d8{bottom:467.953500px;}
.ya9{bottom:469.129500px;}
.y21b{bottom:470.254305px;}
.y15{bottom:470.622000px;}
.y191{bottom:472.243472px;}
.y120{bottom:473.140500px;}
.y23e{bottom:474.075000px;}
.y15a{bottom:477.054705px;}
.y38{bottom:480.210000px;}
.y1cd{bottom:480.584955px;}
.y11f{bottom:481.360500px;}
.yed{bottom:482.836500px;}
.y27b{bottom:483.015000px;}
.y2b4{bottom:483.283500px;}
.y1fe{bottom:484.885500px;}
.y1b3{bottom:485.500500px;}
.y70{bottom:485.956500px;}
.ya8{bottom:487.959000px;}
.y21a{bottom:489.513747px;}
.y121{bottom:489.579000px;}
.y190{bottom:490.539942px;}
.y23d{bottom:492.904500px;}
.y159{bottom:496.314147px;}
.y1cc{bottom:499.844397px;}
.y2b3{bottom:500.544000px;}
.yec{bottom:501.666000px;}
.y37{bottom:503.523000px;}
.y6f{bottom:504.786000px;}
.y14{bottom:506.442000px;}
.ya7{bottom:506.788500px;}
.y18f{bottom:508.752169px;}
.y219{bottom:508.773189px;}
.y23c{bottom:511.734000px;}
.y158{bottom:515.483409px;}
.y27a{bottom:516.639000px;}
.y2b2{bottom:517.804500px;}
.y1fd{bottom:518.061000px;}
.y1cb{bottom:519.013659px;}
.yea{bottom:520.495500px;}
.y11e{bottom:521.199000px;}
.ya6{bottom:522.888000px;}
.y6e{bottom:523.615500px;}
.y13{bottom:524.329500px;}
.ya5{bottom:525.618000px;}
.yeb{bottom:525.919500px;}
.y18e{bottom:527.048639px;}
.y218{bottom:527.942451px;}
.y23a{bottom:530.563500px;}
.y1fc{bottom:532.258500px;}
.y279{bottom:534.213000px;}
.y157{bottom:534.742851px;}
.y2b1{bottom:535.065000px;}
.y23b{bottom:535.987500px;}
.y1ca{bottom:538.273101px;}
.ye9{bottom:539.323500px;}
.y12{bottom:542.218500px;}
.y6d{bottom:542.445000px;}
.y1fb{bottom:544.354500px;}
.ya4{bottom:544.447500px;}
.y18d{bottom:545.345109px;}
.y1fa{bottom:546.454500px;}
.y217{bottom:547.201893px;}
.y239{bottom:549.393000px;}
.y278{bottom:551.788500px;}
.y2b0{bottom:552.325500px;}
.y156{bottom:554.002293px;}
.y11d{bottom:556.809000px;}
.y1c9{bottom:557.532543px;}
.ye7{bottom:558.153000px;}
.y11{bottom:560.106000px;}
.y1f9{bottom:560.652000px;}
.y6c{bottom:561.274500px;}
.ya3{bottom:563.277000px;}
.y18c{bottom:563.557336px;}
.ye8{bottom:563.578500px;}
.y216{bottom:566.461335px;}
.y238{bottom:568.222500px;}
.y2af{bottom:569.586000px;}
.y155{bottom:573.171555px;}
.y11c{bottom:575.638500px;}
.y1c8{bottom:576.701805px;}
.ye6{bottom:576.982500px;}
.y10{bottom:577.993500px;}
.y277{bottom:578.328000px;}
.y36{bottom:578.673000px;}
.y6b{bottom:580.104000px;}
.y18b{bottom:581.853806px;}
.ya2{bottom:582.106500px;}
.y1f8{bottom:583.399500px;}
.y237{bottom:584.322000px;}
.y215{bottom:585.630597px;}
.y2ae{bottom:586.846500px;}
.y236{bottom:587.052000px;}
.y154{bottom:592.430997px;}
.y11b{bottom:594.468000px;}
.ye5{bottom:595.812000px;}
.yf{bottom:595.882500px;}
.y1c7{bottom:595.961247px;}
.y6a{bottom:598.932000px;}
.y1f7{bottom:599.838000px;}
.y18a{bottom:600.064604px;}
.ya1{bottom:600.936000px;}
.y2ad{bottom:604.107000px;}
.y276{bottom:604.869000px;}
.y214{bottom:604.890039px;}
.y235{bottom:605.881500px;}
.y153{bottom:611.600259px;}
.y11a{bottom:613.297500px;}
.ye{bottom:613.770000px;}
.ye4{bottom:614.641500px;}
.y1c6{bottom:615.130509px;}
.y35{bottom:616.062000px;}
.y1f6{bottom:616.275000px;}
.y69{bottom:617.761500px;}
.y189{bottom:618.361074px;}
.y9f{bottom:619.765500px;}
.y2ac{bottom:621.366000px;}
.y213{bottom:624.059301px;}
.y234{bottom:624.711000px;}
.ya0{bottom:625.189500px;}
.y152{bottom:630.859701px;}
.y275{bottom:631.410000px;}
.yd{bottom:631.657500px;}
.y119{bottom:632.127000px;}
.y1f5{bottom:632.713500px;}
.ye2{bottom:633.471000px;}
.y1c5{bottom:634.389951px;}
.y34{bottom:635.518500px;}
.y68{bottom:636.591000px;}
.y188{bottom:636.657544px;}
.y9e{bottom:638.595000px;}
.y2ab{bottom:638.626500px;}
.ye3{bottom:638.896500px;}
.y212{bottom:643.318743px;}
.y233{bottom:643.540500px;}
.y274{bottom:648.984000px;}
.y1f4{bottom:649.152000px;}
.yc{bottom:649.546500px;}
.y151{bottom:650.119143px;}
.y118{bottom:650.956500px;}
.ye1{bottom:652.300500px;}
.y1c4{bottom:653.649393px;}
.y187{bottom:654.869771px;}
.y33{bottom:654.976500px;}
.y67{bottom:655.420500px;}
.y2aa{bottom:655.887000px;}
.y9c{bottom:657.423000px;}
.y232{bottom:662.370000px;}
.y211{bottom:662.578185px;}
.y9d{bottom:662.848500px;}
.y1f3{bottom:665.590500px;}
.y150{bottom:669.289908px;}
.y117{bottom:669.786000px;}
.ydf{bottom:671.130000px;}
.y9{bottom:671.917464px;}
.y1c3{bottom:672.820158px;}
.y2a9{bottom:673.147500px;}
.y186{bottom:673.166241px;}
.y66{bottom:674.250000px;}
.y32{bottom:674.433000px;}
.y273{bottom:675.523500px;}
.y9b{bottom:676.252500px;}
.ye0{bottom:676.555500px;}
.y210{bottom:681.748950px;}
.y1f2{bottom:682.029000px;}
.y14f{bottom:688.549350px;}
.y116{bottom:688.615500px;}
.yde{bottom:689.959500px;}
.y2a8{bottom:690.408000px;}
.y185{bottom:691.377040px;}
.y1c2{bottom:692.079600px;}
.y65{bottom:693.079500px;}
.y272{bottom:693.097500px;}
.y31{bottom:693.891000px;}
.y231{bottom:695.935500px;}
.y1f1{bottom:698.467500px;}
.y9a{bottom:699.565500px;}
.y115{bottom:707.445000px;}
.y2a7{bottom:707.668500px;}
.y14e{bottom:707.720115px;}
.ydd{bottom:708.789000px;}
.y184{bottom:709.673510px;}
.y271{bottom:710.671500px;}
.y1c1{bottom:711.248862px;}
.y64{bottom:711.909000px;}
.y30{bottom:713.347500px;}
.y1f0{bottom:714.906000px;}
.y20d{bottom:718.365000px;}
.y99{bottom:719.740500px;}
.y2a6{bottom:724.929000px;}
.y114{bottom:726.273000px;}
.y14d{bottom:726.979557px;}
.ydc{bottom:727.618500px;}
.y183{bottom:727.969980px;}
.y270{bottom:728.247000px;}
.y1c0{bottom:730.508304px;}
.y63{bottom:730.738500px;}
.y2f{bottom:732.804000px;}
.y20f{bottom:736.469085px;}
.y1ee{bottom:738.546000px;}
.y2a5{bottom:742.189500px;}
.y113{bottom:745.102500px;}
.y26f{bottom:745.821000px;}
.y20e{bottom:746.098950px;}
.y182{bottom:746.180778px;}
.y14c{bottom:746.238999px;}
.yda{bottom:746.448000px;}
.y1ed{bottom:746.766000px;}
.y62{bottom:749.568000px;}
.y1bf{bottom:749.767746px;}
.y98{bottom:749.778000px;}
.ydb{bottom:751.873500px;}
.y2e{bottom:752.262000px;}
.y1ef{bottom:754.984500px;}
.y2a4{bottom:759.450000px;}
.y26e{bottom:763.395000px;}
.y112{bottom:763.932000px;}
.y96{bottom:763.974000px;}
.y181{bottom:764.477248px;}
.yd9{bottom:765.277500px;}
.y14b{bottom:765.409764px;}
.y97{bottom:768.313500px;}
.y61{bottom:768.397500px;}
.y1be{bottom:768.937008px;}
.y2d{bottom:771.718500px;}
.y2a3{bottom:776.709000px;}
.y95{bottom:779.667000px;}
.y111{bottom:782.761500px;}
.y180{bottom:782.773718px;}
.y94{bottom:784.006500px;}
.yd8{bottom:784.107000px;}
.y14a{bottom:784.669206px;}
.y1ec{bottom:786.604500px;}
.y60{bottom:787.227000px;}
.y1bd{bottom:788.199411px;}
.y2c{bottom:791.176500px;}
.y2a2{bottom:793.969500px;}
.y26d{bottom:798.901500px;}
.y17f{bottom:800.984517px;}
.y110{bottom:801.591000px;}
.y92{bottom:802.414500px;}
.yd7{bottom:802.936500px;}
.y176{bottom:803.385000px;}
.y5f{bottom:806.056500px;}
.y1bc{bottom:807.458853px;}
.y149{bottom:808.338450px;}
.y2b{bottom:810.633000px;}
.y2a1{bottom:811.230000px;}
.y26c{bottom:817.731000px;}
.y93{bottom:818.853000px;}
.y17e{bottom:819.280987px;}
.y10f{bottom:820.420500px;}
.yd6{bottom:821.766000px;}
.y175{bottom:822.214500px;}
.y5e{bottom:824.886000px;}
.y1bb{bottom:826.628115px;}
.y2a0{bottom:828.490500px;}
.y2a{bottom:830.089500px;}
.y91{bottom:835.290000px;}
.y26b{bottom:836.560500px;}
.y17d{bottom:837.491786px;}
.y10e{bottom:839.250000px;}
.yd4{bottom:840.595500px;}
.y174{bottom:841.044000px;}
.y90{bottom:843.510000px;}
.y5d{bottom:843.715500px;}
.y148{bottom:845.148900px;}
.y29f{bottom:845.751000px;}
.y1ba{bottom:845.887557px;}
.yd5{bottom:846.019500px;}
.y29{bottom:849.547500px;}
.y26a{bottom:855.390000px;}
.y17c{bottom:855.788256px;}
.y10d{bottom:858.079500px;}
.yd2{bottom:859.425000px;}
.y173{bottom:859.873500px;}
.y5c{bottom:862.545000px;}
.y147{bottom:862.608450px;}
.y29e{bottom:863.011500px;}
.yd3{bottom:864.849000px;}
.y1b9{bottom:865.056819px;}
.y8f{bottom:868.167000px;}
.y17b{bottom:874.084726px;}
.y269{bottom:874.219500px;}
.y8e{bottom:876.387000px;}
.y10c{bottom:876.909000px;}
.yd1{bottom:878.254500px;}
.y13f{bottom:878.703000px;}
.y146{bottom:879.888450px;}
.y29d{bottom:880.272000px;}
.y5b{bottom:881.374500px;}
.y1b8{bottom:884.316261px;}
.y28{bottom:885.826500px;}
.y17a{bottom:892.296953px;}
.y268{bottom:893.049000px;}
.y10b{bottom:895.738500px;}
.yd0{bottom:897.084000px;}
.y145{bottom:897.168450px;}
.y13e{bottom:897.532500px;}
.y5a{bottom:900.204000px;}
.y8d{bottom:901.044000px;}
.y27{bottom:901.966500px;}
.y1b7{bottom:903.575703px;}
.y8c{bottom:909.264000px;}
.y267{bottom:911.878500px;}
.y1eb{bottom:913.632000px;}
.y10a{bottom:914.568000px;}
.y29c{bottom:914.793000px;}
.ycf{bottom:915.913500px;}
.y13d{bottom:916.362000px;}
.y144{bottom:916.608450px;}
.y26{bottom:918.106500px;}
.y59{bottom:919.033500px;}
.y1b6{bottom:927.246450px;}
.y266{bottom:930.708000px;}
.y29b{bottom:932.052000px;}
.y109{bottom:933.397500px;}
.y25{bottom:934.245000px;}
.y8b{bottom:934.392000px;}
.yce{bottom:934.743000px;}
.y13c{bottom:935.191500px;}
.y143{bottom:936.858450px;}
.y58{bottom:937.863000px;}
.y179{bottom:944.281081px;}
.y29a{bottom:949.312500px;}
.y265{bottom:949.537500px;}
.y8a{bottom:951.774000px;}
.y108{bottom:952.227000px;}
.y178{bottom:953.429453px;}
.ycd{bottom:953.572500px;}
.y13b{bottom:954.021000px;}
.y57{bottom:956.692500px;}
.y299{bottom:966.573000px;}
.y264{bottom:968.367000px;}
.y89{bottom:968.685000px;}
.y107{bottom:971.056500px;}
.ycc{bottom:972.402000px;}
.y13a{bottom:972.849000px;}
.y56{bottom:975.522000px;}
.y8{bottom:976.473000px;}
.y1b5{bottom:981.966585px;}
.y298{bottom:983.833500px;}
.y88{bottom:985.123500px;}
.y263{bottom:987.196500px;}
.y106{bottom:989.886000px;}
.ycb{bottom:991.231500px;}
.y1b4{bottom:991.596450px;}
.y139{bottom:991.678500px;}
.y142{bottom:993.018585px;}
.y87{bottom:993.342000px;}
.y55{bottom:994.351500px;}
.y7{bottom:995.302500px;}
.y297{bottom:1001.094000px;}
.y141{bottom:1002.648450px;}
.y262{bottom:1006.026000px;}
.y105{bottom:1008.715500px;}
.y138{bottom:1010.508000px;}
.y54{bottom:1013.181000px;}
.yca{bottom:1014.543000px;}
.y86{bottom:1018.000500px;}
.y296{bottom:1018.354500px;}
.y261{bottom:1024.855500px;}
.y85{bottom:1026.219000px;}
.y137{bottom:1029.337500px;}
.y53{bottom:1032.010500px;}
.y104{bottom:1032.028500px;}
.y295{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y260{bottom:1043.685000px;}
.yc9{bottom:1048.167000px;}
.y52{bottom:1050.840000px;}
.y103{bottom:1052.202000px;}
.y294{bottom:1052.875500px;}
.y84{bottom:1058.079000px;}
.y25f{bottom:1062.513000px;}
.yc7{bottom:1064.266500px;}
.y83{bottom:1066.297500px;}
.yc6{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y51{bottom:1069.669500px;}
.y293{bottom:1070.134500px;}
.yc8{bottom:1072.422000px;}
.y25e{bottom:1081.342500px;}
.yc4{bottom:1085.826000px;}
.y292{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.yc5{bottom:1091.251500px;}
.y4{bottom:1097.688000px;}
.yc3{bottom:1104.655500px;}
.y82{bottom:1106.137500px;}
.y4f{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.h3b{height:16.592990px;}
.h2d{height:19.358489px;}
.h27{height:19.635235px;}
.h18{height:21.017894px;}
.h1b{height:21.820637px;}
.h7{height:25.508090px;}
.h17{height:26.110157px;}
.h31{height:26.279297px;}
.h32{height:30.252344px;}
.ha{height:30.461558px;}
.h39{height:30.647558px;}
.hb{height:30.670772px;}
.h37{height:30.929558px;}
.h3a{height:30.935558px;}
.h19{height:33.072749px;}
.h9{height:33.112997px;}
.h2a{height:33.203892px;}
.h29{height:33.492621px;}
.h8{height:34.199443px;}
.hc{height:34.813397px;}
.h21{height:34.951465px;}
.h12{height:35.052500px;}
.h20{height:35.255391px;}
.hd{height:38.896243px;}
.he{height:39.165235px;}
.h23{height:39.418945px;}
.hf{height:39.434227px;}
.h30{height:39.761719px;}
.h2b{height:41.692104px;}
.h3d{height:41.859235px;}
.h2c{height:42.054645px;}
.h10{height:43.217759px;}
.h24{height:43.269961px;}
.h11{height:43.516637px;}
.h4{height:43.815515px;}
.h25{height:43.886426px;}
.h22{height:44.268047px;}
.h6{height:44.473046px;}
.h1e{height:45.444344px;}
.h16{height:48.107558px;}
.h26{height:49.991558px;}
.h2{height:50.931027px;}
.h36{height:51.383558px;}
.h35{height:51.648344px;}
.h38{height:51.857558px;}
.h3c{height:51.874157px;}
.h1a{height:65.688749px;}
.h33{height:71.622344px;}
.h1c{height:71.770243px;}
.h13{height:71.776243px;}
.h15{height:72.039235px;}
.h14{height:72.045235px;}
.h34{height:72.096344px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h1d{height:104.650243px;}
.h28{height:316.352850px;}
.h2e{height:354.625500px;}
.h2f{height:401.236500px;}
.h1f{height:412.288500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w5{width:587.511825px;}
.w7{width:653.234250px;}
.w6{width:705.408000px;}
.w4{width:708.772050px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x8c{left:-86.105625px;}
.xa3{left:-67.745250px;}
.x90{left:-65.841056px;}
.x7c{left:-38.740950px;}
.x7d{left:-10.750950px;}
.x7e{left:-6.880950px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.x72{left:64.470000px;}
.xb6{left:66.006000px;}
.xb3{left:70.513500px;}
.x76{left:73.986000px;}
.xb5{left:76.324500px;}
.xb4{left:78.349500px;}
.x36{left:81.460500px;}
.x77{left:83.326500px;}
.x3b{left:85.890000px;}
.x38{left:87.993000px;}
.x9c{left:89.898000px;}
.x7b{left:92.071950px;}
.x3c{left:94.096500px;}
.x37{left:95.464500px;}
.x39{left:97.333500px;}
.x8e{left:99.685311px;}
.xbc{left:100.885500px;}
.xbd{left:106.116000px;}
.xa9{left:110.187000px;}
.xa2{left:119.840250px;}
.xa4{left:127.824750px;}
.x8d{left:129.952875px;}
.x82{left:143.047500px;}
.x83{left:147.436500px;}
.x84{left:154.161000px;}
.x7f{left:156.829050px;}
.xa5{left:159.684750px;}
.xac{left:170.232000px;}
.xad{left:179.286000px;}
.x80{left:188.688141px;}
.x71{left:224.386500px;}
.xaf{left:229.744500px;}
.xb7{left:233.314500px;}
.xb8{left:238.656000px;}
.xae{left:245.284500px;}
.xb9{left:246.778500px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x35{left:259.173000px;}
.x3a{left:269.803500px;}
.x5e{left:280.000500px;}
.x8{left:282.786000px;}
.xba{left:285.877500px;}
.x2e{left:290.986500px;}
.x15{left:294.520500px;}
.xbb{left:297.288000px;}
.x2f{left:298.458000px;}
.x34{left:300.067500px;}
.x16{left:301.993500px;}
.xb0{left:306.400500px;}
.x6{left:309.454500px;}
.x4c{left:311.613000px;}
.x17{left:317.086500px;}
.x7{left:321.196500px;}
.x50{left:325.131000px;}
.x55{left:329.425500px;}
.x11{left:331.185000px;}
.x56{left:335.851500px;}
.x12{left:338.656500px;}
.x9d{left:344.685000px;}
.x57{left:349.660500px;}
.x85{left:354.897000px;}
.x25{left:356.568000px;}
.x64{left:358.206000px;}
.x86{left:363.115500px;}
.x65{left:365.013000px;}
.x26{left:371.512500px;}
.xbe{left:378.192000px;}
.xd{left:382.246500px;}
.x4d{left:383.280000px;}
.x89{left:386.205000px;}
.xe{left:389.718000px;}
.xf{left:393.379500px;}
.x9{left:397.122000px;}
.x10{left:400.851000px;}
.xa{left:404.593500px;}
.x1a{left:407.835000px;}
.xa1{left:418.444500px;}
.x1b{left:422.779500px;}
.x1c{left:426.441000px;}
.x27{left:429.346500px;}
.x4e{left:435.286500px;}
.xa7{left:438.594750px;}
.x1d{left:441.384000px;}
.xa8{left:443.004750px;}
.x28{left:444.289500px;}
.x4f{left:449.341500px;}
.xa6{left:453.084750px;}
.x23{left:456.307500px;}
.x6c{left:462.529500px;}
.x93{left:465.765000px;}
.x6d{left:469.335000px;}
.x24{left:471.250500px;}
.xb1{left:474.958500px;}
.x9f{left:476.566500px;}
.x61{left:479.583000px;}
.x79{left:480.909000px;}
.x52{left:485.275500px;}
.xa0{left:491.509500px;}
.x43{left:492.606000px;}
.x7a{left:495.853500px;}
.x62{left:499.096500px;}
.x68{left:502.284000px;}
.x44{left:507.549000px;}
.x98{left:514.824000px;}
.x69{left:518.050500px;}
.x30{left:522.678000px;}
.x73{left:524.358000px;}
.x48{left:527.742000px;}
.x6e{left:529.419000px;}
.x99{left:533.631000px;}
.x9e{left:535.081500px;}
.xb2{left:536.424000px;}
.x31{left:537.622500px;}
.x49{left:542.685000px;}
.x32{left:544.215000px;}
.x53{left:553.251000px;}
.x21{left:557.754000px;}
.x33{left:559.159500px;}
.x63{left:564.877500px;}
.x54{left:568.195500px;}
.xb{left:570.765000px;}
.x22{left:572.698500px;}
.x66{left:576.730500px;}
.xc{left:578.236500px;}
.x87{left:581.857500px;}
.x67{left:583.536000px;}
.x3d{left:586.569000px;}
.x3e{left:595.260000px;}
.x8f{left:599.861166px;}
.x58{left:604.456500px;}
.xaa{left:606.780000px;}
.x9a{left:609.243000px;}
.x59{left:611.263500px;}
.x9b{left:615.967500px;}
.x94{left:630.241500px;}
.x75{left:641.625000px;}
.x8a{left:644.020500px;}
.x8b{left:658.965000px;}
.x96{left:660.060000px;}
.x29{left:664.108500px;}
.x3f{left:668.691000px;}
.x5f{left:671.812500px;}
.x78{left:674.346000px;}
.x40{left:675.498000px;}
.x2a{left:679.051500px;}
.x2b{left:682.833000px;}
.xc4{left:685.533000px;}
.x74{left:689.620500px;}
.x60{left:691.326000px;}
.x2c{left:697.777500px;}
.x97{left:709.814436px;}
.x2d{left:712.152000px;}
.x81{left:713.299770px;}
.xc3{left:722.974500px;}
.x45{left:726.112500px;}
.x46{left:732.537000px;}
.xc6{left:737.443500px;}
.x6f{left:740.935500px;}
.x95{left:742.914000px;}
.x18{left:744.627000px;}
.x88{left:749.101500px;}
.x19{left:752.098500px;}
.xbf{left:754.465500px;}
.x70{left:755.880000px;}
.x5a{left:757.257000px;}
.x1e{left:759.291000px;}
.x47{left:762.487500px;}
.xc7{left:764.343000px;}
.x13{left:776.005500px;}
.x5b{left:777.243000px;}
.xc0{left:781.363500px;}
.x14{left:783.477000px;}
.x51{left:785.266500px;}
.x4a{left:787.957500px;}
.xc5{left:789.619500px;}
.xab{left:790.887000px;}
.x91{left:796.908000px;}
.x41{left:799.635000px;}
.x4b{left:802.902000px;}
.x42{left:806.442000px;}
.xc1{left:810.265500px;}
.x92{left:815.710500px;}
.x5c{left:816.874500px;}
.x1f{left:818.938500px;}
.x6a{left:821.724000px;}
.x6b{left:828.529500px;}
.x5d{left:832.642500px;}
.x20{left:833.881500px;}
.xc2{left:837.165000px;}
@media print{
.v8{vertical-align:-19.285333pt;}
.vd{vertical-align:-17.360000pt;}
.ve{vertical-align:-12.768000pt;}
.v7{vertical-align:-9.706667pt;}
.vb{vertical-align:-8.485333pt;}
.v10{vertical-align:-5.578667pt;}
.v4{vertical-align:-1.674667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.674667pt;}
.v9{vertical-align:13.504000pt;}
.v2{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v11{vertical-align:22.901333pt;}
.vc{vertical-align:26.682667pt;}
.v3{vertical-align:29.226667pt;}
.v6{vertical-align:30.901333pt;}
.vf{vertical-align:36.773333pt;}
.va{vertical-align:58.448000pt;}
.ls5d{letter-spacing:-2.355635pt;}
.ls5b{letter-spacing:-0.294454pt;}
.ls3e{letter-spacing:-0.293920pt;}
.ls56{letter-spacing:-0.253840pt;}
.ls6c{letter-spacing:-0.224448pt;}
.ls82{letter-spacing:-0.203072pt;}
.ls76{letter-spacing:-0.187040pt;}
.ls73{letter-spacing:-0.160320pt;}
.ls6f{letter-spacing:-0.154976pt;}
.ls62{letter-spacing:-0.152304pt;}
.ls41{letter-spacing:-0.149632pt;}
.ls57{letter-spacing:-0.147227pt;}
.ls75{letter-spacing:-0.138944pt;}
.ls68{letter-spacing:-0.133600pt;}
.ls6e{letter-spacing:-0.128256pt;}
.ls71{letter-spacing:-0.122912pt;}
.ls6d{letter-spacing:-0.106880pt;}
.ls66{letter-spacing:-0.101536pt;}
.ls3f{letter-spacing:-0.096192pt;}
.ls74{letter-spacing:-0.096000pt;}
.ls84{letter-spacing:-0.090848pt;}
.ls6a{letter-spacing:-0.085504pt;}
.ls55{letter-spacing:-0.081229pt;}
.ls2f{letter-spacing:-0.080864pt;}
.ls53{letter-spacing:-0.076821pt;}
.ls7f{letter-spacing:-0.076608pt;}
.ls6b{letter-spacing:-0.074816pt;}
.ls64{letter-spacing:-0.069472pt;}
.ls81{letter-spacing:-0.064128pt;}
.ls31{letter-spacing:-0.058784pt;}
.ls72{letter-spacing:-0.048096pt;}
.ls34{letter-spacing:-0.048000pt;}
.ls67{letter-spacing:-0.042752pt;}
.ls3c{letter-spacing:-0.037408pt;}
.ls58{letter-spacing:-0.035538pt;}
.ls39{letter-spacing:-0.032064pt;}
.ls60{letter-spacing:-0.030461pt;}
.ls3a{letter-spacing:-0.026720pt;}
.ls5f{letter-spacing:-0.025384pt;}
.ls3d{letter-spacing:-0.021376pt;}
.ls5a{letter-spacing:-0.020307pt;}
.ls35{letter-spacing:-0.019200pt;}
.ls65{letter-spacing:-0.016032pt;}
.ls5c{letter-spacing:-0.015230pt;}
.ls36{letter-spacing:-0.014400pt;}
.ls30{letter-spacing:-0.012768pt;}
.ls54{letter-spacing:-0.012130pt;}
.ls38{letter-spacing:-0.010688pt;}
.ls5e{letter-spacing:-0.010154pt;}
.ls3b{letter-spacing:-0.005344pt;}
.ls59{letter-spacing:-0.005077pt;}
.ls33{letter-spacing:-0.004800pt;}
.ls80{letter-spacing:-0.004256pt;}
.ls6{letter-spacing:0.000000pt;}
.ls99{letter-spacing:0.000078pt;}
.ls92{letter-spacing:0.000298pt;}
.ls8a{letter-spacing:0.000711pt;}
.ls98{letter-spacing:0.000921pt;}
.ls8d{letter-spacing:0.001335pt;}
.ls8c{letter-spacing:0.001943pt;}
.ls0{letter-spacing:0.002422pt;}
.ls9a{letter-spacing:0.003102pt;}
.ls8e{letter-spacing:0.003525pt;}
.ls91{letter-spacing:0.003713pt;}
.ls1{letter-spacing:0.003733pt;}
.ls96{letter-spacing:0.004221pt;}
.ls23{letter-spacing:0.005344pt;}
.ls48{letter-spacing:0.010154pt;}
.ls29{letter-spacing:0.010688pt;}
.ls4e{letter-spacing:0.015230pt;}
.ls63{letter-spacing:0.016032pt;}
.ls4a{letter-spacing:0.020307pt;}
.ls26{letter-spacing:0.021376pt;}
.ls49{letter-spacing:0.025384pt;}
.ls2c{letter-spacing:0.026720pt;}
.ls20{letter-spacing:0.028800pt;}
.ls4b{letter-spacing:0.030461pt;}
.ls22{letter-spacing:0.032064pt;}
.ls50{letter-spacing:0.035538pt;}
.ls2b{letter-spacing:0.037408pt;}
.ls1f{letter-spacing:0.038400pt;}
.ls46{letter-spacing:0.040614pt;}
.ls28{letter-spacing:0.042752pt;}
.ls43{letter-spacing:0.044475pt;}
.ls4c{letter-spacing:0.045691pt;}
.ls1c{letter-spacing:0.046816pt;}
.ls27{letter-spacing:0.048096pt;}
.ls47{letter-spacing:0.050768pt;}
.ls79{letter-spacing:0.051072pt;}
.ls25{letter-spacing:0.053440pt;}
.ls21{letter-spacing:0.057600pt;}
.ls24{letter-spacing:0.058784pt;}
.ls4f{letter-spacing:0.060922pt;}
.ls70{letter-spacing:0.064128pt;}
.ls4d{letter-spacing:0.065998pt;}
.ls51{letter-spacing:0.071075pt;}
.ls7c{letter-spacing:0.072000pt;}
.ls7b{letter-spacing:0.080160pt;}
.ls83{letter-spacing:0.090848pt;}
.ls42{letter-spacing:0.096192pt;}
.ls37{letter-spacing:0.105600pt;}
.ls40{letter-spacing:0.122912pt;}
.ls69{letter-spacing:0.128256pt;}
.ls32{letter-spacing:0.138944pt;}
.ls45{letter-spacing:0.141512pt;}
.ls1e{letter-spacing:0.148960pt;}
.ls44{letter-spacing:0.153642pt;}
.ls2a{letter-spacing:0.160320pt;}
.ls1d{letter-spacing:0.161728pt;}
.ls7a{letter-spacing:0.170240pt;}
.ls19{letter-spacing:0.442457pt;}
.ls14{letter-spacing:0.447791pt;}
.ls10{letter-spacing:0.482502pt;}
.lsf{letter-spacing:0.487835pt;}
.ls8{letter-spacing:0.637762pt;}
.ls7{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls15{letter-spacing:2.656533pt;}
.lsd{letter-spacing:2.657067pt;}
.ls52{letter-spacing:2.660678pt;}
.ls11{letter-spacing:3.158400pt;}
.ls9{letter-spacing:3.163733pt;}
.ls61{letter-spacing:6.457690pt;}
.ls3{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls1b{letter-spacing:10.751804pt;}
.ls94{letter-spacing:11.130514pt;}
.ls8f{letter-spacing:11.418950pt;}
.ls93{letter-spacing:11.830421pt;}
.ls8b{letter-spacing:11.871985pt;}
.ls90{letter-spacing:11.909745pt;}
.ls87{letter-spacing:11.924439pt;}
.ls86{letter-spacing:11.954133pt;}
.ls89{letter-spacing:11.959467pt;}
.ls9b{letter-spacing:12.050166pt;}
.ls97{letter-spacing:12.082663pt;}
.ls88{letter-spacing:12.136568pt;}
.ls95{letter-spacing:12.191205pt;}
.ls77{letter-spacing:12.486459pt;}
.ls78{letter-spacing:12.539593pt;}
.ls12{letter-spacing:14.389929pt;}
.ls18{letter-spacing:14.608533pt;}
.ls2d{letter-spacing:14.612678pt;}
.ls17{letter-spacing:14.613867pt;}
.ls85{letter-spacing:14.742839pt;}
.ls2e{letter-spacing:15.055791pt;}
.lse{letter-spacing:16.423835pt;}
.ls13{letter-spacing:17.427908pt;}
.ls4{letter-spacing:25.292137pt;}
.ls1a{letter-spacing:79.761007pt;}
.ls7d{letter-spacing:94.316533pt;}
.ls16{letter-spacing:108.097007pt;}
.lsb{letter-spacing:228.503939pt;}
.lsc{letter-spacing:304.349273pt;}
.lsa{letter-spacing:386.880533pt;}
.ls7e{letter-spacing:1884.668533pt;}
.ws118{word-spacing:-32.000000pt;}
.ws0{word-spacing:-25.362056pt;}
.ws8b{word-spacing:-13.360000pt;}
.ws117{word-spacing:-13.317248pt;}
.ws119{word-spacing:-13.285184pt;}
.ws3{word-spacing:-13.283467pt;}
.ws89{word-spacing:-12.105600pt;}
.ws88{word-spacing:-12.000000pt;}
.ws78{word-spacing:-11.955200pt;}
.ws16d{word-spacing:-10.810240pt;}
.ws87{word-spacing:-10.801728pt;}
.ws33{word-spacing:-10.626800pt;}
.wsc1{word-spacing:-10.261642pt;}
.ws9{word-spacing:-9.298400pt;}
.ws8c{word-spacing:-8.000000pt;}
.ws11a{word-spacing:-7.904000pt;}
.wsc2{word-spacing:-7.600000pt;}
.ws8a{word-spacing:-7.360000pt;}
.ws107{word-spacing:-3.289766pt;}
.ws9f{word-spacing:-3.126240pt;}
.ws108{word-spacing:-3.025773pt;}
.ws13c{word-spacing:-2.816288pt;}
.ws198{word-spacing:-2.789568pt;}
.ws13d{word-spacing:-2.773536pt;}
.ws199{word-spacing:-2.757504pt;}
.ws19a{word-spacing:-2.746816pt;}
.ws102{word-spacing:-2.705934pt;}
.ws103{word-spacing:-2.700858pt;}
.wsf7{word-spacing:-2.685627pt;}
.wsf9{word-spacing:-2.650090pt;}
.ws19d{word-spacing:-2.180352pt;}
.wsf5{word-spacing:-2.111949pt;}
.wsf6{word-spacing:-2.081488pt;}
.ws1b8{word-spacing:-2.062784pt;}
.wse4{word-spacing:-2.061181pt;}
.ws1c4{word-spacing:-1.960653pt;}
.ws18{word-spacing:-1.912832pt;}
.wse5{word-spacing:-1.903800pt;}
.wsa0{word-spacing:-1.897120pt;}
.ws151{word-spacing:-1.881088pt;}
.ws3d{word-spacing:-1.859685pt;}
.ws19e{word-spacing:-1.827648pt;}
.ws1c5{word-spacing:-1.817190pt;}
.wse3{word-spacing:-1.802264pt;}
.wse2{word-spacing:-1.797187pt;}
.ws95{word-spacing:-1.756800pt;}
.ws66{word-spacing:-1.753418pt;}
.ws1e6{word-spacing:-1.721549pt;}
.ws96{word-spacing:-1.713600pt;}
.ws5{word-spacing:-1.696326pt;}
.ws6e{word-spacing:-1.647150pt;}
.ws24{word-spacing:-1.594016pt;}
.ws1c6{word-spacing:-1.578086pt;}
.ws25{word-spacing:-1.540882pt;}
.wsa5{word-spacing:-1.512352pt;}
.ws30{word-spacing:-1.487748pt;}
.wsa4{word-spacing:-1.480288pt;}
.ws77{word-spacing:-1.434614pt;}
.ws27{word-spacing:-1.381481pt;}
.ws1b4{word-spacing:-1.250496pt;}
.ws1ae{word-spacing:-1.229120pt;}
.ws16b{word-spacing:-1.222079pt;}
.ws1ac{word-spacing:-1.213088pt;}
.wsfd{word-spacing:-1.182894pt;}
.ws1b7{word-spacing:-1.181024pt;}
.ws4{word-spacing:-1.175671pt;}
.wscb{word-spacing:-1.115811pt;}
.wsfe{word-spacing:-1.106742pt;}
.ws1e0{word-spacing:-1.099878pt;}
.ws16f{word-spacing:-1.062677pt;}
.ws1dd{word-spacing:-1.052058pt;}
.ws3f{word-spacing:-1.009543pt;}
.ws47{word-spacing:-0.956410pt;}
.wsa6{word-spacing:-0.940544pt;}
.wsba{word-spacing:-0.929856pt;}
.wsb9{word-spacing:-0.919168pt;}
.ws197{word-spacing:-0.913824pt;}
.ws15b{word-spacing:-0.903136pt;}
.ws1ab{word-spacing:-0.897792pt;}
.ws19f{word-spacing:-0.881760pt;}
.ws1af{word-spacing:-0.876416pt;}
.ws15d{word-spacing:-0.860384pt;}
.ws1c0{word-spacing:-0.850142pt;}
.ws1b3{word-spacing:-0.849696pt;}
.ws1e2{word-spacing:-0.812954pt;}
.ws196{word-spacing:-0.812288pt;}
.ws29{word-spacing:-0.797008pt;}
.ws16c{word-spacing:-0.743874pt;}
.ws1d9{word-spacing:-0.717312pt;}
.ws65{word-spacing:-0.637606pt;}
.ws1a3{word-spacing:-0.598528pt;}
.ws148{word-spacing:-0.593184pt;}
.ws1a2{word-spacing:-0.587840pt;}
.ws40{word-spacing:-0.584473pt;}
.wsa7{word-spacing:-0.582496pt;}
.wsee{word-spacing:-0.578755pt;}
.ws14c{word-spacing:-0.577152pt;}
.ws15a{word-spacing:-0.571808pt;}
.ws14b{word-spacing:-0.550432pt;}
.ws1db{word-spacing:-0.526029pt;}
.wsef{word-spacing:-0.512757pt;}
.ws31{word-spacing:-0.478205pt;}
.ws3c{word-spacing:-0.425071pt;}
.ws15c{word-spacing:-0.422176pt;}
.ws1e4{word-spacing:-0.382566pt;}
.ws1c1{word-spacing:-0.371937pt;}
.ws1b6{word-spacing:-0.368736pt;}
.wsbc{word-spacing:-0.336672pt;}
.ws1ad{word-spacing:-0.325984pt;}
.ws26{word-spacing:-0.318803pt;}
.wsc6{word-spacing:-0.286925pt;}
.wsf1{word-spacing:-0.279224pt;}
.ws9c{word-spacing:-0.272544pt;}
.ws101{word-spacing:-0.269070pt;}
.ws3a{word-spacing:-0.265669pt;}
.ws52{word-spacing:-0.255043pt;}
.wsb1{word-spacing:-0.251168pt;}
.ws14a{word-spacing:-0.240480pt;}
.wsc5{word-spacing:-0.239104pt;}
.wsf0{word-spacing:-0.238610pt;}
.ws12a{word-spacing:-0.235136pt;}
.ws9d{word-spacing:-0.229792pt;}
.ws15f{word-spacing:-0.219104pt;}
.wscf{word-spacing:-0.218197pt;}
.wsb4{word-spacing:-0.213760pt;}
.wsf2{word-spacing:-0.213226pt;}
.ws2f{word-spacing:-0.212535pt;}
.ws8d{word-spacing:-0.191283pt;}
.ws1b5{word-spacing:-0.160320pt;}
.ws35{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.ws91{word-spacing:-0.127680pt;}
.wsdc{word-spacing:-0.121296pt;}
.ws23{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.ws190{word-spacing:-0.072352pt;}
.ws92{word-spacing:-0.068096pt;}
.wsdd{word-spacing:-0.064691pt;}
.ws94{word-spacing:-0.058784pt;}
.ws15e{word-spacing:-0.053440pt;}
.ws2{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws34{word-spacing:-0.042507pt;}
.wsa{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws49{word-spacing:0.001263pt;}
.ws4e{word-spacing:0.002133pt;}
.ws112{word-spacing:0.005077pt;}
.wsf3{word-spacing:0.015230pt;}
.ws160{word-spacing:0.021376pt;}
.ws147{word-spacing:0.037408pt;}
.ws1bd{word-spacing:0.042752pt;}
.ws8e{word-spacing:0.047821pt;}
.ws111{word-spacing:0.050768pt;}
.ws3b{word-spacing:0.053134pt;}
.wsb2{word-spacing:0.053440pt;}
.ws113{word-spacing:0.055845pt;}
.ws137{word-spacing:0.058784pt;}
.ws128{word-spacing:0.069472pt;}
.ws138{word-spacing:0.080160pt;}
.ws100{word-spacing:0.086306pt;}
.ws1a9{word-spacing:0.091200pt;}
.ws1b{word-spacing:0.095642pt;}
.ws129{word-spacing:0.096192pt;}
.ws9b{word-spacing:0.100800pt;}
.ws21{word-spacing:0.106268pt;}
.ws10c{word-spacing:0.106613pt;}
.ws159{word-spacing:0.112224pt;}
.ws81{word-spacing:0.127522pt;}
.ws1a8{word-spacing:0.134400pt;}
.ws19{word-spacing:0.143462pt;}
.ws125{word-spacing:0.149632pt;}
.ws3e{word-spacing:0.159402pt;}
.ws1aa{word-spacing:0.168000pt;}
.wsb{word-spacing:0.185968pt;}
.ws1cf{word-spacing:0.191283pt;}
.ws38{word-spacing:0.212535pt;}
.wsbb{word-spacing:0.229792pt;}
.ws1ce{word-spacing:0.239104pt;}
.wsd{word-spacing:0.260355pt;}
.ws28{word-spacing:0.265669pt;}
.ws1d7{word-spacing:0.286925pt;}
.wseb{word-spacing:0.314762pt;}
.ws36{word-spacing:0.318803pt;}
.ws1c3{word-spacing:0.334746pt;}
.ws106{word-spacing:0.345222pt;}
.wsec{word-spacing:0.350299pt;}
.ws194{word-spacing:0.358048pt;}
.ws1ba{word-spacing:0.363392pt;}
.ws104{word-spacing:0.370606pt;}
.ws6a{word-spacing:0.371937pt;}
.ws1b9{word-spacing:0.374080pt;}
.wsed{word-spacing:0.385837pt;}
.wsae{word-spacing:0.395456pt;}
.ws195{word-spacing:0.422176pt;}
.ws9a{word-spacing:0.451200pt;}
.ws164{word-spacing:0.478205pt;}
.ws1c2{word-spacing:0.478208pt;}
.ws48{word-spacing:0.505333pt;}
.ws57{word-spacing:0.531339pt;}
.ws115{word-spacing:0.584473pt;}
.ws163{word-spacing:0.637606pt;}
.wse6{word-spacing:0.659984pt;}
.wsf4{word-spacing:0.670138pt;}
.ws1a5{word-spacing:0.673344pt;}
.wsf8{word-spacing:0.675214pt;}
.wsad{word-spacing:0.678688pt;}
.ws58{word-spacing:0.690740pt;}
.wsfc{word-spacing:0.695522pt;}
.wsfb{word-spacing:0.710752pt;}
.ws5a{word-spacing:0.743874pt;}
.ws99{word-spacing:0.763200pt;}
.ws116{word-spacing:0.797008pt;}
.ws85{word-spacing:0.850142pt;}
.ws60{word-spacing:0.903276pt;}
.ws145{word-spacing:0.945888pt;}
.wsbf{word-spacing:0.956410pt;}
.ws144{word-spacing:0.983296pt;}
.ws1a4{word-spacing:0.988640pt;}
.ws131{word-spacing:1.020704pt;}
.wsa2{word-spacing:1.047424pt;}
.ws6c{word-spacing:1.104675pt;}
.ws6d{word-spacing:1.115811pt;}
.ws11d{word-spacing:1.168945pt;}
.ws5e{word-spacing:1.170733pt;}
.wsd2{word-spacing:1.222079pt;}
.ws82{word-spacing:1.232709pt;}
.wsff{word-spacing:1.243816pt;}
.ws37{word-spacing:1.275213pt;}
.ws1b1{word-spacing:1.319968pt;}
.ws55{word-spacing:1.328347pt;}
.ws22{word-spacing:1.381481pt;}
.wsa1{word-spacing:1.384096pt;}
.ws1ec{word-spacing:1.386803pt;}
.ws5c{word-spacing:1.434614pt;}
.ws2e{word-spacing:1.487748pt;}
.ws42{word-spacing:1.540882pt;}
.ws10a{word-spacing:1.548424pt;}
.ws62{word-spacing:1.594016pt;}
.ws1a7{word-spacing:1.629920pt;}
.ws1b0{word-spacing:1.635264pt;}
.ws158{word-spacing:1.640608pt;}
.ws86{word-spacing:1.647150pt;}
.ws8f{word-spacing:1.700284pt;}
.ws1a6{word-spacing:1.726112pt;}
.wsc4{word-spacing:1.769370pt;}
.wsc{word-spacing:1.785293pt;}
.ws105{word-spacing:1.847955pt;}
.ws90{word-spacing:1.859685pt;}
.ws5d{word-spacing:1.912819pt;}
.ws150{word-spacing:1.961248pt;}
.ws14f{word-spacing:1.966592pt;}
.wsdf{word-spacing:1.979952pt;}
.ws1a1{word-spacing:1.982624pt;}
.ws13b{word-spacing:1.987968pt;}
.ws1a0{word-spacing:2.020032pt;}
.wsc3{word-spacing:2.056294pt;}
.ws56{word-spacing:2.072221pt;}
.ws98{word-spacing:2.083200pt;}
.ws97{word-spacing:2.092800pt;}
.ws1e8{word-spacing:2.104115pt;}
.ws2a{word-spacing:2.125355pt;}
.wse0{word-spacing:2.152563pt;}
.wsea{word-spacing:2.157640pt;}
.wse9{word-spacing:2.172870pt;}
.ws124{word-spacing:2.178489pt;}
.ws1c7{word-spacing:2.199757pt;}
.ws7{word-spacing:2.231483pt;}
.wsb3{word-spacing:2.260512pt;}
.wsa3{word-spacing:2.265856pt;}
.wsa8{word-spacing:2.271200pt;}
.ws19c{word-spacing:2.303264pt;}
.ws193{word-spacing:2.313952pt;}
.ws12c{word-spacing:2.329984pt;}
.wsda{word-spacing:2.391024pt;}
.ws12b{word-spacing:2.420832pt;}
.ws76{word-spacing:2.550426pt;}
.ws15{word-spacing:2.550432pt;}
.ws14e{word-spacing:2.591840pt;}
.ws41{word-spacing:2.603559pt;}
.wsac{word-spacing:2.618560pt;}
.ws12d{word-spacing:2.629248pt;}
.ws1e7{word-spacing:2.630144pt;}
.ws12f{word-spacing:2.672000pt;}
.ws72{word-spacing:2.709827pt;}
.wsd5{word-spacing:2.762961pt;}
.wsd3{word-spacing:2.764447pt;}
.ws11b{word-spacing:2.773606pt;}
.ws192{word-spacing:2.794912pt;}
.ws5b{word-spacing:2.816095pt;}
.ws1c9{word-spacing:2.865408pt;}
.ws54{word-spacing:2.869229pt;}
.ws1cc{word-spacing:2.869248pt;}
.ws157{word-spacing:2.907136pt;}
.ws1e{word-spacing:2.917069pt;}
.ws12e{word-spacing:2.965920pt;}
.ws130{word-spacing:2.971264pt;}
.ws146{word-spacing:3.019360pt;}
.ws1c{word-spacing:3.060531pt;}
.ws122{word-spacing:3.081764pt;}
.ws149{word-spacing:3.088832pt;}
.ws123{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws1b2{word-spacing:3.222432pt;}
.wsb8{word-spacing:3.238464pt;}
.ws70{word-spacing:3.241166pt;}
.ws1bc{word-spacing:3.254496pt;}
.wsb5{word-spacing:3.270528pt;}
.wsc7{word-spacing:3.347434pt;}
.ws75{word-spacing:3.400567pt;}
.ws120{word-spacing:3.453701pt;}
.ws134{word-spacing:3.473600pt;}
.ws121{word-spacing:3.506835pt;}
.ws140{word-spacing:3.553760pt;}
.ws39{word-spacing:3.559969pt;}
.ws1bb{word-spacing:3.575136pt;}
.wsb7{word-spacing:3.596512pt;}
.wsb0{word-spacing:3.601856pt;}
.wsab{word-spacing:3.612544pt;}
.ws2b{word-spacing:3.613103pt;}
.wsaa{word-spacing:3.623232pt;}
.wsd7{word-spacing:3.641943pt;}
.wsd9{word-spacing:3.666237pt;}
.ws110{word-spacing:3.680680pt;}
.ws10b{word-spacing:3.695910pt;}
.wsb6{word-spacing:3.698048pt;}
.ws2d{word-spacing:3.719371pt;}
.ws19b{word-spacing:3.810272pt;}
.ws10f{word-spacing:3.878675pt;}
.ws162{word-spacing:3.878772pt;}
.wsaf{word-spacing:3.911808pt;}
.ws136{word-spacing:3.938528pt;}
.ws13e{word-spacing:3.954560pt;}
.ws132{word-spacing:3.991968pt;}
.ws135{word-spacing:4.008000pt;}
.ws141{word-spacing:4.024032pt;}
.ws53{word-spacing:4.038174pt;}
.ws133{word-spacing:4.056096pt;}
.ws6f{word-spacing:4.091308pt;}
.ws13f{word-spacing:4.146944pt;}
.wsa9{word-spacing:4.184352pt;}
.ws71{word-spacing:4.356977pt;}
.ws67{word-spacing:4.410111pt;}
.ws69{word-spacing:4.569513pt;}
.ws171{word-spacing:4.590797pt;}
.ws63{word-spacing:4.622646pt;}
.ws1d1{word-spacing:4.782080pt;}
.ws16e{word-spacing:4.835182pt;}
.wsc0{word-spacing:4.888316pt;}
.ws109{word-spacing:4.899112pt;}
.wse8{word-spacing:4.919419pt;}
.ws170{word-spacing:4.925542pt;}
.ws59{word-spacing:4.941450pt;}
.wse7{word-spacing:4.975264pt;}
.ws84{word-spacing:4.994583pt;}
.ws46{word-spacing:5.047717pt;}
.ws11e{word-spacing:5.153985pt;}
.wse1{word-spacing:5.203720pt;}
.ws20{word-spacing:5.260253pt;}
.ws13{word-spacing:5.393072pt;}
.ws153{word-spacing:5.456224pt;}
.ws14{word-spacing:5.467459pt;}
.ws152{word-spacing:5.675328pt;}
.wsbe{word-spacing:5.738458pt;}
.wsbd{word-spacing:5.791591pt;}
.ws14d{word-spacing:5.814272pt;}
.ws45{word-spacing:5.844725pt;}
.ws61{word-spacing:5.950993pt;}
.ws83{word-spacing:6.004127pt;}
.ws139{word-spacing:6.124224pt;}
.ws10d{word-spacing:6.148005pt;}
.ws11f{word-spacing:6.163529pt;}
.ws154{word-spacing:6.284544pt;}
.wsfa{word-spacing:6.411998pt;}
.ws10e{word-spacing:6.447536pt;}
.ws126{word-spacing:6.471584pt;}
.ws1be{word-spacing:6.482332pt;}
.ws13a{word-spacing:6.487616pt;}
.ws127{word-spacing:6.503648pt;}
.ws155{word-spacing:6.530368pt;}
.ws44{word-spacing:6.588599pt;}
.ws156{word-spacing:6.642592pt;}
.ws17{word-spacing:6.647091pt;}
.ws161{word-spacing:6.854269pt;}
.ws1bf{word-spacing:7.173072pt;}
.ws74{word-spacing:7.438741pt;}
.ws11{word-spacing:7.699075pt;}
.wsc8{word-spacing:7.863812pt;}
.ws142{word-spacing:8.395424pt;}
.ws143{word-spacing:8.416800pt;}
.ws174{word-spacing:9.261206pt;}
.ws9e{word-spacing:9.710048pt;}
.wsde{word-spacing:9.812846pt;}
.wsca{word-spacing:9.936033pt;}
.ws191{word-spacing:10.325056pt;}
.ws93{word-spacing:10.329312pt;}
.ws32{word-spacing:10.582159pt;}
.ws1e3{word-spacing:11.381350pt;}
.ws8{word-spacing:11.492822pt;}
.ws11c{word-spacing:11.620454pt;}
.ws73{word-spacing:11.742585pt;}
.ws1d4{word-spacing:11.811738pt;}
.ws1df{word-spacing:11.859558pt;}
.ws1d0{word-spacing:11.904444pt;}
.ws1e5{word-spacing:11.906048pt;}
.ws1ca{word-spacing:11.907379pt;}
.ws1cd{word-spacing:12.050842pt;}
.wscc{word-spacing:12.126012pt;}
.ws1eb{word-spacing:12.194304pt;}
.ws1d2{word-spacing:12.385587pt;}
.wsd0{word-spacing:13.006035pt;}
.ws64{word-spacing:13.070931pt;}
.wscd{word-spacing:13.154584pt;}
.ws43{word-spacing:13.230333pt;}
.wsd1{word-spacing:13.268004pt;}
.ws6b{word-spacing:13.308706pt;}
.ws114{word-spacing:13.384050pt;}
.wsce{word-spacing:13.389734pt;}
.ws6{word-spacing:13.763148pt;}
.ws5f{word-spacing:14.105482pt;}
.ws1c8{word-spacing:14.107136pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.ws1d5{word-spacing:14.537523pt;}
.ws2c{word-spacing:14.558679pt;}
.ws1e1{word-spacing:14.633165pt;}
.ws1da{word-spacing:14.728806pt;}
.ws1d3{word-spacing:14.768614pt;}
.ws1dc{word-spacing:14.771874pt;}
.ws1de{word-spacing:14.773948pt;}
.ws1d8{word-spacing:14.775339pt;}
.ws1cb{word-spacing:14.776627pt;}
.ws1d6{word-spacing:14.777873pt;}
.ws1ea{word-spacing:14.920090pt;}
.ws1e9{word-spacing:15.063552pt;}
.wsdb{word-spacing:15.618361pt;}
.ws10{word-spacing:15.732893pt;}
.wsd4{word-spacing:15.991665pt;}
.wsd6{word-spacing:16.843436pt;}
.wsd8{word-spacing:16.864868pt;}
.ws68{word-spacing:17.643953pt;}
.wsc9{word-spacing:21.094145pt;}
.ws12{word-spacing:24.399002pt;}
.ws175{word-spacing:34.007244pt;}
.ws18c{word-spacing:36.770133pt;}
.ws173{word-spacing:46.561814pt;}
.ws17f{word-spacing:55.964800pt;}
.ws18e{word-spacing:61.378133pt;}
.ws186{word-spacing:61.426133pt;}
.ws181{word-spacing:62.894378pt;}
.ws177{word-spacing:63.936246pt;}
.ws180{word-spacing:70.972800pt;}
.ws185{word-spacing:71.490133pt;}
.ws178{word-spacing:71.523293pt;}
.ws17e{word-spacing:75.159467pt;}
.ws176{word-spacing:84.898091pt;}
.ws188{word-spacing:87.516541pt;}
.ws17d{word-spacing:88.604800pt;}
.ws189{word-spacing:91.613830pt;}
.ws184{word-spacing:91.633879pt;}
.ws17c{word-spacing:103.964800pt;}
.ws182{word-spacing:107.638278pt;}
.ws7d{word-spacing:109.946291pt;}
.ws168{word-spacing:121.252958pt;}
.ws7e{word-spacing:121.946291pt;}
.ws183{word-spacing:124.255940pt;}
.ws7c{word-spacing:124.554291pt;}
.ws17b{word-spacing:128.924800pt;}
.ws167{word-spacing:135.167625pt;}
.ws17a{word-spacing:138.695467pt;}
.ws172{word-spacing:140.940262pt;}
.ws7f{word-spacing:143.158716pt;}
.ws79{word-spacing:147.123200pt;}
.ws165{word-spacing:148.440533pt;}
.ws7a{word-spacing:148.509867pt;}
.ws7b{word-spacing:149.779200pt;}
.ws166{word-spacing:151.117867pt;}
.ws80{word-spacing:155.158716pt;}
.ws179{word-spacing:155.885058pt;}
.ws169{word-spacing:156.929382pt;}
.ws16a{word-spacing:160.417382pt;}
.ws51{word-spacing:174.977382pt;}
.ws4a{word-spacing:176.723200pt;}
.ws4b{word-spacing:206.515200pt;}
.ws50{word-spacing:239.510716pt;}
.ws4c{word-spacing:302.447625pt;}
.ws4d{word-spacing:344.764049pt;}
.ws4f{word-spacing:489.395089pt;}
.ws187{word-spacing:1065.143148pt;}
.ws18a{word-spacing:2015.570575pt;}
.ws18b{word-spacing:2189.421687pt;}
.ws18d{word-spacing:2325.450913pt;}
.ws18f{word-spacing:2487.672398pt;}
._81{margin-left:-28.097322pt;}
._0{margin-left:-7.077478pt;}
._8{margin-left:-5.483429pt;}
._22{margin-left:-4.569429pt;}
._4{margin-left:-3.585109pt;}
._18{margin-left:-2.630144pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._6{width:2.045648pt;}
._59{width:3.219598pt;}
._80{width:6.018095pt;}
._9{width:9.861670pt;}
._5{width:11.530016pt;}
._11{width:13.177232pt;}
._e{width:14.326391pt;}
._c{width:15.249632pt;}
._f{width:16.737168pt;}
._10{width:17.959247pt;}
._21{width:19.170538pt;}
._b{width:20.371661pt;}
._15{width:21.929623pt;}
._d{width:23.575654pt;}
._1f{width:25.057918pt;}
._5a{width:26.248130pt;}
._14{width:27.576477pt;}
._7{width:29.011008pt;}
._20{width:30.201464pt;}
._57{width:31.880320pt;}
._56{width:33.753458pt;}
._a{width:34.745873pt;}
._7e{width:35.712685pt;}
._23{width:38.522053pt;}
._1{width:48.373550pt;}
._7f{width:54.993920pt;}
._4f{width:72.277591pt;}
._75{width:80.319200pt;}
._53{width:84.876333pt;}
._7b{width:91.274318pt;}
._78{width:95.859166pt;}
._79{width:96.814941pt;}
._40{width:98.128282pt;}
._28{width:101.284454pt;}
._2f{width:102.671258pt;}
._24{width:106.018714pt;}
._43{width:107.453338pt;}
._47{width:108.792320pt;}
._30{width:109.844378pt;}
._2b{width:111.470285pt;}
._35{width:112.713626pt;}
._5b{width:114.052608pt;}
._6b{width:115.869798pt;}
._5d{width:117.686989pt;}
._4e{width:122.037986pt;}
._32{width:122.947277pt;}
._29{width:124.429722pt;}
._48{width:126.390374pt;}
._3b{width:128.016282pt;}
._36{width:129.259622pt;}
._38{width:133.563494pt;}
._52{width:135.368143pt;}
._67{width:136.719667pt;}
._44{width:138.632499pt;}
._4b{width:139.684557pt;}
._25{width:141.262643pt;}
._41{width:142.505984pt;}
._45{width:143.510221pt;}
._5c{width:147.861914pt;}
._31{width:150.683341pt;}
._2a{width:153.887334pt;}
._72{width:154.925520pt;}
._74{width:156.096368pt;}
._50{width:162.794263pt;}
._77{width:163.991869pt;}
._3c{width:165.890355pt;}
._37{width:167.994470pt;}
._71{width:168.970330pt;}
._61{width:171.772314pt;}
._5e{width:172.680909pt;}
._64{width:174.498099pt;}
._3d{width:175.741440pt;}
._54{width:177.800215pt;}
._42{width:179.088896pt;}
._1b{width:181.240832pt;}
._62{width:182.197248pt;}
._2c{width:183.153664pt;}
._49{width:184.540467pt;}
._39{width:187.170611pt;}
._17{width:188.744277pt;}
._6f{width:192.797202pt;}
._26{width:195.699123pt;}
._4c{width:197.786829pt;}
._55{width:201.479479pt;}
._6a{width:209.933312pt;}
._60{width:211.033190pt;}
._65{width:212.898202pt;}
._2e{width:221.697229pt;}
._6c{width:224.358784pt;}
._69{width:233.556787pt;}
._4a{width:234.943590pt;}
._63{width:236.330394pt;}
._46{width:238.178995pt;}
._27{width:241.703799pt;}
._34{width:246.850970pt;}
._3f{width:249.481114pt;}
._51{width:312.276631pt;}
._5f{width:317.625754pt;}
._2d{width:318.964736pt;}
._3e{width:320.303718pt;}
._66{width:327.477534pt;}
._33{width:330.919936pt;}
._3a{width:332.163277pt;}
._68{width:343.257702pt;}
._1c{width:350.376815pt;}
._70{width:410.643471pt;}
._19{width:417.400013pt;}
._1e{width:428.377276pt;}
._16{width:438.037077pt;}
._1a{width:446.310076pt;}
._1d{width:539.289873pt;}
._73{width:630.049810pt;}
._12{width:811.678717pt;}
._76{width:878.908131pt;}
._7a{width:1313.476039pt;}
._7c{width:1440.274575pt;}
._7d{width:1621.886496pt;}
._58{width:1776.695729pt;}
._6e{width:1849.968727pt;}
._4d{width:1870.257079pt;}
._6d{width:2210.839733pt;}
._13{width:2232.093067pt;}
.fs15{font-size:26.566933pt;}
.fs10{font-size:29.440000pt;}
.fs14{font-size:30.400000pt;}
.fsa{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fs16{font-size:33.219200pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsc{font-size:38.755733pt;}
.fsb{font-size:40.381867pt;}
.fs12{font-size:40.432000pt;}
.fs3{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs13{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y230{bottom:-277.278133pt;}
.y22f{bottom:-260.158629pt;}
.y22e{bottom:-243.039125pt;}
.y22d{bottom:-225.999781pt;}
.y22c{bottom:-208.880277pt;}
.y22b{bottom:-191.840933pt;}
.y229{bottom:-191.839285pt;}
.y22a{bottom:-188.480933pt;}
.y228{bottom:-174.719781pt;}
.y227{bottom:-157.600277pt;}
.y226{bottom:-140.560933pt;}
.y225{bottom:-140.558789pt;}
.y224{bottom:-123.439285pt;}
.y223{bottom:-106.399941pt;}
.y222{bottom:-89.280437pt;}
.y1d6{bottom:-80.179781pt;}
.y221{bottom:-72.160933pt;}
.y19c{bottom:-68.142773pt;}
.y1d5{bottom:-63.060277pt;}
.y160{bottom:-61.870605pt;}
.y19b{bottom:-51.955396pt;}
.y1d4{bottom:-46.011213pt;}
.y15f{bottom:-44.751101pt;}
.y220{bottom:-39.520533pt;}
.y19a{bottom:-35.691867pt;}
.y15e{bottom:-27.711757pt;}
.y1d3{bottom:-24.651245pt;}
.y21f{bottom:-24.000933pt;}
.y199{bottom:-15.399898pt;}
.y15d{bottom:-6.351789pt;}
.y21e{bottom:-4.074645pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.yb{bottom:3.044747pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y4d{bottom:28.346667pt;}
.y1b2{bottom:79.105333pt;}
.yc2{bottom:81.860000pt;}
.y136{bottom:85.504000pt;}
.y1ea{bottom:87.365333pt;}
.y291{bottom:87.826667pt;}
.y24{bottom:91.398667pt;}
.y4c{bottom:92.108000pt;}
.y102{bottom:94.044000pt;}
.y172{bottom:95.486667pt;}
.y1b1{bottom:95.842667pt;}
.y25d{bottom:97.368000pt;}
.yc1{bottom:98.597333pt;}
.y135{bottom:102.241333pt;}
.y290{bottom:103.169333pt;}
.y1e9{bottom:104.102667pt;}
.y23{bottom:107.298667pt;}
.y2c9{bottom:107.393333pt;}
.y4b{bottom:108.844000pt;}
.y25c{bottom:109.986667pt;}
.y101{bottom:110.780000pt;}
.y171{bottom:112.224000pt;}
.y1b0{bottom:112.580000pt;}
.ybf{bottom:115.334667pt;}
.y28f{bottom:118.512000pt;}
.y134{bottom:118.978667pt;}
.yc0{bottom:120.156000pt;}
.y25b{bottom:120.738667pt;}
.y1e8{bottom:120.840000pt;}
.y25a{bottom:122.606667pt;}
.y2c8{bottom:122.736000pt;}
.y22{bottom:123.200000pt;}
.y4a{bottom:125.581333pt;}
.y100{bottom:127.517333pt;}
.y170{bottom:128.961333pt;}
.y81{bottom:129.096000pt;}
.y1af{bottom:129.317333pt;}
.ybe{bottom:129.645333pt;}
.ybd{bottom:132.072000pt;}
.y258{bottom:133.358667pt;}
.y28e{bottom:133.854667pt;}
.y257{bottom:135.225333pt;}
.y133{bottom:135.716000pt;}
.y1e7{bottom:137.577333pt;}
.y2c7{bottom:138.078667pt;}
.y259{bottom:139.084000pt;}
.y21{bottom:139.100000pt;}
.y49{bottom:142.318667pt;}
.yff{bottom:144.254667pt;}
.y16f{bottom:145.698667pt;}
.y80{bottom:145.833333pt;}
.y1ae{bottom:146.054667pt;}
.y256{bottom:147.845333pt;}
.ybc{bottom:148.809333pt;}
.y28d{bottom:149.197333pt;}
.y132{bottom:152.453333pt;}
.y2c6{bottom:153.421333pt;}
.y1e6{bottom:154.314667pt;}
.y20{bottom:155.000000pt;}
.y48{bottom:159.056000pt;}
.yfe{bottom:160.992000pt;}
.y16e{bottom:162.436000pt;}
.y7f{bottom:162.570667pt;}
.y1ad{bottom:162.792000pt;}
.y28c{bottom:164.540000pt;}
.ybb{bottom:165.546667pt;}
.y255{bottom:166.470667pt;}
.y2c5{bottom:168.762667pt;}
.y131{bottom:169.190667pt;}
.y1f{bottom:170.901333pt;}
.y1e5{bottom:171.052000pt;}
.y254{bottom:175.769333pt;}
.y47{bottom:175.793333pt;}
.yfd{bottom:177.729333pt;}
.y16d{bottom:179.173333pt;}
.y7e{bottom:179.308000pt;}
.y1ac{bottom:179.529333pt;}
.y28b{bottom:179.881333pt;}
.yba{bottom:182.284000pt;}
.y2c4{bottom:184.105333pt;}
.y253{bottom:185.277333pt;}
.y1e{bottom:186.801333pt;}
.y1e4{bottom:187.789333pt;}
.y130{bottom:189.913333pt;}
.y46{bottom:192.530667pt;}
.yfc{bottom:194.466667pt;}
.y252{bottom:194.576000pt;}
.y28a{bottom:195.224000pt;}
.y16c{bottom:195.910667pt;}
.y7d{bottom:196.045333pt;}
.y1aa{bottom:196.266667pt;}
.y20c{bottom:196.688000pt;}
.y2c3{bottom:199.448000pt;}
.y1ab{bottom:201.088000pt;}
.y1d{bottom:202.701333pt;}
.yb9{bottom:203.005333pt;}
.y251{bottom:203.873333pt;}
.y1e3{bottom:204.526667pt;}
.y45{bottom:209.268000pt;}
.y289{bottom:210.566667pt;}
.yfb{bottom:211.204000pt;}
.y16b{bottom:212.648000pt;}
.y7c{bottom:212.782667pt;}
.y1a9{bottom:213.004000pt;}
.y250{bottom:213.172000pt;}
.y20b{bottom:213.425333pt;}
.y2c2{bottom:214.790667pt;}
.y1e2{bottom:221.264000pt;}
.y24f{bottom:222.680000pt;}
.y12f{bottom:224.582667pt;}
.y288{bottom:225.909333pt;}
.y44{bottom:226.005333pt;}
.yfa{bottom:227.941333pt;}
.y16a{bottom:229.385333pt;}
.y7b{bottom:229.520000pt;}
.y1a8{bottom:229.741333pt;}
.y2c1{bottom:230.133333pt;}
.y20a{bottom:230.162667pt;}
.y24e{bottom:232.188000pt;}
.yb8{bottom:232.893333pt;}
.y12e{bottom:237.202667pt;}
.y1e1{bottom:238.001333pt;}
.y287{bottom:241.252000pt;}
.y24d{bottom:241.569333pt;}
.y43{bottom:242.742667pt;}
.yf9{bottom:244.678667pt;}
.y2c0{bottom:245.476000pt;}
.y169{bottom:246.122667pt;}
.y7a{bottom:246.257333pt;}
.y1a7{bottom:246.478667pt;}
.y209{bottom:246.900000pt;}
.y12d{bottom:247.954667pt;}
.yb7{bottom:249.630667pt;}
.y12c{bottom:249.821333pt;}
.y24c{bottom:250.868000pt;}
.y1e0{bottom:254.738667pt;}
.y286{bottom:256.594667pt;}
.y42{bottom:259.480000pt;}
.y24b{bottom:260.376000pt;}
.y2bf{bottom:260.818667pt;}
.y12b{bottom:262.441333pt;}
.y168{bottom:262.860000pt;}
.y79{bottom:262.994667pt;}
.y1a6{bottom:263.216000pt;}
.y208{bottom:263.637333pt;}
.yf8{bottom:265.401333pt;}
.yb6{bottom:266.368000pt;}
.y24a{bottom:269.674667pt;}
.y1df{bottom:271.476000pt;}
.y285{bottom:271.937333pt;}
.y1c{bottom:273.154667pt;}
.y2be{bottom:276.161333pt;}
.y41{bottom:276.217333pt;}
.y249{bottom:279.182667pt;}
.y167{bottom:279.597333pt;}
.y78{bottom:279.732000pt;}
.y1a5{bottom:279.953333pt;}
.y207{bottom:280.374667pt;}
.y12a{bottom:282.661333pt;}
.yb5{bottom:283.105333pt;}
.y284{bottom:287.280000pt;}
.y1de{bottom:288.213333pt;}
.y248{bottom:288.480000pt;}
.y1b{bottom:289.054667pt;}
.y2bd{bottom:291.502667pt;}
.y40{bottom:292.954667pt;}
.yf7{bottom:295.289333pt;}
.y166{bottom:296.334667pt;}
.y77{bottom:296.469333pt;}
.y1a4{bottom:296.690667pt;}
.y206{bottom:297.112000pt;}
.y129{bottom:297.273333pt;}
.y247{bottom:297.778667pt;}
.yb4{bottom:299.842667pt;}
.y283{bottom:302.622667pt;}
.y1dd{bottom:304.950667pt;}
.y1a{bottom:304.954667pt;}
.y198{bottom:306.155730pt;}
.y2bc{bottom:306.845333pt;}
.y245{bottom:307.741333pt;}
.y244{bottom:307.846667pt;}
.y3f{bottom:309.692000pt;}
.y128{bottom:311.884000pt;}
.yf6{bottom:312.026667pt;}
.y165{bottom:313.072000pt;}
.y76{bottom:313.205333pt;}
.y205{bottom:313.849333pt;}
.yb3{bottom:316.580000pt;}
.y246{bottom:317.040000pt;}
.y243{bottom:317.145333pt;}
.y1a3{bottom:317.412000pt;}
.y282{bottom:317.964000pt;}
.y19{bottom:320.856000pt;}
.y1dc{bottom:321.688000pt;}
.y2bb{bottom:322.188000pt;}
.y197{bottom:322.343107pt;}
.y3e{bottom:326.429333pt;}
.y127{bottom:326.496000pt;}
.yf5{bottom:328.764000pt;}
.y75{bottom:329.942667pt;}
.y204{bottom:330.585333pt;}
.y281{bottom:333.306667pt;}
.yb2{bottom:333.317333pt;}
.y2ba{bottom:337.530667pt;}
.y196{bottom:338.606635pt;}
.y126{bottom:341.108000pt;}
.y242{bottom:341.636000pt;}
.y1d2{bottom:341.749427pt;}
.y1db{bottom:342.409333pt;}
.y1a2{bottom:342.569333pt;}
.y163{bottom:342.908000pt;}
.y3d{bottom:343.166667pt;}
.yf3{bottom:345.501333pt;}
.y74{bottom:346.680000pt;}
.y164{bottom:347.248000pt;}
.y203{bottom:347.322667pt;}
.y280{bottom:348.649333pt;}
.yb0{bottom:350.054667pt;}
.yf4{bottom:350.322667pt;}
.y2b9{bottom:352.873333pt;}
.y18{bottom:354.688000pt;}
.y195{bottom:354.870164pt;}
.yb1{bottom:354.876000pt;}
.y125{bottom:355.720000pt;}
.y1a0{bottom:357.334667pt;}
.y241{bottom:358.732000pt;}
.y1d1{bottom:358.868931pt;}
.y19f{bottom:359.665333pt;}
.y3c{bottom:359.904000pt;}
.y162{bottom:360.004000pt;}
.yf2{bottom:362.238667pt;}
.y27f{bottom:363.992000pt;}
.y1a1{bottom:364.005333pt;}
.y202{bottom:364.060000pt;}
.yaf{bottom:364.365333pt;}
.yae{bottom:366.792000pt;}
.y73{bottom:367.402667pt;}
.y2b8{bottom:368.216000pt;}
.y124{bottom:370.332000pt;}
.y17{bottom:370.589333pt;}
.y194{bottom:371.057541pt;}
.y1d0{bottom:375.908275pt;}
.y3b{bottom:376.641333pt;}
.y19e{bottom:376.761333pt;}
.y161{bottom:377.100000pt;}
.y1da{bottom:377.426667pt;}
.yf1{bottom:378.976000pt;}
.y27e{bottom:379.334667pt;}
.y201{bottom:380.797333pt;}
.yac{bottom:381.102667pt;}
.yab{bottom:383.529333pt;}
.y2b7{bottom:383.558667pt;}
.y21d{bottom:383.844979pt;}
.y123{bottom:384.944000pt;}
.y72{bottom:385.336000pt;}
.y16{bottom:386.489333pt;}
.y193{bottom:387.321070pt;}
.y240{bottom:387.925333pt;}
.yad{bottom:388.350667pt;}
.y15c{bottom:389.888443pt;}
.y1cf{bottom:393.027779pt;}
.y3a{bottom:393.378667pt;}
.y19d{bottom:393.857333pt;}
.y1d9{bottom:394.522667pt;}
.y27d{bottom:394.677333pt;}
.yef{bottom:395.713333pt;}
.y140{bottom:397.037333pt;}
.y200{bottom:397.534667pt;}
.y2b6{bottom:398.901333pt;}
.y122{bottom:399.556000pt;}
.yaa{bottom:400.266667pt;}
.yf0{bottom:400.534667pt;}
.y21c{bottom:400.964483pt;}
.y192{bottom:403.584599pt;}
.y23f{bottom:404.662667pt;}
.y15b{bottom:406.929123pt;}
.y27c{bottom:410.020000pt;}
.y39{bottom:410.116000pt;}
.y1ce{bottom:410.147283pt;}
.y1d7{bottom:411.618667pt;}
.yee{bottom:412.450667pt;}
.y177{bottom:413.794667pt;}
.y2b5{bottom:414.244000pt;}
.y1ff{bottom:414.272000pt;}
.y71{bottom:415.224000pt;}
.y1d8{bottom:415.958667pt;}
.ya9{bottom:417.004000pt;}
.y21b{bottom:418.003827pt;}
.y15{bottom:418.330667pt;}
.y191{bottom:419.771975pt;}
.y120{bottom:420.569333pt;}
.y23e{bottom:421.400000pt;}
.y15a{bottom:424.048627pt;}
.y38{bottom:426.853333pt;}
.y1cd{bottom:427.186627pt;}
.y11f{bottom:427.876000pt;}
.yed{bottom:429.188000pt;}
.y27b{bottom:429.346667pt;}
.y2b4{bottom:429.585333pt;}
.y1fe{bottom:431.009333pt;}
.y1b3{bottom:431.556000pt;}
.y70{bottom:431.961333pt;}
.ya8{bottom:433.741333pt;}
.y21a{bottom:435.123331pt;}
.y121{bottom:435.181333pt;}
.y190{bottom:436.035504pt;}
.y23d{bottom:438.137333pt;}
.y159{bottom:441.168131pt;}
.y1cc{bottom:444.306131pt;}
.y2b3{bottom:444.928000pt;}
.yec{bottom:445.925333pt;}
.y37{bottom:447.576000pt;}
.y6f{bottom:448.698667pt;}
.y14{bottom:450.170667pt;}
.ya7{bottom:450.478667pt;}
.y18f{bottom:452.224150pt;}
.y219{bottom:452.242835pt;}
.y23c{bottom:454.874667pt;}
.y158{bottom:458.207475pt;}
.y27a{bottom:459.234667pt;}
.y2b2{bottom:460.270667pt;}
.y1fd{bottom:460.498667pt;}
.y1cb{bottom:461.345475pt;}
.yea{bottom:462.662667pt;}
.y11e{bottom:463.288000pt;}
.ya6{bottom:464.789333pt;}
.y6e{bottom:465.436000pt;}
.y13{bottom:466.070667pt;}
.ya5{bottom:467.216000pt;}
.yeb{bottom:467.484000pt;}
.y18e{bottom:468.487679pt;}
.y218{bottom:469.282179pt;}
.y23a{bottom:471.612000pt;}
.y1fc{bottom:473.118667pt;}
.y279{bottom:474.856000pt;}
.y157{bottom:475.326979pt;}
.y2b1{bottom:475.613333pt;}
.y23b{bottom:476.433333pt;}
.y1ca{bottom:478.464979pt;}
.ye9{bottom:479.398667pt;}
.y12{bottom:481.972000pt;}
.y6d{bottom:482.173333pt;}
.y1fb{bottom:483.870667pt;}
.ya4{bottom:483.953333pt;}
.y18d{bottom:484.751208pt;}
.y1fa{bottom:485.737333pt;}
.y217{bottom:486.401683pt;}
.y239{bottom:488.349333pt;}
.y278{bottom:490.478667pt;}
.y2b0{bottom:490.956000pt;}
.y156{bottom:492.446483pt;}
.y11d{bottom:494.941333pt;}
.y1c9{bottom:495.584483pt;}
.ye7{bottom:496.136000pt;}
.y11{bottom:497.872000pt;}
.y1f9{bottom:498.357333pt;}
.y6c{bottom:498.910667pt;}
.ya3{bottom:500.690667pt;}
.y18c{bottom:500.939854pt;}
.ye8{bottom:500.958667pt;}
.y216{bottom:503.521187pt;}
.y238{bottom:505.086667pt;}
.y2af{bottom:506.298667pt;}
.y155{bottom:509.485827pt;}
.y11c{bottom:511.678667pt;}
.y1c8{bottom:512.623827pt;}
.ye6{bottom:512.873333pt;}
.y10{bottom:513.772000pt;}
.y277{bottom:514.069333pt;}
.y36{bottom:514.376000pt;}
.y6b{bottom:515.648000pt;}
.y18b{bottom:517.203383pt;}
.ya2{bottom:517.428000pt;}
.y1f8{bottom:518.577333pt;}
.y237{bottom:519.397333pt;}
.y215{bottom:520.560531pt;}
.y2ae{bottom:521.641333pt;}
.y236{bottom:521.824000pt;}
.y154{bottom:526.605331pt;}
.y11b{bottom:528.416000pt;}
.ye5{bottom:529.610667pt;}
.yf{bottom:529.673333pt;}
.y1c7{bottom:529.743331pt;}
.y6a{bottom:532.384000pt;}
.y1f7{bottom:533.189333pt;}
.y18a{bottom:533.390759pt;}
.ya1{bottom:534.165333pt;}
.y2ad{bottom:536.984000pt;}
.y276{bottom:537.661333pt;}
.y214{bottom:537.680035pt;}
.y235{bottom:538.561333pt;}
.y153{bottom:543.644675pt;}
.y11a{bottom:545.153333pt;}
.ye{bottom:545.573333pt;}
.ye4{bottom:546.348000pt;}
.y1c6{bottom:546.782675pt;}
.y35{bottom:547.610667pt;}
.y1f6{bottom:547.800000pt;}
.y69{bottom:549.121333pt;}
.y189{bottom:549.654288pt;}
.y9f{bottom:550.902667pt;}
.y2ac{bottom:552.325333pt;}
.y213{bottom:554.719379pt;}
.y234{bottom:555.298667pt;}
.ya0{bottom:555.724000pt;}
.y152{bottom:560.764179pt;}
.y275{bottom:561.253333pt;}
.yd{bottom:561.473333pt;}
.y119{bottom:561.890667pt;}
.y1f5{bottom:562.412000pt;}
.ye2{bottom:563.085333pt;}
.y1c5{bottom:563.902179pt;}
.y34{bottom:564.905333pt;}
.y68{bottom:565.858667pt;}
.y188{bottom:565.917817pt;}
.y9e{bottom:567.640000pt;}
.y2ab{bottom:567.668000pt;}
.ye3{bottom:567.908000pt;}
.y212{bottom:571.838883pt;}
.y233{bottom:572.036000pt;}
.y274{bottom:576.874667pt;}
.y1f4{bottom:577.024000pt;}
.yc{bottom:577.374667pt;}
.y151{bottom:577.883683pt;}
.y118{bottom:578.628000pt;}
.ye1{bottom:579.822667pt;}
.y1c4{bottom:581.021683pt;}
.y187{bottom:582.106463pt;}
.y33{bottom:582.201333pt;}
.y67{bottom:582.596000pt;}
.y2aa{bottom:583.010667pt;}
.y9c{bottom:584.376000pt;}
.y232{bottom:588.773333pt;}
.y211{bottom:588.958387pt;}
.y9d{bottom:589.198667pt;}
.y1f3{bottom:591.636000pt;}
.y150{bottom:594.924363pt;}
.y117{bottom:595.365333pt;}
.ydf{bottom:596.560000pt;}
.y9{bottom:597.259968pt;}
.y1c3{bottom:598.062363pt;}
.y2a9{bottom:598.353333pt;}
.y186{bottom:598.369992pt;}
.y66{bottom:599.333333pt;}
.y32{bottom:599.496000pt;}
.y273{bottom:600.465333pt;}
.y9b{bottom:601.113333pt;}
.ye0{bottom:601.382667pt;}
.y210{bottom:605.999067pt;}
.y1f2{bottom:606.248000pt;}
.y14f{bottom:612.043867pt;}
.y116{bottom:612.102667pt;}
.yde{bottom:613.297333pt;}
.y2a8{bottom:613.696000pt;}
.y185{bottom:614.557369pt;}
.y1c2{bottom:615.181867pt;}
.y65{bottom:616.070667pt;}
.y272{bottom:616.086667pt;}
.y31{bottom:616.792000pt;}
.y231{bottom:618.609333pt;}
.y1f1{bottom:620.860000pt;}
.y9a{bottom:621.836000pt;}
.y115{bottom:628.840000pt;}
.y2a7{bottom:629.038667pt;}
.y14e{bottom:629.084547pt;}
.ydd{bottom:630.034667pt;}
.y184{bottom:630.820897pt;}
.y271{bottom:631.708000pt;}
.y1c1{bottom:632.221211pt;}
.y64{bottom:632.808000pt;}
.y30{bottom:634.086667pt;}
.y1f0{bottom:635.472000pt;}
.y20d{bottom:638.546667pt;}
.y99{bottom:639.769333pt;}
.y2a6{bottom:644.381333pt;}
.y114{bottom:645.576000pt;}
.y14d{bottom:646.204051pt;}
.ydc{bottom:646.772000pt;}
.y183{bottom:647.084426pt;}
.y270{bottom:647.330667pt;}
.y1c0{bottom:649.340715pt;}
.y63{bottom:649.545333pt;}
.y2f{bottom:651.381333pt;}
.y20f{bottom:654.639187pt;}
.y1ee{bottom:656.485333pt;}
.y2a5{bottom:659.724000pt;}
.y113{bottom:662.313333pt;}
.y26f{bottom:662.952000pt;}
.y20e{bottom:663.199067pt;}
.y182{bottom:663.271803pt;}
.y14c{bottom:663.323555pt;}
.yda{bottom:663.509333pt;}
.y1ed{bottom:663.792000pt;}
.y62{bottom:666.282667pt;}
.y1bf{bottom:666.460219pt;}
.y98{bottom:666.469333pt;}
.ydb{bottom:668.332000pt;}
.y2e{bottom:668.677333pt;}
.y1ef{bottom:671.097333pt;}
.y2a4{bottom:675.066667pt;}
.y26e{bottom:678.573333pt;}
.y112{bottom:679.050667pt;}
.y96{bottom:679.088000pt;}
.y181{bottom:679.535332pt;}
.yd9{bottom:680.246667pt;}
.y14b{bottom:680.364235pt;}
.y97{bottom:682.945333pt;}
.y61{bottom:683.020000pt;}
.y1be{bottom:683.499563pt;}
.y2d{bottom:685.972000pt;}
.y2a3{bottom:690.408000pt;}
.y95{bottom:693.037333pt;}
.y111{bottom:695.788000pt;}
.y180{bottom:695.798861pt;}
.y94{bottom:696.894667pt;}
.yd8{bottom:696.984000pt;}
.y14a{bottom:697.483739pt;}
.y1ec{bottom:699.204000pt;}
.y60{bottom:699.757333pt;}
.y1bd{bottom:700.621699pt;}
.y2c{bottom:703.268000pt;}
.y2a2{bottom:705.750667pt;}
.y26d{bottom:710.134667pt;}
.y17f{bottom:711.986237pt;}
.y110{bottom:712.525333pt;}
.y92{bottom:713.257333pt;}
.yd7{bottom:713.721333pt;}
.y176{bottom:714.120000pt;}
.y5f{bottom:716.494667pt;}
.y1bc{bottom:717.741203pt;}
.y149{bottom:718.523067pt;}
.y2b{bottom:720.562667pt;}
.y2a1{bottom:721.093333pt;}
.y26c{bottom:726.872000pt;}
.y93{bottom:727.869333pt;}
.y17e{bottom:728.249766pt;}
.y10f{bottom:729.262667pt;}
.yd6{bottom:730.458667pt;}
.y175{bottom:730.857333pt;}
.y5e{bottom:733.232000pt;}
.y1bb{bottom:734.780547pt;}
.y2a0{bottom:736.436000pt;}
.y2a{bottom:737.857333pt;}
.y91{bottom:742.480000pt;}
.y26b{bottom:743.609333pt;}
.y17d{bottom:744.437143pt;}
.y10e{bottom:746.000000pt;}
.yd4{bottom:747.196000pt;}
.y174{bottom:747.594667pt;}
.y90{bottom:749.786667pt;}
.y5d{bottom:749.969333pt;}
.y148{bottom:751.243467pt;}
.y29f{bottom:751.778667pt;}
.y1ba{bottom:751.900051pt;}
.yd5{bottom:752.017333pt;}
.y29{bottom:755.153333pt;}
.y26a{bottom:760.346667pt;}
.y17c{bottom:760.700672pt;}
.y10d{bottom:762.737333pt;}
.yd2{bottom:763.933333pt;}
.y173{bottom:764.332000pt;}
.y5c{bottom:766.706667pt;}
.y147{bottom:766.763067pt;}
.y29e{bottom:767.121333pt;}
.yd3{bottom:768.754667pt;}
.y1b9{bottom:768.939395pt;}
.y8f{bottom:771.704000pt;}
.y17b{bottom:776.964201pt;}
.y269{bottom:777.084000pt;}
.y8e{bottom:779.010667pt;}
.y10c{bottom:779.474667pt;}
.yd1{bottom:780.670667pt;}
.y13f{bottom:781.069333pt;}
.y146{bottom:782.123067pt;}
.y29d{bottom:782.464000pt;}
.y5b{bottom:783.444000pt;}
.y1b8{bottom:786.058899pt;}
.y28{bottom:787.401333pt;}
.y17a{bottom:793.152847pt;}
.y268{bottom:793.821333pt;}
.y10b{bottom:796.212000pt;}
.yd0{bottom:797.408000pt;}
.y145{bottom:797.483067pt;}
.y13e{bottom:797.806667pt;}
.y5a{bottom:800.181333pt;}
.y8d{bottom:800.928000pt;}
.y27{bottom:801.748000pt;}
.y1b7{bottom:803.178403pt;}
.y8c{bottom:808.234667pt;}
.y267{bottom:810.558667pt;}
.y1eb{bottom:812.117333pt;}
.y10a{bottom:812.949333pt;}
.y29c{bottom:813.149333pt;}
.ycf{bottom:814.145333pt;}
.y13d{bottom:814.544000pt;}
.y144{bottom:814.763067pt;}
.y26{bottom:816.094667pt;}
.y59{bottom:816.918667pt;}
.y1b6{bottom:824.219067pt;}
.y266{bottom:827.296000pt;}
.y29b{bottom:828.490667pt;}
.y109{bottom:829.686667pt;}
.y25{bottom:830.440000pt;}
.y8b{bottom:830.570667pt;}
.yce{bottom:830.882667pt;}
.y13c{bottom:831.281333pt;}
.y143{bottom:832.763067pt;}
.y58{bottom:833.656000pt;}
.y179{bottom:839.360961pt;}
.y29a{bottom:843.833333pt;}
.y265{bottom:844.033333pt;}
.y8a{bottom:846.021333pt;}
.y108{bottom:846.424000pt;}
.y178{bottom:847.492847pt;}
.ycd{bottom:847.620000pt;}
.y13b{bottom:848.018667pt;}
.y57{bottom:850.393333pt;}
.y299{bottom:859.176000pt;}
.y264{bottom:860.770667pt;}
.y89{bottom:861.053333pt;}
.y107{bottom:863.161333pt;}
.ycc{bottom:864.357333pt;}
.y13a{bottom:864.754667pt;}
.y56{bottom:867.130667pt;}
.y8{bottom:867.976000pt;}
.y1b5{bottom:872.859187pt;}
.y298{bottom:874.518667pt;}
.y88{bottom:875.665333pt;}
.y263{bottom:877.508000pt;}
.y106{bottom:879.898667pt;}
.ycb{bottom:881.094667pt;}
.y1b4{bottom:881.419067pt;}
.y139{bottom:881.492000pt;}
.y142{bottom:882.683187pt;}
.y87{bottom:882.970667pt;}
.y55{bottom:883.868000pt;}
.y7{bottom:884.713333pt;}
.y297{bottom:889.861333pt;}
.y141{bottom:891.243067pt;}
.y262{bottom:894.245333pt;}
.y105{bottom:896.636000pt;}
.y138{bottom:898.229333pt;}
.y54{bottom:900.605333pt;}
.yca{bottom:901.816000pt;}
.y86{bottom:904.889333pt;}
.y296{bottom:905.204000pt;}
.y261{bottom:910.982667pt;}
.y85{bottom:912.194667pt;}
.y137{bottom:914.966667pt;}
.y53{bottom:917.342667pt;}
.y104{bottom:917.358667pt;}
.y295{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y260{bottom:927.720000pt;}
.yc9{bottom:931.704000pt;}
.y52{bottom:934.080000pt;}
.y103{bottom:935.290667pt;}
.y294{bottom:935.889333pt;}
.y84{bottom:940.514667pt;}
.y25f{bottom:944.456000pt;}
.yc7{bottom:946.014667pt;}
.y83{bottom:947.820000pt;}
.yc6{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y51{bottom:950.817333pt;}
.y293{bottom:951.230667pt;}
.yc8{bottom:953.264000pt;}
.y25e{bottom:961.193333pt;}
.yc4{bottom:965.178667pt;}
.y292{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.yc5{bottom:970.001333pt;}
.y4{bottom:975.722667pt;}
.yc3{bottom:981.916000pt;}
.y82{bottom:983.233333pt;}
.y4f{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.h3b{height:14.749325pt;}
.h2d{height:17.207546pt;}
.h27{height:17.453542pt;}
.h18{height:18.682573pt;}
.h1b{height:19.396122pt;}
.h7{height:22.673858pt;}
.h17{height:23.209028pt;}
.h31{height:23.359375pt;}
.h32{height:26.890973pt;}
.ha{height:27.076941pt;}
.h39{height:27.242274pt;}
.hb{height:27.262909pt;}
.h37{height:27.492941pt;}
.h3a{height:27.498274pt;}
.h19{height:29.397999pt;}
.h9{height:29.433775pt;}
.h2a{height:29.514570pt;}
.h29{height:29.771219pt;}
.h8{height:30.399505pt;}
.hc{height:30.945242pt;}
.h21{height:31.067969pt;}
.h12{height:31.157778pt;}
.h20{height:31.338125pt;}
.hd{height:34.574438pt;}
.he{height:34.813542pt;}
.h23{height:35.039062pt;}
.hf{height:35.052646pt;}
.h30{height:35.343750pt;}
.h2b{height:37.059648pt;}
.h3d{height:37.208209pt;}
.h2c{height:37.381906pt;}
.h10{height:38.415786pt;}
.h24{height:38.462187pt;}
.h11{height:38.681455pt;}
.h4{height:38.947124pt;}
.h25{height:39.010156pt;}
.h22{height:39.349375pt;}
.h6{height:39.531597pt;}
.h1e{height:40.394973pt;}
.h16{height:42.762274pt;}
.h26{height:44.436941pt;}
.h2{height:45.272024pt;}
.h36{height:45.674274pt;}
.h35{height:45.909639pt;}
.h38{height:46.095607pt;}
.h3c{height:46.110362pt;}
.h1a{height:58.389999pt;}
.h33{height:63.664306pt;}
.h1c{height:63.795772pt;}
.h13{height:63.801105pt;}
.h15{height:64.034876pt;}
.h14{height:64.040209pt;}
.h34{height:64.085639pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h1d{height:93.022438pt;}
.h28{height:281.202533pt;}
.h2e{height:315.222667pt;}
.h2f{height:356.654667pt;}
.h1f{height:366.478667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w5{width:522.232733pt;}
.w7{width:580.652667pt;}
.w6{width:627.029333pt;}
.w4{width:630.019600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8c{left:-76.538333pt;}
.xa3{left:-60.218000pt;}
.x90{left:-58.525383pt;}
.x7c{left:-34.436400pt;}
.x7d{left:-9.556400pt;}
.x7e{left:-6.116400pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.x72{left:57.306667pt;}
.xb6{left:58.672000pt;}
.xb3{left:62.678667pt;}
.x76{left:65.765333pt;}
.xb5{left:67.844000pt;}
.xb4{left:69.644000pt;}
.x36{left:72.409333pt;}
.x77{left:74.068000pt;}
.x3b{left:76.346667pt;}
.x38{left:78.216000pt;}
.x9c{left:79.909333pt;}
.x7b{left:81.841733pt;}
.x3c{left:83.641333pt;}
.x37{left:84.857333pt;}
.x39{left:86.518667pt;}
.x8e{left:88.609165pt;}
.xbc{left:89.676000pt;}
.xbd{left:94.325333pt;}
.xa9{left:97.944000pt;}
.xa2{left:106.524667pt;}
.xa4{left:113.622000pt;}
.x8d{left:115.513667pt;}
.x82{left:127.153333pt;}
.x83{left:131.054667pt;}
.x84{left:137.032000pt;}
.x7f{left:139.403600pt;}
.xa5{left:141.942000pt;}
.xac{left:151.317333pt;}
.xad{left:159.365333pt;}
.x80{left:167.722792pt;}
.x71{left:199.454667pt;}
.xaf{left:204.217333pt;}
.xb7{left:207.390667pt;}
.xb8{left:212.138667pt;}
.xae{left:218.030667pt;}
.xb9{left:219.358667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x35{left:230.376000pt;}
.x3a{left:239.825333pt;}
.x5e{left:248.889333pt;}
.x8{left:251.365333pt;}
.xba{left:254.113333pt;}
.x2e{left:258.654667pt;}
.x15{left:261.796000pt;}
.xbb{left:264.256000pt;}
.x2f{left:265.296000pt;}
.x34{left:266.726667pt;}
.x16{left:268.438667pt;}
.xb0{left:272.356000pt;}
.x6{left:275.070667pt;}
.x4c{left:276.989333pt;}
.x17{left:281.854667pt;}
.x7{left:285.508000pt;}
.x50{left:289.005333pt;}
.x55{left:292.822667pt;}
.x11{left:294.386667pt;}
.x56{left:298.534667pt;}
.x12{left:301.028000pt;}
.x9d{left:306.386667pt;}
.x57{left:310.809333pt;}
.x85{left:315.464000pt;}
.x25{left:316.949333pt;}
.x64{left:318.405333pt;}
.x86{left:322.769333pt;}
.x65{left:324.456000pt;}
.x26{left:330.233333pt;}
.xbe{left:336.170667pt;}
.xd{left:339.774667pt;}
.x4d{left:340.693333pt;}
.x89{left:343.293333pt;}
.xe{left:346.416000pt;}
.xf{left:349.670667pt;}
.x9{left:352.997333pt;}
.x10{left:356.312000pt;}
.xa{left:359.638667pt;}
.x1a{left:362.520000pt;}
.xa1{left:371.950667pt;}
.x1b{left:375.804000pt;}
.x1c{left:379.058667pt;}
.x27{left:381.641333pt;}
.x4e{left:386.921333pt;}
.xa7{left:389.862000pt;}
.x1d{left:392.341333pt;}
.xa8{left:393.782000pt;}
.x28{left:394.924000pt;}
.x4f{left:399.414667pt;}
.xa6{left:402.742000pt;}
.x23{left:405.606667pt;}
.x6c{left:411.137333pt;}
.x93{left:414.013333pt;}
.x6d{left:417.186667pt;}
.x24{left:418.889333pt;}
.xb1{left:422.185333pt;}
.x9f{left:423.614667pt;}
.x61{left:426.296000pt;}
.x79{left:427.474667pt;}
.x52{left:431.356000pt;}
.xa0{left:436.897333pt;}
.x43{left:437.872000pt;}
.x7a{left:440.758667pt;}
.x62{left:443.641333pt;}
.x68{left:446.474667pt;}
.x44{left:451.154667pt;}
.x98{left:457.621333pt;}
.x69{left:460.489333pt;}
.x30{left:464.602667pt;}
.x73{left:466.096000pt;}
.x48{left:469.104000pt;}
.x6e{left:470.594667pt;}
.x99{left:474.338667pt;}
.x9e{left:475.628000pt;}
.xb2{left:476.821333pt;}
.x31{left:477.886667pt;}
.x49{left:482.386667pt;}
.x32{left:483.746667pt;}
.x53{left:491.778667pt;}
.x21{left:495.781333pt;}
.x33{left:497.030667pt;}
.x63{left:502.113333pt;}
.x54{left:505.062667pt;}
.xb{left:507.346667pt;}
.x22{left:509.065333pt;}
.x66{left:512.649333pt;}
.xc{left:513.988000pt;}
.x87{left:517.206667pt;}
.x67{left:518.698667pt;}
.x3d{left:521.394667pt;}
.x3e{left:529.120000pt;}
.x8f{left:533.209925pt;}
.x58{left:537.294667pt;}
.xaa{left:539.360000pt;}
.x9a{left:541.549333pt;}
.x59{left:543.345333pt;}
.x9b{left:547.526667pt;}
.x94{left:560.214667pt;}
.x75{left:570.333333pt;}
.x8a{left:572.462667pt;}
.x8b{left:585.746667pt;}
.x96{left:586.720000pt;}
.x29{left:590.318667pt;}
.x3f{left:594.392000pt;}
.x5f{left:597.166667pt;}
.x78{left:599.418667pt;}
.x40{left:600.442667pt;}
.x2a{left:603.601333pt;}
.x2b{left:606.962667pt;}
.xc4{left:609.362667pt;}
.x74{left:612.996000pt;}
.x60{left:614.512000pt;}
.x2c{left:620.246667pt;}
.x97{left:630.946165pt;}
.x2d{left:633.024000pt;}
.x81{left:634.044240pt;}
.xc3{left:642.644000pt;}
.x45{left:645.433333pt;}
.x46{left:651.144000pt;}
.xc6{left:655.505333pt;}
.x6f{left:658.609333pt;}
.x95{left:660.368000pt;}
.x18{left:661.890667pt;}
.x88{left:665.868000pt;}
.x19{left:668.532000pt;}
.xbf{left:670.636000pt;}
.x70{left:671.893333pt;}
.x5a{left:673.117333pt;}
.x1e{left:674.925333pt;}
.x47{left:677.766667pt;}
.xc7{left:679.416000pt;}
.x13{left:689.782667pt;}
.x5b{left:690.882667pt;}
.xc0{left:694.545333pt;}
.x14{left:696.424000pt;}
.x51{left:698.014667pt;}
.x4a{left:700.406667pt;}
.xc5{left:701.884000pt;}
.xab{left:703.010667pt;}
.x91{left:708.362667pt;}
.x41{left:710.786667pt;}
.x4b{left:713.690667pt;}
.x42{left:716.837333pt;}
.xc1{left:720.236000pt;}
.x92{left:725.076000pt;}
.x5c{left:726.110667pt;}
.x1f{left:727.945333pt;}
.x6a{left:730.421333pt;}
.x6b{left:736.470667pt;}
.x5d{left:740.126667pt;}
.x20{left:741.228000pt;}
.xc2{left:744.146667pt;}
}




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