
    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_ddd691b8b4922a57306aa39e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_c3f54996296e7261e445cf8d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1deff400856d71ef93d5d7c3.woff')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_0a113208a87c4a598179b558.woff')format("woff");}.ff4{font-family:ff4;line-height:0.803000;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_522c4d3c6e7dd00f3f763585.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0a14f8cd7d1a8b71bb9524db.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c6196536b4b0815a0e933f65.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_16be737915dc4578c77f7052.woff')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_df9e77b926411de5d3998a8a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_2a084859c8e3d7ec5067b400.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5be83ac31f702cfc4816af89.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3ba998cea8a50ed2094f1ae8.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_29856a862cd5a58655d5441c.woff')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_16be737915dc4578c77f7052.woff')format("woff");}.ffe{font-family:ffe;line-height:0.727539;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_e65b5ad15b0cd8cdd2ce6c3e.woff')format("woff");}.fff{font-family:fff;line-height:0.736816;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_34af702f6bf34aa5596c7088.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fd307e3cb66748adeca4d7f6.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4b66f7263187ad7f6c2e38f2.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_29856a862cd5a58655d5441c.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_16be737915dc4578c77f7052.woff')format("woff");}.ff14{font-family:ff14;line-height:0.727539;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_e65b5ad15b0cd8cdd2ce6c3e.woff')format("woff");}.ff15{font-family:ff15;line-height:0.736816;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_34af702f6bf34aa5596c7088.woff')format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_72553fa3eb189775d531566c.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_395865923e7c5444ebceaf91.woff')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_c9cd6a3f171c99ac4afa775d.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_16be737915dc4578c77f7052.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.727539;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_bc601b13fcdc054519f9fe5e.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.736816;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_5cde09524f6c355a0e17b62f.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.488000;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;}
.m7{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);}
.m24{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);}
.m9{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);}
.m20{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);}
.m2{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);}
.m1{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);}
.m26{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);}
.m12{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);}
.m1b{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);}
.m25{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);}
.m6{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);}
.m3{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);}
.mf{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);}
.md{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);}
.mc{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);}
.m23{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);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m11{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);}
.m18{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);}
.m27{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);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m1d{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);}
.m1a{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1e{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);}
.m14{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);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v6{vertical-align:-1.224000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.186000px;}
.v8{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.910000px;}
.v5{vertical-align:47.820000px;}
.ls98{letter-spacing:-0.284368px;}
.ls96{letter-spacing:-0.271141px;}
.ls24{letter-spacing:-0.225450px;}
.ls31{letter-spacing:-0.198396px;}
.ls26{letter-spacing:-0.189378px;}
.ls92{letter-spacing:-0.178556px;}
.ls27{letter-spacing:-0.171342px;}
.ls91{letter-spacing:-0.165330px;}
.ls9a{letter-spacing:-0.158717px;}
.ls67{letter-spacing:-0.153186px;}
.ls90{letter-spacing:-0.152104px;}
.ls9b{letter-spacing:-0.145490px;}
.ls25{letter-spacing:-0.144288px;}
.ls68{letter-spacing:-0.136773px;}
.ls2a{letter-spacing:-0.135270px;}
.ls2c{letter-spacing:-0.126252px;}
.lsaf{letter-spacing:-0.125651px;}
.ls6c{letter-spacing:-0.120360px;}
.ls8c{letter-spacing:-0.119038px;}
.ls30{letter-spacing:-0.117234px;}
.ls94{letter-spacing:-0.112424px;}
.lsb0{letter-spacing:-0.105811px;}
.ls2f{letter-spacing:-0.097200px;}
.lsac{letter-spacing:-0.092585px;}
.lsaa{letter-spacing:-0.085972px;}
.ls69{letter-spacing:-0.082064px;}
.ls2b{letter-spacing:-0.081162px;}
.lsab{letter-spacing:-0.072745px;}
.lsa6{letter-spacing:-0.066132px;}
.ls29{letter-spacing:-0.063126px;}
.lsa9{letter-spacing:-0.059519px;}
.lsa7{letter-spacing:-0.052906px;}
.ls8e{letter-spacing:-0.046292px;}
.ls32{letter-spacing:-0.045090px;}
.ls8a{letter-spacing:-0.041580px;}
.ls97{letter-spacing:-0.039679px;}
.ls93{letter-spacing:-0.033066px;}
.ls6a{letter-spacing:-0.032826px;}
.ls2d{letter-spacing:-0.032400px;}
.ls61{letter-spacing:-0.029484px;}
.ls65{letter-spacing:-0.027355px;}
.ls28{letter-spacing:-0.027054px;}
.ls95{letter-spacing:-0.026453px;}
.ls89{letter-spacing:-0.023760px;}
.ls6d{letter-spacing:-0.021884px;}
.ls8b{letter-spacing:-0.019840px;}
.ls60{letter-spacing:-0.019656px;}
.ls63{letter-spacing:-0.016413px;}
.ls99{letter-spacing:-0.013226px;}
.ls2e{letter-spacing:-0.008100px;}
.lsa8{letter-spacing:-0.006613px;}
.ls62{letter-spacing:-0.005471px;}
.lsc{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.004357px;}
.ls4c{letter-spacing:0.004914px;}
.ls71{letter-spacing:0.005267px;}
.ls7a{letter-spacing:0.005940px;}
.lsa3{letter-spacing:0.006613px;}
.lse{letter-spacing:0.007182px;}
.ls1e{letter-spacing:0.008100px;}
.ls59{letter-spacing:0.010942px;}
.ls78{letter-spacing:0.011880px;}
.ls82{letter-spacing:0.013226px;}
.ls4d{letter-spacing:0.014742px;}
.ls7b{letter-spacing:0.017820px;}
.ls16{letter-spacing:0.018036px;}
.ls4a{letter-spacing:0.019656px;}
.lsa0{letter-spacing:0.019840px;}
.ls5c{letter-spacing:0.021884px;}
.ls9e{letter-spacing:0.023760px;}
.lsa5{letter-spacing:0.026453px;}
.ls12{letter-spacing:0.027054px;}
.ls54{letter-spacing:0.027355px;}
.ls53{letter-spacing:0.032826px;}
.ls86{letter-spacing:0.033066px;}
.ls47{letter-spacing:0.034398px;}
.ls57{letter-spacing:0.038296px;}
.ls45{letter-spacing:0.039214px;}
.ls48{letter-spacing:0.039312px;}
.ls80{letter-spacing:0.039679px;}
.ls75{letter-spacing:0.041580px;}
.ls5b{letter-spacing:0.043767px;}
.ls15{letter-spacing:0.045090px;}
.lsa4{letter-spacing:0.046292px;}
.ls73{letter-spacing:0.047401px;}
.ls76{letter-spacing:0.047520px;}
.ls4f{letter-spacing:0.049140px;}
.ls51{letter-spacing:0.049238px;}
.ls84{letter-spacing:0.052906px;}
.ls23{letter-spacing:0.054108px;}
.ls4b{letter-spacing:0.058968px;}
.ls7e{letter-spacing:0.059519px;}
.ls5a{letter-spacing:0.060180px;}
.ls20{letter-spacing:0.063126px;}
.ls10{letter-spacing:0.064638px;}
.ls6b{letter-spacing:0.065651px;}
.ls9f{letter-spacing:0.066132px;}
.ls49{letter-spacing:0.068796px;}
.ls50{letter-spacing:0.071122px;}
.ls79{letter-spacing:0.071280px;}
.ls14{letter-spacing:0.072144px;}
.ls85{letter-spacing:0.072745px;}
.ls7d{letter-spacing:0.079358px;}
.ls1c{letter-spacing:0.081000px;}
.ls13{letter-spacing:0.081162px;}
.ls5e{letter-spacing:0.082064px;}
.ls77{letter-spacing:0.083160px;}
.ls4e{letter-spacing:0.083538px;}
.lsa1{letter-spacing:0.085972px;}
.ls1f{letter-spacing:0.090180px;}
.ls52{letter-spacing:0.093006px;}
.ls88{letter-spacing:0.099198px;}
.ls7c{letter-spacing:0.100980px;}
.ls5d{letter-spacing:0.103947px;}
.ls7f{letter-spacing:0.112424px;}
.ls87{letter-spacing:0.125651px;}
.ls22{letter-spacing:0.126252px;}
.ls64{letter-spacing:0.131302px;}
.ls1d{letter-spacing:0.137700px;}
.lsa2{letter-spacing:0.145490px;}
.ls66{letter-spacing:0.147715px;}
.ls46{letter-spacing:0.152498px;}
.ls8d{letter-spacing:0.158717px;}
.ls1b{letter-spacing:0.162324px;}
.ls55{letter-spacing:0.164128px;}
.ls44{letter-spacing:0.165569px;}
.ls18{letter-spacing:0.171342px;}
.ls8f{letter-spacing:0.178556px;}
.ls74{letter-spacing:0.184338px;}
.ls21{letter-spacing:0.189378px;}
.ls9d{letter-spacing:0.189605px;}
.ls81{letter-spacing:0.198396px;}
.ls72{letter-spacing:0.200138px;}
.ls19{letter-spacing:0.207414px;}
.ls11{letter-spacing:0.251370px;}
.ls5f{letter-spacing:0.268992px;}
.ls17{letter-spacing:0.270540px;}
.lsf{letter-spacing:0.272916px;}
.lsad{letter-spacing:0.416632px;}
.ls56{letter-spacing:1.389614px;}
.ls58{letter-spacing:2.702634px;}
.ls1{letter-spacing:2.998354px;}
.lsae{letter-spacing:6.037852px;}
.ls83{letter-spacing:6.434644px;}
.ls0{letter-spacing:10.581896px;}
.lsb{letter-spacing:11.954850px;}
.lsb8{letter-spacing:13.243917px;}
.lsb7{letter-spacing:13.256282px;}
.lsb1{letter-spacing:13.448400px;}
.lsb6{letter-spacing:13.454400px;}
.lsb4{letter-spacing:13.475174px;}
.lsb9{letter-spacing:13.538155px;}
.lsb2{letter-spacing:13.568656px;}
.ls6e{letter-spacing:13.710159px;}
.lsb3{letter-spacing:13.764249px;}
.lsbb{letter-spacing:13.991576px;}
.ls34{letter-spacing:14.692082px;}
.ls42{letter-spacing:14.944200px;}
.ls6f{letter-spacing:14.973923px;}
.ls33{letter-spacing:15.029847px;}
.ls40{letter-spacing:15.391200px;}
.ls7{letter-spacing:15.529847px;}
.lsd{letter-spacing:15.657483px;}
.ls4{letter-spacing:15.663483px;}
.ls35{letter-spacing:15.688200px;}
.ls70{letter-spacing:15.690017px;}
.ls36{letter-spacing:15.694200px;}
.lsb5{letter-spacing:16.956282px;}
.lsba{letter-spacing:17.285694px;}
.ls41{letter-spacing:18.035729px;}
.lsa{letter-spacing:18.671024px;}
.ls6{letter-spacing:20.453376px;}
.ls9{letter-spacing:20.912200px;}
.ls5{letter-spacing:21.909041px;}
.ls8{letter-spacing:22.473747px;}
.ls9c{letter-spacing:28.741612px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls3d{letter-spacing:118.544100px;}
.ls3c{letter-spacing:131.216100px;}
.ls1a{letter-spacing:135.847152px;}
.ls38{letter-spacing:137.414100px;}
.ls39{letter-spacing:161.174100px;}
.ls3b{letter-spacing:165.494100px;}
.ls3a{letter-spacing:171.980100px;}
.ls37{letter-spacing:174.438600px;}
.ls3e{letter-spacing:196.016100px;}
.ls3f{letter-spacing:251.894100px;}
.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;}
}
.ws4b{word-spacing:-90.180000px;}
.ws104{word-spacing:-66.132000px;}
.ws103{word-spacing:-59.400000px;}
.wsbf{word-spacing:-54.709200px;}
.wsbe{word-spacing:-49.140000px;}
.ws48{word-spacing:-18.227916px;}
.ws49{word-spacing:-17.955000px;}
.ws145{word-spacing:-16.618972px;}
.ws146{word-spacing:-16.572679px;}
.ws105{word-spacing:-16.533000px;}
.ws14{word-spacing:-14.943900px;}
.wsb{word-spacing:-14.355754px;}
.wsc0{word-spacing:-13.677300px;}
.wsc2{word-spacing:-13.660887px;}
.ws18a{word-spacing:-13.449600px;}
.ws100{word-spacing:-13.367138px;}
.ws101{word-spacing:-13.167000px;}
.ws31{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.wsbb{word-spacing:-11.058269px;}
.wsbc{word-spacing:-10.892700px;}
.ws4{word-spacing:-10.460700px;}
.ws57{word-spacing:-4.806594px;}
.ws58{word-spacing:-4.797576px;}
.ws176{word-spacing:-3.504996px;}
.wsfb{word-spacing:-3.048556px;}
.ws90{word-spacing:-2.988780px;}
.ws14b{word-spacing:-2.929004px;}
.ws3c{word-spacing:-2.570351px;}
.ws64{word-spacing:-2.534058px;}
.wsf4{word-spacing:-2.516623px;}
.ws46{word-spacing:-2.510575px;}
.ws12a{word-spacing:-2.506403px;}
.wsf3{word-spacing:-2.418147px;}
.ws143{word-spacing:-2.331248px;}
.ws14c{word-spacing:-2.271473px;}
.ws158{word-spacing:-2.222035px;}
.ws9a{word-spacing:-2.151922px;}
.ws157{word-spacing:-2.129450px;}
.ws12b{word-spacing:-2.096384px;}
.wsfc{word-spacing:-2.032370px;}
.ws11f{word-spacing:-1.917828px;}
.ws94{word-spacing:-1.912819px;}
.ws11d{word-spacing:-1.878149px;}
.ws11e{word-spacing:-1.858309px;}
.ws47{word-spacing:-1.853044px;}
.wsdb{word-spacing:-1.586567px;}
.wsd9{word-spacing:-1.553741px;}
.ws7f{word-spacing:-1.542078px;}
.wsda{word-spacing:-1.537329px;}
.ws79{word-spacing:-1.506006px;}
.wsf9{word-spacing:-1.494390px;}
.ws161{word-spacing:-1.454904px;}
.ws193{word-spacing:-1.452557px;}
.ws162{word-spacing:-1.435064px;}
.ws45{word-spacing:-1.434614px;}
.ws163{word-spacing:-1.395385px;}
.ws43{word-spacing:-1.374839px;}
.ws7a{word-spacing:-1.343682px;}
.ws141{word-spacing:-1.315063px;}
.wsfd{word-spacing:-1.255288px;}
.wsed{word-spacing:-1.198131px;}
.ws172{word-spacing:-1.163923px;}
.ws2e{word-spacing:-1.135736px;}
.ws110{word-spacing:-1.075140px;}
.ws9b{word-spacing:-1.016185px;}
.ws56{word-spacing:-0.973944px;}
.ws148{word-spacing:-0.956410px;}
.ws1b1{word-spacing:-0.914573px;}
.wse4{word-spacing:-0.913644px;}
.wscc{word-spacing:-0.889434px;}
.wse3{word-spacing:-0.886289px;}
.wsec{word-spacing:-0.820638px;}
.ws1ae{word-spacing:-0.806976px;}
.ws14e{word-spacing:-0.777083px;}
.ws179{word-spacing:-0.720839px;}
.ws14d{word-spacing:-0.717307px;}
.ws186{word-spacing:-0.699379px;}
.ws69{word-spacing:-0.676350px;}
.ws17d{word-spacing:-0.657532px;}
.ws10f{word-spacing:-0.641520px;}
.ws10e{word-spacing:-0.635580px;}
.ws7b{word-spacing:-0.595188px;}
.ws10d{word-spacing:-0.570240px;}
.ws74{word-spacing:-0.532062px;}
.wscb{word-spacing:-0.530712px;}
.wsca{word-spacing:-0.525798px;}
.ws73{word-spacing:-0.495990px;}
.wsc9{word-spacing:-0.471744px;}
.ws13d{word-spacing:-0.423245px;}
.ws3a{word-spacing:-0.418429px;}
.wsf7{word-spacing:-0.410319px;}
.ws53{word-spacing:-0.409374px;}
.ws1c{word-spacing:-0.358654px;}
.wsf6{word-spacing:-0.350139px;}
.ws68{word-spacing:-0.342684px;}
.ws120{word-spacing:-0.337273px;}
.ws1a4{word-spacing:-0.322790px;}
.ws10a{word-spacing:-0.300208px;}
.ws92{word-spacing:-0.298878px;}
.ws96{word-spacing:-0.260152px;}
.wsc6{word-spacing:-0.248354px;}
.ws36{word-spacing:-0.239102px;}
.ws1a2{word-spacing:-0.215194px;}
.ws54{word-spacing:-0.201096px;}
.wsac{word-spacing:-0.191282px;}
.ws1f{word-spacing:-0.179327px;}
.ws121{word-spacing:-0.178556px;}
.wsc4{word-spacing:-0.161395px;}
.ws10b{word-spacing:-0.147470px;}
.ws52{word-spacing:-0.143640px;}
.wsc7{word-spacing:-0.121998px;}
.ws2a{word-spacing:-0.119551px;}
.ws1a6{word-spacing:-0.107597px;}
.ws109{word-spacing:-0.105336px;}
.ws4a{word-spacing:-0.090180px;}
.wsc5{word-spacing:-0.087142px;}
.ws4c{word-spacing:-0.081000px;}
.ws125{word-spacing:-0.079358px;}
.ws106{word-spacing:-0.066132px;}
.wse2{word-spacing:-0.065651px;}
.ws19{word-spacing:-0.059776px;}
.ws102{word-spacing:-0.059400px;}
.wsc1{word-spacing:-0.054709px;}
.ws188{word-spacing:-0.053798px;}
.wsbd{word-spacing:-0.049140px;}
.ws32{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws67{word-spacing:-0.027054px;}
.wsa2{word-spacing:-0.008041px;}
.wsff{word-spacing:-0.000900px;}
.ws8{word-spacing:-0.000499px;}
.ws0{word-spacing:0.000000px;}
.ws144{word-spacing:0.005100px;}
.ws7c{word-spacing:0.009018px;}
.wsd6{word-spacing:0.010942px;}
.ws11a{word-spacing:0.013226px;}
.ws138{word-spacing:0.026453px;}
.wsd7{word-spacing:0.032826px;}
.ws11b{word-spacing:0.039679px;}
.ws126{word-spacing:0.046292px;}
.ws107{word-spacing:0.053798px;}
.ws2f{word-spacing:0.059776px;}
.ws175{word-spacing:0.079358px;}
.wsaa{word-spacing:0.083686px;}
.ws169{word-spacing:0.085972px;}
.wsd8{word-spacing:0.087535px;}
.wse{word-spacing:0.095641px;}
.ws11c{word-spacing:0.099198px;}
.ws18b{word-spacing:0.107597px;}
.wsd5{word-spacing:0.113022px;}
.ws1b{word-spacing:0.119551px;}
.ws119{word-spacing:0.124740px;}
.ws6{word-spacing:0.125528px;}
.ws13c{word-spacing:0.132264px;}
.ws5a{word-spacing:0.135270px;}
.ws16a{word-spacing:0.138877px;}
.ws147{word-spacing:0.161395px;}
.wsd4{word-spacing:0.162162px;}
.ws44{word-spacing:0.179327px;}
.ws72{word-spacing:0.186300px;}
.wsd{word-spacing:0.191282px;}
.ws118{word-spacing:0.196020px;}
.ws65{word-spacing:0.198396px;}
.wsf8{word-spacing:0.202424px;}
.ws185{word-spacing:0.215194px;}
.ws6a{word-spacing:0.216432px;}
.ws28{word-spacing:0.239102px;}
.ws13e{word-spacing:0.244688px;}
.ws165{word-spacing:0.257915px;}
.ws6b{word-spacing:0.261522px;}
.ws164{word-spacing:0.264528px;}
.ws184{word-spacing:0.268992px;}
.ws66{word-spacing:0.270540px;}
.ws37{word-spacing:0.298878px;}
.ws190{word-spacing:0.322790px;}
.ws98{word-spacing:0.358654px;}
.wsb4{word-spacing:0.374263px;}
.wsb3{word-spacing:0.375000px;}
.ws1b7{word-spacing:0.376589px;}
.ws99{word-spacing:0.418429px;}
.ws18d{word-spacing:0.484186px;}
.wsb9{word-spacing:0.537980px;}
.wsb8{word-spacing:0.571850px;}
.ws22{word-spacing:0.597756px;}
.wseb{word-spacing:0.678394px;}
.ws1b6{word-spacing:0.699379px;}
.ws21{word-spacing:0.744366px;}
.wse9{word-spacing:0.754987px;}
.ws23{word-spacing:0.805335px;}
.ws12e{word-spacing:0.820037px;}
.ws4d{word-spacing:0.860774px;}
.ws12c{word-spacing:0.912622px;}
.ws168{word-spacing:0.945688px;}
.ws83{word-spacing:0.956410px;}
.ws93{word-spacing:1.016185px;}
.wsea{word-spacing:1.094184px;}
.ws2d{word-spacing:1.135736px;}
.ws88{word-spacing:1.255288px;}
.wsdd{word-spacing:1.318492px;}
.ws12d{word-spacing:1.322640px;}
.ws113{word-spacing:1.336500px;}
.wsf5{word-spacing:1.367730px;}
.wsab{word-spacing:1.434618px;}
.ws9d{word-spacing:1.494390px;}
.wse6{word-spacing:1.542799px;}
.ws89{word-spacing:1.554166px;}
.ws18{word-spacing:1.613941px;}
.wse5{word-spacing:1.646747px;}
.wsf0{word-spacing:1.652218px;}
.ws1b3{word-spacing:1.667750px;}
.ws9c{word-spacing:1.673717px;}
.ws136{word-spacing:1.679753px;}
.wsdc{word-spacing:1.690514px;}
.ws137{word-spacing:1.692979px;}
.ws13a{word-spacing:1.706206px;}
.wsf1{word-spacing:1.706927px;}
.ws1d{word-spacing:1.722372px;}
.ws1e{word-spacing:1.733492px;}
.ws112{word-spacing:1.770120px;}
.ws130{word-spacing:1.792177px;}
.ws81{word-spacing:1.793268px;}
.ws111{word-spacing:1.823580px;}
.ws139{word-spacing:1.838470px;}
.ws181{word-spacing:1.853044px;}
.ws5f{word-spacing:1.902798px;}
.ws95{word-spacing:1.912819px;}
.ws12f{word-spacing:2.010413px;}
.ws34{word-spacing:2.032370px;}
.ws10{word-spacing:2.092146px;}
.ws131{word-spacing:2.102998px;}
.wsfa{word-spacing:2.151922px;}
.ws91{word-spacing:2.211697px;}
.ws60{word-spacing:2.245482px;}
.ws19a{word-spacing:2.259533px;}
.wsb7{word-spacing:2.271473px;}
.ws5e{word-spacing:2.272536px;}
.wscf{word-spacing:2.417688px;}
.ws16c{word-spacing:2.427044px;}
.ws13b{word-spacing:2.440271px;}
.ws87{word-spacing:2.450800px;}
.ws61{word-spacing:2.479950px;}
.ws7{word-spacing:2.510252px;}
.wsfe{word-spacing:2.510575px;}
.ws5d{word-spacing:2.516022px;}
.ws155{word-spacing:2.539469px;}
.ws33{word-spacing:2.570351px;}
.wsde{word-spacing:2.571332px;}
.ws1af{word-spacing:2.582323px;}
.ws154{word-spacing:2.592374px;}
.ws9f{word-spacing:2.630126px;}
.wse1{word-spacing:2.653396px;}
.wsf2{word-spacing:2.658867px;}
.wse0{word-spacing:2.664338px;}
.ws2{word-spacing:2.687814px;}
.ws17{word-spacing:2.689902px;}
.wsdf{word-spacing:2.729989px;}
.ws196{word-spacing:2.743718px;}
.ws8a{word-spacing:2.749678px;}
.wsce{word-spacing:2.766582px;}
.ws14a{word-spacing:2.809453px;}
.wscd{word-spacing:2.815722px;}
.ws171{word-spacing:2.837063px;}
.ws11{word-spacing:2.869229px;}
.ws86{word-spacing:2.929004px;}
.ws17b{word-spacing:2.975940px;}
.ws17a{word-spacing:2.995780px;}
.ws1b0{word-spacing:3.012710px;}
.wsba{word-spacing:3.048556px;}
.ws2c{word-spacing:3.108331px;}
.ws187{word-spacing:3.169786px;}
.ws1a5{word-spacing:3.224506px;}
.ws19d{word-spacing:3.225840px;}
.ws41{word-spacing:3.227882px;}
.ws198{word-spacing:3.227904px;}
.wsa0{word-spacing:3.287658px;}
.wsb5{word-spacing:3.314857px;}
.ws77{word-spacing:3.354696px;}
.ws29{word-spacing:3.447471px;}
.ws189{word-spacing:3.496896px;}
.ws3d{word-spacing:3.526760px;}
.ws78{word-spacing:3.571128px;}
.ws170{word-spacing:3.584354px;}
.ws8f{word-spacing:3.646312px;}
.ws1b2{word-spacing:3.658291px;}
.ws15e{word-spacing:3.690166px;}
.ws16f{word-spacing:3.696779px;}
.ws26{word-spacing:3.706087px;}
.ws160{word-spacing:3.736458px;}
.ws15f{word-spacing:3.749684px;}
.ws14f{word-spacing:3.765863px;}
.ws1a{word-spacing:3.783749px;}
.ws84{word-spacing:3.885414px;}
.ws80{word-spacing:4.064741px;}
.wsb6{word-spacing:4.124516px;}
.ws40{word-spacing:4.184292px;}
.wsa1{word-spacing:4.244068px;}
.ws97{word-spacing:4.303843px;}
.ws2b{word-spacing:4.303872px;}
.ws3e{word-spacing:4.363619px;}
.ws85{word-spacing:4.483170px;}
.ws15{word-spacing:4.542946px;}
.ws18c{word-spacing:4.572864px;}
.ws9e{word-spacing:4.662497px;}
.ws17e{word-spacing:4.722272px;}
.ws27{word-spacing:4.728865px;}
.ws17c{word-spacing:4.841824px;}
.ws12{word-spacing:4.901599px;}
.ws35{word-spacing:4.961375px;}
.ws16{word-spacing:5.021150px;}
.ws3f{word-spacing:5.080926px;}
.ws108{word-spacing:5.140702px;}
.ws134{word-spacing:5.283947px;}
.ws132{word-spacing:5.356692px;}
.ws51{word-spacing:5.439580px;}
.ws59{word-spacing:5.491962px;}
.ws20{word-spacing:5.499355px;}
.ws133{word-spacing:5.515409px;}
.ws135{word-spacing:5.528635px;}
.ws159{word-spacing:5.574928px;}
.ws8e{word-spacing:5.618906px;}
.ws15a{word-spacing:5.647673px;}
.ws152{word-spacing:5.726160px;}
.ws39{word-spacing:5.738458px;}
.ws25{word-spacing:5.977560px;}
.ws16e{word-spacing:5.978333px;}
.ws153{word-spacing:5.998172px;}
.wsd0{word-spacing:5.999994px;}
.wsd3{word-spacing:6.044220px;}
.wsd1{word-spacing:6.054048px;}
.wsd2{word-spacing:6.078618px;}
.ws151{word-spacing:6.112260px;}
.ws180{word-spacing:6.156887px;}
.wse8{word-spacing:6.176669px;}
.ws122{word-spacing:6.275927px;}
.ws149{word-spacing:6.276438px;}
.wsc3{word-spacing:6.294413px;}
.ws16b{word-spacing:6.375125px;}
.ws13{word-spacing:6.395989px;}
.ws124{word-spacing:6.421417px;}
.ws167{word-spacing:6.428030px;}
.wse7{word-spacing:6.444744px;}
.ws178{word-spacing:6.447870px;}
.ws166{word-spacing:6.454483px;}
.ws123{word-spacing:6.480936px;}
.ws177{word-spacing:6.487549px;}
.ws8c{word-spacing:6.575316px;}
.ws6d{word-spacing:6.666300px;}
.ws24{word-spacing:6.694867px;}
.ws6e{word-spacing:6.755400px;}
.ws6c{word-spacing:6.779700px;}
.ws127{word-spacing:6.791756px;}
.ws128{word-spacing:6.983539px;}
.ws129{word-spacing:7.029832px;}
.ws142{word-spacing:7.053521px;}
.ws8d{word-spacing:7.173072px;}
.ws114{word-spacing:7.252740px;}
.ws82{word-spacing:7.292623px;}
.ws117{word-spacing:7.306200px;}
.ws115{word-spacing:7.318080px;}
.ws116{word-spacing:7.347780px;}
.ws17f{word-spacing:7.412174px;}
.ws50{word-spacing:7.471950px;}
.ws156{word-spacing:7.697765px;}
.wsf{word-spacing:8.009930px;}
.ws182{word-spacing:8.129482px;}
.ws183{word-spacing:8.308808px;}
.ws173{word-spacing:8.405377px;}
.ws174{word-spacing:8.458283px;}
.ws5c{word-spacing:8.603172px;}
.ws5b{word-spacing:9.297558px;}
.ws7d{word-spacing:9.811584px;}
.ws7e{word-spacing:9.901764px;}
.ws3{word-spacing:10.544386px;}
.wsc8{word-spacing:10.574633px;}
.ws70{word-spacing:11.064600px;}
.ws6f{word-spacing:11.169900px;}
.ws38{word-spacing:11.895344px;}
.ws30{word-spacing:11.904926px;}
.ws8b{word-spacing:12.433325px;}
.ws76{word-spacing:12.489930px;}
.ws15d{word-spacing:12.750250px;}
.ws150{word-spacing:12.777257px;}
.ws10c{word-spacing:12.782524px;}
.ws15c{word-spacing:13.173494px;}
.ws1a3{word-spacing:13.180608px;}
.ws15b{word-spacing:13.226400px;}
.ws1a7{word-spacing:13.288205px;}
.ws4e{word-spacing:13.342003px;}
.ws1a9{word-spacing:13.392624px;}
.ws194{word-spacing:13.394803px;}
.ws1a0{word-spacing:13.395802px;}
.ws1a8{word-spacing:13.449600px;}
.ws1a1{word-spacing:13.453138px;}
.ws19b{word-spacing:13.503398px;}
.ws1ac{word-spacing:13.610995px;}
.ws191{word-spacing:13.664794px;}
.ws192{word-spacing:13.699736px;}
.ws140{word-spacing:13.748388px;}
.ws1b8{word-spacing:13.772390px;}
.ws13f{word-spacing:13.808164px;}
.wsee{word-spacing:14.169683px;}
.wsef{word-spacing:14.634711px;}
.ws42{word-spacing:14.884124px;}
.ws75{word-spacing:15.375690px;}
.ws16d{word-spacing:15.917972px;}
.ws197{word-spacing:16.139520px;}
.ws1aa{word-spacing:16.408512px;}
.ws19e{word-spacing:16.613030px;}
.ws1b5{word-spacing:16.618934px;}
.ws19f{word-spacing:16.619030px;}
.ws18e{word-spacing:16.619174px;}
.ws1ad{word-spacing:16.620134px;}
.ws19c{word-spacing:16.622563px;}
.ws199{word-spacing:16.623706px;}
.ws195{word-spacing:16.657380px;}
.ws4f{word-spacing:16.731302px;}
.ws18f{word-spacing:16.838899px;}
.ws1ab{word-spacing:16.892698px;}
.ws55{word-spacing:17.430714px;}
.ws63{word-spacing:17.440812px;}
.ws62{word-spacing:17.585100px;}
.ws3b{word-spacing:18.470660px;}
.ws1b4{word-spacing:22.003546px;}
.ws71{word-spacing:22.866300px;}
.ws1{word-spacing:28.455541px;}
.wsa{word-spacing:40.042186px;}
.wsc{word-spacing:54.988186px;}
.wsb1{word-spacing:101.678004px;}
.wsa8{word-spacing:101.719847px;}
.wsa6{word-spacing:111.678433px;}
.wsb2{word-spacing:111.794668px;}
.wsad{word-spacing:117.683195px;}
.wsb0{word-spacing:122.139133px;}
.wsa3{word-spacing:128.147195px;}
.wsaf{word-spacing:147.517886px;}
.wsa5{word-spacing:147.523886px;}
.wsae{word-spacing:152.726220px;}
.wsa4{word-spacing:159.211854px;}
.wsa7{word-spacing:176.499000px;}
.wsa9{word-spacing:216.223886px;}
._3b{margin-left:-17.379490px;}
._38{margin-left:-14.377578px;}
._4{margin-left:-11.578633px;}
._1a{margin-left:-7.663219px;}
._7{margin-left:-6.638899px;}
._9{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._2{margin-left:-2.301354px;}
._3{margin-left:-1.087913px;}
._1d{width:1.149120px;}
._8{width:2.432683px;}
._5{width:3.560732px;}
._1f{width:9.270504px;}
._0{width:12.971268px;}
._14{width:14.826789px;}
._17{width:15.951951px;}
._d{width:17.902786px;}
._18{width:18.948865px;}
._11{width:20.144377px;}
._f{width:21.937645px;}
._a{width:22.982767px;}
._e{width:24.041743px;}
._12{width:25.539941px;}
._13{width:26.943036px;}
._19{width:28.367323px;}
._10{width:29.768249px;}
._b{width:31.610245px;}
._3c{width:32.876580px;}
._c{width:34.135675px;}
._39{width:35.935605px;}
._3e{width:37.551029px;}
._20{width:38.681050px;}
._22{width:40.946286px;}
._6{width:53.848348px;}
._21{width:67.355597px;}
._1b{width:105.264832px;}
._1c{width:107.596080px;}
._2d{width:118.038539px;}
._34{width:126.114199px;}
._2e{width:133.060104px;}
._35{width:139.880480px;}
._23{width:150.888508px;}
._2b{width:155.875578px;}
._36{width:160.033758px;}
._2c{width:161.136623px;}
._32{width:166.336278px;}
._31{width:169.672554px;}
._25{width:173.647620px;}
._26{width:176.492930px;}
._29{width:180.133254px;}
._33{width:184.108320px;}
._30{width:187.288373px;}
._27{width:197.749073px;}
._24{width:201.054654px;}
._28{width:212.226682px;}
._2a{width:217.520587px;}
._2f{width:230.324587px;}
._15{width:1805.925000px;}
._37{width:1861.655078px;}
._3d{width:2224.458356px;}
._3a{width:2250.592218px;}
._3f{width:2453.511000px;}
._16{width:2477.421000px;}
._1e{width:3068.258130px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fse{font-size:43.570800px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs10{font-size:49.140000px;}
.fs11{font-size:52.668000px;}
.fsc{font-size:53.798400px;}
.fsf{font-size:54.709200px;}
.fs13{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs12{font-size:66.132000px;}
.fs7{font-size:71.731200px;}
.fs9{font-size:71.820000px;}
.fs14{font-size:79.200000px;}
.fsb{font-size:81.000000px;}
.fsa{font-size:90.180000px;}
.fs2{font-size:107.596800px;}
.y183{bottom:-803.724405px;}
.y1a7{bottom:-800.950755px;}
.y1c8{bottom:-773.129419px;}
.y1c7{bottom:-750.062577px;}
.y1c6{bottom:-726.896537px;}
.y1c5{bottom:-703.829696px;}
.y1c4{bottom:-680.762854px;}
.y157{bottom:-668.916476px;}
.y1c3{bottom:-657.596815px;}
.y1c2{bottom:-634.529973px;}
.y1c1{bottom:-611.463131px;}
.y1c0{bottom:-588.297092px;}
.y7b{bottom:-565.291575px;}
.y1bf{bottom:-565.230250px;}
.y1be{bottom:-542.163409px;}
.y97{bottom:-523.710252px;}
.y1bd{bottom:-518.997369px;}
.y1bc{bottom:-495.930527px;}
.y96{bottom:-492.120198px;}
.y198{bottom:-490.288999px;}
.y1bb{bottom:-472.863686px;}
.y197{bottom:-467.222158px;}
.y95{bottom:-453.915441px;}
.y1ba{bottom:-449.697646px;}
.y196{bottom:-444.155316px;}
.y1b9{bottom:-426.630805px;}
.y195{bottom:-420.989276px;}
.y16c{bottom:-404.214513px;}
.y1b8{bottom:-403.563963px;}
.y194{bottom:-397.922435px;}
.y94{bottom:-395.460765px;}
.y16b{bottom:-385.049880px;}
.y1b7{bottom:-380.397923px;}
.y193{bottom:-374.855593px;}
.y16a{bottom:-365.967311px;}
.y93{bottom:-363.870711px;}
.y1b6{bottom:-357.331082px;}
.y192{bottom:-351.689554px;}
.y169{bottom:-346.884742px;}
.y1b5{bottom:-334.264240px;}
.y92{bottom:-332.415927px;}
.y191{bottom:-328.622712px;}
.y168{bottom:-327.720109px;}
.y1b4{bottom:-311.098201px;}
.y167{bottom:-308.637540px;}
.y190{bottom:-305.555870px;}
.y91{bottom:-300.961143px;}
.y166{bottom:-289.554971px;}
.y1b3{bottom:-288.031359px;}
.y18f{bottom:-282.389831px;}
.y165{bottom:-270.390338px;}
.y90{bottom:-269.371089px;}
.y1b2{bottom:-264.964517px;}
.y18e{bottom:-259.322989px;}
.y164{bottom:-251.307769px;}
.y1b1{bottom:-241.798478px;}
.y18d{bottom:-236.256148px;}
.y163{bottom:-232.225200px;}
.y8f{bottom:-231.166332px;}
.y1b0{bottom:-218.731636px;}
.y18c{bottom:-213.090108px;}
.y162{bottom:-213.060568px;}
.y1af{bottom:-195.664795px;}
.y161{bottom:-193.977999px;}
.y8e{bottom:-192.961575px;}
.y18b{bottom:-190.023266px;}
.y160{bottom:-174.895430px;}
.y1ae{bottom:-172.498755px;}
.y18a{bottom:-166.956425px;}
.y15f{bottom:-155.730797px;}
.y1ad{bottom:-143.590755px;}
.y189{bottom:-138.840405px;}
.y15e{bottom:-136.648228px;}
.y8d{bottom:-135.045225px;}
.y15d{bottom:-113.470675px;}
.y8c{bottom:-103.590900px;}
.y1ac{bottom:-98.445765px;}
.y188{bottom:-96.467415px;}
.y15c{bottom:-78.334756px;}
.y1ab{bottom:-75.379260px;}
.y187{bottom:-73.400910px;}
.y8b{bottom:-72.136575px;}
.y15b{bottom:-59.252466px;}
.y1aa{bottom:-52.312755px;}
.y186{bottom:-50.234910px;}
.y8a{bottom:-40.546575px;}
.y15a{bottom:-40.170176px;}
.y1a9{bottom:-29.146755px;}
.y185{bottom:-27.168405px;}
.y159{bottom:-21.005575px;}
.y89{bottom:-1.799591px;}
.y1a8{bottom:-0.634517px;}
.y0{bottom:0.000000px;}
.y184{bottom:1.343417px;}
.y158{bottom:2.581510px;}
.y43{bottom:45.921000px;}
.y42{bottom:99.720000px;}
.y17{bottom:100.260000px;}
.yf3{bottom:100.894500px;}
.y1a3{bottom:103.245000px;}
.y247{bottom:105.961500px;}
.y1dc{bottom:111.267000px;}
.y9f{bottom:112.134000px;}
.y16e{bottom:112.492500px;}
.y215{bottom:116.053500px;}
.y1f3{bottom:116.407500px;}
.y16{bottom:118.147500px;}
.y41{bottom:120.610500px;}
.yf2{bottom:121.786500px;}
.y1a2{bottom:124.137000px;}
.y246{bottom:125.112000px;}
.y16d{bottom:131.725500px;}
.y1db{bottom:132.159000px;}
.y9e{bottom:133.024500px;}
.y74{bottom:134.191500px;}
.y214{bottom:135.204000px;}
.y15{bottom:136.035000px;}
.y1f2{bottom:137.298000px;}
.y40{bottom:141.502500px;}
.yf1{bottom:142.678500px;}
.y245{bottom:144.262500px;}
.y1a1{bottom:145.029000px;}
.y1da{bottom:153.051000px;}
.y14{bottom:153.924000px;}
.y154{bottom:154.153500px;}
.y213{bottom:154.354500px;}
.y73{bottom:155.083500px;}
.y125{bottom:155.979000px;}
.y1f1{bottom:158.190000px;}
.y9d{bottom:158.400000px;}
.y3f{bottom:162.394500px;}
.y244{bottom:163.413000px;}
.yf0{bottom:163.569000px;}
.y1a0{bottom:165.919500px;}
.yc8{bottom:166.020000px;}
.y13{bottom:171.811500px;}
.y212{bottom:173.505000px;}
.y1d9{bottom:173.941500px;}
.y124{bottom:175.137000px;}
.y72{bottom:175.974000px;}
.y1f0{bottom:179.082000px;}
.y9c{bottom:180.292500px;}
.y123{bottom:181.114500px;}
.y243{bottom:182.563500px;}
.y3e{bottom:183.285000px;}
.yef{bottom:184.461000px;}
.y19f{bottom:186.811500px;}
.yc7{bottom:186.912000px;}
.y12{bottom:189.699000px;}
.y211{bottom:192.657000px;}
.y1d8{bottom:194.833500px;}
.y70{bottom:196.866000px;}
.y1ef{bottom:199.972500px;}
.y242{bottom:201.714000px;}
.y71{bottom:202.290000px;}
.y3d{bottom:204.177000px;}
.yee{bottom:205.353000px;}
.y121{bottom:206.250000px;}
.y11{bottom:207.586500px;}
.y19e{bottom:207.703500px;}
.yc6{bottom:207.802500px;}
.y210{bottom:211.807500px;}
.y9b{bottom:212.439000px;}
.y1d7{bottom:215.725500px;}
.y119{bottom:217.498500px;}
.y6f{bottom:217.758000px;}
.y120{bottom:218.205000px;}
.y1ee{bottom:220.864500px;}
.y11d{bottom:224.182500px;}
.y3c{bottom:225.069000px;}
.y10{bottom:225.475500px;}
.yed{bottom:226.243500px;}
.yc5{bottom:228.694500px;}
.y118{bottom:229.453500px;}
.y11c{bottom:230.160000px;}
.y20f{bottom:230.958000px;}
.y9a{bottom:231.670500px;}
.y19d{bottom:233.077500px;}
.y122{bottom:236.137500px;}
.y1d6{bottom:236.616000px;}
.y6e{bottom:238.648500px;}
.y241{bottom:240.015000px;}
.y1ed{bottom:241.756500px;}
.y11f{bottom:242.115000px;}
.y3b{bottom:245.961000px;}
.yec{bottom:247.135500px;}
.yc4{bottom:249.586500px;}
.y20e{bottom:250.108500px;}
.y99{bottom:250.903500px;}
.yf{bottom:252.330000px;}
.y11e{bottom:254.070000px;}
.y1d5{bottom:257.508000px;}
.y240{bottom:259.165500px;}
.y6d{bottom:259.540500px;}
.y1ec{bottom:262.647000px;}
.y19c{bottom:265.224000px;}
.yeb{bottom:268.027500px;}
.y20d{bottom:269.259000px;}
.y98{bottom:270.136500px;}
.ye{bottom:270.217500px;}
.yc3{bottom:270.478500px;}
.y3a{bottom:271.335000px;}
.y11b{bottom:273.228000px;}
.y23f{bottom:278.316000px;}
.y1d4{bottom:278.400000px;}
.y6c{bottom:280.432500px;}
.y1eb{bottom:283.539000px;}
.y19b{bottom:284.457000px;}
.y11a{bottom:285.183000px;}
.yd{bottom:288.105000px;}
.y20c{bottom:288.409500px;}
.yea{bottom:288.918000px;}
.yc2{bottom:291.369000px;}
.y78{bottom:292.566000px;}
.y23e{bottom:297.466500px;}
.y1d3{bottom:299.292000px;}
.y19a{bottom:303.690000px;}
.y117{bottom:304.339500px;}
.y1ea{bottom:304.431000px;}
.y6b{bottom:305.806500px;}
.yc{bottom:305.994000px;}
.y20b{bottom:307.560000px;}
.ye9{bottom:309.810000px;}
.yc1{bottom:312.261000px;}
.y114{bottom:316.296000px;}
.y23d{bottom:316.617000px;}
.y1d2{bottom:320.182500px;}
.y115{bottom:322.273500px;}
.y199{bottom:322.923000px;}
.yb{bottom:323.881500px;}
.y1e9{bottom:325.323000px;}
.y20a{bottom:326.710500px;}
.y113{bottom:328.251000px;}
.ye8{bottom:330.702000px;}
.yc0{bottom:333.153000px;}
.y23c{bottom:335.767500px;}
.y116{bottom:340.206000px;}
.y1d1{bottom:341.074500px;}
.y6a{bottom:341.149500px;}
.ya{bottom:341.769000px;}
.y180{bottom:345.351000px;}
.y1e8{bottom:346.213500px;}
.y209{bottom:350.344500px;}
.y39{bottom:350.547000px;}
.ye7{bottom:351.594000px;}
.ybf{bottom:354.043500px;}
.y23b{bottom:354.918000px;}
.y9{bottom:359.658000px;}
.y1d0{bottom:361.966500px;}
.y69{bottom:362.041500px;}
.y156{bottom:365.071147px;}
.y1e7{bottom:367.105500px;}
.y38{bottom:371.439000px;}
.y112{bottom:371.676000px;}
.ye6{bottom:372.484500px;}
.y155{bottom:373.834325px;}
.y23a{bottom:374.070000px;}
.ybe{bottom:374.935500px;}
.y8{bottom:377.545500px;}
.y1cf{bottom:382.857000px;}
.y68{bottom:382.932000px;}
.y1e6{bottom:387.997500px;}
.y208{bottom:389.169000px;}
.y239{bottom:393.220500px;}
.ye5{bottom:393.376500px;}
.y7{bottom:395.433000px;}
.ybd{bottom:395.827500px;}
.y1ce{bottom:403.749000px;}
.y67{bottom:403.824000px;}
.y1e5{bottom:408.888000px;}
.y37{bottom:410.262000px;}
.y238{bottom:412.371000px;}
.ye4{bottom:414.268500px;}
.y111{bottom:416.904000px;}
.y207{bottom:417.633000px;}
.y6{bottom:419.299500px;}
.ybc{bottom:421.201500px;}
.y66{bottom:424.716000px;}
.y1cd{bottom:429.123000px;}
.y1e4{bottom:429.780000px;}
.y110{bottom:431.100000px;}
.y36{bottom:431.154000px;}
.y237{bottom:431.521500px;}
.ye3{bottom:435.159000px;}
.y5{bottom:437.187000px;}
.y10f{bottom:445.297500px;}
.y65{bottom:445.606500px;}
.y206{bottom:446.098500px;}
.y182{bottom:446.150744px;}
.y1a6{bottom:448.924394px;}
.y1e3{bottom:450.672000px;}
.y35{bottom:452.046000px;}
.y4{bottom:455.074500px;}
.ybb{bottom:456.544500px;}
.y181{bottom:456.743595px;}
.y10e{bottom:459.493500px;}
.y1a5{bottom:459.517245px;}
.ye2{bottom:460.534500px;}
.y1cc{bottom:464.751000px;}
.y205{bottom:465.597000px;}
.y64{bottom:466.498500px;}
.y236{bottom:469.822500px;}
.y1e2{bottom:471.562500px;}
.y34{bottom:472.936500px;}
.y3{bottom:472.963500px;}
.yba{bottom:477.435000px;}
.y10d{bottom:479.980500px;}
.y1cb{bottom:483.984000px;}
.y63{bottom:487.390500px;}
.y235{bottom:488.973000px;}
.y1e1{bottom:492.454500px;}
.y33{bottom:493.828500px;}
.y204{bottom:494.062500px;}
.ye1{bottom:495.876000px;}
.y2{bottom:496.828500px;}
.yb9{bottom:498.327000px;}
.y10c{bottom:499.138500px;}
.y1ca{bottom:503.217000px;}
.y10b{bottom:505.116000px;}
.y153{bottom:505.824000px;}
.y234{bottom:508.123500px;}
.y62{bottom:508.281000px;}
.y1e0{bottom:513.346500px;}
.y203{bottom:513.561000px;}
.y1{bottom:514.716000px;}
.y32{bottom:514.720500px;}
.ye0{bottom:516.768000px;}
.yb8{bottom:519.219000px;}
.y1c9{bottom:522.450000px;}
.y152{bottom:526.714500px;}
.y233{bottom:527.274000px;}
.y10a{bottom:530.251500px;}
.y103{bottom:531.178500px;}
.y202{bottom:533.059500px;}
.y61{bottom:533.656500px;}
.y1df{bottom:534.237000px;}
.y31{bottom:535.612500px;}
.yb7{bottom:540.111000px;}
.y107{bottom:542.206500px;}
.y102{bottom:543.133500px;}
.y1a4{bottom:544.879500px;}
.ydf{bottom:545.131500px;}
.y232{bottom:546.424500px;}
.y151{bottom:547.606500px;}
.y106{bottom:548.184000px;}
.y109{bottom:554.161500px;}
.y101{bottom:555.088500px;}
.y1de{bottom:555.129000px;}
.y30{bottom:556.503000px;}
.y60{bottom:558.088500px;}
.yb6{bottom:561.001500px;}
.y201{bottom:561.525000px;}
.y231{bottom:565.575000px;}
.yde{bottom:566.023500px;}
.y108{bottom:566.116500px;}
.y150{bottom:568.498500px;}
.y1dd{bottom:576.021000px;}
.y2f{bottom:577.395000px;}
.y24a{bottom:579.996000px;}
.y200{bottom:581.023500px;}
.y230{bottom:584.725500px;}
.y105{bottom:585.274500px;}
.yb5{bottom:586.377000px;}
.ydd{bottom:586.914000px;}
.y14f{bottom:589.389000px;}
.y5f{bottom:596.913000px;}
.y104{bottom:597.229500px;}
.y2e{bottom:598.287000px;}
.y249{bottom:599.146500px;}
.y1ff{bottom:600.522000px;}
.y22f{bottom:603.876000px;}
.ydc{bottom:607.806000px;}
.y14e{bottom:610.281000px;}
.y100{bottom:616.387500px;}
.y5e{bottom:617.803500px;}
.y248{bottom:618.297000px;}
.y2d{bottom:619.177500px;}
.yb4{bottom:621.718500px;}
.y22e{bottom:623.026500px;}
.yfd{bottom:628.342500px;}
.ydb{bottom:628.698000px;}
.y1fe{bottom:628.987500px;}
.y14d{bottom:631.173000px;}
.yfe{bottom:634.320000px;}
.y5d{bottom:638.695500px;}
.y2c{bottom:640.069500px;}
.yfc{bottom:640.297500px;}
.y22d{bottom:642.177000px;}
.yb3{bottom:642.610500px;}
.y1fd{bottom:648.486000px;}
.yda{bottom:649.590000px;}
.yff{bottom:652.252500px;}
.y14c{bottom:656.547000px;}
.y5c{bottom:659.587500px;}
.y2b{bottom:660.961500px;}
.y22c{bottom:661.327500px;}
.yb2{bottom:663.502500px;}
.y1fc{bottom:667.984500px;}
.y88{bottom:669.554437px;}
.yd9{bottom:670.480500px;}
.y5b{bottom:680.478000px;}
.y2a{bottom:681.852000px;}
.yfb{bottom:683.722500px;}
.yb1{bottom:684.393000px;}
.y1fb{bottom:687.484500px;}
.y14b{bottom:690.183000px;}
.yd8{bottom:691.372500px;}
.y22b{bottom:699.628500px;}
.y87{bottom:701.009221px;}
.y5a{bottom:701.370000px;}
.y29{bottom:702.744000px;}
.y149{bottom:704.379000px;}
.yb0{bottom:705.285000px;}
.y1fa{bottom:706.983000px;}
.y14a{bottom:708.718500px;}
.y148{bottom:718.576500px;}
.y22a{bottom:718.779000px;}
.yd7{bottom:719.736000px;}
.yfa{bottom:720.736500px;}
.y59{bottom:722.262000px;}
.y28{bottom:723.636000px;}
.yaf{bottom:726.177000px;}
.y1f9{bottom:726.481500px;}
.y86{bottom:732.599275px;}
.y147{bottom:732.772500px;}
.y229{bottom:737.929500px;}
.yd6{bottom:740.628000px;}
.yf9{bottom:741.628500px;}
.y58{bottom:743.152500px;}
.y27{bottom:744.526500px;}
.y1f8{bottom:745.980000px;}
.y146{bottom:746.970000px;}
.yae{bottom:747.067500px;}
.y228{bottom:757.081500px;}
.y145{bottom:761.166000px;}
.yd5{bottom:761.518500px;}
.yf8{bottom:762.520500px;}
.y57{bottom:764.044500px;}
.y26{bottom:765.418500px;}
.y17f{bottom:767.100000px;}
.yad{bottom:767.959500px;}
.y85{bottom:771.345112px;}
.y227{bottom:776.232000px;}
.y144{bottom:781.960500px;}
.yd4{bottom:782.410500px;}
.yf7{bottom:783.411000px;}
.y56{bottom:784.936500px;}
.y25{bottom:786.310500px;}
.y17e{bottom:787.992000px;}
.yac{bottom:788.851500px;}
.y226{bottom:795.382500px;}
.y143{bottom:801.426000px;}
.y84{bottom:802.799896px;}
.yd3{bottom:803.302500px;}
.yf6{bottom:804.303000px;}
.y55{bottom:805.827000px;}
.y24{bottom:807.202500px;}
.y142{bottom:807.403500px;}
.y17d{bottom:808.884000px;}
.yab{bottom:809.742000px;}
.y225{bottom:814.533000px;}
.yd2{bottom:824.193000px;}
.yf5{bottom:825.195000px;}
.y54{bottom:826.719000px;}
.y23{bottom:828.093000px;}
.y17c{bottom:829.774500px;}
.yaa{bottom:830.634000px;}
.y141{bottom:832.539000px;}
.y224{bottom:833.683500px;}
.y83{bottom:834.254680px;}
.y140{bottom:838.516500px;}
.yd1{bottom:845.085000px;}
.y1f7{bottom:846.087000px;}
.y53{bottom:847.611000px;}
.yf4{bottom:850.569000px;}
.y17b{bottom:850.666500px;}
.y223{bottom:852.834000px;}
.ya9{bottom:856.009500px;}
.y13f{bottom:863.652000px;}
.y82{bottom:865.844734px;}
.yd0{bottom:865.977000px;}
.y1f6{bottom:866.977500px;}
.y138{bottom:867.129000px;}
.y22{bottom:867.514500px;}
.y52{bottom:868.503000px;}
.y17a{bottom:871.558500px;}
.y222{bottom:871.984500px;}
.y13c{bottom:875.607000px;}
.y137{bottom:879.084000px;}
.y13b{bottom:881.584500px;}
.y21{bottom:883.654500px;}
.y13e{bottom:887.562000px;}
.y1f5{bottom:887.869500px;}
.y20{bottom:887.994000px;}
.y51{bottom:889.393500px;}
.y221{bottom:891.135000px;}
.ya8{bottom:891.351000px;}
.y179{bottom:892.449000px;}
.y81{bottom:897.299518px;}
.y13d{bottom:899.517000px;}
.y1f{bottom:899.793000px;}
.y50{bottom:910.285500px;}
.ya7{bottom:912.243000px;}
.y1f4{bottom:913.243500px;}
.y178{bottom:913.341000px;}
.y1e{bottom:915.933000px;}
.y13a{bottom:918.673500px;}
.ycf{bottom:926.694000px;}
.y80{bottom:928.754302px;}
.y220{bottom:929.436000px;}
.y139{bottom:930.630000px;}
.y4f{bottom:931.177500px;}
.ya6{bottom:933.135000px;}
.y177{bottom:934.233000px;}
.y1d{bottom:936.412500px;}
.y77{bottom:947.584500px;}
.y21f{bottom:948.586500px;}
.y136{bottom:949.786500px;}
.y4e{bottom:952.068000px;}
.ya5{bottom:954.025500px;}
.y176{bottom:955.125000px;}
.y7f{bottom:960.344356px;}
.y21e{bottom:967.737000px;}
.y76{bottom:968.476500px;}
.y135{bottom:968.944500px;}
.y4d{bottom:972.960000px;}
.ya4{bottom:974.917500px;}
.y134{bottom:974.922000px;}
.y175{bottom:976.015500px;}
.y1c{bottom:980.490000px;}
.y21d{bottom:986.887500px;}
.y75{bottom:989.368500px;}
.y7e{bottom:991.799140px;}
.y4c{bottom:993.852000px;}
.ya3{bottom:995.809500px;}
.y12d{bottom:996.361500px;}
.y174{bottom:996.907500px;}
.y131{bottom:1000.057500px;}
.y1b{bottom:1001.382000px;}
.y133{bottom:1006.035000px;}
.y21c{bottom:1006.038000px;}
.y12c{bottom:1008.316500px;}
.yce{bottom:1010.260500px;}
.y130{bottom:1012.012500px;}
.y4b{bottom:1014.742500px;}
.ya2{bottom:1016.700000px;}
.y173{bottom:1017.799500px;}
.y132{bottom:1017.990000px;}
.y7d{bottom:1023.253924px;}
.y21b{bottom:1025.188500px;}
.ycd{bottom:1031.151000px;}
.y4a{bottom:1035.634500px;}
.ya1{bottom:1037.592000px;}
.y172{bottom:1038.690000px;}
.y1a{bottom:1040.206500px;}
.y12f{bottom:1043.125500px;}
.y21a{bottom:1044.339000px;}
.ycc{bottom:1052.043000px;}
.y7c{bottom:1054.843978px;}
.y12e{bottom:1055.080500px;}
.y49{bottom:1056.526500px;}
.y171{bottom:1059.582000px;}
.ya0{bottom:1062.967500px;}
.y219{bottom:1063.489500px;}
.y19{bottom:1071.543000px;}
.ycb{bottom:1072.935000px;}
.y12b{bottom:1074.237000px;}
.y48{bottom:1077.417000px;}
.y218{bottom:1082.640000px;}
.y170{bottom:1084.956000px;}
.y128{bottom:1086.193500px;}
.y129{bottom:1092.171000px;}
.yca{bottom:1093.825500px;}
.y127{bottom:1098.148500px;}
.y47{bottom:1098.309000px;}
.y217{bottom:1101.790500px;}
.y18{bottom:1102.881000px;}
.y12a{bottom:1110.103500px;}
.yc9{bottom:1114.717500px;}
.y46{bottom:1119.201000px;}
.y216{bottom:1120.941000px;}
.y16f{bottom:1122.340500px;}
.y7a{bottom:1139.083628px;}
.y45{bottom:1140.091500px;}
.y126{bottom:1141.573500px;}
.y79{bottom:1153.528425px;}
.y44{bottom:1200.196500px;}
.h28{height:27.974981px;}
.h13{height:30.252344px;}
.hc{height:31.526842px;}
.h7{height:32.565965px;}
.h2{height:37.993262px;}
.h20{height:39.375664px;}
.h17{height:39.434227px;}
.h1d{height:40.294480px;}
.h1a{height:41.100122px;}
.ha{height:41.482876px;}
.h8{height:43.421105px;}
.h3{height:43.815515px;}
.h1f{height:45.444902px;}
.h25{height:47.596957px;}
.h22{height:48.707613px;}
.h12{height:48.848947px;}
.h1b{height:49.923965px;}
.h1e{height:50.595325px;}
.hb{height:51.861658px;}
.h14{height:54.162344px;}
.h9{height:54.276245px;}
.h5{height:54.541601px;}
.h6{height:54.547601px;}
.h24{height:54.933398px;}
.h27{height:58.317188px;}
.h23{height:61.159184px;}
.h16{height:61.903262px;}
.h19{height:61.909262px;}
.h11{height:64.904941px;}
.he{height:66.419473px;}
.h10{height:74.909180px;}
.h4{height:77.792486px;}
.hf{height:83.398887px;}
.h15{height:85.813262px;}
.h18{height:85.819262px;}
.h1c{height:329.991480px;}
.h21{height:398.196150px;}
.h26{height:404.438100px;}
.hd{height:633.809250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:401.726325px;}
.w4{width:484.911900px;}
.w5{width:493.929150px;}
.w2{width:501.369750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x46{left:-292.664250px;}
.xad{left:-215.313450px;}
.xa5{left:-212.538150px;}
.x9a{left:-176.401680px;}
.x0{left:0.000000px;}
.x9b{left:1.567020px;}
.xa6{left:2.588850px;}
.x9c{left:30.558793px;}
.xaf{left:34.859550px;}
.xa7{left:37.633850px;}
.x47{left:48.479927px;}
.x1{left:53.574000px;}
.x82{left:64.045500px;}
.x81{left:66.702000px;}
.x90{left:68.286000px;}
.x80{left:72.267000px;}
.x91{left:73.413000px;}
.xc9{left:85.848000px;}
.x8e{left:123.096000px;}
.x86{left:125.076000px;}
.x84{left:126.577500px;}
.x83{left:129.076500px;}
.x94{left:141.792000px;}
.x7b{left:186.067500px;}
.x7a{left:196.450500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x45{left:250.591500px;}
.xd{left:254.173500px;}
.x7c{left:256.434000px;}
.x87{left:258.609000px;}
.x3{left:269.914500px;}
.x13{left:281.479500px;}
.x4a{left:285.465000px;}
.x55{left:286.974000px;}
.x96{left:288.318000px;}
.x56{left:294.447000px;}
.x7{left:296.538000px;}
.x57{left:298.219500px;}
.x58{left:299.430000px;}
.x5{left:301.072500px;}
.x4e{left:302.287500px;}
.x21{left:304.936500px;}
.x79{left:310.636500px;}
.x22{left:312.409500px;}
.x7d{left:313.837500px;}
.x6{left:317.614500px;}
.x25{left:324.637500px;}
.x37{left:326.182500px;}
.x26{left:332.110500px;}
.x38{left:333.654000px;}
.xbb{left:335.485500px;}
.xf{left:338.970000px;}
.x77{left:344.452500px;}
.x95{left:350.305500px;}
.xbc{left:354.217500px;}
.x10{left:356.022000px;}
.x78{left:360.985500px;}
.xc4{left:363.502500px;}
.xbd{left:369.162000px;}
.x9{left:376.351500px;}
.xc5{left:378.447000px;}
.x63{left:383.464500px;}
.x7e{left:386.926500px;}
.xa{left:392.602500px;}
.x97{left:399.415500px;}
.x3e{left:404.049000px;}
.x18{left:410.794500px;}
.x29{left:414.444000px;}
.x19{left:418.267500px;}
.x3f{left:419.911500px;}
.x2a{left:421.915500px;}
.x2b{left:425.725500px;}
.xe{left:431.109000px;}
.x11{left:433.824000px;}
.x1b{left:435.346500px;}
.x39{left:437.025000px;}
.x4b{left:438.546000px;}
.x2c{left:440.670000px;}
.x1c{left:442.818000px;}
.x1d{left:446.539500px;}
.xa4{left:447.687000px;}
.x4c{left:449.829000px;}
.x12{left:450.876000px;}
.x1e{left:454.011000px;}
.x76{left:458.421000px;}
.xbe{left:461.620500px;}
.x4d{left:464.773500px;}
.x7f{left:466.098000px;}
.xb{left:468.004500px;}
.x8{left:473.473500px;}
.xbf{left:476.563500px;}
.x5d{left:482.247000px;}
.xc{left:484.255500px;}
.x5e{left:486.058500px;}
.xae{left:490.754768px;}
.x1f{left:493.755000px;}
.x23{left:496.654500px;}
.x48{left:500.184783px;}
.x20{left:501.228000px;}
.x24{left:504.127500px;}
.xc2{left:508.458000px;}
.x72{left:516.108000px;}
.x6c{left:520.167000px;}
.xc3{left:523.402500px;}
.xc7{left:526.648500px;}
.x6d{left:535.110000px;}
.x59{left:538.063500px;}
.x61{left:540.645000px;}
.xc8{left:542.823000px;}
.x31{left:546.400500px;}
.x32{left:553.873500px;}
.x62{left:555.589500px;}
.x33{left:557.683500px;}
.xab{left:562.831500px;}
.x34{left:565.155000px;}
.xc0{left:566.998500px;}
.x5a{left:571.699500px;}
.xc1{left:576.838500px;}
.xb4{left:578.656500px;}
.xac{left:582.451500px;}
.xb5{left:586.129500px;}
.x73{left:587.389500px;}
.xb6{left:589.831500px;}
.xb1{left:593.065500px;}
.x74{left:594.793500px;}
.x3c{left:600.093000px;}
.xb2{left:604.222500px;}
.xa0{left:606.670500px;}
.xb7{left:608.478000px;}
.x75{left:609.738000px;}
.x3d{left:615.435000px;}
.xb3{left:619.165500px;}
.xa1{left:622.320000px;}
.xb8{left:623.421000px;}
.x35{left:630.472500px;}
.x5f{left:637.023000px;}
.x6e{left:638.457000px;}
.x60{left:644.496000px;}
.x36{left:647.821500px;}
.x6f{left:653.400000px;}
.x89{left:667.465500px;}
.x8a{left:669.960000px;}
.x88{left:671.352000px;}
.x85{left:674.145000px;}
.xb0{left:677.643000px;}
.x4f{left:680.688000px;}
.x64{left:683.035500px;}
.x8b{left:685.965000px;}
.x70{left:688.480500px;}
.x65{left:690.507000px;}
.xa2{left:693.429000px;}
.x50{left:695.632500px;}
.x51{left:699.444000px;}
.xc6{left:703.078500px;}
.x71{left:704.520000px;}
.x9d{left:706.570500px;}
.x14{left:708.033000px;}
.xa3{left:709.077000px;}
.xaa{left:710.568000px;}
.x1a{left:712.644000px;}
.x52{left:714.387000px;}
.x15{left:715.506000px;}
.x16{left:719.316000px;}
.x2d{left:723.378000px;}
.x17{left:726.787500px;}
.x53{left:728.866500px;}
.x40{left:731.151000px;}
.x41{left:734.812500px;}
.x2e{left:738.322500px;}
.x2f{left:742.134000px;}
.x54{left:743.811000px;}
.x42{left:749.757000px;}
.x49{left:751.128000px;}
.x43{left:753.418500px;}
.x8f{left:754.495500px;}
.x66{left:755.562000px;}
.x30{left:757.077000px;}
.x8c{left:759.270000px;}
.x67{left:763.033500px;}
.x92{left:764.881500px;}
.x68{left:766.780500px;}
.x44{left:768.361500px;}
.x93{left:770.688000px;}
.x9e{left:774.484500px;}
.x8d{left:777.738000px;}
.x69{left:781.725000px;}
.x6a{left:785.472000px;}
.xa8{left:786.517500px;}
.x98{left:787.726500px;}
.x5b{left:791.811000px;}
.x6b{left:800.416500px;}
.xa9{left:802.540500px;}
.x99{left:804.616500px;}
.x5c{left:806.754000px;}
.xb9{left:813.886500px;}
.x3a{left:819.514500px;}
.xba{left:821.359500px;}
.x27{left:825.213000px;}
.x3b{left:826.321500px;}
.x28{left:832.686000px;}
.x9f{left:835.531500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v6{vertical-align:-1.088000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.498667pt;}
.v8{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.253333pt;}
.v5{vertical-align:42.506667pt;}
.ls98{letter-spacing:-0.252771pt;}
.ls96{letter-spacing:-0.241014pt;}
.ls24{letter-spacing:-0.200400pt;}
.ls31{letter-spacing:-0.176352pt;}
.ls26{letter-spacing:-0.168336pt;}
.ls92{letter-spacing:-0.158717pt;}
.ls27{letter-spacing:-0.152304pt;}
.ls91{letter-spacing:-0.146960pt;}
.ls9a{letter-spacing:-0.141082pt;}
.ls67{letter-spacing:-0.136165pt;}
.ls90{letter-spacing:-0.135203pt;}
.ls9b{letter-spacing:-0.129325pt;}
.ls25{letter-spacing:-0.128256pt;}
.ls68{letter-spacing:-0.121576pt;}
.ls2a{letter-spacing:-0.120240pt;}
.ls2c{letter-spacing:-0.112224pt;}
.lsaf{letter-spacing:-0.111690pt;}
.ls6c{letter-spacing:-0.106987pt;}
.ls8c{letter-spacing:-0.105811pt;}
.ls30{letter-spacing:-0.104208pt;}
.ls94{letter-spacing:-0.099933pt;}
.lsb0{letter-spacing:-0.094054pt;}
.ls2f{letter-spacing:-0.086400pt;}
.lsac{letter-spacing:-0.082298pt;}
.lsaa{letter-spacing:-0.076419pt;}
.ls69{letter-spacing:-0.072946pt;}
.ls2b{letter-spacing:-0.072144pt;}
.lsab{letter-spacing:-0.064662pt;}
.lsa6{letter-spacing:-0.058784pt;}
.ls29{letter-spacing:-0.056112pt;}
.lsa9{letter-spacing:-0.052906pt;}
.lsa7{letter-spacing:-0.047027pt;}
.ls8e{letter-spacing:-0.041149pt;}
.ls32{letter-spacing:-0.040080pt;}
.ls8a{letter-spacing:-0.036960pt;}
.ls97{letter-spacing:-0.035270pt;}
.ls93{letter-spacing:-0.029392pt;}
.ls6a{letter-spacing:-0.029178pt;}
.ls2d{letter-spacing:-0.028800pt;}
.ls61{letter-spacing:-0.026208pt;}
.ls65{letter-spacing:-0.024315pt;}
.ls28{letter-spacing:-0.024048pt;}
.ls95{letter-spacing:-0.023514pt;}
.ls89{letter-spacing:-0.021120pt;}
.ls6d{letter-spacing:-0.019452pt;}
.ls8b{letter-spacing:-0.017635pt;}
.ls60{letter-spacing:-0.017472pt;}
.ls63{letter-spacing:-0.014589pt;}
.ls99{letter-spacing:-0.011757pt;}
.ls2e{letter-spacing:-0.007200pt;}
.lsa8{letter-spacing:-0.005878pt;}
.ls62{letter-spacing:-0.004863pt;}
.lsc{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.003873pt;}
.ls4c{letter-spacing:0.004368pt;}
.ls71{letter-spacing:0.004682pt;}
.ls7a{letter-spacing:0.005280pt;}
.lsa3{letter-spacing:0.005878pt;}
.lse{letter-spacing:0.006384pt;}
.ls1e{letter-spacing:0.007200pt;}
.ls59{letter-spacing:0.009726pt;}
.ls78{letter-spacing:0.010560pt;}
.ls82{letter-spacing:0.011757pt;}
.ls4d{letter-spacing:0.013104pt;}
.ls7b{letter-spacing:0.015840pt;}
.ls16{letter-spacing:0.016032pt;}
.ls4a{letter-spacing:0.017472pt;}
.lsa0{letter-spacing:0.017635pt;}
.ls5c{letter-spacing:0.019452pt;}
.ls9e{letter-spacing:0.021120pt;}
.lsa5{letter-spacing:0.023514pt;}
.ls12{letter-spacing:0.024048pt;}
.ls54{letter-spacing:0.024315pt;}
.ls53{letter-spacing:0.029178pt;}
.ls86{letter-spacing:0.029392pt;}
.ls47{letter-spacing:0.030576pt;}
.ls57{letter-spacing:0.034041pt;}
.ls45{letter-spacing:0.034857pt;}
.ls48{letter-spacing:0.034944pt;}
.ls80{letter-spacing:0.035270pt;}
.ls75{letter-spacing:0.036960pt;}
.ls5b{letter-spacing:0.038904pt;}
.ls15{letter-spacing:0.040080pt;}
.lsa4{letter-spacing:0.041149pt;}
.ls73{letter-spacing:0.042134pt;}
.ls76{letter-spacing:0.042240pt;}
.ls4f{letter-spacing:0.043680pt;}
.ls51{letter-spacing:0.043767pt;}
.ls84{letter-spacing:0.047027pt;}
.ls23{letter-spacing:0.048096pt;}
.ls4b{letter-spacing:0.052416pt;}
.ls7e{letter-spacing:0.052906pt;}
.ls5a{letter-spacing:0.053493pt;}
.ls20{letter-spacing:0.056112pt;}
.ls10{letter-spacing:0.057456pt;}
.ls6b{letter-spacing:0.058356pt;}
.ls9f{letter-spacing:0.058784pt;}
.ls49{letter-spacing:0.061152pt;}
.ls50{letter-spacing:0.063220pt;}
.ls79{letter-spacing:0.063360pt;}
.ls14{letter-spacing:0.064128pt;}
.ls85{letter-spacing:0.064662pt;}
.ls7d{letter-spacing:0.070541pt;}
.ls1c{letter-spacing:0.072000pt;}
.ls13{letter-spacing:0.072144pt;}
.ls5e{letter-spacing:0.072946pt;}
.ls77{letter-spacing:0.073920pt;}
.ls4e{letter-spacing:0.074256pt;}
.lsa1{letter-spacing:0.076419pt;}
.ls1f{letter-spacing:0.080160pt;}
.ls52{letter-spacing:0.082672pt;}
.ls88{letter-spacing:0.088176pt;}
.ls7c{letter-spacing:0.089760pt;}
.ls5d{letter-spacing:0.092398pt;}
.ls7f{letter-spacing:0.099933pt;}
.ls87{letter-spacing:0.111690pt;}
.ls22{letter-spacing:0.112224pt;}
.ls64{letter-spacing:0.116713pt;}
.ls1d{letter-spacing:0.122400pt;}
.lsa2{letter-spacing:0.129325pt;}
.ls66{letter-spacing:0.131302pt;}
.ls46{letter-spacing:0.135554pt;}
.ls8d{letter-spacing:0.141082pt;}
.ls1b{letter-spacing:0.144288pt;}
.ls55{letter-spacing:0.145891pt;}
.ls44{letter-spacing:0.147172pt;}
.ls18{letter-spacing:0.152304pt;}
.ls8f{letter-spacing:0.158717pt;}
.ls74{letter-spacing:0.163856pt;}
.ls21{letter-spacing:0.168336pt;}
.ls9d{letter-spacing:0.168538pt;}
.ls81{letter-spacing:0.176352pt;}
.ls72{letter-spacing:0.177901pt;}
.ls19{letter-spacing:0.184368pt;}
.ls11{letter-spacing:0.223440pt;}
.ls5f{letter-spacing:0.239104pt;}
.ls17{letter-spacing:0.240480pt;}
.lsf{letter-spacing:0.242592pt;}
.lsad{letter-spacing:0.370339pt;}
.ls56{letter-spacing:1.235212pt;}
.ls58{letter-spacing:2.402342pt;}
.ls1{letter-spacing:2.665203pt;}
.lsae{letter-spacing:5.366979pt;}
.ls83{letter-spacing:5.719683pt;}
.ls0{letter-spacing:9.406130pt;}
.lsb{letter-spacing:10.626533pt;}
.lsb8{letter-spacing:11.772370pt;}
.lsb7{letter-spacing:11.783362pt;}
.lsb1{letter-spacing:11.954133pt;}
.lsb6{letter-spacing:11.959467pt;}
.lsb4{letter-spacing:11.977933pt;}
.lsb9{letter-spacing:12.033916pt;}
.lsb2{letter-spacing:12.061027pt;}
.ls6e{letter-spacing:12.186808pt;}
.lsb3{letter-spacing:12.234888pt;}
.lsbb{letter-spacing:12.436957pt;}
.ls34{letter-spacing:13.059628pt;}
.ls42{letter-spacing:13.283733pt;}
.ls6f{letter-spacing:13.310154pt;}
.ls33{letter-spacing:13.359864pt;}
.ls40{letter-spacing:13.681067pt;}
.ls7{letter-spacing:13.804308pt;}
.lsd{letter-spacing:13.917762pt;}
.ls4{letter-spacing:13.923096pt;}
.ls35{letter-spacing:13.945067pt;}
.ls70{letter-spacing:13.946682pt;}
.ls36{letter-spacing:13.950400pt;}
.lsb5{letter-spacing:15.072251pt;}
.lsba{letter-spacing:15.365061pt;}
.ls41{letter-spacing:16.031759pt;}
.lsa{letter-spacing:16.596465pt;}
.ls6{letter-spacing:18.180779pt;}
.ls9{letter-spacing:18.588622pt;}
.ls5{letter-spacing:19.474703pt;}
.ls8{letter-spacing:19.976664pt;}
.ls9c{letter-spacing:25.548099pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls3d{letter-spacing:105.372533pt;}
.ls3c{letter-spacing:116.636533pt;}
.ls1a{letter-spacing:120.753024pt;}
.ls38{letter-spacing:122.145867pt;}
.ls39{letter-spacing:143.265867pt;}
.ls3b{letter-spacing:147.105867pt;}
.ls3a{letter-spacing:152.871200pt;}
.ls37{letter-spacing:155.056533pt;}
.ls3e{letter-spacing:174.236533pt;}
.ls3f{letter-spacing:223.905867pt;}
.ws4b{word-spacing:-80.160000pt;}
.ws104{word-spacing:-58.784000pt;}
.ws103{word-spacing:-52.800000pt;}
.wsbf{word-spacing:-48.630400pt;}
.wsbe{word-spacing:-43.680000pt;}
.ws48{word-spacing:-16.202592pt;}
.ws49{word-spacing:-15.960000pt;}
.ws145{word-spacing:-14.772419pt;}
.ws146{word-spacing:-14.731270pt;}
.ws105{word-spacing:-14.696000pt;}
.ws14{word-spacing:-13.283467pt;}
.wsb{word-spacing:-12.760670pt;}
.wsc0{word-spacing:-12.157600pt;}
.wsc2{word-spacing:-12.143011pt;}
.ws18a{word-spacing:-11.955200pt;}
.ws100{word-spacing:-11.881901pt;}
.ws101{word-spacing:-11.704000pt;}
.ws31{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.wsbb{word-spacing:-9.829572pt;}
.wsbc{word-spacing:-9.682400pt;}
.ws4{word-spacing:-9.298400pt;}
.ws57{word-spacing:-4.272528pt;}
.ws58{word-spacing:-4.264512pt;}
.ws176{word-spacing:-3.115552pt;}
.wsfb{word-spacing:-2.709827pt;}
.ws90{word-spacing:-2.656693pt;}
.ws14b{word-spacing:-2.603559pt;}
.ws3c{word-spacing:-2.284756pt;}
.ws64{word-spacing:-2.252496pt;}
.wsf4{word-spacing:-2.236998pt;}
.ws46{word-spacing:-2.231622pt;}
.ws12a{word-spacing:-2.227914pt;}
.wsf3{word-spacing:-2.149464pt;}
.ws143{word-spacing:-2.072221pt;}
.ws14c{word-spacing:-2.019087pt;}
.ws158{word-spacing:-1.975142pt;}
.ws9a{word-spacing:-1.912819pt;}
.ws157{word-spacing:-1.892845pt;}
.ws12b{word-spacing:-1.863453pt;}
.wsfc{word-spacing:-1.806551pt;}
.ws11f{word-spacing:-1.704736pt;}
.ws94{word-spacing:-1.700284pt;}
.ws11d{word-spacing:-1.669466pt;}
.ws11e{word-spacing:-1.651830pt;}
.ws47{word-spacing:-1.647150pt;}
.wsdb{word-spacing:-1.410282pt;}
.wsd9{word-spacing:-1.381103pt;}
.ws7f{word-spacing:-1.370736pt;}
.wsda{word-spacing:-1.366514pt;}
.ws79{word-spacing:-1.338672pt;}
.wsf9{word-spacing:-1.328347pt;}
.ws161{word-spacing:-1.293248pt;}
.ws193{word-spacing:-1.291162pt;}
.ws162{word-spacing:-1.275613pt;}
.ws45{word-spacing:-1.275213pt;}
.ws163{word-spacing:-1.240342pt;}
.ws43{word-spacing:-1.222079pt;}
.ws7a{word-spacing:-1.194384pt;}
.ws141{word-spacing:-1.168945pt;}
.wsfd{word-spacing:-1.115811pt;}
.wsed{word-spacing:-1.065006pt;}
.ws172{word-spacing:-1.034598pt;}
.ws2e{word-spacing:-1.009543pt;}
.ws110{word-spacing:-0.955680pt;}
.ws9b{word-spacing:-0.903276pt;}
.ws56{word-spacing:-0.865728pt;}
.ws148{word-spacing:-0.850142pt;}
.ws1b1{word-spacing:-0.812954pt;}
.wse4{word-spacing:-0.812128pt;}
.wscc{word-spacing:-0.790608pt;}
.wse3{word-spacing:-0.787812pt;}
.wsec{word-spacing:-0.729456pt;}
.ws1ae{word-spacing:-0.717312pt;}
.ws14e{word-spacing:-0.690740pt;}
.ws179{word-spacing:-0.640746pt;}
.ws14d{word-spacing:-0.637606pt;}
.ws186{word-spacing:-0.621670pt;}
.ws69{word-spacing:-0.601200pt;}
.ws17d{word-spacing:-0.584473pt;}
.ws10f{word-spacing:-0.570240pt;}
.ws10e{word-spacing:-0.564960pt;}
.ws7b{word-spacing:-0.529056pt;}
.ws10d{word-spacing:-0.506880pt;}
.ws74{word-spacing:-0.472944pt;}
.wscb{word-spacing:-0.471744pt;}
.wsca{word-spacing:-0.467376pt;}
.ws73{word-spacing:-0.440880pt;}
.wsc9{word-spacing:-0.419328pt;}
.ws13d{word-spacing:-0.376218pt;}
.ws3a{word-spacing:-0.371937pt;}
.wsf7{word-spacing:-0.364728pt;}
.ws53{word-spacing:-0.363888pt;}
.ws1c{word-spacing:-0.318803pt;}
.wsf6{word-spacing:-0.311235pt;}
.ws68{word-spacing:-0.304608pt;}
.ws120{word-spacing:-0.299798pt;}
.ws1a4{word-spacing:-0.286925pt;}
.ws10a{word-spacing:-0.266851pt;}
.ws92{word-spacing:-0.265669pt;}
.ws96{word-spacing:-0.231247pt;}
.wsc6{word-spacing:-0.220759pt;}
.ws36{word-spacing:-0.212535pt;}
.ws1a2{word-spacing:-0.191283pt;}
.ws54{word-spacing:-0.178752pt;}
.wsac{word-spacing:-0.170029pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws121{word-spacing:-0.158717pt;}
.wsc4{word-spacing:-0.143462pt;}
.ws10b{word-spacing:-0.131085pt;}
.ws52{word-spacing:-0.127680pt;}
.wsc7{word-spacing:-0.108443pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws1a6{word-spacing:-0.095642pt;}
.ws109{word-spacing:-0.093632pt;}
.ws4a{word-spacing:-0.080160pt;}
.wsc5{word-spacing:-0.077459pt;}
.ws4c{word-spacing:-0.072000pt;}
.ws125{word-spacing:-0.070541pt;}
.ws106{word-spacing:-0.058784pt;}
.wse2{word-spacing:-0.058356pt;}
.ws19{word-spacing:-0.053134pt;}
.ws102{word-spacing:-0.052800pt;}
.wsc1{word-spacing:-0.048630pt;}
.ws188{word-spacing:-0.047821pt;}
.wsbd{word-spacing:-0.043680pt;}
.ws32{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws67{word-spacing:-0.024048pt;}
.wsa2{word-spacing:-0.007148pt;}
.wsff{word-spacing:-0.000800pt;}
.ws8{word-spacing:-0.000444pt;}
.ws0{word-spacing:0.000000pt;}
.ws144{word-spacing:0.004533pt;}
.ws7c{word-spacing:0.008016pt;}
.wsd6{word-spacing:0.009726pt;}
.ws11a{word-spacing:0.011757pt;}
.ws138{word-spacing:0.023514pt;}
.wsd7{word-spacing:0.029178pt;}
.ws11b{word-spacing:0.035270pt;}
.ws126{word-spacing:0.041149pt;}
.ws107{word-spacing:0.047821pt;}
.ws2f{word-spacing:0.053134pt;}
.ws175{word-spacing:0.070541pt;}
.wsaa{word-spacing:0.074387pt;}
.ws169{word-spacing:0.076419pt;}
.wsd8{word-spacing:0.077809pt;}
.wse{word-spacing:0.085014pt;}
.ws11c{word-spacing:0.088176pt;}
.ws18b{word-spacing:0.095642pt;}
.wsd5{word-spacing:0.100464pt;}
.ws1b{word-spacing:0.106268pt;}
.ws119{word-spacing:0.110880pt;}
.ws6{word-spacing:0.111581pt;}
.ws13c{word-spacing:0.117568pt;}
.ws5a{word-spacing:0.120240pt;}
.ws16a{word-spacing:0.123446pt;}
.ws147{word-spacing:0.143462pt;}
.wsd4{word-spacing:0.144144pt;}
.ws44{word-spacing:0.159402pt;}
.ws72{word-spacing:0.165600pt;}
.wsd{word-spacing:0.170029pt;}
.ws118{word-spacing:0.174240pt;}
.ws65{word-spacing:0.176352pt;}
.wsf8{word-spacing:0.179932pt;}
.ws185{word-spacing:0.191283pt;}
.ws6a{word-spacing:0.192384pt;}
.ws28{word-spacing:0.212535pt;}
.ws13e{word-spacing:0.217501pt;}
.ws165{word-spacing:0.229258pt;}
.ws6b{word-spacing:0.232464pt;}
.ws164{word-spacing:0.235136pt;}
.ws184{word-spacing:0.239104pt;}
.ws66{word-spacing:0.240480pt;}
.ws37{word-spacing:0.265669pt;}
.ws190{word-spacing:0.286925pt;}
.ws98{word-spacing:0.318803pt;}
.wsb4{word-spacing:0.332678pt;}
.wsb3{word-spacing:0.333333pt;}
.ws1b7{word-spacing:0.334746pt;}
.ws99{word-spacing:0.371937pt;}
.ws18d{word-spacing:0.430387pt;}
.wsb9{word-spacing:0.478205pt;}
.wsb8{word-spacing:0.508311pt;}
.ws22{word-spacing:0.531339pt;}
.wseb{word-spacing:0.603017pt;}
.ws1b6{word-spacing:0.621670pt;}
.ws21{word-spacing:0.661659pt;}
.wse9{word-spacing:0.671100pt;}
.ws23{word-spacing:0.715854pt;}
.ws12e{word-spacing:0.728922pt;}
.ws4d{word-spacing:0.765133pt;}
.ws12c{word-spacing:0.811219pt;}
.ws168{word-spacing:0.840611pt;}
.ws83{word-spacing:0.850142pt;}
.ws93{word-spacing:0.903276pt;}
.wsea{word-spacing:0.972608pt;}
.ws2d{word-spacing:1.009543pt;}
.ws88{word-spacing:1.115811pt;}
.wsdd{word-spacing:1.171993pt;}
.ws12d{word-spacing:1.175680pt;}
.ws113{word-spacing:1.188000pt;}
.wsf5{word-spacing:1.215760pt;}
.wsab{word-spacing:1.275216pt;}
.ws9d{word-spacing:1.328347pt;}
.wse6{word-spacing:1.371377pt;}
.ws89{word-spacing:1.381481pt;}
.ws18{word-spacing:1.434614pt;}
.wse5{word-spacing:1.463775pt;}
.wsf0{word-spacing:1.468638pt;}
.ws1b3{word-spacing:1.482445pt;}
.ws9c{word-spacing:1.487748pt;}
.ws136{word-spacing:1.493114pt;}
.wsdc{word-spacing:1.502679pt;}
.ws137{word-spacing:1.504870pt;}
.ws13a{word-spacing:1.516627pt;}
.wsf1{word-spacing:1.517268pt;}
.ws1d{word-spacing:1.530998pt;}
.ws1e{word-spacing:1.540882pt;}
.ws112{word-spacing:1.573440pt;}
.ws130{word-spacing:1.593046pt;}
.ws81{word-spacing:1.594016pt;}
.ws111{word-spacing:1.620960pt;}
.ws139{word-spacing:1.634195pt;}
.ws181{word-spacing:1.647150pt;}
.ws5f{word-spacing:1.691376pt;}
.ws95{word-spacing:1.700284pt;}
.ws12f{word-spacing:1.787034pt;}
.ws34{word-spacing:1.806551pt;}
.ws10{word-spacing:1.859685pt;}
.ws131{word-spacing:1.869331pt;}
.wsfa{word-spacing:1.912819pt;}
.ws91{word-spacing:1.965953pt;}
.ws60{word-spacing:1.995984pt;}
.ws19a{word-spacing:2.008474pt;}
.wsb7{word-spacing:2.019087pt;}
.ws5e{word-spacing:2.020032pt;}
.wscf{word-spacing:2.149056pt;}
.ws16c{word-spacing:2.157373pt;}
.ws13b{word-spacing:2.169130pt;}
.ws87{word-spacing:2.178489pt;}
.ws61{word-spacing:2.204400pt;}
.ws7{word-spacing:2.231335pt;}
.wsfe{word-spacing:2.231622pt;}
.ws5d{word-spacing:2.236464pt;}
.ws155{word-spacing:2.257306pt;}
.ws33{word-spacing:2.284756pt;}
.wsde{word-spacing:2.285629pt;}
.ws1af{word-spacing:2.295398pt;}
.ws154{word-spacing:2.304333pt;}
.ws9f{word-spacing:2.337890pt;}
.wse1{word-spacing:2.358574pt;}
.wsf2{word-spacing:2.363437pt;}
.wse0{word-spacing:2.368300pt;}
.ws2{word-spacing:2.389168pt;}
.ws17{word-spacing:2.391024pt;}
.wsdf{word-spacing:2.426657pt;}
.ws196{word-spacing:2.438861pt;}
.ws8a{word-spacing:2.444158pt;}
.wsce{word-spacing:2.459184pt;}
.ws14a{word-spacing:2.497292pt;}
.wscd{word-spacing:2.502864pt;}
.ws171{word-spacing:2.521834pt;}
.ws11{word-spacing:2.550426pt;}
.ws86{word-spacing:2.603559pt;}
.ws17b{word-spacing:2.645280pt;}
.ws17a{word-spacing:2.662915pt;}
.ws1b0{word-spacing:2.677965pt;}
.wsba{word-spacing:2.709827pt;}
.ws2c{word-spacing:2.762961pt;}
.ws187{word-spacing:2.817587pt;}
.ws1a5{word-spacing:2.866227pt;}
.ws19d{word-spacing:2.867413pt;}
.ws41{word-spacing:2.869229pt;}
.ws198{word-spacing:2.869248pt;}
.wsa0{word-spacing:2.922363pt;}
.wsb5{word-spacing:2.946539pt;}
.ws77{word-spacing:2.981952pt;}
.ws29{word-spacing:3.064419pt;}
.ws189{word-spacing:3.108352pt;}
.ws3d{word-spacing:3.134898pt;}
.ws78{word-spacing:3.174336pt;}
.ws170{word-spacing:3.186093pt;}
.ws8f{word-spacing:3.241166pt;}
.ws1b2{word-spacing:3.251814pt;}
.ws15e{word-spacing:3.280147pt;}
.ws16f{word-spacing:3.286026pt;}
.ws26{word-spacing:3.294300pt;}
.ws160{word-spacing:3.321296pt;}
.ws15f{word-spacing:3.333053pt;}
.ws14f{word-spacing:3.347434pt;}
.ws1a{word-spacing:3.363333pt;}
.ws84{word-spacing:3.453701pt;}
.ws80{word-spacing:3.613103pt;}
.wsb6{word-spacing:3.666237pt;}
.ws40{word-spacing:3.719371pt;}
.wsa1{word-spacing:3.772505pt;}
.ws97{word-spacing:3.825638pt;}
.ws2b{word-spacing:3.825664pt;}
.ws3e{word-spacing:3.878772pt;}
.ws85{word-spacing:3.985040pt;}
.ws15{word-spacing:4.038174pt;}
.ws18c{word-spacing:4.064768pt;}
.ws9e{word-spacing:4.144442pt;}
.ws17e{word-spacing:4.197575pt;}
.ws27{word-spacing:4.203435pt;}
.ws17c{word-spacing:4.303843pt;}
.ws12{word-spacing:4.356977pt;}
.ws35{word-spacing:4.410111pt;}
.ws16{word-spacing:4.463245pt;}
.ws3f{word-spacing:4.516379pt;}
.ws108{word-spacing:4.569513pt;}
.ws134{word-spacing:4.696842pt;}
.ws132{word-spacing:4.761504pt;}
.ws51{word-spacing:4.835182pt;}
.ws59{word-spacing:4.881744pt;}
.ws20{word-spacing:4.888316pt;}
.ws133{word-spacing:4.902586pt;}
.ws135{word-spacing:4.914342pt;}
.ws159{word-spacing:4.955491pt;}
.ws8e{word-spacing:4.994583pt;}
.ws15a{word-spacing:5.020154pt;}
.ws152{word-spacing:5.089920pt;}
.ws39{word-spacing:5.100851pt;}
.ws25{word-spacing:5.313387pt;}
.ws16e{word-spacing:5.314074pt;}
.ws153{word-spacing:5.331709pt;}
.wsd0{word-spacing:5.333328pt;}
.wsd3{word-spacing:5.372640pt;}
.wsd1{word-spacing:5.381376pt;}
.wsd2{word-spacing:5.403216pt;}
.ws151{word-spacing:5.433120pt;}
.ws180{word-spacing:5.472788pt;}
.wse8{word-spacing:5.490372pt;}
.ws122{word-spacing:5.578602pt;}
.ws149{word-spacing:5.579056pt;}
.wsc3{word-spacing:5.595034pt;}
.ws16b{word-spacing:5.666778pt;}
.ws13{word-spacing:5.685324pt;}
.ws124{word-spacing:5.707926pt;}
.ws167{word-spacing:5.713805pt;}
.wse7{word-spacing:5.728661pt;}
.ws178{word-spacing:5.731440pt;}
.ws166{word-spacing:5.737318pt;}
.ws123{word-spacing:5.760832pt;}
.ws177{word-spacing:5.766710pt;}
.ws8c{word-spacing:5.844725pt;}
.ws6d{word-spacing:5.925600pt;}
.ws24{word-spacing:5.950993pt;}
.ws6e{word-spacing:6.004800pt;}
.ws6c{word-spacing:6.026400pt;}
.ws127{word-spacing:6.037117pt;}
.ws128{word-spacing:6.207590pt;}
.ws129{word-spacing:6.248739pt;}
.ws142{word-spacing:6.269796pt;}
.ws8d{word-spacing:6.376064pt;}
.ws114{word-spacing:6.446880pt;}
.ws82{word-spacing:6.482332pt;}
.ws117{word-spacing:6.494400pt;}
.ws115{word-spacing:6.504960pt;}
.ws116{word-spacing:6.531360pt;}
.ws17f{word-spacing:6.588599pt;}
.ws50{word-spacing:6.641733pt;}
.ws156{word-spacing:6.842458pt;}
.wsf{word-spacing:7.119938pt;}
.ws182{word-spacing:7.226206pt;}
.ws183{word-spacing:7.385607pt;}
.ws173{word-spacing:7.471446pt;}
.ws174{word-spacing:7.518474pt;}
.ws5c{word-spacing:7.647264pt;}
.ws5b{word-spacing:8.264496pt;}
.ws7d{word-spacing:8.721408pt;}
.ws7e{word-spacing:8.801568pt;}
.ws3{word-spacing:9.372787pt;}
.wsc8{word-spacing:9.399674pt;}
.ws70{word-spacing:9.835200pt;}
.ws6f{word-spacing:9.928800pt;}
.ws38{word-spacing:10.573639pt;}
.ws30{word-spacing:10.582157pt;}
.ws8b{word-spacing:11.051844pt;}
.ws76{word-spacing:11.102160pt;}
.ws15d{word-spacing:11.333555pt;}
.ws150{word-spacing:11.357562pt;}
.ws10c{word-spacing:11.362243pt;}
.ws15c{word-spacing:11.709773pt;}
.ws1a3{word-spacing:11.716096pt;}
.ws15b{word-spacing:11.756800pt;}
.ws1a7{word-spacing:11.811738pt;}
.ws4e{word-spacing:11.859558pt;}
.ws1a9{word-spacing:11.904555pt;}
.ws194{word-spacing:11.906492pt;}
.ws1a0{word-spacing:11.907379pt;}
.ws1a8{word-spacing:11.955200pt;}
.ws1a1{word-spacing:11.958345pt;}
.ws19b{word-spacing:12.003021pt;}
.ws1ac{word-spacing:12.098662pt;}
.ws191{word-spacing:12.146483pt;}
.ws192{word-spacing:12.177543pt;}
.ws140{word-spacing:12.220789pt;}
.ws1b8{word-spacing:12.242125pt;}
.ws13f{word-spacing:12.273923pt;}
.wsee{word-spacing:12.595274pt;}
.wsef{word-spacing:13.008632pt;}
.ws42{word-spacing:13.230333pt;}
.ws75{word-spacing:13.667280pt;}
.ws16d{word-spacing:14.149309pt;}
.ws197{word-spacing:14.346240pt;}
.ws1aa{word-spacing:14.585344pt;}
.ws19e{word-spacing:14.767138pt;}
.ws1b5{word-spacing:14.772386pt;}
.ws19f{word-spacing:14.772471pt;}
.ws18e{word-spacing:14.772599pt;}
.ws1ad{word-spacing:14.773453pt;}
.ws19c{word-spacing:14.775612pt;}
.ws199{word-spacing:14.776627pt;}
.ws195{word-spacing:14.806560pt;}
.ws4f{word-spacing:14.872269pt;}
.ws18f{word-spacing:14.967910pt;}
.ws1ab{word-spacing:15.015731pt;}
.ws55{word-spacing:15.493968pt;}
.ws63{word-spacing:15.502944pt;}
.ws62{word-spacing:15.631200pt;}
.ws3b{word-spacing:16.418365pt;}
.ws1b4{word-spacing:19.558707pt;}
.ws71{word-spacing:20.325600pt;}
.ws1{word-spacing:25.293814pt;}
.wsa{word-spacing:35.593054pt;}
.wsc{word-spacing:48.878387pt;}
.wsb1{word-spacing:90.380448pt;}
.wsa8{word-spacing:90.417642pt;}
.wsa6{word-spacing:99.269718pt;}
.wsb2{word-spacing:99.373038pt;}
.wsad{word-spacing:104.607284pt;}
.wsb0{word-spacing:108.568118pt;}
.wsa3{word-spacing:113.908618pt;}
.wsaf{word-spacing:131.127010pt;}
.wsa5{word-spacing:131.132343pt;}
.wsae{word-spacing:135.756640pt;}
.wsa4{word-spacing:141.521648pt;}
.wsa7{word-spacing:156.888000pt;}
.wsa9{word-spacing:192.199010pt;}
._3b{margin-left:-15.448435pt;}
._38{margin-left:-12.780069pt;}
._4{margin-left:-10.292118pt;}
._1a{margin-left:-6.811750pt;}
._7{margin-left:-5.901244pt;}
._9{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._2{margin-left:-2.045648pt;}
._3{margin-left:-0.967034pt;}
._1d{width:1.021440pt;}
._8{width:2.162385pt;}
._5{width:3.165095pt;}
._1f{width:8.240448pt;}
._0{width:11.530016pt;}
._14{width:13.179368pt;}
._17{width:14.179512pt;}
._d{width:15.913587pt;}
._18{width:16.843436pt;}
._11{width:17.906113pt;}
._f{width:19.500129pt;}
._a{width:20.429126pt;}
._e{width:21.370438pt;}
._12{width:22.702170pt;}
._13{width:23.949365pt;}
._19{width:25.215398pt;}
._10{width:26.460666pt;}
._b{width:28.097995pt;}
._3c{width:29.223627pt;}
._c{width:30.342822pt;}
._39{width:31.942760pt;}
._3e{width:33.378692pt;}
._20{width:34.383155pt;}
._22{width:36.396699pt;}
._6{width:47.865198pt;}
._21{width:59.871642pt;}
._1b{width:93.568739pt;}
._1c{width:95.640960pt;}
._2d{width:104.923146pt;}
._34{width:112.101510pt;}
._2e{width:118.275648pt;}
._35{width:124.338205pt;}
._23{width:134.123118pt;}
._2b{width:138.556069pt;}
._36{width:142.252229pt;}
._2c{width:143.232554pt;}
._32{width:147.854469pt;}
._31{width:150.820048pt;}
._25{width:154.353440pt;}
._26{width:156.882605pt;}
._29{width:160.118448pt;}
._33{width:163.651840pt;}
._30{width:166.478554pt;}
._27{width:175.776954pt;}
._24{width:178.715248pt;}
._28{width:188.645939pt;}
._2a{width:193.351633pt;}
._2f{width:204.732966pt;}
._15{width:1605.266667pt;}
._37{width:1654.804514pt;}
._3d{width:1977.296317pt;}
._3a{width:2000.526416pt;}
._3f{width:2180.898667pt;}
._16{width:2202.152000pt;}
._1e{width:2727.340560pt;}
.fsd{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fse{font-size:38.729600pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs10{font-size:43.680000pt;}
.fs11{font-size:46.816000pt;}
.fsc{font-size:47.820800pt;}
.fsf{font-size:48.630400pt;}
.fs13{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs12{font-size:58.784000pt;}
.fs7{font-size:63.761067pt;}
.fs9{font-size:63.840000pt;}
.fs14{font-size:70.400000pt;}
.fsb{font-size:72.000000pt;}
.fsa{font-size:80.160000pt;}
.fs2{font-size:95.641600pt;}
.y183{bottom:-714.421693pt;}
.y1a7{bottom:-711.956227pt;}
.y1c8{bottom:-687.226150pt;}
.y1c7{bottom:-666.722291pt;}
.y1c6{bottom:-646.130255pt;}
.y1c5{bottom:-625.626396pt;}
.y1c4{bottom:-605.122537pt;}
.y157{bottom:-594.592423pt;}
.y1c3{bottom:-584.530502pt;}
.y1c2{bottom:-564.026643pt;}
.y1c1{bottom:-543.522783pt;}
.y1c0{bottom:-522.930748pt;}
.y7b{bottom:-502.481400pt;}
.y1bf{bottom:-502.426889pt;}
.y1be{bottom:-481.923030pt;}
.y97{bottom:-465.520224pt;}
.y1bd{bottom:-461.330995pt;}
.y1bc{bottom:-440.827135pt;}
.y96{bottom:-437.440176pt;}
.y198{bottom:-435.812444pt;}
.y1bb{bottom:-420.323276pt;}
.y197{bottom:-415.308585pt;}
.y95{bottom:-403.480392pt;}
.y1ba{bottom:-399.731241pt;}
.y196{bottom:-394.804725pt;}
.y1b9{bottom:-379.227382pt;}
.y195{bottom:-374.212690pt;}
.y16c{bottom:-359.301789pt;}
.y1b8{bottom:-358.723523pt;}
.y194{bottom:-353.708831pt;}
.y94{bottom:-351.520680pt;}
.y16b{bottom:-342.266560pt;}
.y1b7{bottom:-338.131487pt;}
.y193{bottom:-333.204972pt;}
.y16a{bottom:-325.304276pt;}
.y93{bottom:-323.440632pt;}
.y1b6{bottom:-317.627628pt;}
.y192{bottom:-312.612937pt;}
.y169{bottom:-308.341993pt;}
.y1b5{bottom:-297.123769pt;}
.y92{bottom:-295.480824pt;}
.y191{bottom:-292.109077pt;}
.y168{bottom:-291.306764pt;}
.y1b4{bottom:-276.531734pt;}
.y167{bottom:-274.344480pt;}
.y190{bottom:-271.605218pt;}
.y91{bottom:-267.521016pt;}
.y166{bottom:-257.382197pt;}
.y1b3{bottom:-256.027875pt;}
.y18f{bottom:-251.013183pt;}
.y165{bottom:-240.346967pt;}
.y90{bottom:-239.440968pt;}
.y1b2{bottom:-235.524015pt;}
.y18e{bottom:-230.509324pt;}
.y164{bottom:-223.384684pt;}
.y1b1{bottom:-214.931980pt;}
.y18d{bottom:-210.005465pt;}
.y163{bottom:-206.422400pt;}
.y8f{bottom:-205.481184pt;}
.y1b0{bottom:-194.428121pt;}
.y18c{bottom:-189.413429pt;}
.y162{bottom:-189.387171pt;}
.y1af{bottom:-173.924262pt;}
.y161{bottom:-172.424888pt;}
.y8e{bottom:-171.521400pt;}
.y18b{bottom:-168.909570pt;}
.y160{bottom:-155.462604pt;}
.y1ae{bottom:-153.332227pt;}
.y18a{bottom:-148.405711pt;}
.y15f{bottom:-138.427375pt;}
.y1ad{bottom:-127.636227pt;}
.y189{bottom:-123.413693pt;}
.y15e{bottom:-121.465092pt;}
.y8d{bottom:-120.040200pt;}
.y15d{bottom:-100.862823pt;}
.y8c{bottom:-92.080800pt;}
.y1ac{bottom:-87.507347pt;}
.y188{bottom:-85.748813pt;}
.y15c{bottom:-69.630895pt;}
.y1ab{bottom:-67.003787pt;}
.y187{bottom:-65.245253pt;}
.y8b{bottom:-64.121400pt;}
.y15b{bottom:-52.668859pt;}
.y1aa{bottom:-46.500227pt;}
.y186{bottom:-44.653253pt;}
.y8a{bottom:-36.041400pt;}
.y15a{bottom:-35.706823pt;}
.y1a9{bottom:-25.908227pt;}
.y185{bottom:-24.149693pt;}
.y159{bottom:-18.671623pt;}
.y89{bottom:-1.599636pt;}
.y1a8{bottom:-0.564015pt;}
.y0{bottom:0.000000pt;}
.y184{bottom:1.194148pt;}
.y158{bottom:2.294675pt;}
.y43{bottom:40.818667pt;}
.y42{bottom:88.640000pt;}
.y17{bottom:89.120000pt;}
.yf3{bottom:89.684000pt;}
.y1a3{bottom:91.773333pt;}
.y247{bottom:94.188000pt;}
.y1dc{bottom:98.904000pt;}
.y9f{bottom:99.674667pt;}
.y16e{bottom:99.993333pt;}
.y215{bottom:103.158667pt;}
.y1f3{bottom:103.473333pt;}
.y16{bottom:105.020000pt;}
.y41{bottom:107.209333pt;}
.yf2{bottom:108.254667pt;}
.y1a2{bottom:110.344000pt;}
.y246{bottom:111.210667pt;}
.y16d{bottom:117.089333pt;}
.y1db{bottom:117.474667pt;}
.y9e{bottom:118.244000pt;}
.y74{bottom:119.281333pt;}
.y214{bottom:120.181333pt;}
.y15{bottom:120.920000pt;}
.y1f2{bottom:122.042667pt;}
.y40{bottom:125.780000pt;}
.yf1{bottom:126.825333pt;}
.y245{bottom:128.233333pt;}
.y1a1{bottom:128.914667pt;}
.y1da{bottom:136.045333pt;}
.y14{bottom:136.821333pt;}
.y154{bottom:137.025333pt;}
.y213{bottom:137.204000pt;}
.y73{bottom:137.852000pt;}
.y125{bottom:138.648000pt;}
.y1f1{bottom:140.613333pt;}
.y9d{bottom:140.800000pt;}
.y3f{bottom:144.350667pt;}
.y244{bottom:145.256000pt;}
.yf0{bottom:145.394667pt;}
.y1a0{bottom:147.484000pt;}
.yc8{bottom:147.573333pt;}
.y13{bottom:152.721333pt;}
.y212{bottom:154.226667pt;}
.y1d9{bottom:154.614667pt;}
.y124{bottom:155.677333pt;}
.y72{bottom:156.421333pt;}
.y1f0{bottom:159.184000pt;}
.y9c{bottom:160.260000pt;}
.y123{bottom:160.990667pt;}
.y243{bottom:162.278667pt;}
.y3e{bottom:162.920000pt;}
.yef{bottom:163.965333pt;}
.y19f{bottom:166.054667pt;}
.yc7{bottom:166.144000pt;}
.y12{bottom:168.621333pt;}
.y211{bottom:171.250667pt;}
.y1d8{bottom:173.185333pt;}
.y70{bottom:174.992000pt;}
.y1ef{bottom:177.753333pt;}
.y242{bottom:179.301333pt;}
.y71{bottom:179.813333pt;}
.y3d{bottom:181.490667pt;}
.yee{bottom:182.536000pt;}
.y121{bottom:183.333333pt;}
.y11{bottom:184.521333pt;}
.y19e{bottom:184.625333pt;}
.yc6{bottom:184.713333pt;}
.y210{bottom:188.273333pt;}
.y9b{bottom:188.834667pt;}
.y1d7{bottom:191.756000pt;}
.y119{bottom:193.332000pt;}
.y6f{bottom:193.562667pt;}
.y120{bottom:193.960000pt;}
.y1ee{bottom:196.324000pt;}
.y11d{bottom:199.273333pt;}
.y3c{bottom:200.061333pt;}
.y10{bottom:200.422667pt;}
.yed{bottom:201.105333pt;}
.yc5{bottom:203.284000pt;}
.y118{bottom:203.958667pt;}
.y11c{bottom:204.586667pt;}
.y20f{bottom:205.296000pt;}
.y9a{bottom:205.929333pt;}
.y19d{bottom:207.180000pt;}
.y122{bottom:209.900000pt;}
.y1d6{bottom:210.325333pt;}
.y6e{bottom:212.132000pt;}
.y241{bottom:213.346667pt;}
.y1ed{bottom:214.894667pt;}
.y11f{bottom:215.213333pt;}
.y3b{bottom:218.632000pt;}
.yec{bottom:219.676000pt;}
.yc4{bottom:221.854667pt;}
.y20e{bottom:222.318667pt;}
.y99{bottom:223.025333pt;}
.yf{bottom:224.293333pt;}
.y11e{bottom:225.840000pt;}
.y1d5{bottom:228.896000pt;}
.y240{bottom:230.369333pt;}
.y6d{bottom:230.702667pt;}
.y1ec{bottom:233.464000pt;}
.y19c{bottom:235.754667pt;}
.yeb{bottom:238.246667pt;}
.y20d{bottom:239.341333pt;}
.y98{bottom:240.121333pt;}
.ye{bottom:240.193333pt;}
.yc3{bottom:240.425333pt;}
.y3a{bottom:241.186667pt;}
.y11b{bottom:242.869333pt;}
.y23f{bottom:247.392000pt;}
.y1d4{bottom:247.466667pt;}
.y6c{bottom:249.273333pt;}
.y1eb{bottom:252.034667pt;}
.y19b{bottom:252.850667pt;}
.y11a{bottom:253.496000pt;}
.yd{bottom:256.093333pt;}
.y20c{bottom:256.364000pt;}
.yea{bottom:256.816000pt;}
.yc2{bottom:258.994667pt;}
.y78{bottom:260.058667pt;}
.y23e{bottom:264.414667pt;}
.y1d3{bottom:266.037333pt;}
.y19a{bottom:269.946667pt;}
.y117{bottom:270.524000pt;}
.y1ea{bottom:270.605333pt;}
.y6b{bottom:271.828000pt;}
.yc{bottom:271.994667pt;}
.y20b{bottom:273.386667pt;}
.ye9{bottom:275.386667pt;}
.yc1{bottom:277.565333pt;}
.y114{bottom:281.152000pt;}
.y23d{bottom:281.437333pt;}
.y1d2{bottom:284.606667pt;}
.y115{bottom:286.465333pt;}
.y199{bottom:287.042667pt;}
.yb{bottom:287.894667pt;}
.y1e9{bottom:289.176000pt;}
.y20a{bottom:290.409333pt;}
.y113{bottom:291.778667pt;}
.ye8{bottom:293.957333pt;}
.yc0{bottom:296.136000pt;}
.y23c{bottom:298.460000pt;}
.y116{bottom:302.405333pt;}
.y1d1{bottom:303.177333pt;}
.y6a{bottom:303.244000pt;}
.ya{bottom:303.794667pt;}
.y180{bottom:306.978667pt;}
.y1e8{bottom:307.745333pt;}
.y209{bottom:311.417333pt;}
.y39{bottom:311.597333pt;}
.ye7{bottom:312.528000pt;}
.ybf{bottom:314.705333pt;}
.y23b{bottom:315.482667pt;}
.y9{bottom:319.696000pt;}
.y1d0{bottom:321.748000pt;}
.y69{bottom:321.814667pt;}
.y156{bottom:324.507687pt;}
.y1e7{bottom:326.316000pt;}
.y38{bottom:330.168000pt;}
.y112{bottom:330.378667pt;}
.ye6{bottom:331.097333pt;}
.y155{bottom:332.297177pt;}
.y23a{bottom:332.506667pt;}
.ybe{bottom:333.276000pt;}
.y8{bottom:335.596000pt;}
.y1cf{bottom:340.317333pt;}
.y68{bottom:340.384000pt;}
.y1e6{bottom:344.886667pt;}
.y208{bottom:345.928000pt;}
.y239{bottom:349.529333pt;}
.ye5{bottom:349.668000pt;}
.y7{bottom:351.496000pt;}
.ybd{bottom:351.846667pt;}
.y1ce{bottom:358.888000pt;}
.y67{bottom:358.954667pt;}
.y1e5{bottom:363.456000pt;}
.y37{bottom:364.677333pt;}
.y238{bottom:366.552000pt;}
.ye4{bottom:368.238667pt;}
.y111{bottom:370.581333pt;}
.y207{bottom:371.229333pt;}
.y6{bottom:372.710667pt;}
.ybc{bottom:374.401333pt;}
.y66{bottom:377.525333pt;}
.y1cd{bottom:381.442667pt;}
.y1e4{bottom:382.026667pt;}
.y110{bottom:383.200000pt;}
.y36{bottom:383.248000pt;}
.y237{bottom:383.574667pt;}
.ye3{bottom:386.808000pt;}
.y5{bottom:388.610667pt;}
.y10f{bottom:395.820000pt;}
.y65{bottom:396.094667pt;}
.y206{bottom:396.532000pt;}
.y182{bottom:396.578439pt;}
.y1a6{bottom:399.043905pt;}
.y1e3{bottom:400.597333pt;}
.y35{bottom:401.818667pt;}
.y4{bottom:404.510667pt;}
.ybb{bottom:405.817333pt;}
.y181{bottom:405.994307pt;}
.y10e{bottom:408.438667pt;}
.y1a5{bottom:408.459773pt;}
.ye2{bottom:409.364000pt;}
.y1cc{bottom:413.112000pt;}
.y205{bottom:413.864000pt;}
.y64{bottom:414.665333pt;}
.y236{bottom:417.620000pt;}
.y1e2{bottom:419.166667pt;}
.y34{bottom:420.388000pt;}
.y3{bottom:420.412000pt;}
.yba{bottom:424.386667pt;}
.y10d{bottom:426.649333pt;}
.y1cb{bottom:430.208000pt;}
.y63{bottom:433.236000pt;}
.y235{bottom:434.642667pt;}
.y1e1{bottom:437.737333pt;}
.y33{bottom:438.958667pt;}
.y204{bottom:439.166667pt;}
.ye1{bottom:440.778667pt;}
.y2{bottom:441.625333pt;}
.yb9{bottom:442.957333pt;}
.y10c{bottom:443.678667pt;}
.y1ca{bottom:447.304000pt;}
.y10b{bottom:448.992000pt;}
.y153{bottom:449.621333pt;}
.y234{bottom:451.665333pt;}
.y62{bottom:451.805333pt;}
.y1e0{bottom:456.308000pt;}
.y203{bottom:456.498667pt;}
.y1{bottom:457.525333pt;}
.y32{bottom:457.529333pt;}
.ye0{bottom:459.349333pt;}
.yb8{bottom:461.528000pt;}
.y1c9{bottom:464.400000pt;}
.y152{bottom:468.190667pt;}
.y233{bottom:468.688000pt;}
.y10a{bottom:471.334667pt;}
.y103{bottom:472.158667pt;}
.y202{bottom:473.830667pt;}
.y61{bottom:474.361333pt;}
.y1df{bottom:474.877333pt;}
.y31{bottom:476.100000pt;}
.yb7{bottom:480.098667pt;}
.y107{bottom:481.961333pt;}
.y102{bottom:482.785333pt;}
.y1a4{bottom:484.337333pt;}
.ydf{bottom:484.561333pt;}
.y232{bottom:485.710667pt;}
.y151{bottom:486.761333pt;}
.y106{bottom:487.274667pt;}
.y109{bottom:492.588000pt;}
.y101{bottom:493.412000pt;}
.y1de{bottom:493.448000pt;}
.y30{bottom:494.669333pt;}
.y60{bottom:496.078667pt;}
.yb6{bottom:498.668000pt;}
.y201{bottom:499.133333pt;}
.y231{bottom:502.733333pt;}
.yde{bottom:503.132000pt;}
.y108{bottom:503.214667pt;}
.y150{bottom:505.332000pt;}
.y1dd{bottom:512.018667pt;}
.y2f{bottom:513.240000pt;}
.y24a{bottom:515.552000pt;}
.y200{bottom:516.465333pt;}
.y230{bottom:519.756000pt;}
.y105{bottom:520.244000pt;}
.yb5{bottom:521.224000pt;}
.ydd{bottom:521.701333pt;}
.y14f{bottom:523.901333pt;}
.y5f{bottom:530.589333pt;}
.y104{bottom:530.870667pt;}
.y2e{bottom:531.810667pt;}
.y249{bottom:532.574667pt;}
.y1ff{bottom:533.797333pt;}
.y22f{bottom:536.778667pt;}
.ydc{bottom:540.272000pt;}
.y14e{bottom:542.472000pt;}
.y100{bottom:547.900000pt;}
.y5e{bottom:549.158667pt;}
.y248{bottom:549.597333pt;}
.y2d{bottom:550.380000pt;}
.yb4{bottom:552.638667pt;}
.y22e{bottom:553.801333pt;}
.yfd{bottom:558.526667pt;}
.ydb{bottom:558.842667pt;}
.y1fe{bottom:559.100000pt;}
.y14d{bottom:561.042667pt;}
.yfe{bottom:563.840000pt;}
.y5d{bottom:567.729333pt;}
.y2c{bottom:568.950667pt;}
.yfc{bottom:569.153333pt;}
.y22d{bottom:570.824000pt;}
.yb3{bottom:571.209333pt;}
.y1fd{bottom:576.432000pt;}
.yda{bottom:577.413333pt;}
.yff{bottom:579.780000pt;}
.y14c{bottom:583.597333pt;}
.y5c{bottom:586.300000pt;}
.y2b{bottom:587.521333pt;}
.y22c{bottom:587.846667pt;}
.yb2{bottom:589.780000pt;}
.y1fc{bottom:593.764000pt;}
.y88{bottom:595.159500pt;}
.yd9{bottom:595.982667pt;}
.y5b{bottom:604.869333pt;}
.y2a{bottom:606.090667pt;}
.yfb{bottom:607.753333pt;}
.yb1{bottom:608.349333pt;}
.y1fb{bottom:611.097333pt;}
.y14b{bottom:613.496000pt;}
.yd8{bottom:614.553333pt;}
.y22b{bottom:621.892000pt;}
.y87{bottom:623.119308pt;}
.y5a{bottom:623.440000pt;}
.y29{bottom:624.661333pt;}
.y149{bottom:626.114667pt;}
.yb0{bottom:626.920000pt;}
.y1fa{bottom:628.429333pt;}
.y14a{bottom:629.972000pt;}
.y148{bottom:638.734667pt;}
.y22a{bottom:638.914667pt;}
.yd7{bottom:639.765333pt;}
.yfa{bottom:640.654667pt;}
.y59{bottom:642.010667pt;}
.y28{bottom:643.232000pt;}
.yaf{bottom:645.490667pt;}
.y1f9{bottom:645.761333pt;}
.y86{bottom:651.199356pt;}
.y147{bottom:651.353333pt;}
.y229{bottom:655.937333pt;}
.yd6{bottom:658.336000pt;}
.yf9{bottom:659.225333pt;}
.y58{bottom:660.580000pt;}
.y27{bottom:661.801333pt;}
.y1f8{bottom:663.093333pt;}
.y146{bottom:663.973333pt;}
.yae{bottom:664.060000pt;}
.y228{bottom:672.961333pt;}
.y145{bottom:676.592000pt;}
.yd5{bottom:676.905333pt;}
.yf8{bottom:677.796000pt;}
.y57{bottom:679.150667pt;}
.y26{bottom:680.372000pt;}
.y17f{bottom:681.866667pt;}
.yad{bottom:682.630667pt;}
.y85{bottom:685.640100pt;}
.y227{bottom:689.984000pt;}
.y144{bottom:695.076000pt;}
.yd4{bottom:695.476000pt;}
.yf7{bottom:696.365333pt;}
.y56{bottom:697.721333pt;}
.y25{bottom:698.942667pt;}
.y17e{bottom:700.437333pt;}
.yac{bottom:701.201333pt;}
.y226{bottom:707.006667pt;}
.y143{bottom:712.378667pt;}
.y84{bottom:713.599908pt;}
.yd3{bottom:714.046667pt;}
.yf6{bottom:714.936000pt;}
.y55{bottom:716.290667pt;}
.y24{bottom:717.513333pt;}
.y142{bottom:717.692000pt;}
.y17d{bottom:719.008000pt;}
.yab{bottom:719.770667pt;}
.y225{bottom:724.029333pt;}
.yd2{bottom:732.616000pt;}
.yf5{bottom:733.506667pt;}
.y54{bottom:734.861333pt;}
.y23{bottom:736.082667pt;}
.y17c{bottom:737.577333pt;}
.yaa{bottom:738.341333pt;}
.y141{bottom:740.034667pt;}
.y224{bottom:741.052000pt;}
.y83{bottom:741.559716pt;}
.y140{bottom:745.348000pt;}
.yd1{bottom:751.186667pt;}
.y1f7{bottom:752.077333pt;}
.y53{bottom:753.432000pt;}
.yf4{bottom:756.061333pt;}
.y17b{bottom:756.148000pt;}
.y223{bottom:758.074667pt;}
.ya9{bottom:760.897333pt;}
.y13f{bottom:767.690667pt;}
.y82{bottom:769.639764pt;}
.yd0{bottom:769.757333pt;}
.y1f6{bottom:770.646667pt;}
.y138{bottom:770.781333pt;}
.y22{bottom:771.124000pt;}
.y52{bottom:772.002667pt;}
.y17a{bottom:774.718667pt;}
.y222{bottom:775.097333pt;}
.y13c{bottom:778.317333pt;}
.y137{bottom:781.408000pt;}
.y13b{bottom:783.630667pt;}
.y21{bottom:785.470667pt;}
.y13e{bottom:788.944000pt;}
.y1f5{bottom:789.217333pt;}
.y20{bottom:789.328000pt;}
.y51{bottom:790.572000pt;}
.y221{bottom:792.120000pt;}
.ya8{bottom:792.312000pt;}
.y179{bottom:793.288000pt;}
.y81{bottom:797.599572pt;}
.y13d{bottom:799.570667pt;}
.y1f{bottom:799.816000pt;}
.y50{bottom:809.142667pt;}
.ya7{bottom:810.882667pt;}
.y1f4{bottom:811.772000pt;}
.y178{bottom:811.858667pt;}
.y1e{bottom:814.162667pt;}
.y13a{bottom:816.598667pt;}
.ycf{bottom:823.728000pt;}
.y80{bottom:825.559380pt;}
.y220{bottom:826.165333pt;}
.y139{bottom:827.226667pt;}
.y4f{bottom:827.713333pt;}
.ya6{bottom:829.453333pt;}
.y177{bottom:830.429333pt;}
.y1d{bottom:832.366667pt;}
.y77{bottom:842.297333pt;}
.y21f{bottom:843.188000pt;}
.y136{bottom:844.254667pt;}
.y4e{bottom:846.282667pt;}
.ya5{bottom:848.022667pt;}
.y176{bottom:849.000000pt;}
.y7f{bottom:853.639428pt;}
.y21e{bottom:860.210667pt;}
.y76{bottom:860.868000pt;}
.y135{bottom:861.284000pt;}
.y4d{bottom:864.853333pt;}
.ya4{bottom:866.593333pt;}
.y134{bottom:866.597333pt;}
.y175{bottom:867.569333pt;}
.y1c{bottom:871.546667pt;}
.y21d{bottom:877.233333pt;}
.y75{bottom:879.438667pt;}
.y7e{bottom:881.599236pt;}
.y4c{bottom:883.424000pt;}
.ya3{bottom:885.164000pt;}
.y12d{bottom:885.654667pt;}
.y174{bottom:886.140000pt;}
.y131{bottom:888.940000pt;}
.y1b{bottom:890.117333pt;}
.y133{bottom:894.253333pt;}
.y21c{bottom:894.256000pt;}
.y12c{bottom:896.281333pt;}
.yce{bottom:898.009333pt;}
.y130{bottom:899.566667pt;}
.y4b{bottom:901.993333pt;}
.ya2{bottom:903.733333pt;}
.y173{bottom:904.710667pt;}
.y132{bottom:904.880000pt;}
.y7d{bottom:909.559044pt;}
.y21b{bottom:911.278667pt;}
.ycd{bottom:916.578667pt;}
.y4a{bottom:920.564000pt;}
.ya1{bottom:922.304000pt;}
.y172{bottom:923.280000pt;}
.y1a{bottom:924.628000pt;}
.y12f{bottom:927.222667pt;}
.y21a{bottom:928.301333pt;}
.ycc{bottom:935.149333pt;}
.y7c{bottom:937.639092pt;}
.y12e{bottom:937.849333pt;}
.y49{bottom:939.134667pt;}
.y171{bottom:941.850667pt;}
.ya0{bottom:944.860000pt;}
.y219{bottom:945.324000pt;}
.y19{bottom:952.482667pt;}
.ycb{bottom:953.720000pt;}
.y12b{bottom:954.877333pt;}
.y48{bottom:957.704000pt;}
.y218{bottom:962.346667pt;}
.y170{bottom:964.405333pt;}
.y128{bottom:965.505333pt;}
.y129{bottom:970.818667pt;}
.yca{bottom:972.289333pt;}
.y127{bottom:976.132000pt;}
.y47{bottom:976.274667pt;}
.y217{bottom:979.369333pt;}
.y18{bottom:980.338667pt;}
.y12a{bottom:986.758667pt;}
.yc9{bottom:990.860000pt;}
.y46{bottom:994.845333pt;}
.y216{bottom:996.392000pt;}
.y16f{bottom:997.636000pt;}
.y7a{bottom:1012.518780pt;}
.y45{bottom:1013.414667pt;}
.y126{bottom:1014.732000pt;}
.y79{bottom:1025.358600pt;}
.y44{bottom:1066.841333pt;}
.h28{height:24.866650pt;}
.h13{height:26.890973pt;}
.hc{height:28.023859pt;}
.h7{height:28.947524pt;}
.h2{height:33.771789pt;}
.h20{height:35.000591pt;}
.h17{height:35.052646pt;}
.h1d{height:35.817316pt;}
.h1a{height:36.533442pt;}
.ha{height:36.873667pt;}
.h8{height:38.596538pt;}
.h3{height:38.947124pt;}
.h1f{height:40.395469pt;}
.h25{height:42.308406pt;}
.h22{height:43.295656pt;}
.h12{height:43.421286pt;}
.h1b{height:44.376858pt;}
.h1e{height:44.973622pt;}
.hb{height:46.099251pt;}
.h14{height:48.144306pt;}
.h9{height:48.245551pt;}
.h5{height:48.481423pt;}
.h6{height:48.486756pt;}
.h24{height:48.829687pt;}
.h27{height:51.837500pt;}
.h23{height:54.363719pt;}
.h16{height:55.025122pt;}
.h19{height:55.030455pt;}
.h11{height:57.693281pt;}
.he{height:59.039531pt;}
.h10{height:66.585938pt;}
.h4{height:69.148877pt;}
.hf{height:74.132344pt;}
.h15{height:76.278455pt;}
.h18{height:76.283789pt;}
.h1c{height:293.325760pt;}
.h21{height:353.952133pt;}
.h26{height:359.500533pt;}
.hd{height:563.386000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:357.090067pt;}
.w4{width:431.032800pt;}
.w5{width:439.048133pt;}
.w2{width:445.662000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x46{left:-260.146000pt;}
.xad{left:-191.389733pt;}
.xa5{left:-188.922800pt;}
.x9a{left:-156.801493pt;}
.x0{left:0.000000pt;}
.x9b{left:1.392907pt;}
.xa6{left:2.301200pt;}
.x9c{left:27.163371pt;}
.xaf{left:30.986267pt;}
.xa7{left:33.452311pt;}
.x47{left:43.093268pt;}
.x1{left:47.621333pt;}
.x82{left:56.929333pt;}
.x81{left:59.290667pt;}
.x90{left:60.698667pt;}
.x80{left:64.237333pt;}
.x91{left:65.256000pt;}
.xc9{left:76.309333pt;}
.x8e{left:109.418667pt;}
.x86{left:111.178667pt;}
.x84{left:112.513333pt;}
.x83{left:114.734667pt;}
.x94{left:126.037333pt;}
.x7b{left:165.393333pt;}
.x7a{left:174.622667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x45{left:222.748000pt;}
.xd{left:225.932000pt;}
.x7c{left:227.941333pt;}
.x87{left:229.874667pt;}
.x3{left:239.924000pt;}
.x13{left:250.204000pt;}
.x4a{left:253.746667pt;}
.x55{left:255.088000pt;}
.x96{left:256.282667pt;}
.x56{left:261.730667pt;}
.x7{left:263.589333pt;}
.x57{left:265.084000pt;}
.x58{left:266.160000pt;}
.x5{left:267.620000pt;}
.x4e{left:268.700000pt;}
.x21{left:271.054667pt;}
.x79{left:276.121333pt;}
.x22{left:277.697333pt;}
.x7d{left:278.966667pt;}
.x6{left:282.324000pt;}
.x25{left:288.566667pt;}
.x37{left:289.940000pt;}
.x26{left:295.209333pt;}
.x38{left:296.581333pt;}
.xbb{left:298.209333pt;}
.xf{left:301.306667pt;}
.x77{left:306.180000pt;}
.x95{left:311.382667pt;}
.xbc{left:314.860000pt;}
.x10{left:316.464000pt;}
.x78{left:320.876000pt;}
.xc4{left:323.113333pt;}
.xbd{left:328.144000pt;}
.x9{left:334.534667pt;}
.xc5{left:336.397333pt;}
.x63{left:340.857333pt;}
.x7e{left:343.934667pt;}
.xa{left:348.980000pt;}
.x97{left:355.036000pt;}
.x3e{left:359.154667pt;}
.x18{left:365.150667pt;}
.x29{left:368.394667pt;}
.x19{left:371.793333pt;}
.x3f{left:373.254667pt;}
.x2a{left:375.036000pt;}
.x2b{left:378.422667pt;}
.xe{left:383.208000pt;}
.x11{left:385.621333pt;}
.x1b{left:386.974667pt;}
.x39{left:388.466667pt;}
.x4b{left:389.818667pt;}
.x2c{left:391.706667pt;}
.x1c{left:393.616000pt;}
.x1d{left:396.924000pt;}
.xa4{left:397.944000pt;}
.x4c{left:399.848000pt;}
.x12{left:400.778667pt;}
.x1e{left:403.565333pt;}
.x76{left:407.485333pt;}
.xbe{left:410.329333pt;}
.x4d{left:413.132000pt;}
.x7f{left:414.309333pt;}
.xb{left:416.004000pt;}
.x8{left:420.865333pt;}
.xbf{left:423.612000pt;}
.x5d{left:428.664000pt;}
.xc{left:430.449333pt;}
.x5e{left:432.052000pt;}
.xae{left:436.226460pt;}
.x1f{left:438.893333pt;}
.x23{left:441.470667pt;}
.x48{left:444.608696pt;}
.x20{left:445.536000pt;}
.x24{left:448.113333pt;}
.xc2{left:451.962667pt;}
.x72{left:458.762667pt;}
.x6c{left:462.370667pt;}
.xc3{left:465.246667pt;}
.xc7{left:468.132000pt;}
.x6d{left:475.653333pt;}
.x59{left:478.278667pt;}
.x61{left:480.573333pt;}
.xc8{left:482.509333pt;}
.x31{left:485.689333pt;}
.x32{left:492.332000pt;}
.x62{left:493.857333pt;}
.x33{left:495.718667pt;}
.xab{left:500.294667pt;}
.x34{left:502.360000pt;}
.xc0{left:503.998667pt;}
.x5a{left:508.177333pt;}
.xc1{left:512.745333pt;}
.xb4{left:514.361333pt;}
.xac{left:517.734667pt;}
.xb5{left:521.004000pt;}
.x73{left:522.124000pt;}
.xb6{left:524.294667pt;}
.xb1{left:527.169333pt;}
.x74{left:528.705333pt;}
.x3c{left:533.416000pt;}
.xb2{left:537.086667pt;}
.xa0{left:539.262667pt;}
.xb7{left:540.869333pt;}
.x75{left:541.989333pt;}
.x3d{left:547.053333pt;}
.xb3{left:550.369333pt;}
.xa1{left:553.173333pt;}
.xb8{left:554.152000pt;}
.x35{left:560.420000pt;}
.x5f{left:566.242667pt;}
.x6e{left:567.517333pt;}
.x60{left:572.885333pt;}
.x36{left:575.841333pt;}
.x6f{left:580.800000pt;}
.x89{left:593.302667pt;}
.x8a{left:595.520000pt;}
.x88{left:596.757333pt;}
.x85{left:599.240000pt;}
.xb0{left:602.349333pt;}
.x4f{left:605.056000pt;}
.x64{left:607.142667pt;}
.x8b{left:609.746667pt;}
.x70{left:611.982667pt;}
.x65{left:613.784000pt;}
.xa2{left:616.381333pt;}
.x50{left:618.340000pt;}
.x51{left:621.728000pt;}
.xc6{left:624.958667pt;}
.x71{left:626.240000pt;}
.x9d{left:628.062667pt;}
.x14{left:629.362667pt;}
.xa3{left:630.290667pt;}
.xaa{left:631.616000pt;}
.x1a{left:633.461333pt;}
.x52{left:635.010667pt;}
.x15{left:636.005333pt;}
.x16{left:639.392000pt;}
.x2d{left:643.002667pt;}
.x17{left:646.033333pt;}
.x53{left:647.881333pt;}
.x40{left:649.912000pt;}
.x41{left:653.166667pt;}
.x2e{left:656.286667pt;}
.x2f{left:659.674667pt;}
.x54{left:661.165333pt;}
.x42{left:666.450667pt;}
.x49{left:667.669333pt;}
.x43{left:669.705333pt;}
.x8f{left:670.662667pt;}
.x66{left:671.610667pt;}
.x30{left:672.957333pt;}
.x8c{left:674.906667pt;}
.x67{left:678.252000pt;}
.x92{left:679.894667pt;}
.x68{left:681.582667pt;}
.x44{left:682.988000pt;}
.x93{left:685.056000pt;}
.x9e{left:688.430667pt;}
.x8d{left:691.322667pt;}
.x69{left:694.866667pt;}
.x6a{left:698.197333pt;}
.xa8{left:699.126667pt;}
.x98{left:700.201333pt;}
.x5b{left:703.832000pt;}
.x6b{left:711.481333pt;}
.xa9{left:713.369333pt;}
.x99{left:715.214667pt;}
.x5c{left:717.114667pt;}
.xb9{left:723.454667pt;}
.x3a{left:728.457333pt;}
.xba{left:730.097333pt;}
.x27{left:733.522667pt;}
.x3b{left:734.508000pt;}
.x28{left:740.165333pt;}
.x9f{left:742.694667pt;}
}




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