
    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_e0059517ad48694f01183160.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_040d652540f230ac038041fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_b7b3be12b52ab7060a95037b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1acbd86d71e2f8d171fb7678.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_c5c0a3607a4663767573210a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_5a5367309ff7e8eb0e5a1dcb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_0d51693a6c6e1aaf9a301d2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.878906;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_28343092b76e8a3d26b99151.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_70bf35fdd9795da0af75346b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.774902;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_9cfb3ba119fcbe3ff991ba13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.878906;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_621c1ada63fa935c784711dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2a6b89273c875a6da46cd15c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_3858eb9f463ecf1e0631397c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;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_d914f25a89331121e5134372.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;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_682c895377496c97c1bfd63a.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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_d58a27bfd01ec8ee464d235d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.102539;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_f7da5a3a63499ce1f722689a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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_6333db5127db388cbcc41087.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.002930;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_2d39af028c1e445be8595b48.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_19ffb10476826097a037a1f5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-103.560000px;}
.va{vertical-align:-93.456000px;}
.v9{vertical-align:-51.840000px;}
.v5{vertical-align:-41.472000px;}
.v4{vertical-align:-10.512000px;}
.v6{vertical-align:-1.140000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.512000px;}
.v2{vertical-align:50.112000px;}
.v8{vertical-align:86.940000px;}
.v7{vertical-align:143.460000px;}
.ls15{letter-spacing:-2.124000px;}
.ls1d{letter-spacing:-1.914000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls93{letter-spacing:-0.864000px;}
.ls63{letter-spacing:-0.834000px;}
.ls4a{letter-spacing:-0.762000px;}
.ls5f{letter-spacing:-0.744000px;}
.ls50{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.612000px;}
.ls4f{letter-spacing:-0.511800px;}
.lsc{letter-spacing:-0.468000px;}
.ls4c{letter-spacing:-0.432000px;}
.ls6a{letter-spacing:-0.396000px;}
.ls62{letter-spacing:-0.376200px;}
.ls1f{letter-spacing:-0.367800px;}
.ls88{letter-spacing:-0.364200px;}
.ls85{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.357000px;}
.ls65{letter-spacing:-0.349200px;}
.ls23{letter-spacing:-0.324000px;}
.ls74{letter-spacing:-0.313800px;}
.ls18{letter-spacing:-0.310200px;}
.ls5e{letter-spacing:-0.306600px;}
.lse{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.283800px;}
.ls48{letter-spacing:-0.279600px;}
.ls3d{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.229200px;}
.lsd{letter-spacing:-0.223800px;}
.ls5{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.215400px;}
.ls8e{letter-spacing:-0.213000px;}
.ls3c{letter-spacing:-0.187800px;}
.ls82{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.168600px;}
.ls8b{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.143400px;}
.ls60{letter-spacing:-0.114600px;}
.ls70{letter-spacing:-0.114000px;}
.ls33{letter-spacing:-0.109200px;}
.ls80{letter-spacing:-0.108000px;}
.ls91{letter-spacing:-0.094200px;}
.ls28{letter-spacing:-0.087000px;}
.ls22{letter-spacing:-0.072000px;}
.ls89{letter-spacing:-0.071400px;}
.ls37{letter-spacing:-0.069000px;}
.ls6d{letter-spacing:-0.066000px;}
.ls71{letter-spacing:-0.061800px;}
.ls3{letter-spacing:-0.059040px;}
.ls5a{letter-spacing:-0.043920px;}
.ls49{letter-spacing:-0.042600px;}
.ls35{letter-spacing:-0.038580px;}
.ls1{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.033840px;}
.ls2b{letter-spacing:-0.033720px;}
.ls64{letter-spacing:-0.026640px;}
.ls6f{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.ls81{letter-spacing:0.014400px;}
.ls68{letter-spacing:0.016140px;}
.ls6e{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.018720px;}
.ls24{letter-spacing:0.032100px;}
.ls14{letter-spacing:0.036000px;}
.ls42{letter-spacing:0.037440px;}
.ls36{letter-spacing:0.038880px;}
.ls3f{letter-spacing:0.043200px;}
.ls54{letter-spacing:0.043920px;}
.ls56{letter-spacing:0.046680px;}
.ls3a{letter-spacing:0.050400px;}
.ls21{letter-spacing:0.072000px;}
.ls7e{letter-spacing:0.090000px;}
.ls59{letter-spacing:0.090600px;}
.ls4b{letter-spacing:0.101400px;}
.ls61{letter-spacing:0.106800px;}
.ls32{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.123000px;}
.ls38{letter-spacing:0.126000px;}
.ls53{letter-spacing:0.134400px;}
.ls79{letter-spacing:0.142200px;}
.ls2a{letter-spacing:0.142800px;}
.ls72{letter-spacing:0.143400px;}
.ls34{letter-spacing:0.145200px;}
.ls78{letter-spacing:0.150000px;}
.ls73{letter-spacing:0.161400px;}
.lsf{letter-spacing:0.163800px;}
.ls19{letter-spacing:0.165000px;}
.ls10{letter-spacing:0.175800px;}
.ls2{letter-spacing:0.180000px;}
.ls58{letter-spacing:0.181200px;}
.ls75{letter-spacing:0.187200px;}
.ls77{letter-spacing:0.197400px;}
.ls8f{letter-spacing:0.198000px;}
.ls51{letter-spacing:0.208200px;}
.ls76{letter-spacing:0.210000px;}
.ls47{letter-spacing:0.212400px;}
.lsb{letter-spacing:0.216000px;}
.ls7f{letter-spacing:0.234000px;}
.ls9{letter-spacing:0.252000px;}
.ls43{letter-spacing:0.288000px;}
.ls45{letter-spacing:0.306600px;}
.ls27{letter-spacing:0.317400px;}
.ls69{letter-spacing:0.324000px;}
.ls66{letter-spacing:0.325200px;}
.ls1c{letter-spacing:0.329328px;}
.ls46{letter-spacing:0.338400px;}
.ls4d{letter-spacing:0.341400px;}
.ls83{letter-spacing:0.357600px;}
.ls4e{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.396000px;}
.ls86{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.455400px;}
.ls94{letter-spacing:0.468000px;}
.ls8c{letter-spacing:0.612000px;}
.ls2d{letter-spacing:0.630000px;}
.ls8d{letter-spacing:0.684000px;}
.ls44{letter-spacing:0.762000px;}
.ls84{letter-spacing:0.810000px;}
.ls5b{letter-spacing:0.852000px;}
.ls92{letter-spacing:0.936000px;}
.ls57{letter-spacing:0.996000px;}
.ls8a{letter-spacing:1.134000px;}
.ls30{letter-spacing:1.212000px;}
.ls87{letter-spacing:1.332000px;}
.ls6b{letter-spacing:24.624288px;}
.ls6c{letter-spacing:24.696000px;}
.ls26{letter-spacing:28.684224px;}
.ls25{letter-spacing:28.798560px;}
.ls90{letter-spacing:31.716000px;}
.ls7d{letter-spacing:33.768000px;}
.ls7a{letter-spacing:40.122000px;}
.ls7c{letter-spacing:48.042000px;}
.ls7b{letter-spacing:48.420000px;}
.ls41{letter-spacing:59.472000px;}
.ls3e{letter-spacing:59.601600px;}
.ls40{letter-spacing:59.652000px;}
.ls1b{letter-spacing:59.976000px;}
.ls1a{letter-spacing:62.856000px;}
.ls5d{letter-spacing:93.225600px;}
.ls5c{letter-spacing:93.276000px;}
.ls7{letter-spacing:98.472000px;}
.ls13{letter-spacing:101.844000px;}
.ls11{letter-spacing:101.964000px;}
.ls55{letter-spacing:160.021440px;}
.ls52{letter-spacing:169.872000px;}
.ls8{letter-spacing:178.149600px;}
.ls6{letter-spacing:178.200000px;}
.ls67{letter-spacing:2209.884000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-108.000000px;}
.ws12{word-spacing:-66.653280px;}
.ws1a8{word-spacing:-48.096000px;}
.ws174{word-spacing:-46.637280px;}
.wsbb{word-spacing:-43.478784px;}
.wsbc{word-spacing:-43.446240px;}
.ws53{word-spacing:-41.940000px;}
.ws19{word-spacing:-40.032000px;}
.ws54{word-spacing:-39.744000px;}
.ws1b8{word-spacing:-39.378240px;}
.ws9d{word-spacing:-37.913760px;}
.wsb1{word-spacing:-37.770360px;}
.ws130{word-spacing:-36.629280px;}
.ws47{word-spacing:-36.036000px;}
.ws18{word-spacing:-36.000000px;}
.ws16{word-spacing:-35.471232px;}
.ws13{word-spacing:-35.424000px;}
.ws4d{word-spacing:-35.068032px;}
.ws167{word-spacing:-33.466752px;}
.ws156{word-spacing:-33.426720px;}
.ws23{word-spacing:-30.064032px;}
.ws1d{word-spacing:-30.024000px;}
.ws4e{word-spacing:-29.736000px;}
.ws1a2{word-spacing:-28.476000px;}
.ws1b5{word-spacing:-27.206784px;}
.ws1ae{word-spacing:-27.174240px;}
.ws15{word-spacing:-27.036000px;}
.ws14{word-spacing:-27.000000px;}
.ws114{word-spacing:-26.621280px;}
.wsf4{word-spacing:-24.619680px;}
.ws19b{word-spacing:-24.440544px;}
.ws11{word-spacing:-24.408000px;}
.ws55{word-spacing:-24.372000px;}
.wsb9{word-spacing:-23.106240px;}
.wse2{word-spacing:-23.018400px;}
.ws56{word-spacing:-21.674304px;}
.ws52{word-spacing:-21.641760px;}
.wsd0{word-spacing:-21.331560px;}
.ws126{word-spacing:-20.056032px;}
.ws116{word-spacing:-20.016000px;}
.ws50{word-spacing:-19.038240px;}
.wsc9{word-spacing:-7.368000px;}
.wsc3{word-spacing:-2.823120px;}
.ws177{word-spacing:-2.595888px;}
.wsc1{word-spacing:-2.391840px;}
.ws1a4{word-spacing:-2.387136px;}
.wsbd{word-spacing:-2.305536px;}
.ws18f{word-spacing:-2.304000px;}
.ws1be{word-spacing:-2.296704px;}
.ws154{word-spacing:-2.148000px;}
.ws19d{word-spacing:-2.088000px;}
.wsc4{word-spacing:-2.019600px;}
.ws15a{word-spacing:-1.988160px;}
.wsc5{word-spacing:-1.962000px;}
.wsc6{word-spacing:-1.957680px;}
.ws16b{word-spacing:-1.908240px;}
.wsbe{word-spacing:-1.843920px;}
.ws178{word-spacing:-1.836000px;}
.ws16f{word-spacing:-1.813680px;}
.ws1bf{word-spacing:-1.746144px;}
.ws8a{word-spacing:-1.692000px;}
.ws175{word-spacing:-1.688640px;}
.ws1bb{word-spacing:-1.664160px;}
.wsb8{word-spacing:-1.642320px;}
.ws11f{word-spacing:-1.584000px;}
.ws15d{word-spacing:-1.567104px;}
.ws1a7{word-spacing:-1.492608px;}
.ws16d{word-spacing:-1.466880px;}
.ws1a5{word-spacing:-1.459392px;}
.ws1b9{word-spacing:-1.447200px;}
.ws22{word-spacing:-1.445280px;}
.ws1a9{word-spacing:-1.374000px;}
.ws8d{word-spacing:-1.368000px;}
.wsdb{word-spacing:-1.304160px;}
.ws63{word-spacing:-1.296000px;}
.ws2c{word-spacing:-1.284000px;}
.ws153{word-spacing:-1.271760px;}
.ws16e{word-spacing:-1.258080px;}
.wsc7{word-spacing:-1.190880px;}
.ws61{word-spacing:-1.188000px;}
.ws1b2{word-spacing:-1.172400px;}
.ws1b7{word-spacing:-1.152240px;}
.wsb7{word-spacing:-1.142880px;}
.ws1b3{word-spacing:-1.072080px;}
.ws1aa{word-spacing:-1.071360px;}
.wsc2{word-spacing:-1.064160px;}
.wsdc{word-spacing:-1.020480px;}
.wsbf{word-spacing:-1.009440px;}
.ws12d{word-spacing:-1.008000px;}
.ws1b6{word-spacing:-0.991968px;}
.ws1af{word-spacing:-0.961440px;}
.ws1ad{word-spacing:-0.938160px;}
.wsd8{word-spacing:-0.912240px;}
.ws15f{word-spacing:-0.901728px;}
.ws1a1{word-spacing:-0.900000px;}
.ws6b{word-spacing:-0.888000px;}
.ws111{word-spacing:-0.866160px;}
.ws199{word-spacing:-0.864000px;}
.ws1bd{word-spacing:-0.860040px;}
.ws1b1{word-spacing:-0.855600px;}
.ws1a0{word-spacing:-0.852000px;}
.ws15e{word-spacing:-0.811080px;}
.wse4{word-spacing:-0.738000px;}
.ws8c{word-spacing:-0.648000px;}
.ws109{word-spacing:-0.626760px;}
.ws1ab{word-spacing:-0.618240px;}
.ws1b4{word-spacing:-0.614040px;}
.ws1ba{word-spacing:-0.607200px;}
.wsd5{word-spacing:-0.600960px;}
.ws20b{word-spacing:-0.594000px;}
.ws2d{word-spacing:-0.576000px;}
.ws10e{word-spacing:-0.543840px;}
.ws179{word-spacing:-0.540000px;}
.ws19c{word-spacing:-0.528000px;}
.ws46{word-spacing:-0.492000px;}
.ws164{word-spacing:-0.471120px;}
.ws110{word-spacing:-0.446760px;}
.ws40{word-spacing:-0.420000px;}
.ws84{word-spacing:-0.324000px;}
.ws165{word-spacing:-0.307080px;}
.ws1b0{word-spacing:-0.301680px;}
.ws60{word-spacing:-0.288000px;}
.ws20c{word-spacing:-0.270000px;}
.ws15c{word-spacing:-0.200160px;}
.ws49{word-spacing:-0.168000px;}
.ws16c{word-spacing:-0.146880px;}
.ws64{word-spacing:-0.144000px;}
.wsc0{word-spacing:-0.124416px;}
.ws1a6{word-spacing:-0.108096px;}
.ws170{word-spacing:-0.106800px;}
.wsd9{word-spacing:-0.052992px;}
.ws1d1{word-spacing:-0.036000px;}
.ws104{word-spacing:-0.018720px;}
.ws0{word-spacing:0.000000px;}
.ws1bc{word-spacing:0.043680px;}
.ws106{word-spacing:0.056160px;}
.ws5e{word-spacing:0.084000px;}
.ws6c{word-spacing:0.108000px;}
.ws10{word-spacing:0.120000px;}
.ws1e6{word-spacing:0.126000px;}
.ws6a{word-spacing:0.156000px;}
.ws51{word-spacing:0.169920px;}
.ws113{word-spacing:0.188400px;}
.ws62{word-spacing:0.192000px;}
.wsd6{word-spacing:0.257760px;}
.ws28{word-spacing:0.264000px;}
.ws1f5{word-spacing:0.270000px;}
.ws112{word-spacing:0.285120px;}
.ws163{word-spacing:0.292800px;}
.ws10b{word-spacing:0.295200px;}
.ws217{word-spacing:0.300000px;}
.ws107{word-spacing:0.303840px;}
.wsda{word-spacing:0.328704px;}
.ws162{word-spacing:0.346800px;}
.ws1f6{word-spacing:0.360000px;}
.ws17a{word-spacing:0.372000px;}
.wse5{word-spacing:0.439200px;}
.ws105{word-spacing:0.477840px;}
.ws108{word-spacing:0.480000px;}
.ws12e{word-spacing:0.482160px;}
.ws4c{word-spacing:0.589440px;}
.ws155{word-spacing:0.592920px;}
.ws138{word-spacing:0.614520px;}
.ws10f{word-spacing:0.619920px;}
.wse3{word-spacing:0.630000px;}
.ws161{word-spacing:0.655200px;}
.ws12f{word-spacing:0.676800px;}
.wsa7{word-spacing:0.702960px;}
.ws151{word-spacing:0.723600px;}
.ws139{word-spacing:0.723960px;}
.wsa6{word-spacing:0.755760px;}
.ws19a{word-spacing:0.756000px;}
.ws195{word-spacing:0.792000px;}
.ws173{word-spacing:0.808320px;}
.ws19e{word-spacing:0.828000px;}
.wsa9{word-spacing:0.854880px;}
.ws198{word-spacing:0.900000px;}
.wsf6{word-spacing:0.944400px;}
.ws94{word-spacing:0.972000px;}
.ws194{word-spacing:0.984000px;}
.wsc8{word-spacing:1.008000px;}
.ws13a{word-spacing:1.028352px;}
.ws5f{word-spacing:1.044000px;}
.wsef{word-spacing:1.080000px;}
.ws10c{word-spacing:1.115280px;}
.ws10a{word-spacing:1.119600px;}
.ws196{word-spacing:1.152000px;}
.wsf5{word-spacing:1.202160px;}
.ws12c{word-spacing:1.237680px;}
.ws191{word-spacing:1.296000px;}
.ws103{word-spacing:1.344240px;}
.ws152{word-spacing:1.439760px;}
.ws20a{word-spacing:1.440000px;}
.ws160{word-spacing:1.475760px;}
.wsa5{word-spacing:1.535280px;}
.ws190{word-spacing:1.584000px;}
.ws1a3{word-spacing:1.602000px;}
.wsa8{word-spacing:1.613280px;}
.ws4a{word-spacing:1.639200px;}
.ws172{word-spacing:1.746144px;}
.ws137{word-spacing:1.948320px;}
.ws192{word-spacing:2.004000px;}
.ws18d{word-spacing:2.016000px;}
.ws18e{word-spacing:2.028000px;}
.ws10d{word-spacing:2.036640px;}
.wse7{word-spacing:2.138400px;}
.ws197{word-spacing:2.160000px;}
.ws4b{word-spacing:2.165520px;}
.ws57{word-spacing:2.215680px;}
.ws171{word-spacing:2.240064px;}
.ws65{word-spacing:2.304000px;}
.ws149{word-spacing:2.385360px;}
.wsce{word-spacing:2.451960px;}
.wscf{word-spacing:2.536320px;}
.wscd{word-spacing:2.621520px;}
.ws14a{word-spacing:2.699280px;}
.ws193{word-spacing:2.700000px;}
.ws18c{word-spacing:2.820000px;}
.ws68{word-spacing:2.952000px;}
.ws14b{word-spacing:2.973360px;}
.ws3e{word-spacing:3.024000px;}
.ws69{word-spacing:3.216000px;}
.ws66{word-spacing:3.300000px;}
.ws67{word-spacing:3.384000px;}
.ws17d{word-spacing:3.420000px;}
.ws180{word-spacing:3.456000px;}
.ws17c{word-spacing:3.516000px;}
.ws181{word-spacing:3.528000px;}
.wsd{word-spacing:3.530496px;}
.ws3f{word-spacing:3.576000px;}
.wse8{word-spacing:3.649536px;}
.ws3d{word-spacing:3.720000px;}
.ws214{word-spacing:3.831600px;}
.ws78{word-spacing:3.852000px;}
.ws17b{word-spacing:4.032000px;}
.ws1ca{word-spacing:4.113408px;}
.ws17e{word-spacing:4.140000px;}
.ws75{word-spacing:4.248000px;}
.ws1e2{word-spacing:4.320000px;}
.wscb{word-spacing:4.349280px;}
.ws1cc{word-spacing:4.403232px;}
.ws1c8{word-spacing:4.428384px;}
.ws1c9{word-spacing:4.524768px;}
.ws1cd{word-spacing:4.581216px;}
.ws1e4{word-spacing:4.710000px;}
.ws218{word-spacing:4.716000px;}
.ws219{word-spacing:4.824000px;}
.ws17f{word-spacing:4.860000px;}
.ws1cb{word-spacing:4.986144px;}
.ws1f9{word-spacing:5.148000px;}
.ws1fa{word-spacing:5.166000px;}
.ws77{word-spacing:5.220000px;}
.ws1f7{word-spacing:5.256000px;}
.ws1e5{word-spacing:5.328000px;}
.wse6{word-spacing:5.421600px;}
.ws1e3{word-spacing:5.436000px;}
.ws76{word-spacing:5.652000px;}
.ws82{word-spacing:5.724000px;}
.ws7f{word-spacing:5.904000px;}
.ws125{word-spacing:5.991336px;}
.ws1f8{word-spacing:5.994000px;}
.ws80{word-spacing:6.192000px;}
.ws215{word-spacing:6.264000px;}
.wse{word-spacing:6.425856px;}
.ws124{word-spacing:6.511968px;}
.ws81{word-spacing:6.588000px;}
.ws83{word-spacing:6.744000px;}
.ws228{word-spacing:7.572000px;}
.ws95{word-spacing:7.632000px;}
.ws27{word-spacing:7.848000px;}
.ws227{word-spacing:7.920000px;}
.ws118{word-spacing:8.784000px;}
.wsff{word-spacing:9.789240px;}
.ws117{word-spacing:9.792000px;}
.ws1c1{word-spacing:9.810000px;}
.wsf7{word-spacing:10.101240px;}
.wsfa{word-spacing:10.219392px;}
.wsfe{word-spacing:10.225152px;}
.ws100{word-spacing:10.378944px;}
.wsfc{word-spacing:10.415232px;}
.wsf9{word-spacing:10.465152px;}
.ws200{word-spacing:10.506000px;}
.ws146{word-spacing:10.698552px;}
.ws1ff{word-spacing:10.782000px;}
.wsfd{word-spacing:10.821240px;}
.wsf8{word-spacing:10.832256px;}
.ws1fe{word-spacing:10.854000px;}
.ws101{word-spacing:10.880064px;}
.ws145{word-spacing:10.909440px;}
.ws1c2{word-spacing:10.926000px;}
.ws39{word-spacing:10.944000px;}
.ws148{word-spacing:10.952064px;}
.ws1fc{word-spacing:10.956000px;}
.ws1c0{word-spacing:11.052000px;}
.ws102{word-spacing:11.124864px;}
.ws1fb{word-spacing:11.130000px;}
.ws1fd{word-spacing:11.196000px;}
.ws3a{word-spacing:11.316000px;}
.ws225{word-spacing:11.412000px;}
.ws1c7{word-spacing:11.538000px;}
.wsfb{word-spacing:11.539440px;}
.ws1c3{word-spacing:11.556000px;}
.ws1c4{word-spacing:11.586000px;}
.ws147{word-spacing:11.659968px;}
.ws224{word-spacing:11.736000px;}
.ws1c5{word-spacing:11.880000px;}
.wse1{word-spacing:12.342000px;}
.ws1c6{word-spacing:12.594000px;}
.ws38{word-spacing:12.648000px;}
.wse0{word-spacing:13.302000px;}
.ws1f{word-spacing:13.512000px;}
.wsb6{word-spacing:13.593600px;}
.ws185{word-spacing:13.644000px;}
.ws182{word-spacing:13.656000px;}
.wsdf{word-spacing:13.658400px;}
.ws186{word-spacing:13.716000px;}
.ws184{word-spacing:13.788000px;}
.ws1e{word-spacing:14.196000px;}
.ws8b{word-spacing:14.208912px;}
.ws20{word-spacing:14.400000px;}
.ws183{word-spacing:14.448000px;}
.ws1d0{word-spacing:15.570000px;}
.ws1ce{word-spacing:16.284000px;}
.wsd2{word-spacing:16.392240px;}
.ws1cf{word-spacing:16.452000px;}
.ws120{word-spacing:16.560000px;}
.wsd3{word-spacing:16.644000px;}
.ws121{word-spacing:16.776000px;}
.wsd1{word-spacing:17.147040px;}
.ws205{word-spacing:18.528576px;}
.ws206{word-spacing:18.933696px;}
.ws1d5{word-spacing:19.074000px;}
.ws1f4{word-spacing:19.566000px;}
.ws1ef{word-spacing:19.596000px;}
.ws1d7{word-spacing:19.656000px;}
.ws1d8{word-spacing:19.668000px;}
.ws1d2{word-spacing:19.692000px;}
.ws1f0{word-spacing:19.710000px;}
.ws207{word-spacing:19.744320px;}
.ws1ed{word-spacing:19.836000px;}
.ws1d9{word-spacing:19.890000px;}
.ws1d4{word-spacing:19.920000px;}
.ws1f2{word-spacing:19.926000px;}
.ws1db{word-spacing:20.154000px;}
.ws1ee{word-spacing:20.196000px;}
.ws1d6{word-spacing:20.250000px;}
.ws1f1{word-spacing:20.286000px;}
.ws1f3{word-spacing:20.748000px;}
.ws1d3{word-spacing:20.754000px;}
.ws14c{word-spacing:20.883600px;}
.ws1da{word-spacing:21.114000px;}
.ws123{word-spacing:21.384000px;}
.ws150{word-spacing:21.463200px;}
.ws14e{word-spacing:21.603840px;}
.wsaf{word-spacing:21.767040px;}
.wsad{word-spacing:21.797040px;}
.ws14d{word-spacing:21.872160px;}
.ws14f{word-spacing:22.097280px;}
.ws122{word-spacing:22.320000px;}
.wsae{word-spacing:22.716840px;}
.ws89{word-spacing:23.040000px;}
.ws88{word-spacing:23.688000px;}
.ws29{word-spacing:23.736000px;}
.ws2a{word-spacing:24.732000px;}
.ws1ac{word-spacing:25.475760px;}
.wsac{word-spacing:27.263040px;}
.wsaa{word-spacing:28.045680px;}
.wsab{word-spacing:28.526040px;}
.ws6f{word-spacing:28.944000px;}
.ws72{word-spacing:29.052000px;}
.ws74{word-spacing:29.064000px;}
.ws73{word-spacing:29.412000px;}
.ws70{word-spacing:30.024000px;}
.ws6d{word-spacing:30.060000px;}
.ws71{word-spacing:30.144000px;}
.ws6e{word-spacing:30.228000px;}
.ws226{word-spacing:30.288000px;}
.ws12b{word-spacing:31.896000px;}
.ws15b{word-spacing:32.199840px;}
.ws5a{word-spacing:32.544000px;}
.ws21{word-spacing:32.652000px;}
.ws128{word-spacing:32.688000px;}
.ws5b{word-spacing:32.916000px;}
.ws5d{word-spacing:33.132000px;}
.ws127{word-spacing:33.552000px;}
.ws59{word-spacing:33.612000px;}
.ws5c{word-spacing:33.624000px;}
.ws58{word-spacing:33.660000px;}
.ws1e7{word-spacing:34.056000px;}
.ws11d{word-spacing:34.128000px;}
.wsd4{word-spacing:34.628160px;}
.ws85{word-spacing:35.676000px;}
.ws144{word-spacing:36.272160px;}
.ws204{word-spacing:36.300000px;}
.ws7c{word-spacing:36.647904px;}
.ws7e{word-spacing:36.783936px;}
.ws203{word-spacing:36.864000px;}
.ws202{word-spacing:36.876000px;}
.ws7b{word-spacing:36.884688px;}
.ws7d{word-spacing:36.920736px;}
.ws201{word-spacing:37.050000px;}
.ws7a{word-spacing:37.100520px;}
.ws79{word-spacing:37.185600px;}
.ws209{word-spacing:37.296000px;}
.ws1e8{word-spacing:39.636000px;}
.ws1eb{word-spacing:39.792000px;}
.ws1ec{word-spacing:39.906000px;}
.ws1ea{word-spacing:39.996000px;}
.ws1e9{word-spacing:40.422000px;}
.ws188{word-spacing:40.572000px;}
.ws18a{word-spacing:40.932000px;}
.ws187{word-spacing:40.944000px;}
.ws189{word-spacing:41.076000px;}
.wsb5{word-spacing:41.244720px;}
.ws18b{word-spacing:41.364000px;}
.ws87{word-spacing:41.508000px;}
.ws21b{word-spacing:43.200000px;}
.wseb{word-spacing:43.362000px;}
.ws86{word-spacing:43.452000px;}
.wsde{word-spacing:44.164800px;}
.ws11e{word-spacing:44.280000px;}
.ws21d{word-spacing:45.588000px;}
.ws21c{word-spacing:45.648000px;}
.ws21a{word-spacing:45.720000px;}
.wsa1{word-spacing:46.957920px;}
.ws9e{word-spacing:47.891760px;}
.ws159{word-spacing:48.039840px;}
.wsa3{word-spacing:48.290976px;}
.wsa2{word-spacing:48.305448px;}
.ws9f{word-spacing:48.421440px;}
.wsa0{word-spacing:48.721536px;}
.wsb4{word-spacing:49.671360px;}
.wsb2{word-spacing:49.704480px;}
.wsed{word-spacing:49.744800px;}
.wsb3{word-spacing:50.026560px;}
.ws30{word-spacing:50.207904px;}
.ws157{word-spacing:50.265120px;}
.wsb0{word-spacing:51.043200px;}
.ws33{word-spacing:51.780000px;}
.ws158{word-spacing:51.805200px;}
.ws35{word-spacing:51.924000px;}
.ws34{word-spacing:52.884000px;}
.wsee{word-spacing:54.501600px;}
.ws3{word-spacing:56.016000px;}
.ws1{word-spacing:56.064000px;}
.ws2{word-spacing:56.448000px;}
.ws129{word-spacing:57.744000px;}
.ws12a{word-spacing:58.896000px;}
.ws208{word-spacing:59.664000px;}
.wsf3{word-spacing:60.120000px;}
.wsa4{word-spacing:63.025680px;}
.ws9{word-spacing:64.164000px;}
.ws212{word-spacing:64.188000px;}
.wsf1{word-spacing:64.461600px;}
.wsf0{word-spacing:64.735200px;}
.ws20e{word-spacing:64.944000px;}
.ws20f{word-spacing:65.916000px;}
.ws20d{word-spacing:66.144000px;}
.ws42{word-spacing:66.440520px;}
.ws11b{word-spacing:66.816000px;}
.ws41{word-spacing:66.836496px;}
.ws11c{word-spacing:67.536000px;}
.ws3c{word-spacing:67.872000px;}
.ws3b{word-spacing:67.896000px;}
.ws168{word-spacing:70.586496px;}
.ws16a{word-spacing:70.728960px;}
.wsd7{word-spacing:71.138400px;}
.ws166{word-spacing:72.447096px;}
.ws1e1{word-spacing:72.694464px;}
.ws169{word-spacing:73.347120px;}
.ws1de{word-spacing:73.510200px;}
.ws1df{word-spacing:73.568736px;}
.ws1dc{word-spacing:73.707264px;}
.ws1e0{word-spacing:73.865664px;}
.ws1dd{word-spacing:74.455320px;}
.wsa{word-spacing:74.808000px;}
.wsb{word-spacing:75.096000px;}
.wscc{word-spacing:76.083456px;}
.ws8{word-spacing:76.284000px;}
.ws211{word-spacing:76.716000px;}
.ws6{word-spacing:76.944000px;}
.ws7{word-spacing:77.148000px;}
.ws8f{word-spacing:81.360000px;}
.ws8e{word-spacing:82.008000px;}
.ws9a{word-spacing:96.427200px;}
.ws210{word-spacing:97.507776px;}
.ws4{word-spacing:97.608000px;}
.ws213{word-spacing:100.353168px;}
.wsc{word-spacing:100.548000px;}
.ws32{word-spacing:114.408000px;}
.ws31{word-spacing:116.016000px;}
.ws136{word-spacing:122.584320px;}
.ws134{word-spacing:122.771280px;}
.ws135{word-spacing:122.975040px;}
.wsea{word-spacing:124.662000px;}
.wse9{word-spacing:126.432000px;}
.ws220{word-spacing:127.596000px;}
.ws21e{word-spacing:127.656000px;}
.ws21f{word-spacing:129.492000px;}
.ws92{word-spacing:132.372000px;}
.ws93{word-spacing:132.780000px;}
.ws5{word-spacing:133.752000px;}
.ws119{word-spacing:134.337888px;}
.ws11a{word-spacing:135.255240px;}
.ws13e{word-spacing:146.244000px;}
.ws13f{word-spacing:146.790000px;}
.ws13c{word-spacing:146.879280px;}
.ws13b{word-spacing:147.149280px;}
.ws140{word-spacing:147.152160px;}
.ws13d{word-spacing:147.593520px;}
.ws1b{word-spacing:152.688000px;}
.ws9c{word-spacing:153.342960px;}
.ws9b{word-spacing:153.465600px;}
.ws1c{word-spacing:153.624000px;}
.ws96{word-spacing:154.326120px;}
.ws97{word-spacing:154.397280px;}
.ws99{word-spacing:155.069760px;}
.ws98{word-spacing:155.796840px;}
.ws222{word-spacing:164.628000px;}
.wsf{word-spacing:167.220000px;}
.ws216{word-spacing:167.412000px;}
.ws45{word-spacing:181.584000px;}
.ws44{word-spacing:182.436000px;}
.ws36{word-spacing:187.356000px;}
.ws37{word-spacing:187.848000px;}
.wsec{word-spacing:203.041200px;}
.ws142{word-spacing:205.739280px;}
.ws223{word-spacing:206.328000px;}
.ws143{word-spacing:206.756400px;}
.ws141{word-spacing:206.941440px;}
.ws176{word-spacing:229.908000px;}
.wsf2{word-spacing:230.743200px;}
.ws91{word-spacing:247.440000px;}
.ws90{word-spacing:252.840000px;}
.ws26{word-spacing:253.092000px;}
.ws2f{word-spacing:271.584000px;}
.ws2e{word-spacing:272.112000px;}
.ws24{word-spacing:285.108000px;}
.ws25{word-spacing:285.264000px;}
.wsdd{word-spacing:288.979200px;}
.ws2b{word-spacing:306.084000px;}
.ws19f{word-spacing:314.484000px;}
.wsba{word-spacing:354.618240px;}
.ws132{word-spacing:362.819280px;}
.ws133{word-spacing:363.716400px;}
.ws131{word-spacing:363.781440px;}
.ws221{word-spacing:371.484000px;}
.ws115{word-spacing:390.960000px;}
.ws43{word-spacing:611.448000px;}
.ws48{word-spacing:956.940000px;}
.wsca{word-spacing:1388.928000px;}
.ws1a{word-spacing:1897.788000px;}
.ws4f{word-spacing:2896.344000px;}
._c{margin-left:-20.180160px;}
._4{margin-left:-14.994720px;}
._a{margin-left:-13.234320px;}
._19{margin-left:-11.520000px;}
._b{margin-left:-9.504000px;}
._6{margin-left:-8.074080px;}
._1{margin-left:-6.920640px;}
._8{margin-left:-5.616000px;}
._2{margin-left:-4.421520px;}
._5{margin-left:-2.883600px;}
._0{margin-left:-1.345680px;}
._3{width:1.153440px;}
._7{width:2.559600px;}
._14{width:4.420820px;}
._13{width:6.954245px;}
._27{width:17.435232px;}
._29{width:22.399440px;}
._37{width:23.426688px;}
._9{width:25.767360px;}
._2f{width:26.849520px;}
._15{width:28.276320px;}
._16{width:29.335440px;}
._12{width:30.948000px;}
._32{width:33.094080px;}
._1f{width:35.844000px;}
._3b{width:37.812720px;}
._d{width:39.516000px;}
._31{width:40.748400px;}
._18{width:43.124880px;}
._3a{width:44.299680px;}
._3c{width:45.976128px;}
._35{width:48.274896px;}
._1e{width:49.419504px;}
._e{width:55.188000px;}
._28{width:57.325440px;}
._17{width:58.517568px;}
._25{width:61.009680px;}
._24{width:66.444240px;}
._20{width:68.293488px;}
._3d{width:69.933600px;}
._2a{width:74.050320px;}
._2b{width:79.963200px;}
._34{width:82.860240px;}
._33{width:84.417840px;}
._23{width:87.824016px;}
._2c{width:88.970160px;}
._11{width:98.928000px;}
._21{width:136.141008px;}
._10{width:145.980000px;}
._30{width:161.711280px;}
._39{width:163.366080px;}
._22{width:192.467760px;}
._f{width:338.316240px;}
._1b{width:345.488400px;}
._1a{width:364.690560px;}
._2d{width:610.867200px;}
._2e{width:674.890560px;}
._26{width:802.169040px;}
._1d{width:1115.849280px;}
._36{width:1194.254880px;}
._38{width:1274.774880px;}
._1c{width:3132.266640px;}
.fcc{color:rgb(33,89,104);}
.fcb{color:rgb(31,78,121);}
.fc9{color:rgb(9,79,164);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(102,0,255);}
.fc5{color:transparent;}
.fc8{color:rgb(68,84,106);}
.fc6{color:rgb(34,42,53);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(56,87,35);}
.fc2{color:rgb(32,56,100);}
.fc0{color:rgb(0,0,102);}
.fs1d{font-size:72.000000px;}
.fs1e{font-size:72.144000px;}
.fs1a{font-size:74.880000px;}
.fs17{font-size:75.024000px;}
.fs19{font-size:82.800000px;}
.fs18{font-size:82.944000px;}
.fs11{font-size:84.240000px;}
.fs12{font-size:84.384000px;}
.fs1b{font-size:88.560000px;}
.fsd{font-size:95.760000px;}
.fse{font-size:95.904000px;}
.fs15{font-size:102.240000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs1c{font-size:110.880000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fsf{font-size:126.000000px;}
.fs10{font-size:126.144000px;}
.fs1f{font-size:131.760000px;}
.fs20{font-size:131.904000px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs7{font-size:156.240000px;}
.fs16{font-size:156.384000px;}
.fs13{font-size:167.760000px;}
.fs14{font-size:167.904000px;}
.fs21{font-size:174.240000px;}
.fs22{font-size:174.384000px;}
.fsc{font-size:176.832798px;}
.fsb{font-size:176.984586px;}
.fs0{font-size:192.240000px;}
.fsa{font-size:192.384000px;}
.fs5{font-size:239.760000px;}
.fs6{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.yea{bottom:6.660000px;}
.y245{bottom:6.696000px;}
.yc9{bottom:10.008000px;}
.ycd{bottom:12.852000px;}
.yb6{bottom:14.112000px;}
.y20c{bottom:18.360000px;}
.y5d{bottom:21.276000px;}
.y182{bottom:23.040000px;}
.y2e{bottom:23.256000px;}
.y8a{bottom:23.580000px;}
.y134{bottom:25.452000px;}
.y1ff{bottom:25.812000px;}
.y130{bottom:27.936000px;}
.yfd{bottom:31.320000px;}
.y5c{bottom:34.776000px;}
.y3d{bottom:36.108000px;}
.y216{bottom:36.216000px;}
.y2c{bottom:36.288000px;}
.y244{bottom:44.496000px;}
.y1aa{bottom:46.404000px;}
.ycf{bottom:46.476000px;}
.yc1{bottom:47.124000px;}
.y66{bottom:49.248000px;}
.y5{bottom:51.048000px;}
.yf1{bottom:53.460000px;}
.y2d{bottom:55.656000px;}
.y1fe{bottom:58.212000px;}
.yb0{bottom:58.680000px;}
.y162{bottom:58.860000px;}
.yfc{bottom:63.720000px;}
.y12c{bottom:65.988000px;}
.y5b{bottom:67.176000px;}
.y215{bottom:68.616000px;}
.y2b{bottom:68.724000px;}
.y1a9{bottom:68.904000px;}
.y128{bottom:69.012000px;}
.y181{bottom:69.840000px;}
.y194{bottom:75.420000px;}
.yb3{bottom:79.200000px;}
.y243{bottom:82.332000px;}
.y1db{bottom:85.356000px;}
.yc0{bottom:90.324000px;}
.y1fd{bottom:90.648000px;}
.yaf{bottom:91.080000px;}
.y1a8{bottom:91.224000px;}
.y65{bottom:92.448000px;}
.yd6{bottom:92.550000px;}
.yf2{bottom:92.592000px;}
.ydb{bottom:92.595000px;}
.yed{bottom:92.625000px;}
.yd3{bottom:92.670000px;}
.yb5{bottom:95.976000px;}
.yfb{bottom:96.120000px;}
.y4e{bottom:97.128000px;}
.y5a{bottom:99.576000px;}
.y214{bottom:101.052000px;}
.ye0{bottom:102.600000px;}
.y133{bottom:103.500000px;}
.y17e{bottom:105.192000px;}
.y1a0{bottom:105.696000px;}
.y12f{bottom:105.912000px;}
.y74{bottom:106.272000px;}
.yb2{bottom:108.000000px;}
.y1b6{bottom:108.360000px;}
.y1e5{bottom:109.764000px;}
.ycc{bottom:110.808000px;}
.y13{bottom:110.952000px;}
.y1a7{bottom:113.724000px;}
.y180{bottom:116.676000px;}
.yf0{bottom:117.252000px;}
.y2a{bottom:117.324000px;}
.y11d{bottom:118.260000px;}
.y242{bottom:120.132000px;}
.ye7{bottom:120.600000px;}
.yb4{bottom:121.212000px;}
.y234{bottom:121.572000px;}
.yec{bottom:121.860000px;}
.y1fc{bottom:123.048000px;}
.yae{bottom:123.516000px;}
.y22c{bottom:124.236000px;}
.y161{bottom:124.416000px;}
.y7{bottom:124.740000px;}
.y1da{bottom:124.956000px;}
.y19f{bottom:128.196000px;}
.yfa{bottom:128.556000px;}
.y4d{bottom:129.528000px;}
.y1b5{bottom:130.860000px;}
.y59{bottom:132.012000px;}
.y61{bottom:133.092000px;}
.y213{bottom:133.452000px;}
.ybf{bottom:133.524000px;}
.y1d1{bottom:134.748000px;}
.y73{bottom:134.892000px;}
.y1a6{bottom:136.224000px;}
.yb1{bottom:136.800000px;}
.y12{bottom:143.352000px;}
.yef{bottom:146.052000px;}
.y17d{bottom:148.932000px;}
.y160{bottom:149.616000px;}
.y29{bottom:149.724000px;}
.y19e{bottom:150.690000px;}
.y1b4{bottom:153.360000px;}
.y196{bottom:153.645000px;}
.y1fb{bottom:155.445000px;}
.yc8{bottom:155.520000px;}
.yad{bottom:155.910000px;}
.y1d0{bottom:156.345000px;}
.y1ee{bottom:156.780000px;}
.y241{bottom:157.935000px;}
.yf9{bottom:160.950000px;}
.y140{bottom:161.175000px;}
.y4c{bottom:161.925000px;}
.y17f{bottom:163.470000px;}
.y1e{bottom:163.695000px;}
.y1d9{bottom:164.550000px;}
.y212{bottom:165.855000px;}
.ye9{bottom:167.400000px;}
.y11c{bottom:168.660000px;}
.y233{bottom:169.455000px;}
.y170{bottom:169.530000px;}
.y1a5{bottom:171.150000px;}
.y19d{bottom:173.055000px;}
.y15f{bottom:174.855000px;}
.y132{bottom:175.650000px;}
.y1b3{bottom:175.710000px;}
.y6{bottom:175.860000px;}
.yce{bottom:176.250000px;}
.y60{bottom:176.325000px;}
.y12e{bottom:177.690000px;}
.y1cf{bottom:177.945000px;}
.y87{bottom:178.950000px;}
.ydf{bottom:178.995000px;}
.y58{bottom:180.615000px;}
.y1e4{bottom:181.770000px;}
.y195{bottom:186.045000px;}
.y222{bottom:187.410000px;}
.y1fa{bottom:187.845000px;}
.y17c{bottom:192.705000px;}
.yf8{bottom:193.350000px;}
.y1a4{bottom:193.500000px;}
.y68{bottom:194.010000px;}
.y240{bottom:195.735000px;}
.y1b2{bottom:198.210000px;}
.y211{bottom:198.255000px;}
.yc7{bottom:198.750000px;}
.y1ce{bottom:199.545000px;}
.y1d8{bottom:204.195000px;}
.y72{bottom:206.895000px;}
.yd9{bottom:207.795000px;}
.yeb{bottom:207.825000px;}
.y19c{bottom:207.975000px;}
.y250{bottom:208.005000px;}
.y179{bottom:208.080000px;}
.y4b{bottom:210.570000px;}
.y86{bottom:211.350000px;}
.y12b{bottom:212.070000px;}
.y57{bottom:213.015000px;}
.y127{bottom:214.095000px;}
.yee{bottom:214.485000px;}
.y232{bottom:217.155000px;}
.y16f{bottom:217.590000px;}
.yde{bottom:217.800000px;}
.y13f{bottom:218.775000px;}
.y11b{bottom:219.060000px;}
.y5f{bottom:219.525000px;}
.y1f9{bottom:220.245000px;}
.y30{bottom:220.290000px;}
.y1b1{bottom:220.710000px;}
.y1cd{bottom:221.190000px;}
.y225{bottom:221.940000px;}
.y221{bottom:221.970000px;}
.y1a3{bottom:228.420000px;}
.y19b{bottom:230.475000px;}
.ya0{bottom:232.635000px;}
.y32{bottom:233.670000px;}
.y71{bottom:235.695000px;}
.y1d{bottom:235.725000px;}
.y17b{bottom:236.625000px;}
.y67{bottom:237.240000px;}
.yb8{bottom:237.705000px;}
.y24f{bottom:240.405000px;}
.y193{bottom:241.200000px;}
.y1cc{bottom:242.790000px;}
.y4a{bottom:242.970000px;}
.y1b0{bottom:243.030000px;}
.y1d7{bottom:243.795000px;}
.y12d{bottom:244.650000px;}
.y56{bottom:245.415000px;}
.y112{bottom:247.245000px;}
.y131{bottom:248.865000px;}
.y23f{bottom:248.910000px;}
.y13b{bottom:250.590000px;}
.y16e{bottom:250.710000px;}
.y1a2{bottom:250.920000px;}
.y18b{bottom:251.790000px;}
.y2f{bottom:252.690000px;}
.y19a{bottom:252.975000px;}
.y224{bottom:256.500000px;}
.y220{bottom:256.575000px;}
.y5e{bottom:262.725000px;}
.y1cb{bottom:264.390000px;}
.y9f{bottom:265.065000px;}
.ye5{bottom:265.395000px;}
.y1af{bottom:265.530000px;}
.y31{bottom:266.070000px;}
.yb7{bottom:266.505000px;}
.y11a{bottom:269.490000px;}
.y15e{bottom:272.520000px;}
.y1a1{bottom:273.420000px;}
.y24e{bottom:273.525000px;}
.y192{bottom:273.600000px;}
.y13a{bottom:273.630000px;}
.y199{bottom:275.295000px;}
.y49{bottom:275.370000px;}
.y55{bottom:277.815000px;}
.y17a{bottom:280.365000px;}
.y7d{bottom:280.515000px;}
.y15b{bottom:281.445000px;}
.y14f{bottom:281.955000px;}
.y70{bottom:281.985000px;}
.y201{bottom:282.675000px;}
.y1d6{bottom:283.395000px;}
.y210{bottom:284.685000px;}
.y12a{bottom:285.300000px;}
.y1ca{bottom:285.990000px;}
.y23e{bottom:286.710000px;}
.y126{bottom:287.895000px;}
.y1ae{bottom:288.030000px;}
.y1e3{bottom:289.800000px;}
.y22b{bottom:290.130000px;}
.y21f{bottom:291.135000px;}
.y223{bottom:291.270000px;}
.y1f8{bottom:291.885000px;}
.ye3{bottom:294.195000px;}
.y18a{bottom:295.020000px;}
.y139{bottom:296.670000px;}
.y9e{bottom:297.465000px;}
.y15d{bottom:297.720000px;}
.y198{bottom:297.795000px;}
.y16d{bottom:298.950000px;}
.y10a{bottom:302.910000px;}
.ya3{bottom:304.815000px;}
.y15a{bottom:306.645000px;}
.y14e{bottom:307.185000px;}
.y111{bottom:307.440000px;}
.y1c9{bottom:307.590000px;}
.y1c{bottom:307.725000px;}
.y48{bottom:307.770000px;}
.yc6{bottom:308.595000px;}
.y24d{bottom:309.570000px;}
.y54{bottom:310.245000px;}
.y1ad{bottom:310.350000px;}
.y13e{bottom:311.685000px;}
.y7c{bottom:312.915000px;}
.y20f{bottom:317.085000px;}
.ya5{bottom:317.190000px;}
.y178{bottom:317.235000px;}
.y231{bottom:317.445000px;}
.y4{bottom:318.420000px;}
.y138{bottom:319.710000px;}
.y119{bottom:319.890000px;}
.y197{bottom:320.325000px;}
.y1ea{bottom:320.730000px;}
.y103{bottom:321.330000px;}
.y191{bottom:322.200000px;}
.y15c{bottom:322.920000px;}
.y1d5{bottom:322.995000px;}
.ye1{bottom:323.025000px;}
.y1f7{bottom:324.285000px;}
.y23d{bottom:324.510000px;}
.y1e2{bottom:325.800000px;}
.y21e{bottom:325.875000px;}
.y11{bottom:326.310000px;}
.y3c{bottom:326.730000px;}
.ye8{bottom:328.395000px;}
.y1c8{bottom:329.190000px;}
.y9d{bottom:329.865000px;}
.ya2{bottom:330.015000px;}
.y16c{bottom:332.100000px;}
.y1ac{bottom:332.895000px;}
.y6f{bottom:334.185000px;}
.y109{bottom:335.310000px;}
.y189{bottom:338.220000px;}
.y110{bottom:339.840000px;}
.y1b9{bottom:340.950000px;}
.y53{bottom:342.645000px;}
.yd8{bottom:344.520000px;}
.y24c{bottom:344.850000px;}
.y7b{bottom:345.315000px;}
.ya4{bottom:345.990000px;}
.y20e{bottom:349.485000px;}
.y1c7{bottom:350.790000px;}
.y6e{bottom:352.950000px;}
.y102{bottom:353.775000px;}
.ya1{bottom:355.215000px;}
.y1ab{bottom:355.395000px;}
.y47{bottom:356.400000px;}
.y1f6{bottom:356.685000px;}
.y129{bottom:357.405000px;}
.y10{bottom:358.710000px;}
.yc5{bottom:358.995000px;}
.y125{bottom:359.355000px;}
.y14d{bottom:360.615000px;}
.y9c{bottom:362.265000px;}
.y20d{bottom:363.525000px;}
.y1b8{bottom:363.630000px;}
.y177{bottom:364.290000px;}
.y16b{bottom:365.220000px;}
.y230{bottom:365.325000px;}
.y108{bottom:367.710000px;}
.ye6{bottom:367.995000px;}
.y3b{bottom:369.930000px;}
.y118{bottom:370.290000px;}
.y235{bottom:371.805000px;}
.y10f{bottom:372.240000px;}
.y1c6{bottom:372.420000px;}
.y23c{bottom:373.710000px;}
.y3{bottom:376.020000px;}
.y1bc{bottom:376.890000px;}
.y24b{bottom:377.250000px;}
.y7a{bottom:377.715000px;}
.y1b{bottom:379.725000px;}
.y188{bottom:381.420000px;}
.y20b{bottom:381.885000px;}
.ydc{bottom:384.120000px;}
.y14c{bottom:385.815000px;}
.y1b7{bottom:386.130000px;}
.y101{bottom:386.175000px;}
.y46{bottom:388.800000px;}
.y1f5{bottom:389.085000px;}
.y28{bottom:391.110000px;}
.y52{bottom:391.245000px;}
.yf{bottom:391.860000px;}
.y1e9{bottom:392.760000px;}
.y1c5{bottom:394.020000px;}
.y9b{bottom:394.665000px;}
.y156{bottom:396.435000px;}
.ye4{bottom:396.795000px;}
.y1e1{bottom:397.830000px;}
.y1bb{bottom:399.570000px;}
.y107{bottom:400.140000px;}
.yb9{bottom:401.250000px;}
.y6d{bottom:403.380000px;}
.y25a{bottom:403.890000px;}
.y38{bottom:404.100000px;}
.y10e{bottom:404.670000px;}
.y25e{bottom:406.050000px;}
.y159{bottom:406.725000px;}
.y24a{bottom:409.650000px;}
.y14b{bottom:411.015000px;}
.y23b{bottom:411.510000px;}
.y22f{bottom:413.025000px;}
.y3a{bottom:413.175000px;}
.y16a{bottom:413.280000px;}
.y176{bottom:415.290000px;}
.y1c4{bottom:415.620000px;}
.y25c{bottom:418.215000px;}
.y100{bottom:418.575000px;}
.y117{bottom:420.735000px;}
.y45{bottom:421.200000px;}
.y155{bottom:421.665000px;}
.y1ba{bottom:422.070000px;}
.y27{bottom:423.330000px;}
.y51{bottom:423.645000px;}
.y1be{bottom:424.185000px;}
.y187{bottom:425.340000px;}
.y82{bottom:425.445000px;}
.y1bd{bottom:425.490000px;}
.ye2{bottom:425.625000px;}
.y172{bottom:426.750000px;}
.ye{bottom:427.860000px;}
.y158{bottom:431.925000px;}
.y120{bottom:432.255000px;}
.y106{bottom:432.540000px;}
.y2{bottom:433.620000px;}
.y124{bottom:433.980000px;}
.y85{bottom:434.445000px;}
.y190{bottom:435.270000px;}
.y14a{bottom:436.245000px;}
.y259{bottom:436.290000px;}
.y10d{bottom:437.070000px;}
.y22a{bottom:439.350000px;}
.y200{bottom:440.280000px;}
.y21a{bottom:441.000000px;}
.y249{bottom:442.050000px;}
.y1e0{bottom:442.830000px;}
.y13c{bottom:444.810000px;}
.y169{bottom:446.400000px;}
.y154{bottom:446.865000px;}
.y23a{bottom:449.355000px;}
.yff{bottom:450.975000px;}
.y1a{bottom:451.770000px;}
.y44{bottom:453.600000px;}
.y7f{bottom:455.220000px;}
.y26{bottom:455.910000px;}
.y50{bottom:456.090000px;}
.y157{bottom:457.125000px;}
.y81{bottom:457.845000px;}
.y21d{bottom:458.250000px;}
.y171{bottom:459.150000px;}
.yda{bottom:459.720000px;}
.yd{bottom:463.140000px;}
.y1e8{bottom:464.760000px;}
.y105{bottom:464.940000px;}
.y84{bottom:466.845000px;}
.y175{bottom:467.250000px;}
.y258{bottom:468.690000px;}
.y20a{bottom:468.930000px;}
.y10c{bottom:469.470000px;}
.y116{bottom:471.135000px;}
.y153{bottom:472.065000px;}
.y186{bottom:472.170000px;}
.y229{bottom:472.470000px;}
.y248{bottom:474.480000px;}
.y219{bottom:475.560000px;}
.ydd{bottom:476.670000px;}
.y1df{bottom:478.830000px;}
.y1f4{bottom:479.130000px;}
.y168{bottom:479.550000px;}
.y64{bottom:483.195000px;}
.yfe{bottom:483.375000px;}
.y18f{bottom:483.870000px;}
.y91{bottom:485.355000px;}
.y239{bottom:487.155000px;}
.y7e{bottom:487.620000px;}
.y25{bottom:488.340000px;}
.yab{bottom:488.415000px;}
.y4f{bottom:488.490000px;}
.y9a{bottom:489.210000px;}
.y80{bottom:490.245000px;}
.y1{bottom:491.250000px;}
.y21c{bottom:492.810000px;}
.yc{bottom:495.540000px;}
.y104{bottom:497.340000px;}
.y83{bottom:499.245000px;}
.y174{bottom:500.400000px;}
.y25d{bottom:501.090000px;}
.y257{bottom:501.120000px;}
.y1d4{bottom:501.270000px;}
.y209{bottom:501.330000px;}
.y10b{bottom:501.870000px;}
.y11f{bottom:504.390000px;}
.y123{bottom:505.770000px;}
.y247{bottom:506.880000px;}
.y6c{bottom:507.060000px;}
.yd5{bottom:507.960000px;}
.y149{bottom:509.145000px;}
.y218{bottom:510.120000px;}
.y90{bottom:510.555000px;}
.y1f3{bottom:511.530000px;}
.y167{bottom:512.670000px;}
.yaa{bottom:517.215000px;}
.y35{bottom:519.765000px;}
.y24{bottom:520.740000px;}
.y115{bottom:521.535000px;}
.y99{bottom:521.610000px;}
.y152{bottom:522.510000px;}
.y19{bottom:523.770000px;}
.y1de{bottom:523.830000px;}
.y1ed{bottom:525.960000px;}
.y22e{bottom:526.065000px;}
.y63{bottom:526.425000px;}
.y21b{bottom:527.580000px;}
.yb{bottom:527.940000px;}
.y18{bottom:532.290000px;}
.y256{bottom:533.520000px;}
.y208{bottom:533.730000px;}
.y76{bottom:534.030000px;}
.y148{bottom:534.390000px;}
.y8f{bottom:535.755000px;}
.y1e7{bottom:536.790000px;}
.y238{bottom:537.330000px;}
.y13d{bottom:537.450000px;}
.ybe{bottom:540.870000px;}
.y1f2{bottom:543.930000px;}
.y217{bottom:544.860000px;}
.ya9{bottom:546.015000px;}
.y151{bottom:547.710000px;}
.y42{bottom:548.640000px;}
.y6b{bottom:550.290000px;}
.yd2{bottom:551.700000px;}
.y34{bottom:552.210000px;}
.y23{bottom:553.140000px;}
.y142{bottom:553.170000px;}
.y98{bottom:554.010000px;}
.y1c3{bottom:556.740000px;}
.y185{bottom:557.100000px;}
.y94{bottom:557.715000px;}
.y173{bottom:559.260000px;}
.y147{bottom:559.590000px;}
.y1dd{bottom:559.875000px;}
.ya{bottom:560.370000px;}
.y145{bottom:560.955000px;}
.y17{bottom:564.690000px;}
.yc4{bottom:565.350000px;}
.y255{bottom:565.920000px;}
.y207{bottom:566.130000px;}
.y122{bottom:569.130000px;}
.y114{bottom:571.965000px;}
.y150{bottom:572.940000px;}
.y22d{bottom:573.765000px;}
.y237{bottom:575.130000px;}
.y1f1{bottom:576.360000px;}
.y75{bottom:577.260000px;}
.y11e{bottom:577.770000px;}
.y1d3{bottom:580.470000px;}
.y93{bottom:582.915000px;}
.ybd{bottom:584.070000px;}
.ya8{bottom:584.175000px;}
.y33{bottom:584.610000px;}
.y146{bottom:584.790000px;}
.y22{bottom:585.540000px;}
.y144{bottom:586.155000px;}
.y97{bottom:586.410000px;}
.y8e{bottom:587.625000px;}
.y18e{bottom:588.270000px;}
.y228{bottom:588.750000px;}
.y41{bottom:591.840000px;}
.y43{bottom:592.560000px;}
.y9{bottom:592.770000px;}
.y121{bottom:594.330000px;}
.y254{bottom:598.320000px;}
.y206{bottom:598.530000px;}
.yd7{bottom:600.510000px;}
.y184{bottom:603.900000px;}
.y1dc{bottom:604.875000px;}
.y92{bottom:608.145000px;}
.yc3{bottom:608.580000px;}
.y1f0{bottom:608.760000px;}
.yd0{bottom:610.485000px;}
.y141{bottom:610.815000px;}
.y8d{bottom:612.825000px;}
.ya7{bottom:612.975000px;}
.y1c2{bottom:614.340000px;}
.y166{bottom:616.215000px;}
.yf7{bottom:617.760000px;}
.y21{bottom:618.660000px;}
.y96{bottom:618.840000px;}
.y6a{bottom:619.380000px;}
.y1d2{bottom:620.070000px;}
.y227{bottom:621.690000px;}
.y113{bottom:622.365000px;}
.y143{bottom:623.625000px;}
.y8{bottom:625.170000px;}
.ybc{bottom:627.300000px;}
.y253{bottom:630.720000px;}
.y205{bottom:630.975000px;}
.y40{bottom:635.040000px;}
.y18d{bottom:636.915000px;}
.y8c{bottom:638.070000px;}
.y1ef{bottom:641.160000px;}
.ya6{bottom:641.805000px;}
.y1c1{bottom:643.170000px;}
.y79{bottom:644.040000px;}
.yd4{bottom:644.370000px;}
.yf6{bottom:650.160000px;}
.y183{bottom:650.700000px;}
.y236{bottom:650.775000px;}
.y20{bottom:651.090000px;}
.y95{bottom:651.240000px;}
.yc2{bottom:651.780000px;}
.y226{bottom:654.810000px;}
.y69{bottom:662.580000px;}
.y1e6{bottom:662.910000px;}
.y252{bottom:663.150000px;}
.y8b{bottom:663.270000px;}
.ybb{bottom:670.500000px;}
.y203{bottom:672.555000px;}
.yf5{bottom:682.560000px;}
.yd1{bottom:685.470000px;}
.y78{bottom:687.240000px;}
.y37{bottom:691.740000px;}
.y251{bottom:695.550000px;}
.y202{bottom:697.755000px;}
.y1c0{bottom:698.835000px;}
.y3f{bottom:701.970000px;}
.y246{bottom:702.180000px;}
.y1ec{bottom:707.940000px;}
.y18c{bottom:713.310000px;}
.ycb{bottom:713.670000px;}
.y39{bottom:714.060000px;}
.y136{bottom:714.525000px;}
.y16{bottom:714.570000px;}
.yf4{bottom:714.990000px;}
.y164{bottom:722.085000px;}
.y204{bottom:722.955000px;}
.y36{bottom:724.140000px;}
.y77{bottom:730.470000px;}
.y89{bottom:736.200000px;}
.y15{bottom:747.000000px;}
.y1bf{bottom:756.465000px;}
.y135{bottom:757.725000px;}
.y1eb{bottom:758.160000px;}
.y137{bottom:758.235000px;}
.y3e{bottom:759.600000px;}
.yba{bottom:763.530000px;}
.yf3{bottom:763.740000px;}
.yca{bottom:764.100000px;}
.y163{bottom:765.285000px;}
.yac{bottom:766.980000px;}
.y62{bottom:768.060000px;}
.y25b{bottom:769.065000px;}
.y165{bottom:769.860000px;}
.y1f{bottom:772.230000px;}
.y88{bottom:774.000000px;}
.y14{bottom:779.400000px;}
.h1f{height:69.473320px;}
.h20{height:69.592078px;}
.h3a{height:75.093750px;}
.h3b{height:75.243937px;}
.h21{height:78.973945px;}
.h22{height:79.092703px;}
.hd{height:82.054688px;}
.h31{height:84.318047px;}
.h2c{height:85.847344px;}
.h2b{height:85.976438px;}
.h36{height:86.357813px;}
.h35{height:86.508000px;}
.h48{height:87.609375px;}
.h4{height:89.068359px;}
.h5{height:89.187117px;}
.ha{height:92.021484px;}
.h9{height:92.144180px;}
.h37{height:92.365313px;}
.h46{height:96.820312px;}
.h45{height:96.949406px;}
.h4a{height:99.162773px;}
.h4b{height:99.281531px;}
.h27{height:99.580359px;}
.h19{height:99.874688px;}
.h1a{height:100.024875px;}
.h47{height:103.913086px;}
.h49{height:104.031844px;}
.hb{height:108.843750px;}
.hc{height:108.988875px;}
.h2{height:112.640625px;}
.h13{height:112.790813px;}
.h16{height:119.759322px;}
.h15{height:119.862120px;}
.h3{height:125.406562px;}
.h3e{height:125.556750px;}
.h18{height:127.815188px;}
.h14{height:128.852227px;}
.h1c{height:131.414062px;}
.h1d{height:131.564250px;}
.h3c{height:137.421562px;}
.h3d{height:137.571750px;}
.h2f{height:138.352852px;}
.h30{height:138.471609px;}
.h1e{height:139.180359px;}
.h17{height:141.257812px;}
.h8{height:141.363633px;}
.h1b{height:141.399070px;}
.h4c{height:143.696953px;}
.h4d{height:143.815711px;}
.hf{height:145.125000px;}
.he{height:145.270125px;}
.h12{height:150.187500px;}
.h25{height:150.337688px;}
.h23{height:157.460625px;}
.h11{height:158.541680px;}
.h10{height:158.660438px;}
.h32{height:162.953438px;}
.h33{height:163.103625px;}
.h24{height:169.070625px;}
.h26{height:169.215750px;}
.h34{height:174.968437px;}
.h2e{height:175.118625px;}
.h39{height:193.741875px;}
.h3f{height:193.887000px;}
.h1{height:200.500313px;}
.h28{height:201.600000px;}
.h6{height:250.062187px;}
.h7{height:250.212375px;}
.h40{height:284.040000px;}
.h2d{height:341.460000px;}
.h38{height:346.044375px;}
.h41{height:369.720000px;}
.h29{height:403.200000px;}
.h2a{height:604.800000px;}
.h42{height:680.400000px;}
.h43{height:795.960000px;}
.h44{height:806.760000px;}
.h0{height:810.000000px;}
.w8{width:118.980000px;}
.w6{width:142.020000px;}
.w2{width:203.760000px;}
.w9{width:207.900000px;}
.w5{width:349.920000px;}
.w4{width:362.880000px;}
.w7{width:655.020000px;}
.wa{width:723.960000px;}
.w3{width:850.680000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xd0{left:8.064000px;}
.x93{left:10.836000px;}
.x92{left:12.780000px;}
.x5e{left:13.931984px;}
.xff{left:15.048000px;}
.x78{left:17.891984px;}
.x5d{left:20.951984px;}
.xef{left:23.040000px;}
.x10f{left:24.551984px;}
.x16{left:27.467984px;}
.xf9{left:28.619984px;}
.x1e{left:29.807984px;}
.x15{left:33.191984px;}
.x34{left:34.631984px;}
.x68{left:36.827984px;}
.x103{left:39.419984px;}
.x8e{left:41.651984px;}
.xfa{left:43.199984px;}
.x1d{left:44.747984px;}
.x6c{left:46.223984px;}
.x7e{left:47.339984px;}
.x3b{left:49.067984px;}
.x5f{left:50.471984px;}
.x69{left:51.767984px;}
.x6d{left:52.919984px;}
.x7f{left:53.999984px;}
.x1f{left:55.007984px;}
.x80{left:56.339984px;}
.x91{left:57.383984px;}
.x6b{left:58.967984px;}
.xeb{left:60.875984px;}
.xd3{left:62.963984px;}
.x9{left:64.799984px;}
.x81{left:65.879984px;}
.x3f{left:67.859984px;}
.x9d{left:69.731984px;}
.xdd{left:71.567984px;}
.x8{left:73.655984px;}
.x40{left:76.139984px;}
.x18{left:77.327984px;}
.x10c{left:78.371984px;}
.xe3{left:79.559984px;}
.x6a{left:81.467984px;}
.x109{left:82.547984px;}
.x10d{left:83.915984px;}
.x25{left:85.283984px;}
.xe6{left:87.983984px;}
.x26{left:90.287984px;}
.x3e{left:92.987984px;}
.x1b{left:94.247984px;}
.x3d{left:96.803984px;}
.xec{left:97.847984px;}
.x24{left:99.647984px;}
.xa1{left:100.727984px;}
.x1a{left:102.347984px;}
.xe5{left:104.543984px;}
.xa3{left:109.007984px;}
.x3{left:110.879984px;}
.x3c{left:113.183984px;}
.x98{left:115.811984px;}
.x19{left:118.007984px;}
.x9b{left:119.123984px;}
.x27{left:121.787984px;}
.xe2{left:123.767984px;}
.xaf{left:126.611984px;}
.x38{left:128.555984px;}
.x1{left:130.679984px;}
.xb8{left:133.343984px;}
.x35{left:137.087984px;}
.x9c{left:140.687984px;}
.x17{left:145.547984px;}
.x1c{left:148.967984px;}
.xee{left:150.764984px;}
.x100{left:152.744984px;}
.xac{left:154.109984px;}
.xaa{left:156.209984px;}
.xa9{left:157.424984px;}
.x4d{left:159.269984px;}
.x11{left:161.639984px;}
.xa7{left:165.059984px;}
.x49{left:172.769984px;}
.xed{left:177.449984px;}
.xb9{left:178.994984px;}
.xd1{left:180.509984px;}
.xa8{left:185.039984px;}
.x12{left:187.019984px;}
.xea{left:188.024984px;}
.xf2{left:190.649984px;}
.xcc{left:194.789984px;}
.xfb{left:196.664984px;}
.x9f{left:198.359984px;}
.x4b{left:200.669984px;}
.xf1{left:203.114984px;}
.xcb{left:205.769984px;}
.xa5{left:210.059984px;}
.xb5{left:211.469984px;}
.x94{left:216.540000px;}
.xf0{left:219.134984px;}
.xa4{left:223.379984px;}
.x13{left:228.599984px;}
.x10{left:232.019984px;}
.xe0{left:236.234984px;}
.x84{left:237.749984px;}
.x2{left:239.759984px;}
.x4{left:243.179984px;}
.xf{left:244.439984px;}
.xa2{left:254.084984px;}
.x4e{left:255.419984px;}
.x97{left:261.149984px;}
.xd2{left:265.860000px;}
.x51{left:271.619984px;}
.xc{left:272.804984px;}
.x86{left:276.629984px;}
.xbb{left:278.204984px;}
.x2f{left:283.394984px;}
.x85{left:284.939984px;}
.x73{left:285.989984px;}
.xab{left:290.444984px;}
.xbc{left:291.524984px;}
.x76{left:292.604984px;}
.x87{left:294.374984px;}
.xb0{left:295.814984px;}
.xba{left:298.004984px;}
.x4c{left:300.239984px;}
.xde{left:301.829984px;}
.xcf{left:303.089984px;}
.x74{left:305.249984px;}
.xbd{left:306.464984px;}
.x8f{left:307.619984px;}
.x71{left:309.164984px;}
.x50{left:312.449984px;}
.xa6{left:313.769984px;}
.x77{left:317.669984px;}
.x9a{left:325.949984px;}
.x83{left:328.349984px;}
.xe7{left:334.589984px;}
.x4a{left:336.419984px;}
.x4f{left:338.189984px;}
.x95{left:340.379984px;}
.x101{left:341.460000px;}
.xb1{left:344.489984px;}
.x10e{left:350.849984px;}
.xe8{left:353.489984px;}
.x6{left:357.089984px;}
.x7a{left:359.429984px;}
.x96{left:361.619984px;}
.x75{left:362.879984px;}
.xa{left:365.549984px;}
.x14{left:370.289984px;}
.x8a{left:373.889984px;}
.x79{left:376.529984px;}
.x102{left:379.724984px;}
.xce{left:381.449984px;}
.x44{left:382.499984px;}
.xdb{left:384.194984px;}
.x7{left:385.529984px;}
.x106{left:386.894984px;}
.x9e{left:389.129984px;}
.xb{left:391.289984px;}
.x104{left:392.864984px;}
.x10b{left:398.234984px;}
.x59{left:399.419984px;}
.xf4{left:401.940000px;}
.xdf{left:405.104984px;}
.xd4{left:407.369984px;}
.x48{left:409.064984px;}
.x41{left:410.939984px;}
.x47{left:413.249984px;}
.xb6{left:416.084984px;}
.x30{left:419.114984px;}
.x105{left:420.374984px;}
.xf6{left:427.469984px;}
.x31{left:429.014984px;}
.xf3{left:430.709984px;}
.x82{left:434.054984px;}
.xe1{left:437.729984px;}
.x20{left:441.644984px;}
.x45{left:443.159984px;}
.x90{left:446.429984px;}
.x10a{left:449.354984px;}
.x36{left:456.479984px;}
.x5a{left:457.769984px;}
.x21{left:464.504984px;}
.x23{left:466.304984px;}
.x52{left:470.189984px;}
.xb2{left:473.294984px;}
.xf8{left:474.989984px;}
.x22{left:479.624984px;}
.xb3{left:481.754984px;}
.xd8{left:482.834984px;}
.x72{left:484.709984px;}
.x32{left:490.784984px;}
.xb4{left:497.594984px;}
.xdc{left:499.754984px;}
.xfc{left:523.229984px;}
.x37{left:532.619984px;}
.xfd{left:533.669984px;}
.x39{left:534.929984px;}
.x110{left:556.409984px;}
.xc0{left:566.099984px;}
.xc2{left:574.739984px;}
.xe9{left:586.874984px;}
.x3a{left:588.929984px;}
.xe4{left:595.469984px;}
.xc1{left:597.599984px;}
.xc3{left:606.239984px;}
.xfe{left:613.049984px;}
.xc7{left:628.409984px;}
.xf5{left:631.335000px;}
.x64{left:655.199984px;}
.xc6{left:657.389984px;}
.xf7{left:665.639984px;}
.x60{left:667.544984px;}
.x5{left:671.474984px;}
.x61{left:680.144984px;}
.x99{left:681.509984px;}
.x62{left:685.544984px;}
.x63{left:687.779984px;}
.xda{left:705.089984px;}
.xd{left:706.139984px;}
.xd9{left:707.609984px;}
.xe{left:715.859984px;}
.x8c{left:717.479984px;}
.xd6{left:723.314984px;}
.x88{left:727.049984px;}
.xbe{left:733.244984px;}
.x58{left:734.729984px;}
.x89{left:741.989984px;}
.xcd{left:745.739984px;}
.x42{left:749.309984px;}
.x43{left:750.569984px;}
.x8b{left:752.759984px;}
.x57{left:754.169984px;}
.xb7{left:757.589984px;}
.x2c{left:760.934984px;}
.x28{left:763.919984px;}
.x2d{left:766.229984px;}
.x107{left:768.269984px;}
.xd7{left:778.394984px;}
.x108{left:783.929984px;}
.xbf{left:788.189984px;}
.xd5{left:789.374984px;}
.x2a{left:791.534984px;}
.x46{left:793.409984px;}
.x53{left:795.629984px;}
.x29{left:800.819984px;}
.x55{left:804.629984px;}
.x2b{left:806.474984px;}
.x2e{left:818.384984px;}
.x54{left:829.109984px;}
.x56{left:836.309984px;}
.x5b{left:839.369984px;}
.x5c{left:846.389984px;}
.xae{left:853.814984px;}
.xad{left:858.494984px;}
.xc4{left:880.949984px;}
.xc5{left:882.749984px;}
.x66{left:892.079984px;}
.x7c{left:894.569984px;}
.x67{left:901.619984px;}
.x6f{left:913.649984px;}
.x70{left:918.689984px;}
.x65{left:921.239984px;}
.x6e{left:925.529984px;}
.xca{left:926.924984px;}
.xc9{left:928.904984px;}
.x7b{left:930.929984px;}
.xc8{left:958.244984px;}
.x33{left:996.224984px;}
.x7d{left:1021.829984px;}
.xa0{left:1022.969984px;}
.x8d{left:1048.289984px;}
@media print{
.v1{vertical-align:-92.053333pt;}
.va{vertical-align:-83.072000pt;}
.v9{vertical-align:-46.080000pt;}
.v5{vertical-align:-36.864000pt;}
.v4{vertical-align:-9.344000pt;}
.v6{vertical-align:-1.013333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.344000pt;}
.v2{vertical-align:44.544000pt;}
.v8{vertical-align:77.280000pt;}
.v7{vertical-align:127.520000pt;}
.ls15{letter-spacing:-1.888000pt;}
.ls1d{letter-spacing:-1.701333pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls93{letter-spacing:-0.768000pt;}
.ls63{letter-spacing:-0.741333pt;}
.ls4a{letter-spacing:-0.677333pt;}
.ls5f{letter-spacing:-0.661333pt;}
.ls50{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.544000pt;}
.ls4f{letter-spacing:-0.454933pt;}
.lsc{letter-spacing:-0.416000pt;}
.ls4c{letter-spacing:-0.384000pt;}
.ls6a{letter-spacing:-0.352000pt;}
.ls62{letter-spacing:-0.334400pt;}
.ls1f{letter-spacing:-0.326933pt;}
.ls88{letter-spacing:-0.323733pt;}
.ls85{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.317333pt;}
.ls65{letter-spacing:-0.310400pt;}
.ls23{letter-spacing:-0.288000pt;}
.ls74{letter-spacing:-0.278933pt;}
.ls18{letter-spacing:-0.275733pt;}
.ls5e{letter-spacing:-0.272533pt;}
.lse{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.252267pt;}
.ls48{letter-spacing:-0.248533pt;}
.ls3d{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.203733pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.191467pt;}
.ls8e{letter-spacing:-0.189333pt;}
.ls3c{letter-spacing:-0.166933pt;}
.ls82{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.149867pt;}
.ls8b{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.127467pt;}
.ls60{letter-spacing:-0.101867pt;}
.ls70{letter-spacing:-0.101333pt;}
.ls33{letter-spacing:-0.097067pt;}
.ls80{letter-spacing:-0.096000pt;}
.ls91{letter-spacing:-0.083733pt;}
.ls28{letter-spacing:-0.077333pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls89{letter-spacing:-0.063467pt;}
.ls37{letter-spacing:-0.061333pt;}
.ls6d{letter-spacing:-0.058667pt;}
.ls71{letter-spacing:-0.054933pt;}
.ls3{letter-spacing:-0.052480pt;}
.ls5a{letter-spacing:-0.039040pt;}
.ls49{letter-spacing:-0.037867pt;}
.ls35{letter-spacing:-0.034293pt;}
.ls1{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.030080pt;}
.ls2b{letter-spacing:-0.029973pt;}
.ls64{letter-spacing:-0.023680pt;}
.ls6f{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls81{letter-spacing:0.012800pt;}
.ls68{letter-spacing:0.014347pt;}
.ls6e{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.016640pt;}
.ls24{letter-spacing:0.028533pt;}
.ls14{letter-spacing:0.032000pt;}
.ls42{letter-spacing:0.033280pt;}
.ls36{letter-spacing:0.034560pt;}
.ls3f{letter-spacing:0.038400pt;}
.ls54{letter-spacing:0.039040pt;}
.ls56{letter-spacing:0.041493pt;}
.ls3a{letter-spacing:0.044800pt;}
.ls21{letter-spacing:0.064000pt;}
.ls7e{letter-spacing:0.080000pt;}
.ls59{letter-spacing:0.080533pt;}
.ls4b{letter-spacing:0.090133pt;}
.ls61{letter-spacing:0.094933pt;}
.ls32{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.109333pt;}
.ls38{letter-spacing:0.112000pt;}
.ls53{letter-spacing:0.119467pt;}
.ls79{letter-spacing:0.126400pt;}
.ls2a{letter-spacing:0.126933pt;}
.ls72{letter-spacing:0.127467pt;}
.ls34{letter-spacing:0.129067pt;}
.ls78{letter-spacing:0.133333pt;}
.ls73{letter-spacing:0.143467pt;}
.lsf{letter-spacing:0.145600pt;}
.ls19{letter-spacing:0.146667pt;}
.ls10{letter-spacing:0.156267pt;}
.ls2{letter-spacing:0.160000pt;}
.ls58{letter-spacing:0.161067pt;}
.ls75{letter-spacing:0.166400pt;}
.ls77{letter-spacing:0.175467pt;}
.ls8f{letter-spacing:0.176000pt;}
.ls51{letter-spacing:0.185067pt;}
.ls76{letter-spacing:0.186667pt;}
.ls47{letter-spacing:0.188800pt;}
.lsb{letter-spacing:0.192000pt;}
.ls7f{letter-spacing:0.208000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls43{letter-spacing:0.256000pt;}
.ls45{letter-spacing:0.272533pt;}
.ls27{letter-spacing:0.282133pt;}
.ls69{letter-spacing:0.288000pt;}
.ls66{letter-spacing:0.289067pt;}
.ls1c{letter-spacing:0.292736pt;}
.ls46{letter-spacing:0.300800pt;}
.ls4d{letter-spacing:0.303467pt;}
.ls83{letter-spacing:0.317867pt;}
.ls4e{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.352000pt;}
.ls86{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.404800pt;}
.ls94{letter-spacing:0.416000pt;}
.ls8c{letter-spacing:0.544000pt;}
.ls2d{letter-spacing:0.560000pt;}
.ls8d{letter-spacing:0.608000pt;}
.ls44{letter-spacing:0.677333pt;}
.ls84{letter-spacing:0.720000pt;}
.ls5b{letter-spacing:0.757333pt;}
.ls92{letter-spacing:0.832000pt;}
.ls57{letter-spacing:0.885333pt;}
.ls8a{letter-spacing:1.008000pt;}
.ls30{letter-spacing:1.077333pt;}
.ls87{letter-spacing:1.184000pt;}
.ls6b{letter-spacing:21.888256pt;}
.ls6c{letter-spacing:21.952000pt;}
.ls26{letter-spacing:25.497088pt;}
.ls25{letter-spacing:25.598720pt;}
.ls90{letter-spacing:28.192000pt;}
.ls7d{letter-spacing:30.016000pt;}
.ls7a{letter-spacing:35.664000pt;}
.ls7c{letter-spacing:42.704000pt;}
.ls7b{letter-spacing:43.040000pt;}
.ls41{letter-spacing:52.864000pt;}
.ls3e{letter-spacing:52.979200pt;}
.ls40{letter-spacing:53.024000pt;}
.ls1b{letter-spacing:53.312000pt;}
.ls1a{letter-spacing:55.872000pt;}
.ls5d{letter-spacing:82.867200pt;}
.ls5c{letter-spacing:82.912000pt;}
.ls7{letter-spacing:87.530667pt;}
.ls13{letter-spacing:90.528000pt;}
.ls11{letter-spacing:90.634667pt;}
.ls55{letter-spacing:142.241280pt;}
.ls52{letter-spacing:150.997333pt;}
.ls8{letter-spacing:158.355200pt;}
.ls6{letter-spacing:158.400000pt;}
.ls67{letter-spacing:1964.341333pt;}
.ws17{word-spacing:-96.000000pt;}
.ws12{word-spacing:-59.247360pt;}
.ws1a8{word-spacing:-42.752000pt;}
.ws174{word-spacing:-41.455360pt;}
.wsbb{word-spacing:-38.647808pt;}
.wsbc{word-spacing:-38.618880pt;}
.ws53{word-spacing:-37.280000pt;}
.ws19{word-spacing:-35.584000pt;}
.ws54{word-spacing:-35.328000pt;}
.ws1b8{word-spacing:-35.002880pt;}
.ws9d{word-spacing:-33.701120pt;}
.wsb1{word-spacing:-33.573653pt;}
.ws130{word-spacing:-32.559360pt;}
.ws47{word-spacing:-32.032000pt;}
.ws18{word-spacing:-32.000000pt;}
.ws16{word-spacing:-31.529984pt;}
.ws13{word-spacing:-31.488000pt;}
.ws4d{word-spacing:-31.171584pt;}
.ws167{word-spacing:-29.748224pt;}
.ws156{word-spacing:-29.712640pt;}
.ws23{word-spacing:-26.723584pt;}
.ws1d{word-spacing:-26.688000pt;}
.ws4e{word-spacing:-26.432000pt;}
.ws1a2{word-spacing:-25.312000pt;}
.ws1b5{word-spacing:-24.183808pt;}
.ws1ae{word-spacing:-24.154880pt;}
.ws15{word-spacing:-24.032000pt;}
.ws14{word-spacing:-24.000000pt;}
.ws114{word-spacing:-23.663360pt;}
.wsf4{word-spacing:-21.884160pt;}
.ws19b{word-spacing:-21.724928pt;}
.ws11{word-spacing:-21.696000pt;}
.ws55{word-spacing:-21.664000pt;}
.wsb9{word-spacing:-20.538880pt;}
.wse2{word-spacing:-20.460800pt;}
.ws56{word-spacing:-19.266048pt;}
.ws52{word-spacing:-19.237120pt;}
.wsd0{word-spacing:-18.961387pt;}
.ws126{word-spacing:-17.827584pt;}
.ws116{word-spacing:-17.792000pt;}
.ws50{word-spacing:-16.922880pt;}
.wsc9{word-spacing:-6.549333pt;}
.wsc3{word-spacing:-2.509440pt;}
.ws177{word-spacing:-2.307456pt;}
.wsc1{word-spacing:-2.126080pt;}
.ws1a4{word-spacing:-2.121899pt;}
.wsbd{word-spacing:-2.049365pt;}
.ws18f{word-spacing:-2.048000pt;}
.ws1be{word-spacing:-2.041515pt;}
.ws154{word-spacing:-1.909333pt;}
.ws19d{word-spacing:-1.856000pt;}
.wsc4{word-spacing:-1.795200pt;}
.ws15a{word-spacing:-1.767253pt;}
.wsc5{word-spacing:-1.744000pt;}
.wsc6{word-spacing:-1.740160pt;}
.ws16b{word-spacing:-1.696213pt;}
.wsbe{word-spacing:-1.639040pt;}
.ws178{word-spacing:-1.632000pt;}
.ws16f{word-spacing:-1.612160pt;}
.ws1bf{word-spacing:-1.552128pt;}
.ws8a{word-spacing:-1.504000pt;}
.ws175{word-spacing:-1.501013pt;}
.ws1bb{word-spacing:-1.479253pt;}
.wsb8{word-spacing:-1.459840pt;}
.ws11f{word-spacing:-1.408000pt;}
.ws15d{word-spacing:-1.392981pt;}
.ws1a7{word-spacing:-1.326763pt;}
.ws16d{word-spacing:-1.303893pt;}
.ws1a5{word-spacing:-1.297237pt;}
.ws1b9{word-spacing:-1.286400pt;}
.ws22{word-spacing:-1.284693pt;}
.ws1a9{word-spacing:-1.221333pt;}
.ws8d{word-spacing:-1.216000pt;}
.wsdb{word-spacing:-1.159253pt;}
.ws63{word-spacing:-1.152000pt;}
.ws2c{word-spacing:-1.141333pt;}
.ws153{word-spacing:-1.130453pt;}
.ws16e{word-spacing:-1.118293pt;}
.wsc7{word-spacing:-1.058560pt;}
.ws61{word-spacing:-1.056000pt;}
.ws1b2{word-spacing:-1.042133pt;}
.ws1b7{word-spacing:-1.024213pt;}
.wsb7{word-spacing:-1.015893pt;}
.ws1b3{word-spacing:-0.952960pt;}
.ws1aa{word-spacing:-0.952320pt;}
.wsc2{word-spacing:-0.945920pt;}
.wsdc{word-spacing:-0.907093pt;}
.wsbf{word-spacing:-0.897280pt;}
.ws12d{word-spacing:-0.896000pt;}
.ws1b6{word-spacing:-0.881749pt;}
.ws1af{word-spacing:-0.854613pt;}
.ws1ad{word-spacing:-0.833920pt;}
.wsd8{word-spacing:-0.810880pt;}
.ws15f{word-spacing:-0.801536pt;}
.ws1a1{word-spacing:-0.800000pt;}
.ws6b{word-spacing:-0.789333pt;}
.ws111{word-spacing:-0.769920pt;}
.ws199{word-spacing:-0.768000pt;}
.ws1bd{word-spacing:-0.764480pt;}
.ws1b1{word-spacing:-0.760533pt;}
.ws1a0{word-spacing:-0.757333pt;}
.ws15e{word-spacing:-0.720960pt;}
.wse4{word-spacing:-0.656000pt;}
.ws8c{word-spacing:-0.576000pt;}
.ws109{word-spacing:-0.557120pt;}
.ws1ab{word-spacing:-0.549547pt;}
.ws1b4{word-spacing:-0.545813pt;}
.ws1ba{word-spacing:-0.539733pt;}
.wsd5{word-spacing:-0.534187pt;}
.ws20b{word-spacing:-0.528000pt;}
.ws2d{word-spacing:-0.512000pt;}
.ws10e{word-spacing:-0.483413pt;}
.ws179{word-spacing:-0.480000pt;}
.ws19c{word-spacing:-0.469333pt;}
.ws46{word-spacing:-0.437333pt;}
.ws164{word-spacing:-0.418773pt;}
.ws110{word-spacing:-0.397120pt;}
.ws40{word-spacing:-0.373333pt;}
.ws84{word-spacing:-0.288000pt;}
.ws165{word-spacing:-0.272960pt;}
.ws1b0{word-spacing:-0.268160pt;}
.ws60{word-spacing:-0.256000pt;}
.ws20c{word-spacing:-0.240000pt;}
.ws15c{word-spacing:-0.177920pt;}
.ws49{word-spacing:-0.149333pt;}
.ws16c{word-spacing:-0.130560pt;}
.ws64{word-spacing:-0.128000pt;}
.wsc0{word-spacing:-0.110592pt;}
.ws1a6{word-spacing:-0.096085pt;}
.ws170{word-spacing:-0.094933pt;}
.wsd9{word-spacing:-0.047104pt;}
.ws1d1{word-spacing:-0.032000pt;}
.ws104{word-spacing:-0.016640pt;}
.ws0{word-spacing:0.000000pt;}
.ws1bc{word-spacing:0.038827pt;}
.ws106{word-spacing:0.049920pt;}
.ws5e{word-spacing:0.074667pt;}
.ws6c{word-spacing:0.096000pt;}
.ws10{word-spacing:0.106667pt;}
.ws1e6{word-spacing:0.112000pt;}
.ws6a{word-spacing:0.138667pt;}
.ws51{word-spacing:0.151040pt;}
.ws113{word-spacing:0.167467pt;}
.ws62{word-spacing:0.170667pt;}
.wsd6{word-spacing:0.229120pt;}
.ws28{word-spacing:0.234667pt;}
.ws1f5{word-spacing:0.240000pt;}
.ws112{word-spacing:0.253440pt;}
.ws163{word-spacing:0.260267pt;}
.ws10b{word-spacing:0.262400pt;}
.ws217{word-spacing:0.266667pt;}
.ws107{word-spacing:0.270080pt;}
.wsda{word-spacing:0.292181pt;}
.ws162{word-spacing:0.308267pt;}
.ws1f6{word-spacing:0.320000pt;}
.ws17a{word-spacing:0.330667pt;}
.wse5{word-spacing:0.390400pt;}
.ws105{word-spacing:0.424747pt;}
.ws108{word-spacing:0.426667pt;}
.ws12e{word-spacing:0.428587pt;}
.ws4c{word-spacing:0.523947pt;}
.ws155{word-spacing:0.527040pt;}
.ws138{word-spacing:0.546240pt;}
.ws10f{word-spacing:0.551040pt;}
.wse3{word-spacing:0.560000pt;}
.ws161{word-spacing:0.582400pt;}
.ws12f{word-spacing:0.601600pt;}
.wsa7{word-spacing:0.624853pt;}
.ws151{word-spacing:0.643200pt;}
.ws139{word-spacing:0.643520pt;}
.wsa6{word-spacing:0.671787pt;}
.ws19a{word-spacing:0.672000pt;}
.ws195{word-spacing:0.704000pt;}
.ws173{word-spacing:0.718507pt;}
.ws19e{word-spacing:0.736000pt;}
.wsa9{word-spacing:0.759893pt;}
.ws198{word-spacing:0.800000pt;}
.wsf6{word-spacing:0.839467pt;}
.ws94{word-spacing:0.864000pt;}
.ws194{word-spacing:0.874667pt;}
.wsc8{word-spacing:0.896000pt;}
.ws13a{word-spacing:0.914091pt;}
.ws5f{word-spacing:0.928000pt;}
.wsef{word-spacing:0.960000pt;}
.ws10c{word-spacing:0.991360pt;}
.ws10a{word-spacing:0.995200pt;}
.ws196{word-spacing:1.024000pt;}
.wsf5{word-spacing:1.068587pt;}
.ws12c{word-spacing:1.100160pt;}
.ws191{word-spacing:1.152000pt;}
.ws103{word-spacing:1.194880pt;}
.ws152{word-spacing:1.279787pt;}
.ws20a{word-spacing:1.280000pt;}
.ws160{word-spacing:1.311787pt;}
.wsa5{word-spacing:1.364693pt;}
.ws190{word-spacing:1.408000pt;}
.ws1a3{word-spacing:1.424000pt;}
.wsa8{word-spacing:1.434027pt;}
.ws4a{word-spacing:1.457067pt;}
.ws172{word-spacing:1.552128pt;}
.ws137{word-spacing:1.731840pt;}
.ws192{word-spacing:1.781333pt;}
.ws18d{word-spacing:1.792000pt;}
.ws18e{word-spacing:1.802667pt;}
.ws10d{word-spacing:1.810347pt;}
.wse7{word-spacing:1.900800pt;}
.ws197{word-spacing:1.920000pt;}
.ws4b{word-spacing:1.924907pt;}
.ws57{word-spacing:1.969493pt;}
.ws171{word-spacing:1.991168pt;}
.ws65{word-spacing:2.048000pt;}
.ws149{word-spacing:2.120320pt;}
.wsce{word-spacing:2.179520pt;}
.wscf{word-spacing:2.254507pt;}
.wscd{word-spacing:2.330240pt;}
.ws14a{word-spacing:2.399360pt;}
.ws193{word-spacing:2.400000pt;}
.ws18c{word-spacing:2.506667pt;}
.ws68{word-spacing:2.624000pt;}
.ws14b{word-spacing:2.642987pt;}
.ws3e{word-spacing:2.688000pt;}
.ws69{word-spacing:2.858667pt;}
.ws66{word-spacing:2.933333pt;}
.ws67{word-spacing:3.008000pt;}
.ws17d{word-spacing:3.040000pt;}
.ws180{word-spacing:3.072000pt;}
.ws17c{word-spacing:3.125333pt;}
.ws181{word-spacing:3.136000pt;}
.wsd{word-spacing:3.138219pt;}
.ws3f{word-spacing:3.178667pt;}
.wse8{word-spacing:3.244032pt;}
.ws3d{word-spacing:3.306667pt;}
.ws214{word-spacing:3.405867pt;}
.ws78{word-spacing:3.424000pt;}
.ws17b{word-spacing:3.584000pt;}
.ws1ca{word-spacing:3.656363pt;}
.ws17e{word-spacing:3.680000pt;}
.ws75{word-spacing:3.776000pt;}
.ws1e2{word-spacing:3.840000pt;}
.wscb{word-spacing:3.866027pt;}
.ws1cc{word-spacing:3.913984pt;}
.ws1c8{word-spacing:3.936341pt;}
.ws1c9{word-spacing:4.022016pt;}
.ws1cd{word-spacing:4.072192pt;}
.ws1e4{word-spacing:4.186667pt;}
.ws218{word-spacing:4.192000pt;}
.ws219{word-spacing:4.288000pt;}
.ws17f{word-spacing:4.320000pt;}
.ws1cb{word-spacing:4.432128pt;}
.ws1f9{word-spacing:4.576000pt;}
.ws1fa{word-spacing:4.592000pt;}
.ws77{word-spacing:4.640000pt;}
.ws1f7{word-spacing:4.672000pt;}
.ws1e5{word-spacing:4.736000pt;}
.wse6{word-spacing:4.819200pt;}
.ws1e3{word-spacing:4.832000pt;}
.ws76{word-spacing:5.024000pt;}
.ws82{word-spacing:5.088000pt;}
.ws7f{word-spacing:5.248000pt;}
.ws125{word-spacing:5.325632pt;}
.ws1f8{word-spacing:5.328000pt;}
.ws80{word-spacing:5.504000pt;}
.ws215{word-spacing:5.568000pt;}
.wse{word-spacing:5.711872pt;}
.ws124{word-spacing:5.788416pt;}
.ws81{word-spacing:5.856000pt;}
.ws83{word-spacing:5.994667pt;}
.ws228{word-spacing:6.730667pt;}
.ws95{word-spacing:6.784000pt;}
.ws27{word-spacing:6.976000pt;}
.ws227{word-spacing:7.040000pt;}
.ws118{word-spacing:7.808000pt;}
.wsff{word-spacing:8.701547pt;}
.ws117{word-spacing:8.704000pt;}
.ws1c1{word-spacing:8.720000pt;}
.wsf7{word-spacing:8.978880pt;}
.wsfa{word-spacing:9.083904pt;}
.wsfe{word-spacing:9.089024pt;}
.ws100{word-spacing:9.225728pt;}
.wsfc{word-spacing:9.257984pt;}
.wsf9{word-spacing:9.302357pt;}
.ws200{word-spacing:9.338667pt;}
.ws146{word-spacing:9.509824pt;}
.ws1ff{word-spacing:9.584000pt;}
.wsfd{word-spacing:9.618880pt;}
.wsf8{word-spacing:9.628672pt;}
.ws1fe{word-spacing:9.648000pt;}
.ws101{word-spacing:9.671168pt;}
.ws145{word-spacing:9.697280pt;}
.ws1c2{word-spacing:9.712000pt;}
.ws39{word-spacing:9.728000pt;}
.ws148{word-spacing:9.735168pt;}
.ws1fc{word-spacing:9.738667pt;}
.ws1c0{word-spacing:9.824000pt;}
.ws102{word-spacing:9.888768pt;}
.ws1fb{word-spacing:9.893333pt;}
.ws1fd{word-spacing:9.952000pt;}
.ws3a{word-spacing:10.058667pt;}
.ws225{word-spacing:10.144000pt;}
.ws1c7{word-spacing:10.256000pt;}
.wsfb{word-spacing:10.257280pt;}
.ws1c3{word-spacing:10.272000pt;}
.ws1c4{word-spacing:10.298667pt;}
.ws147{word-spacing:10.364416pt;}
.ws224{word-spacing:10.432000pt;}
.ws1c5{word-spacing:10.560000pt;}
.wse1{word-spacing:10.970667pt;}
.ws1c6{word-spacing:11.194667pt;}
.ws38{word-spacing:11.242667pt;}
.wse0{word-spacing:11.824000pt;}
.ws1f{word-spacing:12.010667pt;}
.wsb6{word-spacing:12.083200pt;}
.ws185{word-spacing:12.128000pt;}
.ws182{word-spacing:12.138667pt;}
.wsdf{word-spacing:12.140800pt;}
.ws186{word-spacing:12.192000pt;}
.ws184{word-spacing:12.256000pt;}
.ws1e{word-spacing:12.618667pt;}
.ws8b{word-spacing:12.630144pt;}
.ws20{word-spacing:12.800000pt;}
.ws183{word-spacing:12.842667pt;}
.ws1d0{word-spacing:13.840000pt;}
.ws1ce{word-spacing:14.474667pt;}
.wsd2{word-spacing:14.570880pt;}
.ws1cf{word-spacing:14.624000pt;}
.ws120{word-spacing:14.720000pt;}
.wsd3{word-spacing:14.794667pt;}
.ws121{word-spacing:14.912000pt;}
.wsd1{word-spacing:15.241813pt;}
.ws205{word-spacing:16.469845pt;}
.ws206{word-spacing:16.829952pt;}
.ws1d5{word-spacing:16.954667pt;}
.ws1f4{word-spacing:17.392000pt;}
.ws1ef{word-spacing:17.418667pt;}
.ws1d7{word-spacing:17.472000pt;}
.ws1d8{word-spacing:17.482667pt;}
.ws1d2{word-spacing:17.504000pt;}
.ws1f0{word-spacing:17.520000pt;}
.ws207{word-spacing:17.550507pt;}
.ws1ed{word-spacing:17.632000pt;}
.ws1d9{word-spacing:17.680000pt;}
.ws1d4{word-spacing:17.706667pt;}
.ws1f2{word-spacing:17.712000pt;}
.ws1db{word-spacing:17.914667pt;}
.ws1ee{word-spacing:17.952000pt;}
.ws1d6{word-spacing:18.000000pt;}
.ws1f1{word-spacing:18.032000pt;}
.ws1f3{word-spacing:18.442667pt;}
.ws1d3{word-spacing:18.448000pt;}
.ws14c{word-spacing:18.563200pt;}
.ws1da{word-spacing:18.768000pt;}
.ws123{word-spacing:19.008000pt;}
.ws150{word-spacing:19.078400pt;}
.ws14e{word-spacing:19.203413pt;}
.wsaf{word-spacing:19.348480pt;}
.wsad{word-spacing:19.375147pt;}
.ws14d{word-spacing:19.441920pt;}
.ws14f{word-spacing:19.642027pt;}
.ws122{word-spacing:19.840000pt;}
.wsae{word-spacing:20.192747pt;}
.ws89{word-spacing:20.480000pt;}
.ws88{word-spacing:21.056000pt;}
.ws29{word-spacing:21.098667pt;}
.ws2a{word-spacing:21.984000pt;}
.ws1ac{word-spacing:22.645120pt;}
.wsac{word-spacing:24.233813pt;}
.wsaa{word-spacing:24.929493pt;}
.wsab{word-spacing:25.356480pt;}
.ws6f{word-spacing:25.728000pt;}
.ws72{word-spacing:25.824000pt;}
.ws74{word-spacing:25.834667pt;}
.ws73{word-spacing:26.144000pt;}
.ws70{word-spacing:26.688000pt;}
.ws6d{word-spacing:26.720000pt;}
.ws71{word-spacing:26.794667pt;}
.ws6e{word-spacing:26.869333pt;}
.ws226{word-spacing:26.922667pt;}
.ws12b{word-spacing:28.352000pt;}
.ws15b{word-spacing:28.622080pt;}
.ws5a{word-spacing:28.928000pt;}
.ws21{word-spacing:29.024000pt;}
.ws128{word-spacing:29.056000pt;}
.ws5b{word-spacing:29.258667pt;}
.ws5d{word-spacing:29.450667pt;}
.ws127{word-spacing:29.824000pt;}
.ws59{word-spacing:29.877333pt;}
.ws5c{word-spacing:29.888000pt;}
.ws58{word-spacing:29.920000pt;}
.ws1e7{word-spacing:30.272000pt;}
.ws11d{word-spacing:30.336000pt;}
.wsd4{word-spacing:30.780587pt;}
.ws85{word-spacing:31.712000pt;}
.ws144{word-spacing:32.241920pt;}
.ws204{word-spacing:32.266667pt;}
.ws7c{word-spacing:32.575915pt;}
.ws7e{word-spacing:32.696832pt;}
.ws203{word-spacing:32.768000pt;}
.ws202{word-spacing:32.778667pt;}
.ws7b{word-spacing:32.786389pt;}
.ws7d{word-spacing:32.818432pt;}
.ws201{word-spacing:32.933333pt;}
.ws7a{word-spacing:32.978240pt;}
.ws79{word-spacing:33.053867pt;}
.ws209{word-spacing:33.152000pt;}
.ws1e8{word-spacing:35.232000pt;}
.ws1eb{word-spacing:35.370667pt;}
.ws1ec{word-spacing:35.472000pt;}
.ws1ea{word-spacing:35.552000pt;}
.ws1e9{word-spacing:35.930667pt;}
.ws188{word-spacing:36.064000pt;}
.ws18a{word-spacing:36.384000pt;}
.ws187{word-spacing:36.394667pt;}
.ws189{word-spacing:36.512000pt;}
.wsb5{word-spacing:36.661973pt;}
.ws18b{word-spacing:36.768000pt;}
.ws87{word-spacing:36.896000pt;}
.ws21b{word-spacing:38.400000pt;}
.wseb{word-spacing:38.544000pt;}
.ws86{word-spacing:38.624000pt;}
.wsde{word-spacing:39.257600pt;}
.ws11e{word-spacing:39.360000pt;}
.ws21d{word-spacing:40.522667pt;}
.ws21c{word-spacing:40.576000pt;}
.ws21a{word-spacing:40.640000pt;}
.wsa1{word-spacing:41.740373pt;}
.ws9e{word-spacing:42.570453pt;}
.ws159{word-spacing:42.702080pt;}
.wsa3{word-spacing:42.925312pt;}
.wsa2{word-spacing:42.938176pt;}
.ws9f{word-spacing:43.041280pt;}
.wsa0{word-spacing:43.308032pt;}
.wsb4{word-spacing:44.152320pt;}
.wsb2{word-spacing:44.181760pt;}
.wsed{word-spacing:44.217600pt;}
.wsb3{word-spacing:44.468053pt;}
.ws30{word-spacing:44.629248pt;}
.ws157{word-spacing:44.680107pt;}
.wsb0{word-spacing:45.371733pt;}
.ws33{word-spacing:46.026667pt;}
.ws158{word-spacing:46.049067pt;}
.ws35{word-spacing:46.154667pt;}
.ws34{word-spacing:47.008000pt;}
.wsee{word-spacing:48.445867pt;}
.ws3{word-spacing:49.792000pt;}
.ws1{word-spacing:49.834667pt;}
.ws2{word-spacing:50.176000pt;}
.ws129{word-spacing:51.328000pt;}
.ws12a{word-spacing:52.352000pt;}
.ws208{word-spacing:53.034667pt;}
.wsf3{word-spacing:53.440000pt;}
.wsa4{word-spacing:56.022827pt;}
.ws9{word-spacing:57.034667pt;}
.ws212{word-spacing:57.056000pt;}
.wsf1{word-spacing:57.299200pt;}
.wsf0{word-spacing:57.542400pt;}
.ws20e{word-spacing:57.728000pt;}
.ws20f{word-spacing:58.592000pt;}
.ws20d{word-spacing:58.794667pt;}
.ws42{word-spacing:59.058240pt;}
.ws11b{word-spacing:59.392000pt;}
.ws41{word-spacing:59.410219pt;}
.ws11c{word-spacing:60.032000pt;}
.ws3c{word-spacing:60.330667pt;}
.ws3b{word-spacing:60.352000pt;}
.ws168{word-spacing:62.743552pt;}
.ws16a{word-spacing:62.870187pt;}
.wsd7{word-spacing:63.234133pt;}
.ws166{word-spacing:64.397419pt;}
.ws1e1{word-spacing:64.617301pt;}
.ws169{word-spacing:65.197440pt;}
.ws1de{word-spacing:65.342400pt;}
.ws1df{word-spacing:65.394432pt;}
.ws1dc{word-spacing:65.517568pt;}
.ws1e0{word-spacing:65.658368pt;}
.ws1dd{word-spacing:66.182507pt;}
.wsa{word-spacing:66.496000pt;}
.wsb{word-spacing:66.752000pt;}
.wscc{word-spacing:67.629739pt;}
.ws8{word-spacing:67.808000pt;}
.ws211{word-spacing:68.192000pt;}
.ws6{word-spacing:68.394667pt;}
.ws7{word-spacing:68.576000pt;}
.ws8f{word-spacing:72.320000pt;}
.ws8e{word-spacing:72.896000pt;}
.ws9a{word-spacing:85.713067pt;}
.ws210{word-spacing:86.673579pt;}
.ws4{word-spacing:86.762667pt;}
.ws213{word-spacing:89.202816pt;}
.wsc{word-spacing:89.376000pt;}
.ws32{word-spacing:101.696000pt;}
.ws31{word-spacing:103.125333pt;}
.ws136{word-spacing:108.963840pt;}
.ws134{word-spacing:109.130027pt;}
.ws135{word-spacing:109.311147pt;}
.wsea{word-spacing:110.810667pt;}
.wse9{word-spacing:112.384000pt;}
.ws220{word-spacing:113.418667pt;}
.ws21e{word-spacing:113.472000pt;}
.ws21f{word-spacing:115.104000pt;}
.ws92{word-spacing:117.664000pt;}
.ws93{word-spacing:118.026667pt;}
.ws5{word-spacing:118.890667pt;}
.ws119{word-spacing:119.411456pt;}
.ws11a{word-spacing:120.226880pt;}
.ws13e{word-spacing:129.994667pt;}
.ws13f{word-spacing:130.480000pt;}
.ws13c{word-spacing:130.559360pt;}
.ws13b{word-spacing:130.799360pt;}
.ws140{word-spacing:130.801920pt;}
.ws13d{word-spacing:131.194240pt;}
.ws1b{word-spacing:135.722667pt;}
.ws9c{word-spacing:136.304853pt;}
.ws9b{word-spacing:136.413867pt;}
.ws1c{word-spacing:136.554667pt;}
.ws96{word-spacing:137.178773pt;}
.ws97{word-spacing:137.242027pt;}
.ws99{word-spacing:137.839787pt;}
.ws98{word-spacing:138.486080pt;}
.ws222{word-spacing:146.336000pt;}
.wsf{word-spacing:148.640000pt;}
.ws216{word-spacing:148.810667pt;}
.ws45{word-spacing:161.408000pt;}
.ws44{word-spacing:162.165333pt;}
.ws36{word-spacing:166.538667pt;}
.ws37{word-spacing:166.976000pt;}
.wsec{word-spacing:180.481067pt;}
.ws142{word-spacing:182.879360pt;}
.ws223{word-spacing:183.402667pt;}
.ws143{word-spacing:183.783467pt;}
.ws141{word-spacing:183.947947pt;}
.ws176{word-spacing:204.362667pt;}
.wsf2{word-spacing:205.105067pt;}
.ws91{word-spacing:219.946667pt;}
.ws90{word-spacing:224.746667pt;}
.ws26{word-spacing:224.970667pt;}
.ws2f{word-spacing:241.408000pt;}
.ws2e{word-spacing:241.877333pt;}
.ws24{word-spacing:253.429333pt;}
.ws25{word-spacing:253.568000pt;}
.wsdd{word-spacing:256.870400pt;}
.ws2b{word-spacing:272.074667pt;}
.ws19f{word-spacing:279.541333pt;}
.wsba{word-spacing:315.216213pt;}
.ws132{word-spacing:322.506027pt;}
.ws133{word-spacing:323.303467pt;}
.ws131{word-spacing:323.361280pt;}
.ws221{word-spacing:330.208000pt;}
.ws115{word-spacing:347.520000pt;}
.ws43{word-spacing:543.509333pt;}
.ws48{word-spacing:850.613333pt;}
.wsca{word-spacing:1234.602667pt;}
.ws1a{word-spacing:1686.922667pt;}
.ws4f{word-spacing:2574.528000pt;}
._c{margin-left:-17.937920pt;}
._4{margin-left:-13.328640pt;}
._a{margin-left:-11.763840pt;}
._19{margin-left:-10.240000pt;}
._b{margin-left:-8.448000pt;}
._6{margin-left:-7.176960pt;}
._1{margin-left:-6.151680pt;}
._8{margin-left:-4.992000pt;}
._2{margin-left:-3.930240pt;}
._5{margin-left:-2.563200pt;}
._0{margin-left:-1.196160pt;}
._3{width:1.025280pt;}
._7{width:2.275200pt;}
._14{width:3.929618pt;}
._13{width:6.181552pt;}
._27{width:15.497984pt;}
._29{width:19.910613pt;}
._37{width:20.823723pt;}
._9{width:22.904320pt;}
._2f{width:23.866240pt;}
._15{width:25.134507pt;}
._16{width:26.075947pt;}
._12{width:27.509333pt;}
._32{width:29.416960pt;}
._1f{width:31.861333pt;}
._3b{width:33.611307pt;}
._d{width:35.125333pt;}
._31{width:36.220800pt;}
._18{width:38.333227pt;}
._3a{width:39.377493pt;}
._3c{width:40.867669pt;}
._35{width:42.911019pt;}
._1e{width:43.928448pt;}
._e{width:49.056000pt;}
._28{width:50.955947pt;}
._17{width:52.015616pt;}
._25{width:54.230827pt;}
._24{width:59.061547pt;}
._20{width:60.705323pt;}
._3d{width:62.163200pt;}
._2a{width:65.822507pt;}
._2b{width:71.078400pt;}
._34{width:73.653547pt;}
._33{width:75.038080pt;}
._23{width:78.065792pt;}
._2c{width:79.084587pt;}
._11{width:87.936000pt;}
._21{width:121.014229pt;}
._10{width:129.760000pt;}
._30{width:143.743360pt;}
._39{width:145.214293pt;}
._22{width:171.082453pt;}
._f{width:300.725547pt;}
._1b{width:307.100800pt;}
._1a{width:324.169387pt;}
._2d{width:542.993067pt;}
._2e{width:599.902720pt;}
._26{width:713.039147pt;}
._1d{width:991.866027pt;}
._36{width:1061.559893pt;}
._38{width:1133.133227pt;}
._1c{width:2784.237013pt;}
.fs1d{font-size:64.000000pt;}
.fs1e{font-size:64.128000pt;}
.fs1a{font-size:66.560000pt;}
.fs17{font-size:66.688000pt;}
.fs19{font-size:73.600000pt;}
.fs18{font-size:73.728000pt;}
.fs11{font-size:74.880000pt;}
.fs12{font-size:75.008000pt;}
.fs1b{font-size:78.720000pt;}
.fsd{font-size:85.120000pt;}
.fse{font-size:85.248000pt;}
.fs15{font-size:90.880000pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs1c{font-size:98.560000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fsf{font-size:112.000000pt;}
.fs10{font-size:112.128000pt;}
.fs1f{font-size:117.120000pt;}
.fs20{font-size:117.248000pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs7{font-size:138.880000pt;}
.fs16{font-size:139.008000pt;}
.fs13{font-size:149.120000pt;}
.fs14{font-size:149.248000pt;}
.fs21{font-size:154.880000pt;}
.fs22{font-size:155.008000pt;}
.fsc{font-size:157.184710pt;}
.fsb{font-size:157.319632pt;}
.fs0{font-size:170.880000pt;}
.fsa{font-size:171.008000pt;}
.fs5{font-size:213.120000pt;}
.fs6{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:5.920000pt;}
.y245{bottom:5.952000pt;}
.yc9{bottom:8.896000pt;}
.ycd{bottom:11.424000pt;}
.yb6{bottom:12.544000pt;}
.y20c{bottom:16.320000pt;}
.y5d{bottom:18.912000pt;}
.y182{bottom:20.480000pt;}
.y2e{bottom:20.672000pt;}
.y8a{bottom:20.960000pt;}
.y134{bottom:22.624000pt;}
.y1ff{bottom:22.944000pt;}
.y130{bottom:24.832000pt;}
.yfd{bottom:27.840000pt;}
.y5c{bottom:30.912000pt;}
.y3d{bottom:32.096000pt;}
.y216{bottom:32.192000pt;}
.y2c{bottom:32.256000pt;}
.y244{bottom:39.552000pt;}
.y1aa{bottom:41.248000pt;}
.ycf{bottom:41.312000pt;}
.yc1{bottom:41.888000pt;}
.y66{bottom:43.776000pt;}
.y5{bottom:45.376000pt;}
.yf1{bottom:47.520000pt;}
.y2d{bottom:49.472000pt;}
.y1fe{bottom:51.744000pt;}
.yb0{bottom:52.160000pt;}
.y162{bottom:52.320000pt;}
.yfc{bottom:56.640000pt;}
.y12c{bottom:58.656000pt;}
.y5b{bottom:59.712000pt;}
.y215{bottom:60.992000pt;}
.y2b{bottom:61.088000pt;}
.y1a9{bottom:61.248000pt;}
.y128{bottom:61.344000pt;}
.y181{bottom:62.080000pt;}
.y194{bottom:67.040000pt;}
.yb3{bottom:70.400000pt;}
.y243{bottom:73.184000pt;}
.y1db{bottom:75.872000pt;}
.yc0{bottom:80.288000pt;}
.y1fd{bottom:80.576000pt;}
.yaf{bottom:80.960000pt;}
.y1a8{bottom:81.088000pt;}
.y65{bottom:82.176000pt;}
.yd6{bottom:82.266667pt;}
.yf2{bottom:82.304000pt;}
.ydb{bottom:82.306667pt;}
.yed{bottom:82.333333pt;}
.yd3{bottom:82.373333pt;}
.yb5{bottom:85.312000pt;}
.yfb{bottom:85.440000pt;}
.y4e{bottom:86.336000pt;}
.y5a{bottom:88.512000pt;}
.y214{bottom:89.824000pt;}
.ye0{bottom:91.200000pt;}
.y133{bottom:92.000000pt;}
.y17e{bottom:93.504000pt;}
.y1a0{bottom:93.952000pt;}
.y12f{bottom:94.144000pt;}
.y74{bottom:94.464000pt;}
.yb2{bottom:96.000000pt;}
.y1b6{bottom:96.320000pt;}
.y1e5{bottom:97.568000pt;}
.ycc{bottom:98.496000pt;}
.y13{bottom:98.624000pt;}
.y1a7{bottom:101.088000pt;}
.y180{bottom:103.712000pt;}
.yf0{bottom:104.224000pt;}
.y2a{bottom:104.288000pt;}
.y11d{bottom:105.120000pt;}
.y242{bottom:106.784000pt;}
.ye7{bottom:107.200000pt;}
.yb4{bottom:107.744000pt;}
.y234{bottom:108.064000pt;}
.yec{bottom:108.320000pt;}
.y1fc{bottom:109.376000pt;}
.yae{bottom:109.792000pt;}
.y22c{bottom:110.432000pt;}
.y161{bottom:110.592000pt;}
.y7{bottom:110.880000pt;}
.y1da{bottom:111.072000pt;}
.y19f{bottom:113.952000pt;}
.yfa{bottom:114.272000pt;}
.y4d{bottom:115.136000pt;}
.y1b5{bottom:116.320000pt;}
.y59{bottom:117.344000pt;}
.y61{bottom:118.304000pt;}
.y213{bottom:118.624000pt;}
.ybf{bottom:118.688000pt;}
.y1d1{bottom:119.776000pt;}
.y73{bottom:119.904000pt;}
.y1a6{bottom:121.088000pt;}
.yb1{bottom:121.600000pt;}
.y12{bottom:127.424000pt;}
.yef{bottom:129.824000pt;}
.y17d{bottom:132.384000pt;}
.y160{bottom:132.992000pt;}
.y29{bottom:133.088000pt;}
.y19e{bottom:133.946667pt;}
.y1b4{bottom:136.320000pt;}
.y196{bottom:136.573333pt;}
.y1fb{bottom:138.173333pt;}
.yc8{bottom:138.240000pt;}
.yad{bottom:138.586667pt;}
.y1d0{bottom:138.973333pt;}
.y1ee{bottom:139.360000pt;}
.y241{bottom:140.386667pt;}
.yf9{bottom:143.066667pt;}
.y140{bottom:143.266667pt;}
.y4c{bottom:143.933333pt;}
.y17f{bottom:145.306667pt;}
.y1e{bottom:145.506667pt;}
.y1d9{bottom:146.266667pt;}
.y212{bottom:147.426667pt;}
.ye9{bottom:148.800000pt;}
.y11c{bottom:149.920000pt;}
.y233{bottom:150.626667pt;}
.y170{bottom:150.693333pt;}
.y1a5{bottom:152.133333pt;}
.y19d{bottom:153.826667pt;}
.y15f{bottom:155.426667pt;}
.y132{bottom:156.133333pt;}
.y1b3{bottom:156.186667pt;}
.y6{bottom:156.320000pt;}
.yce{bottom:156.666667pt;}
.y60{bottom:156.733333pt;}
.y12e{bottom:157.946667pt;}
.y1cf{bottom:158.173333pt;}
.y87{bottom:159.066667pt;}
.ydf{bottom:159.106667pt;}
.y58{bottom:160.546667pt;}
.y1e4{bottom:161.573333pt;}
.y195{bottom:165.373333pt;}
.y222{bottom:166.586667pt;}
.y1fa{bottom:166.973333pt;}
.y17c{bottom:171.293333pt;}
.yf8{bottom:171.866667pt;}
.y1a4{bottom:172.000000pt;}
.y68{bottom:172.453333pt;}
.y240{bottom:173.986667pt;}
.y1b2{bottom:176.186667pt;}
.y211{bottom:176.226667pt;}
.yc7{bottom:176.666667pt;}
.y1ce{bottom:177.373333pt;}
.y1d8{bottom:181.506667pt;}
.y72{bottom:183.906667pt;}
.yd9{bottom:184.706667pt;}
.yeb{bottom:184.733333pt;}
.y19c{bottom:184.866667pt;}
.y250{bottom:184.893333pt;}
.y179{bottom:184.960000pt;}
.y4b{bottom:187.173333pt;}
.y86{bottom:187.866667pt;}
.y12b{bottom:188.506667pt;}
.y57{bottom:189.346667pt;}
.y127{bottom:190.306667pt;}
.yee{bottom:190.653333pt;}
.y232{bottom:193.026667pt;}
.y16f{bottom:193.413333pt;}
.yde{bottom:193.600000pt;}
.y13f{bottom:194.466667pt;}
.y11b{bottom:194.720000pt;}
.y5f{bottom:195.133333pt;}
.y1f9{bottom:195.773333pt;}
.y30{bottom:195.813333pt;}
.y1b1{bottom:196.186667pt;}
.y1cd{bottom:196.613333pt;}
.y225{bottom:197.280000pt;}
.y221{bottom:197.306667pt;}
.y1a3{bottom:203.040000pt;}
.y19b{bottom:204.866667pt;}
.ya0{bottom:206.786667pt;}
.y32{bottom:207.706667pt;}
.y71{bottom:209.506667pt;}
.y1d{bottom:209.533333pt;}
.y17b{bottom:210.333333pt;}
.y67{bottom:210.880000pt;}
.yb8{bottom:211.293333pt;}
.y24f{bottom:213.693333pt;}
.y193{bottom:214.400000pt;}
.y1cc{bottom:215.813333pt;}
.y4a{bottom:215.973333pt;}
.y1b0{bottom:216.026667pt;}
.y1d7{bottom:216.706667pt;}
.y12d{bottom:217.466667pt;}
.y56{bottom:218.146667pt;}
.y112{bottom:219.773333pt;}
.y131{bottom:221.213333pt;}
.y23f{bottom:221.253333pt;}
.y13b{bottom:222.746667pt;}
.y16e{bottom:222.853333pt;}
.y1a2{bottom:223.040000pt;}
.y18b{bottom:223.813333pt;}
.y2f{bottom:224.613333pt;}
.y19a{bottom:224.866667pt;}
.y224{bottom:228.000000pt;}
.y220{bottom:228.066667pt;}
.y5e{bottom:233.533333pt;}
.y1cb{bottom:235.013333pt;}
.y9f{bottom:235.613333pt;}
.ye5{bottom:235.906667pt;}
.y1af{bottom:236.026667pt;}
.y31{bottom:236.506667pt;}
.yb7{bottom:236.893333pt;}
.y11a{bottom:239.546667pt;}
.y15e{bottom:242.240000pt;}
.y1a1{bottom:243.040000pt;}
.y24e{bottom:243.133333pt;}
.y192{bottom:243.200000pt;}
.y13a{bottom:243.226667pt;}
.y199{bottom:244.706667pt;}
.y49{bottom:244.773333pt;}
.y55{bottom:246.946667pt;}
.y17a{bottom:249.213333pt;}
.y7d{bottom:249.346667pt;}
.y15b{bottom:250.173333pt;}
.y14f{bottom:250.626667pt;}
.y70{bottom:250.653333pt;}
.y201{bottom:251.266667pt;}
.y1d6{bottom:251.906667pt;}
.y210{bottom:253.053333pt;}
.y12a{bottom:253.600000pt;}
.y1ca{bottom:254.213333pt;}
.y23e{bottom:254.853333pt;}
.y126{bottom:255.906667pt;}
.y1ae{bottom:256.026667pt;}
.y1e3{bottom:257.600000pt;}
.y22b{bottom:257.893333pt;}
.y21f{bottom:258.786667pt;}
.y223{bottom:258.906667pt;}
.y1f8{bottom:259.453333pt;}
.ye3{bottom:261.506667pt;}
.y18a{bottom:262.240000pt;}
.y139{bottom:263.706667pt;}
.y9e{bottom:264.413333pt;}
.y15d{bottom:264.640000pt;}
.y198{bottom:264.706667pt;}
.y16d{bottom:265.733333pt;}
.y10a{bottom:269.253333pt;}
.ya3{bottom:270.946667pt;}
.y15a{bottom:272.573333pt;}
.y14e{bottom:273.053333pt;}
.y111{bottom:273.280000pt;}
.y1c9{bottom:273.413333pt;}
.y1c{bottom:273.533333pt;}
.y48{bottom:273.573333pt;}
.yc6{bottom:274.306667pt;}
.y24d{bottom:275.173333pt;}
.y54{bottom:275.773333pt;}
.y1ad{bottom:275.866667pt;}
.y13e{bottom:277.053333pt;}
.y7c{bottom:278.146667pt;}
.y20f{bottom:281.853333pt;}
.ya5{bottom:281.946667pt;}
.y178{bottom:281.986667pt;}
.y231{bottom:282.173333pt;}
.y4{bottom:283.040000pt;}
.y138{bottom:284.186667pt;}
.y119{bottom:284.346667pt;}
.y197{bottom:284.733333pt;}
.y1ea{bottom:285.093333pt;}
.y103{bottom:285.626667pt;}
.y191{bottom:286.400000pt;}
.y15c{bottom:287.040000pt;}
.y1d5{bottom:287.106667pt;}
.ye1{bottom:287.133333pt;}
.y1f7{bottom:288.253333pt;}
.y23d{bottom:288.453333pt;}
.y1e2{bottom:289.600000pt;}
.y21e{bottom:289.666667pt;}
.y11{bottom:290.053333pt;}
.y3c{bottom:290.426667pt;}
.ye8{bottom:291.906667pt;}
.y1c8{bottom:292.613333pt;}
.y9d{bottom:293.213333pt;}
.ya2{bottom:293.346667pt;}
.y16c{bottom:295.200000pt;}
.y1ac{bottom:295.906667pt;}
.y6f{bottom:297.053333pt;}
.y109{bottom:298.053333pt;}
.y189{bottom:300.640000pt;}
.y110{bottom:302.080000pt;}
.y1b9{bottom:303.066667pt;}
.y53{bottom:304.573333pt;}
.yd8{bottom:306.240000pt;}
.y24c{bottom:306.533333pt;}
.y7b{bottom:306.946667pt;}
.ya4{bottom:307.546667pt;}
.y20e{bottom:310.653333pt;}
.y1c7{bottom:311.813333pt;}
.y6e{bottom:313.733333pt;}
.y102{bottom:314.466667pt;}
.ya1{bottom:315.746667pt;}
.y1ab{bottom:315.906667pt;}
.y47{bottom:316.800000pt;}
.y1f6{bottom:317.053333pt;}
.y129{bottom:317.693333pt;}
.y10{bottom:318.853333pt;}
.yc5{bottom:319.106667pt;}
.y125{bottom:319.426667pt;}
.y14d{bottom:320.546667pt;}
.y9c{bottom:322.013333pt;}
.y20d{bottom:323.133333pt;}
.y1b8{bottom:323.226667pt;}
.y177{bottom:323.813333pt;}
.y16b{bottom:324.640000pt;}
.y230{bottom:324.733333pt;}
.y108{bottom:326.853333pt;}
.ye6{bottom:327.106667pt;}
.y3b{bottom:328.826667pt;}
.y118{bottom:329.146667pt;}
.y235{bottom:330.493333pt;}
.y10f{bottom:330.880000pt;}
.y1c6{bottom:331.040000pt;}
.y23c{bottom:332.186667pt;}
.y3{bottom:334.240000pt;}
.y1bc{bottom:335.013333pt;}
.y24b{bottom:335.333333pt;}
.y7a{bottom:335.746667pt;}
.y1b{bottom:337.533333pt;}
.y188{bottom:339.040000pt;}
.y20b{bottom:339.453333pt;}
.ydc{bottom:341.440000pt;}
.y14c{bottom:342.946667pt;}
.y1b7{bottom:343.226667pt;}
.y101{bottom:343.266667pt;}
.y46{bottom:345.600000pt;}
.y1f5{bottom:345.853333pt;}
.y28{bottom:347.653333pt;}
.y52{bottom:347.773333pt;}
.yf{bottom:348.320000pt;}
.y1e9{bottom:349.120000pt;}
.y1c5{bottom:350.240000pt;}
.y9b{bottom:350.813333pt;}
.y156{bottom:352.386667pt;}
.ye4{bottom:352.706667pt;}
.y1e1{bottom:353.626667pt;}
.y1bb{bottom:355.173333pt;}
.y107{bottom:355.680000pt;}
.yb9{bottom:356.666667pt;}
.y6d{bottom:358.560000pt;}
.y25a{bottom:359.013333pt;}
.y38{bottom:359.200000pt;}
.y10e{bottom:359.706667pt;}
.y25e{bottom:360.933333pt;}
.y159{bottom:361.533333pt;}
.y24a{bottom:364.133333pt;}
.y14b{bottom:365.346667pt;}
.y23b{bottom:365.786667pt;}
.y22f{bottom:367.133333pt;}
.y3a{bottom:367.266667pt;}
.y16a{bottom:367.360000pt;}
.y176{bottom:369.146667pt;}
.y1c4{bottom:369.440000pt;}
.y25c{bottom:371.746667pt;}
.y100{bottom:372.066667pt;}
.y117{bottom:373.986667pt;}
.y45{bottom:374.400000pt;}
.y155{bottom:374.813333pt;}
.y1ba{bottom:375.173333pt;}
.y27{bottom:376.293333pt;}
.y51{bottom:376.573333pt;}
.y1be{bottom:377.053333pt;}
.y187{bottom:378.080000pt;}
.y82{bottom:378.173333pt;}
.y1bd{bottom:378.213333pt;}
.ye2{bottom:378.333333pt;}
.y172{bottom:379.333333pt;}
.ye{bottom:380.320000pt;}
.y158{bottom:383.933333pt;}
.y120{bottom:384.226667pt;}
.y106{bottom:384.480000pt;}
.y2{bottom:385.440000pt;}
.y124{bottom:385.760000pt;}
.y85{bottom:386.173333pt;}
.y190{bottom:386.906667pt;}
.y14a{bottom:387.773333pt;}
.y259{bottom:387.813333pt;}
.y10d{bottom:388.506667pt;}
.y22a{bottom:390.533333pt;}
.y200{bottom:391.360000pt;}
.y21a{bottom:392.000000pt;}
.y249{bottom:392.933333pt;}
.y1e0{bottom:393.626667pt;}
.y13c{bottom:395.386667pt;}
.y169{bottom:396.800000pt;}
.y154{bottom:397.213333pt;}
.y23a{bottom:399.426667pt;}
.yff{bottom:400.866667pt;}
.y1a{bottom:401.573333pt;}
.y44{bottom:403.200000pt;}
.y7f{bottom:404.640000pt;}
.y26{bottom:405.253333pt;}
.y50{bottom:405.413333pt;}
.y157{bottom:406.333333pt;}
.y81{bottom:406.973333pt;}
.y21d{bottom:407.333333pt;}
.y171{bottom:408.133333pt;}
.yda{bottom:408.640000pt;}
.yd{bottom:411.680000pt;}
.y1e8{bottom:413.120000pt;}
.y105{bottom:413.280000pt;}
.y84{bottom:414.973333pt;}
.y175{bottom:415.333333pt;}
.y258{bottom:416.613333pt;}
.y20a{bottom:416.826667pt;}
.y10c{bottom:417.306667pt;}
.y116{bottom:418.786667pt;}
.y153{bottom:419.613333pt;}
.y186{bottom:419.706667pt;}
.y229{bottom:419.973333pt;}
.y248{bottom:421.760000pt;}
.y219{bottom:422.720000pt;}
.ydd{bottom:423.706667pt;}
.y1df{bottom:425.626667pt;}
.y1f4{bottom:425.893333pt;}
.y168{bottom:426.266667pt;}
.y64{bottom:429.506667pt;}
.yfe{bottom:429.666667pt;}
.y18f{bottom:430.106667pt;}
.y91{bottom:431.426667pt;}
.y239{bottom:433.026667pt;}
.y7e{bottom:433.440000pt;}
.y25{bottom:434.080000pt;}
.yab{bottom:434.146667pt;}
.y4f{bottom:434.213333pt;}
.y9a{bottom:434.853333pt;}
.y80{bottom:435.773333pt;}
.y1{bottom:436.666667pt;}
.y21c{bottom:438.053333pt;}
.yc{bottom:440.480000pt;}
.y104{bottom:442.080000pt;}
.y83{bottom:443.773333pt;}
.y174{bottom:444.800000pt;}
.y25d{bottom:445.413333pt;}
.y257{bottom:445.440000pt;}
.y1d4{bottom:445.573333pt;}
.y209{bottom:445.626667pt;}
.y10b{bottom:446.106667pt;}
.y11f{bottom:448.346667pt;}
.y123{bottom:449.573333pt;}
.y247{bottom:450.560000pt;}
.y6c{bottom:450.720000pt;}
.yd5{bottom:451.520000pt;}
.y149{bottom:452.573333pt;}
.y218{bottom:453.440000pt;}
.y90{bottom:453.826667pt;}
.y1f3{bottom:454.693333pt;}
.y167{bottom:455.706667pt;}
.yaa{bottom:459.746667pt;}
.y35{bottom:462.013333pt;}
.y24{bottom:462.880000pt;}
.y115{bottom:463.586667pt;}
.y99{bottom:463.653333pt;}
.y152{bottom:464.453333pt;}
.y19{bottom:465.573333pt;}
.y1de{bottom:465.626667pt;}
.y1ed{bottom:467.520000pt;}
.y22e{bottom:467.613333pt;}
.y63{bottom:467.933333pt;}
.y21b{bottom:468.960000pt;}
.yb{bottom:469.280000pt;}
.y18{bottom:473.146667pt;}
.y256{bottom:474.240000pt;}
.y208{bottom:474.426667pt;}
.y76{bottom:474.693333pt;}
.y148{bottom:475.013333pt;}
.y8f{bottom:476.226667pt;}
.y1e7{bottom:477.146667pt;}
.y238{bottom:477.626667pt;}
.y13d{bottom:477.733333pt;}
.ybe{bottom:480.773333pt;}
.y1f2{bottom:483.493333pt;}
.y217{bottom:484.320000pt;}
.ya9{bottom:485.346667pt;}
.y151{bottom:486.853333pt;}
.y42{bottom:487.680000pt;}
.y6b{bottom:489.146667pt;}
.yd2{bottom:490.400000pt;}
.y34{bottom:490.853333pt;}
.y23{bottom:491.680000pt;}
.y142{bottom:491.706667pt;}
.y98{bottom:492.453333pt;}
.y1c3{bottom:494.880000pt;}
.y185{bottom:495.200000pt;}
.y94{bottom:495.746667pt;}
.y173{bottom:497.120000pt;}
.y147{bottom:497.413333pt;}
.y1dd{bottom:497.666667pt;}
.ya{bottom:498.106667pt;}
.y145{bottom:498.626667pt;}
.y17{bottom:501.946667pt;}
.yc4{bottom:502.533333pt;}
.y255{bottom:503.040000pt;}
.y207{bottom:503.226667pt;}
.y122{bottom:505.893333pt;}
.y114{bottom:508.413333pt;}
.y150{bottom:509.280000pt;}
.y22d{bottom:510.013333pt;}
.y237{bottom:511.226667pt;}
.y1f1{bottom:512.320000pt;}
.y75{bottom:513.120000pt;}
.y11e{bottom:513.573333pt;}
.y1d3{bottom:515.973333pt;}
.y93{bottom:518.146667pt;}
.ybd{bottom:519.173333pt;}
.ya8{bottom:519.266667pt;}
.y33{bottom:519.653333pt;}
.y146{bottom:519.813333pt;}
.y22{bottom:520.480000pt;}
.y144{bottom:521.026667pt;}
.y97{bottom:521.253333pt;}
.y8e{bottom:522.333333pt;}
.y18e{bottom:522.906667pt;}
.y228{bottom:523.333333pt;}
.y41{bottom:526.080000pt;}
.y43{bottom:526.720000pt;}
.y9{bottom:526.906667pt;}
.y121{bottom:528.293333pt;}
.y254{bottom:531.840000pt;}
.y206{bottom:532.026667pt;}
.yd7{bottom:533.786667pt;}
.y184{bottom:536.800000pt;}
.y1dc{bottom:537.666667pt;}
.y92{bottom:540.573333pt;}
.yc3{bottom:540.960000pt;}
.y1f0{bottom:541.120000pt;}
.yd0{bottom:542.653333pt;}
.y141{bottom:542.946667pt;}
.y8d{bottom:544.733333pt;}
.ya7{bottom:544.866667pt;}
.y1c2{bottom:546.080000pt;}
.y166{bottom:547.746667pt;}
.yf7{bottom:549.120000pt;}
.y21{bottom:549.920000pt;}
.y96{bottom:550.080000pt;}
.y6a{bottom:550.560000pt;}
.y1d2{bottom:551.173333pt;}
.y227{bottom:552.613333pt;}
.y113{bottom:553.213333pt;}
.y143{bottom:554.333333pt;}
.y8{bottom:555.706667pt;}
.ybc{bottom:557.600000pt;}
.y253{bottom:560.640000pt;}
.y205{bottom:560.866667pt;}
.y40{bottom:564.480000pt;}
.y18d{bottom:566.146667pt;}
.y8c{bottom:567.173333pt;}
.y1ef{bottom:569.920000pt;}
.ya6{bottom:570.493333pt;}
.y1c1{bottom:571.706667pt;}
.y79{bottom:572.480000pt;}
.yd4{bottom:572.773333pt;}
.yf6{bottom:577.920000pt;}
.y183{bottom:578.400000pt;}
.y236{bottom:578.466667pt;}
.y20{bottom:578.746667pt;}
.y95{bottom:578.880000pt;}
.yc2{bottom:579.360000pt;}
.y226{bottom:582.053333pt;}
.y69{bottom:588.960000pt;}
.y1e6{bottom:589.253333pt;}
.y252{bottom:589.466667pt;}
.y8b{bottom:589.573333pt;}
.ybb{bottom:596.000000pt;}
.y203{bottom:597.826667pt;}
.yf5{bottom:606.720000pt;}
.yd1{bottom:609.306667pt;}
.y78{bottom:610.880000pt;}
.y37{bottom:614.880000pt;}
.y251{bottom:618.266667pt;}
.y202{bottom:620.226667pt;}
.y1c0{bottom:621.186667pt;}
.y3f{bottom:623.973333pt;}
.y246{bottom:624.160000pt;}
.y1ec{bottom:629.280000pt;}
.y18c{bottom:634.053333pt;}
.ycb{bottom:634.373333pt;}
.y39{bottom:634.720000pt;}
.y136{bottom:635.133333pt;}
.y16{bottom:635.173333pt;}
.yf4{bottom:635.546667pt;}
.y164{bottom:641.853333pt;}
.y204{bottom:642.626667pt;}
.y36{bottom:643.680000pt;}
.y77{bottom:649.306667pt;}
.y89{bottom:654.400000pt;}
.y15{bottom:664.000000pt;}
.y1bf{bottom:672.413333pt;}
.y135{bottom:673.533333pt;}
.y1eb{bottom:673.920000pt;}
.y137{bottom:673.986667pt;}
.y3e{bottom:675.200000pt;}
.yba{bottom:678.693333pt;}
.yf3{bottom:678.880000pt;}
.yca{bottom:679.200000pt;}
.y163{bottom:680.253333pt;}
.yac{bottom:681.760000pt;}
.y62{bottom:682.720000pt;}
.y25b{bottom:683.613333pt;}
.y165{bottom:684.320000pt;}
.y1f{bottom:686.426667pt;}
.y88{bottom:688.000000pt;}
.y14{bottom:692.800000pt;}
.h1f{height:61.754062pt;}
.h20{height:61.859625pt;}
.h3a{height:66.750000pt;}
.h3b{height:66.883500pt;}
.h21{height:70.199062pt;}
.h22{height:70.304625pt;}
.hd{height:72.937500pt;}
.h31{height:74.949375pt;}
.h2c{height:76.308750pt;}
.h2b{height:76.423500pt;}
.h36{height:76.762500pt;}
.h35{height:76.896000pt;}
.h48{height:77.875000pt;}
.h4{height:79.171875pt;}
.h5{height:79.277438pt;}
.ha{height:81.796875pt;}
.h9{height:81.905937pt;}
.h37{height:82.102500pt;}
.h46{height:86.062500pt;}
.h45{height:86.177250pt;}
.h4a{height:88.144687pt;}
.h4b{height:88.250250pt;}
.h27{height:88.515875pt;}
.h19{height:88.777500pt;}
.h1a{height:88.911000pt;}
.h47{height:92.367188pt;}
.h49{height:92.472750pt;}
.hb{height:96.750000pt;}
.hc{height:96.879000pt;}
.h2{height:100.125000pt;}
.h13{height:100.258500pt;}
.h16{height:106.452731pt;}
.h15{height:106.544106pt;}
.h3{height:111.472500pt;}
.h3e{height:111.606000pt;}
.h18{height:113.613500pt;}
.h14{height:114.535313pt;}
.h1c{height:116.812500pt;}
.h1d{height:116.946000pt;}
.h3c{height:122.152500pt;}
.h3d{height:122.286000pt;}
.h2f{height:122.980312pt;}
.h30{height:123.085875pt;}
.h1e{height:123.715875pt;}
.h17{height:125.562500pt;}
.h8{height:125.656563pt;}
.h1b{height:125.688063pt;}
.h4c{height:127.730625pt;}
.h4d{height:127.836187pt;}
.hf{height:129.000000pt;}
.he{height:129.129000pt;}
.h12{height:133.500000pt;}
.h25{height:133.633500pt;}
.h23{height:139.965000pt;}
.h11{height:140.925938pt;}
.h10{height:141.031500pt;}
.h32{height:144.847500pt;}
.h33{height:144.981000pt;}
.h24{height:150.285000pt;}
.h26{height:150.414000pt;}
.h34{height:155.527500pt;}
.h2e{height:155.661000pt;}
.h39{height:172.215000pt;}
.h3f{height:172.344000pt;}
.h1{height:178.222500pt;}
.h28{height:179.200000pt;}
.h6{height:222.277500pt;}
.h7{height:222.411000pt;}
.h40{height:252.480000pt;}
.h2d{height:303.520000pt;}
.h38{height:307.595000pt;}
.h41{height:328.640000pt;}
.h29{height:358.400000pt;}
.h2a{height:537.600000pt;}
.h42{height:604.800000pt;}
.h43{height:707.520000pt;}
.h44{height:717.120000pt;}
.h0{height:720.000000pt;}
.w8{width:105.760000pt;}
.w6{width:126.240000pt;}
.w2{width:181.120000pt;}
.w9{width:184.800000pt;}
.w5{width:311.040000pt;}
.w4{width:322.560000pt;}
.w7{width:582.240000pt;}
.wa{width:643.520000pt;}
.w3{width:756.160000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xd0{left:7.168000pt;}
.x93{left:9.632000pt;}
.x92{left:11.360000pt;}
.x5e{left:12.383986pt;}
.xff{left:13.376000pt;}
.x78{left:15.903986pt;}
.x5d{left:18.623986pt;}
.xef{left:20.480000pt;}
.x10f{left:21.823986pt;}
.x16{left:24.415986pt;}
.xf9{left:25.439986pt;}
.x1e{left:26.495986pt;}
.x15{left:29.503986pt;}
.x34{left:30.783986pt;}
.x68{left:32.735986pt;}
.x103{left:35.039986pt;}
.x8e{left:37.023986pt;}
.xfa{left:38.399986pt;}
.x1d{left:39.775986pt;}
.x6c{left:41.087986pt;}
.x7e{left:42.079986pt;}
.x3b{left:43.615986pt;}
.x5f{left:44.863986pt;}
.x69{left:46.015986pt;}
.x6d{left:47.039986pt;}
.x7f{left:47.999986pt;}
.x1f{left:48.895986pt;}
.x80{left:50.079986pt;}
.x91{left:51.007986pt;}
.x6b{left:52.415986pt;}
.xeb{left:54.111986pt;}
.xd3{left:55.967986pt;}
.x9{left:57.599986pt;}
.x81{left:58.559986pt;}
.x3f{left:60.319986pt;}
.x9d{left:61.983986pt;}
.xdd{left:63.615986pt;}
.x8{left:65.471986pt;}
.x40{left:67.679986pt;}
.x18{left:68.735986pt;}
.x10c{left:69.663986pt;}
.xe3{left:70.719986pt;}
.x6a{left:72.415986pt;}
.x109{left:73.375986pt;}
.x10d{left:74.591986pt;}
.x25{left:75.807986pt;}
.xe6{left:78.207986pt;}
.x26{left:80.255986pt;}
.x3e{left:82.655986pt;}
.x1b{left:83.775986pt;}
.x3d{left:86.047986pt;}
.xec{left:86.975986pt;}
.x24{left:88.575986pt;}
.xa1{left:89.535986pt;}
.x1a{left:90.975986pt;}
.xe5{left:92.927986pt;}
.xa3{left:96.895986pt;}
.x3{left:98.559986pt;}
.x3c{left:100.607986pt;}
.x98{left:102.943986pt;}
.x19{left:104.895986pt;}
.x9b{left:105.887986pt;}
.x27{left:108.255986pt;}
.xe2{left:110.015986pt;}
.xaf{left:112.543986pt;}
.x38{left:114.271986pt;}
.x1{left:116.159986pt;}
.xb8{left:118.527986pt;}
.x35{left:121.855986pt;}
.x9c{left:125.055986pt;}
.x17{left:129.375986pt;}
.x1c{left:132.415986pt;}
.xee{left:134.013319pt;}
.x100{left:135.773319pt;}
.xac{left:136.986652pt;}
.xaa{left:138.853319pt;}
.xa9{left:139.933319pt;}
.x4d{left:141.573319pt;}
.x11{left:143.679986pt;}
.xa7{left:146.719986pt;}
.x49{left:153.573319pt;}
.xed{left:157.733319pt;}
.xb9{left:159.106652pt;}
.xd1{left:160.453319pt;}
.xa8{left:164.479986pt;}
.x12{left:166.239986pt;}
.xea{left:167.133319pt;}
.xf2{left:169.466652pt;}
.xcc{left:173.146652pt;}
.xfb{left:174.813319pt;}
.x9f{left:176.319986pt;}
.x4b{left:178.373319pt;}
.xf1{left:180.546652pt;}
.xcb{left:182.906652pt;}
.xa5{left:186.719986pt;}
.xb5{left:187.973319pt;}
.x94{left:192.480000pt;}
.xf0{left:194.786652pt;}
.xa4{left:198.559986pt;}
.x13{left:203.199986pt;}
.x10{left:206.239986pt;}
.xe0{left:209.986652pt;}
.x84{left:211.333319pt;}
.x2{left:213.119986pt;}
.x4{left:216.159986pt;}
.xf{left:217.279986pt;}
.xa2{left:225.853319pt;}
.x4e{left:227.039986pt;}
.x97{left:232.133319pt;}
.xd2{left:236.320000pt;}
.x51{left:241.439986pt;}
.xc{left:242.493319pt;}
.x86{left:245.893319pt;}
.xbb{left:247.293319pt;}
.x2f{left:251.906652pt;}
.x85{left:253.279986pt;}
.x73{left:254.213319pt;}
.xab{left:258.173319pt;}
.xbc{left:259.133319pt;}
.x76{left:260.093319pt;}
.x87{left:261.666652pt;}
.xb0{left:262.946652pt;}
.xba{left:264.893319pt;}
.x4c{left:266.879986pt;}
.xde{left:268.293319pt;}
.xcf{left:269.413319pt;}
.x74{left:271.333319pt;}
.xbd{left:272.413319pt;}
.x8f{left:273.439986pt;}
.x71{left:274.813319pt;}
.x50{left:277.733319pt;}
.xa6{left:278.906652pt;}
.x77{left:282.373319pt;}
.x9a{left:289.733319pt;}
.x83{left:291.866652pt;}
.xe7{left:297.413319pt;}
.x4a{left:299.039986pt;}
.x4f{left:300.613319pt;}
.x95{left:302.559986pt;}
.x101{left:303.520000pt;}
.xb1{left:306.213319pt;}
.x10e{left:311.866652pt;}
.xe8{left:314.213319pt;}
.x6{left:317.413319pt;}
.x7a{left:319.493319pt;}
.x96{left:321.439986pt;}
.x75{left:322.559986pt;}
.xa{left:324.933319pt;}
.x14{left:329.146652pt;}
.x8a{left:332.346652pt;}
.x79{left:334.693319pt;}
.x102{left:337.533319pt;}
.xce{left:339.066652pt;}
.x44{left:339.999986pt;}
.xdb{left:341.506652pt;}
.x7{left:342.693319pt;}
.x106{left:343.906652pt;}
.x9e{left:345.893319pt;}
.xb{left:347.813319pt;}
.x104{left:349.213319pt;}
.x10b{left:353.986652pt;}
.x59{left:355.039986pt;}
.xf4{left:357.280000pt;}
.xdf{left:360.093319pt;}
.xd4{left:362.106652pt;}
.x48{left:363.613319pt;}
.x41{left:365.279986pt;}
.x47{left:367.333319pt;}
.xb6{left:369.853319pt;}
.x30{left:372.546652pt;}
.x105{left:373.666652pt;}
.xf6{left:379.973319pt;}
.x31{left:381.346652pt;}
.xf3{left:382.853319pt;}
.x82{left:385.826652pt;}
.xe1{left:389.093319pt;}
.x20{left:392.573319pt;}
.x45{left:393.919986pt;}
.x90{left:396.826652pt;}
.x10a{left:399.426652pt;}
.x36{left:405.759986pt;}
.x5a{left:406.906652pt;}
.x21{left:412.893319pt;}
.x23{left:414.493319pt;}
.x52{left:417.946652pt;}
.xb2{left:420.706652pt;}
.xf8{left:422.213319pt;}
.x22{left:426.333319pt;}
.xb3{left:428.226652pt;}
.xd8{left:429.186652pt;}
.x72{left:430.853319pt;}
.x32{left:436.253319pt;}
.xb4{left:442.306652pt;}
.xdc{left:444.226652pt;}
.xfc{left:465.093319pt;}
.x37{left:473.439986pt;}
.xfd{left:474.373319pt;}
.x39{left:475.493319pt;}
.x110{left:494.586652pt;}
.xc0{left:503.199986pt;}
.xc2{left:510.879986pt;}
.xe9{left:521.666652pt;}
.x3a{left:523.493319pt;}
.xe4{left:529.306652pt;}
.xc1{left:531.199986pt;}
.xc3{left:538.879986pt;}
.xfe{left:544.933319pt;}
.xc7{left:558.586652pt;}
.xf5{left:561.186667pt;}
.x64{left:582.399986pt;}
.xc6{left:584.346652pt;}
.xf7{left:591.679986pt;}
.x60{left:593.373319pt;}
.x5{left:596.866652pt;}
.x61{left:604.573319pt;}
.x99{left:605.786652pt;}
.x62{left:609.373319pt;}
.x63{left:611.359986pt;}
.xda{left:626.746652pt;}
.xd{left:627.679986pt;}
.xd9{left:628.986652pt;}
.xe{left:636.319986pt;}
.x8c{left:637.759986pt;}
.xd6{left:642.946652pt;}
.x88{left:646.266652pt;}
.xbe{left:651.773319pt;}
.x58{left:653.093319pt;}
.x89{left:659.546652pt;}
.xcd{left:662.879986pt;}
.x42{left:666.053319pt;}
.x43{left:667.173319pt;}
.x8b{left:669.119986pt;}
.x57{left:670.373319pt;}
.xb7{left:673.413319pt;}
.x2c{left:676.386652pt;}
.x28{left:679.039986pt;}
.x2d{left:681.093319pt;}
.x107{left:682.906652pt;}
.xd7{left:691.906652pt;}
.x108{left:696.826652pt;}
.xbf{left:700.613319pt;}
.xd5{left:701.666652pt;}
.x2a{left:703.586652pt;}
.x46{left:705.253319pt;}
.x53{left:707.226652pt;}
.x29{left:711.839986pt;}
.x55{left:715.226652pt;}
.x2b{left:716.866652pt;}
.x2e{left:727.453319pt;}
.x54{left:736.986652pt;}
.x56{left:743.386652pt;}
.x5b{left:746.106652pt;}
.x5c{left:752.346652pt;}
.xae{left:758.946652pt;}
.xad{left:763.106652pt;}
.xc4{left:783.066652pt;}
.xc5{left:784.666652pt;}
.x66{left:792.959986pt;}
.x7c{left:795.173319pt;}
.x67{left:801.439986pt;}
.x6f{left:812.133319pt;}
.x70{left:816.613319pt;}
.x65{left:818.879986pt;}
.x6e{left:822.693319pt;}
.xca{left:823.933319pt;}
.xc9{left:825.693319pt;}
.x7b{left:827.493319pt;}
.xc8{left:851.773319pt;}
.x33{left:885.533319pt;}
.x7d{left:908.293319pt;}
.xa0{left:909.306652pt;}
.x8d{left:931.813319pt;}
}




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