
    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_bc0e8537fca0b2398fe2289c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a69e0adaafde130f35db71fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cf9815f38825c09481ec6133.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f753e5fa90005d4707c4950a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.263000;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_03ae6e1b438757afcc341e2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_966edacd2be65db99b66e2e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_2813aa487bd66a6cb288508f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_8b33ac0b353c19067ed90986.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_a4fc0d09fb1fd3329bb0eae6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2825ac88f0040ab515e3249f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.244000;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_e9fa2bace8ad3d11241be249.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;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_d7a003ce64eef95a849c4ba2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2c8224c96220f7338b8c9515.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.069000;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_8c7a0a4368fd4b317961badc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.713000;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_88ded3be7b709b189c61be88.woff2')format("woff");}.fff{font-family:fff;line-height:0.515000;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_457b340f3ba80229d47ca25d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_29c24f95bc231475e52d5455.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946000;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_790b0ed58e651b6f158730c5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5d49f929d8e41646ef9d13c0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.885000;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_4f040b12cb55747349348bef.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_353babd0b040c6679865fe8d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.869629;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_ebfc6df367dd1794fc67753c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.970000;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_e90264f5cf5dcfcf7ee0a28c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.956000;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_be32875f5b53aa3369a8711a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.234000;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_e67d3bd37d839c8ad548f8af.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_06e2350eae43d28dc56d79ad.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.094000;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_5b12b9577233351c22bd9893.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.947000;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_74bde4f5017760c30b884fdf.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.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);}
.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);}
.m4{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281278,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281289,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);}
.v0{vertical-align:0.000000px;}
.ls8d{letter-spacing:-1.404014px;}
.ls5c{letter-spacing:-1.374014px;}
.ls91{letter-spacing:-1.290007px;}
.ls8e{letter-spacing:-1.272013px;}
.ls44{letter-spacing:-1.248012px;}
.ls8f{letter-spacing:-1.242012px;}
.ls41{letter-spacing:-1.224012px;}
.ls43{letter-spacing:-1.218012px;}
.ls5a{letter-spacing:-1.206012px;}
.ls59{letter-spacing:-1.200012px;}
.ls8c{letter-spacing:-1.188012px;}
.ls23{letter-spacing:-1.182012px;}
.ls42{letter-spacing:-1.176012px;}
.ls45{letter-spacing:-1.164012px;}
.ls90{letter-spacing:-1.152006px;}
.ls8b{letter-spacing:-1.146011px;}
.ls5b{letter-spacing:-1.134011px;}
.ls9e{letter-spacing:-1.122011px;}
.ls9d{letter-spacing:-1.116005px;}
.ls5f{letter-spacing:-1.098011px;}
.ls9a{letter-spacing:-1.074011px;}
.ls9c{letter-spacing:-1.068011px;}
.ls9b{letter-spacing:-1.050011px;}
.ls9f{letter-spacing:-1.044010px;}
.lsd3{letter-spacing:-1.040400px;}
.ls20{letter-spacing:-1.020010px;}
.lsca{letter-spacing:-1.020000px;}
.lsd5{letter-spacing:-1.014900px;}
.ls46{letter-spacing:-1.014004px;}
.lscb{letter-spacing:-1.009800px;}
.ls33{letter-spacing:-1.002010px;}
.lsd4{letter-spacing:-0.999600px;}
.lsce{letter-spacing:-0.994500px;}
.lsd0{letter-spacing:-0.984300px;}
.lsa0{letter-spacing:-0.984010px;}
.lsd1{letter-spacing:-0.979195px;}
.lscc{letter-spacing:-0.974100px;}
.lscd{letter-spacing:-0.963900px;}
.ls22{letter-spacing:-0.954010px;}
.lsd2{letter-spacing:-0.948595px;}
.ls81{letter-spacing:-0.948009px;}
.ls25{letter-spacing:-0.942009px;}
.ls24{letter-spacing:-0.924009px;}
.ls83{letter-spacing:-0.900009px;}
.ls26{letter-spacing:-0.882009px;}
.ls74{letter-spacing:-0.870009px;}
.ls73{letter-spacing:-0.846008px;}
.ls66{letter-spacing:-0.840008px;}
.ls89{letter-spacing:-0.774008px;}
.ls27{letter-spacing:-0.738007px;}
.lsf4{letter-spacing:-0.724200px;}
.ls82{letter-spacing:-0.714007px;}
.ls58{letter-spacing:-0.707929px;}
.ls21{letter-spacing:-0.690007px;}
.ls60{letter-spacing:-0.034293px;}
.ls61{letter-spacing:-0.013670px;}
.ls62{letter-spacing:-0.013201px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000023px;}
.ls69{letter-spacing:0.000040px;}
.ls4f{letter-spacing:0.000045px;}
.ls63{letter-spacing:0.022001px;}
.ls52{letter-spacing:0.047978px;}
.ls94{letter-spacing:0.048038px;}
.ls113{letter-spacing:0.051000px;}
.ls3{letter-spacing:0.054000px;}
.ls75{letter-spacing:0.059988px;}
.ls4a{letter-spacing:0.060001px;}
.lsa1{letter-spacing:0.102000px;}
.ls35{letter-spacing:0.119988px;}
.ls6b{letter-spacing:0.120001px;}
.ls29{letter-spacing:0.120048px;}
.ls51{letter-spacing:0.144000px;}
.ls93{letter-spacing:0.144026px;}
.ls7b{letter-spacing:0.153000px;}
.ls48{letter-spacing:0.179986px;}
.ls6a{letter-spacing:0.180046px;}
.ls50{letter-spacing:0.191995px;}
.ls7d{letter-spacing:0.204000px;}
.ls2{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.239979px;}
.ls2c{letter-spacing:0.239986px;}
.ls5{letter-spacing:0.240039px;}
.ls2e{letter-spacing:0.240046px;}
.ls53{letter-spacing:0.287998px;}
.ls30{letter-spacing:0.300039px;}
.lsf0{letter-spacing:0.351900px;}
.ls18{letter-spacing:0.360040px;}
.ls16{letter-spacing:0.420001px;}
.ls3f{letter-spacing:0.432004px;}
.lse{letter-spacing:0.456005px;}
.ls1f{letter-spacing:0.462005px;}
.ls17{letter-spacing:0.468005px;}
.lsa{letter-spacing:0.474005px;}
.ls8{letter-spacing:0.479986px;}
.ls7{letter-spacing:0.480005px;}
.ls3c{letter-spacing:0.480012px;}
.ls13{letter-spacing:0.486005px;}
.lsf7{letter-spacing:0.489599px;}
.ls37{letter-spacing:0.492005px;}
.lsb{letter-spacing:0.498005px;}
.ls10{letter-spacing:0.504005px;}
.ls39{letter-spacing:0.510005px;}
.lsc4{letter-spacing:0.515100px;}
.lsf3{letter-spacing:0.520200px;}
.ls3b{letter-spacing:0.528005px;}
.ls15{letter-spacing:0.534005px;}
.ls12{letter-spacing:0.539979px;}
.ls36{letter-spacing:0.540039px;}
.ls11{letter-spacing:0.540046px;}
.lsfa{letter-spacing:0.545700px;}
.ls9{letter-spacing:0.576005px;}
.lsfe{letter-spacing:0.576300px;}
.ls110{letter-spacing:0.581400px;}
.ls1e{letter-spacing:0.582006px;}
.lsd{letter-spacing:0.588006px;}
.ls111{letter-spacing:0.617100px;}
.lsf2{letter-spacing:0.632400px;}
.lsfb{letter-spacing:0.693600px;}
.ls112{letter-spacing:0.714000px;}
.ls38{letter-spacing:0.720023px;}
.lsfd{letter-spacing:0.734400px;}
.ls34{letter-spacing:0.751490px;}
.ls103{letter-spacing:0.775200px;}
.lsf{letter-spacing:0.780048px;}
.ls104{letter-spacing:0.836400px;}
.ls102{letter-spacing:0.841500px;}
.ls101{letter-spacing:0.851700px;}
.ls109{letter-spacing:0.861895px;}
.ls1c{letter-spacing:0.958487px;}
.ls100{letter-spacing:1.030200px;}
.lsbc{letter-spacing:2.448000px;}
.lsba{letter-spacing:2.514295px;}
.lscf{letter-spacing:2.595900px;}
.lsbb{letter-spacing:2.652000px;}
.lsc0{letter-spacing:3.315000px;}
.lsbe{letter-spacing:3.355800px;}
.lsbf{letter-spacing:3.427200px;}
.lsbd{letter-spacing:3.437400px;}
.lsc5{letter-spacing:9.139200px;}
.lsed{letter-spacing:10.506000px;}
.lsec{letter-spacing:10.812000px;}
.lsa4{letter-spacing:11.526000px;}
.ls1b{letter-spacing:12.480166px;}
.ls7e{letter-spacing:12.840166px;}
.lsc6{letter-spacing:12.903000px;}
.lsff{letter-spacing:12.954000px;}
.ls65{letter-spacing:12.960140px;}
.lse5{letter-spacing:13.209000px;}
.ls114{letter-spacing:13.311000px;}
.lsa8{letter-spacing:13.566000px;}
.lsa2{letter-spacing:13.872000px;}
.lsb1{letter-spacing:13.882200px;}
.lsb4{letter-spacing:13.923000px;}
.lsa3{letter-spacing:14.127000px;}
.lse0{letter-spacing:14.229000px;}
.ls80{letter-spacing:14.520166px;}
.lsf5{letter-spacing:14.565600px;}
.lsf8{letter-spacing:14.586000px;}
.ls96{letter-spacing:15.180166px;}
.lse4{letter-spacing:15.198000px;}
.lsd6{letter-spacing:15.249000px;}
.ls6d{letter-spacing:15.275231px;}
.ls7f{letter-spacing:15.540106px;}
.ls5d{letter-spacing:15.540166px;}
.lse3{letter-spacing:15.555000px;}
.ls8a{letter-spacing:15.576156px;}
.lsb7{letter-spacing:15.606000px;}
.ls54{letter-spacing:15.791820px;}
.lsa9{letter-spacing:15.912000px;}
.ls67{letter-spacing:15.912159px;}
.ls10e{letter-spacing:15.963000px;}
.lse1{letter-spacing:16.269000px;}
.ls3e{letter-spacing:16.596166px;}
.lsdc{letter-spacing:16.626000px;}
.ls116{letter-spacing:16.677000px;}
.lse9{letter-spacing:16.830000px;}
.ls98{letter-spacing:16.881000px;}
.ls2b{letter-spacing:16.920166px;}
.lsc8{letter-spacing:16.932000px;}
.lsa6{letter-spacing:16.983000px;}
.lse2{letter-spacing:17.034000px;}
.ls55{letter-spacing:17.220166px;}
.ls10d{letter-spacing:17.289000px;}
.ls77{letter-spacing:17.580166px;}
.ls78{letter-spacing:17.616176px;}
.ls105{letter-spacing:17.646000px;}
.ls6c{letter-spacing:17.880166px;}
.ls97{letter-spacing:17.901000px;}
.ls19{letter-spacing:17.940166px;}
.lsda{letter-spacing:17.952000px;}
.lsf9{letter-spacing:18.003000px;}
.ls57{letter-spacing:18.300226px;}
.lsad{letter-spacing:18.309000px;}
.ls76{letter-spacing:18.600166px;}
.lsd8{letter-spacing:18.666000px;}
.ls85{letter-spacing:18.720143px;}
.ls84{letter-spacing:18.960166px;}
.ls56{letter-spacing:18.960226px;}
.lsd9{letter-spacing:19.023000px;}
.ls6e{letter-spacing:19.260166px;}
.lsaa{letter-spacing:19.329000px;}
.ls31{letter-spacing:19.620166px;}
.ls4b{letter-spacing:19.620226px;}
.ls64{letter-spacing:19.680163px;}
.lsab{letter-spacing:19.686000px;}
.ls4c{letter-spacing:19.740203px;}
.ls87{letter-spacing:19.800228px;}
.ls92{letter-spacing:19.980166px;}
.lsc9{letter-spacing:19.992000px;}
.ls99{letter-spacing:19.998200px;}
.lsde{letter-spacing:20.349000px;}
.ls10f{letter-spacing:20.706000px;}
.ls115{letter-spacing:20.916180px;}
.lsdf{letter-spacing:20.961000px;}
.lsea{letter-spacing:21.012000px;}
.lseb{letter-spacing:21.063000px;}
.ls4e{letter-spacing:21.180192px;}
.ls88{letter-spacing:21.300166px;}
.lsee{letter-spacing:21.369000px;}
.ls49{letter-spacing:21.720203px;}
.ls4{letter-spacing:21.870000px;}
.lsb2{letter-spacing:22.032000px;}
.lsb3{letter-spacing:22.083000px;}
.lse8{letter-spacing:22.287000px;}
.ls71{letter-spacing:22.320226px;}
.ls79{letter-spacing:22.560260px;}
.lse7{letter-spacing:22.695000px;}
.lsc7{letter-spacing:22.746000px;}
.ls95{letter-spacing:23.040226px;}
.ls68{letter-spacing:23.040286px;}
.ls40{letter-spacing:23.394234px;}
.ls6f{letter-spacing:23.700226px;}
.lsac{letter-spacing:23.766000px;}
.ls86{letter-spacing:24.060226px;}
.lsaf{letter-spacing:24.072000px;}
.lsb0{letter-spacing:24.123000px;}
.ls4d{letter-spacing:24.420226px;}
.lsb5{letter-spacing:24.429000px;}
.ls1a{letter-spacing:24.720226px;}
.lsf1{letter-spacing:24.755400px;}
.lsdb{letter-spacing:24.786000px;}
.ls28{letter-spacing:25.080286px;}
.ls5e{letter-spacing:25.098251px;}
.ls10a{letter-spacing:25.107300px;}
.ls106{letter-spacing:25.143000px;}
.ls32{letter-spacing:25.440254px;}
.lsae{letter-spacing:25.449000px;}
.lsfc{letter-spacing:25.785600px;}
.ls107{letter-spacing:25.790700px;}
.lsa7{letter-spacing:25.806000px;}
.ls3d{letter-spacing:26.100226px;}
.lsc3{letter-spacing:26.112000px;}
.lsb6{letter-spacing:26.163000px;}
.lse6{letter-spacing:26.469000px;}
.ls108{letter-spacing:26.489400px;}
.ls7c{letter-spacing:26.724000px;}
.ls2a{letter-spacing:26.820283px;}
.lsa5{letter-spacing:26.826000px;}
.ls72{letter-spacing:27.240320px;}
.ls1{letter-spacing:27.468000px;}
.lsd7{letter-spacing:27.489000px;}
.lsf6{letter-spacing:27.830700px;}
.lsc2{letter-spacing:27.846000px;}
.ls70{letter-spacing:28.140286px;}
.lsc1{letter-spacing:28.152000px;}
.ls7a{letter-spacing:29.460286px;}
.ls3a{letter-spacing:29.496283px;}
.lsb9{letter-spacing:30.906000px;}
.ls14{letter-spacing:31.134286px;}
.lsb8{letter-spacing:31.212000px;}
.lsc{letter-spacing:32.220286px;}
.lsef{letter-spacing:32.232000px;}
.ls1d{letter-spacing:32.238322px;}
.ls10c{letter-spacing:34.629000px;}
.ls47{letter-spacing:39.540440px;}
.lsdd{letter-spacing:40.443000px;}
.ls2f{letter-spacing:41.400406px;}
.ls10b{letter-spacing:46.206000px;}
.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;}
}
.ws39{word-spacing:-32.298323px;}
.ws2cc{word-spacing:-27.881700px;}
.ws2e8{word-spacing:-26.540400px;}
.ws2e0{word-spacing:-25.841700px;}
.ws84{word-spacing:-25.500255px;}
.ws2f5{word-spacing:-25.158300px;}
.ws13d{word-spacing:-25.158252px;}
.wse8{word-spacing:-23.454235px;}
.ws1fe{word-spacing:-20.058201px;}
.ws1b1{word-spacing:-17.676177px;}
.wsce{word-spacing:-16.656167px;}
.ws15b{word-spacing:-15.972160px;}
.ws1db{word-spacing:-15.636156px;}
.ws2c6{word-spacing:-14.616600px;}
.ws0{word-spacing:-13.986000px;}
.ws151{word-spacing:-11.071740px;}
.ws289{word-spacing:-3.488400px;}
.ws28b{word-spacing:-3.478200px;}
.ws286{word-spacing:-2.565295px;}
.ws287{word-spacing:-2.499000px;}
.ws2e9{word-spacing:-0.912895px;}
.ws2ed{word-spacing:-0.902700px;}
.ws2f0{word-spacing:-0.887400px;}
.ws2ef{word-spacing:-0.826200px;}
.ws309{word-spacing:-0.765000px;}
.ws2de{word-spacing:-0.744600px;}
.ws2cb{word-spacing:-0.683400px;}
.ws308{word-spacing:-0.668100px;}
.ws2e1{word-spacing:-0.627300px;}
.ws2cd{word-spacing:-0.571200px;}
.ws292{word-spacing:-0.566100px;}
.ws45{word-spacing:-0.546005px;}
.ws2ce{word-spacing:-0.540599px;}
.ws38{word-spacing:-0.516005px;}
.ws2c9{word-spacing:-0.402900px;}
.ws3{word-spacing:-0.084000px;}
.wsd6{word-spacing:-0.063001px;}
.ws24{word-spacing:-0.060001px;}
.wsd{word-spacing:-0.054000px;}
.ws1c3{word-spacing:-0.051000px;}
.ws1c{word-spacing:-0.047999px;}
.ws33{word-spacing:-0.044999px;}
.ws152{word-spacing:-0.009798px;}
.ws1{word-spacing:0.000000px;}
.ws1d8{word-spacing:0.714007px;}
.ws153{word-spacing:0.765529px;}
.ws18f{word-spacing:0.786008px;}
.ws1d1{word-spacing:0.840008px;}
.ws63{word-spacing:0.894009px;}
.ws270{word-spacing:0.943500px;}
.ws26c{word-spacing:0.958800px;}
.ws5c{word-spacing:0.960010px;}
.ws299{word-spacing:0.963900px;}
.ws271{word-spacing:0.969000px;}
.wsec{word-spacing:1.188012px;}
.ws1ec{word-spacing:1.230006px;}
.ws1e6{word-spacing:1.344013px;}
.ws249{word-spacing:8.619000px;}
.ws24a{word-spacing:9.129000px;}
.ws2be{word-spacing:10.200000px;}
.ws248{word-spacing:10.353000px;}
.ws1b9{word-spacing:10.440104px;}
.ws1ba{word-spacing:10.560106px;}
.ws2bd{word-spacing:10.608000px;}
.ws74{word-spacing:10.740107px;}
.ws73{word-spacing:10.800108px;}
.ws1bb{word-spacing:10.860109px;}
.ws294{word-spacing:10.873195px;}
.ws218{word-spacing:10.914000px;}
.ws293{word-spacing:11.031300px;}
.ws149{word-spacing:11.040110px;}
.ws1ab{word-spacing:11.280113px;}
.ws24f{word-spacing:11.424000px;}
.ws250{word-spacing:11.475000px;}
.ws251{word-spacing:11.526000px;}
.ws1a8{word-spacing:11.700117px;}
.ws191{word-spacing:11.820118px;}
.ws1ce{word-spacing:11.880103px;}
.ws77{word-spacing:12.060121px;}
.ws1cd{word-spacing:12.120107px;}
.ws69{word-spacing:12.120121px;}
.ws215{word-spacing:12.138000px;}
.ws1aa{word-spacing:12.180122px;}
.ws116{word-spacing:12.191848px;}
.ws115{word-spacing:12.239847px;}
.ws2bc{word-spacing:12.240000px;}
.ws195{word-spacing:12.240122px;}
.ws1b8{word-spacing:12.420124px;}
.ws1bc{word-spacing:12.468125px;}
.ws315{word-spacing:12.495000px;}
.ws1e7{word-spacing:12.612126px;}
.ws68{word-spacing:12.660127px;}
.wsc0{word-spacing:12.720127px;}
.ws118{word-spacing:12.767840px;}
.ws24d{word-spacing:12.801000px;}
.ws156{word-spacing:12.840128px;}
.ws30d{word-spacing:12.852000px;}
.ws30e{word-spacing:12.903000px;}
.ws1ef{word-spacing:12.936129px;}
.ws21e{word-spacing:12.954000px;}
.ws155{word-spacing:12.960130px;}
.ws21f{word-spacing:13.005000px;}
.ws2b7{word-spacing:13.056000px;}
.ws6e{word-spacing:13.080131px;}
.ws1f8{word-spacing:13.103836px;}
.ws2e2{word-spacing:13.107000px;}
.ws1f0{word-spacing:13.146131px;}
.ws22f{word-spacing:13.158000px;}
.ws1e3{word-spacing:13.206132px;}
.ws2d1{word-spacing:13.260000px;}
.wsc1{word-spacing:13.260133px;}
.ws1e4{word-spacing:13.266133px;}
.ws258{word-spacing:13.362000px;}
.ws7a{word-spacing:13.380134px;}
.ws257{word-spacing:13.413000px;}
.ws1f2{word-spacing:13.440134px;}
.ws230{word-spacing:13.464000px;}
.ws1cc{word-spacing:13.470144px;}
.ws300{word-spacing:13.515000px;}
.ws113{word-spacing:13.535800px;}
.ws148{word-spacing:13.560136px;}
.ws276{word-spacing:13.566000px;}
.ws24b{word-spacing:13.617000px;}
.ws6a{word-spacing:13.620136px;}
.ws7d{word-spacing:13.666318px;}
.ws1d2{word-spacing:13.680137px;}
.ws20e{word-spacing:13.719000px;}
.ws192{word-spacing:13.740137px;}
.ws1d0{word-spacing:13.740145px;}
.ws25f{word-spacing:13.770000px;}
.ws114{word-spacing:13.775828px;}
.ws76{word-spacing:13.782138px;}
.ws34{word-spacing:13.817803px;}
.ws262{word-spacing:13.821000px;}
.ws277{word-spacing:13.872000px;}
.ws232{word-spacing:13.923000px;}
.ws24e{word-spacing:13.974000px;}
.ws7b{word-spacing:13.980140px;}
.ws247{word-spacing:14.025000px;}
.ws2e6{word-spacing:14.076000px;}
.ws260{word-spacing:14.127000px;}
.ws2b2{word-spacing:14.161800px;}
.ws213{word-spacing:14.178000px;}
.wsbe{word-spacing:14.188311px;}
.ws11{word-spacing:14.202000px;}
.ws2c4{word-spacing:14.229000px;}
.ws236{word-spacing:14.251200px;}
.ws1f7{word-spacing:14.255822px;}
.ws2d0{word-spacing:14.280000px;}
.ws219{word-spacing:14.331000px;}
.ws237{word-spacing:14.382000px;}
.ws2d4{word-spacing:14.433000px;}
.ws1d3{word-spacing:14.460145px;}
.ws298{word-spacing:14.478900px;}
.ws21a{word-spacing:14.484000px;}
.ws136{word-spacing:14.514145px;}
.ws295{word-spacing:14.514595px;}
.ws193{word-spacing:14.520145px;}
.ws137{word-spacing:14.562146px;}
.ws297{word-spacing:14.565600px;}
.ws1e5{word-spacing:14.568146px;}
.ws231{word-spacing:14.637000px;}
.ws18d{word-spacing:14.640146px;}
.ws296{word-spacing:14.657400px;}
.ws32{word-spacing:14.669804px;}
.ws214{word-spacing:14.688000px;}
.ws2c5{word-spacing:14.739000px;}
.ws134{word-spacing:14.760148px;}
.wsc6{word-spacing:14.820095px;}
.wsc7{word-spacing:14.820148px;}
.wsc5{word-spacing:14.880149px;}
.ws226{word-spacing:14.892000px;}
.ws1cf{word-spacing:14.940149px;}
.ws2a0{word-spacing:14.943000px;}
.ws210{word-spacing:14.994000px;}
.ws18c{word-spacing:15.000145px;}
.ws17c{word-spacing:15.000150px;}
.ws5f{word-spacing:15.060151px;}
.ws96{word-spacing:15.120151px;}
.ws1b6{word-spacing:15.120167px;}
.ws5d{word-spacing:15.120180px;}
.ws225{word-spacing:15.147000px;}
.ws105{word-spacing:15.180152px;}
.ws2b5{word-spacing:15.198000px;}
.ws97{word-spacing:15.240152px;}
.ws301{word-spacing:15.249000px;}
.ws302{word-spacing:15.300000px;}
.ws13f{word-spacing:15.300153px;}
.ws27d{word-spacing:15.351000px;}
.ws27c{word-spacing:15.402000px;}
.ws138{word-spacing:15.402154px;}
.ws204{word-spacing:15.414148px;}
.ws1a3{word-spacing:15.420127px;}
.ws139{word-spacing:15.420154px;}
.ws2b6{word-spacing:15.453000px;}
.ws23{word-spacing:15.480155px;}
.ws140{word-spacing:15.480172px;}
.ws12d{word-spacing:15.503806px;}
.ws25{word-spacing:15.540155px;}
.ws26e{word-spacing:15.549900px;}
.ws110{word-spacing:15.551806px;}
.ws303{word-spacing:15.555000px;}
.ws1d{word-spacing:15.599805px;}
.ws5e{word-spacing:15.600156px;}
.ws216{word-spacing:15.606000px;}
.ws1a{word-spacing:15.641611px;}
.ws10d{word-spacing:15.647804px;}
.ws20d{word-spacing:15.657000px;}
.ws132{word-spacing:15.660184px;}
.ws205{word-spacing:15.666157px;}
.ws30{word-spacing:15.695790px;}
.ws1b{word-spacing:15.695804px;}
.ws2e5{word-spacing:15.708000px;}
.ws12e{word-spacing:15.717983px;}
.wsaf{word-spacing:15.720157px;}
.ws111{word-spacing:15.743803px;}
.wsbd{word-spacing:15.780158px;}
.ws112{word-spacing:15.791803px;}
.ws26b{word-spacing:15.810000px;}
.wsf{word-spacing:15.822000px;}
.ws31{word-spacing:15.839802px;}
.ws61{word-spacing:15.840158px;}
.ws10f{word-spacing:15.887801px;}
.wsae{word-spacing:15.900159px;}
.ws2c1{word-spacing:15.912000px;}
.ws26d{word-spacing:15.917100px;}
.wsb{word-spacing:15.930000px;}
.ws10e{word-spacing:15.935801px;}
.ws17d{word-spacing:15.960160px;}
.ws25c{word-spacing:15.963000px;}
.ws117{word-spacing:15.983800px;}
.ws24c{word-spacing:16.014000px;}
.ws145{word-spacing:16.020160px;}
.wsc{word-spacing:16.038000px;}
.ws2db{word-spacing:16.065000px;}
.ws2b3{word-spacing:16.116000px;}
.ws126{word-spacing:16.140161px;}
.ws2c2{word-spacing:16.167000px;}
.wsd1{word-spacing:16.200162px;}
.ws2dc{word-spacing:16.218000px;}
.ws60{word-spacing:16.260163px;}
.ws22d{word-spacing:16.269000px;}
.ws23b{word-spacing:16.320000px;}
.ws127{word-spacing:16.320163px;}
.ws2d6{word-spacing:16.371000px;}
.ws75{word-spacing:16.380164px;}
.ws26{word-spacing:16.440164px;}
.ws2b4{word-spacing:16.473000px;}
.ws27{word-spacing:16.500165px;}
.ws2ab{word-spacing:16.524000px;}
.ws6c{word-spacing:16.560166px;}
.ws245{word-spacing:16.575000px;}
.ws81{word-spacing:16.620166px;}
.ws241{word-spacing:16.626000px;}
.ws30c{word-spacing:16.670400px;}
.ws21c{word-spacing:16.677000px;}
.ws6b{word-spacing:16.680167px;}
.ws244{word-spacing:16.727400px;}
.ws22b{word-spacing:16.728000px;}
.ws119{word-spacing:16.740147px;}
.ws133{word-spacing:16.740167px;}
.ws22a{word-spacing:16.779000px;}
.ws181{word-spacing:16.800168px;}
.ws1c9{word-spacing:16.830000px;}
.ws207{word-spacing:16.854169px;}
.wscf{word-spacing:16.860169px;}
.ws21d{word-spacing:16.881000px;}
.ws206{word-spacing:16.896163px;}
.wsee{word-spacing:16.914163px;}
.ws199{word-spacing:16.920169px;}
.ws8d{word-spacing:16.920175px;}
.ws224{word-spacing:16.932000px;}
.ws11f{word-spacing:16.980170px;}
.ws2f6{word-spacing:16.983000px;}
.ws23f{word-spacing:17.034000px;}
.ws62{word-spacing:17.040170px;}
.ws1f1{word-spacing:17.064171px;}
.ws304{word-spacing:17.085000px;}
.ws6d{word-spacing:17.100171px;}
.ws23e{word-spacing:17.136000px;}
.ws208{word-spacing:17.142171px;}
.ws120{word-spacing:17.160167px;}
.ws87{word-spacing:17.160172px;}
.wsed{word-spacing:17.184172px;}
.ws2f3{word-spacing:17.187000px;}
.ws9d{word-spacing:17.220172px;}
.ws9c{word-spacing:17.220194px;}
.ws2f7{word-spacing:17.238000px;}
.ws65{word-spacing:17.280173px;}
.ws2fd{word-spacing:17.289000px;}
.ws221{word-spacing:17.340000px;}
.ws180{word-spacing:17.340173px;}
.ws2f4{word-spacing:17.391000px;}
.wse{word-spacing:17.442000px;}
.wsf7{word-spacing:17.460175px;}
.wseb{word-spacing:17.496154px;}
.ws1af{word-spacing:17.520175px;}
.ws1f{word-spacing:17.580176px;}
.ws2f1{word-spacing:17.595000px;}
.ws14b{word-spacing:17.598176px;}
.ws9{word-spacing:17.604000px;}
.ws20{word-spacing:17.640176px;}
.ws2da{word-spacing:17.646000px;}
.ws202{word-spacing:17.670177px;}
.wsf6{word-spacing:17.700177px;}
.ws2d9{word-spacing:17.704200px;}
.ws3b{word-spacing:17.706177px;}
.ws1b0{word-spacing:17.760175px;}
.wsc2{word-spacing:17.760178px;}
.ws8{word-spacing:17.766000px;}
.ws229{word-spacing:17.799000px;}
.wsa{word-spacing:17.820000px;}
.ws2f2{word-spacing:17.850000px;}
.wsbc{word-spacing:17.862179px;}
.ws203{word-spacing:17.868179px;}
.ws175{word-spacing:17.880179px;}
.ws21b{word-spacing:17.901000px;}
.ws12{word-spacing:17.928000px;}
.wsc8{word-spacing:17.940179px;}
.ws18a{word-spacing:18.000180px;}
.ws284{word-spacing:18.003000px;}
.ws234{word-spacing:18.054000px;}
.ws288{word-spacing:18.057600px;}
.ws1a9{word-spacing:18.060181px;}
.ws1d6{word-spacing:18.060199px;}
.ws194{word-spacing:18.120181px;}
.ws1cb{word-spacing:18.180146px;}
.wsbf{word-spacing:18.180182px;}
.ws1d7{word-spacing:18.180191px;}
.ws2c3{word-spacing:18.207000px;}
.ws5b{word-spacing:18.240182px;}
.ws233{word-spacing:18.258000px;}
.wsa2{word-spacing:18.300183px;}
.ws98{word-spacing:18.360184px;}
.ws1ca{word-spacing:18.420184px;}
.ws5a{word-spacing:18.480185px;}
.ws282{word-spacing:18.513000px;}
.ws174{word-spacing:18.540148px;}
.wsc4{word-spacing:18.540185px;}
.ws283{word-spacing:18.564000px;}
.ws17b{word-spacing:18.600164px;}
.ws86{word-spacing:18.600186px;}
.ws124{word-spacing:18.647651px;}
.ws50{word-spacing:18.660187px;}
.ws2a4{word-spacing:18.666000px;}
.ws135{word-spacing:18.666187px;}
.ws164{word-spacing:18.720187px;}
.ws7f{word-spacing:18.840188px;}
.ws2a5{word-spacing:18.870000px;}
.wsab{word-spacing:18.900189px;}
.ws2cf{word-spacing:18.921000px;}
.ws122{word-spacing:18.960190px;}
.ws121{word-spacing:18.960203px;}
.ws70{word-spacing:19.020190px;}
.ws275{word-spacing:19.074000px;}
.ws11a{word-spacing:19.080191px;}
.ws11b{word-spacing:19.140191px;}
.ws25d{word-spacing:19.176000px;}
.ws20b{word-spacing:19.182192px;}
.ws274{word-spacing:19.227000px;}
.ws19e{word-spacing:19.260193px;}
.ws2d7{word-spacing:19.278000px;}
.wsd3{word-spacing:19.320193px;}
.ws29c{word-spacing:19.329000px;}
.ws2d8{word-spacing:19.380000px;}
.ws25e{word-spacing:19.431000px;}
.wsac{word-spacing:19.440168px;}
.ws19f{word-spacing:19.440194px;}
.wsf8{word-spacing:19.440205px;}
.ws101{word-spacing:19.440236px;}
.ws29d{word-spacing:19.482000px;}
.ws58{word-spacing:19.500195px;}
.ws2e4{word-spacing:19.533000px;}
.ws100{word-spacing:19.560171px;}
.ws1de{word-spacing:19.560173px;}
.wsd2{word-spacing:19.560196px;}
.ws29f{word-spacing:19.584000px;}
.ws1c1{word-spacing:19.620165px;}
.ws2c{word-spacing:19.620196px;}
.ws42{word-spacing:19.626196px;}
.ws29{word-spacing:19.680197px;}
.ws1b7{word-spacing:19.680211px;}
.ws30a{word-spacing:19.686000px;}
.ws30b{word-spacing:19.737000px;}
.wsb9{word-spacing:19.740197px;}
.ws1a6{word-spacing:19.740211px;}
.ws1a7{word-spacing:19.800166px;}
.ws18b{word-spacing:19.800175px;}
.wsb7{word-spacing:19.800198px;}
.ws16f{word-spacing:19.800235px;}
.wsbb{word-spacing:19.800239px;}
.ws1e8{word-spacing:19.806198px;}
.ws29e{word-spacing:19.839000px;}
.wsba{word-spacing:19.860199px;}
.ws48{word-spacing:19.878199px;}
.ws125{word-spacing:19.920199px;}
.wsb8{word-spacing:19.980200px;}
.ws2a9{word-spacing:19.992000px;}
.ws102{word-spacing:20.040200px;}
.ws22e{word-spacing:20.043000px;}
.ws64{word-spacing:20.082201px;}
.ws1c8{word-spacing:20.094000px;}
.ws22{word-spacing:20.100201px;}
.ws1e9{word-spacing:20.142201px;}
.ws240{word-spacing:20.145000px;}
.ws167{word-spacing:20.160202px;}
.ws20a{word-spacing:20.184202px;}
.ws1c7{word-spacing:20.196000px;}
.ws49{word-spacing:20.220202px;}
.ws2ec{word-spacing:20.247000px;}
.wsfd{word-spacing:20.280203px;}
.ws1d9{word-spacing:20.280208px;}
.wsa1{word-spacing:20.340203px;}
.ws246{word-spacing:20.349000px;}
.ws2b1{word-spacing:20.400000px;}
.wsfe{word-spacing:20.400204px;}
.ws1e{word-spacing:20.412194px;}
.ws209{word-spacing:20.424204px;}
.ws2b0{word-spacing:20.451000px;}
.ws7{word-spacing:20.475195px;}
.ws316{word-spacing:20.475206px;}
.wsdb{word-spacing:20.508205px;}
.wsdc{word-spacing:20.514205px;}
.wsff{word-spacing:20.520205px;}
.wsc3{word-spacing:20.538196px;}
.ws130{word-spacing:20.580206px;}
.ws6{word-spacing:20.601196px;}
.ws306{word-spacing:20.604000px;}
.wsda{word-spacing:20.640179px;}
.ws1f6{word-spacing:20.640206px;}
.ws23d{word-spacing:20.655000px;}
.ws43{word-spacing:20.700207px;}
.ws305{word-spacing:20.706000px;}
.ws59{word-spacing:20.727197px;}
.ws2eb{word-spacing:20.757000px;}
.ws5{word-spacing:20.790198px;}
.ws10a{word-spacing:20.820185px;}
.wscd{word-spacing:20.820208px;}
.wsd7{word-spacing:20.853199px;}
.ws26f{word-spacing:20.859000px;}
.ws2ea{word-spacing:20.860800px;}
.ws109{word-spacing:20.880209px;}
.ws2d2{word-spacing:20.910000px;}
.ws14e{word-spacing:20.940209px;}
.ws2ba{word-spacing:20.961000px;}
.ws1b2{word-spacing:21.000210px;}
.ws10b{word-spacing:21.000231px;}
.ws2c0{word-spacing:21.012000px;}
.ws71{word-spacing:21.042210px;}
.ws2bb{word-spacing:21.043200px;}
.ws79{word-spacing:21.060211px;}
.ws217{word-spacing:21.114000px;}
.ws14f{word-spacing:21.180212px;}
.ws222{word-spacing:21.216000px;}
.ws2d{word-spacing:21.240212px;}
.ws1fc{word-spacing:21.240232px;}
.ws159{word-spacing:21.300213px;}
.ws2bf{word-spacing:21.318000px;}
.ws18{word-spacing:21.330000px;}
.ws11d{word-spacing:21.360214px;}
.ws11e{word-spacing:21.420214px;}
.ws14{word-spacing:21.492000px;}
.ws220{word-spacing:21.522000px;}
.ws103{word-spacing:21.540211px;}
.wsf1{word-spacing:21.540215px;}
.ws9b{word-spacing:21.600216px;}
.ws53{word-spacing:21.660217px;}
.ws13{word-spacing:21.708000px;}
.ws95{word-spacing:21.720217px;}
.ws94{word-spacing:21.780218px;}
.ws310{word-spacing:21.828000px;}
.ws16{word-spacing:21.870000px;}
.ws22c{word-spacing:21.879000px;}
.ws18e{word-spacing:21.900219px;}
.ws15{word-spacing:21.924000px;}
.ws273{word-spacing:21.930000px;}
.ws2d5{word-spacing:21.981000px;}
.ws19a{word-spacing:22.020220px;}
.ws272{word-spacing:22.032000px;}
.ws1a0{word-spacing:22.080201px;}
.ws1fd{word-spacing:22.080221px;}
.ws1e2{word-spacing:22.080238px;}
.ws44{word-spacing:22.116221px;}
.ws183{word-spacing:22.140221px;}
.ws78{word-spacing:22.140232px;}
.ws4f{word-spacing:22.200222px;}
.ws20f{word-spacing:22.236000px;}
.wsd0{word-spacing:22.260223px;}
.ws93{word-spacing:22.320223px;}
.ws2b9{word-spacing:22.338000px;}
.ws11c{word-spacing:22.380224px;}
.ws29a{word-spacing:22.389000px;}
.ws104{word-spacing:22.440224px;}
.wsdd{word-spacing:22.446224px;}
.ws166{word-spacing:22.500181px;}
.ws12f{word-spacing:22.500225px;}
.ws29b{word-spacing:22.542000px;}
.ws165{word-spacing:22.560226px;}
.ws189{word-spacing:22.620215px;}
.ws173{word-spacing:22.620226px;}
.ws2a1{word-spacing:22.644000px;}
.ws2a{word-spacing:22.680227px;}
.wsad{word-spacing:22.740227px;}
.ws3f{word-spacing:22.800228px;}
.ws90{word-spacing:22.860229px;}
.ws17{word-spacing:22.896000px;}
.ws235{word-spacing:22.899000px;}
.wsb6{word-spacing:22.920229px;}
.wsb4{word-spacing:22.920256px;}
.wsb5{word-spacing:22.980220px;}
.wsa6{word-spacing:22.980230px;}
.wsb3{word-spacing:23.040230px;}
.wsb0{word-spacing:23.100231px;}
.ws13b{word-spacing:23.160232px;}
.ws314{word-spacing:23.205000px;}
.ws1f5{word-spacing:23.220232px;}
.wse7{word-spacing:23.220244px;}
.ws14a{word-spacing:23.280233px;}
.ws10{word-spacing:23.328000px;}
.ws80{word-spacing:23.340233px;}
.ws30f{word-spacing:23.358000px;}
.ws7e{word-spacing:23.400234px;}
.ws242{word-spacing:23.409000px;}
.ws243{word-spacing:23.460000px;}
.ws146{word-spacing:23.520235px;}
.ws6f{word-spacing:23.580236px;}
.ws144{word-spacing:23.700237px;}
.ws261{word-spacing:23.715000px;}
.ws55{word-spacing:23.760238px;}
.ws26a{word-spacing:23.766000px;}
.wsea{word-spacing:23.796238px;}
.ws54{word-spacing:23.820251px;}
.ws266{word-spacing:23.857800px;}
.ws154{word-spacing:23.880239px;}
.ws1dd{word-spacing:23.940239px;}
.ws184{word-spacing:23.940258px;}
.ws1ea{word-spacing:23.952234px;}
.ws1ee{word-spacing:23.964240px;}
.ws267{word-spacing:23.970000px;}
.wsf9{word-spacing:24.000228px;}
.ws14d{word-spacing:24.000240px;}
.ws269{word-spacing:24.021000px;}
.ws67{word-spacing:24.060241px;}
.ws268{word-spacing:24.072000px;}
.ws2e7{word-spacing:24.112800px;}
.ws108{word-spacing:24.120241px;}
.ws1eb{word-spacing:24.138241px;}
.wsfa{word-spacing:24.180242px;}
.ws4d{word-spacing:24.180262px;}
.wsfb{word-spacing:24.240242px;}
.ws2df{word-spacing:24.255600px;}
.wse9{word-spacing:24.264243px;}
.ws278{word-spacing:24.276000px;}
.ws19{word-spacing:24.300000px;}
.ws17f{word-spacing:24.300243px;}
.ws285{word-spacing:24.301500px;}
.ws279{word-spacing:24.327000px;}
.ws188{word-spacing:24.360244px;}
.ws2a7{word-spacing:24.378000px;}
.ws2ee{word-spacing:24.403500px;}
.ws307{word-spacing:24.408600px;}
.ws19b{word-spacing:24.420244px;}
.ws238{word-spacing:24.429000px;}
.ws239{word-spacing:24.480000px;}
.ws186{word-spacing:24.480245px;}
.ws28a{word-spacing:24.490200px;}
.ws2e3{word-spacing:24.531000px;}
.ws19d{word-spacing:24.540245px;}
.ws1b5{word-spacing:24.600246px;}
.ws2a8{word-spacing:24.633000px;}
.ws19c{word-spacing:24.660247px;}
.ws2a6{word-spacing:24.684000px;}
.ws13e{word-spacing:24.720247px;}
.ws2aa{word-spacing:24.735000px;}
.wse4{word-spacing:24.762248px;}
.ws2dd{word-spacing:24.775800px;}
.ws57{word-spacing:24.780248px;}
.ws211{word-spacing:24.786000px;}
.wsd8{word-spacing:24.822248px;}
.ws2ca{word-spacing:24.837000px;}
.ws13c{word-spacing:24.840248px;}
.ws4a{word-spacing:24.846248px;}
.ws4c{word-spacing:24.858249px;}
.ws4b{word-spacing:24.876214px;}
.ws51{word-spacing:24.900249px;}
.ws85{word-spacing:24.960250px;}
.wsa9{word-spacing:24.963874px;}
.wse5{word-spacing:24.978250px;}
.wse6{word-spacing:24.984250px;}
.ws2d3{word-spacing:24.990000px;}
.ws200{word-spacing:25.014250px;}
.ws82{word-spacing:25.080236px;}
.wsa8{word-spacing:25.080251px;}
.ws201{word-spacing:25.086251px;}
.ws291{word-spacing:25.092000px;}
.ws40{word-spacing:25.140231px;}
.wsa7{word-spacing:25.140251px;}
.ws264{word-spacing:25.143000px;}
.wsd9{word-spacing:25.188252px;}
.ws263{word-spacing:25.194000px;}
.ws41{word-spacing:25.200252px;}
.ws265{word-spacing:25.245000px;}
.ws161{word-spacing:25.260253px;}
.ws23c{word-spacing:25.296000px;}
.ws83{word-spacing:25.320253px;}
.ws1ff{word-spacing:25.338253px;}
.ws4e{word-spacing:25.380254px;}
.wsaa{word-spacing:25.440254px;}
.ws212{word-spacing:25.449000px;}
.ws1ac{word-spacing:25.500255px;}
.wsfc{word-spacing:25.560256px;}
.ws177{word-spacing:25.620256px;}
.ws228{word-spacing:25.653000px;}
.ws255{word-spacing:25.704000px;}
.ws182{word-spacing:25.740257px;}
.ws190{word-spacing:25.770258px;}
.ws27a{word-spacing:25.806000px;}
.ws147{word-spacing:25.860259px;}
.ws15e{word-spacing:25.980260px;}
.ws28f{word-spacing:26.010000px;}
.ws15d{word-spacing:26.040260px;}
.ws290{word-spacing:26.061000px;}
.wsf5{word-spacing:26.100261px;}
.ws27b{word-spacing:26.112000px;}
.ws1c0{word-spacing:26.160262px;}
.ws1c5{word-spacing:26.163000px;}
.ws66{word-spacing:26.184262px;}
.ws1c6{word-spacing:26.214000px;}
.ws256{word-spacing:26.265000px;}
.ws52{word-spacing:26.340263px;}
.ws1c2{word-spacing:26.367000px;}
.ws89{word-spacing:26.400264px;}
.ws252{word-spacing:26.418000px;}
.wscb{word-spacing:26.460265px;}
.ws253{word-spacing:26.469000px;}
.ws227{word-spacing:26.520000px;}
.ws168{word-spacing:26.520265px;}
.ws1c4{word-spacing:26.571000px;}
.ws8a{word-spacing:26.580262px;}
.ws8c{word-spacing:26.580266px;}
.ws88{word-spacing:26.580295px;}
.ws2ac{word-spacing:26.622000px;}
.ws131{word-spacing:26.640266px;}
.ws8b{word-spacing:26.760268px;}
.wsb1{word-spacing:26.820268px;}
.ws196{word-spacing:27.000270px;}
.ws1d5{word-spacing:27.060271px;}
.ws169{word-spacing:27.120271px;}
.ws16a{word-spacing:27.180266px;}
.ws15c{word-spacing:27.180272px;}
.wsd5{word-spacing:27.240272px;}
.ws185{word-spacing:27.300273px;}
.ws16b{word-spacing:27.360274px;}
.ws2{word-spacing:27.384000px;}
.wsa4{word-spacing:27.420274px;}
.ws9a{word-spacing:27.480275px;}
.ws2a2{word-spacing:27.489000px;}
.ws2a3{word-spacing:27.540000px;}
.ws1ed{word-spacing:27.540275px;}
.ws99{word-spacing:27.600276px;}
.ws72{word-spacing:27.660277px;}
.ws4{word-spacing:27.720000px;}
.wsa3{word-spacing:27.720277px;}
.ws312{word-spacing:27.744000px;}
.ws91{word-spacing:27.780278px;}
.ws92{word-spacing:27.840278px;}
.ws313{word-spacing:27.846000px;}
.ws106{word-spacing:27.900279px;}
.ws123{word-spacing:27.960280px;}
.ws223{word-spacing:27.999000px;}
.ws28c{word-spacing:28.050000px;}
.ws28e{word-spacing:28.101000px;}
.wse3{word-spacing:28.146281px;}
.ws28d{word-spacing:28.203000px;}
.ws3a{word-spacing:28.236282px;}
.ws187{word-spacing:28.260283px;}
.wse2{word-spacing:28.428270px;}
.wsca{word-spacing:28.440284px;}
.wsc9{word-spacing:28.500285px;}
.wsd4{word-spacing:28.680287px;}
.ws1d4{word-spacing:28.686287px;}
.ws171{word-spacing:28.800286px;}
.ws172{word-spacing:28.800288px;}
.ws170{word-spacing:28.860289px;}
.ws198{word-spacing:28.920303px;}
.ws21{word-spacing:28.980290px;}
.ws28{word-spacing:29.160292px;}
.ws2b{word-spacing:29.220292px;}
.ws1f3{word-spacing:29.280292px;}
.wse1{word-spacing:29.280293px;}
.ws142{word-spacing:29.340293px;}
.ws14c{word-spacing:29.460295px;}
.ws143{word-spacing:29.520295px;}
.ws176{word-spacing:29.640296px;}
.ws2b8{word-spacing:29.886000px;}
.ws197{word-spacing:30.120301px;}
.ws1bf{word-spacing:30.180302px;}
.ws1ad{word-spacing:30.240302px;}
.ws1fa{word-spacing:30.300303px;}
.ws1ae{word-spacing:30.420304px;}
.ws47{word-spacing:30.426304px;}
.ws46{word-spacing:30.456300px;}
.ws129{word-spacing:30.480305px;}
.ws1be{word-spacing:30.600350px;}
.ws1e1{word-spacing:30.660307px;}
.ws27e{word-spacing:30.702000px;}
.ws128{word-spacing:30.780308px;}
.ws280{word-spacing:30.804000px;}
.ws281{word-spacing:30.855000px;}
.ws15a{word-spacing:30.900309px;}
.ws37{word-spacing:30.912309px;}
.ws36{word-spacing:31.062311px;}
.ws27f{word-spacing:31.161000px;}
.ws254{word-spacing:31.263000px;}
.ws141{word-spacing:31.320313px;}
.wscc{word-spacing:31.380314px;}
.ws1a4{word-spacing:31.440314px;}
.ws20c{word-spacing:31.518000px;}
.ws107{word-spacing:31.560316px;}
.ws1b4{word-spacing:31.620316px;}
.ws15f{word-spacing:31.740317px;}
.ws17a{word-spacing:31.800318px;}
.ws1f4{word-spacing:31.920319px;}
.ws2c7{word-spacing:31.926000px;}
.ws2c8{word-spacing:31.977000px;}
.ws179{word-spacing:31.980320px;}
.ws12b{word-spacing:32.160322px;}
.ws12a{word-spacing:32.220322px;}
.wsa5{word-spacing:32.280323px;}
.ws1bd{word-spacing:32.340323px;}
.ws178{word-spacing:32.400324px;}
.ws56{word-spacing:32.460325px;}
.ws1e0{word-spacing:32.520325px;}
.wsa0{word-spacing:32.580326px;}
.ws1df{word-spacing:32.640326px;}
.wsf0{word-spacing:32.700327px;}
.wsef{word-spacing:32.820328px;}
.ws1b3{word-spacing:32.940329px;}
.ws1a2{word-spacing:33.240332px;}
.ws162{word-spacing:33.480335px;}
.ws1dc{word-spacing:33.540335px;}
.wsde{word-spacing:33.582336px;}
.ws16c{word-spacing:33.600336px;}
.ws16d{word-spacing:33.660332px;}
.ws16e{word-spacing:33.660337px;}
.ws160{word-spacing:34.080341px;}
.wsdf{word-spacing:34.320343px;}
.ws1f9{word-spacing:34.380344px;}
.ws23a{word-spacing:34.476000px;}
.ws2ff{word-spacing:34.578000px;}
.ws2fe{word-spacing:34.731000px;}
.ws8f{word-spacing:34.860349px;}
.ws8e{word-spacing:34.980350px;}
.ws3e{word-spacing:35.460355px;}
.ws158{word-spacing:35.640356px;}
.ws3c{word-spacing:36.300371px;}
.ws35{word-spacing:36.606366px;}
.ws3d{word-spacing:36.720367px;}
.wsb2{word-spacing:37.800378px;}
.ws17e{word-spacing:38.220382px;}
.ws1a5{word-spacing:39.000390px;}
.wsf4{word-spacing:39.240392px;}
.wsf2{word-spacing:39.480395px;}
.wsf3{word-spacing:39.660397px;}
.wse0{word-spacing:39.690397px;}
.ws25a{word-spacing:39.780000px;}
.ws25b{word-spacing:40.035000px;}
.ws259{word-spacing:40.137000px;}
.ws2f{word-spacing:40.224403px;}
.ws2ae{word-spacing:40.392000px;}
.ws2af{word-spacing:40.443000px;}
.ws2ad{word-spacing:40.494000px;}
.ws2e{word-spacing:40.500405px;}
.ws9e{word-spacing:41.040410px;}
.ws9f{word-spacing:41.220412px;}
.ws157{word-spacing:41.400414px;}
.ws13a{word-spacing:43.120980px;}
.ws1da{word-spacing:45.600456px;}
.ws2fa{word-spacing:45.951000px;}
.ws2f8{word-spacing:46.155000px;}
.ws2f9{word-spacing:46.206000px;}
.ws2fb{word-spacing:46.257000px;}
.ws311{word-spacing:46.410000px;}
.ws2fc{word-spacing:46.512000px;}
.ws1a1{word-spacing:48.660487px;}
.ws1fb{word-spacing:56.040560px;}
.ws163{word-spacing:65.039187px;}
.ws10c{word-spacing:65.663203px;}
.ws12c{word-spacing:76.706722px;}
.ws150{word-spacing:80.393116px;}
.ws7c{word-spacing:157.632032px;}
._2a{margin-left:-64.862760px;}
._29{margin-left:-62.854170px;}
._22{margin-left:-60.551640px;}
._2b{margin-left:-57.171330px;}
._28{margin-left:-51.929400px;}
._20{margin-left:-50.116770px;}
._21{margin-left:-48.794040px;}
._25{margin-left:-46.442520px;}
._1f{margin-left:-44.874840px;}
._24{margin-left:-43.356150px;}
._23{margin-left:-41.494530px;}
._27{margin-left:-34.684920px;}
._d{margin-left:-31.800320px;}
._26{margin-left:-28.316220px;}
._16{margin-left:-26.100293px;}
._1e{margin-left:-24.474224px;}
._1b{margin-left:-22.980260px;}
._39{margin-left:-19.320162px;}
._36{margin-left:-18.180194px;}
._18{margin-left:-16.332140px;}
._38{margin-left:-14.820333px;}
._3{margin-left:-8.640000px;}
._4{margin-left:-5.292000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._a{width:1.500015px;}
._3a{width:8.772000px;}
._35{width:10.020100px;}
._12{width:11.519912px;}
._13{width:13.440113px;}
._11{width:14.519772px;}
._15{width:15.720060px;}
._5{width:17.010000px;}
._14{width:18.059986px;}
._f{width:19.860199px;}
._8{width:21.672206px;}
._7{width:23.058000px;}
._6{width:24.840000px;}
._e{width:26.640296px;}
._9{width:28.260283px;}
._19{width:29.760298px;}
._34{width:30.840308px;}
._c{width:32.616332px;}
._10{width:33.720337px;}
._1a{width:35.280353px;}
._2d{width:37.200221px;}
._2c{width:42.960268px;}
._37{width:44.340400px;}
._3c{width:47.124000px;}
._1d{width:65.087186px;}
._32{width:77.423032px;}
._3b{width:93.562200px;}
._b{width:103.746830px;}
._17{width:161.301801px;}
._30{width:307.820182px;}
._33{width:318.284051px;}
._31{width:327.019917px;}
._2f{width:523.817445px;}
._1c{width:799.624186px;}
._2e{width:1034.533259px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(132,31,39);}
.fc3{color:rgb(118,119,122);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.314600px;}
.fs18{font-size:33.995400px;}
.fs8{font-size:36.116400px;}
.fse{font-size:39.996000px;}
.fsd{font-size:41.999400px;}
.fsf{font-size:43.757400px;}
.fs11{font-size:44.001000px;}
.fs14{font-size:44.002800px;}
.fsa{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fs12{font-size:48.987600px;}
.fs15{font-size:48.990000px;}
.fs17{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fsc{font-size:60.000600px;}
.fs7{font-size:63.000600px;}
.fs10{font-size:67.970400px;}
.fs13{font-size:68.347800px;}
.fs16{font-size:68.350800px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:54.085050px;}
.y74{bottom:58.841490px;}
.y1aa{bottom:58.841700px;}
.y209{bottom:58.843530px;}
.y215{bottom:58.844340px;}
.yb8{bottom:58.845090px;}
.y2ba{bottom:58.845600px;}
.y1dd{bottom:58.848540px;}
.y8f{bottom:59.013360px;}
.y1ea{bottom:59.014980px;}
.y28f{bottom:62.062500px;}
.y2f3{bottom:64.834500px;}
.y168{bottom:65.991840px;}
.y2{bottom:67.597501px;}
.y226{bottom:68.028750px;}
.y42{bottom:70.582650px;}
.y2b9{bottom:73.814100px;}
.y73{bottom:76.871670px;}
.y1a9{bottom:76.871880px;}
.y208{bottom:76.873710px;}
.y214{bottom:76.874520px;}
.yb7{bottom:76.875270px;}
.y1dc{bottom:76.878720px;}
.y28e{bottom:77.031000px;}
.y8e{bottom:77.043540px;}
.y1e9{bottom:77.045160px;}
.yd0{bottom:78.402960px;}
.y12e{bottom:78.747150px;}
.y100{bottom:79.170570px;}
.y316{bottom:79.885050px;}
.y2f2{bottom:79.892250px;}
.y337{bottom:79.910250px;}
.y23a{bottom:83.503530px;}
.y167{bottom:83.932020px;}
.y1{bottom:84.097501px;}
.y225{bottom:86.058930px;}
.y28d{bottom:91.999500px;}
.y72{bottom:94.811850px;}
.y1a8{bottom:94.812060px;}
.y207{bottom:94.813890px;}
.y213{bottom:94.814700px;}
.yb6{bottom:94.815450px;}
.y1db{bottom:94.815540px;}
.y315{bottom:94.853550px;}
.y2f1{bottom:94.860750px;}
.y336{bottom:94.878750px;}
.y8d{bottom:95.073720px;}
.y1e8{bottom:95.075340px;}
.ycf{bottom:96.343140px;}
.y12d{bottom:96.687330px;}
.yff{bottom:97.200750px;}
.y2b8{bottom:100.856700px;}
.y239{bottom:101.533710px;}
.y166{bottom:101.962200px;}
.y224{bottom:104.089110px;}
.y28c{bottom:107.057250px;}
.y314{bottom:109.822050px;}
.y2f0{bottom:109.829250px;}
.y335{bottom:109.847250px;}
.y71{bottom:112.842030px;}
.y1a7{bottom:112.842240px;}
.y206{bottom:112.844070px;}
.y212{bottom:112.844880px;}
.yb5{bottom:112.845630px;}
.y8c{bottom:113.013900px;}
.y1e7{bottom:113.015520px;}
.yce{bottom:114.373320px;}
.y12c{bottom:114.717510px;}
.yfe{bottom:115.230930px;}
.y41{bottom:116.078370px;}
.y238{bottom:119.563890px;}
.y1da{bottom:121.860810px;}
.y28b{bottom:122.025750px;}
.y223{bottom:122.029290px;}
.y313{bottom:124.879800px;}
.y2ef{bottom:124.887000px;}
.y334{bottom:124.905000px;}
.y165{bottom:128.919600px;}
.y70{bottom:130.872210px;}
.y1a6{bottom:130.872420px;}
.y205{bottom:130.874250px;}
.y211{bottom:130.875060px;}
.yb4{bottom:130.875810px;}
.y8b{bottom:131.044080px;}
.y1e6{bottom:131.051160px;}
.ycd{bottom:132.403500px;}
.y12b{bottom:132.747690px;}
.yfd{bottom:133.171110px;}
.y40{bottom:134.108550px;}
.y28a{bottom:137.083500px;}
.y237{bottom:137.504070px;}
.y312{bottom:139.848300px;}
.y2ee{bottom:139.855500px;}
.y333{bottom:139.873500px;}
.y222{bottom:140.059470px;}
.y2b7{bottom:145.836750px;}
.y6f{bottom:148.812390px;}
.y1a5{bottom:148.812600px;}
.y204{bottom:148.814430px;}
.y210{bottom:148.815240px;}
.yb3{bottom:148.815990px;}
.y1e5{bottom:149.066340px;}
.y8a{bottom:149.074260px;}
.ycc{bottom:150.343680px;}
.y12a{bottom:150.687870px;}
.yfc{bottom:151.201290px;}
.y3f{bottom:152.048730px;}
.y311{bottom:154.816800px;}
.y2ed{bottom:154.824000px;}
.y332{bottom:154.842000px;}
.y236{bottom:155.534250px;}
.y221{bottom:158.089650px;}
.y2b6{bottom:160.892850px;}
.y289{bottom:164.040900px;}
.y6e{bottom:166.842570px;}
.y1a4{bottom:166.842780px;}
.y203{bottom:166.844610px;}
.y20f{bottom:166.845420px;}
.yb2{bottom:166.846170px;}
.y1e4{bottom:167.006520px;}
.y1d9{bottom:167.011260px;}
.y89{bottom:167.014440px;}
.ycb{bottom:168.373860px;}
.y127{bottom:168.716220px;}
.y129{bottom:168.718050px;}
.yfb{bottom:169.231470px;}
.y310{bottom:169.874550px;}
.y2ec{bottom:169.881750px;}
.y331{bottom:169.899750px;}
.y3e{bottom:170.078910px;}
.y235{bottom:173.564430px;}
.y164{bottom:173.991300px;}
.y128{bottom:175.351200px;}
.y2b5{bottom:175.859850px;}
.y220{bottom:176.029830px;}
.y30f{bottom:184.843050px;}
.y2eb{bottom:184.850250px;}
.y330{bottom:184.868250px;}
.y6d{bottom:184.872750px;}
.y1a3{bottom:184.872960px;}
.y202{bottom:184.874790px;}
.y20e{bottom:184.875600px;}
.yb1{bottom:184.876350px;}
.y1e3{bottom:185.036700px;}
.y1d8{bottom:185.041440px;}
.y88{bottom:185.044620px;}
.yca{bottom:186.404040px;}
.y124{bottom:186.743160px;}
.y126{bottom:186.746400px;}
.yfa{bottom:187.164300px;}
.y3d{bottom:188.109090px;}
.y2b4{bottom:190.828350px;}
.y234{bottom:191.504610px;}
.y163{bottom:191.931480px;}
.y125{bottom:193.379550px;}
.y21f{bottom:194.060010px;}
.y30e{bottom:199.900800px;}
.y2ea{bottom:199.908000px;}
.y32f{bottom:199.926000px;}
.y6c{bottom:202.812930px;}
.y1a2{bottom:202.813140px;}
.y201{bottom:202.814970px;}
.yb0{bottom:202.816530px;}
.y1e2{bottom:203.066880px;}
.y1d7{bottom:203.071620px;}
.y87{bottom:203.074800px;}
.yc9{bottom:204.344220px;}
.y123{bottom:204.683340px;}
.y3c{bottom:206.049270px;}
.y233{bottom:209.534790px;}
.y162{bottom:209.961660px;}
.y21e{bottom:212.090190px;}
.yf9{bottom:214.209570px;}
.y32e{bottom:214.818450px;}
.y30d{bottom:214.869300px;}
.y2e9{bottom:214.876500px;}
.y20d{bottom:216.412050px;}
.y2b3{bottom:217.870800px;}
.y288{bottom:218.024700px;}
.y6b{bottom:220.843110px;}
.y1a1{bottom:220.843320px;}
.y200{bottom:220.845150px;}
.yaf{bottom:220.846710px;}
.y1e1{bottom:221.007060px;}
.y1d6{bottom:221.011800px;}
.y86{bottom:221.014980px;}
.yc8{bottom:222.374400px;}
.y122{bottom:222.713520px;}
.y3b{bottom:224.079450px;}
.y232{bottom:227.564970px;}
.y161{bottom:227.991840px;}
.y32d{bottom:229.786950px;}
.y30c{bottom:229.837800px;}
.y2e8{bottom:229.845000px;}
.y21d{bottom:230.030370px;}
.y20c{bottom:231.469800px;}
.y287{bottom:233.082450px;}
.y6a{bottom:238.873290px;}
.y1a0{bottom:238.873500px;}
.y1ff{bottom:238.875330px;}
.yae{bottom:238.876890px;}
.y1e0{bottom:239.037240px;}
.y1d5{bottom:239.041980px;}
.y85{bottom:239.045160px;}
.yc7{bottom:240.404580px;}
.y121{bottom:240.743700px;}
.y3a{bottom:242.109630px;}
.y32c{bottom:244.844700px;}
.y30b{bottom:244.895550px;}
.y2e7{bottom:244.902750px;}
.y231{bottom:245.505150px;}
.y160{bottom:245.932020px;}
.y20b{bottom:246.438300px;}
.y286{bottom:248.050950px;}
.y21c{bottom:248.060550px;}
.y69{bottom:256.813470px;}
.y19f{bottom:256.813680px;}
.y1fe{bottom:256.815510px;}
.yad{bottom:256.817070px;}
.y1df{bottom:257.067420px;}
.y1d4{bottom:257.072160px;}
.y84{bottom:257.075340px;}
.yc6{bottom:258.344760px;}
.y120{bottom:258.683880px;}
.y32b{bottom:259.813200px;}
.y30a{bottom:259.864050px;}
.y2e6{bottom:259.871250px;}
.y39{bottom:260.049810px;}
.y20a{bottom:261.496050px;}
.y285{bottom:263.019450px;}
.y230{bottom:263.535330px;}
.y15d{bottom:263.960370px;}
.y15f{bottom:263.962200px;}
.y2b2{bottom:265.393050px;}
.y21b{bottom:266.090730px;}
.yf8{bottom:268.210110px;}
.y15e{bottom:270.595200px;}
.y68{bottom:274.843650px;}
.y19e{bottom:274.843860px;}
.y1fd{bottom:274.845690px;}
.yac{bottom:274.847250px;}
.y32a{bottom:274.870950px;}
.y309{bottom:274.921800px;}
.y2e5{bottom:274.929000px;}
.y1de{bottom:275.007600px;}
.y1d3{bottom:275.012340px;}
.y83{bottom:275.015520px;}
.yc5{bottom:276.374940px;}
.y11f{bottom:276.714060px;}
.y284{bottom:278.077200px;}
.y38{bottom:278.079990px;}
.y14{bottom:280.276501px;}
.y2b1{bottom:280.361550px;}
.y22f{bottom:281.565510px;}
.y15c{bottom:281.990550px;}
.y15a{bottom:281.993670px;}
.y21a{bottom:284.030910px;}
.yf7{bottom:286.240290px;}
.y15b{bottom:288.623550px;}
.y2e4{bottom:289.839450px;}
.y308{bottom:289.890300px;}
.y67{bottom:292.873830px;}
.y19d{bottom:292.874040px;}
.y1fc{bottom:292.875870px;}
.y283{bottom:293.009550px;}
.y82{bottom:293.037780px;}
.y1d2{bottom:293.042520px;}
.yc4{bottom:294.405120px;}
.y11e{bottom:294.744240px;}
.y2b0{bottom:295.419300px;}
.y37{bottom:296.110170px;}
.y22e{bottom:299.505690px;}
.y157{bottom:299.928420px;}
.y159{bottom:299.933850px;}
.yab{bottom:301.889700px;}
.y219{bottom:302.061090px;}
.yf6{bottom:304.180470px;}
.y2e3{bottom:304.807950px;}
.y307{bottom:304.858800px;}
.y158{bottom:306.651900px;}
.y282{bottom:307.965300px;}
.y2af{bottom:310.376550px;}
.y66{bottom:310.814010px;}
.y19c{bottom:310.814220px;}
.y1fb{bottom:310.816050px;}
.y81{bottom:311.067960px;}
.y1d1{bottom:311.072700px;}
.yc3{bottom:312.345300px;}
.y11d{bottom:312.684420px;}
.y36{bottom:314.050350px;}
.y22d{bottom:317.535870px;}
.y156{bottom:317.958600px;}
.y2e2{bottom:319.852950px;}
.y329{bottom:319.865700px;}
.y306{bottom:319.916550px;}
.y218{bottom:320.091270px;}
.yf5{bottom:322.210650px;}
.y281{bottom:323.023050px;}
.y2ae{bottom:325.434300px;}
.y65{bottom:328.844190px;}
.y19b{bottom:328.844400px;}
.y1fa{bottom:328.846230px;}
.y80{bottom:329.008140px;}
.y1d0{bottom:329.012880px;}
.yc2{bottom:330.375480px;}
.y11c{bottom:330.714600px;}
.y2e1{bottom:334.821450px;}
.y305{bottom:334.827150px;}
.y328{bottom:334.834200px;}
.y22c{bottom:335.566050px;}
.y155{bottom:335.988780px;}
.y280{bottom:337.991550px;}
.y217{bottom:338.031450px;}
.yf4{bottom:340.240830px;}
.y35{bottom:341.092800px;}
.y13{bottom:344.626501px;}
.y64{bottom:346.874370px;}
.y19a{bottom:346.874580px;}
.y1f9{bottom:346.876410px;}
.yaa{bottom:346.958340px;}
.y7f{bottom:347.038320px;}
.y1cf{bottom:347.043060px;}
.y2ad{bottom:347.887050px;}
.yc1{bottom:348.405660px;}
.y11b{bottom:348.744780px;}
.y2e0{bottom:349.879200px;}
.y304{bottom:349.884900px;}
.y327{bottom:349.891950px;}
.y27f{bottom:353.049300px;}
.y22b{bottom:353.506230px;}
.y154{bottom:353.928960px;}
.yf3{bottom:358.181010px;}
.y2ac{bottom:362.944800px;}
.y63{bottom:364.814550px;}
.y199{bottom:364.814760px;}
.y1f8{bottom:364.816590px;}
.y2df{bottom:364.847700px;}
.y303{bottom:364.853400px;}
.y326{bottom:364.860450px;}
.y346{bottom:364.860750px;}
.ya9{bottom:364.988520px;}
.y7e{bottom:365.068500px;}
.y1ce{bottom:365.073240px;}
.y216{bottom:365.073900px;}
.yc0{bottom:366.345840px;}
.y11a{bottom:366.684960px;}
.y27e{bottom:368.017800px;}
.y22a{bottom:371.536410px;}
.y153{bottom:371.959140px;}
.yf2{bottom:376.211190px;}
.y2ab{bottom:377.886900px;}
.y2de{bottom:379.816200px;}
.y302{bottom:379.821900px;}
.y325{bottom:379.828950px;}
.y345{bottom:379.829250px;}
.y62{bottom:382.844730px;}
.y198{bottom:382.844940px;}
.y1f7{bottom:382.846770px;}
.ya8{bottom:382.928700px;}
.y27d{bottom:382.986300px;}
.y7d{bottom:383.008680px;}
.y1cd{bottom:383.013420px;}
.ybf{bottom:384.376020px;}
.y119{bottom:384.715140px;}
.y34{bottom:388.969950px;}
.y229{bottom:389.566590px;}
.y152{bottom:389.989320px;}
.y2aa{bottom:392.855400px;}
.yf1{bottom:394.241370px;}
.y2dd{bottom:394.873950px;}
.y301{bottom:394.879650px;}
.y324{bottom:394.886700px;}
.y344{bottom:394.887000px;}
.y27c{bottom:398.044050px;}
.y61{bottom:400.874910px;}
.y197{bottom:400.875120px;}
.y1f6{bottom:400.876950px;}
.ya7{bottom:400.958880px;}
.y7c{bottom:401.038860px;}
.y1cc{bottom:401.043600px;}
.ybe{bottom:402.408240px;}
.y118{bottom:402.745320px;}
.y228{bottom:407.506770px;}
.y151{bottom:407.929500px;}
.y12{bottom:408.976501px;}
.y2dc{bottom:409.842450px;}
.y300{bottom:409.848150px;}
.y323{bottom:409.855200px;}
.y343{bottom:409.855500px;}
.yf0{bottom:412.181550px;}
.y27b{bottom:413.012550px;}
.y2a9{bottom:415.384650px;}
.y60{bottom:418.815090px;}
.y196{bottom:418.815300px;}
.y1f5{bottom:418.817130px;}
.ya6{bottom:418.989060px;}
.y7b{bottom:419.069040px;}
.y1cb{bottom:419.073780px;}
.y117{bottom:420.685500px;}
.y2db{bottom:424.810950px;}
.y2ff{bottom:424.816650px;}
.y322{bottom:424.823700px;}
.y342{bottom:424.824000px;}
.y227{bottom:425.536950px;}
.y150{bottom:425.959680px;}
.y27a{bottom:428.070300px;}
.ybd{bottom:429.363510px;}
.yef{bottom:430.211730px;}
.y2a8{bottom:430.353150px;}
.y33{bottom:432.995400px;}
.y5f{bottom:436.845270px;}
.y195{bottom:436.845480px;}
.y1f4{bottom:436.847310px;}
.ya5{bottom:436.929240px;}
.y7a{bottom:437.009220px;}
.y1ca{bottom:437.013960px;}
.y116{bottom:438.715680px;}
.y2da{bottom:439.868700px;}
.y2fe{bottom:439.874400px;}
.y321{bottom:439.881450px;}
.y341{bottom:439.881750px;}
.y279{bottom:443.038800px;}
.y14f{bottom:443.989860px;}
.y2a7{bottom:445.410900px;}
.y32{bottom:448.047900px;}
.yee{bottom:448.241910px;}
.y2d9{bottom:454.837200px;}
.y2fd{bottom:454.842900px;}
.y320{bottom:454.849950px;}
.y340{bottom:454.850250px;}
.y5e{bottom:454.875450px;}
.y194{bottom:454.875660px;}
.y1f3{bottom:454.877490px;}
.ya4{bottom:454.959420px;}
.y79{bottom:455.039400px;}
.y1c9{bottom:455.044140px;}
.y115{bottom:456.745860px;}
.y278{bottom:458.007300px;}
.y2a6{bottom:460.379400px;}
.y14e{bottom:461.930040px;}
.y31{bottom:463.019400px;}
.yed{bottom:466.182090px;}
.y2d8{bottom:469.894950px;}
.y2fc{bottom:469.900650px;}
.y31f{bottom:469.907700px;}
.y33f{bottom:469.908000px;}
.y272{bottom:470.705310px;}
.y193{bottom:472.815840px;}
.y1f2{bottom:472.817670px;}
.ya3{bottom:472.989600px;}
.y277{bottom:473.065050px;}
.y78{bottom:473.069580px;}
.y1c8{bottom:473.074320px;}
.ybc{bottom:474.348960px;}
.y114{bottom:474.686040px;}
.y2a5{bottom:475.437150px;}
.y11{bottom:476.257500px;}
.y30{bottom:477.990900px;}
.y14d{bottom:479.960220px;}
.y5d{bottom:481.833000px;}
.yec{bottom:484.212270px;}
.y271{bottom:484.229130px;}
.y2d7{bottom:484.863450px;}
.y2fb{bottom:484.869150px;}
.y31e{bottom:484.876200px;}
.y33e{bottom:484.876500px;}
.y276{bottom:488.033550px;}
.y2a4{bottom:490.405650px;}
.y192{bottom:490.846020px;}
.y1f1{bottom:490.847850px;}
.ya2{bottom:490.929780px;}
.y77{bottom:491.009760px;}
.y1c7{bottom:491.014500px;}
.ybb{bottom:492.379140px;}
.y113{bottom:492.716220px;}
.y2f{bottom:493.043400px;}
.y270{bottom:497.752965px;}
.y14c{bottom:497.990400px;}
.y2d6{bottom:499.831950px;}
.y2fa{bottom:499.837650px;}
.y31d{bottom:499.844700px;}
.y33d{bottom:499.845000px;}
.yeb{bottom:502.242450px;}
.y275{bottom:503.091300px;}
.y2a3{bottom:505.374150px;}
.y2e{bottom:508.014900px;}
.y191{bottom:508.876200px;}
.y1f0{bottom:508.878030px;}
.ya1{bottom:508.959960px;}
.y76{bottom:509.039940px;}
.y1c6{bottom:509.044680px;}
.yba{bottom:510.409320px;}
.y112{bottom:510.746400px;}
.y26f{bottom:511.192800px;}
.y2d5{bottom:514.889700px;}
.y2f9{bottom:514.895400px;}
.y31c{bottom:514.902450px;}
.y33c{bottom:514.902750px;}
.y274{bottom:518.059800px;}
.y2a2{bottom:520.431900px;}
.y2d{bottom:523.067400px;}
.y26e{bottom:524.716635px;}
.y190{bottom:526.816380px;}
.y1ef{bottom:526.818210px;}
.ya0{bottom:526.990140px;}
.y5c{bottom:527.070120px;}
.y1c5{bottom:527.074860px;}
.yb9{bottom:528.349500px;}
.y2d4{bottom:529.858200px;}
.y2f8{bottom:529.863900px;}
.y31b{bottom:529.870950px;}
.y33b{bottom:529.871250px;}
.y2a1{bottom:535.400400px;}
.y10{bottom:537.676501px;}
.y2c{bottom:538.038900px;}
.y26d{bottom:538.240455px;}
.y261{bottom:538.276455px;}
.y18f{bottom:544.846560px;}
.y1ee{bottom:544.848390px;}
.y2d3{bottom:544.915950px;}
.y2f7{bottom:544.921650px;}
.y31a{bottom:544.928700px;}
.y33a{bottom:544.929000px;}
.y9f{bottom:544.930320px;}
.y5b{bottom:545.010300px;}
.y1c4{bottom:545.015040px;}
.y273{bottom:545.017200px;}
.y2a0{bottom:550.432200px;}
.y26c{bottom:551.764290px;}
.y260{bottom:551.800290px;}
.y2b{bottom:553.010400px;}
.y187{bottom:555.732135px;}
.y110{bottom:557.773170px;}
.y2d2{bottom:559.884450px;}
.y2f6{bottom:559.890150px;}
.y319{bottom:559.897200px;}
.y339{bottom:559.897500px;}
.y14b{bottom:561.174765px;}
.y1ed{bottom:562.875480px;}
.y18e{bottom:562.876740px;}
.y9c{bottom:562.960170px;}
.y9e{bottom:562.960500px;}
.y5a{bottom:563.040480px;}
.y1c3{bottom:563.045220px;}
.y26b{bottom:565.204125px;}
.y25f{bottom:565.240125px;}
.y29f{bottom:565.400700px;}
.y2a{bottom:568.062900px;}
.ye9{bottom:568.600095px;}
.y9d{bottom:569.593650px;}
.y338{bottom:574.806300px;}
.y2d1{bottom:574.852950px;}
.y2f5{bottom:574.858650px;}
.y318{bottom:574.865700px;}
.y26a{bottom:578.727960px;}
.y25e{bottom:578.763960px;}
.y17b{bottom:579.207825px;}
.y1ec{bottom:580.815660px;}
.y18d{bottom:580.816920px;}
.y9b{bottom:580.990350px;}
.y59{bottom:581.070660px;}
.y1c2{bottom:581.075400px;}
.y101{bottom:581.300520px;}
.y29{bottom:583.029900px;}
.y141{bottom:584.670270px;}
.ye8{bottom:587.139870px;}
.y29e{bottom:587.853450px;}
.y317{bottom:589.851300px;}
.y2d0{bottom:589.910700px;}
.y2f4{bottom:589.916400px;}
.y269{bottom:592.251780px;}
.y25d{bottom:592.287780px;}
.y136{bottom:592.678440px;}
.y12f{bottom:593.481465px;}
.y169{bottom:593.541735px;}
.y18c{bottom:598.847010px;}
.y9a{bottom:598.930530px;}
.y58{bottom:599.010840px;}
.y1c1{bottom:599.015580px;}
.ye7{bottom:600.663690px;}
.y29d{bottom:602.911200px;}
.y2cf{bottom:604.819800px;}
.yf{bottom:604.957500px;}
.y268{bottom:605.775615px;}
.y25c{bottom:605.811615px;}
.y1eb{bottom:607.860930px;}
.y35c{bottom:608.023950px;}
.y102{bottom:612.904305px;}
.ye6{bottom:614.187525px;}
.y99{bottom:616.960710px;}
.y57{bottom:617.041020px;}
.y1c0{bottom:617.045760px;}
.y29c{bottom:617.879700px;}
.y267{bottom:619.215450px;}
.y25b{bottom:619.251450px;}
.y2ce{bottom:619.877550px;}
.y137{bottom:621.279090px;}
.y16a{bottom:622.121550px;}
.y35b{bottom:622.992450px;}
.y18b{bottom:625.892280px;}
.y28{bottom:626.649900px;}
.ye5{bottom:627.627360px;}
.y266{bottom:632.739285px;}
.y25a{bottom:632.775285px;}
.y29b{bottom:632.937450px;}
.y174{bottom:634.387335px;}
.y2cd{bottom:634.846050px;}
.y98{bottom:634.990890px;}
.y56{bottom:635.071200px;}
.y1bf{bottom:635.075940px;}
.y358{bottom:638.048700px;}
.y35a{bottom:638.050200px;}
.y130{bottom:641.145555px;}
.ye4{bottom:641.151195px;}
.y27{bottom:641.621400px;}
.y359{bottom:643.662900px;}
.y103{bottom:644.508090px;}
.y265{bottom:646.263105px;}
.y259{bottom:646.299105px;}
.y29a{bottom:647.905950px;}
.y2cc{bottom:649.814550px;}
.y138{bottom:649.879740px;}
.y16b{bottom:650.723370px;}
.y97{bottom:652.931070px;}
.y355{bottom:653.011350px;}
.y55{bottom:653.011380px;}
.y1be{bottom:653.016120px;}
.y357{bottom:653.017200px;}
.ye3{bottom:654.675015px;}
.y24{bottom:656.669250px;}
.y26{bottom:656.673900px;}
.y186{bottom:656.881935px;}
.y356{bottom:658.714800px;}
.y264{bottom:659.786940px;}
.y258{bottom:659.822940px;}
.y25{bottom:661.095900px;}
.y299{bottom:662.874450px;}
.y2cb{bottom:664.872300px;}
.y352{bottom:668.051550px;}
.y354{bottom:668.069100px;}
.ye2{bottom:668.198850px;}
.y96{bottom:670.961250px;}
.y54{bottom:671.041560px;}
.y1bd{bottom:671.046300px;}
.y21{bottom:671.636250px;}
.y23{bottom:671.640750px;}
.y263{bottom:673.226775px;}
.y257{bottom:673.262775px;}
.y353{bottom:673.681800px;}
.y175{bottom:675.232935px;}
.y104{bottom:676.133745px;}
.y22{bottom:676.147950px;}
.y17c{bottom:677.247285px;}
.y14a{bottom:677.473515px;}
.y185{bottom:677.488785px;}
.y298{bottom:677.932200px;}
.y139{bottom:678.480390px;}
.y16c{bottom:679.325190px;}
.y2ca{bottom:679.840800px;}
.y18a{bottom:679.892820px;}
.ye1{bottom:681.638685px;}
.y351{bottom:683.020050px;}
.ye{bottom:686.317498px;}
.y1e{bottom:686.607150px;}
.y20{bottom:686.607750px;}
.y262{bottom:686.750610px;}
.y256{bottom:686.786610px;}
.y131{bottom:688.831635px;}
.y95{bottom:688.991430px;}
.y53{bottom:689.071740px;}
.y1bc{bottom:689.076480px;}
.y1f{bottom:691.114800px;}
.y297{bottom:692.900700px;}
.y2c9{bottom:694.898550px;}
.ye0{bottom:695.162520px;}
.y189{bottom:697.833000px;}
.y149{bottom:698.104515px;}
.y184{bottom:698.122785px;}
.y24e{bottom:700.334430px;}
.y142{bottom:700.720365px;}
.y1d{bottom:701.659650px;}
.y1c{bottom:706.166850px;}
.y94{bottom:706.931610px;}
.y52{bottom:707.011920px;}
.y1bb{bottom:707.016660px;}
.y13a{bottom:707.103045px;}
.y105{bottom:707.737530px;}
.y16d{bottom:707.927010px;}
.ydf{bottom:708.686340px;}
.y10f{bottom:709.572270px;}
.y2c8{bottom:709.867050px;}
.y350{bottom:713.033550px;}
.y255{bottom:713.834265px;}
.y24d{bottom:713.858265px;}
.y176{bottom:716.078535px;}
.yd{bottom:716.317498px;}
.y148{bottom:718.736865px;}
.y183{bottom:718.755135px;}
.y296{bottom:719.943150px;}
.yde{bottom:722.210175px;}
.y2c7{bottom:724.835550px;}
.y93{bottom:724.961790px;}
.y51{bottom:725.042100px;}
.y1ba{bottom:725.046840px;}
.y254{bottom:727.274100px;}
.y24c{bottom:727.298100px;}
.y34f{bottom:728.002050px;}
.y143{bottom:728.888235px;}
.y1a{bottom:729.382500px;}
.y10e{bottom:730.089270px;}
.yc{bottom:734.317498px;}
.y1b{bottom:734.910150px;}
.ydd{bottom:735.650010px;}
.y13b{bottom:735.703695px;}
.y132{bottom:736.495710px;}
.y16e{bottom:736.528830px;}
.y106{bottom:739.341315px;}
.y147{bottom:739.367715px;}
.y182{bottom:739.387485px;}
.y2c6{bottom:739.893300px;}
.y253{bottom:740.797935px;}
.y24b{bottom:740.821935px;}
.y92{bottom:742.991970px;}
.y34e{bottom:743.059800px;}
.y50{bottom:743.072280px;}
.y1b9{bottom:743.077020px;}
.y18{bottom:747.410850px;}
.y1b6{bottom:749.161845px;}
.ydc{bottom:749.173845px;}
.y10d{bottom:750.606120px;}
.yb{bottom:752.317498px;}
.y19{bottom:752.853450px;}
.y252{bottom:754.321755px;}
.y24a{bottom:754.345755px;}
.y2c5{bottom:754.861800px;}
.y177{bottom:756.957135px;}
.y34d{bottom:758.028300px;}
.y146{bottom:760.000065px;}
.y181{bottom:760.018485px;}
.y91{bottom:760.932150px;}
.y4f{bottom:761.012460px;}
.y1b8{bottom:761.017200px;}
.y1b5{bottom:762.685665px;}
.ydb{bottom:762.697665px;}
.y13c{bottom:764.304345px;}
.y16f{bottom:765.130650px;}
.y295{bottom:767.471250px;}
.y1b7{bottom:767.735250px;}
.y251{bottom:767.845590px;}
.y249{bottom:767.869590px;}
.y2c4{bottom:769.830300px;}
.ya{bottom:770.317498px;}
.y107{bottom:770.945085px;}
.y34c{bottom:772.996800px;}
.y17{bottom:775.897200px;}
.y1b4{bottom:776.209500px;}
.yda{bottom:776.221500px;}
.y4e{bottom:779.042640px;}
.y145{bottom:780.606615px;}
.y180{bottom:780.650685px;}
.y250{bottom:781.285425px;}
.y248{bottom:781.309425px;}
.y294{bottom:782.439750px;}
.y133{bottom:784.159800px;}
.y2c3{bottom:784.888050px;}
.y90{bottom:787.974600px;}
.y1b3{bottom:789.649335px;}
.yd9{bottom:789.661335px;}
.y13d{bottom:792.904995px;}
.y170{bottom:793.732470px;}
.y24f{bottom:794.809260px;}
.y247{bottom:794.833260px;}
.y17d{bottom:796.170510px;}
.y4d{bottom:797.072820px;}
.y293{bottom:797.497500px;}
.y178{bottom:797.802735px;}
.y2c2{bottom:799.856550px;}
.y16{bottom:799.879200px;}
.y17f{bottom:801.259485px;}
.y108{bottom:802.548870px;}
.y34b{bottom:803.010300px;}
.y1b2{bottom:803.173170px;}
.yd8{bottom:803.185170px;}
.y246{bottom:808.357080px;}
.y242{bottom:808.369080px;}
.y292{bottom:812.466000px;}
.y2c1{bottom:814.914300px;}
.y4c{bottom:815.013000px;}
.yd7{bottom:816.708990px;}
.y34a{bottom:818.068050px;}
.y13e{bottom:821.505645px;}
.y245{bottom:821.880915px;}
.y241{bottom:821.892915px;}
.y171{bottom:822.334290px;}
.y9{bottom:822.789002px;}
.y15{bottom:823.861200px;}
.y2c0{bottom:829.882800px;}
.y1ae{bottom:830.220825px;}
.yd6{bottom:830.232825px;}
.y134{bottom:831.823875px;}
.y349{bottom:833.036550px;}
.y4b{bottom:833.043180px;}
.y109{bottom:834.152655px;}
.y244{bottom:835.320750px;}
.y240{bottom:835.332750px;}
.y179{bottom:838.648335px;}
.y291{bottom:839.508450px;}
.y1b1{bottom:843.648660px;}
.y1ad{bottom:843.660660px;}
.yd5{bottom:843.672660px;}
.y8{bottom:843.789002px;}
.y2bf{bottom:844.851300px;}
.y348{bottom:848.005050px;}
.y243{bottom:848.844585px;}
.y23f{bottom:848.856585px;}
.y13f{bottom:850.106295px;}
.y172{bottom:850.936110px;}
.y4a{bottom:851.073360px;}
.y1b0{bottom:857.172495px;}
.y1ac{bottom:857.184495px;}
.yd4{bottom:857.196495px;}
.y2be{bottom:859.909050px;}
.y23e{bottom:862.380405px;}
.y347{bottom:863.062800px;}
.y10a{bottom:865.756440px;}
.y49{bottom:869.013540px;}
.y1af{bottom:870.696315px;}
.y1ab{bottom:870.708315px;}
.yd3{bottom:870.720315px;}
.y2bd{bottom:874.877550px;}
.y23d{bottom:875.904240px;}
.y290{bottom:878.031300px;}
.y140{bottom:878.728950px;}
.y10b{bottom:879.135270px;}
.y135{bottom:879.520965px;}
.y17a{bottom:879.526935px;}
.y173{bottom:879.537930px;}
.y48{bottom:887.043720px;}
.yd2{bottom:888.576105px;}
.y23c{bottom:889.344075px;}
.y2bc{bottom:889.935300px;}
.y45{bottom:896.232510px;}
.y17e{bottom:902.587335px;}
.y144{bottom:902.587815px;}
.y10c{bottom:902.665170px;}
.y2bb{bottom:904.903800px;}
.y47{bottom:905.073900px;}
.y23b{bottom:907.199850px;}
.yd1{bottom:907.199865px;}
.y7{bottom:907.453504px;}
.y44{bottom:909.664830px;}
.y43{bottom:923.187150px;}
.y6{bottom:938.953498px;}
.y111{bottom:945.467370px;}
.y188{bottom:945.467385px;}
.y75{bottom:945.467400px;}
.yea{bottom:945.467415px;}
.y5{bottom:970.453498px;}
.y4{bottom:1035.546001px;}
.y3{bottom:1165.122003px;}
.hd{height:22.389939px;}
.hc{height:26.039924px;}
.h37{height:27.604265px;}
.h15{height:30.029571px;}
.h1b{height:30.254140px;}
.h1d{height:30.422566px;}
.h20{height:30.423811px;}
.hf{height:30.824589px;}
.h14{height:32.174571px;}
.h16{height:32.444567px;}
.h18{height:32.476752px;}
.h1e{height:33.870333px;}
.h21{height:33.871992px;}
.h11{height:34.319571px;}
.h13{height:34.607567px;}
.h36{height:35.853000px;}
.h30{height:36.312000px;}
.h33{height:36.414000px;}
.h4{height:36.773438px;}
.he{height:38.610000px;}
.h10{height:38.934000px;}
.h2{height:41.370117px;}
.h26{height:41.412000px;}
.h2b{height:41.418000px;}
.h2c{height:41.418600px;}
.h2d{height:41.435400px;}
.h2a{height:41.457000px;}
.h28{height:41.515800px;}
.h29{height:41.517600px;}
.h27{height:41.556600px;}
.h31{height:41.643600px;}
.h2f{height:41.644200px;}
.h2e{height:41.649600px;}
.h35{height:41.650800px;}
.h32{height:41.700600px;}
.h34{height:41.716200px;}
.h19{height:43.260433px;}
.hb{height:45.423433px;}
.h7{height:45.966797px;}
.h1c{height:46.995159px;}
.h1f{height:47.256096px;}
.h22{height:47.258170px;}
.h12{height:48.720487px;}
.h23{height:48.720847px;}
.h25{height:48.732847px;}
.h24{height:48.733927px;}
.h1a{height:48.749887px;}
.h17{height:48.752167px;}
.h6{height:55.160156px;}
.ha{height:59.640000px;}
.h3{height:68.950195px;}
.h5{height:82.740234px;}
.h8{height:994.960500px;}
.h9{height:995.250000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:663.000000px;}
.w2{width:663.307500px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:72.028350px;}
.xd{left:75.940200px;}
.x18{left:77.980290px;}
.x1b{left:80.932980px;}
.x27{left:82.038165px;}
.x3f{left:84.791100px;}
.x3e{left:86.996850px;}
.x14{left:89.971650px;}
.x3c{left:91.502400px;}
.x22{left:95.009100px;}
.x24{left:98.386185px;}
.x1c{left:101.411445px;}
.x23{left:103.963305px;}
.x3d{left:108.421650px;}
.x25{left:119.627670px;}
.x30{left:121.612320px;}
.x19{left:126.448230px;}
.x2d{left:133.426800px;}
.x1a{left:138.436080px;}
.x4{left:145.650000px;}
.x2e{left:147.798450px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x7{left:202.223550px;}
.x8{left:207.155850px;}
.x2{left:230.424005px;}
.x31{left:241.086450px;}
.x28{left:245.551935px;}
.xc{left:256.138500px;}
.x38{left:263.792100px;}
.x39{left:273.486600px;}
.x16{left:275.102250px;}
.x32{left:279.434310px;}
.x17{left:284.626650px;}
.x33{left:291.422160px;}
.x1{left:293.590494px;}
.x40{left:297.722700px;}
.xe{left:299.168400px;}
.xf{left:303.760500px;}
.x41{left:308.352750px;}
.x42{left:312.179400px;}
.x43{left:334.544850px;}
.x9{left:341.092800px;}
.x1e{left:343.984200px;}
.xa{left:346.875450px;}
.x44{left:351.637650px;}
.x1f{left:353.083350px;}
.x3a{left:360.397305px;}
.x45{left:366.094350px;}
.x3b{left:372.385155px;}
.x15{left:375.448650px;}
.x34{left:378.421080px;}
.x35{left:390.408930px;}
.x2b{left:436.932150px;}
.x2c{left:452.834550px;}
.x21{left:474.693735px;}
.x2f{left:479.630100px;}
.x36{left:485.315745px;}
.x37{left:497.303595px;}
.x10{left:501.477000px;}
.x11{left:505.048650px;}
.x26{left:506.087085px;}
.x20{left:516.273900px;}
.xb{left:517.804650px;}
.x29{left:536.258100px;}
.x12{left:537.448650px;}
.x13{left:541.955700px;}
.x2a{left:551.650200px;}
.x1d{left:556.480800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8d{letter-spacing:-1.248012pt;}
.ls5c{letter-spacing:-1.221346pt;}
.ls91{letter-spacing:-1.146673pt;}
.ls8e{letter-spacing:-1.130678pt;}
.ls44{letter-spacing:-1.109344pt;}
.ls8f{letter-spacing:-1.104011pt;}
.ls41{letter-spacing:-1.088011pt;}
.ls43{letter-spacing:-1.082677pt;}
.ls5a{letter-spacing:-1.072011pt;}
.ls59{letter-spacing:-1.066677pt;}
.ls8c{letter-spacing:-1.056011pt;}
.ls23{letter-spacing:-1.050677pt;}
.ls42{letter-spacing:-1.045344pt;}
.ls45{letter-spacing:-1.034677pt;}
.ls90{letter-spacing:-1.024005pt;}
.ls8b{letter-spacing:-1.018677pt;}
.ls5b{letter-spacing:-1.008010pt;}
.ls9e{letter-spacing:-0.997343pt;}
.ls9d{letter-spacing:-0.992005pt;}
.ls5f{letter-spacing:-0.976010pt;}
.ls9a{letter-spacing:-0.954676pt;}
.ls9c{letter-spacing:-0.949343pt;}
.ls9b{letter-spacing:-0.933343pt;}
.ls9f{letter-spacing:-0.928009pt;}
.lsd3{letter-spacing:-0.924800pt;}
.ls20{letter-spacing:-0.906676pt;}
.lsca{letter-spacing:-0.906667pt;}
.lsd5{letter-spacing:-0.902133pt;}
.ls46{letter-spacing:-0.901337pt;}
.lscb{letter-spacing:-0.897600pt;}
.ls33{letter-spacing:-0.890676pt;}
.lsd4{letter-spacing:-0.888533pt;}
.lsce{letter-spacing:-0.884000pt;}
.lsd0{letter-spacing:-0.874933pt;}
.lsa0{letter-spacing:-0.874675pt;}
.lsd1{letter-spacing:-0.870395pt;}
.lscc{letter-spacing:-0.865867pt;}
.lscd{letter-spacing:-0.856800pt;}
.ls22{letter-spacing:-0.848008pt;}
.lsd2{letter-spacing:-0.843195pt;}
.ls81{letter-spacing:-0.842675pt;}
.ls25{letter-spacing:-0.837342pt;}
.ls24{letter-spacing:-0.821342pt;}
.ls83{letter-spacing:-0.800008pt;}
.ls26{letter-spacing:-0.784008pt;}
.ls74{letter-spacing:-0.773341pt;}
.ls73{letter-spacing:-0.752008pt;}
.ls66{letter-spacing:-0.746674pt;}
.ls89{letter-spacing:-0.688007pt;}
.ls27{letter-spacing:-0.656007pt;}
.lsf4{letter-spacing:-0.643733pt;}
.ls82{letter-spacing:-0.634673pt;}
.ls58{letter-spacing:-0.629270pt;}
.ls21{letter-spacing:-0.613339pt;}
.ls60{letter-spacing:-0.030483pt;}
.ls61{letter-spacing:-0.012151pt;}
.ls62{letter-spacing:-0.011734pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000021pt;}
.ls69{letter-spacing:0.000036pt;}
.ls4f{letter-spacing:0.000040pt;}
.ls63{letter-spacing:0.019557pt;}
.ls52{letter-spacing:0.042647pt;}
.ls94{letter-spacing:0.042701pt;}
.ls113{letter-spacing:0.045333pt;}
.ls3{letter-spacing:0.048000pt;}
.ls75{letter-spacing:0.053323pt;}
.ls4a{letter-spacing:0.053334pt;}
.lsa1{letter-spacing:0.090667pt;}
.ls35{letter-spacing:0.106656pt;}
.ls6b{letter-spacing:0.106668pt;}
.ls29{letter-spacing:0.106709pt;}
.ls51{letter-spacing:0.128000pt;}
.ls93{letter-spacing:0.128023pt;}
.ls7b{letter-spacing:0.136000pt;}
.ls48{letter-spacing:0.159988pt;}
.ls6a{letter-spacing:0.160041pt;}
.ls50{letter-spacing:0.170662pt;}
.ls7d{letter-spacing:0.181333pt;}
.ls2{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.213315pt;}
.ls2c{letter-spacing:0.213321pt;}
.ls5{letter-spacing:0.213368pt;}
.ls2e{letter-spacing:0.213374pt;}
.ls53{letter-spacing:0.255998pt;}
.ls30{letter-spacing:0.266701pt;}
.lsf0{letter-spacing:0.312800pt;}
.ls18{letter-spacing:0.320036pt;}
.ls16{letter-spacing:0.373334pt;}
.ls3f{letter-spacing:0.384004pt;}
.lse{letter-spacing:0.405337pt;}
.ls1f{letter-spacing:0.410671pt;}
.ls17{letter-spacing:0.416004pt;}
.lsa{letter-spacing:0.421338pt;}
.ls8{letter-spacing:0.426654pt;}
.ls7{letter-spacing:0.426671pt;}
.ls3c{letter-spacing:0.426677pt;}
.ls13{letter-spacing:0.432004pt;}
.lsf7{letter-spacing:0.435200pt;}
.ls37{letter-spacing:0.437338pt;}
.lsb{letter-spacing:0.442671pt;}
.ls10{letter-spacing:0.448004pt;}
.ls39{letter-spacing:0.453338pt;}
.lsc4{letter-spacing:0.457867pt;}
.lsf3{letter-spacing:0.462400pt;}
.ls3b{letter-spacing:0.469338pt;}
.ls15{letter-spacing:0.474671pt;}
.ls12{letter-spacing:0.479981pt;}
.ls36{letter-spacing:0.480035pt;}
.ls11{letter-spacing:0.480041pt;}
.lsfa{letter-spacing:0.485067pt;}
.ls9{letter-spacing:0.512005pt;}
.lsfe{letter-spacing:0.512267pt;}
.ls110{letter-spacing:0.516800pt;}
.ls1e{letter-spacing:0.517339pt;}
.lsd{letter-spacing:0.522672pt;}
.ls111{letter-spacing:0.548533pt;}
.lsf2{letter-spacing:0.562133pt;}
.lsfb{letter-spacing:0.616533pt;}
.ls112{letter-spacing:0.634667pt;}
.ls38{letter-spacing:0.640021pt;}
.lsfd{letter-spacing:0.652800pt;}
.ls34{letter-spacing:0.667991pt;}
.ls103{letter-spacing:0.689067pt;}
.lsf{letter-spacing:0.693376pt;}
.ls104{letter-spacing:0.743467pt;}
.ls102{letter-spacing:0.748000pt;}
.ls101{letter-spacing:0.757067pt;}
.ls109{letter-spacing:0.766129pt;}
.ls1c{letter-spacing:0.851989pt;}
.ls100{letter-spacing:0.915733pt;}
.lsbc{letter-spacing:2.176000pt;}
.lsba{letter-spacing:2.234929pt;}
.lscf{letter-spacing:2.307467pt;}
.lsbb{letter-spacing:2.357333pt;}
.lsc0{letter-spacing:2.946667pt;}
.lsbe{letter-spacing:2.982933pt;}
.lsbf{letter-spacing:3.046400pt;}
.lsbd{letter-spacing:3.055467pt;}
.lsc5{letter-spacing:8.123733pt;}
.lsed{letter-spacing:9.338667pt;}
.lsec{letter-spacing:9.610667pt;}
.lsa4{letter-spacing:10.245333pt;}
.ls1b{letter-spacing:11.093481pt;}
.ls7e{letter-spacing:11.413481pt;}
.lsc6{letter-spacing:11.469333pt;}
.lsff{letter-spacing:11.514667pt;}
.ls65{letter-spacing:11.520124pt;}
.lse5{letter-spacing:11.741333pt;}
.ls114{letter-spacing:11.832000pt;}
.lsa8{letter-spacing:12.058667pt;}
.lsa2{letter-spacing:12.330667pt;}
.lsb1{letter-spacing:12.339733pt;}
.lsb4{letter-spacing:12.376000pt;}
.lsa3{letter-spacing:12.557333pt;}
.lse0{letter-spacing:12.648000pt;}
.ls80{letter-spacing:12.906814pt;}
.lsf5{letter-spacing:12.947200pt;}
.lsf8{letter-spacing:12.965333pt;}
.ls96{letter-spacing:13.493481pt;}
.lse4{letter-spacing:13.509333pt;}
.lsd6{letter-spacing:13.554667pt;}
.ls6d{letter-spacing:13.577983pt;}
.ls7f{letter-spacing:13.813428pt;}
.ls5d{letter-spacing:13.813481pt;}
.lse3{letter-spacing:13.826667pt;}
.ls8a{letter-spacing:13.845472pt;}
.lsb7{letter-spacing:13.872000pt;}
.ls54{letter-spacing:14.037173pt;}
.lsa9{letter-spacing:14.144000pt;}
.ls67{letter-spacing:14.144141pt;}
.ls10e{letter-spacing:14.189333pt;}
.lse1{letter-spacing:14.461333pt;}
.ls3e{letter-spacing:14.752148pt;}
.lsdc{letter-spacing:14.778667pt;}
.ls116{letter-spacing:14.824000pt;}
.lse9{letter-spacing:14.960000pt;}
.ls98{letter-spacing:15.005333pt;}
.ls2b{letter-spacing:15.040148pt;}
.lsc8{letter-spacing:15.050667pt;}
.lsa6{letter-spacing:15.096000pt;}
.lse2{letter-spacing:15.141333pt;}
.ls55{letter-spacing:15.306814pt;}
.ls10d{letter-spacing:15.368000pt;}
.ls77{letter-spacing:15.626814pt;}
.ls78{letter-spacing:15.658823pt;}
.ls105{letter-spacing:15.685333pt;}
.ls6c{letter-spacing:15.893481pt;}
.ls97{letter-spacing:15.912000pt;}
.ls19{letter-spacing:15.946814pt;}
.lsda{letter-spacing:15.957333pt;}
.lsf9{letter-spacing:16.002667pt;}
.ls57{letter-spacing:16.266868pt;}
.lsad{letter-spacing:16.274667pt;}
.ls76{letter-spacing:16.533481pt;}
.lsd8{letter-spacing:16.592000pt;}
.ls85{letter-spacing:16.640127pt;}
.ls84{letter-spacing:16.853481pt;}
.ls56{letter-spacing:16.853534pt;}
.lsd9{letter-spacing:16.909333pt;}
.ls6e{letter-spacing:17.120148pt;}
.lsaa{letter-spacing:17.181333pt;}
.ls31{letter-spacing:17.440148pt;}
.ls4b{letter-spacing:17.440201pt;}
.ls64{letter-spacing:17.493478pt;}
.lsab{letter-spacing:17.498667pt;}
.ls4c{letter-spacing:17.546847pt;}
.ls87{letter-spacing:17.600203pt;}
.ls92{letter-spacing:17.760148pt;}
.lsc9{letter-spacing:17.770667pt;}
.ls99{letter-spacing:17.776178pt;}
.lsde{letter-spacing:18.088000pt;}
.ls10f{letter-spacing:18.405333pt;}
.ls115{letter-spacing:18.592160pt;}
.lsdf{letter-spacing:18.632000pt;}
.lsea{letter-spacing:18.677333pt;}
.lseb{letter-spacing:18.722667pt;}
.ls4e{letter-spacing:18.826837pt;}
.ls88{letter-spacing:18.933481pt;}
.lsee{letter-spacing:18.994667pt;}
.ls49{letter-spacing:19.306847pt;}
.ls4{letter-spacing:19.440000pt;}
.lsb2{letter-spacing:19.584000pt;}
.lsb3{letter-spacing:19.629333pt;}
.lse8{letter-spacing:19.810667pt;}
.ls71{letter-spacing:19.840201pt;}
.ls79{letter-spacing:20.053564pt;}
.lse7{letter-spacing:20.173333pt;}
.lsc7{letter-spacing:20.218667pt;}
.ls95{letter-spacing:20.480201pt;}
.ls68{letter-spacing:20.480254pt;}
.ls40{letter-spacing:20.794875pt;}
.ls6f{letter-spacing:21.066868pt;}
.lsac{letter-spacing:21.125333pt;}
.ls86{letter-spacing:21.386868pt;}
.lsaf{letter-spacing:21.397333pt;}
.lsb0{letter-spacing:21.442667pt;}
.ls4d{letter-spacing:21.706868pt;}
.lsb5{letter-spacing:21.714667pt;}
.ls1a{letter-spacing:21.973534pt;}
.lsf1{letter-spacing:22.004800pt;}
.lsdb{letter-spacing:22.032000pt;}
.ls28{letter-spacing:22.293588pt;}
.ls5e{letter-spacing:22.309556pt;}
.ls10a{letter-spacing:22.317600pt;}
.ls106{letter-spacing:22.349333pt;}
.ls32{letter-spacing:22.613559pt;}
.lsae{letter-spacing:22.621333pt;}
.lsfc{letter-spacing:22.920533pt;}
.ls107{letter-spacing:22.925067pt;}
.lsa7{letter-spacing:22.938667pt;}
.ls3d{letter-spacing:23.200201pt;}
.lsc3{letter-spacing:23.210667pt;}
.lsb6{letter-spacing:23.256000pt;}
.lse6{letter-spacing:23.528000pt;}
.ls108{letter-spacing:23.546133pt;}
.ls7c{letter-spacing:23.754667pt;}
.ls2a{letter-spacing:23.840252pt;}
.lsa5{letter-spacing:23.845333pt;}
.ls72{letter-spacing:24.213618pt;}
.ls1{letter-spacing:24.416000pt;}
.lsd7{letter-spacing:24.434667pt;}
.lsf6{letter-spacing:24.738400pt;}
.lsc2{letter-spacing:24.752000pt;}
.ls70{letter-spacing:25.013588pt;}
.lsc1{letter-spacing:25.024000pt;}
.ls7a{letter-spacing:26.186921pt;}
.ls3a{letter-spacing:26.218918pt;}
.lsb9{letter-spacing:27.472000pt;}
.ls14{letter-spacing:27.674921pt;}
.lsb8{letter-spacing:27.744000pt;}
.lsc{letter-spacing:28.640254pt;}
.lsef{letter-spacing:28.650667pt;}
.ls1d{letter-spacing:28.656287pt;}
.ls10c{letter-spacing:30.781333pt;}
.ls47{letter-spacing:35.147058pt;}
.lsdd{letter-spacing:35.949333pt;}
.ls2f{letter-spacing:36.800361pt;}
.ls10b{letter-spacing:41.072000pt;}
.ws39{word-spacing:-28.709620pt;}
.ws2cc{word-spacing:-24.783733pt;}
.ws2e8{word-spacing:-23.591467pt;}
.ws2e0{word-spacing:-22.970400pt;}
.ws84{word-spacing:-22.666893pt;}
.ws2f5{word-spacing:-22.362933pt;}
.ws13d{word-spacing:-22.362890pt;}
.wse8{word-spacing:-20.848208pt;}
.ws1fe{word-spacing:-17.829512pt;}
.ws1b1{word-spacing:-15.712157pt;}
.wsce{word-spacing:-14.805481pt;}
.ws15b{word-spacing:-14.197475pt;}
.ws1db{word-spacing:-13.898806pt;}
.ws2c6{word-spacing:-12.992533pt;}
.ws0{word-spacing:-12.432000pt;}
.ws151{word-spacing:-9.841547pt;}
.ws289{word-spacing:-3.100800pt;}
.ws28b{word-spacing:-3.091733pt;}
.ws286{word-spacing:-2.280262pt;}
.ws287{word-spacing:-2.221333pt;}
.ws2e9{word-spacing:-0.811462pt;}
.ws2ed{word-spacing:-0.802400pt;}
.ws2f0{word-spacing:-0.788800pt;}
.ws2ef{word-spacing:-0.734400pt;}
.ws309{word-spacing:-0.680000pt;}
.ws2de{word-spacing:-0.661867pt;}
.ws2cb{word-spacing:-0.607467pt;}
.ws308{word-spacing:-0.593867pt;}
.ws2e1{word-spacing:-0.557600pt;}
.ws2cd{word-spacing:-0.507733pt;}
.ws292{word-spacing:-0.503200pt;}
.ws45{word-spacing:-0.485338pt;}
.ws2ce{word-spacing:-0.480533pt;}
.ws38{word-spacing:-0.458671pt;}
.ws2c9{word-spacing:-0.358133pt;}
.ws3{word-spacing:-0.074667pt;}
.wsd6{word-spacing:-0.056001pt;}
.ws24{word-spacing:-0.053334pt;}
.wsd{word-spacing:-0.048000pt;}
.ws1c3{word-spacing:-0.045333pt;}
.ws1c{word-spacing:-0.042666pt;}
.ws33{word-spacing:-0.039999pt;}
.ws152{word-spacing:-0.008709pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d8{word-spacing:0.634673pt;}
.ws153{word-spacing:0.680470pt;}
.ws18f{word-spacing:0.698674pt;}
.ws1d1{word-spacing:0.746674pt;}
.ws63{word-spacing:0.794675pt;}
.ws270{word-spacing:0.838667pt;}
.ws26c{word-spacing:0.852267pt;}
.ws5c{word-spacing:0.853342pt;}
.ws299{word-spacing:0.856800pt;}
.ws271{word-spacing:0.861333pt;}
.wsec{word-spacing:1.056011pt;}
.ws1ec{word-spacing:1.093339pt;}
.ws1e6{word-spacing:1.194679pt;}
.ws249{word-spacing:7.661333pt;}
.ws24a{word-spacing:8.114667pt;}
.ws2be{word-spacing:9.066667pt;}
.ws248{word-spacing:9.202667pt;}
.ws1b9{word-spacing:9.280093pt;}
.ws1ba{word-spacing:9.386761pt;}
.ws2bd{word-spacing:9.429333pt;}
.ws74{word-spacing:9.546762pt;}
.ws73{word-spacing:9.600096pt;}
.ws1bb{word-spacing:9.653430pt;}
.ws294{word-spacing:9.665062pt;}
.ws218{word-spacing:9.701333pt;}
.ws293{word-spacing:9.805600pt;}
.ws149{word-spacing:9.813431pt;}
.ws1ab{word-spacing:10.026767pt;}
.ws24f{word-spacing:10.154667pt;}
.ws250{word-spacing:10.200000pt;}
.ws251{word-spacing:10.245333pt;}
.ws1a8{word-spacing:10.400104pt;}
.ws191{word-spacing:10.506772pt;}
.ws1ce{word-spacing:10.560092pt;}
.ws77{word-spacing:10.720107pt;}
.ws1cd{word-spacing:10.773429pt;}
.ws69{word-spacing:10.773441pt;}
.ws215{word-spacing:10.789333pt;}
.ws1aa{word-spacing:10.826775pt;}
.ws116{word-spacing:10.837198pt;}
.ws115{word-spacing:10.879864pt;}
.ws2bc{word-spacing:10.880000pt;}
.ws195{word-spacing:10.880109pt;}
.ws1b8{word-spacing:11.040110pt;}
.ws1bc{word-spacing:11.082777pt;}
.ws315{word-spacing:11.106667pt;}
.ws1e7{word-spacing:11.210779pt;}
.ws68{word-spacing:11.253446pt;}
.wsc0{word-spacing:11.306780pt;}
.ws118{word-spacing:11.349191pt;}
.ws24d{word-spacing:11.378667pt;}
.ws156{word-spacing:11.413447pt;}
.ws30d{word-spacing:11.424000pt;}
.ws30e{word-spacing:11.469333pt;}
.ws1ef{word-spacing:11.498782pt;}
.ws21e{word-spacing:11.514667pt;}
.ws155{word-spacing:11.520115pt;}
.ws21f{word-spacing:11.560000pt;}
.ws2b7{word-spacing:11.605333pt;}
.ws6e{word-spacing:11.626783pt;}
.ws1f8{word-spacing:11.647854pt;}
.ws2e2{word-spacing:11.650667pt;}
.ws1f0{word-spacing:11.685450pt;}
.ws22f{word-spacing:11.696000pt;}
.ws1e3{word-spacing:11.738784pt;}
.ws2d1{word-spacing:11.786667pt;}
.wsc1{word-spacing:11.786785pt;}
.ws1e4{word-spacing:11.792118pt;}
.ws258{word-spacing:11.877333pt;}
.ws7a{word-spacing:11.893452pt;}
.ws257{word-spacing:11.922667pt;}
.ws1f2{word-spacing:11.946786pt;}
.ws230{word-spacing:11.968000pt;}
.ws1cc{word-spacing:11.973461pt;}
.ws300{word-spacing:12.013333pt;}
.ws113{word-spacing:12.031822pt;}
.ws148{word-spacing:12.053454pt;}
.ws276{word-spacing:12.058667pt;}
.ws24b{word-spacing:12.104000pt;}
.ws6a{word-spacing:12.106788pt;}
.ws7d{word-spacing:12.147838pt;}
.ws1d2{word-spacing:12.160122pt;}
.ws20e{word-spacing:12.194667pt;}
.ws192{word-spacing:12.213455pt;}
.ws1d0{word-spacing:12.213462pt;}
.ws25f{word-spacing:12.240000pt;}
.ws114{word-spacing:12.245180pt;}
.ws76{word-spacing:12.250789pt;}
.ws34{word-spacing:12.282491pt;}
.ws262{word-spacing:12.285333pt;}
.ws277{word-spacing:12.330667pt;}
.ws232{word-spacing:12.376000pt;}
.ws24e{word-spacing:12.421333pt;}
.ws7b{word-spacing:12.426791pt;}
.ws247{word-spacing:12.466667pt;}
.ws2e6{word-spacing:12.512000pt;}
.ws260{word-spacing:12.557333pt;}
.ws2b2{word-spacing:12.588267pt;}
.ws213{word-spacing:12.602667pt;}
.wsbe{word-spacing:12.611832pt;}
.ws11{word-spacing:12.624000pt;}
.ws2c4{word-spacing:12.648000pt;}
.ws236{word-spacing:12.667733pt;}
.ws1f7{word-spacing:12.671842pt;}
.ws2d0{word-spacing:12.693333pt;}
.ws219{word-spacing:12.738667pt;}
.ws237{word-spacing:12.784000pt;}
.ws2d4{word-spacing:12.829333pt;}
.ws1d3{word-spacing:12.853462pt;}
.ws298{word-spacing:12.870133pt;}
.ws21a{word-spacing:12.874667pt;}
.ws136{word-spacing:12.901462pt;}
.ws295{word-spacing:12.901862pt;}
.ws193{word-spacing:12.906796pt;}
.ws137{word-spacing:12.944129pt;}
.ws297{word-spacing:12.947200pt;}
.ws1e5{word-spacing:12.949463pt;}
.ws231{word-spacing:13.010667pt;}
.ws18d{word-spacing:13.013463pt;}
.ws296{word-spacing:13.028800pt;}
.ws32{word-spacing:13.039826pt;}
.ws214{word-spacing:13.056000pt;}
.ws2c5{word-spacing:13.101333pt;}
.ws134{word-spacing:13.120131pt;}
.wsc6{word-spacing:13.173418pt;}
.wsc7{word-spacing:13.173465pt;}
.wsc5{word-spacing:13.226799pt;}
.ws226{word-spacing:13.237333pt;}
.ws1cf{word-spacing:13.280133pt;}
.ws2a0{word-spacing:13.282667pt;}
.ws210{word-spacing:13.328000pt;}
.ws18c{word-spacing:13.333462pt;}
.ws17c{word-spacing:13.333467pt;}
.ws5f{word-spacing:13.386801pt;}
.ws96{word-spacing:13.440134pt;}
.ws1b6{word-spacing:13.440148pt;}
.ws5d{word-spacing:13.440160pt;}
.ws225{word-spacing:13.464000pt;}
.ws105{word-spacing:13.493468pt;}
.ws2b5{word-spacing:13.509333pt;}
.ws97{word-spacing:13.546802pt;}
.ws301{word-spacing:13.554667pt;}
.ws302{word-spacing:13.600000pt;}
.ws13f{word-spacing:13.600136pt;}
.ws27d{word-spacing:13.645333pt;}
.ws27c{word-spacing:13.690667pt;}
.ws138{word-spacing:13.690804pt;}
.ws204{word-spacing:13.701465pt;}
.ws1a3{word-spacing:13.706780pt;}
.ws139{word-spacing:13.706804pt;}
.ws2b6{word-spacing:13.736000pt;}
.ws23{word-spacing:13.760138pt;}
.ws140{word-spacing:13.760153pt;}
.ws12d{word-spacing:13.781161pt;}
.ws25{word-spacing:13.813471pt;}
.ws26e{word-spacing:13.822133pt;}
.ws110{word-spacing:13.823827pt;}
.ws303{word-spacing:13.826667pt;}
.ws1d{word-spacing:13.866493pt;}
.ws5e{word-spacing:13.866805pt;}
.ws216{word-spacing:13.872000pt;}
.ws1a{word-spacing:13.903654pt;}
.ws10d{word-spacing:13.909159pt;}
.ws20d{word-spacing:13.917333pt;}
.ws132{word-spacing:13.920163pt;}
.ws205{word-spacing:13.925473pt;}
.ws30{word-spacing:13.951813pt;}
.ws1b{word-spacing:13.951826pt;}
.ws2e5{word-spacing:13.962667pt;}
.ws12e{word-spacing:13.971540pt;}
.wsaf{word-spacing:13.973473pt;}
.ws111{word-spacing:13.994492pt;}
.wsbd{word-spacing:14.026807pt;}
.ws112{word-spacing:14.037158pt;}
.ws26b{word-spacing:14.053333pt;}
.wsf{word-spacing:14.064000pt;}
.ws31{word-spacing:14.079824pt;}
.ws61{word-spacing:14.080141pt;}
.ws10f{word-spacing:14.122490pt;}
.wsae{word-spacing:14.133475pt;}
.ws2c1{word-spacing:14.144000pt;}
.ws26d{word-spacing:14.148533pt;}
.wsb{word-spacing:14.160000pt;}
.ws10e{word-spacing:14.165156pt;}
.ws17d{word-spacing:14.186809pt;}
.ws25c{word-spacing:14.189333pt;}
.ws117{word-spacing:14.207822pt;}
.ws24c{word-spacing:14.234667pt;}
.ws145{word-spacing:14.240142pt;}
.wsc{word-spacing:14.256000pt;}
.ws2db{word-spacing:14.280000pt;}
.ws2b3{word-spacing:14.325333pt;}
.ws126{word-spacing:14.346810pt;}
.ws2c2{word-spacing:14.370667pt;}
.wsd1{word-spacing:14.400144pt;}
.ws2dc{word-spacing:14.416000pt;}
.ws60{word-spacing:14.453478pt;}
.ws22d{word-spacing:14.461333pt;}
.ws23b{word-spacing:14.506667pt;}
.ws127{word-spacing:14.506812pt;}
.ws2d6{word-spacing:14.552000pt;}
.ws75{word-spacing:14.560146pt;}
.ws26{word-spacing:14.613479pt;}
.ws2b4{word-spacing:14.642667pt;}
.ws27{word-spacing:14.666813pt;}
.ws2ab{word-spacing:14.688000pt;}
.ws6c{word-spacing:14.720147pt;}
.ws245{word-spacing:14.733333pt;}
.ws81{word-spacing:14.773481pt;}
.ws241{word-spacing:14.778667pt;}
.ws30c{word-spacing:14.818133pt;}
.ws21c{word-spacing:14.824000pt;}
.ws6b{word-spacing:14.826815pt;}
.ws244{word-spacing:14.868800pt;}
.ws22b{word-spacing:14.869333pt;}
.ws119{word-spacing:14.880131pt;}
.ws133{word-spacing:14.880149pt;}
.ws22a{word-spacing:14.914667pt;}
.ws181{word-spacing:14.933483pt;}
.ws1c9{word-spacing:14.960000pt;}
.ws207{word-spacing:14.981483pt;}
.wscf{word-spacing:14.986817pt;}
.ws21d{word-spacing:15.005333pt;}
.ws206{word-spacing:15.018812pt;}
.wsee{word-spacing:15.034812pt;}
.ws199{word-spacing:15.040150pt;}
.ws8d{word-spacing:15.040155pt;}
.ws224{word-spacing:15.050667pt;}
.ws11f{word-spacing:15.093484pt;}
.ws2f6{word-spacing:15.096000pt;}
.ws23f{word-spacing:15.141333pt;}
.ws62{word-spacing:15.146818pt;}
.ws1f1{word-spacing:15.168152pt;}
.ws304{word-spacing:15.186667pt;}
.ws6d{word-spacing:15.200152pt;}
.ws23e{word-spacing:15.232000pt;}
.ws208{word-spacing:15.237486pt;}
.ws120{word-spacing:15.253482pt;}
.ws87{word-spacing:15.253486pt;}
.wsed{word-spacing:15.274819pt;}
.ws2f3{word-spacing:15.277333pt;}
.ws9d{word-spacing:15.306820pt;}
.ws9c{word-spacing:15.306839pt;}
.ws2f7{word-spacing:15.322667pt;}
.ws65{word-spacing:15.360154pt;}
.ws2fd{word-spacing:15.368000pt;}
.ws221{word-spacing:15.413333pt;}
.ws180{word-spacing:15.413487pt;}
.ws2f4{word-spacing:15.458667pt;}
.wse{word-spacing:15.504000pt;}
.wsf7{word-spacing:15.520155pt;}
.wseb{word-spacing:15.552137pt;}
.ws1af{word-spacing:15.573489pt;}
.ws1f{word-spacing:15.626823pt;}
.ws2f1{word-spacing:15.640000pt;}
.ws14b{word-spacing:15.642823pt;}
.ws9{word-spacing:15.648000pt;}
.ws20{word-spacing:15.680157pt;}
.ws2da{word-spacing:15.685333pt;}
.ws202{word-spacing:15.706824pt;}
.wsf6{word-spacing:15.733491pt;}
.ws2d9{word-spacing:15.737067pt;}
.ws3b{word-spacing:15.738824pt;}
.ws1b0{word-spacing:15.786822pt;}
.wsc2{word-spacing:15.786825pt;}
.ws8{word-spacing:15.792000pt;}
.ws229{word-spacing:15.821333pt;}
.wsa{word-spacing:15.840000pt;}
.ws2f2{word-spacing:15.866667pt;}
.wsbc{word-spacing:15.877492pt;}
.ws203{word-spacing:15.882825pt;}
.ws175{word-spacing:15.893492pt;}
.ws21b{word-spacing:15.912000pt;}
.ws12{word-spacing:15.936000pt;}
.wsc8{word-spacing:15.946826pt;}
.ws18a{word-spacing:16.000160pt;}
.ws284{word-spacing:16.002667pt;}
.ws234{word-spacing:16.048000pt;}
.ws288{word-spacing:16.051200pt;}
.ws1a9{word-spacing:16.053494pt;}
.ws1d6{word-spacing:16.053510pt;}
.ws194{word-spacing:16.106828pt;}
.ws1cb{word-spacing:16.160130pt;}
.wsbf{word-spacing:16.160162pt;}
.ws1d7{word-spacing:16.160170pt;}
.ws2c3{word-spacing:16.184000pt;}
.ws5b{word-spacing:16.213495pt;}
.ws233{word-spacing:16.229333pt;}
.wsa2{word-spacing:16.266829pt;}
.ws98{word-spacing:16.320163pt;}
.ws1ca{word-spacing:16.373497pt;}
.ws5a{word-spacing:16.426831pt;}
.ws282{word-spacing:16.456000pt;}
.ws174{word-spacing:16.480131pt;}
.wsc4{word-spacing:16.480165pt;}
.ws283{word-spacing:16.501333pt;}
.ws17b{word-spacing:16.533479pt;}
.ws86{word-spacing:16.533499pt;}
.ws124{word-spacing:16.575690pt;}
.ws50{word-spacing:16.586833pt;}
.ws2a4{word-spacing:16.592000pt;}
.ws135{word-spacing:16.592166pt;}
.ws164{word-spacing:16.640166pt;}
.ws7f{word-spacing:16.746834pt;}
.ws2a5{word-spacing:16.773333pt;}
.wsab{word-spacing:16.800168pt;}
.ws2cf{word-spacing:16.818667pt;}
.ws122{word-spacing:16.853502pt;}
.ws121{word-spacing:16.853514pt;}
.ws70{word-spacing:16.906836pt;}
.ws275{word-spacing:16.954667pt;}
.ws11a{word-spacing:16.960170pt;}
.ws11b{word-spacing:17.013503pt;}
.ws25d{word-spacing:17.045333pt;}
.ws20b{word-spacing:17.050837pt;}
.ws274{word-spacing:17.090667pt;}
.ws19e{word-spacing:17.120171pt;}
.ws2d7{word-spacing:17.136000pt;}
.wsd3{word-spacing:17.173505pt;}
.ws29c{word-spacing:17.181333pt;}
.ws2d8{word-spacing:17.226667pt;}
.ws25e{word-spacing:17.272000pt;}
.wsac{word-spacing:17.280149pt;}
.ws19f{word-spacing:17.280173pt;}
.wsf8{word-spacing:17.280182pt;}
.ws101{word-spacing:17.280210pt;}
.ws29d{word-spacing:17.317333pt;}
.ws58{word-spacing:17.333507pt;}
.ws2e4{word-spacing:17.362667pt;}
.ws100{word-spacing:17.386819pt;}
.ws1de{word-spacing:17.386820pt;}
.wsd2{word-spacing:17.386841pt;}
.ws29f{word-spacing:17.408000pt;}
.ws1c1{word-spacing:17.440147pt;}
.ws2c{word-spacing:17.440174pt;}
.ws42{word-spacing:17.445508pt;}
.ws29{word-spacing:17.493508pt;}
.ws1b7{word-spacing:17.493521pt;}
.ws30a{word-spacing:17.498667pt;}
.ws30b{word-spacing:17.544000pt;}
.wsb9{word-spacing:17.546842pt;}
.ws1a6{word-spacing:17.546854pt;}
.ws1a7{word-spacing:17.600148pt;}
.ws18b{word-spacing:17.600156pt;}
.wsb7{word-spacing:17.600176pt;}
.ws16f{word-spacing:17.600209pt;}
.wsbb{word-spacing:17.600212pt;}
.ws1e8{word-spacing:17.605509pt;}
.ws29e{word-spacing:17.634667pt;}
.wsba{word-spacing:17.653510pt;}
.ws48{word-spacing:17.669510pt;}
.ws125{word-spacing:17.706844pt;}
.wsb8{word-spacing:17.760178pt;}
.ws2a9{word-spacing:17.770667pt;}
.ws102{word-spacing:17.813511pt;}
.ws22e{word-spacing:17.816000pt;}
.ws64{word-spacing:17.850845pt;}
.ws1c8{word-spacing:17.861333pt;}
.ws22{word-spacing:17.866845pt;}
.ws1e9{word-spacing:17.904179pt;}
.ws240{word-spacing:17.906667pt;}
.ws167{word-spacing:17.920179pt;}
.ws20a{word-spacing:17.941513pt;}
.ws1c7{word-spacing:17.952000pt;}
.ws49{word-spacing:17.973513pt;}
.ws2ec{word-spacing:17.997333pt;}
.wsfd{word-spacing:18.026847pt;}
.ws1d9{word-spacing:18.026851pt;}
.wsa1{word-spacing:18.080181pt;}
.ws246{word-spacing:18.088000pt;}
.ws2b1{word-spacing:18.133333pt;}
.wsfe{word-spacing:18.133515pt;}
.ws1e{word-spacing:18.144173pt;}
.ws209{word-spacing:18.154848pt;}
.ws2b0{word-spacing:18.178667pt;}
.ws7{word-spacing:18.200173pt;}
.ws316{word-spacing:18.200183pt;}
.wsdb{word-spacing:18.229516pt;}
.wsdc{word-spacing:18.234849pt;}
.wsff{word-spacing:18.240182pt;}
.wsc3{word-spacing:18.256174pt;}
.ws130{word-spacing:18.293516pt;}
.ws6{word-spacing:18.312174pt;}
.ws306{word-spacing:18.314667pt;}
.wsda{word-spacing:18.346826pt;}
.ws1f6{word-spacing:18.346850pt;}
.ws23d{word-spacing:18.360000pt;}
.ws43{word-spacing:18.400184pt;}
.ws305{word-spacing:18.405333pt;}
.ws59{word-spacing:18.424175pt;}
.ws2eb{word-spacing:18.450667pt;}
.ws5{word-spacing:18.480176pt;}
.ws10a{word-spacing:18.506831pt;}
.wscd{word-spacing:18.506852pt;}
.wsd7{word-spacing:18.536177pt;}
.ws26f{word-spacing:18.541333pt;}
.ws2ea{word-spacing:18.542933pt;}
.ws109{word-spacing:18.560186pt;}
.ws2d2{word-spacing:18.586667pt;}
.ws14e{word-spacing:18.613519pt;}
.ws2ba{word-spacing:18.632000pt;}
.ws1b2{word-spacing:18.666853pt;}
.ws10b{word-spacing:18.666872pt;}
.ws2c0{word-spacing:18.677333pt;}
.ws71{word-spacing:18.704187pt;}
.ws2bb{word-spacing:18.705067pt;}
.ws79{word-spacing:18.720187pt;}
.ws217{word-spacing:18.768000pt;}
.ws14f{word-spacing:18.826855pt;}
.ws222{word-spacing:18.858667pt;}
.ws2d{word-spacing:18.880189pt;}
.ws1fc{word-spacing:18.880206pt;}
.ws159{word-spacing:18.933523pt;}
.ws2bf{word-spacing:18.949333pt;}
.ws18{word-spacing:18.960000pt;}
.ws11d{word-spacing:18.986857pt;}
.ws11e{word-spacing:19.040190pt;}
.ws14{word-spacing:19.104000pt;}
.ws220{word-spacing:19.130667pt;}
.ws103{word-spacing:19.146854pt;}
.wsf1{word-spacing:19.146858pt;}
.ws9b{word-spacing:19.200192pt;}
.ws53{word-spacing:19.253526pt;}
.ws13{word-spacing:19.296000pt;}
.ws95{word-spacing:19.306860pt;}
.ws94{word-spacing:19.360194pt;}
.ws310{word-spacing:19.402667pt;}
.ws16{word-spacing:19.440000pt;}
.ws22c{word-spacing:19.448000pt;}
.ws18e{word-spacing:19.466861pt;}
.ws15{word-spacing:19.488000pt;}
.ws273{word-spacing:19.493333pt;}
.ws2d5{word-spacing:19.538667pt;}
.ws19a{word-spacing:19.573529pt;}
.ws272{word-spacing:19.584000pt;}
.ws1a0{word-spacing:19.626845pt;}
.ws1fd{word-spacing:19.626863pt;}
.ws1e2{word-spacing:19.626878pt;}
.ws44{word-spacing:19.658863pt;}
.ws183{word-spacing:19.680197pt;}
.ws78{word-spacing:19.680206pt;}
.ws4f{word-spacing:19.733531pt;}
.ws20f{word-spacing:19.765333pt;}
.wsd0{word-spacing:19.786865pt;}
.ws93{word-spacing:19.840198pt;}
.ws2b9{word-spacing:19.856000pt;}
.ws11c{word-spacing:19.893532pt;}
.ws29a{word-spacing:19.901333pt;}
.ws104{word-spacing:19.946866pt;}
.wsdd{word-spacing:19.952200pt;}
.ws166{word-spacing:20.000161pt;}
.ws12f{word-spacing:20.000200pt;}
.ws29b{word-spacing:20.037333pt;}
.ws165{word-spacing:20.053534pt;}
.ws189{word-spacing:20.106858pt;}
.ws173{word-spacing:20.106868pt;}
.ws2a1{word-spacing:20.128000pt;}
.ws2a{word-spacing:20.160202pt;}
.wsad{word-spacing:20.213535pt;}
.ws3f{word-spacing:20.266869pt;}
.ws90{word-spacing:20.320203pt;}
.ws17{word-spacing:20.352000pt;}
.ws235{word-spacing:20.354667pt;}
.wsb6{word-spacing:20.373537pt;}
.wsb4{word-spacing:20.373561pt;}
.wsb5{word-spacing:20.426862pt;}
.wsa6{word-spacing:20.426871pt;}
.wsb3{word-spacing:20.480205pt;}
.wsb0{word-spacing:20.533539pt;}
.ws13b{word-spacing:20.586873pt;}
.ws314{word-spacing:20.626667pt;}
.ws1f5{word-spacing:20.640206pt;}
.wse7{word-spacing:20.640217pt;}
.ws14a{word-spacing:20.693540pt;}
.ws10{word-spacing:20.736000pt;}
.ws80{word-spacing:20.746874pt;}
.ws30f{word-spacing:20.762667pt;}
.ws7e{word-spacing:20.800208pt;}
.ws242{word-spacing:20.808000pt;}
.ws243{word-spacing:20.853333pt;}
.ws146{word-spacing:20.906876pt;}
.ws6f{word-spacing:20.960210pt;}
.ws144{word-spacing:21.066877pt;}
.ws261{word-spacing:21.080000pt;}
.ws55{word-spacing:21.120211pt;}
.ws26a{word-spacing:21.125333pt;}
.wsea{word-spacing:21.152212pt;}
.ws54{word-spacing:21.173557pt;}
.ws266{word-spacing:21.206933pt;}
.ws154{word-spacing:21.226879pt;}
.ws1dd{word-spacing:21.280213pt;}
.ws184{word-spacing:21.280229pt;}
.ws1ea{word-spacing:21.290874pt;}
.ws1ee{word-spacing:21.301546pt;}
.ws267{word-spacing:21.306667pt;}
.wsf9{word-spacing:21.333536pt;}
.ws14d{word-spacing:21.333547pt;}
.ws269{word-spacing:21.352000pt;}
.ws67{word-spacing:21.386881pt;}
.ws268{word-spacing:21.397333pt;}
.ws2e7{word-spacing:21.433600pt;}
.ws108{word-spacing:21.440214pt;}
.ws1eb{word-spacing:21.456215pt;}
.wsfa{word-spacing:21.493548pt;}
.ws4d{word-spacing:21.493566pt;}
.wsfb{word-spacing:21.546882pt;}
.ws2df{word-spacing:21.560533pt;}
.wse9{word-spacing:21.568216pt;}
.ws278{word-spacing:21.578667pt;}
.ws19{word-spacing:21.600000pt;}
.ws17f{word-spacing:21.600216pt;}
.ws285{word-spacing:21.601333pt;}
.ws279{word-spacing:21.624000pt;}
.ws188{word-spacing:21.653550pt;}
.ws2a7{word-spacing:21.669333pt;}
.ws2ee{word-spacing:21.692000pt;}
.ws307{word-spacing:21.696533pt;}
.ws19b{word-spacing:21.706884pt;}
.ws238{word-spacing:21.714667pt;}
.ws239{word-spacing:21.760000pt;}
.ws186{word-spacing:21.760218pt;}
.ws28a{word-spacing:21.769067pt;}
.ws2e3{word-spacing:21.805333pt;}
.ws19d{word-spacing:21.813551pt;}
.ws1b5{word-spacing:21.866885pt;}
.ws2a8{word-spacing:21.896000pt;}
.ws19c{word-spacing:21.920219pt;}
.ws2a6{word-spacing:21.941333pt;}
.ws13e{word-spacing:21.973553pt;}
.ws2aa{word-spacing:21.986667pt;}
.wse4{word-spacing:22.010887pt;}
.ws2dd{word-spacing:22.022933pt;}
.ws57{word-spacing:22.026887pt;}
.ws211{word-spacing:22.032000pt;}
.wsd8{word-spacing:22.064221pt;}
.ws2ca{word-spacing:22.077333pt;}
.ws13c{word-spacing:22.080221pt;}
.ws4a{word-spacing:22.085554pt;}
.ws4c{word-spacing:22.096221pt;}
.ws4b{word-spacing:22.112190pt;}
.ws51{word-spacing:22.133555pt;}
.ws85{word-spacing:22.186889pt;}
.wsa9{word-spacing:22.190110pt;}
.wse5{word-spacing:22.202889pt;}
.wse6{word-spacing:22.208222pt;}
.ws2d3{word-spacing:22.213333pt;}
.ws200{word-spacing:22.234889pt;}
.ws82{word-spacing:22.293543pt;}
.wsa8{word-spacing:22.293556pt;}
.ws201{word-spacing:22.298890pt;}
.ws291{word-spacing:22.304000pt;}
.ws40{word-spacing:22.346872pt;}
.wsa7{word-spacing:22.346890pt;}
.ws264{word-spacing:22.349333pt;}
.wsd9{word-spacing:22.389557pt;}
.ws263{word-spacing:22.394667pt;}
.ws41{word-spacing:22.400224pt;}
.ws265{word-spacing:22.440000pt;}
.ws161{word-spacing:22.453558pt;}
.ws23c{word-spacing:22.485333pt;}
.ws83{word-spacing:22.506892pt;}
.ws1ff{word-spacing:22.522892pt;}
.ws4e{word-spacing:22.560226pt;}
.wsaa{word-spacing:22.613559pt;}
.ws212{word-spacing:22.621333pt;}
.ws1ac{word-spacing:22.666893pt;}
.wsfc{word-spacing:22.720227pt;}
.ws177{word-spacing:22.773561pt;}
.ws228{word-spacing:22.802667pt;}
.ws255{word-spacing:22.848000pt;}
.ws182{word-spacing:22.880229pt;}
.ws190{word-spacing:22.906896pt;}
.ws27a{word-spacing:22.938667pt;}
.ws147{word-spacing:22.986897pt;}
.ws15e{word-spacing:23.093564pt;}
.ws28f{word-spacing:23.120000pt;}
.ws15d{word-spacing:23.146898pt;}
.ws290{word-spacing:23.165333pt;}
.wsf5{word-spacing:23.200232pt;}
.ws27b{word-spacing:23.210667pt;}
.ws1c0{word-spacing:23.253566pt;}
.ws1c5{word-spacing:23.256000pt;}
.ws66{word-spacing:23.274899pt;}
.ws1c6{word-spacing:23.301333pt;}
.ws256{word-spacing:23.346667pt;}
.ws52{word-spacing:23.413567pt;}
.ws1c2{word-spacing:23.437333pt;}
.ws89{word-spacing:23.466901pt;}
.ws252{word-spacing:23.482667pt;}
.wscb{word-spacing:23.520235pt;}
.ws253{word-spacing:23.528000pt;}
.ws227{word-spacing:23.573333pt;}
.ws168{word-spacing:23.573569pt;}
.ws1c4{word-spacing:23.618667pt;}
.ws8a{word-spacing:23.626899pt;}
.ws8c{word-spacing:23.626903pt;}
.ws88{word-spacing:23.626929pt;}
.ws2ac{word-spacing:23.664000pt;}
.ws131{word-spacing:23.680237pt;}
.ws8b{word-spacing:23.786905pt;}
.wsb1{word-spacing:23.840238pt;}
.ws196{word-spacing:24.000240pt;}
.ws1d5{word-spacing:24.053574pt;}
.ws169{word-spacing:24.106908pt;}
.ws16a{word-spacing:24.160237pt;}
.ws15c{word-spacing:24.160242pt;}
.wsd5{word-spacing:24.213575pt;}
.ws185{word-spacing:24.266909pt;}
.ws16b{word-spacing:24.320243pt;}
.ws2{word-spacing:24.341333pt;}
.wsa4{word-spacing:24.373577pt;}
.ws9a{word-spacing:24.426911pt;}
.ws2a2{word-spacing:24.434667pt;}
.ws2a3{word-spacing:24.480000pt;}
.ws1ed{word-spacing:24.480245pt;}
.ws99{word-spacing:24.533579pt;}
.ws72{word-spacing:24.586913pt;}
.ws4{word-spacing:24.640000pt;}
.wsa3{word-spacing:24.640246pt;}
.ws312{word-spacing:24.661333pt;}
.ws91{word-spacing:24.693580pt;}
.ws92{word-spacing:24.746914pt;}
.ws313{word-spacing:24.752000pt;}
.ws106{word-spacing:24.800248pt;}
.ws123{word-spacing:24.853582pt;}
.ws223{word-spacing:24.888000pt;}
.ws28c{word-spacing:24.933333pt;}
.ws28e{word-spacing:24.978667pt;}
.wse3{word-spacing:25.018917pt;}
.ws28d{word-spacing:25.069333pt;}
.ws3a{word-spacing:25.098918pt;}
.ws187{word-spacing:25.120251pt;}
.wse2{word-spacing:25.269573pt;}
.wsca{word-spacing:25.280253pt;}
.wsc9{word-spacing:25.333587pt;}
.wsd4{word-spacing:25.493588pt;}
.ws1d4{word-spacing:25.498922pt;}
.ws171{word-spacing:25.600254pt;}
.ws172{word-spacing:25.600256pt;}
.ws170{word-spacing:25.653590pt;}
.ws198{word-spacing:25.706936pt;}
.ws21{word-spacing:25.760258pt;}
.ws28{word-spacing:25.920259pt;}
.ws2b{word-spacing:25.973593pt;}
.ws1f3{word-spacing:26.026926pt;}
.wse1{word-spacing:26.026927pt;}
.ws142{word-spacing:26.080261pt;}
.ws14c{word-spacing:26.186929pt;}
.ws143{word-spacing:26.240262pt;}
.ws176{word-spacing:26.346930pt;}
.ws2b8{word-spacing:26.565333pt;}
.ws197{word-spacing:26.773601pt;}
.ws1bf{word-spacing:26.826935pt;}
.ws1ad{word-spacing:26.880269pt;}
.ws1fa{word-spacing:26.933603pt;}
.ws1ae{word-spacing:27.040270pt;}
.ws47{word-spacing:27.045604pt;}
.ws46{word-spacing:27.072267pt;}
.ws129{word-spacing:27.093604pt;}
.ws1be{word-spacing:27.200311pt;}
.ws1e1{word-spacing:27.253606pt;}
.ws27e{word-spacing:27.290667pt;}
.ws128{word-spacing:27.360274pt;}
.ws280{word-spacing:27.381333pt;}
.ws281{word-spacing:27.426667pt;}
.ws15a{word-spacing:27.466941pt;}
.ws37{word-spacing:27.477608pt;}
.ws36{word-spacing:27.610943pt;}
.ws27f{word-spacing:27.698667pt;}
.ws254{word-spacing:27.789333pt;}
.ws141{word-spacing:27.840278pt;}
.wscc{word-spacing:27.893612pt;}
.ws1a4{word-spacing:27.946946pt;}
.ws20c{word-spacing:28.016000pt;}
.ws107{word-spacing:28.053614pt;}
.ws1b4{word-spacing:28.106948pt;}
.ws15f{word-spacing:28.213615pt;}
.ws17a{word-spacing:28.266949pt;}
.ws1f4{word-spacing:28.373617pt;}
.ws2c7{word-spacing:28.378667pt;}
.ws2c8{word-spacing:28.424000pt;}
.ws179{word-spacing:28.426951pt;}
.ws12b{word-spacing:28.586953pt;}
.ws12a{word-spacing:28.640286pt;}
.wsa5{word-spacing:28.693620pt;}
.ws1bd{word-spacing:28.746954pt;}
.ws178{word-spacing:28.800288pt;}
.ws56{word-spacing:28.853622pt;}
.ws1e0{word-spacing:28.906956pt;}
.wsa0{word-spacing:28.960290pt;}
.ws1df{word-spacing:29.013623pt;}
.wsf0{word-spacing:29.066957pt;}
.wsef{word-spacing:29.173625pt;}
.ws1b3{word-spacing:29.280293pt;}
.ws1a2{word-spacing:29.546962pt;}
.ws162{word-spacing:29.760298pt;}
.ws1dc{word-spacing:29.813631pt;}
.wsde{word-spacing:29.850965pt;}
.ws16c{word-spacing:29.866965pt;}
.ws16d{word-spacing:29.920295pt;}
.ws16e{word-spacing:29.920299pt;}
.ws160{word-spacing:30.293636pt;}
.wsdf{word-spacing:30.506972pt;}
.ws1f9{word-spacing:30.560306pt;}
.ws23a{word-spacing:30.645333pt;}
.ws2ff{word-spacing:30.736000pt;}
.ws2fe{word-spacing:30.872000pt;}
.ws8f{word-spacing:30.986977pt;}
.ws8e{word-spacing:31.093644pt;}
.ws3e{word-spacing:31.520315pt;}
.ws158{word-spacing:31.680317pt;}
.ws3c{word-spacing:32.266996pt;}
.ws35{word-spacing:32.538992pt;}
.ws3d{word-spacing:32.640326pt;}
.wsb2{word-spacing:33.600336pt;}
.ws17e{word-spacing:33.973673pt;}
.ws1a5{word-spacing:34.667013pt;}
.wsf4{word-spacing:34.880349pt;}
.wsf2{word-spacing:35.093684pt;}
.wsf3{word-spacing:35.253686pt;}
.wse0{word-spacing:35.280353pt;}
.ws25a{word-spacing:35.360000pt;}
.ws25b{word-spacing:35.586667pt;}
.ws259{word-spacing:35.677333pt;}
.ws2f{word-spacing:35.755025pt;}
.ws2ae{word-spacing:35.904000pt;}
.ws2af{word-spacing:35.949333pt;}
.ws2ad{word-spacing:35.994667pt;}
.ws2e{word-spacing:36.000360pt;}
.ws9e{word-spacing:36.480365pt;}
.ws9f{word-spacing:36.640366pt;}
.ws157{word-spacing:36.800368pt;}
.ws13a{word-spacing:38.329760pt;}
.ws1da{word-spacing:40.533739pt;}
.ws2fa{word-spacing:40.845333pt;}
.ws2f8{word-spacing:41.026667pt;}
.ws2f9{word-spacing:41.072000pt;}
.ws2fb{word-spacing:41.117333pt;}
.ws311{word-spacing:41.253333pt;}
.ws2fc{word-spacing:41.344000pt;}
.ws1a1{word-spacing:43.253766pt;}
.ws1fb{word-spacing:49.813831pt;}
.ws163{word-spacing:57.812611pt;}
.ws10c{word-spacing:58.367291pt;}
.ws12c{word-spacing:68.183753pt;}
.ws150{word-spacing:71.460547pt;}
.ws7c{word-spacing:140.117362pt;}
._2a{margin-left:-57.655787pt;}
._29{margin-left:-55.870373pt;}
._22{margin-left:-53.823680pt;}
._2b{margin-left:-50.818960pt;}
._28{margin-left:-46.159467pt;}
._20{margin-left:-44.548240pt;}
._21{margin-left:-43.372480pt;}
._25{margin-left:-41.282240pt;}
._1f{margin-left:-39.888747pt;}
._24{margin-left:-38.538800pt;}
._23{margin-left:-36.884027pt;}
._27{margin-left:-30.831040pt;}
._d{margin-left:-28.266951pt;}
._26{margin-left:-25.169973pt;}
._16{margin-left:-23.200261pt;}
._1e{margin-left:-21.754866pt;}
._1b{margin-left:-20.426898pt;}
._39{margin-left:-17.173477pt;}
._36{margin-left:-16.160172pt;}
._18{margin-left:-14.517458pt;}
._38{margin-left:-13.173629pt;}
._3{margin-left:-7.680000pt;}
._4{margin-left:-4.704000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._a{width:1.333347pt;}
._3a{width:7.797333pt;}
._35{width:8.906756pt;}
._12{width:10.239922pt;}
._13{width:11.946767pt;}
._11{width:12.906464pt;}
._15{width:13.973387pt;}
._5{width:15.120000pt;}
._14{width:16.053321pt;}
._f{width:17.653510pt;}
._8{width:19.264183pt;}
._7{width:20.496000pt;}
._6{width:22.080000pt;}
._e{width:23.680263pt;}
._9{width:25.120251pt;}
._19{width:26.453598pt;}
._34{width:27.413607pt;}
._c{width:28.992295pt;}
._10{width:29.973633pt;}
._1a{width:31.360314pt;}
._2d{width:33.066863pt;}
._2c{width:38.186905pt;}
._37{width:39.413689pt;}
._3c{width:41.888000pt;}
._1d{width:57.855277pt;}
._32{width:68.820473pt;}
._3b{width:83.166400pt;}
._b{width:92.219404pt;}
._17{width:143.379379pt;}
._30{width:273.617939pt;}
._33{width:282.919156pt;}
._31{width:290.684371pt;}
._2f{width:465.615507pt;}
._1c{width:710.777054pt;}
._2e{width:919.585119pt;}
.fs9{font-size:27.835200pt;}
.fs18{font-size:30.218133pt;}
.fs8{font-size:32.103467pt;}
.fse{font-size:35.552000pt;}
.fsd{font-size:37.332800pt;}
.fsf{font-size:38.895467pt;}
.fs11{font-size:39.112000pt;}
.fs14{font-size:39.113600pt;}
.fsa{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fs12{font-size:43.544533pt;}
.fs15{font-size:43.546667pt;}
.fs17{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fsc{font-size:53.333867pt;}
.fs7{font-size:56.000533pt;}
.fs10{font-size:60.418133pt;}
.fs13{font-size:60.753600pt;}
.fs16{font-size:60.756267pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:48.075600pt;}
.y74{bottom:52.303547pt;}
.y1aa{bottom:52.303733pt;}
.y209{bottom:52.305360pt;}
.y215{bottom:52.306080pt;}
.yb8{bottom:52.306747pt;}
.y2ba{bottom:52.307200pt;}
.y1dd{bottom:52.309813pt;}
.y8f{bottom:52.456320pt;}
.y1ea{bottom:52.457760pt;}
.y28f{bottom:55.166667pt;}
.y2f3{bottom:57.630667pt;}
.y168{bottom:58.659413pt;}
.y2{bottom:60.086668pt;}
.y226{bottom:60.470000pt;}
.y42{bottom:62.740133pt;}
.y2b9{bottom:65.612533pt;}
.y73{bottom:68.330373pt;}
.y1a9{bottom:68.330560pt;}
.y208{bottom:68.332187pt;}
.y214{bottom:68.332907pt;}
.yb7{bottom:68.333573pt;}
.y1dc{bottom:68.336640pt;}
.y28e{bottom:68.472000pt;}
.y8e{bottom:68.483147pt;}
.y1e9{bottom:68.484587pt;}
.yd0{bottom:69.691520pt;}
.y12e{bottom:69.997467pt;}
.y100{bottom:70.373840pt;}
.y316{bottom:71.008933pt;}
.y2f2{bottom:71.015333pt;}
.y337{bottom:71.031333pt;}
.y23a{bottom:74.225360pt;}
.y167{bottom:74.606240pt;}
.y1{bottom:74.753335pt;}
.y225{bottom:76.496827pt;}
.y28d{bottom:81.777333pt;}
.y72{bottom:84.277200pt;}
.y1a8{bottom:84.277387pt;}
.y207{bottom:84.279013pt;}
.y213{bottom:84.279733pt;}
.yb6{bottom:84.280400pt;}
.y1db{bottom:84.280480pt;}
.y315{bottom:84.314267pt;}
.y2f1{bottom:84.320667pt;}
.y336{bottom:84.336667pt;}
.y8d{bottom:84.509973pt;}
.y1e8{bottom:84.511413pt;}
.ycf{bottom:85.638347pt;}
.y12d{bottom:85.944293pt;}
.yff{bottom:86.400667pt;}
.y2b8{bottom:89.650400pt;}
.y239{bottom:90.252187pt;}
.y166{bottom:90.633067pt;}
.y224{bottom:92.523653pt;}
.y28c{bottom:95.162000pt;}
.y314{bottom:97.619600pt;}
.y2f0{bottom:97.626000pt;}
.y335{bottom:97.642000pt;}
.y71{bottom:100.304027pt;}
.y1a7{bottom:100.304213pt;}
.y206{bottom:100.305840pt;}
.y212{bottom:100.306560pt;}
.yb5{bottom:100.307227pt;}
.y8c{bottom:100.456800pt;}
.y1e7{bottom:100.458240pt;}
.yce{bottom:101.665173pt;}
.y12c{bottom:101.971120pt;}
.yfe{bottom:102.427493pt;}
.y41{bottom:103.180773pt;}
.y238{bottom:106.279013pt;}
.y1da{bottom:108.320720pt;}
.y28b{bottom:108.467333pt;}
.y223{bottom:108.470480pt;}
.y313{bottom:111.004267pt;}
.y2ef{bottom:111.010667pt;}
.y334{bottom:111.026667pt;}
.y165{bottom:114.595200pt;}
.y70{bottom:116.330853pt;}
.y1a6{bottom:116.331040pt;}
.y205{bottom:116.332667pt;}
.y211{bottom:116.333387pt;}
.yb4{bottom:116.334053pt;}
.y8b{bottom:116.483627pt;}
.y1e6{bottom:116.489920pt;}
.ycd{bottom:117.692000pt;}
.y12b{bottom:117.997947pt;}
.yfd{bottom:118.374320pt;}
.y40{bottom:119.207600pt;}
.y28a{bottom:121.852000pt;}
.y237{bottom:122.225840pt;}
.y312{bottom:124.309600pt;}
.y2ee{bottom:124.316000pt;}
.y333{bottom:124.332000pt;}
.y222{bottom:124.497307pt;}
.y2b7{bottom:129.632667pt;}
.y6f{bottom:132.277680pt;}
.y1a5{bottom:132.277867pt;}
.y204{bottom:132.279493pt;}
.y210{bottom:132.280213pt;}
.yb3{bottom:132.280880pt;}
.y1e5{bottom:132.503413pt;}
.y8a{bottom:132.510453pt;}
.ycc{bottom:133.638827pt;}
.y12a{bottom:133.944773pt;}
.yfc{bottom:134.401147pt;}
.y3f{bottom:135.154427pt;}
.y311{bottom:137.614933pt;}
.y2ed{bottom:137.621333pt;}
.y332{bottom:137.637333pt;}
.y236{bottom:138.252667pt;}
.y221{bottom:140.524133pt;}
.y2b6{bottom:143.015867pt;}
.y289{bottom:145.814133pt;}
.y6e{bottom:148.304507pt;}
.y1a4{bottom:148.304693pt;}
.y203{bottom:148.306320pt;}
.y20f{bottom:148.307040pt;}
.yb2{bottom:148.307707pt;}
.y1e4{bottom:148.450240pt;}
.y1d9{bottom:148.454453pt;}
.y89{bottom:148.457280pt;}
.ycb{bottom:149.665653pt;}
.y127{bottom:149.969973pt;}
.y129{bottom:149.971600pt;}
.yfb{bottom:150.427973pt;}
.y310{bottom:150.999600pt;}
.y2ec{bottom:151.006000pt;}
.y331{bottom:151.022000pt;}
.y3e{bottom:151.181253pt;}
.y235{bottom:154.279493pt;}
.y164{bottom:154.658933pt;}
.y128{bottom:155.867733pt;}
.y2b5{bottom:156.319867pt;}
.y220{bottom:156.470960pt;}
.y30f{bottom:164.304933pt;}
.y2eb{bottom:164.311333pt;}
.y330{bottom:164.327333pt;}
.y6d{bottom:164.331333pt;}
.y1a3{bottom:164.331520pt;}
.y202{bottom:164.333147pt;}
.y20e{bottom:164.333867pt;}
.yb1{bottom:164.334533pt;}
.y1e3{bottom:164.477067pt;}
.y1d8{bottom:164.481280pt;}
.y88{bottom:164.484107pt;}
.yca{bottom:165.692480pt;}
.y124{bottom:165.993920pt;}
.y126{bottom:165.996800pt;}
.yfa{bottom:166.368267pt;}
.y3d{bottom:167.208080pt;}
.y2b4{bottom:169.625200pt;}
.y234{bottom:170.226320pt;}
.y163{bottom:170.605760pt;}
.y125{bottom:171.892933pt;}
.y21f{bottom:172.497787pt;}
.y30e{bottom:177.689600pt;}
.y2ea{bottom:177.696000pt;}
.y32f{bottom:177.712000pt;}
.y6c{bottom:180.278160pt;}
.y1a2{bottom:180.278347pt;}
.y201{bottom:180.279973pt;}
.yb0{bottom:180.281360pt;}
.y1e2{bottom:180.503893pt;}
.y1d7{bottom:180.508107pt;}
.y87{bottom:180.510933pt;}
.yc9{bottom:181.639307pt;}
.y123{bottom:181.940747pt;}
.y3c{bottom:183.154907pt;}
.y233{bottom:186.253147pt;}
.y162{bottom:186.632587pt;}
.y21e{bottom:188.524613pt;}
.yf9{bottom:190.408507pt;}
.y32e{bottom:190.949733pt;}
.y30d{bottom:190.994933pt;}
.y2e9{bottom:191.001333pt;}
.y20d{bottom:192.366267pt;}
.y2b3{bottom:193.662933pt;}
.y288{bottom:193.799733pt;}
.y6b{bottom:196.304987pt;}
.y1a1{bottom:196.305173pt;}
.y200{bottom:196.306800pt;}
.yaf{bottom:196.308187pt;}
.y1e1{bottom:196.450720pt;}
.y1d6{bottom:196.454933pt;}
.y86{bottom:196.457760pt;}
.yc8{bottom:197.666133pt;}
.y122{bottom:197.967573pt;}
.y3b{bottom:199.181733pt;}
.y232{bottom:202.279973pt;}
.y161{bottom:202.659413pt;}
.y32d{bottom:204.255067pt;}
.y30c{bottom:204.300267pt;}
.y2e8{bottom:204.306667pt;}
.y21d{bottom:204.471440pt;}
.y20c{bottom:205.750933pt;}
.y287{bottom:207.184400pt;}
.y6a{bottom:212.331813pt;}
.y1a0{bottom:212.332000pt;}
.y1ff{bottom:212.333627pt;}
.yae{bottom:212.335013pt;}
.y1e0{bottom:212.477547pt;}
.y1d5{bottom:212.481760pt;}
.y85{bottom:212.484587pt;}
.yc7{bottom:213.692960pt;}
.y121{bottom:213.994400pt;}
.y3a{bottom:215.208560pt;}
.y32c{bottom:217.639733pt;}
.y30b{bottom:217.684933pt;}
.y2e7{bottom:217.691333pt;}
.y231{bottom:218.226800pt;}
.y160{bottom:218.606240pt;}
.y20b{bottom:219.056267pt;}
.y286{bottom:220.489733pt;}
.y21c{bottom:220.498267pt;}
.y69{bottom:228.278640pt;}
.y19f{bottom:228.278827pt;}
.y1fe{bottom:228.280453pt;}
.yad{bottom:228.281840pt;}
.y1df{bottom:228.504373pt;}
.y1d4{bottom:228.508587pt;}
.y84{bottom:228.511413pt;}
.yc6{bottom:229.639787pt;}
.y120{bottom:229.941227pt;}
.y32b{bottom:230.945067pt;}
.y30a{bottom:230.990267pt;}
.y2e6{bottom:230.996667pt;}
.y39{bottom:231.155387pt;}
.y20a{bottom:232.440933pt;}
.y285{bottom:233.795067pt;}
.y230{bottom:234.253627pt;}
.y15d{bottom:234.631440pt;}
.y15f{bottom:234.633067pt;}
.y2b2{bottom:235.904933pt;}
.y21b{bottom:236.525093pt;}
.yf8{bottom:238.408987pt;}
.y15e{bottom:240.529067pt;}
.y68{bottom:244.305467pt;}
.y19e{bottom:244.305653pt;}
.y1fd{bottom:244.307280pt;}
.yac{bottom:244.308667pt;}
.y32a{bottom:244.329733pt;}
.y309{bottom:244.374933pt;}
.y2e5{bottom:244.381333pt;}
.y1de{bottom:244.451200pt;}
.y1d3{bottom:244.455413pt;}
.y83{bottom:244.458240pt;}
.yc5{bottom:245.666613pt;}
.y11f{bottom:245.968053pt;}
.y284{bottom:247.179733pt;}
.y38{bottom:247.182213pt;}
.y14{bottom:249.134667pt;}
.y2b1{bottom:249.210267pt;}
.y22f{bottom:250.280453pt;}
.y15c{bottom:250.658267pt;}
.y15a{bottom:250.661040pt;}
.y21a{bottom:252.471920pt;}
.yf7{bottom:254.435813pt;}
.y15b{bottom:256.554267pt;}
.y2e4{bottom:257.635067pt;}
.y308{bottom:257.680267pt;}
.y67{bottom:260.332293pt;}
.y19d{bottom:260.332480pt;}
.y1fc{bottom:260.334107pt;}
.y283{bottom:260.452933pt;}
.y82{bottom:260.478027pt;}
.y1d2{bottom:260.482240pt;}
.yc4{bottom:261.693440pt;}
.y11e{bottom:261.994880pt;}
.y2b0{bottom:262.594933pt;}
.y37{bottom:263.209040pt;}
.y22e{bottom:266.227280pt;}
.y157{bottom:266.603040pt;}
.y159{bottom:266.607867pt;}
.yab{bottom:268.346400pt;}
.y219{bottom:268.498747pt;}
.yf6{bottom:270.382640pt;}
.y2e3{bottom:270.940400pt;}
.y307{bottom:270.985600pt;}
.y158{bottom:272.579467pt;}
.y282{bottom:273.746933pt;}
.y2af{bottom:275.890267pt;}
.y66{bottom:276.279120pt;}
.y19c{bottom:276.279307pt;}
.y1fb{bottom:276.280933pt;}
.y81{bottom:276.504853pt;}
.y1d1{bottom:276.509067pt;}
.yc3{bottom:277.640267pt;}
.y11d{bottom:277.941707pt;}
.y36{bottom:279.155867pt;}
.y22d{bottom:282.254107pt;}
.y156{bottom:282.629867pt;}
.y2e2{bottom:284.313733pt;}
.y329{bottom:284.325067pt;}
.y306{bottom:284.370267pt;}
.y218{bottom:284.525573pt;}
.yf5{bottom:286.409467pt;}
.y281{bottom:287.131600pt;}
.y2ae{bottom:289.274933pt;}
.y65{bottom:292.305947pt;}
.y19b{bottom:292.306133pt;}
.y1fa{bottom:292.307760pt;}
.y80{bottom:292.451680pt;}
.y1d0{bottom:292.455893pt;}
.yc2{bottom:293.667093pt;}
.y11c{bottom:293.968533pt;}
.y2e1{bottom:297.619067pt;}
.y305{bottom:297.624133pt;}
.y328{bottom:297.630400pt;}
.y22c{bottom:298.280933pt;}
.y155{bottom:298.656693pt;}
.y280{bottom:300.436933pt;}
.y217{bottom:300.472400pt;}
.yf4{bottom:302.436293pt;}
.y35{bottom:303.193600pt;}
.y13{bottom:306.334667pt;}
.y64{bottom:308.332773pt;}
.y19a{bottom:308.332960pt;}
.y1f9{bottom:308.334587pt;}
.yaa{bottom:308.407413pt;}
.y7f{bottom:308.478507pt;}
.y1cf{bottom:308.482720pt;}
.y2ad{bottom:309.232933pt;}
.yc1{bottom:309.693920pt;}
.y11b{bottom:309.995360pt;}
.y2e0{bottom:311.003733pt;}
.y304{bottom:311.008800pt;}
.y327{bottom:311.015067pt;}
.y27f{bottom:313.821600pt;}
.y22b{bottom:314.227760pt;}
.y154{bottom:314.603520pt;}
.yf3{bottom:318.383120pt;}
.y2ac{bottom:322.617600pt;}
.y63{bottom:324.279600pt;}
.y199{bottom:324.279787pt;}
.y1f8{bottom:324.281413pt;}
.y2df{bottom:324.309067pt;}
.y303{bottom:324.314133pt;}
.y326{bottom:324.320400pt;}
.y346{bottom:324.320667pt;}
.ya9{bottom:324.434240pt;}
.y7e{bottom:324.505333pt;}
.y1ce{bottom:324.509547pt;}
.y216{bottom:324.510133pt;}
.yc0{bottom:325.640747pt;}
.y11a{bottom:325.942187pt;}
.y27e{bottom:327.126933pt;}
.y22a{bottom:330.254587pt;}
.y153{bottom:330.630347pt;}
.yf2{bottom:334.409947pt;}
.y2ab{bottom:335.899467pt;}
.y2de{bottom:337.614400pt;}
.y302{bottom:337.619467pt;}
.y325{bottom:337.625733pt;}
.y345{bottom:337.626000pt;}
.y62{bottom:340.306427pt;}
.y198{bottom:340.306613pt;}
.y1f7{bottom:340.308240pt;}
.ya8{bottom:340.381067pt;}
.y27d{bottom:340.432267pt;}
.y7d{bottom:340.452160pt;}
.y1cd{bottom:340.456373pt;}
.ybf{bottom:341.667573pt;}
.y119{bottom:341.969013pt;}
.y34{bottom:345.751067pt;}
.y229{bottom:346.281413pt;}
.y152{bottom:346.657173pt;}
.y2aa{bottom:349.204800pt;}
.yf1{bottom:350.436773pt;}
.y2dd{bottom:350.999067pt;}
.y301{bottom:351.004133pt;}
.y324{bottom:351.010400pt;}
.y344{bottom:351.010667pt;}
.y27c{bottom:353.816933pt;}
.y61{bottom:356.333253pt;}
.y197{bottom:356.333440pt;}
.y1f6{bottom:356.335067pt;}
.ya7{bottom:356.407893pt;}
.y7c{bottom:356.478987pt;}
.y1cc{bottom:356.483200pt;}
.ybe{bottom:357.696213pt;}
.y118{bottom:357.995840pt;}
.y228{bottom:362.228240pt;}
.y151{bottom:362.604000pt;}
.y12{bottom:363.534667pt;}
.y2dc{bottom:364.304400pt;}
.y300{bottom:364.309467pt;}
.y323{bottom:364.315733pt;}
.y343{bottom:364.316000pt;}
.yf0{bottom:366.383600pt;}
.y27b{bottom:367.122267pt;}
.y2a9{bottom:369.230800pt;}
.y60{bottom:372.280080pt;}
.y196{bottom:372.280267pt;}
.y1f5{bottom:372.281893pt;}
.ya6{bottom:372.434720pt;}
.y7b{bottom:372.505813pt;}
.y1cb{bottom:372.510027pt;}
.y117{bottom:373.942667pt;}
.y2db{bottom:377.609733pt;}
.y2ff{bottom:377.614800pt;}
.y322{bottom:377.621067pt;}
.y342{bottom:377.621333pt;}
.y227{bottom:378.255067pt;}
.y150{bottom:378.630827pt;}
.y27a{bottom:380.506933pt;}
.ybd{bottom:381.656453pt;}
.yef{bottom:382.410427pt;}
.y2a8{bottom:382.536133pt;}
.y33{bottom:384.884800pt;}
.y5f{bottom:388.306907pt;}
.y195{bottom:388.307093pt;}
.y1f4{bottom:388.308720pt;}
.ya5{bottom:388.381547pt;}
.y7a{bottom:388.452640pt;}
.y1ca{bottom:388.456853pt;}
.y116{bottom:389.969493pt;}
.y2da{bottom:390.994400pt;}
.y2fe{bottom:390.999467pt;}
.y321{bottom:391.005733pt;}
.y341{bottom:391.006000pt;}
.y279{bottom:393.812267pt;}
.y14f{bottom:394.657653pt;}
.y2a7{bottom:395.920800pt;}
.y32{bottom:398.264800pt;}
.yee{bottom:398.437253pt;}
.y2d9{bottom:404.299733pt;}
.y2fd{bottom:404.304800pt;}
.y320{bottom:404.311067pt;}
.y340{bottom:404.311333pt;}
.y5e{bottom:404.333733pt;}
.y194{bottom:404.333920pt;}
.y1f3{bottom:404.335547pt;}
.ya4{bottom:404.408373pt;}
.y79{bottom:404.479467pt;}
.y1c9{bottom:404.483680pt;}
.y115{bottom:405.996320pt;}
.y278{bottom:407.117600pt;}
.y2a6{bottom:409.226133pt;}
.y14e{bottom:410.604480pt;}
.y31{bottom:411.572800pt;}
.yed{bottom:414.384080pt;}
.y2d8{bottom:417.684400pt;}
.y2fc{bottom:417.689467pt;}
.y31f{bottom:417.695733pt;}
.y33f{bottom:417.696000pt;}
.y272{bottom:418.404720pt;}
.y193{bottom:420.280747pt;}
.y1f2{bottom:420.282373pt;}
.ya3{bottom:420.435200pt;}
.y277{bottom:420.502267pt;}
.y78{bottom:420.506293pt;}
.y1c8{bottom:420.510507pt;}
.ybc{bottom:421.643520pt;}
.y114{bottom:421.943147pt;}
.y2a5{bottom:422.610800pt;}
.y11{bottom:423.340000pt;}
.y30{bottom:424.880800pt;}
.y14d{bottom:426.631307pt;}
.y5d{bottom:428.296000pt;}
.yec{bottom:430.410907pt;}
.y271{bottom:430.425893pt;}
.y2d7{bottom:430.989733pt;}
.y2fb{bottom:430.994800pt;}
.y31e{bottom:431.001067pt;}
.y33e{bottom:431.001333pt;}
.y276{bottom:433.807600pt;}
.y2a4{bottom:435.916133pt;}
.y192{bottom:436.307573pt;}
.y1f1{bottom:436.309200pt;}
.ya2{bottom:436.382027pt;}
.y77{bottom:436.453120pt;}
.y1c7{bottom:436.457333pt;}
.ybb{bottom:437.670347pt;}
.y113{bottom:437.969973pt;}
.y2f{bottom:438.260800pt;}
.y270{bottom:442.447080pt;}
.y14c{bottom:442.658133pt;}
.y2d6{bottom:444.295067pt;}
.y2fa{bottom:444.300133pt;}
.y31d{bottom:444.306400pt;}
.y33d{bottom:444.306667pt;}
.yeb{bottom:446.437733pt;}
.y275{bottom:447.192267pt;}
.y2a3{bottom:449.221467pt;}
.y2e{bottom:451.568800pt;}
.y191{bottom:452.334400pt;}
.y1f0{bottom:452.336027pt;}
.ya1{bottom:452.408853pt;}
.y76{bottom:452.479947pt;}
.y1c6{bottom:452.484160pt;}
.yba{bottom:453.697173pt;}
.y112{bottom:453.996800pt;}
.y26f{bottom:454.393600pt;}
.y2d5{bottom:457.679733pt;}
.y2f9{bottom:457.684800pt;}
.y31c{bottom:457.691067pt;}
.y33c{bottom:457.691333pt;}
.y274{bottom:460.497600pt;}
.y2a2{bottom:462.606133pt;}
.y2d{bottom:464.948800pt;}
.y26e{bottom:466.414787pt;}
.y190{bottom:468.281227pt;}
.y1ef{bottom:468.282853pt;}
.ya0{bottom:468.435680pt;}
.y5c{bottom:468.506773pt;}
.y1c5{bottom:468.510987pt;}
.yb9{bottom:469.644000pt;}
.y2d4{bottom:470.985067pt;}
.y2f8{bottom:470.990133pt;}
.y31b{bottom:470.996400pt;}
.y33b{bottom:470.996667pt;}
.y2a1{bottom:475.911467pt;}
.y10{bottom:477.934667pt;}
.y2c{bottom:478.256800pt;}
.y26d{bottom:478.435960pt;}
.y261{bottom:478.467960pt;}
.y18f{bottom:484.308053pt;}
.y1ee{bottom:484.309680pt;}
.y2d3{bottom:484.369733pt;}
.y2f7{bottom:484.374800pt;}
.y31a{bottom:484.381067pt;}
.y33a{bottom:484.381333pt;}
.y9f{bottom:484.382507pt;}
.y5b{bottom:484.453600pt;}
.y1c4{bottom:484.457813pt;}
.y273{bottom:484.459733pt;}
.y2a0{bottom:489.273067pt;}
.y26c{bottom:490.457147pt;}
.y260{bottom:490.489147pt;}
.y2b{bottom:491.564800pt;}
.y187{bottom:493.984120pt;}
.y110{bottom:495.798373pt;}
.y2d2{bottom:497.675067pt;}
.y2f6{bottom:497.680133pt;}
.y319{bottom:497.686400pt;}
.y339{bottom:497.686667pt;}
.y14b{bottom:498.822013pt;}
.y1ed{bottom:500.333760pt;}
.y18e{bottom:500.334880pt;}
.y9c{bottom:500.409040pt;}
.y9e{bottom:500.409333pt;}
.y5a{bottom:500.480427pt;}
.y1c3{bottom:500.484640pt;}
.y26b{bottom:502.403667pt;}
.y25f{bottom:502.435667pt;}
.y29f{bottom:502.578400pt;}
.y2a{bottom:504.944800pt;}
.ye9{bottom:505.422307pt;}
.y9d{bottom:506.305467pt;}
.y338{bottom:510.938933pt;}
.y2d1{bottom:510.980400pt;}
.y2f5{bottom:510.985467pt;}
.y318{bottom:510.991733pt;}
.y26a{bottom:514.424853pt;}
.y25e{bottom:514.456853pt;}
.y17b{bottom:514.851400pt;}
.y1ec{bottom:516.280587pt;}
.y18d{bottom:516.281707pt;}
.y9b{bottom:516.435867pt;}
.y59{bottom:516.507253pt;}
.y1c2{bottom:516.511467pt;}
.y101{bottom:516.711573pt;}
.y29{bottom:518.248800pt;}
.y141{bottom:519.706907pt;}
.ye8{bottom:521.902107pt;}
.y29e{bottom:522.536400pt;}
.y317{bottom:524.312267pt;}
.y2d0{bottom:524.365067pt;}
.y2f4{bottom:524.370133pt;}
.y269{bottom:526.446027pt;}
.y25d{bottom:526.478027pt;}
.y136{bottom:526.825280pt;}
.y12f{bottom:527.539080pt;}
.y169{bottom:527.592653pt;}
.y18c{bottom:532.308453pt;}
.y9a{bottom:532.382693pt;}
.y58{bottom:532.454080pt;}
.y1c1{bottom:532.458293pt;}
.ye7{bottom:533.923280pt;}
.y29d{bottom:535.921067pt;}
.y2cf{bottom:537.617600pt;}
.yf{bottom:537.740000pt;}
.y268{bottom:538.467213pt;}
.y25c{bottom:538.499213pt;}
.y1eb{bottom:540.320827pt;}
.y35c{bottom:540.465733pt;}
.y102{bottom:544.803827pt;}
.ye6{bottom:545.944467pt;}
.y99{bottom:548.409520pt;}
.y57{bottom:548.480907pt;}
.y1c0{bottom:548.485120pt;}
.y29c{bottom:549.226400pt;}
.y267{bottom:550.413733pt;}
.y25b{bottom:550.445733pt;}
.y2ce{bottom:551.002267pt;}
.y137{bottom:552.248080pt;}
.y16a{bottom:552.996933pt;}
.y35b{bottom:553.771067pt;}
.y18b{bottom:556.348693pt;}
.y28{bottom:557.022133pt;}
.ye5{bottom:557.890987pt;}
.y266{bottom:562.434920pt;}
.y25a{bottom:562.466920pt;}
.y29b{bottom:562.611067pt;}
.y174{bottom:563.899853pt;}
.y2cd{bottom:564.307600pt;}
.y98{bottom:564.436347pt;}
.y56{bottom:564.507733pt;}
.y1bf{bottom:564.511947pt;}
.y358{bottom:567.154400pt;}
.y35a{bottom:567.155733pt;}
.y130{bottom:569.907160pt;}
.ye4{bottom:569.912173pt;}
.y27{bottom:570.330133pt;}
.y359{bottom:572.144800pt;}
.y103{bottom:572.896080pt;}
.y265{bottom:574.456093pt;}
.y259{bottom:574.488093pt;}
.y29a{bottom:575.916400pt;}
.y2cc{bottom:577.612933pt;}
.y138{bottom:577.670880pt;}
.y16b{bottom:578.420773pt;}
.y97{bottom:580.383173pt;}
.y355{bottom:580.454533pt;}
.y55{bottom:580.454560pt;}
.y1be{bottom:580.458773pt;}
.y357{bottom:580.459733pt;}
.ye3{bottom:581.933347pt;}
.y24{bottom:583.706000pt;}
.y26{bottom:583.710133pt;}
.y186{bottom:583.895053pt;}
.y356{bottom:585.524267pt;}
.y264{bottom:586.477280pt;}
.y258{bottom:586.509280pt;}
.y25{bottom:587.640800pt;}
.y299{bottom:589.221733pt;}
.y2cb{bottom:590.997600pt;}
.y352{bottom:593.823600pt;}
.y354{bottom:593.839200pt;}
.ye2{bottom:593.954533pt;}
.y96{bottom:596.410000pt;}
.y54{bottom:596.481387pt;}
.y1bd{bottom:596.485600pt;}
.y21{bottom:597.010000pt;}
.y23{bottom:597.014000pt;}
.y263{bottom:598.423800pt;}
.y257{bottom:598.455800pt;}
.y353{bottom:598.828267pt;}
.y175{bottom:600.207053pt;}
.y104{bottom:601.007773pt;}
.y22{bottom:601.020400pt;}
.y17c{bottom:601.997587pt;}
.y14a{bottom:602.198680pt;}
.y185{bottom:602.212253pt;}
.y298{bottom:602.606400pt;}
.y139{bottom:603.093680pt;}
.y16c{bottom:603.844613pt;}
.y2ca{bottom:604.302933pt;}
.y18a{bottom:604.349173pt;}
.ye1{bottom:605.901053pt;}
.y351{bottom:607.128933pt;}
.ye{bottom:610.059998pt;}
.y1e{bottom:610.317467pt;}
.y20{bottom:610.318000pt;}
.y262{bottom:610.444987pt;}
.y256{bottom:610.476987pt;}
.y131{bottom:612.294787pt;}
.y95{bottom:612.436827pt;}
.y53{bottom:612.508213pt;}
.y1bc{bottom:612.512427pt;}
.y1f{bottom:614.324267pt;}
.y297{bottom:615.911733pt;}
.y2c9{bottom:617.687600pt;}
.ye0{bottom:617.922240pt;}
.y189{bottom:620.296000pt;}
.y149{bottom:620.537347pt;}
.y184{bottom:620.553587pt;}
.y24e{bottom:622.519493pt;}
.y142{bottom:622.862547pt;}
.y1d{bottom:623.697467pt;}
.y1c{bottom:627.703867pt;}
.y94{bottom:628.383653pt;}
.y52{bottom:628.455040pt;}
.y1bb{bottom:628.459253pt;}
.y13a{bottom:628.536040pt;}
.y105{bottom:629.100027pt;}
.y16d{bottom:629.268453pt;}
.ydf{bottom:629.943413pt;}
.y10f{bottom:630.730907pt;}
.y2c8{bottom:630.992933pt;}
.y350{bottom:633.807600pt;}
.y255{bottom:634.519347pt;}
.y24d{bottom:634.540680pt;}
.y176{bottom:636.514253pt;}
.yd{bottom:636.726665pt;}
.y148{bottom:638.877213pt;}
.y183{bottom:638.893453pt;}
.y296{bottom:639.949467pt;}
.yde{bottom:641.964600pt;}
.y2c7{bottom:644.298267pt;}
.y93{bottom:644.410480pt;}
.y51{bottom:644.481867pt;}
.y1ba{bottom:644.486080pt;}
.y254{bottom:646.465867pt;}
.y24c{bottom:646.487200pt;}
.y34f{bottom:647.112933pt;}
.y143{bottom:647.900653pt;}
.y1a{bottom:648.340000pt;}
.y10e{bottom:648.968240pt;}
.yc{bottom:652.726665pt;}
.y1b{bottom:653.253467pt;}
.ydd{bottom:653.911120pt;}
.y13b{bottom:653.958840pt;}
.y132{bottom:654.662853pt;}
.y16e{bottom:654.692293pt;}
.y106{bottom:657.192280pt;}
.y147{bottom:657.215747pt;}
.y182{bottom:657.233320pt;}
.y2c6{bottom:657.682933pt;}
.y253{bottom:658.487053pt;}
.y24b{bottom:658.508387pt;}
.y92{bottom:660.437307pt;}
.y34e{bottom:660.497600pt;}
.y50{bottom:660.508693pt;}
.y1b9{bottom:660.512907pt;}
.y18{bottom:664.365200pt;}
.y1b6{bottom:665.921640pt;}
.ydc{bottom:665.932307pt;}
.y10d{bottom:667.205440pt;}
.yb{bottom:668.726665pt;}
.y19{bottom:669.203067pt;}
.y252{bottom:670.508227pt;}
.y24a{bottom:670.529560pt;}
.y2c5{bottom:670.988267pt;}
.y177{bottom:672.850787pt;}
.y34d{bottom:673.802933pt;}
.y146{bottom:675.555613pt;}
.y181{bottom:675.571987pt;}
.y91{bottom:676.384133pt;}
.y4f{bottom:676.455520pt;}
.y1b8{bottom:676.459733pt;}
.y1b5{bottom:677.942813pt;}
.ydb{bottom:677.953480pt;}
.y13c{bottom:679.381640pt;}
.y16f{bottom:680.116133pt;}
.y295{bottom:682.196667pt;}
.y1b7{bottom:682.431333pt;}
.y251{bottom:682.529413pt;}
.y249{bottom:682.550747pt;}
.y2c4{bottom:684.293600pt;}
.ya{bottom:684.726665pt;}
.y107{bottom:685.284520pt;}
.y34c{bottom:687.108267pt;}
.y17{bottom:689.686400pt;}
.y1b4{bottom:689.964000pt;}
.yda{bottom:689.974667pt;}
.y4e{bottom:692.482347pt;}
.y145{bottom:693.872547pt;}
.y180{bottom:693.911720pt;}
.y250{bottom:694.475933pt;}
.y248{bottom:694.497267pt;}
.y294{bottom:695.502000pt;}
.y133{bottom:697.030933pt;}
.y2c3{bottom:697.678267pt;}
.y90{bottom:700.421867pt;}
.y1b3{bottom:701.910520pt;}
.yd9{bottom:701.921187pt;}
.y13d{bottom:704.804440pt;}
.y170{bottom:705.539973pt;}
.y24f{bottom:706.497120pt;}
.y247{bottom:706.518453pt;}
.y17d{bottom:707.707120pt;}
.y4d{bottom:708.509173pt;}
.y293{bottom:708.886667pt;}
.y178{bottom:709.157987pt;}
.y2c2{bottom:710.983600pt;}
.y16{bottom:711.003733pt;}
.y17f{bottom:712.230653pt;}
.y108{bottom:713.376773pt;}
.y34b{bottom:713.786933pt;}
.y1b2{bottom:713.931707pt;}
.yd8{bottom:713.942373pt;}
.y246{bottom:718.539627pt;}
.y242{bottom:718.550293pt;}
.y292{bottom:722.192000pt;}
.y2c1{bottom:724.368267pt;}
.y4c{bottom:724.456000pt;}
.yd7{bottom:725.963547pt;}
.y34a{bottom:727.171600pt;}
.y13e{bottom:730.227240pt;}
.y245{bottom:730.560813pt;}
.y241{bottom:730.571480pt;}
.y171{bottom:730.963813pt;}
.y9{bottom:731.368002pt;}
.y15{bottom:732.321067pt;}
.y2c0{bottom:737.673600pt;}
.y1ae{bottom:737.974067pt;}
.yd6{bottom:737.984733pt;}
.y134{bottom:739.399000pt;}
.y349{bottom:740.476933pt;}
.y4b{bottom:740.482827pt;}
.y109{bottom:741.469027pt;}
.y244{bottom:742.507333pt;}
.y240{bottom:742.518000pt;}
.y179{bottom:745.465187pt;}
.y291{bottom:746.229733pt;}
.y1b1{bottom:749.909920pt;}
.y1ad{bottom:749.920587pt;}
.yd5{bottom:749.931253pt;}
.y8{bottom:750.034669pt;}
.y2bf{bottom:750.978933pt;}
.y348{bottom:753.782267pt;}
.y243{bottom:754.528520pt;}
.y23f{bottom:754.539187pt;}
.y13f{bottom:755.650040pt;}
.y172{bottom:756.387653pt;}
.y4a{bottom:756.509653pt;}
.y1b0{bottom:761.931107pt;}
.y1ac{bottom:761.941773pt;}
.yd4{bottom:761.952440pt;}
.y2be{bottom:764.363600pt;}
.y23e{bottom:766.560360pt;}
.y347{bottom:767.166933pt;}
.y10a{bottom:769.561280pt;}
.y49{bottom:772.456480pt;}
.y1af{bottom:773.952280pt;}
.y1ab{bottom:773.962947pt;}
.yd3{bottom:773.973613pt;}
.y2bd{bottom:777.668933pt;}
.y23d{bottom:778.581547pt;}
.y290{bottom:780.472267pt;}
.y140{bottom:781.092400pt;}
.y10b{bottom:781.453573pt;}
.y135{bottom:781.796413pt;}
.y17a{bottom:781.801720pt;}
.y173{bottom:781.811493pt;}
.y48{bottom:788.483307pt;}
.yd2{bottom:789.845427pt;}
.y23c{bottom:790.528067pt;}
.y2bc{bottom:791.053600pt;}
.y45{bottom:796.651120pt;}
.y17e{bottom:802.299853pt;}
.y144{bottom:802.300280pt;}
.y10c{bottom:802.369040pt;}
.y2bb{bottom:804.358933pt;}
.y47{bottom:804.510133pt;}
.y23b{bottom:806.399867pt;}
.yd1{bottom:806.399880pt;}
.y7{bottom:806.625337pt;}
.y44{bottom:808.590960pt;}
.y43{bottom:820.610800pt;}
.y6{bottom:834.625331pt;}
.y111{bottom:840.415440pt;}
.y188{bottom:840.415453pt;}
.y75{bottom:840.415467pt;}
.yea{bottom:840.415480pt;}
.y5{bottom:862.625331pt;}
.y4{bottom:920.485335pt;}
.y3{bottom:1035.664002pt;}
.hd{height:19.902168pt;}
.hc{height:23.146599pt;}
.h37{height:24.537124pt;}
.h15{height:26.692952pt;}
.h1b{height:26.892569pt;}
.h1d{height:27.042281pt;}
.h20{height:27.043387pt;}
.hf{height:27.399635pt;}
.h14{height:28.599619pt;}
.h16{height:28.839615pt;}
.h18{height:28.868224pt;}
.h1e{height:30.106963pt;}
.h21{height:30.108438pt;}
.h11{height:30.506285pt;}
.h13{height:30.762282pt;}
.h36{height:31.869333pt;}
.h30{height:32.277333pt;}
.h33{height:32.368000pt;}
.h4{height:32.687500pt;}
.he{height:34.320000pt;}
.h10{height:34.608000pt;}
.h2{height:36.773438pt;}
.h26{height:36.810667pt;}
.h2b{height:36.816000pt;}
.h2c{height:36.816533pt;}
.h2d{height:36.831467pt;}
.h2a{height:36.850667pt;}
.h28{height:36.902933pt;}
.h29{height:36.904533pt;}
.h27{height:36.939200pt;}
.h31{height:37.016533pt;}
.h2f{height:37.017067pt;}
.h2e{height:37.021867pt;}
.h35{height:37.022933pt;}
.h32{height:37.067200pt;}
.h34{height:37.081067pt;}
.h19{height:38.453718pt;}
.hb{height:40.376385pt;}
.h7{height:40.859375pt;}
.h1c{height:41.773475pt;}
.h1f{height:42.005419pt;}
.h22{height:42.007262pt;}
.h12{height:43.307100pt;}
.h23{height:43.307420pt;}
.h25{height:43.318086pt;}
.h24{height:43.319046pt;}
.h1a{height:43.333233pt;}
.h17{height:43.335260pt;}
.h6{height:49.031250pt;}
.ha{height:53.013333pt;}
.h3{height:61.289062pt;}
.h5{height:73.546875pt;}
.h8{height:884.409333pt;}
.h9{height:884.666667pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:589.333333pt;}
.w2{width:589.606667pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:64.025200pt;}
.xd{left:67.502400pt;}
.x18{left:69.315813pt;}
.x1b{left:71.940427pt;}
.x27{left:72.922813pt;}
.x3f{left:75.369867pt;}
.x3e{left:77.330533pt;}
.x14{left:79.974800pt;}
.x3c{left:81.335467pt;}
.x22{left:84.452533pt;}
.x24{left:87.454387pt;}
.x1c{left:90.143507pt;}
.x23{left:92.411827pt;}
.x3d{left:96.374800pt;}
.x25{left:106.335707pt;}
.x30{left:108.099840pt;}
.x19{left:112.398427pt;}
.x2d{left:118.601600pt;}
.x1a{left:123.054293pt;}
.x4{left:129.466667pt;}
.x2e{left:131.376400pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x7{left:179.754267pt;}
.x8{left:184.138533pt;}
.x2{left:204.821338pt;}
.x31{left:214.299067pt;}
.x28{left:218.268387pt;}
.xc{left:227.678667pt;}
.x38{left:234.481867pt;}
.x39{left:243.099200pt;}
.x16{left:244.535333pt;}
.x32{left:248.386053pt;}
.x17{left:253.001467pt;}
.x33{left:259.041920pt;}
.x1{left:260.969328pt;}
.x40{left:264.642400pt;}
.xe{left:265.927467pt;}
.xf{left:270.009333pt;}
.x41{left:274.091333pt;}
.x42{left:277.492800pt;}
.x43{left:297.373200pt;}
.x9{left:303.193600pt;}
.x1e{left:305.763733pt;}
.xa{left:308.333733pt;}
.x44{left:312.566800pt;}
.x1f{left:313.851867pt;}
.x3a{left:320.353160pt;}
.x45{left:325.417200pt;}
.x3b{left:331.009027pt;}
.x15{left:333.732133pt;}
.x34{left:336.374293pt;}
.x35{left:347.030160pt;}
.x2b{left:388.384133pt;}
.x2c{left:402.519600pt;}
.x21{left:421.949987pt;}
.x2f{left:426.337867pt;}
.x36{left:431.391773pt;}
.x37{left:442.047640pt;}
.x10{left:445.757333pt;}
.x11{left:448.932133pt;}
.x26{left:449.855187pt;}
.x20{left:458.910133pt;}
.xb{left:460.270800pt;}
.x29{left:476.673867pt;}
.x12{left:477.732133pt;}
.x13{left:481.738400pt;}
.x2a{left:490.355733pt;}
.x1d{left:494.649600pt;}
}




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