
    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_c9891887e39444c34af820fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_210d6993e24e05832b910082.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_62fc716c136a4ff17a3c23be.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f57a915e85e464703f819176.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_ef0a1e3bbfca886d60024a83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.701000;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_521c2d5f3068fecdc758945a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026000;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_9b4ec8ad4c8534738d05f0fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_b7e4206ce55260aaff4547dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729000;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_a97866002d894fcf11d127fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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_2f962244052538ad3031c21b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3b0a1d26300fe542c278b28c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.487000;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_50bcd80573f0ab0776e13d08.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929000;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_39657b348c22ebb51d0c20f6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_291db70ef119fefabb7b6c28.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_24376ac576dc620e6103e8ca.woff2')format("woff");}.fff{font-family:fff;line-height:0.884000;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_875ea72ca03a3bea2fdba411.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.032000;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_32f6d07b44681221781fd482.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.225000;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_6ee00e6c9227722d1616bf76.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.721000;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_f8755c690e50760e65961e33.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;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_dec6f747d75a4d1dad58398f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.391000;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_b8016cf7f57f3b28fe102b2d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.216000;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_a92324d47d90f4729d2fc133.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_38760ef3a29795f6f41fb49b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.588000;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_851b9af08a88a0ce1843c94f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.968000;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_90e82680b41a122fafecf8bf.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.026000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_6fce49e301383be276ca04b3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.641000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_41e02c52afe38316889c6d79.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.799805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c49598f01026f6c37fff42ad.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_332c5892d139571694659177.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.585000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_03f3206e90256d460cc93e41.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_4861d90cfd55b6afe0c86dd7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_dbcaf90db6474f270ba945e2.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_93cd06ae5a902caff3d6b91b.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.810000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-46.261229px;}
.v5{vertical-align:-37.076580px;}
.v9{vertical-align:-15.231264px;}
.v7{vertical-align:-12.248212px;}
.v6{vertical-align:-10.543200px;}
.v8{vertical-align:-7.560090px;}
.v2{vertical-align:-3.061800px;}
.v3{vertical-align:-2.040600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.123000px;}
.vd{vertical-align:9.902034px;}
.v11{vertical-align:14.873400px;}
.ve{vertical-align:21.096000px;}
.vf{vertical-align:23.130600px;}
.v4{vertical-align:24.151200px;}
.v10{vertical-align:27.063906px;}
.vc{vertical-align:42.120342px;}
.va{vertical-align:46.261229px;}
.ls75{letter-spacing:-0.150984px;}
.ls73{letter-spacing:-0.089909px;}
.ls77{letter-spacing:-0.071298px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.004000px;}
.lsc{letter-spacing:0.007999px;}
.ls63{letter-spacing:0.010151px;}
.ls16{letter-spacing:0.012000px;}
.ls4a{letter-spacing:0.012560px;}
.ls64{letter-spacing:0.013009px;}
.ls55{letter-spacing:0.013261px;}
.ls61{letter-spacing:0.015427px;}
.ls8e{letter-spacing:0.016080px;}
.ls79{letter-spacing:0.017694px;}
.ls45{letter-spacing:0.018000px;}
.ls29{letter-spacing:0.023012px;}
.ls94{letter-spacing:0.027053px;}
.ls8c{letter-spacing:0.028435px;}
.ls57{letter-spacing:0.029326px;}
.ls2b{letter-spacing:0.029407px;}
.ls95{letter-spacing:0.030693px;}
.ls78{letter-spacing:0.042269px;}
.ls40{letter-spacing:0.048000px;}
.ls97{letter-spacing:0.050740px;}
.ls1e{letter-spacing:0.054000px;}
.ls8d{letter-spacing:0.057033px;}
.ls92{letter-spacing:0.058668px;}
.ls6{letter-spacing:0.060001px;}
.ls3{letter-spacing:0.062400px;}
.ls31{letter-spacing:0.064800px;}
.ls7{letter-spacing:0.072001px;}
.ls4e{letter-spacing:0.075251px;}
.ls85{letter-spacing:0.077072px;}
.ls88{letter-spacing:0.080084px;}
.ls20{letter-spacing:0.086400px;}
.ls6e{letter-spacing:0.094200px;}
.ls5a{letter-spacing:0.102001px;}
.ls1c{letter-spacing:0.112200px;}
.lse{letter-spacing:0.115988px;}
.ls43{letter-spacing:0.134061px;}
.ls3f{letter-spacing:0.138001px;}
.ls1f{letter-spacing:0.140455px;}
.lsa3{letter-spacing:0.145800px;}
.ls4{letter-spacing:0.148498px;}
.ls9{letter-spacing:0.156002px;}
.ls32{letter-spacing:0.167400px;}
.ls1a{letter-spacing:0.192002px;}
.ls96{letter-spacing:0.210002px;}
.ls6d{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.216002px;}
.ls62{letter-spacing:0.240256px;}
.ls68{letter-spacing:0.243717px;}
.ls8b{letter-spacing:0.253800px;}
.ls56{letter-spacing:0.269400px;}
.ls9d{letter-spacing:0.270003px;}
.ls2f{letter-spacing:0.270600px;}
.ls59{letter-spacing:0.307969px;}
.ls58{letter-spacing:0.311969px;}
.lsac{letter-spacing:0.480600px;}
.lsb2{letter-spacing:0.496800px;}
.lsa9{letter-spacing:0.561600px;}
.ls26{letter-spacing:0.609600px;}
.lsad{letter-spacing:0.621000px;}
.ls80{letter-spacing:0.648006px;}
.lsa7{letter-spacing:0.658800px;}
.ls82{letter-spacing:0.684007px;}
.ls25{letter-spacing:0.705623px;}
.ls27{letter-spacing:0.732007px;}
.ls81{letter-spacing:0.738007px;}
.ls24{letter-spacing:0.750008px;}
.ls71{letter-spacing:0.750600px;}
.ls83{letter-spacing:0.762008px;}
.lsb{letter-spacing:0.774008px;}
.ls3a{letter-spacing:0.780008px;}
.ls17{letter-spacing:0.846008px;}
.ls18{letter-spacing:0.870009px;}
.lsa1{letter-spacing:0.972010px;}
.ls48{letter-spacing:0.990010px;}
.lsa0{letter-spacing:0.996010px;}
.lsaf{letter-spacing:1.161000px;}
.ls7e{letter-spacing:1.236600px;}
.ls10{letter-spacing:1.248012px;}
.lsb0{letter-spacing:1.252800px;}
.ls7d{letter-spacing:1.274400px;}
.lsb3{letter-spacing:1.312200px;}
.lsf{letter-spacing:1.434014px;}
.ls4c{letter-spacing:1.496988px;}
.ls3b{letter-spacing:1.626016px;}
.ls49{letter-spacing:1.644016px;}
.ls9e{letter-spacing:1.710017px;}
.ls7f{letter-spacing:1.800018px;}
.ls8a{letter-spacing:1.824018px;}
.ls7b{letter-spacing:1.836018px;}
.ls52{letter-spacing:1.872019px;}
.ls22{letter-spacing:1.890019px;}
.ls54{letter-spacing:1.902019px;}
.ls11{letter-spacing:1.914019px;}
.ls23{letter-spacing:2.028020px;}
.ls7c{letter-spacing:2.100021px;}
.ls53{letter-spacing:2.118021px;}
.ls72{letter-spacing:12.960000px;}
.lsab{letter-spacing:13.138200px;}
.ls2d{letter-spacing:13.921200px;}
.ls46{letter-spacing:14.200200px;}
.ls14{letter-spacing:14.322143px;}
.ls15{letter-spacing:14.540400px;}
.ls2e{letter-spacing:14.920200px;}
.ls69{letter-spacing:15.220800px;}
.ls2a{letter-spacing:15.235800px;}
.ls86{letter-spacing:15.378600px;}
.ls6a{letter-spacing:15.560400px;}
.ls6c{letter-spacing:15.561000px;}
.ls30{letter-spacing:15.657691px;}
.ls87{letter-spacing:15.708157px;}
.ls98{letter-spacing:15.876159px;}
.ls6b{letter-spacing:15.901200px;}
.ls4f{letter-spacing:16.018200px;}
.ls39{letter-spacing:16.698167px;}
.ls67{letter-spacing:16.842168px;}
.ls70{letter-spacing:16.983000px;}
.ls7a{letter-spacing:17.277000px;}
.ls19{letter-spacing:17.760178px;}
.lsa4{letter-spacing:17.895600px;}
.lsa8{letter-spacing:18.235800px;}
.ls9f{letter-spacing:18.426184px;}
.ls1d{letter-spacing:19.175206px;}
.lsb1{letter-spacing:19.256400px;}
.ls65{letter-spacing:19.302600px;}
.ls1b{letter-spacing:19.386000px;}
.ls37{letter-spacing:19.398194px;}
.ls33{letter-spacing:19.530055px;}
.ls66{letter-spacing:19.614196px;}
.ls9c{letter-spacing:19.788198px;}
.ls2c{letter-spacing:19.998600px;}
.ls41{letter-spacing:20.082201px;}
.ls44{letter-spacing:20.106201px;}
.ls84{letter-spacing:20.130201px;}
.ls13{letter-spacing:20.323200px;}
.ls12{letter-spacing:20.448204px;}
.ls51{letter-spacing:20.796208px;}
.ls42{letter-spacing:20.826208px;}
.ls89{letter-spacing:22.861800px;}
.ls6f{letter-spacing:22.917406px;}
.lsa2{letter-spacing:22.998600px;}
.ls36{letter-spacing:23.202232px;}
.ls34{letter-spacing:23.850238px;}
.ls3c{letter-spacing:24.064800px;}
.ls3d{letter-spacing:24.378244px;}
.ls3e{letter-spacing:24.405000px;}
.ls4b{letter-spacing:25.758258px;}
.lsa6{letter-spacing:26.060400px;}
.ls1{letter-spacing:26.652600px;}
.lsaa{letter-spacing:26.740800px;}
.ls2{letter-spacing:26.988000px;}
.ls91{letter-spacing:27.246272px;}
.ls90{letter-spacing:27.270273px;}
.ls93{letter-spacing:27.282273px;}
.ls8f{letter-spacing:27.466320px;}
.ls38{letter-spacing:27.564276px;}
.ls47{letter-spacing:27.726277px;}
.lsae{letter-spacing:28.782000px;}
.ls35{letter-spacing:30.312303px;}
.ls99{letter-spacing:31.517910px;}
.lsa5{letter-spacing:36.266400px;}
.ls28{letter-spacing:37.230372px;}
.lsa{letter-spacing:37.737600px;}
.ls9a{letter-spacing:38.077800px;}
.ls50{letter-spacing:39.468395px;}
.ls21{letter-spacing:42.492425px;}
.ls9b{letter-spacing:42.691778px;}
.ls5{letter-spacing:44.884456px;}
.ls5d{letter-spacing:81.265839px;}
.ls74{letter-spacing:152.971343px;}
.ls5b{letter-spacing:323.660772px;}
.ls76{letter-spacing:330.134904px;}
.ls5f{letter-spacing:336.434292px;}
.ls4d{letter-spacing:373.714830px;}
.ls5e{letter-spacing:557.364493px;}
.ls5c{letter-spacing:670.158456px;}
.ls60{letter-spacing:679.335732px;}
.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;}
}
.ws229{word-spacing:-670.218395px;}
.ws228{word-spacing:-323.720712px;}
.ws75{word-spacing:-42.552426px;}
.ws15f{word-spacing:-27.786278px;}
.ws2f2{word-spacing:-27.342273px;}
.ws1f8{word-spacing:-20.856209px;}
.ws2c6{word-spacing:-20.190202px;}
.ws0{word-spacing:-18.984000px;}
.ws393{word-spacing:-17.949600px;}
.ws258{word-spacing:-13.014000px;}
.ws14{word-spacing:-0.060001px;}
.wse3{word-spacing:-0.054000px;}
.ws30e{word-spacing:-0.041940px;}
.ws193{word-spacing:-0.040200px;}
.ws57{word-spacing:-0.039996px;}
.ws311{word-spacing:-0.039186px;}
.ws68{word-spacing:-0.036001px;}
.ws1{word-spacing:0.000000px;}
.ws1f4{word-spacing:0.029970px;}
.ws66{word-spacing:11.811797px;}
.ws67{word-spacing:11.995400px;}
.ws65{word-spacing:12.300120px;}
.ws64{word-spacing:12.349260px;}
.ws2a8{word-spacing:12.355200px;}
.ws3a9{word-spacing:12.393000px;}
.ws34a{word-spacing:12.420000px;}
.wsdd{word-spacing:12.436200px;}
.ws3a4{word-spacing:12.609000px;}
.ws38f{word-spacing:12.711600px;}
.wsdc{word-spacing:12.733200px;}
.ws2a3{word-spacing:12.765600px;}
.ws257{word-spacing:12.803400px;}
.ws247{word-spacing:12.852000px;}
.ws248{word-spacing:12.884400px;}
.ws256{word-spacing:12.895200px;}
.ws3a5{word-spacing:12.906000px;}
.ws2a2{word-spacing:12.976200px;}
.ws356{word-spacing:13.073400px;}
.ws342{word-spacing:13.159800px;}
.ws39e{word-spacing:13.230000px;}
.wsde{word-spacing:13.235400px;}
.ws10e{word-spacing:13.305600px;}
.ws110{word-spacing:13.365000px;}
.ws10d{word-spacing:13.413600px;}
.ws383{word-spacing:13.446000px;}
.ws390{word-spacing:13.489200px;}
.ws10f{word-spacing:13.548600px;}
.ws2fd{word-spacing:13.656137px;}
.ws378{word-spacing:13.656600px;}
.ws187{word-spacing:13.698137px;}
.ws262{word-spacing:13.704137px;}
.ws1e0{word-spacing:13.800138px;}
.ws1e{word-spacing:13.818138px;}
.ws13{word-spacing:13.824138px;}
.ws1d{word-spacing:13.860139px;}
.ws2e9{word-spacing:13.872139px;}
.ws159{word-spacing:13.884139px;}
.ws15{word-spacing:13.950139px;}
.ws177{word-spacing:13.992140px;}
.ws50{word-spacing:14.010140px;}
.wsef{word-spacing:14.022140px;}
.ws1f{word-spacing:14.028140px;}
.ws3ad{word-spacing:14.061600px;}
.ws263{word-spacing:14.064141px;}
.ws1a8{word-spacing:14.142141px;}
.ws15a{word-spacing:14.154142px;}
.ws125{word-spacing:14.172142px;}
.ws4f{word-spacing:14.178142px;}
.ws1df{word-spacing:14.190142px;}
.ws2ea{word-spacing:14.226142px;}
.wsae{word-spacing:14.238142px;}
.ws306{word-spacing:14.250142px;}
.ws73{word-spacing:14.280143px;}
.ws4e{word-spacing:14.304143px;}
.ws28c{word-spacing:14.316143px;}
.ws365{word-spacing:14.326200px;}
.wsaf{word-spacing:14.364144px;}
.ws44{word-spacing:14.376144px;}
.ws203{word-spacing:14.382144px;}
.ws208{word-spacing:14.388144px;}
.ws207{word-spacing:14.406144px;}
.wsad{word-spacing:14.412144px;}
.ws2e2{word-spacing:14.418144px;}
.ws9f{word-spacing:14.436144px;}
.ws9c{word-spacing:14.466145px;}
.ws16{word-spacing:14.478145px;}
.ws25d{word-spacing:14.490145px;}
.ws45{word-spacing:14.496145px;}
.ws37c{word-spacing:14.526000px;}
.ws291{word-spacing:14.553000px;}
.ws2de{word-spacing:14.562146px;}
.ws2e1{word-spacing:14.586146px;}
.ws9d{word-spacing:14.604146px;}
.ws1b2{word-spacing:14.622146px;}
.ws37d{word-spacing:14.628600px;}
.ws2e0{word-spacing:14.658147px;}
.ws264{word-spacing:14.664147px;}
.ws358{word-spacing:14.666400px;}
.ws292{word-spacing:14.671800px;}
.ws25e{word-spacing:14.700147px;}
.ws295{word-spacing:14.709600px;}
.ws9e{word-spacing:14.748147px;}
.ws111{word-spacing:14.758200px;}
.ws26d{word-spacing:14.772148px;}
.ws144{word-spacing:14.774400px;}
.ws293{word-spacing:14.779800px;}
.wsd8{word-spacing:14.790148px;}
.ws103{word-spacing:14.796148px;}
.ws74{word-spacing:14.820148px;}
.wsda{word-spacing:14.838148px;}
.ws189{word-spacing:14.856149px;}
.ws3a6{word-spacing:14.860800px;}
.ws2a5{word-spacing:14.866200px;}
.wse6{word-spacing:14.882400px;}
.ws13a{word-spacing:14.910149px;}
.ws113{word-spacing:14.936400px;}
.ws26e{word-spacing:14.952150px;}
.wsfa{word-spacing:14.964150px;}
.ws112{word-spacing:14.968800px;}
.ws2a4{word-spacing:14.990400px;}
.ws8e{word-spacing:15.018150px;}
.wsb0{word-spacing:15.090151px;}
.ws314{word-spacing:15.114151px;}
.ws33a{word-spacing:15.114600px;}
.wsfb{word-spacing:15.132151px;}
.ws243{word-spacing:15.144151px;}
.ws128{word-spacing:15.162152px;}
.wsd9{word-spacing:15.174152px;}
.ws127{word-spacing:15.180152px;}
.wsc3{word-spacing:15.186152px;}
.ws3c{word-spacing:15.198152px;}
.ws220{word-spacing:15.216152px;}
.ws19{word-spacing:15.246152px;}
.wse5{word-spacing:15.249600px;}
.ws244{word-spacing:15.258153px;}
.ws299{word-spacing:15.265800px;}
.ws34{word-spacing:15.276153px;}
.ws296{word-spacing:15.276600px;}
.ws1a{word-spacing:15.330153px;}
.ws33{word-spacing:15.348153px;}
.ws2f9{word-spacing:15.360154px;}
.ws114{word-spacing:15.373800px;}
.ws20b{word-spacing:15.384154px;}
.wsf{word-spacing:15.390154px;}
.ws2d2{word-spacing:15.396154px;}
.ws36f{word-spacing:15.411600px;}
.wsfc{word-spacing:15.420154px;}
.ws168{word-spacing:15.426154px;}
.ws245{word-spacing:15.432154px;}
.ws115{word-spacing:15.438600px;}
.ws2fa{word-spacing:15.462155px;}
.ws2c5{word-spacing:15.468155px;}
.ws1a2{word-spacing:15.480155px;}
.ws169{word-spacing:15.516155px;}
.ws19d{word-spacing:15.528155px;}
.wsd0{word-spacing:15.558156px;}
.wsfe{word-spacing:15.576156px;}
.ws1a1{word-spacing:15.582156px;}
.ws246{word-spacing:15.588156px;}
.ws19c{word-spacing:15.612156px;}
.ws146{word-spacing:15.616800px;}
.wse{word-spacing:15.624156px;}
.ws30a{word-spacing:15.636156px;}
.ws20{word-spacing:15.660157px;}
.ws3a0{word-spacing:15.670800px;}
.ws30c{word-spacing:15.672157px;}
.ws308{word-spacing:15.678157px;}
.wse7{word-spacing:15.692400px;}
.ws183{word-spacing:15.702157px;}
.wsc9{word-spacing:15.708157px;}
.ws30{word-spacing:15.744157px;}
.ws398{word-spacing:15.762600px;}
.ws1a0{word-spacing:15.768158px;}
.ws30b{word-spacing:15.792158px;}
.ws21{word-spacing:15.840158px;}
.ws1c0{word-spacing:15.858159px;}
.ws1e1{word-spacing:15.864159px;}
.ws18a{word-spacing:15.870159px;}
.ws55{word-spacing:15.876159px;}
.ws352{word-spacing:15.881400px;}
.wsbb{word-spacing:15.930159px;}
.ws13c{word-spacing:15.936159px;}
.ws353{word-spacing:15.951600px;}
.wsc{word-spacing:15.959801px;}
.ws1f3{word-spacing:15.972160px;}
.ws18d{word-spacing:15.978160px;}
.ws147{word-spacing:15.994800px;}
.ws302{word-spacing:15.996160px;}
.ws13d{word-spacing:16.038160px;}
.ws192{word-spacing:16.050161px;}
.wsb{word-spacing:16.065399px;}
.ws1b6{word-spacing:16.092161px;}
.ws18e{word-spacing:16.104161px;}
.ws1de{word-spacing:16.110161px;}
.ws194{word-spacing:16.134161px;}
.wsfd{word-spacing:16.182162px;}
.ws156{word-spacing:16.194162px;}
.ws250{word-spacing:16.200000px;}
.ws1e2{word-spacing:16.200162px;}
.ws11c{word-spacing:16.236162px;}
.ws2f{word-spacing:16.266163px;}
.ws155{word-spacing:16.272163px;}
.ws157{word-spacing:16.278163px;}
.ws163{word-spacing:16.290163px;}
.ws249{word-spacing:16.297200px;}
.wsb8{word-spacing:16.302163px;}
.wsc2{word-spacing:16.308163px;}
.ws7f{word-spacing:16.350164px;}
.ws148{word-spacing:16.351200px;}
.ws149{word-spacing:16.356600px;}
.ws167{word-spacing:16.368164px;}
.ws59{word-spacing:16.392164px;}
.wsc1{word-spacing:16.416164px;}
.ws24f{word-spacing:16.421400px;}
.ws12c{word-spacing:16.446164px;}
.ws24e{word-spacing:16.448400px;}
.ws173{word-spacing:16.452165px;}
.ws372{word-spacing:16.475400px;}
.wsb9{word-spacing:16.500165px;}
.ws22{word-spacing:16.524165px;}
.ws151{word-spacing:16.536165px;}
.ws24{word-spacing:16.548165px;}
.ws2da{word-spacing:16.566166px;}
.ws281{word-spacing:16.578166px;}
.ws8a{word-spacing:16.596166px;}
.wsba{word-spacing:16.632166px;}
.ws2b6{word-spacing:16.752168px;}
.ws174{word-spacing:16.764168px;}
.ws23f{word-spacing:16.782168px;}
.ws282{word-spacing:16.812168px;}
.ws23{word-spacing:16.860169px;}
.ws39{word-spacing:16.926169px;}
.ws319{word-spacing:16.932169px;}
.ws377{word-spacing:16.934400px;}
.ws38{word-spacing:16.956170px;}
.ws23d{word-spacing:16.968170px;}
.ws1fa{word-spacing:16.980170px;}
.ws23e{word-spacing:16.999200px;}
.ws298{word-spacing:17.004600px;}
.ws2bd{word-spacing:17.046170px;}
.ws382{word-spacing:17.047800px;}
.ws29a{word-spacing:17.058600px;}
.ws212{word-spacing:17.064171px;}
.ws14e{word-spacing:17.076171px;}
.ws32{word-spacing:17.130171px;}
.wsdb{word-spacing:17.196172px;}
.ws1c2{word-spacing:17.202172px;}
.ws1f9{word-spacing:17.220172px;}
.ws14a{word-spacing:17.220600px;}
.wsbc{word-spacing:17.238172px;}
.ws145{word-spacing:17.242200px;}
.ws276{word-spacing:17.262173px;}
.ws357{word-spacing:17.274600px;}
.ws82{word-spacing:17.280173px;}
.ws1ce{word-spacing:17.292173px;}
.ws227{word-spacing:17.298511px;}
.wsbd{word-spacing:17.328173px;}
.ws351{word-spacing:17.328600px;}
.ws3bc{word-spacing:17.371800px;}
.ws81{word-spacing:17.406174px;}
.ws29c{word-spacing:17.458200px;}
.ws3c0{word-spacing:17.469000px;}
.wsab{word-spacing:17.478175px;}
.ws2d{word-spacing:17.490175px;}
.ws29b{word-spacing:17.496000px;}
.wsaa{word-spacing:17.538175px;}
.ws130{word-spacing:17.544175px;}
.ws3bb{word-spacing:17.555400px;}
.ws2d9{word-spacing:17.556176px;}
.ws1c1{word-spacing:17.562176px;}
.ws3e{word-spacing:17.580176px;}
.ws10b{word-spacing:17.598176px;}
.ws2a7{word-spacing:17.631000px;}
.ws13f{word-spacing:17.640176px;}
.ws2a6{word-spacing:17.658000px;}
.ws3b5{word-spacing:17.663400px;}
.wsac{word-spacing:17.670177px;}
.ws33c{word-spacing:17.679600px;}
.ws38a{word-spacing:17.690400px;}
.ws327{word-spacing:17.694177px;}
.ws364{word-spacing:17.695800px;}
.ws25b{word-spacing:17.712000px;}
.ws2e8{word-spacing:17.712177px;}
.ws34b{word-spacing:17.722800px;}
.ws336{word-spacing:17.728200px;}
.ws348{word-spacing:17.739000px;}
.ws11a{word-spacing:17.744400px;}
.ws3ca{word-spacing:17.755200px;}
.ws3c1{word-spacing:17.760600px;}
.ws340{word-spacing:17.766000px;}
.ws3a8{word-spacing:17.771400px;}
.ws35{word-spacing:17.790178px;}
.ws3af{word-spacing:17.798400px;}
.ws1fb{word-spacing:17.808178px;}
.ws350{word-spacing:17.814600px;}
.ws344{word-spacing:17.820000px;}
.ws39c{word-spacing:17.830800px;}
.ws1e7{word-spacing:17.832178px;}
.ws337{word-spacing:17.836200px;}
.ws338{word-spacing:17.841600px;}
.ws3b7{word-spacing:17.847000px;}
.ws8{word-spacing:17.863200px;}
.ws33f{word-spacing:17.868600px;}
.ws213{word-spacing:17.880179px;}
.ws63{word-spacing:17.890200px;}
.ws346{word-spacing:17.895600px;}
.ws384{word-spacing:17.911800px;}
.ws3b8{word-spacing:17.917200px;}
.ws369{word-spacing:17.922600px;}
.ws380{word-spacing:17.928000px;}
.ws101{word-spacing:17.928179px;}
.ws9{word-spacing:17.933400px;}
.ws32d{word-spacing:17.934179px;}
.ws32c{word-spacing:17.946179px;}
.ws36d{word-spacing:17.949600px;}
.ws2cc{word-spacing:17.958180px;}
.wsa9{word-spacing:17.964180px;}
.ws389{word-spacing:17.965800px;}
.ws100{word-spacing:17.970180px;}
.ws14d{word-spacing:17.971200px;}
.ws2ad{word-spacing:17.987400px;}
.ws4d{word-spacing:17.988180px;}
.ws36c{word-spacing:17.998200px;}
.ws363{word-spacing:18.046800px;}
.ws153{word-spacing:18.054181px;}
.ws37a{word-spacing:18.057600px;}
.ws33d{word-spacing:18.084600px;}
.ws16a{word-spacing:18.090181px;}
.ws1ef{word-spacing:18.096181px;}
.ws376{word-spacing:18.111600px;}
.ws1f1{word-spacing:18.114181px;}
.ws4c{word-spacing:18.150182px;}
.ws341{word-spacing:18.181800px;}
.ws1ec{word-spacing:18.186182px;}
.ws1eb{word-spacing:18.192182px;}
.ws277{word-spacing:18.222182px;}
.ws1ed{word-spacing:18.240182px;}
.ws6d{word-spacing:18.252183px;}
.ws21d{word-spacing:18.324183px;}
.ws297{word-spacing:18.338400px;}
.ws2ef{word-spacing:18.378184px;}
.ws287{word-spacing:18.420184px;}
.ws1e4{word-spacing:18.480185px;}
.ws21c{word-spacing:18.498185px;}
.ws37b{word-spacing:18.500400px;}
.ws270{word-spacing:18.510185px;}
.ws2ba{word-spacing:18.540185px;}
.ws2ee{word-spacing:18.558186px;}
.ws1e3{word-spacing:18.564186px;}
.ws1ba{word-spacing:18.576186px;}
.ws2ac{word-spacing:18.581400px;}
.ws2c{word-spacing:18.588186px;}
.ws2bb{word-spacing:18.660187px;}
.ws69{word-spacing:18.702187px;}
.ws51{word-spacing:18.708187px;}
.ws12{word-spacing:18.744187px;}
.ws288{word-spacing:18.762188px;}
.wscd{word-spacing:18.768188px;}
.ws102{word-spacing:18.798188px;}
.ws34c{word-spacing:18.824400px;}
.ws2bc{word-spacing:18.828188px;}
.ws215{word-spacing:18.876189px;}
.ws31b{word-spacing:18.924000px;}
.ws132{word-spacing:18.936189px;}
.ws334{word-spacing:18.943200px;}
.ws119{word-spacing:18.948600px;}
.ws312{word-spacing:18.952500px;}
.wsdf{word-spacing:18.975600px;}
.wsb5{word-spacing:18.996190px;}
.ws2ab{word-spacing:19.018800px;}
.ws214{word-spacing:19.050191px;}
.ws118{word-spacing:19.051200px;}
.ws117{word-spacing:19.089000px;}
.ws116{word-spacing:19.094400px;}
.ws198{word-spacing:19.134191px;}
.ws80{word-spacing:19.140191px;}
.ws3c3{word-spacing:19.191600px;}
.ws23c{word-spacing:19.200192px;}
.ws3c5{word-spacing:19.202400px;}
.ws1b8{word-spacing:19.212192px;}
.ws23b{word-spacing:19.224192px;}
.wsd6{word-spacing:19.242192px;}
.ws3c4{word-spacing:19.256400px;}
.ws1d8{word-spacing:19.272193px;}
.ws255{word-spacing:19.305000px;}
.ws387{word-spacing:19.315800px;}
.ws1d9{word-spacing:19.338193px;}
.ws18{word-spacing:19.350193px;}
.ws19f{word-spacing:19.374194px;}
.ws373{word-spacing:19.380600px;}
.ws3b4{word-spacing:19.386000px;}
.ws3b3{word-spacing:19.407600px;}
.ws19b{word-spacing:19.452195px;}
.ws85{word-spacing:19.506195px;}
.ws2b4{word-spacing:19.584196px;}
.ws231{word-spacing:19.596196px;}
.wsa3{word-spacing:19.620196px;}
.ws328{word-spacing:19.632196px;}
.ws1d5{word-spacing:19.644196px;}
.ws40{word-spacing:19.668197px;}
.ws2bf{word-spacing:19.680197px;}
.ws1d4{word-spacing:19.686197px;}
.wsf0{word-spacing:19.704197px;}
.ws31f{word-spacing:19.710197px;}
.ws2ec{word-spacing:19.716197px;}
.ws320{word-spacing:19.722197px;}
.ws324{word-spacing:19.728197px;}
.ws329{word-spacing:19.734197px;}
.ws330{word-spacing:19.746197px;}
.ws32a{word-spacing:19.752198px;}
.ws2b{word-spacing:19.758198px;}
.ws210{word-spacing:19.770198px;}
.ws25f{word-spacing:19.776198px;}
.ws2a{word-spacing:19.788198px;}
.ws323{word-spacing:19.800198px;}
.ws182{word-spacing:19.806198px;}
.ws315{word-spacing:19.812198px;}
.ws72{word-spacing:19.818198px;}
.wsb1{word-spacing:19.830198px;}
.ws326{word-spacing:19.836198px;}
.ws6c{word-spacing:19.842198px;}
.ws7e{word-spacing:19.848198px;}
.wsb7{word-spacing:19.854199px;}
.wsea{word-spacing:19.860199px;}
.ws96{word-spacing:19.866199px;}
.ws106{word-spacing:19.872199px;}
.ws2cb{word-spacing:19.878199px;}
.ws211{word-spacing:19.884199px;}
.ws271{word-spacing:19.902199px;}
.ws2eb{word-spacing:19.908199px;}
.ws172{word-spacing:19.914199px;}
.wsb6{word-spacing:19.926199px;}
.ws29{word-spacing:19.932199px;}
.ws241{word-spacing:19.938199px;}
.ws27{word-spacing:19.950200px;}
.ws31c{word-spacing:19.974200px;}
.ws2b7{word-spacing:19.986200px;}
.ws31e{word-spacing:19.998200px;}
.ws1a7{word-spacing:20.010200px;}
.ws240{word-spacing:20.016200px;}
.ws99{word-spacing:20.034200px;}
.ws2ed{word-spacing:20.040200px;}
.ws9a{word-spacing:20.052201px;}
.ws242{word-spacing:20.058201px;}
.ws1bf{word-spacing:20.070201px;}
.ws321{word-spacing:20.076201px;}
.ws305{word-spacing:20.148201px;}
.ws1ad{word-spacing:20.178202px;}
.ws104{word-spacing:20.184202px;}
.ws9b{word-spacing:20.190202px;}
.ws6e{word-spacing:20.220202px;}
.ws1be{word-spacing:20.226202px;}
.ws3c7{word-spacing:20.233800px;}
.ws105{word-spacing:20.262203px;}
.ws3a3{word-spacing:20.277000px;}
.ws304{word-spacing:20.280203px;}
.ws1b1{word-spacing:20.304203px;}
.ws1a6{word-spacing:20.334203px;}
.ws35d{word-spacing:20.336400px;}
.ws78{word-spacing:20.352204px;}
.ws79{word-spacing:20.376204px;}
.ws3a2{word-spacing:20.379600px;}
.wsca{word-spacing:20.436204px;}
.ws126{word-spacing:20.478205px;}
.ws17{word-spacing:20.508205px;}
.ws286{word-spacing:20.562206px;}
.ws232{word-spacing:20.571000px;}
.wscb{word-spacing:20.604206px;}
.ws28b{word-spacing:20.610206px;}
.ws186{word-spacing:20.616206px;}
.wscc{word-spacing:20.622206px;}
.ws28f{word-spacing:20.646206px;}
.ws152{word-spacing:20.700207px;}
.ws138{word-spacing:20.706207px;}
.ws260{word-spacing:20.742207px;}
.ws154{word-spacing:20.748207px;}
.ws14b{word-spacing:20.800800px;}
.ws31a{word-spacing:20.815398px;}
.ws2d6{word-spacing:20.832208px;}
.ws35e{word-spacing:20.844000px;}
.ws1f7{word-spacing:20.844208px;}
.ws97{word-spacing:20.859499px;}
.ws1b7{word-spacing:20.868209px;}
.ws139{word-spacing:20.946209px;}
.ws345{word-spacing:20.952000px;}
.ws300{word-spacing:20.952210px;}
.ws310{word-spacing:20.979200px;}
.ws347{word-spacing:20.984400px;}
.ws2ff{word-spacing:21.000210px;}
.ws290{word-spacing:21.006210px;}
.ws2b0{word-spacing:21.030210px;}
.ws38e{word-spacing:21.065400px;}
.ws2d5{word-spacing:21.072211px;}
.ws14c{word-spacing:21.119400px;}
.ws1d0{word-spacing:21.138211px;}
.ws2fb{word-spacing:21.150211px;}
.ws4b{word-spacing:21.174212px;}
.ws301{word-spacing:21.204212px;}
.ws3ba{word-spacing:21.211200px;}
.ws272{word-spacing:21.234212px;}
.ws1cd{word-spacing:21.264213px;}
.ws4a{word-spacing:21.270213px;}
.ws1cb{word-spacing:21.282213px;}
.ws1cc{word-spacing:21.300213px;}
.ws2f6{word-spacing:21.312213px;}
.ws2b3{word-spacing:21.336213px;}
.ws267{word-spacing:21.354214px;}
.ws349{word-spacing:21.357000px;}
.ws268{word-spacing:21.366214px;}
.ws1d1{word-spacing:21.384214px;}
.ws7a{word-spacing:21.420214px;}
.ws2d7{word-spacing:21.474215px;}
.ws26c{word-spacing:21.492215px;}
.ws26b{word-spacing:21.528215px;}
.ws109{word-spacing:21.540215px;}
.ws161{word-spacing:21.552216px;}
.ws162{word-spacing:21.576216px;}
.ws108{word-spacing:21.594216px;}
.ws87{word-spacing:21.606216px;}
.ws88{word-spacing:21.618216px;}
.wsec{word-spacing:21.624216px;}
.wsd3{word-spacing:21.642216px;}
.ws266{word-spacing:21.648216px;}
.ws3c2{word-spacing:21.654000px;}
.ws33b{word-spacing:21.664800px;}
.ws1d7{word-spacing:21.678217px;}
.ws176{word-spacing:21.702217px;}
.ws71{word-spacing:21.720217px;}
.ws253{word-spacing:21.745800px;}
.ws23a{word-spacing:21.762218px;}
.ws234{word-spacing:21.780218px;}
.ws254{word-spacing:21.789000px;}
.ws37{word-spacing:21.810218px;}
.ws84{word-spacing:21.834218px;}
.wsd4{word-spacing:21.864219px;}
.ws89{word-spacing:21.870219px;}
.ws265{word-spacing:21.888219px;}
.ws379{word-spacing:21.902400px;}
.ws236{word-spacing:21.906219px;}
.ws36{word-spacing:21.930219px;}
.wsd5{word-spacing:21.966220px;}
.ws303{word-spacing:21.984220px;}
.ws83{word-spacing:22.038220px;}
.ws235{word-spacing:22.056221px;}
.ws2c3{word-spacing:22.098221px;}
.ws237{word-spacing:22.101600px;}
.ws239{word-spacing:22.102200px;}
.ws10a{word-spacing:22.218222px;}
.ws238{word-spacing:22.230222px;}
.ws1aa{word-spacing:22.278223px;}
.ws3d{word-spacing:22.296223px;}
.ws184{word-spacing:22.302223px;}
.ws2dd{word-spacing:22.320223px;}
.ws316{word-spacing:22.326223px;}
.ws137{word-spacing:22.332223px;}
.ws158{word-spacing:22.338223px;}
.ws374{word-spacing:22.345200px;}
.ws375{word-spacing:22.350600px;}
.ws19e{word-spacing:22.392224px;}
.ws6b{word-spacing:22.416224px;}
.ws5c{word-spacing:22.458225px;}
.ws3ae{word-spacing:22.480200px;}
.ws190{word-spacing:22.482225px;}
.ws6f{word-spacing:22.536225px;}
.ws24b{word-spacing:22.566600px;}
.ws5d{word-spacing:22.602226px;}
.ws1d6{word-spacing:22.626226px;}
.ws1a9{word-spacing:22.644226px;}
.ws141{word-spacing:22.674227px;}
.ws24d{word-spacing:22.685400px;}
.ws19a{word-spacing:22.704227px;}
.ws2d3{word-spacing:22.710227px;}
.wse9{word-spacing:22.717800px;}
.ws333{word-spacing:22.734000px;}
.ws53{word-spacing:22.812228px;}
.ws2d4{word-spacing:22.824228px;}
.ws61{word-spacing:22.842228px;}
.ws7b{word-spacing:22.890229px;}
.ws24c{word-spacing:22.896000px;}
.ws199{word-spacing:22.944229px;}
.ws60{word-spacing:22.956230px;}
.ws1b3{word-spacing:22.968230px;}
.ws332{word-spacing:22.971600px;}
.ws143{word-spacing:22.986230px;}
.ws142{word-spacing:22.998230px;}
.ws1b4{word-spacing:23.010230px;}
.ws124{word-spacing:23.070231px;}
.wsff{word-spacing:23.088231px;}
.ws307{word-spacing:23.160232px;}
.ws2db{word-spacing:23.172232px;}
.ws2c9{word-spacing:23.196232px;}
.ws3c6{word-spacing:23.247000px;}
.ws39f{word-spacing:23.252400px;}
.ws1b5{word-spacing:23.268233px;}
.ws92{word-spacing:23.322233px;}
.ws13e{word-spacing:23.340233px;}
.ws28a{word-spacing:23.370234px;}
.ws1a3{word-spacing:23.394234px;}
.ws7c{word-spacing:23.412234px;}
.ws3b9{word-spacing:23.419800px;}
.ws2fc{word-spacing:23.466235px;}
.wse4{word-spacing:23.500800px;}
.ws20a{word-spacing:23.568236px;}
.ws123{word-spacing:23.592236px;}
.ws209{word-spacing:23.658237px;}
.ws12d{word-spacing:23.664237px;}
.ws21f{word-spacing:23.676237px;}
.ws134{word-spacing:23.694237px;}
.ws133{word-spacing:23.718237px;}
.wse2{word-spacing:23.749200px;}
.ws3ab{word-spacing:23.792400px;}
.ws1c5{word-spacing:23.808238px;}
.ws1dc{word-spacing:23.844238px;}
.ws7d{word-spacing:23.850239px;}
.ws1dd{word-spacing:23.874239px;}
.ws17f{word-spacing:23.898239px;}
.ws1c3{word-spacing:23.910239px;}
.ws18b{word-spacing:23.934239px;}
.ws41{word-spacing:23.958240px;}
.ws16e{word-spacing:24.006240px;}
.ws1c4{word-spacing:24.018240px;}
.ws3ac{word-spacing:24.051600px;}
.wsa4{word-spacing:24.102241px;}
.ws8d{word-spacing:24.138241px;}
.ws3b1{word-spacing:24.197400px;}
.ws8c{word-spacing:24.222242px;}
.wsf4{word-spacing:24.288243px;}
.ws38b{word-spacing:24.300000px;}
.wsa5{word-spacing:24.348243px;}
.wsf6{word-spacing:24.354244px;}
.wsf5{word-spacing:24.360244px;}
.wsa7{word-spacing:24.372244px;}
.ws309{word-spacing:24.402244px;}
.wsa6{word-spacing:24.408244px;}
.ws335{word-spacing:24.429600px;}
.ws3c8{word-spacing:24.483600px;}
.ws34d{word-spacing:24.516000px;}
.ws27f{word-spacing:24.516245px;}
.ws196{word-spacing:24.582246px;}
.ws1a4{word-spacing:24.618246px;}
.ws1af{word-spacing:24.654247px;}
.ws317{word-spacing:24.660247px;}
.ws17d{word-spacing:24.672247px;}
.ws165{word-spacing:24.684247px;}
.ws278{word-spacing:24.696247px;}
.ws1b0{word-spacing:24.702247px;}
.wsa8{word-spacing:24.738247px;}
.ws27d{word-spacing:24.816248px;}
.ws164{word-spacing:24.822248px;}
.wsd7{word-spacing:24.834248px;}
.ws17c{word-spacing:24.894249px;}
.ws1f2{word-spacing:24.906249px;}
.ws204{word-spacing:24.918249px;}
.ws11{word-spacing:24.972250px;}
.ws49{word-spacing:25.044250px;}
.ws10{word-spacing:25.086251px;}
.ws175{word-spacing:25.110251px;}
.ws2d1{word-spacing:25.122251px;}
.ws331{word-spacing:25.180200px;}
.ws2ca{word-spacing:25.182252px;}
.ws1e6{word-spacing:25.206252px;}
.ws91{word-spacing:25.212252px;}
.ws37f{word-spacing:25.218000px;}
.wsd2{word-spacing:25.266253px;}
.ws58{word-spacing:25.290253px;}
.ws388{word-spacing:25.320600px;}
.wsbe{word-spacing:25.368254px;}
.ws1e9{word-spacing:25.392254px;}
.ws56{word-spacing:25.440254px;}
.ws15b{word-spacing:25.452255px;}
.ws361{word-spacing:25.461000px;}
.ws1e8{word-spacing:25.512255px;}
.ws191{word-spacing:25.518255px;}
.ws33e{word-spacing:25.655400px;}
.ws6a{word-spacing:25.704257px;}
.ws2cf{word-spacing:25.746257px;}
.ws4{word-spacing:25.779000px;}
.ws5{word-spacing:25.841400px;}
.ws17a{word-spacing:25.842258px;}
.ws6{word-spacing:25.857000px;}
.ws2c1{word-spacing:25.860259px;}
.ws7{word-spacing:25.872600px;}
.ws8b{word-spacing:25.938259px;}
.ws279{word-spacing:26.046260px;}
.ws178{word-spacing:26.064261px;}
.ws360{word-spacing:26.082000px;}
.ws17e{word-spacing:26.100261px;}
.ws179{word-spacing:26.130261px;}
.ws2f5{word-spacing:26.148261px;}
.ws35f{word-spacing:26.249400px;}
.ws38c{word-spacing:26.362800px;}
.ws1ca{word-spacing:26.388264px;}
.ws197{word-spacing:26.406264px;}
.ws2aa{word-spacing:26.422200px;}
.ws38d{word-spacing:26.433000px;}
.ws22f{word-spacing:26.472265px;}
.ws2df{word-spacing:26.526265px;}
.ws392{word-spacing:26.546400px;}
.ws11d{word-spacing:26.658267px;}
.ws5f{word-spacing:26.682267px;}
.ws22e{word-spacing:26.693400px;}
.ws22d{word-spacing:26.694267px;}
.ws269{word-spacing:26.724267px;}
.ws25a{word-spacing:26.762400px;}
.ws5e{word-spacing:26.766268px;}
.ws2f3{word-spacing:26.814268px;}
.ws2f4{word-spacing:26.880269px;}
.ws362{word-spacing:26.886600px;}
.ws3b2{word-spacing:26.913600px;}
.ws36b{word-spacing:26.919000px;}
.ws21b{word-spacing:26.946269px;}
.ws259{word-spacing:26.973000px;}
.ws2f1{word-spacing:27.006270px;}
.wsc8{word-spacing:27.048270px;}
.ws2c2{word-spacing:27.066271px;}
.ws1d3{word-spacing:27.090271px;}
.ws339{word-spacing:27.108000px;}
.ws3b0{word-spacing:27.151200px;}
.ws2a9{word-spacing:27.183600px;}
.ws2f0{word-spacing:27.198272px;}
.ws3a1{word-spacing:27.259200px;}
.ws36e{word-spacing:27.351000px;}
.ws140{word-spacing:27.378274px;}
.ws160{word-spacing:27.408274px;}
.ws107{word-spacing:27.420274px;}
.ws2fe{word-spacing:27.486275px;}
.ws15e{word-spacing:27.498275px;}
.ws77{word-spacing:27.510275px;}
.ws20c{word-spacing:27.552276px;}
.ws3cb{word-spacing:27.621000px;}
.ws386{word-spacing:27.664200px;}
.ws1a5{word-spacing:27.744277px;}
.ws394{word-spacing:27.777600px;}
.ws294{word-spacing:27.923400px;}
.ws131{word-spacing:27.990280px;}
.ws120{word-spacing:27.996280px;}
.ws11e{word-spacing:28.032280px;}
.ws48{word-spacing:28.044280px;}
.ws252{word-spacing:28.085400px;}
.ws11f{word-spacing:28.104281px;}
.ws275{word-spacing:28.122281px;}
.ws37e{word-spacing:28.128600px;}
.ws385{word-spacing:28.150200px;}
.ws273{word-spacing:28.152282px;}
.ws47{word-spacing:28.170282px;}
.ws188{word-spacing:28.176282px;}
.ws46{word-spacing:28.224282px;}
.ws18c{word-spacing:28.230282px;}
.ws274{word-spacing:28.284283px;}
.ws21a{word-spacing:28.332283px;}
.ws219{word-spacing:28.356284px;}
.ws397{word-spacing:28.360800px;}
.ws28e{word-spacing:28.392284px;}
.ws28d{word-spacing:28.440284px;}
.ws396{word-spacing:28.501200px;}
.ws221{word-spacing:28.524285px;}
.wscf{word-spacing:28.692287px;}
.ws222{word-spacing:28.698287px;}
.wsd1{word-spacing:28.722287px;}
.wsce{word-spacing:28.764288px;}
.ws2c4{word-spacing:28.770288px;}
.ws15d{word-spacing:28.800288px;}
.ws1ee{word-spacing:28.860289px;}
.ws27c{word-spacing:28.926289px;}
.wsc0{word-spacing:28.938289px;}
.ws42{word-spacing:28.950290px;}
.ws27b{word-spacing:29.034290px;}
.ws2{word-spacing:29.039229px;}
.ws29f{word-spacing:29.154600px;}
.ws27a{word-spacing:29.172292px;}
.ws34e{word-spacing:29.187000px;}
.ws26{word-spacing:29.196292px;}
.ws2a1{word-spacing:29.224800px;}
.ws25{word-spacing:29.340293px;}
.ws34f{word-spacing:29.381400px;}
.ws1c{word-spacing:29.388294px;}
.ws285{word-spacing:29.448294px;}
.ws2a0{word-spacing:29.473200px;}
.ws1b{word-spacing:29.544295px;}
.ws354{word-spacing:29.592000px;}
.ws3a{word-spacing:29.592296px;}
.ws43{word-spacing:29.664297px;}
.ws343{word-spacing:29.678400px;}
.ws5b{word-spacing:29.682297px;}
.ws3b{word-spacing:29.718297px;}
.ws1db{word-spacing:29.790298px;}
.ws28{word-spacing:29.808298px;}
.ws381{word-spacing:29.862000px;}
.ws3c9{word-spacing:29.916000px;}
.wsd{word-spacing:29.916299px;}
.ws2e5{word-spacing:29.958300px;}
.ws136{word-spacing:30.102301px;}
.ws1bb{word-spacing:30.150302px;}
.ws1bd{word-spacing:30.222302px;}
.ws135{word-spacing:30.252303px;}
.ws27e{word-spacing:30.270303px;}
.wsf3{word-spacing:30.396304px;}
.ws1bc{word-spacing:30.486305px;}
.wsf1{word-spacing:30.534305px;}
.wse8{word-spacing:30.564000px;}
.wsf2{word-spacing:30.564306px;}
.ws181{word-spacing:30.624306px;}
.ws2f8{word-spacing:30.696307px;}
.ws20f{word-spacing:30.726307px;}
.ws36a{word-spacing:30.790800px;}
.ws180{word-spacing:30.822308px;}
.ws2f7{word-spacing:30.888309px;}
.ws1ae{word-spacing:30.912309px;}
.ws391{word-spacing:30.947400px;}
.wsed{word-spacing:31.020310px;}
.ws52{word-spacing:31.104311px;}
.ws205{word-spacing:31.110311px;}
.ws206{word-spacing:31.182312px;}
.wsee{word-spacing:31.224312px;}
.ws2e7{word-spacing:31.410314px;}
.ws5a{word-spacing:31.416314px;}
.ws2e6{word-spacing:31.488315px;}
.ws230{word-spacing:31.506315px;}
.ws318{word-spacing:31.566316px;}
.ws122{word-spacing:31.632316px;}
.ws121{word-spacing:31.662317px;}
.ws18f{word-spacing:31.830318px;}
.ws93{word-spacing:32.166322px;}
.ws2c0{word-spacing:32.322323px;}
.ws3bf{word-spacing:32.329800px;}
.ws21e{word-spacing:32.388324px;}
.ws13b{word-spacing:32.508325px;}
.ws1f0{word-spacing:32.598326px;}
.ws195{word-spacing:32.838328px;}
.ws3aa{word-spacing:32.848200px;}
.ws30f{word-spacing:32.892329px;}
.ws1ea{word-spacing:32.916329px;}
.ws217{word-spacing:32.934329px;}
.ws313{word-spacing:32.970330px;}
.ws216{word-spacing:33.054331px;}
.ws1cf{word-spacing:33.096331px;}
.ws3a7{word-spacing:33.129000px;}
.ws30d{word-spacing:33.186332px;}
.wsc4{word-spacing:33.348333px;}
.ws3{word-spacing:33.690402px;}
.ws1d2{word-spacing:33.714337px;}
.ws1c9{word-spacing:33.744337px;}
.wsa1{word-spacing:33.798338px;}
.wsa0{word-spacing:33.882339px;}
.ws1c8{word-spacing:33.924339px;}
.ws1da{word-spacing:33.954340px;}
.ws90{word-spacing:34.056341px;}
.wsb4{word-spacing:34.176342px;}
.ws2b1{word-spacing:34.206342px;}
.ws8f{word-spacing:34.212342px;}
.ws39a{word-spacing:34.246800px;}
.ws39b{word-spacing:34.284600px;}
.ws12e{word-spacing:34.320343px;}
.ws3b6{word-spacing:34.360200px;}
.ws15c{word-spacing:34.452345px;}
.ws20e{word-spacing:34.548345px;}
.ws2c8{word-spacing:34.680347px;}
.ws201{word-spacing:34.692347px;}
.ws202{word-spacing:34.698347px;}
.ws12f{word-spacing:34.788348px;}
.ws10c{word-spacing:34.818348px;}
.ws20d{word-spacing:34.908349px;}
.ws2d0{word-spacing:35.034350px;}
.ws26a{word-spacing:35.238352px;}
.ws1fe{word-spacing:35.310353px;}
.ws2be{word-spacing:35.322353px;}
.ws200{word-spacing:35.388354px;}
.ws3bd{word-spacing:35.580600px;}
.ws1ff{word-spacing:35.586356px;}
.ws29d{word-spacing:35.607600px;}
.ws2b5{word-spacing:35.658357px;}
.ws370{word-spacing:35.672400px;}
.ws29e{word-spacing:35.731800px;}
.ws3be{word-spacing:35.737200px;}
.ws399{word-spacing:35.753400px;}
.ws371{word-spacing:35.807400px;}
.ws16b{word-spacing:35.838358px;}
.ws70{word-spacing:35.868359px;}
.ws251{word-spacing:35.974800px;}
.ws166{word-spacing:35.994360px;}
.ws39d{word-spacing:36.001800px;}
.ws367{word-spacing:36.023400px;}
.ws355{word-spacing:36.088200px;}
.ws35b{word-spacing:36.099000px;}
.wse1{word-spacing:36.104400px;}
.ws395{word-spacing:36.142200px;}
.ws1ab{word-spacing:36.144361px;}
.ws359{word-spacing:36.158400px;}
.ws35c{word-spacing:36.163800px;}
.ws366{word-spacing:36.261000px;}
.wse0{word-spacing:36.288000px;}
.ws35a{word-spacing:36.455400px;}
.ws280{word-spacing:36.456365px;}
.ws368{word-spacing:36.477000px;}
.ws24a{word-spacing:36.493200px;}
.ws2b8{word-spacing:36.834368px;}
.ws283{word-spacing:37.020370px;}
.ws16d{word-spacing:37.068371px;}
.ws284{word-spacing:37.080371px;}
.ws26f{word-spacing:37.116371px;}
.ws16c{word-spacing:37.146371px;}
.wsbf{word-spacing:37.206372px;}
.ws224{word-spacing:37.260373px;}
.ws223{word-spacing:37.356374px;}
.wsf9{word-spacing:37.482375px;}
.ws31{word-spacing:37.536375px;}
.ws94{word-spacing:37.584376px;}
.wsc6{word-spacing:37.626376px;}
.wsc5{word-spacing:37.674377px;}
.ws14f{word-spacing:37.740377px;}
.ws2cd{word-spacing:37.794378px;}
.wsa2{word-spacing:37.830378px;}
.ws2ce{word-spacing:37.884379px;}
.ws150{word-spacing:37.902379px;}
.ws95{word-spacing:37.920379px;}
.wsc7{word-spacing:38.172382px;}
.ws25c{word-spacing:38.220382px;}
.ws11b{word-spacing:38.460385px;}
.ws2b9{word-spacing:38.634386px;}
.ws129{word-spacing:38.706387px;}
.ws12b{word-spacing:38.844388px;}
.ws261{word-spacing:38.874389px;}
.ws12a{word-spacing:38.988390px;}
.ws1c7{word-spacing:39.108391px;}
.ws1f6{word-spacing:39.114391px;}
.ws1c6{word-spacing:39.132391px;}
.ws1f5{word-spacing:39.228392px;}
.ws170{word-spacing:39.432394px;}
.ws17b{word-spacing:39.558396px;}
.ws185{word-spacing:39.600396px;}
.ws2dc{word-spacing:39.642396px;}
.ws98{word-spacing:39.648396px;}
.ws3f{word-spacing:39.678397px;}
.wsf8{word-spacing:39.684397px;}
.ws2af{word-spacing:39.738397px;}
.ws1e5{word-spacing:39.744397px;}
.ws2ae{word-spacing:39.750397px;}
.ws2e3{word-spacing:39.768398px;}
.ws1fc{word-spacing:39.786398px;}
.wsb3{word-spacing:39.792398px;}
.ws32e{word-spacing:39.804398px;}
.ws2e{word-spacing:39.822398px;}
.ws16f{word-spacing:39.828398px;}
.ws2d8{word-spacing:39.834398px;}
.ws289{word-spacing:39.858399px;}
.ws2b2{word-spacing:39.888399px;}
.wsb2{word-spacing:39.924399px;}
.ws1b9{word-spacing:39.930399px;}
.ws76{word-spacing:39.936399px;}
.ws2c7{word-spacing:39.954400px;}
.ws225{word-spacing:39.966400px;}
.ws86{word-spacing:39.972400px;}
.ws1fd{word-spacing:39.990400px;}
.ws171{word-spacing:40.014400px;}
.wsf7{word-spacing:40.032400px;}
.ws2e4{word-spacing:40.038400px;}
.ws233{word-spacing:40.050400px;}
.ws226{word-spacing:40.266403px;}
.ws1ac{word-spacing:40.344403px;}
.ws54{word-spacing:40.482405px;}
.ws218{word-spacing:40.692407px;}
.ws32f{word-spacing:40.728407px;}
.ws62{word-spacing:51.019200px;}
.ws31d{word-spacing:79.581321px;}
.ws325{word-spacing:79.583600px;}
.ws32b{word-spacing:79.701061px;}
.ws322{word-spacing:79.710536px;}
.ws22b{word-spacing:120.896244px;}
.ws22c{word-spacing:122.334786px;}
.ws22a{word-spacing:123.450390px;}
.wsa{word-spacing:361.750055px;}
.wseb{word-spacing:956.023250px;}
._24{margin-left:-519.344931px;}
._23{margin-left:-175.550515px;}
._14{margin-left:-41.424414px;}
._15{margin-left:-40.050401px;}
._26{margin-left:-26.845947px;}
._22{margin-left:-19.980200px;}
._29{margin-left:-17.361000px;}
._25{margin-left:-13.397400px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._b{width:1.152012px;}
._0{width:5.587200px;}
._28{width:12.441600px;}
._18{width:13.591800px;}
._8{width:15.096151px;}
._7{width:16.980170px;}
._e{width:18.216182px;}
._1d{width:19.530195px;}
._9{width:20.676207px;}
._1c{width:22.584226px;}
._f{width:23.688237px;}
._10{width:25.200252px;}
._4{width:26.995800px;}
._11{width:28.686287px;}
._2a{width:29.691626px;}
._a{width:30.714307px;}
._1f{width:31.728317px;}
._12{width:32.868329px;}
._20{width:33.930339px;}
._17{width:35.244352px;}
._19{width:37.206000px;}
._d{width:38.610386px;}
._1b{width:39.612396px;}
._1e{width:40.680407px;}
._c{width:41.730417px;}
._16{width:43.020430px;}
._27{width:79.777037px;}
._13{width:121.199880px;}
._21{width:146.283980px;}
._6{width:275.809540px;}
._5{width:457.687169px;}
._2c{width:620.640000px;}
._1a{width:914.276173px;}
._2b{width:997.704000px;}
.fc7{color:rgb(0,68,151);}
.fc4{color:rgb(84,148,214);}
.fc3{color:rgb(44,71,163);}
.fc2{color:rgb(44,71,163);}
.fc8{color:rgb(95,95,95);}
.fc6{color:rgb(56,113,193);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs17{font-size:30.060000px;}
.fs1d{font-size:36.000000px;}
.fs11{font-size:36.000600px;}
.fs14{font-size:36.179400px;}
.fsf{font-size:37.800000px;}
.fs19{font-size:39.186000px;}
.fsd{font-size:39.996000px;}
.fs13{font-size:40.200000px;}
.fs9{font-size:41.249400px;}
.fs16{font-size:41.940000px;}
.fs1b{font-size:42.000000px;}
.fs1c{font-size:42.938335px;}
.fse{font-size:43.200000px;}
.fs10{font-size:44.999400px;}
.fs7{font-size:47.999400px;}
.fs12{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1a{font-size:57.000000px;}
.fs15{font-size:59.939400px;}
.fsa{font-size:60.000600px;}
.fsc{font-size:63.000600px;}
.fs2{font-size:66.000000px;}
.fs18{font-size:71.249400px;}
.fs8{font-size:74.999400px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs6{font-size:90.000600px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:101.999400px;}
.fsb{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y318{bottom:4.948500px;}
.y1c0{bottom:5.216100px;}
.yc{bottom:8.040000px;}
.ye0{bottom:36.056687px;}
.y77{bottom:40.988987px;}
.ydf{bottom:45.836250px;}
.y75{bottom:48.642345px;}
.y76{bottom:50.768550px;}
.y16{bottom:55.635000px;}
.y74{bottom:57.316500px;}
.y1f8{bottom:57.432600px;}
.y36b{bottom:73.375200px;}
.y3af{bottom:73.378650px;}
.y10f{bottom:73.385185px;}
.y166{bottom:73.388937px;}
.y1aa{bottom:73.388953px;}
.y253{bottom:73.389000px;}
.yfa{bottom:73.389080px;}
.yed{bottom:73.389107px;}
.y1c5{bottom:73.389540px;}
.y2f2{bottom:73.390890px;}
.y281{bottom:73.391325px;}
.y121{bottom:73.392365px;}
.y29d{bottom:73.392756px;}
.ybc{bottom:73.398285px;}
.yd2{bottom:73.408785px;}
.y15{bottom:77.715000px;}
.y55{bottom:82.148100px;}
.y53{bottom:82.149979px;}
.y36a{bottom:88.427700px;}
.y54{bottom:88.781100px;}
.y3ae{bottom:88.941450px;}
.y1c4{bottom:89.886705px;}
.y2f1{bottom:89.888055px;}
.y280{bottom:89.888490px;}
.ybb{bottom:89.895450px;}
.yd1{bottom:89.905950px;}
.y165{bottom:89.971603px;}
.y1a9{bottom:89.971618px;}
.y251{bottom:89.972085px;}
.y29c{bottom:89.975422px;}
.y120{bottom:90.230033px;}
.yf9{bottom:90.736754px;}
.yec{bottom:90.736781px;}
.y10e{bottom:91.499367px;}
.y1b{bottom:91.590000px;}
.y405{bottom:94.950000px;}
.y252{bottom:96.604650px;}
.y52{bottom:98.902147px;}
.y14{bottom:99.795000px;}
.y369{bottom:103.395150px;}
.y3ad{bottom:104.419200px;}
.y1c3{bottom:106.383870px;}
.y2f0{bottom:106.385220px;}
.y27f{bottom:106.385655px;}
.yba{bottom:106.392615px;}
.yd0{bottom:106.403115px;}
.y250{bottom:106.469685px;}
.y164{bottom:106.554268px;}
.y1a8{bottom:106.554284px;}
.y29b{bottom:106.558088px;}
.y11f{bottom:107.067701px;}
.yeb{bottom:107.660052px;}
.yf8{bottom:108.000427px;}
.y10d{bottom:109.528047px;}
.y1a{bottom:113.670000px;}
.y51{bottom:115.654314px;}
.y368{bottom:118.362600px;}
.y1bf{bottom:119.224500px;}
.y3ac{bottom:119.896950px;}
.y2ef{bottom:122.882385px;}
.y27e{bottom:122.882820px;}
.yb9{bottom:122.889780px;}
.ycf{bottom:122.900280px;}
.y24f{bottom:122.968305px;}
.y29a{bottom:123.055253px;}
.y163{bottom:123.136934px;}
.y1a7{bottom:123.137479px;}
.y11e{bottom:123.819869px;}
.y1bc{bottom:124.412745px;}
.y1be{bottom:124.440600px;}
.yea{bottom:125.093227px;}
.yf5{bottom:125.347604px;}
.yf7{bottom:125.348100px;}
.y10c{bottom:127.556727px;}
.y1c2{bottom:128.220366px;}
.y1bd{bottom:131.505600px;}
.yf6{bottom:131.981100px;}
.y50{bottom:132.406482px;}
.y367{bottom:133.415100px;}
.y10{bottom:133.935000px;}
.y3ab{bottom:134.949450px;}
.y19{bottom:135.750000px;}
.y1c1{bottom:137.355600px;}
.y2ee{bottom:139.379550px;}
.y27d{bottom:139.379985px;}
.y2ec{bottom:139.381859px;}
.yb8{bottom:139.386945px;}
.yce{bottom:139.397445px;}
.y24e{bottom:139.465470px;}
.y299{bottom:139.637919px;}
.y162{bottom:139.720090px;}
.y1a6{bottom:139.720145px;}
.y11d{bottom:140.657537px;}
.ye9{bottom:142.441603px;}
.yf4{bottom:142.695277px;}
.y10b{bottom:145.670908px;}
.y2ed{bottom:146.097600px;}
.y1bb{bottom:146.948970px;}
.y366{bottom:148.382550px;}
.y4f{bottom:149.244150px;}
.y3aa{bottom:150.427200px;}
.y17{bottom:154.950000px;}
.y332{bottom:155.878589px;}
.y2eb{bottom:155.879024px;}
.y27c{bottom:155.879459px;}
.yb7{bottom:155.884110px;}
.ycd{bottom:155.894610px;}
.y24d{bottom:155.962635px;}
.yf{bottom:156.015000px;}
.y298{bottom:156.135084px;}
.y161{bottom:156.302756px;}
.y1a5{bottom:156.302811px;}
.y3ef{bottom:157.395150px;}
.y11c{bottom:157.495206px;}
.y18{bottom:157.830000px;}
.ye8{bottom:159.789277px;}
.yf3{bottom:159.959473px;}
.y365{bottom:163.435050px;}
.y1ba{bottom:163.446135px;}
.y10a{bottom:163.699589px;}
.y4d{bottom:165.828661px;}
.y3a9{bottom:165.904950px;}
.y404{bottom:166.200000px;}
.y71{bottom:170.333850px;}
.y3ee{bottom:172.362600px;}
.y2ea{bottom:172.376189px;}
.y27b{bottom:172.376624px;}
.yb6{bottom:172.381275px;}
.ycc{bottom:172.391775px;}
.y24c{bottom:172.460804px;}
.y331{bottom:172.461255px;}
.y4e{bottom:172.544850px;}
.y297{bottom:172.717749px;}
.y160{bottom:172.885422px;}
.y1a4{bottom:172.885477px;}
.y11b{bottom:174.247373px;}
.ye7{bottom:177.136950px;}
.ye5{bottom:177.138356px;}
.yf2{bottom:177.307146px;}
.y403{bottom:178.200000px;}
.y364{bottom:178.402500px;}
.y1b9{bottom:179.943300px;}
.y1b7{bottom:179.946495px;}
.y3a8{bottom:180.957450px;}
.y109{bottom:181.728269px;}
.y4c{bottom:182.666329px;}
.ye6{bottom:183.770100px;}
.y1b8{bottom:186.576300px;}
.y3ed{bottom:187.415100px;}
.y24b{bottom:188.957969px;}
.y330{bottom:188.958420px;}
.y2e9{bottom:188.958855px;}
.y27a{bottom:188.959290px;}
.yb5{bottom:188.963940px;}
.ycb{bottom:188.974441px;}
.y296{bottom:189.214914px;}
.y15f{bottom:189.468088px;}
.y1a3{bottom:189.468143px;}
.y11a{bottom:191.085041px;}
.y402{bottom:193.200000px;}
.y363{bottom:193.369950px;}
.ye4{bottom:194.486030px;}
.yf1{bottom:194.570819px;}
.y3a7{bottom:196.435200px;}
.y1b6{bottom:196.443660px;}
.y4b{bottom:199.418497px;}
.y108{bottom:199.842450px;}
.y3ec{bottom:202.382550px;}
.y24a{bottom:205.455134px;}
.y32f{bottom:205.455585px;}
.y2e8{bottom:205.456020px;}
.y279{bottom:205.456455px;}
.yb4{bottom:205.461105px;}
.yca{bottom:205.471605px;}
.y295{bottom:205.797580px;}
.y1a2{bottom:205.965308px;}
.y15e{bottom:206.050753px;}
.y119{bottom:207.922710px;}
.y362{bottom:208.422450px;}
.y70{bottom:208.601534px;}
.ye3{bottom:211.833703px;}
.y3a6{bottom:211.912950px;}
.yf0{bottom:211.918493px;}
.y1b5{bottom:212.940825px;}
.y401{bottom:214.200000px;}
.y4a{bottom:216.170664px;}
.y106{bottom:217.102617px;}
.y3eb{bottom:217.435050px;}
.y2e7{bottom:221.953185px;}
.y278{bottom:221.953620px;}
.y32e{bottom:221.954205px;}
.yb3{bottom:221.958270px;}
.yc9{bottom:221.968770px;}
.y249{bottom:222.038235px;}
.y294{bottom:222.294745px;}
.y15d{bottom:222.547918px;}
.y1a1{bottom:222.547973px;}
.y361{bottom:223.389900px;}
.y107{bottom:223.738500px;}
.y118{bottom:224.674877px;}
.y6d{bottom:225.183733px;}
.y6f{bottom:225.184200px;}
.y3a5{bottom:227.390700px;}
.ye2{bottom:229.181377px;}
.yef{bottom:229.266166px;}
.y1b4{bottom:229.437990px;}
.y400{bottom:229.950000px;}
.y6e{bottom:231.902250px;}
.y3ea{bottom:232.402500px;}
.y49{bottom:232.922832px;}
.y105{bottom:235.131297px;}
.y360{bottom:238.442400px;}
.y2e6{bottom:238.450350px;}
.y277{bottom:238.450785px;}
.y32d{bottom:238.451370px;}
.yb2{bottom:238.455435px;}
.yc8{bottom:238.465935px;}
.y248{bottom:238.536270px;}
.y293{bottom:238.877411px;}
.y15c{bottom:239.130584px;}
.y1a0{bottom:239.130639px;}
.y117{bottom:241.512546px;}
.y6a{bottom:241.851567px;}
.y6c{bottom:241.851900px;}
.y3a4{bottom:242.443200px;}
.y1b3{bottom:245.935155px;}
.ye1{bottom:246.529050px;}
.yee{bottom:246.529839px;}
.y3e9{bottom:247.369950px;}
.y6b{bottom:248.485050px;}
.y48{bottom:249.760500px;}
.y46{bottom:249.761082px;}
.y104{bottom:253.159977px;}
.y35f{bottom:253.409850px;}
.y276{bottom:254.947950px;}
.y32c{bottom:254.948535px;}
.yb1{bottom:254.952600px;}
.y274{bottom:254.955946px;}
.yc7{bottom:254.963100px;}
.y247{bottom:255.033435px;}
.y2e5{bottom:255.458250px;}
.y292{bottom:255.460077px;}
.y19f{bottom:255.713305px;}
.y15b{bottom:255.716498px;}
.y47{bottom:256.393650px;}
.y3a3{bottom:257.920950px;}
.y116{bottom:258.350214px;}
.y69{bottom:258.519734px;}
.y275{bottom:261.581100px;}
.y3e8{bottom:262.422450px;}
.y1b2{bottom:262.432320px;}
.y3ff{bottom:263.700000px;}
.y45{bottom:266.513250px;}
.y43{bottom:266.514565px;}
.y35e{bottom:268.377300px;}
.y103{bottom:271.274158px;}
.y32b{bottom:271.445700px;}
.yb0{bottom:271.449765px;}
.y273{bottom:271.453110px;}
.yc6{bottom:271.460265px;}
.y246{bottom:271.532490px;}
.y291{bottom:271.957242px;}
.y19e{bottom:272.295971px;}
.y15a{bottom:272.299164px;}
.y44{bottom:273.146400px;}
.y3a2{bottom:273.398700px;}
.y115{bottom:275.102382px;}
.y68{bottom:275.102400px;}
.y3fe{bottom:275.700000px;}
.y3e7{bottom:277.389900px;}
.yff{bottom:278.758500px;}
.y1b1{bottom:278.929485px;}
.y42{bottom:283.266732px;}
.y35d{bottom:283.429800px;}
.yaf{bottom:287.946930px;}
.y272{bottom:287.950275px;}
.yc5{bottom:287.957430px;}
.y245{bottom:288.029655px;}
.y32a{bottom:288.198300px;}
.y3a1{bottom:288.451200px;}
.y290{bottom:288.539908px;}
.y19d{bottom:288.878637px;}
.y159{bottom:288.881830px;}
.y102{bottom:289.302839px;}
.y3fd{bottom:290.700000px;}
.y66{bottom:291.769633px;}
.y114{bottom:291.940050px;}
.y3e6{bottom:292.442400px;}
.yfe{bottom:293.810400px;}
.y1b0{bottom:295.428975px;}
.y35c{bottom:298.397250px;}
.y2e4{bottom:298.406445px;}
.y67{bottom:298.488150px;}
.y41{bottom:300.018900px;}
.y329{bottom:302.399850px;}
.y3a0{bottom:303.928950px;}
.yae{bottom:304.444095px;}
.y271{bottom:304.447440px;}
.yc4{bottom:304.454595px;}
.y244{bottom:304.526820px;}
.y28f{bottom:305.037073px;}
.y19c{bottom:305.461303px;}
.y158{bottom:305.464496px;}
.y101{bottom:307.331519px;}
.y3e5{bottom:307.409850px;}
.y63{bottom:308.437317px;}
.y65{bottom:308.437800px;}
.y112{bottom:308.608032px;}
.yfd{bottom:308.776800px;}
.y3fc{bottom:311.700000px;}
.y1af{bottom:311.926140px;}
.y35b{bottom:313.449750px;}
.y2e3{bottom:314.903610px;}
.y64{bottom:315.070800px;}
.y113{bottom:315.240900px;}
.y3f{bottom:316.690358px;}
.y39f{bottom:319.406700px;}
.yad{bottom:320.941260px;}
.y270{bottom:320.944605px;}
.yc3{bottom:320.951760px;}
.y243{bottom:321.023985px;}
.y28e{bottom:321.619738px;}
.y19b{bottom:322.043968px;}
.y157{bottom:322.047161px;}
.y3e4{bottom:322.377300px;}
.y40{bottom:323.319600px;}
.yfc{bottom:323.829300px;}
.y62{bottom:325.105484px;}
.y110{bottom:325.443206px;}
.y100{bottom:325.445700px;}
.y3fb{bottom:327.450000px;}
.y35a{bottom:328.417200px;}
.y1ae{bottom:328.423305px;}
.y2e2{bottom:331.400775px;}
.y111{bottom:332.078700px;}
.y3e{bottom:333.442526px;}
.y39e{bottom:334.459200px;}
.y3e3{bottom:337.429800px;}
.yac{bottom:337.438425px;}
.y26f{bottom:337.441770px;}
.yc2{bottom:337.448925px;}
.y242{bottom:337.521150px;}
.y28d{bottom:338.116903px;}
.y156{bottom:338.544326px;}
.y19a{bottom:338.626634px;}
.yfb{bottom:338.796750px;}
.y61{bottom:341.688150px;}
.y359{bottom:343.384650px;}
.ya{bottom:344.680500px;}
.y1ad{bottom:344.920470px;}
.y328{bottom:345.092201px;}
.y2e1{bottom:347.897940px;}
.y39d{bottom:349.936950px;}
.y3d{bottom:350.194693px;}
.y3e2{bottom:352.397250px;}
.yab{bottom:353.935590px;}
.y26e{bottom:353.938935px;}
.yc1{bottom:353.946090px;}
.y28c{bottom:354.699569px;}
.y155{bottom:355.126992px;}
.y199{bottom:355.209300px;}
.y197{bottom:355.210312px;}
.y79{bottom:357.195000px;}
.y128{bottom:357.672450px;}
.y5f{bottom:358.354102px;}
.y358{bottom:358.437150px;}
.y3fa{bottom:361.200000px;}
.y1ac{bottom:361.417635px;}
.y327{bottom:361.589366px;}
.y198{bottom:361.842450px;}
.y2e0{bottom:364.395105px;}
.y60{bottom:364.988850px;}
.y39c{bottom:365.391750px;}
.y1f7{bottom:365.413500px;}
.y223{bottom:366.584465px;}
.y204{bottom:366.596453px;}
.y3c{bottom:367.032362px;}
.y240{bottom:367.158385px;}
.y221{bottom:367.170373px;}
.y3e1{bottom:367.364700px;}
.y241{bottom:369.070800px;}
.y23f{bottom:369.768746px;}
.y220{bottom:369.780734px;}
.yaa{bottom:370.432755px;}
.y26d{bottom:370.436100px;}
.yc0{bottom:370.443255px;}
.y28b{bottom:371.282235px;}
.y196{bottom:371.707477px;}
.y154{bottom:371.709658px;}
.y127{bottom:372.639900px;}
.y3f9{bottom:373.200000px;}
.y357{bottom:373.404600px;}
.y23e{bottom:373.864105px;}
.y21f{bottom:373.876093px;}
.y202{bottom:374.651512px;}
.y5e{bottom:375.022268px;}
.y1ab{bottom:377.914800px;}
.y23d{bottom:377.959465px;}
.y21e{bottom:377.971453px;}
.y326{bottom:378.086531px;}
.y39b{bottom:380.359200px;}
.y1fb{bottom:380.862299px;}
.y1f6{bottom:380.862387px;}
.y1fe{bottom:380.863798px;}
.y2df{bottom:380.892270px;}
.y23c{bottom:382.054824px;}
.y21d{bottom:382.066812px;}
.y3e0{bottom:382.417200px;}
.y3b{bottom:383.784529px;}
.y23b{bottom:386.150184px;}
.y21c{bottom:386.162172px;}
.yd{bottom:386.490000px;}
.ya9{bottom:386.929920px;}
.y26c{bottom:386.933265px;}
.ybf{bottom:386.940420px;}
.y126{bottom:387.692400px;}
.y28a{bottom:387.785469px;}
.y3f8{bottom:388.200000px;}
.y195{bottom:388.290143px;}
.y153{bottom:388.292324px;}
.y356{bottom:388.457100px;}
.y23a{bottom:390.245544px;}
.y21b{bottom:390.257531px;}
.y5d{bottom:391.604934px;}
.y1f2{bottom:392.967149px;}
.y239{bottom:394.340903px;}
.y21a{bottom:394.352891px;}
.y325{bottom:394.583696px;}
.y9{bottom:395.689500px;}
.y39a{bottom:395.922000px;}
.y3df{bottom:397.384650px;}
.y2de{bottom:397.389435px;}
.y238{bottom:398.436263px;}
.y219{bottom:398.448250px;}
.y3a{bottom:400.536697px;}
.y237{bottom:402.531622px;}
.y218{bottom:402.543610px;}
.y125{bottom:402.659850px;}
.y355{bottom:403.424550px;}
.ya8{bottom:403.427085px;}
.y26b{bottom:403.430430px;}
.ybe{bottom:403.437585px;}
.y289{bottom:404.368135px;}
.y194{bottom:404.872808px;}
.y152{bottom:404.874990px;}
.y236{bottom:406.626982px;}
.y217{bottom:406.638969px;}
.y5c{bottom:408.273101px;}
.y78{bottom:408.525000px;}
.y3f7{bottom:409.200000px;}
.y235{bottom:410.722341px;}
.y216{bottom:410.734329px;}
.y399{bottom:410.889450px;}
.y324{bottom:411.080861px;}
.y1fd{bottom:411.507816px;}
.y3de{bottom:412.437150px;}
.y2dd{bottom:413.886600px;}
.y2db{bottom:413.887035px;}
.y234{bottom:414.817701px;}
.y215{bottom:414.829688px;}
.y201{bottom:416.860977px;}
.y39{bottom:417.288864px;}
.y124{bottom:417.627300px;}
.y354{bottom:418.392000px;}
.y233{bottom:418.913060px;}
.y214{bottom:418.925048px;}
.y262{bottom:419.923350px;}
.ya7{bottom:419.924835px;}
.y26a{bottom:419.927595px;}
.ybd{bottom:419.934750px;}
.y2dc{bottom:420.604650px;}
.y288{bottom:420.865300px;}
.y193{bottom:421.455474px;}
.y151{bottom:421.457655px;}
.y1f3{bottom:422.846940px;}
.y232{bottom:423.008420px;}
.y213{bottom:423.020407px;}
.y1fa{bottom:423.071625px;}
.y1f5{bottom:423.071713px;}
.y5b{bottom:424.941267px;}
.y3f6{bottom:424.950000px;}
.y398{bottom:426.367200px;}
.y231{bottom:427.103779px;}
.y212{bottom:427.115767px;}
.y3dd{bottom:427.404600px;}
.y323{bottom:427.578026px;}
.y2da{bottom:430.384635px;}
.y230{bottom:431.199139px;}
.y211{bottom:431.211126px;}
.y123{bottom:432.679800px;}
.y353{bottom:433.444500px;}
.y38{bottom:434.126532px;}
.yb{bottom:434.850000px;}
.y261{bottom:434.890800px;}
.y1f1{bottom:435.176475px;}
.y22f{bottom:435.294498px;}
.y210{bottom:435.306486px;}
.ya6{bottom:436.422435px;}
.y269{bottom:436.424760px;}
.y287{bottom:437.447966px;}
.y150{bottom:437.954820px;}
.y192{bottom:438.038140px;}
.y22e{bottom:439.389858px;}
.y20f{bottom:439.401845px;}
.y5a{bottom:441.609434px;}
.y397{bottom:441.930000px;}
.y3dc{bottom:442.372050px;}
.y22d{bottom:443.485217px;}
.y20e{bottom:443.497205px;}
.y322{bottom:445.351704px;}
.y8{bottom:446.698500px;}
.y2d9{bottom:446.881800px;}
.y2d7{bottom:446.890800px;}
.y22c{bottom:447.580577px;}
.y20d{bottom:447.592564px;}
.y122{bottom:447.647250px;}
.y352{bottom:448.411950px;}
.y260{bottom:449.853450px;}
.y37{bottom:450.878700px;}
.y22b{bottom:451.675936px;}
.y20c{bottom:451.687924px;}
.ya5{bottom:452.919600px;}
.y268{bottom:452.921925px;}
.y2d8{bottom:453.600000px;}
.y1fc{bottom:453.717141px;}
.y191{bottom:454.535305px;}
.y14f{bottom:454.537486px;}
.y22a{bottom:455.771296px;}
.y20b{bottom:455.783283px;}
.y396{bottom:456.897450px;}
.y3db{bottom:457.424550px;}
.y59{bottom:458.192100px;}
.y57{bottom:458.192860px;}
.y3f5{bottom:458.700000px;}
.y200{bottom:459.071490px;}
.y229{bottom:459.866655px;}
.y20a{bottom:459.878643px;}
.y1ff{bottom:461.545950px;}
.y321{bottom:461.848869px;}
.y351{bottom:463.379400px;}
.y2d6{bottom:463.387965px;}
.y228{bottom:463.962015px;}
.y209{bottom:463.974002px;}
.y25f{bottom:464.905950px;}
.y58{bottom:464.910150px;}
.ydd{bottom:465.162600px;}
.y1f9{bottom:465.280950px;}
.y1f4{bottom:465.281038px;}
.y227{bottom:468.057374px;}
.y208{bottom:468.069362px;}
.y36{bottom:468.226650px;}
.ya4{bottom:468.481800px;}
.y267{bottom:469.419090px;}
.y2b3{bottom:469.666500px;}
.y3f4{bottom:470.700000px;}
.y190{bottom:471.117971px;}
.y14e{bottom:471.120152px;}
.y226{bottom:472.152734px;}
.y207{bottom:472.164721px;}
.y395{bottom:472.375200px;}
.y3da{bottom:472.392000px;}
.y56{bottom:474.861027px;}
.y225{bottom:476.248093px;}
.y206{bottom:476.260081px;}
.y350{bottom:477.240900px;}
.y1f0{bottom:477.385800px;}
.y25e{bottom:479.873400px;}
.y2d5{bottom:479.885130px;}
.ydc{bottom:480.130050px;}
.y224{bottom:480.343453px;}
.y205{bottom:480.355440px;}
.y320{bottom:483.449085px;}
.y222{bottom:484.438812px;}
.y203{bottom:484.450800px;}
.y2b2{bottom:484.719000px;}
.y3f3{bottom:485.700000px;}
.y266{bottom:485.916255px;}
.y3d9{bottom:487.444500px;}
.y18f{bottom:487.700637px;}
.y14d{bottom:487.702818px;}
.y394{bottom:487.938000px;}
.y11{bottom:488.055000px;}
.y25d{bottom:494.840850px;}
.ydb{bottom:495.182550px;}
.y2d4{bottom:496.382295px;}
.y7{bottom:497.707500px;}
.y2b1{bottom:499.686450px;}
.y31f{bottom:499.946250px;}
.y3d8{bottom:502.411950px;}
.y265{bottom:502.413420px;}
.y393{bottom:502.905450px;}
.y18e{bottom:504.283303px;}
.y14c{bottom:504.285484px;}
.y1ee{bottom:506.670105px;}
.y3f2{bottom:506.700000px;}
.ya3{bottom:506.927596px;}
.y25c{bottom:509.893350px;}
.yda{bottom:510.150000px;}
.y2d3{bottom:512.879460px;}
.y1ef{bottom:513.297600px;}
.y2b0{bottom:514.653900px;}
.y34f{bottom:515.083350px;}
.y31d{bottom:516.699150px;}
.y3d7{bottom:517.358700px;}
.y392{bottom:518.383200px;}
.y31e{bottom:518.655000px;}
.y264{bottom:518.910585px;}
.y18d{bottom:520.865968px;}
.y14b{bottom:520.868150px;}
.y3f1{bottom:522.450000px;}
.y1ed{bottom:523.167270px;}
.ya2{bottom:523.424760px;}
.y25b{bottom:524.860800px;}
.yd9{bottom:525.117450px;}
.y35{bottom:526.656150px;}
.y2d2{bottom:529.462125px;}
.y2af{bottom:529.706400px;}
.y34e{bottom:530.475450px;}
.y31c{bottom:530.985750px;}
.y3d6{bottom:532.411200px;}
.y391{bottom:533.946000px;}
.y263{bottom:535.407750px;}
.y18c{bottom:537.448634px;}
.y14a{bottom:537.450815px;}
.y12{bottom:538.230000px;}
.y1ec{bottom:539.664434px;}
.y25a{bottom:539.913300px;}
.ya1{bottom:539.921925px;}
.yd8{bottom:540.168450px;}
.y34{bottom:543.153315px;}
.y2ae{bottom:544.673850px;}
.y2d1{bottom:545.959290px;}
.y3d5{bottom:547.378650px;}
.y6{bottom:548.716500px;}
.y390{bottom:549.423750px;}
.y149{bottom:553.947980px;}
.y18b{bottom:554.032399px;}
.y259{bottom:554.880750px;}
.yd7{bottom:555.135900px;}
.y1eb{bottom:556.161599px;}
.ya0{bottom:556.419090px;}
.y3f0{bottom:557.700000px;}
.y2ad{bottom:559.641300px;}
.y3d4{bottom:562.431150px;}
.y2d0{bottom:562.456455px;}
.y33{bottom:564.158025px;}
.y38f{bottom:564.391200px;}
.y34d{bottom:568.318050px;}
.y31b{bottom:568.487672px;}
.y258{bottom:569.848200px;}
.yd6{bottom:570.188400px;}
.y148{bottom:570.530646px;}
.y18a{bottom:570.615064px;}
.y1ea{bottom:572.658764px;}
.y9f{bottom:572.916255px;}
.y2ac{bottom:574.693800px;}
.y3d3{bottom:577.398600px;}
.y2cf{bottom:578.953620px;}
.y38e{bottom:579.868950px;}
.y32{bottom:580.655190px;}
.y317{bottom:581.329500px;}
.y31a{bottom:582.543000px;}
.y257{bottom:584.899050px;}
.yd5{bottom:585.155850px;}
.y316{bottom:586.262024px;}
.y147{bottom:587.113312px;}
.y189{bottom:587.197730px;}
.y1e9{bottom:589.155929px;}
.y9e{bottom:589.413420px;}
.y1c{bottom:589.605000px;}
.y2ab{bottom:589.661250px;}
.y3d2{bottom:592.366050px;}
.y319{bottom:593.028000px;}
.y2a7{bottom:594.250200px;}
.y38d{bottom:595.431750px;}
.y2ce{bottom:595.450785px;}
.y31{bottom:597.152355px;}
.y5{bottom:599.725500px;}
.y256{bottom:599.866500px;}
.yd4{bottom:600.122250px;}
.y146{bottom:603.695978px;}
.y188{bottom:603.780396px;}
.y2aa{bottom:604.713750px;}
.y34c{bottom:605.396505px;}
.y1e8{bottom:605.653094px;}
.y315{bottom:605.906220px;}
.y9d{bottom:605.910585px;}
.y3d1{bottom:607.418550px;}
.y2a6{bottom:609.302700px;}
.y38c{bottom:610.909500px;}
.y2cd{bottom:611.947950px;}
.y30{bottom:613.649520px;}
.y255{bottom:614.919000px;}
.yd3{bottom:615.174750px;}
.y2a9{bottom:619.681200px;}
.y187{bottom:620.277561px;}
.y145{bottom:620.278644px;}
.y34b{bottom:621.893670px;}
.y1e7{bottom:622.235760px;}
.y3d0{bottom:622.386000px;}
.y314{bottom:622.403385px;}
.y9c{bottom:622.407750px;}
.y2a5{bottom:624.270150px;}
.y38b{bottom:625.876950px;}
.y2cc{bottom:628.445115px;}
.y254{bottom:629.886450px;}
.y2f{bottom:630.146685px;}
.ye{bottom:631.920000px;}
.y2a8{bottom:634.648650px;}
.y186{bottom:636.860227px;}
.y144{bottom:636.861309px;}
.y3cf{bottom:637.353450px;}
.y34a{bottom:638.390835px;}
.y1e6{bottom:638.732925px;}
.y313{bottom:638.900550px;}
.y311{bottom:638.903895px;}
.y9b{bottom:638.904915px;}
.y2a4{bottom:639.237600px;}
.y38a{bottom:641.439750px;}
.y2cb{bottom:644.942280px;}
.y312{bottom:645.533700px;}
.y2e{bottom:646.643850px;}
.y3ce{bottom:652.405950px;}
.y185{bottom:653.442893px;}
.y143{bottom:653.443975px;}
.y2a3{bottom:654.290100px;}
.y349{bottom:654.888000px;}
.y1e5{bottom:655.230090px;}
.y310{bottom:655.401060px;}
.y9a{bottom:655.402080px;}
.y389{bottom:656.917500px;}
.y2ca{bottom:661.439445px;}
.y2d{bottom:663.141015px;}
.y3cd{bottom:667.373400px;}
.y2a2{bottom:669.257550px;}
.y184{bottom:670.025558px;}
.y142{bottom:670.026641px;}
.y348{bottom:671.725800px;}
.y1e4{bottom:671.727255px;}
.y30f{bottom:671.898225px;}
.y99{bottom:671.899245px;}
.y388{bottom:672.395250px;}
.y2c9{bottom:677.936610px;}
.y2c{bottom:679.638180px;}
.y3cc{bottom:682.425900px;}
.y2a1{bottom:684.310050px;}
.y141{bottom:686.523806px;}
.y183{bottom:686.608224px;}
.y387{bottom:687.447750px;}
.y1e3{bottom:688.224420px;}
.y30e{bottom:688.395390px;}
.y98{bottom:688.396410px;}
.y2c8{bottom:694.433775px;}
.y2b{bottom:696.135345px;}
.y3cb{bottom:697.393350px;}
.y2a0{bottom:699.277500px;}
.y386{bottom:702.925500px;}
.y140{bottom:703.106472px;}
.y182{bottom:703.190890px;}
.y347{bottom:703.870410px;}
.y1e2{bottom:704.721585px;}
.y30d{bottom:704.892555px;}
.y97{bottom:704.893575px;}
.y2c7{bottom:710.930940px;}
.y3ca{bottom:712.360800px;}
.y2a{bottom:712.632510px;}
.y29f{bottom:714.244950px;}
.y385{bottom:718.403250px;}
.y13f{bottom:719.689138px;}
.y181{bottom:719.773556px;}
.y346{bottom:720.367575px;}
.y1e1{bottom:721.218750px;}
.y1df{bottom:721.224824px;}
.y30c{bottom:721.389720px;}
.y96{bottom:721.390740px;}
.y3c9{bottom:727.413300px;}
.y2c6{bottom:727.428105px;}
.y1e0{bottom:727.936950px;}
.y29{bottom:729.129675px;}
.y29e{bottom:729.297450px;}
.y384{bottom:733.370700px;}
.y13e{bottom:736.271804px;}
.y180{bottom:736.356222px;}
.y1de{bottom:737.721989px;}
.y30b{bottom:737.886885px;}
.y95{bottom:737.887905px;}
.y3c8{bottom:742.380750px;}
.y345{bottom:742.905255px;}
.y2c5{bottom:743.925270px;}
.y28{bottom:745.626840px;}
.y383{bottom:748.933500px;}
.y13d{bottom:752.854469px;}
.y17f{bottom:752.938888px;}
.y1dd{bottom:754.219154px;}
.y94{bottom:754.385070px;}
.y30a{bottom:754.387814px;}
.y3c7{bottom:757.433250px;}
.y344{bottom:759.402420px;}
.y2c4{bottom:760.422435px;}
.y27{bottom:762.124005px;}
.y382{bottom:764.411250px;}
.y17e{bottom:769.436053px;}
.y13c{bottom:769.437135px;}
.y1dc{bottom:770.801820px;}
.y93{bottom:770.882235px;}
.y309{bottom:770.884979px;}
.y3c6{bottom:772.400700px;}
.y343{bottom:775.899585px;}
.y2c3{bottom:776.919600px;}
.y4{bottom:778.225500px;}
.y26{bottom:778.621170px;}
.y381{bottom:779.378700px;}
.y17d{bottom:786.018718px;}
.y13b{bottom:786.019801px;}
.y1db{bottom:787.298984px;}
.y3c5{bottom:787.368150px;}
.y92{bottom:787.379400px;}
.y308{bottom:787.382144px;}
.y342{bottom:792.396750px;}
.y2c2{bottom:794.012400px;}
.y380{bottom:794.941500px;}
.y25{bottom:795.118335px;}
.y3c4{bottom:802.420650px;}
.y17c{bottom:802.601384px;}
.y13a{bottom:802.602467px;}
.y1da{bottom:803.796149px;}
.y90{bottom:803.877870px;}
.y307{bottom:803.879309px;}
.y341{bottom:808.897110px;}
.y37f{bottom:810.419250px;}
.y91{bottom:810.595050px;}
.y24{bottom:811.615500px;}
.y13{bottom:815.670000px;}
.y3c3{bottom:817.388100px;}
.y17b{bottom:819.184050px;}
.y139{bottom:819.185133px;}
.y1d9{bottom:820.293314px;}
.y8f{bottom:820.375035px;}
.y306{bottom:820.376474px;}
.y37e{bottom:825.386700px;}
.y340{bottom:825.394275px;}
.y3c2{bottom:832.440600px;}
.y179{bottom:835.767222px;}
.y138{bottom:835.767799px;}
.y1d8{bottom:836.790479px;}
.y8e{bottom:836.872200px;}
.y8c{bottom:836.872769px;}
.y305{bottom:836.873639px;}
.y2c1{bottom:836.877420px;}
.y37d{bottom:840.949500px;}
.y33f{bottom:841.891440px;}
.y17a{bottom:842.399850px;}
.y8d{bottom:843.590400px;}
.y22{bottom:846.821850px;}
.y3c1{bottom:847.408050px;}
.y23{bottom:848.862750px;}
.y137{bottom:852.264963px;}
.y178{bottom:852.349888px;}
.y1d7{bottom:853.287644px;}
.y8b{bottom:853.369934px;}
.y304{bottom:853.370804px;}
.y2c0{bottom:853.374584px;}
.y37c{bottom:856.427250px;}
.y33e{bottom:858.388605px;}
.y3c0{bottom:862.375500px;}
.y177{bottom:868.847053px;}
.y136{bottom:868.847629px;}
.y1d6{bottom:869.784809px;}
.y8a{bottom:869.952600px;}
.y303{bottom:869.953470px;}
.y2bf{bottom:869.957250px;}
.y88{bottom:869.959140px;}
.y37b{bottom:871.905000px;}
.y33d{bottom:874.885770px;}
.y89{bottom:876.585600px;}
.y3bf{bottom:877.428000px;}
.y176{bottom:885.429718px;}
.y135{bottom:885.430295px;}
.y1d5{bottom:886.281974px;}
.y302{bottom:886.450635px;}
.y2be{bottom:886.454415px;}
.y87{bottom:886.456305px;}
.y37a{bottom:886.872450px;}
.y33c{bottom:891.382935px;}
.y3be{bottom:892.395450px;}
.y21{bottom:900.736800px;}
.y175{bottom:902.012384px;}
.y134{bottom:902.012961px;}
.y379{bottom:902.435250px;}
.y1d4{bottom:902.779139px;}
.y301{bottom:902.949690px;}
.y2bd{bottom:902.951580px;}
.y86{bottom:902.953470px;}
.y3{bottom:905.716500px;}
.y3bd{bottom:907.447950px;}
.y33b{bottom:907.883445px;}
.y378{bottom:917.913000px;}
.y174{bottom:918.595050px;}
.y133{bottom:918.595627px;}
.y172{bottom:918.599389px;}
.y1d3{bottom:919.361805px;}
.y300{bottom:919.446855px;}
.y2bc{bottom:919.448745px;}
.y85{bottom:919.450635px;}
.y3bc{bottom:922.415400px;}
.y33a{bottom:924.380610px;}
.y173{bottom:925.228050px;}
.y377{bottom:933.390750px;}
.y132{bottom:935.178293px;}
.y171{bottom:935.182055px;}
.y1d2{bottom:935.858970px;}
.y2ff{bottom:935.944020px;}
.y2bb{bottom:935.945910px;}
.y84{bottom:935.947800px;}
.y3bb{bottom:937.382850px;}
.y20{bottom:937.388100px;}
.y339{bottom:940.877775px;}
.y376{bottom:948.953550px;}
.y131{bottom:951.760958px;}
.y170{bottom:951.764720px;}
.y1d1{bottom:952.356135px;}
.y3ba{bottom:952.435350px;}
.y2fe{bottom:952.441185px;}
.y2ba{bottom:952.443075px;}
.y83{bottom:952.444965px;}
.y338{bottom:957.374940px;}
.y1f{bottom:958.393500px;}
.y375{bottom:963.904050px;}
.y2{bottom:964.228500px;}
.y3b9{bottom:967.402800px;}
.y130{bottom:968.343624px;}
.y16f{bottom:968.347386px;}
.y1d0{bottom:968.853300px;}
.y1ce{bottom:968.860994px;}
.y2b9{bottom:968.940240px;}
.y2fd{bottom:968.941695px;}
.y82{bottom:968.942130px;}
.y337{bottom:973.872105px;}
.y1cf{bottom:975.486450px;}
.y374{bottom:979.381800px;}
.y3b8{bottom:982.370250px;}
.y12f{bottom:984.926290px;}
.y16e{bottom:984.930052px;}
.y1cd{bottom:985.358159px;}
.y2b8{bottom:985.437405px;}
.y2fc{bottom:985.438860px;}
.y81{bottom:985.439295px;}
.y1e{bottom:988.412259px;}
.y1{bottom:989.716500px;}
.y336{bottom:990.369270px;}
.y373{bottom:994.859550px;}
.y3b7{bottom:997.422750px;}
.y12e{bottom:1001.508956px;}
.y16d{bottom:1001.512718px;}
.y1cc{bottom:1001.855324px;}
.y2b7{bottom:1001.934570px;}
.y2fb{bottom:1001.936025px;}
.y80{bottom:1001.936460px;}
.y335{bottom:1006.866435px;}
.y372{bottom:1010.421000px;}
.y3b6{bottom:1012.390200px;}
.y1d{bottom:1015.454850px;}
.y12d{bottom:1018.006121px;}
.y16c{bottom:1018.009883px;}
.y1cb{bottom:1018.352489px;}
.y2b6{bottom:1018.431735px;}
.y2fa{bottom:1018.433190px;}
.y7f{bottom:1018.433625px;}
.y334{bottom:1023.363600px;}
.y371{bottom:1025.388450px;}
.y3b5{bottom:1027.442700px;}
.y12c{bottom:1034.588787px;}
.y16b{bottom:1034.592549px;}
.y1ca{bottom:1034.849654px;}
.y2b5{bottom:1034.928900px;}
.y2f9{bottom:1034.930355px;}
.y7e{bottom:1034.930790px;}
.y286{bottom:1034.936941px;}
.y333{bottom:1040.286300px;}
.y370{bottom:1040.866200px;}
.y2b4{bottom:1041.561900px;}
.y3b4{bottom:1042.410150px;}
.y12b{bottom:1051.171453px;}
.y16a{bottom:1051.175214px;}
.y2f8{bottom:1051.427520px;}
.y7d{bottom:1051.427955px;}
.y1c9{bottom:1051.432320px;}
.y285{bottom:1051.434105px;}
.y36f{bottom:1056.429000px;}
.y3b3{bottom:1057.377600px;}
.y72{bottom:1064.182500px;}
.y73{bottom:1065.373050px;}
.y12a{bottom:1067.754118px;}
.y169{bottom:1067.757880px;}
.y2f7{bottom:1067.924685px;}
.y7c{bottom:1067.925120px;}
.y1c8{bottom:1067.929485px;}
.y284{bottom:1067.931270px;}
.y36e{bottom:1071.396450px;}
.y3b2{bottom:1072.430100px;}
.y129{bottom:1084.336784px;}
.y168{bottom:1084.340546px;}
.y2f6{bottom:1084.421850px;}
.y7b{bottom:1084.422285px;}
.y2f4{bottom:1084.426110px;}
.y1c7{bottom:1084.426650px;}
.y283{bottom:1084.428435px;}
.y36d{bottom:1086.874200px;}
.y3b1{bottom:1087.397550px;}
.y2f5{bottom:1091.054850px;}
.y7a{bottom:1100.919450px;}
.y167{bottom:1100.923212px;}
.y2f3{bottom:1100.923275px;}
.y1c6{bottom:1100.923815px;}
.y282{bottom:1100.925600px;}
.y36c{bottom:1102.437000px;}
.y3b0{bottom:1102.450050px;}
.yde{bottom:1130.938350px;}
.h39{height:19.303500px;}
.h29{height:21.042000px;}
.h27{height:22.450500px;}
.h25{height:22.941180px;}
.h47{height:24.696000px;}
.h19{height:25.560426px;}
.h2b{height:26.073639px;}
.h18{height:26.838000px;}
.h45{height:28.686000px;}
.h46{height:29.326883px;}
.h3a{height:29.358000px;}
.h14{height:30.316968px;}
.h2a{height:30.609194px;}
.h17{height:30.672000px;}
.h30{height:31.790520px;}
.h20{height:32.444567px;}
.h2c{height:32.786852px;}
.h48{height:32.970000px;}
.h4{height:33.000000px;}
.h3d{height:33.273600px;}
.h16{height:34.079574px;}
.h10{height:34.438944px;}
.he{height:38.934000px;}
.h15{height:40.932000px;}
.h3f{height:41.097000px;}
.h1e{height:41.256000px;}
.h41{height:41.323800px;}
.h42{height:41.338800px;}
.h26{height:41.957580px;}
.h44{height:42.390000px;}
.h1f{height:43.260433px;}
.h28{height:45.434065px;}
.h34{height:45.472894px;}
.h11{height:45.480455px;}
.h3c{height:45.670865px;}
.h12{height:45.840458px;}
.h1b{height:47.109375px;}
.h33{height:47.939813px;}
.h35{height:48.519985px;}
.h38{height:50.005086px;}
.hc{height:53.274000px;}
.h37{height:53.588819px;}
.h24{height:53.933699px;}
.h22{height:53.938606px;}
.h1c{height:53.940060px;}
.h23{height:53.940283px;}
.h1d{height:53.940660px;}
.h21{height:53.941040px;}
.h3{height:58.406250px;}
.hd{height:59.124000px;}
.hf{height:64.800432px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h36{height:69.234433px;}
.h40{height:69.574033px;}
.h13{height:69.574633px;}
.h3e{height:69.575233px;}
.hb{height:73.541567px;}
.h3b{height:73.730520px;}
.h2f{height:73.910862px;}
.h43{height:78.609375px;}
.h32{height:83.808702px;}
.h31{height:83.812896px;}
.h2e{height:91.695294px;}
.h7{height:115.215000px;}
.h2d{height:122.457000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h1a{height:1201.350000px;}
.h9{height:1201.351500px;}
.ha{height:1201.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wd{width:22.791000px;}
.wb{width:119.479500px;}
.wc{width:291.940500px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:911.112000px;}
.wa{width:911.250000px;}
.x3e{left:-1.305450px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x25{left:13.500000px;}
.x26{left:27.000000px;}
.xa{left:77.215800px;}
.x68{left:83.168400px;}
.xf{left:90.651900px;}
.x2a{left:92.182650px;}
.x66{left:104.173200px;}
.xb{left:112.762200px;}
.x67{left:116.163750px;}
.x30{left:119.140200px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xe{left:131.470800px;}
.x5c{left:136.488150px;}
.x3a{left:145.842450px;}
.x27{left:157.152750px;}
.x2d{left:159.193650px;}
.x28{left:170.163750px;}
.x5{left:174.105000px;}
.x2e{left:177.732300px;}
.x15{left:179.262900px;}
.x2{left:191.040000px;}
.x16{left:199.332150px;}
.x7{left:200.715000px;}
.x5d{left:214.724400px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x10{left:239.130600px;}
.x3d{left:245.424000px;}
.x11{left:248.910150px;}
.x3c{left:250.193550px;}
.x3b{left:255.638550px;}
.x41{left:264.188350px;}
.x40{left:266.843400px;}
.x22{left:280.799850px;}
.x59{left:287.518050px;}
.x3f{left:293.123250px;}
.x5a{left:303.760500px;}
.x23{left:312.264570px;}
.x14{left:329.102250px;}
.x12{left:364.138500px;}
.x13{left:377.149500px;}
.x5b{left:396.708600px;}
.x57{left:398.579400px;}
.x29{left:405.297450px;}
.x58{left:413.886450px;}
.x2c{left:451.984200px;}
.x69{left:453.684900px;}
.x17{left:473.159888px;}
.x63{left:478.771500px;}
.x2b{left:486.677708px;}
.x37{left:488.210474px;}
.x4c{left:491.187000px;}
.x6a{left:499.200000px;}
.x65{left:500.201970px;}
.xc{left:506.154150px;}
.x64{left:509.214811px;}
.x31{left:512.617200px;}
.x61{left:513.892500px;}
.x44{left:516.018750px;}
.x62{left:519.742204px;}
.x54{left:522.192300px;}
.x4d{left:528.987300px;}
.x32{left:532.091250px;}
.x53{left:534.657840px;}
.x51{left:537.132300px;}
.x45{left:544.847100px;}
.x60{left:555.051750px;}
.x49{left:560.172021px;}
.x34{left:565.511700px;}
.x46{left:580.872300px;}
.x1f{left:585.580950px;}
.x4e{left:588.341386px;}
.x35{left:594.255000px;}
.x20{left:603.099000px;}
.x18{left:611.517900px;}
.x50{left:615.386315px;}
.x6c{left:616.845000px;}
.x36{left:617.895900px;}
.x52{left:621.732619px;}
.x6d{left:633.645000px;}
.x6e{left:638.010000px;}
.x19{left:640.601400px;}
.x6b{left:642.660000px;}
.x4a{left:646.031576px;}
.xd{left:651.996600px;}
.x24{left:659.650200px;}
.x47{left:667.407678px;}
.x4f{left:674.562080px;}
.x5e{left:690.689550px;}
.x1d{left:694.091100px;}
.x1b{left:695.281650px;}
.x5f{left:705.571500px;}
.x1e{left:710.588700px;}
.x33{left:722.409300px;}
.x1c{left:725.385600px;}
.x4b{left:733.331188px;}
.x42{left:751.662750px;}
.x48{left:754.392606px;}
.x55{left:779.006729px;}
.x43{left:783.297450px;}
.x21{left:790.440750px;}
.x38{left:794.522700px;}
.x39{left:813.741600px;}
.x56{left:815.867550px;}
.x2f{left:819.609150px;}
.x1a{left:822.330450px;}
@media print{
.vb{vertical-align:-41.121092pt;}
.v5{vertical-align:-32.956960pt;}
.v9{vertical-align:-13.538901pt;}
.v7{vertical-align:-10.887300pt;}
.v6{vertical-align:-9.371733pt;}
.v8{vertical-align:-6.720080pt;}
.v2{vertical-align:-2.721600pt;}
.v3{vertical-align:-1.813867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.442667pt;}
.vd{vertical-align:8.801808pt;}
.v11{vertical-align:13.220800pt;}
.ve{vertical-align:18.752000pt;}
.vf{vertical-align:20.560533pt;}
.v4{vertical-align:21.467733pt;}
.v10{vertical-align:24.056805pt;}
.vc{vertical-align:37.440304pt;}
.va{vertical-align:41.121092pt;}
.ls75{letter-spacing:-0.134208pt;}
.ls73{letter-spacing:-0.079919pt;}
.ls77{letter-spacing:-0.063376pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003555pt;}
.lsc{letter-spacing:0.007110pt;}
.ls63{letter-spacing:0.009023pt;}
.ls16{letter-spacing:0.010667pt;}
.ls4a{letter-spacing:0.011164pt;}
.ls64{letter-spacing:0.011563pt;}
.ls55{letter-spacing:0.011788pt;}
.ls61{letter-spacing:0.013713pt;}
.ls8e{letter-spacing:0.014293pt;}
.ls79{letter-spacing:0.015728pt;}
.ls45{letter-spacing:0.016000pt;}
.ls29{letter-spacing:0.020455pt;}
.ls94{letter-spacing:0.024047pt;}
.ls8c{letter-spacing:0.025275pt;}
.ls57{letter-spacing:0.026068pt;}
.ls2b{letter-spacing:0.026139pt;}
.ls95{letter-spacing:0.027283pt;}
.ls78{letter-spacing:0.037573pt;}
.ls40{letter-spacing:0.042667pt;}
.ls97{letter-spacing:0.045102pt;}
.ls1e{letter-spacing:0.048000pt;}
.ls8d{letter-spacing:0.050696pt;}
.ls92{letter-spacing:0.052150pt;}
.ls6{letter-spacing:0.053334pt;}
.ls3{letter-spacing:0.055467pt;}
.ls31{letter-spacing:0.057600pt;}
.ls7{letter-spacing:0.064001pt;}
.ls4e{letter-spacing:0.066890pt;}
.ls85{letter-spacing:0.068508pt;}
.ls88{letter-spacing:0.071186pt;}
.ls20{letter-spacing:0.076800pt;}
.ls6e{letter-spacing:0.083733pt;}
.ls5a{letter-spacing:0.090668pt;}
.ls1c{letter-spacing:0.099733pt;}
.lse{letter-spacing:0.103101pt;}
.ls43{letter-spacing:0.119166pt;}
.ls3f{letter-spacing:0.122668pt;}
.ls1f{letter-spacing:0.124849pt;}
.lsa3{letter-spacing:0.129600pt;}
.ls4{letter-spacing:0.131998pt;}
.ls9{letter-spacing:0.138668pt;}
.ls32{letter-spacing:0.148800pt;}
.ls1a{letter-spacing:0.170668pt;}
.ls96{letter-spacing:0.186669pt;}
.ls6d{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.192002pt;}
.ls62{letter-spacing:0.213561pt;}
.ls68{letter-spacing:0.216637pt;}
.ls8b{letter-spacing:0.225600pt;}
.ls56{letter-spacing:0.239467pt;}
.ls9d{letter-spacing:0.240002pt;}
.ls2f{letter-spacing:0.240533pt;}
.ls59{letter-spacing:0.273750pt;}
.ls58{letter-spacing:0.277306pt;}
.lsac{letter-spacing:0.427200pt;}
.lsb2{letter-spacing:0.441600pt;}
.lsa9{letter-spacing:0.499200pt;}
.ls26{letter-spacing:0.541867pt;}
.lsad{letter-spacing:0.552000pt;}
.ls80{letter-spacing:0.576006pt;}
.lsa7{letter-spacing:0.585600pt;}
.ls82{letter-spacing:0.608006pt;}
.ls25{letter-spacing:0.627220pt;}
.ls27{letter-spacing:0.650673pt;}
.ls81{letter-spacing:0.656007pt;}
.ls24{letter-spacing:0.666673pt;}
.ls71{letter-spacing:0.667200pt;}
.ls83{letter-spacing:0.677340pt;}
.lsb{letter-spacing:0.688007pt;}
.ls3a{letter-spacing:0.693340pt;}
.ls17{letter-spacing:0.752008pt;}
.ls18{letter-spacing:0.773341pt;}
.lsa1{letter-spacing:0.864009pt;}
.ls48{letter-spacing:0.880009pt;}
.lsa0{letter-spacing:0.885342pt;}
.lsaf{letter-spacing:1.032000pt;}
.ls7e{letter-spacing:1.099200pt;}
.ls10{letter-spacing:1.109344pt;}
.lsb0{letter-spacing:1.113600pt;}
.ls7d{letter-spacing:1.132800pt;}
.lsb3{letter-spacing:1.166400pt;}
.lsf{letter-spacing:1.274679pt;}
.ls4c{letter-spacing:1.330656pt;}
.ls3b{letter-spacing:1.445348pt;}
.ls49{letter-spacing:1.461348pt;}
.ls9e{letter-spacing:1.520015pt;}
.ls7f{letter-spacing:1.600016pt;}
.ls8a{letter-spacing:1.621350pt;}
.ls7b{letter-spacing:1.632016pt;}
.ls52{letter-spacing:1.664017pt;}
.ls22{letter-spacing:1.680017pt;}
.ls54{letter-spacing:1.690684pt;}
.ls11{letter-spacing:1.701350pt;}
.ls23{letter-spacing:1.802685pt;}
.ls7c{letter-spacing:1.866685pt;}
.ls53{letter-spacing:1.882685pt;}
.ls72{letter-spacing:11.520000pt;}
.lsab{letter-spacing:11.678400pt;}
.ls2d{letter-spacing:12.374400pt;}
.ls46{letter-spacing:12.622400pt;}
.ls14{letter-spacing:12.730794pt;}
.ls15{letter-spacing:12.924800pt;}
.ls2e{letter-spacing:13.262400pt;}
.ls69{letter-spacing:13.529600pt;}
.ls2a{letter-spacing:13.542933pt;}
.ls86{letter-spacing:13.669867pt;}
.ls6a{letter-spacing:13.831467pt;}
.ls6c{letter-spacing:13.832000pt;}
.ls30{letter-spacing:13.917947pt;}
.ls87{letter-spacing:13.962806pt;}
.ls98{letter-spacing:14.112141pt;}
.ls6b{letter-spacing:14.134400pt;}
.ls4f{letter-spacing:14.238400pt;}
.ls39{letter-spacing:14.842815pt;}
.ls67{letter-spacing:14.970816pt;}
.ls70{letter-spacing:15.096000pt;}
.ls7a{letter-spacing:15.357333pt;}
.ls19{letter-spacing:15.786825pt;}
.lsa4{letter-spacing:15.907200pt;}
.lsa8{letter-spacing:16.209600pt;}
.ls9f{letter-spacing:16.378830pt;}
.ls1d{letter-spacing:17.044627pt;}
.lsb1{letter-spacing:17.116800pt;}
.ls65{letter-spacing:17.157867pt;}
.ls1b{letter-spacing:17.232000pt;}
.ls37{letter-spacing:17.242839pt;}
.ls33{letter-spacing:17.360049pt;}
.ls66{letter-spacing:17.434841pt;}
.ls9c{letter-spacing:17.589509pt;}
.ls2c{letter-spacing:17.776533pt;}
.ls41{letter-spacing:17.850845pt;}
.ls44{letter-spacing:17.872179pt;}
.ls84{letter-spacing:17.893512pt;}
.ls13{letter-spacing:18.065067pt;}
.ls12{letter-spacing:18.176182pt;}
.ls51{letter-spacing:18.485518pt;}
.ls42{letter-spacing:18.512185pt;}
.ls89{letter-spacing:20.321600pt;}
.ls6f{letter-spacing:20.371027pt;}
.lsa2{letter-spacing:20.443200pt;}
.ls36{letter-spacing:20.624206pt;}
.ls34{letter-spacing:21.200212pt;}
.ls3c{letter-spacing:21.390933pt;}
.ls3d{letter-spacing:21.669550pt;}
.ls3e{letter-spacing:21.693333pt;}
.ls4b{letter-spacing:22.896229pt;}
.lsa6{letter-spacing:23.164800pt;}
.ls1{letter-spacing:23.691200pt;}
.lsaa{letter-spacing:23.769600pt;}
.ls2{letter-spacing:23.989333pt;}
.ls91{letter-spacing:24.218909pt;}
.ls90{letter-spacing:24.240242pt;}
.ls93{letter-spacing:24.250909pt;}
.ls8f{letter-spacing:24.414507pt;}
.ls38{letter-spacing:24.501578pt;}
.ls47{letter-spacing:24.645580pt;}
.lsae{letter-spacing:25.584000pt;}
.ls35{letter-spacing:26.944269pt;}
.ls99{letter-spacing:28.015920pt;}
.lsa5{letter-spacing:32.236800pt;}
.ls28{letter-spacing:33.093664pt;}
.lsa{letter-spacing:33.544533pt;}
.ls9a{letter-spacing:33.846933pt;}
.ls50{letter-spacing:35.083017pt;}
.ls21{letter-spacing:37.771044pt;}
.ls9b{letter-spacing:37.948247pt;}
.ls5{letter-spacing:39.897294pt;}
.ls5d{letter-spacing:72.236301pt;}
.ls74{letter-spacing:135.974527pt;}
.ls5b{letter-spacing:287.698464pt;}
.ls76{letter-spacing:293.453248pt;}
.ls5f{letter-spacing:299.052704pt;}
.ls4d{letter-spacing:332.190960pt;}
.ls5e{letter-spacing:495.435105pt;}
.ls5c{letter-spacing:595.696405pt;}
.ls60{letter-spacing:603.853984pt;}
.ws229{word-spacing:-595.749684pt;}
.ws228{word-spacing:-287.751744pt;}
.ws75{word-spacing:-37.824378pt;}
.ws15f{word-spacing:-24.698914pt;}
.ws2f2{word-spacing:-24.304243pt;}
.ws1f8{word-spacing:-18.538852pt;}
.ws2c6{word-spacing:-17.946846pt;}
.ws0{word-spacing:-16.874667pt;}
.ws393{word-spacing:-15.955200pt;}
.ws258{word-spacing:-11.568000pt;}
.ws14{word-spacing:-0.053334pt;}
.wse3{word-spacing:-0.048000pt;}
.ws30e{word-spacing:-0.037280pt;}
.ws193{word-spacing:-0.035733pt;}
.ws57{word-spacing:-0.035552pt;}
.ws311{word-spacing:-0.034832pt;}
.ws68{word-spacing:-0.032001pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f4{word-spacing:0.026640pt;}
.ws66{word-spacing:10.499375pt;}
.ws67{word-spacing:10.662578pt;}
.ws65{word-spacing:10.933440pt;}
.ws64{word-spacing:10.977120pt;}
.ws2a8{word-spacing:10.982400pt;}
.ws3a9{word-spacing:11.016000pt;}
.ws34a{word-spacing:11.040000pt;}
.wsdd{word-spacing:11.054400pt;}
.ws3a4{word-spacing:11.208000pt;}
.ws38f{word-spacing:11.299200pt;}
.wsdc{word-spacing:11.318400pt;}
.ws2a3{word-spacing:11.347200pt;}
.ws257{word-spacing:11.380800pt;}
.ws247{word-spacing:11.424000pt;}
.ws248{word-spacing:11.452800pt;}
.ws256{word-spacing:11.462400pt;}
.ws3a5{word-spacing:11.472000pt;}
.ws2a2{word-spacing:11.534400pt;}
.ws356{word-spacing:11.620800pt;}
.ws342{word-spacing:11.697600pt;}
.ws39e{word-spacing:11.760000pt;}
.wsde{word-spacing:11.764800pt;}
.ws10e{word-spacing:11.827200pt;}
.ws110{word-spacing:11.880000pt;}
.ws10d{word-spacing:11.923200pt;}
.ws383{word-spacing:11.952000pt;}
.ws390{word-spacing:11.990400pt;}
.ws10f{word-spacing:12.043200pt;}
.ws2fd{word-spacing:12.138788pt;}
.ws378{word-spacing:12.139200pt;}
.ws187{word-spacing:12.176122pt;}
.ws262{word-spacing:12.181455pt;}
.ws1e0{word-spacing:12.266789pt;}
.ws1e{word-spacing:12.282789pt;}
.ws13{word-spacing:12.288123pt;}
.ws1d{word-spacing:12.320123pt;}
.ws2e9{word-spacing:12.330790pt;}
.ws159{word-spacing:12.341457pt;}
.ws15{word-spacing:12.400124pt;}
.ws177{word-spacing:12.437458pt;}
.ws50{word-spacing:12.453458pt;}
.wsef{word-spacing:12.464125pt;}
.ws1f{word-spacing:12.469458pt;}
.ws3ad{word-spacing:12.499200pt;}
.ws263{word-spacing:12.501458pt;}
.ws1a8{word-spacing:12.570792pt;}
.ws15a{word-spacing:12.581459pt;}
.ws125{word-spacing:12.597459pt;}
.ws4f{word-spacing:12.602793pt;}
.ws1df{word-spacing:12.613459pt;}
.ws2ea{word-spacing:12.645460pt;}
.wsae{word-spacing:12.656127pt;}
.ws306{word-spacing:12.666793pt;}
.ws73{word-spacing:12.693460pt;}
.ws4e{word-spacing:12.714794pt;}
.ws28c{word-spacing:12.725461pt;}
.ws365{word-spacing:12.734400pt;}
.wsaf{word-spacing:12.768128pt;}
.ws44{word-spacing:12.778794pt;}
.ws203{word-spacing:12.784128pt;}
.ws208{word-spacing:12.789461pt;}
.ws207{word-spacing:12.805461pt;}
.wsad{word-spacing:12.810795pt;}
.ws2e2{word-spacing:12.816128pt;}
.ws9f{word-spacing:12.832128pt;}
.ws9c{word-spacing:12.858795pt;}
.ws16{word-spacing:12.869462pt;}
.ws25d{word-spacing:12.880129pt;}
.ws45{word-spacing:12.885462pt;}
.ws37c{word-spacing:12.912000pt;}
.ws291{word-spacing:12.936000pt;}
.ws2de{word-spacing:12.944129pt;}
.ws2e1{word-spacing:12.965463pt;}
.ws9d{word-spacing:12.981463pt;}
.ws1b2{word-spacing:12.997463pt;}
.ws37d{word-spacing:13.003200pt;}
.ws2e0{word-spacing:13.029464pt;}
.ws264{word-spacing:13.034797pt;}
.ws358{word-spacing:13.036800pt;}
.ws292{word-spacing:13.041600pt;}
.ws25e{word-spacing:13.066797pt;}
.ws295{word-spacing:13.075200pt;}
.ws9e{word-spacing:13.109464pt;}
.ws111{word-spacing:13.118400pt;}
.ws26d{word-spacing:13.130798pt;}
.ws144{word-spacing:13.132800pt;}
.ws293{word-spacing:13.137600pt;}
.wsd8{word-spacing:13.146798pt;}
.ws103{word-spacing:13.152132pt;}
.ws74{word-spacing:13.173465pt;}
.wsda{word-spacing:13.189465pt;}
.ws189{word-spacing:13.205465pt;}
.ws3a6{word-spacing:13.209600pt;}
.ws2a5{word-spacing:13.214400pt;}
.wse6{word-spacing:13.228800pt;}
.ws13a{word-spacing:13.253466pt;}
.ws113{word-spacing:13.276800pt;}
.ws26e{word-spacing:13.290800pt;}
.wsfa{word-spacing:13.301466pt;}
.ws112{word-spacing:13.305600pt;}
.ws2a4{word-spacing:13.324800pt;}
.ws8e{word-spacing:13.349467pt;}
.wsb0{word-spacing:13.413467pt;}
.ws314{word-spacing:13.434801pt;}
.ws33a{word-spacing:13.435200pt;}
.wsfb{word-spacing:13.450801pt;}
.ws243{word-spacing:13.461468pt;}
.ws128{word-spacing:13.477468pt;}
.wsd9{word-spacing:13.488135pt;}
.ws127{word-spacing:13.493468pt;}
.wsc3{word-spacing:13.498802pt;}
.ws3c{word-spacing:13.509468pt;}
.ws220{word-spacing:13.525469pt;}
.ws19{word-spacing:13.552136pt;}
.wse5{word-spacing:13.555200pt;}
.ws244{word-spacing:13.562802pt;}
.ws299{word-spacing:13.569600pt;}
.ws34{word-spacing:13.578802pt;}
.ws296{word-spacing:13.579200pt;}
.ws1a{word-spacing:13.626803pt;}
.ws33{word-spacing:13.642803pt;}
.ws2f9{word-spacing:13.653470pt;}
.ws114{word-spacing:13.665600pt;}
.ws20b{word-spacing:13.674803pt;}
.wsf{word-spacing:13.680137pt;}
.ws2d2{word-spacing:13.685470pt;}
.ws36f{word-spacing:13.699200pt;}
.wsfc{word-spacing:13.706804pt;}
.ws168{word-spacing:13.712137pt;}
.ws245{word-spacing:13.717471pt;}
.ws115{word-spacing:13.723200pt;}
.ws2fa{word-spacing:13.744137pt;}
.ws2c5{word-spacing:13.749471pt;}
.ws1a2{word-spacing:13.760138pt;}
.ws169{word-spacing:13.792138pt;}
.ws19d{word-spacing:13.802805pt;}
.wsd0{word-spacing:13.829472pt;}
.wsfe{word-spacing:13.845472pt;}
.ws1a1{word-spacing:13.850805pt;}
.ws246{word-spacing:13.856139pt;}
.ws19c{word-spacing:13.877472pt;}
.ws146{word-spacing:13.881600pt;}
.wse{word-spacing:13.888139pt;}
.ws30a{word-spacing:13.898806pt;}
.ws20{word-spacing:13.920139pt;}
.ws3a0{word-spacing:13.929600pt;}
.ws30c{word-spacing:13.930806pt;}
.ws308{word-spacing:13.936139pt;}
.wse7{word-spacing:13.948800pt;}
.ws183{word-spacing:13.957473pt;}
.wsc9{word-spacing:13.962806pt;}
.ws30{word-spacing:13.994807pt;}
.ws398{word-spacing:14.011200pt;}
.ws1a0{word-spacing:14.016140pt;}
.ws30b{word-spacing:14.037474pt;}
.ws21{word-spacing:14.080141pt;}
.ws1c0{word-spacing:14.096141pt;}
.ws1e1{word-spacing:14.101474pt;}
.ws18a{word-spacing:14.106808pt;}
.ws55{word-spacing:14.112141pt;}
.ws352{word-spacing:14.116800pt;}
.wsbb{word-spacing:14.160142pt;}
.ws13c{word-spacing:14.165475pt;}
.ws353{word-spacing:14.179200pt;}
.wsc{word-spacing:14.186489pt;}
.ws1f3{word-spacing:14.197475pt;}
.ws18d{word-spacing:14.202809pt;}
.ws147{word-spacing:14.217600pt;}
.ws302{word-spacing:14.218809pt;}
.ws13d{word-spacing:14.256143pt;}
.ws192{word-spacing:14.266809pt;}
.wsb{word-spacing:14.280355pt;}
.ws1b6{word-spacing:14.304143pt;}
.ws18e{word-spacing:14.314810pt;}
.ws1de{word-spacing:14.320143pt;}
.ws194{word-spacing:14.341477pt;}
.wsfd{word-spacing:14.384144pt;}
.ws156{word-spacing:14.394811pt;}
.ws250{word-spacing:14.400000pt;}
.ws1e2{word-spacing:14.400144pt;}
.ws11c{word-spacing:14.432144pt;}
.ws2f{word-spacing:14.458811pt;}
.ws155{word-spacing:14.464145pt;}
.ws157{word-spacing:14.469478pt;}
.ws163{word-spacing:14.480145pt;}
.ws249{word-spacing:14.486400pt;}
.wsb8{word-spacing:14.490812pt;}
.wsc2{word-spacing:14.496145pt;}
.ws7f{word-spacing:14.533479pt;}
.ws148{word-spacing:14.534400pt;}
.ws149{word-spacing:14.539200pt;}
.ws167{word-spacing:14.549479pt;}
.ws59{word-spacing:14.570812pt;}
.wsc1{word-spacing:14.592146pt;}
.ws24f{word-spacing:14.596800pt;}
.ws12c{word-spacing:14.618813pt;}
.ws24e{word-spacing:14.620800pt;}
.ws173{word-spacing:14.624146pt;}
.ws372{word-spacing:14.644800pt;}
.wsb9{word-spacing:14.666813pt;}
.ws22{word-spacing:14.688147pt;}
.ws151{word-spacing:14.698814pt;}
.ws24{word-spacing:14.709480pt;}
.ws2da{word-spacing:14.725481pt;}
.ws281{word-spacing:14.736147pt;}
.ws8a{word-spacing:14.752148pt;}
.wsba{word-spacing:14.784148pt;}
.ws2b6{word-spacing:14.890816pt;}
.ws174{word-spacing:14.901482pt;}
.ws23f{word-spacing:14.917483pt;}
.ws282{word-spacing:14.944149pt;}
.ws23{word-spacing:14.986817pt;}
.ws39{word-spacing:15.045484pt;}
.ws319{word-spacing:15.050817pt;}
.ws377{word-spacing:15.052800pt;}
.ws38{word-spacing:15.072151pt;}
.ws23d{word-spacing:15.082817pt;}
.ws1fa{word-spacing:15.093484pt;}
.ws23e{word-spacing:15.110400pt;}
.ws298{word-spacing:15.115200pt;}
.ws2bd{word-spacing:15.152152pt;}
.ws382{word-spacing:15.153600pt;}
.ws29a{word-spacing:15.163200pt;}
.ws212{word-spacing:15.168152pt;}
.ws14e{word-spacing:15.178818pt;}
.ws32{word-spacing:15.226819pt;}
.wsdb{word-spacing:15.285486pt;}
.ws1c2{word-spacing:15.290820pt;}
.ws1f9{word-spacing:15.306820pt;}
.ws14a{word-spacing:15.307200pt;}
.wsbc{word-spacing:15.322820pt;}
.ws145{word-spacing:15.326400pt;}
.ws276{word-spacing:15.344153pt;}
.ws357{word-spacing:15.355200pt;}
.ws82{word-spacing:15.360154pt;}
.ws1ce{word-spacing:15.370820pt;}
.ws227{word-spacing:15.376454pt;}
.wsbd{word-spacing:15.402821pt;}
.ws351{word-spacing:15.403200pt;}
.ws3bc{word-spacing:15.441600pt;}
.ws81{word-spacing:15.472155pt;}
.ws29c{word-spacing:15.518400pt;}
.ws3c0{word-spacing:15.528000pt;}
.wsab{word-spacing:15.536155pt;}
.ws2d{word-spacing:15.546822pt;}
.ws29b{word-spacing:15.552000pt;}
.wsaa{word-spacing:15.589489pt;}
.ws130{word-spacing:15.594823pt;}
.ws3bb{word-spacing:15.604800pt;}
.ws2d9{word-spacing:15.605489pt;}
.ws1c1{word-spacing:15.610823pt;}
.ws3e{word-spacing:15.626823pt;}
.ws10b{word-spacing:15.642823pt;}
.ws2a7{word-spacing:15.672000pt;}
.ws13f{word-spacing:15.680157pt;}
.ws2a6{word-spacing:15.696000pt;}
.ws3b5{word-spacing:15.700800pt;}
.wsac{word-spacing:15.706824pt;}
.ws33c{word-spacing:15.715200pt;}
.ws38a{word-spacing:15.724800pt;}
.ws327{word-spacing:15.728157pt;}
.ws364{word-spacing:15.729600pt;}
.ws25b{word-spacing:15.744000pt;}
.ws2e8{word-spacing:15.744157pt;}
.ws34b{word-spacing:15.753600pt;}
.ws336{word-spacing:15.758400pt;}
.ws348{word-spacing:15.768000pt;}
.ws11a{word-spacing:15.772800pt;}
.ws3ca{word-spacing:15.782400pt;}
.ws3c1{word-spacing:15.787200pt;}
.ws340{word-spacing:15.792000pt;}
.ws3a8{word-spacing:15.796800pt;}
.ws35{word-spacing:15.813491pt;}
.ws3af{word-spacing:15.820800pt;}
.ws1fb{word-spacing:15.829492pt;}
.ws350{word-spacing:15.835200pt;}
.ws344{word-spacing:15.840000pt;}
.ws39c{word-spacing:15.849600pt;}
.ws1e7{word-spacing:15.850825pt;}
.ws337{word-spacing:15.854400pt;}
.ws338{word-spacing:15.859200pt;}
.ws3b7{word-spacing:15.864000pt;}
.ws8{word-spacing:15.878400pt;}
.ws33f{word-spacing:15.883200pt;}
.ws213{word-spacing:15.893492pt;}
.ws63{word-spacing:15.902400pt;}
.ws346{word-spacing:15.907200pt;}
.ws384{word-spacing:15.921600pt;}
.ws3b8{word-spacing:15.926400pt;}
.ws369{word-spacing:15.931200pt;}
.ws380{word-spacing:15.936000pt;}
.ws101{word-spacing:15.936159pt;}
.ws9{word-spacing:15.940800pt;}
.ws32d{word-spacing:15.941493pt;}
.ws32c{word-spacing:15.952160pt;}
.ws36d{word-spacing:15.955200pt;}
.ws2cc{word-spacing:15.962826pt;}
.wsa9{word-spacing:15.968160pt;}
.ws389{word-spacing:15.969600pt;}
.ws100{word-spacing:15.973493pt;}
.ws14d{word-spacing:15.974400pt;}
.ws2ad{word-spacing:15.988800pt;}
.ws4d{word-spacing:15.989493pt;}
.ws36c{word-spacing:15.998400pt;}
.ws363{word-spacing:16.041600pt;}
.ws153{word-spacing:16.048160pt;}
.ws37a{word-spacing:16.051200pt;}
.ws33d{word-spacing:16.075200pt;}
.ws16a{word-spacing:16.080161pt;}
.ws1ef{word-spacing:16.085494pt;}
.ws376{word-spacing:16.099200pt;}
.ws1f1{word-spacing:16.101494pt;}
.ws4c{word-spacing:16.133495pt;}
.ws341{word-spacing:16.161600pt;}
.ws1ec{word-spacing:16.165495pt;}
.ws1eb{word-spacing:16.170828pt;}
.ws277{word-spacing:16.197495pt;}
.ws1ed{word-spacing:16.213495pt;}
.ws6d{word-spacing:16.224162pt;}
.ws21d{word-spacing:16.288163pt;}
.ws297{word-spacing:16.300800pt;}
.ws2ef{word-spacing:16.336163pt;}
.ws287{word-spacing:16.373497pt;}
.ws1e4{word-spacing:16.426831pt;}
.ws21c{word-spacing:16.442831pt;}
.ws37b{word-spacing:16.444800pt;}
.ws270{word-spacing:16.453498pt;}
.ws2ba{word-spacing:16.480165pt;}
.ws2ee{word-spacing:16.496165pt;}
.ws1e3{word-spacing:16.501498pt;}
.ws1ba{word-spacing:16.512165pt;}
.ws2ac{word-spacing:16.516800pt;}
.ws2c{word-spacing:16.522832pt;}
.ws2bb{word-spacing:16.586833pt;}
.ws69{word-spacing:16.624166pt;}
.ws51{word-spacing:16.629500pt;}
.ws12{word-spacing:16.661500pt;}
.ws288{word-spacing:16.677500pt;}
.wscd{word-spacing:16.682833pt;}
.ws102{word-spacing:16.709500pt;}
.ws34c{word-spacing:16.732800pt;}
.ws2bc{word-spacing:16.736167pt;}
.ws215{word-spacing:16.778834pt;}
.ws31b{word-spacing:16.821333pt;}
.ws132{word-spacing:16.832168pt;}
.ws334{word-spacing:16.838400pt;}
.ws119{word-spacing:16.843200pt;}
.ws312{word-spacing:16.846667pt;}
.wsdf{word-spacing:16.867200pt;}
.wsb5{word-spacing:16.885502pt;}
.ws2ab{word-spacing:16.905600pt;}
.ws214{word-spacing:16.933503pt;}
.ws118{word-spacing:16.934400pt;}
.ws117{word-spacing:16.968000pt;}
.ws116{word-spacing:16.972800pt;}
.ws198{word-spacing:17.008170pt;}
.ws80{word-spacing:17.013503pt;}
.ws3c3{word-spacing:17.059200pt;}
.ws23c{word-spacing:17.066837pt;}
.ws3c5{word-spacing:17.068800pt;}
.ws1b8{word-spacing:17.077504pt;}
.ws23b{word-spacing:17.088171pt;}
.wsd6{word-spacing:17.104171pt;}
.ws3c4{word-spacing:17.116800pt;}
.ws1d8{word-spacing:17.130838pt;}
.ws255{word-spacing:17.160000pt;}
.ws387{word-spacing:17.169600pt;}
.ws1d9{word-spacing:17.189505pt;}
.ws18{word-spacing:17.200172pt;}
.ws19f{word-spacing:17.221506pt;}
.ws373{word-spacing:17.227200pt;}
.ws3b4{word-spacing:17.232000pt;}
.ws3b3{word-spacing:17.251200pt;}
.ws19b{word-spacing:17.290840pt;}
.ws85{word-spacing:17.338840pt;}
.ws2b4{word-spacing:17.408174pt;}
.ws231{word-spacing:17.418841pt;}
.wsa3{word-spacing:17.440174pt;}
.ws328{word-spacing:17.450841pt;}
.ws1d5{word-spacing:17.461508pt;}
.ws40{word-spacing:17.482841pt;}
.ws2bf{word-spacing:17.493508pt;}
.ws1d4{word-spacing:17.498842pt;}
.wsf0{word-spacing:17.514842pt;}
.ws31f{word-spacing:17.520175pt;}
.ws2ec{word-spacing:17.525509pt;}
.ws320{word-spacing:17.530842pt;}
.ws324{word-spacing:17.536175pt;}
.ws329{word-spacing:17.541509pt;}
.ws330{word-spacing:17.552176pt;}
.ws32a{word-spacing:17.557509pt;}
.ws2b{word-spacing:17.562842pt;}
.ws210{word-spacing:17.573509pt;}
.ws25f{word-spacing:17.578842pt;}
.ws2a{word-spacing:17.589509pt;}
.ws323{word-spacing:17.600176pt;}
.ws182{word-spacing:17.605509pt;}
.ws315{word-spacing:17.610843pt;}
.ws72{word-spacing:17.616176pt;}
.wsb1{word-spacing:17.626843pt;}
.ws326{word-spacing:17.632176pt;}
.ws6c{word-spacing:17.637510pt;}
.ws7e{word-spacing:17.642843pt;}
.wsb7{word-spacing:17.648176pt;}
.wsea{word-spacing:17.653510pt;}
.ws96{word-spacing:17.658843pt;}
.ws106{word-spacing:17.664177pt;}
.ws2cb{word-spacing:17.669510pt;}
.ws211{word-spacing:17.674843pt;}
.ws271{word-spacing:17.690844pt;}
.ws2eb{word-spacing:17.696177pt;}
.ws172{word-spacing:17.701510pt;}
.wsb6{word-spacing:17.712177pt;}
.ws29{word-spacing:17.717511pt;}
.ws241{word-spacing:17.722844pt;}
.ws27{word-spacing:17.733511pt;}
.ws31c{word-spacing:17.754844pt;}
.ws2b7{word-spacing:17.765511pt;}
.ws31e{word-spacing:17.776178pt;}
.ws1a7{word-spacing:17.786845pt;}
.ws240{word-spacing:17.792178pt;}
.ws99{word-spacing:17.808178pt;}
.ws2ed{word-spacing:17.813511pt;}
.ws9a{word-spacing:17.824178pt;}
.ws242{word-spacing:17.829512pt;}
.ws1bf{word-spacing:17.840178pt;}
.ws321{word-spacing:17.845512pt;}
.ws305{word-spacing:17.909512pt;}
.ws1ad{word-spacing:17.936179pt;}
.ws104{word-spacing:17.941513pt;}
.ws9b{word-spacing:17.946846pt;}
.ws6e{word-spacing:17.973513pt;}
.ws1be{word-spacing:17.978846pt;}
.ws3c7{word-spacing:17.985600pt;}
.ws105{word-spacing:18.010847pt;}
.ws3a3{word-spacing:18.024000pt;}
.ws304{word-spacing:18.026847pt;}
.ws1b1{word-spacing:18.048180pt;}
.ws1a6{word-spacing:18.074847pt;}
.ws35d{word-spacing:18.076800pt;}
.ws78{word-spacing:18.090848pt;}
.ws79{word-spacing:18.112181pt;}
.ws3a2{word-spacing:18.115200pt;}
.wsca{word-spacing:18.165515pt;}
.ws126{word-spacing:18.202849pt;}
.ws17{word-spacing:18.229516pt;}
.ws286{word-spacing:18.277516pt;}
.ws232{word-spacing:18.285333pt;}
.wscb{word-spacing:18.314850pt;}
.ws28b{word-spacing:18.320183pt;}
.ws186{word-spacing:18.325517pt;}
.wscc{word-spacing:18.330850pt;}
.ws28f{word-spacing:18.352184pt;}
.ws152{word-spacing:18.400184pt;}
.ws138{word-spacing:18.405517pt;}
.ws260{word-spacing:18.437518pt;}
.ws154{word-spacing:18.442851pt;}
.ws14b{word-spacing:18.489600pt;}
.ws31a{word-spacing:18.502576pt;}
.ws2d6{word-spacing:18.517519pt;}
.ws35e{word-spacing:18.528000pt;}
.ws1f7{word-spacing:18.528185pt;}
.ws97{word-spacing:18.541777pt;}
.ws1b7{word-spacing:18.549519pt;}
.ws139{word-spacing:18.618853pt;}
.ws345{word-spacing:18.624000pt;}
.ws300{word-spacing:18.624186pt;}
.ws310{word-spacing:18.648178pt;}
.ws347{word-spacing:18.652800pt;}
.ws2ff{word-spacing:18.666853pt;}
.ws290{word-spacing:18.672187pt;}
.ws2b0{word-spacing:18.693520pt;}
.ws38e{word-spacing:18.724800pt;}
.ws2d5{word-spacing:18.730854pt;}
.ws14c{word-spacing:18.772800pt;}
.ws1d0{word-spacing:18.789521pt;}
.ws2fb{word-spacing:18.800188pt;}
.ws4b{word-spacing:18.821522pt;}
.ws301{word-spacing:18.848188pt;}
.ws3ba{word-spacing:18.854400pt;}
.ws272{word-spacing:18.874855pt;}
.ws1cd{word-spacing:18.901522pt;}
.ws4a{word-spacing:18.906856pt;}
.ws1cb{word-spacing:18.917523pt;}
.ws1cc{word-spacing:18.933523pt;}
.ws2f6{word-spacing:18.944189pt;}
.ws2b3{word-spacing:18.965523pt;}
.ws267{word-spacing:18.981523pt;}
.ws349{word-spacing:18.984000pt;}
.ws268{word-spacing:18.992190pt;}
.ws1d1{word-spacing:19.008190pt;}
.ws7a{word-spacing:19.040190pt;}
.ws2d7{word-spacing:19.088191pt;}
.ws26c{word-spacing:19.104191pt;}
.ws26b{word-spacing:19.136191pt;}
.ws109{word-spacing:19.146858pt;}
.ws161{word-spacing:19.157525pt;}
.ws162{word-spacing:19.178858pt;}
.ws108{word-spacing:19.194859pt;}
.ws87{word-spacing:19.205525pt;}
.ws88{word-spacing:19.216192pt;}
.wsec{word-spacing:19.221526pt;}
.wsd3{word-spacing:19.237526pt;}
.ws266{word-spacing:19.242859pt;}
.ws3c2{word-spacing:19.248000pt;}
.ws33b{word-spacing:19.257600pt;}
.ws1d7{word-spacing:19.269526pt;}
.ws176{word-spacing:19.290860pt;}
.ws71{word-spacing:19.306860pt;}
.ws253{word-spacing:19.329600pt;}
.ws23a{word-spacing:19.344193pt;}
.ws234{word-spacing:19.360194pt;}
.ws254{word-spacing:19.368000pt;}
.ws37{word-spacing:19.386861pt;}
.ws84{word-spacing:19.408194pt;}
.wsd4{word-spacing:19.434861pt;}
.ws89{word-spacing:19.440194pt;}
.ws265{word-spacing:19.456195pt;}
.ws379{word-spacing:19.468800pt;}
.ws236{word-spacing:19.472195pt;}
.ws36{word-spacing:19.493528pt;}
.wsd5{word-spacing:19.525529pt;}
.ws303{word-spacing:19.541529pt;}
.ws83{word-spacing:19.589529pt;}
.ws235{word-spacing:19.605529pt;}
.ws2c3{word-spacing:19.642863pt;}
.ws237{word-spacing:19.645867pt;}
.ws239{word-spacing:19.646400pt;}
.ws10a{word-spacing:19.749531pt;}
.ws238{word-spacing:19.760198pt;}
.ws1aa{word-spacing:19.802865pt;}
.ws3d{word-spacing:19.818865pt;}
.ws184{word-spacing:19.824198pt;}
.ws2dd{word-spacing:19.840198pt;}
.ws316{word-spacing:19.845532pt;}
.ws137{word-spacing:19.850865pt;}
.ws158{word-spacing:19.856199pt;}
.ws374{word-spacing:19.862400pt;}
.ws375{word-spacing:19.867200pt;}
.ws19e{word-spacing:19.904199pt;}
.ws6b{word-spacing:19.925533pt;}
.ws5c{word-spacing:19.962866pt;}
.ws3ae{word-spacing:19.982400pt;}
.ws190{word-spacing:19.984200pt;}
.ws6f{word-spacing:20.032200pt;}
.ws24b{word-spacing:20.059200pt;}
.ws5d{word-spacing:20.090868pt;}
.ws1d6{word-spacing:20.112201pt;}
.ws1a9{word-spacing:20.128201pt;}
.ws141{word-spacing:20.154868pt;}
.ws24d{word-spacing:20.164800pt;}
.ws19a{word-spacing:20.181535pt;}
.ws2d3{word-spacing:20.186869pt;}
.wse9{word-spacing:20.193600pt;}
.ws333{word-spacing:20.208000pt;}
.ws53{word-spacing:20.277536pt;}
.ws2d4{word-spacing:20.288203pt;}
.ws61{word-spacing:20.304203pt;}
.ws7b{word-spacing:20.346870pt;}
.ws24c{word-spacing:20.352000pt;}
.ws199{word-spacing:20.394871pt;}
.ws60{word-spacing:20.405537pt;}
.ws1b3{word-spacing:20.416204pt;}
.ws332{word-spacing:20.419200pt;}
.ws143{word-spacing:20.432204pt;}
.ws142{word-spacing:20.442871pt;}
.ws1b4{word-spacing:20.453538pt;}
.ws124{word-spacing:20.506872pt;}
.wsff{word-spacing:20.522872pt;}
.ws307{word-spacing:20.586873pt;}
.ws2db{word-spacing:20.597539pt;}
.ws2c9{word-spacing:20.618873pt;}
.ws3c6{word-spacing:20.664000pt;}
.ws39f{word-spacing:20.668800pt;}
.ws1b5{word-spacing:20.682873pt;}
.ws92{word-spacing:20.730874pt;}
.ws13e{word-spacing:20.746874pt;}
.ws28a{word-spacing:20.773541pt;}
.ws1a3{word-spacing:20.794875pt;}
.ws7c{word-spacing:20.810875pt;}
.ws3b9{word-spacing:20.817600pt;}
.ws2fc{word-spacing:20.858875pt;}
.wse4{word-spacing:20.889600pt;}
.ws20a{word-spacing:20.949543pt;}
.ws123{word-spacing:20.970876pt;}
.ws209{word-spacing:21.029544pt;}
.ws12d{word-spacing:21.034877pt;}
.ws21f{word-spacing:21.045544pt;}
.ws134{word-spacing:21.061544pt;}
.ws133{word-spacing:21.082877pt;}
.wse2{word-spacing:21.110400pt;}
.ws3ab{word-spacing:21.148800pt;}
.ws1c5{word-spacing:21.162878pt;}
.ws1dc{word-spacing:21.194879pt;}
.ws7d{word-spacing:21.200212pt;}
.ws1dd{word-spacing:21.221546pt;}
.ws17f{word-spacing:21.242879pt;}
.ws1c3{word-spacing:21.253546pt;}
.ws18b{word-spacing:21.274879pt;}
.ws41{word-spacing:21.296213pt;}
.ws16e{word-spacing:21.338880pt;}
.ws1c4{word-spacing:21.349547pt;}
.ws3ac{word-spacing:21.379200pt;}
.wsa4{word-spacing:21.424214pt;}
.ws8d{word-spacing:21.456215pt;}
.ws3b1{word-spacing:21.508800pt;}
.ws8c{word-spacing:21.530882pt;}
.wsf4{word-spacing:21.589549pt;}
.ws38b{word-spacing:21.600000pt;}
.wsa5{word-spacing:21.642883pt;}
.wsf6{word-spacing:21.648216pt;}
.wsf5{word-spacing:21.653550pt;}
.wsa7{word-spacing:21.664217pt;}
.ws309{word-spacing:21.690884pt;}
.wsa6{word-spacing:21.696217pt;}
.ws335{word-spacing:21.715200pt;}
.ws3c8{word-spacing:21.763200pt;}
.ws34d{word-spacing:21.792000pt;}
.ws27f{word-spacing:21.792218pt;}
.ws196{word-spacing:21.850885pt;}
.ws1a4{word-spacing:21.882885pt;}
.ws1af{word-spacing:21.914886pt;}
.ws317{word-spacing:21.920219pt;}
.ws17d{word-spacing:21.930886pt;}
.ws165{word-spacing:21.941553pt;}
.ws278{word-spacing:21.952220pt;}
.ws1b0{word-spacing:21.957553pt;}
.wsa8{word-spacing:21.989553pt;}
.ws27d{word-spacing:22.058887pt;}
.ws164{word-spacing:22.064221pt;}
.wsd7{word-spacing:22.074887pt;}
.ws17c{word-spacing:22.128221pt;}
.ws1f2{word-spacing:22.138888pt;}
.ws204{word-spacing:22.149555pt;}
.ws11{word-spacing:22.197555pt;}
.ws49{word-spacing:22.261556pt;}
.ws10{word-spacing:22.298890pt;}
.ws175{word-spacing:22.320223pt;}
.ws2d1{word-spacing:22.330890pt;}
.ws331{word-spacing:22.382400pt;}
.ws2ca{word-spacing:22.384224pt;}
.ws1e6{word-spacing:22.405557pt;}
.ws91{word-spacing:22.410891pt;}
.ws37f{word-spacing:22.416000pt;}
.wsd2{word-spacing:22.458891pt;}
.ws58{word-spacing:22.480225pt;}
.ws388{word-spacing:22.507200pt;}
.wsbe{word-spacing:22.549559pt;}
.ws1e9{word-spacing:22.570892pt;}
.ws56{word-spacing:22.613559pt;}
.ws15b{word-spacing:22.624226pt;}
.ws361{word-spacing:22.632000pt;}
.ws1e8{word-spacing:22.677560pt;}
.ws191{word-spacing:22.682893pt;}
.ws33e{word-spacing:22.804800pt;}
.ws6a{word-spacing:22.848228pt;}
.ws2cf{word-spacing:22.885562pt;}
.ws4{word-spacing:22.914667pt;}
.ws5{word-spacing:22.970133pt;}
.ws17a{word-spacing:22.970896pt;}
.ws6{word-spacing:22.984000pt;}
.ws2c1{word-spacing:22.986897pt;}
.ws7{word-spacing:22.997867pt;}
.ws8b{word-spacing:23.056231pt;}
.ws279{word-spacing:23.152232pt;}
.ws178{word-spacing:23.168232pt;}
.ws360{word-spacing:23.184000pt;}
.ws17e{word-spacing:23.200232pt;}
.ws179{word-spacing:23.226899pt;}
.ws2f5{word-spacing:23.242899pt;}
.ws35f{word-spacing:23.332800pt;}
.ws38c{word-spacing:23.433600pt;}
.ws1ca{word-spacing:23.456235pt;}
.ws197{word-spacing:23.472235pt;}
.ws2aa{word-spacing:23.486400pt;}
.ws38d{word-spacing:23.496000pt;}
.ws22f{word-spacing:23.530902pt;}
.ws2df{word-spacing:23.578902pt;}
.ws392{word-spacing:23.596800pt;}
.ws11d{word-spacing:23.696237pt;}
.ws5f{word-spacing:23.717571pt;}
.ws22e{word-spacing:23.727467pt;}
.ws22d{word-spacing:23.728237pt;}
.ws269{word-spacing:23.754904pt;}
.ws25a{word-spacing:23.788800pt;}
.ws5e{word-spacing:23.792238pt;}
.ws2f3{word-spacing:23.834905pt;}
.ws2f4{word-spacing:23.893572pt;}
.ws362{word-spacing:23.899200pt;}
.ws3b2{word-spacing:23.923200pt;}
.ws36b{word-spacing:23.928000pt;}
.ws21b{word-spacing:23.952240pt;}
.ws259{word-spacing:23.976000pt;}
.ws2f1{word-spacing:24.005573pt;}
.wsc8{word-spacing:24.042907pt;}
.ws2c2{word-spacing:24.058907pt;}
.ws1d3{word-spacing:24.080241pt;}
.ws339{word-spacing:24.096000pt;}
.ws3b0{word-spacing:24.134400pt;}
.ws2a9{word-spacing:24.163200pt;}
.ws2f0{word-spacing:24.176242pt;}
.ws3a1{word-spacing:24.230400pt;}
.ws36e{word-spacing:24.312000pt;}
.ws140{word-spacing:24.336243pt;}
.ws160{word-spacing:24.362910pt;}
.ws107{word-spacing:24.373577pt;}
.ws2fe{word-spacing:24.432244pt;}
.ws15e{word-spacing:24.442911pt;}
.ws77{word-spacing:24.453578pt;}
.ws20c{word-spacing:24.490912pt;}
.ws3cb{word-spacing:24.552000pt;}
.ws386{word-spacing:24.590400pt;}
.ws1a5{word-spacing:24.661580pt;}
.ws394{word-spacing:24.691200pt;}
.ws294{word-spacing:24.820800pt;}
.ws131{word-spacing:24.880249pt;}
.ws120{word-spacing:24.885582pt;}
.ws11e{word-spacing:24.917583pt;}
.ws48{word-spacing:24.928249pt;}
.ws252{word-spacing:24.964800pt;}
.ws11f{word-spacing:24.981583pt;}
.ws275{word-spacing:24.997583pt;}
.ws37e{word-spacing:25.003200pt;}
.ws385{word-spacing:25.022400pt;}
.ws273{word-spacing:25.024250pt;}
.ws47{word-spacing:25.040250pt;}
.ws188{word-spacing:25.045584pt;}
.ws46{word-spacing:25.088251pt;}
.ws18c{word-spacing:25.093584pt;}
.ws274{word-spacing:25.141585pt;}
.ws21a{word-spacing:25.184252pt;}
.ws219{word-spacing:25.205585pt;}
.ws397{word-spacing:25.209600pt;}
.ws28e{word-spacing:25.237586pt;}
.ws28d{word-spacing:25.280253pt;}
.ws396{word-spacing:25.334400pt;}
.ws221{word-spacing:25.354920pt;}
.wscf{word-spacing:25.504255pt;}
.ws222{word-spacing:25.509588pt;}
.wsd1{word-spacing:25.530922pt;}
.wsce{word-spacing:25.568256pt;}
.ws2c4{word-spacing:25.573589pt;}
.ws15d{word-spacing:25.600256pt;}
.ws1ee{word-spacing:25.653590pt;}
.ws27c{word-spacing:25.712257pt;}
.wsc0{word-spacing:25.722924pt;}
.ws42{word-spacing:25.733591pt;}
.ws27b{word-spacing:25.808258pt;}
.ws2{word-spacing:25.812648pt;}
.ws29f{word-spacing:25.915200pt;}
.ws27a{word-spacing:25.930926pt;}
.ws34e{word-spacing:25.944000pt;}
.ws26{word-spacing:25.952260pt;}
.ws2a1{word-spacing:25.977600pt;}
.ws25{word-spacing:26.080261pt;}
.ws34f{word-spacing:26.116800pt;}
.ws1c{word-spacing:26.122928pt;}
.ws285{word-spacing:26.176262pt;}
.ws2a0{word-spacing:26.198400pt;}
.ws1b{word-spacing:26.261596pt;}
.ws354{word-spacing:26.304000pt;}
.ws3a{word-spacing:26.304263pt;}
.ws43{word-spacing:26.368264pt;}
.ws343{word-spacing:26.380800pt;}
.ws5b{word-spacing:26.384264pt;}
.ws3b{word-spacing:26.416264pt;}
.ws1db{word-spacing:26.480265pt;}
.ws28{word-spacing:26.496265pt;}
.ws381{word-spacing:26.544000pt;}
.ws3c9{word-spacing:26.592000pt;}
.wsd{word-spacing:26.592266pt;}
.ws2e5{word-spacing:26.629600pt;}
.ws136{word-spacing:26.757601pt;}
.ws1bb{word-spacing:26.800268pt;}
.ws1bd{word-spacing:26.864269pt;}
.ws135{word-spacing:26.890936pt;}
.ws27e{word-spacing:26.906936pt;}
.wsf3{word-spacing:27.018937pt;}
.ws1bc{word-spacing:27.098938pt;}
.wsf1{word-spacing:27.141605pt;}
.wse8{word-spacing:27.168000pt;}
.wsf2{word-spacing:27.168272pt;}
.ws181{word-spacing:27.221606pt;}
.ws2f8{word-spacing:27.285606pt;}
.ws20f{word-spacing:27.312273pt;}
.ws36a{word-spacing:27.369600pt;}
.ws180{word-spacing:27.397607pt;}
.ws2f7{word-spacing:27.456275pt;}
.ws1ae{word-spacing:27.477608pt;}
.ws391{word-spacing:27.508800pt;}
.wsed{word-spacing:27.573609pt;}
.ws52{word-spacing:27.648276pt;}
.ws205{word-spacing:27.653610pt;}
.ws206{word-spacing:27.717611pt;}
.wsee{word-spacing:27.754944pt;}
.ws2e7{word-spacing:27.920279pt;}
.ws5a{word-spacing:27.925613pt;}
.ws2e6{word-spacing:27.989613pt;}
.ws230{word-spacing:28.005613pt;}
.ws318{word-spacing:28.058947pt;}
.ws122{word-spacing:28.117615pt;}
.ws121{word-spacing:28.144281pt;}
.ws18f{word-spacing:28.293616pt;}
.ws93{word-spacing:28.592286pt;}
.ws2c0{word-spacing:28.730954pt;}
.ws3bf{word-spacing:28.737600pt;}
.ws21e{word-spacing:28.789621pt;}
.ws13b{word-spacing:28.896289pt;}
.ws1f0{word-spacing:28.976290pt;}
.ws195{word-spacing:29.189625pt;}
.ws3aa{word-spacing:29.198400pt;}
.ws30f{word-spacing:29.237626pt;}
.ws1ea{word-spacing:29.258959pt;}
.ws217{word-spacing:29.274959pt;}
.ws313{word-spacing:29.306960pt;}
.ws216{word-spacing:29.381627pt;}
.ws1cf{word-spacing:29.418961pt;}
.ws3a7{word-spacing:29.448000pt;}
.ws30d{word-spacing:29.498962pt;}
.wsc4{word-spacing:29.642963pt;}
.ws3{word-spacing:29.947024pt;}
.ws1d2{word-spacing:29.968300pt;}
.ws1c9{word-spacing:29.994967pt;}
.wsa1{word-spacing:30.042967pt;}
.wsa0{word-spacing:30.117635pt;}
.ws1c8{word-spacing:30.154968pt;}
.ws1da{word-spacing:30.181635pt;}
.ws90{word-spacing:30.272303pt;}
.wsb4{word-spacing:30.378970pt;}
.ws2b1{word-spacing:30.405637pt;}
.ws8f{word-spacing:30.410971pt;}
.ws39a{word-spacing:30.441600pt;}
.ws39b{word-spacing:30.475200pt;}
.ws12e{word-spacing:30.506972pt;}
.ws3b6{word-spacing:30.542400pt;}
.ws15c{word-spacing:30.624306pt;}
.ws20e{word-spacing:30.709640pt;}
.ws2c8{word-spacing:30.826975pt;}
.ws201{word-spacing:30.837642pt;}
.ws202{word-spacing:30.842975pt;}
.ws12f{word-spacing:30.922976pt;}
.ws10c{word-spacing:30.949643pt;}
.ws20d{word-spacing:31.029644pt;}
.ws2d0{word-spacing:31.141645pt;}
.ws26a{word-spacing:31.322980pt;}
.ws1fe{word-spacing:31.386981pt;}
.ws2be{word-spacing:31.397647pt;}
.ws200{word-spacing:31.456315pt;}
.ws3bd{word-spacing:31.627200pt;}
.ws1ff{word-spacing:31.632316pt;}
.ws29d{word-spacing:31.651200pt;}
.ws2b5{word-spacing:31.696317pt;}
.ws370{word-spacing:31.708800pt;}
.ws29e{word-spacing:31.761600pt;}
.ws3be{word-spacing:31.766400pt;}
.ws399{word-spacing:31.780800pt;}
.ws371{word-spacing:31.828800pt;}
.ws16b{word-spacing:31.856319pt;}
.ws70{word-spacing:31.882985pt;}
.ws251{word-spacing:31.977600pt;}
.ws166{word-spacing:31.994987pt;}
.ws39d{word-spacing:32.001600pt;}
.ws367{word-spacing:32.020800pt;}
.ws355{word-spacing:32.078400pt;}
.ws35b{word-spacing:32.088000pt;}
.wse1{word-spacing:32.092800pt;}
.ws395{word-spacing:32.126400pt;}
.ws1ab{word-spacing:32.128321pt;}
.ws359{word-spacing:32.140800pt;}
.ws35c{word-spacing:32.145600pt;}
.ws366{word-spacing:32.232000pt;}
.wse0{word-spacing:32.256000pt;}
.ws35a{word-spacing:32.404800pt;}
.ws280{word-spacing:32.405657pt;}
.ws368{word-spacing:32.424000pt;}
.ws24a{word-spacing:32.438400pt;}
.ws2b8{word-spacing:32.741661pt;}
.ws283{word-spacing:32.906996pt;}
.ws16d{word-spacing:32.949663pt;}
.ws284{word-spacing:32.960330pt;}
.ws26f{word-spacing:32.992330pt;}
.ws16c{word-spacing:33.018997pt;}
.wsbf{word-spacing:33.072331pt;}
.ws224{word-spacing:33.120331pt;}
.ws223{word-spacing:33.205665pt;}
.wsf9{word-spacing:33.317667pt;}
.ws31{word-spacing:33.365667pt;}
.ws94{word-spacing:33.408334pt;}
.wsc6{word-spacing:33.445668pt;}
.wsc5{word-spacing:33.488335pt;}
.ws14f{word-spacing:33.547002pt;}
.ws2cd{word-spacing:33.595003pt;}
.wsa2{word-spacing:33.627003pt;}
.ws2ce{word-spacing:33.675003pt;}
.ws150{word-spacing:33.691004pt;}
.ws95{word-spacing:33.707004pt;}
.wsc7{word-spacing:33.931006pt;}
.ws25c{word-spacing:33.973673pt;}
.ws11b{word-spacing:34.187009pt;}
.ws2b9{word-spacing:34.341677pt;}
.ws129{word-spacing:34.405677pt;}
.ws12b{word-spacing:34.528345pt;}
.ws261{word-spacing:34.555012pt;}
.ws12a{word-spacing:34.656347pt;}
.ws1c7{word-spacing:34.763014pt;}
.ws1f6{word-spacing:34.768348pt;}
.ws1c6{word-spacing:34.784348pt;}
.ws1f5{word-spacing:34.869682pt;}
.ws170{word-spacing:35.051017pt;}
.ws17b{word-spacing:35.163018pt;}
.ws185{word-spacing:35.200352pt;}
.ws2dc{word-spacing:35.237686pt;}
.ws98{word-spacing:35.243019pt;}
.ws3f{word-spacing:35.269686pt;}
.wsf8{word-spacing:35.275019pt;}
.ws2af{word-spacing:35.323020pt;}
.ws1e5{word-spacing:35.328353pt;}
.ws2ae{word-spacing:35.333687pt;}
.ws2e3{word-spacing:35.349687pt;}
.ws1fc{word-spacing:35.365687pt;}
.wsb3{word-spacing:35.371020pt;}
.ws32e{word-spacing:35.381687pt;}
.ws2e{word-spacing:35.397687pt;}
.ws16f{word-spacing:35.403021pt;}
.ws2d8{word-spacing:35.408354pt;}
.ws289{word-spacing:35.429688pt;}
.ws2b2{word-spacing:35.456355pt;}
.wsb2{word-spacing:35.488355pt;}
.ws1b9{word-spacing:35.493688pt;}
.ws76{word-spacing:35.499022pt;}
.ws2c7{word-spacing:35.515022pt;}
.ws225{word-spacing:35.525689pt;}
.ws86{word-spacing:35.531022pt;}
.ws1fd{word-spacing:35.547022pt;}
.ws171{word-spacing:35.568356pt;}
.wsf7{word-spacing:35.584356pt;}
.ws2e4{word-spacing:35.589689pt;}
.ws233{word-spacing:35.600356pt;}
.ws226{word-spacing:35.792358pt;}
.ws1ac{word-spacing:35.861692pt;}
.ws54{word-spacing:35.984360pt;}
.ws218{word-spacing:36.171028pt;}
.ws32f{word-spacing:36.203029pt;}
.ws62{word-spacing:45.350400pt;}
.ws31d{word-spacing:70.738952pt;}
.ws325{word-spacing:70.740978pt;}
.ws32b{word-spacing:70.845387pt;}
.ws322{word-spacing:70.853810pt;}
.ws22b{word-spacing:107.463328pt;}
.ws22c{word-spacing:108.742032pt;}
.ws22a{word-spacing:109.733680pt;}
.wsa{word-spacing:321.555605pt;}
.wseb{word-spacing:849.798444pt;}
._24{margin-left:-461.639939pt;}
._23{margin-left:-156.044902pt;}
._14{margin-left:-36.821702pt;}
._15{margin-left:-35.600356pt;}
._26{margin-left:-23.863064pt;}
._22{margin-left:-17.760178pt;}
._29{margin-left:-15.432000pt;}
._25{margin-left:-11.908800pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._b{width:1.024010pt;}
._0{width:4.966400pt;}
._28{width:11.059200pt;}
._18{width:12.081600pt;}
._8{width:13.418801pt;}
._7{width:15.093484pt;}
._e{width:16.192162pt;}
._1d{width:17.360174pt;}
._9{width:18.378850pt;}
._1c{width:20.074867pt;}
._f{width:21.056211pt;}
._10{width:22.400224pt;}
._4{width:23.996267pt;}
._11{width:25.498922pt;}
._2a{width:26.392557pt;}
._a{width:27.301606pt;}
._1f{width:28.202949pt;}
._12{width:29.216292pt;}
._20{width:30.160302pt;}
._17{width:31.328313pt;}
._19{width:33.072000pt;}
._d{width:34.320343pt;}
._1b{width:35.211019pt;}
._1e{width:36.160362pt;}
._c{width:37.093704pt;}
._16{width:38.240382pt;}
._27{width:70.912922pt;}
._13{width:107.733227pt;}
._21{width:130.030204pt;}
._6{width:245.164036pt;}
._5{width:406.833039pt;}
._2c{width:551.680000pt;}
._1a{width:812.689931pt;}
._2b{width:886.848000pt;}
.fs17{font-size:26.720000pt;}
.fs1d{font-size:32.000000pt;}
.fs11{font-size:32.000533pt;}
.fs14{font-size:32.159467pt;}
.fsf{font-size:33.600000pt;}
.fs19{font-size:34.832000pt;}
.fsd{font-size:35.552000pt;}
.fs13{font-size:35.733333pt;}
.fs9{font-size:36.666133pt;}
.fs16{font-size:37.280000pt;}
.fs1b{font-size:37.333333pt;}
.fs1c{font-size:38.167409pt;}
.fse{font-size:38.400000pt;}
.fs10{font-size:39.999467pt;}
.fs7{font-size:42.666133pt;}
.fs12{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1a{font-size:50.666667pt;}
.fs15{font-size:53.279467pt;}
.fsa{font-size:53.333867pt;}
.fsc{font-size:56.000533pt;}
.fs2{font-size:58.666667pt;}
.fs18{font-size:63.332800pt;}
.fs8{font-size:66.666133pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs6{font-size:80.000533pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:90.666133pt;}
.fsb{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y318{bottom:4.398667pt;}
.y1c0{bottom:4.636533pt;}
.yc{bottom:7.146667pt;}
.ye0{bottom:32.050388pt;}
.y77{bottom:36.434655pt;}
.ydf{bottom:40.743333pt;}
.y75{bottom:43.237640pt;}
.y76{bottom:45.127600pt;}
.y16{bottom:49.453333pt;}
.y74{bottom:50.948000pt;}
.y1f8{bottom:51.051200pt;}
.y36b{bottom:65.222400pt;}
.y3af{bottom:65.225467pt;}
.y10f{bottom:65.231276pt;}
.y166{bottom:65.234610pt;}
.y1aa{bottom:65.234624pt;}
.y253{bottom:65.234667pt;}
.yfa{bottom:65.234738pt;}
.yed{bottom:65.234762pt;}
.y1c5{bottom:65.235146pt;}
.y2f2{bottom:65.236347pt;}
.y281{bottom:65.236733pt;}
.y121{bottom:65.237657pt;}
.y29d{bottom:65.238005pt;}
.ybc{bottom:65.242920pt;}
.yd2{bottom:65.252253pt;}
.y15{bottom:69.080000pt;}
.y55{bottom:73.020533pt;}
.y53{bottom:73.022204pt;}
.y36a{bottom:78.602400pt;}
.y54{bottom:78.916533pt;}
.y3ae{bottom:79.059067pt;}
.y1c4{bottom:79.899293pt;}
.y2f1{bottom:79.900493pt;}
.y280{bottom:79.900880pt;}
.ybb{bottom:79.907066pt;}
.yd1{bottom:79.916400pt;}
.y165{bottom:79.974758pt;}
.y1a9{bottom:79.974772pt;}
.y251{bottom:79.975187pt;}
.y29c{bottom:79.978153pt;}
.y120{bottom:80.204474pt;}
.yf9{bottom:80.654892pt;}
.yec{bottom:80.654916pt;}
.y10e{bottom:81.332770pt;}
.y1b{bottom:81.413333pt;}
.y405{bottom:84.400000pt;}
.y252{bottom:85.870800pt;}
.y52{bottom:87.913019pt;}
.y14{bottom:88.706667pt;}
.y369{bottom:91.906800pt;}
.y3ad{bottom:92.817067pt;}
.y1c3{bottom:94.563440pt;}
.y2f0{bottom:94.564640pt;}
.y27f{bottom:94.565027pt;}
.yba{bottom:94.571213pt;}
.yd0{bottom:94.580547pt;}
.y250{bottom:94.639720pt;}
.y164{bottom:94.714905pt;}
.y1a8{bottom:94.714919pt;}
.y29b{bottom:94.718300pt;}
.y11f{bottom:95.171290pt;}
.yeb{bottom:95.697824pt;}
.yf8{bottom:96.000379pt;}
.y10d{bottom:97.358264pt;}
.y1a{bottom:101.040000pt;}
.y51{bottom:102.803835pt;}
.y368{bottom:105.211200pt;}
.y1bf{bottom:105.977333pt;}
.y3ac{bottom:106.575067pt;}
.y2ef{bottom:109.228787pt;}
.y27e{bottom:109.229173pt;}
.yb9{bottom:109.235360pt;}
.ycf{bottom:109.244693pt;}
.y24f{bottom:109.305160pt;}
.y29a{bottom:109.382447pt;}
.y163{bottom:109.455053pt;}
.y1a7{bottom:109.455537pt;}
.y11e{bottom:110.062106pt;}
.y1bc{bottom:110.589106pt;}
.y1be{bottom:110.613867pt;}
.yea{bottom:111.193979pt;}
.yf5{bottom:111.420092pt;}
.yf7{bottom:111.420533pt;}
.y10c{bottom:113.383757pt;}
.y1c2{bottom:113.973659pt;}
.y1bd{bottom:116.893867pt;}
.yf6{bottom:117.316533pt;}
.y50{bottom:117.694650pt;}
.y367{bottom:118.591200pt;}
.y10{bottom:119.053333pt;}
.y3ab{bottom:119.955067pt;}
.y19{bottom:120.666667pt;}
.y1c1{bottom:122.093867pt;}
.y2ee{bottom:123.892933pt;}
.y27d{bottom:123.893320pt;}
.y2ec{bottom:123.894986pt;}
.yb8{bottom:123.899506pt;}
.yce{bottom:123.908840pt;}
.y24e{bottom:123.969307pt;}
.y299{bottom:124.122594pt;}
.y162{bottom:124.195636pt;}
.y1a6{bottom:124.195685pt;}
.y11d{bottom:125.028922pt;}
.ye9{bottom:126.614758pt;}
.yf4{bottom:126.840247pt;}
.y10b{bottom:129.485252pt;}
.y2ed{bottom:129.864533pt;}
.y1bb{bottom:130.621307pt;}
.y366{bottom:131.895600pt;}
.y4f{bottom:132.661467pt;}
.y3aa{bottom:133.713067pt;}
.y17{bottom:137.733333pt;}
.y332{bottom:138.558746pt;}
.y2eb{bottom:138.559133pt;}
.y27c{bottom:138.559519pt;}
.yb7{bottom:138.563653pt;}
.ycd{bottom:138.572986pt;}
.y24d{bottom:138.633453pt;}
.yf{bottom:138.680000pt;}
.y298{bottom:138.786741pt;}
.y161{bottom:138.935783pt;}
.y1a5{bottom:138.935832pt;}
.y3ef{bottom:139.906800pt;}
.y11c{bottom:139.995738pt;}
.y18{bottom:140.293333pt;}
.ye8{bottom:142.034912pt;}
.yf3{bottom:142.186198pt;}
.y365{bottom:145.275600pt;}
.y1ba{bottom:145.285453pt;}
.y10a{bottom:145.510745pt;}
.y4d{bottom:147.403254pt;}
.y3a9{bottom:147.471067pt;}
.y404{bottom:147.733333pt;}
.y71{bottom:151.407867pt;}
.y3ee{bottom:153.211200pt;}
.y2ea{bottom:153.223279pt;}
.y27b{bottom:153.223666pt;}
.yb6{bottom:153.227800pt;}
.ycc{bottom:153.237133pt;}
.y24c{bottom:153.298493pt;}
.y331{bottom:153.298893pt;}
.y4e{bottom:153.373200pt;}
.y297{bottom:153.526888pt;}
.y160{bottom:153.675930pt;}
.y1a4{bottom:153.675979pt;}
.y11b{bottom:154.886554pt;}
.ye7{bottom:157.455067pt;}
.ye5{bottom:157.456317pt;}
.yf2{bottom:157.606352pt;}
.y403{bottom:158.400000pt;}
.y364{bottom:158.580000pt;}
.y1b9{bottom:159.949600pt;}
.y1b7{bottom:159.952440pt;}
.y3a8{bottom:160.851067pt;}
.y109{bottom:161.536239pt;}
.y4c{bottom:162.370070pt;}
.ye6{bottom:163.351200pt;}
.y1b8{bottom:165.845600pt;}
.y3ed{bottom:166.591200pt;}
.y24b{bottom:167.962639pt;}
.y330{bottom:167.963040pt;}
.y2e9{bottom:167.963427pt;}
.y27a{bottom:167.963813pt;}
.yb5{bottom:167.967947pt;}
.ycb{bottom:167.977280pt;}
.y296{bottom:168.191035pt;}
.y15f{bottom:168.416078pt;}
.y1a3{bottom:168.416127pt;}
.y11a{bottom:169.853370pt;}
.y402{bottom:171.733333pt;}
.y363{bottom:171.884400pt;}
.ye4{bottom:172.876471pt;}
.yf1{bottom:172.951839pt;}
.y3a7{bottom:174.609067pt;}
.y1b6{bottom:174.616587pt;}
.y4b{bottom:177.260886pt;}
.y108{bottom:177.637733pt;}
.y3ec{bottom:179.895600pt;}
.y24a{bottom:182.626786pt;}
.y32f{bottom:182.627187pt;}
.y2e8{bottom:182.627573pt;}
.y279{bottom:182.627960pt;}
.yb4{bottom:182.632094pt;}
.yca{bottom:182.641427pt;}
.y295{bottom:182.931182pt;}
.y1a2{bottom:183.080273pt;}
.y15e{bottom:183.156225pt;}
.y119{bottom:184.820187pt;}
.y362{bottom:185.264400pt;}
.y70{bottom:185.423586pt;}
.ye3{bottom:188.296625pt;}
.y3a6{bottom:188.367067pt;}
.yf0{bottom:188.371993pt;}
.y1b5{bottom:189.280733pt;}
.y401{bottom:190.400000pt;}
.y4a{bottom:192.151701pt;}
.y106{bottom:192.980104pt;}
.y3eb{bottom:193.275600pt;}
.y2e7{bottom:197.291720pt;}
.y278{bottom:197.292107pt;}
.y32e{bottom:197.292627pt;}
.yb3{bottom:197.296240pt;}
.yc9{bottom:197.305574pt;}
.y249{bottom:197.367320pt;}
.y294{bottom:197.595329pt;}
.y15d{bottom:197.820372pt;}
.y1a1{bottom:197.820421pt;}
.y361{bottom:198.568800pt;}
.y107{bottom:198.878667pt;}
.y118{bottom:199.711002pt;}
.y6d{bottom:200.163319pt;}
.y6f{bottom:200.163733pt;}
.y3a5{bottom:202.125067pt;}
.ye2{bottom:203.716779pt;}
.yef{bottom:203.792148pt;}
.y1b4{bottom:203.944880pt;}
.y400{bottom:204.400000pt;}
.y6e{bottom:206.135333pt;}
.y3ea{bottom:206.580000pt;}
.y49{bottom:207.042517pt;}
.y105{bottom:209.005597pt;}
.y360{bottom:211.948800pt;}
.y2e6{bottom:211.955867pt;}
.y277{bottom:211.956253pt;}
.y32d{bottom:211.956773pt;}
.yb2{bottom:211.960387pt;}
.yc8{bottom:211.969720pt;}
.y248{bottom:212.032240pt;}
.y293{bottom:212.335476pt;}
.y15c{bottom:212.560519pt;}
.y1a0{bottom:212.560568pt;}
.y117{bottom:214.677818pt;}
.y6a{bottom:214.979171pt;}
.y6c{bottom:214.979467pt;}
.y3a4{bottom:215.505067pt;}
.y1b3{bottom:218.609027pt;}
.ye1{bottom:219.136933pt;}
.yee{bottom:219.137634pt;}
.y3e9{bottom:219.884400pt;}
.y6b{bottom:220.875600pt;}
.y48{bottom:222.009333pt;}
.y46{bottom:222.009851pt;}
.y104{bottom:225.031091pt;}
.y35f{bottom:225.253200pt;}
.y276{bottom:226.620400pt;}
.y32c{bottom:226.620920pt;}
.yb1{bottom:226.624534pt;}
.y274{bottom:226.627507pt;}
.yc7{bottom:226.633867pt;}
.y247{bottom:226.696387pt;}
.y2e5{bottom:227.074000pt;}
.y292{bottom:227.075624pt;}
.y19f{bottom:227.300716pt;}
.y15b{bottom:227.303554pt;}
.y47{bottom:227.905467pt;}
.y3a3{bottom:229.263067pt;}
.y116{bottom:229.644635pt;}
.y69{bottom:229.795319pt;}
.y275{bottom:232.516533pt;}
.y3e8{bottom:233.264400pt;}
.y1b2{bottom:233.273173pt;}
.y3ff{bottom:234.400000pt;}
.y45{bottom:236.900667pt;}
.y43{bottom:236.901836pt;}
.y35e{bottom:238.557600pt;}
.y103{bottom:241.132585pt;}
.y32b{bottom:241.285067pt;}
.yb0{bottom:241.288680pt;}
.y273{bottom:241.291654pt;}
.yc6{bottom:241.298014pt;}
.y246{bottom:241.362213pt;}
.y291{bottom:241.739770pt;}
.y19e{bottom:242.040863pt;}
.y15a{bottom:242.043701pt;}
.y44{bottom:242.796800pt;}
.y3a2{bottom:243.021067pt;}
.y115{bottom:244.535450pt;}
.y68{bottom:244.535467pt;}
.y3fe{bottom:245.066667pt;}
.y3e7{bottom:246.568800pt;}
.yff{bottom:247.785333pt;}
.y1b1{bottom:247.937320pt;}
.y42{bottom:251.792651pt;}
.y35d{bottom:251.937600pt;}
.yaf{bottom:255.952827pt;}
.y272{bottom:255.955800pt;}
.yc5{bottom:255.962160pt;}
.y245{bottom:256.026360pt;}
.y32a{bottom:256.176267pt;}
.y3a1{bottom:256.401067pt;}
.y290{bottom:256.479918pt;}
.y19d{bottom:256.781010pt;}
.y159{bottom:256.783849pt;}
.y102{bottom:257.158079pt;}
.y3fd{bottom:258.400000pt;}
.y66{bottom:259.350785pt;}
.y114{bottom:259.502267pt;}
.y3e6{bottom:259.948800pt;}
.yfe{bottom:261.164800pt;}
.y1b0{bottom:262.603533pt;}
.y35c{bottom:265.242000pt;}
.y2e4{bottom:265.250174pt;}
.y67{bottom:265.322800pt;}
.y41{bottom:266.683467pt;}
.y329{bottom:268.799867pt;}
.y3a0{bottom:270.159067pt;}
.yae{bottom:270.616974pt;}
.y271{bottom:270.619947pt;}
.yc4{bottom:270.626307pt;}
.y244{bottom:270.690507pt;}
.y28f{bottom:271.144065pt;}
.y19c{bottom:271.521158pt;}
.y158{bottom:271.523996pt;}
.y101{bottom:273.183572pt;}
.y3e5{bottom:273.253200pt;}
.y63{bottom:274.166504pt;}
.y65{bottom:274.166933pt;}
.y112{bottom:274.318250pt;}
.yfd{bottom:274.468267pt;}
.y3fc{bottom:277.066667pt;}
.y1af{bottom:277.267680pt;}
.y35b{bottom:278.622000pt;}
.y2e3{bottom:279.914320pt;}
.y64{bottom:280.062933pt;}
.y113{bottom:280.214133pt;}
.y3f{bottom:281.502541pt;}
.y39f{bottom:283.917067pt;}
.yad{bottom:285.281120pt;}
.y270{bottom:285.284094pt;}
.yc3{bottom:285.290454pt;}
.y243{bottom:285.354653pt;}
.y28e{bottom:285.884212pt;}
.y19b{bottom:286.261305pt;}
.y157{bottom:286.264143pt;}
.y3e4{bottom:286.557600pt;}
.y40{bottom:287.395200pt;}
.yfc{bottom:287.848267pt;}
.y62{bottom:288.982653pt;}
.y110{bottom:289.282850pt;}
.y100{bottom:289.285067pt;}
.y3fb{bottom:291.066667pt;}
.y35a{bottom:291.926400pt;}
.y1ae{bottom:291.931827pt;}
.y2e2{bottom:294.578467pt;}
.y111{bottom:295.181067pt;}
.y3e{bottom:296.393356pt;}
.y39e{bottom:297.297067pt;}
.y3e3{bottom:299.937600pt;}
.yac{bottom:299.945267pt;}
.y26f{bottom:299.948240pt;}
.yc2{bottom:299.954600pt;}
.y242{bottom:300.018800pt;}
.y28d{bottom:300.548359pt;}
.y156{bottom:300.928290pt;}
.y19a{bottom:301.001453pt;}
.yfb{bottom:301.152667pt;}
.y61{bottom:303.722800pt;}
.y359{bottom:305.230800pt;}
.ya{bottom:306.382667pt;}
.y1ad{bottom:306.595973pt;}
.y328{bottom:306.748624pt;}
.y2e1{bottom:309.242613pt;}
.y39d{bottom:311.055067pt;}
.y3d{bottom:311.284172pt;}
.y3e2{bottom:313.242000pt;}
.yab{bottom:314.609413pt;}
.y26e{bottom:314.612387pt;}
.yc1{bottom:314.618747pt;}
.y28c{bottom:315.288506pt;}
.y155{bottom:315.668437pt;}
.y199{bottom:315.741600pt;}
.y197{bottom:315.742499pt;}
.y79{bottom:317.506667pt;}
.y128{bottom:317.931067pt;}
.y5f{bottom:318.536979pt;}
.y358{bottom:318.610800pt;}
.y3fa{bottom:321.066667pt;}
.y1ac{bottom:321.260120pt;}
.y327{bottom:321.412770pt;}
.y198{bottom:321.637733pt;}
.y2e0{bottom:323.906760pt;}
.y60{bottom:324.434533pt;}
.y39c{bottom:324.792667pt;}
.y1f7{bottom:324.812000pt;}
.y223{bottom:325.852858pt;}
.y204{bottom:325.863514pt;}
.y3c{bottom:326.250988pt;}
.y240{bottom:326.363009pt;}
.y221{bottom:326.373665pt;}
.y3e1{bottom:326.546400pt;}
.y241{bottom:328.062933pt;}
.y23f{bottom:328.683330pt;}
.y220{bottom:328.693986pt;}
.yaa{bottom:329.273560pt;}
.y26d{bottom:329.276534pt;}
.yc0{bottom:329.282894pt;}
.y28b{bottom:330.028653pt;}
.y196{bottom:330.406646pt;}
.y154{bottom:330.408585pt;}
.y127{bottom:331.235467pt;}
.y3f9{bottom:331.733333pt;}
.y357{bottom:331.915200pt;}
.y23e{bottom:332.323649pt;}
.y21f{bottom:332.334305pt;}
.y202{bottom:333.023567pt;}
.y5e{bottom:333.353127pt;}
.y1ab{bottom:335.924267pt;}
.y23d{bottom:335.963969pt;}
.y21e{bottom:335.974625pt;}
.y326{bottom:336.076917pt;}
.y39b{bottom:338.097067pt;}
.y1fb{bottom:338.544266pt;}
.y1f6{bottom:338.544344pt;}
.y1fe{bottom:338.545598pt;}
.y2df{bottom:338.570907pt;}
.y23c{bottom:339.604288pt;}
.y21d{bottom:339.614944pt;}
.y3e0{bottom:339.926400pt;}
.y3b{bottom:341.141804pt;}
.y23b{bottom:343.244608pt;}
.y21c{bottom:343.255264pt;}
.yd{bottom:343.546667pt;}
.ya9{bottom:343.937707pt;}
.y26c{bottom:343.940680pt;}
.ybf{bottom:343.947040pt;}
.y126{bottom:344.615467pt;}
.y28a{bottom:344.698195pt;}
.y3f8{bottom:345.066667pt;}
.y195{bottom:345.146793pt;}
.y153{bottom:345.148732pt;}
.y356{bottom:345.295200pt;}
.y23a{bottom:346.884928pt;}
.y21b{bottom:346.895583pt;}
.y5d{bottom:348.093275pt;}
.y1f2{bottom:349.304132pt;}
.y239{bottom:350.525247pt;}
.y21a{bottom:350.535903pt;}
.y325{bottom:350.741063pt;}
.y9{bottom:351.724000pt;}
.y39a{bottom:351.930667pt;}
.y3df{bottom:353.230800pt;}
.y2de{bottom:353.235053pt;}
.y238{bottom:354.165567pt;}
.y219{bottom:354.176223pt;}
.y3a{bottom:356.032619pt;}
.y237{bottom:357.805886pt;}
.y218{bottom:357.816542pt;}
.y125{bottom:357.919867pt;}
.y355{bottom:358.599600pt;}
.ya8{bottom:358.601853pt;}
.y26b{bottom:358.604827pt;}
.ybe{bottom:358.611187pt;}
.y289{bottom:359.438342pt;}
.y194{bottom:359.886941pt;}
.y152{bottom:359.888880pt;}
.y236{bottom:361.446206pt;}
.y217{bottom:361.456862pt;}
.y5c{bottom:362.909423pt;}
.y78{bottom:363.133333pt;}
.y3f7{bottom:363.733333pt;}
.y235{bottom:365.086525pt;}
.y216{bottom:365.097181pt;}
.y399{bottom:365.235067pt;}
.y324{bottom:365.405210pt;}
.y1fd{bottom:365.784725pt;}
.y3de{bottom:366.610800pt;}
.y2dd{bottom:367.899200pt;}
.y2db{bottom:367.899587pt;}
.y234{bottom:368.726845pt;}
.y215{bottom:368.737501pt;}
.y201{bottom:370.543091pt;}
.y39{bottom:370.923435pt;}
.y124{bottom:371.224267pt;}
.y354{bottom:371.904000pt;}
.y233{bottom:372.367164pt;}
.y214{bottom:372.377820pt;}
.y262{bottom:373.265200pt;}
.ya7{bottom:373.266520pt;}
.y26a{bottom:373.268974pt;}
.ybd{bottom:373.275333pt;}
.y2dc{bottom:373.870800pt;}
.y288{bottom:374.102489pt;}
.y193{bottom:374.627088pt;}
.y151{bottom:374.629027pt;}
.y1f3{bottom:375.863947pt;}
.y232{bottom:376.007484pt;}
.y213{bottom:376.018140pt;}
.y1fa{bottom:376.063666pt;}
.y1f5{bottom:376.063745pt;}
.y5b{bottom:377.725571pt;}
.y3f6{bottom:377.733333pt;}
.y398{bottom:378.993067pt;}
.y231{bottom:379.647804pt;}
.y212{bottom:379.658459pt;}
.y3dd{bottom:379.915200pt;}
.y323{bottom:380.069357pt;}
.y2da{bottom:382.564120pt;}
.y230{bottom:383.288123pt;}
.y211{bottom:383.298779pt;}
.y123{bottom:384.604267pt;}
.y353{bottom:385.284000pt;}
.y38{bottom:385.890251pt;}
.yb{bottom:386.533333pt;}
.y261{bottom:386.569600pt;}
.y1f1{bottom:386.823533pt;}
.y22f{bottom:386.928443pt;}
.y210{bottom:386.939099pt;}
.ya6{bottom:387.931053pt;}
.y269{bottom:387.933120pt;}
.y287{bottom:388.842636pt;}
.y150{bottom:389.293174pt;}
.y192{bottom:389.367236pt;}
.y22e{bottom:390.568762pt;}
.y20f{bottom:390.579418pt;}
.y5a{bottom:392.541719pt;}
.y397{bottom:392.826667pt;}
.y3dc{bottom:393.219600pt;}
.y22d{bottom:394.209082pt;}
.y20e{bottom:394.219738pt;}
.y322{bottom:395.868181pt;}
.y8{bottom:397.065333pt;}
.y2d9{bottom:397.228267pt;}
.y2d7{bottom:397.236266pt;}
.y22c{bottom:397.849401pt;}
.y20d{bottom:397.860057pt;}
.y122{bottom:397.908667pt;}
.y352{bottom:398.588400pt;}
.y260{bottom:399.869733pt;}
.y37{bottom:400.781067pt;}
.y22b{bottom:401.489721pt;}
.y20c{bottom:401.500377pt;}
.ya5{bottom:402.595200pt;}
.y268{bottom:402.597267pt;}
.y2d8{bottom:403.200000pt;}
.y1fc{bottom:403.304126pt;}
.y191{bottom:404.031382pt;}
.y14f{bottom:404.033321pt;}
.y22a{bottom:405.130041pt;}
.y20b{bottom:405.140696pt;}
.y396{bottom:406.131067pt;}
.y3db{bottom:406.599600pt;}
.y59{bottom:407.281867pt;}
.y57{bottom:407.282543pt;}
.y3f5{bottom:407.733333pt;}
.y200{bottom:408.063547pt;}
.y229{bottom:408.770360pt;}
.y20a{bottom:408.781016pt;}
.y1ff{bottom:410.263067pt;}
.y321{bottom:410.532328pt;}
.y351{bottom:411.892800pt;}
.y2d6{bottom:411.900413pt;}
.y228{bottom:412.410680pt;}
.y209{bottom:412.421336pt;}
.y25f{bottom:413.249733pt;}
.y58{bottom:413.253467pt;}
.ydd{bottom:413.477867pt;}
.y1f9{bottom:413.583067pt;}
.y1f4{bottom:413.583145pt;}
.y227{bottom:416.050999pt;}
.y208{bottom:416.061655pt;}
.y36{bottom:416.201467pt;}
.ya4{bottom:416.428267pt;}
.y267{bottom:417.261413pt;}
.y2b3{bottom:417.481333pt;}
.y3f4{bottom:418.400000pt;}
.y190{bottom:418.771530pt;}
.y14e{bottom:418.773469pt;}
.y226{bottom:419.691319pt;}
.y207{bottom:419.701975pt;}
.y395{bottom:419.889067pt;}
.y3da{bottom:419.904000pt;}
.y56{bottom:422.098691pt;}
.y225{bottom:423.331638pt;}
.y206{bottom:423.342294pt;}
.y350{bottom:424.214133pt;}
.y1f0{bottom:424.342933pt;}
.y25e{bottom:426.554133pt;}
.y2d5{bottom:426.564560pt;}
.ydc{bottom:426.782267pt;}
.y224{bottom:426.971958pt;}
.y205{bottom:426.982614pt;}
.y320{bottom:429.732520pt;}
.y222{bottom:430.612277pt;}
.y203{bottom:430.622933pt;}
.y2b2{bottom:430.861333pt;}
.y3f3{bottom:431.733333pt;}
.y266{bottom:431.925560pt;}
.y3d9{bottom:433.284000pt;}
.y18f{bottom:433.511677pt;}
.y14d{bottom:433.513616pt;}
.y394{bottom:433.722667pt;}
.y11{bottom:433.826667pt;}
.y25d{bottom:439.858533pt;}
.ydb{bottom:440.162267pt;}
.y2d4{bottom:441.228706pt;}
.y7{bottom:442.406667pt;}
.y2b1{bottom:444.165733pt;}
.y31f{bottom:444.396667pt;}
.y3d8{bottom:446.588400pt;}
.y265{bottom:446.589707pt;}
.y393{bottom:447.027067pt;}
.y18e{bottom:448.251824pt;}
.y14c{bottom:448.253763pt;}
.y1ee{bottom:450.373426pt;}
.y3f2{bottom:450.400000pt;}
.ya3{bottom:450.602307pt;}
.y25c{bottom:453.238533pt;}
.yda{bottom:453.466667pt;}
.y2d3{bottom:455.892853pt;}
.y1ef{bottom:456.264533pt;}
.y2b0{bottom:457.470133pt;}
.y34f{bottom:457.851867pt;}
.y31d{bottom:459.288133pt;}
.y3d7{bottom:459.874400pt;}
.y392{bottom:460.785067pt;}
.y31e{bottom:461.026667pt;}
.y264{bottom:461.253853pt;}
.y18d{bottom:462.991972pt;}
.y14b{bottom:462.993911pt;}
.y3f1{bottom:464.400000pt;}
.y1ed{bottom:465.037573pt;}
.ya2{bottom:465.266454pt;}
.y25b{bottom:466.542933pt;}
.yd9{bottom:466.771067pt;}
.y35{bottom:468.138800pt;}
.y2d2{bottom:470.633000pt;}
.y2af{bottom:470.850133pt;}
.y34e{bottom:471.533733pt;}
.y31c{bottom:471.987333pt;}
.y3d6{bottom:473.254400pt;}
.y391{bottom:474.618667pt;}
.y263{bottom:475.918000pt;}
.y18c{bottom:477.732119pt;}
.y14a{bottom:477.734058pt;}
.y12{bottom:478.426667pt;}
.y1ec{bottom:479.701720pt;}
.y25a{bottom:479.922933pt;}
.ya1{bottom:479.930600pt;}
.yd8{bottom:480.149733pt;}
.y34{bottom:482.802947pt;}
.y2ae{bottom:484.154533pt;}
.y2d1{bottom:485.297147pt;}
.y3d5{bottom:486.558800pt;}
.y6{bottom:487.748000pt;}
.y390{bottom:488.376667pt;}
.y149{bottom:492.398205pt;}
.y18b{bottom:492.473243pt;}
.y259{bottom:493.227333pt;}
.yd7{bottom:493.454133pt;}
.y1eb{bottom:494.365866pt;}
.ya0{bottom:494.594747pt;}
.y3f0{bottom:495.733333pt;}
.y2ad{bottom:497.458933pt;}
.y3d4{bottom:499.938800pt;}
.y2d0{bottom:499.961294pt;}
.y33{bottom:501.473800pt;}
.y38f{bottom:501.681067pt;}
.y34d{bottom:505.171600pt;}
.y31b{bottom:505.322375pt;}
.y258{bottom:506.531733pt;}
.yd6{bottom:506.834133pt;}
.y148{bottom:507.138352pt;}
.y18a{bottom:507.213391pt;}
.y1ea{bottom:509.030013pt;}
.y9f{bottom:509.258894pt;}
.y2ac{bottom:510.838933pt;}
.y3d3{bottom:513.243200pt;}
.y2cf{bottom:514.625440pt;}
.y38e{bottom:515.439067pt;}
.y32{bottom:516.137947pt;}
.y317{bottom:516.737333pt;}
.y31a{bottom:517.816000pt;}
.y257{bottom:519.910267pt;}
.yd5{bottom:520.138533pt;}
.y316{bottom:521.121799pt;}
.y147{bottom:521.878500pt;}
.y189{bottom:521.953538pt;}
.y1e9{bottom:523.694159pt;}
.y9e{bottom:523.923040pt;}
.y1c{bottom:524.093333pt;}
.y2ab{bottom:524.143333pt;}
.y3d2{bottom:526.547600pt;}
.y319{bottom:527.136000pt;}
.y2a7{bottom:528.222400pt;}
.y38d{bottom:529.272667pt;}
.y2ce{bottom:529.289587pt;}
.y31{bottom:530.802094pt;}
.y5{bottom:533.089333pt;}
.y256{bottom:533.214667pt;}
.yd4{bottom:533.442000pt;}
.y146{bottom:536.618647pt;}
.y188{bottom:536.693685pt;}
.y2aa{bottom:537.523333pt;}
.y34c{bottom:538.130227pt;}
.y1e8{bottom:538.358306pt;}
.y315{bottom:538.583307pt;}
.y9d{bottom:538.587187pt;}
.y3d1{bottom:539.927600pt;}
.y2a6{bottom:541.602400pt;}
.y38c{bottom:543.030667pt;}
.y2cd{bottom:543.953734pt;}
.y30{bottom:545.466240pt;}
.y255{bottom:546.594667pt;}
.yd3{bottom:546.822000pt;}
.y2a9{bottom:550.827733pt;}
.y187{bottom:551.357832pt;}
.y145{bottom:551.358794pt;}
.y34b{bottom:552.794373pt;}
.y1e7{bottom:553.098453pt;}
.y3d0{bottom:553.232000pt;}
.y314{bottom:553.247453pt;}
.y9c{bottom:553.251334pt;}
.y2a5{bottom:554.906800pt;}
.y38b{bottom:556.335067pt;}
.y2cc{bottom:558.617880pt;}
.y254{bottom:559.899067pt;}
.y2f{bottom:560.130387pt;}
.ye{bottom:561.706667pt;}
.y2a8{bottom:564.132133pt;}
.y186{bottom:566.097979pt;}
.y144{bottom:566.098942pt;}
.y3cf{bottom:566.536400pt;}
.y34a{bottom:567.458520pt;}
.y1e6{bottom:567.762600pt;}
.y313{bottom:567.911600pt;}
.y311{bottom:567.914574pt;}
.y9b{bottom:567.915480pt;}
.y2a4{bottom:568.211200pt;}
.y38a{bottom:570.168667pt;}
.y2cb{bottom:573.282027pt;}
.y312{bottom:573.807733pt;}
.y2e{bottom:574.794534pt;}
.y3ce{bottom:579.916400pt;}
.y185{bottom:580.838127pt;}
.y143{bottom:580.839089pt;}
.y2a3{bottom:581.591200pt;}
.y349{bottom:582.122667pt;}
.y1e5{bottom:582.426747pt;}
.y310{bottom:582.578720pt;}
.y9a{bottom:582.579627pt;}
.y389{bottom:583.926667pt;}
.y2ca{bottom:587.946174pt;}
.y2d{bottom:589.458680pt;}
.y3cd{bottom:593.220800pt;}
.y2a2{bottom:594.895600pt;}
.y184{bottom:595.578274pt;}
.y142{bottom:595.579237pt;}
.y348{bottom:597.089600pt;}
.y1e4{bottom:597.090893pt;}
.y30f{bottom:597.242867pt;}
.y99{bottom:597.243774pt;}
.y388{bottom:597.684667pt;}
.y2c9{bottom:602.610320pt;}
.y2c{bottom:604.122827pt;}
.y3cc{bottom:606.600800pt;}
.y2a1{bottom:608.275600pt;}
.y141{bottom:610.243383pt;}
.y183{bottom:610.318422pt;}
.y387{bottom:611.064667pt;}
.y1e3{bottom:611.755040pt;}
.y30e{bottom:611.907013pt;}
.y98{bottom:611.907920pt;}
.y2c8{bottom:617.274467pt;}
.y2b{bottom:618.786974pt;}
.y3cb{bottom:619.905200pt;}
.y2a0{bottom:621.580000pt;}
.y386{bottom:624.822667pt;}
.y140{bottom:624.983531pt;}
.y182{bottom:625.058569pt;}
.y347{bottom:625.662586pt;}
.y1e2{bottom:626.419187pt;}
.y30d{bottom:626.571160pt;}
.y97{bottom:626.572067pt;}
.y2c7{bottom:631.938613pt;}
.y3ca{bottom:633.209600pt;}
.y2a{bottom:633.451120pt;}
.y29f{bottom:634.884400pt;}
.y385{bottom:638.580667pt;}
.y13f{bottom:639.723678pt;}
.y181{bottom:639.798716pt;}
.y346{bottom:640.326733pt;}
.y1e1{bottom:641.083333pt;}
.y1df{bottom:641.088732pt;}
.y30c{bottom:641.235307pt;}
.y96{bottom:641.236213pt;}
.y3c9{bottom:646.589600pt;}
.y2c6{bottom:646.602760pt;}
.y1e0{bottom:647.055067pt;}
.y29{bottom:648.115267pt;}
.y29e{bottom:648.264400pt;}
.y384{bottom:651.885067pt;}
.y13e{bottom:654.463825pt;}
.y180{bottom:654.538864pt;}
.y1de{bottom:655.752879pt;}
.y30b{bottom:655.899453pt;}
.y95{bottom:655.900360pt;}
.y3c8{bottom:659.894000pt;}
.y345{bottom:660.360227pt;}
.y2c5{bottom:661.266907pt;}
.y28{bottom:662.779413pt;}
.y383{bottom:665.718667pt;}
.y13d{bottom:669.203973pt;}
.y17f{bottom:669.279011pt;}
.y1dd{bottom:670.417025pt;}
.y94{bottom:670.564507pt;}
.y30a{bottom:670.566946pt;}
.y3c7{bottom:673.274000pt;}
.y344{bottom:675.024373pt;}
.y2c4{bottom:675.931053pt;}
.y27{bottom:677.443560pt;}
.y382{bottom:679.476667pt;}
.y17e{bottom:683.943158pt;}
.y13c{bottom:683.944120pt;}
.y1dc{bottom:685.157173pt;}
.y93{bottom:685.228653pt;}
.y309{bottom:685.231093pt;}
.y3c6{bottom:686.578400pt;}
.y343{bottom:689.688520pt;}
.y2c3{bottom:690.595200pt;}
.y4{bottom:691.756000pt;}
.y26{bottom:692.107707pt;}
.y381{bottom:692.781067pt;}
.y17d{bottom:698.683305pt;}
.y13b{bottom:698.684268pt;}
.y1db{bottom:699.821320pt;}
.y3c5{bottom:699.882800pt;}
.y92{bottom:699.892800pt;}
.y308{bottom:699.895239pt;}
.y342{bottom:704.352667pt;}
.y2c2{bottom:705.788800pt;}
.y380{bottom:706.614667pt;}
.y25{bottom:706.771853pt;}
.y3c4{bottom:713.262800pt;}
.y17c{bottom:713.423453pt;}
.y13a{bottom:713.424415pt;}
.y1da{bottom:714.485466pt;}
.y90{bottom:714.558107pt;}
.y307{bottom:714.559386pt;}
.y341{bottom:719.019653pt;}
.y37f{bottom:720.372667pt;}
.y91{bottom:720.528933pt;}
.y24{bottom:721.436000pt;}
.y13{bottom:725.040000pt;}
.y3c3{bottom:726.567200pt;}
.y17b{bottom:728.163600pt;}
.y139{bottom:728.164562pt;}
.y1d9{bottom:729.149613pt;}
.y8f{bottom:729.222253pt;}
.y306{bottom:729.223533pt;}
.y37e{bottom:733.677067pt;}
.y340{bottom:733.683800pt;}
.y3c2{bottom:739.947200pt;}
.y179{bottom:742.904197pt;}
.y138{bottom:742.904710pt;}
.y1d8{bottom:743.813759pt;}
.y8e{bottom:743.886400pt;}
.y8c{bottom:743.886906pt;}
.y305{bottom:743.887679pt;}
.y2c1{bottom:743.891040pt;}
.y37d{bottom:747.510667pt;}
.y33f{bottom:748.347947pt;}
.y17a{bottom:748.799867pt;}
.y8d{bottom:749.858133pt;}
.y22{bottom:752.730533pt;}
.y3c1{bottom:753.251600pt;}
.y23{bottom:754.544667pt;}
.y137{bottom:757.568856pt;}
.y178{bottom:757.644344pt;}
.y1d7{bottom:758.477906pt;}
.y8b{bottom:758.551053pt;}
.y304{bottom:758.551826pt;}
.y2c0{bottom:758.555186pt;}
.y37c{bottom:761.268667pt;}
.y33e{bottom:763.012093pt;}
.y3c0{bottom:766.556000pt;}
.y177{bottom:772.308491pt;}
.y136{bottom:772.309004pt;}
.y1d6{bottom:773.142053pt;}
.y8a{bottom:773.291200pt;}
.y303{bottom:773.291973pt;}
.y2bf{bottom:773.295334pt;}
.y88{bottom:773.297014pt;}
.y37b{bottom:775.026667pt;}
.y33d{bottom:777.676240pt;}
.y89{bottom:779.187200pt;}
.y3bf{bottom:779.936000pt;}
.y176{bottom:787.048639pt;}
.y135{bottom:787.049151pt;}
.y1d5{bottom:787.806199pt;}
.y302{bottom:787.956120pt;}
.y2be{bottom:787.959480pt;}
.y87{bottom:787.961160pt;}
.y37a{bottom:788.331067pt;}
.y33c{bottom:792.340387pt;}
.y3be{bottom:793.240400pt;}
.y21{bottom:800.654933pt;}
.y175{bottom:801.788786pt;}
.y134{bottom:801.789299pt;}
.y379{bottom:802.164667pt;}
.y1d4{bottom:802.470346pt;}
.y301{bottom:802.621947pt;}
.y2bd{bottom:802.623627pt;}
.y86{bottom:802.625307pt;}
.y3{bottom:805.081333pt;}
.y3bd{bottom:806.620400pt;}
.y33b{bottom:807.007507pt;}
.y378{bottom:815.922667pt;}
.y174{bottom:816.528933pt;}
.y133{bottom:816.529446pt;}
.y172{bottom:816.532790pt;}
.y1d3{bottom:817.210493pt;}
.y300{bottom:817.286093pt;}
.y2bc{bottom:817.287774pt;}
.y85{bottom:817.289454pt;}
.y3bc{bottom:819.924800pt;}
.y33a{bottom:821.671653pt;}
.y173{bottom:822.424933pt;}
.y377{bottom:829.680667pt;}
.y132{bottom:831.269593pt;}
.y171{bottom:831.272937pt;}
.y1d2{bottom:831.874640pt;}
.y2ff{bottom:831.950240pt;}
.y2bb{bottom:831.951920pt;}
.y84{bottom:831.953600pt;}
.y3bb{bottom:833.229200pt;}
.y20{bottom:833.233867pt;}
.y339{bottom:836.335800pt;}
.y376{bottom:843.514267pt;}
.y131{bottom:846.009741pt;}
.y170{bottom:846.013085pt;}
.y1d1{bottom:846.538787pt;}
.y3ba{bottom:846.609200pt;}
.y2fe{bottom:846.614387pt;}
.y2ba{bottom:846.616067pt;}
.y83{bottom:846.617747pt;}
.y338{bottom:850.999947pt;}
.y1f{bottom:851.905333pt;}
.y375{bottom:856.803600pt;}
.y2{bottom:857.092000pt;}
.y3b9{bottom:859.913600pt;}
.y130{bottom:860.749888pt;}
.y16f{bottom:860.753232pt;}
.y1d0{bottom:861.202933pt;}
.y1ce{bottom:861.209773pt;}
.y2b9{bottom:861.280213pt;}
.y2fd{bottom:861.281507pt;}
.y82{bottom:861.281894pt;}
.y337{bottom:865.664093pt;}
.y1cf{bottom:867.099067pt;}
.y374{bottom:870.561600pt;}
.y3b8{bottom:873.218000pt;}
.y12f{bottom:875.490036pt;}
.y16e{bottom:875.493380pt;}
.y1cd{bottom:875.873919pt;}
.y2b8{bottom:875.944360pt;}
.y2fc{bottom:875.945653pt;}
.y81{bottom:875.946040pt;}
.y1e{bottom:878.588675pt;}
.y1{bottom:879.748000pt;}
.y336{bottom:880.328240pt;}
.y373{bottom:884.319600pt;}
.y3b7{bottom:886.598000pt;}
.y12e{bottom:890.230183pt;}
.y16d{bottom:890.233527pt;}
.y1cc{bottom:890.538066pt;}
.y2b7{bottom:890.608507pt;}
.y2fb{bottom:890.609800pt;}
.y80{bottom:890.610187pt;}
.y335{bottom:894.992387pt;}
.y372{bottom:898.152000pt;}
.y3b6{bottom:899.902400pt;}
.y1d{bottom:902.626533pt;}
.y12d{bottom:904.894330pt;}
.y16c{bottom:904.897674pt;}
.y1cb{bottom:905.202213pt;}
.y2b6{bottom:905.272653pt;}
.y2fa{bottom:905.273947pt;}
.y7f{bottom:905.274333pt;}
.y334{bottom:909.656533pt;}
.y371{bottom:911.456400pt;}
.y3b5{bottom:913.282400pt;}
.y12c{bottom:919.634477pt;}
.y16b{bottom:919.637821pt;}
.y1ca{bottom:919.866359pt;}
.y2b5{bottom:919.936800pt;}
.y2f9{bottom:919.938093pt;}
.y7e{bottom:919.938480pt;}
.y286{bottom:919.943947pt;}
.y333{bottom:924.698933pt;}
.y370{bottom:925.214400pt;}
.y2b4{bottom:925.832800pt;}
.y3b4{bottom:926.586800pt;}
.y12b{bottom:934.374624pt;}
.y16a{bottom:934.377968pt;}
.y2f8{bottom:934.602240pt;}
.y7d{bottom:934.602627pt;}
.y1c9{bottom:934.606507pt;}
.y285{bottom:934.608094pt;}
.y36f{bottom:939.048000pt;}
.y3b3{bottom:939.891200pt;}
.y72{bottom:945.940000pt;}
.y73{bottom:946.998267pt;}
.y12a{bottom:949.114772pt;}
.y169{bottom:949.118116pt;}
.y2f7{bottom:949.266387pt;}
.y7c{bottom:949.266773pt;}
.y1c8{bottom:949.270653pt;}
.y284{bottom:949.272240pt;}
.y36e{bottom:952.352400pt;}
.y3b2{bottom:953.271200pt;}
.y129{bottom:963.854919pt;}
.y168{bottom:963.858263pt;}
.y2f6{bottom:963.930533pt;}
.y7b{bottom:963.930920pt;}
.y2f4{bottom:963.934320pt;}
.y1c7{bottom:963.934800pt;}
.y283{bottom:963.936387pt;}
.y36d{bottom:966.110400pt;}
.y3b1{bottom:966.575600pt;}
.y2f5{bottom:969.826533pt;}
.y7a{bottom:978.595067pt;}
.y167{bottom:978.598411pt;}
.y2f3{bottom:978.598467pt;}
.y1c6{bottom:978.598947pt;}
.y282{bottom:978.600534pt;}
.y36c{bottom:979.944000pt;}
.y3b0{bottom:979.955600pt;}
.yde{bottom:1005.278533pt;}
.h39{height:17.158667pt;}
.h29{height:18.704000pt;}
.h27{height:19.956000pt;}
.h25{height:20.392160pt;}
.h47{height:21.952000pt;}
.h19{height:22.720379pt;}
.h2b{height:23.176568pt;}
.h18{height:23.856000pt;}
.h45{height:25.498667pt;}
.h46{height:26.068340pt;}
.h3a{height:26.096000pt;}
.h14{height:26.948416pt;}
.h2a{height:27.208173pt;}
.h17{height:27.264000pt;}
.h30{height:28.258240pt;}
.h20{height:28.839615pt;}
.h2c{height:29.143868pt;}
.h48{height:29.306667pt;}
.h4{height:29.333333pt;}
.h3d{height:29.576533pt;}
.h16{height:30.292955pt;}
.h10{height:30.612395pt;}
.he{height:34.608000pt;}
.h15{height:36.384000pt;}
.h3f{height:36.530667pt;}
.h1e{height:36.672000pt;}
.h41{height:36.732267pt;}
.h42{height:36.745600pt;}
.h26{height:37.295627pt;}
.h44{height:37.680000pt;}
.h1f{height:38.453718pt;}
.h28{height:40.385836pt;}
.h34{height:40.420351pt;}
.h11{height:40.427071pt;}
.h3c{height:40.596325pt;}
.h12{height:40.747074pt;}
.h1b{height:41.875000pt;}
.h33{height:42.613167pt;}
.h35{height:43.128876pt;}
.h38{height:44.448965pt;}
.hc{height:47.354667pt;}
.h37{height:47.634506pt;}
.h24{height:47.941066pt;}
.h22{height:47.945428pt;}
.h1c{height:47.946720pt;}
.h23{height:47.946918pt;}
.h1d{height:47.947253pt;}
.h21{height:47.947591pt;}
.h3{height:51.916667pt;}
.hd{height:52.554667pt;}
.hf{height:57.600384pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h36{height:61.541718pt;}
.h40{height:61.843585pt;}
.h13{height:61.844118pt;}
.h3e{height:61.844651pt;}
.hb{height:65.370282pt;}
.h3b{height:65.538240pt;}
.h2f{height:65.698544pt;}
.h43{height:69.875000pt;}
.h32{height:74.496624pt;}
.h31{height:74.500352pt;}
.h2e{height:81.506928pt;}
.h7{height:102.413333pt;}
.h2d{height:108.850667pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h1a{height:1067.866667pt;}
.h9{height:1067.868000pt;}
.ha{height:1068.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wd{width:20.258667pt;}
.wb{width:106.204000pt;}
.wc{width:259.502667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:809.877333pt;}
.wa{width:810.000000pt;}
.x3e{left:-1.160400pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x25{left:12.000000pt;}
.x26{left:24.000000pt;}
.xa{left:68.636267pt;}
.x68{left:73.927467pt;}
.xf{left:80.579467pt;}
.x2a{left:81.940133pt;}
.x66{left:92.598400pt;}
.xb{left:100.233067pt;}
.x67{left:103.256667pt;}
.x30{left:105.902400pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xe{left:116.862933pt;}
.x5c{left:121.322800pt;}
.x3a{left:129.637733pt;}
.x27{left:139.691333pt;}
.x2d{left:141.505467pt;}
.x28{left:151.256667pt;}
.x5{left:154.760000pt;}
.x2e{left:157.984267pt;}
.x15{left:159.344800pt;}
.x2{left:169.813333pt;}
.x16{left:177.184133pt;}
.x7{left:178.413333pt;}
.x5d{left:190.866133pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x10{left:212.560533pt;}
.x3d{left:218.154667pt;}
.x11{left:221.253467pt;}
.x3c{left:222.394267pt;}
.x3b{left:227.234267pt;}
.x41{left:234.834089pt;}
.x40{left:237.194133pt;}
.x22{left:249.599867pt;}
.x59{left:255.571600pt;}
.x3f{left:260.554000pt;}
.x5a{left:270.009333pt;}
.x23{left:277.568507pt;}
.x14{left:292.535333pt;}
.x12{left:323.678667pt;}
.x13{left:335.244000pt;}
.x5b{left:352.629867pt;}
.x57{left:354.292800pt;}
.x29{left:360.264400pt;}
.x58{left:367.899067pt;}
.x2c{left:401.763733pt;}
.x69{left:403.275467pt;}
.x17{left:420.586567pt;}
.x63{left:425.574667pt;}
.x2b{left:432.602407pt;}
.x37{left:433.964865pt;}
.x4c{left:436.610667pt;}
.x6a{left:443.733333pt;}
.x65{left:444.623973pt;}
.xc{left:449.914800pt;}
.x64{left:452.635387pt;}
.x31{left:455.659733pt;}
.x61{left:456.793333pt;}
.x44{left:458.683333pt;}
.x62{left:461.993071pt;}
.x54{left:464.170933pt;}
.x4d{left:470.210933pt;}
.x32{left:472.970000pt;}
.x53{left:475.251413pt;}
.x51{left:477.450933pt;}
.x45{left:484.308533pt;}
.x60{left:493.379333pt;}
.x49{left:497.930685pt;}
.x34{left:502.677067pt;}
.x46{left:516.330933pt;}
.x1f{left:520.516400pt;}
.x4e{left:522.970121pt;}
.x35{left:528.226667pt;}
.x20{left:536.088000pt;}
.x18{left:543.571467pt;}
.x50{left:547.010057pt;}
.x6c{left:548.306667pt;}
.x36{left:549.240800pt;}
.x52{left:552.651217pt;}
.x6d{left:563.240000pt;}
.x6e{left:567.120000pt;}
.x19{left:569.423467pt;}
.x6b{left:571.253333pt;}
.x4a{left:574.250289pt;}
.xd{left:579.552533pt;}
.x24{left:586.355733pt;}
.x47{left:593.251269pt;}
.x4f{left:599.610737pt;}
.x5e{left:613.946267pt;}
.x1d{left:616.969867pt;}
.x1b{left:618.028133pt;}
.x5f{left:627.174667pt;}
.x1e{left:631.634400pt;}
.x33{left:642.141600pt;}
.x1c{left:644.787200pt;}
.x4b{left:651.849945pt;}
.x42{left:668.144667pt;}
.x48{left:670.571205pt;}
.x55{left:692.450425pt;}
.x43{left:696.264400pt;}
.x21{left:702.614000pt;}
.x38{left:706.242400pt;}
.x39{left:723.325867pt;}
.x56{left:725.215600pt;}
.x2f{left:728.541467pt;}
.x1a{left:730.960400pt;}
}




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