
    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_b4eb0219905ed140f9cb23c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4488afa55e3a1524097ab3d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_5e1836aa1ea46a9da34d274d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_77df7060f7acffba3212a902.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_8ad350fc8f2ffb71e0f803be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.017000;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_08a243ffab5a9a706f372edb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.025000;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_831848625f92ca4784702d86.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.028000;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_a0f2e92667ffe2b815cbc207.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.045000;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_4488afa55e3a1524097ab3d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_191fc4140a8752cb89993215.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_e647ad02704e3013c71afbd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_d040a17b1dbc58dd03d7074f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.926270;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_e278d9334f1d2573370c5596.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_528f7d00f37c519354dc87c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.924000;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_e158e2aadf401830525e47a8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908000;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_3d6a3b4b5ed607ff393e0405.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;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_a327e03bf7dd205133d4feff.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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_e6bdce0a56434a153f02b989.woff2')format("woff");}.ff14{font-family:ff14;line-height:2.399000;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_09cb538aef7231e5fcb1afe9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.628000;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_c4985d4196d92fe40a989504.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e1c045e5f952ad949dd867d1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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_5497c4f009534d029030ede6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.896000;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_6aa5b6867eb5d74b5e98bfda.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.699000;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_b5ccd9ef6007a6a994011224.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.899000;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_fb810269e9d8134f868b65e4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.431000;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_5911ed2e5e525371ce09ffc7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.940918;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_9f28de7c65db46019f206460.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940918;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_cf0838194b7d7cc7fc403ec4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.940918;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_8ad350fc8f2ffb71e0f803be.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.017000;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_08a243ffab5a9a706f372edb.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.025000;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_061b6241cd9c7edd4c4bdb44.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_e9c4f9a1751668836449111a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.045000;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,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m2{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);}
.m4{transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v3{vertical-align:-10.758000px;}
.v11{vertical-align:-7.440037px;}
.v5{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:6.972000px;}
.vb{vertical-align:10.164000px;}
.v10{vertical-align:14.636556px;}
.v12{vertical-align:15.836079px;}
.vd{vertical-align:17.730000px;}
.vf{vertical-align:19.680000px;}
.v7{vertical-align:20.718000px;}
.v1{vertical-align:26.034000px;}
.vc{vertical-align:29.622000px;}
.v6{vertical-align:34.872000px;}
.v9{vertical-align:47.034000px;}
.va{vertical-align:53.796000px;}
.v8{vertical-align:57.792000px;}
.v4{vertical-align:68.148000px;}
.ls1{letter-spacing:-3.120000px;}
.ls2{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.000149px;}
.ls35{letter-spacing:0.000257px;}
.ls7c{letter-spacing:0.000293px;}
.ls4d{letter-spacing:0.000352px;}
.ls2b{letter-spacing:0.000735px;}
.lsc{letter-spacing:0.000860px;}
.ls44{letter-spacing:0.001163px;}
.ls60{letter-spacing:0.001257px;}
.ls8d{letter-spacing:0.001532px;}
.ls2d{letter-spacing:0.001608px;}
.ls98{letter-spacing:0.001747px;}
.ls91{letter-spacing:0.001820px;}
.ls7d{letter-spacing:0.001893px;}
.ls2f{letter-spacing:0.001921px;}
.ls48{letter-spacing:0.002272px;}
.lsa{letter-spacing:0.002420px;}
.ls13{letter-spacing:0.002828px;}
.ls8f{letter-spacing:0.003002px;}
.lsb{letter-spacing:0.003007px;}
.ls86{letter-spacing:0.003400px;}
.ls18{letter-spacing:0.003459px;}
.ls38{letter-spacing:0.003970px;}
.ls45{letter-spacing:0.004080px;}
.ls12{letter-spacing:0.004128px;}
.ls2c{letter-spacing:0.006860px;}
.ls9c{letter-spacing:0.007020px;}
.ls9a{letter-spacing:0.007091px;}
.ls9d{letter-spacing:0.007722px;}
.ls9b{letter-spacing:0.007800px;}
.ls7{letter-spacing:0.059776px;}
.ls50{letter-spacing:0.457921px;}
.ls15{letter-spacing:1.929459px;}
.ls1e{letter-spacing:1.935459px;}
.ls67{letter-spacing:2.401392px;}
.ls4e{letter-spacing:2.407392px;}
.ls84{letter-spacing:2.491108px;}
.ls32{letter-spacing:2.984883px;}
.ls42{letter-spacing:2.986445px;}
.ls28{letter-spacing:2.987213px;}
.ls4{letter-spacing:2.988868px;}
.ls39{letter-spacing:2.989267px;}
.ls4c{letter-spacing:2.990883px;}
.ls33{letter-spacing:3.485421px;}
.ls52{letter-spacing:3.899815px;}
.ls70{letter-spacing:3.905815px;}
.ls57{letter-spacing:4.265611px;}
.ls5c{letter-spacing:6.049613px;}
.ls69{letter-spacing:8.007970px;}
.ls6d{letter-spacing:8.013970px;}
.ls53{letter-spacing:9.212883px;}
.ls5b{letter-spacing:10.307611px;}
.ls8e{letter-spacing:11.205621px;}
.ls20{letter-spacing:11.953163px;}
.ls74{letter-spacing:11.959163px;}
.ls99{letter-spacing:12.376064px;}
.ls8c{letter-spacing:13.220686px;}
.ls4a{letter-spacing:13.280272px;}
.ls49{letter-spacing:13.282080px;}
.ls47{letter-spacing:13.286272px;}
.ls92{letter-spacing:13.537887px;}
.ls93{letter-spacing:13.541887px;}
.ls8b{letter-spacing:13.837336px;}
.ls7e{letter-spacing:13.842336px;}
.ls97{letter-spacing:14.567656px;}
.ls90{letter-spacing:15.249998px;}
.ls96{letter-spacing:15.328009px;}
.ls5f{letter-spacing:15.773224px;}
.ls31{letter-spacing:15.935655px;}
.ls14{letter-spacing:15.937613px;}
.ls54{letter-spacing:15.941655px;}
.ls16{letter-spacing:15.943613px;}
.ls8a{letter-spacing:16.331551px;}
.ls78{letter-spacing:16.610272px;}
.ls46{letter-spacing:17.488080px;}
.ls87{letter-spacing:17.812463px;}
.ls34{letter-spacing:18.385046px;}
.ls7b{letter-spacing:18.554272px;}
.ls77{letter-spacing:18.709234px;}
.ls5d{letter-spacing:18.794883px;}
.ls30{letter-spacing:18.926883px;}
.ls37{letter-spacing:18.927510px;}
.ls36{letter-spacing:18.928445px;}
.ls64{letter-spacing:19.177613px;}
.ls66{letter-spacing:19.181655px;}
.ls24{letter-spacing:19.441257px;}
.ls85{letter-spacing:19.506347px;}
.ls88{letter-spacing:19.506652px;}
.ls23{letter-spacing:19.696493px;}
.ls19{letter-spacing:19.919655px;}
.ls1f{letter-spacing:19.922929px;}
.ls21{letter-spacing:19.925123px;}
.ls5a{letter-spacing:19.927613px;}
.ls62{letter-spacing:20.039611px;}
.ls51{letter-spacing:20.207611px;}
.ls6c{letter-spacing:20.215392px;}
.ls41{letter-spacing:20.476445px;}
.ls7a{letter-spacing:21.151234px;}
.ls3d{letter-spacing:21.744376px;}
.ls3e{letter-spacing:21.745257px;}
.ls73{letter-spacing:22.190929px;}
.ls22{letter-spacing:22.913213px;}
.ls2e{letter-spacing:22.915267px;}
.ls43{letter-spacing:22.921267px;}
.ls4b{letter-spacing:23.039839px;}
.ls1c{letter-spacing:23.237224px;}
.ls1d{letter-spacing:23.245257px;}
.ls6b{letter-spacing:23.471410px;}
.ls10{letter-spacing:23.709911px;}
.lsf{letter-spacing:23.713257px;}
.lse{letter-spacing:23.718376px;}
.ls61{letter-spacing:23.787970px;}
.ls65{letter-spacing:23.980493px;}
.ls59{letter-spacing:24.185611px;}
.ls4f{letter-spacing:24.191611px;}
.ls55{letter-spacing:24.456559px;}
.ls72{letter-spacing:24.595392px;}
.ls3f{letter-spacing:24.733267px;}
.ls3b{letter-spacing:25.445839px;}
.ls6f{letter-spacing:26.089392px;}
.ls63{letter-spacing:27.195970px;}
.ls27{letter-spacing:27.437123px;}
.ls40{letter-spacing:27.971421px;}
.ls68{letter-spacing:28.733123px;}
.ls6a{letter-spacing:28.992559px;}
.ls71{letter-spacing:30.278883px;}
.ls11{letter-spacing:30.611655px;}
.ls1b{letter-spacing:30.953213px;}
.ls3c{letter-spacing:30.953839px;}
.ls6e{letter-spacing:31.016883px;}
.ls5e{letter-spacing:31.411608px;}
.ls25{letter-spacing:34.937123px;}
.ls26{letter-spacing:37.925213px;}
.ls56{letter-spacing:38.855410px;}
.ls8{letter-spacing:41.418149px;}
.ls5{letter-spacing:42.150149px;}
.ls2a{letter-spacing:45.095655px;}
.ls29{letter-spacing:47.712149px;}
.ls3{letter-spacing:49.044149px;}
.ls9{letter-spacing:70.620149px;}
.ls6{letter-spacing:93.156149px;}
.ls17{letter-spacing:95.198883px;}
.ls94{letter-spacing:98.092099px;}
.ls95{letter-spacing:113.217289px;}
.ls83{letter-spacing:123.269069px;}
.ls75{letter-spacing:134.623234px;}
.ls80{letter-spacing:146.297084px;}
.ls7f{letter-spacing:154.257339px;}
.ls82{letter-spacing:163.080342px;}
.ls81{letter-spacing:183.488274px;}
.ls89{letter-spacing:308.287268px;}
.ls79{letter-spacing:404.809234px;}
.ls58{letter-spacing:590.437163px;}
.ls3a{letter-spacing:736.081163px;}
.ls1a{letter-spacing:761.845163px;}
.lsd{letter-spacing:1133.917163px;}
.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;}
}
.wsd{word-spacing:-51.861527px;}
.wsc{word-spacing:-45.166687px;}
.ws98{word-spacing:-41.890916px;}
.ws21c{word-spacing:-34.910213px;}
.ws9c{word-spacing:-34.909091px;}
.ws2bd{word-spacing:-32.225006px;}
.ws1e7{word-spacing:-31.710840px;}
.ws10a{word-spacing:-31.607548px;}
.ws1ab{word-spacing:-29.947135px;}
.ws22e{word-spacing:-29.091840px;}
.wsce{word-spacing:-28.477215px;}
.ws2f1{word-spacing:-28.333753px;}
.ws72{word-spacing:-28.262022px;}
.ws274{word-spacing:-28.260450px;}
.ws144{word-spacing:-28.190291px;}
.ws299{word-spacing:-27.927417px;}
.ws1d0{word-spacing:-27.903367px;}
.ws2fa{word-spacing:-27.831636px;}
.wsf9{word-spacing:-27.759905px;}
.ws73{word-spacing:-27.688174px;}
.ws39{word-spacing:-27.544712px;}
.wsb2{word-spacing:-27.472981px;}
.ws194{word-spacing:-27.401250px;}
.ws6b{word-spacing:-27.329519px;}
.wscc{word-spacing:-27.186057px;}
.ws114{word-spacing:-27.114326px;}
.ws173{word-spacing:-26.970864px;}
.ws13e{word-spacing:-26.683939px;}
.ws88{word-spacing:-26.612208px;}
.ws13b{word-spacing:-26.540477px;}
.ws13f{word-spacing:-26.468746px;}
.ws91{word-spacing:-26.425700px;}
.wsb5{word-spacing:-26.397015px;}
.wsca{word-spacing:-26.339623px;}
.ws13a{word-spacing:-26.325284px;}
.ws13d{word-spacing:-26.181822px;}
.ws1ad{word-spacing:-26.110091px;}
.ws1aa{word-spacing:-26.095868px;}
.ws1ac{word-spacing:-26.095296px;}
.wsf7{word-spacing:-26.038360px;}
.ws305{word-spacing:-25.966629px;}
.ws134{word-spacing:-25.894898px;}
.ws2fe{word-spacing:-25.823167px;}
.ws28c{word-spacing:-25.787654px;}
.ws133{word-spacing:-25.751436px;}
.ws1d7{word-spacing:-25.679705px;}
.ws1af{word-spacing:-25.464512px;}
.ws1ce{word-spacing:-25.321050px;}
.ws38{word-spacing:-25.249319px;}
.ws2ff{word-spacing:-25.177588px;}
.ws15c{word-spacing:-25.105857px;}
.ws175{word-spacing:-24.962395px;}
.ws17d{word-spacing:-24.890664px;}
.ws2ed{word-spacing:-24.675471px;}
.ws10b{word-spacing:-24.532009px;}
.ws2f0{word-spacing:-24.460278px;}
.ws101{word-spacing:-24.436370px;}
.ws11b{word-spacing:-24.415296px;}
.ws119{word-spacing:-24.388547px;}
.wscb{word-spacing:-24.245085px;}
.ws1b2{word-spacing:-24.101623px;}
.ws16f{word-spacing:-24.029892px;}
.ws6c{word-spacing:-23.886430px;}
.ws2ec{word-spacing:-23.814699px;}
.ws177{word-spacing:-23.742968px;}
.wse6{word-spacing:-23.671237px;}
.ws2fc{word-spacing:-23.599506px;}
.wsb4{word-spacing:-23.456044px;}
.ws1bc{word-spacing:-23.372353px;}
.wsab{word-spacing:-23.312582px;}
.ws2dc{word-spacing:-23.312578px;}
.ws307{word-spacing:-23.240850px;}
.ws174{word-spacing:-23.169119px;}
.ws19e{word-spacing:-23.133250px;}
.ws11f{word-spacing:-23.097388px;}
.wsa7{word-spacing:-23.025657px;}
.ws54{word-spacing:-22.953926px;}
.wsac{word-spacing:-22.882195px;}
.ws131{word-spacing:-22.834371px;}
.ws1e2{word-spacing:-22.810464px;}
.ws107{word-spacing:-22.738733px;}
.ws12f{word-spacing:-22.714819px;}
.ws13c{word-spacing:-22.667002px;}
.ws1a2{word-spacing:-22.595271px;}
.ws1c9{word-spacing:-22.535492px;}
.ws76{word-spacing:-22.523540px;}
.wsea{word-spacing:-22.451809px;}
.ws14f{word-spacing:-22.380078px;}
.ws5b{word-spacing:-22.236616px;}
.wse7{word-spacing:-22.207438px;}
.ws29{word-spacing:-22.164885px;}
.ws5a{word-spacing:-22.093154px;}
.wse{word-spacing:-22.021423px;}
.ws180{word-spacing:-21.971235px;}
.ws1b{word-spacing:-21.959793px;}
.wsb{word-spacing:-21.949692px;}
.ws11d{word-spacing:-21.943279px;}
.ws1a6{word-spacing:-21.937733px;}
.ws18{word-spacing:-21.877961px;}
.ws179{word-spacing:-21.818182px;}
.ws62{word-spacing:-21.806230px;}
.ws2fd{word-spacing:-21.662768px;}
.wsc5{word-spacing:-21.638854px;}
.wsb6{word-spacing:-21.591037px;}
.ws1cf{word-spacing:-21.519306px;}
.wsc1{word-spacing:-21.459527px;}
.ws15b{word-spacing:-21.447575px;}
.ws1b1{word-spacing:-21.415296px;}
.ws12e{word-spacing:-21.399751px;}
.ws8d{word-spacing:-21.375844px;}
.ws8e{word-spacing:-21.355978px;}
.wsd9{word-spacing:-21.304113px;}
.ws8f{word-spacing:-21.265296px;}
.ws90{word-spacing:-21.262611px;}
.ws19{word-spacing:-21.232382px;}
.ws1ca{word-spacing:-21.220423px;}
.ws1f{word-spacing:-21.160651px;}
.ws121{word-spacing:-21.088920px;}
.wsd1{word-spacing:-21.017189px;}
.wsd6{word-spacing:-20.965294px;}
.wsd8{word-spacing:-20.945458px;}
.wsb7{word-spacing:-20.873727px;}
.ws1b7{word-spacing:-20.842516px;}
.ws89{word-spacing:-20.801996px;}
.ws2d{word-spacing:-20.801992px;}
.ws17{word-spacing:-20.730265px;}
.wscf{word-spacing:-20.658534px;}
.ws44{word-spacing:-20.586803px;}
.ws30{word-spacing:-20.562889px;}
.wsfb{word-spacing:-20.515072px;}
.ws50{word-spacing:-20.443341px;}
.ws14c{word-spacing:-20.371610px;}
.ws37{word-spacing:-20.299879px;}
.ws113{word-spacing:-20.228148px;}
.ws2e9{word-spacing:-20.204234px;}
.ws112{word-spacing:-20.156417px;}
.ws9b{word-spacing:-20.144458px;}
.ws111{word-spacing:-20.133630px;}
.ws2db{word-spacing:-20.094544px;}
.ws1b5{word-spacing:-20.086403px;}
.ws1b3{word-spacing:-20.085059px;}
.ws1b4{word-spacing:-20.084686px;}
.ws1c1{word-spacing:-20.012955px;}
.ws2f2{word-spacing:-19.941224px;}
.ws139{word-spacing:-19.869493px;}
.ws55{word-spacing:-19.797762px;}
.ws84{word-spacing:-19.726030px;}
.ws137{word-spacing:-19.654299px;}
.wsbe{word-spacing:-19.606476px;}
.ws178{word-spacing:-19.582568px;}
.ws212{word-spacing:-19.546700px;}
.wsd0{word-spacing:-19.510837px;}
.ws189{word-spacing:-19.439106px;}
.ws81{word-spacing:-19.427148px;}
.ws210{word-spacing:-19.367372px;}
.wsc9{word-spacing:-19.307596px;}
.ws5f{word-spacing:-19.295644px;}
.wsf{word-spacing:-19.247820px;}
.ws3a{word-spacing:-19.223913px;}
.ws11{word-spacing:-19.188045px;}
.ws1dc{word-spacing:-19.152182px;}
.ws20f{word-spacing:-19.128269px;}
.ws32{word-spacing:-19.080451px;}
.ws116{word-spacing:-19.008720px;}
.ws1cc{word-spacing:-19.008717px;}
.ws159{word-spacing:-18.936989px;}
.wsb8{word-spacing:-18.865258px;}
.ws2c{word-spacing:-18.793527px;}
.wse2{word-spacing:-18.721796px;}
.ws8c{word-spacing:-18.650065px;}
.ws129{word-spacing:-18.578334px;}
.ws8b{word-spacing:-18.506603px;}
.wsc8{word-spacing:-18.470735px;}
.ws57{word-spacing:-18.434872px;}
.ws17a{word-spacing:-18.410959px;}
.ws181{word-spacing:-18.363141px;}
.ws21a{word-spacing:-18.351773px;}
.ws31{word-spacing:-18.351183px;}
.ws218{word-spacing:-18.291995px;}
.wscd{word-spacing:-18.291410px;}
.ws82{word-spacing:-18.291407px;}
.ws8a{word-spacing:-18.219679px;}
.wsd5{word-spacing:-18.193868px;}
.ws64{word-spacing:-18.147948px;}
.ws43{word-spacing:-18.076217px;}
.ws12c{word-spacing:-18.052304px;}
.wsa0{word-spacing:-18.004486px;}
.ws52{word-spacing:-17.932755px;}
.ws80{word-spacing:-17.932752px;}
.wsae{word-spacing:-17.872976px;}
.ws109{word-spacing:-17.861024px;}
.ws66{word-spacing:-17.789293px;}
.ws22a{word-spacing:-17.783881px;}
.ws146{word-spacing:-17.717562px;}
.ws5d{word-spacing:-17.645831px;}
.ws7c{word-spacing:-17.633873px;}
.ws24c{word-spacing:-17.584622px;}
.ws105{word-spacing:-17.574100px;}
.ws165{word-spacing:-17.502369px;}
.ws140{word-spacing:-17.454545px;}
.ws117{word-spacing:-17.430638px;}
.ws2e8{word-spacing:-17.394769px;}
.ws1be{word-spacing:-17.358907px;}
.ws213{word-spacing:-17.334994px;}
.wsb1{word-spacing:-17.287176px;}
.ws14d{word-spacing:-17.215445px;}
.ws182{word-spacing:-17.215442px;}
.ws18a{word-spacing:-17.143714px;}
.wsee{word-spacing:-17.071983px;}
.ws108{word-spacing:-17.000252px;}
.ws2bc{word-spacing:-16.940200px;}
.ws102{word-spacing:-16.928521px;}
.ws2b9{word-spacing:-16.885020px;}
.ws1f9{word-spacing:-16.880693px;}
.ws65{word-spacing:-16.856790px;}
.ws4a{word-spacing:-16.785059px;}
.ws214{word-spacing:-16.737235px;}
.ws19d{word-spacing:-16.713328px;}
.wsa4{word-spacing:-16.641597px;}
.ws7b{word-spacing:-16.617684px;}
.ws1f8{word-spacing:-16.593769px;}
.ws5e{word-spacing:-16.569866px;}
.wsa1{word-spacing:-16.498135px;}
.ws10f{word-spacing:-16.459868px;}
.ws5c{word-spacing:-16.426404px;}
.ws17f{word-spacing:-16.354673px;}
.ws13{word-spacing:-16.282942px;}
.wsad{word-spacing:-16.259028px;}
.wsa3{word-spacing:-16.211211px;}
.wsc0{word-spacing:-16.139477px;}
.ws18f{word-spacing:-16.079701px;}
.ws28d{word-spacing:-16.073127px;}
.ws6d{word-spacing:-16.067748px;}
.ws250{word-spacing:-16.040364px;}
.wsc6{word-spacing:-16.019925px;}
.ws2cb{word-spacing:-16.002141px;}
.ws300{word-spacing:-15.996017px;}
.ws100{word-spacing:-15.960149px;}
.wsef{word-spacing:-15.924286px;}
.ws2d3{word-spacing:-15.910174px;}
.ws7f{word-spacing:-15.900373px;}
.ws24e{word-spacing:-15.890919px;}
.ws120{word-spacing:-15.852555px;}
.ws2ea{word-spacing:-15.780824px;}
.wsa{word-spacing:-15.709093px;}
.ws1cb{word-spacing:-15.661270px;}
.wsa6{word-spacing:-15.637362px;}
.ws17b{word-spacing:-15.565631px;}
.ws15{word-spacing:-15.493900px;}
.ws153{word-spacing:-15.422169px;}
.ws1cd{word-spacing:-15.422167px;}
.ws2ce{word-spacing:-15.358376px;}
.ws41{word-spacing:-15.350438px;}
.ws1ff{word-spacing:-15.350432px;}
.ws7d{word-spacing:-15.302615px;}
.ws1c2{word-spacing:-15.278707px;}
.ws22b{word-spacing:-15.243327px;}
.ws156{word-spacing:-15.206976px;}
.ws145{word-spacing:-15.135245px;}
.ws14b{word-spacing:-15.063514px;}
.ws289{word-spacing:-15.057517px;}
.ws233{word-spacing:-15.044068px;}
.ws190{word-spacing:-14.991783px;}
.wsbd{word-spacing:-14.943960px;}
.wsf8{word-spacing:-14.920052px;}
.ws254{word-spacing:-14.894623px;}
.ws272{word-spacing:-14.856092px;}
.ws58{word-spacing:-14.848321px;}
.ws270{word-spacing:-14.807701px;}
.ws269{word-spacing:-14.794994px;}
.ws6a{word-spacing:-14.776590px;}
.wsbf{word-spacing:-14.764632px;}
.ws2cd{word-spacing:-14.714612px;}
.ws5{word-spacing:-14.704859px;}
.ws26e{word-spacing:-14.695364px;}
.ws296{word-spacing:-14.681022px;}
.ws295{word-spacing:-14.633201px;}
.ws16d{word-spacing:-14.633128px;}
.ws203{word-spacing:-14.633122px;}
.ws231{word-spacing:-14.595735px;}
.ws2d4{word-spacing:-14.576663px;}
.ws1a1{word-spacing:-14.561397px;}
.ws251{word-spacing:-14.545920px;}
.ws118{word-spacing:-14.525529px;}
.wseb{word-spacing:-14.489666px;}
.ws26a{word-spacing:-14.446290px;}
.wsa5{word-spacing:-14.417935px;}
.ws22d{word-spacing:-14.346661px;}
.ws16c{word-spacing:-14.346204px;}
.ws26f{word-spacing:-14.296846px;}
.wse5{word-spacing:-14.274473px;}
.ws2cc{word-spacing:-14.254780px;}
.ws6f{word-spacing:-14.202742px;}
.ws6e{word-spacing:-14.131011px;}
.ws2d9{word-spacing:-14.116831px;}
.ws2f8{word-spacing:-14.096079px;}
.ws2ee{word-spacing:-14.093876px;}
.ws2fb{word-spacing:-14.086804px;}
.ws304{word-spacing:-14.085621px;}
.ws306{word-spacing:-14.085478px;}
.ws2f9{word-spacing:-14.085370px;}
.ws302{word-spacing:-14.084295px;}
.ws2f5{word-spacing:-14.073910px;}
.ws2da{word-spacing:-14.070848px;}
.ws4f{word-spacing:-14.059280px;}
.ws22c{word-spacing:-14.047772px;}
.ws12b{word-spacing:-14.047322px;}
.ws125{word-spacing:-13.987549px;}
.wse0{word-spacing:-13.935739px;}
.wsdf{word-spacing:-13.933868px;}
.ws70{word-spacing:-13.915818px;}
.ws211{word-spacing:-13.867995px;}
.ws127{word-spacing:-13.844087px;}
.ws26d{word-spacing:-13.798698px;}
.ws1e4{word-spacing:-13.772356px;}
.ws2e{word-spacing:-13.748443px;}
.ws1fb{word-spacing:-13.724529px;}
.ws195{word-spacing:-13.700625px;}
.ws24f{word-spacing:-13.699068px;}
.ws2d2{word-spacing:-13.656999px;}
.ws24{word-spacing:-13.628894px;}
.ws10{word-spacing:-13.569116px;}
.ws11e{word-spacing:-13.557163px;}
.ws28a{word-spacing:-13.512024px;}
.ws45{word-spacing:-13.485432px;}
.ws268{word-spacing:-13.449994px;}
.ws83{word-spacing:-13.413701px;}
.ws1fa{word-spacing:-13.389785px;}
.ws2b8{word-spacing:-13.352793px;}
.ws18c{word-spacing:-13.341970px;}
.ws192{word-spacing:-13.270239px;}
.wsff{word-spacing:-13.270236px;}
.ws2d1{word-spacing:-13.243151px;}
.ws15a{word-spacing:-13.198508px;}
.wsc2{word-spacing:-13.150685px;}
.ws255{word-spacing:-13.101291px;}
.ws95{word-spacing:-13.055046px;}
.ws170{word-spacing:-12.983315px;}
.ws12d{word-spacing:-12.971357px;}
.ws2cf{word-spacing:-12.967252px;}
.ws42{word-spacing:-12.911584px;}
.ws290{word-spacing:-12.893827px;}
.ws71{word-spacing:-12.839853px;}
.ws220{word-spacing:-12.792441px;}
.ws2f{word-spacing:-12.792030px;}
.wsf6{word-spacing:-12.768122px;}
.ws1fc{word-spacing:-12.768116px;}
.ws106{word-spacing:-12.696391px;}
.wsc4{word-spacing:-12.672478px;}
.ws18b{word-spacing:-12.624660px;}
.ws17c{word-spacing:-12.552928px;}
.ws176{word-spacing:-12.481197px;}
.ws1f7{word-spacing:-12.433372px;}
.wsfc{word-spacing:-12.409466px;}
.ws2b1{word-spacing:-12.392788px;}
.ws63{word-spacing:-12.337735px;}
.ws26b{word-spacing:-12.304254px;}
.ws2b7{word-spacing:-12.261878px;}
.ws2b2{word-spacing:-12.218242px;}
.ws235{word-spacing:-12.204625px;}
.ws11c{word-spacing:-12.194273px;}
.ws252{word-spacing:-12.154810px;}
.wsed{word-spacing:-12.134496px;}
.ws94{word-spacing:-12.122542px;}
.ws256{word-spacing:-12.104995px;}
.ws1d1{word-spacing:-12.050811px;}
.ws234{word-spacing:-12.005365px;}
.wsb3{word-spacing:-11.979080px;}
.ws2ae{word-spacing:-11.956422px;}
.ws7e{word-spacing:-11.955168px;}
.ws1d9{word-spacing:-11.907349px;}
.ws26c{word-spacing:-11.855921px;}
.ws9f{word-spacing:-11.835618px;}
.ws130{word-spacing:-11.835616px;}
.ws2d0{word-spacing:-11.817673px;}
.wsa2{word-spacing:-11.763887px;}
.ws2ad{word-spacing:-11.694603px;}
.ws172{word-spacing:-11.692156px;}
.ws2ac{word-spacing:-11.650966px;}
.ws1e{word-spacing:-11.620425px;}
.ws2b0{word-spacing:-11.563693px;}
.ws253{word-spacing:-11.557032px;}
.ws28f{word-spacing:-11.480805px;}
.ws3d{word-spacing:-11.476963px;}
.wsec{word-spacing:-11.417185px;}
.ws4d{word-spacing:-11.405232px;}
.ws198{word-spacing:-11.333501px;}
.ws2ab{word-spacing:-11.301874px;}
.wsaf{word-spacing:-11.297634px;}
.ws199{word-spacing:-11.261770px;}
.ws22{word-spacing:-11.190039px;}
.ws1{word-spacing:-11.178000px;}
.ws12a{word-spacing:-11.118308px;}
.ws232{word-spacing:-11.058884px;}
.ws1ba{word-spacing:-11.046577px;}
.ws7a{word-spacing:-10.998755px;}
.ws1fe{word-spacing:-10.998752px;}
.ws1b9{word-spacing:-10.974846px;}
.ws2af{word-spacing:-10.865508px;}
.ws16b{word-spacing:-10.831384px;}
.ws288{word-spacing:-10.774294px;}
.ws93{word-spacing:-10.759653px;}
.ws2f6{word-spacing:-10.687922px;}
.ws193{word-spacing:-10.616191px;}
.ws1a{word-spacing:-10.544460px;}
.wsc7{word-spacing:-10.520548px;}
.ws36{word-spacing:-10.472729px;}
.ws28e{word-spacing:-10.465195px;}
.ws1c8{word-spacing:-10.460772px;}
.ws4{word-spacing:-10.400998px;}
.ws27a{word-spacing:-10.355713px;}
.ws25{word-spacing:-10.329267px;}
.wsc3{word-spacing:-10.281444px;}
.wsf0{word-spacing:-10.185805px;}
.ws59{word-spacing:-10.114074px;}
.ws46{word-spacing:-10.042343px;}
.ws24d{word-spacing:-10.012774px;}
.ws2{word-spacing:-9.936000px;}
.ws92{word-spacing:-9.898881px;}
.ws2e0{word-spacing:-9.856652px;}
.ws2e4{word-spacing:-9.757740px;}
.ws152{word-spacing:-9.683688px;}
.wsbc{word-spacing:-9.683686px;}
.ws28{word-spacing:-9.611957px;}
.ws196{word-spacing:-9.540226px;}
.ws19b{word-spacing:-9.468495px;}
.ws61{word-spacing:-9.396764px;}
.ws67{word-spacing:-9.325033px;}
.ws155{word-spacing:-9.253302px;}
.ws9{word-spacing:-9.181571px;}
.ws1e0{word-spacing:-9.109840px;}
.ws303{word-spacing:-9.038109px;}
.ws1fd{word-spacing:-8.942463px;}
.ws1b8{word-spacing:-8.894646px;}
.ws27{word-spacing:-8.822915px;}
.ws135{word-spacing:-8.751184px;}
.ws96{word-spacing:-8.679453px;}
.ws9e{word-spacing:-8.607722px;}
.ws160{word-spacing:-8.535991px;}
.ws22f{word-spacing:-8.468515px;}
.ws34{word-spacing:-8.392529px;}
.ws79{word-spacing:-8.368618px;}
.ws20{word-spacing:-8.320798px;}
.wsfd{word-spacing:-8.249067px;}
.ws164{word-spacing:-8.105605px;}
.ws1df{word-spacing:-8.033874px;}
.ws1da{word-spacing:-8.009963px;}
.ws123{word-spacing:-7.962143px;}
.wsf4{word-spacing:-7.890412px;}
.ws168{word-spacing:-7.818681px;}
.ws158{word-spacing:-7.746950px;}
.ws2aa{word-spacing:-7.723674px;}
.ws1de{word-spacing:-7.603488px;}
.ws33{word-spacing:-7.531757px;}
.ws103{word-spacing:-7.388295px;}
.ws2e7{word-spacing:-7.352428px;}
.ws1c{word-spacing:-7.244833px;}
.ws2ef{word-spacing:-7.173102px;}
.ws17e{word-spacing:-7.101371px;}
.wsb0{word-spacing:-6.754670px;}
.ws3{word-spacing:-6.670985px;}
.ws169{word-spacing:-6.527523px;}
.ws9d{word-spacing:-6.455792px;}
.ws16{word-spacing:-6.312330px;}
.ws18d{word-spacing:-6.240599px;}
.ws104{word-spacing:-6.168868px;}
.ws16a{word-spacing:-6.097137px;}
.ws15d{word-spacing:-5.953675px;}
.ws9a{word-spacing:-5.881944px;}
.ws1db{word-spacing:-5.810213px;}
.wsba{word-spacing:-5.666751px;}
.ws23{word-spacing:-5.595020px;}
.ws14a{word-spacing:-5.308095px;}
.ws183{word-spacing:-5.260274px;}
.ws1d3{word-spacing:-5.236364px;}
.wsfe{word-spacing:-5.200498px;}
.ws2eb{word-spacing:-5.092902px;}
.ws15e{word-spacing:-4.949440px;}
.ws14{word-spacing:-4.877709px;}
.ws49{word-spacing:-4.734247px;}
.ws69{word-spacing:-4.590785px;}
.ws1a4{word-spacing:-4.447323px;}
.ws184{word-spacing:-4.375592px;}
.ws1bd{word-spacing:-4.303861px;}
.ws171{word-spacing:-4.232130px;}
.ws60{word-spacing:-4.160399px;}
.ws1c7{word-spacing:-4.064757px;}
.ws1bf{word-spacing:-4.016937px;}
.ws188{word-spacing:-3.945206px;}
.ws1e6{word-spacing:-3.873475px;}
.wsaa{word-spacing:-3.658282px;}
.ws122{word-spacing:-3.514820px;}
.ws147{word-spacing:-3.299627px;}
.ws3f{word-spacing:-3.227896px;}
.ws53{word-spacing:-2.869241px;}
.ws77{word-spacing:-2.725779px;}
.ws187{word-spacing:-2.510586px;}
.ws191{word-spacing:-2.438855px;}
.ws47{word-spacing:-2.367124px;}
.ws2f7{word-spacing:-2.080200px;}
.ws3b{word-spacing:-1.936738px;}
.wsb9{word-spacing:-1.897296px;}
.ws2f4{word-spacing:-1.793276px;}
.ws2f3{word-spacing:-1.721544px;}
.ws2b{word-spacing:-1.578082px;}
.ws197{word-spacing:-1.291158px;}
.ws157{word-spacing:-1.004234px;}
.ws99{word-spacing:-0.789041px;}
.ws138{word-spacing:-0.573848px;}
.ws51{word-spacing:-0.502117px;}
.ws167{word-spacing:-0.430386px;}
.ws1c0{word-spacing:-0.286924px;}
.wsfa{word-spacing:-0.284968px;}
.ws154{word-spacing:-0.143462px;}
.ws26{word-spacing:-0.071731px;}
.ws141{word-spacing:-0.059776px;}
.ws230{word-spacing:-0.049815px;}
.wsd4{word-spacing:-0.047821px;}
.ws2d6{word-spacing:-0.045983px;}
.ws28b{word-spacing:-0.044157px;}
.ws2b4{word-spacing:-0.043637px;}
.ws292{word-spacing:-0.040326px;}
.ws2a1{word-spacing:-0.031881px;}
.ws0{word-spacing:0.000000px;}
.ws186{word-spacing:0.143462px;}
.wsbb{word-spacing:0.215193px;}
.ws166{word-spacing:0.358655px;}
.ws19f{word-spacing:0.430386px;}
.ws87{word-spacing:0.573848px;}
.ws1c3{word-spacing:0.645579px;}
.wsf3{word-spacing:0.717310px;}
.ws11a{word-spacing:0.819032px;}
.ws19c{word-spacing:1.004234px;}
.ws56{word-spacing:1.032207px;}
.wsa8{word-spacing:1.147696px;}
.ws126{word-spacing:1.219427px;}
.ws1dd{word-spacing:1.413032px;}
.ws1c5{word-spacing:1.461032px;}
.ws4b{word-spacing:1.793275px;}
.ws35{word-spacing:2.008469px;}
.ws2a{word-spacing:2.151931px;}
.ws21{word-spacing:2.223662px;}
.ws301{word-spacing:2.582317px;}
.ws3c{word-spacing:2.797510px;}
.wsa9{word-spacing:2.940972px;}
.ws4c{word-spacing:3.012703px;}
.wsf5{word-spacing:3.371358px;}
.ws10d{word-spacing:3.658282px;}
.wsd2{word-spacing:4.016937px;}
.ws15f{word-spacing:4.519054px;}
.ws78{word-spacing:4.602740px;}
.ws75{word-spacing:5.021171px;}
.ws1a0{word-spacing:5.236364px;}
.ws1d2{word-spacing:5.451558px;}
.ws6{word-spacing:5.595020px;}
.ws40{word-spacing:5.666751px;}
.ws3e{word-spacing:5.738482px;}
.ws7{word-spacing:6.097137px;}
.ws1d4{word-spacing:6.240599px;}
.ws18e{word-spacing:6.527523px;}
.ws48{word-spacing:6.886178px;}
.ws74{word-spacing:7.244833px;}
.ws1e1{word-spacing:7.460026px;}
.ws1a5{word-spacing:7.890412px;}
.ws1d8{word-spacing:8.985032px;}
.ws128{word-spacing:9.181571px;}
.ws85{word-spacing:9.253302px;}
.ws148{word-spacing:10.616191px;}
.ws149{word-spacing:10.687922px;}
.ws291{word-spacing:11.129970px;}
.ws97{word-spacing:11.190039px;}
.ws1a3{word-spacing:11.229032px;}
.ws1e5{word-spacing:11.333501px;}
.ws1d6{word-spacing:11.620425px;}
.ws1d5{word-spacing:11.763887px;}
.ws110{word-spacing:11.835618px;}
.ws1d{word-spacing:11.907349px;}
.ws1e3{word-spacing:12.624660px;}
.ws2d5{word-spacing:12.691353px;}
.ws293{word-spacing:13.193290px;}
.ws294{word-spacing:13.194122px;}
.ws68{word-spacing:13.198508px;}
.ws142{word-spacing:13.220384px;}
.ws143{word-spacing:13.226384px;}
.ws236{word-spacing:13.748883px;}
.ws2b3{word-spacing:14.312798px;}
.ws2d7{word-spacing:14.536417px;}
.ws2d8{word-spacing:14.537366px;}
.wsf2{word-spacing:14.882719px;}
.ws1a7{word-spacing:15.015032px;}
.ws8{word-spacing:15.135245px;}
.ws2b6{word-spacing:15.209962px;}
.ws2b5{word-spacing:15.216040px;}
.ws237{word-spacing:16.297708px;}
.ws238{word-spacing:16.298736px;}
.ws200{word-spacing:16.498132px;}
.ws1c4{word-spacing:17.574100px;}
.wsdc{word-spacing:18.878806px;}
.ws1a9{word-spacing:18.879837px;}
.ws10e{word-spacing:18.884135px;}
.wsdb{word-spacing:18.886034px;}
.ws258{word-spacing:19.472810px;}
.ws259{word-spacing:19.473838px;}
.ws201{word-spacing:19.556624px;}
.ws202{word-spacing:19.557858px;}
.ws215{word-spacing:19.606476px;}
.ws151{word-spacing:19.797762px;}
.ws257{word-spacing:20.125177px;}
.ws217{word-spacing:21.105858px;}
.ws216{word-spacing:21.110624px;}
.ws1b6{word-spacing:21.739673px;}
.ws136{word-spacing:22.083254px;}
.wse8{word-spacing:22.640806px;}
.ws150{word-spacing:22.862135px;}
.wsda{word-spacing:22.863837px;}
.wsde{word-spacing:22.864034px;}
.wsd3{word-spacing:22.868135px;}
.wse9{word-spacing:22.869837px;}
.ws1bb{word-spacing:23.814699px;}
.wsd7{word-spacing:23.883837px;}
.ws1a8{word-spacing:24.401183px;}
.ws23a{word-spacing:24.867549px;}
.ws163{word-spacing:24.890664px;}
.ws1b0{word-spacing:24.893183px;}
.ws14e{word-spacing:25.034126px;}
.ws124{word-spacing:25.533032px;}
.ws115{word-spacing:25.802135px;}
.wse3{word-spacing:26.176034px;}
.ws86{word-spacing:27.329519px;}
.ws239{word-spacing:28.215104px;}
.ws4e{word-spacing:28.907601px;}
.ws1ae{word-spacing:29.111183px;}
.ws132{word-spacing:29.833070px;}
.ws10c{word-spacing:29.843031px;}
.ws185{word-spacing:29.849656px;}
.ws1c6{word-spacing:30.123837px;}
.wse4{word-spacing:30.626806px;}
.wse1{word-spacing:30.910034px;}
.ws2c2{word-spacing:31.231769px;}
.ws16e{word-spacing:35.800392px;}
.ws1f0{word-spacing:36.821917px;}
.ws19a{word-spacing:40.302069px;}
.ws12{word-spacing:42.965732px;}
.wsdd{word-spacing:43.149574px;}
.ws2c9{word-spacing:46.571755px;}
.ws162{word-spacing:46.625163px;}
.wsf1{word-spacing:48.040748px;}
.ws161{word-spacing:49.694135px;}
.ws1f1{word-spacing:50.151930px;}
.ws24b{word-spacing:51.289321px;}
.ws2c0{word-spacing:55.897142px;}
.ws241{word-spacing:61.391762px;}
.ws2c3{word-spacing:61.966920px;}
.ws1ed{word-spacing:63.362390px;}
.ws1ef{word-spacing:69.937733px;}
.ws2c7{word-spacing:72.395903px;}
.ws2c5{word-spacing:74.437556px;}
.ws245{word-spacing:75.749782px;}
.ws249{word-spacing:78.009980px;}
.ws2bf{word-spacing:78.355322px;}
.ws1f3{word-spacing:81.219858px;}
.ws2c8{word-spacing:86.577113px;}
.ws2ca{word-spacing:92.646892px;}
.ws1f4{word-spacing:94.587858px;}
.ws1f2{word-spacing:96.225858px;}
.ws1ea{word-spacing:96.597757px;}
.ws2be{word-spacing:98.050518px;}
.ws248{word-spacing:100.543172px;}
.ws2c6{word-spacing:102.818391px;}
.ws1f6{word-spacing:103.173100px;}
.ws246{word-spacing:104.680707px;}
.ws2dd{word-spacing:105.001508px;}
.ws23c{word-spacing:106.235757px;}
.ws2c4{word-spacing:108.975548px;}
.ws1eb{word-spacing:110.085858px;}
.ws243{word-spacing:110.353486px;}
.ws242{word-spacing:116.821096px;}
.ws240{word-spacing:120.938825px;}
.ws1e9{word-spacing:122.331858px;}
.ws1ec{word-spacing:122.336624px;}
.ws2e1{word-spacing:123.635908px;}
.ws23d{word-spacing:125.083958px;}
.ws2e5{word-spacing:125.286784px;}
.ws24a{word-spacing:131.152412px;}
.ws25b{word-spacing:132.347967px;}
.ws247{word-spacing:134.691668px;}
.ws2c1{word-spacing:135.631959px;}
.ws2e6{word-spacing:136.960745px;}
.ws244{word-spacing:143.634551px;}
.ws1ee{word-spacing:149.798255px;}
.ws23f{word-spacing:154.597305px;}
.ws2ba{word-spacing:160.186972px;}
.ws23b{word-spacing:161.101071px;}
.ws2a9{word-spacing:162.160737px;}
.ws2bb{word-spacing:163.277041px;}
.ws23e{word-spacing:172.860486px;}
.ws29e{word-spacing:177.893819px;}
.ws1e8{word-spacing:179.686175px;}
.ws29c{word-spacing:185.927733px;}
.ws2a5{word-spacing:195.109350px;}
.ws29a{word-spacing:200.198887px;}
.ws280{word-spacing:202.904221px;}
.ws2a0{word-spacing:214.718960px;}
.ws279{word-spacing:216.356969px;}
.ws1f5{word-spacing:220.827858px;}
.ws27e{word-spacing:225.383006px;}
.ws287{word-spacing:227.051420px;}
.ws223{word-spacing:229.546609px;}
.ws277{word-spacing:233.954132px;}
.ws229{word-spacing:236.122163px;}
.ws267{word-spacing:238.632829px;}
.ws283{word-spacing:241.594125px;}
.ws284{word-spacing:244.042995px;}
.ws2e3{word-spacing:244.385216px;}
.ws2df{word-spacing:246.862488px;}
.ws225{word-spacing:254.060487px;}
.ws2e2{word-spacing:254.205068px;}
.ws285{word-spacing:256.715214px;}
.ws2de{word-spacing:256.781881px;}
.ws27d{word-spacing:257.708098px;}
.ws207{word-spacing:257.753422px;}
.ws21e{word-spacing:262.783045px;}
.ws25f{word-spacing:265.293711px;}
.ws262{word-spacing:265.353489px;}
.ws29d{word-spacing:268.323177px;}
.ws27f{word-spacing:268.341458px;}
.ws286{word-spacing:272.829477px;}
.ws265{word-spacing:273.363709px;}
.ws221{word-spacing:273.971125px;}
.ws276{word-spacing:274.848247px;}
.ws278{word-spacing:276.910482px;}
.ws209{word-spacing:280.886672px;}
.ws21b{word-spacing:284.556463px;}
.ws298{word-spacing:286.677397px;}
.ws205{word-spacing:289.544624px;}
.ws297{word-spacing:292.281458px;}
.ws281{word-spacing:292.680399px;}
.ws2a3{word-spacing:294.135357px;}
.ws282{word-spacing:296.707880px;}
.ws261{word-spacing:297.659480px;}
.ws29f{word-spacing:302.567399px;}
.ws263{word-spacing:305.877146px;}
.ws27b{word-spacing:308.794372px;}
.ws224{word-spacing:312.518144px;}
.ws27c{word-spacing:312.825901px;}
.ws228{word-spacing:315.925477px;}
.ws271{word-spacing:315.946019px;}
.ws273{word-spacing:317.363395px;}
.ws266{word-spacing:318.436143px;}
.ws20e{word-spacing:319.083434px;}
.ws206{word-spacing:319.202986px;}
.ws25d{word-spacing:325.777782px;}
.ws29b{word-spacing:326.959521px;}
.ws20c{word-spacing:329.125775px;}
.ws275{word-spacing:329.962003px;}
.ws208{word-spacing:344.189287px;}
.ws21f{word-spacing:345.754580px;}
.ws219{word-spacing:345.874136px;}
.ws25c{word-spacing:348.444580px;}
.ws227{word-spacing:356.963780px;}
.ws204{word-spacing:374.077207px;}
.ws20b{word-spacing:375.571603px;}
.ws260{word-spacing:381.199556px;}
.ws264{word-spacing:383.709636px;}
.ws25e{word-spacing:391.789895px;}
.ws20d{word-spacing:398.884180px;}
.ws20a{word-spacing:428.891652px;}
.ws2a2{word-spacing:457.499331px;}
.ws2a4{word-spacing:689.209332px;}
.ws25a{word-spacing:734.369816px;}
.ws226{word-spacing:792.532718px;}
.ws222{word-spacing:812.443355px;}
.ws21d{word-spacing:833.616630px;}
.ws2a6{word-spacing:922.149655px;}
.ws2a8{word-spacing:1076.066322px;}
.ws2a7{word-spacing:1090.371338px;}
._3{margin-left:-14.035200px;}
._4{margin-left:-12.672000px;}
._5{margin-left:-6.674400px;}
._6{margin-left:-5.670000px;}
._2{margin-left:-4.512000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.242000px;}
._37{width:1.041806px;}
._8{width:2.044800px;}
._7{width:3.774600px;}
._3a{width:5.075429px;}
._45{width:6.412906px;}
._da{width:10.733852px;}
._48{width:12.595224px;}
._3e{width:13.910293px;}
._2c{width:15.637362px;}
._11{width:16.737235px;}
._3f{width:18.513033px;}
._36{width:19.582568px;}
._4a{width:20.671152px;}
._12{width:21.877957px;}
._46{width:22.882569px;}
._1d{width:23.886430px;}
._28{width:25.249319px;}
._f{width:26.626393px;}
._24{width:27.975098px;}
._a{width:29.051063px;}
._1a{width:30.347745px;}
._1f{width:31.561649px;}
._29{width:32.996269px;}
._14{width:34.143966px;}
._e{width:35.148200px;}
._10{width:36.343711px;}
._15{width:38.304365px;}
._13{width:39.452061px;}
._23{width:40.528026px;}
._32{width:42.393033px;}
._22{width:43.397267px;}
._1c{width:45.334005px;}
._1b{width:47.199011px;}
._33{width:49.135749px;}
._18{width:50.139983px;}
._34{width:51.789796px;}
._38{width:53.009224px;}
._c{width:54.372113px;}
._26{width:56.021927px;}
._fe{width:57.026161px;}
._20{width:58.102126px;}
._19{width:59.249823px;}
._2f{width:60.325788px;}
._9{width:61.330022px;}
._16{width:62.549449px;}
._2b{width:63.984070px;}
._3b{width:65.282796px;}
._d{width:66.494656px;}
._17{width:67.642352px;}
._1e{width:69.507358px;}
._42{width:71.013710px;}
._31{width:73.093909px;}
._30{width:74.958916px;}
._fd{width:76.106612px;}
._47{width:77.110847px;}
._3c{width:78.473736px;}
._100{width:79.764894px;}
._35{width:81.486439px;}
._21{width:82.849328px;}
._44{width:84.786066px;}
._2e{width:86.069477px;}
._41{width:89.089927px;}
._27{width:90.739740px;}
._49{width:91.815706px;}
._39{width:93.106864px;}
._ff{width:94.182829px;}
._55{width:96.721327px;}
._43{width:98.414959px;}
._56{width:101.678704px;}
._3d{width:103.288634px;}
._9c{width:105.221000px;}
._f8{width:106.717742px;}
._40{width:107.739992px;}
._b{width:109.031150px;}
._a5{width:110.476646px;}
._58{width:111.661269px;}
._25{width:113.048088px;}
._57{width:114.889164px;}
._b2{width:116.447786px;}
._9a{width:118.484470px;}
._b1{width:119.555526px;}
._dc{width:123.138867px;}
._f5{width:125.273948px;}
._4b{width:127.681216px;}
._65{width:129.833124px;}
._2a{width:132.272001px;}
._a6{width:133.608244px;}
._5e{width:138.321294px;}
._5d{width:139.815690px;}
._b0{width:141.075520px;}
._fc{width:143.175332px;}
._66{width:144.836860px;}
._a4{width:146.216408px;}
._a3{width:151.118184px;}
._6f{width:153.683685px;}
._a7{width:155.183072px;}
._af{width:158.453373px;}
._a1{width:165.165959px;}
._54{width:166.415939px;}
._a8{width:167.736402px;}
._53{width:171.377333px;}
._9b{width:172.525964px;}
._2d{width:174.291084px;}
._69{width:178.072227px;}
._8b{width:179.691955px;}
._6b{width:181.240347px;}
._a2{width:186.864429px;}
._59{width:187.935241px;}
._c5{width:192.112987px;}
._f4{width:196.495284px;}
._4f{width:198.037358px;}
._ab{width:199.358839px;}
._9d{width:202.467283px;}
._ac{width:207.727726px;}
._61{width:209.633871px;}
._51{width:211.307594px;}
._82{width:212.921542px;}
._ef{width:218.823657px;}
._aa{width:220.107919px;}
._e9{width:223.388053px;}
._62{width:224.637607px;}
._ae{width:226.869883px;}
._a0{width:229.307498px;}
._81{width:234.560396px;}
._99{width:236.421756px;}
._5a{width:239.581567px;}
._e8{width:242.512558px;}
._bb{width:243.953754px;}
._ee{width:245.321315px;}
._cd{width:249.198577px;}
._9f{width:250.827493px;}
._5b{width:254.645078px;}
._5f{width:257.813198px;}
._e5{width:259.812901px;}
._67{width:264.328764px;}
._ad{width:265.771934px;}
._9e{width:268.588286px;}
._97{width:272.423279px;}
._ce{width:274.087648px;}
._93{width:275.157042px;}
._c9{width:276.188196px;}
._c7{width:277.475030px;}
._d4{width:279.476622px;}
._8d{width:285.139929px;}
._ea{width:286.495126px;}
._ca{width:287.540396px;}
._d8{width:290.250302px;}
._e3{width:291.755427px;}
._c4{width:293.748630px;}
._6a{width:297.623907px;}
._e0{width:299.789342px;}
._cb{width:301.089926px;}
._cc{width:305.106394px;}
._d2{width:306.412956px;}
._d7{width:309.171254px;}
._d3{width:310.429424px;}
._b8{width:316.224365px;}
._ed{width:318.635653px;}
._d0{width:319.924292px;}
._c3{width:322.859697px;}
._c6{width:324.932627px;}
._c8{width:327.995423px;}
._f0{width:329.438312px;}
._7c{width:332.234119px;}
._d9{width:333.270062px;}
._ec{width:339.002496px;}
._b5{width:342.466803px;}
._63{width:344.189287px;}
._e7{width:346.414738px;}
._74{width:347.417182px;}
._b6{width:349.520579px;}
._72{width:350.824405px;}
._96{width:352.509467px;}
._98{width:354.003911px;}
._87{width:357.459523px;}
._d5{width:361.036551px;}
._d6{width:364.288808px;}
._71{width:365.589037px;}
._84{width:366.963882px;}
._73{width:369.115812px;}
._7b{width:370.550432px;}
._5c{width:374.196758px;}
._88{width:375.631379px;}
._79{width:377.424654px;}
._be{width:379.947461px;}
._8c{width:382.398349px;}
._7f{width:387.168116px;}
._7d{width:390.635114px;}
._7a{width:392.129510px;}
._b7{width:394.353901px;}
._70{width:398.969623px;}
._90{width:400.630566px;}
._64{width:402.829386px;}
._dd{width:406.190887px;}
._7e{width:408.926521px;}
._bc{width:415.993452px;}
._c0{width:429.264115px;}
._de{width:430.579556px;}
._b3{width:432.611670px;}
._78{width:433.793271px;}
._76{width:437.260270px;}
._ba{width:447.389735px;}
._d1{width:449.505678px;}
._52{width:454.296384px;}
._77{width:455.491901px;}
._bd{width:460.826774px;}
._bf{width:461.842996px;}
._6e{width:463.740967px;}
._6c{width:467.207965px;}
._c1{width:474.097437px;}
._b4{width:477.444992px;}
._6d{width:485.439597px;}
._4c{width:497.813196px;}
._db{width:508.432098px;}
._75{width:538.580318px;}
._df{width:539.898177px;}
._f6{width:542.969276px;}
._a9{width:547.145863px;}
._c2{width:554.916972px;}
._e6{width:569.308042px;}
._60{width:572.353668px;}
._cf{width:586.694675px;}
._e4{width:592.447030px;}
._e2{width:594.987875px;}
._f7{width:606.591590px;}
._f2{width:619.068488px;}
._fa{width:634.126313px;}
._f3{width:649.466298px;}
._83{width:655.083431px;}
._fb{width:665.146110px;}
._95{width:667.119833px;}
._80{width:676.722285px;}
._68{width:680.284544px;}
._eb{width:689.577653px;}
._4e{width:702.306344px;}
._50{width:715.636356px;}
._b9{width:724.446708px;}
._e1{width:743.854397px;}
._91{width:802.934910px;}
._f9{width:805.901044px;}
._8e{width:836.171346px;}
._89{width:849.235359px;}
._86{width:851.148186px;}
._4d{width:884.981311px;}
._8a{width:965.798247px;}
._85{width:1020.672468px;}
._f1{width:1128.487878px;}
._94{width:1264.359462px;}
._92{width:1270.815460px;}
._8f{width:1287.433678px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:28.228192px;}
.fs1d{font-size:31.880599px;}
.fs22{font-size:32.188223px;}
.fs18{font-size:32.260774px;}
.fs16{font-size:34.870366px;}
.fs27{font-size:35.098679px;}
.fs28{font-size:35.099785px;}
.fs24{font-size:35.454466px;}
.fs25{font-size:35.455583px;}
.fs12{font-size:35.865480px;}
.fs20{font-size:36.786521px;}
.fs29{font-size:38.609562px;}
.fs26{font-size:39.000938px;}
.fs14{font-size:39.851825px;}
.fs1b{font-size:40.325977px;}
.fs10{font-size:41.843100px;}
.fs4{font-size:42.000000px;}
.fs1e{font-size:43.636578px;}
.fs19{font-size:44.156942px;}
.fs21{font-size:45.983163px;}
.fsf{font-size:47.820660px;}
.fs1c{font-size:47.820919px;}
.fsb{font-size:48.000000px;}
.fs17{font-size:48.391181px;}
.fs15{font-size:49.814794px;}
.fs6{font-size:54.000000px;}
.fs1f{font-size:55.179804px;}
.fsd{font-size:59.775840px;}
.fs13{font-size:59.777763px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs23{font-size:65.454540px;}
.fs5{font-size:69.000000px;}
.fsc{font-size:71.731020px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs11{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fse{font-size:103.292640px;}
.fs9{font-size:108.000000px;}
.fs8{font-size:156.000000px;}
.fs7{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y2f1{bottom:12.621820px;}
.y2ea{bottom:12.749764px;}
.y2f0{bottom:22.274479px;}
.y2e9{bottom:22.500270px;}
.y2ee{bottom:33.516455px;}
.y24{bottom:40.500000px;}
.y2e7{bottom:49.465105px;}
.y20{bottom:53.320350px;}
.y23{bottom:57.000000px;}
.yb8{bottom:63.168000px;}
.y22{bottom:73.500000px;}
.y20b{bottom:89.776500px;}
.y21{bottom:90.000000px;}
.y2ef{bottom:92.497275px;}
.y2e8{bottom:93.434897px;}
.y4{bottom:97.125005px;}
.y20a{bottom:107.709000px;}
.y73{bottom:108.000000px;}
.y10b{bottom:113.422500px;}
.y1c7{bottom:115.932000px;}
.yb7{bottom:120.888000px;}
.y181{bottom:122.659500px;}
.y31d{bottom:124.522500px;}
.y209{bottom:125.643000px;}
.y72{bottom:125.932500px;}
.y341{bottom:125.980500px;}
.y10a{bottom:126.321000px;}
.yd6{bottom:131.356500px;}
.y13c{bottom:131.466000px;}
.y1f{bottom:139.264499px;}
.y1c6{bottom:142.822500px;}
.y208{bottom:143.575500px;}
.y71{bottom:143.865000px;}
.yd5{bottom:144.126000px;}
.y109{bottom:144.255000px;}
.yb6{bottom:147.778500px;}
.yd0{bottom:149.289000px;}
.y180{bottom:149.550000px;}
.y121{bottom:149.677500px;}
.y31c{bottom:150.525000px;}
.y340{bottom:151.983000px;}
.y1a5{bottom:157.051500px;}
.y114{bottom:157.753500px;}
.y13b{bottom:158.356500px;}
.y1bf{bottom:158.503500px;}
.y207{bottom:161.508000px;}
.y70{bottom:161.797500px;}
.y108{bottom:162.187500px;}
.y120{bottom:162.576000px;}
.y113{bottom:162.673500px;}
.y16b{bottom:167.221500px;}
.yd4{bottom:167.482500px;}
.y18a{bottom:169.713000px;}
.yb5{bottom:174.669000px;}
.y17f{bottom:176.440500px;}
.y31b{bottom:176.527500px;}
.y33f{bottom:177.985500px;}
.y206{bottom:179.440500px;}
.ye4{bottom:179.731500px;}
.y1af{bottom:180.120000px;}
.ycf{bottom:180.291000px;}
.yd3{bottom:180.381000px;}
.y11f{bottom:180.508500px;}
.y1a4{bottom:183.942000px;}
.y93{bottom:185.154000px;}
.y13a{bottom:185.247000px;}
.y1be{bottom:185.394000px;}
.y107{bottom:185.542500px;}
.y158{bottom:188.076000px;}
.y112{bottom:189.564000px;}
.y189{bottom:196.605000px;}
.y16{bottom:196.933500px;}
.y205{bottom:197.373000px;}
.ye3{bottom:197.664000px;}
.ybf{bottom:198.052500px;}
.y17d{bottom:198.100500px;}
.yd2{bottom:198.313500px;}
.y17e{bottom:198.667500px;}
.yb4{bottom:201.559500px;}
.y31a{bottom:202.530000px;}
.y17c{bottom:203.331000px;}
.y11e{bottom:203.865000px;}
.y33e{bottom:203.988000px;}
.y16a{bottom:205.102500px;}
.yce{bottom:207.183000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y1a3{bottom:210.832500px;}
.y139{bottom:212.137500px;}
.y1bd{bottom:212.284500px;}
.y157{bottom:214.966500px;}
.y204{bottom:215.305500px;}
.y105{bottom:215.515500px;}
.ye2{bottom:215.596500px;}
.ybe{bottom:215.985000px;}
.y111{bottom:216.454500px;}
.y11d{bottom:216.763500px;}
.y1ae{bottom:221.409000px;}
.yd1{bottom:221.670000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y188{bottom:223.495500px;}
.y92{bottom:226.938000px;}
.yb3{bottom:228.451500px;}
.y319{bottom:228.532500px;}
.y33d{bottom:229.990500px;}
.y17b{bottom:230.223000px;}
.y169{bottom:231.994500px;}
.y203{bottom:233.239500px;}
.ye1{bottom:233.529000px;}
.ybd{bottom:233.917500px;}
.ycd{bottom:234.073500px;}
.y1ad{bottom:234.307500px;}
.y11c{bottom:234.696000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y2f2{bottom:234.921454px;}
.y2eb{bottom:237.302794px;}
.y1a2{bottom:237.723000px;}
.y138{bottom:239.029500px;}
.y1bc{bottom:239.176500px;}
.y156{bottom:241.857000px;}
.y104{bottom:242.406000px;}
.y110{bottom:243.346500px;}
.y1ed{bottom:244.005000px;}
.y187{bottom:250.386000px;}
.y202{bottom:251.172000px;}
.ye0{bottom:251.461500px;}
.ybc{bottom:251.851500px;}
.y1ac{bottom:252.240000px;}
.y11b{bottom:252.628500px;}
.y91{bottom:253.828500px;}
.y318{bottom:254.535000px;}
.yb2{bottom:255.342000px;}
.y33c{bottom:255.993000px;}
.y17a{bottom:257.113500px;}
.y168{bottom:258.885000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.ycc{bottom:260.964000px;}
.y1ec{bottom:263.623500px;}
.y1a1{bottom:264.615000px;}
.y137{bottom:265.920000px;}
.y1bb{bottom:266.067000px;}
.y155{bottom:268.747500px;}
.y201{bottom:269.104500px;}
.y103{bottom:269.298000px;}
.ybb{bottom:269.784000px;}
.y1ab{bottom:270.172500px;}
.y10f{bottom:270.237000px;}
.y1eb{bottom:272.398500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y11a{bottom:275.985000px;}
.y186{bottom:277.276500px;}
.y18b{bottom:277.513500px;}
.ydf{bottom:278.361000px;}
.y317{bottom:280.537500px;}
.y90{bottom:280.719000px;}
.y33b{bottom:281.995500px;}
.yb1{bottom:282.232500px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y167{bottom:285.775500px;}
.y1ea{bottom:286.594500px;}
.y200{bottom:287.037000px;}
.yba{bottom:287.716500px;}
.ycb{bottom:287.854500px;}
.y1aa{bottom:288.105000px;}
.y119{bottom:288.883500px;}
.y1a0{bottom:291.505500px;}
.y136{bottom:292.810500px;}
.y1ba{bottom:292.957500px;}
.y102{bottom:296.188500px;}
.yde{bottom:296.293500px;}
.y1e9{bottom:300.792000px;}
.y185{bottom:304.168500px;}
.y1a9{bottom:306.037500px;}
.y316{bottom:306.540000px;}
.y118{bottom:306.816000px;}
.y8f{bottom:307.611000px;}
.y33a{bottom:307.998000px;}
.yb0{bottom:309.123000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.yb9{bottom:311.071500px;}
.y166{bottom:312.666000px;}
.ydd{bottom:314.226000px;}
.yca{bottom:314.746500px;}
.y1ff{bottom:314.842500px;}
.y10e{bottom:314.949000px;}
.y1e8{bottom:314.988000px;}
.y19f{bottom:318.396000px;}
.y10d{bottom:319.381500px;}
.y135{bottom:319.701000px;}
.y1b9{bottom:319.848000px;}
.y154{bottom:320.758500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y101{bottom:323.079000px;}
.y1a8{bottom:323.970000px;}
.y117{bottom:324.748500px;}
.y1e7{bottom:329.185500px;}
.y295{bottom:329.618070px;}
.y184{bottom:331.059000px;}
.ydc{bottom:332.160000px;}
.y315{bottom:332.542500px;}
.y1fe{bottom:332.775000px;}
.y339{bottom:333.999000px;}
.y8e{bottom:334.501500px;}
.yaf{bottom:336.015000px;}
.y179{bottom:337.786500px;}
.y258{bottom:338.245773px;}
.y165{bottom:339.558000px;}
.y3e{bottom:341.550150px;}
.yc9{bottom:341.637000px;}
.y116{bottom:342.681000px;}
.y294{bottom:343.328709px;}
.y1e6{bottom:343.381500px;}
.y19e{bottom:345.286500px;}
.y134{bottom:346.593000px;}
.y1b8{bottom:346.740000px;}
.y1a7{bottom:347.326500px;}
.y153{bottom:347.649000px;}
.yd{bottom:348.133500px;}
.y100{bottom:349.969500px;}
.ydb{bottom:350.092500px;}
.y1fd{bottom:350.709000px;}
.y2f9{bottom:352.837500px;}
.y257{bottom:353.190001px;}
.y231{bottom:354.938985px;}
.y293{bottom:357.039349px;}
.y2e4{bottom:357.555000px;}
.y1e5{bottom:357.579000px;}
.y3d{bottom:357.750150px;}
.y183{bottom:357.949500px;}
.y314{bottom:358.545000px;}
.y338{bottom:360.001500px;}
.y8d{bottom:361.392000px;}
.yae{bottom:362.905500px;}
.y178{bottom:364.677000px;}
.y115{bottom:366.037500px;}
.y164{bottom:366.448500px;}
.y2db{bottom:366.723252px;}
.y19d{bottom:367.744500px;}
.yda{bottom:368.025000px;}
.y256{bottom:368.135479px;}
.yc8{bottom:368.527500px;}
.y230{bottom:369.883214px;}
.y292{bottom:370.751000px;}
.y2f8{bottom:370.770000px;}
.y1e4{bottom:371.775000px;}
.y19c{bottom:372.178500px;}
.y133{bottom:373.483500px;}
.y1b7{bottom:373.630500px;}
.y3c{bottom:373.950150px;}
.y152{bottom:374.539500px;}
.y2e3{bottom:375.487500px;}
.yff{bottom:376.861500px;}
.y2da{bottom:380.518007px;}
.y255{bottom:383.079708px;}
.y291{bottom:384.461640px;}
.y313{bottom:384.546000px;}
.y22f{bottom:384.828692px;}
.y1c5{bottom:384.840000px;}
.yd9{bottom:385.957500px;}
.y1e3{bottom:385.972500px;}
.y337{bottom:386.004000px;}
.y1fc{bottom:386.200500px;}
.yc{bottom:386.785499px;}
.y8c{bottom:388.282500px;}
.y2f7{bottom:388.702500px;}
.yad{bottom:389.796000px;}
.y3b{bottom:390.150150px;}
.y177{bottom:391.567500px;}
.y163{bottom:393.339000px;}
.y2e2{bottom:393.420000px;}
.y2d9{bottom:394.312762px;}
.yc7{bottom:395.418000px;}
.y254{bottom:398.023936px;}
.y290{bottom:398.172280px;}
.y19b{bottom:399.069000px;}
.y22e{bottom:399.772920px;}
.y1e2{bottom:400.168500px;}
.y132{bottom:400.374000px;}
.y1b6{bottom:400.521000px;}
.y151{bottom:401.430000px;}
.y182{bottom:402.616500px;}
.yd8{bottom:403.890000px;}
.y1fb{bottom:404.133000px;}
.y3a{bottom:406.350150px;}
.y2f6{bottom:406.635000px;}
.yb{bottom:408.044999px;}
.y2d8{bottom:408.107517px;}
.y2b8{bottom:409.844058px;}
.y312{bottom:410.548500px;}
.y2e1{bottom:411.352500px;}
.y1c4{bottom:411.730500px;}
.y28f{bottom:411.882919px;}
.y336{bottom:412.006500px;}
.y253{bottom:412.968164px;}
.y22d{bottom:414.717148px;}
.y8b{bottom:415.174500px;}
.yac{bottom:416.686500px;}
.yfc{bottom:416.953500px;}
.y29{bottom:417.900300px;}
.y176{bottom:418.458000px;}
.y162{bottom:420.229500px;}
.yd7{bottom:421.822500px;}
.y2d7{bottom:421.902272px;}
.y1fa{bottom:422.065500px;}
.yc6{bottom:422.308500px;}
.y39{bottom:422.550150px;}
.y2b7{bottom:423.393126px;}
.y2b{bottom:423.411150px;}
.yfe{bottom:423.658500px;}
.y1e1{bottom:424.239000px;}
.y2f5{bottom:424.567500px;}
.y28e{bottom:425.593559px;}
.y19a{bottom:425.959500px;}
.y131{bottom:427.264500px;}
.y1b5{bottom:427.411500px;}
.y252{bottom:427.912392px;}
.y150{bottom:428.322000px;}
.y2e0{bottom:429.285000px;}
.y22c{bottom:429.661377px;}
.y279{bottom:431.062453px;}
.y2d6{bottom:435.697027px;}
.y311{bottom:436.551000px;}
.y2b6{bottom:436.942194px;}
.y335{bottom:438.009000px;}
.yfb{bottom:438.106500px;}
.y1c3{bottom:438.622500px;}
.y38{bottom:438.750150px;}
.y28d{bottom:439.305210px;}
.y8a{bottom:442.065000px;}
.y1e0{bottom:442.171500px;}
.y2f4{bottom:442.501500px;}
.y251{bottom:442.856620px;}
.yab{bottom:443.577000px;}
.y22b{bottom:444.605605px;}
.y175{bottom:445.348500px;}
.y278{bottom:446.006682px;}
.y161{bottom:447.121500px;}
.y2df{bottom:447.217500px;}
.y2d5{bottom:449.492936px;}
.yfd{bottom:450.238500px;}
.y2b5{bottom:450.491262px;}
.y199{bottom:452.850000px;}
.y28c{bottom:453.015850px;}
.y130{bottom:454.155000px;}
.y1b4{bottom:454.303500px;}
.y37{bottom:454.950150px;}
.y14f{bottom:455.212500px;}
.y250{bottom:457.802099px;}
.y1f9{bottom:457.930500px;}
.y22a{bottom:459.549833px;}
.y1df{bottom:460.104000px;}
.yc5{bottom:460.794000px;}
.y277{bottom:460.950910px;}
.y310{bottom:462.553500px;}
.y2d4{bottom:463.287691px;}
.y334{bottom:464.011500px;}
.y2b4{bottom:464.040329px;}
.y1c2{bottom:465.513000px;}
.y28{bottom:468.900300px;}
.y89{bottom:468.955500px;}
.y20c{bottom:468.973500px;}
.yaa{bottom:470.469000px;}
.y2a{bottom:470.475150px;}
.y174{bottom:472.240500px;}
.y24f{bottom:472.746327px;}
.y160{bottom:474.012000px;}
.y28b{bottom:474.142924px;}
.y229{bottom:474.495311px;}
.y198{bottom:475.308000px;}
.y276{bottom:475.895138px;}
.y2d3{bottom:477.082446px;}
.y2b3{bottom:477.590397px;}
.y197{bottom:479.740500px;}
.y12f{bottom:481.047000px;}
.y1b3{bottom:481.194000px;}
.y14e{bottom:482.103000px;}
.y2f3{bottom:483.355500px;}
.y1f8{bottom:484.497000px;}
.y24e{bottom:487.690555px;}
.y2de{bottom:488.073000px;}
.y30f{bottom:488.556000px;}
.y28a{bottom:488.761265px;}
.y228{bottom:489.439539px;}
.y333{bottom:490.014000px;}
.y275{bottom:490.839366px;}
.y2d2{bottom:490.877201px;}
.y2b2{bottom:491.139465px;}
.y1c1{bottom:492.403500px;}
.y1de{bottom:492.712500px;}
.y48{bottom:493.200150px;}
.yfa{bottom:493.972500px;}
.y88{bottom:495.846000px;}
.ya9{bottom:497.359500px;}
.y173{bottom:499.131000px;}
.y196{bottom:502.198500px;}
.y1f7{bottom:502.429500px;}
.y24d{bottom:502.634783px;}
.y289{bottom:503.379606px;}
.y227{bottom:504.383768px;}
.y2d1{bottom:504.671956px;}
.y2b1{bottom:504.688533px;}
.y2ed{bottom:505.024500px;}
.y274{bottom:505.784844px;}
.y195{bottom:506.632500px;}
.y12e{bottom:507.937500px;}
.y1b2{bottom:508.084500px;}
.y14d{bottom:508.993500px;}
.y1dd{bottom:510.645000px;}
.y47{bottom:511.200150px;}
.y30e{bottom:514.558500px;}
.y332{bottom:516.016500px;}
.y24c{bottom:517.579011px;}
.y288{bottom:517.997947px;}
.y2b0{bottom:518.237600px;}
.y2d0{bottom:518.466711px;}
.yc4{bottom:519.294000px;}
.y226{bottom:519.327996px;}
.y273{bottom:520.729073px;}
.yf9{bottom:520.864500px;}
.ya{bottom:520.864502px;}
.y87{bottom:522.738000px;}
.ya8{bottom:524.250000px;}
.y63{bottom:525.019950px;}
.y15f{bottom:526.021500px;}
.y1dc{bottom:528.579000px;}
.y46{bottom:529.200150px;}
.y2af{bottom:531.786668px;}
.y2cf{bottom:532.262619px;}
.y24b{bottom:532.523240px;}
.y194{bottom:533.523000px;}
.y12d{bottom:534.828000px;}
.y1b1{bottom:534.975000px;}
.y272{bottom:535.673301px;}
.y14c{bottom:535.885500px;}
.y9{bottom:538.864499px;}
.y30d{bottom:540.561000px;}
.y331{bottom:542.019000px;}
.y287{bottom:542.515999px;}
.y225{bottom:543.435017px;}
.y2ae{bottom:545.336736px;}
.yc3{bottom:546.186000px;}
.y45{bottom:547.200150px;}
.y24a{bottom:547.468718px;}
.yf8{bottom:547.755000px;}
.y86{bottom:549.628500px;}
.y271{bottom:550.617529px;}
.ya7{bottom:551.140500px;}
.y42{bottom:551.244300px;}
.y62{bottom:552.775950px;}
.y15e{bottom:552.912000px;}
.y2ce{bottom:554.514234px;}
.y1db{bottom:555.496500px;}
.y8{bottom:556.864499px;}
.y286{bottom:557.134339px;}
.y193{bottom:560.413500px;}
.y1f6{bottom:560.721000px;}
.y224{bottom:561.491845px;}
.y12c{bottom:561.718500px;}
.y249{bottom:562.412946px;}
.y14b{bottom:562.776000px;}
.y44{bottom:565.200150px;}
.y270{bottom:565.561757px;}
.y2ad{bottom:566.214840px;}
.y30c{bottom:566.563500px;}
.y61{bottom:567.775950px;}
.y330{bottom:568.021500px;}
.y2cd{bottom:571.183329px;}
.y285{bottom:571.752680px;}
.yc2{bottom:573.076500px;}
.y1b0{bottom:573.459000px;}
.yf7{bottom:574.645500px;}
.y85{bottom:576.519000px;}
.y248{bottom:577.357174px;}
.ya6{bottom:578.032500px;}
.y1f5{bottom:578.655000px;}
.y223{bottom:579.549923px;}
.y15d{bottom:579.804000px;}
.y26f{bottom:580.505985px;}
.y2ac{bottom:580.660913px;}
.y41{bottom:582.000150px;}
.y1da{bottom:582.063000px;}
.y60{bottom:582.775950px;}
.y43{bottom:583.200150px;}
.y284{bottom:586.371021px;}
.y192{bottom:587.304000px;}
.y2cc{bottom:587.852424px;}
.y12b{bottom:588.610500px;}
.y14a{bottom:589.666500px;}
.y1c0{bottom:590.853000px;}
.y30b{bottom:592.566000px;}
.y32f{bottom:594.024000px;}
.y2ab{bottom:595.106985px;}
.y26e{bottom:595.451464px;}
.y1f4{bottom:596.587500px;}
.y222{bottom:597.608001px;}
.yc1{bottom:599.967000px;}
.y1d9{bottom:599.995500px;}
.y247{bottom:601.462946px;}
.y84{bottom:603.409500px;}
.ya5{bottom:604.923000px;}
.y15c{bottom:606.694500px;}
.y283{bottom:606.912188px;}
.y27{bottom:608.010300px;}
.y5f{bottom:610.531800px;}
.y191{bottom:614.196000px;}
.yf6{bottom:614.269500px;}
.y12a{bottom:615.501000px;}
.y2cb{bottom:615.810025px;}
.y149{bottom:616.557000px;}
.y296{bottom:617.032500px;}
.y10c{bottom:617.743500px;}
.y1d8{bottom:617.928000px;}
.y30a{bottom:618.568500px;}
.y2aa{bottom:619.336106px;}
.y246{bottom:619.521023px;}
.y26d{bottom:619.557235px;}
.y32e{bottom:620.026500px;}
.y282{bottom:621.529517px;}
.y5e{bottom:625.531800px;}
.y221{bottom:627.896470px;}
.y1f3{bottom:629.196000px;}
.y83{bottom:630.300000px;}
.ya4{bottom:631.813500px;}
.y2ca{bottom:632.479120px;}
.y15b{bottom:633.585000px;}
.y2a9{bottom:633.782178px;}
.yf3{bottom:635.424000px;}
.y281{bottom:636.147858px;}
.y245{bottom:637.579101px;}
.y26c{bottom:637.615313px;}
.y5d{bottom:640.531800px;}
.y190{bottom:641.086500px;}
.y129{bottom:642.391500px;}
.y148{bottom:643.447500px;}
.y309{bottom:644.571000px;}
.yc0{bottom:644.634000px;}
.y7{bottom:645.510000px;}
.y220{bottom:645.954548px;}
.y32d{bottom:646.029000px;}
.y1f2{bottom:647.128500px;}
.y2c9{bottom:649.148215px;}
.y280{bottom:650.766198px;}
.yf5{bottom:652.459500px;}
.y1d7{bottom:653.793000px;}
.y2a8{bottom:654.081280px;}
.y244{bottom:655.637179px;}
.y26b{bottom:655.673391px;}
.y26{bottom:656.010300px;}
.y82{bottom:657.192000px;}
.yf4{bottom:657.840000px;}
.ya3{bottom:658.704000px;}
.y15a{bottom:660.475500px;}
.y1f1{bottom:665.061000px;}
.y2c8{bottom:665.817310px;}
.y6{bottom:666.771000px;}
.y18f{bottom:667.977000px;}
.y5c{bottom:668.287650px;}
.y2a7{bottom:668.527352px;}
.y128{bottom:669.282000px;}
.y147{bottom:670.339500px;}
.y308{bottom:670.573500px;}
.y27f{bottom:671.307366px;}
.y21f{bottom:671.327860px;}
.y1d6{bottom:671.727000px;}
.y32c{bottom:672.031500px;}
.y243{bottom:673.695257px;}
.y26a{bottom:673.730219px;}
.y40{bottom:675.259500px;}
.y5b{bottom:683.287650px;}
.y81{bottom:684.082500px;}
.ya2{bottom:685.596000px;}
.y27e{bottom:685.925706px;}
.y159{bottom:687.367500px;}
.y2a6{bottom:688.826453px;}
.y21e{bottom:689.385937px;}
.y1d5{bottom:689.659500px;}
.y269{bottom:691.788296px;}
.y2c7{bottom:692.291008px;}
.y18e{bottom:694.867500px;}
.yf2{bottom:695.458500px;}
.y127{bottom:696.174000px;}
.y307{bottom:696.576000px;}
.y146{bottom:697.230000px;}
.y32b{bottom:698.034000px;}
.y5a{bottom:698.287650px;}
.y27d{bottom:700.544047px;}
.y2a5{bottom:703.271526px;}
.y242{bottom:703.982476px;}
.y21d{bottom:707.444015px;}
.y1d4{bottom:707.592000px;}
.y268{bottom:709.846374px;}
.y1f0{bottom:709.912500px;}
.y80{bottom:710.973000px;}
.ya1{bottom:712.486500px;}
.y59{bottom:713.287650px;}
.y172{bottom:714.258000px;}
.y27c{bottom:715.161376px;}
.y2c6{bottom:715.600740px;}
.y25{bottom:716.010300px;}
.y2a4{bottom:717.717598px;}
.y241{bottom:722.040554px;}
.yf1{bottom:722.349000px;}
.y306{bottom:722.578500px;}
.y126{bottom:723.064500px;}
.y32a{bottom:724.036500px;}
.y145{bottom:724.120500px;}
.y21c{bottom:725.502093px;}
.y1d3{bottom:725.524500px;}
.y5{bottom:726.298500px;}
.y2a3{bottom:732.163670px;}
.y1ef{bottom:736.479000px;}
.y7f{bottom:737.863500px;}
.y27b{bottom:738.378086px;}
.y2c5{bottom:738.911626px;}
.ya0{bottom:739.377000px;}
.y18d{bottom:739.579500px;}
.y267{bottom:740.134843px;}
.y240{bottom:740.134883px;}
.y58{bottom:741.043650px;}
.y171{bottom:741.148500px;}
.y1d2{bottom:743.457000px;}
.y18c{bottom:744.013500px;}
.y305{bottom:748.581000px;}
.yf0{bottom:749.239500px;}
.y125{bottom:749.955000px;}
.y329{bottom:750.039000px;}
.y21b{bottom:750.876655px;}
.y144{bottom:751.011000px;}
.y3{bottom:752.599495px;}
.y2c4{bottom:755.580721px;}
.y57{bottom:756.043650px;}
.y266{bottom:758.192921px;}
.y23f{bottom:758.192961px;}
.y27a{bottom:758.821096px;}
.y6f{bottom:761.488500px;}
.y13d{bottom:761.548500px;}
.y7e{bottom:764.755500px;}
.y9f{bottom:766.267500px;}
.y170{bottom:768.039000px;}
.y21a{bottom:768.933483px;}
.y2a2{bottom:769.552857px;}
.y2ec{bottom:774.304500px;}
.y304{bottom:774.583500px;}
.y328{bottom:776.040000px;}
.yef{bottom:776.131500px;}
.y265{bottom:776.249749px;}
.y124{bottom:776.845500px;}
.y36{bottom:777.600150px;}
.y143{bottom:777.903000px;}
.y1d1{bottom:778.948500px;}
.y2dd{bottom:781.480500px;}
.y23e{bottom:783.566273px;}
.y56{bottom:783.799500px;}
.y6e{bottom:788.379000px;}
.y2a1{bottom:789.754958px;}
.y7d{bottom:791.646000px;}
.y9e{bottom:793.158000px;}
.y264{bottom:794.307827px;}
.y219{bottom:794.308045px;}
.y1ee{bottom:794.832000px;}
.y16f{bottom:794.931000px;}
.y35{bottom:795.600150px;}
.y2e6{bottom:795.972000px;}
.y1d0{bottom:796.881000px;}
.y55{bottom:798.799500px;}
.y303{bottom:800.586000px;}
.y23d{bottom:801.624351px;}
.y327{bottom:802.042500px;}
.yee{bottom:803.022000px;}
.y123{bottom:803.736000px;}
.y142{bottom:804.793500px;}
.y2c3{bottom:809.043906px;}
.y218{bottom:812.366123px;}
.y34{bottom:813.600150px;}
.y54{bottom:813.799500px;}
.y1cf{bottom:814.815000px;}
.y1a6{bottom:815.331000px;}
.y7c{bottom:818.536500px;}
.y263{bottom:819.682389px;}
.y23c{bottom:819.682428px;}
.y9d{bottom:820.050000px;}
.y16e{bottom:821.821500px;}
.y2c2{bottom:825.713001px;}
.y302{bottom:826.587000px;}
.y326{bottom:828.045000px;}
.yed{bottom:829.912500px;}
.y217{bottom:830.424201px;}
.y33{bottom:831.600150px;}
.y141{bottom:831.684000px;}
.y6d{bottom:837.511500px;}
.y262{bottom:837.740467px;}
.y23b{bottom:837.740506px;}
.y1ce{bottom:841.527000px;}
.y53{bottom:841.555350px;}
.y106{bottom:841.710000px;}
.y122{bottom:842.221500px;}
.y2c1{bottom:842.380942px;}
.y7b{bottom:845.427000px;}
.y2a0{bottom:846.050240px;}
.y9c{bottom:846.940500px;}
.y216{bottom:848.482278px;}
.y16d{bottom:848.712000px;}
.y301{bottom:852.589500px;}
.y325{bottom:854.047500px;}
.y261{bottom:855.798545px;}
.y23a{bottom:855.798584px;}
.y52{bottom:856.555350px;}
.yec{bottom:856.803000px;}
.y140{bottom:858.574500px;}
.y1cd{bottom:859.459500px;}
.y29f{bottom:860.496312px;}
.y6c{bottom:864.402000px;}
.y32{bottom:867.600150px;}
.y2c0{bottom:870.339697px;}
.y7a{bottom:872.319000px;}
.y9b{bottom:873.831000px;}
.y260{bottom:873.855372px;}
.y215{bottom:873.855590px;}
.y29e{bottom:874.942384px;}
.y16c{bottom:875.602500px;}
.y1cc{bottom:877.392000px;}
.y300{bottom:878.592000px;}
.y2{bottom:879.369000px;}
.y324{bottom:880.050000px;}
.y239{bottom:881.171896px;}
.yeb{bottom:883.695000px;}
.y51{bottom:884.311350px;}
.y13f{bottom:885.466500px;}
.y2bf{bottom:887.008792px;}
.y6b{bottom:891.292500px;}
.y214{bottom:891.913668px;}
.y1cb{bottom:895.324500px;}
.y29d{bottom:899.172505px;}
.y79{bottom:899.209500px;}
.y25f{bottom:899.229934px;}
.y238{bottom:899.229974px;}
.y50{bottom:899.311350px;}
.y9a{bottom:900.721500px;}
.y3f{bottom:901.200300px;}
.y2be{bottom:903.677887px;}
.y2ff{bottom:904.594500px;}
.y323{bottom:906.052500px;}
.yea{bottom:910.585500px;}
.y13e{bottom:912.357000px;}
.y29c{bottom:913.617577px;}
.y1ca{bottom:914.011500px;}
.y4f{bottom:914.311350px;}
.y25e{bottom:917.288012px;}
.y237{bottom:917.288052px;}
.y213{bottom:917.288230px;}
.y6a{bottom:918.183000px;}
.y2bd{bottom:920.346982px;}
.y78{bottom:926.100000px;}
.y99{bottom:927.613500px;}
.y29b{bottom:928.063650px;}
.y2fe{bottom:930.597000px;}
.y322{bottom:932.055000px;}
.y25d{bottom:935.346090px;}
.y236{bottom:935.346129px;}
.y212{bottom:935.346308px;}
.ye9{bottom:937.476000px;}
.y4e{bottom:942.067200px;}
.y29a{bottom:942.509722px;}
.y69{bottom:945.075000px;}
.y77{bottom:952.990500px;}
.y25c{bottom:953.404168px;}
.y235{bottom:953.404207px;}
.y211{bottom:953.404386px;}
.y1c9{bottom:954.432000px;}
.y98{bottom:954.504000px;}
.y2fd{bottom:956.599500px;}
.y31{bottom:957.600150px;}
.y321{bottom:958.057500px;}
.y2bc{bottom:963.489775px;}
.ye8{bottom:964.366500px;}
.y1{bottom:966.726000px;}
.y4d{bottom:969.823200px;}
.y210{bottom:971.461214px;}
.y68{bottom:971.965500px;}
.y30{bottom:975.600150px;}
.y76{bottom:979.882500px;}
.y299{bottom:979.898909px;}
.y97{bottom:981.394500px;}
.y25b{bottom:982.083836px;}
.y234{bottom:982.083875px;}
.y2fc{bottom:982.602000px;}
.y320{bottom:984.060000px;}
.y4c{bottom:984.823200px;}
.y2bb{bottom:986.799507px;}
.ye7{bottom:991.257000px;}
.y2f{bottom:993.600150px;}
.y67{bottom:998.856000px;}
.y4b{bottom:999.823200px;}
.y298{bottom:1000.100010px;}
.y20f{bottom:1000.140881px;}
.y75{bottom:1006.773000px;}
.y25a{bottom:1007.335894px;}
.y233{bottom:1007.335933px;}
.y96{bottom:1008.285000px;}
.y2fb{bottom:1008.604500px;}
.y31f{bottom:1010.062500px;}
.y2ba{bottom:1010.110392px;}
.y1c8{bottom:1010.695500px;}
.y2e{bottom:1011.600150px;}
.y297{bottom:1014.546082px;}
.y4a{bottom:1014.823200px;}
.ye6{bottom:1018.149000px;}
.y259{bottom:1025.393971px;}
.y232{bottom:1025.394011px;}
.y20e{bottom:1025.394189px;}
.y66{bottom:1025.746500px;}
.y2b9{bottom:1026.779487px;}
.y2d{bottom:1029.600150px;}
.y95{bottom:1035.177000px;}
.y31e{bottom:1036.065000px;}
.y49{bottom:1044.823200px;}
.y74{bottom:1051.440000px;}
.y2fa{bottom:1052.383500px;}
.y65{bottom:1052.638500px;}
.ye5{bottom:1056.633000px;}
.y94{bottom:1062.067500px;}
.y20d{bottom:1064.832000px;}
.y2c{bottom:1065.600150px;}
.y2e5{bottom:1072.698000px;}
.y2dc{bottom:1079.776500px;}
.y64{bottom:1098.955500px;}
.h1c{height:2.869241px;}
.h42{height:25.261452px;}
.h43{height:25.262248px;}
.h3e{height:25.517521px;}
.h3f{height:25.518325px;}
.h44{height:27.788328px;}
.h40{height:28.070011px;}
.h2c{height:31.898107px;}
.h7{height:32.130000px;}
.h1e{height:33.665745px;}
.h37{height:34.814937px;}
.h34{height:35.230103px;}
.h1b{height:35.865495px;}
.h17{height:37.511685px;}
.h11{height:38.400000px;}
.h38{height:39.119511px;}
.h35{height:39.586008px;}
.h3a{height:40.172406px;}
.h3b{height:41.223187px;}
.h2b{height:42.870474px;}
.h36{height:42.870707px;}
.ha{height:43.200000px;}
.h33{height:43.381937px;}
.h2a{height:43.518446px;}
.h2f{height:43.519846px;}
.h30{height:44.658184px;}
.h6{height:45.900000px;}
.hf{height:48.000000px;}
.h3{height:48.195000px;}
.h32{height:49.336317px;}
.h39{height:49.467833px;}
.h12{height:52.222144px;}
.h14{height:53.588107px;}
.h2e{height:53.589830px;}
.h1a{height:53.798265px;}
.h2{height:55.080000px;}
.h9{height:55.200000px;}
.h22{height:56.592852px;}
.h31{height:57.422233px;}
.hc{height:57.600000px;}
.h3c{height:58.678972px;}
.h29{height:59.693745px;}
.h19{height:62.666555px;}
.h27{height:63.281745px;}
.h13{height:64.305739px;}
.h10{height:67.200000px;}
.h18{height:68.898474px;}
.h16{height:68.904474px;}
.h1f{height:70.737495px;}
.h1d{height:71.017241px;}
.h15{height:75.199866px;}
.h5{height:78.030000px;}
.h23{height:82.035739px;}
.h28{height:82.041739px;}
.h25{height:82.821495px;}
.h26{height:82.959739px;}
.h24{height:83.985739px;}
.h21{height:85.227739px;}
.he{height:86.400000px;}
.h4{height:119.055004px;}
.h20{height:122.097739px;}
.hd{height:124.800000px;}
.hb{height:153.600000px;}
.h41{height:252.720000px;}
.h3d{height:255.281760px;}
.h2d{height:918.000000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:347.490000px;}
.w5{width:351.012420px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.w4{width:1188.000000px;}
.x6{left:-864.000000px;}
.x0{left:0.000000px;}
.x60{left:17.535350px;}
.xa{left:27.850500px;}
.x9{left:33.475650px;}
.x61{left:37.796202px;}
.xb{left:43.581300px;}
.x5{left:44.644200px;}
.x6d{left:54.000000px;}
.x3a{left:63.168000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:108.000000px;}
.x65{left:109.023000px;}
.x12{left:114.565500px;}
.x25{left:117.108000px;}
.x5e{left:118.842000px;}
.x1f{left:120.382500px;}
.x6b{left:125.559000px;}
.xc{left:128.250000px;}
.x4d{left:132.498000px;}
.x11{left:134.899500px;}
.x4b{left:138.547318px;}
.x63{left:147.972831px;}
.x68{left:154.513500px;}
.x67{left:156.417973px;}
.x69{left:158.029765px;}
.x7{left:170.799750px;}
.x66{left:172.073275px;}
.x62{left:173.817539px;}
.x5c{left:186.483000px;}
.x39{left:192.160500px;}
.x33{left:201.126000px;}
.x4{left:203.484001px;}
.xf{left:208.505250px;}
.x1c{left:211.915500px;}
.x8{left:229.497750px;}
.x54{left:231.283616px;}
.x28{left:239.566500px;}
.x3b{left:241.383000px;}
.x53{left:246.241691px;}
.x5f{left:262.293000px;}
.x1e{left:268.027500px;}
.x23{left:277.525500px;}
.x1d{left:284.049000px;}
.x41{left:285.715500px;}
.x4f{left:287.766899px;}
.x18{left:290.490000px;}
.x43{left:292.132142px;}
.x2e{left:296.610000px;}
.x44{left:301.276185px;}
.x58{left:305.085566px;}
.x50{left:306.582993px;}
.x30{left:309.066000px;}
.x2d{left:312.382500px;}
.x52{left:314.557033px;}
.x49{left:317.500055px;}
.x2f{left:319.452000px;}
.x3c{left:322.121852px;}
.x4c{left:324.901311px;}
.x3f{left:327.109511px;}
.x3d{left:331.264644px;}
.x4a{left:333.310449px;}
.x19{left:335.958000px;}
.x27{left:341.332500px;}
.x47{left:345.598853px;}
.x51{left:347.466197px;}
.x48{left:348.972000px;}
.x46{left:355.985435px;}
.x31{left:360.289500px;}
.x5b{left:361.621560px;}
.x5a{left:370.822679px;}
.x1b{left:371.985000px;}
.x42{left:373.492245px;}
.x1a{left:377.865000px;}
.x64{left:378.960000px;}
.x34{left:380.634000px;}
.x13{left:383.508000px;}
.x5d{left:385.029000px;}
.x2b{left:387.229500px;}
.x56{left:390.674203px;}
.x57{left:393.246224px;}
.x32{left:395.176500px;}
.x2a{left:397.615500px;}
.x10{left:409.689000px;}
.x24{left:411.088500px;}
.x29{left:415.143000px;}
.x14{left:432.406500px;}
.x16{left:435.582000px;}
.x15{left:440.697000px;}
.x20{left:449.026500px;}
.x55{left:451.994720px;}
.x3{left:454.959000px;}
.x45{left:459.972513px;}
.x26{left:461.178000px;}
.x36{left:466.258500px;}
.x2c{left:467.332500px;}
.x59{left:475.737820px;}
.x17{left:477.879000px;}
.xe{left:486.000000px;}
.x38{left:505.308000px;}
.x6a{left:511.999500px;}
.x37{left:515.695500px;}
.x40{left:554.446786px;}
.x3e{left:558.603169px;}
.x21{left:561.466500px;}
.x35{left:601.329000px;}
.x22{left:617.664000px;}
.x71{left:945.850500px;}
.x70{left:951.475650px;}
.x6c{left:962.644200px;}
.x4e{left:1050.519000px;}
.x6e{left:1088.799750px;}
.x6f{left:1147.497750px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v3{vertical-align:-9.562667pt;}
.v11{vertical-align:-6.613366pt;}
.v5{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:6.197333pt;}
.vb{vertical-align:9.034667pt;}
.v10{vertical-align:13.010272pt;}
.v12{vertical-align:14.076515pt;}
.vd{vertical-align:15.760000pt;}
.vf{vertical-align:17.493333pt;}
.v7{vertical-align:18.416000pt;}
.v1{vertical-align:23.141333pt;}
.vc{vertical-align:26.330667pt;}
.v6{vertical-align:30.997333pt;}
.v9{vertical-align:41.808000pt;}
.va{vertical-align:47.818667pt;}
.v8{vertical-align:51.370667pt;}
.v4{vertical-align:60.576000pt;}
.ls1{letter-spacing:-2.773333pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.000132pt;}
.ls35{letter-spacing:0.000228pt;}
.ls7c{letter-spacing:0.000260pt;}
.ls4d{letter-spacing:0.000313pt;}
.ls2b{letter-spacing:0.000654pt;}
.lsc{letter-spacing:0.000765pt;}
.ls44{letter-spacing:0.001033pt;}
.ls60{letter-spacing:0.001117pt;}
.ls8d{letter-spacing:0.001362pt;}
.ls2d{letter-spacing:0.001429pt;}
.ls98{letter-spacing:0.001553pt;}
.ls91{letter-spacing:0.001618pt;}
.ls7d{letter-spacing:0.001683pt;}
.ls2f{letter-spacing:0.001707pt;}
.ls48{letter-spacing:0.002019pt;}
.lsa{letter-spacing:0.002152pt;}
.ls13{letter-spacing:0.002513pt;}
.ls8f{letter-spacing:0.002669pt;}
.lsb{letter-spacing:0.002673pt;}
.ls86{letter-spacing:0.003022pt;}
.ls18{letter-spacing:0.003075pt;}
.ls38{letter-spacing:0.003529pt;}
.ls45{letter-spacing:0.003627pt;}
.ls12{letter-spacing:0.003669pt;}
.ls2c{letter-spacing:0.006098pt;}
.ls9c{letter-spacing:0.006240pt;}
.ls9a{letter-spacing:0.006303pt;}
.ls9d{letter-spacing:0.006864pt;}
.ls9b{letter-spacing:0.006934pt;}
.ls7{letter-spacing:0.053134pt;}
.ls50{letter-spacing:0.407041pt;}
.ls15{letter-spacing:1.715075pt;}
.ls1e{letter-spacing:1.720408pt;}
.ls67{letter-spacing:2.134570pt;}
.ls4e{letter-spacing:2.139904pt;}
.ls84{letter-spacing:2.214318pt;}
.ls32{letter-spacing:2.653230pt;}
.ls42{letter-spacing:2.654618pt;}
.ls28{letter-spacing:2.655300pt;}
.ls4{letter-spacing:2.656771pt;}
.ls39{letter-spacing:2.657126pt;}
.ls4c{letter-spacing:2.658563pt;}
.ls33{letter-spacing:3.098152pt;}
.ls52{letter-spacing:3.466502pt;}
.ls70{letter-spacing:3.471836pt;}
.ls57{letter-spacing:3.791654pt;}
.ls5c{letter-spacing:5.377433pt;}
.ls69{letter-spacing:7.118196pt;}
.ls6d{letter-spacing:7.123529pt;}
.ls53{letter-spacing:8.189230pt;}
.ls5b{letter-spacing:9.162321pt;}
.ls8e{letter-spacing:9.960552pt;}
.ls20{letter-spacing:10.625033pt;}
.ls74{letter-spacing:10.630367pt;}
.ls99{letter-spacing:11.000946pt;}
.ls8c{letter-spacing:11.751721pt;}
.ls4a{letter-spacing:11.804686pt;}
.ls49{letter-spacing:11.806293pt;}
.ls47{letter-spacing:11.810019pt;}
.ls92{letter-spacing:12.033677pt;}
.ls93{letter-spacing:12.037233pt;}
.ls8b{letter-spacing:12.299854pt;}
.ls7e{letter-spacing:12.304299pt;}
.ls97{letter-spacing:12.949028pt;}
.ls90{letter-spacing:13.555554pt;}
.ls96{letter-spacing:13.624897pt;}
.ls5f{letter-spacing:14.020644pt;}
.ls31{letter-spacing:14.165027pt;}
.ls14{letter-spacing:14.166767pt;}
.ls54{letter-spacing:14.170360pt;}
.ls16{letter-spacing:14.172100pt;}
.ls8a{letter-spacing:14.516934pt;}
.ls78{letter-spacing:14.764686pt;}
.ls46{letter-spacing:15.544960pt;}
.ls87{letter-spacing:15.833300pt;}
.ls34{letter-spacing:16.342263pt;}
.ls7b{letter-spacing:16.492686pt;}
.ls77{letter-spacing:16.630430pt;}
.ls5d{letter-spacing:16.706563pt;}
.ls30{letter-spacing:16.823896pt;}
.ls37{letter-spacing:16.824453pt;}
.ls36{letter-spacing:16.825285pt;}
.ls64{letter-spacing:17.046767pt;}
.ls66{letter-spacing:17.050360pt;}
.ls24{letter-spacing:17.281117pt;}
.ls85{letter-spacing:17.338975pt;}
.ls88{letter-spacing:17.339246pt;}
.ls23{letter-spacing:17.507993pt;}
.ls19{letter-spacing:17.706360pt;}
.ls1f{letter-spacing:17.709270pt;}
.ls21{letter-spacing:17.711220pt;}
.ls5a{letter-spacing:17.713433pt;}
.ls62{letter-spacing:17.812987pt;}
.ls51{letter-spacing:17.962321pt;}
.ls6c{letter-spacing:17.969237pt;}
.ls41{letter-spacing:18.201285pt;}
.ls7a{letter-spacing:18.801097pt;}
.ls3d{letter-spacing:19.328335pt;}
.ls3e{letter-spacing:19.329117pt;}
.ls73{letter-spacing:19.725270pt;}
.ls22{letter-spacing:20.367300pt;}
.ls2e{letter-spacing:20.369126pt;}
.ls43{letter-spacing:20.374460pt;}
.ls4b{letter-spacing:20.479857pt;}
.ls1c{letter-spacing:20.655310pt;}
.ls1d{letter-spacing:20.662451pt;}
.ls6b{letter-spacing:20.863475pt;}
.ls10{letter-spacing:21.075477pt;}
.lsf{letter-spacing:21.078451pt;}
.lse{letter-spacing:21.083001pt;}
.ls61{letter-spacing:21.144862pt;}
.ls65{letter-spacing:21.315993pt;}
.ls59{letter-spacing:21.498321pt;}
.ls4f{letter-spacing:21.503654pt;}
.ls55{letter-spacing:21.739163pt;}
.ls72{letter-spacing:21.862570pt;}
.ls3f{letter-spacing:21.985126pt;}
.ls3b{letter-spacing:22.618524pt;}
.ls6f{letter-spacing:23.190570pt;}
.ls63{letter-spacing:24.174196pt;}
.ls27{letter-spacing:24.388553pt;}
.ls40{letter-spacing:24.863485pt;}
.ls68{letter-spacing:25.540553pt;}
.ls6a{letter-spacing:25.771163pt;}
.ls71{letter-spacing:26.914563pt;}
.ls11{letter-spacing:27.210360pt;}
.ls1b{letter-spacing:27.513967pt;}
.ls3c{letter-spacing:27.514524pt;}
.ls6e{letter-spacing:27.570563pt;}
.ls5e{letter-spacing:27.921429pt;}
.ls25{letter-spacing:31.055220pt;}
.ls26{letter-spacing:33.711300pt;}
.ls56{letter-spacing:34.538142pt;}
.ls8{letter-spacing:36.816132pt;}
.ls5{letter-spacing:37.466799pt;}
.ls2a{letter-spacing:40.085027pt;}
.ls29{letter-spacing:42.410799pt;}
.ls3{letter-spacing:43.594799pt;}
.ls9{letter-spacing:62.773466pt;}
.ls6{letter-spacing:82.805466pt;}
.ls17{letter-spacing:84.621230pt;}
.ls94{letter-spacing:87.192977pt;}
.ls95{letter-spacing:100.637590pt;}
.ls83{letter-spacing:109.572505pt;}
.ls75{letter-spacing:119.665097pt;}
.ls80{letter-spacing:130.041853pt;}
.ls7f{letter-spacing:137.117635pt;}
.ls82{letter-spacing:144.960304pt;}
.ls81{letter-spacing:163.100688pt;}
.ls89{letter-spacing:274.033127pt;}
.ls79{letter-spacing:359.830430pt;}
.ls58{letter-spacing:524.833033pt;}
.ls3a{letter-spacing:654.294367pt;}
.ls1a{letter-spacing:677.195700pt;}
.lsd{letter-spacing:1007.926367pt;}
.wsd{word-spacing:-46.099136pt;}
.wsc{word-spacing:-40.148166pt;}
.ws98{word-spacing:-37.236369pt;}
.ws21c{word-spacing:-31.031301pt;}
.ws9c{word-spacing:-31.030303pt;}
.ws2bd{word-spacing:-28.644450pt;}
.ws1e7{word-spacing:-28.187414pt;}
.ws10a{word-spacing:-28.095598pt;}
.ws1ab{word-spacing:-26.619676pt;}
.ws22e{word-spacing:-25.859413pt;}
.wsce{word-spacing:-25.313080pt;}
.ws2f1{word-spacing:-25.185558pt;}
.ws72{word-spacing:-25.121797pt;}
.ws274{word-spacing:-25.120400pt;}
.ws144{word-spacing:-25.058036pt;}
.ws299{word-spacing:-24.824370pt;}
.ws1d0{word-spacing:-24.802993pt;}
.ws2fa{word-spacing:-24.739232pt;}
.wsf9{word-spacing:-24.675471pt;}
.ws73{word-spacing:-24.611710pt;}
.ws39{word-spacing:-24.484188pt;}
.wsb2{word-spacing:-24.420427pt;}
.ws194{word-spacing:-24.356666pt;}
.ws6b{word-spacing:-24.292905pt;}
.wscc{word-spacing:-24.165384pt;}
.ws114{word-spacing:-24.101623pt;}
.ws173{word-spacing:-23.974101pt;}
.ws13e{word-spacing:-23.719057pt;}
.ws88{word-spacing:-23.655296pt;}
.ws13b{word-spacing:-23.591535pt;}
.ws13f{word-spacing:-23.527775pt;}
.ws91{word-spacing:-23.489511pt;}
.wsb5{word-spacing:-23.464014pt;}
.wsca{word-spacing:-23.412998pt;}
.ws13a{word-spacing:-23.400253pt;}
.ws13d{word-spacing:-23.272731pt;}
.ws1ad{word-spacing:-23.208970pt;}
.ws1aa{word-spacing:-23.196327pt;}
.ws1ac{word-spacing:-23.195818pt;}
.wsf7{word-spacing:-23.145209pt;}
.ws305{word-spacing:-23.081448pt;}
.ws134{word-spacing:-23.017687pt;}
.ws2fe{word-spacing:-22.953926pt;}
.ws28c{word-spacing:-22.922359pt;}
.ws133{word-spacing:-22.890165pt;}
.ws1d7{word-spacing:-22.826405pt;}
.ws1af{word-spacing:-22.635122pt;}
.ws1ce{word-spacing:-22.507600pt;}
.ws38{word-spacing:-22.443839pt;}
.ws2ff{word-spacing:-22.380078pt;}
.ws15c{word-spacing:-22.316317pt;}
.ws175{word-spacing:-22.188796pt;}
.ws17d{word-spacing:-22.125035pt;}
.ws2ed{word-spacing:-21.933752pt;}
.ws10b{word-spacing:-21.806230pt;}
.ws2f0{word-spacing:-21.742469pt;}
.ws101{word-spacing:-21.721218pt;}
.ws11b{word-spacing:-21.702485pt;}
.ws119{word-spacing:-21.678708pt;}
.wscb{word-spacing:-21.551186pt;}
.ws1b2{word-spacing:-21.423665pt;}
.ws16f{word-spacing:-21.359904pt;}
.ws6c{word-spacing:-21.232382pt;}
.ws2ec{word-spacing:-21.168621pt;}
.ws177{word-spacing:-21.104860pt;}
.wse6{word-spacing:-21.041099pt;}
.ws2fc{word-spacing:-20.977338pt;}
.wsb4{word-spacing:-20.849816pt;}
.ws1bc{word-spacing:-20.775425pt;}
.wsab{word-spacing:-20.722295pt;}
.ws2dc{word-spacing:-20.722291pt;}
.ws307{word-spacing:-20.658534pt;}
.ws174{word-spacing:-20.594773pt;}
.ws19e{word-spacing:-20.562889pt;}
.ws11f{word-spacing:-20.531012pt;}
.wsa7{word-spacing:-20.467251pt;}
.ws54{word-spacing:-20.403490pt;}
.wsac{word-spacing:-20.339729pt;}
.ws131{word-spacing:-20.297219pt;}
.ws1e2{word-spacing:-20.275968pt;}
.ws107{word-spacing:-20.212207pt;}
.ws12f{word-spacing:-20.190950pt;}
.ws13c{word-spacing:-20.148447pt;}
.ws1a2{word-spacing:-20.084686pt;}
.ws1c9{word-spacing:-20.031548pt;}
.ws76{word-spacing:-20.020925pt;}
.wsea{word-spacing:-19.957164pt;}
.ws14f{word-spacing:-19.893403pt;}
.ws5b{word-spacing:-19.765881pt;}
.wse7{word-spacing:-19.739945pt;}
.ws29{word-spacing:-19.702120pt;}
.ws5a{word-spacing:-19.638359pt;}
.wse{word-spacing:-19.574598pt;}
.ws180{word-spacing:-19.529987pt;}
.ws1b{word-spacing:-19.519816pt;}
.wsb{word-spacing:-19.510837pt;}
.ws11d{word-spacing:-19.505137pt;}
.ws1a6{word-spacing:-19.500207pt;}
.ws18{word-spacing:-19.447077pt;}
.ws179{word-spacing:-19.393939pt;}
.ws62{word-spacing:-19.383316pt;}
.ws2fd{word-spacing:-19.255794pt;}
.wsc5{word-spacing:-19.234537pt;}
.wsb6{word-spacing:-19.192033pt;}
.ws1cf{word-spacing:-19.128272pt;}
.wsc1{word-spacing:-19.075135pt;}
.ws15b{word-spacing:-19.064511pt;}
.ws1b1{word-spacing:-19.035818pt;}
.ws12e{word-spacing:-19.022001pt;}
.ws8d{word-spacing:-19.000750pt;}
.ws8e{word-spacing:-18.983092pt;}
.wsd9{word-spacing:-18.936989pt;}
.ws8f{word-spacing:-18.902485pt;}
.ws90{word-spacing:-18.900098pt;}
.ws19{word-spacing:-18.873228pt;}
.ws1ca{word-spacing:-18.862598pt;}
.ws1f{word-spacing:-18.809467pt;}
.ws121{word-spacing:-18.745707pt;}
.wsd1{word-spacing:-18.681946pt;}
.wsd6{word-spacing:-18.635817pt;}
.wsd8{word-spacing:-18.618185pt;}
.wsb7{word-spacing:-18.554424pt;}
.ws1b7{word-spacing:-18.526681pt;}
.ws89{word-spacing:-18.490663pt;}
.ws2d{word-spacing:-18.490660pt;}
.ws17{word-spacing:-18.426902pt;}
.wscf{word-spacing:-18.363141pt;}
.ws44{word-spacing:-18.299380pt;}
.ws30{word-spacing:-18.278124pt;}
.wsfb{word-spacing:-18.235619pt;}
.ws50{word-spacing:-18.171858pt;}
.ws14c{word-spacing:-18.108097pt;}
.ws37{word-spacing:-18.044337pt;}
.ws113{word-spacing:-17.980576pt;}
.ws2e9{word-spacing:-17.959319pt;}
.ws112{word-spacing:-17.916815pt;}
.ws9b{word-spacing:-17.906185pt;}
.ws111{word-spacing:-17.896560pt;}
.ws2db{word-spacing:-17.861817pt;}
.ws1b5{word-spacing:-17.854581pt;}
.ws1b3{word-spacing:-17.853386pt;}
.ws1b4{word-spacing:-17.853054pt;}
.ws1c1{word-spacing:-17.789293pt;}
.ws2f2{word-spacing:-17.725532pt;}
.ws139{word-spacing:-17.661771pt;}
.ws55{word-spacing:-17.598010pt;}
.ws84{word-spacing:-17.534249pt;}
.ws137{word-spacing:-17.470488pt;}
.wsbe{word-spacing:-17.427978pt;}
.ws178{word-spacing:-17.406728pt;}
.ws212{word-spacing:-17.374844pt;}
.wsd0{word-spacing:-17.342967pt;}
.ws189{word-spacing:-17.279206pt;}
.ws81{word-spacing:-17.268576pt;}
.ws210{word-spacing:-17.215442pt;}
.wsc9{word-spacing:-17.162308pt;}
.ws5f{word-spacing:-17.151684pt;}
.wsf{word-spacing:-17.109174pt;}
.ws3a{word-spacing:-17.087923pt;}
.ws11{word-spacing:-17.056040pt;}
.ws1dc{word-spacing:-17.024162pt;}
.ws20f{word-spacing:-17.002906pt;}
.ws32{word-spacing:-16.960401pt;}
.ws116{word-spacing:-16.896640pt;}
.ws1cc{word-spacing:-16.896637pt;}
.ws159{word-spacing:-16.832879pt;}
.wsb8{word-spacing:-16.769118pt;}
.ws2c{word-spacing:-16.705358pt;}
.wse2{word-spacing:-16.641597pt;}
.ws8c{word-spacing:-16.577836pt;}
.ws129{word-spacing:-16.514075pt;}
.ws8b{word-spacing:-16.450314pt;}
.wsc8{word-spacing:-16.418431pt;}
.ws57{word-spacing:-16.386553pt;}
.ws17a{word-spacing:-16.365297pt;}
.ws181{word-spacing:-16.322792pt;}
.ws21a{word-spacing:-16.312687pt;}
.ws31{word-spacing:-16.312163pt;}
.ws218{word-spacing:-16.259551pt;}
.wscd{word-spacing:-16.259031pt;}
.ws82{word-spacing:-16.259028pt;}
.ws8a{word-spacing:-16.195270pt;}
.wsd5{word-spacing:-16.172327pt;}
.ws64{word-spacing:-16.131509pt;}
.ws43{word-spacing:-16.067748pt;}
.ws12c{word-spacing:-16.046492pt;}
.wsa0{word-spacing:-16.003988pt;}
.ws52{word-spacing:-15.940227pt;}
.ws80{word-spacing:-15.940224pt;}
.wsae{word-spacing:-15.887090pt;}
.ws109{word-spacing:-15.876466pt;}
.ws66{word-spacing:-15.812705pt;}
.ws22a{word-spacing:-15.807895pt;}
.ws146{word-spacing:-15.748944pt;}
.ws5d{word-spacing:-15.685183pt;}
.ws7c{word-spacing:-15.674554pt;}
.ws24c{word-spacing:-15.630775pt;}
.ws105{word-spacing:-15.621422pt;}
.ws165{word-spacing:-15.557661pt;}
.ws140{word-spacing:-15.515151pt;}
.ws117{word-spacing:-15.493900pt;}
.ws2e8{word-spacing:-15.462017pt;}
.ws1be{word-spacing:-15.430139pt;}
.ws213{word-spacing:-15.408883pt;}
.wsb1{word-spacing:-15.366379pt;}
.ws14d{word-spacing:-15.302618pt;}
.ws182{word-spacing:-15.302615pt;}
.ws18a{word-spacing:-15.238857pt;}
.wsee{word-spacing:-15.175096pt;}
.ws108{word-spacing:-15.111335pt;}
.ws2bc{word-spacing:-15.057956pt;}
.ws102{word-spacing:-15.047574pt;}
.ws2b9{word-spacing:-15.008907pt;}
.ws1f9{word-spacing:-15.005060pt;}
.ws65{word-spacing:-14.983813pt;}
.ws4a{word-spacing:-14.920052pt;}
.ws214{word-spacing:-14.877542pt;}
.ws19d{word-spacing:-14.856291pt;}
.wsa4{word-spacing:-14.792530pt;}
.ws7b{word-spacing:-14.771274pt;}
.ws1f8{word-spacing:-14.750017pt;}
.ws5e{word-spacing:-14.728769pt;}
.wsa1{word-spacing:-14.665009pt;}
.ws10f{word-spacing:-14.630994pt;}
.ws5c{word-spacing:-14.601248pt;}
.ws17f{word-spacing:-14.537487pt;}
.ws13{word-spacing:-14.473726pt;}
.wsad{word-spacing:-14.452470pt;}
.wsa3{word-spacing:-14.409965pt;}
.wsc0{word-spacing:-14.346202pt;}
.ws18f{word-spacing:-14.293068pt;}
.ws28d{word-spacing:-14.287224pt;}
.ws6d{word-spacing:-14.282443pt;}
.ws250{word-spacing:-14.258101pt;}
.wsc6{word-spacing:-14.239933pt;}
.ws2cb{word-spacing:-14.224125pt;}
.ws300{word-spacing:-14.218682pt;}
.ws100{word-spacing:-14.186799pt;}
.wsef{word-spacing:-14.154921pt;}
.ws2d3{word-spacing:-14.142377pt;}
.ws7f{word-spacing:-14.133665pt;}
.ws24e{word-spacing:-14.125262pt;}
.ws120{word-spacing:-14.091160pt;}
.ws2ea{word-spacing:-14.027399pt;}
.wsa{word-spacing:-13.963639pt;}
.ws1cb{word-spacing:-13.921129pt;}
.wsa6{word-spacing:-13.899878pt;}
.ws17b{word-spacing:-13.836117pt;}
.ws15{word-spacing:-13.772356pt;}
.ws153{word-spacing:-13.708595pt;}
.ws1cd{word-spacing:-13.708593pt;}
.ws2ce{word-spacing:-13.651890pt;}
.ws41{word-spacing:-13.644834pt;}
.ws1ff{word-spacing:-13.644828pt;}
.ws7d{word-spacing:-13.602324pt;}
.ws1c2{word-spacing:-13.581073pt;}
.ws22b{word-spacing:-13.549624pt;}
.ws156{word-spacing:-13.517312pt;}
.ws145{word-spacing:-13.453551pt;}
.ws14b{word-spacing:-13.389790pt;}
.ws289{word-spacing:-13.384460pt;}
.ws233{word-spacing:-13.372505pt;}
.ws190{word-spacing:-13.326029pt;}
.wsbd{word-spacing:-13.283520pt;}
.wsf8{word-spacing:-13.262269pt;}
.ws254{word-spacing:-13.239665pt;}
.ws272{word-spacing:-13.205416pt;}
.ws58{word-spacing:-13.198508pt;}
.ws270{word-spacing:-13.162401pt;}
.ws269{word-spacing:-13.151106pt;}
.ws6a{word-spacing:-13.134747pt;}
.wsbf{word-spacing:-13.124118pt;}
.ws2cd{word-spacing:-13.079655pt;}
.ws5{word-spacing:-13.070986pt;}
.ws26e{word-spacing:-13.062546pt;}
.ws296{word-spacing:-13.049797pt;}
.ws295{word-spacing:-13.007290pt;}
.ws16d{word-spacing:-13.007225pt;}
.ws203{word-spacing:-13.007220pt;}
.ws231{word-spacing:-12.973986pt;}
.ws2d4{word-spacing:-12.957033pt;}
.ws1a1{word-spacing:-12.943464pt;}
.ws251{word-spacing:-12.929707pt;}
.ws118{word-spacing:-12.911581pt;}
.wseb{word-spacing:-12.879703pt;}
.ws26a{word-spacing:-12.841147pt;}
.wsa5{word-spacing:-12.815942pt;}
.ws22d{word-spacing:-12.752587pt;}
.ws16c{word-spacing:-12.752181pt;}
.ws26f{word-spacing:-12.708307pt;}
.wse5{word-spacing:-12.688420pt;}
.ws2cc{word-spacing:-12.670916pt;}
.ws6f{word-spacing:-12.624660pt;}
.ws6e{word-spacing:-12.560899pt;}
.ws2d9{word-spacing:-12.548294pt;}
.ws2f8{word-spacing:-12.529848pt;}
.ws2ee{word-spacing:-12.527890pt;}
.ws2fb{word-spacing:-12.521603pt;}
.ws304{word-spacing:-12.520552pt;}
.ws306{word-spacing:-12.520425pt;}
.ws2f9{word-spacing:-12.520329pt;}
.ws302{word-spacing:-12.519374pt;}
.ws2f5{word-spacing:-12.510142pt;}
.ws2da{word-spacing:-12.507420pt;}
.ws4f{word-spacing:-12.497138pt;}
.ws22c{word-spacing:-12.486908pt;}
.ws12b{word-spacing:-12.486509pt;}
.ws125{word-spacing:-12.433377pt;}
.wse0{word-spacing:-12.387324pt;}
.wsdf{word-spacing:-12.385660pt;}
.ws70{word-spacing:-12.369616pt;}
.ws211{word-spacing:-12.327107pt;}
.ws127{word-spacing:-12.305855pt;}
.ws26d{word-spacing:-12.265509pt;}
.ws1e4{word-spacing:-12.242094pt;}
.ws2e{word-spacing:-12.220838pt;}
.ws1fb{word-spacing:-12.199582pt;}
.ws195{word-spacing:-12.178333pt;}
.ws24f{word-spacing:-12.176950pt;}
.ws2d2{word-spacing:-12.139555pt;}
.ws24{word-spacing:-12.114572pt;}
.ws10{word-spacing:-12.061436pt;}
.ws11e{word-spacing:-12.050811pt;}
.ws28a{word-spacing:-12.010688pt;}
.ws45{word-spacing:-11.987050pt;}
.ws268{word-spacing:-11.955551pt;}
.ws83{word-spacing:-11.923290pt;}
.ws1fa{word-spacing:-11.902031pt;}
.ws2b8{word-spacing:-11.869149pt;}
.ws18c{word-spacing:-11.859529pt;}
.ws192{word-spacing:-11.795768pt;}
.wsff{word-spacing:-11.795766pt;}
.ws2d1{word-spacing:-11.771690pt;}
.ws15a{word-spacing:-11.732007pt;}
.wsc2{word-spacing:-11.689498pt;}
.ws255{word-spacing:-11.645592pt;}
.ws95{word-spacing:-11.604485pt;}
.ws170{word-spacing:-11.540724pt;}
.ws12d{word-spacing:-11.530095pt;}
.ws2cf{word-spacing:-11.526446pt;}
.ws42{word-spacing:-11.476963pt;}
.ws290{word-spacing:-11.461180pt;}
.ws71{word-spacing:-11.413202pt;}
.ws220{word-spacing:-11.371059pt;}
.ws2f{word-spacing:-11.370693pt;}
.wsf6{word-spacing:-11.349441pt;}
.ws1fc{word-spacing:-11.349437pt;}
.ws106{word-spacing:-11.285680pt;}
.wsc4{word-spacing:-11.264425pt;}
.ws18b{word-spacing:-11.221920pt;}
.ws17c{word-spacing:-11.158159pt;}
.ws176{word-spacing:-11.094398pt;}
.ws1f7{word-spacing:-11.051886pt;}
.wsfc{word-spacing:-11.030637pt;}
.ws2b1{word-spacing:-11.015812pt;}
.ws63{word-spacing:-10.966876pt;}
.ws26b{word-spacing:-10.937115pt;}
.ws2b7{word-spacing:-10.899448pt;}
.ws2b2{word-spacing:-10.860659pt;}
.ws235{word-spacing:-10.848555pt;}
.ws11c{word-spacing:-10.839354pt;}
.ws252{word-spacing:-10.804275pt;}
.wsed{word-spacing:-10.786218pt;}
.ws94{word-spacing:-10.775593pt;}
.ws256{word-spacing:-10.759996pt;}
.ws1d1{word-spacing:-10.711832pt;}
.ws234{word-spacing:-10.671436pt;}
.wsb3{word-spacing:-10.648071pt;}
.ws2ae{word-spacing:-10.627931pt;}
.ws7e{word-spacing:-10.626816pt;}
.ws1d9{word-spacing:-10.584311pt;}
.ws26c{word-spacing:-10.538596pt;}
.ws9f{word-spacing:-10.520550pt;}
.ws130{word-spacing:-10.520548pt;}
.ws2d0{word-spacing:-10.504598pt;}
.wsa2{word-spacing:-10.456789pt;}
.ws2ad{word-spacing:-10.395203pt;}
.ws172{word-spacing:-10.393028pt;}
.ws2ac{word-spacing:-10.356415pt;}
.ws1e{word-spacing:-10.329267pt;}
.ws2b0{word-spacing:-10.278838pt;}
.ws253{word-spacing:-10.272918pt;}
.ws28f{word-spacing:-10.205160pt;}
.ws3d{word-spacing:-10.201745pt;}
.wsec{word-spacing:-10.148609pt;}
.ws4d{word-spacing:-10.137984pt;}
.ws198{word-spacing:-10.074223pt;}
.ws2ab{word-spacing:-10.046110pt;}
.wsaf{word-spacing:-10.042341pt;}
.ws199{word-spacing:-10.010462pt;}
.ws22{word-spacing:-9.946701pt;}
.ws1{word-spacing:-9.936000pt;}
.ws12a{word-spacing:-9.882941pt;}
.ws232{word-spacing:-9.830119pt;}
.ws1ba{word-spacing:-9.819180pt;}
.ws7a{word-spacing:-9.776671pt;}
.ws1fe{word-spacing:-9.776668pt;}
.ws1b9{word-spacing:-9.755419pt;}
.ws2af{word-spacing:-9.658229pt;}
.ws16b{word-spacing:-9.627897pt;}
.ws288{word-spacing:-9.577150pt;}
.ws93{word-spacing:-9.564136pt;}
.ws2f6{word-spacing:-9.500375pt;}
.ws193{word-spacing:-9.436614pt;}
.ws1a{word-spacing:-9.372853pt;}
.wsc7{word-spacing:-9.351598pt;}
.ws36{word-spacing:-9.309092pt;}
.ws28e{word-spacing:-9.302396pt;}
.ws1c8{word-spacing:-9.298464pt;}
.ws4{word-spacing:-9.245331pt;}
.ws27a{word-spacing:-9.205078pt;}
.ws25{word-spacing:-9.181571pt;}
.wsc3{word-spacing:-9.139062pt;}
.wsf0{word-spacing:-9.054049pt;}
.ws59{word-spacing:-8.990288pt;}
.ws46{word-spacing:-8.926527pt;}
.ws24d{word-spacing:-8.900243pt;}
.ws2{word-spacing:-8.832000pt;}
.ws92{word-spacing:-8.799005pt;}
.ws2e0{word-spacing:-8.761469pt;}
.ws2e4{word-spacing:-8.673547pt;}
.ws152{word-spacing:-8.607722pt;}
.wsbc{word-spacing:-8.607721pt;}
.ws28{word-spacing:-8.543961pt;}
.ws196{word-spacing:-8.480201pt;}
.ws19b{word-spacing:-8.416440pt;}
.ws61{word-spacing:-8.352679pt;}
.ws67{word-spacing:-8.288918pt;}
.ws155{word-spacing:-8.225157pt;}
.ws9{word-spacing:-8.161396pt;}
.ws1e0{word-spacing:-8.097635pt;}
.ws303{word-spacing:-8.033874pt;}
.ws1fd{word-spacing:-7.948856pt;}
.ws1b8{word-spacing:-7.906352pt;}
.ws27{word-spacing:-7.842592pt;}
.ws135{word-spacing:-7.778831pt;}
.ws96{word-spacing:-7.715070pt;}
.ws9e{word-spacing:-7.651309pt;}
.ws160{word-spacing:-7.587548pt;}
.ws22f{word-spacing:-7.527569pt;}
.ws34{word-spacing:-7.460026pt;}
.ws79{word-spacing:-7.438771pt;}
.ws20{word-spacing:-7.396265pt;}
.wsfd{word-spacing:-7.332504pt;}
.ws164{word-spacing:-7.204982pt;}
.ws1df{word-spacing:-7.141222pt;}
.ws1da{word-spacing:-7.119967pt;}
.ws123{word-spacing:-7.077461pt;}
.wsf4{word-spacing:-7.013700pt;}
.ws168{word-spacing:-6.949939pt;}
.ws158{word-spacing:-6.886178pt;}
.ws2aa{word-spacing:-6.865488pt;}
.ws1de{word-spacing:-6.758656pt;}
.ws33{word-spacing:-6.694895pt;}
.ws103{word-spacing:-6.567373pt;}
.ws2e7{word-spacing:-6.535492pt;}
.ws1c{word-spacing:-6.439852pt;}
.ws2ef{word-spacing:-6.376091pt;}
.ws17e{word-spacing:-6.312330pt;}
.wsb0{word-spacing:-6.004151pt;}
.ws3{word-spacing:-5.929764pt;}
.ws169{word-spacing:-5.802243pt;}
.ws9d{word-spacing:-5.738482pt;}
.ws16{word-spacing:-5.610960pt;}
.ws18d{word-spacing:-5.547199pt;}
.ws104{word-spacing:-5.483438pt;}
.ws16a{word-spacing:-5.419677pt;}
.ws15d{word-spacing:-5.292155pt;}
.ws9a{word-spacing:-5.228394pt;}
.ws1db{word-spacing:-5.164633pt;}
.wsba{word-spacing:-5.037112pt;}
.ws23{word-spacing:-4.973351pt;}
.ws14a{word-spacing:-4.718307pt;}
.ws183{word-spacing:-4.675799pt;}
.ws1d3{word-spacing:-4.654546pt;}
.wsfe{word-spacing:-4.622665pt;}
.ws2eb{word-spacing:-4.527024pt;}
.ws15e{word-spacing:-4.399503pt;}
.ws14{word-spacing:-4.335742pt;}
.ws49{word-spacing:-4.208220pt;}
.ws69{word-spacing:-4.080698pt;}
.ws1a4{word-spacing:-3.953176pt;}
.ws184{word-spacing:-3.889415pt;}
.ws1bd{word-spacing:-3.825654pt;}
.ws171{word-spacing:-3.761893pt;}
.ws60{word-spacing:-3.698133pt;}
.ws1c7{word-spacing:-3.613117pt;}
.ws1bf{word-spacing:-3.570611pt;}
.ws188{word-spacing:-3.506850pt;}
.ws1e6{word-spacing:-3.443089pt;}
.wsaa{word-spacing:-3.251806pt;}
.ws122{word-spacing:-3.124284pt;}
.ws147{word-spacing:-2.933002pt;}
.ws3f{word-spacing:-2.869241pt;}
.ws53{word-spacing:-2.550436pt;}
.ws77{word-spacing:-2.422914pt;}
.ws187{word-spacing:-2.231632pt;}
.ws191{word-spacing:-2.167871pt;}
.ws47{word-spacing:-2.104110pt;}
.ws2f7{word-spacing:-1.849066pt;}
.ws3b{word-spacing:-1.721544pt;}
.wsb9{word-spacing:-1.686485pt;}
.ws2f4{word-spacing:-1.594023pt;}
.ws2f3{word-spacing:-1.530262pt;}
.ws2b{word-spacing:-1.402740pt;}
.ws197{word-spacing:-1.147696pt;}
.ws157{word-spacing:-0.892653pt;}
.ws99{word-spacing:-0.701370pt;}
.ws138{word-spacing:-0.510087pt;}
.ws51{word-spacing:-0.446326pt;}
.ws167{word-spacing:-0.382565pt;}
.ws1c0{word-spacing:-0.255044pt;}
.wsfa{word-spacing:-0.253305pt;}
.ws154{word-spacing:-0.127522pt;}
.ws26{word-spacing:-0.063761pt;}
.ws141{word-spacing:-0.053134pt;}
.ws230{word-spacing:-0.044280pt;}
.wsd4{word-spacing:-0.042507pt;}
.ws2d6{word-spacing:-0.040874pt;}
.ws28b{word-spacing:-0.039251pt;}
.ws2b4{word-spacing:-0.038788pt;}
.ws292{word-spacing:-0.035845pt;}
.ws2a1{word-spacing:-0.028338pt;}
.ws0{word-spacing:0.000000pt;}
.ws186{word-spacing:0.127522pt;}
.wsbb{word-spacing:0.191283pt;}
.ws166{word-spacing:0.318805pt;}
.ws19f{word-spacing:0.382565pt;}
.ws87{word-spacing:0.510087pt;}
.ws1c3{word-spacing:0.573848pt;}
.wsf3{word-spacing:0.637609pt;}
.ws11a{word-spacing:0.728029pt;}
.ws19c{word-spacing:0.892653pt;}
.ws56{word-spacing:0.917517pt;}
.wsa8{word-spacing:1.020175pt;}
.ws126{word-spacing:1.083935pt;}
.ws1dd{word-spacing:1.256029pt;}
.ws1c5{word-spacing:1.298695pt;}
.ws4b{word-spacing:1.594023pt;}
.ws35{word-spacing:1.785305pt;}
.ws2a{word-spacing:1.912827pt;}
.ws21{word-spacing:1.976588pt;}
.ws301{word-spacing:2.295393pt;}
.ws3c{word-spacing:2.486675pt;}
.wsa9{word-spacing:2.614197pt;}
.ws4c{word-spacing:2.677958pt;}
.wsf5{word-spacing:2.996763pt;}
.ws10d{word-spacing:3.251806pt;}
.wsd2{word-spacing:3.570611pt;}
.ws15f{word-spacing:4.016937pt;}
.ws78{word-spacing:4.091324pt;}
.ws75{word-spacing:4.463263pt;}
.ws1a0{word-spacing:4.654546pt;}
.ws1d2{word-spacing:4.845829pt;}
.ws6{word-spacing:4.973351pt;}
.ws40{word-spacing:5.037112pt;}
.ws3e{word-spacing:5.100873pt;}
.ws7{word-spacing:5.419677pt;}
.ws1d4{word-spacing:5.547199pt;}
.ws18e{word-spacing:5.802243pt;}
.ws48{word-spacing:6.121047pt;}
.ws74{word-spacing:6.439852pt;}
.ws1e1{word-spacing:6.631134pt;}
.ws1a5{word-spacing:7.013700pt;}
.ws1d8{word-spacing:7.986695pt;}
.ws128{word-spacing:8.161396pt;}
.ws85{word-spacing:8.225157pt;}
.ws148{word-spacing:9.436614pt;}
.ws149{word-spacing:9.500375pt;}
.ws291{word-spacing:9.893306pt;}
.ws97{word-spacing:9.946701pt;}
.ws1a3{word-spacing:9.981362pt;}
.ws1e5{word-spacing:10.074223pt;}
.ws1d6{word-spacing:10.329267pt;}
.ws1d5{word-spacing:10.456789pt;}
.ws110{word-spacing:10.520550pt;}
.ws1d{word-spacing:10.584311pt;}
.ws1e3{word-spacing:11.221920pt;}
.ws2d5{word-spacing:11.281203pt;}
.ws293{word-spacing:11.727369pt;}
.ws294{word-spacing:11.728108pt;}
.ws68{word-spacing:11.732007pt;}
.ws142{word-spacing:11.751453pt;}
.ws143{word-spacing:11.756786pt;}
.ws236{word-spacing:12.221229pt;}
.ws2b3{word-spacing:12.722487pt;}
.ws2d7{word-spacing:12.921260pt;}
.ws2d8{word-spacing:12.922103pt;}
.wsf2{word-spacing:13.229084pt;}
.ws1a7{word-spacing:13.346695pt;}
.ws8{word-spacing:13.453551pt;}
.ws2b6{word-spacing:13.519966pt;}
.ws2b5{word-spacing:13.525369pt;}
.ws237{word-spacing:14.486852pt;}
.ws238{word-spacing:14.487766pt;}
.ws200{word-spacing:14.665006pt;}
.ws1c4{word-spacing:15.621422pt;}
.wsdc{word-spacing:16.781161pt;}
.ws1a9{word-spacing:16.782078pt;}
.ws10e{word-spacing:16.785897pt;}
.wsdb{word-spacing:16.787586pt;}
.ws258{word-spacing:17.309164pt;}
.ws259{word-spacing:17.310078pt;}
.ws201{word-spacing:17.383666pt;}
.ws202{word-spacing:17.384762pt;}
.ws215{word-spacing:17.427978pt;}
.ws151{word-spacing:17.598010pt;}
.ws257{word-spacing:17.889046pt;}
.ws217{word-spacing:18.760762pt;}
.ws216{word-spacing:18.764999pt;}
.ws1b6{word-spacing:19.324154pt;}
.ws136{word-spacing:19.629559pt;}
.wse8{word-spacing:20.125161pt;}
.ws150{word-spacing:20.321897pt;}
.wsda{word-spacing:20.323411pt;}
.wsde{word-spacing:20.323586pt;}
.wsd3{word-spacing:20.327231pt;}
.wse9{word-spacing:20.328744pt;}
.ws1bb{word-spacing:21.168621pt;}
.wsd7{word-spacing:21.230078pt;}
.ws1a8{word-spacing:21.689941pt;}
.ws23a{word-spacing:22.104488pt;}
.ws163{word-spacing:22.125035pt;}
.ws1b0{word-spacing:22.127274pt;}
.ws14e{word-spacing:22.252556pt;}
.ws124{word-spacing:22.696029pt;}
.ws115{word-spacing:22.935231pt;}
.wse3{word-spacing:23.267586pt;}
.ws86{word-spacing:24.292905pt;}
.ws239{word-spacing:25.080092pt;}
.ws4e{word-spacing:25.695645pt;}
.ws1ae{word-spacing:25.876607pt;}
.ws132{word-spacing:26.518285pt;}
.ws10c{word-spacing:26.527139pt;}
.ws185{word-spacing:26.533027pt;}
.ws1c6{word-spacing:26.776744pt;}
.wse4{word-spacing:27.223827pt;}
.wse1{word-spacing:27.475586pt;}
.ws2c2{word-spacing:27.761573pt;}
.ws16e{word-spacing:31.822570pt;}
.ws1f0{word-spacing:32.730593pt;}
.ws19a{word-spacing:35.824062pt;}
.ws12{word-spacing:38.191762pt;}
.wsdd{word-spacing:38.355177pt;}
.ws2c9{word-spacing:41.397116pt;}
.ws162{word-spacing:41.444589pt;}
.wsf1{word-spacing:42.702887pt;}
.ws161{word-spacing:44.172564pt;}
.ws1f1{word-spacing:44.579493pt;}
.ws24b{word-spacing:45.590507pt;}
.ws2c0{word-spacing:49.686348pt;}
.ws241{word-spacing:54.570455pt;}
.ws2c3{word-spacing:55.081707pt;}
.ws1ed{word-spacing:56.322125pt;}
.ws1ef{word-spacing:62.166874pt;}
.ws2c7{word-spacing:64.351914pt;}
.ws2c5{word-spacing:66.166717pt;}
.ws245{word-spacing:67.333139pt;}
.ws249{word-spacing:69.342205pt;}
.ws2bf{word-spacing:69.649175pt;}
.ws1f3{word-spacing:72.195429pt;}
.ws2c8{word-spacing:76.957434pt;}
.ws2ca{word-spacing:82.352793pt;}
.ws1f4{word-spacing:84.078096pt;}
.ws1f2{word-spacing:85.534096pt;}
.ws1ea{word-spacing:85.864673pt;}
.ws2be{word-spacing:87.156016pt;}
.ws248{word-spacing:89.371709pt;}
.ws2c6{word-spacing:91.394125pt;}
.ws1f6{word-spacing:91.709422pt;}
.ws246{word-spacing:93.049518pt;}
.ws2dd{word-spacing:93.334674pt;}
.ws23c{word-spacing:94.431784pt;}
.ws2c4{word-spacing:96.867154pt;}
.ws1eb{word-spacing:97.854096pt;}
.ws243{word-spacing:98.091988pt;}
.ws242{word-spacing:103.840974pt;}
.ws240{word-spacing:107.501178pt;}
.ws1e9{word-spacing:108.739429pt;}
.ws1ec{word-spacing:108.743666pt;}
.ws2e1{word-spacing:109.898585pt;}
.ws23d{word-spacing:111.185740pt;}
.ws2e5{word-spacing:111.366030pt;}
.ws24a{word-spacing:116.579921pt;}
.ws25b{word-spacing:117.642637pt;}
.ws247{word-spacing:119.725927pt;}
.ws2c1{word-spacing:120.561742pt;}
.ws2e6{word-spacing:121.742885pt;}
.ws244{word-spacing:127.675157pt;}
.ws1ee{word-spacing:133.154004pt;}
.ws23f{word-spacing:137.419826pt;}
.ws2ba{word-spacing:142.388420pt;}
.ws23b{word-spacing:143.200952pt;}
.ws2a9{word-spacing:144.142877pt;}
.ws2bb{word-spacing:145.135148pt;}
.ws23e{word-spacing:153.653766pt;}
.ws29e{word-spacing:158.127839pt;}
.ws1e8{word-spacing:159.721044pt;}
.ws29c{word-spacing:165.269096pt;}
.ws2a5{word-spacing:173.430533pt;}
.ws29a{word-spacing:177.954566pt;}
.ws280{word-spacing:180.359307pt;}
.ws2a0{word-spacing:190.861298pt;}
.ws279{word-spacing:192.317306pt;}
.ws1f5{word-spacing:196.291429pt;}
.ws27e{word-spacing:200.340450pt;}
.ws287{word-spacing:201.823484pt;}
.ws223{word-spacing:204.041430pt;}
.ws277{word-spacing:207.959228pt;}
.ws229{word-spacing:209.886367pt;}
.ws267{word-spacing:212.118070pt;}
.ws283{word-spacing:214.750333pt;}
.ws284{word-spacing:216.927107pt;}
.ws2e3{word-spacing:217.231303pt;}
.ws2df{word-spacing:219.433323pt;}
.ws225{word-spacing:225.831544pt;}
.ws2e2{word-spacing:225.960060pt;}
.ws285{word-spacing:228.191301pt;}
.ws2de{word-spacing:228.250561pt;}
.ws27d{word-spacing:229.073865pt;}
.ws207{word-spacing:229.114153pt;}
.ws21e{word-spacing:233.584929pt;}
.ws25f{word-spacing:235.816632pt;}
.ws262{word-spacing:235.869768pt;}
.ws29d{word-spacing:238.509491pt;}
.ws27f{word-spacing:238.525741pt;}
.ws286{word-spacing:242.515091pt;}
.ws265{word-spacing:242.989964pt;}
.ws221{word-spacing:243.529889pt;}
.ws276{word-spacing:244.309553pt;}
.ws278{word-spacing:246.142650pt;}
.ws209{word-spacing:249.677042pt;}
.ws21b{word-spacing:252.939079pt;}
.ws298{word-spacing:254.824353pt;}
.ws205{word-spacing:257.372999pt;}
.ws297{word-spacing:259.805740pt;}
.ws281{word-spacing:260.160354pt;}
.ws2a3{word-spacing:261.453651pt;}
.ws282{word-spacing:263.740338pt;}
.ws261{word-spacing:264.586204pt;}
.ws29f{word-spacing:268.948799pt;}
.ws263{word-spacing:271.890796pt;}
.ws27b{word-spacing:274.483886pt;}
.ws224{word-spacing:277.793906pt;}
.ws27c{word-spacing:278.067468pt;}
.ws228{word-spacing:280.822646pt;}
.ws271{word-spacing:280.840906pt;}
.ws273{word-spacing:282.100796pt;}
.ws266{word-spacing:283.054349pt;}
.ws20e{word-spacing:283.629719pt;}
.ws206{word-spacing:283.735987pt;}
.ws25d{word-spacing:289.580251pt;}
.ws29b{word-spacing:290.630685pt;}
.ws20c{word-spacing:292.556244pt;}
.ws275{word-spacing:293.299558pt;}
.ws208{word-spacing:305.946033pt;}
.ws21f{word-spacing:307.337405pt;}
.ws219{word-spacing:307.443676pt;}
.ws25c{word-spacing:309.728515pt;}
.ws227{word-spacing:317.301138pt;}
.ws204{word-spacing:332.513073pt;}
.ws20b{word-spacing:333.841425pt;}
.ws260{word-spacing:338.844050pt;}
.ws264{word-spacing:341.075232pt;}
.ws25e{word-spacing:348.257684pt;}
.ws20d{word-spacing:354.563716pt;}
.ws20a{word-spacing:381.237024pt;}
.ws2a2{word-spacing:406.666072pt;}
.ws2a4{word-spacing:612.630518pt;}
.ws25a{word-spacing:652.773170pt;}
.ws226{word-spacing:704.473527pt;}
.ws222{word-spacing:722.171871pt;}
.ws21d{word-spacing:740.992560pt;}
.ws2a6{word-spacing:819.688582pt;}
.ws2a8{word-spacing:956.503397pt;}
.ws2a7{word-spacing:969.218967pt;}
._3{margin-left:-12.475733pt;}
._4{margin-left:-11.264000pt;}
._5{margin-left:-5.932800pt;}
._6{margin-left:-5.040000pt;}
._2{margin-left:-4.010667pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.104000pt;}
._37{width:0.926050pt;}
._8{width:1.817600pt;}
._7{width:3.355200pt;}
._3a{width:4.511492pt;}
._45{width:5.700361pt;}
._da{width:9.541202pt;}
._48{width:11.195755pt;}
._3e{width:12.364705pt;}
._2c{width:13.899878pt;}
._11{width:14.877542pt;}
._3f{width:16.456029pt;}
._36{width:17.406728pt;}
._4a{width:18.374357pt;}
._12{width:19.447073pt;}
._46{width:20.340062pt;}
._1d{width:21.232382pt;}
._28{width:22.443839pt;}
._f{width:23.667905pt;}
._24{width:24.866754pt;}
._a{width:25.823167pt;}
._1a{width:26.975774pt;}
._1f{width:28.054799pt;}
._29{width:29.330017pt;}
._14{width:30.350192pt;}
._e{width:31.242844pt;}
._10{width:32.305521pt;}
._15{width:34.048324pt;}
._13{width:35.068499pt;}
._23{width:36.024912pt;}
._32{width:37.682696pt;}
._22{width:38.575349pt;}
._1c{width:40.296893pt;}
._1b{width:41.954677pt;}
._33{width:43.676221pt;}
._18{width:44.568874pt;}
._34{width:46.035375pt;}
._38{width:47.119310pt;}
._c{width:48.330767pt;}
._26{width:49.797268pt;}
._fe{width:50.689921pt;}
._20{width:51.646334pt;}
._19{width:52.666509pt;}
._2f{width:53.622923pt;}
._9{width:54.515575pt;}
._16{width:55.599511pt;}
._2b{width:56.874729pt;}
._3b{width:58.029152pt;}
._d{width:59.106360pt;}
._17{width:60.126535pt;}
._1e{width:61.784319pt;}
._42{width:63.123298pt;}
._31{width:64.972364pt;}
._30{width:66.630147pt;}
._fd{width:67.650322pt;}
._47{width:68.542975pt;}
._3c{width:69.754432pt;}
._100{width:70.902128pt;}
._35{width:72.432390pt;}
._21{width:73.643847pt;}
._44{width:75.365392pt;}
._2e{width:76.506201pt;}
._41{width:79.191046pt;}
._27{width:80.657547pt;}
._49{width:81.613961pt;}
._39{width:82.761657pt;}
._ff{width:83.718070pt;}
._55{width:85.974513pt;}
._43{width:87.479964pt;}
._56{width:90.381070pt;}
._3d{width:91.812119pt;}
._9c{width:93.529778pt;}
._f8{width:94.860215pt;}
._40{width:95.768882pt;}
._b{width:96.916578pt;}
._a5{width:98.201463pt;}
._58{width:99.254461pt;}
._25{width:100.487189pt;}
._57{width:102.123702pt;}
._b2{width:103.509143pt;}
._9a{width:105.319528pt;}
._b1{width:106.271578pt;}
._dc{width:109.456770pt;}
._f5{width:111.354620pt;}
._4b{width:113.494414pt;}
._65{width:115.407222pt;}
._2a{width:117.575112pt;}
._a6{width:118.762883pt;}
._5e{width:122.952261pt;}
._5d{width:124.280613pt;}
._b0{width:125.400462pt;}
._fc{width:127.266962pt;}
._66{width:128.743876pt;}
._a4{width:129.970140pt;}
._a3{width:134.327275pt;}
._6f{width:136.607720pt;}
._a7{width:137.940509pt;}
._af{width:140.847443pt;}
._a1{width:146.814186pt;}
._54{width:147.925279pt;}
._a8{width:149.099024pt;}
._53{width:152.335407pt;}
._9b{width:153.356412pt;}
._2d{width:154.925408pt;}
._69{width:158.286424pt;}
._8b{width:159.726182pt;}
._6b{width:161.102531pt;}
._a2{width:166.101714pt;}
._59{width:167.053548pt;}
._c5{width:170.767100pt;}
._f4{width:174.662474pt;}
._4f{width:176.033207pt;}
._ab{width:177.207857pt;}
._9d{width:179.970918pt;}
._ac{width:184.646867pt;}
._61{width:186.341219pt;}
._51{width:187.828973pt;}
._82{width:189.263593pt;}
._ef{width:194.509917pt;}
._aa{width:195.651483pt;}
._e9{width:198.567158pt;}
._62{width:199.677873pt;}
._ae{width:201.662118pt;}
._a0{width:203.828887pt;}
._81{width:208.498130pt;}
._99{width:210.152672pt;}
._5a{width:212.961393pt;}
._e8{width:215.566719pt;}
._bb{width:216.847781pt;}
._ee{width:218.063391pt;}
._cd{width:221.509847pt;}
._9f{width:222.957771pt;}
._5b{width:226.351181pt;}
._5f{width:229.167287pt;}
._e5{width:230.944801pt;}
._67{width:234.958902pt;}
._ad{width:236.241719pt;}
._9e{width:238.745143pt;}
._97{width:242.154025pt;}
._ce{width:243.633464pt;}
._93{width:244.584038pt;}
._c9{width:245.500619pt;}
._c7{width:246.644471pt;}
._d4{width:248.423664pt;}
._8d{width:253.457714pt;}
._ea{width:254.662335pt;}
._ca{width:255.591463pt;}
._d8{width:258.000268pt;}
._e3{width:259.338158pt;}
._c4{width:261.109894pt;}
._6a{width:264.554584pt;}
._e0{width:266.479415pt;}
._cb{width:267.635490pt;}
._cc{width:271.205684pt;}
._d2{width:272.367072pt;}
._d7{width:274.818892pt;}
._d3{width:275.937266pt;}
._b8{width:281.088325pt;}
._ed{width:283.231692pt;}
._d0{width:284.377148pt;}
._c3{width:286.986397pt;}
._c6{width:288.829002pt;}
._c8{width:291.551487pt;}
._f0{width:292.834055pt;}
._7c{width:295.319217pt;}
._d9{width:296.240055pt;}
._ec{width:301.335552pt;}
._b5{width:304.414936pt;}
._63{width:305.946033pt;}
._e7{width:307.924212pt;}
._74{width:308.815273pt;}
._b6{width:310.684959pt;}
._72{width:311.843916pt;}
._96{width:313.341749pt;}
._98{width:314.670144pt;}
._87{width:317.741798pt;}
._d5{width:320.921379pt;}
._d6{width:323.812274pt;}
._71{width:324.968033pt;}
._84{width:326.190117pt;}
._73{width:328.102944pt;}
._7b{width:329.378162pt;}
._5c{width:332.619341pt;}
._88{width:333.894559pt;}
._79{width:335.488581pt;}
._be{width:337.731076pt;}
._8c{width:339.909643pt;}
._7f{width:344.149436pt;}
._7d{width:347.231213pt;}
._7a{width:348.559565pt;}
._b7{width:350.536801pt;}
._70{width:354.639665pt;}
._90{width:356.116059pt;}
._64{width:358.070565pt;}
._dd{width:361.058566pt;}
._7e{width:363.490241pt;}
._bc{width:369.771957pt;}
._c0{width:381.568102pt;}
._de{width:382.737383pt;}
._b3{width:384.543706pt;}
._78{width:385.594019pt;}
._76{width:388.675795pt;}
._ba{width:397.679764pt;}
._d1{width:399.560602pt;}
._52{width:403.819008pt;}
._77{width:404.881690pt;}
._bd{width:409.623799pt;}
._bf{width:410.527107pt;}
._6e{width:412.214193pt;}
._6c{width:415.295969pt;}
._c1{width:421.419944pt;}
._b4{width:424.395548pt;}
._6d{width:431.501864pt;}
._4c{width:442.500618pt;}
._db{width:451.939643pt;}
._75{width:478.738061pt;}
._df{width:479.909490pt;}
._f6{width:482.639356pt;}
._a9{width:486.351878pt;}
._c2{width:493.259531pt;}
._e6{width:506.051593pt;}
._60{width:508.758816pt;}
._cf{width:521.506378pt;}
._e4{width:526.619582pt;}
._e2{width:528.878112pt;}
._f7{width:539.192525pt;}
._f2{width:550.283101pt;}
._fa{width:563.667833pt;}
._f3{width:577.303376pt;}
._83{width:582.296383pt;}
._fb{width:591.240987pt;}
._95{width:592.995407pt;}
._80{width:601.530920pt;}
._68{width:604.697373pt;}
._eb{width:612.957914pt;}
._4e{width:624.272306pt;}
._50{width:636.121206pt;}
._b9{width:643.952629pt;}
._e1{width:661.203908pt;}
._91{width:713.719920pt;}
._f9{width:716.356483pt;}
._8e{width:743.263419pt;}
._89{width:754.875875pt;}
._86{width:756.576165pt;}
._4d{width:786.650054pt;}
._8a{width:858.487331pt;}
._85{width:907.264416pt;}
._f1{width:1003.100336pt;}
._94{width:1123.875077pt;}
._92{width:1129.613742pt;}
._8f{width:1144.385492pt;}
.fs1a{font-size:25.091726pt;}
.fs1d{font-size:28.338311pt;}
.fs22{font-size:28.611754pt;}
.fs18{font-size:28.676243pt;}
.fs16{font-size:30.995881pt;}
.fs27{font-size:31.198826pt;}
.fs28{font-size:31.199809pt;}
.fs24{font-size:31.515081pt;}
.fs25{font-size:31.516074pt;}
.fs12{font-size:31.880427pt;}
.fs20{font-size:32.699130pt;}
.fs29{font-size:34.319611pt;}
.fs26{font-size:34.667500pt;}
.fs14{font-size:35.423845pt;}
.fs1b{font-size:35.845313pt;}
.fs10{font-size:37.193867pt;}
.fs4{font-size:37.333333pt;}
.fs1e{font-size:38.788069pt;}
.fs19{font-size:39.250615pt;}
.fs21{font-size:40.873922pt;}
.fsf{font-size:42.507253pt;}
.fs1c{font-size:42.507484pt;}
.fsb{font-size:42.666667pt;}
.fs17{font-size:43.014383pt;}
.fs15{font-size:44.279817pt;}
.fs6{font-size:48.000000pt;}
.fs1f{font-size:49.048715pt;}
.fsd{font-size:53.134080pt;}
.fs13{font-size:53.135789pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs23{font-size:58.181813pt;}
.fs5{font-size:61.333333pt;}
.fsc{font-size:63.760907pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs11{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fse{font-size:91.815680pt;}
.fs9{font-size:96.000000pt;}
.fs8{font-size:138.666667pt;}
.fs7{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y2f1{bottom:11.219396pt;}
.y2ea{bottom:11.333124pt;}
.y2f0{bottom:19.799537pt;}
.y2e9{bottom:20.000240pt;}
.y2ee{bottom:29.792404pt;}
.y24{bottom:36.000000pt;}
.y2e7{bottom:43.968982pt;}
.y20{bottom:47.395867pt;}
.y23{bottom:50.666667pt;}
.yb8{bottom:56.149333pt;}
.y22{bottom:65.333333pt;}
.y20b{bottom:79.801333pt;}
.y21{bottom:80.000000pt;}
.y2ef{bottom:82.219800pt;}
.y2e8{bottom:83.053242pt;}
.y4{bottom:86.333337pt;}
.y20a{bottom:95.741333pt;}
.y73{bottom:96.000000pt;}
.y10b{bottom:100.820000pt;}
.y1c7{bottom:103.050667pt;}
.yb7{bottom:107.456000pt;}
.y181{bottom:109.030667pt;}
.y31d{bottom:110.686667pt;}
.y209{bottom:111.682667pt;}
.y72{bottom:111.940000pt;}
.y341{bottom:111.982667pt;}
.y10a{bottom:112.285333pt;}
.yd6{bottom:116.761333pt;}
.y13c{bottom:116.858667pt;}
.y1f{bottom:123.790666pt;}
.y1c6{bottom:126.953333pt;}
.y208{bottom:127.622667pt;}
.y71{bottom:127.880000pt;}
.yd5{bottom:128.112000pt;}
.y109{bottom:128.226667pt;}
.yb6{bottom:131.358667pt;}
.yd0{bottom:132.701333pt;}
.y180{bottom:132.933333pt;}
.y121{bottom:133.046667pt;}
.y31c{bottom:133.800000pt;}
.y340{bottom:135.096000pt;}
.y1a5{bottom:139.601333pt;}
.y114{bottom:140.225333pt;}
.y13b{bottom:140.761333pt;}
.y1bf{bottom:140.892000pt;}
.y207{bottom:143.562667pt;}
.y70{bottom:143.820000pt;}
.y108{bottom:144.166667pt;}
.y120{bottom:144.512000pt;}
.y113{bottom:144.598667pt;}
.y16b{bottom:148.641333pt;}
.yd4{bottom:148.873333pt;}
.y18a{bottom:150.856000pt;}
.yb5{bottom:155.261333pt;}
.y17f{bottom:156.836000pt;}
.y31b{bottom:156.913333pt;}
.y33f{bottom:158.209333pt;}
.y206{bottom:159.502667pt;}
.ye4{bottom:159.761333pt;}
.y1af{bottom:160.106667pt;}
.ycf{bottom:160.258667pt;}
.yd3{bottom:160.338667pt;}
.y11f{bottom:160.452000pt;}
.y1a4{bottom:163.504000pt;}
.y93{bottom:164.581333pt;}
.y13a{bottom:164.664000pt;}
.y1be{bottom:164.794667pt;}
.y107{bottom:164.926667pt;}
.y158{bottom:167.178667pt;}
.y112{bottom:168.501333pt;}
.y189{bottom:174.760000pt;}
.y16{bottom:175.052000pt;}
.y205{bottom:175.442667pt;}
.ye3{bottom:175.701333pt;}
.ybf{bottom:176.046667pt;}
.y17d{bottom:176.089333pt;}
.yd2{bottom:176.278667pt;}
.y17e{bottom:176.593333pt;}
.yb4{bottom:179.164000pt;}
.y31a{bottom:180.026667pt;}
.y17c{bottom:180.738667pt;}
.y11e{bottom:181.213333pt;}
.y33e{bottom:181.322667pt;}
.y16a{bottom:182.313333pt;}
.yce{bottom:184.162667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y1a3{bottom:187.406667pt;}
.y139{bottom:188.566667pt;}
.y1bd{bottom:188.697333pt;}
.y157{bottom:191.081333pt;}
.y204{bottom:191.382667pt;}
.y105{bottom:191.569333pt;}
.ye2{bottom:191.641333pt;}
.ybe{bottom:191.986667pt;}
.y111{bottom:192.404000pt;}
.y11d{bottom:192.678667pt;}
.y1ae{bottom:196.808000pt;}
.yd1{bottom:197.040000pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y188{bottom:198.662667pt;}
.y92{bottom:201.722667pt;}
.yb3{bottom:203.068000pt;}
.y319{bottom:203.140000pt;}
.y33d{bottom:204.436000pt;}
.y17b{bottom:204.642667pt;}
.y169{bottom:206.217333pt;}
.y203{bottom:207.324000pt;}
.ye1{bottom:207.581333pt;}
.ybd{bottom:207.926667pt;}
.ycd{bottom:208.065333pt;}
.y1ad{bottom:208.273333pt;}
.y11c{bottom:208.618667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y2f2{bottom:208.819070pt;}
.y2eb{bottom:210.935817pt;}
.y1a2{bottom:211.309333pt;}
.y138{bottom:212.470667pt;}
.y1bc{bottom:212.601333pt;}
.y156{bottom:214.984000pt;}
.y104{bottom:215.472000pt;}
.y110{bottom:216.308000pt;}
.y1ed{bottom:216.893333pt;}
.y187{bottom:222.565333pt;}
.y202{bottom:223.264000pt;}
.ye0{bottom:223.521333pt;}
.ybc{bottom:223.868000pt;}
.y1ac{bottom:224.213333pt;}
.y11b{bottom:224.558667pt;}
.y91{bottom:225.625333pt;}
.y318{bottom:226.253333pt;}
.yb2{bottom:226.970667pt;}
.y33c{bottom:227.549333pt;}
.y17a{bottom:228.545333pt;}
.y168{bottom:230.120000pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.ycc{bottom:231.968000pt;}
.y1ec{bottom:234.332000pt;}
.y1a1{bottom:235.213333pt;}
.y137{bottom:236.373333pt;}
.y1bb{bottom:236.504000pt;}
.y155{bottom:238.886667pt;}
.y201{bottom:239.204000pt;}
.y103{bottom:239.376000pt;}
.ybb{bottom:239.808000pt;}
.y1ab{bottom:240.153333pt;}
.y10f{bottom:240.210667pt;}
.y1eb{bottom:242.132000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y11a{bottom:245.320000pt;}
.y186{bottom:246.468000pt;}
.y18b{bottom:246.678667pt;}
.ydf{bottom:247.432000pt;}
.y317{bottom:249.366667pt;}
.y90{bottom:249.528000pt;}
.y33b{bottom:250.662667pt;}
.yb1{bottom:250.873333pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y167{bottom:254.022667pt;}
.y1ea{bottom:254.750667pt;}
.y200{bottom:255.144000pt;}
.yba{bottom:255.748000pt;}
.ycb{bottom:255.870667pt;}
.y1aa{bottom:256.093333pt;}
.y119{bottom:256.785333pt;}
.y1a0{bottom:259.116000pt;}
.y136{bottom:260.276000pt;}
.y1ba{bottom:260.406667pt;}
.y102{bottom:263.278667pt;}
.yde{bottom:263.372000pt;}
.y1e9{bottom:267.370667pt;}
.y185{bottom:270.372000pt;}
.y1a9{bottom:272.033333pt;}
.y316{bottom:272.480000pt;}
.y118{bottom:272.725333pt;}
.y8f{bottom:273.432000pt;}
.y33a{bottom:273.776000pt;}
.yb0{bottom:274.776000pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.yb9{bottom:276.508000pt;}
.y166{bottom:277.925333pt;}
.ydd{bottom:279.312000pt;}
.yca{bottom:279.774667pt;}
.y1ff{bottom:279.860000pt;}
.y10e{bottom:279.954667pt;}
.y1e8{bottom:279.989333pt;}
.y19f{bottom:283.018667pt;}
.y10d{bottom:283.894667pt;}
.y135{bottom:284.178667pt;}
.y1b9{bottom:284.309333pt;}
.y154{bottom:285.118667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y101{bottom:287.181333pt;}
.y1a8{bottom:287.973333pt;}
.y117{bottom:288.665333pt;}
.y1e7{bottom:292.609333pt;}
.y295{bottom:292.993840pt;}
.y184{bottom:294.274667pt;}
.ydc{bottom:295.253333pt;}
.y315{bottom:295.593333pt;}
.y1fe{bottom:295.800000pt;}
.y339{bottom:296.888000pt;}
.y8e{bottom:297.334667pt;}
.yaf{bottom:298.680000pt;}
.y179{bottom:300.254667pt;}
.y258{bottom:300.662909pt;}
.y165{bottom:301.829333pt;}
.y3e{bottom:303.600133pt;}
.yc9{bottom:303.677333pt;}
.y116{bottom:304.605333pt;}
.y294{bottom:305.181075pt;}
.y1e6{bottom:305.228000pt;}
.y19e{bottom:306.921333pt;}
.y134{bottom:308.082667pt;}
.y1b8{bottom:308.213333pt;}
.y1a7{bottom:308.734667pt;}
.y153{bottom:309.021333pt;}
.yd{bottom:309.452000pt;}
.y100{bottom:311.084000pt;}
.ydb{bottom:311.193333pt;}
.y1fd{bottom:311.741333pt;}
.y2f9{bottom:313.633333pt;}
.y257{bottom:313.946668pt;}
.y231{bottom:315.501320pt;}
.y293{bottom:317.368310pt;}
.y2e4{bottom:317.826667pt;}
.y1e5{bottom:317.848000pt;}
.y3d{bottom:318.000133pt;}
.y183{bottom:318.177333pt;}
.y314{bottom:318.706667pt;}
.y338{bottom:320.001333pt;}
.y8d{bottom:321.237333pt;}
.yae{bottom:322.582667pt;}
.y178{bottom:324.157333pt;}
.y115{bottom:325.366667pt;}
.y164{bottom:325.732000pt;}
.y2db{bottom:325.976224pt;}
.y19d{bottom:326.884000pt;}
.yda{bottom:327.133333pt;}
.y256{bottom:327.231537pt;}
.yc8{bottom:327.580000pt;}
.y230{bottom:328.785079pt;}
.y292{bottom:329.556445pt;}
.y2f8{bottom:329.573333pt;}
.y1e4{bottom:330.466667pt;}
.y19c{bottom:330.825333pt;}
.y133{bottom:331.985333pt;}
.y1b7{bottom:332.116000pt;}
.y3c{bottom:332.400133pt;}
.y152{bottom:332.924000pt;}
.y2e3{bottom:333.766667pt;}
.yff{bottom:334.988000pt;}
.y2da{bottom:338.238229pt;}
.y255{bottom:340.515296pt;}
.y291{bottom:341.743680pt;}
.y313{bottom:341.818667pt;}
.y22f{bottom:342.069948pt;}
.y1c5{bottom:342.080000pt;}
.yd9{bottom:343.073333pt;}
.y1e3{bottom:343.086667pt;}
.y337{bottom:343.114667pt;}
.y1fc{bottom:343.289333pt;}
.yc{bottom:343.809333pt;}
.y8c{bottom:345.140000pt;}
.y2f7{bottom:345.513333pt;}
.yad{bottom:346.485333pt;}
.y3b{bottom:346.800133pt;}
.y177{bottom:348.060000pt;}
.y163{bottom:349.634667pt;}
.y2e2{bottom:349.706667pt;}
.y2d9{bottom:350.500233pt;}
.yc7{bottom:351.482667pt;}
.y254{bottom:353.799054pt;}
.y290{bottom:353.930915pt;}
.y19b{bottom:354.728000pt;}
.y22e{bottom:355.353707pt;}
.y1e2{bottom:355.705333pt;}
.y132{bottom:355.888000pt;}
.y1b6{bottom:356.018667pt;}
.y151{bottom:356.826667pt;}
.y182{bottom:357.881333pt;}
.yd8{bottom:359.013333pt;}
.y1fb{bottom:359.229333pt;}
.y3a{bottom:361.200133pt;}
.y2f6{bottom:361.453333pt;}
.yb{bottom:362.706666pt;}
.y2d8{bottom:362.762237pt;}
.y2b8{bottom:364.305830pt;}
.y312{bottom:364.932000pt;}
.y2e1{bottom:365.646667pt;}
.y1c4{bottom:365.982667pt;}
.y28f{bottom:366.118150pt;}
.y336{bottom:366.228000pt;}
.y253{bottom:367.082812pt;}
.y22d{bottom:368.637465pt;}
.y8b{bottom:369.044000pt;}
.yac{bottom:370.388000pt;}
.yfc{bottom:370.625333pt;}
.y29{bottom:371.466933pt;}
.y176{bottom:371.962667pt;}
.y162{bottom:373.537333pt;}
.yd7{bottom:374.953333pt;}
.y2d7{bottom:375.024242pt;}
.y1fa{bottom:375.169333pt;}
.yc6{bottom:375.385333pt;}
.y39{bottom:375.600133pt;}
.y2b7{bottom:376.349446pt;}
.y2b{bottom:376.365467pt;}
.yfe{bottom:376.585333pt;}
.y1e1{bottom:377.101333pt;}
.y2f5{bottom:377.393333pt;}
.y28e{bottom:378.305386pt;}
.y19a{bottom:378.630667pt;}
.y131{bottom:379.790667pt;}
.y1b5{bottom:379.921333pt;}
.y252{bottom:380.366571pt;}
.y150{bottom:380.730667pt;}
.y2e0{bottom:381.586667pt;}
.y22c{bottom:381.921224pt;}
.y279{bottom:383.166625pt;}
.y2d6{bottom:387.286246pt;}
.y311{bottom:388.045333pt;}
.y2b6{bottom:388.393061pt;}
.y335{bottom:389.341333pt;}
.yfb{bottom:389.428000pt;}
.y1c3{bottom:389.886667pt;}
.y38{bottom:390.000133pt;}
.y28d{bottom:390.493520pt;}
.y8a{bottom:392.946667pt;}
.y1e0{bottom:393.041333pt;}
.y2f4{bottom:393.334667pt;}
.y251{bottom:393.650329pt;}
.yab{bottom:394.290667pt;}
.y22b{bottom:395.204982pt;}
.y175{bottom:395.865333pt;}
.y278{bottom:396.450384pt;}
.y161{bottom:397.441333pt;}
.y2df{bottom:397.526667pt;}
.y2d5{bottom:399.549276pt;}
.yfd{bottom:400.212000pt;}
.y2b5{bottom:400.436677pt;}
.y199{bottom:402.533333pt;}
.y28c{bottom:402.680755pt;}
.y130{bottom:403.693333pt;}
.y1b4{bottom:403.825333pt;}
.y37{bottom:404.400133pt;}
.y14f{bottom:404.633333pt;}
.y250{bottom:406.935199pt;}
.y1f9{bottom:407.049333pt;}
.y22a{bottom:408.488740pt;}
.y1df{bottom:408.981333pt;}
.yc5{bottom:409.594667pt;}
.y277{bottom:409.734142pt;}
.y310{bottom:411.158667pt;}
.y2d4{bottom:411.811281pt;}
.y334{bottom:412.454667pt;}
.y2b4{bottom:412.480293pt;}
.y1c2{bottom:413.789333pt;}
.y28{bottom:416.800267pt;}
.y89{bottom:416.849333pt;}
.y20c{bottom:416.865333pt;}
.yaa{bottom:418.194667pt;}
.y2a{bottom:418.200133pt;}
.y174{bottom:419.769333pt;}
.y24f{bottom:420.218957pt;}
.y160{bottom:421.344000pt;}
.y28b{bottom:421.460377pt;}
.y229{bottom:421.773610pt;}
.y198{bottom:422.496000pt;}
.y276{bottom:423.017900pt;}
.y2d3{bottom:424.073285pt;}
.y2b3{bottom:424.524798pt;}
.y197{bottom:426.436000pt;}
.y12f{bottom:427.597333pt;}
.y1b3{bottom:427.728000pt;}
.y14e{bottom:428.536000pt;}
.y2f3{bottom:429.649333pt;}
.y1f8{bottom:430.664000pt;}
.y24e{bottom:433.502716pt;}
.y2de{bottom:433.842667pt;}
.y30f{bottom:434.272000pt;}
.y28a{bottom:434.454458pt;}
.y228{bottom:435.057368pt;}
.y333{bottom:435.568000pt;}
.y275{bottom:436.301659pt;}
.y2d2{bottom:436.335290pt;}
.y2b2{bottom:436.568413pt;}
.y1c1{bottom:437.692000pt;}
.y1de{bottom:437.966667pt;}
.y48{bottom:438.400133pt;}
.yfa{bottom:439.086667pt;}
.y88{bottom:440.752000pt;}
.ya9{bottom:442.097333pt;}
.y173{bottom:443.672000pt;}
.y196{bottom:446.398667pt;}
.y1f7{bottom:446.604000pt;}
.y24d{bottom:446.786474pt;}
.y289{bottom:447.448539pt;}
.y227{bottom:448.341127pt;}
.y2d1{bottom:448.597294pt;}
.y2b1{bottom:448.612029pt;}
.y2ed{bottom:448.910667pt;}
.y274{bottom:449.586528pt;}
.y195{bottom:450.340000pt;}
.y12e{bottom:451.500000pt;}
.y1b2{bottom:451.630667pt;}
.y14d{bottom:452.438667pt;}
.y1dd{bottom:453.906667pt;}
.y47{bottom:454.400133pt;}
.y30e{bottom:457.385333pt;}
.y332{bottom:458.681333pt;}
.y24c{bottom:460.070232pt;}
.y288{bottom:460.442619pt;}
.y2b0{bottom:460.655645pt;}
.y2d0{bottom:460.859298pt;}
.yc4{bottom:461.594667pt;}
.y226{bottom:461.624885pt;}
.y273{bottom:462.870287pt;}
.yf9{bottom:462.990667pt;}
.ya{bottom:462.990669pt;}
.y87{bottom:464.656000pt;}
.ya8{bottom:466.000000pt;}
.y63{bottom:466.684400pt;}
.y15f{bottom:467.574667pt;}
.y1dc{bottom:469.848000pt;}
.y46{bottom:470.400133pt;}
.y2af{bottom:472.699261pt;}
.y2cf{bottom:473.122328pt;}
.y24b{bottom:473.353991pt;}
.y194{bottom:474.242667pt;}
.y12d{bottom:475.402667pt;}
.y1b1{bottom:475.533333pt;}
.y272{bottom:476.154045pt;}
.y14c{bottom:476.342667pt;}
.y9{bottom:478.990666pt;}
.y30d{bottom:480.498667pt;}
.y331{bottom:481.794667pt;}
.y287{bottom:482.236443pt;}
.y225{bottom:483.053349pt;}
.y2ae{bottom:484.743765pt;}
.yc3{bottom:485.498667pt;}
.y45{bottom:486.400133pt;}
.y24a{bottom:486.638860pt;}
.yf8{bottom:486.893333pt;}
.y86{bottom:488.558667pt;}
.y271{bottom:489.437804pt;}
.ya7{bottom:489.902667pt;}
.y42{bottom:489.994933pt;}
.y62{bottom:491.356400pt;}
.y15e{bottom:491.477333pt;}
.y2ce{bottom:492.901542pt;}
.y1db{bottom:493.774667pt;}
.y8{bottom:494.990666pt;}
.y286{bottom:495.230524pt;}
.y193{bottom:498.145333pt;}
.y1f6{bottom:498.418667pt;}
.y224{bottom:499.103862pt;}
.y12c{bottom:499.305333pt;}
.y249{bottom:499.922619pt;}
.y14b{bottom:500.245333pt;}
.y44{bottom:502.400133pt;}
.y270{bottom:502.721562pt;}
.y2ad{bottom:503.302080pt;}
.y30c{bottom:503.612000pt;}
.y61{bottom:504.689733pt;}
.y330{bottom:504.908000pt;}
.y2cd{bottom:507.718515pt;}
.y285{bottom:508.224605pt;}
.yc2{bottom:509.401333pt;}
.y1b0{bottom:509.741333pt;}
.yf7{bottom:510.796000pt;}
.y85{bottom:512.461333pt;}
.y248{bottom:513.206377pt;}
.ya6{bottom:513.806667pt;}
.y1f5{bottom:514.360000pt;}
.y223{bottom:515.155487pt;}
.y15d{bottom:515.381333pt;}
.y26f{bottom:516.005320pt;}
.y2ac{bottom:516.143033pt;}
.y41{bottom:517.333467pt;}
.y1da{bottom:517.389333pt;}
.y60{bottom:518.023067pt;}
.y43{bottom:518.400133pt;}
.y284{bottom:521.218685pt;}
.y192{bottom:522.048000pt;}
.y2cc{bottom:522.535488pt;}
.y12b{bottom:523.209333pt;}
.y14a{bottom:524.148000pt;}
.y1c0{bottom:525.202667pt;}
.y30b{bottom:526.725333pt;}
.y32f{bottom:528.021333pt;}
.y2ab{bottom:528.983986pt;}
.y26e{bottom:529.290190pt;}
.y1f4{bottom:530.300000pt;}
.y222{bottom:531.207112pt;}
.yc1{bottom:533.304000pt;}
.y1d9{bottom:533.329333pt;}
.y247{bottom:534.633729pt;}
.y84{bottom:536.364000pt;}
.ya5{bottom:537.709333pt;}
.y15c{bottom:539.284000pt;}
.y283{bottom:539.477501pt;}
.y27{bottom:540.453600pt;}
.y5f{bottom:542.694933pt;}
.y191{bottom:545.952000pt;}
.yf6{bottom:546.017333pt;}
.y12a{bottom:547.112000pt;}
.y2cb{bottom:547.386689pt;}
.y149{bottom:548.050667pt;}
.y296{bottom:548.473333pt;}
.y10c{bottom:549.105333pt;}
.y1d8{bottom:549.269333pt;}
.y30a{bottom:549.838667pt;}
.y2aa{bottom:550.520983pt;}
.y246{bottom:550.685354pt;}
.y26d{bottom:550.717542pt;}
.y32e{bottom:551.134667pt;}
.y282{bottom:552.470682pt;}
.y5e{bottom:556.028267pt;}
.y221{bottom:558.130195pt;}
.y1f3{bottom:559.285333pt;}
.y83{bottom:560.266667pt;}
.ya4{bottom:561.612000pt;}
.y2ca{bottom:562.203662pt;}
.y15b{bottom:563.186667pt;}
.y2a9{bottom:563.361936pt;}
.yf3{bottom:564.821333pt;}
.y281{bottom:565.464762pt;}
.y245{bottom:566.736979pt;}
.y26c{bottom:566.769167pt;}
.y5d{bottom:569.361600pt;}
.y190{bottom:569.854667pt;}
.y129{bottom:571.014667pt;}
.y148{bottom:571.953333pt;}
.y309{bottom:572.952000pt;}
.yc0{bottom:573.008000pt;}
.y7{bottom:573.786667pt;}
.y220{bottom:574.181820pt;}
.y32d{bottom:574.248000pt;}
.y1f2{bottom:575.225333pt;}
.y2c9{bottom:577.020635pt;}
.y280{bottom:578.458843pt;}
.yf5{bottom:579.964000pt;}
.y1d7{bottom:581.149333pt;}
.y2a8{bottom:581.405582pt;}
.y244{bottom:582.788604pt;}
.y26b{bottom:582.820792pt;}
.y26{bottom:583.120267pt;}
.y82{bottom:584.170667pt;}
.yf4{bottom:584.746667pt;}
.ya3{bottom:585.514667pt;}
.y15a{bottom:587.089333pt;}
.y1f1{bottom:591.165333pt;}
.y2c8{bottom:591.837609pt;}
.y6{bottom:592.685334pt;}
.y18f{bottom:593.757333pt;}
.y5c{bottom:594.033467pt;}
.y2a7{bottom:594.246535pt;}
.y128{bottom:594.917333pt;}
.y147{bottom:595.857333pt;}
.y308{bottom:596.065333pt;}
.y27f{bottom:596.717658pt;}
.y21f{bottom:596.735875pt;}
.y1d6{bottom:597.090667pt;}
.y32c{bottom:597.361333pt;}
.y243{bottom:598.840228pt;}
.y26a{bottom:598.871305pt;}
.y40{bottom:600.230667pt;}
.y5b{bottom:607.366800pt;}
.y81{bottom:608.073333pt;}
.ya2{bottom:609.418667pt;}
.y27e{bottom:609.711739pt;}
.y159{bottom:610.993333pt;}
.y2a6{bottom:612.290181pt;}
.y21e{bottom:612.787500pt;}
.y1d5{bottom:613.030667pt;}
.y269{bottom:614.922930pt;}
.y2c7{bottom:615.369785pt;}
.y18e{bottom:617.660000pt;}
.yf2{bottom:618.185333pt;}
.y127{bottom:618.821333pt;}
.y307{bottom:619.178667pt;}
.y146{bottom:619.760000pt;}
.y32b{bottom:620.474667pt;}
.y5a{bottom:620.700133pt;}
.y27d{bottom:622.705820pt;}
.y2a5{bottom:625.130245pt;}
.y242{bottom:625.762201pt;}
.y21d{bottom:628.839125pt;}
.y1d4{bottom:628.970667pt;}
.y268{bottom:630.974555pt;}
.y1f0{bottom:631.033333pt;}
.y80{bottom:631.976000pt;}
.ya1{bottom:633.321333pt;}
.y59{bottom:634.033467pt;}
.y172{bottom:634.896000pt;}
.y27c{bottom:635.699001pt;}
.y2c6{bottom:636.089547pt;}
.y25{bottom:636.453600pt;}
.y2a4{bottom:637.971198pt;}
.y241{bottom:641.813826pt;}
.yf1{bottom:642.088000pt;}
.y306{bottom:642.292000pt;}
.y126{bottom:642.724000pt;}
.y32a{bottom:643.588000pt;}
.y145{bottom:643.662667pt;}
.y21c{bottom:644.890749pt;}
.y1d3{bottom:644.910667pt;}
.y5{bottom:645.598667pt;}
.y2a3{bottom:650.812151pt;}
.y1ef{bottom:654.648000pt;}
.y7f{bottom:655.878667pt;}
.y27b{bottom:656.336076pt;}
.y2c5{bottom:656.810334pt;}
.ya0{bottom:657.224000pt;}
.y18d{bottom:657.404000pt;}
.y267{bottom:657.897639pt;}
.y240{bottom:657.897674pt;}
.y58{bottom:658.705467pt;}
.y171{bottom:658.798667pt;}
.y1d2{bottom:660.850667pt;}
.y18c{bottom:661.345333pt;}
.y305{bottom:665.405333pt;}
.yf0{bottom:665.990667pt;}
.y125{bottom:666.626667pt;}
.y329{bottom:666.701333pt;}
.y21b{bottom:667.445916pt;}
.y144{bottom:667.565333pt;}
.y3{bottom:668.977329pt;}
.y2c4{bottom:671.627307pt;}
.y57{bottom:672.038800pt;}
.y266{bottom:673.949263pt;}
.y23f{bottom:673.949298pt;}
.y27a{bottom:674.507641pt;}
.y6f{bottom:676.878667pt;}
.y13d{bottom:676.932000pt;}
.y7e{bottom:679.782667pt;}
.y9f{bottom:681.126667pt;}
.y170{bottom:682.701333pt;}
.y21a{bottom:683.496429pt;}
.y2a2{bottom:684.046984pt;}
.y2ec{bottom:688.270667pt;}
.y304{bottom:688.518667pt;}
.y328{bottom:689.813333pt;}
.yef{bottom:689.894667pt;}
.y265{bottom:689.999777pt;}
.y124{bottom:690.529333pt;}
.y36{bottom:691.200133pt;}
.y143{bottom:691.469333pt;}
.y1d1{bottom:692.398667pt;}
.y2dd{bottom:694.649333pt;}
.y23e{bottom:696.503353pt;}
.y56{bottom:696.710667pt;}
.y6e{bottom:700.781333pt;}
.y2a1{bottom:702.004407pt;}
.y7d{bottom:703.685333pt;}
.y9e{bottom:705.029333pt;}
.y264{bottom:706.051402pt;}
.y219{bottom:706.051595pt;}
.y1ee{bottom:706.517333pt;}
.y16f{bottom:706.605333pt;}
.y35{bottom:707.200133pt;}
.y2e6{bottom:707.530667pt;}
.y1d0{bottom:708.338667pt;}
.y55{bottom:710.044000pt;}
.y303{bottom:711.632000pt;}
.y23d{bottom:712.554978pt;}
.y327{bottom:712.926667pt;}
.yee{bottom:713.797333pt;}
.y123{bottom:714.432000pt;}
.y142{bottom:715.372000pt;}
.y2c3{bottom:719.150139pt;}
.y218{bottom:722.103220pt;}
.y34{bottom:723.200133pt;}
.y54{bottom:723.377333pt;}
.y1cf{bottom:724.280000pt;}
.y1a6{bottom:724.738667pt;}
.y7c{bottom:727.588000pt;}
.y263{bottom:728.606568pt;}
.y23c{bottom:728.606603pt;}
.y9d{bottom:728.933333pt;}
.y16e{bottom:730.508000pt;}
.y2c2{bottom:733.967112pt;}
.y302{bottom:734.744000pt;}
.y326{bottom:736.040000pt;}
.yed{bottom:737.700000pt;}
.y217{bottom:738.154845pt;}
.y33{bottom:739.200133pt;}
.y141{bottom:739.274667pt;}
.y6d{bottom:744.454667pt;}
.y262{bottom:744.658193pt;}
.y23b{bottom:744.658228pt;}
.y1ce{bottom:748.024000pt;}
.y53{bottom:748.049200pt;}
.y106{bottom:748.186667pt;}
.y122{bottom:748.641333pt;}
.y2c1{bottom:748.783060pt;}
.y7b{bottom:751.490667pt;}
.y2a0{bottom:752.044657pt;}
.y9c{bottom:752.836000pt;}
.y216{bottom:754.206470pt;}
.y16d{bottom:754.410667pt;}
.y301{bottom:757.857333pt;}
.y325{bottom:759.153333pt;}
.y261{bottom:760.709817pt;}
.y23a{bottom:760.709852pt;}
.y52{bottom:761.382533pt;}
.yec{bottom:761.602667pt;}
.y140{bottom:763.177333pt;}
.y1cd{bottom:763.964000pt;}
.y29f{bottom:764.885610pt;}
.y6c{bottom:768.357333pt;}
.y32{bottom:771.200133pt;}
.y2c0{bottom:773.635286pt;}
.y7a{bottom:775.394667pt;}
.y9b{bottom:776.738667pt;}
.y260{bottom:776.760331pt;}
.y215{bottom:776.760525pt;}
.y29e{bottom:777.726564pt;}
.y16c{bottom:778.313333pt;}
.y1cc{bottom:779.904000pt;}
.y300{bottom:780.970667pt;}
.y2{bottom:781.661334pt;}
.y324{bottom:782.266667pt;}
.y239{bottom:783.263908pt;}
.yeb{bottom:785.506667pt;}
.y51{bottom:786.054533pt;}
.y13f{bottom:787.081333pt;}
.y2bf{bottom:788.452259pt;}
.y6b{bottom:792.260000pt;}
.y214{bottom:792.812149pt;}
.y1cb{bottom:795.844000pt;}
.y29d{bottom:799.264449pt;}
.y79{bottom:799.297333pt;}
.y25f{bottom:799.315497pt;}
.y238{bottom:799.315532pt;}
.y50{bottom:799.387867pt;}
.y9a{bottom:800.641333pt;}
.y3f{bottom:801.066933pt;}
.y2be{bottom:803.269233pt;}
.y2ff{bottom:804.084000pt;}
.y323{bottom:805.380000pt;}
.yea{bottom:809.409333pt;}
.y13e{bottom:810.984000pt;}
.y29c{bottom:812.104513pt;}
.y1ca{bottom:812.454667pt;}
.y4f{bottom:812.721200pt;}
.y25e{bottom:815.367122pt;}
.y237{bottom:815.367157pt;}
.y213{bottom:815.367316pt;}
.y6a{bottom:816.162667pt;}
.y2bd{bottom:818.086206pt;}
.y78{bottom:823.200000pt;}
.y99{bottom:824.545333pt;}
.y29b{bottom:824.945466pt;}
.y2fe{bottom:827.197333pt;}
.y322{bottom:828.493333pt;}
.y25d{bottom:831.418747pt;}
.y236{bottom:831.418782pt;}
.y212{bottom:831.418940pt;}
.ye9{bottom:833.312000pt;}
.y4e{bottom:837.393067pt;}
.y29a{bottom:837.786419pt;}
.y69{bottom:840.066667pt;}
.y77{bottom:847.102667pt;}
.y25c{bottom:847.470371pt;}
.y235{bottom:847.470407pt;}
.y211{bottom:847.470565pt;}
.y1c9{bottom:848.384000pt;}
.y98{bottom:848.448000pt;}
.y2fd{bottom:850.310667pt;}
.y31{bottom:851.200133pt;}
.y321{bottom:851.606667pt;}
.y2bc{bottom:856.435355pt;}
.ye8{bottom:857.214667pt;}
.y1{bottom:859.312000pt;}
.y4d{bottom:862.065067pt;}
.y210{bottom:863.521079pt;}
.y68{bottom:863.969333pt;}
.y30{bottom:867.200133pt;}
.y76{bottom:871.006667pt;}
.y299{bottom:871.021252pt;}
.y97{bottom:872.350667pt;}
.y25b{bottom:872.963409pt;}
.y234{bottom:872.963444pt;}
.y2fc{bottom:873.424000pt;}
.y320{bottom:874.720000pt;}
.y4c{bottom:875.398400pt;}
.y2bb{bottom:877.155117pt;}
.ye7{bottom:881.117333pt;}
.y2f{bottom:883.200133pt;}
.y67{bottom:887.872000pt;}
.y4b{bottom:888.731733pt;}
.y298{bottom:888.977786pt;}
.y20f{bottom:889.014117pt;}
.y75{bottom:894.909333pt;}
.y25a{bottom:895.409683pt;}
.y233{bottom:895.409718pt;}
.y96{bottom:896.253333pt;}
.y2fb{bottom:896.537333pt;}
.y31f{bottom:897.833333pt;}
.y2ba{bottom:897.875904pt;}
.y1c8{bottom:898.396000pt;}
.y2e{bottom:899.200133pt;}
.y297{bottom:901.818740pt;}
.y4a{bottom:902.065067pt;}
.ye6{bottom:905.021333pt;}
.y259{bottom:911.461308pt;}
.y232{bottom:911.461343pt;}
.y20e{bottom:911.461502pt;}
.y66{bottom:911.774667pt;}
.y2b9{bottom:912.692878pt;}
.y2d{bottom:915.200133pt;}
.y95{bottom:920.157333pt;}
.y31e{bottom:920.946667pt;}
.y49{bottom:928.731733pt;}
.y74{bottom:934.613333pt;}
.y2fa{bottom:935.452000pt;}
.y65{bottom:935.678667pt;}
.ye5{bottom:939.229333pt;}
.y94{bottom:944.060000pt;}
.y20d{bottom:946.517333pt;}
.y2c{bottom:947.200133pt;}
.y2e5{bottom:953.509333pt;}
.y2dc{bottom:959.801333pt;}
.y64{bottom:976.849333pt;}
.h1c{height:2.550436pt;}
.h42{height:22.454624pt;}
.h43{height:22.455331pt;}
.h3e{height:22.682241pt;}
.h3f{height:22.682956pt;}
.h44{height:24.700736pt;}
.h40{height:24.951121pt;}
.h2c{height:28.353873pt;}
.h7{height:28.560000pt;}
.h1e{height:29.925106pt;}
.h37{height:30.946610pt;}
.h34{height:31.315647pt;}
.h1b{height:31.880440pt;}
.h17{height:33.343720pt;}
.h11{height:34.133333pt;}
.h38{height:34.772898pt;}
.h35{height:35.187563pt;}
.h3a{height:35.708806pt;}
.h3b{height:36.642833pt;}
.h2b{height:38.107088pt;}
.h36{height:38.107295pt;}
.ha{height:38.400000pt;}
.h33{height:38.561722pt;}
.h2a{height:38.683063pt;}
.h2f{height:38.684307pt;}
.h30{height:39.696164pt;}
.h6{height:40.800000pt;}
.hf{height:42.666667pt;}
.h3{height:42.840000pt;}
.h32{height:43.854504pt;}
.h39{height:43.971407pt;}
.h12{height:46.419684pt;}
.h14{height:47.633873pt;}
.h2e{height:47.635405pt;}
.h1a{height:47.820680pt;}
.h2{height:48.960000pt;}
.h9{height:49.066667pt;}
.h22{height:50.304758pt;}
.h31{height:51.041985pt;}
.hc{height:51.200000pt;}
.h3c{height:52.159087pt;}
.h29{height:53.061106pt;}
.h19{height:55.703605pt;}
.h27{height:56.250440pt;}
.h13{height:57.160657pt;}
.h10{height:59.733333pt;}
.h18{height:61.243088pt;}
.h16{height:61.248422pt;}
.h1f{height:62.877773pt;}
.h1d{height:63.126436pt;}
.h15{height:66.844326pt;}
.h5{height:69.360000pt;}
.h23{height:72.920657pt;}
.h28{height:72.925990pt;}
.h25{height:73.619107pt;}
.h26{height:73.741990pt;}
.h24{height:74.653990pt;}
.h21{height:75.757990pt;}
.he{height:76.800000pt;}
.h4{height:105.826671pt;}
.h20{height:108.531323pt;}
.hd{height:110.933333pt;}
.hb{height:136.533333pt;}
.h41{height:224.640000pt;}
.h3d{height:226.917120pt;}
.h2d{height:816.000000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:308.880000pt;}
.w5{width:312.011040pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.w4{width:1056.000000pt;}
.x6{left:-768.000000pt;}
.x0{left:0.000000pt;}
.x60{left:15.586978pt;}
.xa{left:24.756000pt;}
.x9{left:29.756133pt;}
.x61{left:33.596624pt;}
.xb{left:38.738933pt;}
.x5{left:39.683733pt;}
.x6d{left:48.000000pt;}
.x3a{left:56.149333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:96.000000pt;}
.x65{left:96.909333pt;}
.x12{left:101.836000pt;}
.x25{left:104.096000pt;}
.x5e{left:105.637333pt;}
.x1f{left:107.006667pt;}
.x6b{left:111.608000pt;}
.xc{left:114.000000pt;}
.x4d{left:117.776000pt;}
.x11{left:119.910667pt;}
.x4b{left:123.153171pt;}
.x63{left:131.531406pt;}
.x68{left:137.345333pt;}
.x67{left:139.038198pt;}
.x69{left:140.470902pt;}
.x7{left:151.822000pt;}
.x66{left:152.954022pt;}
.x62{left:154.504479pt;}
.x5c{left:165.762667pt;}
.x39{left:170.809333pt;}
.x33{left:178.778667pt;}
.x4{left:180.874667pt;}
.xf{left:185.338000pt;}
.x1c{left:188.369333pt;}
.x8{left:203.998000pt;}
.x54{left:205.585437pt;}
.x28{left:212.948000pt;}
.x3b{left:214.562667pt;}
.x53{left:218.881503pt;}
.x5f{left:233.149333pt;}
.x1e{left:238.246667pt;}
.x23{left:246.689333pt;}
.x1d{left:252.488000pt;}
.x41{left:253.969333pt;}
.x4f{left:255.792799pt;}
.x18{left:258.213333pt;}
.x43{left:259.673015pt;}
.x2e{left:263.653333pt;}
.x44{left:267.801053pt;}
.x58{left:271.187170pt;}
.x50{left:272.518216pt;}
.x30{left:274.725333pt;}
.x2d{left:277.673333pt;}
.x52{left:279.606251pt;}
.x49{left:282.222271pt;}
.x2f{left:283.957333pt;}
.x3c{left:286.330535pt;}
.x4c{left:288.801165pt;}
.x3f{left:290.764010pt;}
.x3d{left:294.457462pt;}
.x4a{left:296.275955pt;}
.x19{left:298.629333pt;}
.x27{left:303.406667pt;}
.x47{left:307.198980pt;}
.x51{left:308.858842pt;}
.x48{left:310.197333pt;}
.x46{left:316.431498pt;}
.x31{left:320.257333pt;}
.x5b{left:321.441387pt;}
.x5a{left:329.620159pt;}
.x1b{left:330.653333pt;}
.x42{left:331.993107pt;}
.x1a{left:335.880000pt;}
.x64{left:336.853333pt;}
.x34{left:338.341333pt;}
.x13{left:340.896000pt;}
.x5d{left:342.248000pt;}
.x2b{left:344.204000pt;}
.x56{left:347.265958pt;}
.x57{left:349.552199pt;}
.x32{left:351.268000pt;}
.x2a{left:353.436000pt;}
.x10{left:364.168000pt;}
.x24{left:365.412000pt;}
.x29{left:369.016000pt;}
.x14{left:384.361333pt;}
.x16{left:387.184000pt;}
.x15{left:391.730667pt;}
.x20{left:399.134667pt;}
.x55{left:401.773084pt;}
.x3{left:404.408000pt;}
.x45{left:408.864456pt;}
.x26{left:409.936000pt;}
.x36{left:414.452000pt;}
.x2c{left:415.406667pt;}
.x59{left:422.878062pt;}
.x17{left:424.781333pt;}
.xe{left:432.000000pt;}
.x38{left:449.162667pt;}
.x6a{left:455.110667pt;}
.x37{left:458.396000pt;}
.x40{left:492.841587pt;}
.x3e{left:496.536150pt;}
.x21{left:499.081333pt;}
.x35{left:534.514667pt;}
.x22{left:549.034667pt;}
.x71{left:840.756000pt;}
.x70{left:845.756133pt;}
.x6c{left:855.683733pt;}
.x4e{left:933.794667pt;}
.x6e{left:967.822000pt;}
.x6f{left:1019.998000pt;}
}




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