
    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_b8e6011db35e9f997840af9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fc3cad12d7306aa6bfea1d75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769000;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_a260ff8afa016cb63557c146.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_68ed47409ac2b9eaf0295d28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_383006e9a809df570abfb94f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.801000;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_551aa4655eb38a5df8b9c994.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.814000;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_c005517c6fee1adf924f1519.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_cba2a23e3fabb9084f406595.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_798b3546bd99e45f6b384743.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0f3970330845c1f86875ffe2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.636000;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_82fa6bf1dff01bc1e0e8f274.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;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_c99231ee5386ae63a24e346f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_44791bc02d52d79765af37ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.705000;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_e27955b321aaf00781987d11.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d4acb8eeca274fa58f643020.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;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_208ca0dedd6f3d8362958477.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.429000;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_a1fb0fa9e509b2cc47b9e7f0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d9fd8ea0b93ba25b7153d93c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.052000;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;}
.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);}
.v4{vertical-align:-22.854000px;}
.v2{vertical-align:-10.758000px;}
.v7{vertical-align:-8.964000px;}
.v6{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.464000px;}
.v3{vertical-align:21.690000px;}
.v5{vertical-align:22.854000px;}
.v1{vertical-align:26.034000px;}
.ls11{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000309px;}
.ls19{letter-spacing:0.000538px;}
.ls9{letter-spacing:0.001559px;}
.ls6b{letter-spacing:0.008985px;}
.ls6e{letter-spacing:0.024905px;}
.ls6f{letter-spacing:1.374839px;}
.ls68{letter-spacing:2.118533px;}
.lsf{letter-spacing:2.984525px;}
.ls1d{letter-spacing:2.985789px;}
.ls7a{letter-spacing:2.988482px;}
.ls5{letter-spacing:2.988532px;}
.ls1c{letter-spacing:2.989409px;}
.ls18{letter-spacing:2.990525px;}
.ls76{letter-spacing:2.994532px;}
.ls3a{letter-spacing:2.995409px;}
.ls4a{letter-spacing:3.945190px;}
.ls80{letter-spacing:4.230856px;}
.ls67{letter-spacing:6.097111px;}
.ls1b{letter-spacing:6.156887px;}
.ls3d{letter-spacing:7.232848px;}
.ls37{letter-spacing:8.547911px;}
.ls34{letter-spacing:9.145667px;}
.ls4d{letter-spacing:9.922750px;}
.ls6d{letter-spacing:13.509286px;}
.ls7{letter-spacing:15.224947px;}
.ls6{letter-spacing:15.278746px;}
.ls29{letter-spacing:15.840534px;}
.ls53{letter-spacing:15.900310px;}
.ls52{letter-spacing:15.960085px;}
.ls20{letter-spacing:16.514525px;}
.ls6c{letter-spacing:16.533672px;}
.ls2f{letter-spacing:16.557841px;}
.ls2e{letter-spacing:16.617617px;}
.ls7e{letter-spacing:16.620532px;}
.ls70{letter-spacing:16.736525px;}
.ls3b{letter-spacing:17.155597px;}
.ls38{letter-spacing:17.456525px;}
.ls62{letter-spacing:17.786525px;}
.ls39{letter-spacing:17.990525px;}
.ls23{letter-spacing:18.062525px;}
.ls5c{letter-spacing:18.072532px;}
.ls5d{letter-spacing:18.399053px;}
.ls72{letter-spacing:18.488525px;}
.ls2b{letter-spacing:19.214525px;}
.ls5b{letter-spacing:19.296532px;}
.ls2d{letter-spacing:19.307519px;}
.ls69{letter-spacing:19.580791px;}
.ls17{letter-spacing:19.820525px;}
.ls73{letter-spacing:19.860532px;}
.lsc{letter-spacing:19.868525px;}
.lse{letter-spacing:20.438525px;}
.ls30{letter-spacing:20.503031px;}
.ls4b{letter-spacing:20.534525px;}
.ls36{letter-spacing:20.546525px;}
.ls26{letter-spacing:20.921460px;}
.ls57{letter-spacing:21.036532px;}
.ls2a{letter-spacing:21.100787px;}
.ls58{letter-spacing:21.152525px;}
.ls5a{letter-spacing:21.411763px;}
.ls60{letter-spacing:21.420532px;}
.ls74{letter-spacing:21.582532px;}
.ls35{letter-spacing:21.818094px;}
.ls2c{letter-spacing:22.116972px;}
.ls42{letter-spacing:22.326336px;}
.ls43{letter-spacing:22.380134px;}
.ls33{letter-spacing:22.415850px;}
.lsb{letter-spacing:22.592525px;}
.ls3c{letter-spacing:22.774504px;}
.ls16{letter-spacing:22.910525px;}
.ls27{letter-spacing:22.916525px;}
.ls45{letter-spacing:23.114525px;}
.ls28{letter-spacing:23.336525px;}
.ls32{letter-spacing:23.491811px;}
.ls4f{letter-spacing:23.588525px;}
.ls47{letter-spacing:24.122525px;}
.ls24{letter-spacing:24.268894px;}
.ls25{letter-spacing:24.392525px;}
.ls22{letter-spacing:24.432532px;}
.ls31{letter-spacing:24.567772px;}
.lsa{letter-spacing:24.956525px;}
.ls78{letter-spacing:25.158532px;}
.ls59{letter-spacing:25.184525px;}
.ls4{letter-spacing:25.454525px;}
.ls3{letter-spacing:25.460525px;}
.ls71{letter-spacing:25.832525px;}
.ls8{letter-spacing:25.890532px;}
.ls2{letter-spacing:25.910525px;}
.ls81{letter-spacing:26.028532px;}
.ls79{letter-spacing:26.136532px;}
.ls6a{letter-spacing:26.222525px;}
.ls77{letter-spacing:26.352532px;}
.ls41{letter-spacing:26.364532px;}
.ls40{letter-spacing:26.370532px;}
.ls75{letter-spacing:26.634532px;}
.ls50{letter-spacing:26.690525px;}
.ls51{letter-spacing:26.696525px;}
.ls46{letter-spacing:26.846525px;}
.ls66{letter-spacing:26.954525px;}
.ls56{letter-spacing:27.126532px;}
.ls1f{letter-spacing:27.134525px;}
.ls4c{letter-spacing:27.314525px;}
.ls61{letter-spacing:27.404525px;}
.ls54{letter-spacing:27.614525px;}
.ls1e{letter-spacing:27.632525px;}
.ls4e{letter-spacing:27.638525px;}
.ls14{letter-spacing:27.836525px;}
.ls7b{letter-spacing:28.176532px;}
.ls7d{letter-spacing:28.326532px;}
.ls48{letter-spacing:28.592525px;}
.ls21{letter-spacing:28.938532px;}
.ls12{letter-spacing:29.110717px;}
.ls5f{letter-spacing:29.166123px;}
.ls5e{letter-spacing:29.172123px;}
.ls44{letter-spacing:29.648525px;}
.ls0{letter-spacing:29.888915px;}
.ls7f{letter-spacing:30.948532px;}
.ls1a{letter-spacing:31.064525px;}
.ls55{letter-spacing:31.188532px;}
.ls49{letter-spacing:31.454525px;}
.ls7c{letter-spacing:31.620532px;}
.ls10{letter-spacing:32.039722px;}
.lsd{letter-spacing:32.792525px;}
.ls15{letter-spacing:32.894525px;}
.ls13{letter-spacing:36.182525px;}
.ls3e{letter-spacing:38.358259px;}
.ls65{letter-spacing:40.760525px;}
.ls3f{letter-spacing:41.382532px;}
.ls64{letter-spacing:44.990525px;}
.ls63{letter-spacing:92.204525px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsac{word-spacing:-30.688793px;}
.ws86{word-spacing:-18.614122px;}
.ws6{word-spacing:-16.605662px;}
.ws1a{word-spacing:-15.359443px;}
.ws1c7{word-spacing:-14.111320px;}
.wsc6{word-spacing:-7.459995px;}
.ws9d{word-spacing:-6.682912px;}
.wsb8{word-spacing:-6.652770px;}
.ws71{word-spacing:-6.640862px;}
.ws7a{word-spacing:-6.623136px;}
.wsd4{word-spacing:-6.619697px;}
.ws106{word-spacing:-6.300348px;}
.ws18{word-spacing:-6.159917px;}
.wsec{word-spacing:-6.106118px;}
.ws29{word-spacing:-3.215927px;}
.ws75{word-spacing:-3.096376px;}
.ws1a7{word-spacing:-2.985811px;}
.ws131{word-spacing:-2.976825px;}
.ws14e{word-spacing:-2.857274px;}
.ws1cf{word-spacing:-2.663021px;}
.wsd7{word-spacing:-2.618171px;}
.ws1c0{word-spacing:-2.609222px;}
.ws19e{word-spacing:-2.501626px;}
.wsbd{word-spacing:-2.319293px;}
.wsce{word-spacing:-2.259518px;}
.wsd5{word-spacing:-2.139966px;}
.ws1c6{word-spacing:-2.125037px;}
.ws163{word-spacing:-2.071238px;}
.wsba{word-spacing:-1.960640px;}
.wse4{word-spacing:-1.900864px;}
.wsff{word-spacing:-1.841088px;}
.ws130{word-spacing:-1.781313px;}
.ws196{word-spacing:-1.748448px;}
.ws14b{word-spacing:-1.721537px;}
.ws194{word-spacing:-1.694650px;}
.wsd6{word-spacing:-1.601986px;}
.ws1b4{word-spacing:-1.587053px;}
.ws90{word-spacing:-1.542210px;}
.wsaf{word-spacing:-1.482435px;}
.ws13e{word-spacing:-1.422659px;}
.ws103{word-spacing:-1.362884px;}
.ws145{word-spacing:-1.303108px;}
.ws1be{word-spacing:-1.156666px;}
.wseb{word-spacing:-1.123781px;}
.wsfa{word-spacing:-1.064006px;}
.ws1db{word-spacing:-1.049069px;}
.ws44{word-spacing:-0.944454px;}
.ws189{word-spacing:-0.941472px;}
.ws1d3{word-spacing:-0.887674px;}
.ws15d{word-spacing:-0.833875px;}
.ws129{word-spacing:-0.824903px;}
.ws9f{word-spacing:-0.765128px;}
.ws195{word-spacing:-0.726278px;}
.ws1ae{word-spacing:-0.672480px;}
.ws33{word-spacing:-0.645576px;}
.wsb3{word-spacing:-0.585801px;}
.ws1b2{word-spacing:-0.564883px;}
.ws2d{word-spacing:-0.526025px;}
.wsd0{word-spacing:-0.466250px;}
.ws164{word-spacing:-0.457286px;}
.wsa2{word-spacing:-0.406474px;}
.ws197{word-spacing:-0.349690px;}
.wsa1{word-spacing:-0.346698px;}
.ws125{word-spacing:-0.295891px;}
.ws124{word-spacing:-0.242093px;}
.ws84{word-spacing:-0.227147px;}
.ws1da{word-spacing:-0.188294px;}
.ws104{word-spacing:-0.167372px;}
.ws1b6{word-spacing:-0.134496px;}
.wsbe{word-spacing:-0.107596px;}
.ws17{word-spacing:-0.080698px;}
.ws3{word-spacing:-0.071731px;}
.wsd9{word-spacing:-0.059776px;}
.ws22{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.047821px;}
.ws65{word-spacing:-0.041843px;}
.ws1b{word-spacing:-0.035866px;}
.ws5b{word-spacing:0.000000px;}
.ws24{word-spacing:0.011955px;}
.ws7f{word-spacing:0.071731px;}
.ws1bb{word-spacing:0.080698px;}
.ws119{word-spacing:0.131506px;}
.ws1bc{word-spacing:0.188294px;}
.wsfb{word-spacing:0.191282px;}
.ws3c{word-spacing:0.251058px;}
.ws4a{word-spacing:0.370609px;}
.ws173{word-spacing:0.403488px;}
.wsc0{word-spacing:0.430384px;}
.ws8d{word-spacing:0.490160px;}
.wse5{word-spacing:0.549936px;}
.ws15e{word-spacing:0.564883px;}
.ws92{word-spacing:0.609711px;}
.wsb6{word-spacing:0.669487px;}
.ws121{word-spacing:0.726278px;}
.ws2f{word-spacing:0.729262px;}
.ws16b{word-spacing:0.780077px;}
.wsa7{word-spacing:0.789038px;}
.ws3b{word-spacing:0.848814px;}
.wsd3{word-spacing:0.908589px;}
.ws11d{word-spacing:0.941472px;}
.wsbc{word-spacing:1.028140px;}
.ws181{word-spacing:1.049069px;}
.ws5f{word-spacing:1.087916px;}
.ws179{word-spacing:1.102867px;}
.wsea{word-spacing:1.147692px;}
.ws17a{word-spacing:1.156666px;}
.ws99{word-spacing:1.207467px;}
.ws8f{word-spacing:1.267243px;}
.ws1d2{word-spacing:1.318061px;}
.wsd1{word-spacing:1.327018px;}
.ws83{word-spacing:1.386794px;}
.ws1d6{word-spacing:1.479456px;}
.ws46{word-spacing:1.506345px;}
.ws168{word-spacing:1.533254px;}
.ws48{word-spacing:1.566121px;}
.ws1d{word-spacing:1.587053px;}
.ws153{word-spacing:1.625896px;}
.ws186{word-spacing:1.640851px;}
.ws39{word-spacing:1.685672px;}
.ws178{word-spacing:1.748448px;}
.ws176{word-spacing:1.802246px;}
.ws149{word-spacing:1.805223px;}
.ws1af{word-spacing:1.909843px;}
.ws18a{word-spacing:1.920603px;}
.ws13f{word-spacing:1.924774px;}
.ws185{word-spacing:1.963642px;}
.wsda{word-spacing:1.984550px;}
.ws16a{word-spacing:2.017440px;}
.ws94{word-spacing:2.044326px;}
.ws165{word-spacing:2.071238px;}
.ws100{word-spacing:2.104101px;}
.ws199{word-spacing:2.125037px;}
.ws4b{word-spacing:2.163877px;}
.ws1cd{word-spacing:2.178835px;}
.ws3d{word-spacing:2.223652px;}
.ws1b1{word-spacing:2.297192px;}
.ws1cb{word-spacing:2.340230px;}
.ws5e{word-spacing:2.343204px;}
.ws10b{word-spacing:2.447827px;}
.ws74{word-spacing:2.462755px;}
.ws127{word-spacing:2.522530px;}
.wsd8{word-spacing:2.582306px;}
.ws30{word-spacing:2.642082px;}
.ws110{word-spacing:2.663021px;}
.ws7e{word-spacing:2.701857px;}
.ws41{word-spacing:2.761633px;}
.ws79{word-spacing:2.821408px;}
.ws175{word-spacing:2.824416px;}
.ws2c{word-spacing:2.881184px;}
.wsaa{word-spacing:2.940960px;}
.ws38{word-spacing:3.000735px;}
.ws21{word-spacing:3.039610px;}
.wsf2{word-spacing:3.060511px;}
.wsf{word-spacing:3.093408px;}
.wse3{word-spacing:3.120286px;}
.ws1ce{word-spacing:3.201005px;}
.ws12a{word-spacing:3.239838px;}
.ws16d{word-spacing:3.254803px;}
.ws31{word-spacing:3.299613px;}
.ws45{word-spacing:3.359389px;}
.ws8b{word-spacing:3.362400px;}
.ws8a{word-spacing:3.416198px;}
.ws136{word-spacing:3.419164px;}
.ws85{word-spacing:3.478940px;}
.wsbb{word-spacing:3.538716px;}
.ws26{word-spacing:3.598491px;}
.ws11{word-spacing:3.631392px;}
.ws6d{word-spacing:3.658267px;}
.ws9e{word-spacing:3.718042px;}
.ws49{word-spacing:3.777818px;}
.wsb5{word-spacing:3.837594px;}
.ws13{word-spacing:3.846586px;}
.wse6{word-spacing:3.897369px;}
.ws1dd{word-spacing:3.900384px;}
.ws28{word-spacing:3.957145px;}
.ws107{word-spacing:4.016920px;}
.wsf3{word-spacing:4.076696px;}
.ws3a{word-spacing:4.136472px;}
.ws67{word-spacing:4.196247px;}
.ws10f{word-spacing:4.223174px;}
.ws36{word-spacing:4.256023px;}
.ws182{word-spacing:4.276973px;}
.ws6a{word-spacing:4.315798px;}
.ws170{word-spacing:4.330771px;}
.ws123{word-spacing:4.384570px;}
.ws76{word-spacing:4.435350px;}
.ws15b{word-spacing:4.492166px;}
.wsa0{word-spacing:4.495125px;}
.ws12{word-spacing:4.545965px;}
.ws47{word-spacing:4.554901px;}
.ws12c{word-spacing:4.599763px;}
.ws6b{word-spacing:4.614676px;}
.ws14d{word-spacing:4.674452px;}
.wscd{word-spacing:4.734228px;}
.ws98{word-spacing:4.794003px;}
.ws1b3{word-spacing:4.814957px;}
.ws97{word-spacing:4.853779px;}
.ws132{word-spacing:4.913554px;}
.wsa9{word-spacing:4.973330px;}
.ws2e{word-spacing:5.033106px;}
.ws1aa{word-spacing:5.083949px;}
.ws91{word-spacing:5.092881px;}
.ws19d{word-spacing:5.137747px;}
.ws147{word-spacing:5.152657px;}
.ws10{word-spacing:5.191546px;}
.wsd2{word-spacing:5.212432px;}
.ws158{word-spacing:5.245344px;}
.ws102{word-spacing:5.272208px;}
.ws14{word-spacing:5.299142px;}
.ws32{word-spacing:5.391759px;}
.ws1ca{word-spacing:5.406739px;}
.wsdf{word-spacing:5.451535px;}
.ws17b{word-spacing:5.460538px;}
.wsa5{word-spacing:5.511310px;}
.ws1d8{word-spacing:5.568134px;}
.wsa6{word-spacing:5.571086px;}
.ws18c{word-spacing:5.621933px;}
.ws82{word-spacing:5.630862px;}
.ws23{word-spacing:5.690637px;}
.ws1a4{word-spacing:5.729530px;}
.wsca{word-spacing:5.810188px;}
.ws1ab{word-spacing:5.837126px;}
.ws7{word-spacing:5.869964px;}
.ws93{word-spacing:5.929740px;}
.ws157{word-spacing:5.944723px;}
.ws72{word-spacing:5.989515px;}
.ws11c{word-spacing:5.998522px;}
.ws190{word-spacing:6.052320px;}
.ws89{word-spacing:6.106118px;}
.ws61{word-spacing:6.109066px;}
.wse7{word-spacing:6.168842px;}
.ws2b{word-spacing:6.228618px;}
.ws154{word-spacing:6.267514px;}
.ws5{word-spacing:6.288393px;}
.ws19a{word-spacing:6.321312px;}
.ws4{word-spacing:6.348169px;}
.ws17c{word-spacing:6.375110px;}
.ws43{word-spacing:6.407944px;}
.wse0{word-spacing:6.467720px;}
.wsae{word-spacing:6.527496px;}
.ws1f{word-spacing:6.536506px;}
.ws6c{word-spacing:6.587271px;}
.ws15a{word-spacing:6.590304px;}
.wsab{word-spacing:6.647047px;}
.wsb4{word-spacing:6.706822px;}
.ws122{word-spacing:6.751699px;}
.ws55{word-spacing:6.766598px;}
.ws193{word-spacing:6.805498px;}
.wsbf{word-spacing:6.826374px;}
.ws25{word-spacing:6.886149px;}
.wsf0{word-spacing:6.966893px;}
.ws34{word-spacing:7.065476px;}
.ws6e{word-spacing:7.125252px;}
.ws20{word-spacing:7.128288px;}
.wsf8{word-spacing:7.185027px;}
.ws11e{word-spacing:7.235885px;}
.wsfc{word-spacing:7.244803px;}
.ws167{word-spacing:7.289683px;}
.ws7d{word-spacing:7.304578px;}
.ws13b{word-spacing:7.364354px;}
.ws144{word-spacing:7.424130px;}
.ws15c{word-spacing:7.451078px;}
.ws77{word-spacing:7.483905px;}
.ws16{word-spacing:7.504877px;}
.ws70{word-spacing:7.543681px;}
.ws19{word-spacing:7.558675px;}
.ws1a2{word-spacing:7.612474px;}
.ws95{word-spacing:7.663232px;}
.ws1ba{word-spacing:7.666272px;}
.ws1d5{word-spacing:7.720070px;}
.ws105{word-spacing:7.723008px;}
.ws19c{word-spacing:7.773869px;}
.ws35{word-spacing:7.782783px;}
.ws1e{word-spacing:7.827667px;}
.wsa{word-spacing:7.838427px;}
.ws12e{word-spacing:7.842559px;}
.ws1cc{word-spacing:7.881466px;}
.ws1d9{word-spacing:7.946024px;}
.wsb9{word-spacing:7.962110px;}
.wsef{word-spacing:7.989062px;}
.ws52{word-spacing:8.021886px;}
.wsee{word-spacing:8.042861px;}
.ws54{word-spacing:8.081661px;}
.ws1a1{word-spacing:8.096659px;}
.ws113{word-spacing:8.150458px;}
.ws62{word-spacing:8.201212px;}
.ws63{word-spacing:8.260988px;}
.ws1a5{word-spacing:8.311853px;}
.ws1dc{word-spacing:8.419450px;}
.ws191{word-spacing:8.430209px;}
.wsb0{word-spacing:8.440315px;}
.ws9a{word-spacing:8.500090px;}
.ws15f{word-spacing:8.527046px;}
.ws6f{word-spacing:8.619642px;}
.ws1ad{word-spacing:8.634643px;}
.ws115{word-spacing:8.679417px;}
.ws1b0{word-spacing:8.699201px;}
.ws73{word-spacing:8.739193px;}
.ws10c{word-spacing:8.796038px;}
.ws4f{word-spacing:8.798968px;}
.wse2{word-spacing:8.918520px;}
.ws1d7{word-spacing:8.957434px;}
.wsfe{word-spacing:8.978295px;}
.ws111{word-spacing:9.011232px;}
.wsfd{word-spacing:9.038071px;}
.ws161{word-spacing:9.065030px;}
.ws78{word-spacing:9.157622px;}
.ws18e{word-spacing:9.172627px;}
.ws11b{word-spacing:9.217398px;}
.ws11a{word-spacing:9.277173px;}
.ws1bf{word-spacing:9.280224px;}
.ws128{word-spacing:9.336949px;}
.ws1b8{word-spacing:9.441619px;}
.ws7c{word-spacing:9.456500px;}
.ws1bd{word-spacing:9.495418px;}
.ws17e{word-spacing:9.506177px;}
.wsc9{word-spacing:9.516276px;}
.ws1d0{word-spacing:9.549216px;}
.wscb{word-spacing:9.576051px;}
.ws162{word-spacing:9.603014px;}
.wscf{word-spacing:9.635827px;}
.ws126{word-spacing:9.656813px;}
.ws51{word-spacing:9.695602px;}
.ws59{word-spacing:9.755378px;}
.ws10a{word-spacing:9.764410px;}
.ws1c{word-spacing:9.818208px;}
.ws112{word-spacing:9.872006px;}
.ws2a{word-spacing:9.934705px;}
.ws1a6{word-spacing:9.979603px;}
.ws1b7{word-spacing:10.033402px;}
.ws87{word-spacing:10.054256px;}
.wsa3{word-spacing:10.114032px;}
.wsf4{word-spacing:10.293358px;}
.wsc8{word-spacing:10.353134px;}
.ws1ac{word-spacing:10.463789px;}
.ws9b{word-spacing:10.472685px;}
.ws140{word-spacing:10.532461px;}
.ws88{word-spacing:10.571386px;}
.wse{word-spacing:10.582145px;}
.wsa4{word-spacing:10.592236px;}
.ws10e{word-spacing:10.625184px;}
.ws1c8{word-spacing:10.689742px;}
.wsc4{word-spacing:10.831339px;}
.ws174{word-spacing:10.840378px;}
.ws42{word-spacing:10.891114px;}
.ws19f{word-spacing:10.947974px;}
.wsdb{word-spacing:10.950890px;}
.wsdd{word-spacing:11.010666px;}
.ws18f{word-spacing:11.055571px;}
.ws56{word-spacing:11.070441px;}
.ws57{word-spacing:11.130217px;}
.wse9{word-spacing:11.189992px;}
.ws1d4{word-spacing:11.216966px;}
.ws3e{word-spacing:11.309544px;}
.ws27{word-spacing:11.369319px;}
.ws1b5{word-spacing:11.378362px;}
.ws68{word-spacing:11.429095px;}
.ws10d{word-spacing:11.432160px;}
.ws1c2{word-spacing:11.485958px;}
.ws120{word-spacing:11.539757px;}
.ws146{word-spacing:11.548646px;}
.wsc1{word-spacing:11.608422px;}
.wsc7{word-spacing:11.668197px;}
.ws1c4{word-spacing:11.701152px;}
.ws142{word-spacing:11.727973px;}
.ws101{word-spacing:11.847524px;}
.ws177{word-spacing:11.862547px;}
.wsb{word-spacing:11.927105px;}
.wse1{word-spacing:12.026851px;}
.ws8{word-spacing:12.034702px;}
.ws19b{word-spacing:12.077741px;}
.ws8e{word-spacing:12.206178px;}
.wscc{word-spacing:12.265953px;}
.ws8c{word-spacing:12.325729px;}
.ws192{word-spacing:12.346733px;}
.ws1a9{word-spacing:12.400531px;}
.ws50{word-spacing:12.445280px;}
.ws108{word-spacing:12.508128px;}
.ws5c{word-spacing:12.564831px;}
.ws9{word-spacing:12.572686px;}
.ws1c1{word-spacing:12.615725px;}
.ws80{word-spacing:12.624607px;}
.ws7b{word-spacing:12.803934px;}
.ws109{word-spacing:12.830918px;}
.wsf5{word-spacing:12.863709px;}
.ws114{word-spacing:12.923485px;}
.ws139{word-spacing:12.983260px;}
.wsc3{word-spacing:13.043036px;}
.ws17f{word-spacing:13.056872px;}
.wsf9{word-spacing:13.102812px;}
.ws1c9{word-spacing:13.153709px;}
.ws40{word-spacing:13.162587px;}
.ws1c5{word-spacing:13.207507px;}
.ws3f{word-spacing:13.222363px;}
.ws1a0{word-spacing:13.261306px;}
.wsd{word-spacing:13.272065px;}
.ws66{word-spacing:13.282138px;}
.ws1b9{word-spacing:13.315104px;}
.ws64{word-spacing:13.341914px;}
.ws156{word-spacing:13.368902px;}
.wsc{word-spacing:13.433460px;}
.ws69{word-spacing:13.521241px;}
.wsb2{word-spacing:13.640792px;}
.ws155{word-spacing:13.799290px;}
.ws118{word-spacing:13.879894px;}
.ws12f{word-spacing:13.999446px;}
.ws37{word-spacing:14.059221px;}
.ws11f{word-spacing:14.175878px;}
.ws16e{word-spacing:14.229677px;}
.ws18d{word-spacing:14.660064px;}
.ws166{word-spacing:14.875258px;}
.ws152{word-spacing:14.896080px;}
.ws9c{word-spacing:15.015631px;}
.ws180{word-spacing:15.036653px;}
.ws1a3{word-spacing:15.251846px;}
.ws13a{word-spacing:15.254733px;}
.ws4e{word-spacing:15.374284px;}
.ws5a{word-spacing:15.434060px;}
.ws1a8{word-spacing:15.520838px;}
.ws13c{word-spacing:15.912265px;}
.ws58{word-spacing:16.450245px;}
.ws60{word-spacing:16.569796px;}
.ws81{word-spacing:17.346879px;}
.ws13d{word-spacing:17.884860px;}
.ws198{word-spacing:17.941766px;}
.ws184{word-spacing:18.264557px;}
.ws188{word-spacing:18.345254px;}
.ws5d{word-spacing:18.422840px;}
.ws14f{word-spacing:18.721718px;}
.ws160{word-spacing:18.748742px;}
.ws159{word-spacing:18.963936px;}
.ws172{word-spacing:19.179130px;}
.ws171{word-spacing:19.232928px;}
.ws14a{word-spacing:20.188464px;}
.wsb7{word-spacing:20.234547px;}
.wsa8{word-spacing:20.324547px;}
.ws96{word-spacing:21.142771px;}
.ws137{word-spacing:21.172518px;}
.ws17d{word-spacing:21.331066px;}
.ws1c3{word-spacing:21.438662px;}
.ws16f{word-spacing:22.353235px;}
.ws183{word-spacing:22.407034px;}
.wsad{word-spacing:22.514547px;}
.ws138{word-spacing:22.666908px;}
.ws12d{word-spacing:22.887648px;}
.wsed{word-spacing:23.052614px;}
.ws116{word-spacing:23.328346px;}
.ws4d{word-spacing:23.384215px;}
.ws15{word-spacing:23.601648px;}
.ws14c{word-spacing:24.186346px;}
.ws150{word-spacing:24.221073px;}
.ws16c{word-spacing:24.397574px;}
.ws12b{word-spacing:25.140346px;}
.wsf1{word-spacing:25.289157px;}
.ws135{word-spacing:25.356810px;}
.ws134{word-spacing:25.416585px;}
.wse8{word-spacing:25.716346px;}
.ws117{word-spacing:26.226346px;}
.ws187{word-spacing:26.313648px;}
.ws0{word-spacing:26.827469px;}
.wsde{word-spacing:26.882547px;}
.ws53{word-spacing:27.582346px;}
.wsf7{word-spacing:27.588346px;}
.ws1d1{word-spacing:27.867648px;}
.wsb1{word-spacing:28.280547px;}
.ws18b{word-spacing:28.335617px;}
.ws148{word-spacing:29.124346px;}
.wsf6{word-spacing:29.604346px;}
.ws1{word-spacing:29.835037px;}
.ws141{word-spacing:30.092547px;}
.wsc5{word-spacing:30.378346px;}
.wsdc{word-spacing:30.536547px;}
.wsc2{word-spacing:31.136547px;}
.ws143{word-spacing:31.310547px;}
.ws4c{word-spacing:32.051677px;}
.ws151{word-spacing:32.350555px;}
.ws169{word-spacing:38.815546px;}
.ws133{word-spacing:72.639309px;}
._31{margin-left:-30.727637px;}
._9{margin-left:-29.287167px;}
._b{margin-left:-28.190362px;}
._32{margin-left:-26.845402px;}
._34{margin-left:-24.482682px;}
._0{margin-left:-6.742733px;}
._28{margin-left:-5.648013px;}
._2{margin-left:-4.588721px;}
._6{margin-left:-3.439275px;}
._1{margin-left:-2.209557px;}
._5{margin-left:-1.113050px;}
._4{width:1.435453px;}
._3{width:2.984188px;}
._22{width:4.303843px;}
._2b{width:7.530424px;}
._10{width:9.253325px;}
._1a{width:10.876181px;}
._33{width:13.545162px;}
._16{width:14.943062px;}
._24{width:16.079636px;}
._13{width:17.976311px;}
._e{width:19.532642px;}
._18{width:20.950547px;}
._f{width:22.368100px;}
._8{width:23.468137px;}
._d{width:24.585869px;}
._c{width:25.877030px;}
._11{width:26.912374px;}
._2f{width:28.016476px;}
._7{width:29.101112px;}
._a{width:30.515727px;}
._25{width:31.893299px;}
._29{width:32.996131px;}
._15{width:34.370970px;}
._14{width:35.946224px;}
._17{width:37.718404px;}
._2a{width:39.307518px;}
._1f{width:41.566647px;}
._26{width:42.918881px;}
._27{width:44.114393px;}
._12{width:45.711626px;}
._23{width:47.127398px;}
._30{width:49.054833px;}
._2c{width:51.104995px;}
._2e{width:52.937626px;}
._1c{width:54.037142px;}
._20{width:55.053328px;}
._19{width:56.281687px;}
._1b{width:62.764380px;}
._1d{width:65.812936px;}
._21{width:68.980204px;}
._1e{width:71.969822px;}
._2d{width:85.103344px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y35{bottom:102.664500px;}
.ye6{bottom:105.652500px;}
.y7e{bottom:105.654000px;}
.y1f5{bottom:106.401000px;}
.y109{bottom:110.782500px;}
.y208{bottom:118.884000px;}
.y1d3{bottom:120.487500px;}
.y34{bottom:120.597000px;}
.y198{bottom:121.344000px;}
.y1f4{bottom:122.092500px;}
.y7d{bottom:123.586500px;}
.yca{bottom:124.333500px;}
.y108{bottom:128.715000px;}
.y207{bottom:134.574000px;}
.y1d2{bottom:136.179000px;}
.y197{bottom:137.035500px;}
.y1f3{bottom:137.782500px;}
.y33{bottom:138.529500px;}
.y7c{bottom:141.519000px;}
.yc9{bottom:142.266000px;}
.y107{bottom:146.647500px;}
.y206{bottom:150.265500px;}
.y1d1{bottom:151.870500px;}
.y196{bottom:152.727000px;}
.y1f2{bottom:153.474000px;}
.y48{bottom:156.462000px;}
.y32{bottom:156.463500px;}
.y7b{bottom:159.451500px;}
.yc8{bottom:160.198500px;}
.y154{bottom:161.458500px;}
.y106{bottom:164.580000px;}
.y205{bottom:165.957000px;}
.y1d0{bottom:167.560500px;}
.y195{bottom:168.418500px;}
.y1f1{bottom:169.165500px;}
.y31{bottom:174.396000px;}
.y7a{bottom:177.384000px;}
.y123{bottom:177.385500px;}
.yc7{bottom:178.131000px;}
.y9a{bottom:178.416000px;}
.y153{bottom:179.391000px;}
.y204{bottom:181.648500px;}
.y105{bottom:182.512500px;}
.y1cf{bottom:183.252000px;}
.y194{bottom:184.110000px;}
.y1f0{bottom:184.857000px;}
.y30{bottom:192.328500px;}
.y79{bottom:195.316500px;}
.yfa{bottom:195.318000px;}
.yc6{bottom:196.065000px;}
.y99{bottom:196.348500px;}
.y152{bottom:197.323500px;}
.y203{bottom:197.340000px;}
.y1ce{bottom:198.943500px;}
.y193{bottom:199.800000px;}
.y104{bottom:200.446500px;}
.y1ef{bottom:200.547000px;}
.y2f{bottom:210.261000px;}
.y202{bottom:213.030000px;}
.ye5{bottom:213.249000px;}
.y78{bottom:213.250500px;}
.yc5{bottom:213.997500px;}
.y98{bottom:214.281000px;}
.y1cd{bottom:214.635000px;}
.y151{bottom:215.256000px;}
.y192{bottom:215.491500px;}
.y1ee{bottom:216.238500px;}
.y103{bottom:218.379000px;}
.y2e{bottom:228.193500px;}
.y201{bottom:228.721500px;}
.y1cc{bottom:230.325000px;}
.y77{bottom:231.183000px;}
.yc4{bottom:231.930000px;}
.y97{bottom:232.213500px;}
.y150{bottom:233.188500px;}
.y102{bottom:236.311500px;}
.y200{bottom:244.413000px;}
.y1cb{bottom:246.016500px;}
.y47{bottom:246.126000px;}
.y2d{bottom:246.127500px;}
.y191{bottom:246.874500px;}
.y1ed{bottom:247.621500px;}
.y76{bottom:249.115500px;}
.yc3{bottom:249.862500px;}
.y96{bottom:250.147500px;}
.y14f{bottom:251.121000px;}
.y101{bottom:254.244000px;}
.y1ff{bottom:260.104500px;}
.y1ca{bottom:261.708000px;}
.y190{bottom:262.564500px;}
.y1ec{bottom:263.313000px;}
.y2c{bottom:264.060000px;}
.y75{bottom:267.048000px;}
.yc2{bottom:267.795000px;}
.y95{bottom:268.080000px;}
.y14e{bottom:269.055000px;}
.y100{bottom:272.176500px;}
.y1fe{bottom:275.794500px;}
.y1c9{bottom:277.399500px;}
.y18f{bottom:278.256000px;}
.y1eb{bottom:279.003000px;}
.y2b{bottom:281.992500px;}
.y74{bottom:284.980500px;}
.yf9{bottom:284.982000px;}
.yc1{bottom:285.729000px;}
.y122{bottom:285.954000px;}
.y94{bottom:286.012500px;}
.y14d{bottom:286.987500px;}
.yff{bottom:290.109000px;}
.y1fd{bottom:291.486000px;}
.y1c8{bottom:293.089500px;}
.y18e{bottom:293.947500px;}
.y1ea{bottom:294.694500px;}
.y167{bottom:295.312500px;}
.y2a{bottom:299.925000px;}
.y73{bottom:302.913000px;}
.yf8{bottom:302.914500px;}
.yc0{bottom:303.661500px;}
.y121{bottom:303.886500px;}
.y14c{bottom:304.920000px;}
.y1fc{bottom:307.177500px;}
.yfe{bottom:308.043000px;}
.y1c7{bottom:308.781000px;}
.y18d{bottom:309.639000px;}
.y1e9{bottom:310.386000px;}
.y166{bottom:313.246500px;}
.y46{bottom:317.857500px;}
.y72{bottom:320.847000px;}
.ybf{bottom:321.594000px;}
.y120{bottom:321.819000px;}
.ye4{bottom:322.341000px;}
.y14b{bottom:322.852500px;}
.y1fb{bottom:322.869000px;}
.y29{bottom:324.280500px;}
.y1c6{bottom:324.472500px;}
.y18c{bottom:325.330500px;}
.yfd{bottom:325.975500px;}
.y1e8{bottom:326.077500px;}
.y93{bottom:326.236500px;}
.y165{bottom:331.179000px;}
.y1fa{bottom:338.560500px;}
.y71{bottom:338.779500px;}
.ybe{bottom:339.526500px;}
.y11f{bottom:339.751500px;}
.y1c5{bottom:340.164000px;}
.ye3{bottom:340.273500px;}
.y14a{bottom:340.785000px;}
.y18b{bottom:341.020500px;}
.y1e7{bottom:341.767500px;}
.y28{bottom:342.213000px;}
.yf7{bottom:343.908000px;}
.y164{bottom:349.111500px;}
.y45{bottom:351.963000px;}
.y1f9{bottom:354.250500px;}
.y1c4{bottom:355.855500px;}
.y18a{bottom:356.712000px;}
.y70{bottom:357.163500px;}
.ybd{bottom:357.459000px;}
.y11e{bottom:357.685500px;}
.ye2{bottom:358.206000px;}
.y149{bottom:358.719000px;}
.y27{bottom:360.145500px;}
.yf6{bottom:361.840500px;}
.y163{bottom:367.044000px;}
.y44{bottom:369.895500px;}
.y1c3{bottom:371.545500px;}
.y189{bottom:372.403500px;}
.y1e6{bottom:373.150500px;}
.y6f{bottom:375.096000px;}
.ybc{bottom:375.391500px;}
.y11d{bottom:375.618000px;}
.ye1{bottom:376.138500px;}
.y148{bottom:376.651500px;}
.y26{bottom:378.078000px;}
.yfc{bottom:379.773000px;}
.yf5{bottom:379.774500px;}
.y92{bottom:381.414000px;}
.y162{bottom:384.976500px;}
.y1c2{bottom:387.237000px;}
.y43{bottom:387.828000px;}
.y188{bottom:388.095000px;}
.y1f8{bottom:388.840500px;}
.y1e5{bottom:388.842000px;}
.y6e{bottom:393.030000px;}
.ybb{bottom:393.325500px;}
.y11c{bottom:393.550500px;}
.ye0{bottom:394.071000px;}
.y147{bottom:394.584000px;}
.y25{bottom:396.012000px;}
.yf4{bottom:397.707000px;}
.y130{bottom:398.959500px;}
.y91{bottom:399.346500px;}
.y161{bottom:402.910500px;}
.y1c1{bottom:402.928500px;}
.y187{bottom:403.785000px;}
.y1f7{bottom:404.532000px;}
.y1e4{bottom:404.533500px;}
.y42{bottom:405.760500px;}
.y6d{bottom:410.962500px;}
.yba{bottom:411.258000px;}
.y11b{bottom:411.483000px;}
.ydf{bottom:412.005000px;}
.y146{bottom:412.516500px;}
.y24{bottom:413.944500px;}
.y12f{bottom:414.651000px;}
.yf3{bottom:415.639500px;}
.y90{bottom:417.279000px;}
.y1c0{bottom:418.620000px;}
.y186{bottom:419.476500px;}
.y1e3{bottom:420.223500px;}
.y160{bottom:420.843000px;}
.y41{bottom:423.693000px;}
.y6c{bottom:428.895000px;}
.yb9{bottom:429.190500px;}
.y11a{bottom:429.415500px;}
.yde{bottom:429.937500px;}
.y12e{bottom:430.342500px;}
.y23{bottom:431.877000px;}
.y145{bottom:432.456000px;}
.yf2{bottom:433.572000px;}
.y1bf{bottom:434.310000px;}
.y185{bottom:435.168000px;}
.y8f{bottom:435.213000px;}
.y1e2{bottom:435.915000px;}
.y15f{bottom:438.775500px;}
.y40{bottom:441.627000px;}
.y12d{bottom:446.034000px;}
.y6b{bottom:446.827500px;}
.y119{bottom:447.348000px;}
.yb8{bottom:447.870000px;}
.y22{bottom:449.809500px;}
.y1be{bottom:450.001500px;}
.y144{bottom:450.388500px;}
.y184{bottom:450.859500px;}
.yf1{bottom:451.504500px;}
.y1e1{bottom:451.606500px;}
.y8e{bottom:453.145500px;}
.y15e{bottom:456.708000px;}
.y3f{bottom:459.559500px;}
.y12c{bottom:461.724000px;}
.y6a{bottom:464.760000px;}
.y118{bottom:465.282000px;}
.y1bd{bottom:465.693000px;}
.yb7{bottom:465.802500px;}
.y183{bottom:466.551000px;}
.y1f6{bottom:467.296500px;}
.y1e0{bottom:467.298000px;}
.y21{bottom:467.742000px;}
.y143{bottom:468.321000px;}
.yf0{bottom:469.437000px;}
.y8d{bottom:471.078000px;}
.y15d{bottom:474.640500px;}
.y12b{bottom:477.415500px;}
.y3e{bottom:477.492000px;}
.y182{bottom:482.241000px;}
.y69{bottom:482.692500px;}
.y1bc{bottom:482.988000px;}
.y117{bottom:483.214500px;}
.ydd{bottom:483.735000px;}
.yb6{bottom:483.736500px;}
.y20{bottom:485.676000px;}
.y142{bottom:486.253500px;}
.yfb{bottom:487.369500px;}
.yef{bottom:487.371000px;}
.y8c{bottom:489.010500px;}
.y15c{bottom:492.573000px;}
.y12a{bottom:493.107000px;}
.y3d{bottom:495.424500px;}
.y181{bottom:497.932500px;}
.y1bb{bottom:498.679500px;}
.y68{bottom:500.626500px;}
.ydc{bottom:501.667500px;}
.yb5{bottom:501.669000px;}
.y1f{bottom:503.608500px;}
.y141{bottom:504.186000px;}
.yee{bottom:505.303500px;}
.y8b{bottom:506.943000px;}
.y129{bottom:508.798500px;}
.y15b{bottom:510.507000px;}
.y3c{bottom:513.357000px;}
.y180{bottom:513.624000px;}
.y1ba{bottom:514.371000px;}
.y67{bottom:518.559000px;}
.yb4{bottom:519.601500px;}
.y1e{bottom:521.541000px;}
.y140{bottom:522.118500px;}
.yed{bottom:523.236000px;}
.y128{bottom:524.490000px;}
.y8a{bottom:524.875500px;}
.y17f{bottom:529.315500px;}
.y1b9{bottom:530.061000px;}
.y1df{bottom:530.062500px;}
.y3b{bottom:531.291000px;}
.y116{bottom:535.594500px;}
.y66{bottom:536.491500px;}
.yb3{bottom:537.534000px;}
.y1d{bottom:539.473500px;}
.y13f{bottom:540.052500px;}
.y127{bottom:540.180000px;}
.yec{bottom:541.168500px;}
.y89{bottom:542.809500px;}
.y17e{bottom:545.005500px;}
.y1b8{bottom:545.752500px;}
.y1de{bottom:545.754000px;}
.y3a{bottom:549.223500px;}
.y115{bottom:551.286000px;}
.y65{bottom:554.424000px;}
.yb2{bottom:555.466500px;}
.y126{bottom:555.871500px;}
.y1c{bottom:557.406000px;}
.y13e{bottom:557.985000px;}
.y15a{bottom:560.031000px;}
.y17d{bottom:560.697000px;}
.y88{bottom:560.742000px;}
.y1b7{bottom:561.444000px;}
.y114{bottom:566.977500px;}
.y39{bottom:567.156000px;}
.y125{bottom:571.563000px;}
.y64{bottom:572.809500px;}
.yb1{bottom:573.399000px;}
.y1b{bottom:575.338500px;}
.y13d{bottom:575.917500px;}
.y17c{bottom:576.388500px;}
.y1b6{bottom:577.135500px;}
.y87{bottom:578.674500px;}
.y113{bottom:584.272500px;}
.y38{bottom:585.088500px;}
.y124{bottom:587.254500px;}
.yeb{bottom:588.990000px;}
.y63{bottom:590.742000px;}
.ydb{bottom:591.331500px;}
.yb0{bottom:591.333000px;}
.y17b{bottom:592.080000px;}
.y1b5{bottom:592.827000px;}
.y1a{bottom:593.272500px;}
.y13c{bottom:593.850000px;}
.y86{bottom:596.607000px;}
.y112{bottom:599.964000px;}
.y37{bottom:603.021000px;}
.yea{bottom:604.680000px;}
.y1b4{bottom:608.517000px;}
.y1dd{bottom:608.518500px;}
.y62{bottom:608.674500px;}
.yda{bottom:609.264000px;}
.yaf{bottom:609.265500px;}
.y13b{bottom:611.782500px;}
.y85{bottom:614.539500px;}
.y111{bottom:615.654000px;}
.ye9{bottom:620.371500px;}
.y36{bottom:620.953500px;}
.y1b3{bottom:624.208500px;}
.y61{bottom:626.607000px;}
.yae{bottom:627.198000px;}
.y13a{bottom:629.715000px;}
.y110{bottom:631.345500px;}
.y84{bottom:632.472000px;}
.ye8{bottom:636.063000px;}
.y19{bottom:638.887500px;}
.y1b2{bottom:639.900000px;}
.y60{bottom:644.539500px;}
.yad{bottom:645.130500px;}
.y10f{bottom:647.037000px;}
.y139{bottom:647.649000px;}
.y83{bottom:650.406000px;}
.ye7{bottom:651.754500px;}
.y1b1{bottom:655.591500px;}
.y5f{bottom:662.472000px;}
.y10e{bottom:662.728500px;}
.yac{bottom:663.063000px;}
.y159{bottom:664.557000px;}
.y138{bottom:665.581500px;}
.y1b0{bottom:671.281500px;}
.y1dc{bottom:671.283000px;}
.y17a{bottom:675.018000px;}
.y10d{bottom:678.418500px;}
.y5e{bottom:680.406000px;}
.yab{bottom:680.995500px;}
.y158{bottom:682.491000px;}
.y137{bottom:683.514000px;}
.y18{bottom:686.334000px;}
.y1af{bottom:686.973000px;}
.y1db{bottom:686.974500px;}
.y179{bottom:692.952000px;}
.y10c{bottom:694.110000px;}
.y5d{bottom:698.338500px;}
.yd9{bottom:698.928000px;}
.yaa{bottom:698.929500px;}
.y157{bottom:700.423500px;}
.y136{bottom:701.446500px;}
.y17{bottom:702.025500px;}
.y1ae{bottom:702.664500px;}
.y82{bottom:702.903000px;}
.y10b{bottom:709.801500px;}
.y178{bottom:710.884500px;}
.y5c{bottom:716.271000px;}
.ya9{bottom:716.862000px;}
.y16{bottom:717.717000px;}
.yd8{bottom:718.356000px;}
.y81{bottom:718.594500px;}
.y135{bottom:719.379000px;}
.y10a{bottom:725.493000px;}
.y177{bottom:728.817000px;}
.y15{bottom:733.407000px;}
.y1ad{bottom:734.047500px;}
.y5b{bottom:734.203500px;}
.y80{bottom:734.286000px;}
.ya8{bottom:734.794500px;}
.yd7{bottom:736.288500px;}
.y134{bottom:737.311500px;}
.y176{bottom:746.749500px;}
.y14{bottom:749.098500px;}
.y1ac{bottom:749.737500px;}
.y1da{bottom:749.739000px;}
.y7f{bottom:749.977500px;}
.y5a{bottom:752.136000px;}
.ya7{bottom:752.727000px;}
.yd6{bottom:754.221000px;}
.y133{bottom:755.245500px;}
.y175{bottom:764.682000px;}
.y13{bottom:764.790000px;}
.y1ab{bottom:765.429000px;}
.y156{bottom:768.037500px;}
.y59{bottom:770.068500px;}
.ya6{bottom:771.406500px;}
.yd5{bottom:772.153500px;}
.y12{bottom:780.481500px;}
.y1aa{bottom:781.120500px;}
.y174{bottom:782.614500px;}
.y58{bottom:788.002500px;}
.ya5{bottom:789.340500px;}
.yd4{bottom:790.086000px;}
.y155{bottom:790.087500px;}
.y11{bottom:796.173000px;}
.y1a9{bottom:796.812000px;}
.y173{bottom:800.548500px;}
.y57{bottom:805.935000px;}
.ya4{bottom:807.273000px;}
.yd3{bottom:808.020000px;}
.y132{bottom:808.572000px;}
.y1a8{bottom:812.502000px;}
.y1d9{bottom:812.503500px;}
.y10{bottom:813.468000px;}
.y172{bottom:818.481000px;}
.y56{bottom:823.867500px;}
.y131{bottom:824.263500px;}
.ya3{bottom:825.205500px;}
.yd2{bottom:825.952500px;}
.y1a7{bottom:828.193500px;}
.y1d8{bottom:828.195000px;}
.yf{bottom:829.158000px;}
.y171{bottom:836.413500px;}
.y55{bottom:841.800000px;}
.ya2{bottom:843.138000px;}
.yd1{bottom:843.885000px;}
.ye{bottom:844.849500px;}
.y170{bottom:854.346000px;}
.y1a6{bottom:859.576500px;}
.yd{bottom:860.541000px;}
.ya1{bottom:861.070500px;}
.yd0{bottom:861.817500px;}
.y16f{bottom:872.278500px;}
.y1a5{bottom:875.268000px;}
.ya0{bottom:879.003000px;}
.ycf{bottom:879.750000px;}
.y54{bottom:881.445000px;}
.yc{bottom:886.693500px;}
.y16e{bottom:890.211000px;}
.y1a4{bottom:890.958000px;}
.y1d7{bottom:890.959500px;}
.y9f{bottom:896.937000px;}
.yce{bottom:897.684000px;}
.yb{bottom:902.383500px;}
.y1a3{bottom:906.649500px;}
.y16d{bottom:908.145000px;}
.y9e{bottom:914.869500px;}
.ycd{bottom:915.616500px;}
.y1a2{bottom:922.341000px;}
.ya{bottom:923.788500px;}
.y9d{bottom:932.802000px;}
.y53{bottom:933.549000px;}
.y9{bottom:933.766500px;}
.y1a1{bottom:938.032500px;}
.y16c{bottom:948.009000px;}
.y9c{bottom:950.734500px;}
.y52{bottom:951.481500px;}
.y1a0{bottom:953.722500px;}
.y1d6{bottom:953.724000px;}
.y8{bottom:955.171500px;}
.y9b{bottom:968.667000px;}
.y51{bottom:969.414000px;}
.y1d5{bottom:969.415500px;}
.y7{bottom:970.861500px;}
.y6{bottom:980.839500px;}
.y19f{bottom:985.105500px;}
.ycc{bottom:987.346500px;}
.y50{bottom:987.348000px;}
.y19e{bottom:1000.797000px;}
.y16b{bottom:1001.281500px;}
.y5{bottom:1002.244500px;}
.y4f{bottom:1005.280500px;}
.y19d{bottom:1016.488500px;}
.y4{bottom:1017.453000px;}
.y16a{bottom:1019.214000px;}
.y4e{bottom:1023.213000px;}
.y19c{bottom:1032.178500px;}
.y1d4{bottom:1032.180000px;}
.y3{bottom:1036.879500px;}
.y169{bottom:1037.146500px;}
.y4d{bottom:1041.145500px;}
.y19b{bottom:1047.870000px;}
.y168{bottom:1055.079000px;}
.y4c{bottom:1059.078000px;}
.y19a{bottom:1063.561500px;}
.y2{bottom:1073.493000px;}
.y4b{bottom:1077.010500px;}
.y199{bottom:1079.253000px;}
.y1{bottom:1094.413500px;}
.ycb{bottom:1094.943000px;}
.y4a{bottom:1094.944500px;}
.y49{bottom:1133.799000px;}
.h4{height:24.209280px;}
.h8{height:37.658880px;}
.h5{height:38.519654px;}
.h6{height:40.348800px;}
.h9{height:44.831700px;}
.hd{height:47.063280px;}
.h7{height:49.753200px;}
.h2{height:50.211840px;}
.h3{height:50.268632px;}
.hc{height:50.274632px;}
.ha{height:53.072100px;}
.hb{height:53.078100px;}
.he{height:61.295700px;}
.h1{height:61.899450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:81.000000px;}
.x1{left:88.791000px;}
.xf{left:95.944500px;}
.x19{left:108.480000px;}
.x4{left:139.456500px;}
.x2{left:141.003000px;}
.x17{left:146.206500px;}
.x3{left:149.793000px;}
.xd{left:163.192500px;}
.x18{left:174.777000px;}
.xc{left:177.015000px;}
.xe{left:199.653000px;}
.xa{left:213.727500px;}
.x7{left:250.728000px;}
.x5{left:253.749000px;}
.x6{left:268.461000px;}
.x9{left:287.076000px;}
.x8{left:291.772500px;}
.xb{left:379.207500px;}
.x12{left:475.521000px;}
.x1a{left:482.431500px;}
.x11{left:490.464000px;}
.x1b{left:503.001000px;}
.x16{left:534.169500px;}
.x14{left:550.506000px;}
.x15{left:773.628000px;}
.x13{left:835.669500px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.v2{vertical-align:-9.562667pt;}
.v7{vertical-align:-7.968000pt;}
.v6{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.634667pt;}
.v3{vertical-align:19.280000pt;}
.v5{vertical-align:20.314667pt;}
.v1{vertical-align:23.141333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000275pt;}
.ls19{letter-spacing:0.000479pt;}
.ls9{letter-spacing:0.001386pt;}
.ls6b{letter-spacing:0.007987pt;}
.ls6e{letter-spacing:0.022138pt;}
.ls6f{letter-spacing:1.222079pt;}
.ls68{letter-spacing:1.883141pt;}
.lsf{letter-spacing:2.652911pt;}
.ls1d{letter-spacing:2.654034pt;}
.ls7a{letter-spacing:2.656428pt;}
.ls5{letter-spacing:2.656473pt;}
.ls1c{letter-spacing:2.657253pt;}
.ls18{letter-spacing:2.658245pt;}
.ls76{letter-spacing:2.661806pt;}
.ls3a{letter-spacing:2.662586pt;}
.ls4a{letter-spacing:3.506835pt;}
.ls80{letter-spacing:3.760761pt;}
.ls67{letter-spacing:5.419654pt;}
.ls1b{letter-spacing:5.472788pt;}
.ls3d{letter-spacing:6.429198pt;}
.ls37{letter-spacing:7.598143pt;}
.ls34{letter-spacing:8.129482pt;}
.ls4d{letter-spacing:8.820222pt;}
.ls6d{letter-spacing:12.008254pt;}
.ls7{letter-spacing:13.533286pt;}
.ls6{letter-spacing:13.581107pt;}
.ls29{letter-spacing:14.080475pt;}
.ls53{letter-spacing:14.133609pt;}
.ls52{letter-spacing:14.186742pt;}
.ls20{letter-spacing:14.679578pt;}
.ls6c{letter-spacing:14.696597pt;}
.ls2f{letter-spacing:14.718081pt;}
.ls2e{letter-spacing:14.771215pt;}
.ls7e{letter-spacing:14.773806pt;}
.ls70{letter-spacing:14.876911pt;}
.ls3b{letter-spacing:15.249420pt;}
.ls38{letter-spacing:15.516911pt;}
.ls62{letter-spacing:15.810245pt;}
.ls39{letter-spacing:15.991578pt;}
.ls23{letter-spacing:16.055578pt;}
.ls5c{letter-spacing:16.064473pt;}
.ls5d{letter-spacing:16.354714pt;}
.ls72{letter-spacing:16.434245pt;}
.ls2b{letter-spacing:17.079578pt;}
.ls5b{letter-spacing:17.152473pt;}
.ls2d{letter-spacing:17.162239pt;}
.ls69{letter-spacing:17.405148pt;}
.ls17{letter-spacing:17.618245pt;}
.ls73{letter-spacing:17.653806pt;}
.lsc{letter-spacing:17.660911pt;}
.lse{letter-spacing:18.167578pt;}
.ls30{letter-spacing:18.224916pt;}
.ls4b{letter-spacing:18.252911pt;}
.ls36{letter-spacing:18.263578pt;}
.ls26{letter-spacing:18.596853pt;}
.ls57{letter-spacing:18.699139pt;}
.ls2a{letter-spacing:18.756255pt;}
.ls58{letter-spacing:18.802245pt;}
.ls5a{letter-spacing:19.032678pt;}
.ls60{letter-spacing:19.040473pt;}
.ls74{letter-spacing:19.184473pt;}
.ls35{letter-spacing:19.393861pt;}
.ls2c{letter-spacing:19.659531pt;}
.ls42{letter-spacing:19.845632pt;}
.ls43{letter-spacing:19.893453pt;}
.ls33{letter-spacing:19.925200pt;}
.lsb{letter-spacing:20.082245pt;}
.ls3c{letter-spacing:20.244003pt;}
.ls16{letter-spacing:20.364911pt;}
.ls27{letter-spacing:20.370245pt;}
.ls45{letter-spacing:20.546245pt;}
.ls28{letter-spacing:20.743578pt;}
.ls32{letter-spacing:20.881610pt;}
.ls4f{letter-spacing:20.967578pt;}
.ls47{letter-spacing:21.442245pt;}
.ls24{letter-spacing:21.572350pt;}
.ls25{letter-spacing:21.682245pt;}
.ls22{letter-spacing:21.717806pt;}
.ls31{letter-spacing:21.838019pt;}
.lsa{letter-spacing:22.183578pt;}
.ls78{letter-spacing:22.363139pt;}
.ls59{letter-spacing:22.386245pt;}
.ls4{letter-spacing:22.626245pt;}
.ls3{letter-spacing:22.631578pt;}
.ls71{letter-spacing:22.962245pt;}
.ls8{letter-spacing:23.013806pt;}
.ls2{letter-spacing:23.031578pt;}
.ls81{letter-spacing:23.136473pt;}
.ls79{letter-spacing:23.232473pt;}
.ls6a{letter-spacing:23.308911pt;}
.ls77{letter-spacing:23.424473pt;}
.ls41{letter-spacing:23.435139pt;}
.ls40{letter-spacing:23.440473pt;}
.ls75{letter-spacing:23.675139pt;}
.ls50{letter-spacing:23.724911pt;}
.ls51{letter-spacing:23.730245pt;}
.ls46{letter-spacing:23.863578pt;}
.ls66{letter-spacing:23.959578pt;}
.ls56{letter-spacing:24.112473pt;}
.ls1f{letter-spacing:24.119578pt;}
.ls4c{letter-spacing:24.279578pt;}
.ls61{letter-spacing:24.359578pt;}
.ls54{letter-spacing:24.546245pt;}
.ls1e{letter-spacing:24.562245pt;}
.ls4e{letter-spacing:24.567578pt;}
.ls14{letter-spacing:24.743578pt;}
.ls7b{letter-spacing:25.045806pt;}
.ls7d{letter-spacing:25.179139pt;}
.ls48{letter-spacing:25.415578pt;}
.ls21{letter-spacing:25.723139pt;}
.ls12{letter-spacing:25.876193pt;}
.ls5f{letter-spacing:25.925443pt;}
.ls5e{letter-spacing:25.930776pt;}
.ls44{letter-spacing:26.354245pt;}
.ls0{letter-spacing:26.567925pt;}
.ls7f{letter-spacing:27.509806pt;}
.ls1a{letter-spacing:27.612911pt;}
.ls55{letter-spacing:27.723139pt;}
.ls49{letter-spacing:27.959578pt;}
.ls7c{letter-spacing:28.107139pt;}
.ls10{letter-spacing:28.479753pt;}
.lsd{letter-spacing:29.148911pt;}
.ls15{letter-spacing:29.239578pt;}
.ls13{letter-spacing:32.162245pt;}
.ls3e{letter-spacing:34.096230pt;}
.ls65{letter-spacing:36.231578pt;}
.ls3f{letter-spacing:36.784473pt;}
.ls64{letter-spacing:39.991578pt;}
.ls63{letter-spacing:81.959578pt;}
.wsac{word-spacing:-27.278927pt;}
.ws86{word-spacing:-16.545886pt;}
.ws6{word-spacing:-14.760588pt;}
.ws1a{word-spacing:-13.652838pt;}
.ws1c7{word-spacing:-12.543396pt;}
.wsc6{word-spacing:-6.631107pt;}
.ws9d{word-spacing:-5.940366pt;}
.wsb8{word-spacing:-5.913574pt;}
.ws71{word-spacing:-5.902988pt;}
.ws7a{word-spacing:-5.887232pt;}
.wsd4{word-spacing:-5.884175pt;}
.ws106{word-spacing:-5.600310pt;}
.ws18{word-spacing:-5.475482pt;}
.wsec{word-spacing:-5.427661pt;}
.ws29{word-spacing:-2.858602pt;}
.ws75{word-spacing:-2.752334pt;}
.ws1a7{word-spacing:-2.654054pt;}
.ws131{word-spacing:-2.646067pt;}
.ws14e{word-spacing:-2.539799pt;}
.ws1cf{word-spacing:-2.367130pt;}
.wsd7{word-spacing:-2.327263pt;}
.ws1c0{word-spacing:-2.319309pt;}
.ws19e{word-spacing:-2.223667pt;}
.wsbd{word-spacing:-2.061594pt;}
.wsce{word-spacing:-2.008460pt;}
.wsd5{word-spacing:-1.902192pt;}
.ws1c6{word-spacing:-1.888922pt;}
.ws163{word-spacing:-1.841101pt;}
.wsba{word-spacing:-1.742791pt;}
.wse4{word-spacing:-1.689657pt;}
.wsff{word-spacing:-1.636523pt;}
.ws130{word-spacing:-1.583389pt;}
.ws196{word-spacing:-1.554176pt;}
.ws14b{word-spacing:-1.530255pt;}
.ws194{word-spacing:-1.506355pt;}
.wsd6{word-spacing:-1.423988pt;}
.ws1b4{word-spacing:-1.410714pt;}
.ws90{word-spacing:-1.370854pt;}
.wsaf{word-spacing:-1.317720pt;}
.ws13e{word-spacing:-1.264586pt;}
.ws103{word-spacing:-1.211452pt;}
.ws145{word-spacing:-1.158318pt;}
.ws1be{word-spacing:-1.028147pt;}
.wseb{word-spacing:-0.998917pt;}
.wsfa{word-spacing:-0.945783pt;}
.ws1db{word-spacing:-0.932506pt;}
.ws44{word-spacing:-0.839515pt;}
.ws189{word-spacing:-0.836864pt;}
.ws1d3{word-spacing:-0.789043pt;}
.ws15d{word-spacing:-0.741222pt;}
.ws129{word-spacing:-0.733247pt;}
.ws9f{word-spacing:-0.680113pt;}
.ws195{word-spacing:-0.645581pt;}
.ws1ae{word-spacing:-0.597760pt;}
.ws33{word-spacing:-0.573846pt;}
.wsb3{word-spacing:-0.520712pt;}
.ws1b2{word-spacing:-0.502118pt;}
.ws2d{word-spacing:-0.467578pt;}
.wsd0{word-spacing:-0.414444pt;}
.ws164{word-spacing:-0.406477pt;}
.wsa2{word-spacing:-0.361310pt;}
.ws197{word-spacing:-0.310835pt;}
.wsa1{word-spacing:-0.308176pt;}
.ws125{word-spacing:-0.263014pt;}
.ws124{word-spacing:-0.215194pt;}
.ws84{word-spacing:-0.201909pt;}
.ws1da{word-spacing:-0.167373pt;}
.ws104{word-spacing:-0.148775pt;}
.ws1b6{word-spacing:-0.119552pt;}
.wsbe{word-spacing:-0.095641pt;}
.ws17{word-spacing:-0.071731pt;}
.ws3{word-spacing:-0.063761pt;}
.wsd9{word-spacing:-0.053134pt;}
.ws22{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.042507pt;}
.ws65{word-spacing:-0.037194pt;}
.ws1b{word-spacing:-0.031881pt;}
.ws5b{word-spacing:0.000000pt;}
.ws24{word-spacing:0.010627pt;}
.ws7f{word-spacing:0.063761pt;}
.ws1bb{word-spacing:0.071731pt;}
.ws119{word-spacing:0.116895pt;}
.ws1bc{word-spacing:0.167373pt;}
.wsfb{word-spacing:0.170028pt;}
.ws3c{word-spacing:0.223162pt;}
.ws4a{word-spacing:0.329430pt;}
.ws173{word-spacing:0.358656pt;}
.wsc0{word-spacing:0.382564pt;}
.ws8d{word-spacing:0.435698pt;}
.wse5{word-spacing:0.488832pt;}
.ws15e{word-spacing:0.502118pt;}
.ws92{word-spacing:0.541965pt;}
.wsb6{word-spacing:0.595099pt;}
.ws121{word-spacing:0.645581pt;}
.ws2f{word-spacing:0.648233pt;}
.ws16b{word-spacing:0.693402pt;}
.wsa7{word-spacing:0.701367pt;}
.ws3b{word-spacing:0.754501pt;}
.wsd3{word-spacing:0.807635pt;}
.ws11d{word-spacing:0.836864pt;}
.wsbc{word-spacing:0.913903pt;}
.ws181{word-spacing:0.932506pt;}
.ws5f{word-spacing:0.967036pt;}
.ws179{word-spacing:0.980326pt;}
.wsea{word-spacing:1.020170pt;}
.ws17a{word-spacing:1.028147pt;}
.ws99{word-spacing:1.073304pt;}
.ws8f{word-spacing:1.126438pt;}
.ws1d2{word-spacing:1.171610pt;}
.wsd1{word-spacing:1.179572pt;}
.ws83{word-spacing:1.232706pt;}
.ws1d6{word-spacing:1.315072pt;}
.ws46{word-spacing:1.338973pt;}
.ws168{word-spacing:1.362893pt;}
.ws48{word-spacing:1.392107pt;}
.ws1d{word-spacing:1.410714pt;}
.ws153{word-spacing:1.445241pt;}
.ws186{word-spacing:1.458534pt;}
.ws39{word-spacing:1.498375pt;}
.ws178{word-spacing:1.554176pt;}
.ws176{word-spacing:1.601997pt;}
.ws149{word-spacing:1.604643pt;}
.ws1af{word-spacing:1.697638pt;}
.ws18a{word-spacing:1.707203pt;}
.ws13f{word-spacing:1.710911pt;}
.ws185{word-spacing:1.745459pt;}
.wsda{word-spacing:1.764044pt;}
.ws16a{word-spacing:1.793280pt;}
.ws94{word-spacing:1.817178pt;}
.ws165{word-spacing:1.841101pt;}
.ws100{word-spacing:1.870312pt;}
.ws199{word-spacing:1.888922pt;}
.ws4b{word-spacing:1.923446pt;}
.ws1cd{word-spacing:1.936742pt;}
.ws3d{word-spacing:1.976580pt;}
.ws1b1{word-spacing:2.041948pt;}
.ws1cb{word-spacing:2.080205pt;}
.ws5e{word-spacing:2.082848pt;}
.ws10b{word-spacing:2.175846pt;}
.ws74{word-spacing:2.189115pt;}
.ws127{word-spacing:2.242249pt;}
.wsd8{word-spacing:2.295383pt;}
.ws30{word-spacing:2.348517pt;}
.ws110{word-spacing:2.367130pt;}
.ws7e{word-spacing:2.401651pt;}
.ws41{word-spacing:2.454785pt;}
.ws79{word-spacing:2.507919pt;}
.ws175{word-spacing:2.510592pt;}
.ws2c{word-spacing:2.561052pt;}
.wsaa{word-spacing:2.614186pt;}
.ws38{word-spacing:2.667320pt;}
.ws21{word-spacing:2.701875pt;}
.wsf2{word-spacing:2.720454pt;}
.wsf{word-spacing:2.749696pt;}
.wse3{word-spacing:2.773588pt;}
.ws1ce{word-spacing:2.845338pt;}
.ws12a{word-spacing:2.879856pt;}
.ws16d{word-spacing:2.893158pt;}
.ws31{word-spacing:2.932989pt;}
.ws45{word-spacing:2.986123pt;}
.ws8b{word-spacing:2.988800pt;}
.ws8a{word-spacing:3.036621pt;}
.ws136{word-spacing:3.039257pt;}
.ws85{word-spacing:3.092391pt;}
.wsbb{word-spacing:3.145525pt;}
.ws26{word-spacing:3.198659pt;}
.ws11{word-spacing:3.227904pt;}
.ws6d{word-spacing:3.251793pt;}
.ws9e{word-spacing:3.304927pt;}
.ws49{word-spacing:3.358060pt;}
.wsb5{word-spacing:3.411194pt;}
.ws13{word-spacing:3.419187pt;}
.wse6{word-spacing:3.464328pt;}
.ws1dd{word-spacing:3.467008pt;}
.ws28{word-spacing:3.517462pt;}
.ws107{word-spacing:3.570596pt;}
.wsf3{word-spacing:3.623730pt;}
.ws3a{word-spacing:3.676864pt;}
.ws67{word-spacing:3.729997pt;}
.ws10f{word-spacing:3.753933pt;}
.ws36{word-spacing:3.783131pt;}
.ws182{word-spacing:3.801754pt;}
.ws6a{word-spacing:3.836265pt;}
.ws170{word-spacing:3.849574pt;}
.ws123{word-spacing:3.897395pt;}
.ws76{word-spacing:3.942533pt;}
.ws15b{word-spacing:3.993037pt;}
.wsa0{word-spacing:3.995667pt;}
.ws12{word-spacing:4.040858pt;}
.ws47{word-spacing:4.048801pt;}
.ws12c{word-spacing:4.088678pt;}
.ws6b{word-spacing:4.101935pt;}
.ws14d{word-spacing:4.155068pt;}
.wscd{word-spacing:4.208202pt;}
.ws98{word-spacing:4.261336pt;}
.ws1b3{word-spacing:4.279962pt;}
.ws97{word-spacing:4.314470pt;}
.ws132{word-spacing:4.367604pt;}
.wsa9{word-spacing:4.420738pt;}
.ws2e{word-spacing:4.473872pt;}
.ws1aa{word-spacing:4.519066pt;}
.ws91{word-spacing:4.527005pt;}
.ws19d{word-spacing:4.566886pt;}
.ws147{word-spacing:4.580139pt;}
.ws10{word-spacing:4.614707pt;}
.wsd2{word-spacing:4.633273pt;}
.ws158{word-spacing:4.662528pt;}
.ws102{word-spacing:4.686407pt;}
.ws14{word-spacing:4.710349pt;}
.ws32{word-spacing:4.792675pt;}
.ws1ca{word-spacing:4.805990pt;}
.wsdf{word-spacing:4.845809pt;}
.ws17b{word-spacing:4.853811pt;}
.wsa5{word-spacing:4.898943pt;}
.ws1d8{word-spacing:4.949453pt;}
.wsa6{word-spacing:4.952076pt;}
.ws18c{word-spacing:4.997274pt;}
.ws82{word-spacing:5.005210pt;}
.ws23{word-spacing:5.058344pt;}
.ws1a4{word-spacing:5.092915pt;}
.wsca{word-spacing:5.164612pt;}
.ws1ab{word-spacing:5.188557pt;}
.ws7{word-spacing:5.217746pt;}
.ws93{word-spacing:5.270880pt;}
.ws157{word-spacing:5.284198pt;}
.ws72{word-spacing:5.324013pt;}
.ws11c{word-spacing:5.332019pt;}
.ws190{word-spacing:5.379840pt;}
.ws89{word-spacing:5.427661pt;}
.ws61{word-spacing:5.430281pt;}
.wse7{word-spacing:5.483415pt;}
.ws2b{word-spacing:5.536549pt;}
.ws154{word-spacing:5.571123pt;}
.ws5{word-spacing:5.589683pt;}
.ws19a{word-spacing:5.618944pt;}
.ws4{word-spacing:5.642817pt;}
.ws17c{word-spacing:5.666765pt;}
.ws43{word-spacing:5.695951pt;}
.wse0{word-spacing:5.749084pt;}
.wsae{word-spacing:5.802218pt;}
.ws1f{word-spacing:5.810227pt;}
.ws6c{word-spacing:5.855352pt;}
.ws15a{word-spacing:5.858048pt;}
.wsab{word-spacing:5.908486pt;}
.wsb4{word-spacing:5.961620pt;}
.ws122{word-spacing:6.001510pt;}
.ws55{word-spacing:6.014754pt;}
.ws193{word-spacing:6.049331pt;}
.wsbf{word-spacing:6.067888pt;}
.ws25{word-spacing:6.121021pt;}
.wsf0{word-spacing:6.192794pt;}
.ws34{word-spacing:6.280423pt;}
.ws6e{word-spacing:6.333557pt;}
.ws20{word-spacing:6.336256pt;}
.wsf8{word-spacing:6.386691pt;}
.ws11e{word-spacing:6.431898pt;}
.wsfc{word-spacing:6.439825pt;}
.ws167{word-spacing:6.479718pt;}
.ws7d{word-spacing:6.492959pt;}
.ws13b{word-spacing:6.546092pt;}
.ws144{word-spacing:6.599226pt;}
.ws15c{word-spacing:6.623181pt;}
.ws77{word-spacing:6.652360pt;}
.ws16{word-spacing:6.671002pt;}
.ws70{word-spacing:6.705494pt;}
.ws19{word-spacing:6.718822pt;}
.ws1a2{word-spacing:6.766643pt;}
.ws95{word-spacing:6.811762pt;}
.ws1ba{word-spacing:6.814464pt;}
.ws1d5{word-spacing:6.862285pt;}
.ws105{word-spacing:6.864896pt;}
.ws19c{word-spacing:6.910106pt;}
.ws35{word-spacing:6.918029pt;}
.ws1e{word-spacing:6.957926pt;}
.wsa{word-spacing:6.967491pt;}
.ws12e{word-spacing:6.971163pt;}
.ws1cc{word-spacing:7.005747pt;}
.ws1d9{word-spacing:7.063132pt;}
.wsb9{word-spacing:7.077431pt;}
.wsef{word-spacing:7.101389pt;}
.ws52{word-spacing:7.130565pt;}
.wsee{word-spacing:7.149210pt;}
.ws54{word-spacing:7.183699pt;}
.ws1a1{word-spacing:7.197030pt;}
.ws113{word-spacing:7.244851pt;}
.ws62{word-spacing:7.289967pt;}
.ws63{word-spacing:7.343100pt;}
.ws1a5{word-spacing:7.388314pt;}
.ws1dc{word-spacing:7.483955pt;}
.ws191{word-spacing:7.493519pt;}
.wsb0{word-spacing:7.502502pt;}
.ws9a{word-spacing:7.555636pt;}
.ws15f{word-spacing:7.579597pt;}
.ws6f{word-spacing:7.661904pt;}
.ws1ad{word-spacing:7.675238pt;}
.ws115{word-spacing:7.715037pt;}
.ws1b0{word-spacing:7.732623pt;}
.ws73{word-spacing:7.768171pt;}
.ws10c{word-spacing:7.818701pt;}
.ws4f{word-spacing:7.821305pt;}
.wse2{word-spacing:7.927573pt;}
.ws1d7{word-spacing:7.962163pt;}
.wsfe{word-spacing:7.980707pt;}
.ws111{word-spacing:8.009984pt;}
.wsfd{word-spacing:8.033841pt;}
.ws161{word-spacing:8.057805pt;}
.ws78{word-spacing:8.140108pt;}
.ws18e{word-spacing:8.153446pt;}
.ws11b{word-spacing:8.193242pt;}
.ws11a{word-spacing:8.246376pt;}
.ws1bf{word-spacing:8.249088pt;}
.ws128{word-spacing:8.299510pt;}
.ws1b8{word-spacing:8.392550pt;}
.ws7c{word-spacing:8.405778pt;}
.ws1bd{word-spacing:8.440371pt;}
.ws17e{word-spacing:8.449935pt;}
.wsc9{word-spacing:8.458912pt;}
.ws1d0{word-spacing:8.488192pt;}
.wscb{word-spacing:8.512045pt;}
.ws162{word-spacing:8.536013pt;}
.wscf{word-spacing:8.565179pt;}
.ws126{word-spacing:8.583834pt;}
.ws51{word-spacing:8.618313pt;}
.ws59{word-spacing:8.671447pt;}
.ws10a{word-spacing:8.679475pt;}
.ws1c{word-spacing:8.727296pt;}
.ws112{word-spacing:8.775117pt;}
.ws2a{word-spacing:8.830849pt;}
.ws1a6{word-spacing:8.870758pt;}
.ws1b7{word-spacing:8.918579pt;}
.ws87{word-spacing:8.937116pt;}
.wsa3{word-spacing:8.990250pt;}
.wsf4{word-spacing:9.149652pt;}
.wsc8{word-spacing:9.202786pt;}
.ws1ac{word-spacing:9.301146pt;}
.ws9b{word-spacing:9.309053pt;}
.ws140{word-spacing:9.362187pt;}
.ws88{word-spacing:9.396787pt;}
.wse{word-spacing:9.406351pt;}
.wsa4{word-spacing:9.415321pt;}
.ws10e{word-spacing:9.444608pt;}
.ws1c8{word-spacing:9.501993pt;}
.wsc4{word-spacing:9.627857pt;}
.ws174{word-spacing:9.635891pt;}
.ws42{word-spacing:9.680991pt;}
.ws19f{word-spacing:9.731533pt;}
.wsdb{word-spacing:9.734124pt;}
.wsdd{word-spacing:9.787258pt;}
.ws18f{word-spacing:9.827174pt;}
.ws56{word-spacing:9.840392pt;}
.ws57{word-spacing:9.893526pt;}
.wse9{word-spacing:9.946660pt;}
.ws1d4{word-spacing:9.970637pt;}
.ws3e{word-spacing:10.052928pt;}
.ws27{word-spacing:10.106061pt;}
.ws1b5{word-spacing:10.114099pt;}
.ws68{word-spacing:10.159195pt;}
.ws10d{word-spacing:10.161920pt;}
.ws1c2{word-spacing:10.209741pt;}
.ws120{word-spacing:10.257562pt;}
.ws146{word-spacing:10.265463pt;}
.wsc1{word-spacing:10.318597pt;}
.wsc7{word-spacing:10.371731pt;}
.ws1c4{word-spacing:10.401024pt;}
.ws142{word-spacing:10.424865pt;}
.ws101{word-spacing:10.531132pt;}
.ws177{word-spacing:10.544486pt;}
.wsb{word-spacing:10.601871pt;}
.wse1{word-spacing:10.690534pt;}
.ws8{word-spacing:10.697513pt;}
.ws19b{word-spacing:10.735770pt;}
.ws8e{word-spacing:10.849936pt;}
.wscc{word-spacing:10.903069pt;}
.ws8c{word-spacing:10.956203pt;}
.ws192{word-spacing:10.974874pt;}
.ws1a9{word-spacing:11.022694pt;}
.ws50{word-spacing:11.062471pt;}
.ws108{word-spacing:11.118336pt;}
.ws5c{word-spacing:11.168739pt;}
.ws9{word-spacing:11.175721pt;}
.ws1c1{word-spacing:11.213978pt;}
.ws80{word-spacing:11.221873pt;}
.ws7b{word-spacing:11.381274pt;}
.ws109{word-spacing:11.405261pt;}
.wsf5{word-spacing:11.434408pt;}
.ws114{word-spacing:11.487542pt;}
.ws139{word-spacing:11.540676pt;}
.wsc3{word-spacing:11.593810pt;}
.ws17f{word-spacing:11.606108pt;}
.wsf9{word-spacing:11.646944pt;}
.ws1c9{word-spacing:11.692186pt;}
.ws40{word-spacing:11.700077pt;}
.ws1c5{word-spacing:11.740006pt;}
.ws3f{word-spacing:11.753211pt;}
.ws1a0{word-spacing:11.787827pt;}
.wsd{word-spacing:11.797391pt;}
.ws66{word-spacing:11.806345pt;}
.ws1b9{word-spacing:11.835648pt;}
.ws64{word-spacing:11.859479pt;}
.ws156{word-spacing:11.883469pt;}
.wsc{word-spacing:11.940854pt;}
.ws69{word-spacing:12.018881pt;}
.wsb2{word-spacing:12.125148pt;}
.ws155{word-spacing:12.266035pt;}
.ws118{word-spacing:12.337684pt;}
.ws12f{word-spacing:12.443952pt;}
.ws37{word-spacing:12.497085pt;}
.ws11f{word-spacing:12.600781pt;}
.ws16e{word-spacing:12.648602pt;}
.ws18d{word-spacing:13.031168pt;}
.ws166{word-spacing:13.222451pt;}
.ws152{word-spacing:13.240960pt;}
.ws9c{word-spacing:13.347227pt;}
.ws180{word-spacing:13.365914pt;}
.ws1a3{word-spacing:13.557197pt;}
.ws13a{word-spacing:13.559763pt;}
.ws4e{word-spacing:13.666031pt;}
.ws5a{word-spacing:13.719164pt;}
.ws1a8{word-spacing:13.796301pt;}
.ws13c{word-spacing:14.144235pt;}
.ws58{word-spacing:14.622440pt;}
.ws60{word-spacing:14.728708pt;}
.ws81{word-spacing:15.419448pt;}
.ws13d{word-spacing:15.897653pt;}
.ws198{word-spacing:15.948237pt;}
.ws184{word-spacing:16.235162pt;}
.ws188{word-spacing:16.306893pt;}
.ws5d{word-spacing:16.375858pt;}
.ws14f{word-spacing:16.641527pt;}
.ws160{word-spacing:16.665549pt;}
.ws159{word-spacing:16.856832pt;}
.ws172{word-spacing:17.048115pt;}
.ws171{word-spacing:17.095936pt;}
.ws14a{word-spacing:17.945301pt;}
.wsb7{word-spacing:17.986264pt;}
.wsa8{word-spacing:18.066264pt;}
.ws96{word-spacing:18.793574pt;}
.ws137{word-spacing:18.820016pt;}
.ws17d{word-spacing:18.960947pt;}
.ws1c3{word-spacing:19.056589pt;}
.ws16f{word-spacing:19.869542pt;}
.ws183{word-spacing:19.917363pt;}
.wsad{word-spacing:20.012931pt;}
.ws138{word-spacing:20.148362pt;}
.ws12d{word-spacing:20.344576pt;}
.wsed{word-spacing:20.491213pt;}
.ws116{word-spacing:20.736308pt;}
.ws4d{word-spacing:20.785969pt;}
.ws15{word-spacing:20.979243pt;}
.ws14c{word-spacing:21.498974pt;}
.ws150{word-spacing:21.529843pt;}
.ws16c{word-spacing:21.686733pt;}
.ws12b{word-spacing:22.346974pt;}
.wsf1{word-spacing:22.479251pt;}
.ws135{word-spacing:22.539386pt;}
.ws134{word-spacing:22.592520pt;}
.wse8{word-spacing:22.858974pt;}
.ws117{word-spacing:23.312308pt;}
.ws187{word-spacing:23.389909pt;}
.ws0{word-spacing:23.846639pt;}
.wsde{word-spacing:23.895597pt;}
.ws53{word-spacing:24.517641pt;}
.wsf7{word-spacing:24.522974pt;}
.ws1d1{word-spacing:24.771243pt;}
.wsb1{word-spacing:25.138264pt;}
.ws18b{word-spacing:25.187215pt;}
.ws148{word-spacing:25.888308pt;}
.wsf6{word-spacing:26.314974pt;}
.ws1{word-spacing:26.520033pt;}
.ws141{word-spacing:26.748931pt;}
.wsc5{word-spacing:27.002974pt;}
.wsdc{word-spacing:27.143597pt;}
.wsc2{word-spacing:27.676931pt;}
.ws143{word-spacing:27.831597pt;}
.ws4c{word-spacing:28.490379pt;}
.ws151{word-spacing:28.756049pt;}
.ws169{word-spacing:34.502707pt;}
.ws133{word-spacing:64.568275pt;}
._31{margin-left:-27.313455pt;}
._9{margin-left:-26.033037pt;}
._b{margin-left:-25.058099pt;}
._32{margin-left:-23.862579pt;}
._34{margin-left:-21.762384pt;}
._0{margin-left:-5.993540pt;}
._28{margin-left:-5.020456pt;}
._2{margin-left:-4.078863pt;}
._6{margin-left:-3.057133pt;}
._1{margin-left:-1.964051pt;}
._5{margin-left:-0.989377pt;}
._4{width:1.275958pt;}
._3{width:2.652611pt;}
._22{width:3.825638pt;}
._2b{width:6.693710pt;}
._10{width:8.225178pt;}
._1a{width:9.667716pt;}
._33{width:12.040144pt;}
._16{width:13.282722pt;}
._24{width:14.293010pt;}
._13{width:15.978943pt;}
._e{width:17.362348pt;}
._18{width:18.622709pt;}
._f{width:19.882755pt;}
._8{width:20.860566pt;}
._d{width:21.854106pt;}
._c{width:23.001805pt;}
._11{width:23.922110pt;}
._2f{width:24.903535pt;}
._7{width:25.867655pt;}
._a{width:27.125091pt;}
._25{width:28.349599pt;}
._29{width:29.329894pt;}
._15{width:30.551973pt;}
._14{width:31.952199pt;}
._17{width:33.527470pt;}
._2a{width:34.940016pt;}
._1f{width:36.948131pt;}
._26{width:38.150116pt;}
._27{width:39.212794pt;}
._12{width:40.632556pt;}
._23{width:41.891021pt;}
._30{width:43.604296pt;}
._2c{width:45.426663pt;}
._2e{width:47.055667pt;}
._1c{width:48.033015pt;}
._20{width:48.936291pt;}
._19{width:50.028166pt;}
._1b{width:55.790560pt;}
._1d{width:58.500387pt;}
._21{width:61.315737pt;}
._1e{width:63.973175pt;}
._2d{width:75.647417pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:91.257333pt;}
.ye6{bottom:93.913333pt;}
.y7e{bottom:93.914667pt;}
.y1f5{bottom:94.578667pt;}
.y109{bottom:98.473333pt;}
.y208{bottom:105.674667pt;}
.y1d3{bottom:107.100000pt;}
.y34{bottom:107.197333pt;}
.y198{bottom:107.861333pt;}
.y1f4{bottom:108.526667pt;}
.y7d{bottom:109.854667pt;}
.yca{bottom:110.518667pt;}
.y108{bottom:114.413333pt;}
.y207{bottom:119.621333pt;}
.y1d2{bottom:121.048000pt;}
.y197{bottom:121.809333pt;}
.y1f3{bottom:122.473333pt;}
.y33{bottom:123.137333pt;}
.y7c{bottom:125.794667pt;}
.yc9{bottom:126.458667pt;}
.y107{bottom:130.353333pt;}
.y206{bottom:133.569333pt;}
.y1d1{bottom:134.996000pt;}
.y196{bottom:135.757333pt;}
.y1f2{bottom:136.421333pt;}
.y48{bottom:139.077333pt;}
.y32{bottom:139.078667pt;}
.y7b{bottom:141.734667pt;}
.yc8{bottom:142.398667pt;}
.y154{bottom:143.518667pt;}
.y106{bottom:146.293333pt;}
.y205{bottom:147.517333pt;}
.y1d0{bottom:148.942667pt;}
.y195{bottom:149.705333pt;}
.y1f1{bottom:150.369333pt;}
.y31{bottom:155.018667pt;}
.y7a{bottom:157.674667pt;}
.y123{bottom:157.676000pt;}
.yc7{bottom:158.338667pt;}
.y9a{bottom:158.592000pt;}
.y153{bottom:159.458667pt;}
.y204{bottom:161.465333pt;}
.y105{bottom:162.233333pt;}
.y1cf{bottom:162.890667pt;}
.y194{bottom:163.653333pt;}
.y1f0{bottom:164.317333pt;}
.y30{bottom:170.958667pt;}
.y79{bottom:173.614667pt;}
.yfa{bottom:173.616000pt;}
.yc6{bottom:174.280000pt;}
.y99{bottom:174.532000pt;}
.y152{bottom:175.398667pt;}
.y203{bottom:175.413333pt;}
.y1ce{bottom:176.838667pt;}
.y193{bottom:177.600000pt;}
.y104{bottom:178.174667pt;}
.y1ef{bottom:178.264000pt;}
.y2f{bottom:186.898667pt;}
.y202{bottom:189.360000pt;}
.ye5{bottom:189.554667pt;}
.y78{bottom:189.556000pt;}
.yc5{bottom:190.220000pt;}
.y98{bottom:190.472000pt;}
.y1cd{bottom:190.786667pt;}
.y151{bottom:191.338667pt;}
.y192{bottom:191.548000pt;}
.y1ee{bottom:192.212000pt;}
.y103{bottom:194.114667pt;}
.y2e{bottom:202.838667pt;}
.y201{bottom:203.308000pt;}
.y1cc{bottom:204.733333pt;}
.y77{bottom:205.496000pt;}
.yc4{bottom:206.160000pt;}
.y97{bottom:206.412000pt;}
.y150{bottom:207.278667pt;}
.y102{bottom:210.054667pt;}
.y200{bottom:217.256000pt;}
.y1cb{bottom:218.681333pt;}
.y47{bottom:218.778667pt;}
.y2d{bottom:218.780000pt;}
.y191{bottom:219.444000pt;}
.y1ed{bottom:220.108000pt;}
.y76{bottom:221.436000pt;}
.yc3{bottom:222.100000pt;}
.y96{bottom:222.353333pt;}
.y14f{bottom:223.218667pt;}
.y101{bottom:225.994667pt;}
.y1ff{bottom:231.204000pt;}
.y1ca{bottom:232.629333pt;}
.y190{bottom:233.390667pt;}
.y1ec{bottom:234.056000pt;}
.y2c{bottom:234.720000pt;}
.y75{bottom:237.376000pt;}
.yc2{bottom:238.040000pt;}
.y95{bottom:238.293333pt;}
.y14e{bottom:239.160000pt;}
.y100{bottom:241.934667pt;}
.y1fe{bottom:245.150667pt;}
.y1c9{bottom:246.577333pt;}
.y18f{bottom:247.338667pt;}
.y1eb{bottom:248.002667pt;}
.y2b{bottom:250.660000pt;}
.y74{bottom:253.316000pt;}
.yf9{bottom:253.317333pt;}
.yc1{bottom:253.981333pt;}
.y122{bottom:254.181333pt;}
.y94{bottom:254.233333pt;}
.y14d{bottom:255.100000pt;}
.yff{bottom:257.874667pt;}
.y1fd{bottom:259.098667pt;}
.y1c8{bottom:260.524000pt;}
.y18e{bottom:261.286667pt;}
.y1ea{bottom:261.950667pt;}
.y167{bottom:262.500000pt;}
.y2a{bottom:266.600000pt;}
.y73{bottom:269.256000pt;}
.yf8{bottom:269.257333pt;}
.yc0{bottom:269.921333pt;}
.y121{bottom:270.121333pt;}
.y14c{bottom:271.040000pt;}
.y1fc{bottom:273.046667pt;}
.yfe{bottom:273.816000pt;}
.y1c7{bottom:274.472000pt;}
.y18d{bottom:275.234667pt;}
.y1e9{bottom:275.898667pt;}
.y166{bottom:278.441333pt;}
.y46{bottom:282.540000pt;}
.y72{bottom:285.197333pt;}
.ybf{bottom:285.861333pt;}
.y120{bottom:286.061333pt;}
.ye4{bottom:286.525333pt;}
.y14b{bottom:286.980000pt;}
.y1fb{bottom:286.994667pt;}
.y29{bottom:288.249333pt;}
.y1c6{bottom:288.420000pt;}
.y18c{bottom:289.182667pt;}
.yfd{bottom:289.756000pt;}
.y1e8{bottom:289.846667pt;}
.y93{bottom:289.988000pt;}
.y165{bottom:294.381333pt;}
.y1fa{bottom:300.942667pt;}
.y71{bottom:301.137333pt;}
.ybe{bottom:301.801333pt;}
.y11f{bottom:302.001333pt;}
.y1c5{bottom:302.368000pt;}
.ye3{bottom:302.465333pt;}
.y14a{bottom:302.920000pt;}
.y18b{bottom:303.129333pt;}
.y1e7{bottom:303.793333pt;}
.y28{bottom:304.189333pt;}
.yf7{bottom:305.696000pt;}
.y164{bottom:310.321333pt;}
.y45{bottom:312.856000pt;}
.y1f9{bottom:314.889333pt;}
.y1c4{bottom:316.316000pt;}
.y18a{bottom:317.077333pt;}
.y70{bottom:317.478667pt;}
.ybd{bottom:317.741333pt;}
.y11e{bottom:317.942667pt;}
.ye2{bottom:318.405333pt;}
.y149{bottom:318.861333pt;}
.y27{bottom:320.129333pt;}
.yf6{bottom:321.636000pt;}
.y163{bottom:326.261333pt;}
.y44{bottom:328.796000pt;}
.y1c3{bottom:330.262667pt;}
.y189{bottom:331.025333pt;}
.y1e6{bottom:331.689333pt;}
.y6f{bottom:333.418667pt;}
.ybc{bottom:333.681333pt;}
.y11d{bottom:333.882667pt;}
.ye1{bottom:334.345333pt;}
.y148{bottom:334.801333pt;}
.y26{bottom:336.069333pt;}
.yfc{bottom:337.576000pt;}
.yf5{bottom:337.577333pt;}
.y92{bottom:339.034667pt;}
.y162{bottom:342.201333pt;}
.y1c2{bottom:344.210667pt;}
.y43{bottom:344.736000pt;}
.y188{bottom:344.973333pt;}
.y1f8{bottom:345.636000pt;}
.y1e5{bottom:345.637333pt;}
.y6e{bottom:349.360000pt;}
.ybb{bottom:349.622667pt;}
.y11c{bottom:349.822667pt;}
.ye0{bottom:350.285333pt;}
.y147{bottom:350.741333pt;}
.y25{bottom:352.010667pt;}
.yf4{bottom:353.517333pt;}
.y130{bottom:354.630667pt;}
.y91{bottom:354.974667pt;}
.y161{bottom:358.142667pt;}
.y1c1{bottom:358.158667pt;}
.y187{bottom:358.920000pt;}
.y1f7{bottom:359.584000pt;}
.y1e4{bottom:359.585333pt;}
.y42{bottom:360.676000pt;}
.y6d{bottom:365.300000pt;}
.yba{bottom:365.562667pt;}
.y11b{bottom:365.762667pt;}
.ydf{bottom:366.226667pt;}
.y146{bottom:366.681333pt;}
.y24{bottom:367.950667pt;}
.y12f{bottom:368.578667pt;}
.yf3{bottom:369.457333pt;}
.y90{bottom:370.914667pt;}
.y1c0{bottom:372.106667pt;}
.y186{bottom:372.868000pt;}
.y1e3{bottom:373.532000pt;}
.y160{bottom:374.082667pt;}
.y41{bottom:376.616000pt;}
.y6c{bottom:381.240000pt;}
.yb9{bottom:381.502667pt;}
.y11a{bottom:381.702667pt;}
.yde{bottom:382.166667pt;}
.y12e{bottom:382.526667pt;}
.y23{bottom:383.890667pt;}
.y145{bottom:384.405333pt;}
.yf2{bottom:385.397333pt;}
.y1bf{bottom:386.053333pt;}
.y185{bottom:386.816000pt;}
.y8f{bottom:386.856000pt;}
.y1e2{bottom:387.480000pt;}
.y15f{bottom:390.022667pt;}
.y40{bottom:392.557333pt;}
.y12d{bottom:396.474667pt;}
.y6b{bottom:397.180000pt;}
.y119{bottom:397.642667pt;}
.yb8{bottom:398.106667pt;}
.y22{bottom:399.830667pt;}
.y1be{bottom:400.001333pt;}
.y144{bottom:400.345333pt;}
.y184{bottom:400.764000pt;}
.yf1{bottom:401.337333pt;}
.y1e1{bottom:401.428000pt;}
.y8e{bottom:402.796000pt;}
.y15e{bottom:405.962667pt;}
.y3f{bottom:408.497333pt;}
.y12c{bottom:410.421333pt;}
.y6a{bottom:413.120000pt;}
.y118{bottom:413.584000pt;}
.y1bd{bottom:413.949333pt;}
.yb7{bottom:414.046667pt;}
.y183{bottom:414.712000pt;}
.y1f6{bottom:415.374667pt;}
.y1e0{bottom:415.376000pt;}
.y21{bottom:415.770667pt;}
.y143{bottom:416.285333pt;}
.yf0{bottom:417.277333pt;}
.y8d{bottom:418.736000pt;}
.y15d{bottom:421.902667pt;}
.y12b{bottom:424.369333pt;}
.y3e{bottom:424.437333pt;}
.y182{bottom:428.658667pt;}
.y69{bottom:429.060000pt;}
.y1bc{bottom:429.322667pt;}
.y117{bottom:429.524000pt;}
.ydd{bottom:429.986667pt;}
.yb6{bottom:429.988000pt;}
.y20{bottom:431.712000pt;}
.y142{bottom:432.225333pt;}
.yfb{bottom:433.217333pt;}
.yef{bottom:433.218667pt;}
.y8c{bottom:434.676000pt;}
.y15c{bottom:437.842667pt;}
.y12a{bottom:438.317333pt;}
.y3d{bottom:440.377333pt;}
.y181{bottom:442.606667pt;}
.y1bb{bottom:443.270667pt;}
.y68{bottom:445.001333pt;}
.ydc{bottom:445.926667pt;}
.yb5{bottom:445.928000pt;}
.y1f{bottom:447.652000pt;}
.y141{bottom:448.165333pt;}
.yee{bottom:449.158667pt;}
.y8b{bottom:450.616000pt;}
.y129{bottom:452.265333pt;}
.y15b{bottom:453.784000pt;}
.y3c{bottom:456.317333pt;}
.y180{bottom:456.554667pt;}
.y1ba{bottom:457.218667pt;}
.y67{bottom:460.941333pt;}
.yb4{bottom:461.868000pt;}
.y1e{bottom:463.592000pt;}
.y140{bottom:464.105333pt;}
.yed{bottom:465.098667pt;}
.y128{bottom:466.213333pt;}
.y8a{bottom:466.556000pt;}
.y17f{bottom:470.502667pt;}
.y1b9{bottom:471.165333pt;}
.y1df{bottom:471.166667pt;}
.y3b{bottom:472.258667pt;}
.y116{bottom:476.084000pt;}
.y66{bottom:476.881333pt;}
.yb3{bottom:477.808000pt;}
.y1d{bottom:479.532000pt;}
.y13f{bottom:480.046667pt;}
.y127{bottom:480.160000pt;}
.yec{bottom:481.038667pt;}
.y89{bottom:482.497333pt;}
.y17e{bottom:484.449333pt;}
.y1b8{bottom:485.113333pt;}
.y1de{bottom:485.114667pt;}
.y3a{bottom:488.198667pt;}
.y115{bottom:490.032000pt;}
.y65{bottom:492.821333pt;}
.yb2{bottom:493.748000pt;}
.y126{bottom:494.108000pt;}
.y1c{bottom:495.472000pt;}
.y13e{bottom:495.986667pt;}
.y15a{bottom:497.805333pt;}
.y17d{bottom:498.397333pt;}
.y88{bottom:498.437333pt;}
.y1b7{bottom:499.061333pt;}
.y114{bottom:503.980000pt;}
.y39{bottom:504.138667pt;}
.y125{bottom:508.056000pt;}
.y64{bottom:509.164000pt;}
.yb1{bottom:509.688000pt;}
.y1b{bottom:511.412000pt;}
.y13d{bottom:511.926667pt;}
.y17c{bottom:512.345333pt;}
.y1b6{bottom:513.009333pt;}
.y87{bottom:514.377333pt;}
.y113{bottom:519.353333pt;}
.y38{bottom:520.078667pt;}
.y124{bottom:522.004000pt;}
.yeb{bottom:523.546667pt;}
.y63{bottom:525.104000pt;}
.ydb{bottom:525.628000pt;}
.yb0{bottom:525.629333pt;}
.y17b{bottom:526.293333pt;}
.y1b5{bottom:526.957333pt;}
.y1a{bottom:527.353333pt;}
.y13c{bottom:527.866667pt;}
.y86{bottom:530.317333pt;}
.y112{bottom:533.301333pt;}
.y37{bottom:536.018667pt;}
.yea{bottom:537.493333pt;}
.y1b4{bottom:540.904000pt;}
.y1dd{bottom:540.905333pt;}
.y62{bottom:541.044000pt;}
.yda{bottom:541.568000pt;}
.yaf{bottom:541.569333pt;}
.y13b{bottom:543.806667pt;}
.y85{bottom:546.257333pt;}
.y111{bottom:547.248000pt;}
.ye9{bottom:551.441333pt;}
.y36{bottom:551.958667pt;}
.y1b3{bottom:554.852000pt;}
.y61{bottom:556.984000pt;}
.yae{bottom:557.509333pt;}
.y13a{bottom:559.746667pt;}
.y110{bottom:561.196000pt;}
.y84{bottom:562.197333pt;}
.ye8{bottom:565.389333pt;}
.y19{bottom:567.900000pt;}
.y1b2{bottom:568.800000pt;}
.y60{bottom:572.924000pt;}
.yad{bottom:573.449333pt;}
.y10f{bottom:575.144000pt;}
.y139{bottom:575.688000pt;}
.y83{bottom:578.138667pt;}
.ye7{bottom:579.337333pt;}
.y1b1{bottom:582.748000pt;}
.y5f{bottom:588.864000pt;}
.y10e{bottom:589.092000pt;}
.yac{bottom:589.389333pt;}
.y159{bottom:590.717333pt;}
.y138{bottom:591.628000pt;}
.y1b0{bottom:596.694667pt;}
.y1dc{bottom:596.696000pt;}
.y17a{bottom:600.016000pt;}
.y10d{bottom:603.038667pt;}
.y5e{bottom:604.805333pt;}
.yab{bottom:605.329333pt;}
.y158{bottom:606.658667pt;}
.y137{bottom:607.568000pt;}
.y18{bottom:610.074667pt;}
.y1af{bottom:610.642667pt;}
.y1db{bottom:610.644000pt;}
.y179{bottom:615.957333pt;}
.y10c{bottom:616.986667pt;}
.y5d{bottom:620.745333pt;}
.yd9{bottom:621.269333pt;}
.yaa{bottom:621.270667pt;}
.y157{bottom:622.598667pt;}
.y136{bottom:623.508000pt;}
.y17{bottom:624.022667pt;}
.y1ae{bottom:624.590667pt;}
.y82{bottom:624.802667pt;}
.y10b{bottom:630.934667pt;}
.y178{bottom:631.897333pt;}
.y5c{bottom:636.685333pt;}
.ya9{bottom:637.210667pt;}
.y16{bottom:637.970667pt;}
.yd8{bottom:638.538667pt;}
.y81{bottom:638.750667pt;}
.y135{bottom:639.448000pt;}
.y10a{bottom:644.882667pt;}
.y177{bottom:647.837333pt;}
.y15{bottom:651.917333pt;}
.y1ad{bottom:652.486667pt;}
.y5b{bottom:652.625333pt;}
.y80{bottom:652.698667pt;}
.ya8{bottom:653.150667pt;}
.yd7{bottom:654.478667pt;}
.y134{bottom:655.388000pt;}
.y176{bottom:663.777333pt;}
.y14{bottom:665.865333pt;}
.y1ac{bottom:666.433333pt;}
.y1da{bottom:666.434667pt;}
.y7f{bottom:666.646667pt;}
.y5a{bottom:668.565333pt;}
.ya7{bottom:669.090667pt;}
.yd6{bottom:670.418667pt;}
.y133{bottom:671.329333pt;}
.y175{bottom:679.717333pt;}
.y13{bottom:679.813333pt;}
.y1ab{bottom:680.381333pt;}
.y156{bottom:682.700000pt;}
.y59{bottom:684.505333pt;}
.ya6{bottom:685.694667pt;}
.yd5{bottom:686.358667pt;}
.y12{bottom:693.761333pt;}
.y1aa{bottom:694.329333pt;}
.y174{bottom:695.657333pt;}
.y58{bottom:700.446667pt;}
.ya5{bottom:701.636000pt;}
.yd4{bottom:702.298667pt;}
.y155{bottom:702.300000pt;}
.y11{bottom:707.709333pt;}
.y1a9{bottom:708.277333pt;}
.y173{bottom:711.598667pt;}
.y57{bottom:716.386667pt;}
.ya4{bottom:717.576000pt;}
.yd3{bottom:718.240000pt;}
.y132{bottom:718.730667pt;}
.y1a8{bottom:722.224000pt;}
.y1d9{bottom:722.225333pt;}
.y10{bottom:723.082667pt;}
.y172{bottom:727.538667pt;}
.y56{bottom:732.326667pt;}
.y131{bottom:732.678667pt;}
.ya3{bottom:733.516000pt;}
.yd2{bottom:734.180000pt;}
.y1a7{bottom:736.172000pt;}
.y1d8{bottom:736.173333pt;}
.yf{bottom:737.029333pt;}
.y171{bottom:743.478667pt;}
.y55{bottom:748.266667pt;}
.ya2{bottom:749.456000pt;}
.yd1{bottom:750.120000pt;}
.ye{bottom:750.977333pt;}
.y170{bottom:759.418667pt;}
.y1a6{bottom:764.068000pt;}
.yd{bottom:764.925333pt;}
.ya1{bottom:765.396000pt;}
.yd0{bottom:766.060000pt;}
.y16f{bottom:775.358667pt;}
.y1a5{bottom:778.016000pt;}
.ya0{bottom:781.336000pt;}
.ycf{bottom:782.000000pt;}
.y54{bottom:783.506667pt;}
.yc{bottom:788.172000pt;}
.y16e{bottom:791.298667pt;}
.y1a4{bottom:791.962667pt;}
.y1d7{bottom:791.964000pt;}
.y9f{bottom:797.277333pt;}
.yce{bottom:797.941333pt;}
.yb{bottom:802.118667pt;}
.y1a3{bottom:805.910667pt;}
.y16d{bottom:807.240000pt;}
.y9e{bottom:813.217333pt;}
.ycd{bottom:813.881333pt;}
.y1a2{bottom:819.858667pt;}
.ya{bottom:821.145333pt;}
.y9d{bottom:829.157333pt;}
.y53{bottom:829.821333pt;}
.y9{bottom:830.014667pt;}
.y1a1{bottom:833.806667pt;}
.y16c{bottom:842.674667pt;}
.y9c{bottom:845.097333pt;}
.y52{bottom:845.761333pt;}
.y1a0{bottom:847.753333pt;}
.y1d6{bottom:847.754667pt;}
.y8{bottom:849.041333pt;}
.y9b{bottom:861.037333pt;}
.y51{bottom:861.701333pt;}
.y1d5{bottom:861.702667pt;}
.y7{bottom:862.988000pt;}
.y6{bottom:871.857333pt;}
.y19f{bottom:875.649333pt;}
.ycc{bottom:877.641333pt;}
.y50{bottom:877.642667pt;}
.y19e{bottom:889.597333pt;}
.y16b{bottom:890.028000pt;}
.y5{bottom:890.884000pt;}
.y4f{bottom:893.582667pt;}
.y19d{bottom:903.545333pt;}
.y4{bottom:904.402667pt;}
.y16a{bottom:905.968000pt;}
.y4e{bottom:909.522667pt;}
.y19c{bottom:917.492000pt;}
.y1d4{bottom:917.493333pt;}
.y3{bottom:921.670667pt;}
.y169{bottom:921.908000pt;}
.y4d{bottom:925.462667pt;}
.y19b{bottom:931.440000pt;}
.y168{bottom:937.848000pt;}
.y4c{bottom:941.402667pt;}
.y19a{bottom:945.388000pt;}
.y2{bottom:954.216000pt;}
.y4b{bottom:957.342667pt;}
.y199{bottom:959.336000pt;}
.y1{bottom:972.812000pt;}
.ycb{bottom:973.282667pt;}
.y4a{bottom:973.284000pt;}
.y49{bottom:1007.821333pt;}
.h4{height:21.519360pt;}
.h8{height:33.474560pt;}
.h5{height:34.239693pt;}
.h6{height:35.865600pt;}
.h9{height:39.850400pt;}
.hd{height:41.834027pt;}
.h7{height:44.225067pt;}
.h2{height:44.632747pt;}
.h3{height:44.683229pt;}
.hc{height:44.688562pt;}
.ha{height:47.175200pt;}
.hb{height:47.180533pt;}
.he{height:54.485067pt;}
.h1{height:55.021733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:72.000000pt;}
.x1{left:78.925333pt;}
.xf{left:85.284000pt;}
.x19{left:96.426667pt;}
.x4{left:123.961333pt;}
.x2{left:125.336000pt;}
.x17{left:129.961333pt;}
.x3{left:133.149333pt;}
.xd{left:145.060000pt;}
.x18{left:155.357333pt;}
.xc{left:157.346667pt;}
.xe{left:177.469333pt;}
.xa{left:189.980000pt;}
.x7{left:222.869333pt;}
.x5{left:225.554667pt;}
.x6{left:238.632000pt;}
.x9{left:255.178667pt;}
.x8{left:259.353333pt;}
.xb{left:337.073333pt;}
.x12{left:422.685333pt;}
.x1a{left:428.828000pt;}
.x11{left:435.968000pt;}
.x1b{left:447.112000pt;}
.x16{left:474.817333pt;}
.x14{left:489.338667pt;}
.x15{left:687.669333pt;}
.x13{left:742.817333pt;}
}




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