
    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_d3c07b82defa534b61cd7160.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aedb5666998b9529233cb7e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4ea2fbbf25248ea3eb5d4138.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5afba8cc9611292f540f02f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ff60bc9c8e9857ded1f8b756.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_736334a87ad3956f57840fd7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4724a965f49415787cc499f9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ab51b531d0360d1b6a73cda1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.427000;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_d4a3467fa5b0b7a7731de0f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_758b6324d9a282d6cffd0e24.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7a794a2594f6be0dc4968d41.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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_7f736dff2769cea081296fec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ed3e3fb98d77b6918b5abc55.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0e2ccff75332f888ad988347.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0286d20cb997517d6686ebe3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_7f736dff2769cea081296fec.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f6fda0fd877664a68ad609f6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.933000;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_92d24496bbdf182248d8577d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_952a43fba283403482eff96a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_710e3a7d5d67c3124719b9a2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7f736dff2769cea081296fec.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_92d24496bbdf182248d8577d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_9d87a921eb14ae195439f8ec.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f144c4a09b37dd1a9888da36.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7f736dff2769cea081296fec.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_e79fd2fc15426bea77d4eb2d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_bb4ece049bfb5a2d2ada7375.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_e869f8c439dbf5761144e255.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7f736dff2769cea081296fec.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_a19bf323a3dfad3926b8ab85.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_4e832bc3a0a9db8c0a0be0d9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_96bc40725e24d5f87d55f118.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m27{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);}
.m1f{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);}
.m14{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m28{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);}
.m11{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);}
.m16{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);}
.m10{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);}
.mb{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);}
.ma{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);}
.m12{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);}
.m26{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);}
.m5{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m4{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);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.me{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);}
.m21{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);}
.m1d{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);}
.m9{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);}
.m15{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);}
.m19{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);}
.m18{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);}
.m6{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);}
.m1e{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);}
.m3{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);}
.m20{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);}
.md{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);}
.m29{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);}
.mf{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);}
.m25{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);}
.m1b{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);}
.m1c{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);}
.m1{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);}
.mc{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);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-7.585800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls3a{letter-spacing:-0.318636px;}
.ls39{letter-spacing:-0.258516px;}
.ls7e{letter-spacing:-0.246492px;}
.ls71{letter-spacing:-0.221400px;}
.ls1b{letter-spacing:-0.198396px;}
.ls21{letter-spacing:-0.180360px;}
.ls73{letter-spacing:-0.168336px;}
.ls2b{letter-spacing:-0.156312px;}
.ls20{letter-spacing:-0.150300px;}
.ls3b{letter-spacing:-0.144288px;}
.ls38{letter-spacing:-0.138276px;}
.ls7f{letter-spacing:-0.132264px;}
.ls2c{letter-spacing:-0.126252px;}
.ls1f{letter-spacing:-0.120240px;}
.ls1e{letter-spacing:-0.114228px;}
.ls23{letter-spacing:-0.108216px;}
.ls1c{letter-spacing:-0.102204px;}
.ls7a{letter-spacing:-0.096192px;}
.ls1a{letter-spacing:-0.090972px;}
.ls34{letter-spacing:-0.090180px;}
.ls68{letter-spacing:-0.086400px;}
.ls61{letter-spacing:-0.086184px;}
.ls2a{letter-spacing:-0.084168px;}
.ls27{letter-spacing:-0.078156px;}
.ls37{letter-spacing:-0.072144px;}
.ls69{letter-spacing:-0.066132px;}
.ls3e{letter-spacing:-0.060120px;}
.ls22{letter-spacing:-0.054108px;}
.ls70{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.048096px;}
.ls28{letter-spacing:-0.042084px;}
.ls19{letter-spacing:-0.038304px;}
.ls67{letter-spacing:-0.037800px;}
.ls26{letter-spacing:-0.036072px;}
.ls79{letter-spacing:-0.032400px;}
.ls25{letter-spacing:-0.030060px;}
.ls60{letter-spacing:-0.028728px;}
.ls66{letter-spacing:-0.027000px;}
.ls1d{letter-spacing:-0.024048px;}
.ls72{letter-spacing:-0.021600px;}
.ls29{letter-spacing:-0.018036px;}
.ls65{letter-spacing:-0.016200px;}
.ls3c{letter-spacing:-0.012024px;}
.ls64{letter-spacing:-0.010800px;}
.ls24{letter-spacing:-0.006012px;}
.ls35{letter-spacing:-0.005400px;}
.ls9{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.000800px;}
.ls6c{letter-spacing:0.001133px;}
.ls6d{letter-spacing:0.001555px;}
.ls89{letter-spacing:0.002544px;}
.ls83{letter-spacing:0.004343px;}
.ls88{letter-spacing:0.004800px;}
.ls11{letter-spacing:0.005400px;}
.ls12{letter-spacing:0.006012px;}
.ls2e{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.012024px;}
.ls48{letter-spacing:0.016200px;}
.ls2d{letter-spacing:0.018036px;}
.lse{letter-spacing:0.019152px;}
.ls10{letter-spacing:0.021600px;}
.ls7d{letter-spacing:0.023940px;}
.ls2f{letter-spacing:0.024048px;}
.ls43{letter-spacing:0.027000px;}
.ls42{letter-spacing:0.028728px;}
.ls13{letter-spacing:0.030060px;}
.ls45{letter-spacing:0.032400px;}
.ls15{letter-spacing:0.036072px;}
.ls6b{letter-spacing:0.042084px;}
.ls51{letter-spacing:0.043200px;}
.ls18{letter-spacing:0.048096px;}
.ls4f{letter-spacing:0.048600px;}
.ls58{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.054108px;}
.ls76{letter-spacing:0.059400px;}
.ls30{letter-spacing:0.060120px;}
.ls44{letter-spacing:0.064800px;}
.ls4b{letter-spacing:0.075600px;}
.ls74{letter-spacing:0.078156px;}
.ls17{letter-spacing:0.084168px;}
.ls75{letter-spacing:0.090180px;}
.ls5f{letter-spacing:0.097200px;}
.ls3d{letter-spacing:0.102204px;}
.ls6a{letter-spacing:0.108000px;}
.ls7b{letter-spacing:0.108216px;}
.ls62{letter-spacing:0.113400px;}
.lsf{letter-spacing:0.172368px;}
.lsd{letter-spacing:0.181944px;}
.ls41{letter-spacing:0.191520px;}
.lsa{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls8b{letter-spacing:11.572849px;}
.ls7c{letter-spacing:11.954850px;}
.ls8{letter-spacing:11.960850px;}
.ls80{letter-spacing:13.448400px;}
.ls81{letter-spacing:13.454400px;}
.ls85{letter-spacing:13.495298px;}
.ls8c{letter-spacing:13.559482px;}
.ls82{letter-spacing:13.606922px;}
.ls6f{letter-spacing:14.047266px;}
.ls8a{letter-spacing:14.238635px;}
.ls86{letter-spacing:14.338635px;}
.ls6e{letter-spacing:14.884124px;}
.ls0{letter-spacing:14.944200px;}
.ls2{letter-spacing:14.945108px;}
.ls7{letter-spacing:15.031906px;}
.ls77{letter-spacing:15.063451px;}
.ls78{letter-spacing:15.242778px;}
.lsc{letter-spacing:15.663483px;}
.ls32{letter-spacing:16.378514px;}
.ls33{letter-spacing:17.112230px;}
.lsb{letter-spacing:18.679200px;}
.ls84{letter-spacing:19.438635px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls63{letter-spacing:85.903200px;}
.ls40{letter-spacing:149.441527px;}
.ls55{letter-spacing:152.528400px;}
.ls5a{letter-spacing:157.928400px;}
.ls3f{letter-spacing:164.379446px;}
.ls5e{letter-spacing:179.901000px;}
.ls4d{letter-spacing:193.222800px;}
.ls4e{letter-spacing:202.230000px;}
.ls5b{letter-spacing:207.273600px;}
.ls49{letter-spacing:209.790000px;}
.ls4a{letter-spacing:210.875400px;}
.ls59{letter-spacing:211.955400px;}
.ls57{letter-spacing:215.557200px;}
.ls47{letter-spacing:228.522600px;}
.ls5d{letter-spacing:231.039000px;}
.ls50{letter-spacing:234.640800px;}
.ls4c{letter-spacing:236.444400px;}
.ls46{letter-spacing:241.126200px;}
.ls56{letter-spacing:242.924400px;}
.ls5c{letter-spacing:243.648000px;}
.ls54{letter-spacing:244.366200px;}
.ls52{letter-spacing:259.853400px;}
.ls53{letter-spacing:262.013400px;}
.ls31{letter-spacing:846.000000px;}
.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;}
}
.ws11f{word-spacing:-15.030000px;}
.ws1{word-spacing:-14.943900px;}
.wsdb{word-spacing:-13.500000px;}
.wsbc{word-spacing:-13.449600px;}
.wsb5{word-spacing:-12.642624px;}
.wsba{word-spacing:-12.161520px;}
.ws44{word-spacing:-12.151944px;}
.ws1e{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.wsbb{word-spacing:-8.280000px;}
.ws51{word-spacing:-3.156300px;}
.ws144{word-spacing:-3.144276px;}
.ws67{word-spacing:-3.126240px;}
.ws145{word-spacing:-3.114216px;}
.ws66{word-spacing:-3.072132px;}
.ws13f{word-spacing:-2.831652px;}
.ws3e{word-spacing:-2.809453px;}
.ws13e{word-spacing:-2.759508px;}
.wsb1{word-spacing:-2.753496px;}
.wsb2{word-spacing:-2.476944px;}
.ws19a{word-spacing:-2.420928px;}
.wsb0{word-spacing:-2.392776px;}
.ws10{word-spacing:-2.331248px;}
.wsa8{word-spacing:-2.056104px;}
.ws79{word-spacing:-1.965924px;}
.ws78{word-spacing:-1.911816px;}
.ws8{word-spacing:-1.908367px;}
.ws40{word-spacing:-1.853044px;}
.ws94{word-spacing:-1.659312px;}
.wsd4{word-spacing:-1.647288px;}
.wsd5{word-spacing:-1.635264px;}
.ws105{word-spacing:-1.625400px;}
.ws151{word-spacing:-1.611216px;}
.ws106{word-spacing:-1.609200px;}
.ws157{word-spacing:-1.554166px;}
.ws158{word-spacing:-1.494390px;}
.ws12c{word-spacing:-1.394784px;}
.wsa6{word-spacing:-1.376748px;}
.ws7{word-spacing:-1.322630px;}
.wsd3{word-spacing:-1.263600px;}
.ws95{word-spacing:-1.244484px;}
.ws93{word-spacing:-1.154304px;}
.ws35{word-spacing:-1.135736px;}
.ws180{word-spacing:-1.129766px;}
.ws10e{word-spacing:-1.052100px;}
.ws7b{word-spacing:-1.040076px;}
.ws31{word-spacing:-1.016185px;}
.wsa7{word-spacing:-0.961920px;}
.wse2{word-spacing:-0.956410px;}
.ws48{word-spacing:-0.896634px;}
.ws10f{word-spacing:-0.895788px;}
.ws13a{word-spacing:-0.661320px;}
.ws7a{word-spacing:-0.607212px;}
.wsc{word-spacing:-0.597756px;}
.ws15b{word-spacing:-0.537980px;}
.ws37{word-spacing:-0.478205px;}
.ws174{word-spacing:-0.430387px;}
.ws18{word-spacing:-0.426784px;}
.ws16{word-spacing:-0.424436px;}
.ws17{word-spacing:-0.418429px;}
.ws125{word-spacing:-0.358654px;}
.ws15d{word-spacing:-0.322790px;}
.ws27{word-spacing:-0.298878px;}
.ws6d{word-spacing:-0.270540px;}
.wsde{word-spacing:-0.268992px;}
.wsbf{word-spacing:-0.268128px;}
.ws4e{word-spacing:-0.263340px;}
.wscc{word-spacing:-0.248400px;}
.ws1c{word-spacing:-0.239102px;}
.ws6c{word-spacing:-0.234468px;}
.ws6e{word-spacing:-0.228456px;}
.ws21{word-spacing:-0.219015px;}
.ws167{word-spacing:-0.215194px;}
.wsd0{word-spacing:-0.199800px;}
.ws26{word-spacing:-0.186981px;}
.ws25{word-spacing:-0.179327px;}
.ws24{word-spacing:-0.172279px;}
.ws168{word-spacing:-0.161395px;}
.ws23{word-spacing:-0.157276px;}
.ws113{word-spacing:-0.156312px;}
.wsa5{word-spacing:-0.144288px;}
.ws114{word-spacing:-0.132264px;}
.wsd{word-spacing:-0.119551px;}
.wsbe{word-spacing:-0.114912px;}
.ws4d{word-spacing:-0.110124px;}
.ws17f{word-spacing:-0.107597px;}
.ws4{word-spacing:-0.059776px;}
.wsbd{word-spacing:-0.057456px;}
.ws169{word-spacing:-0.053798px;}
.ws4c{word-spacing:-0.052668px;}
.wsb7{word-spacing:-0.050570px;}
.ws18d{word-spacing:-0.009302px;}
.ws15f{word-spacing:-0.008429px;}
.ws186{word-spacing:-0.008141px;}
.ws171{word-spacing:-0.005933px;}
.ws191{word-spacing:-0.004752px;}
.ws184{word-spacing:-0.004714px;}
.ws2{word-spacing:-0.003224px;}
.ws18a{word-spacing:-0.002918px;}
.ws173{word-spacing:-0.002794px;}
.ws18f{word-spacing:-0.002688px;}
.ws170{word-spacing:-0.002304px;}
.ws188{word-spacing:-0.002141px;}
.ws6{word-spacing:-0.002008px;}
.ws15{word-spacing:-0.001991px;}
.ws5{word-spacing:-0.000208px;}
.ws0{word-spacing:0.000000px;}
.ws6b{word-spacing:0.006012px;}
.ws14f{word-spacing:0.030060px;}
.wsb8{word-spacing:0.050570px;}
.ws11e{word-spacing:0.052722px;}
.ws15c{word-spacing:0.053798px;}
.wsf{word-spacing:0.059776px;}
.ws10a{word-spacing:0.072144px;}
.wsd2{word-spacing:0.086400px;}
.ws97{word-spacing:0.090180px;}
.ws6a{word-spacing:0.096192px;}
.ws103{word-spacing:0.107597px;}
.wsc6{word-spacing:0.108000px;}
.wsda{word-spacing:0.108216px;}
.ws12e{word-spacing:0.113400px;}
.wsa4{word-spacing:0.114228px;}
.wsc0{word-spacing:0.118800px;}
.wse{word-spacing:0.119551px;}
.ws8e{word-spacing:0.120240px;}
.wscf{word-spacing:0.129600px;}
.wsc9{word-spacing:0.135000px;}
.wscb{word-spacing:0.140400px;}
.wsb9{word-spacing:0.143462px;}
.ws4f{word-spacing:0.156600px;}
.ws165{word-spacing:0.161395px;}
.ws90{word-spacing:0.167400px;}
.ws50{word-spacing:0.172800px;}
.ws14c{word-spacing:0.174348px;}
.ws1a{word-spacing:0.179327px;}
.ws8f{word-spacing:0.183600px;}
.wsc4{word-spacing:0.194400px;}
.wsb3{word-spacing:0.198396px;}
.wsc7{word-spacing:0.199800px;}
.wscd{word-spacing:0.210600px;}
.ws16e{word-spacing:0.215194px;}
.wsce{word-spacing:0.221400px;}
.ws18c{word-spacing:0.229386px;}
.ws2f{word-spacing:0.239102px;}
.ws183{word-spacing:0.268992px;}
.wsd1{word-spacing:0.270000px;}
.ws11{word-spacing:0.298878px;}
.ws104{word-spacing:0.322790px;}
.ws12d{word-spacing:0.336672px;}
.ws112{word-spacing:0.342684px;}
.ws14{word-spacing:0.358654px;}
.ws3d{word-spacing:0.418429px;}
.ws14d{word-spacing:0.450900px;}
.wsff{word-spacing:0.456912px;}
.wsfe{word-spacing:0.468936px;}
.wsfd{word-spacing:0.498996px;}
.ws14e{word-spacing:0.547092px;}
.ws196{word-spacing:0.591782px;}
.ws2b{word-spacing:0.597756px;}
.ws176{word-spacing:0.645581px;}
.wse1{word-spacing:0.717307px;}
.wsf5{word-spacing:0.733464px;}
.ws64{word-spacing:0.781560px;}
.ws65{word-spacing:0.799596px;}
.ws166{word-spacing:0.806976px;}
.ws140{word-spacing:0.811620px;}
.ws110{word-spacing:0.823644px;}
.ws92{word-spacing:0.829656px;}
.ws111{word-spacing:0.835668px;}
.ws153{word-spacing:0.836858px;}
.ws91{word-spacing:0.841680px;}
.ws178{word-spacing:0.860774px;}
.ws154{word-spacing:0.867774px;}
.wsd8{word-spacing:0.883764px;}
.ws126{word-spacing:0.896634px;}
.wsd9{word-spacing:0.925848px;}
.ws42{word-spacing:1.016185px;}
.ws36{word-spacing:1.075961px;}
.wsa{word-spacing:1.135736px;}
.ws9e{word-spacing:1.196388px;}
.ws9d{word-spacing:1.244484px;}
.ws10b{word-spacing:1.274544px;}
.ws141{word-spacing:1.292580px;}
.ws41{word-spacing:1.315063px;}
.ws86{word-spacing:1.374839px;}
.wsdd{word-spacing:1.398758px;}
.wsac{word-spacing:1.424844px;}
.ws33{word-spacing:1.434614px;}
.ws71{word-spacing:1.545084px;}
.ws18b{word-spacing:1.560154px;}
.ws192{word-spacing:1.613952px;}
.wseb{word-spacing:1.614600px;}
.wsec{word-spacing:1.625400px;}
.wsed{word-spacing:1.641600px;}
.ws72{word-spacing:1.647288px;}
.wsab{word-spacing:1.653300px;}
.ws9b{word-spacing:1.665324px;}
.wsdc{word-spacing:1.667750px;}
.ws9c{word-spacing:1.785564px;}
.ws3a{word-spacing:1.793268px;}
.ws98{word-spacing:1.827648px;}
.ws3f{word-spacing:1.853044px;}
.ws160{word-spacing:1.882944px;}
.wsad{word-spacing:1.899792px;}
.wsa3{word-spacing:1.911816px;}
.wse7{word-spacing:1.912819px;}
.ws189{word-spacing:1.936742px;}
.ws10d{word-spacing:1.959912px;}
.ws99{word-spacing:1.977948px;}
.ws10c{word-spacing:1.989972px;}
.wsd6{word-spacing:2.001996px;}
.ws85{word-spacing:2.092146px;}
.ws82{word-spacing:2.151922px;}
.ws57{word-spacing:2.164320px;}
.ws81{word-spacing:2.175370px;}
.ws1f{word-spacing:2.211697px;}
.ws20{word-spacing:2.224116px;}
.ws8d{word-spacing:2.224440px;}
.ws146{word-spacing:2.290572px;}
.ws148{word-spacing:2.356704px;}
.ws56{word-spacing:2.362716px;}
.ws147{word-spacing:2.386764px;}
.ws32{word-spacing:2.391024px;}
.ws159{word-spacing:2.510575px;}
.ws164{word-spacing:2.528525px;}
.ws138{word-spacing:2.573136px;}
.ws115{word-spacing:2.609208px;}
.ws4a{word-spacing:2.630126px;}
.ws5c{word-spacing:2.663316px;}
.ws139{word-spacing:2.669328px;}
.ws38{word-spacing:2.689902px;}
.ws172{word-spacing:2.743718px;}
.wse4{word-spacing:2.749678px;}
.ws5b{word-spacing:2.789568px;}
.ws47{word-spacing:2.869229px;}
.ws1d{word-spacing:2.869236px;}
.ws14a{word-spacing:2.879748px;}
.ws3c{word-spacing:2.929004px;}
.wsa9{word-spacing:2.933856px;}
.ws129{word-spacing:2.988780px;}
.wsaa{word-spacing:3.012012px;}
.ws149{word-spacing:3.054096px;}
.ws14b{word-spacing:3.096180px;}
.ws17d{word-spacing:3.120307px;}
.ws30{word-spacing:3.168107px;}
.ws194{word-spacing:3.174106px;}
.ws193{word-spacing:3.218918px;}
.ws161{word-spacing:3.224563px;}
.ws16a{word-spacing:3.224784px;}
.ws15e{word-spacing:3.224822px;}
.ws16f{word-spacing:3.225494px;}
.ws17a{word-spacing:3.227827px;}
.wsdf{word-spacing:3.227882px;}
.ws163{word-spacing:3.227904px;}
.ws181{word-spacing:3.228077px;}
.ws28{word-spacing:3.287658px;}
.wsf3{word-spacing:3.294576px;}
.ws29{word-spacing:3.301255px;}
.ws4b{word-spacing:3.347434px;}
.ws198{word-spacing:3.389299px;}
.wsf8{word-spacing:3.402792px;}
.wsf4{word-spacing:3.414816px;}
.ws195{word-spacing:3.443098px;}
.wsf9{word-spacing:3.450888px;}
.ws175{word-spacing:3.496896px;}
.ws12{word-spacing:3.583475px;}
.ws13{word-spacing:3.586536px;}
.ws96{word-spacing:3.637260px;}
.ws39{word-spacing:3.646312px;}
.ws55{word-spacing:3.715416px;}
.wsf2{word-spacing:3.739464px;}
.ws83{word-spacing:3.765863px;}
.ws54{word-spacing:3.793572px;}
.ws121{word-spacing:3.825638px;}
.ws9{word-spacing:3.885414px;}
.ws53{word-spacing:3.889764px;}
.ws187{word-spacing:3.927283px;}
.ws2e{word-spacing:3.945190px;}
.ws34{word-spacing:4.004965px;}
.wsd7{word-spacing:4.034052px;}
.ws190{word-spacing:4.088678px;}
.ws1b{word-spacing:4.124516px;}
.wsb{word-spacing:4.184292px;}
.ws152{word-spacing:4.244068px;}
.ws162{word-spacing:4.303872px;}
.ws101{word-spacing:4.406796px;}
.ws102{word-spacing:4.412808px;}
.wsf0{word-spacing:4.424832px;}
.ws68{word-spacing:4.442868px;}
.ws107{word-spacing:4.482000px;}
.wse8{word-spacing:4.492800px;}
.ws108{word-spacing:4.509000px;}
.ws185{word-spacing:4.519066px;}
.ws109{word-spacing:4.530600px;}
.wse9{word-spacing:4.552200px;}
.wsea{word-spacing:4.719600px;}
.ws7d{word-spacing:4.731444px;}
.ws16b{word-spacing:4.734259px;}
.ws52{word-spacing:4.737456px;}
.ws89{word-spacing:4.773528px;}
.ws124{word-spacing:4.782048px;}
.ws199{word-spacing:4.788058px;}
.ws7c{word-spacing:4.893768px;}
.ws12b{word-spacing:5.068116px;}
.wsee{word-spacing:5.086152px;}
.ws8c{word-spacing:5.110200px;}
.ws3b{word-spacing:5.140702px;}
.ws130{word-spacing:5.152284px;}
.ws12f{word-spacing:5.164308px;}
.ws179{word-spacing:5.164646px;}
.wse3{word-spacing:5.200477px;}
.ws43{word-spacing:5.260253px;}
.wsef{word-spacing:5.296572px;}
.wse6{word-spacing:5.320028px;}
.ws197{word-spacing:5.433638px;}
.ws128{word-spacing:5.559131px;}
.ws123{word-spacing:5.618906px;}
.wsa2{word-spacing:5.633244px;}
.ws177{word-spacing:5.648832px;}
.wsa1{word-spacing:5.807592px;}
.ws62{word-spacing:5.819616px;}
.ws150{word-spacing:5.831640px;}
.ws5e{word-spacing:5.855688px;}
.ws49{word-spacing:5.858009px;}
.ws61{word-spacing:5.885748px;}
.ws22{word-spacing:5.917784px;}
.ws5d{word-spacing:5.957892px;}
.ws16d{word-spacing:5.971622px;}
.ws136{word-spacing:6.180336px;}
.wsfa{word-spacing:6.216408px;}
.ws137{word-spacing:6.222420px;}
.wsfb{word-spacing:6.288552px;}
.ws122{word-spacing:6.395989px;}
.ws2d{word-spacing:6.436549px;}
.ws2c{word-spacing:6.455765px;}
.ws84{word-spacing:6.515540px;}
.ws5a{word-spacing:6.517008px;}
.ws80{word-spacing:6.541056px;}
.wsaf{word-spacing:6.631236px;}
.wsae{word-spacing:6.685344px;}
.wse0{word-spacing:6.694867px;}
.ws58{word-spacing:7.052076px;}
.ws59{word-spacing:7.082136px;}
.ws15a{word-spacing:7.113296px;}
.ws2a{word-spacing:7.232848px;}
.ws69{word-spacing:7.256484px;}
.ws19{word-spacing:7.292623px;}
.ws88{word-spacing:7.310592px;}
.ws87{word-spacing:7.328628px;}
.ws127{word-spacing:7.531726px;}
.ws46{word-spacing:7.591501px;}
.ws75{word-spacing:8.044056px;}
.ws134{word-spacing:8.056080px;}
.ws135{word-spacing:8.062092px;}
.ws73{word-spacing:8.092152px;}
.ws74{word-spacing:8.206380px;}
.wsfc{word-spacing:8.278524px;}
.ws182{word-spacing:8.392550px;}
.ws77{word-spacing:8.422812px;}
.ws17b{word-spacing:8.446349px;}
.ws76{word-spacing:8.446860px;}
.ws8a{word-spacing:8.458884px;}
.ws8b{word-spacing:8.470908px;}
.ws7f{word-spacing:8.735436px;}
.ws7e{word-spacing:8.771508px;}
.wsa0{word-spacing:9.126216px;}
.ws70{word-spacing:9.168300px;}
.ws6f{word-spacing:9.204372px;}
.ws9f{word-spacing:9.216396px;}
.ws100{word-spacing:9.432828px;}
.ws18e{word-spacing:9.683712px;}
.wsf1{word-spacing:9.769500px;}
.ws13d{word-spacing:9.781524px;}
.ws13c{word-spacing:9.817596px;}
.ws12a{word-spacing:10.130220px;}
.ws156{word-spacing:10.460730px;}
.ws13b{word-spacing:10.545048px;}
.wsf6{word-spacing:10.575108px;}
.wsf7{word-spacing:10.587132px;}
.wse5{word-spacing:10.879159px;}
.ws155{word-spacing:11.118262px;}
.ws9a{word-spacing:11.915784px;}
.ws45{word-spacing:12.194222px;}
.ws131{word-spacing:13.070088px;}
.ws17e{word-spacing:13.126810px;}
.ws132{word-spacing:13.148244px;}
.ws133{word-spacing:13.184316px;}
.ws63{word-spacing:15.895728px;}
.ws60{word-spacing:15.961860px;}
.ws5f{word-spacing:16.034004px;}
.ws16c{word-spacing:17.914867px;}
.ws120{word-spacing:19.128192px;}
.ws142{word-spacing:25.617132px;}
.ws143{word-spacing:25.635168px;}
.ws17c{word-spacing:29.104934px;}
.wsb4{word-spacing:30.241157px;}
.wsc2{word-spacing:84.790800px;}
.wsb6{word-spacing:95.426526px;}
.ws11b{word-spacing:145.461190px;}
.wsca{word-spacing:147.101400px;}
.wsc5{word-spacing:147.112200px;}
.wsc3{word-spacing:147.117600px;}
.ws11c{word-spacing:156.322011px;}
.wsc8{word-spacing:160.801200px;}
.ws11d{word-spacing:174.563972px;}
.wsc1{word-spacing:176.650200px;}
.ws116{word-spacing:187.744580px;}
.ws118{word-spacing:244.562192px;}
.ws117{word-spacing:250.642442px;}
.ws119{word-spacing:292.151516px;}
.ws11a{word-spacing:323.452120px;}
._54{margin-left:-147.301200px;}
._49{margin-left:-112.352400px;}
._59{margin-left:-90.795600px;}
._4a{margin-left:-86.034156px;}
._53{margin-left:-84.396600px;}
._4e{margin-left:-77.587200px;}
._57{margin-left:-71.236800px;}
._56{margin-left:-63.952200px;}
._58{margin-left:-40.635776px;}
._5b{margin-left:-29.316600px;}
._5a{margin-left:-27.010800px;}
._50{margin-left:-25.930800px;}
._4b{margin-left:-23.995258px;}
._4c{margin-left:-20.892600px;}
._51{margin-left:-12.641400px;}
._2{margin-left:-7.962163px;}
._5{margin-left:-6.630608px;}
._7{margin-left:-5.003251px;}
._1f{margin-left:-3.988963px;}
._8{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._9{width:1.091170px;}
._3{width:2.997070px;}
._20{width:4.384583px;}
._5e{width:8.283436px;}
._0{width:10.165172px;}
._e{width:11.955150px;}
._8f{width:13.435450px;}
._15{width:14.525471px;}
._18{width:15.557658px;}
._6{width:16.677504px;}
._a{width:18.410885px;}
._c{width:20.204153px;}
._1a{width:21.280114px;}
._17{width:22.296299px;}
._b{width:24.089567px;}
._11{width:25.750347px;}
._1e{width:27.616327px;}
._13{width:28.831826px;}
._8d{width:30.532395px;}
._d{width:31.608355px;}
._5d{width:34.656911px;}
._12{width:36.569956px;}
._16{width:38.119039px;}
._14{width:40.707184px;}
._1d{width:41.876821px;}
._1c{width:43.191885px;}
._5c{width:49.690800px;}
._4f{width:50.776200px;}
._4{width:54.412010px;}
._90{width:61.868160px;}
._55{width:63.504000px;}
._52{width:77.068800px;}
._4d{width:83.192400px;}
._8e{width:88.767360px;}
._19{width:93.548814px;}
._42{width:117.171839px;}
._47{width:137.248326px;}
._2f{width:139.776851px;}
._3f{width:142.001953px;}
._22{width:144.633008px;}
._89{width:146.187381px;}
._33{width:150.091906px;}
._3c{width:152.470045px;}
._26{width:154.644577px;}
._25{width:158.740787px;}
._43{width:163.292132px;}
._2e{width:165.668945px;}
._21{width:167.590624px;}
._41{width:169.809619px;}
._36{width:171.231699px;}
._8a{width:177.543328px;}
._37{width:179.929825px;}
._2b{width:183.115766px;}
._45{width:185.543150px;}
._86{width:187.744580px;}
._3a{width:188.880803px;}
._44{width:190.650770px;}
._31{width:193.530060px;}
._24{width:195.151544px;}
._3e{width:196.769800px;}
._29{width:197.983492px;}
._63{width:200.925188px;}
._27{width:207.945880px;}
._2c{width:210.575545px;}
._3b{width:212.648936px;}
._70{width:214.589285px;}
._3d{width:216.890751px;}
._38{width:220.588504px;}
._35{width:223.268740px;}
._68{width:225.205242px;}
._32{width:229.337199px;}
._87{width:231.078628px;}
._6c{width:232.229895px;}
._28{width:235.911364px;}
._23{width:238.490459px;}
._69{width:240.414290px;}
._46{width:242.131535px;}
._61{width:243.470533px;}
._34{width:248.553988px;}
._74{width:249.824802px;}
._71{width:253.098131px;}
._64{width:255.111409px;}
._83{width:256.178297px;}
._2a{width:257.858959px;}
._7b{width:258.889881px;}
._65{width:261.867779px;}
._62{width:265.246555px;}
._39{width:270.501583px;}
._75{width:275.369262px;}
._79{width:276.661122px;}
._30{width:277.733164px;}
._82{width:281.050867px;}
._85{width:283.042685px;}
._40{width:289.718372px;}
._2d{width:291.134345px;}
._84{width:296.300068px;}
._6d{width:298.623220px;}
._76{width:308.742562px;}
._7a{width:309.844353px;}
._88{width:315.749265px;}
._7c{width:334.998333px;}
._7e{width:337.772875px;}
._72{width:357.827146px;}
._7d{width:362.572165px;}
._80{width:367.555564px;}
._73{width:369.127970px;}
._60{width:370.786105px;}
._7f{width:379.390621px;}
._66{width:384.241084px;}
._6e{width:394.311069px;}
._67{width:396.442824px;}
._f{width:403.665894px;}
._6f{width:405.725913px;}
._6a{width:409.706019px;}
._6b{width:421.006843px;}
._81{width:435.065509px;}
._77{width:466.013576px;}
._78{width:477.467188px;}
._8c{width:985.501158px;}
._8b{width:1521.281137px;}
._10{width:1545.191437px;}
._1b{width:1584.920206px;}
._48{width:1586.633816px;}
._5f{width:3024.883301px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs11{font-size:33.120000px;}
.fs10{font-size:39.332232px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fsf{font-size:50.570496px;}
.fs12{font-size:52.722432px;}
.fs6{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fs1{font-size:60.474240px;}
.fsa{font-size:62.286600px;}
.fse{font-size:72.000000px;}
.fs3{font-size:107.596800px;}
.y141{bottom:-711.940050px;}
.y8c{bottom:-695.416050px;}
.yab{bottom:-674.352882px;}
.yaa{bottom:-654.102963px;}
.ya9{bottom:-633.943224px;}
.ya8{bottom:-613.693305px;}
.ycb{bottom:-599.228550px;}
.ya7{bottom:-593.443386px;}
.ya6{bottom:-573.193467px;}
.ya5{bottom:-552.943548px;}
.y16a{bottom:-539.627550px;}
.ya4{bottom:-532.693629px;}
.ye9{bottom:-521.198550px;}
.ya3{bottom:-512.443710px;}
.ye8{bottom:-498.786282px;}
.y197{bottom:-497.870550px;}
.ya2{bottom:-492.283971px;}
.ye7{bottom:-478.536363px;}
.ya1{bottom:-472.034052px;}
.y1b2{bottom:-471.408390px;}
.ye6{bottom:-458.286444px;}
.y1b1{bottom:-451.158471px;}
.ya0{bottom:-442.784169px;}
.ye5{bottom:-438.126705px;}
.y1b0{bottom:-430.908552px;}
.ye4{bottom:-417.876786px;}
.y1af{bottom:-410.748813px;}
.y9f{bottom:-404.444142px;}
.ye3{bottom:-397.626867px;}
.y1ae{bottom:-390.498894px;}
.ye2{bottom:-377.376948px;}
.y1ad{bottom:-370.248975px;}
.y9e{bottom:-366.284475px;}
.ye1{bottom:-357.127029px;}
.y1ac{bottom:-349.999056px;}
.y9d{bottom:-346.034556px;}
.y152{bottom:-344.378718px;}
.ye0{bottom:-336.877110px;}
.y1ab{bottom:-329.749137px;}
.y9c{bottom:-325.784637px;}
.y151{bottom:-324.128799px;}
.ydf{bottom:-316.627191px;}
.y1aa{bottom:-309.499218px;}
.y9b{bottom:-305.624898px;}
.y150{bottom:-303.878880px;}
.yde{bottom:-296.467452px;}
.y178{bottom:-296.086275px;}
.y1a9{bottom:-289.249299px;}
.y9a{bottom:-285.374979px;}
.y14f{bottom:-283.719141px;}
.ydd{bottom:-276.217533px;}
.y177{bottom:-275.926536px;}
.y1a8{bottom:-269.089560px;}
.y99{bottom:-265.125060px;}
.y14e{bottom:-263.469222px;}
.ydc{bottom:-255.967614px;}
.y176{bottom:-255.676617px;}
.y1a7{bottom:-248.839641px;}
.y98{bottom:-244.875141px;}
.y14d{bottom:-243.219303px;}
.ydb{bottom:-235.717695px;}
.y175{bottom:-235.426698px;}
.y1a6{bottom:-228.589722px;}
.y97{bottom:-224.625222px;}
.y14c{bottom:-222.969384px;}
.yda{bottom:-215.467776px;}
.y174{bottom:-215.176779px;}
.y1a5{bottom:-208.339803px;}
.y96{bottom:-204.375303px;}
.y14b{bottom:-202.719465px;}
.yd9{bottom:-195.217857px;}
.y173{bottom:-195.017040px;}
.y1a4{bottom:-188.089884px;}
.y95{bottom:-184.215564px;}
.y14a{bottom:-182.469546px;}
.y172{bottom:-174.767121px;}
.y1a3{bottom:-167.839965px;}
.yd8{bottom:-165.967974px;}
.y94{bottom:-163.965645px;}
.y149{bottom:-162.219627px;}
.y171{bottom:-154.517202px;}
.y1a2{bottom:-147.590046px;}
.y93{bottom:-143.715726px;}
.y148{bottom:-142.059888px;}
.y170{bottom:-134.267283px;}
.yd7{bottom:-127.808307px;}
.y1a1{bottom:-127.430307px;}
.y92{bottom:-123.465807px;}
.y147{bottom:-121.809969px;}
.yd6{bottom:-107.558388px;}
.y1a0{bottom:-107.180388px;}
.y16f{bottom:-105.017400px;}
.y91{bottom:-103.215888px;}
.y146{bottom:-101.560050px;}
.y11b{bottom:-99.406050px;}
.yd5{bottom:-87.308469px;}
.y19f{bottom:-86.930469px;}
.y90{bottom:-82.965969px;}
.y16e{bottom:-67.218450px;}
.yd4{bottom:-67.058550px;}
.y19e{bottom:-66.680550px;}
.y145{bottom:-63.670500px;}
.y8f{bottom:-62.716050px;}
.y16d{bottom:-47.688000px;}
.y144{bottom:-44.230500px;}
.yd3{bottom:-29.168550px;}
.y19d{bottom:-28.790550px;}
.y16c{bottom:-28.157550px;}
.y8e{bottom:-24.916050px;}
.y143{bottom:-24.700050px;}
.yd2{bottom:-4.778514px;}
.y19c{bottom:-4.399641px;}
.y16b{bottom:-3.767550px;}
.y8d{bottom:-0.436050px;}
.y142{bottom:-0.310050px;}
.y0{bottom:0.000000px;}
.y13d{bottom:1.844535px;}
.y15{bottom:3.425340px;}
.y11f{bottom:4.050450px;}
.y4{bottom:6.350457px;}
.y14{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y32{bottom:63.780000px;}
.y212{bottom:110.421000px;}
.y31{bottom:111.856500px;}
.y1cc{bottom:116.923500px;}
.yc8{bottom:118.570500px;}
.yff{bottom:120.658500px;}
.y245{bottom:128.325000px;}
.y211{bottom:129.787500px;}
.y30{bottom:132.120000px;}
.y1cb{bottom:137.187000px;}
.yc7{bottom:138.835500px;}
.yfe{bottom:140.923500px;}
.y244{bottom:147.691500px;}
.y210{bottom:149.155500px;}
.y2f{bottom:152.385000px;}
.y1ca{bottom:157.452000px;}
.yc6{bottom:159.099000px;}
.yfd{bottom:161.187000px;}
.y243{bottom:167.059500px;}
.y20f{bottom:168.523500px;}
.y2e{bottom:172.648500px;}
.y1c9{bottom:177.715500px;}
.yc5{bottom:179.364000px;}
.yfc{bottom:181.450500px;}
.y62{bottom:183.913500px;}
.y242{bottom:186.427500px;}
.y20e{bottom:187.890000px;}
.y2d{bottom:192.913500px;}
.y1c8{bottom:197.980500px;}
.yc4{bottom:199.627500px;}
.yfb{bottom:201.715500px;}
.y61{bottom:204.178500px;}
.y241{bottom:205.794000px;}
.y1e7{bottom:206.629500px;}
.y20d{bottom:207.258000px;}
.y2c{bottom:213.177000px;}
.y1c7{bottom:218.244000px;}
.yc2{bottom:219.891000px;}
.yfa{bottom:221.979000px;}
.y60{bottom:224.442000px;}
.y240{bottom:225.162000px;}
.yc3{bottom:225.316500px;}
.y20c{bottom:226.624500px;}
.y1e6{bottom:226.893000px;}
.y2b{bottom:233.440500px;}
.y1c6{bottom:238.507500px;}
.yc1{bottom:240.156000px;}
.yf9{bottom:242.244000px;}
.y23f{bottom:244.528500px;}
.y5f{bottom:244.707000px;}
.y20b{bottom:245.992500px;}
.y1e5{bottom:247.158000px;}
.y2a{bottom:253.705500px;}
.y1c5{bottom:258.772500px;}
.yc0{bottom:260.419500px;}
.yf8{bottom:262.507500px;}
.y23e{bottom:263.896500px;}
.y5e{bottom:264.970500px;}
.y20a{bottom:265.360500px;}
.y1e4{bottom:267.421500px;}
.y29{bottom:273.969000px;}
.y1c4{bottom:279.036000px;}
.ybf{bottom:280.684500px;}
.y89{bottom:280.930500px;}
.yf7{bottom:282.771000px;}
.y23d{bottom:283.264500px;}
.y209{bottom:284.727000px;}
.y5d{bottom:285.234000px;}
.y1e3{bottom:287.685000px;}
.y28{bottom:294.234000px;}
.y13e{bottom:295.620000px;}
.y1c3{bottom:299.301000px;}
.y88{bottom:301.195500px;}
.y23c{bottom:302.631000px;}
.yf6{bottom:303.036000px;}
.y208{bottom:304.095000px;}
.y5c{bottom:305.499000px;}
.y1e2{bottom:307.950000px;}
.ybe{bottom:309.915000px;}
.y27{bottom:314.497500px;}
.y119{bottom:318.048000px;}
.y1c2{bottom:319.564500px;}
.y87{bottom:321.459000px;}
.y167{bottom:321.804000px;}
.y23b{bottom:321.999000px;}
.yf5{bottom:323.299500px;}
.y207{bottom:323.461500px;}
.y5b{bottom:325.762500px;}
.y184{bottom:326.871000px;}
.y1e1{bottom:328.213500px;}
.y26{bottom:334.761000px;}
.y1c1{bottom:339.828000px;}
.y23a{bottom:341.367000px;}
.y166{bottom:342.067500px;}
.y206{bottom:342.829500px;}
.y86{bottom:343.218000px;}
.yf4{bottom:343.564500px;}
.ybd{bottom:344.734500px;}
.y5a{bottom:346.027500px;}
.y183{bottom:347.134500px;}
.y1e0{bottom:348.478500px;}
.y25{bottom:355.026000px;}
.y1c0{bottom:360.093000px;}
.y239{bottom:360.733500px;}
.y205{bottom:362.197500px;}
.y165{bottom:362.332500px;}
.y85{bottom:363.481500px;}
.yf3{bottom:363.828000px;}
.y59{bottom:366.291000px;}
.y182{bottom:367.399500px;}
.y1df{bottom:368.742000px;}
.yd1{bottom:368.992035px;}
.ybc{bottom:379.554000px;}
.y238{bottom:380.101500px;}
.y1bf{bottom:380.356500px;}
.y204{bottom:381.564000px;}
.y164{bottom:382.596000px;}
.y84{bottom:383.745000px;}
.yf2{bottom:384.091500px;}
.y24{bottom:384.256500px;}
.y58{bottom:386.554500px;}
.y181{bottom:387.663000px;}
.y1de{bottom:389.005500px;}
.yd0{bottom:389.241954px;}
.y140{bottom:394.879950px;}
.y13c{bottom:397.844454px;}
.y237{bottom:399.468000px;}
.ybb{bottom:399.817500px;}
.y1be{bottom:400.621500px;}
.y203{bottom:400.932000px;}
.y163{bottom:402.859500px;}
.y83{bottom:404.010000px;}
.yf1{bottom:404.356500px;}
.y57{bottom:406.819500px;}
.y180{bottom:407.926500px;}
.y1dd{bottom:409.270500px;}
.ycf{bottom:409.491873px;}
.y8b{bottom:411.403950px;}
.y13b{bottom:418.004193px;}
.y236{bottom:418.836000px;}
.yba{bottom:420.081000px;}
.y202{bottom:420.300000px;}
.y1bd{bottom:420.885000px;}
.y162{bottom:423.124500px;}
.y82{bottom:424.273500px;}
.yf0{bottom:424.620000px;}
.y56{bottom:427.083000px;}
.y17f{bottom:428.191500px;}
.y1dc{bottom:429.534000px;}
.yce{bottom:429.651612px;}
.y235{bottom:438.204000px;}
.y13a{bottom:438.254112px;}
.y201{bottom:439.666500px;}
.yb9{bottom:440.346000px;}
.y1bc{bottom:441.148500px;}
.y161{bottom:443.388000px;}
.y55{bottom:447.348000px;}
.y17e{bottom:448.455000px;}
.y1db{bottom:449.799000px;}
.ycd{bottom:449.901531px;}
.yef{bottom:453.850500px;}
.y234{bottom:457.570500px;}
.y139{bottom:458.504031px;}
.yb8{bottom:460.609500px;}
.y23{bottom:460.665000px;}
.y1bb{bottom:461.413500px;}
.y81{bottom:462.471000px;}
.y160{bottom:463.653000px;}
.y54{bottom:467.611500px;}
.y200{bottom:468.000000px;}
.y17d{bottom:468.720000px;}
.y1da{bottom:470.062500px;}
.ycc{bottom:470.151450px;}
.y233{bottom:476.938500px;}
.y138{bottom:478.753950px;}
.yb7{bottom:480.874500px;}
.y1ba{bottom:481.677000px;}
.y80{bottom:482.734500px;}
.y15f{bottom:483.916500px;}
.y53{bottom:487.875000px;}
.yee{bottom:488.670000px;}
.y1d9{bottom:490.326000px;}
.y19b{bottom:492.759693px;}
.y232{bottom:496.305000px;}
.y17c{bottom:497.950500px;}
.y22{bottom:498.861000px;}
.yb6{bottom:501.138000px;}
.y1b9{bottom:501.942000px;}
.y7f{bottom:502.999500px;}
.y15e{bottom:504.180000px;}
.y1ff{bottom:507.453000px;}
.yca{bottom:507.591450px;}
.y52{bottom:508.140000px;}
.yed{bottom:508.935000px;}
.y193{bottom:509.671500px;}
.y1d8{bottom:510.591000px;}
.y19a{bottom:513.009612px;}
.y231{bottom:515.673000px;}
.y137{bottom:516.553500px;}
.y21{bottom:519.126000px;}
.yb5{bottom:521.401500px;}
.y1b8{bottom:522.205500px;}
.y15d{bottom:524.445000px;}
.y7e{bottom:524.757000px;}
.y51{bottom:528.403500px;}
.yec{bottom:529.198500px;}
.y17b{bottom:529.573500px;}
.y1d7{bottom:530.854500px;}
.y192{bottom:531.271800px;}
.y1fe{bottom:531.616500px;}
.y199{bottom:533.259531px;}
.y230{bottom:535.041000px;}
.y136{bottom:535.993500px;}
.y20{bottom:539.389500px;}
.yb4{bottom:541.666500px;}
.y1b7{bottom:542.469000px;}
.y15c{bottom:544.708500px;}
.y7d{bottom:545.022000px;}
.y191{bottom:547.453560px;}
.y50{bottom:548.667000px;}
.y17a{bottom:548.805000px;}
.yeb{bottom:549.462000px;}
.y1d6{bottom:551.119500px;}
.y198{bottom:553.509450px;}
.y22f{bottom:554.407500px;}
.y135{bottom:555.523950px;}
.y1fd{bottom:555.781500px;}
.y1f{bottom:559.653000px;}
.y248{bottom:561.496500px;}
.yb3{bottom:561.930000px;}
.y1b6{bottom:562.734000px;}
.y190{bottom:563.636790px;}
.y15b{bottom:564.973500px;}
.y7c{bottom:565.285500px;}
.y169{bottom:567.192450px;}
.y179{bottom:568.038000px;}
.y4f{bottom:568.932000px;}
.y196{bottom:569.259450px;}
.y1fc{bottom:570.979500px;}
.y1d5{bottom:571.383000px;}
.y22e{bottom:573.775500px;}
.y134{bottom:576.492150px;}
.y195{bottom:577.719450px;}
.y18f{bottom:579.820020px;}
.y1e{bottom:579.918000px;}
.y247{bottom:580.864500px;}
.yb2{bottom:582.195000px;}
.y1b5{bottom:582.997500px;}
.yea{bottom:584.463000px;}
.y15a{bottom:585.237000px;}
.y7b{bottom:585.549000px;}
.y1fb{bottom:586.177500px;}
.y4e{bottom:589.195500px;}
.y168{bottom:590.467500px;}
.y1d4{bottom:591.646500px;}
.y22d{bottom:593.142000px;}
.y133{bottom:594.672600px;}
.y18e{bottom:596.003250px;}
.y1d{bottom:600.181500px;}
.y246{bottom:600.231000px;}
.y1fa{bottom:601.375500px;}
.yb1{bottom:602.458500px;}
.y1b4{bottom:603.262500px;}
.y159{bottom:605.500500px;}
.y7a{bottom:605.814000px;}
.yc9{bottom:606.892500px;}
.y4d{bottom:609.460500px;}
.y1d3{bottom:611.911500px;}
.y18d{bottom:612.185010px;}
.y22c{bottom:612.510000px;}
.y132{bottom:612.942150px;}
.y1c{bottom:620.446500px;}
.yb0{bottom:622.722000px;}
.y158{bottom:625.765500px;}
.y79{bottom:627.573000px;}
.y18c{bottom:628.368240px;}
.y4c{bottom:629.724000px;}
.y131{bottom:631.122600px;}
.y22b{bottom:631.878000px;}
.y1d2{bottom:632.175000px;}
.y1f9{bottom:634.506000px;}
.y1b3{bottom:638.262000px;}
.y1b{bottom:640.710000px;}
.yaf{bottom:642.987000px;}
.y18b{bottom:644.551470px;}
.y157{bottom:646.029000px;}
.y78{bottom:647.836500px;}
.y130{bottom:649.392150px;}
.y4b{bottom:649.987500px;}
.y22a{bottom:651.244500px;}
.y1d1{bottom:652.438500px;}
.y1f8{bottom:654.771000px;}
.y194{bottom:660.691500px;}
.y18a{bottom:660.734700px;}
.y1a{bottom:660.973500px;}
.yae{bottom:663.250500px;}
.y156{bottom:666.294000px;}
.y12f{bottom:667.572600px;}
.y77{bottom:668.100000px;}
.y4a{bottom:670.252500px;}
.y229{bottom:670.612500px;}
.y1d0{bottom:672.703500px;}
.y1f7{bottom:675.034500px;}
.y189{bottom:676.916460px;}
.y19{bottom:681.238500px;}
.yad{bottom:683.514000px;}
.y12e{bottom:685.753050px;}
.y76{bottom:689.859000px;}
.y228{bottom:689.979000px;}
.y49{bottom:690.516000px;}
.y1cf{bottom:692.967000px;}
.y188{bottom:693.099690px;}
.y1f6{bottom:695.299500px;}
.y155{bottom:701.293500px;}
.y18{bottom:701.502000px;}
.y12d{bottom:704.022600px;}
.y227{bottom:709.347000px;}
.y75{bottom:710.122500px;}
.y48{bottom:710.781000px;}
.y1f5{bottom:715.563000px;}
.y187{bottom:716.340390px;}
.yac{bottom:718.515000px;}
.y118{bottom:720.076500px;}
.y154{bottom:720.526500px;}
.y17{bottom:721.767000px;}
.y1ce{bottom:722.197500px;}
.y12c{bottom:722.203050px;}
.y226{bottom:728.715000px;}
.y74{bottom:730.387500px;}
.y47{bottom:731.044500px;}
.y117{bottom:734.272500px;}
.y1f4{bottom:735.826500px;}
.y153{bottom:739.759500px;}
.y12b{bottom:740.383500px;}
.y8a{bottom:740.944500px;}
.y16{bottom:742.030500px;}
.y186{bottom:747.622500px;}
.y225{bottom:748.081500px;}
.y116{bottom:748.470000px;}
.y73{bottom:750.651000px;}
.y46{bottom:751.308000px;}
.y1f3{bottom:756.091500px;}
.y1cd{bottom:757.017000px;}
.y12a{bottom:758.653050px;}
.y13f{bottom:762.189000px;}
.y224{bottom:767.449500px;}
.y115{bottom:769.719000px;}
.y72{bottom:770.916000px;}
.y45{bottom:771.573000px;}
.y129{bottom:776.833500px;}
.y13{bottom:780.086964px;}
.y114{bottom:785.241690px;}
.y1f2{bottom:785.322000px;}
.y223{bottom:786.816000px;}
.y12{bottom:787.662000px;}
.y71{bottom:791.179500px;}
.y44{bottom:791.836500px;}
.y128{bottom:795.103050px;}
.y185{bottom:798.445500px;}
.y113{bottom:800.764380px;}
.y222{bottom:806.184000px;}
.y70{bottom:811.443000px;}
.y43{bottom:812.101500px;}
.y127{bottom:813.283500px;}
.y112{bottom:816.287070px;}
.y11{bottom:819.852000px;}
.y1f1{bottom:820.141500px;}
.y221{bottom:825.552000px;}
.y126{bottom:831.463950px;}
.y111{bottom:831.808350px;}
.y42{bottom:832.365000px;}
.y10{bottom:838.009500px;}
.y1f0{bottom:840.405000px;}
.y6f{bottom:843.663000px;}
.y220{bottom:844.918500px;}
.y110{bottom:847.331040px;}
.y125{bottom:849.733500px;}
.y41{bottom:852.628500px;}
.y1ef{bottom:860.668500px;}
.yf{bottom:861.048000px;}
.y10f{bottom:862.853730px;}
.y6e{bottom:863.926500px;}
.y21f{bottom:864.286500px;}
.y124{bottom:867.913950px;}
.y40{bottom:872.893500px;}
.ye{bottom:874.323000px;}
.y10e{bottom:878.376420px;}
.y1ee{bottom:880.933500px;}
.y21e{bottom:883.653000px;}
.y6d{bottom:884.191500px;}
.y123{bottom:886.094400px;}
.y3f{bottom:893.157000px;}
.y10d{bottom:893.897700px;}
.yd{bottom:897.361500px;}
.y1ed{bottom:901.197000px;}
.y21d{bottom:903.021000px;}
.y122{bottom:904.363950px;}
.y6c{bottom:904.455000px;}
.y10c{bottom:909.420390px;}
.yc{bottom:910.636500px;}
.y3e{bottom:913.422000px;}
.y1ec{bottom:921.462000px;}
.y21c{bottom:922.389000px;}
.y121{bottom:922.543950px;}
.y6b{bottom:924.718500px;}
.y10b{bottom:924.943080px;}
.yb{bottom:933.676500px;}
.y3d{bottom:933.685500px;}
.y10a{bottom:940.465770px;}
.y11d{bottom:941.623500px;}
.y120{bottom:941.623950px;}
.y1eb{bottom:941.725500px;}
.y21b{bottom:941.755500px;}
.y6a{bottom:944.983500px;}
.y3c{bottom:953.949000px;}
.ya{bottom:955.917000px;}
.y109{bottom:955.987050px;}
.y21a{bottom:961.123500px;}
.y1ea{bottom:961.989000px;}
.y69{bottom:965.247000px;}
.y11c{bottom:970.333950px;}
.y108{bottom:971.509740px;}
.y3b{bottom:974.214000px;}
.y9{bottom:976.182000px;}
.y219{bottom:980.490000px;}
.y1e9{bottom:982.254000px;}
.y68{bottom:985.512000px;}
.y107{bottom:987.032430px;}
.y3a{bottom:994.477500px;}
.y8{bottom:996.445500px;}
.y218{bottom:999.858000px;}
.y106{bottom:1002.555120px;}
.y67{bottom:1005.775500px;}
.y11a{bottom:1007.413950px;}
.y1e8{bottom:1011.484500px;}
.y39{bottom:1014.742500px;}
.y105{bottom:1018.076400px;}
.y217{bottom:1019.226000px;}
.y66{bottom:1026.039000px;}
.y104{bottom:1033.599090px;}
.y38{bottom:1035.006000px;}
.y216{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y65{bottom:1046.304000px;}
.y103{bottom:1049.121780px;}
.y37{bottom:1055.269500px;}
.y215{bottom:1057.960500px;}
.y102{bottom:1064.644470px;}
.y64{bottom:1066.567500px;}
.y6{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y214{bottom:1077.327000px;}
.y63{bottom:1086.832500px;}
.y101{bottom:1086.936570px;}
.y35{bottom:1095.798000px;}
.y213{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y34{bottom:1116.063000px;}
.y100{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.y11e{bottom:1255.621500px;}
.h21{height:-559.903500px;}
.hb{height:25.508090px;}
.h9{height:30.461558px;}
.h19{height:33.072749px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h1e{height:34.813397px;}
.h10{height:35.052500px;}
.h14{height:35.991211px;}
.h1b{height:36.410757px;}
.h1c{height:36.815321px;}
.h28{height:37.960151px;}
.h2a{height:38.381930px;}
.h29{height:38.645543px;}
.h24{height:38.734848px;}
.ha{height:39.165235px;}
.h3{height:39.402747px;}
.h22{height:39.434227px;}
.h20{height:39.603516px;}
.h4{height:41.001535px;}
.he{height:43.038432px;}
.hf{height:43.516637px;}
.h18{height:43.622227px;}
.h5{height:43.815515px;}
.h17{height:44.091914px;}
.h13{height:44.279648px;}
.h1d{height:46.170863px;}
.h2e{height:49.117939px;}
.h16{height:49.939453px;}
.h2{height:50.931027px;}
.h2d{height:52.242188px;}
.h7{height:54.405312px;}
.h8{height:54.411312px;}
.h11{height:54.774749px;}
.h15{height:55.599258px;}
.h2c{height:66.585938px;}
.h6{height:77.469696px;}
.h1a{height:347.574000px;}
.h23{height:368.818500px;}
.h1f{height:377.670000px;}
.h12{height:390.063000px;}
.h2b{height:470.316000px;}
.h25{height:540.540000px;}
.h26{height:892.914000px;}
.h27{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:-16.051500px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w6{width:448.483500px;}
.w9{width:497.463000px;}
.wc{width:525.196500px;}
.w8{width:604.272450px;}
.w5{width:607.813650px;}
.w4{width:655.611450px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.wa{width:1262.835000px;}
.wb{width:1263.000000px;}
.x50{left:-112.351500px;}
.x5b{left:-87.869541px;}
.x5d{left:-86.520096px;}
.x5e{left:-81.030553px;}
.x59{left:-77.700123px;}
.x5a{left:-75.450598px;}
.x57{left:-73.561375px;}
.x5c{left:-72.031105px;}
.x56{left:-68.881500px;}
.x58{left:-66.810102px;}
.x55{left:-65.641500px;}
.x74{left:-61.603500px;}
.x52{left:-60.331745px;}
.x6a{left:-45.675000px;}
.x75{left:-29.743500px;}
.x3f{left:-27.376350px;}
.x53{left:-21.271500px;}
.x61{left:-19.705050px;}
.x54{left:-16.051500px;}
.x0{left:0.000000px;}
.x42{left:4.483650px;}
.x63{left:12.154950px;}
.x51{left:23.278518px;}
.x7{left:29.274117px;}
.x39{left:31.038450px;}
.x2{left:59.014071px;}
.x77{left:76.456500px;}
.x1{left:114.802500px;}
.x33{left:119.326500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x4e{left:128.999790px;}
.x4a{left:131.988990px;}
.x41{left:134.353650px;}
.x49{left:135.883410px;}
.x4d{left:137.268030px;}
.x48{left:140.238900px;}
.x6f{left:141.492720px;}
.x3e{left:142.550850px;}
.x4b{left:143.950020px;}
.x4{left:146.170500px;}
.x47{left:148.280130px;}
.x37{left:149.397000px;}
.x73{left:154.576500px;}
.x24{left:170.170500px;}
.x34{left:181.836000px;}
.x71{left:183.859500px;}
.x25{left:185.113500px;}
.x26{left:188.812500px;}
.x8{left:190.494000px;}
.x35{left:195.616500px;}
.x68{left:197.725500px;}
.x13{left:201.223500px;}
.x27{left:203.757000px;}
.x64{left:205.614000px;}
.x36{left:210.561000px;}
.x14{left:216.168000px;}
.x4f{left:222.216000px;}
.x6d{left:226.111500px;}
.x15{left:231.312000px;}
.x4c{left:243.538320px;}
.x16{left:246.255000px;}
.x17{left:249.927000px;}
.x46{left:251.689500px;}
.x78{left:253.591500px;}
.x7d{left:258.591000px;}
.x18{left:264.871500px;}
.x7e{left:273.535500px;}
.x43{left:277.000500px;}
.x1e{left:298.321500px;}
.x11{left:303.586500px;}
.x12{left:311.058000px;}
.x1f{left:313.266000px;}
.x19{left:325.267500px;}
.x3a{left:345.754500px;}
.x6b{left:349.024500px;}
.x79{left:354.316500px;}
.x6c{left:359.487000px;}
.x7a{left:369.261000px;}
.x7b{left:373.068000px;}
.xf{left:376.492500px;}
.x1a{left:379.563000px;}
.x10{left:383.965500px;}
.x7c{left:388.012500px;}
.x1b{left:394.507500px;}
.x60{left:402.712500px;}
.x20{left:428.404500px;}
.x21{left:443.349000px;}
.x5f{left:447.626138px;}
.x22{left:449.275500px;}
.x30{left:452.905500px;}
.x6e{left:461.988000px;}
.x23{left:464.220000px;}
.x1c{left:468.418500px;}
.xd{left:470.917500px;}
.xe{left:478.389000px;}
.x1d{left:483.363000px;}
.x3b{left:485.118000px;}
.x31{left:486.480000px;}
.x2a{left:504.156000px;}
.x69{left:511.695000px;}
.x65{left:514.897500px;}
.x70{left:517.105650px;}
.x2b{left:519.099000px;}
.x2c{left:522.810000px;}
.x2d{left:537.753000px;}
.x76{left:548.415510px;}
.x85{left:574.542000px;}
.x3c{left:590.565000px;}
.x83{left:597.816000px;}
.x72{left:601.516500px;}
.x3d{left:605.509500px;}
.x8b{left:615.361500px;}
.x40{left:617.022876px;}
.x84{left:624.714000px;}
.x66{left:630.877500px;}
.x67{left:639.849000px;}
.x2e{left:642.228000px;}
.x62{left:644.044800px;}
.x44{left:649.623000px;}
.x2f{left:657.171000px;}
.x38{left:662.928300px;}
.x45{left:664.566000px;}
.x28{left:671.653500px;}
.x7f{left:681.324000px;}
.x89{left:685.416000px;}
.x29{left:686.596500px;}
.x86{left:694.810500px;}
.x80{left:696.268500px;}
.x6{left:701.339982px;}
.x8a{left:712.315500px;}
.x87{left:721.708500px;}
.x88{left:728.617500px;}
.x81{left:749.493000px;}
.x9{left:753.370500px;}
.x32{left:756.391500px;}
.xa{left:760.842000px;}
.xb{left:764.568000px;}
.xc{left:772.039500px;}
.x82{left:776.392500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-6.742933pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls3a{letter-spacing:-0.283232pt;}
.ls39{letter-spacing:-0.229792pt;}
.ls7e{letter-spacing:-0.219104pt;}
.ls71{letter-spacing:-0.196800pt;}
.ls1b{letter-spacing:-0.176352pt;}
.ls21{letter-spacing:-0.160320pt;}
.ls73{letter-spacing:-0.149632pt;}
.ls2b{letter-spacing:-0.138944pt;}
.ls20{letter-spacing:-0.133600pt;}
.ls3b{letter-spacing:-0.128256pt;}
.ls38{letter-spacing:-0.122912pt;}
.ls7f{letter-spacing:-0.117568pt;}
.ls2c{letter-spacing:-0.112224pt;}
.ls1f{letter-spacing:-0.106880pt;}
.ls1e{letter-spacing:-0.101536pt;}
.ls23{letter-spacing:-0.096192pt;}
.ls1c{letter-spacing:-0.090848pt;}
.ls7a{letter-spacing:-0.085504pt;}
.ls1a{letter-spacing:-0.080864pt;}
.ls34{letter-spacing:-0.080160pt;}
.ls68{letter-spacing:-0.076800pt;}
.ls61{letter-spacing:-0.076608pt;}
.ls2a{letter-spacing:-0.074816pt;}
.ls27{letter-spacing:-0.069472pt;}
.ls37{letter-spacing:-0.064128pt;}
.ls69{letter-spacing:-0.058784pt;}
.ls3e{letter-spacing:-0.053440pt;}
.ls22{letter-spacing:-0.048096pt;}
.ls70{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.042752pt;}
.ls28{letter-spacing:-0.037408pt;}
.ls19{letter-spacing:-0.034048pt;}
.ls67{letter-spacing:-0.033600pt;}
.ls26{letter-spacing:-0.032064pt;}
.ls79{letter-spacing:-0.028800pt;}
.ls25{letter-spacing:-0.026720pt;}
.ls60{letter-spacing:-0.025536pt;}
.ls66{letter-spacing:-0.024000pt;}
.ls1d{letter-spacing:-0.021376pt;}
.ls72{letter-spacing:-0.019200pt;}
.ls29{letter-spacing:-0.016032pt;}
.ls65{letter-spacing:-0.014400pt;}
.ls3c{letter-spacing:-0.010688pt;}
.ls64{letter-spacing:-0.009600pt;}
.ls24{letter-spacing:-0.005344pt;}
.ls35{letter-spacing:-0.004800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.000711pt;}
.ls6c{letter-spacing:0.001007pt;}
.ls6d{letter-spacing:0.001382pt;}
.ls89{letter-spacing:0.002262pt;}
.ls83{letter-spacing:0.003861pt;}
.ls88{letter-spacing:0.004267pt;}
.ls11{letter-spacing:0.004800pt;}
.ls12{letter-spacing:0.005344pt;}
.ls2e{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.010688pt;}
.ls48{letter-spacing:0.014400pt;}
.ls2d{letter-spacing:0.016032pt;}
.lse{letter-spacing:0.017024pt;}
.ls10{letter-spacing:0.019200pt;}
.ls7d{letter-spacing:0.021280pt;}
.ls2f{letter-spacing:0.021376pt;}
.ls43{letter-spacing:0.024000pt;}
.ls42{letter-spacing:0.025536pt;}
.ls13{letter-spacing:0.026720pt;}
.ls45{letter-spacing:0.028800pt;}
.ls15{letter-spacing:0.032064pt;}
.ls6b{letter-spacing:0.037408pt;}
.ls51{letter-spacing:0.038400pt;}
.ls18{letter-spacing:0.042752pt;}
.ls4f{letter-spacing:0.043200pt;}
.ls58{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.048096pt;}
.ls76{letter-spacing:0.052800pt;}
.ls30{letter-spacing:0.053440pt;}
.ls44{letter-spacing:0.057600pt;}
.ls4b{letter-spacing:0.067200pt;}
.ls74{letter-spacing:0.069472pt;}
.ls17{letter-spacing:0.074816pt;}
.ls75{letter-spacing:0.080160pt;}
.ls5f{letter-spacing:0.086400pt;}
.ls3d{letter-spacing:0.090848pt;}
.ls6a{letter-spacing:0.096000pt;}
.ls7b{letter-spacing:0.096192pt;}
.ls62{letter-spacing:0.100800pt;}
.lsf{letter-spacing:0.153216pt;}
.lsd{letter-spacing:0.161728pt;}
.ls41{letter-spacing:0.170240pt;}
.lsa{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls8b{letter-spacing:10.286977pt;}
.ls7c{letter-spacing:10.626533pt;}
.ls8{letter-spacing:10.631867pt;}
.ls80{letter-spacing:11.954133pt;}
.ls81{letter-spacing:11.959467pt;}
.ls85{letter-spacing:11.995820pt;}
.ls8c{letter-spacing:12.052873pt;}
.ls82{letter-spacing:12.095042pt;}
.ls6f{letter-spacing:12.486459pt;}
.ls8a{letter-spacing:12.656565pt;}
.ls86{letter-spacing:12.745454pt;}
.ls6e{letter-spacing:13.230333pt;}
.ls0{letter-spacing:13.283733pt;}
.ls2{letter-spacing:13.284541pt;}
.ls7{letter-spacing:13.361695pt;}
.ls77{letter-spacing:13.389734pt;}
.ls78{letter-spacing:13.549136pt;}
.lsc{letter-spacing:13.923096pt;}
.ls32{letter-spacing:14.558679pt;}
.ls33{letter-spacing:15.210871pt;}
.lsb{letter-spacing:16.603733pt;}
.ls84{letter-spacing:17.278787pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls63{letter-spacing:76.358400pt;}
.ls40{letter-spacing:132.836913pt;}
.ls55{letter-spacing:135.580800pt;}
.ls5a{letter-spacing:140.380800pt;}
.ls3f{letter-spacing:146.115063pt;}
.ls5e{letter-spacing:159.912000pt;}
.ls4d{letter-spacing:171.753600pt;}
.ls4e{letter-spacing:179.760000pt;}
.ls5b{letter-spacing:184.243200pt;}
.ls49{letter-spacing:186.480000pt;}
.ls4a{letter-spacing:187.444800pt;}
.ls59{letter-spacing:188.404800pt;}
.ls57{letter-spacing:191.606400pt;}
.ls47{letter-spacing:203.131200pt;}
.ls5d{letter-spacing:205.368000pt;}
.ls50{letter-spacing:208.569600pt;}
.ls4c{letter-spacing:210.172800pt;}
.ls46{letter-spacing:214.334400pt;}
.ls56{letter-spacing:215.932800pt;}
.ls5c{letter-spacing:216.576000pt;}
.ls54{letter-spacing:217.214400pt;}
.ls52{letter-spacing:230.980800pt;}
.ls53{letter-spacing:232.900800pt;}
.ls31{letter-spacing:752.000000pt;}
.ws11f{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.283467pt;}
.wsdb{word-spacing:-12.000000pt;}
.wsbc{word-spacing:-11.955200pt;}
.wsb5{word-spacing:-11.237888pt;}
.wsba{word-spacing:-10.810240pt;}
.ws44{word-spacing:-10.801728pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.wsbb{word-spacing:-7.360000pt;}
.ws51{word-spacing:-2.805600pt;}
.ws144{word-spacing:-2.794912pt;}
.ws67{word-spacing:-2.778880pt;}
.ws145{word-spacing:-2.768192pt;}
.ws66{word-spacing:-2.730784pt;}
.ws13f{word-spacing:-2.517024pt;}
.ws3e{word-spacing:-2.497292pt;}
.ws13e{word-spacing:-2.452896pt;}
.wsb1{word-spacing:-2.447552pt;}
.wsb2{word-spacing:-2.201728pt;}
.ws19a{word-spacing:-2.151936pt;}
.wsb0{word-spacing:-2.126912pt;}
.ws10{word-spacing:-2.072221pt;}
.wsa8{word-spacing:-1.827648pt;}
.ws79{word-spacing:-1.747488pt;}
.ws78{word-spacing:-1.699392pt;}
.ws8{word-spacing:-1.696326pt;}
.ws40{word-spacing:-1.647150pt;}
.ws94{word-spacing:-1.474944pt;}
.wsd4{word-spacing:-1.464256pt;}
.wsd5{word-spacing:-1.453568pt;}
.ws105{word-spacing:-1.444800pt;}
.ws151{word-spacing:-1.432192pt;}
.ws106{word-spacing:-1.430400pt;}
.ws157{word-spacing:-1.381481pt;}
.ws158{word-spacing:-1.328347pt;}
.ws12c{word-spacing:-1.239808pt;}
.wsa6{word-spacing:-1.223776pt;}
.ws7{word-spacing:-1.175671pt;}
.wsd3{word-spacing:-1.123200pt;}
.ws95{word-spacing:-1.106208pt;}
.ws93{word-spacing:-1.026048pt;}
.ws35{word-spacing:-1.009543pt;}
.ws180{word-spacing:-1.004237pt;}
.ws10e{word-spacing:-0.935200pt;}
.ws7b{word-spacing:-0.924512pt;}
.ws31{word-spacing:-0.903276pt;}
.wsa7{word-spacing:-0.855040pt;}
.wse2{word-spacing:-0.850142pt;}
.ws48{word-spacing:-0.797008pt;}
.ws10f{word-spacing:-0.796256pt;}
.ws13a{word-spacing:-0.587840pt;}
.ws7a{word-spacing:-0.539744pt;}
.wsc{word-spacing:-0.531339pt;}
.ws15b{word-spacing:-0.478205pt;}
.ws37{word-spacing:-0.425071pt;}
.ws174{word-spacing:-0.382566pt;}
.ws18{word-spacing:-0.379364pt;}
.ws16{word-spacing:-0.377276pt;}
.ws17{word-spacing:-0.371937pt;}
.ws125{word-spacing:-0.318803pt;}
.ws15d{word-spacing:-0.286925pt;}
.ws27{word-spacing:-0.265669pt;}
.ws6d{word-spacing:-0.240480pt;}
.wsde{word-spacing:-0.239104pt;}
.wsbf{word-spacing:-0.238336pt;}
.ws4e{word-spacing:-0.234080pt;}
.wscc{word-spacing:-0.220800pt;}
.ws1c{word-spacing:-0.212535pt;}
.ws6c{word-spacing:-0.208416pt;}
.ws6e{word-spacing:-0.203072pt;}
.ws21{word-spacing:-0.194680pt;}
.ws167{word-spacing:-0.191283pt;}
.wsd0{word-spacing:-0.177600pt;}
.ws26{word-spacing:-0.166205pt;}
.ws25{word-spacing:-0.159402pt;}
.ws24{word-spacing:-0.153137pt;}
.ws168{word-spacing:-0.143462pt;}
.ws23{word-spacing:-0.139800pt;}
.ws113{word-spacing:-0.138944pt;}
.wsa5{word-spacing:-0.128256pt;}
.ws114{word-spacing:-0.117568pt;}
.wsd{word-spacing:-0.106268pt;}
.wsbe{word-spacing:-0.102144pt;}
.ws4d{word-spacing:-0.097888pt;}
.ws17f{word-spacing:-0.095642pt;}
.ws4{word-spacing:-0.053134pt;}
.wsbd{word-spacing:-0.051072pt;}
.ws169{word-spacing:-0.047821pt;}
.ws4c{word-spacing:-0.046816pt;}
.wsb7{word-spacing:-0.044952pt;}
.ws18d{word-spacing:-0.008269pt;}
.ws15f{word-spacing:-0.007492pt;}
.ws186{word-spacing:-0.007236pt;}
.ws171{word-spacing:-0.005274pt;}
.ws191{word-spacing:-0.004224pt;}
.ws184{word-spacing:-0.004190pt;}
.ws2{word-spacing:-0.002866pt;}
.ws18a{word-spacing:-0.002594pt;}
.ws173{word-spacing:-0.002483pt;}
.ws18f{word-spacing:-0.002389pt;}
.ws170{word-spacing:-0.002048pt;}
.ws188{word-spacing:-0.001903pt;}
.ws6{word-spacing:-0.001785pt;}
.ws15{word-spacing:-0.001770pt;}
.ws5{word-spacing:-0.000185pt;}
.ws0{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.005344pt;}
.ws14f{word-spacing:0.026720pt;}
.wsb8{word-spacing:0.044952pt;}
.ws11e{word-spacing:0.046864pt;}
.ws15c{word-spacing:0.047821pt;}
.wsf{word-spacing:0.053134pt;}
.ws10a{word-spacing:0.064128pt;}
.wsd2{word-spacing:0.076800pt;}
.ws97{word-spacing:0.080160pt;}
.ws6a{word-spacing:0.085504pt;}
.ws103{word-spacing:0.095642pt;}
.wsc6{word-spacing:0.096000pt;}
.wsda{word-spacing:0.096192pt;}
.ws12e{word-spacing:0.100800pt;}
.wsa4{word-spacing:0.101536pt;}
.wsc0{word-spacing:0.105600pt;}
.wse{word-spacing:0.106268pt;}
.ws8e{word-spacing:0.106880pt;}
.wscf{word-spacing:0.115200pt;}
.wsc9{word-spacing:0.120000pt;}
.wscb{word-spacing:0.124800pt;}
.wsb9{word-spacing:0.127522pt;}
.ws4f{word-spacing:0.139200pt;}
.ws165{word-spacing:0.143462pt;}
.ws90{word-spacing:0.148800pt;}
.ws50{word-spacing:0.153600pt;}
.ws14c{word-spacing:0.154976pt;}
.ws1a{word-spacing:0.159402pt;}
.ws8f{word-spacing:0.163200pt;}
.wsc4{word-spacing:0.172800pt;}
.wsb3{word-spacing:0.176352pt;}
.wsc7{word-spacing:0.177600pt;}
.wscd{word-spacing:0.187200pt;}
.ws16e{word-spacing:0.191283pt;}
.wsce{word-spacing:0.196800pt;}
.ws18c{word-spacing:0.203899pt;}
.ws2f{word-spacing:0.212535pt;}
.ws183{word-spacing:0.239104pt;}
.wsd1{word-spacing:0.240000pt;}
.ws11{word-spacing:0.265669pt;}
.ws104{word-spacing:0.286925pt;}
.ws12d{word-spacing:0.299264pt;}
.ws112{word-spacing:0.304608pt;}
.ws14{word-spacing:0.318803pt;}
.ws3d{word-spacing:0.371937pt;}
.ws14d{word-spacing:0.400800pt;}
.wsff{word-spacing:0.406144pt;}
.wsfe{word-spacing:0.416832pt;}
.wsfd{word-spacing:0.443552pt;}
.ws14e{word-spacing:0.486304pt;}
.ws196{word-spacing:0.526029pt;}
.ws2b{word-spacing:0.531339pt;}
.ws176{word-spacing:0.573850pt;}
.wse1{word-spacing:0.637606pt;}
.wsf5{word-spacing:0.651968pt;}
.ws64{word-spacing:0.694720pt;}
.ws65{word-spacing:0.710752pt;}
.ws166{word-spacing:0.717312pt;}
.ws140{word-spacing:0.721440pt;}
.ws110{word-spacing:0.732128pt;}
.ws92{word-spacing:0.737472pt;}
.ws111{word-spacing:0.742816pt;}
.ws153{word-spacing:0.743874pt;}
.ws91{word-spacing:0.748160pt;}
.ws178{word-spacing:0.765133pt;}
.ws154{word-spacing:0.771355pt;}
.wsd8{word-spacing:0.785568pt;}
.ws126{word-spacing:0.797008pt;}
.wsd9{word-spacing:0.822976pt;}
.ws42{word-spacing:0.903276pt;}
.ws36{word-spacing:0.956410pt;}
.wsa{word-spacing:1.009543pt;}
.ws9e{word-spacing:1.063456pt;}
.ws9d{word-spacing:1.106208pt;}
.ws10b{word-spacing:1.132928pt;}
.ws141{word-spacing:1.148960pt;}
.ws41{word-spacing:1.168945pt;}
.ws86{word-spacing:1.222079pt;}
.wsdd{word-spacing:1.243341pt;}
.wsac{word-spacing:1.266528pt;}
.ws33{word-spacing:1.275213pt;}
.ws71{word-spacing:1.373408pt;}
.ws18b{word-spacing:1.386803pt;}
.ws192{word-spacing:1.434624pt;}
.wseb{word-spacing:1.435200pt;}
.wsec{word-spacing:1.444800pt;}
.wsed{word-spacing:1.459200pt;}
.ws72{word-spacing:1.464256pt;}
.wsab{word-spacing:1.469600pt;}
.ws9b{word-spacing:1.480288pt;}
.wsdc{word-spacing:1.482445pt;}
.ws9c{word-spacing:1.587168pt;}
.ws3a{word-spacing:1.594016pt;}
.ws98{word-spacing:1.624576pt;}
.ws3f{word-spacing:1.647150pt;}
.ws160{word-spacing:1.673728pt;}
.wsad{word-spacing:1.688704pt;}
.wsa3{word-spacing:1.699392pt;}
.wse7{word-spacing:1.700284pt;}
.ws189{word-spacing:1.721549pt;}
.ws10d{word-spacing:1.742144pt;}
.ws99{word-spacing:1.758176pt;}
.ws10c{word-spacing:1.768864pt;}
.wsd6{word-spacing:1.779552pt;}
.ws85{word-spacing:1.859685pt;}
.ws82{word-spacing:1.912819pt;}
.ws57{word-spacing:1.923840pt;}
.ws81{word-spacing:1.933662pt;}
.ws1f{word-spacing:1.965953pt;}
.ws20{word-spacing:1.976992pt;}
.ws8d{word-spacing:1.977280pt;}
.ws146{word-spacing:2.036064pt;}
.ws148{word-spacing:2.094848pt;}
.ws56{word-spacing:2.100192pt;}
.ws147{word-spacing:2.121568pt;}
.ws32{word-spacing:2.125355pt;}
.ws159{word-spacing:2.231622pt;}
.ws164{word-spacing:2.247578pt;}
.ws138{word-spacing:2.287232pt;}
.ws115{word-spacing:2.319296pt;}
.ws4a{word-spacing:2.337890pt;}
.ws5c{word-spacing:2.367392pt;}
.ws139{word-spacing:2.372736pt;}
.ws38{word-spacing:2.391024pt;}
.ws172{word-spacing:2.438861pt;}
.wse4{word-spacing:2.444158pt;}
.ws5b{word-spacing:2.479616pt;}
.ws47{word-spacing:2.550426pt;}
.ws1d{word-spacing:2.550432pt;}
.ws14a{word-spacing:2.559776pt;}
.ws3c{word-spacing:2.603559pt;}
.wsa9{word-spacing:2.607872pt;}
.ws129{word-spacing:2.656693pt;}
.wsaa{word-spacing:2.677344pt;}
.ws149{word-spacing:2.714752pt;}
.ws14b{word-spacing:2.752160pt;}
.ws17d{word-spacing:2.773606pt;}
.ws30{word-spacing:2.816095pt;}
.ws194{word-spacing:2.821427pt;}
.ws193{word-spacing:2.861261pt;}
.ws161{word-spacing:2.866278pt;}
.ws16a{word-spacing:2.866475pt;}
.ws15e{word-spacing:2.866509pt;}
.ws16f{word-spacing:2.867106pt;}
.ws17a{word-spacing:2.869180pt;}
.wsdf{word-spacing:2.869229pt;}
.ws163{word-spacing:2.869248pt;}
.ws181{word-spacing:2.869402pt;}
.ws28{word-spacing:2.922363pt;}
.wsf3{word-spacing:2.928512pt;}
.ws29{word-spacing:2.934449pt;}
.ws4b{word-spacing:2.975497pt;}
.ws198{word-spacing:3.012710pt;}
.wsf8{word-spacing:3.024704pt;}
.wsf4{word-spacing:3.035392pt;}
.ws195{word-spacing:3.060531pt;}
.wsf9{word-spacing:3.067456pt;}
.ws175{word-spacing:3.108352pt;}
.ws12{word-spacing:3.185311pt;}
.ws13{word-spacing:3.188032pt;}
.ws96{word-spacing:3.233120pt;}
.ws39{word-spacing:3.241166pt;}
.ws55{word-spacing:3.302592pt;}
.wsf2{word-spacing:3.323968pt;}
.ws83{word-spacing:3.347434pt;}
.ws54{word-spacing:3.372064pt;}
.ws121{word-spacing:3.400567pt;}
.ws9{word-spacing:3.453701pt;}
.ws53{word-spacing:3.457568pt;}
.ws187{word-spacing:3.490918pt;}
.ws2e{word-spacing:3.506835pt;}
.ws34{word-spacing:3.559969pt;}
.wsd7{word-spacing:3.585824pt;}
.ws190{word-spacing:3.634381pt;}
.ws1b{word-spacing:3.666237pt;}
.wsb{word-spacing:3.719371pt;}
.ws152{word-spacing:3.772505pt;}
.ws162{word-spacing:3.825664pt;}
.ws101{word-spacing:3.917152pt;}
.ws102{word-spacing:3.922496pt;}
.wsf0{word-spacing:3.933184pt;}
.ws68{word-spacing:3.949216pt;}
.ws107{word-spacing:3.984000pt;}
.wse8{word-spacing:3.993600pt;}
.ws108{word-spacing:4.008000pt;}
.ws185{word-spacing:4.016947pt;}
.ws109{word-spacing:4.027200pt;}
.wse9{word-spacing:4.046400pt;}
.wsea{word-spacing:4.195200pt;}
.ws7d{word-spacing:4.205728pt;}
.ws16b{word-spacing:4.208230pt;}
.ws52{word-spacing:4.211072pt;}
.ws89{word-spacing:4.243136pt;}
.ws124{word-spacing:4.250709pt;}
.ws199{word-spacing:4.256051pt;}
.ws7c{word-spacing:4.350016pt;}
.ws12b{word-spacing:4.504992pt;}
.wsee{word-spacing:4.521024pt;}
.ws8c{word-spacing:4.542400pt;}
.ws3b{word-spacing:4.569513pt;}
.ws130{word-spacing:4.579808pt;}
.ws12f{word-spacing:4.590496pt;}
.ws179{word-spacing:4.590797pt;}
.wse3{word-spacing:4.622646pt;}
.ws43{word-spacing:4.675780pt;}
.wsef{word-spacing:4.708064pt;}
.wse6{word-spacing:4.728914pt;}
.ws197{word-spacing:4.829901pt;}
.ws128{word-spacing:4.941450pt;}
.ws123{word-spacing:4.994583pt;}
.wsa2{word-spacing:5.007328pt;}
.ws177{word-spacing:5.021184pt;}
.wsa1{word-spacing:5.162304pt;}
.ws62{word-spacing:5.172992pt;}
.ws150{word-spacing:5.183680pt;}
.ws5e{word-spacing:5.205056pt;}
.ws49{word-spacing:5.207119pt;}
.ws61{word-spacing:5.231776pt;}
.ws22{word-spacing:5.260253pt;}
.ws5d{word-spacing:5.295904pt;}
.ws16d{word-spacing:5.308109pt;}
.ws136{word-spacing:5.493632pt;}
.wsfa{word-spacing:5.525696pt;}
.ws137{word-spacing:5.531040pt;}
.wsfb{word-spacing:5.589824pt;}
.ws122{word-spacing:5.685324pt;}
.ws2d{word-spacing:5.721377pt;}
.ws2c{word-spacing:5.738458pt;}
.ws84{word-spacing:5.791591pt;}
.ws5a{word-spacing:5.792896pt;}
.ws80{word-spacing:5.814272pt;}
.wsaf{word-spacing:5.894432pt;}
.wsae{word-spacing:5.942528pt;}
.wse0{word-spacing:5.950993pt;}
.ws58{word-spacing:6.268512pt;}
.ws59{word-spacing:6.295232pt;}
.ws15a{word-spacing:6.322930pt;}
.ws2a{word-spacing:6.429198pt;}
.ws69{word-spacing:6.450208pt;}
.ws19{word-spacing:6.482332pt;}
.ws88{word-spacing:6.498304pt;}
.ws87{word-spacing:6.514336pt;}
.ws127{word-spacing:6.694867pt;}
.ws46{word-spacing:6.748001pt;}
.ws75{word-spacing:7.150272pt;}
.ws134{word-spacing:7.160960pt;}
.ws135{word-spacing:7.166304pt;}
.ws73{word-spacing:7.193024pt;}
.ws74{word-spacing:7.294560pt;}
.wsfc{word-spacing:7.358688pt;}
.ws182{word-spacing:7.460045pt;}
.ws77{word-spacing:7.486944pt;}
.ws17b{word-spacing:7.507866pt;}
.ws76{word-spacing:7.508320pt;}
.ws8a{word-spacing:7.519008pt;}
.ws8b{word-spacing:7.529696pt;}
.ws7f{word-spacing:7.764832pt;}
.ws7e{word-spacing:7.796896pt;}
.wsa0{word-spacing:8.112192pt;}
.ws70{word-spacing:8.149600pt;}
.ws6f{word-spacing:8.181664pt;}
.ws9f{word-spacing:8.192352pt;}
.ws100{word-spacing:8.384736pt;}
.ws18e{word-spacing:8.607744pt;}
.wsf1{word-spacing:8.684000pt;}
.ws13d{word-spacing:8.694688pt;}
.ws13c{word-spacing:8.726752pt;}
.ws12a{word-spacing:9.004640pt;}
.ws156{word-spacing:9.298427pt;}
.ws13b{word-spacing:9.373376pt;}
.wsf6{word-spacing:9.400096pt;}
.wsf7{word-spacing:9.410784pt;}
.wse5{word-spacing:9.670364pt;}
.ws155{word-spacing:9.882899pt;}
.ws9a{word-spacing:10.591808pt;}
.ws45{word-spacing:10.839309pt;}
.ws131{word-spacing:11.617856pt;}
.ws17e{word-spacing:11.668275pt;}
.ws132{word-spacing:11.687328pt;}
.ws133{word-spacing:11.719392pt;}
.ws63{word-spacing:14.129536pt;}
.ws60{word-spacing:14.188320pt;}
.ws5f{word-spacing:14.252448pt;}
.ws16c{word-spacing:15.924326pt;}
.ws120{word-spacing:17.002837pt;}
.ws142{word-spacing:22.770784pt;}
.ws143{word-spacing:22.786816pt;}
.ws17c{word-spacing:25.871053pt;}
.wsb4{word-spacing:26.881028pt;}
.wsc2{word-spacing:75.369600pt;}
.wsb6{word-spacing:84.823579pt;}
.ws11b{word-spacing:129.298835pt;}
.wsca{word-spacing:130.756800pt;}
.wsc5{word-spacing:130.766400pt;}
.wsc3{word-spacing:130.771200pt;}
.ws11c{word-spacing:138.952899pt;}
.wsc8{word-spacing:142.934400pt;}
.ws11d{word-spacing:155.167975pt;}
.wsc1{word-spacing:157.022400pt;}
.ws116{word-spacing:166.884071pt;}
.ws118{word-spacing:217.388616pt;}
.ws117{word-spacing:222.793282pt;}
.ws119{word-spacing:259.690237pt;}
.ws11a{word-spacing:287.512996pt;}
._54{margin-left:-130.934400pt;}
._49{margin-left:-99.868800pt;}
._59{margin-left:-80.707200pt;}
._4a{margin-left:-76.474806pt;}
._53{margin-left:-75.019200pt;}
._4e{margin-left:-68.966400pt;}
._57{margin-left:-63.321600pt;}
._56{margin-left:-56.846400pt;}
._58{margin-left:-36.120690pt;}
._5b{margin-left:-26.059200pt;}
._5a{margin-left:-24.009600pt;}
._50{margin-left:-23.049600pt;}
._4b{margin-left:-21.329118pt;}
._4c{margin-left:-18.571200pt;}
._51{margin-left:-11.236800pt;}
._2{margin-left:-7.077478pt;}
._5{margin-left:-5.893874pt;}
._7{margin-left:-4.447334pt;}
._1f{margin-left:-3.545745pt;}
._8{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._9{width:0.969929pt;}
._3{width:2.664062pt;}
._20{width:3.897407pt;}
._5e{width:7.363054pt;}
._0{width:9.035708pt;}
._e{width:10.626800pt;}
._8f{width:11.942622pt;}
._15{width:12.911530pt;}
._18{width:13.829030pt;}
._6{width:14.824448pt;}
._a{width:16.365231pt;}
._c{width:17.959247pt;}
._1a{width:18.915657pt;}
._17{width:19.818932pt;}
._b{width:21.412948pt;}
._11{width:22.889197pt;}
._1e{width:24.547846pt;}
._13{width:25.628289pt;}
._8d{width:27.139906pt;}
._d{width:28.096316pt;}
._5d{width:30.806143pt;}
._12{width:32.506627pt;}
._16{width:33.883590pt;}
._14{width:36.184163pt;}
._1d{width:37.223841pt;}
._1c{width:38.392786pt;}
._5c{width:44.169600pt;}
._4f{width:45.134400pt;}
._4{width:48.366231pt;}
._90{width:54.993920pt;}
._55{width:56.448000pt;}
._52{width:68.505600pt;}
._4d{width:73.948800pt;}
._8e{width:78.904320pt;}
._19{width:83.154501pt;}
._42{width:104.152746pt;}
._47{width:121.998512pt;}
._2f{width:124.246090pt;}
._3f{width:126.223958pt;}
._22{width:128.562674pt;}
._89{width:129.944339pt;}
._33{width:133.415027pt;}
._3c{width:135.528929pt;}
._26{width:137.461846pt;}
._25{width:141.102922pt;}
._43{width:145.148561pt;}
._2e{width:147.261284pt;}
._21{width:148.969443pt;}
._41{width:150.941884pt;}
._36{width:152.205955pt;}
._8a{width:157.816291pt;}
._37{width:159.937622pt;}
._2b{width:162.769570pt;}
._45{width:164.927244pt;}
._86{width:166.884071pt;}
._3a{width:167.894047pt;}
._44{width:169.467351pt;}
._31{width:172.026720pt;}
._24{width:173.468039pt;}
._3e{width:174.906489pt;}
._29{width:175.985326pt;}
._63{width:178.600167pt;}
._27{width:184.840782pt;}
._2c{width:187.178263pt;}
._3b{width:189.021276pt;}
._70{width:190.746031pt;}
._3d{width:192.791779pt;}
._38{width:196.078670pt;}
._35{width:198.461102pt;}
._68{width:200.182438pt;}
._32{width:203.855288pt;}
._87{width:205.403224pt;}
._6c{width:206.426573pt;}
._28{width:209.698990pt;}
._23{width:211.991519pt;}
._69{width:213.701591pt;}
._46{width:215.228031pt;}
._61{width:216.418251pt;}
._34{width:220.936878pt;}
._74{width:222.066491pt;}
._71{width:224.976116pt;}
._64{width:226.765697pt;}
._83{width:227.714042pt;}
._2a{width:229.207964pt;}
._7b{width:230.124338pt;}
._65{width:232.771359pt;}
._62{width:235.774716pt;}
._39{width:240.445852pt;}
._75{width:244.772678pt;}
._79{width:245.920998pt;}
._30{width:246.873924pt;}
._82{width:249.822993pt;}
._85{width:251.593498pt;}
._40{width:257.527441pt;}
._2d{width:258.786085pt;}
._84{width:263.377838pt;}
._6d{width:265.442862pt;}
._76{width:274.437833pt;}
._7a{width:275.417203pt;}
._88{width:280.666014pt;}
._7c{width:297.776296pt;}
._7e{width:300.242556pt;}
._72{width:318.068574pt;}
._7d{width:322.286369pt;}
._80{width:326.716057pt;}
._73{width:328.113751pt;}
._60{width:329.587649pt;}
._7f{width:337.236107pt;}
._66{width:341.547631pt;}
._6e{width:350.498728pt;}
._67{width:352.393621pt;}
._f{width:358.814128pt;}
._6f{width:360.645256pt;}
._6a{width:364.183128pt;}
._6b{width:374.228305pt;}
._81{width:386.724897pt;}
._77{width:414.234290pt;}
._78{width:424.415278pt;}
._8c{width:876.001029pt;}
._8b{width:1352.249899pt;}
._10{width:1373.503499pt;}
._1b{width:1408.817961pt;}
._48{width:1410.341170pt;}
._5f{width:2688.785156pt;}
.fs11{font-size:29.440000pt;}
.fs10{font-size:34.961984pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fsf{font-size:44.951552pt;}
.fs12{font-size:46.864384pt;}
.fs6{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fs1{font-size:53.754880pt;}
.fsa{font-size:55.365867pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:95.641600pt;}
.y141{bottom:-632.835600pt;}
.y8c{bottom:-618.147600pt;}
.yab{bottom:-599.424784pt;}
.yaa{bottom:-581.424856pt;}
.ya9{bottom:-563.505088pt;}
.ya8{bottom:-545.505160pt;}
.ycb{bottom:-532.647600pt;}
.ya7{bottom:-527.505232pt;}
.ya6{bottom:-509.505304pt;}
.ya5{bottom:-491.505376pt;}
.y16a{bottom:-479.668933pt;}
.ya4{bottom:-473.505448pt;}
.ye9{bottom:-463.287600pt;}
.ya3{bottom:-455.505520pt;}
.ye8{bottom:-443.365584pt;}
.y197{bottom:-442.551600pt;}
.ya2{bottom:-437.585752pt;}
.ye7{bottom:-425.365656pt;}
.ya1{bottom:-419.585824pt;}
.y1b2{bottom:-419.029680pt;}
.ye6{bottom:-407.365728pt;}
.y1b1{bottom:-401.029752pt;}
.ya0{bottom:-393.585928pt;}
.ye5{bottom:-389.445960pt;}
.y1b0{bottom:-383.029824pt;}
.ye4{bottom:-371.446032pt;}
.y1af{bottom:-365.110056pt;}
.y9f{bottom:-359.505904pt;}
.ye3{bottom:-353.446104pt;}
.y1ae{bottom:-347.110128pt;}
.ye2{bottom:-335.446176pt;}
.y1ad{bottom:-329.110200pt;}
.y9e{bottom:-325.586200pt;}
.ye1{bottom:-317.446248pt;}
.y1ac{bottom:-311.110272pt;}
.y9d{bottom:-307.586272pt;}
.y152{bottom:-306.114416pt;}
.ye0{bottom:-299.446320pt;}
.y1ab{bottom:-293.110344pt;}
.y9c{bottom:-289.586344pt;}
.y151{bottom:-288.114488pt;}
.ydf{bottom:-281.446392pt;}
.y1aa{bottom:-275.110416pt;}
.y9b{bottom:-271.666576pt;}
.y150{bottom:-270.114560pt;}
.yde{bottom:-263.526624pt;}
.y178{bottom:-263.187800pt;}
.y1a9{bottom:-257.110488pt;}
.y9a{bottom:-253.666648pt;}
.y14f{bottom:-252.194792pt;}
.ydd{bottom:-245.526696pt;}
.y177{bottom:-245.268032pt;}
.y1a8{bottom:-239.190720pt;}
.y99{bottom:-235.666720pt;}
.y14e{bottom:-234.194864pt;}
.ydc{bottom:-227.526768pt;}
.y176{bottom:-227.268104pt;}
.y1a7{bottom:-221.190792pt;}
.y98{bottom:-217.666792pt;}
.y14d{bottom:-216.194936pt;}
.ydb{bottom:-209.526840pt;}
.y175{bottom:-209.268176pt;}
.y1a6{bottom:-203.190864pt;}
.y97{bottom:-199.666864pt;}
.y14c{bottom:-198.195008pt;}
.yda{bottom:-191.526912pt;}
.y174{bottom:-191.268248pt;}
.y1a5{bottom:-185.190936pt;}
.y96{bottom:-181.666936pt;}
.y14b{bottom:-180.195080pt;}
.yd9{bottom:-173.526984pt;}
.y173{bottom:-173.348480pt;}
.y1a4{bottom:-167.191008pt;}
.y95{bottom:-163.747168pt;}
.y14a{bottom:-162.195152pt;}
.y172{bottom:-155.348552pt;}
.y1a3{bottom:-149.191080pt;}
.yd8{bottom:-147.527088pt;}
.y94{bottom:-145.747240pt;}
.y149{bottom:-144.195224pt;}
.y171{bottom:-137.348624pt;}
.y1a2{bottom:-131.191152pt;}
.y93{bottom:-127.747312pt;}
.y148{bottom:-126.275456pt;}
.y170{bottom:-119.348696pt;}
.yd7{bottom:-113.607384pt;}
.y1a1{bottom:-113.271384pt;}
.y92{bottom:-109.747384pt;}
.y147{bottom:-108.275528pt;}
.yd6{bottom:-95.607456pt;}
.y1a0{bottom:-95.271456pt;}
.y16f{bottom:-93.348800pt;}
.y91{bottom:-91.747456pt;}
.y146{bottom:-90.275600pt;}
.y11b{bottom:-88.360933pt;}
.yd5{bottom:-77.607528pt;}
.y19f{bottom:-77.271528pt;}
.y90{bottom:-73.747528pt;}
.y16e{bottom:-59.749733pt;}
.yd4{bottom:-59.607600pt;}
.y19e{bottom:-59.271600pt;}
.y145{bottom:-56.596000pt;}
.y8f{bottom:-55.747600pt;}
.y16d{bottom:-42.389333pt;}
.y144{bottom:-39.316000pt;}
.yd3{bottom:-25.927600pt;}
.y19d{bottom:-25.591600pt;}
.y16c{bottom:-25.028933pt;}
.y8e{bottom:-22.147600pt;}
.y143{bottom:-21.955600pt;}
.yd2{bottom:-4.247568pt;}
.y19c{bottom:-3.910792pt;}
.y16b{bottom:-3.348933pt;}
.y8d{bottom:-0.387600pt;}
.y142{bottom:-0.275600pt;}
.y0{bottom:0.000000pt;}
.y13d{bottom:1.639587pt;}
.y15{bottom:3.044747pt;}
.y11f{bottom:3.600400pt;}
.y4{bottom:5.644850pt;}
.y14{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y32{bottom:56.693333pt;}
.y212{bottom:98.152000pt;}
.y31{bottom:99.428000pt;}
.y1cc{bottom:103.932000pt;}
.yc8{bottom:105.396000pt;}
.yff{bottom:107.252000pt;}
.y245{bottom:114.066667pt;}
.y211{bottom:115.366667pt;}
.y30{bottom:117.440000pt;}
.y1cb{bottom:121.944000pt;}
.yc7{bottom:123.409333pt;}
.yfe{bottom:125.265333pt;}
.y244{bottom:131.281333pt;}
.y210{bottom:132.582667pt;}
.y2f{bottom:135.453333pt;}
.y1ca{bottom:139.957333pt;}
.yc6{bottom:141.421333pt;}
.yfd{bottom:143.277333pt;}
.y243{bottom:148.497333pt;}
.y20f{bottom:149.798667pt;}
.y2e{bottom:153.465333pt;}
.y1c9{bottom:157.969333pt;}
.yc5{bottom:159.434667pt;}
.yfc{bottom:161.289333pt;}
.y62{bottom:163.478667pt;}
.y242{bottom:165.713333pt;}
.y20e{bottom:167.013333pt;}
.y2d{bottom:171.478667pt;}
.y1c8{bottom:175.982667pt;}
.yc4{bottom:177.446667pt;}
.yfb{bottom:179.302667pt;}
.y61{bottom:181.492000pt;}
.y241{bottom:182.928000pt;}
.y1e7{bottom:183.670667pt;}
.y20d{bottom:184.229333pt;}
.y2c{bottom:189.490667pt;}
.y1c7{bottom:193.994667pt;}
.yc2{bottom:195.458667pt;}
.yfa{bottom:197.314667pt;}
.y60{bottom:199.504000pt;}
.y240{bottom:200.144000pt;}
.yc3{bottom:200.281333pt;}
.y20c{bottom:201.444000pt;}
.y1e6{bottom:201.682667pt;}
.y2b{bottom:207.502667pt;}
.y1c6{bottom:212.006667pt;}
.yc1{bottom:213.472000pt;}
.yf9{bottom:215.328000pt;}
.y23f{bottom:217.358667pt;}
.y5f{bottom:217.517333pt;}
.y20b{bottom:218.660000pt;}
.y1e5{bottom:219.696000pt;}
.y2a{bottom:225.516000pt;}
.y1c5{bottom:230.020000pt;}
.yc0{bottom:231.484000pt;}
.yf8{bottom:233.340000pt;}
.y23e{bottom:234.574667pt;}
.y5e{bottom:235.529333pt;}
.y20a{bottom:235.876000pt;}
.y1e4{bottom:237.708000pt;}
.y29{bottom:243.528000pt;}
.y1c4{bottom:248.032000pt;}
.ybf{bottom:249.497333pt;}
.y89{bottom:249.716000pt;}
.yf7{bottom:251.352000pt;}
.y23d{bottom:251.790667pt;}
.y209{bottom:253.090667pt;}
.y5d{bottom:253.541333pt;}
.y1e3{bottom:255.720000pt;}
.y28{bottom:261.541333pt;}
.y13e{bottom:262.773333pt;}
.y1c3{bottom:266.045333pt;}
.y88{bottom:267.729333pt;}
.y23c{bottom:269.005333pt;}
.yf6{bottom:269.365333pt;}
.y208{bottom:270.306667pt;}
.y5c{bottom:271.554667pt;}
.y1e2{bottom:273.733333pt;}
.ybe{bottom:275.480000pt;}
.y27{bottom:279.553333pt;}
.y119{bottom:282.709333pt;}
.y1c2{bottom:284.057333pt;}
.y87{bottom:285.741333pt;}
.y167{bottom:286.048000pt;}
.y23b{bottom:286.221333pt;}
.yf5{bottom:287.377333pt;}
.y207{bottom:287.521333pt;}
.y5b{bottom:289.566667pt;}
.y184{bottom:290.552000pt;}
.y1e1{bottom:291.745333pt;}
.y26{bottom:297.565333pt;}
.y1c1{bottom:302.069333pt;}
.y23a{bottom:303.437333pt;}
.y166{bottom:304.060000pt;}
.y206{bottom:304.737333pt;}
.y86{bottom:305.082667pt;}
.yf4{bottom:305.390667pt;}
.ybd{bottom:306.430667pt;}
.y5a{bottom:307.580000pt;}
.y183{bottom:308.564000pt;}
.y1e0{bottom:309.758667pt;}
.y25{bottom:315.578667pt;}
.y1c0{bottom:320.082667pt;}
.y239{bottom:320.652000pt;}
.y205{bottom:321.953333pt;}
.y165{bottom:322.073333pt;}
.y85{bottom:323.094667pt;}
.yf3{bottom:323.402667pt;}
.y59{bottom:325.592000pt;}
.y182{bottom:326.577333pt;}
.y1df{bottom:327.770667pt;}
.yd1{bottom:327.992920pt;}
.ybc{bottom:337.381333pt;}
.y238{bottom:337.868000pt;}
.y1bf{bottom:338.094667pt;}
.y204{bottom:339.168000pt;}
.y164{bottom:340.085333pt;}
.y84{bottom:341.106667pt;}
.yf2{bottom:341.414667pt;}
.y24{bottom:341.561333pt;}
.y58{bottom:343.604000pt;}
.y181{bottom:344.589333pt;}
.y1de{bottom:345.782667pt;}
.yd0{bottom:345.992848pt;}
.y140{bottom:351.004400pt;}
.y13c{bottom:353.639515pt;}
.y237{bottom:355.082667pt;}
.ybb{bottom:355.393333pt;}
.y1be{bottom:356.108000pt;}
.y203{bottom:356.384000pt;}
.y163{bottom:358.097333pt;}
.y83{bottom:359.120000pt;}
.yf1{bottom:359.428000pt;}
.y57{bottom:361.617333pt;}
.y180{bottom:362.601333pt;}
.y1dd{bottom:363.796000pt;}
.ycf{bottom:363.992776pt;}
.y8b{bottom:365.692400pt;}
.y13b{bottom:371.559283pt;}
.y236{bottom:372.298667pt;}
.yba{bottom:373.405333pt;}
.y202{bottom:373.600000pt;}
.y1bd{bottom:374.120000pt;}
.y162{bottom:376.110667pt;}
.y82{bottom:377.132000pt;}
.yf0{bottom:377.440000pt;}
.y56{bottom:379.629333pt;}
.y17f{bottom:380.614667pt;}
.y1dc{bottom:381.808000pt;}
.yce{bottom:381.912544pt;}
.y235{bottom:389.514667pt;}
.y13a{bottom:389.559211pt;}
.y201{bottom:390.814667pt;}
.yb9{bottom:391.418667pt;}
.y1bc{bottom:392.132000pt;}
.y161{bottom:394.122667pt;}
.y55{bottom:397.642667pt;}
.y17e{bottom:398.626667pt;}
.y1db{bottom:399.821333pt;}
.ycd{bottom:399.912472pt;}
.yef{bottom:403.422667pt;}
.y234{bottom:406.729333pt;}
.y139{bottom:407.559139pt;}
.yb8{bottom:409.430667pt;}
.y23{bottom:409.480000pt;}
.y1bb{bottom:410.145333pt;}
.y81{bottom:411.085333pt;}
.y160{bottom:412.136000pt;}
.y54{bottom:415.654667pt;}
.y200{bottom:416.000000pt;}
.y17d{bottom:416.640000pt;}
.y1da{bottom:417.833333pt;}
.ycc{bottom:417.912400pt;}
.y233{bottom:423.945333pt;}
.y138{bottom:425.559067pt;}
.yb7{bottom:427.444000pt;}
.y1ba{bottom:428.157333pt;}
.y80{bottom:429.097333pt;}
.y15f{bottom:430.148000pt;}
.y53{bottom:433.666667pt;}
.yee{bottom:434.373333pt;}
.y1d9{bottom:435.845333pt;}
.y19b{bottom:438.008616pt;}
.y232{bottom:441.160000pt;}
.y17c{bottom:442.622667pt;}
.y22{bottom:443.432000pt;}
.yb6{bottom:445.456000pt;}
.y1b9{bottom:446.170667pt;}
.y7f{bottom:447.110667pt;}
.y15e{bottom:448.160000pt;}
.y1ff{bottom:451.069333pt;}
.yca{bottom:451.192400pt;}
.y52{bottom:451.680000pt;}
.yed{bottom:452.386667pt;}
.y193{bottom:453.041333pt;}
.y1d8{bottom:453.858667pt;}
.y19a{bottom:456.008544pt;}
.y231{bottom:458.376000pt;}
.y137{bottom:459.158667pt;}
.y21{bottom:461.445333pt;}
.yb5{bottom:463.468000pt;}
.y1b8{bottom:464.182667pt;}
.y15d{bottom:466.173333pt;}
.y7e{bottom:466.450667pt;}
.y51{bottom:469.692000pt;}
.yec{bottom:470.398667pt;}
.y17b{bottom:470.732000pt;}
.y1d7{bottom:471.870667pt;}
.y192{bottom:472.241600pt;}
.y1fe{bottom:472.548000pt;}
.y199{bottom:474.008472pt;}
.y230{bottom:475.592000pt;}
.y136{bottom:476.438667pt;}
.y20{bottom:479.457333pt;}
.yb4{bottom:481.481333pt;}
.y1b7{bottom:482.194667pt;}
.y15c{bottom:484.185333pt;}
.y7d{bottom:484.464000pt;}
.y191{bottom:486.625387pt;}
.y50{bottom:487.704000pt;}
.y17a{bottom:487.826667pt;}
.yeb{bottom:488.410667pt;}
.y1d6{bottom:489.884000pt;}
.y198{bottom:492.008400pt;}
.y22f{bottom:492.806667pt;}
.y135{bottom:493.799067pt;}
.y1fd{bottom:494.028000pt;}
.y1f{bottom:497.469333pt;}
.y248{bottom:499.108000pt;}
.yb3{bottom:499.493333pt;}
.y1b6{bottom:500.208000pt;}
.y190{bottom:501.010480pt;}
.y15b{bottom:502.198667pt;}
.y7c{bottom:502.476000pt;}
.y169{bottom:504.171067pt;}
.y179{bottom:504.922667pt;}
.y4f{bottom:505.717333pt;}
.y196{bottom:506.008400pt;}
.y1fc{bottom:507.537333pt;}
.y1d5{bottom:507.896000pt;}
.y22e{bottom:510.022667pt;}
.y134{bottom:512.437467pt;}
.y195{bottom:513.528400pt;}
.y18f{bottom:515.395573pt;}
.y1e{bottom:515.482667pt;}
.y247{bottom:516.324000pt;}
.yb2{bottom:517.506667pt;}
.y1b5{bottom:518.220000pt;}
.yea{bottom:519.522667pt;}
.y15a{bottom:520.210667pt;}
.y7b{bottom:520.488000pt;}
.y1fb{bottom:521.046667pt;}
.y4e{bottom:523.729333pt;}
.y168{bottom:524.860000pt;}
.y1d4{bottom:525.908000pt;}
.y22d{bottom:527.237333pt;}
.y133{bottom:528.597867pt;}
.y18e{bottom:529.780667pt;}
.y1d{bottom:533.494667pt;}
.y246{bottom:533.538667pt;}
.y1fa{bottom:534.556000pt;}
.yb1{bottom:535.518667pt;}
.y1b4{bottom:536.233333pt;}
.y159{bottom:538.222667pt;}
.y7a{bottom:538.501333pt;}
.yc9{bottom:539.460000pt;}
.y4d{bottom:541.742667pt;}
.y1d3{bottom:543.921333pt;}
.y18d{bottom:544.164453pt;}
.y22c{bottom:544.453333pt;}
.y132{bottom:544.837467pt;}
.y1c{bottom:551.508000pt;}
.yb0{bottom:553.530667pt;}
.y158{bottom:556.236000pt;}
.y79{bottom:557.842667pt;}
.y18c{bottom:558.549547pt;}
.y4c{bottom:559.754667pt;}
.y131{bottom:560.997867pt;}
.y22b{bottom:561.669333pt;}
.y1d2{bottom:561.933333pt;}
.y1f9{bottom:564.005333pt;}
.y1b3{bottom:567.344000pt;}
.y1b{bottom:569.520000pt;}
.yaf{bottom:571.544000pt;}
.y18b{bottom:572.934640pt;}
.y157{bottom:574.248000pt;}
.y78{bottom:575.854667pt;}
.y130{bottom:577.237467pt;}
.y4b{bottom:577.766667pt;}
.y22a{bottom:578.884000pt;}
.y1d1{bottom:579.945333pt;}
.y1f8{bottom:582.018667pt;}
.y194{bottom:587.281333pt;}
.y18a{bottom:587.319733pt;}
.y1a{bottom:587.532000pt;}
.yae{bottom:589.556000pt;}
.y156{bottom:592.261333pt;}
.y12f{bottom:593.397867pt;}
.y77{bottom:593.866667pt;}
.y4a{bottom:595.780000pt;}
.y229{bottom:596.100000pt;}
.y1d0{bottom:597.958667pt;}
.y1f7{bottom:600.030667pt;}
.y189{bottom:601.703520pt;}
.y19{bottom:605.545333pt;}
.yad{bottom:607.568000pt;}
.y12e{bottom:609.558267pt;}
.y76{bottom:613.208000pt;}
.y228{bottom:613.314667pt;}
.y49{bottom:613.792000pt;}
.y1cf{bottom:615.970667pt;}
.y188{bottom:616.088613pt;}
.y1f6{bottom:618.044000pt;}
.y155{bottom:623.372000pt;}
.y18{bottom:623.557333pt;}
.y12d{bottom:625.797867pt;}
.y227{bottom:630.530667pt;}
.y75{bottom:631.220000pt;}
.y48{bottom:631.805333pt;}
.y1f5{bottom:636.056000pt;}
.y187{bottom:636.747013pt;}
.yac{bottom:638.680000pt;}
.y118{bottom:640.068000pt;}
.y154{bottom:640.468000pt;}
.y17{bottom:641.570667pt;}
.y1ce{bottom:641.953333pt;}
.y12c{bottom:641.958267pt;}
.y226{bottom:647.746667pt;}
.y74{bottom:649.233333pt;}
.y47{bottom:649.817333pt;}
.y117{bottom:652.686667pt;}
.y1f4{bottom:654.068000pt;}
.y153{bottom:657.564000pt;}
.y12b{bottom:658.118667pt;}
.y8a{bottom:658.617333pt;}
.y16{bottom:659.582667pt;}
.y186{bottom:664.553333pt;}
.y225{bottom:664.961333pt;}
.y116{bottom:665.306667pt;}
.y73{bottom:667.245333pt;}
.y46{bottom:667.829333pt;}
.y1f3{bottom:672.081333pt;}
.y1cd{bottom:672.904000pt;}
.y12a{bottom:674.358267pt;}
.y13f{bottom:677.501333pt;}
.y224{bottom:682.177333pt;}
.y115{bottom:684.194667pt;}
.y72{bottom:685.258667pt;}
.y45{bottom:685.842667pt;}
.y129{bottom:690.518667pt;}
.y13{bottom:693.410634pt;}
.y114{bottom:697.992613pt;}
.y1f2{bottom:698.064000pt;}
.y223{bottom:699.392000pt;}
.y12{bottom:700.144000pt;}
.y71{bottom:703.270667pt;}
.y44{bottom:703.854667pt;}
.y128{bottom:706.758267pt;}
.y185{bottom:709.729333pt;}
.y113{bottom:711.790560pt;}
.y222{bottom:716.608000pt;}
.y70{bottom:721.282667pt;}
.y43{bottom:721.868000pt;}
.y127{bottom:722.918667pt;}
.y112{bottom:725.588507pt;}
.y11{bottom:728.757333pt;}
.y1f1{bottom:729.014667pt;}
.y221{bottom:733.824000pt;}
.y126{bottom:739.079067pt;}
.y111{bottom:739.385200pt;}
.y42{bottom:739.880000pt;}
.y10{bottom:744.897333pt;}
.y1f0{bottom:747.026667pt;}
.y6f{bottom:749.922667pt;}
.y220{bottom:751.038667pt;}
.y110{bottom:753.183147pt;}
.y125{bottom:755.318667pt;}
.y41{bottom:757.892000pt;}
.y1ef{bottom:765.038667pt;}
.yf{bottom:765.376000pt;}
.y10f{bottom:766.981093pt;}
.y6e{bottom:767.934667pt;}
.y21f{bottom:768.254667pt;}
.y124{bottom:771.479067pt;}
.y40{bottom:775.905333pt;}
.ye{bottom:777.176000pt;}
.y10e{bottom:780.779040pt;}
.y1ee{bottom:783.052000pt;}
.y21e{bottom:785.469333pt;}
.y6d{bottom:785.948000pt;}
.y123{bottom:787.639467pt;}
.y3f{bottom:793.917333pt;}
.y10d{bottom:794.575733pt;}
.yd{bottom:797.654667pt;}
.y1ed{bottom:801.064000pt;}
.y21d{bottom:802.685333pt;}
.y122{bottom:803.879067pt;}
.y6c{bottom:803.960000pt;}
.y10c{bottom:808.373680pt;}
.yc{bottom:809.454667pt;}
.y3e{bottom:811.930667pt;}
.y1ec{bottom:819.077333pt;}
.y21c{bottom:819.901333pt;}
.y121{bottom:820.039067pt;}
.y6b{bottom:821.972000pt;}
.y10b{bottom:822.171627pt;}
.yb{bottom:829.934667pt;}
.y3d{bottom:829.942667pt;}
.y10a{bottom:835.969573pt;}
.y11d{bottom:836.998667pt;}
.y120{bottom:836.999067pt;}
.y1eb{bottom:837.089333pt;}
.y21b{bottom:837.116000pt;}
.y6a{bottom:839.985333pt;}
.y3c{bottom:847.954667pt;}
.ya{bottom:849.704000pt;}
.y109{bottom:849.766267pt;}
.y21a{bottom:854.332000pt;}
.y1ea{bottom:855.101333pt;}
.y69{bottom:857.997333pt;}
.y11c{bottom:862.519067pt;}
.y108{bottom:863.564213pt;}
.y3b{bottom:865.968000pt;}
.y9{bottom:867.717333pt;}
.y219{bottom:871.546667pt;}
.y1e9{bottom:873.114667pt;}
.y68{bottom:876.010667pt;}
.y107{bottom:877.362160pt;}
.y3a{bottom:883.980000pt;}
.y8{bottom:885.729333pt;}
.y218{bottom:888.762667pt;}
.y106{bottom:891.160107pt;}
.y67{bottom:894.022667pt;}
.y11a{bottom:895.479067pt;}
.y1e8{bottom:899.097333pt;}
.y39{bottom:901.993333pt;}
.y105{bottom:904.956800pt;}
.y217{bottom:905.978667pt;}
.y66{bottom:912.034667pt;}
.y104{bottom:918.754747pt;}
.y38{bottom:920.005333pt;}
.y216{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y65{bottom:930.048000pt;}
.y103{bottom:932.552693pt;}
.y37{bottom:938.017333pt;}
.y215{bottom:940.409333pt;}
.y102{bottom:946.350640pt;}
.y64{bottom:948.060000pt;}
.y6{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y214{bottom:957.624000pt;}
.y63{bottom:966.073333pt;}
.y101{bottom:966.165840pt;}
.y35{bottom:974.042667pt;}
.y213{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y34{bottom:992.056000pt;}
.y100{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.y11e{bottom:1116.108000pt;}
.h21{height:-497.692000pt;}
.hb{height:22.673858pt;}
.h9{height:27.076941pt;}
.h19{height:29.397999pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h1e{height:30.945242pt;}
.h10{height:31.157778pt;}
.h14{height:31.992188pt;}
.h1b{height:32.365117pt;}
.h1c{height:32.724730pt;}
.h28{height:33.742356pt;}
.h2a{height:34.117272pt;}
.h29{height:34.351593pt;}
.h24{height:34.430976pt;}
.ha{height:34.813542pt;}
.h3{height:35.024664pt;}
.h22{height:35.052646pt;}
.h20{height:35.203125pt;}
.h4{height:36.445809pt;}
.he{height:38.256384pt;}
.hf{height:38.681455pt;}
.h18{height:38.775312pt;}
.h5{height:38.947124pt;}
.h17{height:39.192812pt;}
.h13{height:39.359687pt;}
.h1d{height:41.040767pt;}
.h2e{height:43.660390pt;}
.h16{height:44.390625pt;}
.h2{height:45.272024pt;}
.h2d{height:46.437500pt;}
.h7{height:48.360277pt;}
.h8{height:48.365611pt;}
.h11{height:48.688666pt;}
.h15{height:49.421563pt;}
.h2c{height:59.187500pt;}
.h6{height:68.861952pt;}
.h1a{height:308.954667pt;}
.h23{height:327.838667pt;}
.h1f{height:335.706667pt;}
.h12{height:346.722667pt;}
.h2b{height:418.058667pt;}
.h25{height:480.480000pt;}
.h26{height:793.701333pt;}
.h27{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:-14.268000pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w6{width:398.652000pt;}
.w9{width:442.189333pt;}
.wc{width:466.841333pt;}
.w8{width:537.131067pt;}
.w5{width:540.278800pt;}
.w4{width:582.765733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.wa{width:1122.520000pt;}
.wb{width:1122.666667pt;}
.x50{left:-99.868000pt;}
.x5b{left:-78.106258pt;}
.x5d{left:-76.906752pt;}
.x5e{left:-72.027159pt;}
.x59{left:-69.066776pt;}
.x5a{left:-67.067198pt;}
.x57{left:-65.387889pt;}
.x5c{left:-64.027649pt;}
.x56{left:-61.228000pt;}
.x58{left:-59.386757pt;}
.x55{left:-58.348000pt;}
.x74{left:-54.758667pt;}
.x52{left:-53.628218pt;}
.x6a{left:-40.600000pt;}
.x75{left:-26.438667pt;}
.x3f{left:-24.334533pt;}
.x53{left:-18.908000pt;}
.x61{left:-17.515600pt;}
.x54{left:-14.268000pt;}
.x0{left:0.000000pt;}
.x42{left:3.985467pt;}
.x63{left:10.804400pt;}
.x51{left:20.692016pt;}
.x7{left:26.021437pt;}
.x39{left:27.589733pt;}
.x2{left:52.456952pt;}
.x77{left:67.961333pt;}
.x1{left:102.046667pt;}
.x33{left:106.068000pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x4e{left:114.666480pt;}
.x4a{left:117.323547pt;}
.x41{left:119.425467pt;}
.x49{left:120.785253pt;}
.x4d{left:122.016027pt;}
.x48{left:124.656800pt;}
.x6f{left:125.771307pt;}
.x3e{left:126.711867pt;}
.x4b{left:127.955573pt;}
.x4{left:129.929333pt;}
.x47{left:131.804560pt;}
.x37{left:132.797333pt;}
.x73{left:137.401333pt;}
.x24{left:151.262667pt;}
.x34{left:161.632000pt;}
.x71{left:163.430667pt;}
.x25{left:164.545333pt;}
.x26{left:167.833333pt;}
.x8{left:169.328000pt;}
.x35{left:173.881333pt;}
.x68{left:175.756000pt;}
.x13{left:178.865333pt;}
.x27{left:181.117333pt;}
.x64{left:182.768000pt;}
.x36{left:187.165333pt;}
.x14{left:192.149333pt;}
.x4f{left:197.525333pt;}
.x6d{left:200.988000pt;}
.x15{left:205.610667pt;}
.x4c{left:216.478507pt;}
.x16{left:218.893333pt;}
.x17{left:222.157333pt;}
.x46{left:223.724000pt;}
.x78{left:225.414667pt;}
.x7d{left:229.858667pt;}
.x18{left:235.441333pt;}
.x7e{left:243.142667pt;}
.x43{left:246.222667pt;}
.x1e{left:265.174667pt;}
.x11{left:269.854667pt;}
.x12{left:276.496000pt;}
.x1f{left:278.458667pt;}
.x19{left:289.126667pt;}
.x3a{left:307.337333pt;}
.x6b{left:310.244000pt;}
.x79{left:314.948000pt;}
.x6c{left:319.544000pt;}
.x7a{left:328.232000pt;}
.x7b{left:331.616000pt;}
.xf{left:334.660000pt;}
.x1a{left:337.389333pt;}
.x10{left:341.302667pt;}
.x7c{left:344.900000pt;}
.x1b{left:350.673333pt;}
.x60{left:357.966667pt;}
.x20{left:380.804000pt;}
.x21{left:394.088000pt;}
.x5f{left:397.889901pt;}
.x22{left:399.356000pt;}
.x30{left:402.582667pt;}
.x6e{left:410.656000pt;}
.x23{left:412.640000pt;}
.x1c{left:416.372000pt;}
.xd{left:418.593333pt;}
.xe{left:425.234667pt;}
.x1d{left:429.656000pt;}
.x3b{left:431.216000pt;}
.x31{left:432.426667pt;}
.x2a{left:448.138667pt;}
.x69{left:454.840000pt;}
.x65{left:457.686667pt;}
.x70{left:459.649467pt;}
.x2b{left:461.421333pt;}
.x2c{left:464.720000pt;}
.x2d{left:478.002667pt;}
.x76{left:487.480453pt;}
.x85{left:510.704000pt;}
.x3c{left:524.946667pt;}
.x83{left:531.392000pt;}
.x72{left:534.681333pt;}
.x3d{left:538.230667pt;}
.x8b{left:546.988000pt;}
.x40{left:548.464779pt;}
.x84{left:555.301333pt;}
.x66{left:560.780000pt;}
.x67{left:568.754667pt;}
.x2e{left:570.869333pt;}
.x62{left:572.484267pt;}
.x44{left:577.442667pt;}
.x2f{left:584.152000pt;}
.x38{left:589.269600pt;}
.x45{left:590.725333pt;}
.x28{left:597.025333pt;}
.x7f{left:605.621333pt;}
.x89{left:609.258667pt;}
.x29{left:610.308000pt;}
.x86{left:617.609333pt;}
.x80{left:618.905333pt;}
.x6{left:623.413317pt;}
.x8a{left:633.169333pt;}
.x87{left:641.518667pt;}
.x88{left:647.660000pt;}
.x81{left:666.216000pt;}
.x9{left:669.662667pt;}
.x32{left:672.348000pt;}
.xa{left:676.304000pt;}
.xb{left:679.616000pt;}
.xc{left:686.257333pt;}
.x82{left:690.126667pt;}
}




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