
    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_bb978cdc1913d2c3b3f6757d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_5b8b9cb4328741dcd9cfc99c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_849ef16b7197d3b98569192e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.695000;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_499fce6cb6cc8c3535e94d93.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.027000;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_8e183c7c07a0fcefd09f2f82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_2fd51662fc897d17c9e61638.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_db67363ccca2f0ec23a48144.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.040000;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_810c140b1a172ec908df7c32.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_ff100839e6c4e069d2345bb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949000;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_17af6d065e52a056a374bf86.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692000;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_e6df238c94fcf3477c7ef966.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692000;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_cd8c4f81e1bc677fef4a53b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.051000;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_4016d5b839926cc95580bb4b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.078000;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_f96e4f87c94c707e5ea315b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.249000;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_e1dfc1ebfba5c8675c2d9832.woff2')format("woff");}.fff{font-family:fff;line-height:0.168000;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_f028012e608151098378ca81.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;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_b017411aff9724f519267679.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704000;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_6a734b9f1a0b962befa6851c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.299000;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_dbcc983d9678b02c1531b8fb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.684000;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_72bc7a03d647f8d15d87b237.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.264000;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_c10fd60ec75b5638b4a66738.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.457000;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_8ab8ea7b793ec9a181048414.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.060000;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_b202b96cd498f512b2a8e67c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.039000;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_a0b5f86cd811df7138b401eb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.984000;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_ddd2de9aafa2fcb9ac793c50.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v3{vertical-align:-36.054929px;}
.v1{vertical-align:-15.679315px;}
.v2{vertical-align:-8.843399px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-2.892930px;}
.ls10{letter-spacing:-1.816901px;}
.ls57{letter-spacing:-1.322987px;}
.ls20{letter-spacing:-1.270067px;}
.ls1e{letter-spacing:-1.264187px;}
.ls14{letter-spacing:-1.240667px;}
.ls71{letter-spacing:-1.228907px;}
.ls5b{letter-spacing:-1.211268px;}
.ls59{letter-spacing:-1.175988px;}
.lsd{letter-spacing:-1.164228px;}
.ls1a{letter-spacing:-1.158348px;}
.ls58{letter-spacing:-1.146588px;}
.ls18{letter-spacing:-1.134828px;}
.ls4d{letter-spacing:-1.128948px;}
.ls4e{letter-spacing:-1.117189px;}
.ls4c{letter-spacing:-1.111309px;}
.ls4f{letter-spacing:-1.105429px;}
.ls17{letter-spacing:-1.099549px;}
.ls16{letter-spacing:-1.093669px;}
.ls4a{letter-spacing:-1.093663px;}
.ls12{letter-spacing:-1.087789px;}
.lsb{letter-spacing:-1.081909px;}
.ls13{letter-spacing:-1.076029px;}
.ls5{letter-spacing:-1.070149px;}
.lsa{letter-spacing:-1.064269px;}
.ls1f{letter-spacing:-1.058389px;}
.ls54{letter-spacing:-1.052509px;}
.ls1c{letter-spacing:-1.046629px;}
.ls56{letter-spacing:-1.040749px;}
.ls8{letter-spacing:-1.034869px;}
.lsf{letter-spacing:-1.028990px;}
.ls3{letter-spacing:-1.023110px;}
.ls1b{letter-spacing:-1.017230px;}
.ls9{letter-spacing:-1.011350px;}
.ls7{letter-spacing:-0.999590px;}
.ls21{letter-spacing:-0.993710px;}
.ls55{letter-spacing:-0.987830px;}
.lsc{letter-spacing:-0.981950px;}
.ls53{letter-spacing:-0.964310px;}
.ls5c{letter-spacing:-0.958430px;}
.ls51{letter-spacing:-0.946670px;}
.ls4{letter-spacing:-0.917271px;}
.ls11{letter-spacing:-0.881991px;}
.ls52{letter-spacing:-0.770272px;}
.ls19{letter-spacing:-0.729113px;}
.ls70{letter-spacing:-0.011760px;}
.ls49{letter-spacing:-0.005880px;}
.ls2{letter-spacing:0.000000px;}
.ls77{letter-spacing:0.000146px;}
.ls1{letter-spacing:0.005880px;}
.ls67{letter-spacing:0.032642px;}
.ls6f{letter-spacing:0.049499px;}
.ls74{letter-spacing:0.049572px;}
.ls73{letter-spacing:0.058428px;}
.ls75{letter-spacing:0.058476px;}
.ls6e{letter-spacing:0.058498px;}
.ls72{letter-spacing:0.058525px;}
.ls6b{letter-spacing:0.058798px;}
.ls63{letter-spacing:0.072203px;}
.ls4b{letter-spacing:0.073589px;}
.ls65{letter-spacing:0.074178px;}
.ls42{letter-spacing:0.125427px;}
.ls0{letter-spacing:0.167998px;}
.ls3a{letter-spacing:0.356669px;}
.ls31{letter-spacing:0.417476px;}
.ls40{letter-spacing:0.427264px;}
.ls3f{letter-spacing:0.540954px;}
.ls30{letter-spacing:0.552714px;}
.ls38{letter-spacing:0.558594px;}
.ls2b{letter-spacing:0.564474px;}
.ls2d{letter-spacing:0.570354px;}
.ls37{letter-spacing:0.576234px;}
.ls26{letter-spacing:0.582114px;}
.ls32{letter-spacing:0.587994px;}
.ls27{letter-spacing:0.593874px;}
.ls29{letter-spacing:0.599754px;}
.ls34{letter-spacing:0.605634px;}
.ls28{letter-spacing:0.611514px;}
.ls24{letter-spacing:0.617394px;}
.ls22{letter-spacing:0.623274px;}
.ls3e{letter-spacing:0.635034px;}
.ls39{letter-spacing:0.640913px;}
.ls2c{letter-spacing:0.646793px;}
.ls2a{letter-spacing:0.652673px;}
.ls2e{letter-spacing:0.658553px;}
.ls3d{letter-spacing:0.664433px;}
.ls23{letter-spacing:0.670313px;}
.ls2f{letter-spacing:0.682073px;}
.ls25{letter-spacing:0.687953px;}
.ls33{letter-spacing:0.729016px;}
.ls3c{letter-spacing:0.729019px;}
.lse{letter-spacing:1.317107px;}
.ls35{letter-spacing:1.999180px;}
.ls68{letter-spacing:3.061209px;}
.ls5f{letter-spacing:13.088747px;}
.ls62{letter-spacing:13.118146px;}
.ls61{letter-spacing:13.212226px;}
.ls60{letter-spacing:13.229865px;}
.ls76{letter-spacing:13.306311px;}
.ls6d{letter-spacing:13.504320px;}
.ls66{letter-spacing:15.986898px;}
.ls64{letter-spacing:15.986944px;}
.ls5e{letter-spacing:16.634347px;}
.ls5d{letter-spacing:19.388403px;}
.ls6c{letter-spacing:21.150145px;}
.ls43{letter-spacing:22.749573px;}
.ls1d{letter-spacing:22.808287px;}
.ls5a{letter-spacing:23.331603px;}
.ls50{letter-spacing:25.836455px;}
.ls69{letter-spacing:27.841516px;}
.ls6a{letter-spacing:31.287164px;}
.ls3b{letter-spacing:41.265418px;}
.ls36{letter-spacing:41.459457px;}
.ls41{letter-spacing:43.499743px;}
.ls45{letter-spacing:164.417142px;}
.ls46{letter-spacing:165.905119px;}
.ls47{letter-spacing:166.913114px;}
.ls44{letter-spacing:168.401090px;}
.ls48{letter-spacing:171.905044px;}
.ls15{letter-spacing:199.130317px;}
.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;}
}
.ws164{word-spacing:-171.953043px;}
.ws154{word-spacing:-168.449089px;}
.ws15c{word-spacing:-166.961113px;}
.ws159{word-spacing:-165.953118px;}
.ws157{word-spacing:-164.465142px;}
.wsf0{word-spacing:-41.324217px;}
.ws1d1{word-spacing:-23.390402px;}
.ws65{word-spacing:-22.867087px;}
.ws2c1{word-spacing:-10.508400px;}
.ws3f{word-spacing:-1.375906px;}
.ws107{word-spacing:-0.699713px;}
.ws29{word-spacing:-0.061800px;}
.wsc{word-spacing:-0.060001px;}
.ws6b{word-spacing:-0.058799px;}
.ws55{word-spacing:-0.047999px;}
.ws48{word-spacing:-0.044999px;}
.ws2b9{word-spacing:-0.043801px;}
.wsbc{word-spacing:-0.041999px;}
.ws23{word-spacing:-0.039996px;}
.ws24d{word-spacing:-0.039194px;}
.ws194{word-spacing:-0.031995px;}
.ws56{word-spacing:0.000000px;}
.ws42{word-spacing:0.823192px;}
.ws1d9{word-spacing:0.952550px;}
.ws1be{word-spacing:1.028990px;}
.ws3d{word-spacing:1.105429px;}
.ws15d{word-spacing:9.043087px;}
.ws15a{word-spacing:9.052687px;}
.ws193{word-spacing:9.067086px;}
.ws15b{word-spacing:9.167885px;}
.ws158{word-spacing:9.182285px;}
.ws195{word-spacing:9.244685px;}
.ws197{word-spacing:9.585480px;}
.wsff{word-spacing:10.842610px;}
.wseb{word-spacing:11.036648px;}
.wsea{word-spacing:11.207166px;}
.ws121{word-spacing:11.542322px;}
.ws125{word-spacing:11.583482px;}
.ws22{word-spacing:11.640117px;}
.wsa3{word-spacing:11.671681px;}
.ws47{word-spacing:11.884342px;}
.ws21{word-spacing:11.928120px;}
.wsa8{word-spacing:12.012718px;}
.wsbb{word-spacing:12.398223px;}
.ws4e{word-spacing:12.465421px;}
.ws50{word-spacing:12.482222px;}
.wsbe{word-spacing:12.528420px;}
.wsbd{word-spacing:12.562021px;}
.ws4d{word-spacing:12.570420px;}
.wsf9{word-spacing:12.574620px;}
.ws51{word-spacing:12.595620px;}
.ws1a0{word-spacing:12.637619px;}
.ws4f{word-spacing:12.860217px;}
.ws276{word-spacing:12.973312px;}
.ws2be{word-spacing:12.991258px;}
.ws2ba{word-spacing:13.030678px;}
.ws28c{word-spacing:13.130824px;}
.ws2a6{word-spacing:13.135324px;}
.ws26e{word-spacing:13.144325px;}
.ws280{word-spacing:13.148825px;}
.ws288{word-spacing:13.153324px;}
.ws2a1{word-spacing:13.175824px;}
.ws2bc{word-spacing:13.179600px;}
.ws2a0{word-spacing:13.189324px;}
.ws2b0{word-spacing:13.193824px;}
.ws29e{word-spacing:13.202823px;}
.ws293{word-spacing:13.207324px;}
.ws2b6{word-spacing:13.211824px;}
.ws27d{word-spacing:13.216324px;}
.ws274{word-spacing:13.220823px;}
.ws277{word-spacing:13.225323px;}
.ws26a{word-spacing:13.229823px;}
.ws266{word-spacing:13.234324px;}
.ws290{word-spacing:13.238824px;}
.ws27f{word-spacing:13.247823px;}
.ws261{word-spacing:13.256823px;}
.ws283{word-spacing:13.261323px;}
.ws2a3{word-spacing:13.265822px;}
.ws287{word-spacing:13.270323px;}
.ws29c{word-spacing:13.274823px;}
.ws284{word-spacing:13.279323px;}
.ws272{word-spacing:13.283824px;}
.ws26f{word-spacing:13.288322px;}
.ws2af{word-spacing:13.292822px;}
.ws28b{word-spacing:13.297322px;}
.ws281{word-spacing:13.310822px;}
.ws2b2{word-spacing:13.315322px;}
.ws2a5{word-spacing:13.315337px;}
.ws2ab{word-spacing:13.315368px;}
.ws2c0{word-spacing:13.319744px;}
.ws26c{word-spacing:13.319822px;}
.ws2a2{word-spacing:13.319873px;}
.ws297{word-spacing:13.324300px;}
.ws296{word-spacing:13.324322px;}
.ws289{word-spacing:13.328769px;}
.ws295{word-spacing:13.328817px;}
.ws26d{word-spacing:13.328821px;}
.ws291{word-spacing:13.328823px;}
.ws28e{word-spacing:13.328865px;}
.ws264{word-spacing:13.333321px;}
.ws265{word-spacing:13.337822px;}
.ws4b{word-spacing:13.342322px;}
.ws2b3{word-spacing:13.346822px;}
.ws2bb{word-spacing:13.350422px;}
.ws28f{word-spacing:13.351322px;}
.ws29d{word-spacing:13.355842px;}
.ws268{word-spacing:13.360321px;}
.ws263{word-spacing:13.369322px;}
.ws299{word-spacing:13.369350px;}
.ws294{word-spacing:13.373822px;}
.ws28a{word-spacing:13.382821px;}
.ws2ae{word-spacing:13.382848px;}
.ws27a{word-spacing:13.387321px;}
.ws29a{word-spacing:13.387336px;}
.ws267{word-spacing:13.391821px;}
.ws271{word-spacing:13.400821px;}
.ws2b7{word-spacing:13.405321px;}
.ws279{word-spacing:13.409821px;}
.ws26b{word-spacing:13.414321px;}
.ws25e{word-spacing:13.418821px;}
.ws285{word-spacing:13.423364px;}
.ws2bd{word-spacing:13.424861px;}
.ws260{word-spacing:13.432321px;}
.ws27e{word-spacing:13.445820px;}
.ws278{word-spacing:13.463821px;}
.ws27b{word-spacing:13.472820px;}
.ws2b5{word-spacing:13.481820px;}
.ws25d{word-spacing:13.490819px;}
.ws2a8{word-spacing:13.495341px;}
.ws49{word-spacing:13.504320px;}
.ws292{word-spacing:13.504365px;}
.ws2bf{word-spacing:13.508113px;}
.ws2b4{word-spacing:13.517819px;}
.ws2ac{word-spacing:13.526764px;}
.ws2b1{word-spacing:13.531320px;}
.ws29f{word-spacing:13.549319px;}
.ws4c{word-spacing:13.562819px;}
.ws282{word-spacing:13.571819px;}
.ws262{word-spacing:13.576319px;}
.ws269{word-spacing:13.580818px;}
.ws2b8{word-spacing:13.589859px;}
.ws275{word-spacing:13.607818px;}
.ws2ad{word-spacing:13.607858px;}
.ws4a{word-spacing:13.643818px;}
.ws28d{word-spacing:13.652761px;}
.ws2aa{word-spacing:13.661760px;}
.ws2a9{word-spacing:13.661818px;}
.ws270{word-spacing:13.679817px;}
.ws29b{word-spacing:13.684283px;}
.ws273{word-spacing:13.684316px;}
.ws286{word-spacing:13.684331px;}
.ws2a4{word-spacing:13.684379px;}
.ws25c{word-spacing:13.697818px;}
.ws298{word-spacing:13.729349px;}
.ws169{word-spacing:13.732628px;}
.wsf7{word-spacing:13.742227px;}
.ws27c{word-spacing:13.751814px;}
.ws118{word-spacing:13.770961px;}
.ws117{word-spacing:13.775828px;}
.ws166{word-spacing:13.804627px;}
.wsb1{word-spacing:13.814226px;}
.ws167{word-spacing:13.857427px;}
.wsa2{word-spacing:13.864899px;}
.ws25f{word-spacing:13.882315px;}
.ws21c{word-spacing:13.906058px;}
.wsb2{word-spacing:13.929426px;}
.ws2a7{word-spacing:13.931814px;}
.wsb0{word-spacing:13.943825px;}
.ws16a{word-spacing:13.963025px;}
.ws52{word-spacing:13.972625px;}
.ws115{word-spacing:13.982224px;}
.ws11a{word-spacing:13.991825px;}
.wsb3{word-spacing:14.006224px;}
.ws53{word-spacing:14.039781px;}
.wsbf{word-spacing:14.039817px;}
.ws11b{word-spacing:14.039827px;}
.ws116{word-spacing:14.073424px;}
.ws168{word-spacing:14.078267px;}
.wsad{word-spacing:14.083023px;}
.ws119{word-spacing:14.140623px;}
.ws155{word-spacing:14.174222px;}
.wsc1{word-spacing:14.251021px;}
.ws1d2{word-spacing:14.311774px;}
.ws16b{word-spacing:14.351728px;}
.wsc0{word-spacing:14.351817px;}
.ws11c{word-spacing:14.351820px;}
.ws54{word-spacing:14.351911px;}
.ws187{word-spacing:14.758649px;}
.ws9d{word-spacing:14.817449px;}
.ws1b3{word-spacing:15.775878px;}
.ws18f{word-spacing:15.849000px;}
.ws18d{word-spacing:15.951600px;}
.wsf4{word-spacing:15.973199px;}
.ws148{word-spacing:16.011076px;}
.ws151{word-spacing:16.059600px;}
.ws199{word-spacing:16.081199px;}
.wsf5{word-spacing:16.108204px;}
.ws152{word-spacing:16.108277px;}
.ws1c4{word-spacing:16.122796px;}
.wsf6{word-spacing:16.151400px;}
.ws153{word-spacing:16.178400px;}
.wsab{word-spacing:16.189199px;}
.ws234{word-spacing:16.416658px;}
.ws18e{word-spacing:16.448403px;}
.ws1f4{word-spacing:16.554659px;}
.ws5f{word-spacing:16.557914px;}
.ws3b{word-spacing:16.587312px;}
.ws233{word-spacing:16.663751px;}
.ws3c{word-spacing:16.722749px;}
.ws1e0{word-spacing:16.781349px;}
.ws75{word-spacing:16.808583px;}
.ws229{word-spacing:16.934227px;}
.ws9e{word-spacing:16.952104px;}
.ws22f{word-spacing:16.975387px;}
.ws228{word-spacing:17.016546px;}
.ws11d{word-spacing:17.029385px;}
.ws66{word-spacing:17.116506px;}
.ws43{word-spacing:17.151784px;}
.ws5e{word-spacing:17.163546px;}
.ws1e5{word-spacing:17.198825px;}
.ws33{word-spacing:17.204705px;}
.ws17e{word-spacing:17.216464px;}
.ws170{word-spacing:17.239984px;}
.ws60{word-spacing:17.287023px;}
.ws1f{word-spacing:17.292143px;}
.ws44{word-spacing:17.292904px;}
.ws1d{word-spacing:17.334211px;}
.ws202{word-spacing:17.339943px;}
.ws1a6{word-spacing:17.345823px;}
.ws205{word-spacing:17.439902px;}
.ws250{word-spacing:17.457523px;}
.ws251{word-spacing:17.463422px;}
.ws1f0{word-spacing:17.481061px;}
.ws93{word-spacing:17.486941px;}
.ws1fc{word-spacing:17.539860px;}
.ws46{word-spacing:17.551621px;}
.ws9b{word-spacing:17.575141px;}
.ws7d{word-spacing:17.598660px;}
.ws180{word-spacing:17.610420px;}
.ws231{word-spacing:17.616301px;}
.ws1b8{word-spacing:17.645700px;}
.ws40{word-spacing:17.645800px;}
.ws137{word-spacing:17.651579px;}
.ws1a8{word-spacing:17.651581px;}
.ws217{word-spacing:17.675099px;}
.ws32{word-spacing:17.680979px;}
.ws18a{word-spacing:17.698619px;}
.ws8{word-spacing:17.742178px;}
.ws220{word-spacing:17.769179px;}
.ws13c{word-spacing:17.780938px;}
.ws139{word-spacing:17.798579px;}
.ws20a{word-spacing:17.810338px;}
.ws23d{word-spacing:17.816218px;}
.wsd{word-spacing:17.826179px;}
.ws27{word-spacing:17.850105px;}
.wsa{word-spacing:17.850179px;}
.ws26{word-spacing:17.856179px;}
.ws13{word-spacing:17.868182px;}
.ws25{word-spacing:17.874128px;}
.ws17{word-spacing:17.874179px;}
.ws8d{word-spacing:17.880898px;}
.ws14{word-spacing:17.904179px;}
.ws16{word-spacing:17.940180px;}
.wsb{word-spacing:17.976122px;}
.ws81{word-spacing:17.980856px;}
.wsf{word-spacing:17.982181px;}
.ws1b{word-spacing:17.988174px;}
.ws11{word-spacing:17.988179px;}
.ws18{word-spacing:17.994180px;}
.ws1db{word-spacing:18.010256px;}
.ws1bc{word-spacing:18.063180px;}
.ws1b9{word-spacing:18.069056px;}
.ws15{word-spacing:18.072182px;}
.ws1f6{word-spacing:18.074935px;}
.ws138{word-spacing:18.080788px;}
.ws7{word-spacing:18.084181px;}
.ws1c{word-spacing:18.084199px;}
.ws19{word-spacing:18.120181px;}
.ws8e{word-spacing:18.121976px;}
.ws244{word-spacing:18.157254px;}
.ws8f{word-spacing:18.174897px;}
.wse{word-spacing:18.186182px;}
.ws10{word-spacing:18.210039px;}
.ws9{word-spacing:18.210223px;}
.ws92{word-spacing:18.216053px;}
.ws243{word-spacing:18.245453px;}
.ws1a{word-spacing:18.270151px;}
.ws126{word-spacing:18.292494px;}
.ws20{word-spacing:18.312230px;}
.ws12{word-spacing:18.318180px;}
.ws91{word-spacing:18.327776px;}
.ws144{word-spacing:18.339533px;}
.ws1e{word-spacing:18.390152px;}
.ws16d{word-spacing:18.398332px;}
.ws24{word-spacing:18.414192px;}
.ws79{word-spacing:18.415973px;}
.ws174{word-spacing:18.421852px;}
.ws28{word-spacing:18.432194px;}
.ws212{word-spacing:18.468892px;}
.ws90{word-spacing:18.486530px;}
.ws14d{word-spacing:18.492411px;}
.ws1c1{word-spacing:18.551210px;}
.ws20c{word-spacing:18.557091px;}
.ws1b5{word-spacing:18.574730px;}
.ws173{word-spacing:18.574731px;}
.ws5b{word-spacing:18.580610px;}
.ws6{word-spacing:18.600171px;}
.ws9a{word-spacing:18.621770px;}
.ws249{word-spacing:18.668810px;}
.ws186{word-spacing:18.680570px;}
.ws1ba{word-spacing:18.704086px;}
.ws1c2{word-spacing:18.709967px;}
.ws230{word-spacing:18.715848px;}
.ws20d{word-spacing:18.804047px;}
.ws24a{word-spacing:18.821688px;}
.ws225{word-spacing:18.833448px;}
.ws21d{word-spacing:18.856968px;}
.ws242{word-spacing:18.868733px;}
.ws21e{word-spacing:18.880488px;}
.ws145{word-spacing:18.886309px;}
.ws223{word-spacing:18.933407px;}
.ws1f7{word-spacing:18.939287px;}
.ws98{word-spacing:18.986326px;}
.ws63{word-spacing:19.103926px;}
.ws131{word-spacing:19.145085px;}
.ws13b{word-spacing:19.162724px;}
.ws61{word-spacing:19.180364px;}
.ws1bb{word-spacing:19.221527px;}
.ws62{word-spacing:19.256801px;}
.ws30{word-spacing:19.268564px;}
.ws23b{word-spacing:19.309723px;}
.ws11f{word-spacing:19.403802px;}
.ws8b{word-spacing:19.456722px;}
.ws8c{word-spacing:19.480241px;}
.ws8a{word-spacing:19.492001px;}
.ws5{word-spacing:19.562578px;}
.ws1f2{word-spacing:19.568440px;}
.ws6e{word-spacing:19.580200px;}
.ws14b{word-spacing:19.597839px;}
.ws41{word-spacing:19.727087px;}
.ws135{word-spacing:19.785998px;}
.ws204{word-spacing:19.821278px;}
.ws213{word-spacing:19.833038px;}
.ws146{word-spacing:19.868317px;}
.ws4{word-spacing:19.912382px;}
.ws175{word-spacing:19.921238px;}
.ws1d3{word-spacing:19.991796px;}
.ws1ed{word-spacing:20.009435px;}
.ws7c{word-spacing:20.044715px;}
.ws245{word-spacing:20.109395px;}
.ws14a{word-spacing:20.121132px;}
.ws7b{word-spacing:20.121155px;}
.ws1a4{word-spacing:20.197594px;}
.ws7a{word-spacing:20.197596px;}
.ws1bd{word-spacing:20.332831px;}
.ws1a7{word-spacing:20.350473px;}
.wsc2{word-spacing:20.391631px;}
.ws241{word-spacing:20.485711px;}
.ws1c3{word-spacing:20.509231px;}
.ws1bf{word-spacing:20.532750px;}
.ws219{word-spacing:20.591550px;}
.ws200{word-spacing:20.597429px;}
.ws176{word-spacing:20.662109px;}
.ws254{word-spacing:20.662111px;}
.ws255{word-spacing:20.715028px;}
.ws1aa{word-spacing:20.720908px;}
.ws201{word-spacing:20.762069px;}
.ws232{word-spacing:20.838507px;}
.ws23c{word-spacing:20.879667px;}
.ws94{word-spacing:20.967867px;}
.ws214{word-spacing:21.032546px;}
.ws82{word-spacing:21.279503px;}
.ws45{word-spacing:21.391222px;}
.ws5c{word-spacing:21.549981px;}
.ws1e8{word-spacing:21.549982px;}
.wsa9{word-spacing:21.632299px;}
.ws69{word-spacing:21.708739px;}
.ws99{word-spacing:21.744018px;}
.wsa5{word-spacing:21.767539px;}
.ws1a9{word-spacing:21.861616px;}
.ws17a{word-spacing:21.932176px;}
.ws1e4{word-spacing:21.961576px;}
.wsa0{word-spacing:21.979229px;}
.ws14e{word-spacing:21.996856px;}
.ws129{word-spacing:22.049775px;}
.ws150{word-spacing:22.055649px;}
.wsa1{word-spacing:22.090935px;}
.ws1fa{word-spacing:22.149735px;}
.ws1ea{word-spacing:22.161494px;}
.ws237{word-spacing:22.202654px;}
.ws25b{word-spacing:22.232054px;}
.ws1e7{word-spacing:22.249687px;}
.ws25a{word-spacing:22.284973px;}
.ws12c{word-spacing:22.326133px;}
.ws14f{word-spacing:22.349589px;}
.ws23e{word-spacing:22.361411px;}
.ws18c{word-spacing:22.367292px;}
.ws16e{word-spacing:22.408451px;}
.ws1e9{word-spacing:22.437848px;}
.ws6f{word-spacing:22.461371px;}
.ws1e3{word-spacing:22.502541px;}
.ws114{word-spacing:22.573090px;}
.ws1ad{word-spacing:22.578970px;}
.ws12b{word-spacing:22.584920px;}
.ws1ac{word-spacing:22.608369px;}
.ws10c{word-spacing:22.661289px;}
.ws1eb{word-spacing:22.667169px;}
.wsdb{word-spacing:22.678928px;}
.ws102{word-spacing:22.690689px;}
.ws218{word-spacing:22.702449px;}
.ws122{word-spacing:22.837687px;}
.ws1ec{word-spacing:22.843578px;}
.ws222{word-spacing:22.867086px;}
.ws6a{word-spacing:22.884727px;}
.ws1c0{word-spacing:22.949406px;}
.ws73{word-spacing:22.972926px;}
.ws95{word-spacing:22.978805px;}
.ws22d{word-spacing:22.984685px;}
.ws1ae{word-spacing:22.990566px;}
.ws31{word-spacing:22.996446px;}
.ws72{word-spacing:23.002326px;}
.wscd{word-spacing:23.031725px;}
.ws112{word-spacing:23.067005px;}
.ws71{word-spacing:23.090519px;}
.ws14c{word-spacing:23.190484px;}
.wscf{word-spacing:23.243403px;}
.ws87{word-spacing:23.249279px;}
.ws10b{word-spacing:23.261042px;}
.ws177{word-spacing:23.278682px;}
.ws206{word-spacing:23.308082px;}
.ws22b{word-spacing:23.319843px;}
.ws85{word-spacing:23.337482px;}
.ws22a{word-spacing:23.349242px;}
.wsda{word-spacing:23.390401px;}
.ws86{word-spacing:23.408040px;}
.ws89{word-spacing:23.466841px;}
.ws88{word-spacing:23.478598px;}
.wsd0{word-spacing:23.496241px;}
.wsd6{word-spacing:23.631479px;}
.ws0{word-spacing:23.649601px;}
.ws2e{word-spacing:23.660878px;}
.ws6c{word-spacing:23.860796px;}
.ws179{word-spacing:23.896076px;}
.ws1cb{word-spacing:23.925476px;}
.ws13a{word-spacing:23.943117px;}
.ws178{word-spacing:23.984276px;}
.ws2d{word-spacing:24.013675px;}
.wsec{word-spacing:24.095995px;}
.wsce{word-spacing:24.207714px;}
.ws1af{word-spacing:24.242992px;}
.ws17f{word-spacing:24.290033px;}
.ws37{word-spacing:24.301791px;}
.wsd5{word-spacing:24.325312px;}
.ws182{word-spacing:24.342952px;}
.ws238{word-spacing:24.366471px;}
.ws74{word-spacing:24.389991px;}
.ws1ab{word-spacing:24.472311px;}
.ws35{word-spacing:24.572262px;}
.ws2c{word-spacing:24.584030px;}
.wsfa{word-spacing:24.683988px;}
.ws1d7{word-spacing:24.695748px;}
.ws64{word-spacing:24.736907px;}
.ws104{word-spacing:24.901545px;}
.ws57{word-spacing:24.930945px;}
.ws124{word-spacing:24.954465px;}
.ws259{word-spacing:24.995625px;}
.ws1b0{word-spacing:25.036784px;}
.ws172{word-spacing:25.048544px;}
.ws239{word-spacing:25.060305px;}
.ws128{word-spacing:25.142624px;}
.ws1b1{word-spacing:25.183782px;}
.ws123{word-spacing:25.213182px;}
.ws257{word-spacing:25.283742px;}
.ws1fb{word-spacing:25.289622px;}
.ws258{word-spacing:25.301381px;}
.ws1f1{word-spacing:25.360181px;}
.ws109{word-spacing:25.383701px;}
.ws171{word-spacing:25.495420px;}
.ws2a{word-spacing:25.513059px;}
.ws10d{word-spacing:25.583619px;}
.ws256{word-spacing:25.760018px;}
.ws5d{word-spacing:25.765897px;}
.wse8{word-spacing:25.771776px;}
.ws22c{word-spacing:25.901135px;}
.ws130{word-spacing:25.948175px;}
.ws1dc{word-spacing:25.954056px;}
.ws1fe{word-spacing:25.971696px;}
.ws252{word-spacing:25.971698px;}
.wsfb{word-spacing:26.042254px;}
.ws21b{word-spacing:26.048135px;}
.ws185{word-spacing:26.059895px;}
.ws207{word-spacing:26.206893px;}
.ws68{word-spacing:26.242186px;}
.ws224{word-spacing:26.248053px;}
.ws211{word-spacing:26.312732px;}
.ws83{word-spacing:26.383292px;}
.wsd7{word-spacing:26.495010px;}
.ws1ca{word-spacing:26.512650px;}
.ws1c5{word-spacing:26.518529px;}
.wscc{word-spacing:26.577329px;}
.ws1b7{word-spacing:26.624368px;}
.wsee{word-spacing:26.665528px;}
.ws1e1{word-spacing:26.689047px;}
.wsc3{word-spacing:26.736088px;}
.ws10e{word-spacing:26.765487px;}
.wse6{word-spacing:26.883087px;}
.ws23a{word-spacing:26.906606px;}
.ws1c9{word-spacing:27.035965px;}
.ws209{word-spacing:27.041844px;}
.wsca{word-spacing:27.047725px;}
.ws6d{word-spacing:27.077124px;}
.ws1c6{word-spacing:27.112402px;}
.ws1e2{word-spacing:27.177084px;}
.wsc4{word-spacing:27.265283px;}
.ws1c7{word-spacing:27.294678px;}
.wsa7{word-spacing:27.306441px;}
.ws20f{word-spacing:27.341721px;}
.wsc5{word-spacing:27.371121px;}
.ws1c8{word-spacing:27.476958px;}
.ws20e{word-spacing:27.476959px;}
.ws80{word-spacing:27.529880px;}
.ws247{word-spacing:27.600438px;}
.ws7e{word-spacing:27.606318px;}
.ws96{word-spacing:27.641598px;}
.ws235{word-spacing:27.647479px;}
.ws248{word-spacing:27.665118px;}
.ws9f{word-spacing:27.688637px;}
.wsc6{word-spacing:27.718037px;}
.ws23f{word-spacing:27.759197px;}
.ws97{word-spacing:27.876795px;}
.wsed{word-spacing:27.894436px;}
.ws1dd{word-spacing:27.959116px;}
.wsc7{word-spacing:28.017914px;}
.ws36{word-spacing:28.029626px;}
.wsc9{word-spacing:28.111994px;}
.wse4{word-spacing:28.159033px;}
.ws1df{word-spacing:28.241351px;}
.ws78{word-spacing:28.276631px;}
.ws77{word-spacing:28.282520px;}
.ws22e{word-spacing:28.358951px;}
.ws1de{word-spacing:28.411865px;}
.ws17b{word-spacing:28.500070px;}
.ws1ff{word-spacing:28.588269px;}
.wsaa{word-spacing:28.647069px;}
.ws120{word-spacing:28.799946px;}
.wsd2{word-spacing:28.923425px;}
.ws1f9{word-spacing:28.964585px;}
.ws127{word-spacing:29.070423px;}
.ws17d{word-spacing:29.258582px;}
.ws12a{word-spacing:29.329140px;}
.ws70{word-spacing:29.346781px;}
.ws142{word-spacing:29.364342px;}
.ws13e{word-spacing:29.382061px;}
.ws1ef{word-spacing:29.411461px;}
.ws1d8{word-spacing:29.517299px;}
.wsde{word-spacing:29.558458px;}
.ws140{word-spacing:29.564338px;}
.ws143{word-spacing:29.629017px;}
.ws141{word-spacing:29.646645px;}
.ws136{word-spacing:29.734857px;}
.ws12f{word-spacing:29.781896px;}
.wsc8{word-spacing:29.805415px;}
.ws1cf{word-spacing:29.823056px;}
.ws17c{word-spacing:29.923016px;}
.ws1d0{word-spacing:29.964175px;}
.ws1b4{word-spacing:29.975934px;}
.ws215{word-spacing:29.987694px;}
.ws2f{word-spacing:30.017094px;}
.ws246{word-spacing:30.028854px;}
.ws10f{word-spacing:30.046492px;}
.ws1a2{word-spacing:30.093532px;}
.ws5a{word-spacing:30.105292px;}
.ws16c{word-spacing:30.281690px;}
.ws216{word-spacing:30.328730px;}
.ws20b{word-spacing:30.352251px;}
.ws1d4{word-spacing:30.416929px;}
.ws240{word-spacing:30.505128px;}
.ws1ee{word-spacing:30.587449px;}
.ws24f{word-spacing:30.728565px;}
.ws24c{word-spacing:30.822665px;}
.ws3e{word-spacing:30.928485px;}
.ws24e{word-spacing:31.004923px;}
.ws103{word-spacing:31.022563px;}
.ws1ce{word-spacing:31.057844px;}
.ws221{word-spacing:31.093122px;}
.ws1cd{word-spacing:31.122526px;}
.ws1cc{word-spacing:31.210722px;}
.ws149{word-spacing:31.334200px;}
.ws2b{word-spacing:31.345959px;}
.ws1a3{word-spacing:31.351841px;}
.ws181{word-spacing:31.357719px;}
.ws7f{word-spacing:31.728155px;}
.wsd4{word-spacing:31.751675px;}
.ws1a5{word-spacing:31.986874px;}
.ws24b{word-spacing:32.051552px;}
.ws34{word-spacing:32.245590px;}
.wsa4{word-spacing:32.363191px;}
.ws188{word-spacing:32.598389px;}
.ws1fd{word-spacing:32.810065px;}
.ws1e6{word-spacing:33.021742px;}
.ws236{word-spacing:33.127584px;}
.ws21a{word-spacing:33.345141px;}
.ws13d{word-spacing:33.386299px;}
.ws1f3{word-spacing:33.427459px;}
.ws106{word-spacing:33.515663px;}
.wse7{word-spacing:33.527419px;}
.wsd3{word-spacing:33.580338px;}
.ws12e{word-spacing:33.715578px;}
.ws105{word-spacing:33.880215px;}
.ws133{word-spacing:34.203612px;}
.ws18b{word-spacing:34.315329px;}
.ws38{word-spacing:34.432811px;}
.ws3a{word-spacing:34.491728px;}
.ws210{word-spacing:34.515248px;}
.ws39{word-spacing:34.527084px;}
.ws1d5{word-spacing:34.709285px;}
.ws134{word-spacing:34.744668px;}
.wsd8{word-spacing:35.044441px;}
.ws12d{word-spacing:35.256119px;}
.ws108{word-spacing:35.514838px;}
.ws184{word-spacing:35.632437px;}
.ws1b6{word-spacing:35.767674px;}
.ws59{word-spacing:35.955842px;}
.ws132{word-spacing:36.249830px;}
.ws1d6{word-spacing:36.332149px;}
.ws1f5{word-spacing:36.332151px;}
.ws58{word-spacing:36.343909px;}
.ws10a{word-spacing:36.402710px;}
.ws100{word-spacing:36.826063px;}
.ws147{word-spacing:36.855463px;}
.ws1a1{word-spacing:37.190621px;}
.wsa6{word-spacing:37.937374px;}
.ws16f{word-spacing:38.160812px;}
.wsdc{word-spacing:38.625326px;}
.ws227{word-spacing:38.807595px;}
.ws226{word-spacing:39.001643px;}
.wsef{word-spacing:39.248600px;}
.ws9c{word-spacing:39.607276px;}
.wse9{word-spacing:39.865994px;}
.ws1f8{word-spacing:39.889515px;}
.ws21f{word-spacing:39.918914px;}
.ws101{word-spacing:39.971832px;}
.ws113{word-spacing:39.995353px;}
.wsf2{word-spacing:40.089430px;}
.ws189{word-spacing:40.165869px;}
.wsf1{word-spacing:40.183511px;}
.ws253{word-spacing:40.665664px;}
.ws13f{word-spacing:40.742106px;}
.wsd9{word-spacing:41.682894px;}
.wsfe{word-spacing:41.688775px;}
.ws1da{word-spacing:42.459047px;}
.wsf3{word-spacing:42.694243px;}
.wsd1{word-spacing:42.847122px;}
.ws3{word-spacing:42.955376px;}
.ws1{word-spacing:43.099376px;}
.ws11e{word-spacing:43.211681px;}
.ws2{word-spacing:43.214536px;}
.ws84{word-spacing:43.493917px;}
.ws208{word-spacing:44.234788px;}
.ws110{word-spacing:44.834544px;}
.wse3{word-spacing:46.151649px;}
.wsdf{word-spacing:46.357447px;}
.ws111{word-spacing:46.545604px;}
.ws203{word-spacing:46.916043px;}
.ws76{word-spacing:47.409956px;}
.wscb{word-spacing:47.809791px;}
.wsdd{word-spacing:48.291948px;}
.ws1b2{word-spacing:50.255848px;}
.wse5{word-spacing:50.984960px;}
.ws198{word-spacing:51.589757px;}
.wsfc{word-spacing:52.713664px;}
.ws67{word-spacing:52.960621px;}
.wsfd{word-spacing:55.965270px;}
.ws19f{word-spacing:56.692089px;}
.wse0{word-spacing:57.264732px;}
.wse1{word-spacing:57.305906px;}
.wse2{word-spacing:57.858610px;}
.ws183{word-spacing:68.577743px;}
.ws165{word-spacing:93.906026px;}
.ws156{word-spacing:94.112432px;}
.ws196{word-spacing:117.579333px;}
.wsae{word-spacing:119.782501px;}
.wsac{word-spacing:120.171300px;}
.ws19e{word-spacing:122.681660px;}
.wsb6{word-spacing:142.366218px;}
.ws19c{word-spacing:147.497349px;}
.ws161{word-spacing:164.369138px;}
.wsaf{word-spacing:165.357930px;}
.ws19d{word-spacing:188.330447px;}
.wsb5{word-spacing:197.479137px;}
.wsba{word-spacing:205.975031px;}
.ws192{word-spacing:208.192589px;}
.ws162{word-spacing:245.430538px;}
.ws163{word-spacing:247.446512px;}
.wsb8{word-spacing:261.299139px;}
.ws15f{word-spacing:263.430312px;}
.wsf8{word-spacing:265.023878px;}
.wsb9{word-spacing:266.819070px;}
.ws15e{word-spacing:270.438225px;}
.ws160{word-spacing:281.910081px;}
.wsb4{word-spacing:288.802794px;}
.wsb7{word-spacing:299.314663px;}
.ws191{word-spacing:490.837075px;}
.ws19b{word-spacing:505.462454px;}
.ws190{word-spacing:1115.414819px;}
.ws19a{word-spacing:1137.120203px;}
._4c{margin-left:-168.401087px;}
._38{margin-left:-40.336384px;}
._4d{margin-left:-26.063090px;}
._18{margin-left:-24.912272px;}
._17{margin-left:-23.569104px;}
._19{margin-left:-21.815610px;}
._15{margin-left:-7.810863px;}
._1f{margin-left:-6.146837px;}
._14{margin-left:-4.471057px;}
._10{margin-left:-2.916272px;}
._c{margin-left:-1.117185px;}
._5{width:1.290010px;}
._d{width:2.449632px;}
._0{width:8.954400px;}
._6c{width:10.604275px;}
._13{width:11.856426px;}
._49{width:13.060186px;}
._12{width:14.120806px;}
._b{width:15.132662px;}
._f{width:16.851906px;}
._6{width:18.054180px;}
._4{width:19.302195px;}
._11{width:20.609959px;}
._20{width:21.690327px;}
._16{width:23.067006px;}
._a{width:24.078354px;}
._8{width:25.101465px;}
._4a{width:26.148126px;}
._7{width:27.186540px;}
._1b{width:28.784608px;}
._1c{width:30.487487px;}
._9{width:31.598799px;}
._1{width:32.876998px;}
._e{width:34.527008px;}
._48{width:36.678533px;}
._4b{width:37.889305px;}
._21{width:39.242719px;}
._1e{width:40.483384px;}
._39{width:41.953377px;}
._37{width:43.121597px;}
._3{width:44.438589px;}
._1d{width:48.709428px;}
._36{width:50.220566px;}
._5d{width:51.637756px;}
._1a{width:54.028461px;}
._72{width:56.768905px;}
._5c{width:59.207259px;}
._76{width:65.861120px;}
._55{width:69.971281px;}
._5b{width:85.328565px;}
._6f{width:89.235688px;}
._60{width:105.502684px;}
._5f{width:106.544272px;}
._61{width:107.547457px;}
._6b{width:117.627332px;}
._22{width:120.339290px;}
._70{width:122.360054px;}
._71{width:123.468869px;}
._62{width:128.499187px;}
._4e{width:140.667049px;}
._28{width:142.414217px;}
._5a{width:149.945307px;}
._6e{width:155.566064px;}
._4f{width:163.937158px;}
._51{width:165.905119px;}
._54{width:170.897056px;}
._5e{width:183.616897px;}
._73{width:185.176877px;}
._53{width:188.599237px;}
._65{width:192.122400px;}
._25{width:197.527137px;}
._2a{width:198.535124px;}
._2e{width:200.023106px;}
._31{width:206.023030px;}
._68{width:211.125357px;}
._69{width:213.141332px;}
._59{width:216.938089px;}
._6d{width:221.406838px;}
._58{width:222.698017px;}
._75{width:228.179534px;}
._63{width:236.133044px;}
._26{width:238.720207px;}
._66{width:247.604901px;}
._3a{width:251.540851px;}
._3b{width:252.817631px;}
._52{width:258.966368px;}
._50{width:264.486299px;}
._32{width:292.671532px;}
._6a{width:299.108256px;}
._64{width:303.620199px;}
._67{width:304.628187px;}
._3c{width:358.176318px;}
._44{width:461.327007px;}
._23{width:466.712567px;}
._3f{width:472.755692px;}
._2c{width:489.713870px;}
._27{width:504.296106px;}
._29{width:505.332883px;}
._2b{width:527.162993px;}
._57{width:556.668251px;}
._45{width:571.010462px;}
._46{width:573.026436px;}
._47{width:584.498293px;}
._40{width:589.010236px;}
._42{width:590.018224px;}
._3d{width:596.018149px;}
._24{width:602.306070px;}
._41{width:607.490005px;}
._56{width:631.369706px;}
._2d{width:637.225609px;}
._2f{width:638.233597px;}
._30{width:644.233522px;}
._43{width:691.767341px;}
._3e{width:703.335196px;}
._34{width:960.069615px;}
._33{width:982.053340px;}
._2{width:1602.252538px;}
._74{width:1711.797739px;}
._35{width:1747.874114px;}
.fc3{color:rgb(85,123,178);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:27.996600px;}
.fs9{font-size:29.995199px;}
.fse{font-size:31.995000px;}
.fs15{font-size:37.800001px;}
.fs10{font-size:39.194401px;}
.fs6{font-size:39.995999px;}
.fs14{font-size:40.800001px;}
.fs11{font-size:41.158799px;}
.fsa{font-size:41.999399px;}
.fs12{font-size:43.800599px;}
.fs3{font-size:43.996199px;}
.fs8{font-size:44.999399px;}
.fsb{font-size:47.999399px;}
.fs13{font-size:53.349003px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.200600px;}
.fs7{font-size:58.799400px;}
.fs5{font-size:60.000601px;}
.fs4{font-size:61.800001px;}
.fs2{font-size:66.000601px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000595px;}
.y0{bottom:0.000000px;}
.y3e{bottom:67.520178px;}
.y3d{bottom:79.511000px;}
.y219{bottom:88.951200px;}
.y95{bottom:91.417351px;}
.y218{bottom:91.417802px;}
.yfb{bottom:91.418266px;}
.yc4{bottom:91.419372px;}
.y25f{bottom:91.419783px;}
.yee{bottom:91.420338px;}
.yad{bottom:91.426174px;}
.y12d{bottom:91.429768px;}
.y1ec{bottom:91.437652px;}
.y3c{bottom:91.501834px;}
.y94{bottom:96.094505px;}
.y13e{bottom:100.771729px;}
.y3b{bottom:103.492655px;}
.y93{bottom:104.173347px;}
.y25e{bottom:104.940978px;}
.y2a9{bottom:105.171704px;}
.y216{bottom:106.979553px;}
.y92{bottom:108.850353px;}
.y217{bottom:109.445698px;}
.y215{bottom:109.446037px;}
.yfa{bottom:109.446156px;}
.yc3{bottom:109.447268px;}
.yed{bottom:109.448238px;}
.yac{bottom:109.454070px;}
.y12c{bottom:109.457668px;}
.y1eb{bottom:109.465548px;}
.y19d{bottom:111.146663px;}
.y3a{bottom:115.483489px;}
.y2a8{bottom:115.671601px;}
.y13d{bottom:115.823135px;}
.y91{bottom:116.929047px;}
.y25d{bottom:118.462172px;}
.y90{bottom:121.606350px;}
.yc2{bottom:127.389905px;}
.yab{bottom:127.396707px;}
.y12b{bottom:127.400299px;}
.y1ea{bottom:127.408185px;}
.yf9{bottom:127.474045px;}
.yec{bottom:127.476139px;}
.y13c{bottom:130.790554px;}
.y25c{bottom:131.897868px;}
.y19c{bottom:132.151199px;}
.y19a{bottom:132.151309px;}
.y8f{bottom:136.660875px;}
.y19b{bottom:137.508751px;}
.y39{bottom:140.910274px;}
.y32{bottom:142.108814px;}
.yc1{bottom:145.417802px;}
.yeb{bottom:145.418770px;}
.y25b{bottom:145.419063px;}
.yf7{bottom:145.423187px;}
.yaa{bottom:145.424603px;}
.y12a{bottom:145.428200px;}
.y1e9{bottom:145.436082px;}
.y214{bottom:145.680483px;}
.y2a7{bottom:148.204944px;}
.yf8{bottom:151.965305px;}
.y199{bottom:153.155846px;}
.y197{bottom:153.156606px;}
.y38{bottom:154.431469px;}
.y8e{bottom:157.665412px;}
.y198{bottom:158.513397px;}
.y25a{bottom:158.940257px;}
.y37{bottom:159.448822px;}
.y31{bottom:160.136715px;}
.yc0{bottom:163.445698px;}
.yea{bottom:163.446659px;}
.yf6{bottom:163.451065px;}
.ybe{bottom:163.451831px;}
.ya9{bottom:163.452500px;}
.y129{bottom:163.456100px;}
.y1e8{bottom:163.463978px;}
.y2a6{bottom:166.819801px;}
.y36{bottom:167.952869px;}
.ybf{bottom:169.993652px;}
.y259{bottom:172.461452px;}
.y196{bottom:174.161142px;}
.y30{bottom:178.164615px;}
.y8d{bottom:178.669948px;}
.y1b8{bottom:181.389004px;}
.ybd{bottom:181.394468px;}
.ya8{bottom:181.395137px;}
.y128{bottom:181.398731px;}
.y1e7{bottom:181.406615px;}
.y35{bottom:181.474063px;}
.ye9{bottom:181.474560px;}
.yf5{bottom:181.478966px;}
.y213{bottom:181.481966px;}
.y29f{bottom:181.729404px;}
.y2a5{bottom:185.434349px;}
.y258{bottom:185.898272px;}
.y34{bottom:186.406215px;}
.y29e{bottom:194.485240px;}
.y33{bottom:194.910320px;}
.y195{bottom:195.165679px;}
.y2f{bottom:196.107257px;}
.ye8{bottom:199.417191px;}
.y257{bottom:199.419466px;}
.ye6{bottom:199.419685px;}
.yf4{bottom:199.421608px;}
.ybc{bottom:199.422364px;}
.ya7{bottom:199.423033px;}
.y212{bottom:199.424603px;}
.y127{bottom:199.426620px;}
.y1e6{bottom:199.434511px;}
.y8c{bottom:199.674484px;}
.y2a4{bottom:204.049205px;}
.ye7{bottom:205.965294px;}
.y29d{bottom:207.241054px;}
.y256{bottom:212.940661px;}
.y2e{bottom:214.135135px;}
.y194{bottom:216.170215px;}
.ye5{bottom:217.447586px;}
.yf3{bottom:217.449509px;}
.ybb{bottom:217.450260px;}
.ya6{bottom:217.450929px;}
.y211{bottom:217.452500px;}
.y126{bottom:217.454521px;}
.y1e5{bottom:217.462407px;}
.y1b7{bottom:217.469591px;}
.y29c{bottom:219.996891px;}
.y8b{bottom:220.679021px;}
.y2a3{bottom:222.664051px;}
.y255{bottom:226.461855px;}
.y26{bottom:232.160106px;}
.y2d{bottom:232.163036px;}
.yba{bottom:235.392897px;}
.ya5{bottom:235.393566px;}
.y125{bottom:235.397163px;}
.y1e4{bottom:235.405044px;}
.ye4{bottom:235.475464px;}
.yf2{bottom:235.477386px;}
.y210{bottom:235.480396px;}
.y1b6{bottom:235.497488px;}
.y193{bottom:237.174751px;}
.y191{bottom:237.175021px;}
.y254{bottom:239.897551px;}
.y2a2{bottom:241.279056px;}
.y8a{bottom:241.683557px;}
.y192{bottom:242.447250px;}
.y29b{bottom:248.913455px;}
.y25{bottom:250.102748px;}
.y2c{bottom:250.105678px;}
.ye3{bottom:253.418106px;}
.y253{bottom:253.418746px;}
.yf1{bottom:253.420029px;}
.yb9{bottom:253.420794px;}
.ya4{bottom:253.421463px;}
.y20f{bottom:253.423033px;}
.y124{bottom:253.425064px;}
.y1e3{bottom:253.432941px;}
.y1b5{bottom:253.440125px;}
.y190{bottom:258.179558px;}
.y18e{bottom:258.179757px;}
.y29a{bottom:262.434650px;}
.y89{bottom:262.688093px;}
.y18f{bottom:263.451897px;}
.y252{bottom:266.939940px;}
.y24{bottom:268.130649px;}
.y2b{bottom:268.133579px;}
.ye2{bottom:271.446007px;}
.yf0{bottom:271.447929px;}
.yb8{bottom:271.448690px;}
.ya3{bottom:271.449359px;}
.y20e{bottom:271.450929px;}
.y123{bottom:271.452942px;}
.y1e2{bottom:271.460837px;}
.y1b4{bottom:271.468021px;}
.y2a1{bottom:272.668643px;}
.y299{bottom:275.955844px;}
.y18d{bottom:279.184294px;}
.y251{bottom:280.461135px;}
.y88{bottom:283.692630px;}
.y23{bottom:286.158527px;}
.y2a{bottom:286.161480px;}
.y2a0{bottom:288.673343px;}
.yb7{bottom:289.391327px;}
.ya2{bottom:289.391996px;}
.y298{bottom:289.392650px;}
.y122{bottom:289.395584px;}
.y1e1{bottom:289.403474px;}
.ye1{bottom:289.473907px;}
.yef{bottom:289.475830px;}
.y20d{bottom:289.478826px;}
.y1b3{bottom:289.495917px;}
.y250{bottom:293.896831px;}
.y18c{bottom:298.913246px;}
.y18a{bottom:298.913892px;}
.y297{bottom:302.913845px;}
.y22{bottom:304.101169px;}
.y29{bottom:304.104099px;}
.y18b{bottom:304.185745px;}
.y87{bottom:304.611967px;}
.y24f{bottom:307.418025px;}
.yb6{bottom:307.419223px;}
.ya1{bottom:307.419892px;}
.y20c{bottom:307.421463px;}
.y121{bottom:307.423485px;}
.y1e0{bottom:307.431370px;}
.y1b2{bottom:307.438554px;}
.y296{bottom:316.435039px;}
.y189{bottom:318.642845px;}
.y24e{bottom:320.939220px;}
.y21{bottom:322.129070px;}
.y28{bottom:322.132000px;}
.yb5{bottom:325.447119px;}
.ya0{bottom:325.447788px;}
.y20b{bottom:325.449359px;}
.y120{bottom:325.451385px;}
.y1df{bottom:325.459267px;}
.y1b1{bottom:325.466451px;}
.y86{bottom:325.616504px;}
.y295{bottom:329.956233px;}
.y24d{bottom:334.460414px;}
.y188{bottom:338.286598px;}
.y20{bottom:340.157428px;}
.y27{bottom:340.159900px;}
.yfe{bottom:343.049286px;}
.yb4{bottom:343.389756px;}
.y9f{bottom:343.390425px;}
.y294{bottom:343.391941px;}
.y20a{bottom:343.391996px;}
.y11f{bottom:343.394005px;}
.y1de{bottom:343.401904px;}
.y1b0{bottom:343.409088px;}
.y85{bottom:346.621040px;}
.y24c{bottom:347.896111px;}
.y293{bottom:356.913135px;}
.y187{bottom:358.015800px;}
.yfc{bottom:358.100693px;}
.y24b{bottom:361.417305px;}
.yb3{bottom:361.417653px;}
.y9e{bottom:361.418322px;}
.y209{bottom:361.419892px;}
.y11e{bottom:361.421906px;}
.y1dd{bottom:361.429800px;}
.y1af{bottom:361.436984px;}
.yfd{bottom:363.373192px;}
.y84{bottom:367.625577px;}
.y292{bottom:370.434329px;}
.y24a{bottom:374.938499px;}
.yb2{bottom:379.445549px;}
.y9d{bottom:379.446218px;}
.y208{bottom:379.447788px;}
.y11d{bottom:379.449806px;}
.y1dc{bottom:379.457696px;}
.y1ae{bottom:379.464880px;}
.y291{bottom:383.955524px;}
.y1f{bottom:385.822467px;}
.y249{bottom:388.462466px;}
.y83{bottom:388.630113px;}
.y9c{bottom:397.388855px;}
.y207{bottom:397.390425px;}
.y290{bottom:397.391231px;}
.y11c{bottom:397.392471px;}
.y14f{bottom:397.396707px;}
.y1db{bottom:397.400333px;}
.y15f{bottom:397.404060px;}
.y1ad{bottom:397.407517px;}
.y82{bottom:409.634649px;}
.y28f{bottom:410.912425px;}
.y1e{bottom:411.334735px;}
.y9b{bottom:415.417328px;}
.y206{bottom:415.418322px;}
.y11b{bottom:415.420349px;}
.y248{bottom:415.420482px;}
.y14e{bottom:415.424603px;}
.y1da{bottom:415.428229px;}
.y15e{bottom:415.431956px;}
.y1ac{bottom:415.435413px;}
.y28e{bottom:424.433620px;}
.y247{bottom:428.941676px;}
.y1d{bottom:429.277881px;}
.y80{bottom:429.363602px;}
.y205{bottom:433.446218px;}
.y11a{bottom:433.448227px;}
.y14d{bottom:433.452500px;}
.yb1{bottom:433.454947px;}
.y1d9{bottom:433.456126px;}
.y15d{bottom:433.459853px;}
.y1ab{bottom:433.463310px;}
.y81{bottom:434.721130px;}
.y28d{bottom:437.954814px;}
.y7f{bottom:449.092804px;}
.y204{bottom:451.388855px;}
.y9a{bottom:451.389779px;}
.y28c{bottom:451.390499px;}
.y119{bottom:451.390869px;}
.y14c{bottom:451.395137px;}
.yb0{bottom:451.397584px;}
.y1d8{bottom:451.398763px;}
.y15c{bottom:451.402490px;}
.y1aa{bottom:451.405947px;}
.y1a{bottom:451.810382px;}
.y1c{bottom:451.814136px;}
.y246{bottom:455.898566px;}
.y1b{bottom:458.447132px;}
.y28b{bottom:464.911693px;}
.y203{bottom:469.417191px;}
.y99{bottom:469.417676px;}
.y118{bottom:469.418793px;}
.y245{bottom:469.419760px;}
.y14b{bottom:469.423033px;}
.yaf{bottom:469.425480px;}
.y1d7{bottom:469.426659px;}
.y15b{bottom:469.430386px;}
.y1a9{bottom:469.433843px;}
.y19{bottom:469.839084px;}
.y28a{bottom:478.432888px;}
.y244{bottom:482.940955px;}
.y98{bottom:487.445572px;}
.y117{bottom:487.446671px;}
.y5f{bottom:487.449359px;}
.y14a{bottom:487.450929px;}
.y7e{bottom:487.451369px;}
.yae{bottom:487.453377px;}
.y1d6{bottom:487.454555px;}
.y15a{bottom:487.458282px;}
.y1a8{bottom:487.461739px;}
.y18{bottom:487.782230px;}
.y289{bottom:491.954082px;}
.y243{bottom:496.462149px;}
.y116{bottom:505.389313px;}
.y288{bottom:505.389766px;}
.y10c{bottom:505.391327px;}
.y5e{bottom:505.391996px;}
.y149{bottom:505.393566px;}
.y7d{bottom:505.394006px;}
.y1d5{bottom:505.397192px;}
.y202{bottom:505.399665px;}
.y159{bottom:505.400919px;}
.y1a7{bottom:505.404376px;}
.y17{bottom:505.810932px;}
.y242{bottom:509.897845px;}
.y287{bottom:518.910961px;}
.y115{bottom:523.417191px;}
.y241{bottom:523.419040px;}
.y10b{bottom:523.419205px;}
.y5d{bottom:523.419892px;}
.y148{bottom:523.421463px;}
.y7c{bottom:523.421902px;}
.y1d4{bottom:523.425089px;}
.y201{bottom:523.427561px;}
.y158{bottom:523.428815px;}
.y1a6{bottom:523.432273px;}
.y16{bottom:523.839588px;}
.ye0{bottom:524.607742px;}
.ydf{bottom:529.284897px;}
.y286{bottom:532.432155px;}
.y114{bottom:541.445572px;}
.y10a{bottom:541.447128px;}
.y5c{bottom:541.447788px;}
.y147{bottom:541.449359px;}
.y7b{bottom:541.449798px;}
.y1d3{bottom:541.452985px;}
.y200{bottom:541.455458px;}
.y157{bottom:541.456712px;}
.y1a5{bottom:541.460169px;}
.y15{bottom:541.782779px;}
.yde{bottom:544.341112px;}
.y285{bottom:545.953350px;}
.y240{bottom:550.461429px;}
.y284{bottom:559.389034px;}
.y109{bottom:559.389771px;}
.y5b{bottom:559.390425px;}
.y146{bottom:559.391996px;}
.y7a{bottom:559.392435px;}
.y1d2{bottom:559.395622px;}
.y1ff{bottom:559.398095px;}
.y156{bottom:559.399349px;}
.y1a4{bottom:559.402806px;}
.y14{bottom:559.811481px;}
.y23f{bottom:563.897125px;}
.ydd{bottom:565.345648px;}
.y283{bottom:572.910228px;}
.y108{bottom:577.417648px;}
.y23e{bottom:577.418319px;}
.y5a{bottom:577.418322px;}
.y145{bottom:577.419892px;}
.y79{bottom:577.420331px;}
.y113{bottom:577.422043px;}
.y1d1{bottom:577.423518px;}
.y1fe{bottom:577.425991px;}
.y155{bottom:577.427245px;}
.y1a3{bottom:577.430702px;}
.y13{bottom:577.840137px;}
.ydc{bottom:586.350185px;}
.y282{bottom:586.436458px;}
.y23d{bottom:590.939514px;}
.y107{bottom:595.445572px;}
.y59{bottom:595.446218px;}
.y105{bottom:595.447769px;}
.y144{bottom:595.447788px;}
.y78{bottom:595.448228px;}
.y112{bottom:595.449966px;}
.y1d0{bottom:595.451414px;}
.y1fd{bottom:595.453887px;}
.y154{bottom:595.455141px;}
.y1a2{bottom:595.458598px;}
.y12{bottom:595.783329px;}
.y281{bottom:599.957653px;}
.y106{bottom:601.993515px;}
.y23c{bottom:604.460708px;}
.ydb{bottom:607.354721px;}
.y58{bottom:613.388855px;}
.y104{bottom:613.390411px;}
.y143{bottom:613.390425px;}
.y77{bottom:613.390865px;}
.y111{bottom:613.392609px;}
.y280{bottom:613.393337px;}
.y1cf{bottom:613.394051px;}
.y1fc{bottom:613.396524px;}
.y153{bottom:613.397778px;}
.y1a1{bottom:613.401235px;}
.y11{bottom:613.811985px;}
.y27f{bottom:626.914531px;}
.yda{bottom:628.359257px;}
.y57{bottom:631.417191px;}
.y103{bottom:631.418289px;}
.y142{bottom:631.418322px;}
.y23b{bottom:631.418724px;}
.y76{bottom:631.418761px;}
.y110{bottom:631.420486px;}
.y1ce{bottom:631.421948px;}
.y1fb{bottom:631.424420px;}
.y152{bottom:631.425675px;}
.y1a0{bottom:631.429132px;}
.y10{bottom:631.840686px;}
.y27e{bottom:640.435726px;}
.y23a{bottom:644.939919px;}
.yd9{bottom:649.363794px;}
.y56{bottom:649.445572px;}
.y102{bottom:649.446213px;}
.y141{bottom:649.446218px;}
.y75{bottom:649.446657px;}
.y10f{bottom:649.448364px;}
.y1cd{bottom:649.449844px;}
.y1fa{bottom:649.452317px;}
.y151{bottom:649.453571px;}
.y19f{bottom:649.457028px;}
.yf{bottom:649.783878px;}
.y27d{bottom:653.956920px;}
.y239{bottom:658.461113px;}
.y101{bottom:667.388855px;}
.y74{bottom:667.389294px;}
.y10e{bottom:667.391006px;}
.y1cc{bottom:667.392481px;}
.y27c{bottom:667.392604px;}
.y1f9{bottom:667.394954px;}
.y150{bottom:667.396208px;}
.y19e{bottom:667.399665px;}
.ye{bottom:667.812534px;}
.yd8{bottom:670.368330px;}
.y238{bottom:671.896809px;}
.y27b{bottom:680.913799px;}
.y73{bottom:685.417191px;}
.y10d{bottom:685.418930px;}
.y1cb{bottom:685.420377px;}
.y1f8{bottom:685.422850px;}
.y55{bottom:685.427561px;}
.yd{bottom:690.263279px;}
.yd7{bottom:691.372866px;}
.y27a{bottom:694.434993px;}
.y237{bottom:698.939198px;}
.y72{bottom:703.445572px;}
.y1ca{bottom:703.448273px;}
.y1f7{bottom:703.450746px;}
.y54{bottom:703.455458px;}
.y279{bottom:707.956188px;}
.yc{bottom:708.291935px;}
.yd6{bottom:712.377403px;}
.y236{bottom:712.460393px;}
.y186{bottom:714.925781px;}
.y184{bottom:714.926051px;}
.y185{bottom:720.198303px;}
.y1c9{bottom:721.390910px;}
.y278{bottom:721.391872px;}
.y1f6{bottom:721.393383px;}
.y53{bottom:721.398095px;}
.yb{bottom:726.320636px;}
.yd5{bottom:733.381939px;}
.y13b{bottom:733.381989px;}
.y277{bottom:734.913066px;}
.y183{bottom:735.930588px;}
.y181{bottom:735.930721px;}
.y235{bottom:739.417282px;}
.y1c8{bottom:739.418807px;}
.y1f5{bottom:739.421279px;}
.y52{bottom:739.425991px;}
.y71{bottom:739.428318px;}
.y182{bottom:741.202972px;}
.ya{bottom:744.263828px;}
.y276{bottom:748.434261px;}
.y234{bottom:752.938477px;}
.yd4{bottom:754.386475px;}
.y13a{bottom:754.386520px;}
.y180{bottom:756.935257px;}
.y17e{bottom:756.935344px;}
.y1c7{bottom:757.446703px;}
.y1f4{bottom:757.449176px;}
.y51{bottom:757.453887px;}
.y70{bottom:757.456214px;}
.y275{bottom:761.955455px;}
.y17f{bottom:762.207733px;}
.y9{bottom:762.292484px;}
.y233{bottom:766.459671px;}
.y1c6{bottom:775.389340px;}
.yd3{bottom:775.391012px;}
.y139{bottom:775.391052px;}
.y1f3{bottom:775.391813px;}
.y274{bottom:775.392330px;}
.y50{bottom:775.396524px;}
.y6f{bottom:775.398851px;}
.y17d{bottom:777.939880px;}
.y17b{bottom:777.940567px;}
.y8{bottom:780.321186px;}
.y17c{bottom:783.212402px;}
.y273{bottom:788.913478px;}
.y1c5{bottom:793.417236px;}
.y232{bottom:793.419109px;}
.y1f2{bottom:793.419709px;}
.y4f{bottom:793.424420px;}
.y6e{bottom:793.426748px;}
.yd2{bottom:796.310349px;}
.y138{bottom:796.310394px;}
.y17a{bottom:798.859905px;}
.y272{bottom:802.434719px;}
.y7{bottom:807.278614px;}
.y1c4{bottom:811.445526px;}
.y231{bottom:811.447005px;}
.y1f1{bottom:811.447605px;}
.y4e{bottom:811.452317px;}
.y6d{bottom:811.454644px;}
.y271{bottom:815.955867px;}
.yd1{bottom:817.314886px;}
.y137{bottom:817.314972px;}
.y179{bottom:819.864441px;}
.y177{bottom:819.864574px;}
.y178{bottom:825.221832px;}
.y230{bottom:829.389642px;}
.y1f0{bottom:829.390242px;}
.y270{bottom:829.391597px;}
.y4d{bottom:829.394954px;}
.y6c{bottom:829.397281px;}
.yd0{bottom:838.319422px;}
.y136{bottom:838.319458px;}
.y176{bottom:840.869110px;}
.y174{bottom:840.869243px;}
.y26f{bottom:842.912746px;}
.y175{bottom:846.226685px;}
.y22f{bottom:847.417538px;}
.y1ef{bottom:847.418139px;}
.y1c3{bottom:847.418807px;}
.y4c{bottom:847.422850px;}
.y6b{bottom:847.425177px;}
.y26e{bottom:856.433986px;}
.ycf{bottom:859.323958px;}
.y135{bottom:859.324036px;}
.y173{bottom:861.873779px;}
.y171{bottom:861.874004px;}
.y22d{bottom:862.979370px;}
.y5{bottom:865.020282px;}
.y22e{bottom:865.445435px;}
.y1ee{bottom:865.446035px;}
.y1c2{bottom:865.446703px;}
.y4b{bottom:865.450746px;}
.y6a{bottom:865.453073px;}
.y172{bottom:867.231262px;}
.y26d{bottom:869.955135px;}
.y6{bottom:872.418659px;}
.yce{bottom:880.328495px;}
.y134{bottom:880.328522px;}
.y22c{bottom:881.007568px;}
.y170{bottom:882.878540px;}
.y16e{bottom:882.878856px;}
.y1ed{bottom:883.388672px;}
.y1c1{bottom:883.389340px;}
.y22a{bottom:883.389642px;}
.y26c{bottom:883.390865px;}
.y4a{bottom:883.393383px;}
.y69{bottom:883.395710px;}
.y16f{bottom:888.235931px;}
.y22b{bottom:889.936798px;}
.y26b{bottom:896.912014px;}
.y4{bottom:901.078052px;}
.ycd{bottom:901.333031px;}
.y133{bottom:901.333099px;}
.y1c0{bottom:901.417236px;}
.y229{bottom:901.417538px;}
.y49{bottom:901.421279px;}
.y68{bottom:901.423607px;}
.y16d{bottom:903.883392px;}
.y16b{bottom:903.883434px;}
.y16c{bottom:909.240784px;}
.y26a{bottom:910.433254px;}
.y228{bottom:916.979370px;}
.y1bf{bottom:919.445435px;}
.y227{bottom:919.446035px;}
.y48{bottom:919.449176px;}
.y67{bottom:919.451503px;}
.ycc{bottom:922.337567px;}
.y132{bottom:922.337677px;}
.y269{bottom:923.954402px;}
.y16a{bottom:924.887970px;}
.y168{bottom:924.888286px;}
.y169{bottom:930.245361px;}
.y226{bottom:937.388672px;}
.y224{bottom:937.389340px;}
.y268{bottom:937.390132px;}
.y47{bottom:937.391813px;}
.y66{bottom:937.394140px;}
.y3{bottom:940.026599px;}
.ycb{bottom:943.342104px;}
.y131{bottom:943.342163px;}
.y225{bottom:943.936798px;}
.y167{bottom:945.892822px;}
.y165{bottom:945.892955px;}
.y267{bottom:950.911373px;}
.y166{bottom:951.250031px;}
.y223{bottom:955.417236px;}
.y1be{bottom:955.417766px;}
.y221{bottom:955.418139px;}
.y46{bottom:955.419709px;}
.y65{bottom:955.422036px;}
.y222{bottom:961.965179px;}
.yca{bottom:964.346640px;}
.y130{bottom:964.346741px;}
.y266{bottom:964.432521px;}
.y164{bottom:966.897491px;}
.y162{bottom:966.897921px;}
.y163{bottom:972.254883px;}
.y1bd{bottom:973.445662px;}
.y220{bottom:973.446035px;}
.y45{bottom:973.447605px;}
.y64{bottom:973.449933px;}
.y265{bottom:977.953762px;}
.y2{bottom:979.058002px;}
.yc9{bottom:985.351177px;}
.y12f{bottom:985.351227px;}
.y161{bottom:986.626873px;}
.y21e{bottom:989.007568px;}
.y21d{bottom:991.386278px;}
.y1bc{bottom:991.388299px;}
.y21f{bottom:991.388672px;}
.y264{bottom:991.389400px;}
.y44{bottom:991.390242px;}
.y63{bottom:991.392570px;}
.y263{bottom:1004.910640px;}
.yc8{bottom:1006.355713px;}
.y12e{bottom:1006.355804px;}
.y160{bottom:1006.355825px;}
.y21c{bottom:1009.414175px;}
.y1bb{bottom:1009.416196px;}
.y43{bottom:1009.418139px;}
.y62{bottom:1009.420466px;}
.y262{bottom:1018.431789px;}
.yc6{bottom:1026.084778px;}
.y21b{bottom:1027.442071px;}
.y1ba{bottom:1027.444092px;}
.y42{bottom:1027.446035px;}
.y61{bottom:1027.448362px;}
.yc7{bottom:1031.442261px;}
.y261{bottom:1031.953029px;}
.y1{bottom:1036.034381px;}
.y21a{bottom:1045.384708px;}
.y1b9{bottom:1045.386729px;}
.y260{bottom:1045.388668px;}
.y41{bottom:1045.388672px;}
.y60{bottom:1045.390999px;}
.yc5{bottom:1045.813934px;}
.y140{bottom:1114.946228px;}
.y100{bottom:1114.948059px;}
.y40{bottom:1114.950431px;}
.y2ab{bottom:1114.950437px;}
.y97{bottom:1114.950525px;}
.y13f{bottom:1129.913635px;}
.yff{bottom:1129.915466px;}
.y3f{bottom:1129.917929px;}
.y2aa{bottom:1129.917935px;}
.y96{bottom:1129.917938px;}
.h12{height:20.185549px;}
.h10{height:23.068395px;}
.hb{height:24.176131px;}
.h15{height:25.787970px;}
.h17{height:27.788830px;}
.h1d{height:28.350001px;}
.h14{height:28.376746px;}
.h13{height:30.281567px;}
.h1c{height:31.089601px;}
.h19{height:31.580232px;}
.h8{height:32.236775px;}
.h18{height:32.444567px;}
.hc{height:33.851516px;}
.hd{height:34.607567px;}
.h1a{height:35.303283px;}
.h5{height:35.460936px;}
.ha{height:36.269516px;}
.h11{height:38.687516px;}
.hf{height:38.934000px;}
.he{height:39.799632px;}
.h1b{height:40.651940px;}
.h16{height:41.688775px;}
.h9{height:42.570766px;}
.h6{height:44.557801px;}
.h7{height:48.360484px;}
.h4{height:53.196484px;}
.h2{height:56.238000px;}
.h3{height:103.824429px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039367px;}
.xd{left:89.036262px;}
.x1{left:91.077167px;}
.x47{left:92.097599px;}
.x54{left:93.288151px;}
.x6{left:94.818915px;}
.xf{left:97.028558px;}
.x1e{left:99.751202px;}
.x46{left:107.574213px;}
.x1f{left:111.741749px;}
.x19{left:132.916500px;}
.x34{left:138.869247px;}
.x15{left:140.571900px;}
.x1a{left:145.162205px;}
.x3{left:165.826667px;}
.x20{left:175.521297px;}
.x4{left:188.277160px;}
.x35{left:200.097610px;}
.x23{left:209.451897px;}
.x36{left:223.908600px;}
.x24{left:236.324409px;}
.x10{left:237.514961px;}
.x33{left:238.875267px;}
.x43{left:240.406197px;}
.x22{left:249.081108px;}
.x37{left:266.428345px;}
.xe{left:270.680287px;}
.x25{left:278.843994px;}
.x5{left:294.661368px;}
.x26{left:301.464455px;}
.x38{left:306.736954px;}
.x32{left:308.692795px;}
.x21{left:317.026657px;}
.x44{left:332.758942px;}
.x27{left:343.984200px;}
.x1c{left:363.203110px;}
.x28{left:366.604660px;}
.x1d{left:371.622002px;}
.x45{left:373.152740px;}
.x39{left:399.174728px;}
.x29{left:409.039215px;}
.x3a{left:422.985764px;}
.x7{left:431.659804px;}
.x8{left:448.242476px;}
.xb{left:457.085235px;}
.xc{left:469.075896px;}
.x53{left:479.621801px;}
.x56{left:483.219131px;}
.x55{left:484.282654px;}
.x41{left:498.925781px;}
.x2a{left:506.324249px;}
.x9{left:518.654998px;}
.xa{left:530.730620px;}
.x42{left:539.234528px;}
.x2b{left:545.442444px;}
.x4d{left:547.568390px;}
.x4e{left:556.667679px;}
.x3b{left:565.256561px;}
.x2e{left:571.464432px;}
.x11{left:578.607742px;}
.x4f{left:580.478531px;}
.x3c{left:589.152603px;}
.x2f{left:610.582489px;}
.x12{left:613.984222px;}
.x16{left:617.640884px;}
.x17{left:635.584030px;}
.x2c{left:636.604523px;}
.x52{left:645.363602px;}
.x13{left:647.744705px;}
.x2d{left:659.224960px;}
.x48{left:663.817200px;}
.x3d{left:665.007751px;}
.x49{left:671.555695px;}
.x4c{left:679.464432px;}
.x14{left:681.845535px;}
.x4a{left:686.437637px;}
.x3e{left:688.903793px;}
.x4b{left:697.152603px;}
.x3f{left:731.423401px;}
.x30{left:733.889557px;}
.x40{left:755.234390px;}
.x31{left:756.509994px;}
.x50{left:784.062927px;}
.x1b{left:795.798340px;}
.x51{left:798.349457px;}
.x18{left:803.366730px;}
@media print{
.v3{vertical-align:-32.048826pt;}
.v1{vertical-align:-13.937168pt;}
.v2{vertical-align:-7.860799pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-2.571494pt;}
.ls10{letter-spacing:-1.615024pt;}
.ls57{letter-spacing:-1.175988pt;}
.ls20{letter-spacing:-1.128948pt;}
.ls1e{letter-spacing:-1.123722pt;}
.ls14{letter-spacing:-1.102815pt;}
.ls71{letter-spacing:-1.092362pt;}
.ls5b{letter-spacing:-1.076682pt;}
.ls59{letter-spacing:-1.045323pt;}
.lsd{letter-spacing:-1.034869pt;}
.ls1a{letter-spacing:-1.029643pt;}
.ls58{letter-spacing:-1.019190pt;}
.ls18{letter-spacing:-1.008736pt;}
.ls4d{letter-spacing:-1.003510pt;}
.ls4e{letter-spacing:-0.993057pt;}
.ls4c{letter-spacing:-0.987830pt;}
.ls4f{letter-spacing:-0.982603pt;}
.ls17{letter-spacing:-0.977377pt;}
.ls16{letter-spacing:-0.972150pt;}
.ls4a{letter-spacing:-0.972145pt;}
.ls12{letter-spacing:-0.966923pt;}
.lsb{letter-spacing:-0.961697pt;}
.ls13{letter-spacing:-0.956470pt;}
.ls5{letter-spacing:-0.951244pt;}
.lsa{letter-spacing:-0.946017pt;}
.ls1f{letter-spacing:-0.940790pt;}
.ls54{letter-spacing:-0.935564pt;}
.ls1c{letter-spacing:-0.930337pt;}
.ls56{letter-spacing:-0.925111pt;}
.ls8{letter-spacing:-0.919884pt;}
.lsf{letter-spacing:-0.914657pt;}
.ls3{letter-spacing:-0.909431pt;}
.ls1b{letter-spacing:-0.904204pt;}
.ls9{letter-spacing:-0.898977pt;}
.ls7{letter-spacing:-0.888524pt;}
.ls21{letter-spacing:-0.883298pt;}
.ls55{letter-spacing:-0.878071pt;}
.lsc{letter-spacing:-0.872844pt;}
.ls53{letter-spacing:-0.857165pt;}
.ls5c{letter-spacing:-0.851938pt;}
.ls51{letter-spacing:-0.841485pt;}
.ls4{letter-spacing:-0.815352pt;}
.ls11{letter-spacing:-0.783992pt;}
.ls52{letter-spacing:-0.684686pt;}
.ls19{letter-spacing:-0.648100pt;}
.ls70{letter-spacing:-0.010453pt;}
.ls49{letter-spacing:-0.005227pt;}
.ls2{letter-spacing:0.000000pt;}
.ls77{letter-spacing:0.000130pt;}
.ls1{letter-spacing:0.005227pt;}
.ls67{letter-spacing:0.029015pt;}
.ls6f{letter-spacing:0.043999pt;}
.ls74{letter-spacing:0.044064pt;}
.ls73{letter-spacing:0.051936pt;}
.ls75{letter-spacing:0.051979pt;}
.ls6e{letter-spacing:0.051998pt;}
.ls72{letter-spacing:0.052022pt;}
.ls6b{letter-spacing:0.052265pt;}
.ls63{letter-spacing:0.064181pt;}
.ls4b{letter-spacing:0.065412pt;}
.ls65{letter-spacing:0.065936pt;}
.ls42{letter-spacing:0.111491pt;}
.ls0{letter-spacing:0.149331pt;}
.ls3a{letter-spacing:0.317039pt;}
.ls31{letter-spacing:0.371090pt;}
.ls40{letter-spacing:0.379790pt;}
.ls3f{letter-spacing:0.480848pt;}
.ls30{letter-spacing:0.491302pt;}
.ls38{letter-spacing:0.496528pt;}
.ls2b{letter-spacing:0.501755pt;}
.ls2d{letter-spacing:0.506981pt;}
.ls37{letter-spacing:0.512208pt;}
.ls26{letter-spacing:0.517435pt;}
.ls32{letter-spacing:0.522661pt;}
.ls27{letter-spacing:0.527888pt;}
.ls29{letter-spacing:0.533115pt;}
.ls34{letter-spacing:0.538341pt;}
.ls28{letter-spacing:0.543568pt;}
.ls24{letter-spacing:0.548794pt;}
.ls22{letter-spacing:0.554021pt;}
.ls3e{letter-spacing:0.564474pt;}
.ls39{letter-spacing:0.569701pt;}
.ls2c{letter-spacing:0.574927pt;}
.ls2a{letter-spacing:0.580154pt;}
.ls2e{letter-spacing:0.585381pt;}
.ls3d{letter-spacing:0.590607pt;}
.ls23{letter-spacing:0.595834pt;}
.ls2f{letter-spacing:0.606287pt;}
.ls25{letter-spacing:0.611514pt;}
.ls33{letter-spacing:0.648014pt;}
.ls3c{letter-spacing:0.648017pt;}
.lse{letter-spacing:1.170761pt;}
.ls35{letter-spacing:1.777049pt;}
.ls68{letter-spacing:2.721074pt;}
.ls5f{letter-spacing:11.634441pt;}
.ls62{letter-spacing:11.660574pt;}
.ls61{letter-spacing:11.744201pt;}
.ls60{letter-spacing:11.759880pt;}
.ls76{letter-spacing:11.827832pt;}
.ls6d{letter-spacing:12.003840pt;}
.ls66{letter-spacing:14.210576pt;}
.ls64{letter-spacing:14.210617pt;}
.ls5e{letter-spacing:14.786087pt;}
.ls5d{letter-spacing:17.234136pt;}
.ls6c{letter-spacing:18.800129pt;}
.ls43{letter-spacing:20.221842pt;}
.ls1d{letter-spacing:20.274033pt;}
.ls5a{letter-spacing:20.739202pt;}
.ls50{letter-spacing:22.965738pt;}
.ls69{letter-spacing:24.748014pt;}
.ls6a{letter-spacing:27.810812pt;}
.ls3b{letter-spacing:36.680372pt;}
.ls36{letter-spacing:36.852851pt;}
.ls41{letter-spacing:38.666438pt;}
.ls45{letter-spacing:146.148571pt;}
.ls46{letter-spacing:147.471217pt;}
.ls47{letter-spacing:148.367212pt;}
.ls44{letter-spacing:149.689858pt;}
.ls48{letter-spacing:152.804483pt;}
.ls15{letter-spacing:177.004726pt;}
.ws164{word-spacing:-152.847150pt;}
.ws154{word-spacing:-149.732524pt;}
.ws15c{word-spacing:-148.409878pt;}
.ws159{word-spacing:-147.513883pt;}
.ws157{word-spacing:-146.191237pt;}
.wsf0{word-spacing:-36.732638pt;}
.ws1d1{word-spacing:-20.791468pt;}
.ws65{word-spacing:-20.326299pt;}
.ws2c1{word-spacing:-9.340800pt;}
.ws3f{word-spacing:-1.223028pt;}
.ws107{word-spacing:-0.621967pt;}
.ws29{word-spacing:-0.054933pt;}
.wsc{word-spacing:-0.053334pt;}
.ws6b{word-spacing:-0.052266pt;}
.ws55{word-spacing:-0.042666pt;}
.ws48{word-spacing:-0.039999pt;}
.ws2b9{word-spacing:-0.038934pt;}
.wsbc{word-spacing:-0.037333pt;}
.ws23{word-spacing:-0.035552pt;}
.ws24d{word-spacing:-0.034839pt;}
.ws194{word-spacing:-0.028440pt;}
.ws56{word-spacing:0.000000pt;}
.ws42{word-spacing:0.731726pt;}
.ws1d9{word-spacing:0.846711pt;}
.ws1be{word-spacing:0.914657pt;}
.ws3d{word-spacing:0.982603pt;}
.ws15d{word-spacing:8.038299pt;}
.ws15a{word-spacing:8.046833pt;}
.ws193{word-spacing:8.059632pt;}
.ws15b{word-spacing:8.149231pt;}
.ws158{word-spacing:8.162031pt;}
.ws195{word-spacing:8.217497pt;}
.ws197{word-spacing:8.520427pt;}
.wsff{word-spacing:9.637875pt;}
.wseb{word-spacing:9.810354pt;}
.wsea{word-spacing:9.961925pt;}
.ws121{word-spacing:10.259842pt;}
.ws125{word-spacing:10.296428pt;}
.ws22{word-spacing:10.346770pt;}
.wsa3{word-spacing:10.374828pt;}
.ws47{word-spacing:10.563859pt;}
.ws21{word-spacing:10.602773pt;}
.wsa8{word-spacing:10.677971pt;}
.wsbb{word-spacing:11.020643pt;}
.ws4e{word-spacing:11.080374pt;}
.ws50{word-spacing:11.095308pt;}
.wsbe{word-spacing:11.136374pt;}
.wsbd{word-spacing:11.166240pt;}
.ws4d{word-spacing:11.173706pt;}
.wsf9{word-spacing:11.177440pt;}
.ws51{word-spacing:11.196106pt;}
.ws1a0{word-spacing:11.233439pt;}
.ws4f{word-spacing:11.431304pt;}
.ws276{word-spacing:11.531833pt;}
.ws2be{word-spacing:11.547785pt;}
.ws2ba{word-spacing:11.582825pt;}
.ws28c{word-spacing:11.671844pt;}
.ws2a6{word-spacing:11.675844pt;}
.ws26e{word-spacing:11.683844pt;}
.ws280{word-spacing:11.687844pt;}
.ws288{word-spacing:11.691843pt;}
.ws2a1{word-spacing:11.711843pt;}
.ws2bc{word-spacing:11.715200pt;}
.ws2a0{word-spacing:11.723844pt;}
.ws2b0{word-spacing:11.727844pt;}
.ws29e{word-spacing:11.735843pt;}
.ws293{word-spacing:11.739843pt;}
.ws2b6{word-spacing:11.743843pt;}
.ws27d{word-spacing:11.747844pt;}
.ws274{word-spacing:11.751843pt;}
.ws277{word-spacing:11.755843pt;}
.ws26a{word-spacing:11.759843pt;}
.ws266{word-spacing:11.763843pt;}
.ws290{word-spacing:11.767843pt;}
.ws27f{word-spacing:11.775843pt;}
.ws261{word-spacing:11.783843pt;}
.ws283{word-spacing:11.787843pt;}
.ws2a3{word-spacing:11.791842pt;}
.ws287{word-spacing:11.795842pt;}
.ws29c{word-spacing:11.799842pt;}
.ws284{word-spacing:11.803843pt;}
.ws272{word-spacing:11.807844pt;}
.ws26f{word-spacing:11.811842pt;}
.ws2af{word-spacing:11.815842pt;}
.ws28b{word-spacing:11.819842pt;}
.ws281{word-spacing:11.831842pt;}
.ws2b2{word-spacing:11.835842pt;}
.ws2a5{word-spacing:11.835855pt;}
.ws2ab{word-spacing:11.835883pt;}
.ws2c0{word-spacing:11.839772pt;}
.ws26c{word-spacing:11.839842pt;}
.ws2a2{word-spacing:11.839887pt;}
.ws297{word-spacing:11.843822pt;}
.ws296{word-spacing:11.843842pt;}
.ws289{word-spacing:11.847795pt;}
.ws295{word-spacing:11.847837pt;}
.ws26d{word-spacing:11.847841pt;}
.ws291{word-spacing:11.847842pt;}
.ws28e{word-spacing:11.847880pt;}
.ws264{word-spacing:11.851841pt;}
.ws265{word-spacing:11.855841pt;}
.ws4b{word-spacing:11.859842pt;}
.ws2b3{word-spacing:11.863842pt;}
.ws2bb{word-spacing:11.867042pt;}
.ws28f{word-spacing:11.867842pt;}
.ws29d{word-spacing:11.871860pt;}
.ws268{word-spacing:11.875841pt;}
.ws263{word-spacing:11.883842pt;}
.ws299{word-spacing:11.883867pt;}
.ws294{word-spacing:11.887842pt;}
.ws28a{word-spacing:11.895841pt;}
.ws2ae{word-spacing:11.895865pt;}
.ws27a{word-spacing:11.899841pt;}
.ws29a{word-spacing:11.899854pt;}
.ws267{word-spacing:11.903841pt;}
.ws271{word-spacing:11.911840pt;}
.ws2b7{word-spacing:11.915841pt;}
.ws279{word-spacing:11.919841pt;}
.ws26b{word-spacing:11.923841pt;}
.ws25e{word-spacing:11.927841pt;}
.ws285{word-spacing:11.931879pt;}
.ws2bd{word-spacing:11.933210pt;}
.ws260{word-spacing:11.939841pt;}
.ws27e{word-spacing:11.951840pt;}
.ws278{word-spacing:11.967841pt;}
.ws27b{word-spacing:11.975840pt;}
.ws2b5{word-spacing:11.983840pt;}
.ws25d{word-spacing:11.991839pt;}
.ws2a8{word-spacing:11.995859pt;}
.ws49{word-spacing:12.003840pt;}
.ws292{word-spacing:12.003880pt;}
.ws2bf{word-spacing:12.007212pt;}
.ws2b4{word-spacing:12.015839pt;}
.ws2ac{word-spacing:12.023791pt;}
.ws2b1{word-spacing:12.027840pt;}
.ws29f{word-spacing:12.043839pt;}
.ws4c{word-spacing:12.055839pt;}
.ws282{word-spacing:12.063839pt;}
.ws262{word-spacing:12.067839pt;}
.ws269{word-spacing:12.071838pt;}
.ws2b8{word-spacing:12.079875pt;}
.ws275{word-spacing:12.095838pt;}
.ws2ad{word-spacing:12.095874pt;}
.ws4a{word-spacing:12.127839pt;}
.ws28d{word-spacing:12.135787pt;}
.ws2aa{word-spacing:12.143787pt;}
.ws2a9{word-spacing:12.143838pt;}
.ws270{word-spacing:12.159838pt;}
.ws29b{word-spacing:12.163807pt;}
.ws273{word-spacing:12.163837pt;}
.ws286{word-spacing:12.163850pt;}
.ws2a4{word-spacing:12.163893pt;}
.ws25c{word-spacing:12.175839pt;}
.ws298{word-spacing:12.203866pt;}
.ws169{word-spacing:12.206781pt;}
.wsf7{word-spacing:12.215313pt;}
.ws27c{word-spacing:12.223835pt;}
.ws118{word-spacing:12.240854pt;}
.ws117{word-spacing:12.245180pt;}
.ws166{word-spacing:12.270780pt;}
.wsb1{word-spacing:12.279312pt;}
.ws167{word-spacing:12.317713pt;}
.wsa2{word-spacing:12.324354pt;}
.ws25f{word-spacing:12.339835pt;}
.ws21c{word-spacing:12.360940pt;}
.wsb2{word-spacing:12.381712pt;}
.ws2a7{word-spacing:12.383835pt;}
.wsb0{word-spacing:12.394512pt;}
.ws16a{word-spacing:12.411578pt;}
.ws52{word-spacing:12.420111pt;}
.ws115{word-spacing:12.428644pt;}
.ws11a{word-spacing:12.437178pt;}
.wsb3{word-spacing:12.449977pt;}
.ws53{word-spacing:12.479805pt;}
.wsbf{word-spacing:12.479837pt;}
.ws11b{word-spacing:12.479846pt;}
.ws116{word-spacing:12.509711pt;}
.ws168{word-spacing:12.514015pt;}
.wsad{word-spacing:12.518243pt;}
.ws119{word-spacing:12.569443pt;}
.ws155{word-spacing:12.599308pt;}
.wsc1{word-spacing:12.667575pt;}
.ws1d2{word-spacing:12.721577pt;}
.ws16b{word-spacing:12.757092pt;}
.wsc0{word-spacing:12.757171pt;}
.ws11c{word-spacing:12.757173pt;}
.ws54{word-spacing:12.757255pt;}
.ws187{word-spacing:13.118800pt;}
.ws9d{word-spacing:13.171066pt;}
.ws1b3{word-spacing:14.023003pt;}
.ws18f{word-spacing:14.088000pt;}
.ws18d{word-spacing:14.179200pt;}
.wsf4{word-spacing:14.198399pt;}
.ws148{word-spacing:14.232068pt;}
.ws151{word-spacing:14.275200pt;}
.ws199{word-spacing:14.294399pt;}
.wsf5{word-spacing:14.318404pt;}
.ws152{word-spacing:14.318469pt;}
.ws1c4{word-spacing:14.331374pt;}
.wsf6{word-spacing:14.356800pt;}
.ws153{word-spacing:14.380800pt;}
.wsab{word-spacing:14.390399pt;}
.ws234{word-spacing:14.592585pt;}
.ws18e{word-spacing:14.620802pt;}
.ws1f4{word-spacing:14.715253pt;}
.ws5f{word-spacing:14.718145pt;}
.ws3b{word-spacing:14.744277pt;}
.ws233{word-spacing:14.812223pt;}
.ws3c{word-spacing:14.864666pt;}
.ws1e0{word-spacing:14.916755pt;}
.ws75{word-spacing:14.940962pt;}
.ws229{word-spacing:15.052646pt;}
.ws9e{word-spacing:15.068537pt;}
.ws22f{word-spacing:15.089232pt;}
.ws228{word-spacing:15.125818pt;}
.ws11d{word-spacing:15.137231pt;}
.ws66{word-spacing:15.214672pt;}
.ws43{word-spacing:15.246031pt;}
.ws5e{word-spacing:15.256485pt;}
.ws1e5{word-spacing:15.287844pt;}
.ws33{word-spacing:15.293071pt;}
.ws17e{word-spacing:15.303523pt;}
.ws170{word-spacing:15.324430pt;}
.ws60{word-spacing:15.366243pt;}
.ws1f{word-spacing:15.370794pt;}
.ws44{word-spacing:15.371470pt;}
.ws1d{word-spacing:15.408187pt;}
.ws202{word-spacing:15.413282pt;}
.ws1a6{word-spacing:15.418509pt;}
.ws205{word-spacing:15.502136pt;}
.ws250{word-spacing:15.517798pt;}
.ws251{word-spacing:15.523042pt;}
.ws1f0{word-spacing:15.538721pt;}
.ws93{word-spacing:15.543948pt;}
.ws1fc{word-spacing:15.590987pt;}
.ws46{word-spacing:15.601441pt;}
.ws9b{word-spacing:15.622347pt;}
.ws7d{word-spacing:15.643253pt;}
.ws180{word-spacing:15.653707pt;}
.ws231{word-spacing:15.658934pt;}
.ws1b8{word-spacing:15.685067pt;}
.ws40{word-spacing:15.685155pt;}
.ws137{word-spacing:15.690293pt;}
.ws1a8{word-spacing:15.690294pt;}
.ws217{word-spacing:15.711199pt;}
.ws32{word-spacing:15.716426pt;}
.ws18a{word-spacing:15.732106pt;}
.ws8{word-spacing:15.770825pt;}
.ws220{word-spacing:15.794826pt;}
.ws13c{word-spacing:15.805278pt;}
.ws139{word-spacing:15.820959pt;}
.ws20a{word-spacing:15.831412pt;}
.ws23d{word-spacing:15.836638pt;}
.wsd{word-spacing:15.845492pt;}
.ws27{word-spacing:15.866760pt;}
.wsa{word-spacing:15.866826pt;}
.ws26{word-spacing:15.872159pt;}
.ws13{word-spacing:15.882828pt;}
.ws25{word-spacing:15.888114pt;}
.ws17{word-spacing:15.888159pt;}
.ws8d{word-spacing:15.894132pt;}
.ws14{word-spacing:15.914826pt;}
.ws16{word-spacing:15.946826pt;}
.wsb{word-spacing:15.978775pt;}
.ws81{word-spacing:15.982983pt;}
.wsf{word-spacing:15.984161pt;}
.ws1b{word-spacing:15.989488pt;}
.ws11{word-spacing:15.989493pt;}
.ws18{word-spacing:15.994826pt;}
.ws1db{word-spacing:16.009116pt;}
.ws1bc{word-spacing:16.056160pt;}
.ws1b9{word-spacing:16.061383pt;}
.ws15{word-spacing:16.064161pt;}
.ws1f6{word-spacing:16.066609pt;}
.ws138{word-spacing:16.071812pt;}
.ws7{word-spacing:16.074827pt;}
.ws1c{word-spacing:16.074843pt;}
.ws19{word-spacing:16.106828pt;}
.ws8e{word-spacing:16.108423pt;}
.ws244{word-spacing:16.139781pt;}
.ws8f{word-spacing:16.155464pt;}
.wse{word-spacing:16.165496pt;}
.ws10{word-spacing:16.186702pt;}
.ws9{word-spacing:16.186864pt;}
.ws92{word-spacing:16.192048pt;}
.ws243{word-spacing:16.218181pt;}
.ws1a{word-spacing:16.240134pt;}
.ws126{word-spacing:16.259994pt;}
.ws20{word-spacing:16.277538pt;}
.ws12{word-spacing:16.282827pt;}
.ws91{word-spacing:16.291356pt;}
.ws144{word-spacing:16.301807pt;}
.ws1e{word-spacing:16.346802pt;}
.ws16d{word-spacing:16.354073pt;}
.ws24{word-spacing:16.368171pt;}
.ws79{word-spacing:16.369754pt;}
.ws174{word-spacing:16.374979pt;}
.ws28{word-spacing:16.384173pt;}
.ws212{word-spacing:16.416793pt;}
.ws90{word-spacing:16.432471pt;}
.ws14d{word-spacing:16.437699pt;}
.ws1c1{word-spacing:16.489965pt;}
.ws20c{word-spacing:16.495192pt;}
.ws1b5{word-spacing:16.510871pt;}
.ws173{word-spacing:16.510872pt;}
.ws5b{word-spacing:16.516098pt;}
.ws6{word-spacing:16.533485pt;}
.ws9a{word-spacing:16.552685pt;}
.ws249{word-spacing:16.594497pt;}
.ws186{word-spacing:16.604951pt;}
.ws1ba{word-spacing:16.625854pt;}
.ws1c2{word-spacing:16.631082pt;}
.ws230{word-spacing:16.636310pt;}
.ws20d{word-spacing:16.714709pt;}
.ws24a{word-spacing:16.730390pt;}
.ws225{word-spacing:16.740842pt;}
.ws21d{word-spacing:16.761750pt;}
.ws242{word-spacing:16.772207pt;}
.ws21e{word-spacing:16.782656pt;}
.ws145{word-spacing:16.787831pt;}
.ws223{word-spacing:16.829695pt;}
.ws1f7{word-spacing:16.834922pt;}
.ws98{word-spacing:16.876734pt;}
.ws63{word-spacing:16.981267pt;}
.ws131{word-spacing:17.017853pt;}
.ws13b{word-spacing:17.033533pt;}
.ws61{word-spacing:17.049212pt;}
.ws1bb{word-spacing:17.085802pt;}
.ws62{word-spacing:17.117157pt;}
.ws30{word-spacing:17.127613pt;}
.ws23b{word-spacing:17.164198pt;}
.ws11f{word-spacing:17.247824pt;}
.ws8b{word-spacing:17.294864pt;}
.ws8c{word-spacing:17.315769pt;}
.ws8a{word-spacing:17.326223pt;}
.ws5{word-spacing:17.388958pt;}
.ws1f2{word-spacing:17.394169pt;}
.ws6e{word-spacing:17.404622pt;}
.ws14b{word-spacing:17.420302pt;}
.ws41{word-spacing:17.535188pt;}
.ws135{word-spacing:17.587554pt;}
.ws204{word-spacing:17.618914pt;}
.ws213{word-spacing:17.629368pt;}
.ws146{word-spacing:17.660726pt;}
.ws4{word-spacing:17.699895pt;}
.ws175{word-spacing:17.707767pt;}
.ws1d3{word-spacing:17.770486pt;}
.ws1ed{word-spacing:17.786165pt;}
.ws7c{word-spacing:17.817525pt;}
.ws245{word-spacing:17.875018pt;}
.ws14a{word-spacing:17.885451pt;}
.ws7b{word-spacing:17.885471pt;}
.ws1a4{word-spacing:17.953417pt;}
.ws7a{word-spacing:17.953418pt;}
.ws1bd{word-spacing:18.073628pt;}
.ws1a7{word-spacing:18.089309pt;}
.wsc2{word-spacing:18.125894pt;}
.ws241{word-spacing:18.209521pt;}
.ws1c3{word-spacing:18.230428pt;}
.ws1bf{word-spacing:18.251334pt;}
.ws219{word-spacing:18.303600pt;}
.ws200{word-spacing:18.308826pt;}
.ws176{word-spacing:18.366319pt;}
.ws254{word-spacing:18.366321pt;}
.ws255{word-spacing:18.413358pt;}
.ws1aa{word-spacing:18.418585pt;}
.ws201{word-spacing:18.455172pt;}
.ws232{word-spacing:18.523118pt;}
.ws23c{word-spacing:18.559704pt;}
.ws94{word-spacing:18.638104pt;}
.ws214{word-spacing:18.695597pt;}
.ws82{word-spacing:18.915113pt;}
.ws45{word-spacing:19.014419pt;}
.ws5c{word-spacing:19.155539pt;}
.ws1e8{word-spacing:19.155540pt;}
.wsa9{word-spacing:19.228710pt;}
.ws69{word-spacing:19.296657pt;}
.ws99{word-spacing:19.328016pt;}
.wsa5{word-spacing:19.348923pt;}
.ws1a9{word-spacing:19.432548pt;}
.ws17a{word-spacing:19.495268pt;}
.ws1e4{word-spacing:19.521401pt;}
.wsa0{word-spacing:19.537092pt;}
.ws14e{word-spacing:19.552761pt;}
.ws129{word-spacing:19.599800pt;}
.ws150{word-spacing:19.605021pt;}
.wsa1{word-spacing:19.636387pt;}
.ws1fa{word-spacing:19.688653pt;}
.ws1ea{word-spacing:19.699105pt;}
.ws237{word-spacing:19.735692pt;}
.ws25b{word-spacing:19.761825pt;}
.ws1e7{word-spacing:19.777500pt;}
.ws25a{word-spacing:19.808865pt;}
.ws12c{word-spacing:19.845452pt;}
.ws14f{word-spacing:19.866301pt;}
.ws23e{word-spacing:19.876810pt;}
.ws18c{word-spacing:19.882037pt;}
.ws16e{word-spacing:19.918623pt;}
.ws1e9{word-spacing:19.944754pt;}
.ws6f{word-spacing:19.965663pt;}
.ws1e3{word-spacing:20.002258pt;}
.ws114{word-spacing:20.064969pt;}
.ws1ad{word-spacing:20.070195pt;}
.ws12b{word-spacing:20.075485pt;}
.ws1ac{word-spacing:20.096328pt;}
.ws10c{word-spacing:20.143368pt;}
.ws1eb{word-spacing:20.148595pt;}
.wsdb{word-spacing:20.159047pt;}
.ws102{word-spacing:20.169502pt;}
.ws218{word-spacing:20.179955pt;}
.ws122{word-spacing:20.300166pt;}
.ws1ec{word-spacing:20.305402pt;}
.ws222{word-spacing:20.326299pt;}
.ws6a{word-spacing:20.341980pt;}
.ws1c0{word-spacing:20.399472pt;}
.ws73{word-spacing:20.420379pt;}
.ws95{word-spacing:20.425605pt;}
.ws22d{word-spacing:20.430831pt;}
.ws1ae{word-spacing:20.436058pt;}
.ws31{word-spacing:20.441285pt;}
.ws72{word-spacing:20.446512pt;}
.wscd{word-spacing:20.472645pt;}
.ws112{word-spacing:20.504005pt;}
.ws71{word-spacing:20.524906pt;}
.ws14c{word-spacing:20.613764pt;}
.wscf{word-spacing:20.660802pt;}
.ws87{word-spacing:20.666026pt;}
.ws10b{word-spacing:20.676482pt;}
.ws177{word-spacing:20.692162pt;}
.ws206{word-spacing:20.718295pt;}
.ws22b{word-spacing:20.728749pt;}
.ws85{word-spacing:20.744428pt;}
.ws22a{word-spacing:20.754881pt;}
.wsda{word-spacing:20.791467pt;}
.ws86{word-spacing:20.807147pt;}
.ws89{word-spacing:20.859414pt;}
.ws88{word-spacing:20.869865pt;}
.wsd0{word-spacing:20.885548pt;}
.wsd6{word-spacing:21.005759pt;}
.ws0{word-spacing:21.021868pt;}
.ws2e{word-spacing:21.031892pt;}
.ws6c{word-spacing:21.209596pt;}
.ws179{word-spacing:21.240957pt;}
.ws1cb{word-spacing:21.267089pt;}
.ws13a{word-spacing:21.282770pt;}
.ws178{word-spacing:21.319356pt;}
.ws2d{word-spacing:21.345489pt;}
.wsec{word-spacing:21.418662pt;}
.wsce{word-spacing:21.517968pt;}
.ws1af{word-spacing:21.549326pt;}
.ws17f{word-spacing:21.591140pt;}
.ws37{word-spacing:21.601592pt;}
.wsd5{word-spacing:21.622500pt;}
.ws182{word-spacing:21.638179pt;}
.ws238{word-spacing:21.659085pt;}
.ws74{word-spacing:21.679992pt;}
.ws1ab{word-spacing:21.753165pt;}
.ws35{word-spacing:21.842011pt;}
.ws2c{word-spacing:21.852471pt;}
.wsfa{word-spacing:21.941322pt;}
.ws1d7{word-spacing:21.951776pt;}
.ws64{word-spacing:21.988362pt;}
.ws104{word-spacing:22.134707pt;}
.ws57{word-spacing:22.160840pt;}
.ws124{word-spacing:22.181747pt;}
.ws259{word-spacing:22.218334pt;}
.ws1b0{word-spacing:22.254919pt;}
.ws172{word-spacing:22.265373pt;}
.ws239{word-spacing:22.275827pt;}
.ws128{word-spacing:22.348999pt;}
.ws1b1{word-spacing:22.385584pt;}
.ws123{word-spacing:22.411717pt;}
.ws257{word-spacing:22.474437pt;}
.ws1fb{word-spacing:22.479664pt;}
.ws258{word-spacing:22.490117pt;}
.ws1f1{word-spacing:22.542383pt;}
.ws109{word-spacing:22.563290pt;}
.ws171{word-spacing:22.662596pt;}
.ws2a{word-spacing:22.678275pt;}
.ws10d{word-spacing:22.740994pt;}
.ws256{word-spacing:22.897793pt;}
.ws5d{word-spacing:22.903020pt;}
.wse8{word-spacing:22.908246pt;}
.ws22c{word-spacing:23.023231pt;}
.ws130{word-spacing:23.065044pt;}
.ws1dc{word-spacing:23.070272pt;}
.ws1fe{word-spacing:23.085952pt;}
.ws252{word-spacing:23.085954pt;}
.wsfb{word-spacing:23.148670pt;}
.ws21b{word-spacing:23.153898pt;}
.ws185{word-spacing:23.164351pt;}
.ws207{word-spacing:23.295016pt;}
.ws68{word-spacing:23.326387pt;}
.ws224{word-spacing:23.331603pt;}
.ws211{word-spacing:23.389095pt;}
.ws83{word-spacing:23.451815pt;}
.wsd7{word-spacing:23.551120pt;}
.ws1ca{word-spacing:23.566800pt;}
.ws1c5{word-spacing:23.572026pt;}
.wscc{word-spacing:23.624292pt;}
.ws1b7{word-spacing:23.666105pt;}
.wsee{word-spacing:23.702692pt;}
.ws1e1{word-spacing:23.723598pt;}
.wsc3{word-spacing:23.765412pt;}
.ws10e{word-spacing:23.791544pt;}
.wse6{word-spacing:23.896077pt;}
.ws23a{word-spacing:23.916983pt;}
.ws1c9{word-spacing:24.031969pt;}
.ws209{word-spacing:24.037195pt;}
.wsca{word-spacing:24.042422pt;}
.ws6d{word-spacing:24.068555pt;}
.ws1c6{word-spacing:24.099913pt;}
.ws1e2{word-spacing:24.157408pt;}
.wsc4{word-spacing:24.235807pt;}
.ws1c7{word-spacing:24.261936pt;}
.wsa7{word-spacing:24.272392pt;}
.ws20f{word-spacing:24.303752pt;}
.wsc5{word-spacing:24.329885pt;}
.ws1c8{word-spacing:24.423963pt;}
.ws20e{word-spacing:24.423964pt;}
.ws80{word-spacing:24.471004pt;}
.ws247{word-spacing:24.533723pt;}
.ws7e{word-spacing:24.538950pt;}
.ws96{word-spacing:24.570310pt;}
.ws235{word-spacing:24.575537pt;}
.ws248{word-spacing:24.591216pt;}
.ws9f{word-spacing:24.612122pt;}
.wsc6{word-spacing:24.638255pt;}
.ws23f{word-spacing:24.674842pt;}
.ws97{word-spacing:24.779374pt;}
.wsed{word-spacing:24.795054pt;}
.ws1dd{word-spacing:24.852547pt;}
.wsc7{word-spacing:24.904812pt;}
.ws36{word-spacing:24.915223pt;}
.wsc9{word-spacing:24.988439pt;}
.wse4{word-spacing:25.030252pt;}
.ws1df{word-spacing:25.103423pt;}
.ws78{word-spacing:25.134783pt;}
.ws77{word-spacing:25.140018pt;}
.ws22e{word-spacing:25.207956pt;}
.ws1de{word-spacing:25.254991pt;}
.ws17b{word-spacing:25.333396pt;}
.ws1ff{word-spacing:25.411795pt;}
.wsaa{word-spacing:25.464061pt;}
.ws120{word-spacing:25.599952pt;}
.wsd2{word-spacing:25.709711pt;}
.ws1f9{word-spacing:25.746298pt;}
.ws127{word-spacing:25.840376pt;}
.ws17d{word-spacing:26.007629pt;}
.ws12a{word-spacing:26.070347pt;}
.ws70{word-spacing:26.086028pt;}
.ws142{word-spacing:26.101638pt;}
.ws13e{word-spacing:26.117388pt;}
.ws1ef{word-spacing:26.143521pt;}
.ws1d8{word-spacing:26.237599pt;}
.wsde{word-spacing:26.274185pt;}
.ws140{word-spacing:26.279411pt;}
.ws143{word-spacing:26.336904pt;}
.ws141{word-spacing:26.352573pt;}
.ws136{word-spacing:26.430984pt;}
.ws12f{word-spacing:26.472797pt;}
.wsc8{word-spacing:26.493702pt;}
.ws1cf{word-spacing:26.509383pt;}
.ws17c{word-spacing:26.598236pt;}
.ws1d0{word-spacing:26.634822pt;}
.ws1b4{word-spacing:26.645274pt;}
.ws215{word-spacing:26.655728pt;}
.ws2f{word-spacing:26.681861pt;}
.ws246{word-spacing:26.692315pt;}
.ws10f{word-spacing:26.707993pt;}
.ws1a2{word-spacing:26.749807pt;}
.ws5a{word-spacing:26.760260pt;}
.ws16c{word-spacing:26.917058pt;}
.ws216{word-spacing:26.958871pt;}
.ws20b{word-spacing:26.979779pt;}
.ws1d4{word-spacing:27.037271pt;}
.ws240{word-spacing:27.115669pt;}
.ws1ee{word-spacing:27.188843pt;}
.ws24f{word-spacing:27.314280pt;}
.ws24c{word-spacing:27.397925pt;}
.ws3e{word-spacing:27.491987pt;}
.ws24e{word-spacing:27.559932pt;}
.ws103{word-spacing:27.575611pt;}
.ws1ce{word-spacing:27.606972pt;}
.ws221{word-spacing:27.638331pt;}
.ws1cd{word-spacing:27.664468pt;}
.ws1cc{word-spacing:27.742864pt;}
.ws149{word-spacing:27.852622pt;}
.ws2b{word-spacing:27.863075pt;}
.ws1a3{word-spacing:27.868303pt;}
.ws181{word-spacing:27.873528pt;}
.ws7f{word-spacing:28.202804pt;}
.wsd4{word-spacing:28.223711pt;}
.ws1a5{word-spacing:28.432777pt;}
.ws24b{word-spacing:28.490268pt;}
.ws34{word-spacing:28.662747pt;}
.wsa4{word-spacing:28.767281pt;}
.ws188{word-spacing:28.976346pt;}
.ws1fd{word-spacing:29.164503pt;}
.ws1e6{word-spacing:29.352659pt;}
.ws236{word-spacing:29.446741pt;}
.ws21a{word-spacing:29.640125pt;}
.ws13d{word-spacing:29.676710pt;}
.ws1f3{word-spacing:29.713297pt;}
.ws106{word-spacing:29.791701pt;}
.wse7{word-spacing:29.802150pt;}
.wsd3{word-spacing:29.849190pt;}
.ws12e{word-spacing:29.969402pt;}
.ws105{word-spacing:30.115747pt;}
.ws133{word-spacing:30.403211pt;}
.ws18b{word-spacing:30.502514pt;}
.ws38{word-spacing:30.606943pt;}
.ws3a{word-spacing:30.659314pt;}
.ws210{word-spacing:30.680220pt;}
.ws39{word-spacing:30.690742pt;}
.ws1d5{word-spacing:30.852697pt;}
.ws134{word-spacing:30.884149pt;}
.wsd8{word-spacing:31.150614pt;}
.ws12d{word-spacing:31.338772pt;}
.ws108{word-spacing:31.568745pt;}
.ws184{word-spacing:31.673277pt;}
.ws1b6{word-spacing:31.793488pt;}
.ws59{word-spacing:31.960749pt;}
.ws132{word-spacing:32.222071pt;}
.ws1d6{word-spacing:32.295244pt;}
.ws1f5{word-spacing:32.295245pt;}
.ws58{word-spacing:32.305697pt;}
.ws10a{word-spacing:32.357965pt;}
.ws100{word-spacing:32.734278pt;}
.ws147{word-spacing:32.760412pt;}
.ws1a1{word-spacing:33.058330pt;}
.wsa6{word-spacing:33.722110pt;}
.ws16f{word-spacing:33.920721pt;}
.wsdc{word-spacing:34.333623pt;}
.ws227{word-spacing:34.495640pt;}
.ws226{word-spacing:34.668127pt;}
.wsef{word-spacing:34.887644pt;}
.ws9c{word-spacing:35.206468pt;}
.wse9{word-spacing:35.436439pt;}
.ws1f8{word-spacing:35.457346pt;}
.ws21f{word-spacing:35.483479pt;}
.ws101{word-spacing:35.530518pt;}
.ws113{word-spacing:35.551425pt;}
.wsf2{word-spacing:35.635049pt;}
.ws189{word-spacing:35.702995pt;}
.wsf1{word-spacing:35.718676pt;}
.ws253{word-spacing:36.147257pt;}
.ws13f{word-spacing:36.215205pt;}
.wsd9{word-spacing:37.051461pt;}
.wsfe{word-spacing:37.056689pt;}
.ws1da{word-spacing:37.741375pt;}
.wsf3{word-spacing:37.950438pt;}
.wsd1{word-spacing:38.086330pt;}
.ws3{word-spacing:38.182556pt;}
.ws1{word-spacing:38.310557pt;}
.ws11e{word-spacing:38.410383pt;}
.ws2{word-spacing:38.412921pt;}
.ws84{word-spacing:38.661260pt;}
.ws208{word-spacing:39.319812pt;}
.ws110{word-spacing:39.852928pt;}
.wse3{word-spacing:41.023688pt;}
.wsdf{word-spacing:41.206620pt;}
.ws111{word-spacing:41.373870pt;}
.ws203{word-spacing:41.703149pt;}
.ws76{word-spacing:42.142183pt;}
.wscb{word-spacing:42.497592pt;}
.wsdd{word-spacing:42.926176pt;}
.ws1b2{word-spacing:44.671865pt;}
.wse5{word-spacing:45.319964pt;}
.ws198{word-spacing:45.857561pt;}
.wsfc{word-spacing:46.856590pt;}
.ws67{word-spacing:47.076107pt;}
.wsfd{word-spacing:49.746907pt;}
.ws19f{word-spacing:50.392968pt;}
.wse0{word-spacing:50.901984pt;}
.wse1{word-spacing:50.938583pt;}
.wse2{word-spacing:51.429875pt;}
.ws183{word-spacing:60.957994pt;}
.ws165{word-spacing:83.472023pt;}
.ws156{word-spacing:83.655495pt;}
.ws196{word-spacing:104.514963pt;}
.wsae{word-spacing:106.473334pt;}
.wsac{word-spacing:106.818934pt;}
.ws19e{word-spacing:109.050364pt;}
.wsb6{word-spacing:126.547749pt;}
.ws19c{word-spacing:131.108755pt;}
.ws161{word-spacing:146.105900pt;}
.wsaf{word-spacing:146.984827pt;}
.ws19d{word-spacing:167.404842pt;}
.wsb5{word-spacing:175.537011pt;}
.wsba{word-spacing:183.088916pt;}
.ws192{word-spacing:185.060079pt;}
.ws162{word-spacing:218.160478pt;}
.ws163{word-spacing:219.952455pt;}
.wsb8{word-spacing:232.265901pt;}
.ws15f{word-spacing:234.160278pt;}
.wsf8{word-spacing:235.576780pt;}
.wsb9{word-spacing:237.172506pt;}
.ws15e{word-spacing:240.389533pt;}
.ws160{word-spacing:250.586739pt;}
.wsb4{word-spacing:256.713595pt;}
.wsb7{word-spacing:266.057478pt;}
.ws191{word-spacing:436.299622pt;}
.ws19b{word-spacing:449.299959pt;}
.ws190{word-spacing:991.479839pt;}
.ws19a{word-spacing:1010.773514pt;}
._4c{margin-left:-149.689855pt;}
._38{margin-left:-35.854563pt;}
._4d{margin-left:-23.167191pt;}
._18{margin-left:-22.144242pt;}
._17{margin-left:-20.950315pt;}
._19{margin-left:-19.391654pt;}
._15{margin-left:-6.942989pt;}
._1f{margin-left:-5.463855pt;}
._14{margin-left:-3.974273pt;}
._10{margin-left:-2.592242pt;}
._c{margin-left:-0.993053pt;}
._5{width:1.146675pt;}
._d{width:2.177451pt;}
._0{width:7.959467pt;}
._6c{width:9.426022pt;}
._13{width:10.539046pt;}
._49{width:11.609054pt;}
._12{width:12.551827pt;}
._b{width:13.451255pt;}
._f{width:14.979472pt;}
._6{width:16.048160pt;}
._4{width:17.157507pt;}
._11{width:18.319964pt;}
._20{width:19.280290pt;}
._16{width:20.504005pt;}
._a{width:21.402981pt;}
._8{width:22.312414pt;}
._4a{width:23.242778pt;}
._7{width:24.165814pt;}
._1b{width:25.586319pt;}
._1c{width:27.099989pt;}
._9{width:28.087821pt;}
._1{width:29.223998pt;}
._e{width:30.690674pt;}
._48{width:32.603140pt;}
._4b{width:33.679382pt;}
._21{width:34.882417pt;}
._1e{width:35.985230pt;}
._39{width:37.291891pt;}
._37{width:38.330308pt;}
._3{width:39.500968pt;}
._1d{width:43.297269pt;}
._36{width:44.640503pt;}
._5d{width:45.900228pt;}
._1a{width:48.025299pt;}
._72{width:50.461249pt;}
._5c{width:52.628675pt;}
._76{width:58.543217pt;}
._55{width:62.196694pt;}
._5b{width:75.847613pt;}
._6f{width:79.320611pt;}
._60{width:93.780164pt;}
._5f{width:94.706020pt;}
._61{width:95.597740pt;}
._6b{width:104.557629pt;}
._22{width:106.968257pt;}
._70{width:108.764493pt;}
._71{width:109.750105pt;}
._62{width:114.221499pt;}
._4e{width:125.037377pt;}
._28{width:126.590415pt;}
._5a{width:133.284717pt;}
._6e{width:138.280946pt;}
._4f{width:145.721918pt;}
._51{width:147.471217pt;}
._54{width:151.908494pt;}
._5e{width:163.215019pt;}
._73{width:164.601669pt;}
._53{width:167.643766pt;}
._65{width:170.775466pt;}
._25{width:175.579677pt;}
._2a{width:176.475666pt;}
._2e{width:177.798316pt;}
._31{width:183.131583pt;}
._68{width:187.666984pt;}
._69{width:189.458962pt;}
._59{width:192.833857pt;}
._6d{width:196.806078pt;}
._58{width:197.953793pt;}
._75{width:202.826253pt;}
._63{width:209.896039pt;}
._26{width:212.195740pt;}
._66{width:220.093245pt;}
._3a{width:223.591868pt;}
._3b{width:224.726784pt;}
._52{width:230.192327pt;}
._50{width:235.098932pt;}
._32{width:260.152473pt;}
._6a{width:265.874005pt;}
._64{width:269.884622pt;}
._67{width:270.780610pt;}
._3c{width:318.378950pt;}
._44{width:410.068450pt;}
._23{width:414.855615pt;}
._3f{width:420.227281pt;}
._2c{width:435.301218pt;}
._27{width:448.263205pt;}
._29{width:449.184785pt;}
._2b{width:468.589327pt;}
._57{width:494.816223pt;}
._45{width:507.564855pt;}
._46{width:509.356832pt;}
._47{width:519.554038pt;}
._40{width:523.564655pt;}
._42{width:524.460643pt;}
._3d{width:529.793910pt;}
._24{width:535.383173pt;}
._41{width:539.991116pt;}
._56{width:561.217517pt;}
._2d{width:566.422764pt;}
._2f{width:567.318753pt;}
._30{width:572.652019pt;}
._43{width:614.904303pt;}
._3e{width:625.186841pt;}
._34{width:853.395213pt;}
._33{width:872.936302pt;}
._2{width:1424.224478pt;}
._74{width:1521.597990pt;}
._35{width:1553.665879pt;}
.fsf{font-size:24.885867pt;}
.fs9{font-size:26.662399pt;}
.fse{font-size:28.440000pt;}
.fs15{font-size:33.600001pt;}
.fs10{font-size:34.839467pt;}
.fs6{font-size:35.551999pt;}
.fs14{font-size:36.266668pt;}
.fs11{font-size:36.585599pt;}
.fsa{font-size:37.332799pt;}
.fs12{font-size:38.933866pt;}
.fs3{font-size:39.107732pt;}
.fs8{font-size:39.999466pt;}
.fsb{font-size:42.666133pt;}
.fs13{font-size:47.421336pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.067200pt;}
.fs7{font-size:52.266134pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933334pt;}
.fs2{font-size:58.667201pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000529pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:60.017936pt;}
.y3d{bottom:70.676445pt;}
.y219{bottom:79.067734pt;}
.y95{bottom:81.259867pt;}
.y218{bottom:81.260268pt;}
.yfb{bottom:81.260681pt;}
.yc4{bottom:81.261664pt;}
.y25f{bottom:81.262030pt;}
.yee{bottom:81.262522pt;}
.yad{bottom:81.267710pt;}
.y12d{bottom:81.270905pt;}
.y1ec{bottom:81.277913pt;}
.y3c{bottom:81.334963pt;}
.y94{bottom:85.417338pt;}
.y13e{bottom:89.574870pt;}
.y3b{bottom:91.993471pt;}
.y93{bottom:92.598531pt;}
.y25e{bottom:93.280869pt;}
.y2a9{bottom:93.485959pt;}
.y216{bottom:95.092936pt;}
.y92{bottom:96.755870pt;}
.y217{bottom:97.285065pt;}
.y215{bottom:97.285366pt;}
.yfa{bottom:97.285472pt;}
.yc3{bottom:97.286461pt;}
.yed{bottom:97.287323pt;}
.yac{bottom:97.292507pt;}
.y12c{bottom:97.295705pt;}
.y1eb{bottom:97.302710pt;}
.y19d{bottom:98.797034pt;}
.y3a{bottom:102.651990pt;}
.y2a8{bottom:102.819201pt;}
.y13d{bottom:102.953898pt;}
.y91{bottom:103.936930pt;}
.y25d{bottom:105.299709pt;}
.y90{bottom:108.094533pt;}
.yc2{bottom:113.235471pt;}
.yab{bottom:113.241517pt;}
.y12b{bottom:113.244710pt;}
.y1ea{bottom:113.251720pt;}
.yf9{bottom:113.310262pt;}
.yec{bottom:113.312124pt;}
.y13c{bottom:116.258270pt;}
.y25c{bottom:117.242550pt;}
.y19c{bottom:117.467733pt;}
.y19a{bottom:117.467830pt;}
.y8f{bottom:121.476334pt;}
.y19b{bottom:122.230001pt;}
.y39{bottom:125.253577pt;}
.y32{bottom:126.318946pt;}
.yc1{bottom:129.260268pt;}
.yeb{bottom:129.261129pt;}
.y25b{bottom:129.261389pt;}
.yf7{bottom:129.265055pt;}
.yaa{bottom:129.266314pt;}
.y12a{bottom:129.269511pt;}
.y1e9{bottom:129.276517pt;}
.y214{bottom:129.493763pt;}
.y2a7{bottom:131.737728pt;}
.yf8{bottom:135.080271pt;}
.y199{bottom:136.138529pt;}
.y197{bottom:136.139205pt;}
.y38{bottom:137.272416pt;}
.y8e{bottom:140.147033pt;}
.y198{bottom:140.900798pt;}
.y25a{bottom:141.280229pt;}
.y37{bottom:141.732286pt;}
.y31{bottom:142.343746pt;}
.yc0{bottom:145.285065pt;}
.yea{bottom:145.285919pt;}
.yf6{bottom:145.289836pt;}
.ybe{bottom:145.290516pt;}
.ya9{bottom:145.291111pt;}
.y129{bottom:145.294312pt;}
.y1e8{bottom:145.301314pt;}
.y2a6{bottom:148.284267pt;}
.y36{bottom:149.291439pt;}
.ybf{bottom:151.105469pt;}
.y259{bottom:153.299068pt;}
.y196{bottom:154.809904pt;}
.y30{bottom:158.368547pt;}
.y8d{bottom:158.817732pt;}
.y1b8{bottom:161.234670pt;}
.ybd{bottom:161.239527pt;}
.ya8{bottom:161.240122pt;}
.y128{bottom:161.243317pt;}
.y1e7{bottom:161.250324pt;}
.y35{bottom:161.310279pt;}
.ye9{bottom:161.310720pt;}
.yf5{bottom:161.314636pt;}
.y213{bottom:161.317304pt;}
.y29f{bottom:161.537248pt;}
.y2a5{bottom:164.830532pt;}
.y258{bottom:165.242908pt;}
.y34{bottom:165.694414pt;}
.y29e{bottom:172.875769pt;}
.y33{bottom:173.253618pt;}
.y195{bottom:173.480603pt;}
.y2f{bottom:174.317562pt;}
.ye8{bottom:177.259725pt;}
.y257{bottom:177.261748pt;}
.ye6{bottom:177.261943pt;}
.yf4{bottom:177.263652pt;}
.ybc{bottom:177.264324pt;}
.ya7{bottom:177.264918pt;}
.y212{bottom:177.266314pt;}
.y127{bottom:177.268107pt;}
.y1e6{bottom:177.275121pt;}
.y8c{bottom:177.488431pt;}
.y2a4{bottom:181.377071pt;}
.ye7{bottom:183.080261pt;}
.y29d{bottom:184.214270pt;}
.y256{bottom:189.280587pt;}
.y2e{bottom:190.342342pt;}
.y194{bottom:192.151302pt;}
.ye5{bottom:193.286743pt;}
.yf3{bottom:193.288452pt;}
.ybb{bottom:193.289120pt;}
.ya6{bottom:193.289715pt;}
.y211{bottom:193.291111pt;}
.y126{bottom:193.292908pt;}
.y1e5{bottom:193.299918pt;}
.y1b7{bottom:193.306304pt;}
.y29c{bottom:195.552792pt;}
.y8b{bottom:196.159130pt;}
.y2a3{bottom:197.923600pt;}
.y255{bottom:201.299427pt;}
.y26{bottom:206.364539pt;}
.y2d{bottom:206.367143pt;}
.yba{bottom:209.238131pt;}
.ya5{bottom:209.238726pt;}
.y125{bottom:209.241923pt;}
.y1e4{bottom:209.248928pt;}
.ye4{bottom:209.311523pt;}
.yf2{bottom:209.313232pt;}
.y210{bottom:209.315908pt;}
.y1b6{bottom:209.331100pt;}
.y193{bottom:210.822001pt;}
.y191{bottom:210.822241pt;}
.y254{bottom:213.242268pt;}
.y2a2{bottom:214.470272pt;}
.y8a{bottom:214.829829pt;}
.y192{bottom:215.508667pt;}
.y29b{bottom:221.256405pt;}
.y25{bottom:222.313554pt;}
.y2c{bottom:222.316158pt;}
.ye3{bottom:225.260539pt;}
.y253{bottom:225.261107pt;}
.yf1{bottom:225.262248pt;}
.yb9{bottom:225.262928pt;}
.ya4{bottom:225.263522pt;}
.y20f{bottom:225.264918pt;}
.y124{bottom:225.266724pt;}
.y1e3{bottom:225.273725pt;}
.y1b5{bottom:225.280111pt;}
.y190{bottom:229.492940pt;}
.y18e{bottom:229.493118pt;}
.y29a{bottom:233.275244pt;}
.y89{bottom:233.500528pt;}
.y18f{bottom:234.179464pt;}
.y252{bottom:237.279947pt;}
.y24{bottom:238.338355pt;}
.y2b{bottom:238.340959pt;}
.ye2{bottom:241.285339pt;}
.yf0{bottom:241.287048pt;}
.yb8{bottom:241.287724pt;}
.ya3{bottom:241.288319pt;}
.y20e{bottom:241.289715pt;}
.y123{bottom:241.291504pt;}
.y1e2{bottom:241.298522pt;}
.y1b4{bottom:241.304908pt;}
.y2a1{bottom:242.372128pt;}
.y299{bottom:245.294084pt;}
.y18d{bottom:248.163817pt;}
.y251{bottom:249.298786pt;}
.y88{bottom:252.171227pt;}
.y23{bottom:254.363135pt;}
.y2a{bottom:254.365760pt;}
.y2a0{bottom:256.598527pt;}
.yb7{bottom:257.236735pt;}
.ya2{bottom:257.237330pt;}
.y298{bottom:257.237911pt;}
.y122{bottom:257.240519pt;}
.y1e1{bottom:257.247532pt;}
.ye1{bottom:257.310140pt;}
.yef{bottom:257.311849pt;}
.y20d{bottom:257.314512pt;}
.y1b3{bottom:257.329704pt;}
.y250{bottom:261.241628pt;}
.y18c{bottom:265.700663pt;}
.y18a{bottom:265.701237pt;}
.y297{bottom:269.256751pt;}
.y22{bottom:270.312150pt;}
.y29{bottom:270.314755pt;}
.y18b{bottom:270.387329pt;}
.y87{bottom:270.766193pt;}
.y24f{bottom:273.260467pt;}
.yb6{bottom:273.261532pt;}
.ya1{bottom:273.262126pt;}
.y20c{bottom:273.263522pt;}
.y121{bottom:273.265320pt;}
.y1e0{bottom:273.272329pt;}
.y1b2{bottom:273.278715pt;}
.y296{bottom:281.275590pt;}
.y189{bottom:283.238084pt;}
.y24e{bottom:285.279307pt;}
.y21{bottom:286.336951pt;}
.y28{bottom:286.339555pt;}
.yb5{bottom:289.286328pt;}
.ya0{bottom:289.286923pt;}
.y20b{bottom:289.288319pt;}
.y120{bottom:289.290120pt;}
.y1df{bottom:289.297126pt;}
.y1b1{bottom:289.303512pt;}
.y86{bottom:289.436892pt;}
.y295{bottom:293.294430pt;}
.y24d{bottom:297.298146pt;}
.y188{bottom:300.699198pt;}
.y20{bottom:302.362158pt;}
.y27{bottom:302.364356pt;}
.yfe{bottom:304.932699pt;}
.yb4{bottom:305.235339pt;}
.y9f{bottom:305.235934pt;}
.y294{bottom:305.237281pt;}
.y20a{bottom:305.237330pt;}
.y11f{bottom:305.239115pt;}
.y1de{bottom:305.246136pt;}
.y1b0{bottom:305.252522pt;}
.y85{bottom:308.107591pt;}
.y24c{bottom:309.240987pt;}
.y293{bottom:317.256120pt;}
.y187{bottom:318.236267pt;}
.yfc{bottom:318.311727pt;}
.y24b{bottom:321.259827pt;}
.yb3{bottom:321.260136pt;}
.y9e{bottom:321.260730pt;}
.y209{bottom:321.262126pt;}
.y11e{bottom:321.263916pt;}
.y1dd{bottom:321.270933pt;}
.y1af{bottom:321.277319pt;}
.yfd{bottom:322.998393pt;}
.y84{bottom:326.778290pt;}
.y292{bottom:329.274960pt;}
.y24a{bottom:333.278666pt;}
.yb2{bottom:337.284932pt;}
.y9d{bottom:337.285527pt;}
.y208{bottom:337.286923pt;}
.y11d{bottom:337.288717pt;}
.y1dc{bottom:337.295730pt;}
.y1ae{bottom:337.302116pt;}
.y291{bottom:341.293799pt;}
.y1f{bottom:342.953304pt;}
.y249{bottom:345.299970pt;}
.y83{bottom:345.448989pt;}
.y9c{bottom:353.234538pt;}
.y207{bottom:353.235934pt;}
.y290{bottom:353.236650pt;}
.y11c{bottom:353.237752pt;}
.y14f{bottom:353.241517pt;}
.y1db{bottom:353.244741pt;}
.y15f{bottom:353.248053pt;}
.y1ad{bottom:353.251126pt;}
.y82{bottom:364.119688pt;}
.y28f{bottom:365.255489pt;}
.y1e{bottom:365.630876pt;}
.y9b{bottom:369.259847pt;}
.y206{bottom:369.260730pt;}
.y11b{bottom:369.262533pt;}
.y248{bottom:369.262650pt;}
.y14e{bottom:369.266314pt;}
.y1da{bottom:369.269537pt;}
.y15e{bottom:369.272850pt;}
.y1ac{bottom:369.275923pt;}
.y28e{bottom:377.274329pt;}
.y247{bottom:381.281490pt;}
.y1d{bottom:381.580339pt;}
.y80{bottom:381.656535pt;}
.y205{bottom:385.285527pt;}
.y11a{bottom:385.287313pt;}
.y14d{bottom:385.291111pt;}
.yb1{bottom:385.293286pt;}
.y1d9{bottom:385.294334pt;}
.y15d{bottom:385.297647pt;}
.y1ab{bottom:385.300720pt;}
.y81{bottom:386.418783pt;}
.y28d{bottom:389.293168pt;}
.y7f{bottom:399.193604pt;}
.y204{bottom:401.234538pt;}
.y9a{bottom:401.235359pt;}
.y28c{bottom:401.235999pt;}
.y119{bottom:401.236328pt;}
.y14c{bottom:401.240122pt;}
.yb0{bottom:401.242297pt;}
.y1d8{bottom:401.243345pt;}
.y15c{bottom:401.246657pt;}
.y1aa{bottom:401.249730pt;}
.y1a{bottom:401.609229pt;}
.y1c{bottom:401.612565pt;}
.y246{bottom:405.243169pt;}
.y1b{bottom:407.508562pt;}
.y28b{bottom:413.254838pt;}
.y203{bottom:417.259725pt;}
.y99{bottom:417.260156pt;}
.y118{bottom:417.261149pt;}
.y245{bottom:417.262009pt;}
.y14b{bottom:417.264918pt;}
.yaf{bottom:417.267094pt;}
.y1d7{bottom:417.268141pt;}
.y15b{bottom:417.271454pt;}
.y1a9{bottom:417.274527pt;}
.y19{bottom:417.634742pt;}
.y28a{bottom:425.273678pt;}
.y244{bottom:429.280849pt;}
.y98{bottom:433.284953pt;}
.y117{bottom:433.285929pt;}
.y5f{bottom:433.288319pt;}
.y14a{bottom:433.289715pt;}
.y7e{bottom:433.290105pt;}
.yae{bottom:433.291890pt;}
.y1d6{bottom:433.292938pt;}
.y15a{bottom:433.296251pt;}
.y1a8{bottom:433.299324pt;}
.y18{bottom:433.584204pt;}
.y289{bottom:437.292517pt;}
.y243{bottom:441.299688pt;}
.y116{bottom:449.234945pt;}
.y288{bottom:449.235348pt;}
.y10c{bottom:449.236735pt;}
.y5e{bottom:449.237330pt;}
.y149{bottom:449.238726pt;}
.y7d{bottom:449.239116pt;}
.y1d5{bottom:449.241949pt;}
.y202{bottom:449.244147pt;}
.y159{bottom:449.245261pt;}
.y1a7{bottom:449.248334pt;}
.y17{bottom:449.609717pt;}
.y242{bottom:453.242529pt;}
.y287{bottom:461.254187pt;}
.y115{bottom:465.259725pt;}
.y241{bottom:465.261369pt;}
.y10b{bottom:465.261515pt;}
.y5d{bottom:465.262126pt;}
.y148{bottom:465.263522pt;}
.y7c{bottom:465.263913pt;}
.y1d4{bottom:465.266745pt;}
.y201{bottom:465.268943pt;}
.y158{bottom:465.270058pt;}
.y1a6{bottom:465.273131pt;}
.y16{bottom:465.635189pt;}
.ye0{bottom:466.317993pt;}
.ydf{bottom:470.475464pt;}
.y286{bottom:473.273027pt;}
.y114{bottom:481.284953pt;}
.y10a{bottom:481.286336pt;}
.y5c{bottom:481.286923pt;}
.y147{bottom:481.288319pt;}
.y7b{bottom:481.288709pt;}
.y1d3{bottom:481.291542pt;}
.y200{bottom:481.293740pt;}
.y157{bottom:481.294855pt;}
.y1a5{bottom:481.297928pt;}
.y15{bottom:481.584693pt;}
.yde{bottom:483.858766pt;}
.y285{bottom:485.291866pt;}
.y240{bottom:489.299048pt;}
.y284{bottom:497.234697pt;}
.y109{bottom:497.235352pt;}
.y5b{bottom:497.235934pt;}
.y146{bottom:497.237330pt;}
.y7a{bottom:497.237720pt;}
.y1d2{bottom:497.240553pt;}
.y1ff{bottom:497.242751pt;}
.y156{bottom:497.243866pt;}
.y1a4{bottom:497.246939pt;}
.y14{bottom:497.610205pt;}
.y23f{bottom:501.241889pt;}
.ydd{bottom:502.529465pt;}
.y283{bottom:509.253536pt;}
.y108{bottom:513.260132pt;}
.y23e{bottom:513.260728pt;}
.y5a{bottom:513.260730pt;}
.y145{bottom:513.262126pt;}
.y79{bottom:513.262517pt;}
.y113{bottom:513.264038pt;}
.y1d1{bottom:513.265349pt;}
.y1fe{bottom:513.267547pt;}
.y155{bottom:513.268662pt;}
.y1a3{bottom:513.271735pt;}
.y13{bottom:513.635677pt;}
.ydc{bottom:521.200164pt;}
.y282{bottom:521.276852pt;}
.y23d{bottom:525.279568pt;}
.y107{bottom:529.284953pt;}
.y59{bottom:529.285527pt;}
.y105{bottom:529.286906pt;}
.y144{bottom:529.286923pt;}
.y78{bottom:529.287314pt;}
.y112{bottom:529.288859pt;}
.y1d0{bottom:529.290146pt;}
.y1fd{bottom:529.292344pt;}
.y154{bottom:529.293459pt;}
.y1a2{bottom:529.296532pt;}
.y12{bottom:529.585181pt;}
.y281{bottom:533.295691pt;}
.y106{bottom:535.105347pt;}
.y23c{bottom:537.298407pt;}
.ydb{bottom:539.870863pt;}
.y58{bottom:545.234538pt;}
.y104{bottom:545.235921pt;}
.y143{bottom:545.235934pt;}
.y77{bottom:545.236324pt;}
.y111{bottom:545.237874pt;}
.y280{bottom:545.238522pt;}
.y1cf{bottom:545.239157pt;}
.y1fc{bottom:545.241355pt;}
.y153{bottom:545.242470pt;}
.y1a1{bottom:545.245543pt;}
.y11{bottom:545.610653pt;}
.y27f{bottom:557.257361pt;}
.yda{bottom:558.541562pt;}
.y57{bottom:561.259725pt;}
.y103{bottom:561.260701pt;}
.y142{bottom:561.260730pt;}
.y23b{bottom:561.261088pt;}
.y76{bottom:561.261121pt;}
.y110{bottom:561.262655pt;}
.y1ce{bottom:561.263953pt;}
.y1fb{bottom:561.266151pt;}
.y152{bottom:561.267266pt;}
.y1a0{bottom:561.270339pt;}
.y10{bottom:561.636166pt;}
.y27e{bottom:569.276201pt;}
.y23a{bottom:573.279928pt;}
.yd9{bottom:577.212261pt;}
.y56{bottom:577.284953pt;}
.y102{bottom:577.285522pt;}
.y141{bottom:577.285527pt;}
.y75{bottom:577.285918pt;}
.y10f{bottom:577.287435pt;}
.y1cd{bottom:577.288750pt;}
.y1fa{bottom:577.290948pt;}
.y151{bottom:577.292063pt;}
.y19f{bottom:577.295136pt;}
.yf{bottom:577.585669pt;}
.y27d{bottom:581.295040pt;}
.y239{bottom:585.298767pt;}
.y101{bottom:593.234538pt;}
.y74{bottom:593.234928pt;}
.y10e{bottom:593.236450pt;}
.y1cc{bottom:593.237761pt;}
.y27c{bottom:593.237871pt;}
.y1f9{bottom:593.239959pt;}
.y150{bottom:593.241074pt;}
.y19e{bottom:593.244147pt;}
.ye{bottom:593.611141pt;}
.yd8{bottom:595.882960pt;}
.y238{bottom:597.241608pt;}
.y27b{bottom:605.256710pt;}
.y73{bottom:609.259725pt;}
.y10d{bottom:609.261271pt;}
.y1cb{bottom:609.262558pt;}
.y1f8{bottom:609.264755pt;}
.y55{bottom:609.268943pt;}
.yd{bottom:613.567359pt;}
.yd7{bottom:614.553659pt;}
.y27a{bottom:617.275550pt;}
.y237{bottom:621.279287pt;}
.y72{bottom:625.284953pt;}
.y1ca{bottom:625.287354pt;}
.y1f7{bottom:625.289552pt;}
.y54{bottom:625.293740pt;}
.y279{bottom:629.294389pt;}
.yc{bottom:629.592831pt;}
.yd6{bottom:633.224358pt;}
.y236{bottom:633.298127pt;}
.y186{bottom:635.489583pt;}
.y184{bottom:635.489823pt;}
.y185{bottom:640.176270pt;}
.y1c9{bottom:641.236365pt;}
.y278{bottom:641.237219pt;}
.y1f6{bottom:641.238563pt;}
.y53{bottom:641.242751pt;}
.yb{bottom:645.618343pt;}
.yd5{bottom:651.895057pt;}
.y13b{bottom:651.895101pt;}
.y277{bottom:653.256059pt;}
.y183{bottom:654.160522pt;}
.y181{bottom:654.160641pt;}
.y235{bottom:657.259806pt;}
.y1c8{bottom:657.261162pt;}
.y1f5{bottom:657.263360pt;}
.y52{bottom:657.267547pt;}
.y71{bottom:657.269616pt;}
.y182{bottom:658.847087pt;}
.ya{bottom:661.567847pt;}
.y276{bottom:665.274899pt;}
.y234{bottom:669.278646pt;}
.yd4{bottom:670.565756pt;}
.y13a{bottom:670.565796pt;}
.y180{bottom:672.831340pt;}
.y17e{bottom:672.831417pt;}
.y1c7{bottom:673.285958pt;}
.y1f4{bottom:673.288156pt;}
.y51{bottom:673.292344pt;}
.y70{bottom:673.294413pt;}
.y275{bottom:677.293738pt;}
.y17f{bottom:677.517985pt;}
.y9{bottom:677.593319pt;}
.y233{bottom:681.297485pt;}
.y1c6{bottom:689.234969pt;}
.yd3{bottom:689.236455pt;}
.y139{bottom:689.236491pt;}
.y1f3{bottom:689.237167pt;}
.y274{bottom:689.237626pt;}
.y50{bottom:689.241355pt;}
.y6f{bottom:689.243423pt;}
.y17d{bottom:691.502116pt;}
.y17b{bottom:691.502726pt;}
.y8{bottom:693.618832pt;}
.y17c{bottom:696.188802pt;}
.y273{bottom:701.256425pt;}
.y1c5{bottom:705.259766pt;}
.y232{bottom:705.261430pt;}
.y1f2{bottom:705.261964pt;}
.y4f{bottom:705.266151pt;}
.y6e{bottom:705.268220pt;}
.yd2{bottom:707.831422pt;}
.y138{bottom:707.831462pt;}
.y17a{bottom:710.097693pt;}
.y272{bottom:713.275305pt;}
.y7{bottom:717.580990pt;}
.y1c4{bottom:721.284912pt;}
.y231{bottom:721.286227pt;}
.y1f1{bottom:721.286760pt;}
.y4e{bottom:721.290948pt;}
.y6d{bottom:721.293017pt;}
.y271{bottom:725.294104pt;}
.yd1{bottom:726.502121pt;}
.y137{bottom:726.502197pt;}
.y179{bottom:728.768392pt;}
.y177{bottom:728.768510pt;}
.y178{bottom:733.530518pt;}
.y230{bottom:737.235237pt;}
.y1f0{bottom:737.235771pt;}
.y270{bottom:737.236975pt;}
.y4d{bottom:737.239959pt;}
.y6c{bottom:737.242027pt;}
.yd0{bottom:745.172820pt;}
.y136{bottom:745.172852pt;}
.y176{bottom:747.439209pt;}
.y174{bottom:747.439327pt;}
.y26f{bottom:749.255774pt;}
.y175{bottom:752.201497pt;}
.y22f{bottom:753.260034pt;}
.y1ef{bottom:753.260568pt;}
.y1c3{bottom:753.261162pt;}
.y4c{bottom:753.264755pt;}
.y6b{bottom:753.266824pt;}
.y26e{bottom:761.274654pt;}
.ycf{bottom:763.843519pt;}
.y135{bottom:763.843587pt;}
.y173{bottom:766.110026pt;}
.y171{bottom:766.110225pt;}
.y22d{bottom:767.092773pt;}
.y5{bottom:768.906918pt;}
.y22e{bottom:769.284831pt;}
.y1ee{bottom:769.285364pt;}
.y1c2{bottom:769.285958pt;}
.y4b{bottom:769.289552pt;}
.y6a{bottom:769.291621pt;}
.y172{bottom:770.872233pt;}
.y26d{bottom:773.293453pt;}
.y6{bottom:775.483252pt;}
.yce{bottom:782.514218pt;}
.y134{bottom:782.514242pt;}
.y22c{bottom:783.117839pt;}
.y170{bottom:784.780924pt;}
.y16e{bottom:784.781205pt;}
.y1ed{bottom:785.234375pt;}
.y1c1{bottom:785.234969pt;}
.y22a{bottom:785.235237pt;}
.y26c{bottom:785.236324pt;}
.y4a{bottom:785.238563pt;}
.y69{bottom:785.240631pt;}
.y16f{bottom:789.543050pt;}
.y22b{bottom:791.054932pt;}
.y26b{bottom:797.255123pt;}
.y4{bottom:800.958269pt;}
.ycd{bottom:801.184917pt;}
.y133{bottom:801.184977pt;}
.y1c0{bottom:801.259766pt;}
.y229{bottom:801.260034pt;}
.y49{bottom:801.263360pt;}
.y68{bottom:801.265428pt;}
.y16d{bottom:803.451904pt;}
.y16b{bottom:803.451941pt;}
.y16c{bottom:808.214030pt;}
.y26a{bottom:809.274003pt;}
.y228{bottom:815.092773pt;}
.y1bf{bottom:817.284831pt;}
.y227{bottom:817.285364pt;}
.y48{bottom:817.288156pt;}
.y67{bottom:817.290225pt;}
.ycc{bottom:819.855616pt;}
.y132{bottom:819.855713pt;}
.y269{bottom:821.292802pt;}
.y16a{bottom:822.122640pt;}
.y168{bottom:822.122921pt;}
.y169{bottom:826.884766pt;}
.y226{bottom:833.234375pt;}
.y224{bottom:833.234969pt;}
.y268{bottom:833.235673pt;}
.y47{bottom:833.237167pt;}
.y66{bottom:833.239236pt;}
.y3{bottom:835.579200pt;}
.ycb{bottom:838.526315pt;}
.y131{bottom:838.526367pt;}
.y225{bottom:839.054932pt;}
.y167{bottom:840.793620pt;}
.y165{bottom:840.793738pt;}
.y267{bottom:845.254553pt;}
.y166{bottom:845.555583pt;}
.y223{bottom:849.259766pt;}
.y1be{bottom:849.260237pt;}
.y221{bottom:849.260568pt;}
.y46{bottom:849.261964pt;}
.y65{bottom:849.264032pt;}
.y222{bottom:855.080159pt;}
.yca{bottom:857.197014pt;}
.y130{bottom:857.197103pt;}
.y266{bottom:857.273352pt;}
.y164{bottom:859.464437pt;}
.y162{bottom:859.464818pt;}
.y163{bottom:864.226562pt;}
.y1bd{bottom:865.285033pt;}
.y220{bottom:865.285364pt;}
.y45{bottom:865.286760pt;}
.y64{bottom:865.288829pt;}
.y265{bottom:869.292232pt;}
.y2{bottom:870.273780pt;}
.yc9{bottom:875.867712pt;}
.y12f{bottom:875.867757pt;}
.y161{bottom:877.001665pt;}
.y21e{bottom:879.117839pt;}
.y21d{bottom:881.232247pt;}
.y1bc{bottom:881.234044pt;}
.y21f{bottom:881.234375pt;}
.y264{bottom:881.235022pt;}
.y44{bottom:881.235771pt;}
.y63{bottom:881.237840pt;}
.y263{bottom:893.253902pt;}
.yc8{bottom:894.538411pt;}
.y12e{bottom:894.538493pt;}
.y160{bottom:894.538511pt;}
.y21c{bottom:897.257044pt;}
.y1bb{bottom:897.258841pt;}
.y43{bottom:897.260568pt;}
.y62{bottom:897.262636pt;}
.y262{bottom:905.272701pt;}
.yc6{bottom:912.075358pt;}
.y21b{bottom:913.281841pt;}
.y1ba{bottom:913.283637pt;}
.y42{bottom:913.285364pt;}
.y61{bottom:913.287433pt;}
.yc7{bottom:916.837565pt;}
.y261{bottom:917.291581pt;}
.y1{bottom:920.919450pt;}
.y21a{bottom:929.230851pt;}
.y1b9{bottom:929.232648pt;}
.y260{bottom:929.234371pt;}
.y41{bottom:929.234375pt;}
.y60{bottom:929.236444pt;}
.yc5{bottom:929.612386pt;}
.y140{bottom:991.063314pt;}
.y100{bottom:991.064941pt;}
.y40{bottom:991.067049pt;}
.y2ab{bottom:991.067055pt;}
.y97{bottom:991.067134pt;}
.y13f{bottom:1004.367676pt;}
.yff{bottom:1004.369303pt;}
.y3f{bottom:1004.371493pt;}
.y2aa{bottom:1004.371498pt;}
.y96{bottom:1004.371501pt;}
.h12{height:17.942710pt;}
.h10{height:20.505240pt;}
.hb{height:21.489894pt;}
.h15{height:22.922640pt;}
.h17{height:24.701182pt;}
.h1d{height:25.200001pt;}
.h14{height:25.223774pt;}
.h13{height:26.916948pt;}
.h1c{height:27.635201pt;}
.h19{height:28.071317pt;}
.h8{height:28.654911pt;}
.h18{height:28.839615pt;}
.hc{height:30.090236pt;}
.hd{height:30.762282pt;}
.h1a{height:31.380696pt;}
.h5{height:31.520832pt;}
.ha{height:32.239570pt;}
.h11{height:34.388903pt;}
.hf{height:34.608000pt;}
.he{height:35.377451pt;}
.h1b{height:36.135058pt;}
.h16{height:37.056689pt;}
.h9{height:37.840681pt;}
.h6{height:39.606934pt;}
.h7{height:42.987097pt;}
.h4{height:47.285764pt;}
.h2{height:49.989333pt;}
.h3{height:92.288381pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590548pt;}
.xd{left:79.143344pt;}
.x1{left:80.957481pt;}
.x47{left:81.864532pt;}
.x54{left:82.922801pt;}
.x6{left:84.283480pt;}
.xf{left:86.247607pt;}
.x1e{left:88.667735pt;}
.x46{left:95.621523pt;}
.x1f{left:99.325999pt;}
.x19{left:118.148000pt;}
.x34{left:123.439331pt;}
.x15{left:124.952800pt;}
.x1a{left:129.033071pt;}
.x3{left:147.401482pt;}
.x20{left:156.018931pt;}
.x4{left:167.357475pt;}
.x35{left:177.864543pt;}
.x23{left:186.179464pt;}
.x36{left:199.029867pt;}
.x24{left:210.066142pt;}
.x10{left:211.124410pt;}
.x33{left:212.333571pt;}
.x43{left:213.694397pt;}
.x22{left:221.405429pt;}
.x37{left:236.825195pt;}
.xe{left:240.604699pt;}
.x25{left:247.861328pt;}
.x5{left:261.921216pt;}
.x26{left:267.968404pt;}
.x38{left:272.655070pt;}
.x32{left:274.393595pt;}
.x21{left:281.801473pt;}
.x44{left:295.785726pt;}
.x27{left:305.763733pt;}
.x1c{left:322.847209pt;}
.x28{left:325.870809pt;}
.x1d{left:330.330668pt;}
.x45{left:331.691325pt;}
.x39{left:354.821981pt;}
.x29{left:363.590413pt;}
.x3a{left:375.987345pt;}
.x7{left:383.697604pt;}
.x8{left:398.437757pt;}
.xb{left:406.297986pt;}
.xc{left:416.956352pt;}
.x53{left:426.330490pt;}
.x56{left:429.528117pt;}
.x55{left:430.473470pt;}
.x41{left:443.489583pt;}
.x2a{left:450.065999pt;}
.x9{left:461.026665pt;}
.xa{left:471.760551pt;}
.x42{left:479.319580pt;}
.x2b{left:484.837728pt;}
.x4d{left:486.727458pt;}
.x4e{left:494.815715pt;}
.x3b{left:502.450277pt;}
.x2e{left:507.968384pt;}
.x11{left:514.317993pt;}
.x4f{left:515.980916pt;}
.x3c{left:523.691203pt;}
.x2f{left:542.739990pt;}
.x12{left:545.763753pt;}
.x16{left:549.014119pt;}
.x17{left:564.963582pt;}
.x2c{left:565.870687pt;}
.x52{left:573.656535pt;}
.x13{left:575.773071pt;}
.x2d{left:585.977743pt;}
.x48{left:590.059733pt;}
.x3d{left:591.118001pt;}
.x49{left:596.938395pt;}
.x4c{left:603.968384pt;}
.x14{left:606.084920pt;}
.x4a{left:610.166789pt;}
.x3e{left:612.358927pt;}
.x4b{left:619.691203pt;}
.x3f{left:650.154134pt;}
.x30{left:652.346273pt;}
.x40{left:671.319458pt;}
.x31{left:672.453328pt;}
.x50{left:696.944824pt;}
.x1b{left:707.376302pt;}
.x51{left:709.643962pt;}
.x18{left:714.103760pt;}
}




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