
    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_113386eac8ae862a29263da5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_535a5501888b7a07da9ce48b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_4a88bfda617c2ba9374f031a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_0fc12423e3b3ece3daaf7185.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925000;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_ad5994e814e282c2a63ce93a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.714000;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_d8edc9cb64f1f9e768aa67d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.058000;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_38ea9bcbcc95efad15aaee6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935000;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_49f1d0f49191e1cf6e1e74c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690000;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_ec6413a7a0a27d7832c5bbeb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.883000;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_4f8d7000227858e57f2950eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774000;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_84036506fdf352eb76ce0f3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.992000;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_a772a28e7c278bdd478a7507.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.764000;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_340153dcb1556b90092c4ad8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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_b36bb2e44650570525596050.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936000;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_6ea1fd9477e162cc84213e97.woff2')format("woff");}.fff{font-family:fff;line-height:0.768000;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_85bb28782407f1e2ee29e19d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.712000;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_df0e1b67695a38670e1cdd44.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.754000;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_7151e0aa88b018b6b98b6a57.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919000;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_1edff5c8bd0777c00a7296c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.066000;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_7ffdc848c2987d8180ae675f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936000;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_f6ab52277a7319bf5a1008f5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.284000;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_67391c979c36eb30c3332707.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.579000;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_52c4de2b19e1eb179148f41a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910000;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_fb81ecfab03f7689699143ec.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.698000;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_091aff53778a7376ae6d020c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.911000;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_8831bcb91844eaff7c4ceef0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.906000;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_0d9264c3b351a97c833b55a8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.714000;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_a04b85631361c7902598cf0b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_c776c359cf01cf587f791d91.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_aaafddf80c816038d691ec0b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_9475e2c78fe4e13e537b882d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_6f1d33b7c672bb758f65c9da.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_c51edb5e24e35d52b0b7ed98.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.080000;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;}
.m5{transform:matrix(0.000000,-0.250081,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250081,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250081,0.250000,0.000000,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);}
.m6{transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.906924px;}
.v2{vertical-align:23.623800px;}
.v3{vertical-align:106.734000px;}
.ls1f{letter-spacing:-14.230729px;}
.ls29{letter-spacing:-1.334185px;}
.ls2e{letter-spacing:-1.226590px;}
.ls28{letter-spacing:-1.210451px;}
.ls35{letter-spacing:-1.194311px;}
.ls36{letter-spacing:-1.183552px;}
.ls34{letter-spacing:-1.178172px;}
.ls33{letter-spacing:-1.172792px;}
.ls2b{letter-spacing:-1.167412px;}
.ls27{letter-spacing:-1.156653px;}
.ls2f{letter-spacing:-1.151273px;}
.ls2d{letter-spacing:-1.145893px;}
.ls26{letter-spacing:-1.135134px;}
.ls30{letter-spacing:-1.124374px;}
.ls2c{letter-spacing:-1.113614px;}
.ls32{letter-spacing:-1.102855px;}
.ls31{letter-spacing:-1.065196px;}
.ls2a{letter-spacing:-1.049057px;}
.ls67{letter-spacing:-0.910065px;}
.ls5e{letter-spacing:-0.287132px;}
.ls4a{letter-spacing:-0.156690px;}
.ls48{letter-spacing:-0.149046px;}
.ls5c{letter-spacing:-0.051537px;}
.ls5d{letter-spacing:-0.036812px;}
.ls1d{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.003586px;}
.ls1a{letter-spacing:0.004184px;}
.ls57{letter-spacing:0.004483px;}
.ls0{letter-spacing:0.011955px;}
.ls22{letter-spacing:0.026899px;}
.ls46{letter-spacing:0.030574px;}
.ls65{letter-spacing:0.035865px;}
.ls66{letter-spacing:0.041268px;}
.ls45{letter-spacing:0.061147px;}
.ls9{letter-spacing:0.069937px;}
.ls5{letter-spacing:0.075317px;}
.ls1b{letter-spacing:0.083686px;}
.ls47{letter-spacing:0.084077px;}
.ls64{letter-spacing:0.085179px;}
.ls44{letter-spacing:0.087899px;}
.ls42{letter-spacing:0.091721px;}
.ls49{letter-spacing:0.095543px;}
.ls40{letter-spacing:0.099364px;}
.ls43{letter-spacing:0.103186px;}
.ls41{letter-spacing:0.114651px;}
.ls4{letter-spacing:0.225951px;}
.ls20{letter-spacing:0.236710px;}
.ls52{letter-spacing:0.239106px;}
.ls4e{letter-spacing:0.280347px;}
.ls1{letter-spacing:0.301268px;}
.ls59{letter-spacing:0.485916px;}
.ls5b{letter-spacing:0.544815px;}
.ls5a{letter-spacing:0.703105px;}
.ls50{letter-spacing:5.724198px;}
.ls51{letter-spacing:6.063728px;}
.lsb{letter-spacing:6.439597px;}
.ls2{letter-spacing:6.514914px;}
.ls3b{letter-spacing:6.622509px;}
.ls21{letter-spacing:6.767763px;}
.ls3{letter-spacing:6.778523px;}
.ls7{letter-spacing:6.853840px;}
.ls3e{letter-spacing:6.880739px;}
.ls3a{letter-spacing:6.966815px;}
.ls4b{letter-spacing:10.280760px;}
.ls62{letter-spacing:10.517470px;}
.ls5f{letter-spacing:10.619686px;}
.ls37{letter-spacing:10.705762px;}
.ls11{letter-spacing:11.200702px;}
.ls38{letter-spacing:12.319696px;}
.ls8{letter-spacing:12.346595px;}
.lsf{letter-spacing:12.561786px;}
.lse{letter-spacing:12.900712px;}
.lsd{letter-spacing:13.239639px;}
.lsc{letter-spacing:13.583945px;}
.ls23{letter-spacing:13.680781px;}
.ls55{letter-spacing:13.849967px;}
.ls1c{letter-spacing:13.858335px;}
.ls15{letter-spacing:13.922871px;}
.ls4f{letter-spacing:14.193078px;}
.ls14{letter-spacing:14.261797px;}
.lsa{letter-spacing:15.041865px;}
.ls4d{letter-spacing:15.214042px;}
.ls61{letter-spacing:15.380791px;}
.ls58{letter-spacing:15.871856px;}
.ls53{letter-spacing:15.929242px;}
.ls19{letter-spacing:15.961807px;}
.ls39{letter-spacing:16.064023px;}
.ls13{letter-spacing:16.300733px;}
.ls12{letter-spacing:16.306113px;}
.ls6{letter-spacing:16.768774px;}
.ls10{letter-spacing:16.983965px;}
.ls25{letter-spacing:17.764034px;}
.ls3d{letter-spacing:17.790932px;}
.ls54{letter-spacing:17.933824px;}
.ls63{letter-spacing:18.000744px;}
.ls24{letter-spacing:18.102960px;}
.ls60{letter-spacing:18.339670px;}
.ls4c{letter-spacing:18.468785px;}
.ls3c{letter-spacing:20.825128px;}
.ls3f{letter-spacing:22.186213px;}
.ls18{letter-spacing:24.806166px;}
.ls17{letter-spacing:25.145092px;}
.ls16{letter-spacing:28.889419px;}
.ls56{letter-spacing:96.965358px;}
.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;}
}
.ws1ce{word-spacing:-15.919677px;}
.ws1e7{word-spacing:-1.211108px;}
.ws182{word-spacing:-0.179620px;}
.ws180{word-spacing:-0.171977px;}
.ws181{word-spacing:-0.168155px;}
.ws184{word-spacing:-0.133760px;}
.ws186{word-spacing:-0.103186px;}
.wsb{word-spacing:-0.053798px;}
.ws26d{word-spacing:-0.049314px;}
.ws1a9{word-spacing:-0.047821px;}
.ws7b{word-spacing:-0.046027px;}
.ws28f{word-spacing:-0.044831px;}
.ws1be{word-spacing:-0.041843px;}
.ws3{word-spacing:-0.041837px;}
.ws9d{word-spacing:-0.039447px;}
.ws9e{word-spacing:-0.035861px;}
.ws7e{word-spacing:0.000000px;}
.ws185{word-spacing:0.095543px;}
.ws183{word-spacing:0.103186px;}
.ws1e9{word-spacing:0.287132px;}
.ws1e8{word-spacing:0.301857px;}
.ws17f{word-spacing:0.340131px;}
.ws187{word-spacing:0.347775px;}
.ws1ea{word-spacing:0.537452px;}
.ws295{word-spacing:7.473294px;}
.ws227{word-spacing:8.118088px;}
.ws22e{word-spacing:8.370938px;}
.ws2af{word-spacing:8.396809px;}
.ws2a0{word-spacing:8.486470px;}
.ws291{word-spacing:8.495437px;}
.ws226{word-spacing:8.709864px;}
.ws294{word-spacing:8.724074px;}
.ws22d{word-spacing:8.892776px;}
.wsc6{word-spacing:8.968093px;}
.wsb4{word-spacing:9.452273px;}
.ws2ac{word-spacing:9.477231px;}
.wsc1{word-spacing:9.484552px;}
.wsb5{word-spacing:9.554489px;}
.ws23e{word-spacing:9.629806px;}
.ws2b2{word-spacing:9.782081px;}
.wsf9{word-spacing:9.785820px;}
.ws2b1{word-spacing:9.804496px;}
.ws195{word-spacing:9.807339px;}
.ws282{word-spacing:9.876225px;}
.ws21{word-spacing:9.893415px;}
.ws250{word-spacing:9.909555px;}
.ws93{word-spacing:9.947213px;}
.ws20{word-spacing:9.963353px;}
.ws120{word-spacing:10.178544px;}
.ws11f{word-spacing:10.200063px;}
.ws12e{word-spacing:10.221582px;}
.ws261{word-spacing:10.226962px;}
.ws260{word-spacing:10.232342px;}
.ws27f{word-spacing:10.248321px;}
.ws107{word-spacing:10.248481px;}
.wse6{word-spacing:10.259240px;}
.ws23f{word-spacing:10.296899px;}
.ws1ef{word-spacing:10.313038px;}
.wse5{word-spacing:10.399115px;}
.ws12d{word-spacing:10.409874px;}
.ws23a{word-spacing:10.415254px;}
.ws1ee{word-spacing:10.490571px;}
.ws1ed{word-spacing:10.695003px;}
.ws28d{word-spacing:10.701112px;}
.ws289{word-spacing:10.723527px;}
.ws17{word-spacing:10.727281px;}
.ws111{word-spacing:10.748800px;}
.ws18{word-spacing:10.764940px;}
.ws20a{word-spacing:10.813358px;}
.ws19{word-spacing:10.840257px;}
.ws12f{word-spacing:10.861776px;}
.ws130{word-spacing:10.963992px;}
.ws2a5{word-spacing:10.979063px;}
.ws164{word-spacing:10.990891px;}
.ws163{word-spacing:10.996270px;}
.ws3a{word-spacing:11.033929px;}
.ws97{word-spacing:11.066207px;}
.ws37{word-spacing:11.114625px;}
.ws3b{word-spacing:11.141524px;}
.ws235{word-spacing:11.168423px;}
.ws38{word-spacing:11.238360px;}
.ws39{word-spacing:11.324437px;}
.ws56{word-spacing:11.372855px;}
.ws54{word-spacing:11.383614px;}
.ws225{word-spacing:11.388994px;}
.ws229{word-spacing:11.507349px;}
.ws231{word-spacing:11.534248px;}
.ws55{word-spacing:11.609565px;}
.ws232{word-spacing:11.717161px;}
.ws228{word-spacing:11.722541px;}
.ws208{word-spacing:11.749440px;}
.wsd6{word-spacing:11.770959px;}
.wsd7{word-spacing:11.808617px;}
.ws127{word-spacing:11.819377px;}
.ws128{word-spacing:11.846276px;}
.wsa5{word-spacing:11.851655px;}
.wse{word-spacing:11.867795px;}
.ws109{word-spacing:11.883934px;}
.ws245{word-spacing:11.894694px;}
.wsd8{word-spacing:11.900073px;}
.ws149{word-spacing:11.986150px;}
.ws23b{word-spacing:12.018429px;}
.ws138{word-spacing:12.050707px;}
.wsa{word-spacing:12.201341px;}
.ws135{word-spacing:12.222860px;}
.ws51{word-spacing:12.233620px;}
.ws1e{word-spacing:12.244379px;}
.wsc{word-spacing:12.282038px;}
.ws290{word-spacing:12.288122px;}
.wsf6{word-spacing:12.292797px;}
.ws134{word-spacing:12.325076px;}
.ws50{word-spacing:12.357355px;}
.wsc9{word-spacing:12.427292px;}
.ws273{word-spacing:12.458479px;}
.ws296{word-spacing:12.462962px;}
.ws1a2{word-spacing:12.529508px;}
.ws2ad{word-spacing:12.606421px;}
.ws248{word-spacing:12.637103px;}
.ws30{word-spacing:12.642483px;}
.ws33{word-spacing:12.653243px;}
.ws112{word-spacing:12.664002px;}
.ws21a{word-spacing:12.696281px;}
.ws116{word-spacing:12.728559px;}
.ws271{word-spacing:12.740913px;}
.wsb6{word-spacing:12.744699px;}
.ws21b{word-spacing:12.755458px;}
.ws27a{word-spacing:12.767812px;}
.ws275{word-spacing:12.803676px;}
.ws2f{word-spacing:12.820016px;}
.ws84{word-spacing:12.846915px;}
.ws10c{word-spacing:12.906092px;}
.ws32{word-spacing:12.981409px;}
.ws4f{word-spacing:12.997548px;}
.ws31{word-spacing:13.067486px;}
.ws26e{word-spacing:13.081627px;}
.ws100{word-spacing:13.083625px;}
.ws233{word-spacing:13.132043px;}
.ws29d{word-spacing:13.153357px;}
.wsb7{word-spacing:13.180461px;}
.ws213{word-spacing:13.185841px;}
.wsf1{word-spacing:13.245018px;}
.ws15c{word-spacing:13.261158px;}
.ws146{word-spacing:13.401032px;}
.ws2c{word-spacing:13.417171px;}
.ws12c{word-spacing:13.438690px;}
.ws170{word-spacing:13.444070px;}
.ws20d{word-spacing:13.449450px;}
.ws2b{word-spacing:13.470969px;}
.ws145{word-spacing:13.476349px;}
.wsf0{word-spacing:13.497868px;}
.ws129{word-spacing:13.573185px;}
.ws2d{word-spacing:13.578565px;}
.wsff{word-spacing:13.583944px;}
.ws19b{word-spacing:13.600084px;}
.ws144{word-spacing:13.626983px;}
.ws70{word-spacing:13.678411px;}
.ws20c{word-spacing:13.713059px;}
.ws19c{word-spacing:13.745338px;}
.ws76{word-spacing:13.749544px;}
.ws1fa{word-spacing:13.756097px;}
.ws72{word-spacing:13.778834px;}
.ws6e{word-spacing:13.791387px;}
.ws2e{word-spacing:13.799136px;}
.ws171{word-spacing:13.804515px;}
.wsf8{word-spacing:13.815275px;}
.ws114{word-spacing:13.820655px;}
.ws77{word-spacing:13.833230px;}
.ws6f{word-spacing:13.845783px;}
.ws1c1{word-spacing:13.849967px;}
.ws40{word-spacing:13.852934px;}
.ws1de{word-spacing:13.862520px;}
.ws16f{word-spacing:13.890592px;}
.ws19d{word-spacing:13.912111px;}
.ws6d{word-spacing:13.921100px;}
.ws74{word-spacing:13.929468px;}
.wsf2{word-spacing:13.939010px;}
.ws237{word-spacing:13.949770px;}
.ws41{word-spacing:13.960529px;}
.ws7a{word-spacing:13.962942px;}
.ws1fb{word-spacing:13.987428px;}
.ws7d{word-spacing:13.989530px;}
.ws122{word-spacing:13.998188px;}
.ws42{word-spacing:14.003567px;}
.ws78{word-spacing:14.050812px;}
.ws1df{word-spacing:14.075918px;}
.ws73{word-spacing:14.105208px;}
.ws6c{word-spacing:14.147051px;}
.ws247{word-spacing:14.154201px;}
.ws29c{word-spacing:14.157567px;}
.ws297{word-spacing:14.166533px;}
.ws238{word-spacing:14.175720px;}
.ws79{word-spacing:14.180525px;}
.ws71{word-spacing:14.222368px;}
.ws217{word-spacing:14.347873px;}
.ws209{word-spacing:14.364013px;}
.ws75{word-spacing:14.368818px;}
.ws14a{word-spacing:14.396291px;}
.ws132{word-spacing:14.412431px;}
.ws2a6{word-spacing:14.440001px;}
.ws27d{word-spacing:14.466899px;}
.ws2ae{word-spacing:14.489315px;}
.ws14b{word-spacing:14.493127px;}
.ws6b{word-spacing:14.541545px;}
.ws292{word-spacing:14.556561px;}
.wsed{word-spacing:14.584584px;}
.ws65{word-spacing:14.600723px;}
.ws25{word-spacing:14.627622px;}
.ws27e{word-spacing:14.668638px;}
.wsee{word-spacing:14.702939px;}
.ws201{word-spacing:14.708319px;}
.ws1e6{word-spacing:14.771749px;}
.ws287{word-spacing:14.780715px;}
.ws272{word-spacing:14.803130px;}
.wsc7{word-spacing:14.832053px;}
.ws58{word-spacing:14.837433px;}
.ws22{word-spacing:14.848193px;}
.ws24{word-spacing:14.853573px;}
.ws28e{word-spacing:14.856927px;}
.ws279{word-spacing:14.870376px;}
.ws258{word-spacing:14.883826px;}
.ws26a{word-spacing:14.897275px;}
.ws2a2{word-spacing:14.910724px;}
.ws159{word-spacing:14.912750px;}
.ws153{word-spacing:14.939649px;}
.ws17e{word-spacing:14.946589px;}
.ws118{word-spacing:14.961168px;}
.ws27b{word-spacing:14.982453px;}
.ws2b6{word-spacing:14.991420px;}
.ws158{word-spacing:14.998827px;}
.ws2aa{word-spacing:15.000386px;}
.ws2a1{word-spacing:15.009352px;}
.ws234{word-spacing:15.020346px;}
.ws27c{word-spacing:15.040733px;}
.ws26f{word-spacing:15.049700px;}
.ws257{word-spacing:15.067632px;}
.ws1fd{word-spacing:15.068764px;}
.ws17d{word-spacing:15.076598px;}
.ws28a{word-spacing:15.094530px;}
.ws1fc{word-spacing:15.133321px;}
.ws2b0{word-spacing:15.139361px;}
.ws1c0{word-spacing:15.142909px;}
.ws24b{word-spacing:15.149460px;}
.ws254{word-spacing:15.176359px;}
.ws281{word-spacing:15.179709px;}
.ws24c{word-spacing:15.214018px;}
.ws1bf{word-spacing:15.218226px;}
.ws57{word-spacing:15.224777px;}
.ws284{word-spacing:15.246955px;}
.wscf{word-spacing:15.251676px;}
.ws23{word-spacing:15.262436px;}
.wsd1{word-spacing:15.267816px;}
.ws1fe{word-spacing:15.273195px;}
.ws1bd{word-spacing:15.289359px;}
.ws157{word-spacing:15.300094px;}
.ws1bc{word-spacing:15.335386px;}
.ws94{word-spacing:15.353892px;}
.ws1d0{word-spacing:15.369734px;}
.ws108{word-spacing:15.384080px;}
.ws1cc{word-spacing:15.393644px;}
.ws12{word-spacing:15.396930px;}
.ws1d5{word-spacing:15.398426px;}
.ws1c3{word-spacing:15.412773px;}
.ws1bb{word-spacing:15.427440px;}
.ws1c4{word-spacing:15.431901px;}
.ws1a4{word-spacing:15.446248px;}
.ws236{word-spacing:15.450728px;}
.ws1b3{word-spacing:15.451030px;}
.ws221{word-spacing:15.472247px;}
.ws1c7{word-spacing:15.474940px;}
.ws105{word-spacing:15.477627px;}
.ws1d7{word-spacing:15.484505px;}
.ws1c9{word-spacing:15.494069px;}
.wsea{word-spacing:15.499146px;}
.ws1c5{word-spacing:15.503633px;}
.ws8a{word-spacing:15.504526px;}
.ws121{word-spacing:15.515286px;}
.ws1c2{word-spacing:15.532326px;}
.ws1cd{word-spacing:15.546672px;}
.ws1d1{word-spacing:15.551454px;}
.ws90{word-spacing:15.552944px;}
.ws1ba{word-spacing:15.556236px;}
.ws1b7{word-spacing:15.565801px;}
.ws1d2{word-spacing:15.570583px;}
.ws1d4{word-spacing:15.580147px;}
.ws1b9{word-spacing:15.584929px;}
.wsce{word-spacing:15.590602px;}
.ws1a7{word-spacing:15.613622px;}
.ws1ac{word-spacing:15.618404px;}
.ws1a8{word-spacing:15.627968px;}
.ws1b6{word-spacing:15.632750px;}
.ws1ae{word-spacing:15.666225px;}
.ws91{word-spacing:15.682059px;}
.ws1b2{word-spacing:15.685354px;}
.ws123{word-spacing:15.687438px;}
.ws1ca{word-spacing:15.709264px;}
.ws2b5{word-spacing:15.717678px;}
.wsb1{word-spacing:15.719717px;}
.ws1aa{word-spacing:15.723611px;}
.ws1c6{word-spacing:15.737957px;}
.ws137{word-spacing:15.757376px;}
.ws20f{word-spacing:15.762755px;}
.ws1a6{word-spacing:15.785778px;}
.ws1d9{word-spacing:15.790560px;}
.ws244{word-spacing:15.811173px;}
.ws1af{word-spacing:15.814471px;}
.ws214{word-spacing:15.816553px;}
.ws1ad{word-spacing:15.824035px;}
.ws230{word-spacing:15.832693px;}
.ws136{word-spacing:15.838072px;}
.ws20e{word-spacing:15.843452px;}
.ws98{word-spacing:15.854212px;}
.ws10{word-spacing:15.870351px;}
.ws4c{word-spacing:15.910997px;}
.ws288{word-spacing:15.914934px;}
.ws1b4{word-spacing:15.929242px;}
.ws2b3{word-spacing:16.058393px;}
.ws25d{word-spacing:16.058643px;}
.wsab{word-spacing:16.074783px;}
.ws285{word-spacing:16.148054px;}
.ws1b8{word-spacing:16.163566px;}
.ws3f{word-spacing:16.187758px;}
.wsb0{word-spacing:16.209277px;}
.wsac{word-spacing:16.220037px;}
.ws49{word-spacing:16.230796px;}
.ws3d{word-spacing:16.273835px;}
.ws202{word-spacing:16.354531px;}
.ws4a{word-spacing:16.386810px;}
.ws3e{word-spacing:16.402949px;}
.ws3c{word-spacing:16.451367px;}
.ws270{word-spacing:16.484285px;}
.ws24d{word-spacing:16.505165px;}
.ws24e{word-spacing:16.542823px;}
.ws1b{word-spacing:16.548203px;}
.ws1c{word-spacing:16.575102px;}
.ws133{word-spacing:16.612761px;}
.ws207{word-spacing:16.666558px;}
.ws22a{word-spacing:16.774154px;}
.ws36{word-spacing:16.806433px;}
.ws192{word-spacing:16.849471px;}
.ws1a{word-spacing:16.887129px;}
.wse3{word-spacing:16.919408px;}
.ws1d{word-spacing:16.940927px;}
.ws16c{word-spacing:16.962446px;}
.ws34{word-spacing:17.010864px;}
.ws191{word-spacing:17.032383px;}
.ws101{word-spacing:17.048523px;}
.wsb8{word-spacing:17.113080px;}
.ws35{word-spacing:17.129220px;}
.ws16b{word-spacing:17.134599px;}
.ws11c{word-spacing:17.177638px;}
.ws262{word-spacing:17.183017px;}
.ws293{word-spacing:17.210544px;}
.ws2b4{word-spacing:17.237443px;}
.ws125{word-spacing:17.290613px;}
.wsc3{word-spacing:17.306752px;}
.ws265{word-spacing:17.331587px;}
.wsc2{word-spacing:17.339031px;}
.ws9a{word-spacing:17.387449px;}
.wsdc{word-spacing:17.398209px;}
.ws96{word-spacing:17.462766px;}
.ws19f{word-spacing:17.468146px;}
.ws1a0{word-spacing:17.527323px;}
.ws88{word-spacing:17.554222px;}
.ws1da{word-spacing:17.557239px;}
.ws87{word-spacing:17.570361px;}
.ws106{word-spacing:17.591881px;}
.ws156{word-spacing:17.597260px;}
.ws18f{word-spacing:17.624159px;}
.ws16d{word-spacing:17.634919px;}
.wsdb{word-spacing:17.645678px;}
.wsd{word-spacing:17.672577px;}
.ws26{word-spacing:17.688717px;}
.ws131{word-spacing:17.704856px;}
.ws25f{word-spacing:17.710236px;}
.ws5d{word-spacing:17.731755px;}
.ws263{word-spacing:17.737135px;}
.ws1dd{word-spacing:17.737163px;}
.ws68{word-spacing:17.742514px;}
.ws1f{word-spacing:17.747894px;}
.ws200{word-spacing:17.758654px;}
.wsd9{word-spacing:17.764034px;}
.wse0{word-spacing:17.769413px;}
.ws9f{word-spacing:17.774793px;}
.ws8b{word-spacing:17.785553px;}
.ws92{word-spacing:17.790932px;}
.ws176{word-spacing:17.801692px;}
.ws1dc{word-spacing:17.812480px;}
.wsa0{word-spacing:17.828591px;}
.ws25e{word-spacing:17.833971px;}
.ws1db{word-spacing:17.837586px;}
.wsf{word-spacing:17.839350px;}
.ws22c{word-spacing:17.844730px;}
.ws240{word-spacing:17.855490px;}
.wse9{word-spacing:17.871629px;}
.wsa4{word-spacing:17.887769px;}
.ws18c{word-spacing:17.893148px;}
.ws4b{word-spacing:17.898528px;}
.ws29{word-spacing:17.903908px;}
.wsca{word-spacing:17.946946px;}
.ws22b{word-spacing:17.957706px;}
.wsb9{word-spacing:17.968465px;}
.ws10e{word-spacing:17.973845px;}
.ws16e{word-spacing:17.989984px;}
.ws246{word-spacing:18.011503px;}
.ws11{word-spacing:18.016883px;}
.ws140{word-spacing:18.049162px;}
.ws10d{word-spacing:18.059921px;}
.ws190{word-spacing:18.076061px;}
.ws4d{word-spacing:18.081441px;}
.ws10f{word-spacing:18.108339px;}
.wse1{word-spacing:18.124479px;}
.ws178{word-spacing:18.135238px;}
.wse2{word-spacing:18.172897px;}
.ws104{word-spacing:18.189036px;}
.wsfe{word-spacing:18.194416px;}
.wsad{word-spacing:18.210555px;}
.ws1eb{word-spacing:18.221315px;}
.ws11d{word-spacing:18.248214px;}
.wsc4{word-spacing:18.291252px;}
.ws1a1{word-spacing:18.334290px;}
.ws1ff{word-spacing:18.447266px;}
.ws177{word-spacing:18.538722px;}
.ws61{word-spacing:18.576380px;}
.ws249{word-spacing:18.651697px;}
.ws268{word-spacing:18.698927px;}
.ws24a{word-spacing:18.780812px;}
.ws259{word-spacing:18.785338px;}
.ws2a4{word-spacing:18.793071px;}
.ws280{word-spacing:18.918598px;}
.ws266{word-spacing:18.927564px;}
.ws267{word-spacing:19.003776px;}
.ws95{word-spacing:19.092839px;}
.ws10a{word-spacing:19.103599px;}
.ws19e{word-spacing:19.227334px;}
.wsba{word-spacing:19.238093px;}
.wsbb{word-spacing:19.248853px;}
.ws23c{word-spacing:19.259612px;}
.ws23d{word-spacing:19.264992px;}
.ws175{word-spacing:19.361828px;}
.wsb2{word-spacing:19.383347px;}
.ws174{word-spacing:19.485563px;}
.ws29f{word-spacing:19.514847px;}
.wsa8{word-spacing:19.598539px;}
.wsbc{word-spacing:19.663096px;}
.ws13e{word-spacing:19.770691px;}
.ws13f{word-spacing:19.824489px;}
.ws52{word-spacing:19.840629px;}
.ws28b{word-spacing:19.891426px;}
.ws173{word-spacing:19.910566px;}
.ws206{word-spacing:19.937465px;}
.ws283{word-spacing:19.958672px;}
.ws7c{word-spacing:20.030804px;}
.ws102{word-spacing:20.109618px;}
.ws205{word-spacing:20.125757px;}
.ws27{word-spacing:20.131137px;}
.wsae{word-spacing:20.141896px;}
.ws126{word-spacing:20.201074px;}
.wsbd{word-spacing:20.206454px;}
.ws1f7{word-spacing:20.249492px;}
.ws28{word-spacing:20.292530px;}
.ws21e{word-spacing:20.314049px;}
.ws1f5{word-spacing:20.351708px;}
.ws21c{word-spacing:20.437784px;}
.ws1f6{word-spacing:20.459303px;}
.ws2ab{word-spacing:20.483193px;}
.ws4{word-spacing:20.486235px;}
.ws21d{word-spacing:20.518481px;}
.ws1f4{word-spacing:20.529240px;}
.ws13b{word-spacing:20.556139px;}
.ws9{word-spacing:20.574105px;}
.ws11e{word-spacing:20.593798px;}
.ws5{word-spacing:20.605487px;}
.ws13c{word-spacing:20.652975px;}
.ws143{word-spacing:20.669115px;}
.ws8{word-spacing:20.687080px;}
.wsa7{word-spacing:20.712153px;}
.ws6{word-spacing:20.712186px;}
.ws25c{word-spacing:20.722913px;}
.ws7{word-spacing:20.749845px;}
.ws119{word-spacing:20.776710px;}
.ws2{word-spacing:20.793779px;}
.ws142{word-spacing:20.798229px;}
.wsfa{word-spacing:20.803609px;}
.wsb3{word-spacing:20.889686px;}
.ws26c{word-spacing:20.953916px;}
.ws286{word-spacing:20.976331px;}
.ws26b{word-spacing:21.016679px;}
.wsa6{word-spacing:21.029560px;}
.ws22f{word-spacing:21.034940px;}
.wsd0{word-spacing:21.051079px;}
.ws210{word-spacing:21.110257px;}
.ws13a{word-spacing:21.142535px;}
.ws139{word-spacing:21.201713px;}
.ws269{word-spacing:21.290147px;}
.ws113{word-spacing:21.314688px;}
.wse7{word-spacing:21.368486px;}
.ws193{word-spacing:21.454563px;}
.ws194{word-spacing:21.535259px;}
.wscc{word-spacing:21.551399px;}
.ws165{word-spacing:21.562158px;}
.ws60{word-spacing:21.583677px;}
.ws16a{word-spacing:21.712792px;}
.ws169{word-spacing:21.798869px;}
.ws11b{word-spacing:21.820388px;}
.ws251{word-spacing:21.847287px;}
.ws172{word-spacing:21.874185px;}
.ws89{word-spacing:21.884945px;}
.wsec{word-spacing:21.906464px;}
.ws17a{word-spacing:21.911844px;}
.ws161{word-spacing:21.922603px;}
.ws160{word-spacing:21.965642px;}
.wscd{word-spacing:21.976401px;}
.ws17c{word-spacing:21.987161px;}
.ws179{word-spacing:21.997920px;}
.ws17b{word-spacing:22.003300px;}
.wsf5{word-spacing:22.089377px;}
.ws218{word-spacing:22.100136px;}
.ws8e{word-spacing:22.180833px;}
.ws239{word-spacing:22.186213px;}
.ws8d{word-spacing:22.229251px;}
.ws162{word-spacing:22.240011px;}
.ws12b{word-spacing:22.277669px;}
.wsf4{word-spacing:22.283049px;}
.ws219{word-spacing:22.320707px;}
.ws14e{word-spacing:22.379885px;}
.ws21f{word-spacing:22.412163px;}
.ws12a{word-spacing:22.428303px;}
.ws14c{word-spacing:22.476721px;}
.ws220{word-spacing:22.557418px;}
.ws14d{word-spacing:22.584316px;}
.ws1e4{word-spacing:22.608172px;}
.ws63{word-spacing:22.616595px;}
.ws155{word-spacing:22.632734px;}
.wsd4{word-spacing:22.659633px;}
.wsda{word-spacing:22.713431px;}
.ws255{word-spacing:22.777989px;}
.ws166{word-spacing:22.842546px;}
.wsa1{word-spacing:22.890964px;}
.ws188{word-spacing:22.901723px;}
.ws167{word-spacing:22.950141px;}
.ws5f{word-spacing:22.998559px;}
.wsaf{word-spacing:23.246029px;}
.ws66{word-spacing:23.267549px;}
.ws150{word-spacing:23.278308px;}
.ws29a{word-spacing:23.312016px;}
.ws14{word-spacing:23.380524px;}
.ws151{word-spacing:23.412803px;}
.ws1ec{word-spacing:23.418182px;}
.ws16{word-spacing:23.466600px;}
.ws13{word-spacing:23.477360px;}
.wseb{word-spacing:23.525778px;}
.wsd5{word-spacing:23.547297px;}
.ws67{word-spacing:23.563436px;}
.ws15{word-spacing:23.654893px;}
.wse4{word-spacing:23.676412px;}
.wsa3{word-spacing:23.735589px;}
.ws28c{word-spacing:23.800672px;}
.ws8f{word-spacing:23.864704px;}
.ws252{word-spacing:24.230529px;}
.ws189{word-spacing:24.569455px;}
.ws18a{word-spacing:24.634013px;}
.ws45{word-spacing:24.682431px;}
.ws117{word-spacing:24.752368px;}
.ws2a{word-spacing:24.762834px;}
.ws47{word-spacing:24.779267px;}
.wsfb{word-spacing:24.811545px;}
.ws46{word-spacing:24.822305px;}
.ws278{word-spacing:24.822814px;}
.ws1f8{word-spacing:24.838444px;}
.ws1f9{word-spacing:24.843824px;}
.wsfc{word-spacing:24.865343px;}
.ws48{word-spacing:24.978319px;}
.wsdd{word-spacing:25.037496px;}
.ws264{word-spacing:25.059015px;}
.ws69{word-spacing:25.215029px;}
.ws199{word-spacing:25.290346px;}
.ws14f{word-spacing:25.419461px;}
.ws243{word-spacing:25.613133px;}
.ws10b{word-spacing:25.672310px;}
.ws19a{word-spacing:25.693829px;}
.ws124{word-spacing:25.731488px;}
.ws5c{word-spacing:25.903641px;}
.wsfd{word-spacing:25.925160px;}
.ws86{word-spacing:26.016616px;}
.wsd2{word-spacing:26.043515px;}
.ws5b{word-spacing:26.065034px;}
.ws152{word-spacing:26.167250px;}
.wsef{word-spacing:26.231807px;}
.ws242{word-spacing:26.274846px;}
.ws20b{word-spacing:26.344783px;}
.ws62{word-spacing:26.360922px;}
.ws110{word-spacing:26.387821px;}
.ws115{word-spacing:26.414720px;}
.ws6a{word-spacing:26.549214px;}
.ws25b{word-spacing:26.759026px;}
.wsf3{word-spacing:26.812824px;}
.wsaa{word-spacing:26.834343px;}
.wsa9{word-spacing:26.925799px;}
.ws25a{word-spacing:26.979597px;}
.ws253{word-spacing:27.060293px;}
.ws222{word-spacing:27.157129px;}
.ws1f3{word-spacing:27.420739px;}
.ws15a{word-spacing:27.522954px;}
.ws15b{word-spacing:27.576752px;}
.ws9c{word-spacing:27.781184px;}
.ws99{word-spacing:28.007135px;}
.ws197{word-spacing:28.060932px;}
.ws24f{word-spacing:28.098591px;}
.ws196{word-spacing:28.259984px;}
.ws4e{word-spacing:28.371085px;}
.ws103{word-spacing:28.372960px;}
.ws85{word-spacing:28.415998px;}
.ws198{word-spacing:28.437517px;}
.ws215{word-spacing:28.464416px;}
.ws216{word-spacing:28.475176px;}
.ws1f1{word-spacing:28.674227px;}
.ws1f0{word-spacing:28.722645px;}
.ws1f2{word-spacing:28.781823px;}
.ws299{word-spacing:28.785857px;}
.ws2a7{word-spacing:28.839654px;}
.ws147{word-spacing:28.851760px;}
.wsdf{word-spacing:28.857140px;}
.ws43{word-spacing:28.867899px;}
.wsde{word-spacing:28.932457px;}
.ws18e{word-spacing:29.066951px;}
.ws44{word-spacing:29.088470px;}
.ws64{word-spacing:29.120749px;}
.ws298{word-spacing:29.364174px;}
.ws82{word-spacing:29.438156px;}
.ws1e5{word-spacing:29.480734px;}
.ws81{word-spacing:29.497334px;}
.ws15f{word-spacing:29.556511px;}
.wsf7{word-spacing:29.728664px;}
.ws83{word-spacing:29.803981px;}
.wsbe{word-spacing:29.836260px;}
.wsc5{word-spacing:29.916957px;}
.ws8c{word-spacing:30.551771px;}
.ws18b{word-spacing:30.691645px;}
.ws2a3{word-spacing:30.843590px;}
.ws154{word-spacing:30.853038px;}
.ws53{word-spacing:30.998292px;}
.ws203{word-spacing:31.009052px;}
.wse8{word-spacing:31.025191px;}
.ws204{word-spacing:31.057470px;}
.ws7f{word-spacing:32.289440px;}
.ws80{word-spacing:32.423934px;}
.ws148{word-spacing:32.752101px;}
.ws211{word-spacing:32.773620px;}
.ws15d{word-spacing:32.967292px;}
.ws15e{word-spacing:33.021090px;}
.ws1a3{word-spacing:33.117926px;}
.wsc0{word-spacing:33.349256px;}
.wsd3{word-spacing:33.386915px;}
.wsbf{word-spacing:33.559068px;}
.ws29b{word-spacing:34.273147px;}
.wsc8{word-spacing:34.538188px;}
.ws274{word-spacing:34.739387px;}
.ws276{word-spacing:35.106999px;}
.ws1a5{word-spacing:35.229878px;}
.ws277{word-spacing:35.317704px;}
.ws29e{word-spacing:35.375984px;}
.ws2a8{word-spacing:35.411849px;}
.ws223{word-spacing:35.474269px;}
.ws59{word-spacing:35.624903px;}
.ws5a{word-spacing:35.856234px;}
.wscb{word-spacing:35.926171px;}
.ws11a{word-spacing:36.679340px;}
.ws168{word-spacing:37.405610px;}
.ws256{word-spacing:37.497067px;}
.ws2a9{word-spacing:37.644423px;}
.ws141{word-spacing:38.148020px;}
.ws5e{word-spacing:38.922708px;}
.ws212{word-spacing:38.938848px;}
.ws0{word-spacing:39.440139px;}
.ws1{word-spacing:40.205270px;}
.ws224{word-spacing:41.445825px;}
.ws13d{word-spacing:41.666396px;}
.wsa2{word-spacing:42.726213px;}
.ws9b{word-spacing:43.963562px;}
.ws18d{word-spacing:44.248691px;}
.ws241{word-spacing:45.410723px;}
.ws1b5{word-spacing:60.627717px;}
.ws1e1{word-spacing:70.424334px;}
.ws1e0{word-spacing:70.823618px;}
.ws1ab{word-spacing:83.534072px;}
.ws1e2{word-spacing:86.435929px;}
.ws1c8{word-spacing:96.206690px;}
.ws1b0{word-spacing:106.445209px;}
.ws1d6{word-spacing:119.251726px;}
.ws1d3{word-spacing:130.680993px;}
.ws1b1{word-spacing:152.229226px;}
.ws1e3{word-spacing:210.211626px;}
.ws1cf{word-spacing:233.644819px;}
.ws1d8{word-spacing:401.908493px;}
.ws1cb{word-spacing:402.582772px;}
._45{margin-left:-15.871856px;}
._12{margin-left:-9.889151px;}
._14{margin-left:-3.863311px;}
._4a{margin-left:-2.311324px;}
._19{margin-left:-1.092095px;}
._0{width:1.374846px;}
._1c{width:6.208266px;}
._15{width:7.655427px;}
._13{width:9.430873px;}
._6{width:10.678863px;}
._9{width:11.959251px;}
._4{width:13.454830px;}
._d{width:15.084903px;}
._a{width:16.182378px;}
._7{width:17.457386px;}
._5{width:19.049801px;}
._18{width:20.679874px;}
._3{width:21.791730px;}
._f{width:22.815647px;}
._8{width:24.472619px;}
._c{width:26.000477px;}
._10{width:27.878020px;}
._1b{width:28.910938px;}
._b{width:29.997653px;}
._20{width:31.078989px;}
._1e{width:32.085008px;}
._1a{width:33.311598px;}
._1d{width:34.764138px;}
._e{width:36.803075px;}
._4c{width:37.970487px;}
._2{width:39.021708px;}
._1{width:40.671522px;}
._17{width:44.060398px;}
._16{width:45.152494px;}
._4d{width:46.610414px;}
._35{width:48.906741px;}
._32{width:60.503382px;}
._3c{width:73.046883px;}
._3d{width:95.709350px;}
._34{width:106.583891px;}
._23{width:117.467996px;}
._24{width:125.879745px;}
._48{width:142.239377px;}
._37{width:176.092005px;}
._31{width:186.273138px;}
._28{width:187.449540px;}
._27{width:198.902717px;}
._49{width:200.150850px;}
._2d{width:221.923843px;}
._40{width:223.281965px;}
._46{width:279.175383px;}
._33{width:282.938912px;}
._3a{width:291.881476px;}
._4b{width:295.985278px;}
._3f{width:302.765581px;}
._39{width:314.787831px;}
._42{width:325.671936px;}
._47{width:326.857902px;}
._25{width:358.190352px;}
._3b{width:377.046251px;}
._2c{width:436.076741px;}
._2b{width:457.672795px;}
._22{width:470.555826px;}
._44{width:478.245475px;}
._29{width:481.961182px;}
._3e{width:492.161444px;}
._41{width:501.037059px;}
._2a{width:516.822837px;}
._43{width:537.084679px;}
._26{width:563.022898px;}
._36{width:608.835608px;}
._38{width:617.711223px;}
._2f{width:628.729227px;}
._2e{width:637.193579px;}
._30{width:646.547406px;}
._11{width:1402.399886px;}
._21{width:1839.677098px;}
._1f{width:2072.685895px;}
.fc3{color:rgb(138,142,146);}
.fc2{color:rgb(231,29,36);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(101,116,122);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.891000px;}
.fsf{font-size:31.876200px;}
.fs6{font-size:35.860800px;}
.fs10{font-size:36.811800px;}
.fsd{font-size:38.217000px;}
.fs2{font-size:41.837400px;}
.fs7{font-size:41.842800px;}
.fsb{font-size:41.976000px;}
.fse{font-size:44.830800px;}
.fs3{font-size:47.821200px;}
.fs4{font-size:53.797800px;}
.fsc{font-size:54.000000px;}
.fs5{font-size:56.787600px;}
.fs9{font-size:59.775600px;}
.fs1{font-size:62.764200px;}
.fs0{font-size:119.551800px;}
.fsa{font-size:241.198800px;}
.y0{bottom:0.000000px;}
.yf5{bottom:39.539095px;}
.y62{bottom:39.543300px;}
.y5f{bottom:70.158188px;}
.yf3{bottom:70.159357px;}
.y232{bottom:70.159790px;}
.y1ef{bottom:70.668541px;}
.yac{bottom:70.924223px;}
.y161{bottom:70.926127px;}
.y187{bottom:70.929076px;}
.y12e{bottom:70.929796px;}
.y4b{bottom:71.263386px;}
.y1c1{bottom:82.573659px;}
.yf2{bottom:86.656452px;}
.y231{bottom:86.656885px;}
.y1ee{bottom:87.165636px;}
.yab{bottom:87.336587px;}
.y160{bottom:87.338491px;}
.y186{bottom:87.341440px;}
.y12d{bottom:87.342160px;}
.y4a{bottom:87.675750px;}
.y48{bottom:87.675936px;}
.y5e{bottom:88.101426px;}
.y49{bottom:93.628500px;}
.y1c0{bottom:96.009450px;}
.yf1{bottom:103.068816px;}
.y230{bottom:103.069249px;}
.y1ed{bottom:103.578000px;}
.y1eb{bottom:103.579213px;}
.y15f{bottom:103.835586px;}
.y185{bottom:103.838536px;}
.y12c{bottom:103.839255px;}
.y47{bottom:104.088300px;}
.y5d{bottom:106.044665px;}
.y1ec{bottom:109.530750px;}
.yaa{bottom:111.318301px;}
.y1bf{bottom:117.853848px;}
.yf0{bottom:119.481180px;}
.y22f{bottom:119.481613px;}
.y1ea{bottom:119.991577px;}
.y15e{bottom:120.247950px;}
.y184{bottom:120.250899px;}
.y12b{bottom:120.251619px;}
.y45{bottom:120.586086px;}
.y5c{bottom:123.987904px;}
.y46{bottom:126.538650px;}
.y1be{bottom:130.557600px;}
.yef{bottom:135.893544px;}
.y22e{bottom:135.893977px;}
.y1e9{bottom:136.488672px;}
.y15d{bottom:136.660314px;}
.y183{bottom:136.663263px;}
.y12a{bottom:136.663983px;}
.y42{bottom:136.998132px;}
.y44{bottom:136.998450px;}
.y5b{bottom:137.423627px;}
.y43{bottom:142.951200px;}
.ya9{bottom:146.780466px;}
.y1bd{bottom:149.610850px;}
.y5a{bottom:150.859350px;}
.yee{bottom:152.390639px;}
.y22d{bottom:152.391072px;}
.y1e8{bottom:152.901036px;}
.y15c{bottom:153.157409px;}
.y182{bottom:153.160359px;}
.y129{bottom:153.161079px;}
.y41{bottom:153.410496px;}
.y1bc{bottom:158.407950px;}
.ya8{bottom:163.192830px;}
.y59{bottom:164.295073px;}
.yed{bottom:168.803003px;}
.y22c{bottom:168.803436px;}
.y1e7{bottom:169.313400px;}
.y1e5{bottom:169.314613px;}
.y15b{bottom:169.569773px;}
.y181{bottom:169.572723px;}
.y128{bottom:169.573442px;}
.y40{bottom:169.822860px;}
.y1e6{bottom:175.351200px;}
.y1ba{bottom:179.383800px;}
.ya7{bottom:179.689925px;}
.y58{bottom:182.238312px;}
.yec{bottom:185.215367px;}
.y22b{bottom:185.215800px;}
.y1e4{bottom:185.811708px;}
.y15a{bottom:185.982137px;}
.y180{bottom:185.985086px;}
.y127{bottom:185.985806px;}
.y3f{bottom:186.321300px;}
.y3d{bottom:186.322327px;}
.y3e{bottom:192.274050px;}
.y57{bottom:195.675081px;}
.ya6{bottom:196.102289px;}
.y229{bottom:201.713922px;}
.y1e3{bottom:202.224072px;}
.y159{bottom:202.479232px;}
.y17f{bottom:202.482182px;}
.y126{bottom:202.482902px;}
.y3c{bottom:202.734691px;}
.y1bb{bottom:202.863996px;}
.y22a{bottom:207.666150px;}
.y56{bottom:209.111850px;}
.ya5{bottom:212.514653px;}
.y55{bottom:216.765450px;}
.yeb{bottom:217.785900px;}
.ye9{bottom:217.786272px;}
.y228{bottom:218.126286px;}
.y1e2{bottom:218.636436px;}
.y158{bottom:218.891596px;}
.y17e{bottom:218.894546px;}
.y125{bottom:218.895265px;}
.y3b{bottom:219.147055px;}
.yea{bottom:223.738650px;}
.y54{bottom:227.055150px;}
.ya4{bottom:228.927017px;}
.y53{bottom:231.732300px;}
.ye8{bottom:234.198636px;}
.y227{bottom:234.538650px;}
.y225{bottom:234.539677px;}
.y1e1{bottom:235.048800px;}
.y1df{bottom:235.052758px;}
.y157{bottom:235.303960px;}
.y17d{bottom:235.306909px;}
.y124{bottom:235.307629px;}
.y3a{bottom:235.644150px;}
.y52{bottom:240.575931px;}
.y226{bottom:240.576300px;}
.y1e0{bottom:241.086600px;}
.ya3{bottom:245.424112px;}
.ye7{bottom:250.611000px;}
.y224{bottom:251.036772px;}
.y1de{bottom:251.549853px;}
.y156{bottom:251.716324px;}
.y17c{bottom:251.719273px;}
.y123{bottom:251.719993px;}
.y38{bottom:252.058418px;}
.y51{bottom:254.012700px;}
.y39{bottom:258.009450px;}
.y50{bottom:258.604800px;}
.ye5{bottom:267.110335px;}
.y223{bottom:267.449136px;}
.y1dd{bottom:267.962217px;}
.y155{bottom:268.213419px;}
.y17b{bottom:268.216369px;}
.y122{bottom:268.217088px;}
.y37{bottom:268.470782px;}
.ya2{bottom:269.319750px;}
.y4f{bottom:271.955866px;}
.ye6{bottom:273.061500px;}
.ye4{bottom:283.522699px;}
.y222{bottom:283.861500px;}
.y220{bottom:283.868725px;}
.y1dc{bottom:284.374581px;}
.y154{bottom:284.625783px;}
.y121{bottom:284.629452px;}
.y36{bottom:284.967877px;}
.y4e{bottom:289.814373px;}
.y221{bottom:289.899150px;}
.y17a{bottom:292.112006px;}
.ya1{bottom:296.192100px;}
.ye3{bottom:299.935063px;}
.y21f{bottom:300.365820px;}
.y1db{bottom:300.871676px;}
.y153{bottom:301.038147px;}
.y120{bottom:301.041816px;}
.y35{bottom:301.380241px;}
.y4d{bottom:307.757611px;}
.ye2{bottom:316.347427px;}
.y21e{bottom:316.778184px;}
.y1da{bottom:317.284040px;}
.y11f{bottom:317.538911px;}
.y34{bottom:317.792605px;}
.y179{bottom:324.596463px;}
.y152{bottom:325.019861px;}
.y4c{bottom:325.700850px;}
.ye1{bottom:332.844522px;}
.ya0{bottom:333.189185px;}
.y21d{bottom:333.190548px;}
.y1d9{bottom:333.696404px;}
.y11e{bottom:333.951275px;}
.y33{bottom:334.289700px;}
.y31{bottom:334.290222px;}
.y29e{bottom:339.230968px;}
.y265{bottom:339.659154px;}
.y32{bottom:340.242600px;}
.y178{bottom:341.008827px;}
.ye0{bottom:349.256886px;}
.y9f{bottom:349.601549px;}
.y21c{bottom:349.602912px;}
.y1d8{bottom:350.193499px;}
.y11d{bottom:350.363639px;}
.y30{bottom:350.702586px;}
.y29d{bottom:352.666758px;}
.y264{bottom:353.094945px;}
.y177{bottom:357.507267px;}
.y2a{bottom:358.526136px;}
.ydf{bottom:365.669250px;}
.y9e{bottom:366.098644px;}
.y21b{bottom:366.100007px;}
.y29c{bottom:366.102549px;}
.y263{bottom:366.530735px;}
.y1d7{bottom:366.605863px;}
.y11c{bottom:366.860735px;}
.y2f{bottom:367.114950px;}
.y2d{bottom:367.116300px;}
.y151{bottom:367.965300px;}
.y14f{bottom:367.965486px;}
.y2e{bottom:373.067700px;}
.y150{bottom:373.918200px;}
.y176{bottom:373.919631px;}
.y29{bottom:374.938500px;}
.y29b{bottom:379.538340px;}
.y262{bottom:379.966526px;}
.ydd{bottom:382.166899px;}
.y9d{bottom:382.511008px;}
.y21a{bottom:382.512371px;}
.y1d6{bottom:383.018227px;}
.y11b{bottom:383.273098px;}
.y2c{bottom:383.528664px;}
.y14e{bottom:384.377850px;}
.y14c{bottom:384.378186px;}
.yde{bottom:388.119600px;}
.y14d{bottom:390.330600px;}
.y175{bottom:390.331995px;}
.y29a{bottom:392.974131px;}
.y261{bottom:393.402317px;}
.ydc{bottom:395.602900px;}
.y28{bottom:398.919750px;}
.y9c{bottom:398.923372px;}
.y219{bottom:398.924735px;}
.y1d5{bottom:399.515322px;}
.y11a{bottom:399.685462px;}
.y2b{bottom:400.025759px;}
.y149{bottom:400.789578px;}
.y14b{bottom:400.790550px;}
.y299{bottom:406.409922px;}
.y14a{bottom:406.828350px;}
.y260{bottom:406.923286px;}
.y174{bottom:414.227633px;}
.y9b{bottom:415.420467px;}
.y218{bottom:415.421830px;}
.y1d4{bottom:415.927686px;}
.y148{bottom:417.288018px;}
.y298{bottom:419.930891px;}
.y25f{bottom:420.359077px;}
.y119{bottom:423.581100px;}
.y9a{bottom:431.832831px;}
.y217{bottom:431.834194px;}
.y173{bottom:432.170544px;}
.y1d3{bottom:432.340050px;}
.y297{bottom:433.366682px;}
.y147{bottom:433.700382px;}
.y25e{bottom:433.794868px;}
.ydb{bottom:440.078886px;}
.y27{bottom:441.864600px;}
.y296{bottom:446.802472px;}
.y25d{bottom:447.230658px;}
.y99{bottom:448.245195px;}
.y216{bottom:448.246558px;}
.y146{bottom:450.112746px;}
.y118{bottom:450.538650px;}
.y1d2{bottom:456.236250px;}
.yda{bottom:456.491250px;}
.yd8{bottom:456.494013px;}
.y295{bottom:460.238263px;}
.y25c{bottom:460.666449px;}
.yd9{bottom:462.444000px;}
.y26{bottom:464.317463px;}
.y172{bottom:464.741077px;}
.y98{bottom:464.742290px;}
.y215{bottom:464.743653px;}
.y1b9{bottom:466.526477px;}
.y145{bottom:466.611186px;}
.yd7{bottom:472.906377px;}
.y294{bottom:473.674054px;}
.y25b{bottom:474.102240px;}
.y25{bottom:479.284011px;}
.y1b7{bottom:479.962200px;}
.y171{bottom:481.153441px;}
.y97{bottom:481.154654px;}
.y214{bottom:481.156017px;}
.y144{bottom:483.023550px;}
.y142{bottom:483.024072px;}
.y1b8{bottom:484.639350px;}
.y293{bottom:487.109845px;}
.y25a{bottom:487.623209px;}
.y143{bottom:488.976300px;}
.yd6{bottom:489.403472px;}
.y1d1{bottom:491.783917px;}
.y24{bottom:494.165827px;}
.y170{bottom:497.565805px;}
.y96{bottom:497.567018px;}
.y213{bottom:497.568381px;}
.y141{bottom:499.436436px;}
.y117{bottom:499.437968px;}
.y292{bottom:500.630814px;}
.y259{bottom:501.059000px;}
.y1b6{bottom:503.518052px;}
.yd5{bottom:505.815836px;}
.y1d0{bottom:508.196281px;}
.y23{bottom:509.132375px;}
.y16f{bottom:514.062900px;}
.y95{bottom:514.064113px;}
.y212{bottom:514.065476px;}
.y291{bottom:514.066605px;}
.y258{bottom:514.494791px;}
.y140{bottom:515.848800px;}
.y13e{bottom:515.849491px;}
.y116{bottom:515.850332px;}
.y1b5{bottom:518.484893px;}
.y13f{bottom:521.886600px;}
.yd4{bottom:522.228200px;}
.y22{bottom:524.098923px;}
.y1cf{bottom:524.608645px;}
.y290{bottom:527.502395px;}
.y257{bottom:527.930582px;}
.y94{bottom:530.476477px;}
.y211{bottom:530.477840px;}
.y1b3{bottom:531.411000px;}
.y13d{bottom:532.346586px;}
.y115{bottom:532.347427px;}
.y1b4{bottom:533.366850px;}
.y1b2{bottom:533.367182px;}
.yd3{bottom:538.640564px;}
.y21{bottom:538.980740px;}
.y28f{bottom:540.938186px;}
.y1ce{bottom:541.107085px;}
.y256{bottom:541.366372px;}
.y93{bottom:546.888841px;}
.y210{bottom:546.890204px;}
.y1b1{bottom:548.334022px;}
.y13c{bottom:548.758950px;}
.y114{bottom:548.759791px;}
.y13a{bottom:548.771270px;}
.y20{bottom:553.947288px;}
.y28e{bottom:554.373977px;}
.y13b{bottom:554.711700px;}
.y255{bottom:554.802163px;}
.yd2{bottom:555.139004px;}
.y1aa{bottom:556.157199px;}
.y1cd{bottom:557.519449px;}
.y1b0{bottom:563.300862px;}
.y92{bottom:563.301205px;}
.y20f{bottom:563.302568px;}
.y113{bottom:565.172155px;}
.y139{bottom:565.183634px;}
.y28d{bottom:567.809768px;}
.y254{bottom:568.237954px;}
.y1f{bottom:568.913836px;}
.y1a9{bottom:569.678700px;}
.yd1{bottom:571.551368px;}
.y1cc{bottom:573.931813px;}
.y1af{bottom:578.267702px;}
.y111{bottom:579.373200px;}
.y91{bottom:579.798300px;}
.y20e{bottom:579.799663px;}
.y8f{bottom:579.799849px;}
.y28c{bottom:581.245558px;}
.y112{bottom:581.669250px;}
.y110{bottom:581.676416px;}
.y138{bottom:581.680730px;}
.y253{bottom:581.758923px;}
.y1e{bottom:583.880384px;}
.y90{bottom:585.751050px;}
.yd0{bottom:587.963732px;}
.y1cb{bottom:590.428908px;}
.y1ae{bottom:593.149660px;}
.y1a8{bottom:593.151045px;}
.y28b{bottom:594.766528px;}
.y252{bottom:595.194714px;}
.y20d{bottom:596.212027px;}
.y8e{bottom:596.212213px;}
.y10f{bottom:598.088780px;}
.y137{bottom:598.093094px;}
.y1d{bottom:598.762200px;}
.ycf{bottom:604.460827px;}
.y1ca{bottom:606.841272px;}
.y1ad{bottom:608.116500px;}
.y1a7{bottom:608.117885px;}
.y28a{bottom:608.202318px;}
.y251{bottom:608.630505px;}
.y20c{bottom:612.624391px;}
.y8d{bottom:612.624577px;}
.y10e{bottom:614.501144px;}
.y136{bottom:614.505457px;}
.yce{bottom:620.873191px;}
.y289{bottom:621.638109px;}
.y1c{bottom:621.641626px;}
.y250{bottom:622.066295px;}
.y1a6{bottom:623.084725px;}
.y1c9{bottom:623.253636px;}
.y1ac{bottom:628.355850px;}
.y20b{bottom:629.121486px;}
.y8c{bottom:629.121672px;}
.y10d{bottom:630.998239px;}
.y135{bottom:631.002553px;}
.y288{bottom:635.095247px;}
.y24f{bottom:635.502086px;}
.ycd{bottom:637.285555px;}
.y1c7{bottom:637.455000px;}
.y1a5{bottom:637.966683px;}
.y1b{bottom:638.053990px;}
.y1c8{bottom:639.666000px;}
.y1c6{bottom:639.666655px;}
.y20a{bottom:645.533850px;}
.y8b{bottom:645.534036px;}
.y208{bottom:645.535754px;}
.y10c{bottom:647.410603px;}
.y134{bottom:647.414917px;}
.y287{bottom:648.531037px;}
.y24e{bottom:648.937877px;}
.y209{bottom:651.486600px;}
.y1a4{bottom:652.933523px;}
.ycc{bottom:653.782650px;}
.y1a{bottom:654.466354px;}
.y1c5{bottom:656.163750px;}
.y89{bottom:661.946400px;}
.y207{bottom:661.948118px;}
.y286{bottom:661.966828px;}
.y24d{bottom:662.458846px;}
.y10b{bottom:663.822967px;}
.y1a3{bottom:667.900363px;}
.y8a{bottom:667.984200px;}
.y1c4{bottom:670.365300px;}
.y19{bottom:670.964794px;}
.y133{bottom:671.310554px;}
.y1c3{bottom:672.576712px;}
.y285{bottom:675.487797px;}
.y24c{bottom:675.894637px;}
.y88{bottom:678.444000px;}
.y86{bottom:678.445213px;}
.yca{bottom:680.315658px;}
.y10a{bottom:680.320062px;}
.y1a2{bottom:682.867203px;}
.y87{bottom:684.396750px;}
.ycb{bottom:686.267700px;}
.y18{bottom:687.377158px;}
.y284{bottom:688.923588px;}
.y24b{bottom:689.330428px;}
.y85{bottom:694.857577px;}
.y1c2{bottom:696.472350px;}
.yc9{bottom:696.728022px;}
.y109{bottom:696.732426px;}
.y1a1{bottom:697.749161px;}
.y283{bottom:702.359379px;}
.y24a{bottom:702.766218px;}
.y17{bottom:703.789522px;}
.y84{bottom:711.269941px;}
.y132{bottom:711.279630px;}
.y1a0{bottom:712.716001px;}
.yc8{bottom:713.140386px;}
.y108{bottom:713.144790px;}
.y282{bottom:715.795170px;}
.y249{bottom:716.202009px;}
.y16{bottom:720.286617px;}
.y83{bottom:727.682305px;}
.y19f{bottom:727.682841px;}
.y131{bottom:727.691994px;}
.y281{bottom:729.230960px;}
.yc7{bottom:729.552750px;}
.yc5{bottom:729.553777px;}
.y107{bottom:729.557153px;}
.y248{bottom:729.637800px;}
.yc6{bottom:735.590550px;}
.y15{bottom:736.698981px;}
.y19e{bottom:742.649681px;}
.y280{bottom:742.666751px;}
.y82{bottom:744.179400px;}
.y80{bottom:744.180427px;}
.y130{bottom:744.189089px;}
.yc4{bottom:746.050872px;}
.y81{bottom:750.132150px;}
.y247{bottom:751.322700px;}
.y14{bottom:753.111345px;}
.y106{bottom:753.538868px;}
.y27f{bottom:756.102542px;}
.y19d{bottom:757.531638px;}
.y7f{bottom:760.592791px;}
.y205{bottom:760.592977px;}
.y12f{bottom:760.601453px;}
.yc3{bottom:762.463236px;}
.y206{bottom:766.544700px;}
.y13{bottom:769.608440px;}
.y27e{bottom:769.623511px;}
.y19c{bottom:772.498478px;}
.y233{bottom:773.092800px;}
.yc2{bottom:776.664450px;}
.y7e{bottom:777.005155px;}
.y204{bottom:777.005341px;}
.yc1{bottom:778.875600px;}
.y27d{bottom:783.059302px;}
.y12{bottom:786.020804px;}
.y246{bottom:786.790026px;}
.y19b{bottom:787.465318px;}
.ybe{bottom:793.077150px;}
.y7d{bottom:793.502250px;}
.y203{bottom:793.502436px;}
.y7b{bottom:793.502772px;}
.y105{bottom:793.507943px;}
.ybf{bottom:795.373200px;}
.ybd{bottom:795.382882px;}
.y27c{bottom:796.495093px;}
.y7c{bottom:799.455000px;}
.yc0{bottom:801.325950px;}
.y19a{bottom:802.432158px;}
.y11{bottom:802.433168px;}
.y245{bottom:803.287121px;}
.y202{bottom:809.914800px;}
.y7a{bottom:809.915136px;}
.y104{bottom:809.920307px;}
.y27b{bottom:809.930884px;}
.ybc{bottom:811.795246px;}
.y201{bottom:815.867550px;}
.y199{bottom:817.314116px;}
.y10{bottom:818.845532px;}
.y244{bottom:819.699485px;}
.y27a{bottom:823.366674px;}
.y79{bottom:826.327500px;}
.y1ff{bottom:826.328191px;}
.y103{bottom:826.332671px;}
.ybb{bottom:828.207610px;}
.y16e{bottom:830.749500px;}
.y198{bottom:832.280956px;}
.y200{bottom:832.365150px;}
.yf{bottom:835.342627px;}
.y243{bottom:836.111849px;}
.y279{bottom:836.802465px;}
.y1fe{bottom:842.825286px;}
.y77{bottom:842.826499px;}
.y102{bottom:842.829766px;}
.yba{bottom:844.704705px;}
.y197{bottom:847.247796px;}
.y78{bottom:848.777850px;}
.y278{bottom:850.323434px;}
.ye{bottom:851.754991px;}
.y242{bottom:852.608944px;}
.y1fc{bottom:857.026650px;}
.y1fd{bottom:859.237650px;}
.y76{bottom:859.238863px;}
.y1fb{bottom:859.239049px;}
.y101{bottom:859.242130px;}
.y166{bottom:860.828250px;}
.yb9{bottom:861.117069px;}
.y196{bottom:862.129753px;}
.y277{bottom:863.759225px;}
.yd{bottom:868.167355px;}
.y241{bottom:869.021308px;}
.y75{bottom:875.651227px;}
.y1fa{bottom:875.651413px;}
.y100{bottom:875.654494px;}
.y195{bottom:877.096593px;}
.y276{bottom:877.195016px;}
.yb8{bottom:877.529433px;}
.yc{bottom:884.664450px;}
.y240{bottom:885.433672px;}
.y275{bottom:890.630807px;}
.y194{bottom:892.063434px;}
.y74{bottom:892.148322px;}
.y1f9{bottom:892.148508px;}
.yff{bottom:892.151589px;}
.yb{bottom:900.736950px;}
.yb7{bottom:901.425071px;}
.y23f{bottom:901.930767px;}
.y274{bottom:904.066597px;}
.y193{bottom:907.030274px;}
.y16d{bottom:908.169902px;}
.y73{bottom:908.560686px;}
.y1f8{bottom:908.560872px;}
.yfe{bottom:908.563953px;}
.y273{bottom:917.502388px;}
.y23e{bottom:918.343131px;}
.y16c{bottom:919.928317px;}
.y192{bottom:921.912231px;}
.y72{bottom:924.973050px;}
.y1f7{bottom:924.973236px;}
.yfd{bottom:924.976317px;}
.y272{bottom:930.938179px;}
.y16b{bottom:931.610299px;}
.ya{bottom:933.391950px;}
.y8{bottom:933.392261px;}
.y23d{bottom:934.755495px;}
.y191{bottom:936.879071px;}
.y9{bottom:940.365150px;}
.y1f6{bottom:941.385600px;}
.y70{bottom:941.386627px;}
.yfc{bottom:941.388681px;}
.yb6{bottom:941.394146px;}
.y16a{bottom:943.445148px;}
.y271{bottom:944.459148px;}
.y71{bottom:947.423400px;}
.y23c{bottom:951.252590px;}
.y190{bottom:951.845911px;}
.y5{bottom:952.100543px;}
.y7{bottom:952.100700px;}
.y169{bottom:955.204519px;}
.y6f{bottom:957.883722px;}
.y1f4{bottom:957.885254px;}
.yfb{bottom:957.885776px;}
.yb5{bottom:957.891242px;}
.y270{bottom:957.894939px;}
.y6{bottom:959.073900px;}
.y1f5{bottom:963.836100px;}
.y18f{bottom:966.812751px;}
.y168{bottom:966.886501px;}
.y23b{bottom:967.664954px;}
.y3{bottom:970.724250px;}
.y26f{bottom:971.330730px;}
.y6e{bottom:974.296086px;}
.y1f3{bottom:974.297618px;}
.yfa{bottom:974.298140px;}
.yb4{bottom:974.303605px;}
.y4{bottom:977.697450px;}
.y167{bottom:978.721350px;}
.y18e{bottom:981.694709px;}
.y23a{bottom:984.077318px;}
.y26e{bottom:984.766520px;}
.y6d{bottom:990.708450px;}
.y6b{bottom:990.709982px;}
.yf9{bottom:990.710504px;}
.yb3{bottom:990.715969px;}
.y18d{bottom:996.661549px;}
.y6c{bottom:996.746250px;}
.y2{bottom:997.427718px;}
.y26d{bottom:998.202311px;}
.y239{bottom:1000.489682px;}
.y6a{bottom:1007.207077px;}
.yf8{bottom:1007.207599px;}
.yb2{bottom:1007.213065px;}
.y18c{bottom:1011.628389px;}
.y26c{bottom:1011.638102px;}
.y238{bottom:1016.986777px;}
.y69{bottom:1023.619441px;}
.yf7{bottom:1023.619963px;}
.yb1{bottom:1023.625429px;}
.y26b{bottom:1025.159071px;}
.y1{bottom:1027.360500px;}
.y18b{bottom:1033.143147px;}
.y237{bottom:1033.399141px;}
.y165{bottom:1034.920418px;}
.y26a{bottom:1038.594862px;}
.y68{bottom:1040.031805px;}
.yf6{bottom:1040.032327px;}
.yb0{bottom:1040.037792px;}
.y164{bottom:1046.984569px;}
.y1ab{bottom:1048.109987px;}
.y236{bottom:1049.811505px;}
.y269{bottom:1052.030653px;}
.y18a{bottom:1052.702018px;}
.y67{bottom:1056.528900px;}
.y65{bottom:1056.529422px;}
.y1f2{bottom:1056.534745px;}
.yaf{bottom:1056.534888px;}
.y163{bottom:1058.742985px;}
.y66{bottom:1062.481800px;}
.y268{bottom:1065.466444px;}
.y235{bottom:1066.308600px;}
.y61{bottom:1066.985700px;}
.y189{bottom:1067.668858px;}
.y162{bottom:1070.501400px;}
.y64{bottom:1072.941786px;}
.y1f1{bottom:1072.947109px;}
.yae{bottom:1072.947252px;}
.y267{bottom:1078.902234px;}
.y188{bottom:1085.697450px;}
.y63{bottom:1089.354150px;}
.y1f0{bottom:1089.359473px;}
.yad{bottom:1089.359615px;}
.y234{bottom:1090.204500px;}
.y266{bottom:1092.338025px;}
.y60{bottom:1095.221850px;}
.yf4{bottom:1134.169950px;}
.hd{height:16.985619px;}
.hc{height:20.332539px;}
.h19{height:20.583558px;}
.h18{height:23.524636px;}
.h13{height:26.560815px;}
.h1a{height:26.798990px;}
.ha{height:27.397651px;}
.h5{height:30.499465px;}
.hb{height:30.503401px;}
.h17{height:30.879986px;}
.h14{height:32.681653px;}
.h10{height:34.144337px;}
.h1b{height:34.250731px;}
.h15{height:34.526906px;}
.h6{height:34.718191px;}
.h12{height:34.861655px;}
.h16{height:35.292046px;}
.h4{height:37.385901px;}
.h7{height:39.218596px;}
.h11{height:39.326192px;}
.hf{height:39.636000px;}
.h9{height:41.101519px;}
.h8{height:41.398160px;}
.h3{height:45.755102px;}
.h2{height:87.153262px;}
.he{height:205.970093px;}
.h0{height:1172.947950px;}
.h1{height:1173.000000px;}
.w0{width:880.455450px;}
.w1{width:880.500000px;}
.x0{left:0.000000px;}
.x27{left:56.806350px;}
.x54{left:61.313400px;}
.x7b{left:63.269400px;}
.x55{left:68.711340px;}
.x2d{left:70.242600px;}
.x1{left:76.535550px;}
.x7a{left:77.556000px;}
.x2f{left:81.042600px;}
.x22{left:82.318200px;}
.x13{left:85.889850px;}
.x31{left:88.611150px;}
.x47{left:89.971551px;}
.x14{left:99.327195px;}
.x30{left:103.492950px;}
.x66{left:106.129200px;}
.x33{left:108.340200px;}
.x32{left:110.296050px;}
.x67{left:118.885050px;}
.x2a{left:120.841050px;}
.x6a{left:131.556000px;}
.x34{left:133.001550px;}
.x2b{left:137.338650px;}
.x36{left:144.311850px;}
.x6b{left:156.387450px;}
.x48{left:160.894500px;}
.x37{left:166.507050px;}
.x49{left:169.908750px;}
.x2{left:194.910300px;}
.x3{left:210.217350px;}
.x10{left:220.252050px;}
.x11{left:226.204650px;}
.x56{left:237.939807px;}
.x68{left:250.270800px;}
.x8{left:268.554300px;}
.x28{left:269.659800px;}
.x69{left:271.360650px;}
.x9{left:274.592100px;}
.x29{left:289.133850px;}
.x2e{left:295.936950px;}
.x23{left:343.474050px;}
.x24{left:349.766850px;}
.x6c{left:351.552750px;}
.x2c{left:362.012550px;}
.x6d{left:376.384200px;}
.x12{left:378.765300px;}
.x35{left:390.500700px;}
.x4{left:414.056700px;}
.x5{left:429.959100px;}
.x46{left:432.341451px;}
.xa{left:436.847250px;}
.x65{left:438.547950px;}
.xb{left:442.885050px;}
.x38{left:446.883438px;}
.x26{left:452.069250px;}
.x5a{left:458.787818px;}
.x3e{left:460.317246px;}
.x5f{left:464.995200px;}
.x15{left:466.612638px;}
.x7c{left:471.626433px;}
.x60{left:473.244000px;}
.x19{left:480.046289px;}
.x52{left:488.996100px;}
.x20{left:490.251900px;}
.x63{left:491.880300px;}
.x21{left:509.045550px;}
.x1b{left:516.699150px;}
.x41{left:519.930600px;}
.x45{left:522.736950px;}
.x5e{left:528.434550px;}
.x70{left:529.710150px;}
.x53{left:532.060926px;}
.x1c{left:534.472350px;}
.x71{left:538.299150px;}
.x72{left:543.911700px;}
.x42{left:555.051900px;}
.x43{left:560.579400px;}
.x73{left:565.936950px;}
.xc{left:570.699150px;}
.x64{left:575.435400px;}
.xd{left:576.736950px;}
.x50{left:578.485205px;}
.x5b{left:581.755251px;}
.x5d{left:584.562356px;}
.x5c{left:598.848939px;}
.x51{left:605.821200px;}
.x57{left:610.157458px;}
.x61{left:631.757400px;}
.x6e{left:632.777850px;}
.x62{left:639.921150px;}
.x3f{left:641.196750px;}
.x40{left:646.809450px;}
.x4e{left:655.653450px;}
.x4f{left:661.180950px;}
.x77{left:669.940050px;}
.x4c{left:673.341600px;}
.x16{left:679.124250px;}
.x6{left:693.666000px;}
.x7{left:699.618750px;}
.x17{left:702.425100px;}
.x58{left:706.083198px;}
.x78{left:708.973200px;}
.x4d{left:716.796750px;}
.x3c{left:718.667550px;}
.x1d{left:723.004650px;}
.x3d{left:727.256550px;}
.x79{left:730.828200px;}
.x75{left:737.631450px;}
.x1e{left:740.947950px;}
.x74{left:748.091250px;}
.x6f{left:752.003100px;}
.x76{left:758.891250px;}
.xe{left:777.089550px;}
.x25{left:782.094300px;}
.xf{left:783.127350px;}
.x39{left:786.869250px;}
.x4a{left:788.484900px;}
.x3a{left:792.396750px;}
.x18{left:793.757400px;}
.x3b{left:796.818750px;}
.x4b{left:797.924250px;}
.x59{left:801.413565px;}
.x44{left:808.894350px;}
.x1f{left:811.700700px;}
.x1a{left:813.741600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.583932pt;}
.v2{vertical-align:20.998933pt;}
.v3{vertical-align:94.874667pt;}
.ls1f{letter-spacing:-12.649537pt;}
.ls29{letter-spacing:-1.185943pt;}
.ls2e{letter-spacing:-1.090302pt;}
.ls28{letter-spacing:-1.075956pt;}
.ls35{letter-spacing:-1.061610pt;}
.ls36{letter-spacing:-1.052046pt;}
.ls34{letter-spacing:-1.047264pt;}
.ls33{letter-spacing:-1.042482pt;}
.ls2b{letter-spacing:-1.037700pt;}
.ls27{letter-spacing:-1.028136pt;}
.ls2f{letter-spacing:-1.023354pt;}
.ls2d{letter-spacing:-1.018572pt;}
.ls26{letter-spacing:-1.009008pt;}
.ls30{letter-spacing:-0.999444pt;}
.ls2c{letter-spacing:-0.989880pt;}
.ls32{letter-spacing:-0.980315pt;}
.ls31{letter-spacing:-0.946841pt;}
.ls2a{letter-spacing:-0.932495pt;}
.ls67{letter-spacing:-0.808947pt;}
.ls5e{letter-spacing:-0.255228pt;}
.ls4a{letter-spacing:-0.139280pt;}
.ls48{letter-spacing:-0.132486pt;}
.ls5c{letter-spacing:-0.045810pt;}
.ls5d{letter-spacing:-0.032722pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.003188pt;}
.ls1a{letter-spacing:0.003719pt;}
.ls57{letter-spacing:0.003985pt;}
.ls0{letter-spacing:0.010627pt;}
.ls22{letter-spacing:0.023910pt;}
.ls46{letter-spacing:0.027177pt;}
.ls65{letter-spacing:0.031880pt;}
.ls66{letter-spacing:0.036683pt;}
.ls45{letter-spacing:0.054353pt;}
.ls9{letter-spacing:0.062166pt;}
.ls5{letter-spacing:0.066948pt;}
.ls1b{letter-spacing:0.074387pt;}
.ls47{letter-spacing:0.074735pt;}
.ls64{letter-spacing:0.075714pt;}
.ls44{letter-spacing:0.078133pt;}
.ls42{letter-spacing:0.081530pt;}
.ls49{letter-spacing:0.084927pt;}
.ls40{letter-spacing:0.088324pt;}
.ls43{letter-spacing:0.091721pt;}
.ls41{letter-spacing:0.101912pt;}
.ls4{letter-spacing:0.200845pt;}
.ls20{letter-spacing:0.210409pt;}
.ls52{letter-spacing:0.212539pt;}
.ls4e{letter-spacing:0.249197pt;}
.ls1{letter-spacing:0.267793pt;}
.ls59{letter-spacing:0.431925pt;}
.ls5b{letter-spacing:0.484280pt;}
.ls5a{letter-spacing:0.624983pt;}
.ls50{letter-spacing:5.088176pt;}
.ls51{letter-spacing:5.389981pt;}
.lsb{letter-spacing:5.724086pt;}
.ls2{letter-spacing:5.791034pt;}
.ls3b{letter-spacing:5.886675pt;}
.ls21{letter-spacing:6.015790pt;}
.ls3{letter-spacing:6.025354pt;}
.ls7{letter-spacing:6.092302pt;}
.ls3e{letter-spacing:6.116212pt;}
.ls3a{letter-spacing:6.192725pt;}
.ls4b{letter-spacing:9.138453pt;}
.ls62{letter-spacing:9.348862pt;}
.ls5f{letter-spacing:9.439721pt;}
.ls37{letter-spacing:9.516233pt;}
.ls11{letter-spacing:9.956180pt;}
.ls38{letter-spacing:10.950841pt;}
.ls8{letter-spacing:10.974751pt;}
.lsf{letter-spacing:11.166032pt;}
.lse{letter-spacing:11.467300pt;}
.lsd{letter-spacing:11.768568pt;}
.lsc{letter-spacing:12.074617pt;}
.ls23{letter-spacing:12.160694pt;}
.ls55{letter-spacing:12.311082pt;}
.ls1c{letter-spacing:12.318520pt;}
.ls15{letter-spacing:12.375885pt;}
.ls4f{letter-spacing:12.616069pt;}
.ls14{letter-spacing:12.677153pt;}
.lsa{letter-spacing:13.370547pt;}
.ls4d{letter-spacing:13.523593pt;}
.ls61{letter-spacing:13.671814pt;}
.ls58{letter-spacing:14.108317pt;}
.ls53{letter-spacing:14.159326pt;}
.ls19{letter-spacing:14.188273pt;}
.ls39{letter-spacing:14.279132pt;}
.ls13{letter-spacing:14.489541pt;}
.ls12{letter-spacing:14.494323pt;}
.ls6{letter-spacing:14.905577pt;}
.ls10{letter-spacing:15.096858pt;}
.ls25{letter-spacing:15.790252pt;}
.ls3d{letter-spacing:15.814162pt;}
.ls54{letter-spacing:15.941177pt;}
.ls63{letter-spacing:16.000661pt;}
.ls24{letter-spacing:16.091520pt;}
.ls60{letter-spacing:16.301929pt;}
.ls4c{letter-spacing:16.416698pt;}
.ls3c{letter-spacing:18.511225pt;}
.ls3f{letter-spacing:19.721078pt;}
.ls18{letter-spacing:22.049925pt;}
.ls17{letter-spacing:22.351193pt;}
.ls16{letter-spacing:25.679483pt;}
.ls56{letter-spacing:86.191430pt;}
.ws1ce{word-spacing:-14.150824pt;}
.ws1e7{word-spacing:-1.076541pt;}
.ws182{word-spacing:-0.159662pt;}
.ws180{word-spacing:-0.152868pt;}
.ws181{word-spacing:-0.149471pt;}
.ws184{word-spacing:-0.118897pt;}
.ws186{word-spacing:-0.091721pt;}
.wsb{word-spacing:-0.047820pt;}
.ws26d{word-spacing:-0.043835pt;}
.ws1a9{word-spacing:-0.042508pt;}
.ws7b{word-spacing:-0.040913pt;}
.ws28f{word-spacing:-0.039850pt;}
.ws1be{word-spacing:-0.037194pt;}
.ws3{word-spacing:-0.037189pt;}
.ws9d{word-spacing:-0.035064pt;}
.ws9e{word-spacing:-0.031876pt;}
.ws7e{word-spacing:0.000000pt;}
.ws185{word-spacing:0.084927pt;}
.ws183{word-spacing:0.091721pt;}
.ws1e9{word-spacing:0.255228pt;}
.ws1e8{word-spacing:0.268317pt;}
.ws17f{word-spacing:0.302339pt;}
.ws187{word-spacing:0.309133pt;}
.ws1ea{word-spacing:0.477735pt;}
.ws295{word-spacing:6.642928pt;}
.ws227{word-spacing:7.216078pt;}
.ws22e{word-spacing:7.440833pt;}
.ws2af{word-spacing:7.463830pt;}
.ws2a0{word-spacing:7.543529pt;}
.ws291{word-spacing:7.551499pt;}
.ws226{word-spacing:7.742101pt;}
.ws294{word-spacing:7.754732pt;}
.ws22d{word-spacing:7.904690pt;}
.wsc6{word-spacing:7.971638pt;}
.wsb4{word-spacing:8.402021pt;}
.ws2ac{word-spacing:8.424205pt;}
.wsc1{word-spacing:8.430713pt;}
.wsb5{word-spacing:8.492879pt;}
.ws23e{word-spacing:8.559828pt;}
.ws2b2{word-spacing:8.695183pt;}
.wsf9{word-spacing:8.698507pt;}
.ws2b1{word-spacing:8.715108pt;}
.ws195{word-spacing:8.717635pt;}
.ws282{word-spacing:8.778867pt;}
.ws21{word-spacing:8.794147pt;}
.ws250{word-spacing:8.808493pt;}
.ws93{word-spacing:8.841967pt;}
.ws20{word-spacing:8.856313pt;}
.ws120{word-spacing:9.047594pt;}
.ws11f{word-spacing:9.066723pt;}
.ws12e{word-spacing:9.085851pt;}
.ws261{word-spacing:9.090633pt;}
.ws260{word-spacing:9.095415pt;}
.ws27f{word-spacing:9.109619pt;}
.ws107{word-spacing:9.109761pt;}
.wse6{word-spacing:9.119325pt;}
.ws23f{word-spacing:9.152799pt;}
.ws1ef{word-spacing:9.167145pt;}
.wse5{word-spacing:9.243658pt;}
.ws12d{word-spacing:9.253222pt;}
.ws23a{word-spacing:9.258004pt;}
.ws1ee{word-spacing:9.324952pt;}
.ws1ed{word-spacing:9.506669pt;}
.ws28d{word-spacing:9.512100pt;}
.ws289{word-spacing:9.532024pt;}
.ws17{word-spacing:9.535361pt;}
.ws111{word-spacing:9.554489pt;}
.ws18{word-spacing:9.568835pt;}
.ws20a{word-spacing:9.611874pt;}
.ws19{word-spacing:9.635784pt;}
.ws12f{word-spacing:9.654912pt;}
.ws130{word-spacing:9.745770pt;}
.ws2a5{word-spacing:9.759167pt;}
.ws164{word-spacing:9.769680pt;}
.ws163{word-spacing:9.774463pt;}
.ws3a{word-spacing:9.807937pt;}
.ws97{word-spacing:9.836629pt;}
.ws37{word-spacing:9.879667pt;}
.ws3b{word-spacing:9.903577pt;}
.ws235{word-spacing:9.927487pt;}
.ws38{word-spacing:9.989654pt;}
.ws39{word-spacing:10.066166pt;}
.ws56{word-spacing:10.109204pt;}
.ws54{word-spacing:10.118768pt;}
.ws225{word-spacing:10.123550pt;}
.ws229{word-spacing:10.228755pt;}
.ws231{word-spacing:10.252665pt;}
.ws55{word-spacing:10.319614pt;}
.ws232{word-spacing:10.415254pt;}
.ws228{word-spacing:10.420036pt;}
.ws208{word-spacing:10.443946pt;}
.wsd6{word-spacing:10.463074pt;}
.wsd7{word-spacing:10.496549pt;}
.ws127{word-spacing:10.506113pt;}
.ws128{word-spacing:10.530023pt;}
.wsa5{word-spacing:10.534805pt;}
.wse{word-spacing:10.549151pt;}
.ws109{word-spacing:10.563497pt;}
.ws245{word-spacing:10.573061pt;}
.wsd8{word-spacing:10.577843pt;}
.ws149{word-spacing:10.654355pt;}
.ws23b{word-spacing:10.683048pt;}
.ws138{word-spacing:10.711740pt;}
.wsa{word-spacing:10.845636pt;}
.ws135{word-spacing:10.864765pt;}
.ws51{word-spacing:10.874329pt;}
.ws1e{word-spacing:10.883893pt;}
.wsc{word-spacing:10.917367pt;}
.ws290{word-spacing:10.922775pt;}
.wsf6{word-spacing:10.926931pt;}
.ws134{word-spacing:10.955623pt;}
.ws50{word-spacing:10.984315pt;}
.wsc9{word-spacing:11.046482pt;}
.ws273{word-spacing:11.074204pt;}
.ws296{word-spacing:11.078189pt;}
.ws1a2{word-spacing:11.137340pt;}
.ws2ad{word-spacing:11.205708pt;}
.ws248{word-spacing:11.232981pt;}
.ws30{word-spacing:11.237763pt;}
.ws33{word-spacing:11.247327pt;}
.ws112{word-spacing:11.256891pt;}
.ws21a{word-spacing:11.285583pt;}
.ws116{word-spacing:11.314275pt;}
.ws271{word-spacing:11.325256pt;}
.wsb6{word-spacing:11.328621pt;}
.ws21b{word-spacing:11.338185pt;}
.ws27a{word-spacing:11.349166pt;}
.ws275{word-spacing:11.381046pt;}
.ws2f{word-spacing:11.395570pt;}
.ws84{word-spacing:11.419480pt;}
.ws10c{word-spacing:11.472082pt;}
.ws32{word-spacing:11.539030pt;}
.ws4f{word-spacing:11.553376pt;}
.ws31{word-spacing:11.615543pt;}
.ws26e{word-spacing:11.628113pt;}
.ws100{word-spacing:11.629889pt;}
.ws233{word-spacing:11.672927pt;}
.ws29d{word-spacing:11.691873pt;}
.wsb7{word-spacing:11.715965pt;}
.ws213{word-spacing:11.720747pt;}
.wsf1{word-spacing:11.773350pt;}
.ws15c{word-spacing:11.787696pt;}
.ws146{word-spacing:11.912028pt;}
.ws2c{word-spacing:11.926375pt;}
.ws12c{word-spacing:11.945503pt;}
.ws170{word-spacing:11.950285pt;}
.ws20d{word-spacing:11.955067pt;}
.ws2b{word-spacing:11.974195pt;}
.ws145{word-spacing:11.978977pt;}
.wsf0{word-spacing:11.998105pt;}
.ws129{word-spacing:12.065053pt;}
.ws2d{word-spacing:12.069835pt;}
.wsff{word-spacing:12.074617pt;}
.ws19b{word-spacing:12.088963pt;}
.ws144{word-spacing:12.112874pt;}
.ws70{word-spacing:12.158588pt;}
.ws20c{word-spacing:12.189386pt;}
.ws19c{word-spacing:12.218078pt;}
.ws76{word-spacing:12.221817pt;}
.ws1fa{word-spacing:12.227642pt;}
.ws72{word-spacing:12.247852pt;}
.ws6e{word-spacing:12.259011pt;}
.ws2e{word-spacing:12.265898pt;}
.ws171{word-spacing:12.270680pt;}
.wsf8{word-spacing:12.280244pt;}
.ws114{word-spacing:12.285027pt;}
.ws77{word-spacing:12.296204pt;}
.ws6f{word-spacing:12.307362pt;}
.ws1c1{word-spacing:12.311082pt;}
.ws40{word-spacing:12.313719pt;}
.ws1de{word-spacing:12.322240pt;}
.ws16f{word-spacing:12.347193pt;}
.ws19d{word-spacing:12.366321pt;}
.ws6d{word-spacing:12.374311pt;}
.ws74{word-spacing:12.381749pt;}
.wsf2{word-spacing:12.390231pt;}
.ws237{word-spacing:12.399795pt;}
.ws41{word-spacing:12.409359pt;}
.ws7a{word-spacing:12.411504pt;}
.ws1fb{word-spacing:12.433269pt;}
.ws7d{word-spacing:12.435138pt;}
.ws122{word-spacing:12.442833pt;}
.ws42{word-spacing:12.447615pt;}
.ws78{word-spacing:12.489611pt;}
.ws1df{word-spacing:12.511927pt;}
.ws73{word-spacing:12.537963pt;}
.ws6c{word-spacing:12.575156pt;}
.ws247{word-spacing:12.581512pt;}
.ws29c{word-spacing:12.584504pt;}
.ws297{word-spacing:12.592474pt;}
.ws238{word-spacing:12.600640pt;}
.ws79{word-spacing:12.604911pt;}
.ws71{word-spacing:12.642105pt;}
.ws217{word-spacing:12.753665pt;}
.ws209{word-spacing:12.768011pt;}
.ws75{word-spacing:12.772282pt;}
.ws14a{word-spacing:12.796703pt;}
.ws132{word-spacing:12.811049pt;}
.ws2a6{word-spacing:12.835556pt;}
.ws27d{word-spacing:12.859466pt;}
.ws2ae{word-spacing:12.879391pt;}
.ws14b{word-spacing:12.882780pt;}
.ws6b{word-spacing:12.925818pt;}
.ws292{word-spacing:12.939165pt;}
.wsed{word-spacing:12.964074pt;}
.ws65{word-spacing:12.978420pt;}
.ws25{word-spacing:13.002331pt;}
.ws27e{word-spacing:13.038789pt;}
.wsee{word-spacing:13.069279pt;}
.ws201{word-spacing:13.074061pt;}
.ws1e6{word-spacing:13.130443pt;}
.ws287{word-spacing:13.138413pt;}
.ws272{word-spacing:13.158338pt;}
.wsc7{word-spacing:13.184048pt;}
.ws58{word-spacing:13.188830pt;}
.ws22{word-spacing:13.198394pt;}
.ws24{word-spacing:13.203176pt;}
.ws28e{word-spacing:13.206157pt;}
.ws279{word-spacing:13.218112pt;}
.ws258{word-spacing:13.230067pt;}
.ws26a{word-spacing:13.242022pt;}
.ws2a2{word-spacing:13.253977pt;}
.ws159{word-spacing:13.255778pt;}
.ws153{word-spacing:13.279688pt;}
.ws17e{word-spacing:13.285857pt;}
.ws118{word-spacing:13.298816pt;}
.ws27b{word-spacing:13.317736pt;}
.ws2b6{word-spacing:13.325706pt;}
.ws158{word-spacing:13.332290pt;}
.ws2aa{word-spacing:13.333676pt;}
.ws2a1{word-spacing:13.341646pt;}
.ws234{word-spacing:13.351418pt;}
.ws27c{word-spacing:13.369541pt;}
.ws26f{word-spacing:13.377511pt;}
.ws257{word-spacing:13.393451pt;}
.ws1fd{word-spacing:13.394457pt;}
.ws17d{word-spacing:13.401420pt;}
.ws28a{word-spacing:13.417360pt;}
.ws1fc{word-spacing:13.451841pt;}
.ws2b0{word-spacing:13.457210pt;}
.ws1c0{word-spacing:13.460364pt;}
.ws24b{word-spacing:13.466187pt;}
.ws254{word-spacing:13.490097pt;}
.ws281{word-spacing:13.493075pt;}
.ws24c{word-spacing:13.523571pt;}
.ws1bf{word-spacing:13.527312pt;}
.ws57{word-spacing:13.533135pt;}
.ws284{word-spacing:13.552849pt;}
.wscf{word-spacing:13.557046pt;}
.ws23{word-spacing:13.566610pt;}
.wsd1{word-spacing:13.571392pt;}
.ws1fe{word-spacing:13.576174pt;}
.ws1bd{word-spacing:13.590541pt;}
.ws157{word-spacing:13.600084pt;}
.ws1bc{word-spacing:13.631454pt;}
.ws94{word-spacing:13.647904pt;}
.ws1d0{word-spacing:13.661985pt;}
.ws108{word-spacing:13.674738pt;}
.ws1cc{word-spacing:13.683239pt;}
.ws12{word-spacing:13.686160pt;}
.ws1d5{word-spacing:13.687490pt;}
.ws1c3{word-spacing:13.700242pt;}
.ws1bb{word-spacing:13.713280pt;}
.ws1c4{word-spacing:13.717246pt;}
.ws1a4{word-spacing:13.729998pt;}
.ws236{word-spacing:13.733981pt;}
.ws1b3{word-spacing:13.734249pt;}
.ws221{word-spacing:13.753109pt;}
.ws1c7{word-spacing:13.755503pt;}
.ws105{word-spacing:13.757891pt;}
.ws1d7{word-spacing:13.764004pt;}
.ws1c9{word-spacing:13.772506pt;}
.wsea{word-spacing:13.777019pt;}
.ws1c5{word-spacing:13.781007pt;}
.ws8a{word-spacing:13.781801pt;}
.ws121{word-spacing:13.791365pt;}
.ws1c2{word-spacing:13.806512pt;}
.ws1cd{word-spacing:13.819264pt;}
.ws1d1{word-spacing:13.823515pt;}
.ws90{word-spacing:13.824839pt;}
.ws1ba{word-spacing:13.827766pt;}
.ws1b7{word-spacing:13.836267pt;}
.ws1d2{word-spacing:13.840518pt;}
.ws1d4{word-spacing:13.849020pt;}
.ws1b9{word-spacing:13.853270pt;}
.wsce{word-spacing:13.858313pt;}
.ws1a7{word-spacing:13.878775pt;}
.ws1ac{word-spacing:13.883026pt;}
.ws1a8{word-spacing:13.891527pt;}
.ws1b6{word-spacing:13.895778pt;}
.ws1ae{word-spacing:13.925533pt;}
.ws91{word-spacing:13.939608pt;}
.ws1b2{word-spacing:13.942537pt;}
.ws123{word-spacing:13.944390pt;}
.ws1ca{word-spacing:13.963790pt;}
.ws2b5{word-spacing:13.971270pt;}
.wsb1{word-spacing:13.973082pt;}
.ws1aa{word-spacing:13.976543pt;}
.ws1c6{word-spacing:13.989295pt;}
.ws137{word-spacing:14.006556pt;}
.ws20f{word-spacing:14.011338pt;}
.ws1a6{word-spacing:14.031803pt;}
.ws1d9{word-spacing:14.036054pt;}
.ws244{word-spacing:14.054376pt;}
.ws1af{word-spacing:14.057307pt;}
.ws214{word-spacing:14.059158pt;}
.ws1ad{word-spacing:14.065809pt;}
.ws230{word-spacing:14.073504pt;}
.ws136{word-spacing:14.078287pt;}
.ws20e{word-spacing:14.083069pt;}
.ws98{word-spacing:14.092633pt;}
.ws10{word-spacing:14.106979pt;}
.ws4c{word-spacing:14.143109pt;}
.ws288{word-spacing:14.146608pt;}
.ws1b4{word-spacing:14.159326pt;}
.ws2b3{word-spacing:14.274127pt;}
.ws25d{word-spacing:14.274350pt;}
.wsab{word-spacing:14.288696pt;}
.ws285{word-spacing:14.353826pt;}
.ws1b8{word-spacing:14.367614pt;}
.ws3f{word-spacing:14.389118pt;}
.wsb0{word-spacing:14.408246pt;}
.wsac{word-spacing:14.417810pt;}
.ws49{word-spacing:14.427374pt;}
.ws3d{word-spacing:14.465631pt;}
.ws202{word-spacing:14.537361pt;}
.ws4a{word-spacing:14.566053pt;}
.ws3e{word-spacing:14.580399pt;}
.ws3c{word-spacing:14.623438pt;}
.ws270{word-spacing:14.652698pt;}
.ws24d{word-spacing:14.671258pt;}
.ws24e{word-spacing:14.704732pt;}
.ws1b{word-spacing:14.709514pt;}
.ws1c{word-spacing:14.733424pt;}
.ws133{word-spacing:14.766898pt;}
.ws207{word-spacing:14.814719pt;}
.ws22a{word-spacing:14.910359pt;}
.ws36{word-spacing:14.939051pt;}
.ws192{word-spacing:14.977308pt;}
.ws1a{word-spacing:15.010782pt;}
.wse3{word-spacing:15.039474pt;}
.ws1d{word-spacing:15.058602pt;}
.ws16c{word-spacing:15.077730pt;}
.ws34{word-spacing:15.120768pt;}
.ws191{word-spacing:15.139896pt;}
.ws101{word-spacing:15.154243pt;}
.wsb8{word-spacing:15.211627pt;}
.ws35{word-spacing:15.225973pt;}
.ws16b{word-spacing:15.230755pt;}
.ws11c{word-spacing:15.269011pt;}
.ws262{word-spacing:15.273793pt;}
.ws293{word-spacing:15.298261pt;}
.ws2b4{word-spacing:15.322171pt;}
.ws125{word-spacing:15.369434pt;}
.wsc3{word-spacing:15.383780pt;}
.ws265{word-spacing:15.405855pt;}
.wsc2{word-spacing:15.412472pt;}
.ws9a{word-spacing:15.455510pt;}
.wsdc{word-spacing:15.465074pt;}
.ws96{word-spacing:15.522459pt;}
.ws19f{word-spacing:15.527241pt;}
.ws1a0{word-spacing:15.579843pt;}
.ws88{word-spacing:15.603753pt;}
.ws1da{word-spacing:15.606435pt;}
.ws87{word-spacing:15.618099pt;}
.ws106{word-spacing:15.637227pt;}
.ws156{word-spacing:15.642009pt;}
.ws18f{word-spacing:15.665919pt;}
.ws16d{word-spacing:15.675483pt;}
.wsdb{word-spacing:15.685047pt;}
.wsd{word-spacing:15.708958pt;}
.ws26{word-spacing:15.723304pt;}
.ws131{word-spacing:15.737650pt;}
.ws25f{word-spacing:15.742432pt;}
.ws5d{word-spacing:15.761560pt;}
.ws263{word-spacing:15.766342pt;}
.ws1dd{word-spacing:15.766367pt;}
.ws68{word-spacing:15.771124pt;}
.ws1f{word-spacing:15.775906pt;}
.ws200{word-spacing:15.785470pt;}
.wsd9{word-spacing:15.790252pt;}
.wse0{word-spacing:15.795034pt;}
.ws9f{word-spacing:15.799816pt;}
.ws8b{word-spacing:15.809380pt;}
.ws92{word-spacing:15.814162pt;}
.ws176{word-spacing:15.823726pt;}
.ws1dc{word-spacing:15.833316pt;}
.wsa0{word-spacing:15.847636pt;}
.ws25e{word-spacing:15.852418pt;}
.ws1db{word-spacing:15.855632pt;}
.wsf{word-spacing:15.857200pt;}
.ws22c{word-spacing:15.861982pt;}
.ws240{word-spacing:15.871547pt;}
.wse9{word-spacing:15.885893pt;}
.wsa4{word-spacing:15.900239pt;}
.ws18c{word-spacing:15.905021pt;}
.ws4b{word-spacing:15.909803pt;}
.ws29{word-spacing:15.914585pt;}
.wsca{word-spacing:15.952841pt;}
.ws22b{word-spacing:15.962405pt;}
.wsb9{word-spacing:15.971969pt;}
.ws10e{word-spacing:15.976751pt;}
.ws16e{word-spacing:15.991097pt;}
.ws246{word-spacing:16.010225pt;}
.ws11{word-spacing:16.015007pt;}
.ws140{word-spacing:16.043699pt;}
.ws10d{word-spacing:16.053264pt;}
.ws190{word-spacing:16.067610pt;}
.ws4d{word-spacing:16.072392pt;}
.ws10f{word-spacing:16.096302pt;}
.wse1{word-spacing:16.110648pt;}
.ws178{word-spacing:16.120212pt;}
.wse2{word-spacing:16.153686pt;}
.ws104{word-spacing:16.168032pt;}
.wsfe{word-spacing:16.172814pt;}
.wsad{word-spacing:16.187160pt;}
.ws1eb{word-spacing:16.196724pt;}
.ws11d{word-spacing:16.220634pt;}
.wsc4{word-spacing:16.258891pt;}
.ws1a1{word-spacing:16.297147pt;}
.ws1ff{word-spacing:16.397569pt;}
.ws177{word-spacing:16.478864pt;}
.ws61{word-spacing:16.512338pt;}
.ws249{word-spacing:16.579286pt;}
.ws268{word-spacing:16.621268pt;}
.ws24a{word-spacing:16.694055pt;}
.ws259{word-spacing:16.698078pt;}
.ws2a4{word-spacing:16.704952pt;}
.ws280{word-spacing:16.816531pt;}
.ws266{word-spacing:16.824501pt;}
.ws267{word-spacing:16.892245pt;}
.ws95{word-spacing:16.971413pt;}
.ws10a{word-spacing:16.980977pt;}
.ws19e{word-spacing:17.090963pt;}
.wsba{word-spacing:17.100527pt;}
.wsbb{word-spacing:17.110091pt;}
.ws23c{word-spacing:17.119655pt;}
.ws23d{word-spacing:17.124437pt;}
.ws175{word-spacing:17.210514pt;}
.wsb2{word-spacing:17.229642pt;}
.ws174{word-spacing:17.320501pt;}
.ws29f{word-spacing:17.346531pt;}
.wsa8{word-spacing:17.420923pt;}
.wsbc{word-spacing:17.478307pt;}
.ws13e{word-spacing:17.573948pt;}
.ws13f{word-spacing:17.621768pt;}
.ws52{word-spacing:17.636114pt;}
.ws28b{word-spacing:17.681268pt;}
.ws173{word-spacing:17.698281pt;}
.ws206{word-spacing:17.722191pt;}
.ws283{word-spacing:17.741042pt;}
.ws7c{word-spacing:17.805159pt;}
.ws102{word-spacing:17.875216pt;}
.ws205{word-spacing:17.889562pt;}
.ws27{word-spacing:17.894344pt;}
.wsae{word-spacing:17.903908pt;}
.ws126{word-spacing:17.956510pt;}
.wsbd{word-spacing:17.961292pt;}
.ws1f7{word-spacing:17.999548pt;}
.ws28{word-spacing:18.037805pt;}
.ws21e{word-spacing:18.056933pt;}
.ws1f5{word-spacing:18.090407pt;}
.ws21c{word-spacing:18.166919pt;}
.ws1f6{word-spacing:18.186047pt;}
.ws2ab{word-spacing:18.207282pt;}
.ws4{word-spacing:18.209987pt;}
.ws21d{word-spacing:18.238650pt;}
.ws1f4{word-spacing:18.248214pt;}
.ws13b{word-spacing:18.272124pt;}
.ws9{word-spacing:18.288093pt;}
.ws11e{word-spacing:18.305598pt;}
.ws5{word-spacing:18.315988pt;}
.ws13c{word-spacing:18.358200pt;}
.ws143{word-spacing:18.372546pt;}
.ws8{word-spacing:18.388516pt;}
.wsa7{word-spacing:18.410803pt;}
.ws6{word-spacing:18.410832pt;}
.ws25c{word-spacing:18.420367pt;}
.ws7{word-spacing:18.444306pt;}
.ws119{word-spacing:18.468187pt;}
.ws2{word-spacing:18.483360pt;}
.ws142{word-spacing:18.487315pt;}
.wsfa{word-spacing:18.492097pt;}
.wsb3{word-spacing:18.568610pt;}
.ws26c{word-spacing:18.625703pt;}
.ws286{word-spacing:18.645628pt;}
.ws26b{word-spacing:18.681492pt;}
.wsa6{word-spacing:18.692942pt;}
.ws22f{word-spacing:18.697724pt;}
.wsd0{word-spacing:18.712070pt;}
.ws210{word-spacing:18.764673pt;}
.ws13a{word-spacing:18.793365pt;}
.ws139{word-spacing:18.845967pt;}
.ws269{word-spacing:18.924575pt;}
.ws113{word-spacing:18.946390pt;}
.wse7{word-spacing:18.994210pt;}
.ws193{word-spacing:19.070722pt;}
.ws194{word-spacing:19.142453pt;}
.wscc{word-spacing:19.156799pt;}
.ws165{word-spacing:19.166363pt;}
.ws60{word-spacing:19.185491pt;}
.ws16a{word-spacing:19.300260pt;}
.ws169{word-spacing:19.376772pt;}
.ws11b{word-spacing:19.395900pt;}
.ws251{word-spacing:19.419810pt;}
.ws172{word-spacing:19.443720pt;}
.ws89{word-spacing:19.453284pt;}
.wsec{word-spacing:19.472413pt;}
.ws17a{word-spacing:19.477195pt;}
.ws161{word-spacing:19.486759pt;}
.ws160{word-spacing:19.525015pt;}
.wscd{word-spacing:19.534579pt;}
.ws17c{word-spacing:19.544143pt;}
.ws179{word-spacing:19.553707pt;}
.ws17b{word-spacing:19.558489pt;}
.wsf5{word-spacing:19.635001pt;}
.ws218{word-spacing:19.644566pt;}
.ws8e{word-spacing:19.716296pt;}
.ws239{word-spacing:19.721078pt;}
.ws8d{word-spacing:19.759334pt;}
.ws162{word-spacing:19.768898pt;}
.ws12b{word-spacing:19.802372pt;}
.wsf4{word-spacing:19.807154pt;}
.ws219{word-spacing:19.840629pt;}
.ws14e{word-spacing:19.893231pt;}
.ws21f{word-spacing:19.921923pt;}
.ws12a{word-spacing:19.936269pt;}
.ws14c{word-spacing:19.979307pt;}
.ws220{word-spacing:20.051038pt;}
.ws14d{word-spacing:20.074948pt;}
.ws1e4{word-spacing:20.096153pt;}
.ws63{word-spacing:20.103640pt;}
.ws155{word-spacing:20.117986pt;}
.wsd4{word-spacing:20.141896pt;}
.wsda{word-spacing:20.189717pt;}
.ws255{word-spacing:20.247101pt;}
.ws166{word-spacing:20.304485pt;}
.wsa1{word-spacing:20.347523pt;}
.ws188{word-spacing:20.357088pt;}
.ws167{word-spacing:20.400126pt;}
.ws5f{word-spacing:20.443164pt;}
.wsaf{word-spacing:20.663137pt;}
.ws66{word-spacing:20.682265pt;}
.ws150{word-spacing:20.691829pt;}
.ws29a{word-spacing:20.721792pt;}
.ws14{word-spacing:20.782688pt;}
.ws151{word-spacing:20.811380pt;}
.ws1ec{word-spacing:20.816162pt;}
.ws16{word-spacing:20.859200pt;}
.ws13{word-spacing:20.868764pt;}
.wseb{word-spacing:20.911803pt;}
.wsd5{word-spacing:20.930931pt;}
.ws67{word-spacing:20.945277pt;}
.ws15{word-spacing:21.026571pt;}
.wse4{word-spacing:21.045699pt;}
.wsa3{word-spacing:21.098302pt;}
.ws28c{word-spacing:21.156153pt;}
.ws8f{word-spacing:21.213070pt;}
.ws252{word-spacing:21.538248pt;}
.ws189{word-spacing:21.839516pt;}
.ws18a{word-spacing:21.896900pt;}
.ws45{word-spacing:21.939938pt;}
.ws117{word-spacing:22.002105pt;}
.ws2a{word-spacing:22.011408pt;}
.ws47{word-spacing:22.026015pt;}
.wsfb{word-spacing:22.054707pt;}
.ws46{word-spacing:22.064271pt;}
.ws278{word-spacing:22.064724pt;}
.ws1f8{word-spacing:22.078617pt;}
.ws1f9{word-spacing:22.083399pt;}
.wsfc{word-spacing:22.102527pt;}
.ws48{word-spacing:22.202950pt;}
.wsdd{word-spacing:22.255552pt;}
.ws264{word-spacing:22.274680pt;}
.ws69{word-spacing:22.413359pt;}
.ws199{word-spacing:22.480307pt;}
.ws14f{word-spacing:22.595076pt;}
.ws243{word-spacing:22.767229pt;}
.ws10b{word-spacing:22.819831pt;}
.ws19a{word-spacing:22.838959pt;}
.ws124{word-spacing:22.872434pt;}
.ws5c{word-spacing:23.025458pt;}
.wsfd{word-spacing:23.044587pt;}
.ws86{word-spacing:23.125881pt;}
.wsd2{word-spacing:23.149791pt;}
.ws5b{word-spacing:23.168919pt;}
.ws152{word-spacing:23.259778pt;}
.wsef{word-spacing:23.317162pt;}
.ws242{word-spacing:23.355418pt;}
.ws20b{word-spacing:23.417585pt;}
.ws62{word-spacing:23.431931pt;}
.ws110{word-spacing:23.455841pt;}
.ws115{word-spacing:23.479751pt;}
.ws6a{word-spacing:23.599302pt;}
.ws25b{word-spacing:23.785801pt;}
.wsf3{word-spacing:23.833621pt;}
.wsaa{word-spacing:23.852749pt;}
.wsa9{word-spacing:23.934043pt;}
.ws25a{word-spacing:23.981864pt;}
.ws253{word-spacing:24.053594pt;}
.ws222{word-spacing:24.139671pt;}
.ws1f3{word-spacing:24.373990pt;}
.ws15a{word-spacing:24.464848pt;}
.ws15b{word-spacing:24.512669pt;}
.ws9c{word-spacing:24.694386pt;}
.ws99{word-spacing:24.895231pt;}
.ws197{word-spacing:24.943051pt;}
.ws24f{word-spacing:24.976525pt;}
.ws196{word-spacing:25.119986pt;}
.ws4e{word-spacing:25.218742pt;}
.ws103{word-spacing:25.220409pt;}
.ws85{word-spacing:25.258665pt;}
.ws198{word-spacing:25.277793pt;}
.ws215{word-spacing:25.301703pt;}
.ws216{word-spacing:25.311267pt;}
.ws1f1{word-spacing:25.488202pt;}
.ws1f0{word-spacing:25.531240pt;}
.ws1f2{word-spacing:25.583843pt;}
.ws299{word-spacing:25.587428pt;}
.ws2a7{word-spacing:25.635248pt;}
.ws147{word-spacing:25.646009pt;}
.wsdf{word-spacing:25.650791pt;}
.ws43{word-spacing:25.660355pt;}
.wsde{word-spacing:25.717739pt;}
.ws18e{word-spacing:25.837290pt;}
.ws44{word-spacing:25.856418pt;}
.ws64{word-spacing:25.885110pt;}
.ws298{word-spacing:26.101488pt;}
.ws82{word-spacing:26.167250pt;}
.ws1e5{word-spacing:26.205097pt;}
.ws81{word-spacing:26.219852pt;}
.ws15f{word-spacing:26.272455pt;}
.wsf7{word-spacing:26.425479pt;}
.ws83{word-spacing:26.492428pt;}
.wsbe{word-spacing:26.521120pt;}
.wsc5{word-spacing:26.592850pt;}
.ws8c{word-spacing:27.157129pt;}
.ws18b{word-spacing:27.281462pt;}
.ws2a3{word-spacing:27.416525pt;}
.ws154{word-spacing:27.424923pt;}
.ws53{word-spacing:27.554038pt;}
.ws203{word-spacing:27.563602pt;}
.wse8{word-spacing:27.577948pt;}
.ws204{word-spacing:27.606640pt;}
.ws7f{word-spacing:28.701724pt;}
.ws80{word-spacing:28.821275pt;}
.ws148{word-spacing:29.112978pt;}
.ws211{word-spacing:29.132106pt;}
.ws15d{word-spacing:29.304259pt;}
.ws15e{word-spacing:29.352080pt;}
.ws1a3{word-spacing:29.438156pt;}
.wsc0{word-spacing:29.643783pt;}
.wsd3{word-spacing:29.677257pt;}
.wsbf{word-spacing:29.830282pt;}
.ws29b{word-spacing:30.465019pt;}
.wsc8{word-spacing:30.700611pt;}
.ws274{word-spacing:30.879455pt;}
.ws276{word-spacing:31.206222pt;}
.ws1a5{word-spacing:31.315447pt;}
.ws277{word-spacing:31.393515pt;}
.ws29e{word-spacing:31.445319pt;}
.ws2a8{word-spacing:31.477199pt;}
.ws223{word-spacing:31.532684pt;}
.ws59{word-spacing:31.666581pt;}
.ws5a{word-spacing:31.872208pt;}
.wscb{word-spacing:31.934374pt;}
.ws11a{word-spacing:32.603858pt;}
.ws168{word-spacing:33.249431pt;}
.ws256{word-spacing:33.330726pt;}
.ws2a9{word-spacing:33.461709pt;}
.ws141{word-spacing:33.909351pt;}
.ws5e{word-spacing:34.597963pt;}
.ws212{word-spacing:34.612309pt;}
.ws0{word-spacing:35.057901pt;}
.ws1{word-spacing:35.738018pt;}
.ws224{word-spacing:36.840733pt;}
.ws13d{word-spacing:37.036797pt;}
.wsa2{word-spacing:37.978856pt;}
.ws9b{word-spacing:39.078722pt;}
.ws18d{word-spacing:39.332169pt;}
.ws241{word-spacing:40.365087pt;}
.ws1b5{word-spacing:53.891304pt;}
.ws1e1{word-spacing:62.599408pt;}
.ws1e0{word-spacing:62.954327pt;}
.ws1ab{word-spacing:74.252509pt;}
.ws1e2{word-spacing:76.831937pt;}
.ws1c8{word-spacing:85.517058pt;}
.ws1b0{word-spacing:94.617964pt;}
.ws1d6{word-spacing:106.001535pt;}
.ws1d3{word-spacing:116.160883pt;}
.ws1b1{word-spacing:135.314868pt;}
.ws1e3{word-spacing:186.854778pt;}
.ws1cf{word-spacing:207.684284pt;}
.ws1d8{word-spacing:357.251994pt;}
.ws1cb{word-spacing:357.851353pt;}
._45{margin-left:-14.108317pt;}
._12{margin-left:-8.790356pt;}
._14{margin-left:-3.434054pt;}
._4a{margin-left:-2.054511pt;}
._19{margin-left:-0.970751pt;}
._0{width:1.222085pt;}
._1c{width:5.518459pt;}
._15{width:6.804824pt;}
._13{width:8.382998pt;}
._6{width:9.492323pt;}
._9{width:10.630445pt;}
._4{width:11.959849pt;}
._d{width:13.408803pt;}
._a{width:14.384336pt;}
._7{width:15.517677pt;}
._5{width:16.933156pt;}
._18{width:18.382111pt;}
._3{width:19.370427pt;}
._f{width:20.280575pt;}
._8{width:21.753439pt;}
._c{width:23.111535pt;}
._10{width:24.780462pt;}
._1b{width:25.698611pt;}
._b{width:26.664581pt;}
._20{width:27.625768pt;}
._1e{width:28.520007pt;}
._1a{width:29.610309pt;}
._1d{width:30.901456pt;}
._e{width:32.713844pt;}
._4c{width:33.751544pt;}
._2{width:34.685962pt;}
._1{width:36.152464pt;}
._17{width:39.164798pt;}
._16{width:40.135550pt;}
._4d{width:41.431479pt;}
._35{width:43.472659pt;}
._32{width:53.780784pt;}
._3c{width:64.930563pt;}
._3d{width:85.074977pt;}
._34{width:94.741236pt;}
._23{width:104.415996pt;}
._24{width:111.893106pt;}
._48{width:126.435002pt;}
._37{width:156.526226pt;}
._31{width:165.576123pt;}
._28{width:166.621813pt;}
._27{width:176.802415pt;}
._49{width:177.911867pt;}
._2d{width:197.265638pt;}
._40{width:198.472858pt;}
._46{width:248.155896pt;}
._33{width:251.501255pt;}
._3a{width:259.450201pt;}
._4b{width:263.098025pt;}
._3f{width:269.124961pt;}
._39{width:279.811405pt;}
._42{width:289.486166pt;}
._47{width:290.540357pt;}
._25{width:318.391424pt;}
._3b{width:335.152223pt;}
._2c{width:387.623769pt;}
._2b{width:406.820262pt;}
._22{width:418.271845pt;}
._44{width:425.107089pt;}
._29{width:428.409940pt;}
._3e{width:437.476839pt;}
._41{width:445.366274pt;}
._2a{width:459.398077pt;}
._43{width:477.408604pt;}
._26{width:500.464798pt;}
._36{width:541.187207pt;}
._38{width:549.076642pt;}
._2f{width:558.870424pt;}
._2e{width:566.394293pt;}
._30{width:574.708805pt;}
._11{width:1246.577677pt;}
._21{width:1635.268531pt;}
._1f{width:1842.387462pt;}
.fs8{font-size:24.792000pt;}
.fsf{font-size:28.334400pt;}
.fs6{font-size:31.876267pt;}
.fs10{font-size:32.721600pt;}
.fsd{font-size:33.970667pt;}
.fs2{font-size:37.188800pt;}
.fs7{font-size:37.193600pt;}
.fsb{font-size:37.312000pt;}
.fse{font-size:39.849600pt;}
.fs3{font-size:42.507733pt;}
.fs4{font-size:47.820267pt;}
.fsc{font-size:48.000000pt;}
.fs5{font-size:50.477867pt;}
.fs9{font-size:53.133867pt;}
.fs1{font-size:55.790400pt;}
.fs0{font-size:106.268267pt;}
.fsa{font-size:214.398933pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:35.145863pt;}
.y62{bottom:35.149600pt;}
.y5f{bottom:62.362833pt;}
.yf3{bottom:62.363873pt;}
.y232{bottom:62.364258pt;}
.y1ef{bottom:62.816481pt;}
.yac{bottom:63.043754pt;}
.y161{bottom:63.045446pt;}
.y187{bottom:63.048068pt;}
.y12e{bottom:63.048708pt;}
.y4b{bottom:63.345232pt;}
.y1c1{bottom:73.398808pt;}
.yf2{bottom:77.027958pt;}
.y231{bottom:77.028343pt;}
.y1ee{bottom:77.480565pt;}
.yab{bottom:77.632522pt;}
.y160{bottom:77.634214pt;}
.y186{bottom:77.636836pt;}
.y12d{bottom:77.637476pt;}
.y4a{bottom:77.934000pt;}
.y48{bottom:77.934165pt;}
.y5e{bottom:78.312379pt;}
.y49{bottom:83.225333pt;}
.y1c0{bottom:85.341733pt;}
.yf1{bottom:91.616726pt;}
.y230{bottom:91.617110pt;}
.y1ed{bottom:92.069333pt;}
.y1eb{bottom:92.070412pt;}
.y15f{bottom:92.298299pt;}
.y185{bottom:92.300921pt;}
.y12c{bottom:92.301560pt;}
.y47{bottom:92.522933pt;}
.y5d{bottom:94.261924pt;}
.y1ec{bottom:97.360667pt;}
.yaa{bottom:98.949601pt;}
.y1bf{bottom:104.758976pt;}
.yf0{bottom:106.205493pt;}
.y22f{bottom:106.205878pt;}
.y1ea{bottom:106.659180pt;}
.y15e{bottom:106.887067pt;}
.y184{bottom:106.889688pt;}
.y12b{bottom:106.890328pt;}
.y45{bottom:107.187632pt;}
.y5c{bottom:110.211470pt;}
.y46{bottom:112.478800pt;}
.y1be{bottom:116.051200pt;}
.yef{bottom:120.794261pt;}
.y22e{bottom:120.794646pt;}
.y1e9{bottom:121.323264pt;}
.y15d{bottom:121.475835pt;}
.y183{bottom:121.478456pt;}
.y12a{bottom:121.479096pt;}
.y42{bottom:121.776117pt;}
.y44{bottom:121.776400pt;}
.y5b{bottom:122.154335pt;}
.y43{bottom:127.067733pt;}
.ya9{bottom:130.471525pt;}
.y1bd{bottom:132.987422pt;}
.y5a{bottom:134.097200pt;}
.yee{bottom:135.458346pt;}
.y22d{bottom:135.458731pt;}
.y1e8{bottom:135.912032pt;}
.y15c{bottom:136.139919pt;}
.y182{bottom:136.142541pt;}
.y129{bottom:136.143181pt;}
.y41{bottom:136.364885pt;}
.y1bc{bottom:140.807067pt;}
.ya8{bottom:145.060293pt;}
.y59{bottom:146.040065pt;}
.yed{bottom:150.047114pt;}
.y22c{bottom:150.047499pt;}
.y1e7{bottom:150.500800pt;}
.y1e5{bottom:150.501878pt;}
.y15b{bottom:150.728687pt;}
.y181{bottom:150.731309pt;}
.y128{bottom:150.731949pt;}
.y40{bottom:150.953653pt;}
.y1e6{bottom:155.867733pt;}
.y1ba{bottom:159.452267pt;}
.ya7{bottom:159.724378pt;}
.y58{bottom:161.989610pt;}
.yec{bottom:164.635882pt;}
.y22b{bottom:164.636267pt;}
.y1e4{bottom:165.165963pt;}
.y15a{bottom:165.317455pt;}
.y180{bottom:165.320077pt;}
.y127{bottom:165.320717pt;}
.y3f{bottom:165.618933pt;}
.y3d{bottom:165.619846pt;}
.y3e{bottom:170.910267pt;}
.y57{bottom:173.933405pt;}
.ya6{bottom:174.313146pt;}
.y229{bottom:179.301264pt;}
.y1e3{bottom:179.754731pt;}
.y159{bottom:179.981540pt;}
.y17f{bottom:179.984162pt;}
.y126{bottom:179.984801pt;}
.y3c{bottom:180.208614pt;}
.y1bb{bottom:180.323552pt;}
.y22a{bottom:184.592133pt;}
.y56{bottom:185.877200pt;}
.ya5{bottom:188.901914pt;}
.y55{bottom:192.680400pt;}
.yeb{bottom:193.587467pt;}
.ye9{bottom:193.587798pt;}
.y228{bottom:193.890032pt;}
.y1e2{bottom:194.343499pt;}
.y158{bottom:194.570308pt;}
.y17e{bottom:194.572929pt;}
.y125{bottom:194.573569pt;}
.y3b{bottom:194.797382pt;}
.yea{bottom:198.878800pt;}
.y54{bottom:201.826800pt;}
.ya4{bottom:203.490682pt;}
.y53{bottom:205.984267pt;}
.ye8{bottom:208.176565pt;}
.y227{bottom:208.478800pt;}
.y225{bottom:208.479713pt;}
.y1e1{bottom:208.932267pt;}
.y1df{bottom:208.935785pt;}
.y157{bottom:209.159076pt;}
.y17d{bottom:209.161697pt;}
.y124{bottom:209.162337pt;}
.y3a{bottom:209.461467pt;}
.y52{bottom:213.845272pt;}
.y226{bottom:213.845600pt;}
.y1e0{bottom:214.299200pt;}
.ya3{bottom:218.154766pt;}
.ye7{bottom:222.765333pt;}
.y224{bottom:223.143798pt;}
.y1de{bottom:223.599870pt;}
.y156{bottom:223.747843pt;}
.y17c{bottom:223.750465pt;}
.y123{bottom:223.751105pt;}
.y38{bottom:224.051927pt;}
.y51{bottom:225.789067pt;}
.y39{bottom:229.341733pt;}
.y50{bottom:229.870933pt;}
.ye5{bottom:237.431409pt;}
.y223{bottom:237.732565pt;}
.y1dd{bottom:238.188637pt;}
.y155{bottom:238.411928pt;}
.y17b{bottom:238.414550pt;}
.y122{bottom:238.415190pt;}
.y37{bottom:238.640695pt;}
.ya2{bottom:239.395333pt;}
.y4f{bottom:241.738547pt;}
.ye6{bottom:242.721333pt;}
.ye4{bottom:252.020177pt;}
.y222{bottom:252.321333pt;}
.y220{bottom:252.327755pt;}
.y1dc{bottom:252.777405pt;}
.y154{bottom:253.000696pt;}
.y121{bottom:253.003958pt;}
.y36{bottom:253.304780pt;}
.y4e{bottom:257.612776pt;}
.y221{bottom:257.688133pt;}
.y17a{bottom:259.655117pt;}
.ya1{bottom:263.281867pt;}
.ye3{bottom:266.608945pt;}
.y21f{bottom:266.991840pt;}
.y1db{bottom:267.441490pt;}
.y153{bottom:267.589464pt;}
.y120{bottom:267.592725pt;}
.y35{bottom:267.893547pt;}
.y4d{bottom:273.562321pt;}
.ye2{bottom:281.197713pt;}
.y21e{bottom:281.580608pt;}
.y1da{bottom:282.030258pt;}
.y11f{bottom:282.256810pt;}
.y34{bottom:282.482315pt;}
.y179{bottom:288.530189pt;}
.y152{bottom:288.906543pt;}
.y4c{bottom:289.511867pt;}
.ye1{bottom:295.861798pt;}
.ya0{bottom:296.168164pt;}
.y21d{bottom:296.169376pt;}
.y1d9{bottom:296.619026pt;}
.y11e{bottom:296.845578pt;}
.y33{bottom:297.146400pt;}
.y31{bottom:297.146864pt;}
.y29e{bottom:301.538638pt;}
.y265{bottom:301.919248pt;}
.y32{bottom:302.437867pt;}
.y178{bottom:303.118957pt;}
.ye0{bottom:310.450565pt;}
.y9f{bottom:310.756932pt;}
.y21c{bottom:310.758144pt;}
.y1d8{bottom:311.283110pt;}
.y11d{bottom:311.434346pt;}
.y30{bottom:311.735632pt;}
.y29d{bottom:313.481563pt;}
.y264{bottom:313.862173pt;}
.y177{bottom:317.784237pt;}
.y2a{bottom:318.689899pt;}
.ydf{bottom:325.039333pt;}
.y9e{bottom:325.421017pt;}
.y21b{bottom:325.422229pt;}
.y29c{bottom:325.424488pt;}
.y263{bottom:325.805098pt;}
.y1d7{bottom:325.871878pt;}
.y11c{bottom:326.098431pt;}
.y2f{bottom:326.324400pt;}
.y2d{bottom:326.325600pt;}
.y151{bottom:327.080267pt;}
.y14f{bottom:327.080432pt;}
.y2e{bottom:331.615733pt;}
.y150{bottom:332.371733pt;}
.y176{bottom:332.373005pt;}
.y29{bottom:333.278667pt;}
.y29b{bottom:337.367413pt;}
.y262{bottom:337.748023pt;}
.ydd{bottom:339.703911pt;}
.y9d{bottom:340.009785pt;}
.y21a{bottom:340.010996pt;}
.y1d6{bottom:340.460646pt;}
.y11b{bottom:340.687199pt;}
.y2c{bottom:340.914368pt;}
.y14e{bottom:341.669200pt;}
.y14c{bottom:341.669499pt;}
.yde{bottom:344.995200pt;}
.y14d{bottom:346.960533pt;}
.y175{bottom:346.961773pt;}
.y29a{bottom:349.310338pt;}
.y261{bottom:349.690948pt;}
.ydc{bottom:351.647022pt;}
.y28{bottom:354.595333pt;}
.y9c{bottom:354.598553pt;}
.y219{bottom:354.599764pt;}
.y1d5{bottom:355.124731pt;}
.y11a{bottom:355.275966pt;}
.y2b{bottom:355.578453pt;}
.y149{bottom:356.257403pt;}
.y14b{bottom:356.258267pt;}
.y299{bottom:361.253264pt;}
.y14a{bottom:361.625200pt;}
.y260{bottom:361.709588pt;}
.y174{bottom:368.202340pt;}
.y9b{bottom:369.262637pt;}
.y218{bottom:369.263849pt;}
.y1d4{bottom:369.713499pt;}
.y148{bottom:370.922683pt;}
.y298{bottom:373.271903pt;}
.y25f{bottom:373.652513pt;}
.y119{bottom:376.516533pt;}
.y9a{bottom:383.851405pt;}
.y217{bottom:383.852617pt;}
.y173{bottom:384.151595pt;}
.y1d3{bottom:384.302267pt;}
.y297{bottom:385.214828pt;}
.y147{bottom:385.511451pt;}
.y25e{bottom:385.595438pt;}
.ydb{bottom:391.181232pt;}
.y27{bottom:392.768533pt;}
.y296{bottom:397.157753pt;}
.y25d{bottom:397.538363pt;}
.y99{bottom:398.440173pt;}
.y216{bottom:398.441385pt;}
.y146{bottom:400.100219pt;}
.y118{bottom:400.478800pt;}
.y1d2{bottom:405.543333pt;}
.yda{bottom:405.770000pt;}
.yd8{bottom:405.772456pt;}
.y295{bottom:409.100678pt;}
.y25c{bottom:409.481288pt;}
.yd9{bottom:411.061333pt;}
.y26{bottom:412.726634pt;}
.y172{bottom:413.103180pt;}
.y98{bottom:413.104258pt;}
.y215{bottom:413.105470pt;}
.y1b9{bottom:414.690202pt;}
.y145{bottom:414.765499pt;}
.yd7{bottom:420.361224pt;}
.y294{bottom:421.043603pt;}
.y25b{bottom:421.424213pt;}
.y25{bottom:426.030232pt;}
.y1b7{bottom:426.633067pt;}
.y171{bottom:427.691947pt;}
.y97{bottom:427.693026pt;}
.y214{bottom:427.694237pt;}
.y144{bottom:429.354267pt;}
.y142{bottom:429.354731pt;}
.y1b8{bottom:430.790533pt;}
.y293{bottom:432.986529pt;}
.y25a{bottom:433.442853pt;}
.y143{bottom:434.645600pt;}
.yd6{bottom:435.025309pt;}
.y1d1{bottom:437.141260pt;}
.y24{bottom:439.258513pt;}
.y170{bottom:442.280715pt;}
.y96{bottom:442.281794pt;}
.y213{bottom:442.283005pt;}
.y141{bottom:443.943499pt;}
.y117{bottom:443.944860pt;}
.y292{bottom:445.005168pt;}
.y259{bottom:445.385778pt;}
.y1b6{bottom:447.571602pt;}
.yd5{bottom:449.614076pt;}
.y1d0{bottom:451.730028pt;}
.y23{bottom:452.562111pt;}
.y16f{bottom:456.944800pt;}
.y95{bottom:456.945878pt;}
.y212{bottom:456.947090pt;}
.y291{bottom:456.948093pt;}
.y258{bottom:457.328703pt;}
.y140{bottom:458.532267pt;}
.y13e{bottom:458.532881pt;}
.y116{bottom:458.533628pt;}
.y1b5{bottom:460.875460pt;}
.y13f{bottom:463.899200pt;}
.yd4{bottom:464.202844pt;}
.y22{bottom:465.865710pt;}
.y1cf{bottom:466.318796pt;}
.y290{bottom:468.891018pt;}
.y257{bottom:469.271628pt;}
.y94{bottom:471.534646pt;}
.y211{bottom:471.535858pt;}
.y1b3{bottom:472.365333pt;}
.y13d{bottom:473.196965pt;}
.y115{bottom:473.197713pt;}
.y1b4{bottom:474.103867pt;}
.y1b2{bottom:474.104162pt;}
.yd3{bottom:478.791612pt;}
.y21{bottom:479.093991pt;}
.y28f{bottom:480.833943pt;}
.y1ce{bottom:480.984076pt;}
.y256{bottom:481.214553pt;}
.y93{bottom:486.123414pt;}
.y210{bottom:486.124626pt;}
.y1b1{bottom:487.408020pt;}
.y13c{bottom:487.785733pt;}
.y114{bottom:487.786481pt;}
.y13a{bottom:487.796685pt;}
.y20{bottom:492.397589pt;}
.y28e{bottom:492.776868pt;}
.y13b{bottom:493.077067pt;}
.y255{bottom:493.157478pt;}
.yd2{bottom:493.456892pt;}
.y1aa{bottom:494.361955pt;}
.y1cd{bottom:495.572844pt;}
.y1b0{bottom:500.711878pt;}
.y92{bottom:500.712182pt;}
.y20f{bottom:500.713394pt;}
.y113{bottom:502.375249pt;}
.y139{bottom:502.385453pt;}
.y28d{bottom:504.719793pt;}
.y254{bottom:505.100403pt;}
.y1f{bottom:505.701187pt;}
.y1a9{bottom:506.381067pt;}
.yd1{bottom:508.045660pt;}
.y1cc{bottom:510.161612pt;}
.y1af{bottom:514.015736pt;}
.y111{bottom:514.998400pt;}
.y91{bottom:515.376267pt;}
.y20e{bottom:515.377478pt;}
.y8f{bottom:515.377644pt;}
.y28c{bottom:516.662719pt;}
.y112{bottom:517.039333pt;}
.y110{bottom:517.045703pt;}
.y138{bottom:517.049538pt;}
.y253{bottom:517.119043pt;}
.y1e{bottom:519.004785pt;}
.y90{bottom:520.667600pt;}
.yd0{bottom:522.634428pt;}
.y1cb{bottom:524.825696pt;}
.y1ae{bottom:527.244142pt;}
.y1a8{bottom:527.245374pt;}
.y28b{bottom:528.681358pt;}
.y252{bottom:529.061968pt;}
.y20d{bottom:529.966246pt;}
.y8e{bottom:529.966412pt;}
.y10f{bottom:531.634471pt;}
.y137{bottom:531.638305pt;}
.y1d{bottom:532.233067pt;}
.ycf{bottom:537.298513pt;}
.y1ca{bottom:539.414464pt;}
.y1ad{bottom:540.548000pt;}
.y1a7{bottom:540.549231pt;}
.y28a{bottom:540.624283pt;}
.y251{bottom:541.004893pt;}
.y20c{bottom:544.555014pt;}
.y8d{bottom:544.555180pt;}
.y10e{bottom:546.223239pt;}
.y136{bottom:546.227073pt;}
.yce{bottom:551.887281pt;}
.y289{bottom:552.567208pt;}
.y1c{bottom:552.570334pt;}
.y250{bottom:552.947818pt;}
.y1a6{bottom:553.853089pt;}
.y1c9{bottom:554.003232pt;}
.y1ac{bottom:558.538533pt;}
.y20b{bottom:559.219099pt;}
.y8c{bottom:559.219264pt;}
.y10d{bottom:560.887324pt;}
.y135{bottom:560.891158pt;}
.y288{bottom:564.529108pt;}
.y24f{bottom:564.890743pt;}
.ycd{bottom:566.476049pt;}
.y1c7{bottom:566.626667pt;}
.y1a5{bottom:567.081496pt;}
.y1b{bottom:567.159102pt;}
.y1c8{bottom:568.592000pt;}
.y1c6{bottom:568.592582pt;}
.y20a{bottom:573.807867pt;}
.y8b{bottom:573.808032pt;}
.y208{bottom:573.809559pt;}
.y10c{bottom:575.476091pt;}
.y134{bottom:575.479926pt;}
.y287{bottom:576.472033pt;}
.y24e{bottom:576.833668pt;}
.y209{bottom:579.099200pt;}
.y1a4{bottom:580.385354pt;}
.ycc{bottom:581.140133pt;}
.y1a{bottom:581.747870pt;}
.y1c5{bottom:583.256667pt;}
.y89{bottom:588.396800pt;}
.y207{bottom:588.398327pt;}
.y286{bottom:588.414958pt;}
.y24d{bottom:588.852308pt;}
.y10b{bottom:590.064859pt;}
.y1a3{bottom:593.689212pt;}
.y8a{bottom:593.763733pt;}
.y1c4{bottom:595.880267pt;}
.y19{bottom:596.413150pt;}
.y133{bottom:596.720493pt;}
.y1c3{bottom:597.845966pt;}
.y285{bottom:600.433598pt;}
.y24c{bottom:600.795233pt;}
.y88{bottom:603.061333pt;}
.y86{bottom:603.062412pt;}
.yca{bottom:604.725030pt;}
.y10a{bottom:604.728944pt;}
.y1a2{bottom:606.993069pt;}
.y87{bottom:608.352667pt;}
.ycb{bottom:610.015733pt;}
.y18{bottom:611.001918pt;}
.y284{bottom:612.376523pt;}
.y24b{bottom:612.738158pt;}
.y85{bottom:617.651180pt;}
.y1c2{bottom:619.086533pt;}
.yc9{bottom:619.313798pt;}
.y109{bottom:619.317712pt;}
.y1a1{bottom:620.221476pt;}
.y283{bottom:624.319448pt;}
.y24a{bottom:624.681083pt;}
.y17{bottom:625.590686pt;}
.y84{bottom:632.239947pt;}
.y132{bottom:632.248560pt;}
.y1a0{bottom:633.525334pt;}
.yc8{bottom:633.902565pt;}
.y108{bottom:633.906480pt;}
.y282{bottom:636.262373pt;}
.y249{bottom:636.624008pt;}
.y16{bottom:640.254771pt;}
.y83{bottom:646.828715pt;}
.y19f{bottom:646.829192pt;}
.y131{bottom:646.837328pt;}
.y281{bottom:648.205298pt;}
.yc7{bottom:648.491333pt;}
.yc5{bottom:648.492246pt;}
.y107{bottom:648.495248pt;}
.y248{bottom:648.566933pt;}
.yc6{bottom:653.858267pt;}
.y15{bottom:654.843539pt;}
.y19e{bottom:660.133050pt;}
.y280{bottom:660.148223pt;}
.y82{bottom:661.492800pt;}
.y80{bottom:661.493713pt;}
.y130{bottom:661.501413pt;}
.yc4{bottom:663.156331pt;}
.y81{bottom:666.784133pt;}
.y247{bottom:667.842400pt;}
.y14{bottom:669.432306pt;}
.y106{bottom:669.812327pt;}
.y27f{bottom:672.091148pt;}
.y19d{bottom:673.361456pt;}
.y7f{bottom:676.082481pt;}
.y205{bottom:676.082646pt;}
.y12f{bottom:676.090180pt;}
.yc3{bottom:677.745099pt;}
.y206{bottom:681.373067pt;}
.y13{bottom:684.096391pt;}
.y27e{bottom:684.109788pt;}
.y19c{bottom:686.665314pt;}
.y233{bottom:687.193600pt;}
.yc2{bottom:690.368400pt;}
.y7e{bottom:690.671249pt;}
.y204{bottom:690.671414pt;}
.yc1{bottom:692.333867pt;}
.y27d{bottom:696.052713pt;}
.y12{bottom:698.685159pt;}
.y246{bottom:699.368912pt;}
.y19b{bottom:699.969172pt;}
.ybe{bottom:704.957467pt;}
.y7d{bottom:705.335333pt;}
.y203{bottom:705.335499pt;}
.y7b{bottom:705.335798pt;}
.y105{bottom:705.340394pt;}
.ybf{bottom:706.998400pt;}
.ybd{bottom:707.007006pt;}
.y27c{bottom:707.995638pt;}
.y7c{bottom:710.626667pt;}
.yc0{bottom:712.289733pt;}
.y19a{bottom:713.273030pt;}
.y11{bottom:713.273927pt;}
.y245{bottom:714.032996pt;}
.y202{bottom:719.924267pt;}
.y7a{bottom:719.924565pt;}
.y104{bottom:719.929162pt;}
.y27b{bottom:719.938563pt;}
.ybc{bottom:721.595774pt;}
.y201{bottom:725.215600pt;}
.y199{bottom:726.501436pt;}
.y10{bottom:727.862695pt;}
.y244{bottom:728.621764pt;}
.y27a{bottom:731.881488pt;}
.y79{bottom:734.513333pt;}
.y1ff{bottom:734.513947pt;}
.y103{bottom:734.517930pt;}
.ybb{bottom:736.184542pt;}
.y16e{bottom:738.444000pt;}
.y198{bottom:739.805294pt;}
.y200{bottom:739.880133pt;}
.yf{bottom:742.526780pt;}
.y243{bottom:743.210532pt;}
.y279{bottom:743.824413pt;}
.y1fe{bottom:749.178032pt;}
.y77{bottom:749.179110pt;}
.y102{bottom:749.182015pt;}
.yba{bottom:750.848627pt;}
.y197{bottom:753.109152pt;}
.y78{bottom:754.469200pt;}
.y278{bottom:755.843053pt;}
.ye{bottom:757.115547pt;}
.y242{bottom:757.874617pt;}
.y1fc{bottom:761.801467pt;}
.y1fd{bottom:763.766800pt;}
.y76{bottom:763.767878pt;}
.y1fb{bottom:763.768044pt;}
.y101{bottom:763.770782pt;}
.y166{bottom:765.180667pt;}
.yb9{bottom:765.437395pt;}
.y196{bottom:766.337559pt;}
.y277{bottom:767.785978pt;}
.yd{bottom:771.704315pt;}
.y241{bottom:772.463385pt;}
.y75{bottom:778.356646pt;}
.y1fa{bottom:778.356812pt;}
.y100{bottom:778.359550pt;}
.y195{bottom:779.641416pt;}
.y276{bottom:779.728903pt;}
.yb8{bottom:780.026163pt;}
.yc{bottom:786.368400pt;}
.y240{bottom:787.052153pt;}
.y275{bottom:791.671828pt;}
.y194{bottom:792.945274pt;}
.y74{bottom:793.020731pt;}
.y1f9{bottom:793.020896pt;}
.yff{bottom:793.023635pt;}
.yb{bottom:800.655067pt;}
.yb7{bottom:801.266730pt;}
.y23f{bottom:801.716237pt;}
.y274{bottom:803.614753pt;}
.y193{bottom:806.249132pt;}
.y16d{bottom:807.262135pt;}
.y73{bottom:807.609499pt;}
.y1f8{bottom:807.609664pt;}
.yfe{bottom:807.612403pt;}
.y273{bottom:815.557678pt;}
.y23e{bottom:816.305005pt;}
.y16c{bottom:817.714060pt;}
.y192{bottom:819.477539pt;}
.y72{bottom:822.198267pt;}
.y1f7{bottom:822.198432pt;}
.yfd{bottom:822.201171pt;}
.y272{bottom:827.500603pt;}
.y16b{bottom:828.098043pt;}
.ya{bottom:829.681733pt;}
.y8{bottom:829.682010pt;}
.y23d{bottom:830.893773pt;}
.y191{bottom:832.781397pt;}
.y9{bottom:835.880133pt;}
.y1f6{bottom:836.787200pt;}
.y70{bottom:836.788113pt;}
.yfc{bottom:836.789939pt;}
.yb6{bottom:836.794797pt;}
.y16a{bottom:838.617909pt;}
.y271{bottom:839.519243pt;}
.y71{bottom:842.154133pt;}
.y23c{bottom:845.557858pt;}
.y190{bottom:846.085254pt;}
.y5{bottom:846.311594pt;}
.y7{bottom:846.311733pt;}
.y169{bottom:849.070684pt;}
.y6f{bottom:851.452198pt;}
.y1f4{bottom:851.453559pt;}
.yfb{bottom:851.454023pt;}
.yb5{bottom:851.458881pt;}
.y270{bottom:851.462168pt;}
.y6{bottom:852.510133pt;}
.y1f5{bottom:856.743200pt;}
.y18f{bottom:859.389112pt;}
.y168{bottom:859.454667pt;}
.y23b{bottom:860.146626pt;}
.y3{bottom:862.866000pt;}
.y26f{bottom:863.405093pt;}
.y6e{bottom:866.040965pt;}
.y1f3{bottom:866.042327pt;}
.yfa{bottom:866.042791pt;}
.yb4{bottom:866.047649pt;}
.y4{bottom:869.064400pt;}
.y167{bottom:869.974533pt;}
.y18e{bottom:872.617519pt;}
.y23a{bottom:874.735394pt;}
.y26e{bottom:875.348018pt;}
.y6d{bottom:880.629733pt;}
.y6b{bottom:880.631095pt;}
.yf9{bottom:880.631559pt;}
.yb3{bottom:880.636417pt;}
.y18d{bottom:885.921377pt;}
.y6c{bottom:885.996667pt;}
.y2{bottom:886.602416pt;}
.y26d{bottom:887.290943pt;}
.y239{bottom:889.324161pt;}
.y6a{bottom:895.295180pt;}
.yf8{bottom:895.295644pt;}
.yb2{bottom:895.300502pt;}
.y18c{bottom:899.225235pt;}
.y26c{bottom:899.233868pt;}
.y238{bottom:903.988246pt;}
.y69{bottom:909.883947pt;}
.yf7{bottom:909.884412pt;}
.yb1{bottom:909.889270pt;}
.y26b{bottom:911.252508pt;}
.y1{bottom:913.209333pt;}
.y18b{bottom:918.349464pt;}
.y237{bottom:918.577014pt;}
.y165{bottom:919.929260pt;}
.y26a{bottom:923.195433pt;}
.y68{bottom:924.472715pt;}
.yf6{bottom:924.473180pt;}
.yb0{bottom:924.478038pt;}
.y164{bottom:930.652950pt;}
.y1ab{bottom:931.653322pt;}
.y236{bottom:933.165782pt;}
.y269{bottom:935.138358pt;}
.y18a{bottom:935.735127pt;}
.y67{bottom:939.136800pt;}
.y65{bottom:939.137264pt;}
.y1f2{bottom:939.141995pt;}
.yaf{bottom:939.142122pt;}
.y163{bottom:941.104875pt;}
.y66{bottom:944.428267pt;}
.y268{bottom:947.081283pt;}
.y235{bottom:947.829867pt;}
.y61{bottom:948.431733pt;}
.y189{bottom:949.038985pt;}
.y162{bottom:951.556800pt;}
.y64{bottom:953.726032pt;}
.y1f1{bottom:953.730763pt;}
.yae{bottom:953.730890pt;}
.y267{bottom:959.024208pt;}
.y188{bottom:965.064400pt;}
.y63{bottom:968.314800pt;}
.y1f0{bottom:968.319531pt;}
.yad{bottom:968.319658pt;}
.y234{bottom:969.070667pt;}
.y266{bottom:970.967133pt;}
.y60{bottom:973.530533pt;}
.yf4{bottom:1008.151067pt;}
.hd{height:15.098328pt;}
.hc{height:18.073368pt;}
.h19{height:18.296496pt;}
.h18{height:20.910787pt;}
.h13{height:23.609613pt;}
.h1a{height:23.821325pt;}
.ha{height:24.353468pt;}
.h5{height:27.110635pt;}
.hb{height:27.114134pt;}
.h17{height:27.448877pt;}
.h14{height:29.050358pt;}
.h10{height:30.350522pt;}
.h1b{height:30.445094pt;}
.h15{height:30.690583pt;}
.h6{height:30.860614pt;}
.h12{height:30.988138pt;}
.h16{height:31.370707pt;}
.h4{height:33.231912pt;}
.h7{height:34.860974pt;}
.h11{height:34.956615pt;}
.hf{height:35.232000pt;}
.h9{height:36.534684pt;}
.h8{height:36.798365pt;}
.h3{height:40.671202pt;}
.h2{height:77.469566pt;}
.he{height:183.084527pt;}
.h0{height:1042.620400pt;}
.h1{height:1042.666667pt;}
.w0{width:782.627067pt;}
.w1{width:782.666667pt;}
.x0{left:0.000000pt;}
.x27{left:50.494533pt;}
.x54{left:54.500800pt;}
.x7b{left:56.239467pt;}
.x55{left:61.076746pt;}
.x2d{left:62.437867pt;}
.x1{left:68.031600pt;}
.x7a{left:68.938667pt;}
.x2f{left:72.037867pt;}
.x22{left:73.171733pt;}
.x13{left:76.346533pt;}
.x31{left:78.765467pt;}
.x47{left:79.974712pt;}
.x14{left:88.290840pt;}
.x30{left:91.993733pt;}
.x66{left:94.337067pt;}
.x33{left:96.302400pt;}
.x32{left:98.040933pt;}
.x67{left:105.675600pt;}
.x2a{left:107.414267pt;}
.x6a{left:116.938667pt;}
.x34{left:118.223600pt;}
.x2b{left:122.078800pt;}
.x36{left:128.277200pt;}
.x6b{left:139.011067pt;}
.x48{left:143.017333pt;}
.x37{left:148.006267pt;}
.x49{left:151.030000pt;}
.x2{left:173.253600pt;}
.x3{left:186.859867pt;}
.x10{left:195.779600pt;}
.x11{left:201.070800pt;}
.x56{left:211.502050pt;}
.x68{left:222.462933pt;}
.x8{left:238.714933pt;}
.x28{left:239.697600pt;}
.x69{left:241.209467pt;}
.x9{left:244.081867pt;}
.x29{left:257.007867pt;}
.x2e{left:263.055067pt;}
.x23{left:305.310267pt;}
.x24{left:310.903867pt;}
.x6c{left:312.491333pt;}
.x2c{left:321.788933pt;}
.x6d{left:334.563733pt;}
.x12{left:336.680267pt;}
.x35{left:347.111733pt;}
.x4{left:368.050400pt;}
.x5{left:382.185867pt;}
.x46{left:384.303512pt;}
.xa{left:388.308667pt;}
.x65{left:389.820400pt;}
.xb{left:393.675600pt;}
.x38{left:397.229723pt;}
.x26{left:401.839333pt;}
.x5a{left:407.811394pt;}
.x3e{left:409.170885pt;}
.x5f{left:413.329067pt;}
.x15{left:414.766790pt;}
.x7c{left:419.223496pt;}
.x60{left:420.661333pt;}
.x19{left:426.707812pt;}
.x52{left:434.663200pt;}
.x20{left:435.779467pt;}
.x63{left:437.226933pt;}
.x21{left:452.484933pt;}
.x1b{left:459.288133pt;}
.x41{left:462.160533pt;}
.x45{left:464.655067pt;}
.x5e{left:469.719600pt;}
.x70{left:470.853467pt;}
.x53{left:472.943046pt;}
.x1c{left:475.086533pt;}
.x71{left:478.488133pt;}
.x72{left:483.477067pt;}
.x42{left:493.379467pt;}
.x43{left:498.292800pt;}
.x73{left:503.055067pt;}
.xc{left:507.288133pt;}
.x64{left:511.498133pt;}
.xd{left:512.655067pt;}
.x50{left:514.209071pt;}
.x5b{left:517.115779pt;}
.x5d{left:519.610983pt;}
.x5c{left:532.310168pt;}
.x51{left:538.507733pt;}
.x57{left:542.362185pt;}
.x61{left:561.562133pt;}
.x6e{left:562.469200pt;}
.x62{left:568.818800pt;}
.x3f{left:569.952667pt;}
.x40{left:574.941733pt;}
.x4e{left:582.803067pt;}
.x4f{left:587.716400pt;}
.x77{left:595.502267pt;}
.x4c{left:598.525867pt;}
.x16{left:603.666000pt;}
.x6{left:616.592000pt;}
.x7{left:621.883333pt;}
.x17{left:624.377867pt;}
.x58{left:627.629510pt;}
.x78{left:630.198400pt;}
.x4d{left:637.152667pt;}
.x3c{left:638.815600pt;}
.x1d{left:642.670800pt;}
.x3d{left:646.450267pt;}
.x79{left:649.625067pt;}
.x75{left:655.672400pt;}
.x1e{left:658.620400pt;}
.x74{left:664.970000pt;}
.x6f{left:668.447200pt;}
.x76{left:674.570000pt;}
.xe{left:690.746267pt;}
.x25{left:695.194933pt;}
.xf{left:696.113200pt;}
.x39{left:699.439333pt;}
.x4a{left:700.875467pt;}
.x3a{left:704.352667pt;}
.x18{left:705.562133pt;}
.x3b{left:708.283333pt;}
.x4b{left:709.266000pt;}
.x59{left:712.367613pt;}
.x44{left:719.017200pt;}
.x1f{left:721.511733pt;}
.x1a{left:723.325867pt;}
}




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