
    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_f1eaf4664f5a06fbd98a2c7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_255ffa8c67507df844c68058.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_76e5d98e862b51489e9d5ec7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6af7f499bc09aff8f0536b57.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.244000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_94637f206d8b65eaf62c3152.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_444e8d72106e1db0f2f1e2e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_46521f5017a664f4561fe7b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.457000;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_1cfe9368edf508a0c4451768.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.770000;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_2bc3307a408bd112abcbbab2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.804000;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_7baa0daf60668e6b656f0051.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.131000;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_f027eadfd174386c91b2f61c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d5e7036cb80350b16c8599c5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.249000;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_86d6a506d3ac211170a0fef8.woff2')format("woff");}.fff{font-family:fff;line-height:0.974000;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_4f91dcf7cb2bb625d4273a64.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.264000;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_f41334a995d036c3452a1b00.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_289268baccb9fa06c5e27e78.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.962000;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_191daec51679ce06d39f2bab.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.949000;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_4571b831be4a4048a954bccd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_89d1f450dde2b4c6963a96c5.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_83cc0b0a87d5cb5384c8962c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_454d928a1d3407d9148fd32e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.669000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d4d38935a188eb49421e1725.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f781836ffc63f781c8eb6e6b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-16.647360px;}
.va{vertical-align:-14.286660px;}
.v8{vertical-align:-13.266000px;}
.v2{vertical-align:-8.844540px;}
.v6{vertical-align:-7.823940px;}
.v5{vertical-align:-2.379000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.464100px;}
.v9{vertical-align:22.790400px;}
.v3{vertical-align:25.511340px;}
.v7{vertical-align:50.342220px;}
.v4{vertical-align:55.786380px;}
.lsb7{letter-spacing:-1.165484px;}
.lsb5{letter-spacing:-1.160985px;}
.lsb8{letter-spacing:-1.142985px;}
.lsb6{letter-spacing:-1.133985px;}
.ls9{letter-spacing:-0.008478px;}
.ls11{letter-spacing:-0.005880px;}
.ls0{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000037px;}
.ls20{letter-spacing:0.029350px;}
.ls1c{letter-spacing:0.029410px;}
.ls65{letter-spacing:0.034512px;}
.ls6a{letter-spacing:0.034572px;}
.ls1d{letter-spacing:0.038832px;}
.ls29{letter-spacing:0.040452px;}
.ls1a{letter-spacing:0.041172px;}
.ls17{letter-spacing:0.042432px;}
.ls87{letter-spacing:0.048102px;}
.ls7f{letter-spacing:0.048162px;}
.lsb4{letter-spacing:0.049494px;}
.ls73{letter-spacing:0.051822px;}
.ls64{letter-spacing:0.051882px;}
.lsb1{letter-spacing:0.058484px;}
.lsb2{letter-spacing:0.058547px;}
.lsa4{letter-spacing:0.074040px;}
.ls8e{letter-spacing:0.074100px;}
.ls5b{letter-spacing:0.076430px;}
.ls48{letter-spacing:0.110396px;}
.ls63{letter-spacing:0.137065px;}
.ls53{letter-spacing:0.146989px;}
.lsb3{letter-spacing:0.152994px;}
.ls34{letter-spacing:0.156400px;}
.ls92{letter-spacing:0.164048px;}
.lsae{letter-spacing:0.170995px;}
.ls67{letter-spacing:0.174098px;}
.ls50{letter-spacing:0.185209px;}
.ls7c{letter-spacing:0.194077px;}
.ls85{letter-spacing:0.196840px;}
.ls72{letter-spacing:0.233376px;}
.ls1{letter-spacing:0.245960px;}
.ls2{letter-spacing:0.246020px;}
.ls99{letter-spacing:0.283144px;}
.ls9a{letter-spacing:0.283225px;}
.ls2f{letter-spacing:0.283944px;}
.ls44{letter-spacing:0.284004px;}
.ls91{letter-spacing:0.284245px;}
.ls32{letter-spacing:0.299860px;}
.ls51{letter-spacing:0.341617px;}
.ls88{letter-spacing:0.374772px;}
.ls74{letter-spacing:0.375252px;}
.ls21{letter-spacing:0.376272px;}
.ls25{letter-spacing:0.377832px;}
.ls6{letter-spacing:0.528005px;}
.ls5{letter-spacing:0.564006px;}
.ls4{letter-spacing:0.582020px;}
.lsac{letter-spacing:0.582114px;}
.ls3b{letter-spacing:0.587994px;}
.ls13{letter-spacing:0.593874px;}
.ls3f{letter-spacing:0.605634px;}
.ls14{letter-spacing:0.611514px;}
.ls12{letter-spacing:0.617394px;}
.lsa{letter-spacing:0.623274px;}
.ls15{letter-spacing:0.629154px;}
.lsa8{letter-spacing:0.635034px;}
.lsb{letter-spacing:0.640913px;}
.ls3{letter-spacing:0.642006px;}
.lsd{letter-spacing:0.646793px;}
.lsa7{letter-spacing:0.652673px;}
.lsc{letter-spacing:0.658553px;}
.lsf{letter-spacing:0.664433px;}
.lsab{letter-spacing:0.664438px;}
.ls3a{letter-spacing:0.670313px;}
.ls7{letter-spacing:0.684007px;}
.ls10{letter-spacing:0.699713px;}
.ls3c{letter-spacing:0.705593px;}
.ls66{letter-spacing:1.337245px;}
.ls75{letter-spacing:1.678045px;}
.lsa1{letter-spacing:1.678105px;}
.ls2c{letter-spacing:1.712186px;}
.ls4b{letter-spacing:2.328456px;}
.ls89{letter-spacing:2.515225px;}
.ls95{letter-spacing:2.540836px;}
.ls98{letter-spacing:2.545427px;}
.ls78{letter-spacing:2.555978px;}
.ls8f{letter-spacing:2.556038px;}
.ls84{letter-spacing:2.567100px;}
.ls9e{letter-spacing:2.583942px;}
.ls94{letter-spacing:2.615256px;}
.ls1e{letter-spacing:2.833524px;}
.ls56{letter-spacing:2.877040px;}
.lsa3{letter-spacing:2.881096px;}
.ls8a{letter-spacing:2.883616px;}
.ls8d{letter-spacing:2.884067px;}
.ls9d{letter-spacing:2.884127px;}
.ls8b{letter-spacing:2.896778px;}
.ls6c{letter-spacing:2.896838px;}
.ls6f{letter-spacing:2.907900px;}
.ls79{letter-spacing:2.924022px;}
.lsa0{letter-spacing:2.924082px;}
.ls9b{letter-spacing:2.924562px;}
.ls7d{letter-spacing:2.924742px;}
.ls80{letter-spacing:2.924802px;}
.ls52{letter-spacing:3.016388px;}
.ls30{letter-spacing:3.130007px;}
.ls46{letter-spacing:3.218620px;}
.ls2a{letter-spacing:3.231600px;}
.ls31{letter-spacing:3.741457px;}
.ls27{letter-spacing:3.811427px;}
.ls6b{letter-spacing:4.059925px;}
.ls96{letter-spacing:4.059985px;}
.ls7a{letter-spacing:4.400725px;}
.ls77{letter-spacing:4.400785px;}
.ls55{letter-spacing:4.774406px;}
.ls45{letter-spacing:4.774466px;}
.ls38{letter-spacing:7.635069px;}
.lsa6{letter-spacing:7.682102px;}
.lsa5{letter-spacing:7.936839px;}
.ls54{letter-spacing:7.987436px;}
.ls39{letter-spacing:7.987819px;}
.ls33{letter-spacing:7.989356px;}
.ls58{letter-spacing:7.990496px;}
.ls2b{letter-spacing:7.991756px;}
.ls22{letter-spacing:7.992836px;}
.ls4d{letter-spacing:7.993796px;}
.ls40{letter-spacing:7.993856px;}
.ls82{letter-spacing:11.636982px;}
.ls37{letter-spacing:11.642330px;}
.ls6e{letter-spacing:11.975622px;}
.ls69{letter-spacing:11.975682px;}
.ls36{letter-spacing:11.983310px;}
.ls60{letter-spacing:13.055200px;}
.ls4f{letter-spacing:13.118160px;}
.ls19{letter-spacing:13.229862px;}
.lsaf{letter-spacing:13.436815px;}
.lsb0{letter-spacing:13.504337px;}
.ls7b{letter-spacing:14.177076px;}
.ls5f{letter-spacing:14.265422px;}
.ls8c{letter-spacing:14.419825px;}
.ls9c{letter-spacing:14.420365px;}
.ls86{letter-spacing:14.423125px;}
.ls97{letter-spacing:14.470920px;}
.ls90{letter-spacing:14.471460px;}
.ls81{letter-spacing:14.473080px;}
.ls68{letter-spacing:14.474220px;}
.ls76{letter-spacing:14.474400px;}
.ls83{letter-spacing:14.517336px;}
.ls6d{letter-spacing:14.517876px;}
.lsa2{letter-spacing:14.520036px;}
.ls93{letter-spacing:14.520096px;}
.ls71{letter-spacing:14.695722px;}
.ls4c{letter-spacing:14.923300px;}
.ls62{letter-spacing:15.039702px;}
.ls26{letter-spacing:15.817860px;}
.ls47{letter-spacing:15.986377px;}
.ls35{letter-spacing:15.987937px;}
.ls43{letter-spacing:16.157400px;}
.ls18{letter-spacing:16.158000px;}
.ls59{letter-spacing:16.158360px;}
.ls2d{letter-spacing:16.159680px;}
.ls24{letter-spacing:16.293282px;}
.ls57{letter-spacing:16.327957px;}
.ls42{letter-spacing:16.634322px;}
.ls16{letter-spacing:16.634382px;}
.ls5d{letter-spacing:16.704912px;}
.ls5e{letter-spacing:17.645680px;}
.ls28{letter-spacing:17.700986px;}
.ls1f{letter-spacing:17.701406px;}
.ls1b{letter-spacing:18.041006px;}
.ls61{letter-spacing:18.686425px;}
.ls7e{letter-spacing:19.025965px;}
.ls70{letter-spacing:19.026625px;}
.ls9f{letter-spacing:19.026685px;}
.ls5a{letter-spacing:19.345028px;}
.ls4e{letter-spacing:20.762606px;}
.ls41{letter-spacing:20.762666px;}
.ls23{letter-spacing:21.102866px;}
.lse{letter-spacing:23.960755px;}
.lsaa{letter-spacing:24.248873px;}
.lsa9{letter-spacing:24.301792px;}
.ls8{letter-spacing:24.762248px;}
.lsad{letter-spacing:25.665938px;}
.ls5c{letter-spacing:32.654977px;}
.ls3e{letter-spacing:217.169704px;}
.ls3d{letter-spacing:217.175584px;}
.ls4a{letter-spacing:277.023707px;}
.ls49{letter-spacing:277.023767px;}
.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;}
}
.ws160{word-spacing:-25.724737px;}
.ws29{word-spacing:-24.822248px;}
.ws145{word-spacing:-24.360591px;}
.ws149{word-spacing:-24.307672px;}
.ws7d{word-spacing:-24.019555px;}
.ws28{word-spacing:-0.624006px;}
.ws3{word-spacing:-0.144001px;}
.ws9{word-spacing:-0.061800px;}
.ws12{word-spacing:-0.060001px;}
.ws43{word-spacing:-0.058799px;}
.ws73{word-spacing:-0.055201px;}
.ws120{word-spacing:-0.052919px;}
.wsf1{word-spacing:-0.047999px;}
.ws6{word-spacing:-0.044999px;}
.ws135{word-spacing:-0.041999px;}
.wsd7{word-spacing:-0.041159px;}
.ws121{word-spacing:-0.037043px;}
.ws34{word-spacing:-0.008478px;}
.ws0{word-spacing:0.000000px;}
.ws129{word-spacing:7.706890px;}
.ws128{word-spacing:10.852645px;}
.ws1a2{word-spacing:10.885354px;}
.ws109{word-spacing:11.583482px;}
.wseb{word-spacing:11.701081px;}
.ws105{word-spacing:12.440223px;}
.ws2e{word-spacing:12.457022px;}
.ws30{word-spacing:12.528421px;}
.ws101{word-spacing:12.549420px;}
.ws2d{word-spacing:12.582966px;}
.ws2c{word-spacing:12.583021px;}
.ws176{word-spacing:12.587221px;}
.ws102{word-spacing:12.603986px;}
.ws106{word-spacing:12.612419px;}
.ws136{word-spacing:12.620820px;}
.ws178{word-spacing:12.625020px;}
.ws131{word-spacing:12.675394px;}
.ws12e{word-spacing:12.675430px;}
.ws132{word-spacing:12.725818px;}
.ws134{word-spacing:12.746773px;}
.ws104{word-spacing:12.746815px;}
.ws103{word-spacing:12.784617px;}
.ws130{word-spacing:12.797218px;}
.wsfe{word-spacing:12.830855px;}
.ws100{word-spacing:12.860176px;}
.wsff{word-spacing:12.877016px;}
.ws12f{word-spacing:12.885404px;}
.ws177{word-spacing:12.923216px;}
.ws18b{word-spacing:13.000327px;}
.wsf8{word-spacing:13.011414px;}
.ws2f{word-spacing:13.049214px;}
.ws18d{word-spacing:13.076826px;}
.ws188{word-spacing:13.166825px;}
.ws19d{word-spacing:13.193825px;}
.ws19f{word-spacing:13.216324px;}
.ws189{word-spacing:13.225323px;}
.ws19c{word-spacing:13.234324px;}
.ws184{word-spacing:13.238824px;}
.ws199{word-spacing:13.247823px;}
.ws191{word-spacing:13.261324px;}
.ws18f{word-spacing:13.265823px;}
.ws18a{word-spacing:13.279323px;}
.ws190{word-spacing:13.288322px;}
.ws185{word-spacing:13.292822px;}
.ws192{word-spacing:13.328823px;}
.ws19b{word-spacing:13.337822px;}
.ws8{word-spacing:13.342322px;}
.ws18c{word-spacing:13.351322px;}
.ws193{word-spacing:13.360321px;}
.ws182{word-spacing:13.364822px;}
.ws17b{word-spacing:13.369322px;}
.ws195{word-spacing:13.387321px;}
.ws17d{word-spacing:13.391822px;}
.ws187{word-spacing:13.405321px;}
.ws183{word-spacing:13.409821px;}
.ws186{word-spacing:13.414322px;}
.ws19e{word-spacing:13.418822px;}
.ws198{word-spacing:13.445820px;}
.ws194{word-spacing:13.477320px;}
.ws196{word-spacing:13.481821px;}
.ws197{word-spacing:13.495320px;}
.ws18e{word-spacing:13.549320px;}
.ws180{word-spacing:13.562819px;}
.ws1a1{word-spacing:13.589819px;}
.ws7{word-spacing:13.603318px;}
.ws17e{word-spacing:13.607818px;}
.ws19a{word-spacing:13.630318px;}
.ws1a0{word-spacing:13.634818px;}
.ws17c{word-spacing:13.657318px;}
.ws181{word-spacing:13.675317px;}
.ws174{word-spacing:13.708629px;}
.ws17f{word-spacing:13.720317px;}
.ws12d{word-spacing:13.823827px;}
.ws172{word-spacing:13.838227px;}
.ws17a{word-spacing:13.882315px;}
.ws171{word-spacing:13.934225px;}
.wsf3{word-spacing:13.939025px;}
.ws175{word-spacing:13.943826px;}
.ws12c{word-spacing:13.948626px;}
.ws119{word-spacing:13.977426px;}
.ws133{word-spacing:13.996626px;}
.ws125{word-spacing:14.025425px;}
.ws124{word-spacing:14.054224px;}
.ws31{word-spacing:14.078252px;}
.ws179{word-spacing:14.102223px;}
.wsf7{word-spacing:14.121424px;}
.wsf0{word-spacing:14.150223px;}
.wsf6{word-spacing:14.169423px;}
.ws32{word-spacing:14.207748px;}
.ws118{word-spacing:14.246221px;}
.ws68{word-spacing:14.251021px;}
.wsf4{word-spacing:14.279821px;}
.ws117{word-spacing:14.284622px;}
.ws33{word-spacing:14.299021px;}
.ws12b{word-spacing:14.347020px;}
.ws173{word-spacing:14.351821px;}
.wsf2{word-spacing:14.452620px;}
.ws13a{word-spacing:14.499933px;}
.ws63{word-spacing:14.741010px;}
.ws4d{word-spacing:14.846848px;}
.ws11f{word-spacing:14.952687px;}
.ws67{word-spacing:15.158485px;}
.ws64{word-spacing:15.399562px;}
.ws151{word-spacing:15.446603px;}
.ws41{word-spacing:15.499522px;}
.ws62{word-spacing:15.834678px;}
.ws3a{word-spacing:15.869957px;}
.wsf9{word-spacing:15.886801px;}
.ws115{word-spacing:15.951599px;}
.ws5d{word-spacing:16.046356px;}
.wsee{word-spacing:16.065001px;}
.ws116{word-spacing:16.081199px;}
.wsef{word-spacing:16.108199px;}
.ws122{word-spacing:16.124401px;}
.ws5e{word-spacing:16.175716px;}
.ws5a{word-spacing:16.299194px;}
.wscb{word-spacing:16.316816px;}
.ws59{word-spacing:16.322714px;}
.ws99{word-spacing:16.427699px;}
.ws74{word-spacing:16.438738px;}
.ws137{word-spacing:16.499459px;}
.ws152{word-spacing:16.516020px;}
.wsd2{word-spacing:16.527059px;}
.ws11c{word-spacing:16.565701px;}
.wsd6{word-spacing:16.640230px;}
.ws72{word-spacing:16.659541px;}
.wse6{word-spacing:16.687141px;}
.ws10c{word-spacing:16.698182px;}
.ws4c{word-spacing:16.722549px;}
.wse1{word-spacing:16.841704px;}
.wsb4{word-spacing:17.216464px;}
.ws8b{word-spacing:17.351704px;}
.ws46{word-spacing:17.357583px;}
.ws70{word-spacing:17.363462px;}
.wsdc{word-spacing:17.369342px;}
.ws170{word-spacing:17.381103px;}
.ws98{word-spacing:17.404622px;}
.ws89{word-spacing:17.439903px;}
.ws6f{word-spacing:17.445783px;}
.ws6d{word-spacing:17.451661px;}
.ws10a{word-spacing:17.463422px;}
.ws57{word-spacing:17.469302px;}
.ws165{word-spacing:17.481061px;}
.ws10f{word-spacing:17.504582px;}
.wsb2{word-spacing:17.539860px;}
.ws71{word-spacing:17.551621px;}
.ws90{word-spacing:17.557501px;}
.ws7a{word-spacing:17.563381px;}
.ws164{word-spacing:17.598660px;}
.ws6e{word-spacing:17.616301px;}
.wsb9{word-spacing:17.622181px;}
.ws4f{word-spacing:17.628060px;}
.ws114{word-spacing:17.645701px;}
.ws13c{word-spacing:17.686859px;}
.wsed{word-spacing:17.710380px;}
.ws10{word-spacing:17.712178px;}
.ws6b{word-spacing:17.722139px;}
.ws166{word-spacing:17.733900px;}
.wsa7{word-spacing:17.739780px;}
.ws7e{word-spacing:17.745658px;}
.ws6c{word-spacing:17.751538px;}
.wsd9{word-spacing:17.757419px;}
.wse7{word-spacing:17.769179px;}
.ws47{word-spacing:17.780938px;}
.wsf{word-spacing:17.790178px;}
.wsd5{word-spacing:17.798579px;}
.wsba{word-spacing:17.810338px;}
.ws22{word-spacing:17.826179px;}
.ws13{word-spacing:17.826223px;}
.ws9f{word-spacing:17.839737px;}
.ws141{word-spacing:17.845618px;}
.ws1a{word-spacing:17.850179px;}
.wsec{word-spacing:17.851502px;}
.ws17{word-spacing:17.856179px;}
.wse{word-spacing:17.874178px;}
.wsb{word-spacing:17.880179px;}
.wsc{word-spacing:17.898178px;}
.ws16a{word-spacing:17.904417px;}
.ws93{word-spacing:17.939698px;}
.ws15{word-spacing:17.940179px;}
.wsd{word-spacing:17.952180px;}
.wse5{word-spacing:17.963217px;}
.ws23{word-spacing:17.988179px;}
.ws21{word-spacing:18.000180px;}
.ws1d{word-spacing:18.006181px;}
.ws1f{word-spacing:18.042172px;}
.ws19{word-spacing:18.066181px;}
.wsa{word-spacing:18.078155px;}
.ws77{word-spacing:18.121976px;}
.ws11{word-spacing:18.132182px;}
.ws76{word-spacing:18.139615px;}
.wsd8{word-spacing:18.151393px;}
.ws52{word-spacing:18.157254px;}
.ws1b{word-spacing:18.210182px;}
.wsac{word-spacing:18.239574px;}
.ws20{word-spacing:18.288182px;}
.ws18{word-spacing:18.294182px;}
.ws1c{word-spacing:18.312184px;}
.ws16{word-spacing:18.318187px;}
.ws1e{word-spacing:18.330183px;}
.ws9b{word-spacing:18.374813px;}
.ws81{word-spacing:18.463012px;}
.ws4a{word-spacing:18.480651px;}
.ws14{word-spacing:18.486185px;}
.ws4b{word-spacing:18.486531px;}
.wsda{word-spacing:18.504172px;}
.wsbe{word-spacing:18.601800px;}
.wse4{word-spacing:18.645290px;}
.ws14a{word-spacing:18.680570px;}
.ws69{word-spacing:18.762481px;}
.ws83{word-spacing:18.804048px;}
.wsea{word-spacing:18.821689px;}
.ws5b{word-spacing:18.856968px;}
.ws14c{word-spacing:18.886368px;}
.ws97{word-spacing:19.045125px;}
.ws84{word-spacing:19.098045px;}
.ws14b{word-spacing:19.145085px;}
.wsa6{word-spacing:19.168604px;}
.ws5c{word-spacing:19.239164px;}
.ws113{word-spacing:19.345003px;}
.ws42{word-spacing:19.392042px;}
.wsd3{word-spacing:19.427321px;}
.ws3f{word-spacing:19.480241px;}
.ws16b{word-spacing:19.521401px;}
.wsa5{word-spacing:19.544920px;}
.ws13d{word-spacing:19.715438px;}
.ws150{word-spacing:19.744838px;}
.ws44{word-spacing:19.821278px;}
.ws48{word-spacing:19.833037px;}
.ws7f{word-spacing:19.850678px;}
.ws53{word-spacing:19.980036px;}
.ws5{word-spacing:20.011383px;}
.ws61{word-spacing:20.079995px;}
.ws110{word-spacing:20.162314px;}
.ws10b{word-spacing:20.191713px;}
.ws45{word-spacing:20.226994px;}
.ws13f{word-spacing:20.244633px;}
.ws16d{word-spacing:20.279912px;}
.ws168{word-spacing:20.297553px;}
.ws169{word-spacing:20.456311px;}
.ws16e{word-spacing:20.503351px;}
.ws111{word-spacing:20.709149px;}
.ws9e{word-spacing:20.844387px;}
.wsbd{word-spacing:20.862027px;}
.ws139{word-spacing:20.926706px;}
.ws60{word-spacing:20.956106px;}
.ws11a{word-spacing:20.990138px;}
.ws5f{word-spacing:21.050185px;}
.ws40{word-spacing:21.056066px;}
.ws9c{word-spacing:21.203064px;}
.ws58{word-spacing:21.226583px;}
.wse2{word-spacing:21.250103px;}
.ws9d{word-spacing:21.338302px;}
.wsb6{word-spacing:21.414742px;}
.ws16f{word-spacing:21.438262px;}
.ws55{word-spacing:21.532341px;}
.ws3b{word-spacing:21.620540px;}
.wsaa{word-spacing:21.661698px;}
.wsdb{word-spacing:21.679339px;}
.wsae{word-spacing:21.802817px;}
.wsaf{word-spacing:21.826338px;}
.wsab{word-spacing:21.861616px;}
.ws140{word-spacing:21.902777px;}
.wsc7{word-spacing:21.961576px;}
.ws91{word-spacing:22.014495px;}
.ws38{word-spacing:22.149735px;}
.ws92{word-spacing:22.202654px;}
.wsb5{word-spacing:22.214414px;}
.ws50{word-spacing:22.267333px;}
.ws39{word-spacing:22.461371px;}
.ws82{word-spacing:22.508410px;}
.wsa4{word-spacing:22.514290px;}
.ws54{word-spacing:22.520170px;}
.ws3e{word-spacing:22.584850px;}
.wsca{word-spacing:22.590730px;}
.ws163{word-spacing:22.608369px;}
.ws7c{word-spacing:22.620130px;}
.wsc4{word-spacing:22.637770px;}
.ws8d{word-spacing:22.655408px;}
.ws156{word-spacing:22.673049px;}
.wscf{word-spacing:22.690688px;}
.wse0{word-spacing:22.702448px;}
.ws144{word-spacing:22.702449px;}
.ws146{word-spacing:22.731847px;}
.ws8e{word-spacing:22.773007px;}
.wsb7{word-spacing:22.837686px;}
.ws37{word-spacing:22.884727px;}
.ws25{word-spacing:22.896229px;}
.wse9{word-spacing:22.902366px;}
.ws27{word-spacing:23.208233px;}
.ws36{word-spacing:23.225763px;}
.wse8{word-spacing:23.255173px;}
.ws24{word-spacing:23.262232px;}
.ws4e{word-spacing:23.319843px;}
.wse3{word-spacing:23.402161px;}
.ws16c{word-spacing:23.443321px;}
.ws95{word-spacing:23.572680px;}
.ws2b{word-spacing:23.622236px;}
.ws1{word-spacing:23.649601px;}
.ws78{word-spacing:23.849037px;}
.ws35{word-spacing:23.878437px;}
.wsbc{word-spacing:23.966636px;}
.ws15e{word-spacing:24.001916px;}
.ws79{word-spacing:24.043074px;}
.ws51{word-spacing:24.119514px;}
.ws13b{word-spacing:24.125393px;}
.ws88{word-spacing:24.242992px;}
.ws161{word-spacing:24.266512px;}
.ws26{word-spacing:24.300277px;}
.ws15f{word-spacing:24.325312px;}
.ws87{word-spacing:24.448790px;}
.ws162{word-spacing:24.484070px;}
.ws112{word-spacing:24.501711px;}
.ws14d{word-spacing:24.584030px;}
.ws2a{word-spacing:24.636310px;}
.ws7b{word-spacing:24.719267px;}
.ws13e{word-spacing:24.748667px;}
.wsd0{word-spacing:24.889785px;}
.ws86{word-spacing:24.919185px;}
.wsd1{word-spacing:24.966226px;}
.ws6a{word-spacing:25.266103px;}
.ws65{word-spacing:25.307262px;}
.ws9a{word-spacing:25.348422px;}
.ws8a{word-spacing:25.418980px;}
.ws159{word-spacing:25.460140px;}
.ws75{word-spacing:25.712977px;}
.ws138{word-spacing:25.948175px;}
.ws153{word-spacing:26.206893px;}
.wsb8{word-spacing:26.342131px;}
.ws80{word-spacing:26.353892px;}
.wsbb{word-spacing:26.436211px;}
.wsa8{word-spacing:26.536169px;}
.wsd4{word-spacing:26.589089px;}
.wsc1{word-spacing:26.647887px;}
.ws96{word-spacing:26.706688px;}
.wsa2{word-spacing:26.730208px;}
.wsc8{word-spacing:26.824286px;}
.wsde{word-spacing:27.030085px;}
.ws49{word-spacing:27.047724px;}
.ws11e{word-spacing:27.106523px;}
.ws8c{word-spacing:27.259402px;}
.wsb3{word-spacing:27.400520px;}
.wsdf{word-spacing:27.588679px;}
.ws66{word-spacing:27.647478px;}
.ws85{word-spacing:28.082594px;}
.wsc9{word-spacing:28.423629px;}
.ws167{word-spacing:28.458910px;}
.ws3c{word-spacing:28.664707px;}
.ws157{word-spacing:28.729386px;}
.wsa1{word-spacing:28.788187px;}
.wsc0{word-spacing:28.794067px;}
.wsad{word-spacing:29.029264px;}
.wsc6{word-spacing:29.182143px;}
.wscd{word-spacing:29.211541px;}
.wsb1{word-spacing:29.252701px;}
.wscc{word-spacing:29.340901px;}
.ws15c{word-spacing:29.382060px;}
.wsce{word-spacing:29.493780px;}
.ws15d{word-spacing:29.511420px;}
.ws10d{word-spacing:29.534938px;}
.ws158{word-spacing:29.605498px;}
.wsbf{word-spacing:29.781896px;}
.wsdd{word-spacing:29.787775px;}
.ws3d{word-spacing:29.799537px;}
.ws10e{word-spacing:30.028854px;}
.wsc3{word-spacing:30.957885px;}
.wsc5{word-spacing:31.569397px;}
.ws148{word-spacing:31.622318px;}
.ws8f{word-spacing:31.845754px;}
.wsb0{word-spacing:31.939835px;}
.ws14e{word-spacing:31.975113px;}
.ws155{word-spacing:32.033913px;}
.ws154{word-spacing:32.069194px;}
.ws143{word-spacing:32.222070px;}
.wsc2{word-spacing:32.410230px;}
.ws94{word-spacing:32.621908px;}
.ws15b{word-spacing:32.663066px;}
.ws147{word-spacing:32.710106px;}
.wsa9{word-spacing:32.774787px;}
.wsa3{word-spacing:32.845344px;}
.ws11d{word-spacing:32.874743px;}
.wsa0{word-spacing:33.139342px;}
.ws56{word-spacing:33.204022px;}
.ws142{word-spacing:33.392180px;}
.ws14f{word-spacing:35.009164px;}
.ws15a{word-spacing:40.077672px;}
.ws2{word-spacing:43.200180px;}
.ws4{word-spacing:43.228982px;}
.ws108{word-spacing:43.958455px;}
.wsf5{word-spacing:86.091703px;}
.ws107{word-spacing:117.604698px;}
.ws11b{word-spacing:192.213597px;}
.wsfc{word-spacing:230.728311px;}
.wsfa{word-spacing:231.088307px;}
.wsfb{word-spacing:246.712111px;}
.wsfd{word-spacing:253.983995px;}
.ws123{word-spacing:263.881538px;}
.ws126{word-spacing:285.212377px;}
.ws127{word-spacing:292.354736px;}
.ws12a{word-spacing:735.240419px;}
._1e{margin-left:-238.996025px;}
._48{margin-left:-25.034692px;}
._9{margin-left:-24.012199px;}
._18{margin-left:-22.148029px;}
._33{margin-left:-14.265422px;}
._2{margin-left:-8.150445px;}
._1f{margin-left:-7.005811px;}
._11{margin-left:-5.438006px;}
._10{margin-left:-3.733845px;}
._13{margin-left:-2.610667px;}
._8{margin-left:-1.362053px;}
._5{width:1.098011px;}
._e{width:2.207329px;}
._37{width:4.179201px;}
._3a{width:7.369072px;}
._0{width:8.954400px;}
._3b{width:10.273054px;}
._b{width:11.974025px;}
._2c{width:13.012308px;}
._3{width:14.548306px;}
._12{width:15.611241px;}
._6{width:17.400171px;}
._4{width:18.942189px;}
._d{width:20.574005px;}
._19{width:21.670369px;}
._c{width:23.237522px;}
._7{width:24.708248px;}
._a{width:25.806257px;}
._17{width:26.909002px;}
._1b{width:27.923656px;}
._15{width:29.135645px;}
._1c{width:30.214201px;}
._f{width:31.563517px;}
._1a{width:33.202761px;}
._14{width:35.023994px;}
._49{width:36.376120px;}
._32{width:49.568978px;}
._23{width:59.380063px;}
._34{width:72.027924px;}
._30{width:76.266248px;}
._31{width:79.328606px;}
._1d{width:81.294873px;}
._25{width:87.843682px;}
._36{width:94.976417px;}
._4d{width:113.504179px;}
._35{width:117.627334px;}
._4c{width:125.595235px;}
._4a{width:141.636624px;}
._24{width:153.050892px;}
._22{width:171.545051px;}
._2a{width:230.545906px;}
._39{width:277.618920px;}
._2f{width:287.487602px;}
._26{width:333.547831px;}
._28{width:347.702849px;}
._29{width:350.726811px;}
._2b{width:357.547531px;}
._44{width:358.939513px;}
._27{width:370.555368px;}
._3f{width:372.240152px;}
._2e{width:385.727983px;}
._45{width:387.734351px;}
._20{width:389.174330px;}
._46{width:393.571080px;}
._40{width:402.489339px;}
._41{width:407.514906px;}
._3d{width:536.633335px;}
._21{width:569.690488px;}
._4b{width:679.772284px;}
._3e{width:728.352505px;}
._2d{width:750.187404px;}
._43{width:756.244937px;}
._47{width:792.417330px;}
._3c{width:811.890633px;}
._42{width:820.655674px;}
._38{width:981.971725px;}
._4e{width:1794.803292px;}
._16{width:1819.292592px;}
._1{width:1976.208061px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:27.996600px;}
.fs13{font-size:31.995000px;}
.fs16{font-size:37.043400px;}
.fs11{font-size:39.194400px;}
.fs10{font-size:41.158800px;}
.fsc{font-size:41.999400px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:44.999400px;}
.fsd{font-size:47.999400px;}
.fs15{font-size:52.919400px;}
.fs12{font-size:54.000000px;}
.fsf{font-size:55.200600px;}
.fse{font-size:58.799400px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.000600px;}
.fs9{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000600px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fsb{font-size:84.779400px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y4b{bottom:0.301575px;}
.y5{bottom:66.525004px;}
.y4f{bottom:79.510998px;}
.y7f{bottom:90.291345px;}
.yd5{bottom:90.294510px;}
.ya9{bottom:90.297540px;}
.y1ad{bottom:90.300615px;}
.y1cd{bottom:90.301890px;}
.yf9{bottom:90.309450px;}
.y12b{bottom:90.311850px;}
.y4e{bottom:91.501833px;}
.y12a{bottom:94.989000px;}
.y4{bottom:97.125005px;}
.y154{bottom:98.050950px;}
.y129{bottom:103.067280px;}
.y17b{bottom:103.067700px;}
.y4d{bottom:103.492653px;}
.y17a{bottom:107.744850px;}
.y7e{bottom:111.466470px;}
.yd4{bottom:111.469635px;}
.ya8{bottom:111.472680px;}
.y1ac{bottom:111.475740px;}
.y1cc{bottom:111.477015px;}
.yf8{bottom:111.484590px;}
.y4c{bottom:115.483488px;}
.y128{bottom:115.823550px;}
.y153{bottom:117.779895px;}
.y179{bottom:123.562200px;}
.y177{bottom:123.562305px;}
.y178{bottom:128.834700px;}
.y7d{bottom:132.726870px;}
.yd3{bottom:132.730035px;}
.ya7{bottom:132.733065px;}
.y1ab{bottom:132.736140px;}
.y1cb{bottom:132.737415px;}
.yf7{bottom:132.744975px;}
.y127{bottom:136.319430px;}
.y152{bottom:137.508855px;}
.y21{bottom:139.264499px;}
.y176{bottom:144.566850px;}
.y174{bottom:144.567240px;}
.y175{bottom:149.839350px;}
.y7c{bottom:153.987270px;}
.yd2{bottom:153.990420px;}
.ya6{bottom:153.993465px;}
.y1aa{bottom:153.996540px;}
.y1ca{bottom:153.997800px;}
.yf6{bottom:154.005375px;}
.y151{bottom:157.237800px;}
.y126{bottom:157.238775px;}
.y173{bottom:164.211000px;}
.y7b{bottom:175.162395px;}
.yd1{bottom:175.165560px;}
.ya5{bottom:175.168590px;}
.y1a9{bottom:175.171665px;}
.y1c9{bottom:175.172940px;}
.yf5{bottom:175.180515px;}
.y150{bottom:176.966850px;}
.y125{bottom:178.243305px;}
.y172{bottom:183.940200px;}
.y7a{bottom:196.422795px;}
.yd0{bottom:196.425960px;}
.ya4{bottom:196.428990px;}
.y1a8{bottom:196.432065px;}
.y1c8{bottom:196.433340px;}
.yf4{bottom:196.440900px;}
.y18{bottom:196.933500px;}
.y124{bottom:199.247850px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yf3{bottom:215.234550px;}
.y79{bottom:217.597920px;}
.ycf{bottom:217.601085px;}
.ya3{bottom:217.604130px;}
.y1a7{bottom:217.607190px;}
.y1c7{bottom:217.608465px;}
.y145{bottom:217.610400px;}
.yf2{bottom:217.615650px;}
.y123{bottom:220.252380px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y78{bottom:238.858320px;}
.yce{bottom:238.861485px;}
.ya2{bottom:238.864515px;}
.y1a6{bottom:238.867590px;}
.y1c6{bottom:238.868865px;}
.y144{bottom:238.870800px;}
.y122{bottom:241.256925px;}
.y185{bottom:245.253600px;}
.yf0{bottom:254.437545px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y77{bottom:260.118705px;}
.ycd{bottom:260.121870px;}
.ya1{bottom:260.124915px;}
.y1a5{bottom:260.127990px;}
.y1c5{bottom:260.129250px;}
.y143{bottom:260.131200px;}
.y121{bottom:262.261455px;}
.y184{bottom:265.663260px;}
.y48{bottom:268.802538px;}
.yee{bottom:270.169095px;}
.yf1{bottom:270.169950px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y76{bottom:281.293845px;}
.ycc{bottom:281.297010px;}
.ya0{bottom:281.300040px;}
.y1a4{bottom:281.303115px;}
.y142{bottom:281.306325px;}
.y120{bottom:283.265985px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y183{bottom:286.667790px;}
.yef{bottom:287.092935px;}
.y47{bottom:291.338763px;}
.y75{bottom:302.554245px;}
.ycb{bottom:302.557410px;}
.y9f{bottom:302.560440px;}
.y1c4{bottom:302.563305px;}
.y1a3{bottom:302.563515px;}
.y141{bottom:302.566725px;}
.y11f{bottom:304.270800px;}
.y11d{bottom:304.271670px;}
.y182{bottom:306.396750px;}
.y46{bottom:309.281943px;}
.y11e{bottom:309.628350px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yed{bottom:317.620215px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y74{bottom:323.729370px;}
.yca{bottom:323.732535px;}
.y9e{bottom:323.735565px;}
.y1c3{bottom:323.738445px;}
.y1a2{bottom:323.738640px;}
.y140{bottom:323.741850px;}
.y11c{bottom:325.276200px;}
.y181{bottom:326.125950px;}
.y45{bottom:334.794198px;}
.yec{bottom:338.795355px;}
.y200{bottom:343.393635px;}
.y73{bottom:344.989770px;}
.yc9{bottom:344.992935px;}
.y9d{bottom:344.995965px;}
.y1c2{bottom:344.998845px;}
.y1a1{bottom:344.999040px;}
.y13f{bottom:345.002250px;}
.y11b{bottom:346.280745px;}
.yf{bottom:348.133500px;}
.y44{bottom:352.822878px;}
.y1ff{bottom:356.914830px;}
.yeb{bottom:360.055740px;}
.y180{bottom:360.481800px;}
.y72{bottom:366.250155px;}
.yc8{bottom:366.253320px;}
.y9c{bottom:366.256365px;}
.y1c1{bottom:366.259230px;}
.y1a0{bottom:366.259425px;}
.y13e{bottom:366.262635px;}
.y11a{bottom:367.285275px;}
.y1fe{bottom:370.436025px;}
.y43{bottom:370.766058px;}
.y17f{bottom:380.891625px;}
.yea{bottom:381.316140px;}
.y1fd{bottom:383.957220px;}
.ye{bottom:386.785499px;}
.y71{bottom:387.425295px;}
.yc7{bottom:387.428460px;}
.y9b{bottom:387.431490px;}
.y1c0{bottom:387.434370px;}
.y19f{bottom:387.434565px;}
.y13d{bottom:387.437775px;}
.y119{bottom:388.289820px;}
.y42{bottom:388.794738px;}
.y1fc{bottom:397.392915px;}
.y17e{bottom:401.896155px;}
.ye9{bottom:402.491265px;}
.y41{bottom:406.823418px;}
.y118{bottom:408.018765px;}
.yd{bottom:408.044999px;}
.y70{bottom:408.685695px;}
.yc6{bottom:408.688860px;}
.y9a{bottom:408.691890px;}
.y1bf{bottom:408.694755px;}
.y19e{bottom:408.694965px;}
.y13c{bottom:408.698175px;}
.y1fb{bottom:410.914110px;}
.y17d{bottom:421.625100px;}
.ye8{bottom:423.751185px;}
.y1fa{bottom:424.435305px;}
.y40{bottom:424.766598px;}
.y117{bottom:427.747965px;}
.y6f{bottom:429.860820px;}
.yc5{bottom:429.863985px;}
.y99{bottom:429.867015px;}
.y1be{bottom:429.869895px;}
.y19d{bottom:429.870090px;}
.y13b{bottom:429.873300px;}
.y1f9{bottom:437.956500px;}
.y17c{bottom:441.354165px;}
.y3f{bottom:442.795278px;}
.y6e{bottom:451.121220px;}
.yc4{bottom:451.124385px;}
.y98{bottom:451.127415px;}
.y1bd{bottom:451.130295px;}
.y19c{bottom:451.130490px;}
.y13a{bottom:451.133700px;}
.y1f8{bottom:451.392195px;}
.y3e{bottom:460.823958px;}
.y1f7{bottom:464.913390px;}
.ye7{bottom:466.440390px;}
.y168{bottom:468.566850px;}
.yc3{bottom:472.299510px;}
.y97{bottom:472.302555px;}
.y10d{bottom:472.307160px;}
.y139{bottom:472.308615px;}
.y6d{bottom:472.381605px;}
.y19b{bottom:472.390875px;}
.y1f6{bottom:478.434585px;}
.y3d{bottom:478.767138px;}
.ye6{bottom:487.615515px;}
.y1f5{bottom:491.955780px;}
.y6c{bottom:493.556745px;}
.yc2{bottom:493.559910px;}
.y96{bottom:493.562940px;}
.y1bc{bottom:493.564350px;}
.y19a{bottom:493.566015px;}
.y10c{bottom:493.567560px;}
.y3c{bottom:501.303363px;}
.yc{bottom:502.864502px;}
.y167{bottom:504.963735px;}
.y1f4{bottom:505.391475px;}
.ye5{bottom:508.875915px;}
.y6b{bottom:514.817145px;}
.yc1{bottom:514.820295px;}
.y95{bottom:514.823340px;}
.y1bb{bottom:514.824735px;}
.y199{bottom:514.826415px;}
.y10b{bottom:514.827945px;}
.y1f3{bottom:518.912670px;}
.y165{bottom:519.165300px;}
.y3b{bottom:519.332043px;}
.yb{bottom:520.864502px;}
.ye4{bottom:530.051040px;}
.y138{bottom:531.154650px;}
.y1f2{bottom:532.433865px;}
.y109{bottom:533.536965px;}
.y166{bottom:534.387315px;}
.y6a{bottom:535.992270px;}
.yc0{bottom:535.995435px;}
.y94{bottom:535.998465px;}
.y1ba{bottom:535.999875px;}
.y198{bottom:536.001540px;}
.y108{bottom:536.002110px;}
.y10a{bottom:536.003085px;}
.y3a{bottom:537.275223px;}
.ya{bottom:538.864499px;}
.y1f1{bottom:545.955060px;}
.y137{bottom:552.415035px;}
.y39{bottom:555.303903px;}
.y9{bottom:556.864499px;}
.y69{bottom:557.252670px;}
.ybf{bottom:557.255835px;}
.y93{bottom:557.258865px;}
.y1b9{bottom:557.260260px;}
.y197{bottom:557.261940px;}
.y107{bottom:557.262510px;}
.y1f0{bottom:559.390755px;}
.y164{bottom:561.769920px;}
.ye3{bottom:569.593380px;}
.y1ef{bottom:572.911950px;}
.y38{bottom:573.332583px;}
.y136{bottom:573.675435px;}
.y162{bottom:575.971485px;}
.y106{bottom:576.056535px;}
.y68{bottom:578.427795px;}
.ybe{bottom:578.430960px;}
.y92{bottom:578.434005px;}
.y1b8{bottom:578.435400px;}
.y196{bottom:578.437065px;}
.y105{bottom:578.437635px;}
.y1ee{bottom:586.433145px;}
.y163{bottom:591.193500px;}
.y37{bottom:591.275763px;}
.y135{bottom:594.850335px;}
.y195{bottom:597.231450px;}
.y67{bottom:599.688195px;}
.ybd{bottom:599.691360px;}
.y91{bottom:599.694390px;}
.y1b7{bottom:599.695800px;}
.y194{bottom:599.697465px;}
.y1ed{bottom:599.954340px;}
.ye2{bottom:606.665625px;}
.y36{bottom:609.304443px;}
.y1ec{bottom:613.390035px;}
.y103{bottom:618.236865px;}
.y161{bottom:618.831435px;}
.y66{bottom:620.948580px;}
.ybc{bottom:620.951745px;}
.y90{bottom:620.954790px;}
.y1b6{bottom:620.956185px;}
.y1eb{bottom:626.911230px;}
.y35{bottom:627.333123px;}
.y104{bottom:633.968400px;}
.y101{bottom:633.968910px;}
.y193{bottom:635.923800px;}
.y1ea{bottom:640.432425px;}
.y65{bottom:642.123720px;}
.ybb{bottom:642.126885px;}
.ye1{bottom:642.127545px;}
.y8f{bottom:642.129915px;}
.y1b5{bottom:642.131325px;}
.y8{bottom:645.510000px;}
.y34{bottom:649.783848px;}
.y191{bottom:650.125815px;}
.y102{bottom:650.891235px;}
.y134{bottom:653.696625px;}
.y1e9{bottom:653.953620px;}
.y64{bottom:663.384120px;}
.yba{bottom:663.387285px;}
.ye0{bottom:663.387930px;}
.y8e{bottom:663.390315px;}
.y1b4{bottom:663.391710px;}
.y192{bottom:666.113250px;}
.y7{bottom:666.771000px;}
.y1e8{bottom:667.389315px;}
.y33{bottom:667.812528px;}
.y133{bottom:674.957025px;}
.y160{bottom:676.658220px;}
.y1e7{bottom:680.910510px;}
.y100{bottom:684.396750px;}
.y63{bottom:684.559245px;}
.yb9{bottom:684.562410px;}
.ydf{bottom:684.563070px;}
.y8d{bottom:684.565440px;}
.y1b3{bottom:684.566850px;}
.y32{bottom:690.263253px;}
.y15e{bottom:690.859635px;}
.y190{bottom:691.285005px;}
.y1e6{bottom:694.431705px;}
.y132{bottom:696.132150px;}
.y18e{bottom:705.486465px;}
.yff{bottom:705.571515px;}
.y62{bottom:705.819645px;}
.yb8{bottom:705.822810px;}
.yde{bottom:705.823470px;}
.y8c{bottom:705.825840px;}
.y1b2{bottom:705.826635px;}
.y15f{bottom:706.081785px;}
.y1e5{bottom:707.952900px;}
.y31{bottom:708.291933px;}
.y18f{bottom:720.623385px;}
.y1e4{bottom:721.388595px;}
.y6{bottom:726.298500px;}
.y30{bottom:726.320613px;}
.y61{bottom:727.080030px;}
.yb7{bottom:727.083195px;}
.ydd{bottom:727.083855px;}
.y8b{bottom:727.086240px;}
.y15d{bottom:733.464435px;}
.y1e3{bottom:734.909790px;}
.y131{bottom:742.223145px;}
.y2f{bottom:744.263793px;}
.y15b{bottom:747.666000px;}
.y18d{bottom:748.091085px;}
.y60{bottom:748.255170px;}
.yb6{bottom:748.258335px;}
.ydc{bottom:748.258995px;}
.yfe{bottom:748.259355px;}
.y8a{bottom:748.261365px;}
.y1e2{bottom:748.430985px;}
.y1b1{bottom:751.491840px;}
.y3{bottom:752.599495px;}
.y12f{bottom:758.040750px;}
.y2b{bottom:761.357913px;}
.y1e1{bottom:761.952165px;}
.y2e{bottom:762.292473px;}
.y15c{bottom:762.888015px;}
.y5f{bottom:769.515570px;}
.yb5{bottom:769.518735px;}
.ydb{bottom:769.519380px;}
.yfd{bottom:769.519740px;}
.y89{bottom:769.520970px;}
.y1b0{bottom:772.752240px;}
.y2a{bottom:774.793608px;}
.y130{bottom:774.878535px;}
.y1e0{bottom:775.388985px;}
.y2d{bottom:780.321153px;}
.y12e{bottom:786.018495px;}
.y29{bottom:788.314803px;}
.y1df{bottom:788.910180px;}
.y15a{bottom:790.525815px;}
.y5e{bottom:790.690695px;}
.yb4{bottom:790.693860px;}
.yda{bottom:790.694520px;}
.yfc{bottom:790.694880px;}
.y1af{bottom:793.927365px;}
.y28{bottom:801.835998px;}
.y12c{bottom:801.836055px;}
.y1de{bottom:802.431330px;}
.y18c{bottom:805.747530px;}
.y2c{bottom:807.278583px;}
.y5d{bottom:811.951095px;}
.yb3{bottom:811.954260px;}
.yd9{bottom:811.954920px;}
.yfb{bottom:811.955280px;}
.y1ae{bottom:815.187195px;}
.y27{bottom:815.357193px;}
.y88{bottom:818.501340px;}
.y12d{bottom:818.673885px;}
.y18a{bottom:819.949305px;}
.y5c{bottom:833.211480px;}
.y159{bottom:833.214285px;}
.yb2{bottom:833.214645px;}
.yd8{bottom:833.215305px;}
.yfa{bottom:833.215665px;}
.y18b{bottom:835.936980px;}
.y87{bottom:839.761740px;}
.y1dd{bottom:842.912745px;}
.y5b{bottom:854.386620px;}
.y158{bottom:854.389425px;}
.yb1{bottom:854.389785px;}
.yd7{bottom:854.390445px;}
.y86{bottom:861.022140px;}
.y189{bottom:861.023355px;}
.y26{bottom:865.020258px;}
.y1dc{bottom:869.955135px;}
.y187{bottom:875.224920px;}
.y5a{bottom:875.647005px;}
.y157{bottom:875.649810px;}
.yb0{bottom:875.650170px;}
.y14f{bottom:876.415470px;}
.y1d2{bottom:879.136140px;}
.y2{bottom:879.369000px;}
.y14e{bottom:881.007570px;}
.y85{bottom:882.197265px;}
.y1db{bottom:883.390830px;}
.y14d{bottom:889.086045px;}
.y188{bottom:890.446935px;}
.y1d1{bottom:891.892410px;}
.y59{bottom:896.822145px;}
.yaf{bottom:896.824950px;}
.y1da{bottom:896.912025px;}
.y116{bottom:897.165165px;}
.y25{bottom:901.078053px;}
.y14c{bottom:901.842315px;}
.y84{bottom:903.457665px;}
.y1d0{bottom:904.648680px;}
.y115{bottom:917.660130px;}
.y186{bottom:917.829705px;}
.yd6{bottom:918.082095px;}
.y58{bottom:918.082545px;}
.y156{bottom:918.084870px;}
.y83{bottom:921.400305px;}
.y14b{bottom:922.336890px;}
.y1d9{bottom:923.954415px;}
.y1cf{bottom:925.143240px;}
.y1d8{bottom:937.390110px;}
.y114{bottom:938.664675px;}
.yae{bottom:939.257220px;}
.y57{bottom:939.257670px;}
.y24{bottom:940.026603px;}
.y82{bottom:942.575430px;}
.y14a{bottom:943.341435px;}
.y1d7{bottom:950.911305px;}
.y171{bottom:952.100550px;}
.y113{bottom:952.100910px;}
.y170{bottom:956.777715px;}
.y1ce{bottom:959.584020px;}
.yad{bottom:960.517620px;}
.y56{bottom:960.518070px;}
.y81{bottom:963.835830px;}
.y149{bottom:964.346280px;}
.y147{bottom:964.346760px;}
.y16f{bottom:964.856505px;}
.y1{bottom:966.726000px;}
.y16e{bottom:969.533655px;}
.y148{bottom:969.703770px;}
.y112{bottom:973.105440px;}
.y1d6{bottom:977.953695px;}
.y23{bottom:979.057968px;}
.yac{bottom:981.778005px;}
.y55{bottom:981.778455px;}
.y16d{bottom:985.350855px;}
.y16b{bottom:985.351170px;}
.y146{bottom:985.351290px;}
.y16c{bottom:990.708435px;}
.y1d5{bottom:991.389390px;}
.y111{bottom:992.834400px;}
.yab{bottom:1002.953145px;}
.y54{bottom:1002.953595px;}
.y16a{bottom:1006.355715px;}
.y110{bottom:1006.355820px;}
.y169{bottom:1011.713280px;}
.y1d4{bottom:1018.431780px;}
.yaa{bottom:1024.213545px;}
.y53{bottom:1024.213995px;}
.y10f{bottom:1026.084780px;}
.y1d3{bottom:1031.952975px;}
.y22{bottom:1036.034355px;}
.y52{bottom:1045.388670px;}
.y10e{bottom:1045.813935px;}
.y51{bottom:1114.950513px;}
.y4a{bottom:1121.813958px;}
.y49{bottom:1122.115533px;}
.y155{bottom:1129.914435px;}
.y50{bottom:1129.917933px;}
.y80{bottom:1129.917945px;}
.h11{height:16.267500px;}
.h24{height:20.185549px;}
.h23{height:23.068395px;}
.h29{height:26.263771px;}
.h2a{height:27.782550px;}
.h1e{height:27.788830px;}
.h20{height:28.376746px;}
.h1b{height:29.181589px;}
.h26{height:29.798971px;}
.h12{height:30.281567px;}
.h1c{height:30.869100px;}
.h7{height:32.130000px;}
.hd{height:32.444567px;}
.h14{height:34.607567px;}
.h22{height:38.934000px;}
.h2b{height:39.689550px;}
.h17{height:39.799633px;}
.h1f{height:41.688775px;}
.h13{height:42.287471px;}
.h15{height:42.570766px;}
.h16{height:42.629565px;}
.hf{height:43.260433px;}
.h1d{height:44.099550px;}
.h18{height:44.120250px;}
.he{height:44.557800px;}
.h6{height:45.900000px;}
.hc{height:47.586433px;}
.h3{height:48.195000px;}
.h2c{height:50.003520px;}
.h30{height:50.003580px;}
.h2f{height:50.232750px;}
.h31{height:50.233290px;}
.h28{height:50.342220px;}
.h2d{height:50.572950px;}
.h2e{height:50.913150px;}
.h2{height:55.080000px;}
.h27{height:55.447860px;}
.h21{height:55.780920px;}
.h25{height:55.783020px;}
.h1a{height:55.786380px;}
.ha{height:56.238000px;}
.h19{height:56.381520px;}
.h10{height:64.432344px;}
.h5{height:78.030000px;}
.hb{height:103.824433px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:194.253000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:79.268805px;}
.x6{left:85.039365px;}
.x5{left:91.077150px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:176.456700px;}
.x2d{left:180.198450px;}
.xf{left:181.814805px;}
.xe{left:188.447370px;}
.x58{left:194.485200px;}
.x11{left:198.991575px;}
.x2e{left:201.373185px;}
.x4{left:203.484001px;}
.x54{left:205.878480px;}
.x21{left:208.516500px;}
.x10{left:211.238025px;}
.x15{left:240.406200px;}
.x36{left:241.851900px;}
.x1f{left:244.488150px;}
.x16{left:248.400015px;}
.x20{left:253.842450px;}
.x31{left:263.622000px;}
.x53{left:264.727500px;}
.xc{left:266.768430px;}
.x1d{left:269.830170px;}
.x1c{left:275.017200px;}
.x7{left:280.800015px;}
.x45{left:282.330600px;}
.x55{left:287.347320px;}
.x1e{left:290.834535px;}
.x4d{left:293.130090px;}
.x4c{left:297.807750px;}
.x32{left:303.675450px;}
.x3d{left:312.689340px;}
.x3c{left:317.281785px;}
.x47{left:320.172690px;}
.x22{left:322.554030px;}
.x46{left:324.850335px;}
.x3e{left:331.483365px;}
.x48{left:339.136935px;}
.x38{left:347.130090px;}
.x37{left:351.807750px;}
.x2f{left:357.845565px;}
.x13{left:365.669160px;}
.x12{left:370.941600px;}
.x30{left:376.809450px;}
.x14{left:386.673885px;}
.x43{left:392.881800px;}
.x27{left:400.620435px;}
.x23{left:404.361810px;}
.x34{left:410.570370px;}
.x33{left:415.757400px;}
.x4e{left:423.580590px;}
.x51{left:426.471870px;}
.x35{left:429.193635px;}
.x50{left:431.149515px;}
.x4f{left:442.374750px;}
.x52{left:445.351050px;}
.x17{left:450.793665px;}
.x3{left:454.959000px;}
.x18{left:457.256565px;}
.x28{left:462.443985px;}
.x44{left:463.889700px;}
.x40{left:464.909640px;}
.x42{left:467.801805px;}
.x3f{left:469.587300px;}
.x41{left:472.478535px;}
.x4a{left:474.774270px;}
.x19{left:477.495900px;}
.x49{left:479.451915px;}
.x1a{left:484.044015px;}
.x24{left:486.084390px;}
.x4b{left:493.653435px;}
.x1b{left:504.283350px;}
.x56{left:513.296085px;}
.x3a{left:523.161870px;}
.x39{left:527.754315px;}
.x3b{left:541.955835px;}
.x29{left:566.362065px;}
.x25{left:567.892155px;}
.x2a{left:608.456550px;}
.x8{left:611.568900px;}
.x9{left:613.644045px;}
.x57{left:624.442290px;}
.x26{left:649.699935px;}
.x2b{left:670.280235px;}
.xb{left:698.273400px;}
.x2c{left:712.459665px;}
@media print{
.v1{vertical-align:-14.797653pt;}
.va{vertical-align:-12.699253pt;}
.v8{vertical-align:-11.792000pt;}
.v2{vertical-align:-7.861813pt;}
.v6{vertical-align:-6.954613pt;}
.v5{vertical-align:-2.114667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.745867pt;}
.v9{vertical-align:20.258133pt;}
.v3{vertical-align:22.676747pt;}
.v7{vertical-align:44.748640pt;}
.v4{vertical-align:49.587893pt;}
.lsb7{letter-spacing:-1.035986pt;}
.lsb5{letter-spacing:-1.031986pt;}
.lsb8{letter-spacing:-1.015986pt;}
.lsb6{letter-spacing:-1.007987pt;}
.ls9{letter-spacing:-0.007536pt;}
.ls11{letter-spacing:-0.005227pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000033pt;}
.ls20{letter-spacing:0.026089pt;}
.ls1c{letter-spacing:0.026142pt;}
.ls65{letter-spacing:0.030677pt;}
.ls6a{letter-spacing:0.030731pt;}
.ls1d{letter-spacing:0.034517pt;}
.ls29{letter-spacing:0.035957pt;}
.ls1a{letter-spacing:0.036597pt;}
.ls17{letter-spacing:0.037717pt;}
.ls87{letter-spacing:0.042757pt;}
.ls7f{letter-spacing:0.042811pt;}
.lsb4{letter-spacing:0.043995pt;}
.ls73{letter-spacing:0.046064pt;}
.ls64{letter-spacing:0.046117pt;}
.lsb1{letter-spacing:0.051986pt;}
.lsb2{letter-spacing:0.052042pt;}
.lsa4{letter-spacing:0.065813pt;}
.ls8e{letter-spacing:0.065867pt;}
.ls5b{letter-spacing:0.067938pt;}
.ls48{letter-spacing:0.098130pt;}
.ls63{letter-spacing:0.121835pt;}
.ls53{letter-spacing:0.130657pt;}
.lsb3{letter-spacing:0.135995pt;}
.ls34{letter-spacing:0.139022pt;}
.ls92{letter-spacing:0.145821pt;}
.lsae{letter-spacing:0.151995pt;}
.ls67{letter-spacing:0.154754pt;}
.ls50{letter-spacing:0.164630pt;}
.ls7c{letter-spacing:0.172513pt;}
.ls85{letter-spacing:0.174969pt;}
.ls72{letter-spacing:0.207445pt;}
.ls1{letter-spacing:0.218631pt;}
.ls2{letter-spacing:0.218685pt;}
.ls99{letter-spacing:0.251683pt;}
.ls9a{letter-spacing:0.251755pt;}
.ls2f{letter-spacing:0.252395pt;}
.ls44{letter-spacing:0.252448pt;}
.ls91{letter-spacing:0.252662pt;}
.ls32{letter-spacing:0.266542pt;}
.ls51{letter-spacing:0.303660pt;}
.ls88{letter-spacing:0.333131pt;}
.ls74{letter-spacing:0.333557pt;}
.ls21{letter-spacing:0.334464pt;}
.ls25{letter-spacing:0.335851pt;}
.ls6{letter-spacing:0.469338pt;}
.ls5{letter-spacing:0.501338pt;}
.ls4{letter-spacing:0.517351pt;}
.lsac{letter-spacing:0.517435pt;}
.ls3b{letter-spacing:0.522661pt;}
.ls13{letter-spacing:0.527888pt;}
.ls3f{letter-spacing:0.538341pt;}
.ls14{letter-spacing:0.543568pt;}
.ls12{letter-spacing:0.548794pt;}
.lsa{letter-spacing:0.554021pt;}
.ls15{letter-spacing:0.559248pt;}
.lsa8{letter-spacing:0.564474pt;}
.lsb{letter-spacing:0.569701pt;}
.ls3{letter-spacing:0.570672pt;}
.lsd{letter-spacing:0.574927pt;}
.lsa7{letter-spacing:0.580154pt;}
.lsc{letter-spacing:0.585381pt;}
.lsf{letter-spacing:0.590607pt;}
.lsab{letter-spacing:0.590612pt;}
.ls3a{letter-spacing:0.595834pt;}
.ls7{letter-spacing:0.608006pt;}
.ls10{letter-spacing:0.621967pt;}
.ls3c{letter-spacing:0.627194pt;}
.ls66{letter-spacing:1.188662pt;}
.ls75{letter-spacing:1.491596pt;}
.lsa1{letter-spacing:1.491649pt;}
.ls2c{letter-spacing:1.521943pt;}
.ls4b{letter-spacing:2.069739pt;}
.ls89{letter-spacing:2.235755pt;}
.ls95{letter-spacing:2.258521pt;}
.ls98{letter-spacing:2.262602pt;}
.ls78{letter-spacing:2.271980pt;}
.ls8f{letter-spacing:2.272034pt;}
.ls84{letter-spacing:2.281867pt;}
.ls9e{letter-spacing:2.296837pt;}
.ls94{letter-spacing:2.324672pt;}
.ls1e{letter-spacing:2.518688pt;}
.ls56{letter-spacing:2.557369pt;}
.lsa3{letter-spacing:2.560974pt;}
.ls8a{letter-spacing:2.563214pt;}
.ls8d{letter-spacing:2.563615pt;}
.ls9d{letter-spacing:2.563669pt;}
.ls8b{letter-spacing:2.574914pt;}
.ls6c{letter-spacing:2.574967pt;}
.ls6f{letter-spacing:2.584800pt;}
.ls79{letter-spacing:2.599131pt;}
.lsa0{letter-spacing:2.599184pt;}
.ls9b{letter-spacing:2.599611pt;}
.ls7d{letter-spacing:2.599771pt;}
.ls80{letter-spacing:2.599824pt;}
.ls52{letter-spacing:2.681234pt;}
.ls30{letter-spacing:2.782229pt;}
.ls46{letter-spacing:2.860995pt;}
.ls2a{letter-spacing:2.872533pt;}
.ls31{letter-spacing:3.325740pt;}
.ls27{letter-spacing:3.387935pt;}
.ls6b{letter-spacing:3.608822pt;}
.ls96{letter-spacing:3.608876pt;}
.ls7a{letter-spacing:3.911756pt;}
.ls77{letter-spacing:3.911809pt;}
.ls55{letter-spacing:4.243917pt;}
.ls45{letter-spacing:4.243970pt;}
.ls38{letter-spacing:6.786728pt;}
.lsa6{letter-spacing:6.828535pt;}
.lsa5{letter-spacing:7.054968pt;}
.ls54{letter-spacing:7.099943pt;}
.ls39{letter-spacing:7.100283pt;}
.ls33{letter-spacing:7.101650pt;}
.ls58{letter-spacing:7.102663pt;}
.ls2b{letter-spacing:7.103783pt;}
.ls22{letter-spacing:7.104743pt;}
.ls4d{letter-spacing:7.105596pt;}
.ls40{letter-spacing:7.105650pt;}
.ls82{letter-spacing:10.343984pt;}
.ls37{letter-spacing:10.348738pt;}
.ls6e{letter-spacing:10.644997pt;}
.ls69{letter-spacing:10.645051pt;}
.ls36{letter-spacing:10.651831pt;}
.ls60{letter-spacing:11.604622pt;}
.ls4f{letter-spacing:11.660587pt;}
.ls19{letter-spacing:11.759877pt;}
.lsaf{letter-spacing:11.943835pt;}
.lsb0{letter-spacing:12.003855pt;}
.ls7b{letter-spacing:12.601845pt;}
.ls5f{letter-spacing:12.680375pt;}
.ls8c{letter-spacing:12.817622pt;}
.ls9c{letter-spacing:12.818102pt;}
.ls86{letter-spacing:12.820555pt;}
.ls97{letter-spacing:12.863040pt;}
.ls90{letter-spacing:12.863520pt;}
.ls81{letter-spacing:12.864960pt;}
.ls68{letter-spacing:12.865973pt;}
.ls76{letter-spacing:12.866133pt;}
.ls83{letter-spacing:12.904299pt;}
.ls6d{letter-spacing:12.904779pt;}
.lsa2{letter-spacing:12.906699pt;}
.ls93{letter-spacing:12.906752pt;}
.ls71{letter-spacing:13.062864pt;}
.ls4c{letter-spacing:13.265155pt;}
.ls62{letter-spacing:13.368624pt;}
.ls26{letter-spacing:14.060320pt;}
.ls47{letter-spacing:14.210113pt;}
.ls35{letter-spacing:14.211500pt;}
.ls43{letter-spacing:14.362133pt;}
.ls18{letter-spacing:14.362667pt;}
.ls59{letter-spacing:14.362987pt;}
.ls2d{letter-spacing:14.364160pt;}
.ls24{letter-spacing:14.482917pt;}
.ls57{letter-spacing:14.513740pt;}
.ls42{letter-spacing:14.786064pt;}
.ls16{letter-spacing:14.786117pt;}
.ls5d{letter-spacing:14.848811pt;}
.ls5e{letter-spacing:15.685049pt;}
.ls28{letter-spacing:15.734210pt;}
.ls1f{letter-spacing:15.734583pt;}
.ls1b{letter-spacing:16.036450pt;}
.ls61{letter-spacing:16.610156pt;}
.ls7e{letter-spacing:16.911969pt;}
.ls70{letter-spacing:16.912556pt;}
.ls9f{letter-spacing:16.912609pt;}
.ls5a{letter-spacing:17.195581pt;}
.ls4e{letter-spacing:18.455650pt;}
.ls41{letter-spacing:18.455703pt;}
.ls23{letter-spacing:18.758103pt;}
.lse{letter-spacing:21.298449pt;}
.lsaa{letter-spacing:21.554553pt;}
.lsa9{letter-spacing:21.601593pt;}
.ls8{letter-spacing:22.010887pt;}
.lsad{letter-spacing:22.814167pt;}
.ls5c{letter-spacing:29.026646pt;}
.ls3e{letter-spacing:193.039737pt;}
.ls3d{letter-spacing:193.044963pt;}
.ls4a{letter-spacing:246.243295pt;}
.ls49{letter-spacing:246.243349pt;}
.ws160{word-spacing:-22.866433pt;}
.ws29{word-spacing:-22.064221pt;}
.ws145{word-spacing:-21.653859pt;}
.ws149{word-spacing:-21.606820pt;}
.ws7d{word-spacing:-21.350715pt;}
.ws28{word-spacing:-0.554672pt;}
.ws3{word-spacing:-0.128001pt;}
.ws9{word-spacing:-0.054933pt;}
.ws12{word-spacing:-0.053334pt;}
.ws43{word-spacing:-0.052266pt;}
.ws73{word-spacing:-0.049067pt;}
.ws120{word-spacing:-0.047039pt;}
.wsf1{word-spacing:-0.042666pt;}
.ws6{word-spacing:-0.039999pt;}
.ws135{word-spacing:-0.037333pt;}
.wsd7{word-spacing:-0.036586pt;}
.ws121{word-spacing:-0.032927pt;}
.ws34{word-spacing:-0.007536pt;}
.ws0{word-spacing:0.000000pt;}
.ws129{word-spacing:6.850569pt;}
.ws128{word-spacing:9.646795pt;}
.ws1a2{word-spacing:9.675871pt;}
.ws109{word-spacing:10.296428pt;}
.wseb{word-spacing:10.400961pt;}
.ws105{word-spacing:11.057976pt;}
.ws2e{word-spacing:11.072909pt;}
.ws30{word-spacing:11.136374pt;}
.ws101{word-spacing:11.155040pt;}
.ws2d{word-spacing:11.184858pt;}
.ws2c{word-spacing:11.184907pt;}
.ws176{word-spacing:11.188641pt;}
.ws102{word-spacing:11.203543pt;}
.ws106{word-spacing:11.211039pt;}
.ws136{word-spacing:11.218506pt;}
.ws178{word-spacing:11.222240pt;}
.ws131{word-spacing:11.267017pt;}
.ws12e{word-spacing:11.267049pt;}
.ws132{word-spacing:11.311838pt;}
.ws134{word-spacing:11.330465pt;}
.ws104{word-spacing:11.330502pt;}
.ws103{word-spacing:11.364104pt;}
.ws130{word-spacing:11.375305pt;}
.wsfe{word-spacing:11.405204pt;}
.ws100{word-spacing:11.431268pt;}
.wsff{word-spacing:11.446237pt;}
.ws12f{word-spacing:11.453693pt;}
.ws177{word-spacing:11.487303pt;}
.ws18b{word-spacing:11.555846pt;}
.wsf8{word-spacing:11.565701pt;}
.ws2f{word-spacing:11.599301pt;}
.ws18d{word-spacing:11.623845pt;}
.ws188{word-spacing:11.703844pt;}
.ws19d{word-spacing:11.727844pt;}
.ws19f{word-spacing:11.747844pt;}
.ws189{word-spacing:11.755843pt;}
.ws19c{word-spacing:11.763844pt;}
.ws184{word-spacing:11.767843pt;}
.ws199{word-spacing:11.775843pt;}
.ws191{word-spacing:11.787843pt;}
.ws18f{word-spacing:11.791842pt;}
.ws18a{word-spacing:11.803843pt;}
.ws190{word-spacing:11.811842pt;}
.ws185{word-spacing:11.815842pt;}
.ws192{word-spacing:11.847842pt;}
.ws19b{word-spacing:11.855842pt;}
.ws8{word-spacing:11.859842pt;}
.ws18c{word-spacing:11.867842pt;}
.ws193{word-spacing:11.875841pt;}
.ws182{word-spacing:11.879842pt;}
.ws17b{word-spacing:11.883842pt;}
.ws195{word-spacing:11.899841pt;}
.ws17d{word-spacing:11.903842pt;}
.ws187{word-spacing:11.915841pt;}
.ws183{word-spacing:11.919841pt;}
.ws186{word-spacing:11.923841pt;}
.ws19e{word-spacing:11.927841pt;}
.ws198{word-spacing:11.951840pt;}
.ws194{word-spacing:11.979840pt;}
.ws196{word-spacing:11.983841pt;}
.ws197{word-spacing:11.995840pt;}
.ws18e{word-spacing:12.043840pt;}
.ws180{word-spacing:12.055839pt;}
.ws1a1{word-spacing:12.079839pt;}
.ws7{word-spacing:12.091838pt;}
.ws17e{word-spacing:12.095838pt;}
.ws19a{word-spacing:12.115838pt;}
.ws1a0{word-spacing:12.119838pt;}
.ws17c{word-spacing:12.139838pt;}
.ws181{word-spacing:12.155838pt;}
.ws174{word-spacing:12.185448pt;}
.ws17f{word-spacing:12.195837pt;}
.ws12d{word-spacing:12.287846pt;}
.ws172{word-spacing:12.300646pt;}
.ws17a{word-spacing:12.339835pt;}
.ws171{word-spacing:12.385978pt;}
.wsf3{word-spacing:12.390245pt;}
.ws175{word-spacing:12.394512pt;}
.ws12c{word-spacing:12.398779pt;}
.ws119{word-spacing:12.424378pt;}
.ws133{word-spacing:12.441445pt;}
.ws125{word-spacing:12.467045pt;}
.ws124{word-spacing:12.492643pt;}
.ws31{word-spacing:12.514002pt;}
.ws179{word-spacing:12.535310pt;}
.wsf7{word-spacing:12.552377pt;}
.wsf0{word-spacing:12.577976pt;}
.wsf6{word-spacing:12.595043pt;}
.ws32{word-spacing:12.629109pt;}
.ws118{word-spacing:12.663308pt;}
.ws68{word-spacing:12.667575pt;}
.wsf4{word-spacing:12.693175pt;}
.ws117{word-spacing:12.697442pt;}
.ws33{word-spacing:12.710241pt;}
.ws12b{word-spacing:12.752907pt;}
.ws173{word-spacing:12.757174pt;}
.wsf2{word-spacing:12.846773pt;}
.ws13a{word-spacing:12.888829pt;}
.ws63{word-spacing:13.103120pt;}
.ws4d{word-spacing:13.197199pt;}
.ws11f{word-spacing:13.291278pt;}
.ws67{word-spacing:13.474209pt;}
.ws64{word-spacing:13.688500pt;}
.ws151{word-spacing:13.730314pt;}
.ws41{word-spacing:13.777353pt;}
.ws62{word-spacing:14.075269pt;}
.ws3a{word-spacing:14.106629pt;}
.wsf9{word-spacing:14.121600pt;}
.ws115{word-spacing:14.179200pt;}
.ws5d{word-spacing:14.263427pt;}
.wsee{word-spacing:14.280000pt;}
.ws116{word-spacing:14.294400pt;}
.wsef{word-spacing:14.318400pt;}
.ws122{word-spacing:14.332800pt;}
.ws5e{word-spacing:14.378414pt;}
.ws5a{word-spacing:14.488173pt;}
.wscb{word-spacing:14.503836pt;}
.ws59{word-spacing:14.509079pt;}
.ws99{word-spacing:14.602399pt;}
.ws74{word-spacing:14.612212pt;}
.ws137{word-spacing:14.666186pt;}
.ws152{word-spacing:14.680907pt;}
.wsd2{word-spacing:14.690719pt;}
.ws11c{word-spacing:14.725067pt;}
.wsd6{word-spacing:14.791316pt;}
.ws72{word-spacing:14.808480pt;}
.wse6{word-spacing:14.833014pt;}
.ws10c{word-spacing:14.842828pt;}
.ws4c{word-spacing:14.864488pt;}
.wse1{word-spacing:14.970403pt;}
.wsb4{word-spacing:15.303523pt;}
.ws8b{word-spacing:15.423736pt;}
.ws46{word-spacing:15.428963pt;}
.ws70{word-spacing:15.434189pt;}
.wsdc{word-spacing:15.439415pt;}
.ws170{word-spacing:15.449870pt;}
.ws98{word-spacing:15.470775pt;}
.ws89{word-spacing:15.502136pt;}
.ws6f{word-spacing:15.507362pt;}
.ws6d{word-spacing:15.512588pt;}
.ws10a{word-spacing:15.523042pt;}
.ws57{word-spacing:15.528269pt;}
.ws165{word-spacing:15.538721pt;}
.ws10f{word-spacing:15.559628pt;}
.wsb2{word-spacing:15.590987pt;}
.ws71{word-spacing:15.601441pt;}
.ws90{word-spacing:15.606668pt;}
.ws7a{word-spacing:15.611895pt;}
.ws164{word-spacing:15.643253pt;}
.ws6e{word-spacing:15.658934pt;}
.wsb9{word-spacing:15.664161pt;}
.ws4f{word-spacing:15.669386pt;}
.ws114{word-spacing:15.685067pt;}
.ws13c{word-spacing:15.721652pt;}
.wsed{word-spacing:15.742560pt;}
.ws10{word-spacing:15.744158pt;}
.ws6b{word-spacing:15.753012pt;}
.ws166{word-spacing:15.763466pt;}
.wsa7{word-spacing:15.768693pt;}
.ws7e{word-spacing:15.773919pt;}
.ws6c{word-spacing:15.779145pt;}
.wsd9{word-spacing:15.784372pt;}
.wse7{word-spacing:15.794826pt;}
.ws47{word-spacing:15.805278pt;}
.wsf{word-spacing:15.813491pt;}
.wsd5{word-spacing:15.820959pt;}
.wsba{word-spacing:15.831411pt;}
.ws22{word-spacing:15.845492pt;}
.ws13{word-spacing:15.845531pt;}
.ws9f{word-spacing:15.857544pt;}
.ws141{word-spacing:15.862771pt;}
.ws1a{word-spacing:15.866825pt;}
.wsec{word-spacing:15.868002pt;}
.ws17{word-spacing:15.872159pt;}
.wse{word-spacing:15.888158pt;}
.wsb{word-spacing:15.893492pt;}
.wsc{word-spacing:15.909492pt;}
.ws16a{word-spacing:15.915038pt;}
.ws93{word-spacing:15.946398pt;}
.ws15{word-spacing:15.946826pt;}
.wsd{word-spacing:15.957493pt;}
.wse5{word-spacing:15.967304pt;}
.ws23{word-spacing:15.989493pt;}
.ws21{word-spacing:16.000160pt;}
.ws1d{word-spacing:16.005494pt;}
.ws1f{word-spacing:16.037486pt;}
.ws19{word-spacing:16.058828pt;}
.wsa{word-spacing:16.069471pt;}
.ws77{word-spacing:16.108423pt;}
.ws11{word-spacing:16.117495pt;}
.ws76{word-spacing:16.124102pt;}
.wsd8{word-spacing:16.134571pt;}
.ws52{word-spacing:16.139781pt;}
.ws1b{word-spacing:16.186829pt;}
.wsac{word-spacing:16.212955pt;}
.ws20{word-spacing:16.256162pt;}
.ws18{word-spacing:16.261495pt;}
.ws1c{word-spacing:16.277497pt;}
.ws16{word-spacing:16.282833pt;}
.ws1e{word-spacing:16.293496pt;}
.ws9b{word-spacing:16.333167pt;}
.ws81{word-spacing:16.411566pt;}
.ws4a{word-spacing:16.427245pt;}
.ws14{word-spacing:16.432165pt;}
.ws4b{word-spacing:16.432472pt;}
.wsda{word-spacing:16.448153pt;}
.wsbe{word-spacing:16.534933pt;}
.wse4{word-spacing:16.573591pt;}
.ws14a{word-spacing:16.604951pt;}
.ws69{word-spacing:16.677761pt;}
.ws83{word-spacing:16.714709pt;}
.wsea{word-spacing:16.730390pt;}
.ws5b{word-spacing:16.761749pt;}
.ws14c{word-spacing:16.787883pt;}
.ws97{word-spacing:16.929000pt;}
.ws84{word-spacing:16.976040pt;}
.ws14b{word-spacing:17.017854pt;}
.wsa6{word-spacing:17.038759pt;}
.ws5c{word-spacing:17.101479pt;}
.ws113{word-spacing:17.195558pt;}
.ws42{word-spacing:17.237370pt;}
.wsd3{word-spacing:17.268730pt;}
.ws3f{word-spacing:17.315769pt;}
.ws16b{word-spacing:17.352356pt;}
.wsa5{word-spacing:17.373262pt;}
.ws13d{word-spacing:17.524834pt;}
.ws150{word-spacing:17.550967pt;}
.ws44{word-spacing:17.618914pt;}
.ws48{word-spacing:17.629366pt;}
.ws7f{word-spacing:17.645047pt;}
.ws53{word-spacing:17.760032pt;}
.ws5{word-spacing:17.787896pt;}
.ws61{word-spacing:17.848885pt;}
.ws110{word-spacing:17.922057pt;}
.ws10b{word-spacing:17.948190pt;}
.ws45{word-spacing:17.979550pt;}
.ws13f{word-spacing:17.995229pt;}
.ws16d{word-spacing:18.026589pt;}
.ws168{word-spacing:18.042270pt;}
.ws169{word-spacing:18.183387pt;}
.ws16e{word-spacing:18.225201pt;}
.ws111{word-spacing:18.408133pt;}
.ws9e{word-spacing:18.528344pt;}
.wsbd{word-spacing:18.544024pt;}
.ws139{word-spacing:18.601516pt;}
.ws60{word-spacing:18.627649pt;}
.ws11a{word-spacing:18.657900pt;}
.ws5f{word-spacing:18.711276pt;}
.ws40{word-spacing:18.716503pt;}
.ws9c{word-spacing:18.847168pt;}
.ws58{word-spacing:18.868074pt;}
.wse2{word-spacing:18.888980pt;}
.ws9d{word-spacing:18.967379pt;}
.wsb6{word-spacing:19.035326pt;}
.ws16f{word-spacing:19.056233pt;}
.ws55{word-spacing:19.139859pt;}
.ws3b{word-spacing:19.218258pt;}
.wsaa{word-spacing:19.254843pt;}
.wsdb{word-spacing:19.270524pt;}
.wsae{word-spacing:19.380282pt;}
.wsaf{word-spacing:19.401189pt;}
.wsab{word-spacing:19.432548pt;}
.ws140{word-spacing:19.469135pt;}
.wsc7{word-spacing:19.521401pt;}
.ws91{word-spacing:19.568440pt;}
.ws38{word-spacing:19.688653pt;}
.ws92{word-spacing:19.735692pt;}
.wsb5{word-spacing:19.746146pt;}
.ws50{word-spacing:19.793185pt;}
.ws39{word-spacing:19.965663pt;}
.ws82{word-spacing:20.007475pt;}
.wsa4{word-spacing:20.012702pt;}
.ws54{word-spacing:20.017929pt;}
.ws3e{word-spacing:20.075422pt;}
.wsca{word-spacing:20.080649pt;}
.ws163{word-spacing:20.096328pt;}
.ws7c{word-spacing:20.106782pt;}
.wsc4{word-spacing:20.122462pt;}
.ws8d{word-spacing:20.138141pt;}
.ws156{word-spacing:20.153822pt;}
.wscf{word-spacing:20.169500pt;}
.wse0{word-spacing:20.179954pt;}
.ws144{word-spacing:20.179955pt;}
.ws146{word-spacing:20.206087pt;}
.ws8e{word-spacing:20.242673pt;}
.wsb7{word-spacing:20.300166pt;}
.ws37{word-spacing:20.341980pt;}
.ws25{word-spacing:20.352204pt;}
.wse9{word-spacing:20.357659pt;}
.ws27{word-spacing:20.629540pt;}
.ws36{word-spacing:20.645123pt;}
.wse8{word-spacing:20.671265pt;}
.ws24{word-spacing:20.677540pt;}
.ws4e{word-spacing:20.728749pt;}
.wse3{word-spacing:20.801921pt;}
.ws16c{word-spacing:20.838508pt;}
.ws95{word-spacing:20.953493pt;}
.ws2b{word-spacing:20.997543pt;}
.ws1{word-spacing:21.021867pt;}
.ws78{word-spacing:21.199144pt;}
.ws35{word-spacing:21.225277pt;}
.wsbc{word-spacing:21.303676pt;}
.ws15e{word-spacing:21.335036pt;}
.ws79{word-spacing:21.371621pt;}
.ws51{word-spacing:21.439568pt;}
.ws13b{word-spacing:21.444794pt;}
.ws88{word-spacing:21.549326pt;}
.ws161{word-spacing:21.570233pt;}
.ws26{word-spacing:21.600246pt;}
.ws15f{word-spacing:21.622500pt;}
.ws87{word-spacing:21.732258pt;}
.ws162{word-spacing:21.763617pt;}
.ws112{word-spacing:21.779298pt;}
.ws14d{word-spacing:21.852471pt;}
.ws2a{word-spacing:21.898942pt;}
.ws7b{word-spacing:21.972682pt;}
.ws13e{word-spacing:21.998815pt;}
.wsd0{word-spacing:22.124254pt;}
.ws86{word-spacing:22.150387pt;}
.wsd1{word-spacing:22.192201pt;}
.ws6a{word-spacing:22.458758pt;}
.ws65{word-spacing:22.495344pt;}
.ws9a{word-spacing:22.531931pt;}
.ws8a{word-spacing:22.594649pt;}
.ws159{word-spacing:22.631235pt;}
.ws75{word-spacing:22.855980pt;}
.ws138{word-spacing:23.065044pt;}
.ws153{word-spacing:23.295016pt;}
.wsb8{word-spacing:23.415228pt;}
.ws80{word-spacing:23.425681pt;}
.wsbb{word-spacing:23.498854pt;}
.wsa8{word-spacing:23.587705pt;}
.wsd4{word-spacing:23.634746pt;}
.wsc1{word-spacing:23.687011pt;}
.ws96{word-spacing:23.739278pt;}
.wsa2{word-spacing:23.760185pt;}
.wsc8{word-spacing:23.843810pt;}
.wsde{word-spacing:24.026742pt;}
.ws49{word-spacing:24.042421pt;}
.ws11e{word-spacing:24.094687pt;}
.ws8c{word-spacing:24.230580pt;}
.wsb3{word-spacing:24.356018pt;}
.wsdf{word-spacing:24.523270pt;}
.ws66{word-spacing:24.575536pt;}
.ws85{word-spacing:24.962306pt;}
.wsc9{word-spacing:25.265448pt;}
.ws167{word-spacing:25.296809pt;}
.ws3c{word-spacing:25.479740pt;}
.ws157{word-spacing:25.537232pt;}
.wsa1{word-spacing:25.589499pt;}
.wsc0{word-spacing:25.594726pt;}
.wsad{word-spacing:25.803791pt;}
.wsc6{word-spacing:25.939682pt;}
.wscd{word-spacing:25.965815pt;}
.wsb1{word-spacing:26.002401pt;}
.wscc{word-spacing:26.080801pt;}
.ws15c{word-spacing:26.117386pt;}
.wsce{word-spacing:26.216693pt;}
.ws15d{word-spacing:26.232373pt;}
.ws10d{word-spacing:26.253278pt;}
.ws158{word-spacing:26.315998pt;}
.wsbf{word-spacing:26.472797pt;}
.wsdd{word-spacing:26.478023pt;}
.ws3d{word-spacing:26.488477pt;}
.ws10e{word-spacing:26.692315pt;}
.wsc3{word-spacing:27.518120pt;}
.wsc5{word-spacing:28.061686pt;}
.ws148{word-spacing:28.108727pt;}
.ws8f{word-spacing:28.307337pt;}
.wsb0{word-spacing:28.390964pt;}
.ws14e{word-spacing:28.422322pt;}
.ws155{word-spacing:28.474589pt;}
.ws154{word-spacing:28.505950pt;}
.ws143{word-spacing:28.641840pt;}
.wsc2{word-spacing:28.809093pt;}
.ws94{word-spacing:28.997252pt;}
.ws15b{word-spacing:29.033836pt;}
.ws147{word-spacing:29.075649pt;}
.wsa9{word-spacing:29.133144pt;}
.wsa3{word-spacing:29.195861pt;}
.ws11d{word-spacing:29.221994pt;}
.wsa0{word-spacing:29.457193pt;}
.ws56{word-spacing:29.514686pt;}
.ws142{word-spacing:29.681938pt;}
.ws14f{word-spacing:31.119257pt;}
.ws15a{word-spacing:35.624598pt;}
.ws2{word-spacing:38.400160pt;}
.ws4{word-spacing:38.425761pt;}
.ws108{word-spacing:39.074182pt;}
.wsf5{word-spacing:76.525958pt;}
.ws107{word-spacing:104.537510pt;}
.ws11b{word-spacing:170.856531pt;}
.wsfc{word-spacing:205.091832pt;}
.wsfa{word-spacing:205.411828pt;}
.wsfb{word-spacing:219.299654pt;}
.wsfd{word-spacing:225.763551pt;}
.ws123{word-spacing:234.561367pt;}
.ws126{word-spacing:253.522113pt;}
.ws127{word-spacing:259.870876pt;}
.ws12a{word-spacing:653.547039pt;}
._1e{margin-left:-212.440911pt;}
._48{margin-left:-22.253060pt;}
._9{margin-left:-21.344177pt;}
._18{margin-left:-19.687137pt;}
._33{margin-left:-12.680375pt;}
._2{margin-left:-7.244840pt;}
._1f{margin-left:-6.227388pt;}
._11{margin-left:-4.833783pt;}
._10{margin-left:-3.318973pt;}
._13{margin-left:-2.320593pt;}
._8{margin-left:-1.210714pt;}
._5{width:0.976010pt;}
._e{width:1.962070pt;}
._37{width:3.714845pt;}
._3a{width:6.550286pt;}
._0{width:7.959467pt;}
._3b{width:9.131603pt;}
._b{width:10.643578pt;}
._2c{width:11.566496pt;}
._3{width:12.931827pt;}
._12{width:13.876659pt;}
._6{width:15.466819pt;}
._4{width:16.837502pt;}
._d{width:18.288005pt;}
._19{width:19.262550pt;}
._c{width:20.655575pt;}
._7{width:21.962887pt;}
._a{width:22.938896pt;}
._17{width:23.919113pt;}
._1b{width:24.821028pt;}
._15{width:25.898351pt;}
._1c{width:26.857067pt;}
._f{width:28.056459pt;}
._1a{width:29.513565pt;}
._14{width:31.132439pt;}
._49{width:32.334329pt;}
._32{width:44.061314pt;}
._23{width:52.782279pt;}
._34{width:64.024822pt;}
._30{width:67.792220pt;}
._31{width:70.514316pt;}
._1d{width:72.262110pt;}
._25{width:78.083273pt;}
._36{width:84.423481pt;}
._4d{width:100.892603pt;}
._35{width:104.557631pt;}
._4c{width:111.640209pt;}
._4a{width:125.899221pt;}
._24{width:136.045237pt;}
._22{width:152.484490pt;}
._2a{width:204.929694pt;}
._39{width:246.772373pt;}
._2f{width:255.544535pt;}
._26{width:296.486961pt;}
._28{width:309.069199pt;}
._29{width:311.757165pt;}
._2b{width:317.820027pt;}
._44{width:319.057345pt;}
._27{width:329.382549pt;}
._3f{width:330.880135pt;}
._2e{width:342.869318pt;}
._45{width:344.652757pt;}
._20{width:345.932738pt;}
._46{width:349.840960pt;}
._40{width:357.768301pt;}
._41{width:362.235472pt;}
._3d{width:477.007409pt;}
._21{width:506.391545pt;}
._4b{width:604.242030pt;}
._3e{width:647.424449pt;}
._2d{width:666.833248pt;}
._43{width:672.217722pt;}
._47{width:704.370960pt;}
._3c{width:721.680562pt;}
._42{width:729.471710pt;}
._38{width:872.863756pt;}
._4e{width:1595.380704pt;}
._16{width:1617.148971pt;}
._1{width:1756.629387pt;}
.fs14{font-size:24.885867pt;}
.fs13{font-size:28.440000pt;}
.fs16{font-size:32.927467pt;}
.fs11{font-size:34.839467pt;}
.fs10{font-size:36.585600pt;}
.fsc{font-size:37.332800pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.999467pt;}
.fsd{font-size:42.666133pt;}
.fs15{font-size:47.039467pt;}
.fs12{font-size:48.000000pt;}
.fsf{font-size:49.067200pt;}
.fse{font-size:52.266133pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.333867pt;}
.fs9{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.667200pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fsb{font-size:75.359467pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.268067pt;}
.y5{bottom:59.133337pt;}
.y4f{bottom:70.676443pt;}
.y7f{bottom:80.258973pt;}
.yd5{bottom:80.261787pt;}
.ya9{bottom:80.264480pt;}
.y1ad{bottom:80.267213pt;}
.y1cd{bottom:80.268347pt;}
.yf9{bottom:80.275067pt;}
.y12b{bottom:80.277200pt;}
.y4e{bottom:81.334963pt;}
.y12a{bottom:84.434667pt;}
.y4{bottom:86.333337pt;}
.y154{bottom:87.156400pt;}
.y129{bottom:91.615360pt;}
.y17b{bottom:91.615733pt;}
.y4d{bottom:91.993470pt;}
.y17a{bottom:95.773200pt;}
.y7e{bottom:99.081307pt;}
.yd4{bottom:99.084120pt;}
.ya8{bottom:99.086827pt;}
.y1ac{bottom:99.089547pt;}
.y1cc{bottom:99.090680pt;}
.yf8{bottom:99.097413pt;}
.y4c{bottom:102.651990pt;}
.y128{bottom:102.954267pt;}
.y153{bottom:104.693240pt;}
.y179{bottom:109.833067pt;}
.y177{bottom:109.833160pt;}
.y178{bottom:114.519733pt;}
.y7d{bottom:117.979440pt;}
.yd3{bottom:117.982253pt;}
.ya7{bottom:117.984947pt;}
.y1ab{bottom:117.987680pt;}
.y1cb{bottom:117.988813pt;}
.yf7{bottom:117.995533pt;}
.y127{bottom:121.172827pt;}
.y152{bottom:122.230093pt;}
.y21{bottom:123.790666pt;}
.y176{bottom:128.503867pt;}
.y174{bottom:128.504213pt;}
.y175{bottom:133.190533pt;}
.y7c{bottom:136.877573pt;}
.yd2{bottom:136.880373pt;}
.ya6{bottom:136.883080pt;}
.y1aa{bottom:136.885813pt;}
.y1ca{bottom:136.886933pt;}
.yf6{bottom:136.893667pt;}
.y151{bottom:139.766933pt;}
.y126{bottom:139.767800pt;}
.y173{bottom:145.965333pt;}
.y7b{bottom:155.699907pt;}
.yd1{bottom:155.702720pt;}
.ya5{bottom:155.705413pt;}
.y1a9{bottom:155.708147pt;}
.y1c9{bottom:155.709280pt;}
.yf5{bottom:155.716013pt;}
.y150{bottom:157.303867pt;}
.y125{bottom:158.438493pt;}
.y172{bottom:163.502400pt;}
.y7a{bottom:174.598040pt;}
.yd0{bottom:174.600853pt;}
.ya4{bottom:174.603547pt;}
.y1a8{bottom:174.606280pt;}
.y1c8{bottom:174.607413pt;}
.yf4{bottom:174.614133pt;}
.y18{bottom:175.052000pt;}
.y124{bottom:177.109200pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yf3{bottom:191.319600pt;}
.y79{bottom:193.420373pt;}
.ycf{bottom:193.423187pt;}
.ya3{bottom:193.425893pt;}
.y1a7{bottom:193.428613pt;}
.y1c7{bottom:193.429747pt;}
.y145{bottom:193.431467pt;}
.yf2{bottom:193.436133pt;}
.y123{bottom:195.779893pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y78{bottom:212.318507pt;}
.yce{bottom:212.321320pt;}
.ya2{bottom:212.324013pt;}
.y1a6{bottom:212.326747pt;}
.y1c6{bottom:212.327880pt;}
.y144{bottom:212.329600pt;}
.y122{bottom:214.450600pt;}
.y185{bottom:218.003200pt;}
.yf0{bottom:226.166707pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y77{bottom:231.216627pt;}
.ycd{bottom:231.219440pt;}
.ya1{bottom:231.222147pt;}
.y1a5{bottom:231.224880pt;}
.y1c5{bottom:231.226000pt;}
.y143{bottom:231.227733pt;}
.y121{bottom:233.121293pt;}
.y184{bottom:236.145120pt;}
.y48{bottom:238.935590pt;}
.yee{bottom:240.150307pt;}
.yf1{bottom:240.151067pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y76{bottom:250.038973pt;}
.ycc{bottom:250.041787pt;}
.ya0{bottom:250.044480pt;}
.y1a4{bottom:250.047213pt;}
.y142{bottom:250.050067pt;}
.y120{bottom:251.791987pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y183{bottom:254.815813pt;}
.yef{bottom:255.193720pt;}
.y47{bottom:258.967790pt;}
.y75{bottom:268.937107pt;}
.ycb{bottom:268.939920pt;}
.y9f{bottom:268.942613pt;}
.y1c4{bottom:268.945160pt;}
.y1a3{bottom:268.945347pt;}
.y141{bottom:268.948200pt;}
.y11f{bottom:270.462933pt;}
.y11d{bottom:270.463707pt;}
.y182{bottom:272.352667pt;}
.y46{bottom:274.917283pt;}
.y11e{bottom:275.225200pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yed{bottom:282.329080pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y74{bottom:287.759440pt;}
.yca{bottom:287.762253pt;}
.y9e{bottom:287.764947pt;}
.y1c3{bottom:287.767507pt;}
.y1a2{bottom:287.767680pt;}
.y140{bottom:287.770533pt;}
.y11c{bottom:289.134400pt;}
.y181{bottom:289.889733pt;}
.y45{bottom:297.594843pt;}
.yec{bottom:301.151427pt;}
.y200{bottom:305.238787pt;}
.y73{bottom:306.657573pt;}
.yc9{bottom:306.660387pt;}
.y9d{bottom:306.663080pt;}
.y1c2{bottom:306.665640pt;}
.y1a1{bottom:306.665813pt;}
.y13f{bottom:306.668667pt;}
.y11b{bottom:307.805107pt;}
.yf{bottom:309.452000pt;}
.y44{bottom:313.620336pt;}
.y1ff{bottom:317.257627pt;}
.yeb{bottom:320.049547pt;}
.y180{bottom:320.428267pt;}
.y72{bottom:325.555693pt;}
.yc8{bottom:325.558507pt;}
.y9c{bottom:325.561213pt;}
.y1c1{bottom:325.563760pt;}
.y1a0{bottom:325.563933pt;}
.y13e{bottom:325.566787pt;}
.y11a{bottom:326.475800pt;}
.y1fe{bottom:329.276467pt;}
.y43{bottom:329.569830pt;}
.y17f{bottom:338.570333pt;}
.yea{bottom:338.947680pt;}
.y1fd{bottom:341.295307pt;}
.ye{bottom:343.809333pt;}
.y71{bottom:344.378040pt;}
.yc7{bottom:344.380853pt;}
.y9b{bottom:344.383547pt;}
.y1c0{bottom:344.386107pt;}
.y19f{bottom:344.386280pt;}
.y13d{bottom:344.389133pt;}
.y119{bottom:345.146507pt;}
.y42{bottom:345.595323pt;}
.y1fc{bottom:353.238147pt;}
.y17e{bottom:357.241027pt;}
.ye9{bottom:357.770013pt;}
.y41{bottom:361.620816pt;}
.y118{bottom:362.683347pt;}
.yd{bottom:362.706666pt;}
.y70{bottom:363.276173pt;}
.yc6{bottom:363.278987pt;}
.y9a{bottom:363.281680pt;}
.y1bf{bottom:363.284227pt;}
.y19e{bottom:363.284413pt;}
.y13c{bottom:363.287267pt;}
.y1fb{bottom:365.256987pt;}
.y17d{bottom:374.777867pt;}
.ye8{bottom:376.667720pt;}
.y1fa{bottom:377.275827pt;}
.y40{bottom:377.570310pt;}
.y117{bottom:380.220413pt;}
.y6f{bottom:382.098507pt;}
.yc5{bottom:382.101320pt;}
.y99{bottom:382.104013pt;}
.y1be{bottom:382.106573pt;}
.y19d{bottom:382.106747pt;}
.y13b{bottom:382.109600pt;}
.y1f9{bottom:389.294667pt;}
.y17c{bottom:392.314813pt;}
.y3f{bottom:393.595803pt;}
.y6e{bottom:400.996640pt;}
.yc4{bottom:400.999453pt;}
.y98{bottom:401.002147pt;}
.y1bd{bottom:401.004707pt;}
.y19c{bottom:401.004880pt;}
.y13a{bottom:401.007733pt;}
.y1f8{bottom:401.237507pt;}
.y3e{bottom:409.621296pt;}
.y1f7{bottom:413.256347pt;}
.ye7{bottom:414.613680pt;}
.y168{bottom:416.503867pt;}
.yc3{bottom:419.821787pt;}
.y97{bottom:419.824493pt;}
.y10d{bottom:419.828587pt;}
.y139{bottom:419.829880pt;}
.y6d{bottom:419.894760pt;}
.y19b{bottom:419.903000pt;}
.y1f6{bottom:425.275187pt;}
.y3d{bottom:425.570790pt;}
.ye6{bottom:433.436013pt;}
.y1f5{bottom:437.294027pt;}
.y6c{bottom:438.717107pt;}
.yc2{bottom:438.719920pt;}
.y96{bottom:438.722613pt;}
.y1bc{bottom:438.723867pt;}
.y19a{bottom:438.725347pt;}
.y10c{bottom:438.726720pt;}
.y3c{bottom:445.602990pt;}
.yc{bottom:446.990669pt;}
.y167{bottom:448.856653pt;}
.y1f4{bottom:449.236867pt;}
.ye5{bottom:452.334147pt;}
.y6b{bottom:457.615240pt;}
.yc1{bottom:457.618040pt;}
.y95{bottom:457.620747pt;}
.y1bb{bottom:457.621987pt;}
.y199{bottom:457.623480pt;}
.y10b{bottom:457.624840pt;}
.y1f3{bottom:461.255707pt;}
.y165{bottom:461.480267pt;}
.y3b{bottom:461.628483pt;}
.yb{bottom:462.990669pt;}
.ye4{bottom:471.156480pt;}
.y138{bottom:472.137467pt;}
.y1f2{bottom:473.274547pt;}
.y109{bottom:474.255080pt;}
.y166{bottom:475.010947pt;}
.y6a{bottom:476.437573pt;}
.yc0{bottom:476.440387pt;}
.y94{bottom:476.443080pt;}
.y1ba{bottom:476.444333pt;}
.y198{bottom:476.445813pt;}
.y108{bottom:476.446320pt;}
.y10a{bottom:476.447187pt;}
.y3a{bottom:477.577976pt;}
.ya{bottom:478.990666pt;}
.y1f1{bottom:485.293387pt;}
.y137{bottom:491.035587pt;}
.y39{bottom:493.603470pt;}
.y9{bottom:494.990666pt;}
.y69{bottom:495.335707pt;}
.ybf{bottom:495.338520pt;}
.y93{bottom:495.341213pt;}
.y1b9{bottom:495.342453pt;}
.y197{bottom:495.343947pt;}
.y107{bottom:495.344453pt;}
.y1f0{bottom:497.236227pt;}
.y164{bottom:499.351040pt;}
.ye3{bottom:506.305227pt;}
.y1ef{bottom:509.255067pt;}
.y38{bottom:509.628963pt;}
.y136{bottom:509.933720pt;}
.y162{bottom:511.974653pt;}
.y106{bottom:512.050253pt;}
.y68{bottom:514.158040pt;}
.ybe{bottom:514.160853pt;}
.y92{bottom:514.163560pt;}
.y1b8{bottom:514.164800pt;}
.y196{bottom:514.166280pt;}
.y105{bottom:514.166787pt;}
.y1ee{bottom:521.273907pt;}
.y163{bottom:525.505333pt;}
.y37{bottom:525.578456pt;}
.y135{bottom:528.755853pt;}
.y195{bottom:530.872400pt;}
.y67{bottom:533.056173pt;}
.ybd{bottom:533.058987pt;}
.y91{bottom:533.061680pt;}
.y1b7{bottom:533.062933pt;}
.y194{bottom:533.064413pt;}
.y1ed{bottom:533.292747pt;}
.ye2{bottom:539.258333pt;}
.y36{bottom:541.603950pt;}
.y1ec{bottom:545.235587pt;}
.y103{bottom:549.543880pt;}
.y161{bottom:550.072387pt;}
.y66{bottom:551.954293pt;}
.ybc{bottom:551.957107pt;}
.y90{bottom:551.959813pt;}
.y1b6{bottom:551.961053pt;}
.y1eb{bottom:557.254427pt;}
.y35{bottom:557.629443pt;}
.y104{bottom:563.527467pt;}
.y101{bottom:563.527920pt;}
.y193{bottom:565.265600pt;}
.y1ea{bottom:569.273267pt;}
.y65{bottom:570.776640pt;}
.ybb{bottom:570.779453pt;}
.ye1{bottom:570.780040pt;}
.y8f{bottom:570.782147pt;}
.y1b5{bottom:570.783400pt;}
.y8{bottom:573.786667pt;}
.y34{bottom:577.585643pt;}
.y191{bottom:577.889613pt;}
.y102{bottom:578.569987pt;}
.y134{bottom:581.063667pt;}
.y1e9{bottom:581.292107pt;}
.y64{bottom:589.674773pt;}
.yba{bottom:589.677587pt;}
.ye0{bottom:589.678160pt;}
.y8e{bottom:589.680280pt;}
.y1b4{bottom:589.681520pt;}
.y192{bottom:592.100667pt;}
.y7{bottom:592.685334pt;}
.y1e8{bottom:593.234947pt;}
.y33{bottom:593.611136pt;}
.y133{bottom:599.961800pt;}
.y160{bottom:601.473973pt;}
.y1e7{bottom:605.253787pt;}
.y100{bottom:608.352667pt;}
.y63{bottom:608.497107pt;}
.yb9{bottom:608.499920pt;}
.ydf{bottom:608.500507pt;}
.y8d{bottom:608.502613pt;}
.y1b3{bottom:608.503867pt;}
.y32{bottom:613.567336pt;}
.y15e{bottom:614.097453pt;}
.y190{bottom:614.475560pt;}
.y1e6{bottom:617.272627pt;}
.y132{bottom:618.784133pt;}
.y18e{bottom:627.099080pt;}
.yff{bottom:627.174680pt;}
.y62{bottom:627.395240pt;}
.yb8{bottom:627.398053pt;}
.yde{bottom:627.398640pt;}
.y8c{bottom:627.400747pt;}
.y1b2{bottom:627.401453pt;}
.y15f{bottom:627.628253pt;}
.y1e5{bottom:629.291467pt;}
.y31{bottom:629.592830pt;}
.y18f{bottom:640.554120pt;}
.y1e4{bottom:641.234307pt;}
.y6{bottom:645.598667pt;}
.y30{bottom:645.618323pt;}
.y61{bottom:646.293360pt;}
.yb7{bottom:646.296173pt;}
.ydd{bottom:646.296760pt;}
.y8b{bottom:646.298880pt;}
.y15d{bottom:651.968387pt;}
.y1e3{bottom:653.253147pt;}
.y131{bottom:659.753907pt;}
.y2f{bottom:661.567816pt;}
.y15b{bottom:664.592000pt;}
.y18d{bottom:664.969853pt;}
.y60{bottom:665.115707pt;}
.yb6{bottom:665.118520pt;}
.ydc{bottom:665.119107pt;}
.yfe{bottom:665.119427pt;}
.y8a{bottom:665.121213pt;}
.y1e2{bottom:665.271987pt;}
.y1b1{bottom:667.992747pt;}
.y3{bottom:668.977329pt;}
.y12f{bottom:673.814000pt;}
.y2b{bottom:676.762590pt;}
.y1e1{bottom:677.290813pt;}
.y2e{bottom:677.593310pt;}
.y15c{bottom:678.122680pt;}
.y5f{bottom:684.013840pt;}
.yb5{bottom:684.016653pt;}
.ydb{bottom:684.017227pt;}
.yfd{bottom:684.017547pt;}
.y89{bottom:684.018640pt;}
.y1b0{bottom:686.890880pt;}
.y2a{bottom:688.705430pt;}
.y130{bottom:688.780920pt;}
.y1e0{bottom:689.234653pt;}
.y2d{bottom:693.618803pt;}
.y12e{bottom:698.683107pt;}
.y29{bottom:700.724270pt;}
.y1df{bottom:701.253493pt;}
.y15a{bottom:702.689613pt;}
.y5e{bottom:702.836173pt;}
.yb4{bottom:702.838987pt;}
.yda{bottom:702.839573pt;}
.yfc{bottom:702.839893pt;}
.y1af{bottom:705.713213pt;}
.y28{bottom:712.743110pt;}
.y12c{bottom:712.743160pt;}
.y1de{bottom:713.272293pt;}
.y18c{bottom:716.220027pt;}
.y2c{bottom:717.580963pt;}
.y5d{bottom:721.734307pt;}
.yb3{bottom:721.737120pt;}
.yd9{bottom:721.737707pt;}
.yfb{bottom:721.738027pt;}
.y1ae{bottom:724.610840pt;}
.y27{bottom:724.761950pt;}
.y88{bottom:727.556747pt;}
.y12d{bottom:727.710120pt;}
.y18a{bottom:728.843827pt;}
.y5c{bottom:740.632427pt;}
.y159{bottom:740.634920pt;}
.yb2{bottom:740.635240pt;}
.yd8{bottom:740.635827pt;}
.yfa{bottom:740.636147pt;}
.y18b{bottom:743.055093pt;}
.y87{bottom:746.454880pt;}
.y1dd{bottom:749.255773pt;}
.y5b{bottom:759.454773pt;}
.y158{bottom:759.457267pt;}
.yb1{bottom:759.457587pt;}
.yd7{bottom:759.458173pt;}
.y86{bottom:765.353013pt;}
.y189{bottom:765.354093pt;}
.y26{bottom:768.906896pt;}
.y1dc{bottom:773.293453pt;}
.y187{bottom:777.977707pt;}
.y5a{bottom:778.352893pt;}
.y157{bottom:778.355387pt;}
.yb0{bottom:778.355707pt;}
.y14f{bottom:779.035973pt;}
.y1d2{bottom:781.454347pt;}
.y2{bottom:781.661334pt;}
.y14e{bottom:783.117840pt;}
.y85{bottom:784.175347pt;}
.y1db{bottom:785.236293pt;}
.y14d{bottom:790.298707pt;}
.y188{bottom:791.508387pt;}
.y1d1{bottom:792.793253pt;}
.y59{bottom:797.175240pt;}
.yaf{bottom:797.177733pt;}
.y1da{bottom:797.255133pt;}
.y116{bottom:797.480147pt;}
.y25{bottom:800.958270pt;}
.y14c{bottom:801.637613pt;}
.y84{bottom:803.073480pt;}
.y1d0{bottom:804.132160pt;}
.y115{bottom:815.697893pt;}
.y186{bottom:815.848627pt;}
.yd6{bottom:816.072973pt;}
.y58{bottom:816.073373pt;}
.y156{bottom:816.075440pt;}
.y83{bottom:819.022493pt;}
.y14b{bottom:819.855013pt;}
.y1d9{bottom:821.292813pt;}
.y1cf{bottom:822.349547pt;}
.y1d8{bottom:833.235653pt;}
.y114{bottom:834.368600pt;}
.yae{bottom:834.895307pt;}
.y57{bottom:834.895707pt;}
.y24{bottom:835.579203pt;}
.y82{bottom:837.844827pt;}
.y14a{bottom:838.525720pt;}
.y1d7{bottom:845.254493pt;}
.y171{bottom:846.311600pt;}
.y113{bottom:846.311920pt;}
.y170{bottom:850.469080pt;}
.y1ce{bottom:852.963573pt;}
.yad{bottom:853.793440pt;}
.y56{bottom:853.793840pt;}
.y81{bottom:856.742960pt;}
.y149{bottom:857.196693pt;}
.y147{bottom:857.197120pt;}
.y16f{bottom:857.650227pt;}
.y1{bottom:859.312000pt;}
.y16e{bottom:861.807693pt;}
.y148{bottom:861.958907pt;}
.y112{bottom:864.982613pt;}
.y1d6{bottom:869.292173pt;}
.y23{bottom:870.273750pt;}
.yac{bottom:872.691560pt;}
.y55{bottom:872.691960pt;}
.y16d{bottom:875.867427pt;}
.y16b{bottom:875.867707pt;}
.y146{bottom:875.867813pt;}
.y16c{bottom:880.629720pt;}
.y1d5{bottom:881.235013pt;}
.y111{bottom:882.519467pt;}
.yab{bottom:891.513907pt;}
.y54{bottom:891.514307pt;}
.y16a{bottom:894.538413pt;}
.y110{bottom:894.538507pt;}
.y169{bottom:899.300693pt;}
.y1d4{bottom:905.272693pt;}
.yaa{bottom:910.412040pt;}
.y53{bottom:910.412440pt;}
.y10f{bottom:912.075360pt;}
.y1d3{bottom:917.291533pt;}
.y22{bottom:920.919427pt;}
.y52{bottom:929.234373pt;}
.y10e{bottom:929.612387pt;}
.y51{bottom:991.067123pt;}
.y4a{bottom:997.167963pt;}
.y49{bottom:997.436030pt;}
.y155{bottom:1004.368387pt;}
.y50{bottom:1004.371496pt;}
.y80{bottom:1004.371507pt;}
.h11{height:14.460000pt;}
.h24{height:17.942710pt;}
.h23{height:20.505240pt;}
.h29{height:23.345574pt;}
.h2a{height:24.695600pt;}
.h1e{height:24.701182pt;}
.h20{height:25.223774pt;}
.h1b{height:25.939190pt;}
.h26{height:26.487974pt;}
.h12{height:26.916949pt;}
.h1c{height:27.439200pt;}
.h7{height:28.560000pt;}
.hd{height:28.839615pt;}
.h14{height:30.762282pt;}
.h22{height:34.608000pt;}
.h2b{height:35.279600pt;}
.h17{height:35.377451pt;}
.h1f{height:37.056689pt;}
.h13{height:37.588863pt;}
.h15{height:37.840681pt;}
.h16{height:37.892947pt;}
.hf{height:38.453718pt;}
.h1d{height:39.199600pt;}
.h18{height:39.218000pt;}
.he{height:39.606933pt;}
.h6{height:40.800000pt;}
.hc{height:42.299051pt;}
.h3{height:42.840000pt;}
.h2c{height:44.447573pt;}
.h30{height:44.447627pt;}
.h2f{height:44.651333pt;}
.h31{height:44.651813pt;}
.h28{height:44.748640pt;}
.h2d{height:44.953733pt;}
.h2e{height:45.256133pt;}
.h2{height:48.960000pt;}
.h27{height:49.286987pt;}
.h21{height:49.583040pt;}
.h25{height:49.584907pt;}
.h1a{height:49.587893pt;}
.ha{height:49.989333pt;}
.h19{height:50.116907pt;}
.h10{height:57.273195pt;}
.h5{height:69.360000pt;}
.hb{height:92.288385pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:172.669333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:70.461160pt;}
.x6{left:75.590547pt;}
.x5{left:80.957467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:156.850400pt;}
.x2d{left:160.176400pt;}
.xf{left:161.613160pt;}
.xe{left:167.508773pt;}
.x58{left:172.875733pt;}
.x11{left:176.881400pt;}
.x2e{left:178.998387pt;}
.x4{left:180.874667pt;}
.x54{left:183.003093pt;}
.x21{left:185.348000pt;}
.x10{left:187.767133pt;}
.x15{left:213.694400pt;}
.x36{left:214.979467pt;}
.x1f{left:217.322800pt;}
.x16{left:220.800013pt;}
.x20{left:225.637733pt;}
.x31{left:234.330667pt;}
.x53{left:235.313333pt;}
.xc{left:237.127493pt;}
.x1d{left:239.849040pt;}
.x1c{left:244.459733pt;}
.x7{left:249.600013pt;}
.x45{left:250.960533pt;}
.x55{left:255.419840pt;}
.x1e{left:258.519587pt;}
.x4d{left:260.560080pt;}
.x4c{left:264.718000pt;}
.x32{left:269.933733pt;}
.x3d{left:277.946080pt;}
.x3c{left:282.028253pt;}
.x47{left:284.597947pt;}
.x22{left:286.714693pt;}
.x46{left:288.755853pt;}
.x3e{left:294.651880pt;}
.x48{left:301.455053pt;}
.x38{left:308.560080pt;}
.x37{left:312.718000pt;}
.x2f{left:318.084947pt;}
.x13{left:325.039253pt;}
.x12{left:329.725867pt;}
.x30{left:334.941733pt;}
.x14{left:343.710120pt;}
.x43{left:349.228267pt;}
.x27{left:356.107053pt;}
.x23{left:359.432720pt;}
.x34{left:364.951440pt;}
.x33{left:369.562133pt;}
.x4e{left:376.516080pt;}
.x51{left:379.086107pt;}
.x35{left:381.505453pt;}
.x50{left:383.244013pt;}
.x4f{left:393.222000pt;}
.x52{left:395.867600pt;}
.x17{left:400.705480pt;}
.x3{left:404.408000pt;}
.x18{left:406.450280pt;}
.x28{left:411.061320pt;}
.x44{left:412.346400pt;}
.x40{left:413.253013pt;}
.x42{left:415.823827pt;}
.x3f{left:417.410933pt;}
.x41{left:419.980920pt;}
.x4a{left:422.021573pt;}
.x19{left:424.440800pt;}
.x49{left:426.179480pt;}
.x1a{left:430.261347pt;}
.x24{left:432.075013pt;}
.x4b{left:438.803053pt;}
.x1b{left:448.251867pt;}
.x56{left:456.263187pt;}
.x3a{left:465.032773pt;}
.x39{left:469.114947pt;}
.x3b{left:481.738520pt;}
.x29{left:503.432947pt;}
.x25{left:504.793027pt;}
.x2a{left:540.850267pt;}
.x8{left:543.616800pt;}
.x9{left:545.461373pt;}
.x57{left:555.059813pt;}
.x26{left:577.511053pt;}
.x2b{left:595.804653pt;}
.xb{left:620.687467pt;}
.x2c{left:633.297480pt;}
}




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