
    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_0b25ec4798c3485b69eb59fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ec9f27000da594407d58e990.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d34ce0805d2d4ee54cb1fab1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_ebd67ae67afbd5ba2b5aab97.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c495df3f690ece5c167654f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f4269067b62bb6cb08c8ff61.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.014000;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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ac278b52ceeab6e8c69baf4a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.897000;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_60528758543edf799cbe2ced.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_552f308ee536ecb74d4dd768.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_71917c8932a3a0768b58330a.woff2')format("woff");}.fff{font-family:fff;line-height:1.014000;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_62a6ebe945ca5a6dc28d2870.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.963000;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_bcebcdf43c1e3d18c30e3f76.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914000;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_c6bbbe9615214895352d3810.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.543000;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_dc0987890a9c9596d54742cb.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_d9183f2ac209241f2add3bdf.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9a254b533f7029f8f2e21a53.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.694000;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_370e95ee7c6a6e9886702ee4.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.869000;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;}
.m4{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);}
.m10{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);}
.m25{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);}
.m13{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);}
.m16{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);}
.m5{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);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m1a{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);}
.m1f{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);}
.m26{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);}
.m7{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);}
.m12{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);}
.m21{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);}
.m17{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);}
.mf{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);}
.me{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);}
.ma{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);}
.md{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);}
.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);}
.m2{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);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.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);}
.m24{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);}
.m20{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);}
.m1d{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);}
.m18{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);}
.m8{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);}
.m1c{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);}
.m6{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);}
.m1b{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);}
.m11{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);}
.m22{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);}
.m9{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);}
.m27{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);}
.m14{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);}
.m19{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);}
.m28{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);}
.mc{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-70.638000px;}
.v3{vertical-align:-58.428000px;}
.v7{vertical-align:-56.160000px;}
.v6{vertical-align:-46.746000px;}
.v29{vertical-align:-33.870240px;}
.v2c{vertical-align:-31.428000px;}
.v19{vertical-align:-30.067320px;}
.v11{vertical-align:-22.896900px;}
.v18{vertical-align:-21.630720px;}
.v23{vertical-align:-16.610040px;}
.v4{vertical-align:-12.210000px;}
.v8{vertical-align:-11.202000px;}
.v1{vertical-align:-10.164000px;}
.v9{vertical-align:-8.970000px;}
.v2{vertical-align:-7.806000px;}
.v12{vertical-align:-3.374400px;}
.v13{vertical-align:-2.017800px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.110000px;}
.v22{vertical-align:3.163080px;}
.v1c{vertical-align:4.515000px;}
.v26{vertical-align:5.975280px;}
.ve{vertical-align:7.806000px;}
.v16{vertical-align:8.921640px;}
.va{vertical-align:10.848000px;}
.v1e{vertical-align:16.852560px;}
.vc{vertical-align:19.530000px;}
.v27{vertical-align:22.353120px;}
.v1b{vertical-align:26.192160px;}
.v14{vertical-align:27.948000px;}
.vf{vertical-align:31.230300px;}
.vb{vertical-align:32.874000px;}
.v1d{vertical-align:35.366640px;}
.v2d{vertical-align:37.011600px;}
.v28{vertical-align:38.746440px;}
.v17{vertical-align:43.999320px;}
.v2a{vertical-align:46.040400px;}
.v10{vertical-align:49.168200px;}
.v25{vertical-align:51.966360px;}
.v15{vertical-align:55.890900px;}
.v24{vertical-align:61.883880px;}
.v21{vertical-align:64.675440px;}
.v1a{vertical-align:66.146040px;}
.v30{vertical-align:67.683600px;}
.v2b{vertical-align:69.222600px;}
.v20{vertical-align:74.598120px;}
.v2f{vertical-align:78.067800px;}
.v1f{vertical-align:104.629320px;}
.v2e{vertical-align:109.495800px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000099px;}
.ls2c{letter-spacing:0.000150px;}
.ls1b{letter-spacing:0.000309px;}
.lsd2{letter-spacing:0.000447px;}
.ls18{letter-spacing:0.000501px;}
.ls4{letter-spacing:0.000507px;}
.ls31{letter-spacing:0.000585px;}
.ls3a{letter-spacing:0.000600px;}
.ls1e{letter-spacing:0.000846px;}
.lsd{letter-spacing:0.000897px;}
.lsd1{letter-spacing:0.001036px;}
.ls38{letter-spacing:0.001117px;}
.ls19{letter-spacing:0.001127px;}
.ls75{letter-spacing:0.001131px;}
.ls45{letter-spacing:0.001135px;}
.ls6{letter-spacing:0.001193px;}
.ls2d{letter-spacing:0.001275px;}
.ls6c{letter-spacing:0.001350px;}
.ls4d{letter-spacing:0.001421px;}
.ls3{letter-spacing:0.001518px;}
.lsa0{letter-spacing:0.001528px;}
.ls32{letter-spacing:0.001546px;}
.ls2f{letter-spacing:0.001555px;}
.lsbe{letter-spacing:0.001599px;}
.ls16{letter-spacing:0.001673px;}
.ls1c{letter-spacing:0.002016px;}
.ls5c{letter-spacing:0.002032px;}
.ls8f{letter-spacing:0.002122px;}
.ls14{letter-spacing:0.002224px;}
.lsa5{letter-spacing:0.002453px;}
.lsc6{letter-spacing:0.002567px;}
.lsce{letter-spacing:0.002573px;}
.ls98{letter-spacing:0.002723px;}
.ls64{letter-spacing:0.002725px;}
.ls88{letter-spacing:0.002755px;}
.lscd{letter-spacing:0.002818px;}
.ls90{letter-spacing:0.002838px;}
.lsb9{letter-spacing:0.002850px;}
.ls42{letter-spacing:0.002854px;}
.lsa7{letter-spacing:0.002927px;}
.ls7{letter-spacing:0.002958px;}
.lsb3{letter-spacing:0.002970px;}
.ls97{letter-spacing:0.003096px;}
.lsbb{letter-spacing:0.003136px;}
.ls28{letter-spacing:0.003208px;}
.ls8d{letter-spacing:0.003280px;}
.ls49{letter-spacing:0.003300px;}
.lscc{letter-spacing:0.003307px;}
.lscb{letter-spacing:0.003379px;}
.ls2a{letter-spacing:0.003394px;}
.lsa{letter-spacing:0.003488px;}
.ls5{letter-spacing:0.003494px;}
.ls40{letter-spacing:0.003598px;}
.ls56{letter-spacing:0.003600px;}
.lsc7{letter-spacing:0.003645px;}
.ls3b{letter-spacing:0.003943px;}
.ls8c{letter-spacing:0.004176px;}
.ls33{letter-spacing:0.004200px;}
.ls11{letter-spacing:0.004277px;}
.ls77{letter-spacing:0.004560px;}
.ls48{letter-spacing:0.004800px;}
.ls8{letter-spacing:0.005040px;}
.ls1d{letter-spacing:0.005165px;}
.lsc{letter-spacing:0.005415px;}
.lsc9{letter-spacing:0.005424px;}
.lsa2{letter-spacing:0.308718px;}
.lsa1{letter-spacing:0.321092px;}
.lsc0{letter-spacing:0.323077px;}
.lsbf{letter-spacing:0.336026px;}
.lsae{letter-spacing:0.402379px;}
.lsb0{letter-spacing:0.407539px;}
.lsaf{letter-spacing:0.451643px;}
.lsa4{letter-spacing:0.518618px;}
.ls93{letter-spacing:0.523778px;}
.lscf{letter-spacing:0.524565px;}
.lsd0{letter-spacing:0.530447px;}
.ls25{letter-spacing:0.535346px;}
.lsca{letter-spacing:0.537859px;}
.ls26{letter-spacing:0.541346px;}
.lsc3{letter-spacing:0.542739px;}
.lsb2{letter-spacing:0.548139px;}
.ls68{letter-spacing:0.572892px;}
.ls70{letter-spacing:0.578592px;}
.ls27{letter-spacing:0.594716px;}
.ls29{letter-spacing:0.600716px;}
.ls51{letter-spacing:0.603044px;}
.ls69{letter-spacing:0.639677px;}
.ls24{letter-spacing:0.670741px;}
.ls21{letter-spacing:0.676741px;}
.ls44{letter-spacing:0.745518px;}
.ls22{letter-spacing:0.747986px;}
.ls46{letter-spacing:0.751518px;}
.lsb{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls9b{letter-spacing:2.568259px;}
.ls99{letter-spacing:2.570196px;}
.lsa6{letter-spacing:2.570852px;}
.lsab{letter-spacing:2.571486px;}
.lsba{letter-spacing:2.689740px;}
.lsc2{letter-spacing:2.690426px;}
.ls5d{letter-spacing:2.983200px;}
.ls39{letter-spacing:2.989200px;}
.lsa9{letter-spacing:3.144246px;}
.lsa3{letter-spacing:3.149406px;}
.ls94{letter-spacing:3.151339px;}
.lsb4{letter-spacing:3.292513px;}
.lsc1{letter-spacing:3.295890px;}
.lsb7{letter-spacing:3.297913px;}
.ls9f{letter-spacing:6.168602px;}
.lsbd{letter-spacing:6.455514px;}
.ls8b{letter-spacing:8.006693px;}
.ls87{letter-spacing:8.012693px;}
.ls86{letter-spacing:8.032743px;}
.ls96{letter-spacing:8.991189px;}
.ls9d{letter-spacing:8.996349px;}
.ls9c{letter-spacing:8.996976px;}
.lsad{letter-spacing:9.021486px;}
.lsb6{letter-spacing:9.414783px;}
.ls95{letter-spacing:9.517658px;}
.ls7c{letter-spacing:9.872693px;}
.ls7e{letter-spacing:9.878693px;}
.ls7b{letter-spacing:9.898743px;}
.ls71{letter-spacing:9.933960px;}
.ls6f{letter-spacing:9.937827px;}
.ls6e{letter-spacing:9.938985px;}
.lsb5{letter-spacing:9.960339px;}
.ls5a{letter-spacing:10.346693px;}
.ls59{letter-spacing:10.372743px;}
.ls50{letter-spacing:10.454870px;}
.ls53{letter-spacing:10.460870px;}
.ls4f{letter-spacing:10.462090px;}
.ls52{letter-spacing:10.462800px;}
.ls81{letter-spacing:10.640057px;}
.ls89{letter-spacing:11.017200px;}
.ls61{letter-spacing:11.018693px;}
.ls8a{letter-spacing:11.023200px;}
.ls60{letter-spacing:11.038743px;}
.ls8e{letter-spacing:11.668226px;}
.ls9{letter-spacing:11.954850px;}
.lsc8{letter-spacing:12.098612px;}
.ls37{letter-spacing:12.339483px;}
.ls7f{letter-spacing:12.345483px;}
.ls3f{letter-spacing:12.367518px;}
.ls36{letter-spacing:12.373518px;}
.ls76{letter-spacing:12.774270px;}
.ls7d{letter-spacing:12.884755px;}
.ls5b{letter-spacing:13.363200px;}
.ls92{letter-spacing:13.405755px;}
.ls85{letter-spacing:13.856693px;}
.ls7a{letter-spacing:13.868693px;}
.ls62{letter-spacing:14.029200px;}
.lsb1{letter-spacing:14.029279px;}
.lse{letter-spacing:14.704798px;}
.ls2b{letter-spacing:14.764573px;}
.ls74{letter-spacing:14.808683px;}
.lsf{letter-spacing:14.884124px;}
.ls10{letter-spacing:14.943900px;}
.ls63{letter-spacing:15.034484px;}
.ls17{letter-spacing:15.123227px;}
.ls2e{letter-spacing:15.183002px;}
.ls15{letter-spacing:15.302554px;}
.ls41{letter-spacing:15.355200px;}
.ls65{letter-spacing:15.357943px;}
.ls3c{letter-spacing:15.361200px;}
.ls13{letter-spacing:15.362329px;}
.ls91{letter-spacing:15.999739px;}
.ls58{letter-spacing:16.232693px;}
.ls84{letter-spacing:16.868755px;}
.ls79{letter-spacing:16.880755px;}
.ls35{letter-spacing:17.319483px;}
.ls23{letter-spacing:17.325483px;}
.ls67{letter-spacing:17.929200px;}
.ls82{letter-spacing:18.619200px;}
.ls20{letter-spacing:19.062318px;}
.ls57{letter-spacing:19.244755px;}
.ls1f{letter-spacing:19.546621px;}
.ls5f{letter-spacing:19.574693px;}
.lsaa{letter-spacing:19.577115px;}
.ls3e{letter-spacing:20.337943px;}
.ls34{letter-spacing:20.343943px;}
.ls47{letter-spacing:20.617200px;}
.ls9e{letter-spacing:21.119955px;}
.lsbc{letter-spacing:22.096879px;}
.lsc5{letter-spacing:22.102279px;}
.ls5e{letter-spacing:22.586755px;}
.ls1a{letter-spacing:23.133157px;}
.ls1{letter-spacing:32.009510px;}
.ls9a{letter-spacing:112.955496px;}
.lsb8{letter-spacing:177.106539px;}
.ls54{letter-spacing:242.133044px;}
.ls4a{letter-spacing:285.529151px;}
.ls4b{letter-spacing:285.535151px;}
.ls30{letter-spacing:338.976600px;}
.lsa8{letter-spacing:481.970316px;}
.lsc4{letter-spacing:513.059940px;}
.lsac{letter-spacing:519.258887px;}
.ls4e{letter-spacing:579.990600px;}
.ls80{letter-spacing:591.519943px;}
.ls4c{letter-spacing:596.501952px;}
.ls43{letter-spacing:601.395943px;}
.ls55{letter-spacing:607.728600px;}
.ls3d{letter-spacing:633.969943px;}
.ls78{letter-spacing:676.676631px;}
.ls72{letter-spacing:680.326392px;}
.ls83{letter-spacing:693.100092px;}
.ls6a{letter-spacing:746.856792px;}
.ls66{letter-spacing:876.807943px;}
.ls6d{letter-spacing:1014.064770px;}
.ls6b{letter-spacing:1029.750554px;}
.ls73{letter-spacing:1040.415870px;}
.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;}
}
.ws7f{word-spacing:-46.065614px;}
.ws55{word-spacing:-41.603818px;}
.wsff{word-spacing:-38.185739px;}
.wsee{word-spacing:-36.488595px;}
.ws9c{word-spacing:-36.367718px;}
.ws5e{word-spacing:-33.283138px;}
.wsea{word-spacing:-32.201570px;}
.wsbc{word-spacing:-26.121937px;}
.ws89{word-spacing:-23.970016px;}
.wsb3{word-spacing:-20.545609px;}
.wsfb{word-spacing:-19.464261px;}
.ws6c{word-spacing:-19.223881px;}
.wse9{word-spacing:-18.599183px;}
.ws23{word-spacing:-17.394700px;}
.wsa1{word-spacing:-16.617617px;}
.ws1{word-spacing:-16.529216px;}
.wsa9{word-spacing:-15.655334px;}
.ws4e{word-spacing:-15.342228px;}
.wsa{word-spacing:-14.943900px;}
.wsf1{word-spacing:-14.465893px;}
.wsa0{word-spacing:-13.915795px;}
.ws74{word-spacing:-13.449600px;}
.wsd8{word-spacing:-13.307034px;}
.wsf7{word-spacing:-12.104640px;}
.ws1f{word-spacing:-11.955150px;}
.wse6{word-spacing:-11.566656px;}
.wsd7{word-spacing:-11.432160px;}
.ws7e{word-spacing:-11.357400px;}
.ws92{word-spacing:-10.460700px;}
.wsf9{word-spacing:-9.414630px;}
.wse8{word-spacing:-8.996202px;}
.wsfd{word-spacing:-6.724755px;}
.wsed{word-spacing:-6.425877px;}
.ws84{word-spacing:-4.722272px;}
.wsb6{word-spacing:-4.303843px;}
.ws24{word-spacing:-3.765863px;}
.ws50{word-spacing:-3.706087px;}
.ws22{word-spacing:-3.526760px;}
.ws1a{word-spacing:-3.407209px;}
.ws39{word-spacing:-3.168107px;}
.wsbf{word-spacing:-3.156160px;}
.wsba{word-spacing:-2.869229px;}
.wsc7{word-spacing:-2.809453px;}
.ws118{word-spacing:-2.367130px;}
.ws36{word-spacing:-2.032370px;}
.ws40{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.908367px;}
.wsbd{word-spacing:-1.793268px;}
.ws3b{word-spacing:-1.733492px;}
.wscd{word-spacing:-1.673717px;}
.wsa2{word-spacing:-1.613941px;}
.wsb9{word-spacing:-1.554166px;}
.wsbb{word-spacing:-1.494390px;}
.ws62{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws4a{word-spacing:-1.315063px;}
.ws111{word-spacing:-1.291162px;}
.ws12{word-spacing:-1.255288px;}
.ws113{word-spacing:-1.237363px;}
.ws81{word-spacing:-1.195512px;}
.ws11d{word-spacing:-1.183565px;}
.wsc8{word-spacing:-1.135736px;}
.ws6d{word-spacing:-1.099874px;}
.ws121{word-spacing:-1.075968px;}
.wscb{word-spacing:-1.075961px;}
.ws100{word-spacing:-1.022170px;}
.ws1c{word-spacing:-1.016185px;}
.ws120{word-spacing:-0.806976px;}
.ws73{word-spacing:-0.777083px;}
.ws13{word-spacing:-0.717307px;}
.ws3d{word-spacing:-0.597756px;}
.wsc0{word-spacing:-0.526027px;}
.wsb4{word-spacing:-0.478206px;}
.ws6f{word-spacing:-0.430385px;}
.ws17{word-spacing:-0.358654px;}
.ws10{word-spacing:-0.298878px;}
.wse4{word-spacing:-0.286924px;}
.ws102{word-spacing:-0.268992px;}
.ws26{word-spacing:-0.239102px;}
.ws117{word-spacing:-0.215194px;}
.ws9e{word-spacing:-0.191282px;}
.ws14{word-spacing:-0.179327px;}
.ws10a{word-spacing:-0.161395px;}
.ws7c{word-spacing:-0.143462px;}
.ws16{word-spacing:-0.119551px;}
.ws116{word-spacing:-0.107597px;}
.ws61{word-spacing:-0.095641px;}
.wsb8{word-spacing:-0.062287px;}
.ws8{word-spacing:-0.059776px;}
.ws58{word-spacing:-0.053798px;}
.wsb1{word-spacing:-0.051108px;}
.wsf5{word-spacing:-0.048419px;}
.ws20{word-spacing:-0.047821px;}
.wse7{word-spacing:-0.046267px;}
.ws53{word-spacing:-0.045430px;}
.ws91{word-spacing:-0.041843px;}
.wsf8{word-spacing:-0.037659px;}
.wsf2{word-spacing:-0.037496px;}
.wse5{word-spacing:-0.035985px;}
.ws5b{word-spacing:-0.035866px;}
.wsfc{word-spacing:-0.026899px;}
.wsec{word-spacing:-0.025704px;}
.ws86{word-spacing:-0.001991px;}
.ws0{word-spacing:0.000000px;}
.ws76{word-spacing:0.001555px;}
.ws5f{word-spacing:0.047821px;}
.ws109{word-spacing:0.053798px;}
.ws5{word-spacing:0.059776px;}
.ws6e{word-spacing:0.095641px;}
.ws105{word-spacing:0.107597px;}
.ws1d{word-spacing:0.119551px;}
.ws60{word-spacing:0.143462px;}
.ws4d{word-spacing:0.158167px;}
.ws10e{word-spacing:0.161395px;}
.ws35{word-spacing:0.179327px;}
.ws5c{word-spacing:0.191282px;}
.ws10b{word-spacing:0.215194px;}
.wsd{word-spacing:0.239102px;}
.ws106{word-spacing:0.268992px;}
.ws9f{word-spacing:0.286924px;}
.ws25{word-spacing:0.298878px;}
.ws37{word-spacing:0.358654px;}
.ws88{word-spacing:0.418429px;}
.ws114{word-spacing:0.430387px;}
.ws3f{word-spacing:0.478205px;}
.ws6b{word-spacing:0.526027px;}
.ws4b{word-spacing:0.597756px;}
.ws7b{word-spacing:0.765130px;}
.ws49{word-spacing:0.777083px;}
.ws15{word-spacing:0.836858px;}
.ws44{word-spacing:0.956410px;}
.ws48{word-spacing:1.075961px;}
.ws8b{word-spacing:1.135736px;}
.ws90{word-spacing:1.315063px;}
.ws123{word-spacing:1.398758px;}
.ws8c{word-spacing:1.434614px;}
.ws9b{word-spacing:1.434618px;}
.ws8e{word-spacing:1.494390px;}
.ws41{word-spacing:1.554166px;}
.ws66{word-spacing:1.673717px;}
.ws30{word-spacing:1.733492px;}
.ws11f{word-spacing:1.775347px;}
.ws7d{word-spacing:1.793268px;}
.ws71{word-spacing:1.853044px;}
.wsb5{word-spacing:1.912819px;}
.ws38{word-spacing:1.972595px;}
.ws51{word-spacing:2.092146px;}
.ws5d{word-spacing:2.151927px;}
.ws31{word-spacing:2.391024px;}
.ws63{word-spacing:2.450800px;}
.wscc{word-spacing:2.689902px;}
.ws11{word-spacing:2.809453px;}
.ws8d{word-spacing:2.869229px;}
.ws8f{word-spacing:2.929004px;}
.wsa4{word-spacing:2.988780px;}
.ws3c{word-spacing:3.048556px;}
.wsc5{word-spacing:3.168107px;}
.ws68{word-spacing:3.287658px;}
.wsce{word-spacing:3.335501px;}
.ws19{word-spacing:3.407209px;}
.wsa5{word-spacing:3.526760px;}
.ws2a{word-spacing:3.586536px;}
.ws2e{word-spacing:3.706087px;}
.wscf{word-spacing:3.819686px;}
.wsa3{word-spacing:3.825638px;}
.ws9d{word-spacing:3.825648px;}
.ws45{word-spacing:3.885414px;}
.wsf0{word-spacing:3.942531px;}
.wsca{word-spacing:3.945190px;}
.ws18{word-spacing:4.064741px;}
.ws110{word-spacing:4.088678px;}
.ws52{word-spacing:4.124516px;}
.ws46{word-spacing:4.184292px;}
.ws69{word-spacing:4.244068px;}
.wsc9{word-spacing:4.303843px;}
.ws72{word-spacing:4.483170px;}
.ws47{word-spacing:4.542946px;}
.ws1b{word-spacing:4.602721px;}
.wsc{word-spacing:4.722272px;}
.ws8a{word-spacing:4.901599px;}
.ws2d{word-spacing:5.080926px;}
.ws42{word-spacing:5.320028px;}
.ws126{word-spacing:5.376768px;}
.wsd1{word-spacing:5.378822px;}
.ws101{word-spacing:5.379485px;}
.wsb{word-spacing:5.379804px;}
.ws2{word-spacing:5.379840px;}
.wsd0{word-spacing:5.541235px;}
.ws104{word-spacing:5.595034px;}
.ws80{word-spacing:5.618906px;}
.wsa8{word-spacing:5.678682px;}
.ws10d{word-spacing:5.702630px;}
.wsa7{word-spacing:5.738458px;}
.wse{word-spacing:5.971475px;}
.wsf{word-spacing:5.977560px;}
.ws6{word-spacing:6.037336px;}
.ws4c{word-spacing:6.216662px;}
.ws85{word-spacing:6.572400px;}
.ws43{word-spacing:6.575316px;}
.ws65{word-spacing:6.694867px;}
.ws3a{word-spacing:6.933970px;}
.ws67{word-spacing:6.993745px;}
.ws2f{word-spacing:7.173072px;}
.ws2b{word-spacing:7.412174px;}
.ws127{word-spacing:7.585574px;}
.ws2c{word-spacing:8.129482px;}
.ws70{word-spacing:8.308808px;}
.ws125{word-spacing:8.338752px;}
.wsa6{word-spacing:9.504320px;}
.ws122{word-spacing:9.952704px;}
.wsc4{word-spacing:10.580281px;}
.wsc6{word-spacing:11.656242px;}
.ws1e{word-spacing:11.907329px;}
.ws112{word-spacing:12.104640px;}
.ws11a{word-spacing:12.158438px;}
.ws11e{word-spacing:12.212237px;}
.wsad{word-spacing:12.726012px;}
.wsab{word-spacing:12.728419px;}
.wsc1{word-spacing:13.031081px;}
.ws103{word-spacing:13.126810px;}
.wsaa{word-spacing:13.360846px;}
.wsb0{word-spacing:13.360864px;}
.ws11c{word-spacing:13.386970px;}
.ws108{word-spacing:13.393334px;}
.ws94{word-spacing:13.395802px;}
.ws128{word-spacing:13.449600px;}
.ws10f{word-spacing:13.557197px;}
.ws10c{word-spacing:13.610995px;}
.ws107{word-spacing:13.664794px;}
.ws115{word-spacing:13.826189px;}
.ws27{word-spacing:13.927715px;}
.ws98{word-spacing:14.070067px;}
.wsb7{word-spacing:14.232323px;}
.wsc2{word-spacing:14.346144px;}
.wsc3{word-spacing:14.585246px;}
.wsb2{word-spacing:14.780146px;}
.ws124{word-spacing:14.794560px;}
.ws3e{word-spacing:14.882891px;}
.ws4f{word-spacing:14.884124px;}
.ws28{word-spacing:15.123227px;}
.ws82{word-spacing:15.204275px;}
.ws96{word-spacing:15.278746px;}
.ws83{word-spacing:15.576275px;}
.ws87{word-spacing:15.774275px;}
.wseb{word-spacing:15.966271px;}
.ws77{word-spacing:16.390810px;}
.ws75{word-spacing:16.395659px;}
.ws78{word-spacing:16.396810px;}
.ws119{word-spacing:16.677504px;}
.wsfe{word-spacing:16.702803px;}
.wsfa{word-spacing:16.708203px;}
.wsf6{word-spacing:16.708513px;}
.wsef{word-spacing:17.115327px;}
.ws11b{word-spacing:17.592077px;}
.ws9{word-spacing:20.263928px;}
.ws64{word-spacing:20.293147px;}
.ws7{word-spacing:20.921460px;}
.ws54{word-spacing:21.746830px;}
.ws34{word-spacing:23.671138px;}
.ws32{word-spacing:25.105752px;}
.ws29{word-spacing:26.719693px;}
.ws33{word-spacing:39.977956px;}
.wsdf{word-spacing:105.541701px;}
.wsde{word-spacing:116.973861px;}
.ws56{word-spacing:124.866086px;}
.wsd9{word-spacing:134.122101px;}
.wse0{word-spacing:145.554261px;}
.ws6a{word-spacing:151.227302px;}
.wsdd{word-spacing:151.270341px;}
.wsd2{word-spacing:162.367321px;}
.wsda{word-spacing:162.702501px;}
.wse3{word-spacing:166.315064px;}
.wsdc{word-spacing:174.134661px;}
.wse2{word-spacing:176.924108px;}
.wse1{word-spacing:177.747224px;}
.wsd5{word-spacing:184.316644px;}
.wsd6{word-spacing:184.536948px;}
.wsdb{word-spacing:188.356268px;}
.ws5a{word-spacing:196.041370px;}
.ws7a{word-spacing:226.261968px;}
.wsd4{word-spacing:230.309594px;}
.ws57{word-spacing:253.874650px;}
.ws59{word-spacing:255.381005px;}
.ws9a{word-spacing:326.072102px;}
.ws99{word-spacing:352.971302px;}
.ws97{word-spacing:366.420902px;}
.ws79{word-spacing:369.272218px;}
.ws93{word-spacing:411.288768px;}
.ws95{word-spacing:420.219302px;}
.wsf4{word-spacing:475.270096px;}
.wsd3{word-spacing:506.090699px;}
.wsf3{word-spacing:547.274984px;}
.wsac{word-spacing:563.726534px;}
.wsbe{word-spacing:589.280774px;}
.wsaf{word-spacing:602.057894px;}
.wsae{word-spacing:653.166374px;}
.ws21{word-spacing:722.951831px;}
._36{margin-left:-12.997693px;}
._0{margin-left:-11.943245px;}
._3a{margin-left:-8.346091px;}
._15{margin-left:-7.232848px;}
._2{margin-left:-5.971622px;}
._4{margin-left:-4.949453px;}
._11{margin-left:-3.511749px;}
._6{margin-left:-2.047382px;}
._3{margin-left:-1.022170px;}
._7{width:1.091170px;}
._2a{width:2.271155px;}
._1d{width:3.730676px;}
._29{width:5.668297px;}
._2e{width:8.069760px;}
._28{width:11.190023px;}
._e{width:12.567888px;}
._a0{width:14.198586px;}
._b{width:15.795770px;}
._27{width:17.071954px;}
._5{width:18.829440px;}
._9{width:20.565896px;}
._a{width:22.311310px;}
._c{width:23.671138px;}
._19{width:25.060988px;}
._18{width:26.307248px;}
._a1{width:27.706176px;}
._16{width:29.284106px;}
._17{width:30.485556px;}
._d{width:31.501741px;}
._39{width:32.883917px;}
._f{width:34.547207px;}
._8{width:35.626258px;}
._1a{width:37.356660px;}
._32{width:39.407132px;}
._a3{width:42.677157px;}
._13{width:43.695964px;}
._14{width:46.221550px;}
._1c{width:52.933322px;}
._a2{width:62.137152px;}
._12{width:63.182809px;}
._38{width:65.167373px;}
._1{width:69.373685px;}
._9d{width:87.183101px;}
._94{width:100.855920px;}
._91{width:107.174830px;}
._4b{width:119.123107px;}
._96{width:122.176519px;}
._95{width:126.703655px;}
._3f{width:133.802001px;}
._31{width:144.981249px;}
._20{width:148.268390px;}
._40{width:149.486924px;}
._1f{width:151.466358px;}
._4c{width:153.034929px;}
._6e{width:154.791446px;}
._6f{width:156.071848px;}
._72{width:158.632652px;}
._44{width:160.598984px;}
._55{width:162.336672px;}
._8b{width:163.479888px;}
._50{width:164.577375px;}
._5e{width:165.766320px;}
._97{width:166.818079px;}
._41{width:168.098481px;}
._69{width:169.104511px;}
._82{width:170.231587px;}
._3e{width:171.253757px;}
._4a{width:172.534159px;}
._62{width:173.814561px;}
._56{width:176.068127px;}
._49{width:177.747224px;}
._5a{width:181.029279px;}
._6c{width:182.594460px;}
._7e{width:183.613353px;}
._47{width:184.800194px;}
._90{width:185.932650px;}
._2c{width:187.110835px;}
._42{width:188.348671px;}
._88{width:189.501524px;}
._2b{width:190.607731px;}
._53{width:192.791946px;}
._65{width:194.621092px;}
._26{width:196.686950px;}
._4d{width:198.096468px;}
._57{width:199.783891px;}
._66{width:201.436699px;}
._54{width:202.572495px;}
._3d{width:203.610804px;}
._89{width:207.963448px;}
._7a{width:211.879619px;}
._4f{width:214.147221px;}
._43{width:218.582899px;}
._6a{width:220.823603px;}
._7d{width:221.907988px;}
._24{width:222.940570px;}
._81{width:228.293863px;}
._48{width:230.015059px;}
._79{width:231.249732px;}
._7c{width:233.536164px;}
._51{width:235.879085px;}
._7f{width:239.800988px;}
._6b{width:245.928626px;}
._4e{width:247.158762px;}
._7b{width:250.410033px;}
._77{width:251.873349px;}
._8c{width:253.062294px;}
._87{width:255.246862px;}
._5c{width:258.308224px;}
._5d{width:260.287419px;}
._8d{width:262.985409px;}
._83{width:268.497408px;}
._80{width:270.713549px;}
._22{width:271.864982px;}
._78{width:272.999981px;}
._25{width:274.264243px;}
._8a{width:275.515056px;}
._86{width:278.487418px;}
._85{width:280.682392px;}
._52{width:282.213551px;}
._5b{width:297.889569px;}
._58{width:299.979878px;}
._67{width:306.107516px;}
._59{width:307.662290px;}
._6d{width:308.830068px;}
._5f{width:311.285612px;}
._92{width:312.966812px;}
._61{width:314.133643px;}
._93{width:318.215199px;}
._9c{width:322.117392px;}
._68{width:323.667314px;}
._30{width:331.522791px;}
._8e{width:334.596459px;}
._33{width:339.462524px;}
._84{width:340.586911px;}
._70{width:341.775855px;}
._60{width:343.696458px;}
._75{width:345.149015px;}
._63{width:355.037161px;}
._21{width:356.521997px;}
._23{width:358.028352px;}
._76{width:362.976894px;}
._8f{width:371.865300px;}
._73{width:378.953240px;}
._71{width:380.553742px;}
._64{width:383.297460px;}
._9f{width:385.164772px;}
._45{width:402.148420px;}
._98{width:407.589775px;}
._74{width:411.877860px;}
._99{width:414.885544px;}
._46{width:419.331629px;}
._9b{width:463.639991px;}
._9a{width:469.470662px;}
._2f{width:577.418227px;}
._35{width:590.973469px;}
._3c{width:611.291103px;}
._2d{width:663.818458px;}
._1e{width:739.620403px;}
._9e{width:743.628384px;}
._34{width:778.215908px;}
._1b{width:976.366718px;}
._37{width:1736.270102px;}
._10{width:1760.180102px;}
._3b{width:3215.954102px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:25.703508px;}
.fs1c{font-size:26.782980px;}
.fs21{font-size:26.899020px;}
.fs22{font-size:28.028700px;}
.fs11{font-size:35.865600px;}
.fs19{font-size:35.984808px;}
.fs1d{font-size:37.496172px;}
.fs1f{font-size:37.658520px;}
.fs16{font-size:39.750660px;}
.fs12{font-size:41.842800px;}
.fsb{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:45.429600px;}
.fs17{font-size:45.728640px;}
.fs18{font-size:46.266624px;}
.fsa{font-size:47.236800px;}
.fsc{font-size:47.820600px;}
.fs1a{font-size:48.209880px;}
.fs1e{font-size:48.418560px;}
.fs10{font-size:49.829400px;}
.fs20{font-size:50.452200px;}
.fs14{font-size:51.108480px;}
.fs5{font-size:52.197584px;}
.fsd{font-size:52.722432px;}
.fs15{font-size:53.255100px;}
.fs9{font-size:53.798400px;}
.fs13{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.425340px;}
.y25{bottom:5.788613px;}
.y2f{bottom:14.151273px;}
.y24{bottom:22.317924px;}
.y23{bottom:38.654567px;}
.y53{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y52{bottom:108.612000px;}
.y1d0{bottom:113.542500px;}
.y251{bottom:114.109500px;}
.yb4{bottom:114.156000px;}
.y169{bottom:125.566500px;}
.y1cf{bottom:127.740000px;}
.y51{bottom:128.875500px;}
.y250{bottom:133.476000px;}
.yb3{bottom:134.419500px;}
.yde{bottom:135.025500px;}
.ydf{bottom:135.183000px;}
.y19a{bottom:138.208500px;}
.y21{bottom:139.264499px;}
.y1ce{bottom:141.936000px;}
.y168{bottom:145.831500px;}
.y50{bottom:149.139000px;}
.y24f{bottom:152.844000px;}
.yb2{bottom:154.683000px;}
.ydd{bottom:155.290500px;}
.y199{bottom:158.473500px;}
.y1cd{bottom:163.278750px;}
.y167{bottom:166.095000px;}
.y4f{bottom:169.404000px;}
.y24e{bottom:172.210500px;}
.yb1{bottom:174.948000px;}
.ydc{bottom:175.554000px;}
.y198{bottom:178.737000px;}
.y1cc{bottom:179.760300px;}
.y83{bottom:183.913500px;}
.y166{bottom:186.358500px;}
.y4e{bottom:189.667500px;}
.y24d{bottom:191.578500px;}
.yb0{bottom:195.211500px;}
.y1cb{bottom:195.716025px;}
.ydb{bottom:195.819000px;}
.y18{bottom:196.933500px;}
.y197{bottom:199.002000px;}
.y82{bottom:204.178500px;}
.y165{bottom:206.623500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4d{bottom:209.932500px;}
.y24c{bottom:210.946500px;}
.y1ca{bottom:211.671750px;}
.y10f{bottom:214.927500px;}
.yaf{bottom:215.476500px;}
.yda{bottom:216.082500px;}
.y196{bottom:219.265500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y81{bottom:224.442000px;}
.y164{bottom:226.887000px;}
.y4c{bottom:230.196000px;}
.y24b{bottom:230.313000px;}
.y1c8{bottom:234.131175px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y10e{bottom:235.191000px;}
.yae{bottom:235.740000px;}
.yd9{bottom:236.346000px;}
.y195{bottom:239.529000px;}
.y1c7{bottom:241.938750px;}
.y80{bottom:244.707000px;}
.y163{bottom:247.152000px;}
.y24a{bottom:249.681000px;}
.y1c9{bottom:249.747750px;}
.y21a{bottom:249.913500px;}
.y4b{bottom:250.459500px;}
.y1f7{bottom:250.604775px;}
.y10d{bottom:255.454500px;}
.yad{bottom:256.003500px;}
.yd8{bottom:256.611000px;}
.y194{bottom:259.794000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y219{bottom:264.111000px;}
.y1f6{bottom:264.880950px;}
.y7f{bottom:264.970500px;}
.y162{bottom:267.415500px;}
.y249{bottom:269.047500px;}
.y4a{bottom:270.724500px;}
.y1c5{bottom:272.205750px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y10c{bottom:275.719500px;}
.yac{bottom:276.268500px;}
.yd7{bottom:276.874500px;}
.y218{bottom:278.307000px;}
.y1f5{bottom:279.157125px;}
.y1c4{bottom:280.014750px;}
.y193{bottom:280.057500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y7e{bottom:285.234000px;}
.y161{bottom:287.679000px;}
.y1c6{bottom:287.822325px;}
.y248{bottom:288.415500px;}
.y49{bottom:290.988000px;}
.y1f4{bottom:293.433300px;}
.y10b{bottom:295.983000px;}
.yab{bottom:296.532000px;}
.yd6{bottom:297.139500px;}
.y217{bottom:299.008275px;}
.y192{bottom:300.322500px;}
.y7d{bottom:305.499000px;}
.y1f3{bottom:307.709475px;}
.y247{bottom:307.783500px;}
.y160{bottom:307.944000px;}
.y1c2{bottom:310.280325px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y48{bottom:311.253000px;}
.y216{bottom:313.284450px;}
.y10a{bottom:316.248000px;}
.yaa{bottom:316.797000px;}
.yd5{bottom:317.403000px;}
.y1c1{bottom:318.089325px;}
.y191{bottom:320.586000px;}
.y1f2{bottom:321.985650px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y7c{bottom:325.762500px;}
.y1c3{bottom:325.896900px;}
.y246{bottom:327.150000px;}
.y215{bottom:327.560625px;}
.y15f{bottom:328.207500px;}
.y139{bottom:329.488500px;}
.y47{bottom:331.516500px;}
.y1f1{bottom:336.261825px;}
.y108{bottom:336.511500px;}
.ya9{bottom:337.060500px;}
.yd4{bottom:337.666500px;}
.y190{bottom:340.849500px;}
.y214{bottom:341.836800px;}
.y7b{bottom:346.027500px;}
.y245{bottom:346.518000px;}
.yf{bottom:348.133500px;}
.y15e{bottom:348.472500px;}
.y1c0{bottom:348.695475px;}
.y138{bottom:349.753500px;}
.y1f0{bottom:350.538000px;}
.y109{bottom:351.118500px;}
.y46{bottom:351.780000px;}
.y213{bottom:356.112975px;}
.y107{bottom:356.775000px;}
.ya8{bottom:357.324000px;}
.yd3{bottom:357.931500px;}
.y18f{bottom:361.114500px;}
.y1ef{bottom:364.815450px;}
.y244{bottom:365.884500px;}
.y7a{bottom:366.291000px;}
.y15d{bottom:368.736000px;}
.y137{bottom:370.017000px;}
.y212{bottom:370.389150px;}
.y45{bottom:372.045000px;}
.y106{bottom:377.040000px;}
.ya7{bottom:377.589000px;}
.y1ee{bottom:379.091625px;}
.y1bf{bottom:379.470000px;}
.y18e{bottom:381.378000px;}
.y211{bottom:384.665325px;}
.y243{bottom:385.252500px;}
.y79{bottom:386.554500px;}
.ye{bottom:386.785499px;}
.yd2{bottom:387.162000px;}
.y15c{bottom:388.999500px;}
.y136{bottom:390.282000px;}
.y44{bottom:392.308500px;}
.y1ed{bottom:393.367800px;}
.y105{bottom:397.303500px;}
.ya6{bottom:397.852500px;}
.y210{bottom:398.942775px;}
.y18d{bottom:401.643000px;}
.yd1{bottom:404.049000px;}
.y242{bottom:404.620500px;}
.y78{bottom:406.819500px;}
.y1d5{bottom:407.581500px;}
.y1ec{bottom:407.643975px;}
.yd{bottom:408.044999px;}
.y15b{bottom:409.264500px;}
.y135{bottom:410.545500px;}
.y43{bottom:412.573500px;}
.y20f{bottom:413.218950px;}
.y1be{bottom:416.017500px;}
.y104{bottom:417.568500px;}
.ya5{bottom:418.117500px;}
.y18c{bottom:421.906500px;}
.y1eb{bottom:421.920150px;}
.y241{bottom:423.987000px;}
.y77{bottom:427.083000px;}
.y20e{bottom:427.495125px;}
.y15a{bottom:429.528000px;}
.y134{bottom:430.809000px;}
.y1d4{bottom:431.746500px;}
.y42{bottom:432.837000px;}
.y1ea{bottom:436.196325px;}
.y1bd{bottom:436.282500px;}
.y103{bottom:437.832000px;}
.ya4{bottom:438.381000px;}
.yd0{bottom:438.868500px;}
.y20d{bottom:441.771300px;}
.y240{bottom:443.355000px;}
.y273{bottom:445.056000px;}
.y76{bottom:447.348000px;}
.y159{bottom:449.793000px;}
.y1e9{bottom:450.472500px;}
.y133{bottom:451.074000px;}
.y41{bottom:453.100500px;}
.y1d3{bottom:455.910000px;}
.y20c{bottom:456.047475px;}
.y1bc{bottom:456.546000px;}
.y102{bottom:458.095500px;}
.ya3{bottom:458.644500px;}
.y18b{bottom:459.057000px;}
.y23f{bottom:462.721500px;}
.y272{bottom:464.424000px;}
.y1e8{bottom:464.748675px;}
.y75{bottom:467.611500px;}
.y158{bottom:470.056500px;}
.y20b{bottom:470.323650px;}
.y1d2{bottom:471.108000px;}
.y132{bottom:471.337500px;}
.y40{bottom:473.365500px;}
.ycf{bottom:473.688000px;}
.y1bb{bottom:476.811000px;}
.y101{bottom:478.360500px;}
.ya2{bottom:478.909500px;}
.y1e7{bottom:479.024850px;}
.y23e{bottom:482.089500px;}
.y271{bottom:483.792000px;}
.y20a{bottom:484.599825px;}
.y1d1{bottom:486.306000px;}
.y74{bottom:487.875000px;}
.y157{bottom:490.320000px;}
.y131{bottom:491.602500px;}
.y1e6{bottom:493.301025px;}
.y3f{bottom:493.629000px;}
.y18a{bottom:496.207500px;}
.y1ba{bottom:497.074500px;}
.y100{bottom:498.624000px;}
.y209{bottom:498.876000px;}
.ya1{bottom:499.173000px;}
.y23d{bottom:501.457500px;}
.yc{bottom:502.864502px;}
.y1e5{bottom:507.577200px;}
.y156{bottom:507.832500px;}
.y155{bottom:507.873000px;}
.y73{bottom:508.140000px;}
.y154{bottom:510.585000px;}
.y130{bottom:511.866000px;}
.yce{bottom:511.884000px;}
.y208{bottom:513.152175px;}
.y3e{bottom:513.894000px;}
.y270{bottom:515.673000px;}
.y189{bottom:516.472500px;}
.y1b9{bottom:517.338000px;}
.yff{bottom:518.889000px;}
.ya0{bottom:519.438000px;}
.y23c{bottom:520.824000px;}
.yb{bottom:520.864502px;}
.y1e4{bottom:521.853375px;}
.y207{bottom:527.428350px;}
.y72{bottom:528.403500px;}
.y153{bottom:530.848500px;}
.y12f{bottom:532.129500px;}
.ycd{bottom:533.410050px;}
.y3d{bottom:534.157500px;}
.y26f{bottom:535.041000px;}
.y1e3{bottom:536.129550px;}
.y188{bottom:536.736000px;}
.y1b8{bottom:537.603000px;}
.ya{bottom:538.864499px;}
.yfe{bottom:539.152500px;}
.y9f{bottom:539.701500px;}
.y23b{bottom:540.192000px;}
.y206{bottom:541.704525px;}
.y71{bottom:548.667000px;}
.ycb{bottom:549.519780px;}
.y1e2{bottom:550.405725px;}
.y152{bottom:551.113500px;}
.y12e{bottom:552.394500px;}
.y26e{bottom:554.407500px;}
.y3c{bottom:554.421000px;}
.y205{bottom:555.980700px;}
.y9{bottom:556.864499px;}
.y187{bottom:557.001000px;}
.y1b7{bottom:557.866500px;}
.yfd{bottom:559.416000px;}
.y23a{bottom:559.558500px;}
.y9e{bottom:559.965000px;}
.y1e1{bottom:564.681900px;}
.ycc{bottom:565.629510px;}
.y70{bottom:568.932000px;}
.y204{bottom:570.256875px;}
.y151{bottom:571.377000px;}
.y12d{bottom:572.658000px;}
.y26d{bottom:573.775500px;}
.y3b{bottom:574.686000px;}
.y186{bottom:577.264500px;}
.y1b6{bottom:578.131500px;}
.y239{bottom:578.926500px;}
.y1e0{bottom:578.958075px;}
.yfc{bottom:579.681000px;}
.y9d{bottom:580.230000px;}
.y203{bottom:584.533050px;}
.yca{bottom:588.798180px;}
.y6f{bottom:589.195500px;}
.y150{bottom:591.640500px;}
.y12c{bottom:592.923000px;}
.y26c{bottom:593.142000px;}
.y1df{bottom:593.234250px;}
.y185{bottom:597.528000px;}
.y238{bottom:598.294500px;}
.y1b5{bottom:598.395000px;}
.y202{bottom:598.809225px;}
.yfb{bottom:599.944500px;}
.y9c{bottom:600.493500px;}
.y3a{bottom:603.916500px;}
.yc8{bottom:604.907910px;}
.y1de{bottom:607.510425px;}
.y6e{bottom:609.460500px;}
.y14f{bottom:611.905500px;}
.y26b{bottom:612.510000px;}
.y201{bottom:613.085400px;}
.y12b{bottom:613.186500px;}
.y237{bottom:617.661000px;}
.y184{bottom:617.793000px;}
.y1b4{bottom:618.658500px;}
.yfa{bottom:620.209500px;}
.y9b{bottom:620.758500px;}
.yc9{bottom:621.017640px;}
.y1dd{bottom:621.786600px;}
.y200{bottom:627.361575px;}
.y6d{bottom:629.724000px;}
.y26a{bottom:631.878000px;}
.y14e{bottom:632.169000px;}
.y12a{bottom:633.450000px;}
.y1dc{bottom:636.062775px;}
.y236{bottom:637.029000px;}
.y1b3{bottom:638.923500px;}
.yf9{bottom:640.473000px;}
.y9a{bottom:641.022000px;}
.y1ff{bottom:641.637750px;}
.yc7{bottom:644.184840px;}
.y8{bottom:645.510000px;}
.y183{bottom:647.023500px;}
.y6c{bottom:649.987500px;}
.y269{bottom:651.244500px;}
.y14d{bottom:652.434000px;}
.y129{bottom:653.715000px;}
.y1fe{bottom:655.913925px;}
.y1da{bottom:656.158050px;}
.y235{bottom:656.395500px;}
.yc5{bottom:660.294570px;}
.yf8{bottom:660.736500px;}
.y99{bottom:661.285500px;}
.y1d9{bottom:663.143775px;}
.y7{bottom:666.771000px;}
.y1b2{bottom:669.319500px;}
.y14c{bottom:669.945000px;}
.y1db{bottom:670.130775px;}
.y1fd{bottom:670.190100px;}
.y6b{bottom:670.252500px;}
.y268{bottom:670.612500px;}
.y14b{bottom:672.697500px;}
.y128{bottom:673.978500px;}
.y234{bottom:675.763500px;}
.yc6{bottom:676.404300px;}
.y39{bottom:680.332500px;}
.yf7{bottom:681.001500px;}
.y98{bottom:681.550500px;}
.y182{bottom:681.843000px;}
.y1fc{bottom:684.466275px;}
.y1b1{bottom:689.583000px;}
.y267{bottom:689.979000px;}
.y14a{bottom:690.420000px;}
.y6a{bottom:690.516000px;}
.y149{bottom:692.961000px;}
.y127{bottom:694.243500px;}
.y1d8{bottom:699.219000px;}
.yc4{bottom:699.921360px;}
.yf6{bottom:701.265000px;}
.y97{bottom:701.814000px;}
.y233{bottom:704.097000px;}
.y1fa{bottom:704.561550px;}
.y266{bottom:709.347000px;}
.y1b0{bottom:709.848000px;}
.y69{bottom:710.781000px;}
.y1f9{bottom:711.547275px;}
.y126{bottom:714.507000px;}
.y38{bottom:718.528500px;}
.y1fb{bottom:718.534275px;}
.yf5{bottom:721.530000px;}
.y181{bottom:721.594500px;}
.y96{bottom:722.077500px;}
.y148{bottom:723.357000px;}
.y6{bottom:726.298500px;}
.y265{bottom:728.715000px;}
.y1af{bottom:730.111500px;}
.y68{bottom:731.044500px;}
.yc3{bottom:731.203500px;}
.y125{bottom:734.770500px;}
.y180{bottom:735.790500px;}
.y37{bottom:738.793500px;}
.yf4{bottom:741.793500px;}
.y95{bottom:742.342500px;}
.y1d7{bottom:746.140500px;}
.y1f8{bottom:747.622500px;}
.y264{bottom:748.081500px;}
.y232{bottom:748.480500px;}
.y17f{bottom:749.988000px;}
.y67{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y124{bottom:755.035500px;}
.y36{bottom:759.057000px;}
.y1ae{bottom:759.342000px;}
.y147{bottom:760.509000px;}
.yf3{bottom:762.057000px;}
.y94{bottom:762.606000px;}
.y231{bottom:762.678000px;}
.y17e{bottom:764.184000px;}
.y263{bottom:767.449500px;}
.yc2{bottom:768.315000px;}
.y66{bottom:771.573000px;}
.y123{bottom:775.299000px;}
.y17d{bottom:778.381500px;}
.y35{bottom:779.320500px;}
.y230{bottom:781.818000px;}
.y93{bottom:782.871000px;}
.y262{bottom:786.816000px;}
.yc1{bottom:788.578500px;}
.yf2{bottom:791.287500px;}
.y22f{bottom:791.745900px;}
.y65{bottom:791.836500px;}
.y22e{bottom:791.886300px;}
.y17c{bottom:792.577500px;}
.y146{bottom:797.659500px;}
.y1d6{bottom:798.445500px;}
.y1ad{bottom:798.529500px;}
.y34{bottom:799.585500px;}
.y92{bottom:803.134500px;}
.y122{bottom:804.529500px;}
.y17b{bottom:804.657000px;}
.y261{bottom:806.184000px;}
.y17a{bottom:806.775000px;}
.yc0{bottom:808.843500px;}
.y64{bottom:812.101500px;}
.y1ac{bottom:812.725500px;}
.y145{bottom:817.923000px;}
.y179{bottom:818.886000px;}
.y178{bottom:819.019500px;}
.y33{bottom:819.849000px;}
.y177{bottom:820.971000px;}
.y91{bottom:823.398000px;}
.y22d{bottom:823.410150px;}
.y260{bottom:825.552000px;}
.y1ab{bottom:826.923000px;}
.ybf{bottom:829.107000px;}
.yf1{bottom:831.039000px;}
.y63{bottom:832.365000px;}
.y144{bottom:838.188000px;}
.y121{bottom:839.349000px;}
.y32{bottom:840.114000px;}
.y1aa{bottom:841.119000px;}
.y176{bottom:842.752500px;}
.y90{bottom:843.663000px;}
.y25f{bottom:844.918500px;}
.yef{bottom:845.236500px;}
.yf0{bottom:845.361000px;}
.y22c{bottom:846.877200px;}
.ybe{bottom:849.372000px;}
.y62{bottom:852.628500px;}
.y1a9{bottom:855.316500px;}
.yee{bottom:859.432500px;}
.y175{bottom:860.101500px;}
.y31{bottom:860.377500px;}
.y8f{bottom:863.926500px;}
.y25e{bottom:864.286500px;}
.y143{bottom:867.418500px;}
.ybd{bottom:869.635500px;}
.y61{bottom:872.893500px;}
.yec{bottom:873.630000px;}
.yed{bottom:873.754500px;}
.y22b{bottom:876.808500px;}
.y174{bottom:876.897000px;}
.y1a8{bottom:877.020000px;}
.y120{bottom:879.100500px;}
.y2{bottom:879.369000px;}
.y25d{bottom:883.653000px;}
.y8e{bottom:884.191500px;}
.yea{bottom:887.826000px;}
.yeb{bottom:887.952000px;}
.ybc{bottom:889.899000px;}
.y60{bottom:893.157000px;}
.y173{bottom:893.692500px;}
.y1a7{bottom:893.830725px;}
.y2e{bottom:894.455964px;}
.y11e{bottom:895.000500px;}
.y2d{bottom:895.222500px;}
.ye8{bottom:902.023500px;}
.ye9{bottom:902.148000px;}
.y25c{bottom:903.021000px;}
.y8d{bottom:904.455000px;}
.y11f{bottom:906.687000px;}
.y142{bottom:907.168500px;}
.ybb{bottom:910.164000px;}
.y1a6{bottom:910.312275px;}
.y5f{bottom:913.422000px;}
.y11d{bottom:914.799000px;}
.y22a{bottom:915.677850px;}
.ye6{bottom:916.219500px;}
.ye7{bottom:916.345500px;}
.y171{bottom:917.334000px;}
.y141{bottom:921.366000px;}
.y25b{bottom:922.389000px;}
.y226{bottom:923.099220px;}
.y229{bottom:924.091230px;}
.y8c{bottom:924.718500px;}
.y170{bottom:925.552500px;}
.y1a5{bottom:926.268000px;}
.y11c{bottom:926.484000px;}
.yba{bottom:930.427500px;}
.y225{bottom:931.512600px;}
.y224{bottom:932.606520px;}
.y5e{bottom:933.685500px;}
.y172{bottom:933.772500px;}
.y2c{bottom:934.228500px;}
.y11a{bottom:934.596000px;}
.y140{bottom:935.562000px;}
.ye5{bottom:938.278500px;}
.y228{bottom:941.721660px;}
.y25a{bottom:941.755500px;}
.y1a4{bottom:942.223725px;}
.y8b{bottom:944.983500px;}
.y11b{bottom:946.282500px;}
.y227{bottom:948.032340px;}
.y13f{bottom:949.759500px;}
.yb9{bottom:950.692500px;}
.y2b{bottom:952.384500px;}
.y5d{bottom:953.949000px;}
.y118{bottom:954.394500px;}
.ye4{bottom:955.074000px;}
.y16e{bottom:957.412500px;}
.y259{bottom:961.123500px;}
.y223{bottom:964.372770px;}
.y1a2{bottom:964.683150px;}
.y8a{bottom:965.247000px;}
.y16d{bottom:965.632500px;}
.y119{bottom:966.079500px;}
.y1{bottom:966.726000px;}
.y221{bottom:970.407390px;}
.y2a{bottom:970.542000px;}
.yb8{bottom:970.956000px;}
.y13e{bottom:971.817000px;}
.y1a1{bottom:972.490725px;}
.y222{bottom:972.564270px;}
.y16f{bottom:973.851000px;}
.y116{bottom:974.191500px;}
.y5c{bottom:974.214000px;}
.ye3{bottom:979.071000px;}
.y1a3{bottom:980.299725px;}
.y258{bottom:980.490000px;}
.y89{bottom:985.512000px;}
.y117{bottom:985.878000px;}
.y13d{bottom:988.612500px;}
.y220{bottom:991.166070px;}
.yb7{bottom:991.219500px;}
.y5b{bottom:994.477500px;}
.y29{bottom:996.310500px;}
.y115{bottom:997.134000px;}
.y16b{bottom:997.492500px;}
.y257{bottom:999.858000px;}
.y21f{bottom:1000.652730px;}
.y21e{bottom:1000.786890px;}
.y19f{bottom:1002.757725px;}
.ye2{bottom:1003.069500px;}
.y13c{bottom:1005.408000px;}
.y16a{bottom:1005.711000px;}
.y88{bottom:1005.775500px;}
.y19e{bottom:1010.566725px;}
.yb6{bottom:1011.484500px;}
.y16c{bottom:1013.929500px;}
.y114{bottom:1013.931000px;}
.y5a{bottom:1014.742500px;}
.y1a0{bottom:1018.374300px;}
.y256{bottom:1019.226000px;}
.y87{bottom:1026.039000px;}
.ye1{bottom:1027.066500px;}
.y13b{bottom:1029.049500px;}
.y21d{bottom:1030.909680px;}
.y59{bottom:1035.006000px;}
.y113{bottom:1037.928000px;}
.y255{bottom:1038.592500px;}
.yb5{bottom:1040.715000px;}
.y28{bottom:1040.848500px;}
.y19d{bottom:1041.172875px;}
.y13a{bottom:1045.488000px;}
.y86{bottom:1046.304000px;}
.y21c{bottom:1053.333750px;}
.y58{bottom:1055.269500px;}
.y254{bottom:1057.960500px;}
.ye0{bottom:1058.686500px;}
.y112{bottom:1061.926500px;}
.y19c{bottom:1063.970025px;}
.y85{bottom:1066.567500px;}
.y27{bottom:1071.244500px;}
.y57{bottom:1075.534500px;}
.y253{bottom:1077.327000px;}
.y21b{bottom:1082.589000px;}
.y111{bottom:1085.923500px;}
.y19b{bottom:1086.768600px;}
.y84{bottom:1086.832500px;}
.y56{bottom:1095.798000px;}
.y252{bottom:1096.695000px;}
.y26{bottom:1100.145000px;}
.y55{bottom:1116.063000px;}
.y110{bottom:1117.543500px;}
.y22{bottom:1137.954000px;}
.y54{bottom:1168.366500px;}
.h46{height:2.729731px;}
.h1d{height:2.821415px;}
.h1c{height:3.526760px;}
.h10{height:25.508090px;}
.h40{height:26.376864px;}
.h4c{height:27.603695px;}
.h7{height:32.130000px;}
.h39{height:33.061807px;}
.h12{height:33.112997px;}
.h20{height:33.299897px;}
.h3a{height:33.427636px;}
.h3b{height:33.450769px;}
.h11{height:34.199443px;}
.h17{height:34.956859px;}
.h47{height:35.006619px;}
.h14{height:35.052500px;}
.h45{height:36.157410px;}
.ha{height:36.277321px;}
.h42{height:36.289224px;}
.h4d{height:36.690509px;}
.h2c{height:36.951431px;}
.h2f{height:37.360299px;}
.h1b{height:37.372050px;}
.h31{height:37.462516px;}
.h4e{height:37.927872px;}
.h15{height:38.118318px;}
.h16{height:38.540098px;}
.h19{height:38.896243px;}
.h1e{height:39.057638px;}
.h1a{height:39.219034px;}
.hf{height:39.326630px;}
.h1f{height:39.434227px;}
.h2d{height:40.477125px;}
.h21{height:40.647408px;}
.h27{height:42.607500px;}
.he{height:43.217759px;}
.h13{height:43.695964px;}
.hc{height:43.815515px;}
.hb{height:44.827234px;}
.h29{height:45.178050px;}
.h2a{height:45.712050px;}
.h2b{height:45.844050px;}
.h6{height:45.900000px;}
.h18{height:46.714950px;}
.h3c{height:46.729051px;}
.h23{height:47.338950px;}
.h22{height:47.344950px;}
.h34{height:47.605532px;}
.h32{height:47.611232px;}
.h3{height:48.195000px;}
.h48{height:48.897095px;}
.h28{height:50.117087px;}
.h9{height:50.931027px;}
.h33{height:52.183600px;}
.h3e{height:54.155904px;}
.h41{height:54.196991px;}
.h24{height:54.663515px;}
.h2{height:55.080000px;}
.h4a{height:56.674784px;}
.h44{height:57.535704px;}
.h37{height:61.009807px;}
.h2e{height:68.590599px;}
.h30{height:68.596299px;}
.h3d{height:68.875771px;}
.h49{height:72.079295px;}
.h25{height:72.200630px;}
.h26{height:72.206630px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h43{height:78.335471px;}
.h38{height:88.952707px;}
.h3f{height:107.359051px;}
.h4b{height:112.352495px;}
.h4{height:119.055004px;}
.h35{height:892.914000px;}
.h36{height:893.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:29.274117px;}
.x6{left:60.141348px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.xe{left:119.385000px;}
.x8{left:122.110500px;}
.x7{left:123.307500px;}
.x12{left:124.932690px;}
.x57{left:132.523500px;}
.x1c{left:135.087000px;}
.x94{left:138.053775px;}
.x1b{left:141.649500px;}
.x6f{left:145.371000px;}
.xc{left:146.692500px;}
.x2c{left:151.692000px;}
.x47{left:156.169500px;}
.x8c{left:159.079500px;}
.x4a{left:161.356500px;}
.x6a{left:163.803000px;}
.x7a{left:167.686500px;}
.x18{left:170.925000px;}
.xa9{left:172.131000px;}
.x8e{left:173.862000px;}
.xaa{left:178.855500px;}
.x4b{left:179.976000px;}
.x6b{left:182.446500px;}
.x4c{left:187.597500px;}
.xb{left:188.982000px;}
.x5c{left:190.842000px;}
.x9c{left:194.421540px;}
.x35{left:195.684000px;}
.x4{left:203.484001px;}
.x2a{left:204.840000px;}
.x5d{left:209.463000px;}
.x11{left:210.948270px;}
.x8f{left:215.644500px;}
.x5e{left:217.084500px;}
.x85{left:218.573700px;}
.x19{left:221.082000px;}
.x8d{left:223.831500px;}
.x36{left:225.405000px;}
.x89{left:227.581500px;}
.x30{left:230.785500px;}
.x21{left:236.284500px;}
.x41{left:237.873000px;}
.x26{left:240.312000px;}
.xa6{left:247.546500px;}
.x1a{left:249.097500px;}
.xab{left:251.667000px;}
.x67{left:253.495500px;}
.x40{left:254.496000px;}
.x93{left:258.949500px;}
.x90{left:260.815500px;}
.x7b{left:262.162500px;}
.x14{left:266.587500px;}
.x6c{left:268.434000px;}
.x22{left:269.908500px;}
.x3b{left:274.945500px;}
.x2b{left:276.796500px;}
.x8b{left:279.360000px;}
.x49{left:281.829000px;}
.x68{left:283.407000px;}
.x48{left:289.972500px;}
.x8a{left:292.330500px;}
.xf{left:293.616000px;}
.x3f{left:294.876000px;}
.x5f{left:298.207500px;}
.x69{left:301.605000px;}
.x2d{left:303.300000px;}
.x60{left:305.829000px;}
.x3e{left:309.165000px;}
.x27{left:312.282000px;}
.x15{left:314.116500px;}
.x83{left:318.924000px;}
.x6e{left:322.155000px;}
.x39{left:331.600500px;}
.x84{left:337.069500px;}
.x6d{left:338.077500px;}
.x61{left:340.989000px;}
.x3c{left:344.998500px;}
.x7c{left:346.621500px;}
.x7f{left:350.682000px;}
.x7d{left:352.719000px;}
.x4d{left:366.030000px;}
.x37{left:368.701500px;}
.x10{left:370.608000px;}
.x3d{left:372.327000px;}
.x4e{left:384.649500px;}
.x42{left:387.910500px;}
.x4f{left:391.972500px;}
.x24{left:397.420500px;}
.x3a{left:401.809500px;}
.x38{left:404.904000px;}
.x91{left:406.672500px;}
.x63{left:410.895000px;}
.x74{left:413.052000px;}
.x7e{left:414.460500px;}
.xa7{left:415.907850px;}
.x23{left:417.496500px;}
.x9d{left:422.425170px;}
.x70{left:424.359000px;}
.x50{left:428.413500px;}
.x9b{left:431.868000px;}
.x75{left:434.046000px;}
.x13{left:439.368630px;}
.x80{left:442.597500px;}
.x9e{left:446.512050px;}
.x65{left:449.310000px;}
.x3{left:454.959000px;}
.x64{left:456.516000px;}
.x81{left:460.266000px;}
.x5a{left:464.772000px;}
.x16{left:469.570500px;}
.x25{left:472.102500px;}
.x2e{left:474.129000px;}
.x31{left:489.498000px;}
.x58{left:492.456000px;}
.x66{left:496.308000px;}
.x43{left:502.570500px;}
.x44{left:503.925000px;}
.x1d{left:509.028000px;}
.x32{left:520.581000px;}
.x76{left:522.231000px;}
.x5b{left:526.297500px;}
.x77{left:528.328500px;}
.x1e{left:544.014000px;}
.x71{left:546.220500px;}
.x72{left:550.524000px;}
.x59{left:553.795500px;}
.x87{left:575.074500px;}
.xa4{left:579.124050px;}
.xd{left:594.151500px;}
.xa5{left:599.841450px;}
.x78{left:602.070000px;}
.x79{left:608.167500px;}
.x86{left:614.991600px;}
.x33{left:619.633500px;}
.x2f{left:622.330500px;}
.x28{left:623.425500px;}
.xa3{left:625.447950px;}
.xa8{left:629.183550px;}
.x17{left:631.072500px;}
.x1f{left:633.804000px;}
.x45{left:635.232000px;}
.x51{left:642.046500px;}
.x9f{left:648.803400px;}
.x46{left:653.233500px;}
.x34{left:657.198000px;}
.x52{left:659.748000px;}
.xa1{left:661.260930px;}
.x95{left:666.921225px;}
.x73{left:668.082000px;}
.x92{left:671.572500px;}
.x20{left:673.075500px;}
.xa0{left:675.961770px;}
.xa2{left:684.017820px;}
.x53{left:688.152000px;}
.x29{left:698.121000px;}
.x9{left:701.339982px;}
.x54{left:705.852000px;}
.x62{left:721.542000px;}
.x88{left:731.184000px;}
.x55{left:735.858000px;}
.x96{left:740.947725px;}
.x97{left:748.567125px;}
.x56{left:753.316500px;}
.x82{left:764.586000px;}
.x98{left:996.749700px;}
.x9a{left:1077.342450px;}
.x99{left:1084.328175px;}
@media print{
.v5{vertical-align:-62.789333pt;}
.v3{vertical-align:-51.936000pt;}
.v7{vertical-align:-49.920000pt;}
.v6{vertical-align:-41.552000pt;}
.v29{vertical-align:-30.106880pt;}
.v2c{vertical-align:-27.936000pt;}
.v19{vertical-align:-26.726507pt;}
.v11{vertical-align:-20.352800pt;}
.v18{vertical-align:-19.227307pt;}
.v23{vertical-align:-14.764480pt;}
.v4{vertical-align:-10.853333pt;}
.v8{vertical-align:-9.957333pt;}
.v1{vertical-align:-9.034667pt;}
.v9{vertical-align:-7.973333pt;}
.v2{vertical-align:-6.938667pt;}
.v12{vertical-align:-2.999467pt;}
.v13{vertical-align:-1.793600pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:0.986667pt;}
.v22{vertical-align:2.811627pt;}
.v1c{vertical-align:4.013333pt;}
.v26{vertical-align:5.311360pt;}
.ve{vertical-align:6.938667pt;}
.v16{vertical-align:7.930347pt;}
.va{vertical-align:9.642667pt;}
.v1e{vertical-align:14.980053pt;}
.vc{vertical-align:17.360000pt;}
.v27{vertical-align:19.869440pt;}
.v1b{vertical-align:23.281920pt;}
.v14{vertical-align:24.842667pt;}
.vf{vertical-align:27.760267pt;}
.vb{vertical-align:29.221333pt;}
.v1d{vertical-align:31.437013pt;}
.v2d{vertical-align:32.899200pt;}
.v28{vertical-align:34.441280pt;}
.v17{vertical-align:39.110507pt;}
.v2a{vertical-align:40.924800pt;}
.v10{vertical-align:43.705067pt;}
.v25{vertical-align:46.192320pt;}
.v15{vertical-align:49.680800pt;}
.v24{vertical-align:55.007893pt;}
.v21{vertical-align:57.489280pt;}
.v1a{vertical-align:58.796480pt;}
.v30{vertical-align:60.163200pt;}
.v2b{vertical-align:61.531200pt;}
.v20{vertical-align:66.309440pt;}
.v2f{vertical-align:69.393600pt;}
.v1f{vertical-align:93.003840pt;}
.v2e{vertical-align:97.329600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000088pt;}
.ls2c{letter-spacing:0.000133pt;}
.ls1b{letter-spacing:0.000274pt;}
.lsd2{letter-spacing:0.000397pt;}
.ls18{letter-spacing:0.000445pt;}
.ls4{letter-spacing:0.000451pt;}
.ls31{letter-spacing:0.000520pt;}
.ls3a{letter-spacing:0.000533pt;}
.ls1e{letter-spacing:0.000752pt;}
.lsd{letter-spacing:0.000797pt;}
.lsd1{letter-spacing:0.000921pt;}
.ls38{letter-spacing:0.000993pt;}
.ls19{letter-spacing:0.001002pt;}
.ls75{letter-spacing:0.001005pt;}
.ls45{letter-spacing:0.001009pt;}
.ls6{letter-spacing:0.001061pt;}
.ls2d{letter-spacing:0.001133pt;}
.ls6c{letter-spacing:0.001200pt;}
.ls4d{letter-spacing:0.001263pt;}
.ls3{letter-spacing:0.001349pt;}
.lsa0{letter-spacing:0.001359pt;}
.ls32{letter-spacing:0.001374pt;}
.ls2f{letter-spacing:0.001382pt;}
.lsbe{letter-spacing:0.001422pt;}
.ls16{letter-spacing:0.001487pt;}
.ls1c{letter-spacing:0.001792pt;}
.ls5c{letter-spacing:0.001806pt;}
.ls8f{letter-spacing:0.001886pt;}
.ls14{letter-spacing:0.001977pt;}
.lsa5{letter-spacing:0.002181pt;}
.lsc6{letter-spacing:0.002282pt;}
.lsce{letter-spacing:0.002287pt;}
.ls98{letter-spacing:0.002421pt;}
.ls64{letter-spacing:0.002422pt;}
.ls88{letter-spacing:0.002449pt;}
.lscd{letter-spacing:0.002505pt;}
.ls90{letter-spacing:0.002523pt;}
.lsb9{letter-spacing:0.002533pt;}
.ls42{letter-spacing:0.002537pt;}
.lsa7{letter-spacing:0.002602pt;}
.ls7{letter-spacing:0.002630pt;}
.lsb3{letter-spacing:0.002640pt;}
.ls97{letter-spacing:0.002752pt;}
.lsbb{letter-spacing:0.002788pt;}
.ls28{letter-spacing:0.002852pt;}
.ls8d{letter-spacing:0.002916pt;}
.ls49{letter-spacing:0.002933pt;}
.lscc{letter-spacing:0.002940pt;}
.lscb{letter-spacing:0.003004pt;}
.ls2a{letter-spacing:0.003017pt;}
.lsa{letter-spacing:0.003100pt;}
.ls5{letter-spacing:0.003106pt;}
.ls40{letter-spacing:0.003198pt;}
.ls56{letter-spacing:0.003200pt;}
.lsc7{letter-spacing:0.003240pt;}
.ls3b{letter-spacing:0.003505pt;}
.ls8c{letter-spacing:0.003712pt;}
.ls33{letter-spacing:0.003733pt;}
.ls11{letter-spacing:0.003802pt;}
.ls77{letter-spacing:0.004053pt;}
.ls48{letter-spacing:0.004267pt;}
.ls8{letter-spacing:0.004480pt;}
.ls1d{letter-spacing:0.004591pt;}
.lsc{letter-spacing:0.004813pt;}
.lsc9{letter-spacing:0.004822pt;}
.lsa2{letter-spacing:0.274416pt;}
.lsa1{letter-spacing:0.285415pt;}
.lsc0{letter-spacing:0.287180pt;}
.lsbf{letter-spacing:0.298690pt;}
.lsae{letter-spacing:0.357670pt;}
.lsb0{letter-spacing:0.362257pt;}
.lsaf{letter-spacing:0.401461pt;}
.lsa4{letter-spacing:0.460993pt;}
.ls93{letter-spacing:0.465580pt;}
.lscf{letter-spacing:0.466280pt;}
.lsd0{letter-spacing:0.471509pt;}
.ls25{letter-spacing:0.475863pt;}
.lsca{letter-spacing:0.478097pt;}
.ls26{letter-spacing:0.481197pt;}
.lsc3{letter-spacing:0.482435pt;}
.lsb2{letter-spacing:0.487235pt;}
.ls68{letter-spacing:0.509237pt;}
.ls70{letter-spacing:0.514304pt;}
.ls27{letter-spacing:0.528637pt;}
.ls29{letter-spacing:0.533970pt;}
.ls51{letter-spacing:0.536039pt;}
.ls69{letter-spacing:0.568602pt;}
.ls24{letter-spacing:0.596214pt;}
.ls21{letter-spacing:0.601548pt;}
.ls44{letter-spacing:0.662683pt;}
.ls22{letter-spacing:0.664877pt;}
.ls46{letter-spacing:0.668016pt;}
.lsb{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls9b{letter-spacing:2.282897pt;}
.ls99{letter-spacing:2.284619pt;}
.lsa6{letter-spacing:2.285202pt;}
.lsab{letter-spacing:2.285765pt;}
.lsba{letter-spacing:2.390880pt;}
.lsc2{letter-spacing:2.391490pt;}
.ls5d{letter-spacing:2.651733pt;}
.ls39{letter-spacing:2.657067pt;}
.lsa9{letter-spacing:2.794885pt;}
.lsa3{letter-spacing:2.799472pt;}
.ls94{letter-spacing:2.801190pt;}
.lsb4{letter-spacing:2.926678pt;}
.lsc1{letter-spacing:2.929680pt;}
.lsb7{letter-spacing:2.931478pt;}
.ls9f{letter-spacing:5.483202pt;}
.lsbd{letter-spacing:5.738235pt;}
.ls8b{letter-spacing:7.117060pt;}
.ls87{letter-spacing:7.122393pt;}
.ls86{letter-spacing:7.140216pt;}
.ls96{letter-spacing:7.992168pt;}
.ls9d{letter-spacing:7.996754pt;}
.ls9c{letter-spacing:7.997312pt;}
.lsad{letter-spacing:8.019099pt;}
.lsb6{letter-spacing:8.368696pt;}
.ls95{letter-spacing:8.460140pt;}
.ls7c{letter-spacing:8.775727pt;}
.ls7e{letter-spacing:8.781060pt;}
.ls7b{letter-spacing:8.798883pt;}
.ls71{letter-spacing:8.830187pt;}
.ls6f{letter-spacing:8.833624pt;}
.ls6e{letter-spacing:8.834653pt;}
.lsb5{letter-spacing:8.853635pt;}
.ls5a{letter-spacing:9.197060pt;}
.ls59{letter-spacing:9.220216pt;}
.ls50{letter-spacing:9.293218pt;}
.ls53{letter-spacing:9.298551pt;}
.ls4f{letter-spacing:9.299635pt;}
.ls52{letter-spacing:9.300267pt;}
.ls81{letter-spacing:9.457828pt;}
.ls89{letter-spacing:9.793067pt;}
.ls61{letter-spacing:9.794393pt;}
.ls8a{letter-spacing:9.798400pt;}
.ls60{letter-spacing:9.812216pt;}
.ls8e{letter-spacing:10.371757pt;}
.ls9{letter-spacing:10.626533pt;}
.lsc8{letter-spacing:10.754322pt;}
.ls37{letter-spacing:10.968429pt;}
.ls7f{letter-spacing:10.973762pt;}
.ls3f{letter-spacing:10.993349pt;}
.ls36{letter-spacing:10.998683pt;}
.ls76{letter-spacing:11.354907pt;}
.ls7d{letter-spacing:11.453116pt;}
.ls5b{letter-spacing:11.878400pt;}
.ls92{letter-spacing:11.916227pt;}
.ls85{letter-spacing:12.317060pt;}
.ls7a{letter-spacing:12.327727pt;}
.ls62{letter-spacing:12.470400pt;}
.lsb1{letter-spacing:12.470470pt;}
.lse{letter-spacing:13.070931pt;}
.ls2b{letter-spacing:13.124065pt;}
.ls74{letter-spacing:13.163274pt;}
.lsf{letter-spacing:13.230333pt;}
.ls10{letter-spacing:13.283467pt;}
.ls63{letter-spacing:13.363986pt;}
.ls17{letter-spacing:13.442868pt;}
.ls2e{letter-spacing:13.496002pt;}
.ls15{letter-spacing:13.602270pt;}
.ls41{letter-spacing:13.649067pt;}
.ls65{letter-spacing:13.651505pt;}
.ls3c{letter-spacing:13.654400pt;}
.ls13{letter-spacing:13.655404pt;}
.ls91{letter-spacing:14.221990pt;}
.ls58{letter-spacing:14.429060pt;}
.ls84{letter-spacing:14.994449pt;}
.ls79{letter-spacing:15.005116pt;}
.ls35{letter-spacing:15.395096pt;}
.ls23{letter-spacing:15.400429pt;}
.ls67{letter-spacing:15.937067pt;}
.ls82{letter-spacing:16.550400pt;}
.ls20{letter-spacing:16.944282pt;}
.ls57{letter-spacing:17.106449pt;}
.ls1f{letter-spacing:17.374774pt;}
.ls5f{letter-spacing:17.399727pt;}
.lsaa{letter-spacing:17.401880pt;}
.ls3e{letter-spacing:18.078172pt;}
.ls34{letter-spacing:18.083505pt;}
.ls47{letter-spacing:18.326400pt;}
.ls9e{letter-spacing:18.773294pt;}
.lsbc{letter-spacing:19.641670pt;}
.lsc5{letter-spacing:19.646470pt;}
.ls5e{letter-spacing:20.077116pt;}
.ls1a{letter-spacing:20.562806pt;}
.ls1{letter-spacing:28.452898pt;}
.ls9a{letter-spacing:100.404885pt;}
.lsb8{letter-spacing:157.428035pt;}
.ls54{letter-spacing:215.229372pt;}
.ls4a{letter-spacing:253.803690pt;}
.ls4b{letter-spacing:253.809023pt;}
.ls30{letter-spacing:301.312533pt;}
.lsa8{letter-spacing:428.418059pt;}
.lsc4{letter-spacing:456.053280pt;}
.lsac{letter-spacing:461.563455pt;}
.ls4e{letter-spacing:515.547200pt;}
.ls80{letter-spacing:525.795505pt;}
.ls4c{letter-spacing:530.223957pt;}
.ls43{letter-spacing:534.574172pt;}
.ls55{letter-spacing:540.203200pt;}
.ls3d{letter-spacing:563.528838pt;}
.ls78{letter-spacing:601.490339pt;}
.ls72{letter-spacing:604.734570pt;}
.ls83{letter-spacing:616.088970pt;}
.ls6a{letter-spacing:663.872704pt;}
.ls66{letter-spacing:779.384838pt;}
.ls6d{letter-spacing:901.390907pt;}
.ls6b{letter-spacing:915.333826pt;}
.ls73{letter-spacing:924.814107pt;}
.ws7f{word-spacing:-40.947213pt;}
.ws55{word-spacing:-36.981171pt;}
.wsff{word-spacing:-33.942879pt;}
.wsee{word-spacing:-32.434307pt;}
.ws9c{word-spacing:-32.326861pt;}
.ws5e{word-spacing:-29.585011pt;}
.wsea{word-spacing:-28.623618pt;}
.wsbc{word-spacing:-23.219500pt;}
.ws89{word-spacing:-21.306681pt;}
.wsb3{word-spacing:-18.262764pt;}
.wsfb{word-spacing:-17.301565pt;}
.ws6c{word-spacing:-17.087894pt;}
.wse9{word-spacing:-16.532607pt;}
.ws23{word-spacing:-15.461955pt;}
.wsa1{word-spacing:-14.771215pt;}
.ws1{word-spacing:-14.692637pt;}
.wsa9{word-spacing:-13.915853pt;}
.ws4e{word-spacing:-13.637536pt;}
.wsa{word-spacing:-13.283467pt;}
.wsf1{word-spacing:-12.858571pt;}
.wsa0{word-spacing:-12.369595pt;}
.ws74{word-spacing:-11.955200pt;}
.wsd8{word-spacing:-11.828475pt;}
.wsf7{word-spacing:-10.759680pt;}
.ws1f{word-spacing:-10.626800pt;}
.wse6{word-spacing:-10.281472pt;}
.wsd7{word-spacing:-10.161920pt;}
.ws7e{word-spacing:-10.095467pt;}
.ws92{word-spacing:-9.298400pt;}
.wsf9{word-spacing:-8.368560pt;}
.wse8{word-spacing:-7.996624pt;}
.wsfd{word-spacing:-5.977560pt;}
.wsed{word-spacing:-5.711891pt;}
.ws84{word-spacing:-4.197575pt;}
.wsb6{word-spacing:-3.825638pt;}
.ws24{word-spacing:-3.347434pt;}
.ws50{word-spacing:-3.294300pt;}
.ws22{word-spacing:-3.134898pt;}
.ws1a{word-spacing:-3.028630pt;}
.ws39{word-spacing:-2.816095pt;}
.wsbf{word-spacing:-2.805475pt;}
.wsba{word-spacing:-2.550426pt;}
.wsc7{word-spacing:-2.497292pt;}
.ws118{word-spacing:-2.104115pt;}
.ws36{word-spacing:-1.806551pt;}
.ws40{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.696326pt;}
.wsbd{word-spacing:-1.594016pt;}
.ws3b{word-spacing:-1.540882pt;}
.wscd{word-spacing:-1.487748pt;}
.wsa2{word-spacing:-1.434614pt;}
.wsb9{word-spacing:-1.381481pt;}
.wsbb{word-spacing:-1.328347pt;}
.ws62{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws4a{word-spacing:-1.168945pt;}
.ws111{word-spacing:-1.147699pt;}
.ws12{word-spacing:-1.115811pt;}
.ws113{word-spacing:-1.099878pt;}
.ws81{word-spacing:-1.062677pt;}
.ws11d{word-spacing:-1.052058pt;}
.wsc8{word-spacing:-1.009543pt;}
.ws6d{word-spacing:-0.977666pt;}
.ws121{word-spacing:-0.956416pt;}
.wscb{word-spacing:-0.956410pt;}
.ws100{word-spacing:-0.908595pt;}
.ws1c{word-spacing:-0.903276pt;}
.ws120{word-spacing:-0.717312pt;}
.ws73{word-spacing:-0.690740pt;}
.ws13{word-spacing:-0.637606pt;}
.ws3d{word-spacing:-0.531339pt;}
.wsc0{word-spacing:-0.467579pt;}
.wsb4{word-spacing:-0.425072pt;}
.ws6f{word-spacing:-0.382565pt;}
.ws17{word-spacing:-0.318803pt;}
.ws10{word-spacing:-0.265669pt;}
.wse4{word-spacing:-0.255043pt;}
.ws102{word-spacing:-0.239104pt;}
.ws26{word-spacing:-0.212535pt;}
.ws117{word-spacing:-0.191283pt;}
.ws9e{word-spacing:-0.170029pt;}
.ws14{word-spacing:-0.159402pt;}
.ws10a{word-spacing:-0.143462pt;}
.ws7c{word-spacing:-0.127522pt;}
.ws16{word-spacing:-0.106268pt;}
.ws116{word-spacing:-0.095642pt;}
.ws61{word-spacing:-0.085014pt;}
.wsb8{word-spacing:-0.055366pt;}
.ws8{word-spacing:-0.053134pt;}
.ws58{word-spacing:-0.047821pt;}
.wsb1{word-spacing:-0.045430pt;}
.wsf5{word-spacing:-0.043039pt;}
.ws20{word-spacing:-0.042507pt;}
.wse7{word-spacing:-0.041126pt;}
.ws53{word-spacing:-0.040382pt;}
.ws91{word-spacing:-0.037194pt;}
.wsf8{word-spacing:-0.033474pt;}
.wsf2{word-spacing:-0.033330pt;}
.wse5{word-spacing:-0.031986pt;}
.ws5b{word-spacing:-0.031881pt;}
.wsfc{word-spacing:-0.023910pt;}
.wsec{word-spacing:-0.022848pt;}
.ws86{word-spacing:-0.001770pt;}
.ws0{word-spacing:0.000000pt;}
.ws76{word-spacing:0.001382pt;}
.ws5f{word-spacing:0.042507pt;}
.ws109{word-spacing:0.047821pt;}
.ws5{word-spacing:0.053134pt;}
.ws6e{word-spacing:0.085014pt;}
.ws105{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.106268pt;}
.ws60{word-spacing:0.127522pt;}
.ws4d{word-spacing:0.140593pt;}
.ws10e{word-spacing:0.143462pt;}
.ws35{word-spacing:0.159402pt;}
.ws5c{word-spacing:0.170029pt;}
.ws10b{word-spacing:0.191283pt;}
.wsd{word-spacing:0.212535pt;}
.ws106{word-spacing:0.239104pt;}
.ws9f{word-spacing:0.255043pt;}
.ws25{word-spacing:0.265669pt;}
.ws37{word-spacing:0.318803pt;}
.ws88{word-spacing:0.371937pt;}
.ws114{word-spacing:0.382566pt;}
.ws3f{word-spacing:0.425071pt;}
.ws6b{word-spacing:0.467579pt;}
.ws4b{word-spacing:0.531339pt;}
.ws7b{word-spacing:0.680115pt;}
.ws49{word-spacing:0.690740pt;}
.ws15{word-spacing:0.743874pt;}
.ws44{word-spacing:0.850142pt;}
.ws48{word-spacing:0.956410pt;}
.ws8b{word-spacing:1.009543pt;}
.ws90{word-spacing:1.168945pt;}
.ws123{word-spacing:1.243341pt;}
.ws8c{word-spacing:1.275213pt;}
.ws9b{word-spacing:1.275216pt;}
.ws8e{word-spacing:1.328347pt;}
.ws41{word-spacing:1.381481pt;}
.ws66{word-spacing:1.487748pt;}
.ws30{word-spacing:1.540882pt;}
.ws11f{word-spacing:1.578086pt;}
.ws7d{word-spacing:1.594016pt;}
.ws71{word-spacing:1.647150pt;}
.wsb5{word-spacing:1.700284pt;}
.ws38{word-spacing:1.753418pt;}
.ws51{word-spacing:1.859685pt;}
.ws5d{word-spacing:1.912824pt;}
.ws31{word-spacing:2.125355pt;}
.ws63{word-spacing:2.178489pt;}
.wscc{word-spacing:2.391024pt;}
.ws11{word-spacing:2.497292pt;}
.ws8d{word-spacing:2.550426pt;}
.ws8f{word-spacing:2.603559pt;}
.wsa4{word-spacing:2.656693pt;}
.ws3c{word-spacing:2.709827pt;}
.wsc5{word-spacing:2.816095pt;}
.ws68{word-spacing:2.922363pt;}
.wsce{word-spacing:2.964890pt;}
.ws19{word-spacing:3.028630pt;}
.wsa5{word-spacing:3.134898pt;}
.ws2a{word-spacing:3.188032pt;}
.ws2e{word-spacing:3.294300pt;}
.wscf{word-spacing:3.395277pt;}
.wsa3{word-spacing:3.400567pt;}
.ws9d{word-spacing:3.400576pt;}
.ws45{word-spacing:3.453701pt;}
.wsf0{word-spacing:3.504472pt;}
.wsca{word-spacing:3.506835pt;}
.ws18{word-spacing:3.613103pt;}
.ws110{word-spacing:3.634381pt;}
.ws52{word-spacing:3.666237pt;}
.ws46{word-spacing:3.719371pt;}
.ws69{word-spacing:3.772505pt;}
.wsc9{word-spacing:3.825638pt;}
.ws72{word-spacing:3.985040pt;}
.ws47{word-spacing:4.038174pt;}
.ws1b{word-spacing:4.091308pt;}
.wsc{word-spacing:4.197575pt;}
.ws8a{word-spacing:4.356977pt;}
.ws2d{word-spacing:4.516379pt;}
.ws42{word-spacing:4.728914pt;}
.ws126{word-spacing:4.779349pt;}
.wsd1{word-spacing:4.781175pt;}
.ws101{word-spacing:4.781764pt;}
.wsb{word-spacing:4.782048pt;}
.ws2{word-spacing:4.782080pt;}
.wsd0{word-spacing:4.925542pt;}
.ws104{word-spacing:4.973363pt;}
.ws80{word-spacing:4.994583pt;}
.wsa8{word-spacing:5.047717pt;}
.ws10d{word-spacing:5.069005pt;}
.wsa7{word-spacing:5.100851pt;}
.wse{word-spacing:5.307978pt;}
.wsf{word-spacing:5.313387pt;}
.ws6{word-spacing:5.366521pt;}
.ws4c{word-spacing:5.525922pt;}
.ws85{word-spacing:5.842133pt;}
.ws43{word-spacing:5.844725pt;}
.ws65{word-spacing:5.950993pt;}
.ws3a{word-spacing:6.163529pt;}
.ws67{word-spacing:6.216662pt;}
.ws2f{word-spacing:6.376064pt;}
.ws2b{word-spacing:6.588599pt;}
.ws127{word-spacing:6.742733pt;}
.ws2c{word-spacing:7.226206pt;}
.ws70{word-spacing:7.385607pt;}
.ws125{word-spacing:7.412224pt;}
.wsa6{word-spacing:8.448285pt;}
.ws122{word-spacing:8.846848pt;}
.wsc4{word-spacing:9.404694pt;}
.wsc6{word-spacing:10.361104pt;}
.ws1e{word-spacing:10.584293pt;}
.ws112{word-spacing:10.759680pt;}
.ws11a{word-spacing:10.807501pt;}
.ws11e{word-spacing:10.855322pt;}
.wsad{word-spacing:11.312010pt;}
.wsab{word-spacing:11.314150pt;}
.wsc1{word-spacing:11.583183pt;}
.ws103{word-spacing:11.668275pt;}
.wsaa{word-spacing:11.876307pt;}
.wsb0{word-spacing:11.876323pt;}
.ws11c{word-spacing:11.899529pt;}
.ws108{word-spacing:11.905186pt;}
.ws94{word-spacing:11.907379pt;}
.ws128{word-spacing:11.955200pt;}
.ws10f{word-spacing:12.050842pt;}
.ws10c{word-spacing:12.098662pt;}
.ws107{word-spacing:12.146483pt;}
.ws115{word-spacing:12.289946pt;}
.ws27{word-spacing:12.380191pt;}
.ws98{word-spacing:12.506726pt;}
.wsb7{word-spacing:12.650954pt;}
.wsc2{word-spacing:12.752128pt;}
.wsc3{word-spacing:12.964663pt;}
.wsb2{word-spacing:13.137907pt;}
.ws124{word-spacing:13.150720pt;}
.ws3e{word-spacing:13.229236pt;}
.ws4f{word-spacing:13.230333pt;}
.ws28{word-spacing:13.442868pt;}
.ws82{word-spacing:13.514911pt;}
.ws96{word-spacing:13.581107pt;}
.ws83{word-spacing:13.845578pt;}
.ws87{word-spacing:14.021578pt;}
.wseb{word-spacing:14.192241pt;}
.ws77{word-spacing:14.569609pt;}
.ws75{word-spacing:14.573919pt;}
.ws78{word-spacing:14.574942pt;}
.ws119{word-spacing:14.824448pt;}
.wsfe{word-spacing:14.846936pt;}
.wsfa{word-spacing:14.851736pt;}
.wsf6{word-spacing:14.852011pt;}
.wsef{word-spacing:15.213624pt;}
.ws11b{word-spacing:15.637402pt;}
.ws9{word-spacing:18.012381pt;}
.ws64{word-spacing:18.038353pt;}
.ws7{word-spacing:18.596853pt;}
.ws54{word-spacing:19.330515pt;}
.ws34{word-spacing:21.041011pt;}
.ws32{word-spacing:22.316224pt;}
.ws29{word-spacing:23.750838pt;}
.ws33{word-spacing:35.535961pt;}
.wsdf{word-spacing:93.814845pt;}
.wsde{word-spacing:103.976765pt;}
.ws56{word-spacing:110.992077pt;}
.wsd9{word-spacing:119.219645pt;}
.wse0{word-spacing:129.381565pt;}
.ws6a{word-spacing:134.424269pt;}
.wsdd{word-spacing:134.462525pt;}
.wsd2{word-spacing:144.326508pt;}
.wsda{word-spacing:144.624445pt;}
.wse3{word-spacing:147.835612pt;}
.wsdc{word-spacing:154.786365pt;}
.wse2{word-spacing:157.265874pt;}
.wse1{word-spacing:157.997532pt;}
.wsd5{word-spacing:163.837017pt;}
.wsd6{word-spacing:164.032842pt;}
.wsdb{word-spacing:167.427794pt;}
.ws5a{word-spacing:174.258995pt;}
.ws7a{word-spacing:201.121749pt;}
.wsd4{word-spacing:204.719639pt;}
.ws57{word-spacing:225.666355pt;}
.ws59{word-spacing:227.005338pt;}
.ws9a{word-spacing:289.841869pt;}
.ws99{word-spacing:313.752269pt;}
.ws97{word-spacing:325.707469pt;}
.ws79{word-spacing:328.241971pt;}
.ws93{word-spacing:365.590016pt;}
.ws95{word-spacing:373.528269pt;}
.wsf4{word-spacing:422.462308pt;}
.wsd3{word-spacing:449.858399pt;}
.wsf3{word-spacing:486.466652pt;}
.wsac{word-spacing:501.090253pt;}
.wsbe{word-spacing:523.805133pt;}
.wsaf{word-spacing:535.162573pt;}
.wsae{word-spacing:580.592333pt;}
.ws21{word-spacing:642.623850pt;}
._36{margin-left:-11.553505pt;}
._0{margin-left:-10.616218pt;}
._3a{margin-left:-7.418748pt;}
._15{margin-left:-6.429198pt;}
._2{margin-left:-5.308109pt;}
._4{margin-left:-4.399514pt;}
._11{margin-left:-3.121555pt;}
._6{margin-left:-1.819895pt;}
._3{margin-left:-0.908595pt;}
._7{width:0.969929pt;}
._2a{width:2.018804pt;}
._1d{width:3.316156pt;}
._29{width:5.038486pt;}
._2e{width:7.173120pt;}
._28{width:9.946687pt;}
._e{width:11.171456pt;}
._a0{width:12.620965pt;}
._b{width:14.040684pt;}
._27{width:15.175070pt;}
._5{width:16.737280pt;}
._9{width:18.280796pt;}
._a{width:19.832276pt;}
._c{width:21.041011pt;}
._19{width:22.276434pt;}
._18{width:23.384221pt;}
._a1{width:24.627712pt;}
._16{width:26.030317pt;}
._17{width:27.098272pt;}
._d{width:28.001548pt;}
._39{width:29.230148pt;}
._f{width:30.708629pt;}
._8{width:31.667785pt;}
._1a{width:33.205920pt;}
._32{width:35.028562pt;}
._a3{width:37.935251pt;}
._13{width:38.840857pt;}
._14{width:41.085823pt;}
._1c{width:47.051842pt;}
._a2{width:55.233024pt;}
._12{width:56.162497pt;}
._38{width:57.926554pt;}
._1{width:61.665498pt;}
._9d{width:77.496090pt;}
._94{width:89.649706pt;}
._91{width:95.266515pt;}
._4b{width:105.887206pt;}
._96{width:108.601350pt;}
._95{width:112.625471pt;}
._3f{width:118.935112pt;}
._31{width:128.872221pt;}
._20{width:131.794125pt;}
._40{width:132.877266pt;}
._1f{width:134.636763pt;}
._4c{width:136.031048pt;}
._6e{width:137.592397pt;}
._6f{width:138.730532pt;}
._72{width:141.006802pt;}
._44{width:142.754652pt;}
._55{width:144.299264pt;}
._8b{width:145.315456pt;}
._50{width:146.291000pt;}
._5e{width:147.347840pt;}
._97{width:148.282737pt;}
._41{width:149.420872pt;}
._69{width:150.315121pt;}
._82{width:151.316966pt;}
._3e{width:152.225562pt;}
._4a{width:153.363697pt;}
._62{width:154.501832pt;}
._56{width:156.505002pt;}
._49{width:157.997532pt;}
._5a{width:160.914915pt;}
._6c{width:162.306186pt;}
._7e{width:163.211869pt;}
._47{width:164.266839pt;}
._90{width:165.273467pt;}
._2c{width:166.320742pt;}
._42{width:167.421041pt;}
._88{width:168.445799pt;}
._2b{width:169.429094pt;}
._53{width:171.370619pt;}
._65{width:172.996526pt;}
._26{width:174.832845pt;}
._4d{width:176.085750pt;}
._57{width:177.585681pt;}
._66{width:179.054844pt;}
._54{width:180.064440pt;}
._3d{width:180.987382pt;}
._89{width:184.856398pt;}
._7a{width:188.337439pt;}
._4f{width:190.353085pt;}
._43{width:194.295910pt;}
._6a{width:196.287647pt;}
._7d{width:197.251545pt;}
._24{width:198.169395pt;}
._81{width:202.927878pt;}
._48{width:204.457830pt;}
._79{width:205.555318pt;}
._7c{width:207.587702pt;}
._51{width:209.670298pt;}
._7f{width:213.156434pt;}
._6b{width:218.603223pt;}
._4e{width:219.696678pt;}
._7b{width:222.586696pt;}
._77{width:223.887421pt;}
._8c{width:224.944261pt;}
._87{width:226.886099pt;}
._5c{width:229.607311pt;}
._5d{width:231.366595pt;}
._8d{width:233.764808pt;}
._83{width:238.664362pt;}
._80{width:240.634266pt;}
._22{width:241.657762pt;}
._78{width:242.666650pt;}
._25{width:243.790438pt;}
._8a{width:244.902272pt;}
._86{width:247.544371pt;}
._85{width:249.495460pt;}
._52{width:250.856490pt;}
._5b{width:264.790728pt;}
._58{width:266.648781pt;}
._67{width:272.095570pt;}
._59{width:273.477591pt;}
._6d{width:274.515616pt;}
._5f{width:276.698322pt;}
._92{width:278.192722pt;}
._61{width:279.229905pt;}
._93{width:282.857955pt;}
._9c{width:286.326571pt;}
._68{width:287.704279pt;}
._30{width:294.686925pt;}
._8e{width:297.419075pt;}
._33{width:301.744466pt;}
._84{width:302.743921pt;}
._70{width:303.800760pt;}
._60{width:305.507963pt;}
._75{width:306.799124pt;}
._63{width:315.588588pt;}
._21{width:316.908442pt;}
._23{width:318.247424pt;}
._76{width:322.646128pt;}
._8f{width:330.546934pt;}
._73{width:336.847324pt;}
._71{width:338.269993pt;}
._64{width:340.708854pt;}
._9f{width:342.368686pt;}
._45{width:357.465262pt;}
._98{width:362.302022pt;}
._74{width:366.113654pt;}
._99{width:368.787150pt;}
._46{width:372.739226pt;}
._9b{width:412.124436pt;}
._9a{width:417.307255pt;}
._2f{width:513.260646pt;}
._35{width:525.309750pt;}
._3c{width:543.369869pt;}
._2d{width:590.060851pt;}
._1e{width:657.440358pt;}
._9e{width:661.003008pt;}
._34{width:691.747473pt;}
._1b{width:867.881527pt;}
._37{width:1543.351202pt;}
._10{width:1564.604535pt;}
._3b{width:2858.625869pt;}
.fs1b{font-size:22.847563pt;}
.fs1c{font-size:23.807093pt;}
.fs21{font-size:23.910240pt;}
.fs22{font-size:24.914400pt;}
.fs11{font-size:31.880533pt;}
.fs19{font-size:31.986496pt;}
.fs1d{font-size:33.329931pt;}
.fs1f{font-size:33.474240pt;}
.fs16{font-size:35.333920pt;}
.fs12{font-size:37.193600pt;}
.fsb{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:40.381867pt;}
.fs17{font-size:40.647680pt;}
.fs18{font-size:41.125888pt;}
.fsa{font-size:41.988267pt;}
.fsc{font-size:42.507200pt;}
.fs1a{font-size:42.853227pt;}
.fs1e{font-size:43.038720pt;}
.fs10{font-size:44.292800pt;}
.fs20{font-size:44.846400pt;}
.fs14{font-size:45.429760pt;}
.fs5{font-size:46.397853pt;}
.fsd{font-size:46.864384pt;}
.fs15{font-size:47.337867pt;}
.fs9{font-size:47.820800pt;}
.fs13{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.044747pt;}
.y25{bottom:5.145434pt;}
.y2f{bottom:12.578910pt;}
.y24{bottom:19.838154pt;}
.y23{bottom:34.359615pt;}
.y53{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y52{bottom:96.544000pt;}
.y1d0{bottom:100.926667pt;}
.y251{bottom:101.430667pt;}
.yb4{bottom:101.472000pt;}
.y169{bottom:111.614667pt;}
.y1cf{bottom:113.546667pt;}
.y51{bottom:114.556000pt;}
.y250{bottom:118.645333pt;}
.yb3{bottom:119.484000pt;}
.yde{bottom:120.022667pt;}
.ydf{bottom:120.162667pt;}
.y19a{bottom:122.852000pt;}
.y21{bottom:123.790666pt;}
.y1ce{bottom:126.165333pt;}
.y168{bottom:129.628000pt;}
.y50{bottom:132.568000pt;}
.y24f{bottom:135.861333pt;}
.yb2{bottom:137.496000pt;}
.ydd{bottom:138.036000pt;}
.y199{bottom:140.865333pt;}
.y1cd{bottom:145.136667pt;}
.y167{bottom:147.640000pt;}
.y4f{bottom:150.581333pt;}
.y24e{bottom:153.076000pt;}
.yb1{bottom:155.509333pt;}
.ydc{bottom:156.048000pt;}
.y198{bottom:158.877333pt;}
.y1cc{bottom:159.786933pt;}
.y83{bottom:163.478667pt;}
.y166{bottom:165.652000pt;}
.y4e{bottom:168.593333pt;}
.y24d{bottom:170.292000pt;}
.yb0{bottom:173.521333pt;}
.y1cb{bottom:173.969800pt;}
.ydb{bottom:174.061333pt;}
.y18{bottom:175.052000pt;}
.y197{bottom:176.890667pt;}
.y82{bottom:181.492000pt;}
.y165{bottom:183.665333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4d{bottom:186.606667pt;}
.y24c{bottom:187.508000pt;}
.y1ca{bottom:188.152667pt;}
.y10f{bottom:191.046667pt;}
.yaf{bottom:191.534667pt;}
.yda{bottom:192.073333pt;}
.y196{bottom:194.902667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y81{bottom:199.504000pt;}
.y164{bottom:201.677333pt;}
.y4c{bottom:204.618667pt;}
.y24b{bottom:204.722667pt;}
.y1c8{bottom:208.116600pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y10e{bottom:209.058667pt;}
.yae{bottom:209.546667pt;}
.yd9{bottom:210.085333pt;}
.y195{bottom:212.914667pt;}
.y1c7{bottom:215.056667pt;}
.y80{bottom:217.517333pt;}
.y163{bottom:219.690667pt;}
.y24a{bottom:221.938667pt;}
.y1c9{bottom:221.998000pt;}
.y21a{bottom:222.145333pt;}
.y4b{bottom:222.630667pt;}
.y1f7{bottom:222.759800pt;}
.y10d{bottom:227.070667pt;}
.yad{bottom:227.558667pt;}
.yd8{bottom:228.098667pt;}
.y194{bottom:230.928000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y219{bottom:234.765333pt;}
.y1f6{bottom:235.449733pt;}
.y7f{bottom:235.529333pt;}
.y162{bottom:237.702667pt;}
.y249{bottom:239.153333pt;}
.y4a{bottom:240.644000pt;}
.y1c5{bottom:241.960667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y10c{bottom:245.084000pt;}
.yac{bottom:245.572000pt;}
.yd7{bottom:246.110667pt;}
.y218{bottom:247.384000pt;}
.y1f5{bottom:248.139667pt;}
.y1c4{bottom:248.902000pt;}
.y193{bottom:248.940000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y7e{bottom:253.541333pt;}
.y161{bottom:255.714667pt;}
.y1c6{bottom:255.842067pt;}
.y248{bottom:256.369333pt;}
.y49{bottom:258.656000pt;}
.y1f4{bottom:260.829600pt;}
.y10b{bottom:263.096000pt;}
.yab{bottom:263.584000pt;}
.yd6{bottom:264.124000pt;}
.y217{bottom:265.785133pt;}
.y192{bottom:266.953333pt;}
.y7d{bottom:271.554667pt;}
.y1f3{bottom:273.519533pt;}
.y247{bottom:273.585333pt;}
.y160{bottom:273.728000pt;}
.y1c2{bottom:275.804733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y48{bottom:276.669333pt;}
.y216{bottom:278.475067pt;}
.y10a{bottom:281.109333pt;}
.yaa{bottom:281.597333pt;}
.yd5{bottom:282.136000pt;}
.y1c1{bottom:282.746067pt;}
.y191{bottom:284.965333pt;}
.y1f2{bottom:286.209467pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y7c{bottom:289.566667pt;}
.y1c3{bottom:289.686133pt;}
.y246{bottom:290.800000pt;}
.y215{bottom:291.165000pt;}
.y15f{bottom:291.740000pt;}
.y139{bottom:292.878667pt;}
.y47{bottom:294.681333pt;}
.y1f1{bottom:298.899400pt;}
.y108{bottom:299.121333pt;}
.ya9{bottom:299.609333pt;}
.yd4{bottom:300.148000pt;}
.y190{bottom:302.977333pt;}
.y214{bottom:303.854933pt;}
.y7b{bottom:307.580000pt;}
.y245{bottom:308.016000pt;}
.yf{bottom:309.452000pt;}
.y15e{bottom:309.753333pt;}
.y1c0{bottom:309.951533pt;}
.y138{bottom:310.892000pt;}
.y1f0{bottom:311.589333pt;}
.y109{bottom:312.105333pt;}
.y46{bottom:312.693333pt;}
.y213{bottom:316.544867pt;}
.y107{bottom:317.133333pt;}
.ya8{bottom:317.621333pt;}
.yd3{bottom:318.161333pt;}
.y18f{bottom:320.990667pt;}
.y1ef{bottom:324.280400pt;}
.y244{bottom:325.230667pt;}
.y7a{bottom:325.592000pt;}
.y15d{bottom:327.765333pt;}
.y137{bottom:328.904000pt;}
.y212{bottom:329.234800pt;}
.y45{bottom:330.706667pt;}
.y106{bottom:335.146667pt;}
.ya7{bottom:335.634667pt;}
.y1ee{bottom:336.970333pt;}
.y1bf{bottom:337.306667pt;}
.y18e{bottom:339.002667pt;}
.y211{bottom:341.924733pt;}
.y243{bottom:342.446667pt;}
.y79{bottom:343.604000pt;}
.ye{bottom:343.809333pt;}
.yd2{bottom:344.144000pt;}
.y15c{bottom:345.777333pt;}
.y136{bottom:346.917333pt;}
.y44{bottom:348.718667pt;}
.y1ed{bottom:349.660267pt;}
.y105{bottom:353.158667pt;}
.ya6{bottom:353.646667pt;}
.y210{bottom:354.615800pt;}
.y18d{bottom:357.016000pt;}
.yd1{bottom:359.154667pt;}
.y242{bottom:359.662667pt;}
.y78{bottom:361.617333pt;}
.y1d5{bottom:362.294667pt;}
.y1ec{bottom:362.350200pt;}
.yd{bottom:362.706666pt;}
.y15b{bottom:363.790667pt;}
.y135{bottom:364.929333pt;}
.y43{bottom:366.732000pt;}
.y20f{bottom:367.305733pt;}
.y1be{bottom:369.793333pt;}
.y104{bottom:371.172000pt;}
.ya5{bottom:371.660000pt;}
.y18c{bottom:375.028000pt;}
.y1eb{bottom:375.040133pt;}
.y241{bottom:376.877333pt;}
.y77{bottom:379.629333pt;}
.y20e{bottom:379.995667pt;}
.y15a{bottom:381.802667pt;}
.y134{bottom:382.941333pt;}
.y1d4{bottom:383.774667pt;}
.y42{bottom:384.744000pt;}
.y1ea{bottom:387.730067pt;}
.y1bd{bottom:387.806667pt;}
.y103{bottom:389.184000pt;}
.ya4{bottom:389.672000pt;}
.yd0{bottom:390.105333pt;}
.y20d{bottom:392.685600pt;}
.y240{bottom:394.093333pt;}
.y273{bottom:395.605333pt;}
.y76{bottom:397.642667pt;}
.y159{bottom:399.816000pt;}
.y1e9{bottom:400.420000pt;}
.y133{bottom:400.954667pt;}
.y41{bottom:402.756000pt;}
.y1d3{bottom:405.253333pt;}
.y20c{bottom:405.375533pt;}
.y1bc{bottom:405.818667pt;}
.y102{bottom:407.196000pt;}
.ya3{bottom:407.684000pt;}
.y18b{bottom:408.050667pt;}
.y23f{bottom:411.308000pt;}
.y272{bottom:412.821333pt;}
.y1e8{bottom:413.109933pt;}
.y75{bottom:415.654667pt;}
.y158{bottom:417.828000pt;}
.y20b{bottom:418.065467pt;}
.y1d2{bottom:418.762667pt;}
.y132{bottom:418.966667pt;}
.y40{bottom:420.769333pt;}
.ycf{bottom:421.056000pt;}
.y1bb{bottom:423.832000pt;}
.y101{bottom:425.209333pt;}
.ya2{bottom:425.697333pt;}
.y1e7{bottom:425.799867pt;}
.y23e{bottom:428.524000pt;}
.y271{bottom:430.037333pt;}
.y20a{bottom:430.755400pt;}
.y1d1{bottom:432.272000pt;}
.y74{bottom:433.666667pt;}
.y157{bottom:435.840000pt;}
.y131{bottom:436.980000pt;}
.y1e6{bottom:438.489800pt;}
.y3f{bottom:438.781333pt;}
.y18a{bottom:441.073333pt;}
.y1ba{bottom:441.844000pt;}
.y100{bottom:443.221333pt;}
.y209{bottom:443.445333pt;}
.ya1{bottom:443.709333pt;}
.y23d{bottom:445.740000pt;}
.yc{bottom:446.990669pt;}
.y1e5{bottom:451.179733pt;}
.y156{bottom:451.406667pt;}
.y155{bottom:451.442667pt;}
.y73{bottom:451.680000pt;}
.y154{bottom:453.853333pt;}
.y130{bottom:454.992000pt;}
.yce{bottom:455.008000pt;}
.y208{bottom:456.135267pt;}
.y3e{bottom:456.794667pt;}
.y270{bottom:458.376000pt;}
.y189{bottom:459.086667pt;}
.y1b9{bottom:459.856000pt;}
.yff{bottom:461.234667pt;}
.ya0{bottom:461.722667pt;}
.y23c{bottom:462.954667pt;}
.yb{bottom:462.990669pt;}
.y1e4{bottom:463.869667pt;}
.y207{bottom:468.825200pt;}
.y72{bottom:469.692000pt;}
.y153{bottom:471.865333pt;}
.y12f{bottom:473.004000pt;}
.ycd{bottom:474.142267pt;}
.y3d{bottom:474.806667pt;}
.y26f{bottom:475.592000pt;}
.y1e3{bottom:476.559600pt;}
.y188{bottom:477.098667pt;}
.y1b8{bottom:477.869333pt;}
.ya{bottom:478.990666pt;}
.yfe{bottom:479.246667pt;}
.y9f{bottom:479.734667pt;}
.y23b{bottom:480.170667pt;}
.y206{bottom:481.515133pt;}
.y71{bottom:487.704000pt;}
.ycb{bottom:488.462027pt;}
.y1e2{bottom:489.249533pt;}
.y152{bottom:489.878667pt;}
.y12e{bottom:491.017333pt;}
.y26e{bottom:492.806667pt;}
.y3c{bottom:492.818667pt;}
.y205{bottom:494.205067pt;}
.y9{bottom:494.990666pt;}
.y187{bottom:495.112000pt;}
.y1b7{bottom:495.881333pt;}
.yfd{bottom:497.258667pt;}
.y23a{bottom:497.385333pt;}
.y9e{bottom:497.746667pt;}
.y1e1{bottom:501.939467pt;}
.ycc{bottom:502.781787pt;}
.y70{bottom:505.717333pt;}
.y204{bottom:506.895000pt;}
.y151{bottom:507.890667pt;}
.y12d{bottom:509.029333pt;}
.y26d{bottom:510.022667pt;}
.y3b{bottom:510.832000pt;}
.y186{bottom:513.124000pt;}
.y1b6{bottom:513.894667pt;}
.y239{bottom:514.601333pt;}
.y1e0{bottom:514.629400pt;}
.yfc{bottom:515.272000pt;}
.y9d{bottom:515.760000pt;}
.y203{bottom:519.584933pt;}
.yca{bottom:523.376160pt;}
.y6f{bottom:523.729333pt;}
.y150{bottom:525.902667pt;}
.y12c{bottom:527.042667pt;}
.y26c{bottom:527.237333pt;}
.y1df{bottom:527.319333pt;}
.y185{bottom:531.136000pt;}
.y238{bottom:531.817333pt;}
.y1b5{bottom:531.906667pt;}
.y202{bottom:532.274867pt;}
.yfb{bottom:533.284000pt;}
.y9c{bottom:533.772000pt;}
.y3a{bottom:536.814667pt;}
.yc8{bottom:537.695920pt;}
.y1de{bottom:540.009267pt;}
.y6e{bottom:541.742667pt;}
.y14f{bottom:543.916000pt;}
.y26b{bottom:544.453333pt;}
.y201{bottom:544.964800pt;}
.y12b{bottom:545.054667pt;}
.y237{bottom:549.032000pt;}
.y184{bottom:549.149333pt;}
.y1b4{bottom:549.918667pt;}
.yfa{bottom:551.297333pt;}
.y9b{bottom:551.785333pt;}
.yc9{bottom:552.015680pt;}
.y1dd{bottom:552.699200pt;}
.y200{bottom:557.654733pt;}
.y6d{bottom:559.754667pt;}
.y26a{bottom:561.669333pt;}
.y14e{bottom:561.928000pt;}
.y12a{bottom:563.066667pt;}
.y1dc{bottom:565.389133pt;}
.y236{bottom:566.248000pt;}
.y1b3{bottom:567.932000pt;}
.yf9{bottom:569.309333pt;}
.y9a{bottom:569.797333pt;}
.y1ff{bottom:570.344667pt;}
.yc7{bottom:572.608747pt;}
.y8{bottom:573.786667pt;}
.y183{bottom:575.132000pt;}
.y6c{bottom:577.766667pt;}
.y269{bottom:578.884000pt;}
.y14d{bottom:579.941333pt;}
.y129{bottom:581.080000pt;}
.y1fe{bottom:583.034600pt;}
.y1da{bottom:583.251600pt;}
.y235{bottom:583.462667pt;}
.yc5{bottom:586.928507pt;}
.yf8{bottom:587.321333pt;}
.y99{bottom:587.809333pt;}
.y1d9{bottom:589.461133pt;}
.y7{bottom:592.685334pt;}
.y1b2{bottom:594.950667pt;}
.y14c{bottom:595.506667pt;}
.y1db{bottom:595.671800pt;}
.y1fd{bottom:595.724533pt;}
.y6b{bottom:595.780000pt;}
.y268{bottom:596.100000pt;}
.y14b{bottom:597.953333pt;}
.y128{bottom:599.092000pt;}
.y234{bottom:600.678667pt;}
.yc6{bottom:601.248267pt;}
.y39{bottom:604.740000pt;}
.yf7{bottom:605.334667pt;}
.y98{bottom:605.822667pt;}
.y182{bottom:606.082667pt;}
.y1fc{bottom:608.414467pt;}
.y1b1{bottom:612.962667pt;}
.y267{bottom:613.314667pt;}
.y14a{bottom:613.706667pt;}
.y6a{bottom:613.792000pt;}
.y149{bottom:615.965333pt;}
.y127{bottom:617.105333pt;}
.y1d8{bottom:621.528000pt;}
.yc4{bottom:622.152320pt;}
.yf6{bottom:623.346667pt;}
.y97{bottom:623.834667pt;}
.y233{bottom:625.864000pt;}
.y1fa{bottom:626.276933pt;}
.y266{bottom:630.530667pt;}
.y1b0{bottom:630.976000pt;}
.y69{bottom:631.805333pt;}
.y1f9{bottom:632.486467pt;}
.y126{bottom:635.117333pt;}
.y38{bottom:638.692000pt;}
.y1fb{bottom:638.697133pt;}
.yf5{bottom:641.360000pt;}
.y181{bottom:641.417333pt;}
.y96{bottom:641.846667pt;}
.y148{bottom:642.984000pt;}
.y6{bottom:645.598667pt;}
.y265{bottom:647.746667pt;}
.y1af{bottom:648.988000pt;}
.y68{bottom:649.817333pt;}
.yc3{bottom:649.958667pt;}
.y125{bottom:653.129333pt;}
.y180{bottom:654.036000pt;}
.y37{bottom:656.705333pt;}
.yf4{bottom:659.372000pt;}
.y95{bottom:659.860000pt;}
.y1d7{bottom:663.236000pt;}
.y1f8{bottom:664.553333pt;}
.y264{bottom:664.961333pt;}
.y232{bottom:665.316000pt;}
.y17f{bottom:666.656000pt;}
.y67{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y124{bottom:671.142667pt;}
.y36{bottom:674.717333pt;}
.y1ae{bottom:674.970667pt;}
.y147{bottom:676.008000pt;}
.yf3{bottom:677.384000pt;}
.y94{bottom:677.872000pt;}
.y231{bottom:677.936000pt;}
.y17e{bottom:679.274667pt;}
.y263{bottom:682.177333pt;}
.yc2{bottom:682.946667pt;}
.y66{bottom:685.842667pt;}
.y123{bottom:689.154667pt;}
.y17d{bottom:691.894667pt;}
.y35{bottom:692.729333pt;}
.y230{bottom:694.949333pt;}
.y93{bottom:695.885333pt;}
.y262{bottom:699.392000pt;}
.yc1{bottom:700.958667pt;}
.yf2{bottom:703.366667pt;}
.y22f{bottom:703.774133pt;}
.y65{bottom:703.854667pt;}
.y22e{bottom:703.898933pt;}
.y17c{bottom:704.513333pt;}
.y146{bottom:709.030667pt;}
.y1d6{bottom:709.729333pt;}
.y1ad{bottom:709.804000pt;}
.y34{bottom:710.742667pt;}
.y92{bottom:713.897333pt;}
.y122{bottom:715.137333pt;}
.y17b{bottom:715.250667pt;}
.y261{bottom:716.608000pt;}
.y17a{bottom:717.133333pt;}
.yc0{bottom:718.972000pt;}
.y64{bottom:721.868000pt;}
.y1ac{bottom:722.422667pt;}
.y145{bottom:727.042667pt;}
.y179{bottom:727.898667pt;}
.y178{bottom:728.017333pt;}
.y33{bottom:728.754667pt;}
.y177{bottom:729.752000pt;}
.y91{bottom:731.909333pt;}
.y22d{bottom:731.920133pt;}
.y260{bottom:733.824000pt;}
.y1ab{bottom:735.042667pt;}
.ybf{bottom:736.984000pt;}
.yf1{bottom:738.701333pt;}
.y63{bottom:739.880000pt;}
.y144{bottom:745.056000pt;}
.y121{bottom:746.088000pt;}
.y32{bottom:746.768000pt;}
.y1aa{bottom:747.661333pt;}
.y176{bottom:749.113333pt;}
.y90{bottom:749.922667pt;}
.y25f{bottom:751.038667pt;}
.yef{bottom:751.321333pt;}
.yf0{bottom:751.432000pt;}
.y22c{bottom:752.779733pt;}
.ybe{bottom:754.997333pt;}
.y62{bottom:757.892000pt;}
.y1a9{bottom:760.281333pt;}
.yee{bottom:763.940000pt;}
.y175{bottom:764.534667pt;}
.y31{bottom:764.780000pt;}
.y8f{bottom:767.934667pt;}
.y25e{bottom:768.254667pt;}
.y143{bottom:771.038667pt;}
.ybd{bottom:773.009333pt;}
.y61{bottom:775.905333pt;}
.yec{bottom:776.560000pt;}
.yed{bottom:776.670667pt;}
.y22b{bottom:779.385333pt;}
.y174{bottom:779.464000pt;}
.y1a8{bottom:779.573333pt;}
.y120{bottom:781.422667pt;}
.y2{bottom:781.661334pt;}
.y25d{bottom:785.469333pt;}
.y8e{bottom:785.948000pt;}
.yea{bottom:789.178667pt;}
.yeb{bottom:789.290667pt;}
.ybc{bottom:791.021333pt;}
.y60{bottom:793.917333pt;}
.y173{bottom:794.393333pt;}
.y1a7{bottom:794.516200pt;}
.y2e{bottom:795.071968pt;}
.y11e{bottom:795.556000pt;}
.y2d{bottom:795.753333pt;}
.ye8{bottom:801.798667pt;}
.ye9{bottom:801.909333pt;}
.y25c{bottom:802.685333pt;}
.y8d{bottom:803.960000pt;}
.y11f{bottom:805.944000pt;}
.y142{bottom:806.372000pt;}
.ybb{bottom:809.034667pt;}
.y1a6{bottom:809.166467pt;}
.y5f{bottom:811.930667pt;}
.y11d{bottom:813.154667pt;}
.y22a{bottom:813.935867pt;}
.ye6{bottom:814.417333pt;}
.ye7{bottom:814.529333pt;}
.y171{bottom:815.408000pt;}
.y141{bottom:818.992000pt;}
.y25b{bottom:819.901333pt;}
.y226{bottom:820.532640pt;}
.y229{bottom:821.414427pt;}
.y8c{bottom:821.972000pt;}
.y170{bottom:822.713333pt;}
.y1a5{bottom:823.349333pt;}
.y11c{bottom:823.541333pt;}
.yba{bottom:827.046667pt;}
.y225{bottom:828.011200pt;}
.y224{bottom:828.983573pt;}
.y5e{bottom:829.942667pt;}
.y172{bottom:830.020000pt;}
.y2c{bottom:830.425333pt;}
.y11a{bottom:830.752000pt;}
.y140{bottom:831.610667pt;}
.ye5{bottom:834.025333pt;}
.y228{bottom:837.085920pt;}
.y25a{bottom:837.116000pt;}
.y1a4{bottom:837.532200pt;}
.y8b{bottom:839.985333pt;}
.y11b{bottom:841.140000pt;}
.y227{bottom:842.695413pt;}
.y13f{bottom:844.230667pt;}
.yb9{bottom:845.060000pt;}
.y2b{bottom:846.564000pt;}
.y5d{bottom:847.954667pt;}
.y118{bottom:848.350667pt;}
.ye4{bottom:848.954667pt;}
.y16e{bottom:851.033333pt;}
.y259{bottom:854.332000pt;}
.y223{bottom:857.220240pt;}
.y1a2{bottom:857.496133pt;}
.y8a{bottom:857.997333pt;}
.y16d{bottom:858.340000pt;}
.y119{bottom:858.737333pt;}
.y1{bottom:859.312000pt;}
.y221{bottom:862.584347pt;}
.y2a{bottom:862.704000pt;}
.yb8{bottom:863.072000pt;}
.y13e{bottom:863.837333pt;}
.y1a1{bottom:864.436200pt;}
.y222{bottom:864.501573pt;}
.y16f{bottom:865.645333pt;}
.y116{bottom:865.948000pt;}
.y5c{bottom:865.968000pt;}
.ye3{bottom:870.285333pt;}
.y1a3{bottom:871.377533pt;}
.y258{bottom:871.546667pt;}
.y89{bottom:876.010667pt;}
.y117{bottom:876.336000pt;}
.y13d{bottom:878.766667pt;}
.y220{bottom:881.036507pt;}
.yb7{bottom:881.084000pt;}
.y5b{bottom:883.980000pt;}
.y29{bottom:885.609333pt;}
.y115{bottom:886.341333pt;}
.y16b{bottom:886.660000pt;}
.y257{bottom:888.762667pt;}
.y21f{bottom:889.469093pt;}
.y21e{bottom:889.588347pt;}
.y19f{bottom:891.340200pt;}
.ye2{bottom:891.617333pt;}
.y13c{bottom:893.696000pt;}
.y16a{bottom:893.965333pt;}
.y88{bottom:894.022667pt;}
.y19e{bottom:898.281533pt;}
.yb6{bottom:899.097333pt;}
.y16c{bottom:901.270667pt;}
.y114{bottom:901.272000pt;}
.y5a{bottom:901.993333pt;}
.y1a0{bottom:905.221600pt;}
.y256{bottom:905.978667pt;}
.y87{bottom:912.034667pt;}
.ye1{bottom:912.948000pt;}
.y13b{bottom:914.710667pt;}
.y21d{bottom:916.364160pt;}
.y59{bottom:920.005333pt;}
.y113{bottom:922.602667pt;}
.y255{bottom:923.193333pt;}
.yb5{bottom:925.080000pt;}
.y28{bottom:925.198667pt;}
.y19d{bottom:925.487000pt;}
.y13a{bottom:929.322667pt;}
.y86{bottom:930.048000pt;}
.y21c{bottom:936.296667pt;}
.y58{bottom:938.017333pt;}
.y254{bottom:940.409333pt;}
.ye0{bottom:941.054667pt;}
.y112{bottom:943.934667pt;}
.y19c{bottom:945.751133pt;}
.y85{bottom:948.060000pt;}
.y27{bottom:952.217333pt;}
.y57{bottom:956.030667pt;}
.y253{bottom:957.624000pt;}
.y21b{bottom:962.301333pt;}
.y111{bottom:965.265333pt;}
.y19b{bottom:966.016533pt;}
.y84{bottom:966.073333pt;}
.y56{bottom:974.042667pt;}
.y252{bottom:974.840000pt;}
.y26{bottom:977.906667pt;}
.y55{bottom:992.056000pt;}
.y110{bottom:993.372000pt;}
.y22{bottom:1011.514667pt;}
.y54{bottom:1038.548000pt;}
.h46{height:2.426427pt;}
.h1d{height:2.507925pt;}
.h1c{height:3.134898pt;}
.h10{height:22.673858pt;}
.h40{height:23.446102pt;}
.h4c{height:24.536618pt;}
.h7{height:28.560000pt;}
.h39{height:29.388273pt;}
.h12{height:29.433775pt;}
.h20{height:29.599908pt;}
.h3a{height:29.713454pt;}
.h3b{height:29.734017pt;}
.h11{height:30.399505pt;}
.h17{height:31.072763pt;}
.h47{height:31.116995pt;}
.h14{height:31.157778pt;}
.h45{height:32.139920pt;}
.ha{height:32.246508pt;}
.h42{height:32.257088pt;}
.h4d{height:32.613786pt;}
.h2c{height:32.845716pt;}
.h2f{height:33.209155pt;}
.h1b{height:33.219600pt;}
.h31{height:33.300014pt;}
.h4e{height:33.713664pt;}
.h15{height:33.882950pt;}
.h16{height:34.257865pt;}
.h19{height:34.574438pt;}
.h1e{height:34.717901pt;}
.h1a{height:34.861363pt;}
.hf{height:34.957005pt;}
.h1f{height:35.052646pt;}
.h2d{height:35.979667pt;}
.h21{height:36.131029pt;}
.h27{height:37.873333pt;}
.he{height:38.415786pt;}
.h13{height:38.840857pt;}
.hc{height:38.947124pt;}
.hb{height:39.846430pt;}
.h29{height:40.158267pt;}
.h2a{height:40.632933pt;}
.h2b{height:40.750267pt;}
.h6{height:40.800000pt;}
.h18{height:41.524400pt;}
.h3c{height:41.536934pt;}
.h23{height:42.079067pt;}
.h22{height:42.084400pt;}
.h34{height:42.316029pt;}
.h32{height:42.321096pt;}
.h3{height:42.840000pt;}
.h48{height:43.464084pt;}
.h28{height:44.548522pt;}
.h9{height:45.272024pt;}
.h33{height:46.385423pt;}
.h3e{height:48.138582pt;}
.h41{height:48.175103pt;}
.h24{height:48.589791pt;}
.h2{height:48.960000pt;}
.h4a{height:50.377585pt;}
.h44{height:51.142848pt;}
.h37{height:54.230939pt;}
.h2e{height:60.969421pt;}
.h30{height:60.974488pt;}
.h3d{height:61.222907pt;}
.h49{height:64.070484pt;}
.h25{height:64.178338pt;}
.h26{height:64.183671pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h43{height:69.631530pt;}
.h38{height:79.069073pt;}
.h3f{height:95.430267pt;}
.h4b{height:99.868884pt;}
.h4{height:105.826671pt;}
.h35{height:793.701333pt;}
.h36{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:26.021437pt;}
.x6{left:53.458976pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.xe{left:106.120000pt;}
.x8{left:108.542667pt;}
.x7{left:109.606667pt;}
.x12{left:111.051280pt;}
.x57{left:117.798667pt;}
.x1c{left:120.077333pt;}
.x94{left:122.714467pt;}
.x1b{left:125.910667pt;}
.x6f{left:129.218667pt;}
.xc{left:130.393333pt;}
.x2c{left:134.837333pt;}
.x47{left:138.817333pt;}
.x8c{left:141.404000pt;}
.x4a{left:143.428000pt;}
.x6a{left:145.602667pt;}
.x7a{left:149.054667pt;}
.x18{left:151.933333pt;}
.xa9{left:153.005333pt;}
.x8e{left:154.544000pt;}
.xaa{left:158.982667pt;}
.x4b{left:159.978667pt;}
.x6b{left:162.174667pt;}
.x4c{left:166.753333pt;}
.xb{left:167.984000pt;}
.x5c{left:169.637333pt;}
.x9c{left:172.819147pt;}
.x35{left:173.941333pt;}
.x4{left:180.874667pt;}
.x2a{left:182.080000pt;}
.x5d{left:186.189333pt;}
.x11{left:187.509573pt;}
.x8f{left:191.684000pt;}
.x5e{left:192.964000pt;}
.x85{left:194.287733pt;}
.x19{left:196.517333pt;}
.x8d{left:198.961333pt;}
.x36{left:200.360000pt;}
.x89{left:202.294667pt;}
.x30{left:205.142667pt;}
.x21{left:210.030667pt;}
.x41{left:211.442667pt;}
.x26{left:213.610667pt;}
.xa6{left:220.041333pt;}
.x1a{left:221.420000pt;}
.xab{left:223.704000pt;}
.x67{left:225.329333pt;}
.x40{left:226.218667pt;}
.x93{left:230.177333pt;}
.x90{left:231.836000pt;}
.x7b{left:233.033333pt;}
.x14{left:236.966667pt;}
.x6c{left:238.608000pt;}
.x22{left:239.918667pt;}
.x3b{left:244.396000pt;}
.x2b{left:246.041333pt;}
.x8b{left:248.320000pt;}
.x49{left:250.514667pt;}
.x68{left:251.917333pt;}
.x48{left:257.753333pt;}
.x8a{left:259.849333pt;}
.xf{left:260.992000pt;}
.x3f{left:262.112000pt;}
.x5f{left:265.073333pt;}
.x69{left:268.093333pt;}
.x2d{left:269.600000pt;}
.x60{left:271.848000pt;}
.x3e{left:274.813333pt;}
.x27{left:277.584000pt;}
.x15{left:279.214667pt;}
.x83{left:283.488000pt;}
.x6e{left:286.360000pt;}
.x39{left:294.756000pt;}
.x84{left:299.617333pt;}
.x6d{left:300.513333pt;}
.x61{left:303.101333pt;}
.x3c{left:306.665333pt;}
.x7c{left:308.108000pt;}
.x7f{left:311.717333pt;}
.x7d{left:313.528000pt;}
.x4d{left:325.360000pt;}
.x37{left:327.734667pt;}
.x10{left:329.429333pt;}
.x3d{left:330.957333pt;}
.x4e{left:341.910667pt;}
.x42{left:344.809333pt;}
.x4f{left:348.420000pt;}
.x24{left:353.262667pt;}
.x3a{left:357.164000pt;}
.x38{left:359.914667pt;}
.x91{left:361.486667pt;}
.x63{left:365.240000pt;}
.x74{left:367.157333pt;}
.x7e{left:368.409333pt;}
.xa7{left:369.695867pt;}
.x23{left:371.108000pt;}
.x9d{left:375.489040pt;}
.x70{left:377.208000pt;}
.x50{left:380.812000pt;}
.x9b{left:383.882667pt;}
.x75{left:385.818667pt;}
.x13{left:390.549893pt;}
.x80{left:393.420000pt;}
.x9e{left:396.899600pt;}
.x65{left:399.386667pt;}
.x3{left:404.408000pt;}
.x64{left:405.792000pt;}
.x81{left:409.125333pt;}
.x5a{left:413.130667pt;}
.x16{left:417.396000pt;}
.x25{left:419.646667pt;}
.x2e{left:421.448000pt;}
.x31{left:435.109333pt;}
.x58{left:437.738667pt;}
.x66{left:441.162667pt;}
.x43{left:446.729333pt;}
.x44{left:447.933333pt;}
.x1d{left:452.469333pt;}
.x32{left:462.738667pt;}
.x76{left:464.205333pt;}
.x5b{left:467.820000pt;}
.x77{left:469.625333pt;}
.x1e{left:483.568000pt;}
.x71{left:485.529333pt;}
.x72{left:489.354667pt;}
.x59{left:492.262667pt;}
.x87{left:511.177333pt;}
.xa4{left:514.776933pt;}
.xd{left:528.134667pt;}
.xa5{left:533.192400pt;}
.x78{left:535.173333pt;}
.x79{left:540.593333pt;}
.x86{left:546.659200pt;}
.x33{left:550.785333pt;}
.x2f{left:553.182667pt;}
.x28{left:554.156000pt;}
.xa3{left:555.953733pt;}
.xa8{left:559.274267pt;}
.x17{left:560.953333pt;}
.x1f{left:563.381333pt;}
.x45{left:564.650667pt;}
.x51{left:570.708000pt;}
.x9f{left:576.714133pt;}
.x46{left:580.652000pt;}
.x34{left:584.176000pt;}
.x52{left:586.442667pt;}
.xa1{left:587.787493pt;}
.x95{left:592.818867pt;}
.x73{left:593.850667pt;}
.x92{left:596.953333pt;}
.x20{left:598.289333pt;}
.xa0{left:600.854907pt;}
.xa2{left:608.015840pt;}
.x53{left:611.690667pt;}
.x29{left:620.552000pt;}
.x9{left:623.413317pt;}
.x54{left:627.424000pt;}
.x62{left:641.370667pt;}
.x88{left:649.941333pt;}
.x55{left:654.096000pt;}
.x96{left:658.620200pt;}
.x97{left:665.393000pt;}
.x56{left:669.614667pt;}
.x82{left:679.632000pt;}
.x98{left:885.999733pt;}
.x9a{left:957.637733pt;}
.x99{left:963.847267pt;}
}




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