
    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_5695da377ea5d62fd60fb505.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_fe765a19978985f0151a9fce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_64fb74c299147875db81942a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_be250e3472a78402ac460730.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_43c4eef9f0fb5a94c0bd8629.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e754c2113af37d3331a27afe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921875;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_d31a713d9b019dcc8fb10135.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6a0404531ed9027b8db13357.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.715820;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_568e2f06db494021484088c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.709473;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_25d5b675a686a22bd41fc539.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b9f5442c44e9b97f7c4bf148.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9c39afe56a102a9b8ad9c43b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_791348f7f4126ba0a6c4bd4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;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_a411ce5ff66217effcc8c0b2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.523000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1c3e3654d0fb2eb0af51a2a0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.637000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_45e2dd69b9b6207fd9196e54.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_157e9fd01a3802361b648763.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.635000;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff18;src:url('chunks/assets/font_eb7ca288798dac7dc7b4c339.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.714000;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_3d336846436570c917d8ab45.woff2')format("woff");}.ff19{font-family:ff19;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260470,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-22.497129px;}
.v2{vertical-align:-20.216791px;}
.v5{vertical-align:-8.964000px;}
.va{vertical-align:-7.332590px;}
.vc{vertical-align:-5.982000px;}
.v3{vertical-align:-2.280338px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.285077px;}
.v9{vertical-align:7.332590px;}
.vf{vertical-align:14.778000px;}
.v12{vertical-align:17.268000px;}
.v11{vertical-align:20.586000px;}
.ve{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.v13{vertical-align:24.810000px;}
.v8{vertical-align:32.040000px;}
.v1a{vertical-align:34.128000px;}
.v19{vertical-align:36.468000px;}
.v6{vertical-align:41.004000px;}
.v14{vertical-align:42.078000px;}
.v10{vertical-align:62.130000px;}
.vd{vertical-align:72.480000px;}
.v7{vertical-align:81.444000px;}
.v15{vertical-align:82.512000px;}
.v16{vertical-align:84.288000px;}
.v18{vertical-align:112.896000px;}
.v17{vertical-align:125.286000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000022px;}
.ls27{letter-spacing:0.000062px;}
.ls2d{letter-spacing:0.000065px;}
.ls8d{letter-spacing:0.000141px;}
.ls89{letter-spacing:0.000564px;}
.ls22{letter-spacing:0.000615px;}
.lsd{letter-spacing:0.000767px;}
.lsc5{letter-spacing:0.000993px;}
.lsc0{letter-spacing:0.001409px;}
.ls50{letter-spacing:0.001956px;}
.ls4c{letter-spacing:0.002086px;}
.ls8b{letter-spacing:0.002338px;}
.ls2f{letter-spacing:0.002387px;}
.ls84{letter-spacing:0.002646px;}
.ls24{letter-spacing:0.002685px;}
.ls2{letter-spacing:0.002725px;}
.ls4f{letter-spacing:0.002847px;}
.ls4e{letter-spacing:0.003066px;}
.lsb4{letter-spacing:0.003181px;}
.ls7{letter-spacing:0.003269px;}
.ls0{letter-spacing:0.003300px;}
.ls55{letter-spacing:0.003415px;}
.ls4d{letter-spacing:0.003577px;}
.ls25{letter-spacing:0.004200px;}
.ls15{letter-spacing:0.004379px;}
.ls5{letter-spacing:0.004893px;}
.ls20{letter-spacing:0.004896px;}
.lsad{letter-spacing:0.005374px;}
.ls2b{letter-spacing:0.006065px;}
.lsb1{letter-spacing:0.221549px;}
.ls9b{letter-spacing:0.458387px;}
.lsb3{letter-spacing:0.464387px;}
.ls21{letter-spacing:0.828300px;}
.ls4b{letter-spacing:1.053693px;}
.ls96{letter-spacing:1.170961px;}
.lsc6{letter-spacing:2.147039px;}
.ls1{letter-spacing:2.964877px;}
.ls45{letter-spacing:2.982648px;}
.ls1e{letter-spacing:2.984525px;}
.ls56{letter-spacing:2.986087px;}
.lscf{letter-spacing:2.987251px;}
.lsce{letter-spacing:2.988017px;}
.ls60{letter-spacing:2.988648px;}
.ls37{letter-spacing:2.988780px;}
.lsa2{letter-spacing:2.990234px;}
.lsa{letter-spacing:2.990525px;}
.ls6b{letter-spacing:2.993251px;}
.lsd0{letter-spacing:2.993675px;}
.ls1b{letter-spacing:4.688646px;}
.ls53{letter-spacing:4.920538px;}
.ls7a{letter-spacing:6.433866px;}
.ls36{letter-spacing:6.764108px;}
.ls2c{letter-spacing:6.933350px;}
.ls69{letter-spacing:6.939350px;}
.ls9a{letter-spacing:7.622338px;}
.ls99{letter-spacing:7.626300px;}
.ls52{letter-spacing:7.904525px;}
.ls4a{letter-spacing:8.517222px;}
.ls10{letter-spacing:8.676538px;}
.ls3c{letter-spacing:9.894538px;}
.ls49{letter-spacing:9.936759px;}
.ls6a{letter-spacing:9.962338px;}
.ls3b{letter-spacing:12.878525px;}
.ls30{letter-spacing:13.278538px;}
.lsb{letter-spacing:13.280338px;}
.ls8{letter-spacing:13.281269px;}
.lsa9{letter-spacing:13.284300px;}
.ls9{letter-spacing:13.284538px;}
.lsb5{letter-spacing:13.286015px;}
.ls12{letter-spacing:13.286338px;}
.lsb8{letter-spacing:13.287181px;}
.ls93{letter-spacing:13.288893px;}
.lsba{letter-spacing:14.460961px;}
.ls65{letter-spacing:15.122338px;}
.ls32{letter-spacing:16.266648px;}
.ls13{letter-spacing:16.268525px;}
.ls5d{letter-spacing:16.272648px;}
.ls19{letter-spacing:16.274525px;}
.ls6{letter-spacing:16.602538px;}
.lsb2{letter-spacing:16.604245px;}
.lscc{letter-spacing:16.604400px;}
.ls9f{letter-spacing:16.604685px;}
.lsbd{letter-spacing:16.610245px;}
.lsca{letter-spacing:16.610685px;}
.lsc2{letter-spacing:16.823549px;}
.lsc9{letter-spacing:16.829549px;}
.ls29{letter-spacing:16.960200px;}
.lsc4{letter-spacing:16.976245px;}
.lsc3{letter-spacing:16.978200px;}
.ls51{letter-spacing:17.213282px;}
.ls76{letter-spacing:17.628538px;}
.lsc8{letter-spacing:17.651549px;}
.ls47{letter-spacing:17.778538px;}
.ls38{letter-spacing:17.852525px;}
.ls97{letter-spacing:17.864383px;}
.ls95{letter-spacing:17.868300px;}
.lsc{letter-spacing:17.972646px;}
.ls66{letter-spacing:18.108648px;}
.ls39{letter-spacing:18.846648px;}
.lsbb{letter-spacing:19.301549px;}
.lsa4{letter-spacing:19.361549px;}
.ls34{letter-spacing:19.364525px;}
.ls35{letter-spacing:19.370525px;}
.ls54{letter-spacing:19.394525px;}
.ls43{letter-spacing:19.424525px;}
.ls87{letter-spacing:19.588087px;}
.ls3a{letter-spacing:19.590648px;}
.ls31{letter-spacing:19.592525px;}
.ls58{letter-spacing:19.594087px;}
.ls6d{letter-spacing:19.595251px;}
.ls7e{letter-spacing:19.717866px;}
.ls48{letter-spacing:19.860648px;}
.lsc7{letter-spacing:19.925549px;}
.ls2a{letter-spacing:19.952525px;}
.ls9e{letter-spacing:20.188982px;}
.lsb6{letter-spacing:20.456338px;}
.ls75{letter-spacing:20.618525px;}
.ls6c{letter-spacing:20.771251px;}
.ls94{letter-spacing:20.918383px;}
.ls1d{letter-spacing:20.920200px;}
.lsbe{letter-spacing:20.926200px;}
.lsa5{letter-spacing:21.060300px;}
.ls68{letter-spacing:21.206400px;}
.ls3e{letter-spacing:21.254525px;}
.lsb7{letter-spacing:21.258961px;}
.lsf{letter-spacing:22.058525px;}
.ls3d{letter-spacing:22.082525px;}
.ls7b{letter-spacing:23.035866px;}
.ls18{letter-spacing:23.366108px;}
.ls2e{letter-spacing:23.547350px;}
.ls90{letter-spacing:23.740200px;}
.ls5a{letter-spacing:23.772538px;}
.lsa0{letter-spacing:23.778538px;}
.lsaa{letter-spacing:23.781269px;}
.ls82{letter-spacing:23.851866px;}
.ls83{letter-spacing:23.904648px;}
.ls67{letter-spacing:24.188525px;}
.ls64{letter-spacing:24.280200px;}
.ls86{letter-spacing:25.300200px;}
.ls6e{letter-spacing:25.428538px;}
.ls23{letter-spacing:25.562525px;}
.ls28{letter-spacing:25.568525px;}
.lsa3{letter-spacing:25.736245px;}
.ls8f{letter-spacing:26.104379px;}
.lsae{letter-spacing:26.762234px;}
.lsa7{letter-spacing:26.764982px;}
.lsaf{letter-spacing:26.772538px;}
.ls11{letter-spacing:27.218108px;}
.ls78{letter-spacing:27.474538px;}
.ls3f{letter-spacing:27.576648px;}
.ls91{letter-spacing:27.972648px;}
.ls72{letter-spacing:28.466646px;}
.ls17{letter-spacing:28.742108px;}
.ls57{letter-spacing:28.948087px;}
.ls85{letter-spacing:28.984379px;}
.ls1f{letter-spacing:29.756525px;}
.ls79{letter-spacing:29.778648px;}
.ls98{letter-spacing:29.890893px;}
.lsbc{letter-spacing:29.981549px;}
.ls77{letter-spacing:30.464525px;}
.ls9d{letter-spacing:30.490893px;}
.ls41{letter-spacing:30.770525px;}
.lsb9{letter-spacing:32.000015px;}
.lsa6{letter-spacing:32.160538px;}
.ls62{letter-spacing:32.386200px;}
.ls92{letter-spacing:32.870525px;}
.ls8e{letter-spacing:32.896087px;}
.ls40{letter-spacing:33.230108px;}
.ls42{letter-spacing:33.410525px;}
.ls6f{letter-spacing:33.804538px;}
.ls8c{letter-spacing:34.202338px;}
.ls88{letter-spacing:34.208338px;}
.ls59{letter-spacing:34.356538px;}
.ls44{letter-spacing:35.222525px;}
.ls63{letter-spacing:35.380087px;}
.ls9c{letter-spacing:35.856648px;}
.ls1c{letter-spacing:35.863409px;}
.ls26{letter-spacing:35.869409px;}
.lscb{letter-spacing:38.418538px;}
.ls5c{letter-spacing:38.492646px;}
.ls14{letter-spacing:40.278538px;}
.ls8a{letter-spacing:40.514525px;}
.lsbf{letter-spacing:64.338538px;}
.ls7d{letter-spacing:74.832538px;}
.ls80{letter-spacing:78.156538px;}
.ls61{letter-spacing:95.072646px;}
.ls5f{letter-spacing:98.394538px;}
.lsab{letter-spacing:106.296538px;}
.ls5e{letter-spacing:136.946646px;}
.lsac{letter-spacing:142.448234px;}
.ls73{letter-spacing:147.192538px;}
.ls71{letter-spacing:153.834538px;}
.lsa8{letter-spacing:163.692538px;}
.ls74{letter-spacing:176.216338px;}
.lse{letter-spacing:205.376525px;}
.lscd{letter-spacing:215.582525px;}
.ls33{letter-spacing:224.654525px;}
.ls16{letter-spacing:395.678646px;}
.ls70{letter-spacing:398.828646px;}
.ls5b{letter-spacing:438.626646px;}
.ls7f{letter-spacing:452.464200px;}
.lsa1{letter-spacing:458.536893px;}
.lsb0{letter-spacing:479.456685px;}
.ls7c{letter-spacing:488.990338px;}
.lsc1{letter-spacing:509.126525px;}
.ls81{letter-spacing:512.131866px;}
.ls1a{letter-spacing:526.004525px;}
.ls46{letter-spacing:535.544646px;}
.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;}
}
.ws110{word-spacing:-47.654765px;}
.wsfd{word-spacing:-46.505417px;}
.wsad{word-spacing:-43.157983px;}
.ws54{word-spacing:-38.937826px;}
.ws57{word-spacing:-31.633157px;}
.ws6e{word-spacing:-28.955301px;}
.ws6b{word-spacing:-22.318755px;}
.ws13a{word-spacing:-21.469570px;}
.wsf3{word-spacing:-17.717488px;}
.wscd{word-spacing:-16.906063px;}
.ws58{word-spacing:-16.605662px;}
.ws1{word-spacing:-16.438350px;}
.wse1{word-spacing:-15.368315px;}
.wse2{word-spacing:-15.365061px;}
.wse7{word-spacing:-15.362315px;}
.wsbe{word-spacing:-15.359061px;}
.ws5{word-spacing:-14.943900px;}
.ws23{word-spacing:-14.920027px;}
.wsee{word-spacing:-14.668932px;}
.ws106{word-spacing:-14.602063px;}
.ws14e{word-spacing:-13.756063px;}
.wsf2{word-spacing:-13.523061px;}
.ws56{word-spacing:-12.044315px;}
.ws64{word-spacing:-12.038771px;}
.ws15a{word-spacing:-11.955150px;}
.wscf{word-spacing:-11.771061px;}
.wse3{word-spacing:-11.538974px;}
.ws118{word-spacing:-10.942063px;}
.wsf1{word-spacing:-9.383061px;}
.wsf8{word-spacing:-8.855061px;}
.ws55{word-spacing:-7.724315px;}
.wsa0{word-spacing:-7.721061px;}
.wsf4{word-spacing:-7.440974px;}
.wsc7{word-spacing:-6.682912px;}
.ws45{word-spacing:-6.623136px;}
.wsaa{word-spacing:-5.021061px;}
.wsa5{word-spacing:-4.601061px;}
.wsef{word-spacing:-4.370315px;}
.ws140{word-spacing:-3.485061px;}
.wse8{word-spacing:-3.338540px;}
.ws101{word-spacing:-3.335478px;}
.wsfc{word-spacing:-1.134974px;}
.wsea{word-spacing:-1.071093px;}
.ws3a{word-spacing:-1.016185px;}
.ws35{word-spacing:-0.956410px;}
.ws171{word-spacing:-0.896634px;}
.ws150{word-spacing:-0.777083px;}
.wsdd{word-spacing:-0.418429px;}
.ws1a2{word-spacing:-0.334744px;}
.ws1a1{word-spacing:-0.317011px;}
.ws61{word-spacing:-0.298878px;}
.ws4e{word-spacing:-0.239102px;}
.ws8a{word-spacing:-0.119551px;}
.ws51{word-spacing:-0.101084px;}
.ws8b{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.053798px;}
.wsd6{word-spacing:-0.047821px;}
.ws138{word-spacing:-0.041843px;}
.ws154{word-spacing:-0.021471px;}
.ws87{word-spacing:-0.006785px;}
.ws48{word-spacing:0.000000px;}
.ws86{word-spacing:0.011955px;}
.ws18c{word-spacing:0.095641px;}
.ws5e{word-spacing:0.119551px;}
.ws1a7{word-spacing:0.143462px;}
.ws94{word-spacing:0.239102px;}
.ws10c{word-spacing:0.298878px;}
.wsc6{word-spacing:0.418429px;}
.ws152{word-spacing:0.478205px;}
.ws10b{word-spacing:0.537980px;}
.ws1a3{word-spacing:0.573847px;}
.ws3e{word-spacing:0.597756px;}
.ws1b5{word-spacing:0.765130px;}
.wsc3{word-spacing:0.777083px;}
.wsd{word-spacing:0.806976px;}
.ws14c{word-spacing:0.848814px;}
.ws85{word-spacing:0.896634px;}
.wsc8{word-spacing:0.956410px;}
.ws1a4{word-spacing:0.956412px;}
.ws18e{word-spacing:1.004233px;}
.ws16a{word-spacing:1.075961px;}
.ws15f{word-spacing:1.135736px;}
.ws161{word-spacing:1.195512px;}
.ws11b{word-spacing:1.255288px;}
.wscb{word-spacing:1.315063px;}
.ws8c{word-spacing:1.432466px;}
.ws8d{word-spacing:1.434614px;}
.wsb9{word-spacing:1.494390px;}
.ws63{word-spacing:1.554166px;}
.ws143{word-spacing:1.578080px;}
.ws62{word-spacing:1.583408px;}
.ws5f{word-spacing:1.643975px;}
.ws60{word-spacing:1.673717px;}
.wsdc{word-spacing:1.733492px;}
.ws70{word-spacing:1.793268px;}
.ws1bb{word-spacing:1.817183px;}
.ws169{word-spacing:1.853044px;}
.ws1b3{word-spacing:1.865003px;}
.ws41{word-spacing:1.912819px;}
.wsce{word-spacing:1.934134px;}
.ws5b{word-spacing:1.940005px;}
.ws137{word-spacing:1.972595px;}
.ws81{word-spacing:2.003580px;}
.ws7f{word-spacing:2.018760px;}
.ws80{word-spacing:2.021750px;}
.ws82{word-spacing:2.032370px;}
.ws144{word-spacing:2.092146px;}
.wsb8{word-spacing:2.151922px;}
.ws18d{word-spacing:2.199748px;}
.wsd4{word-spacing:2.247568px;}
.ws12f{word-spacing:2.250295px;}
.ws130{word-spacing:2.258683px;}
.wsd5{word-spacing:2.265904px;}
.ws131{word-spacing:2.271473px;}
.ws7a{word-spacing:2.283428px;}
.ws187{word-spacing:2.343209px;}
.ws186{word-spacing:2.391030px;}
.wsa8{word-spacing:2.450800px;}
.ws13b{word-spacing:2.462755px;}
.ws1b6{word-spacing:2.486671px;}
.ws40{word-spacing:2.510575px;}
.ws1ba{word-spacing:2.534492px;}
.wsaf{word-spacing:2.749678px;}
.ws9e{word-spacing:2.809453px;}
.wsd8{word-spacing:2.821415px;}
.ws12c{word-spacing:2.911580px;}
.ws83{word-spacing:2.929004px;}
.ws135{word-spacing:2.988780px;}
.ws18f{word-spacing:3.012698px;}
.ws20{word-spacing:3.012710px;}
.ws77{word-spacing:3.026760px;}
.ws78{word-spacing:3.048556px;}
.ws14b{word-spacing:3.120286px;}
.ws93{word-spacing:3.168107px;}
.ws17d{word-spacing:3.203980px;}
.ws13e{word-spacing:3.227882px;}
.ws7e{word-spacing:3.287658px;}
.ws88{word-spacing:3.299613px;}
.wsa6{word-spacing:3.347434px;}
.wsda{word-spacing:3.466985px;}
.ws166{word-spacing:3.526760px;}
.ws16b{word-spacing:3.586536px;}
.wsbd{word-spacing:3.588939px;}
.ws16e{word-spacing:3.646312px;}
.ws1a{word-spacing:3.658291px;}
.wsb7{word-spacing:3.706087px;}
.ws1b0{word-spacing:3.730007px;}
.ws19c{word-spacing:3.825648px;}
.ws127{word-spacing:3.885414px;}
.ws2d{word-spacing:3.945190px;}
.ws4a{word-spacing:4.064741px;}
.ws5a{word-spacing:4.124516px;}
.ws59{word-spacing:4.126309px;}
.wsd1{word-spacing:4.179792px;}
.wsd3{word-spacing:4.182595px;}
.ws136{word-spacing:4.184292px;}
.ws119{word-spacing:4.244068px;}
.wsf0{word-spacing:4.303843px;}
.ws113{word-spacing:4.351675px;}
.ws42{word-spacing:4.363619px;}
.ws10d{word-spacing:4.464389px;}
.ws10e{word-spacing:4.483170px;}
.wsb1{word-spacing:4.542946px;}
.ws1c8{word-spacing:4.542957px;}
.ws105{word-spacing:4.662497px;}
.ws5d{word-spacing:4.722272px;}
.ws1b4{word-spacing:4.777849px;}
.ws50{word-spacing:4.782060px;}
.ws17e{word-spacing:4.829881px;}
.wsf7{word-spacing:4.841824px;}
.ws160{word-spacing:4.901599px;}
.ws17f{word-spacing:4.973342px;}
.ws2c{word-spacing:5.021150px;}
.ws1a0{word-spacing:5.021163px;}
.ws199{word-spacing:5.116804px;}
.wsb6{word-spacing:5.140702px;}
.ws1af{word-spacing:5.164625px;}
.ws117{word-spacing:5.212432px;}
.wsb{word-spacing:5.272243px;}
.ws175{word-spacing:5.379804px;}
.ws192{word-spacing:5.403728px;}
.ws96{word-spacing:5.439580px;}
.ws172{word-spacing:5.551888px;}
.ws173{word-spacing:5.559131px;}
.wsc1{word-spacing:5.618906px;}
.ws7d{word-spacing:5.678682px;}
.ws99{word-spacing:5.738458px;}
.ws9b{word-spacing:5.858009px;}
.ws19e{word-spacing:5.881934px;}
.ws19d{word-spacing:5.883682px;}
.ws122{word-spacing:5.917784px;}
.ws19f{word-spacing:5.929754px;}
.ws170{word-spacing:5.971324px;}
.ws91{word-spacing:5.973548px;}
.ws139{word-spacing:5.975408px;}
.ws9f{word-spacing:5.976317px;}
.ws4{word-spacing:5.977560px;}
.wsf9{word-spacing:5.977601px;}
.ws104{word-spacing:5.978134px;}
.ws132{word-spacing:5.978683px;}
.ws103{word-spacing:5.979967px;}
.ws17{word-spacing:6.025421px;}
.ws190{word-spacing:6.030562px;}
.ws191{word-spacing:6.073216px;}
.wse4{word-spacing:6.097111px;}
.ws1b8{word-spacing:6.121037px;}
.ws1c{word-spacing:6.133018px;}
.ws174{word-spacing:6.216662px;}
.ws1c5{word-spacing:6.246286px;}
.ws1c6{word-spacing:6.264499px;}
.ws16f{word-spacing:6.336214px;}
.ws14d{word-spacing:6.395989px;}
.ws1bd{word-spacing:6.407960px;}
.wsca{word-spacing:6.455765px;}
.ws30{word-spacing:6.515540px;}
.wsd9{word-spacing:6.575316px;}
.ws3{word-spacing:6.575340px;}
.ws3f{word-spacing:6.635092px;}
.wsfe{word-spacing:6.694867px;}
.ws1e{word-spacing:6.724800px;}
.ws193{word-spacing:6.742705px;}
.ws84{word-spacing:6.754643px;}
.ws12{word-spacing:6.778598px;}
.ws102{word-spacing:6.933970px;}
.ws153{word-spacing:6.945905px;}
.ws97{word-spacing:6.993745px;}
.ws5c{word-spacing:7.053521px;}
.ws134{word-spacing:7.113296px;}
.ws16{word-spacing:7.155187px;}
.ws65{word-spacing:7.169215px;}
.wsc5{word-spacing:7.232848px;}
.ws1a5{word-spacing:7.268731px;}
.ws33{word-spacing:7.292623px;}
.ws44{word-spacing:7.352399px;}
.ws167{word-spacing:7.412174px;}
.ws112{word-spacing:7.459339px;}
.ws1b2{word-spacing:7.460014px;}
.ws133{word-spacing:7.531726px;}
.ws164{word-spacing:7.591501px;}
.ws2f{word-spacing:7.651277px;}
.ws11{word-spacing:7.693171px;}
.ws71{word-spacing:7.711052px;}
.ws198{word-spacing:7.746937px;}
.ws89{word-spacing:7.770828px;}
.ws114{word-spacing:7.938220px;}
.ws149{word-spacing:7.950155px;}
.ws14a{word-spacing:8.009930px;}
.ws21{word-spacing:8.069760px;}
.ws10a{word-spacing:8.081661px;}
.ws18a{word-spacing:8.081681px;}
.wsa2{word-spacing:8.129482px;}
.ws92{word-spacing:8.189257px;}
.ws12a{word-spacing:8.249033px;}
.ws168{word-spacing:8.308808px;}
.wsba{word-spacing:8.488135px;}
.ws182{word-spacing:8.512067px;}
.ws16c{word-spacing:8.547911px;}
.ws43{word-spacing:8.607686px;}
.wsa9{word-spacing:8.667462px;}
.ws194{word-spacing:8.703349px;}
.wsc0{word-spacing:8.727238px;}
.ws116{word-spacing:8.787013px;}
.ws126{word-spacing:8.846789px;}
.ws185{word-spacing:8.846811px;}
.ws53{word-spacing:8.906564px;}
.ws8e{word-spacing:9.026116px;}
.wsa4{word-spacing:9.085891px;}
.ws17c{word-spacing:9.133735px;}
.ws146{word-spacing:9.205442px;}
.ws183{word-spacing:9.229376px;}
.ws1b{word-spacing:9.253325px;}
.ws4f{word-spacing:9.265218px;}
.wsb0{word-spacing:9.384769px;}
.wsa1{word-spacing:9.444545px;}
.ws12b{word-spacing:9.504320px;}
.ws145{word-spacing:9.564096px;}
.ws196{word-spacing:9.564120px;}
.wse{word-spacing:9.576115px;}
.wsac{word-spacing:9.623872px;}
.wsab{word-spacing:9.644734px;}
.ws11d{word-spacing:9.743423px;}
.ws156{word-spacing:9.803198px;}
.ws6a{word-spacing:9.862974px;}
.ws129{word-spacing:10.042301px;}
.ws75{word-spacing:10.102076px;}
.ws6d{word-spacing:10.161852px;}
.ws13f{word-spacing:10.196473px;}
.ws36{word-spacing:10.221628px;}
.ws197{word-spacing:10.233608px;}
.ws108{word-spacing:10.281403px;}
.ws109{word-spacing:10.341179px;}
.ws195{word-spacing:10.377070px;}
.ws1a8{word-spacing:10.400603px;}
.ws11a{word-spacing:10.400954px;}
.ws1a9{word-spacing:10.424891px;}
.ws38{word-spacing:10.520506px;}
.ws6c{word-spacing:10.580281px;}
.wsa7{word-spacing:10.640057px;}
.ws13c{word-spacing:10.699832px;}
.ws11f{word-spacing:10.759608px;}
.wsa3{word-spacing:10.879159px;}
.ws26{word-spacing:10.938935px;}
.wse0{word-spacing:10.998710px;}
.ws79{word-spacing:11.058486px;}
.ws12d{word-spacing:11.178037px;}
.ws148{word-spacing:11.297588px;}
.ws17b{word-spacing:11.333482px;}
.ws147{word-spacing:11.357364px;}
.ws1b7{word-spacing:11.381303px;}
.ws13d{word-spacing:11.404828px;}
.ws1b9{word-spacing:11.524765px;}
.ws98{word-spacing:11.536691px;}
.ws49{word-spacing:11.596466px;}
.ws180{word-spacing:11.620406px;}
.wsf{word-spacing:11.620454px;}
.wsb5{word-spacing:11.716018px;}
.ws6f{word-spacing:11.835569px;}
.ws7c{word-spacing:11.865063px;}
.ws1d{word-spacing:11.889446px;}
.ws2e{word-spacing:11.895344px;}
.ws18b{word-spacing:11.953832px;}
.ws95{word-spacing:11.955120px;}
.ws1ad{word-spacing:11.955150px;}
.wscc{word-spacing:12.014896px;}
.ws18{word-spacing:12.104640px;}
.ws151{word-spacing:12.194222px;}
.ws1b1{word-spacing:12.289894px;}
.ws13{word-spacing:12.427430px;}
.ws184{word-spacing:12.433356px;}
.ws120{word-spacing:12.493100px;}
.wsfb{word-spacing:12.552876px;}
.ws17a{word-spacing:12.576818px;}
.wsb3{word-spacing:12.851754px;}
.ws19b{word-spacing:12.863741px;}
.ws67{word-spacing:12.911530px;}
.ws19a{word-spacing:12.911562px;}
.wsdf{word-spacing:13.031081px;}
.wsc9{word-spacing:13.090856px;}
.ws159{word-spacing:13.150632px;}
.ws1ac{word-spacing:13.150665px;}
.ws158{word-spacing:13.509286px;}
.ws163{word-spacing:13.688612px;}
.ws37{word-spacing:13.748388px;}
.ws66{word-spacing:13.867939px;}
.ws90{word-spacing:13.987490px;}
.ws7b{word-spacing:14.011263px;}
.ws15{word-spacing:14.202778px;}
.ws1a6{word-spacing:14.250539px;}
.ws9d{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws165{word-spacing:14.465695px;}
.ws6{word-spacing:14.496000px;}
.ws8{word-spacing:14.496038px;}
.ws7{word-spacing:14.496542px;}
.ws2{word-spacing:14.499058px;}
.ws2a{word-spacing:14.645022px;}
.ws3c{word-spacing:14.704798px;}
.ws155{word-spacing:14.764573px;}
.ws8f{word-spacing:14.884124px;}
.ws115{word-spacing:14.935758px;}
.ws9c{word-spacing:14.943900px;}
.ws11c{word-spacing:15.003676px;}
.wsc2{word-spacing:15.063451px;}
.wsde{word-spacing:15.123227px;}
.ws9a{word-spacing:15.183002px;}
.ws24{word-spacing:15.242778px;}
.ws181{word-spacing:15.254771px;}
.ws1c7{word-spacing:15.302592px;}
.ws12e{word-spacing:15.362329px;}
.ws69{word-spacing:15.422105px;}
.wsb4{word-spacing:15.481880px;}
.ws157{word-spacing:15.541656px;}
.ws123{word-spacing:15.601432px;}
.ws74{word-spacing:15.720983px;}
.ws15c{word-spacing:15.780758px;}
.wsdb{word-spacing:16.019861px;}
.wse5{word-spacing:16.079636px;}
.wsae{word-spacing:16.258963px;}
.ws4d{word-spacing:16.378514px;}
.ws1f{word-spacing:16.408512px;}
.ws11e{word-spacing:16.438290px;}
.ws107{word-spacing:16.617617px;}
.wsa{word-spacing:16.623706px;}
.ws27{word-spacing:16.856719px;}
.ws121{word-spacing:16.976270px;}
.wsc{word-spacing:17.107891px;}
.wsd7{word-spacing:17.175997px;}
.wse6{word-spacing:17.215373px;}
.ws1bc{word-spacing:17.215416px;}
.ws32{word-spacing:17.263237px;}
.wsbb{word-spacing:17.275148px;}
.wsbc{word-spacing:17.288134px;}
.ws1c4{word-spacing:17.311057px;}
.wse9{word-spacing:17.431162px;}
.wseb{word-spacing:17.434784px;}
.wsec{word-spacing:17.454475px;}
.ws4b{word-spacing:17.574026px;}
.ws10{word-spacing:17.592077px;}
.ws39{word-spacing:17.633802px;}
.ws1ae{word-spacing:17.884904px;}
.ws22{word-spacing:17.932680px;}
.ws1c9{word-spacing:17.932725px;}
.ws14{word-spacing:17.968666px;}
.ws73{word-spacing:18.004411px;}
.ws100{word-spacing:18.112007px;}
.ws15e{word-spacing:18.124007px;}
.ws2b{word-spacing:18.231558px;}
.wsb2{word-spacing:18.291334px;}
.ws15b{word-spacing:18.590212px;}
.wsf6{word-spacing:18.889090px;}
.wsf5{word-spacing:18.948865px;}
.ws19{word-spacing:19.098432px;}
.ws125{word-spacing:19.187968px;}
.ws46{word-spacing:19.247743px;}
.ws68{word-spacing:19.486846px;}
.ws25{word-spacing:19.666172px;}
.ws3d{word-spacing:19.785724px;}
.ws34{word-spacing:19.965050px;}
.ws162{word-spacing:20.084602px;}
.ws14f{word-spacing:20.323704px;}
.ws28{word-spacing:20.503031px;}
.wsbf{word-spacing:20.682358px;}
.wsed{word-spacing:20.919025px;}
.ws10f{word-spacing:20.933415px;}
.ws3b{word-spacing:21.220338px;}
.wsc4{word-spacing:21.280114px;}
.ws29{word-spacing:21.399665px;}
.ws31{word-spacing:21.423629px;}
.wsfa{word-spacing:21.519216px;}
.ws76{word-spacing:21.578992px;}
.ws128{word-spacing:21.638767px;}
.ws72{word-spacing:21.997421px;}
.ws4c{word-spacing:22.176748px;}
.ws179{word-spacing:22.380041px;}
.ws1ab{word-spacing:22.571323px;}
.ws176{word-spacing:23.671138px;}
.ws1aa{word-spacing:25.584021px;}
.ws124{word-spacing:27.317449px;}
.ws47{word-spacing:28.692288px;}
.ws16d{word-spacing:29.529146px;}
.ws178{word-spacing:32.422367px;}
.ws142{word-spacing:34.159393px;}
.ws1cc{word-spacing:38.686865px;}
.ws177{word-spacing:38.734686px;}
.ws1cb{word-spacing:50.833298px;}
.ws1c0{word-spacing:51.454966px;}
.ws1ca{word-spacing:51.598427px;}
.ws1c3{word-spacing:52.124454px;}
.ws1c1{word-spacing:52.220095px;}
.wsff{word-spacing:52.649215px;}
.ws1c2{word-spacing:57.241258px;}
.ws189{word-spacing:75.747830px;}
.ws188{word-spacing:123.185866px;}
.ws1be{word-spacing:125.672537px;}
.ws141{word-spacing:162.554544px;}
.wsd0{word-spacing:163.225028px;}
.ws111{word-spacing:168.868815px;}
.wsd2{word-spacing:169.943220px;}
.ws15d{word-spacing:174.326619px;}
.ws1bf{word-spacing:184.444054px;}
.ws52{word-spacing:928.523295px;}
._8{margin-left:-2754.901683px;}
._1e{margin-left:-9.959462px;}
._c{margin-left:-7.770828px;}
._12{margin-left:-6.635092px;}
._2{margin-left:-4.782048px;}
._1{margin-left:-3.586545px;}
._0{margin-left:-2.151927px;}
._3{margin-left:-1.075961px;}
._1c{width:1.195022px;}
._5{width:2.988780px;}
._a{width:4.732176px;}
._1d{width:8.154609px;}
._f{width:13.829581px;}
._19{width:15.398673px;}
._10{width:17.275148px;}
._11{width:18.649908px;}
._6{width:19.905275px;}
._b{width:21.280114px;}
._e{width:22.757718px;}
._4{width:24.532070px;}
._16{width:25.882835px;}
._d{width:27.018577px;}
._9{width:29.887800px;}
._18{width:32.508354px;}
._13{width:34.153631px;}
._7{width:35.865385px;}
._14{width:38.430395px;}
._15{width:42.703097px;}
._17{width:46.358127px;}
._22{width:64.486897px;}
._21{width:68.192251px;}
._20{width:164.175721px;}
._1f{width:184.479512px;}
._1a{width:208.774434px;}
._1b{width:227.106797px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:26.166168px;}
.fs10{font-size:26.816328px;}
.fs11{font-size:29.887800px;}
.fs14{font-size:30.527196px;}
.fs12{font-size:31.150200px;}
.fse{font-size:31.285716px;}
.fsc{font-size:31.924200px;}
.fs17{font-size:35.865600px;}
.fs15{font-size:37.380240px;}
.fsf{font-size:38.309040px;}
.fsb{font-size:41.842800px;}
.fs7{font-size:42.000000px;}
.fs13{font-size:43.610280px;}
.fsd{font-size:44.693880px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:46.027200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fsa{font-size:65.704555px;}
.fs1{font-size:65.753400px;}
.fs8{font-size:84.884240px;}
.fs9{font-size:101.083942px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y10d{bottom:8.344847px;}
.yfa{bottom:9.896936px;}
.y169{bottom:10.383281px;}
.y1d8{bottom:11.371001px;}
.y20d{bottom:14.277350px;}
.y20e{bottom:18.554694px;}
.y62{bottom:19.248597px;}
.y10c{bottom:20.890103px;}
.yf9{bottom:23.240254px;}
.y5b{bottom:23.767410px;}
.y1d7{bottom:24.714319px;}
.y20c{bottom:27.779042px;}
.y61{bottom:28.372206px;}
.y5e{bottom:30.902699px;}
.yfb{bottom:31.857294px;}
.y5c{bottom:32.862000px;}
.y1d9{bottom:36.774652px;}
.y10e{bottom:37.496640px;}
.y20f{bottom:42.990599px;}
.y117{bottom:43.683288px;}
.y172{bottom:46.599789px;}
.y16a{bottom:54.775920px;}
.y116{bottom:57.408845px;}
.y1da{bottom:61.548103px;}
.y171{bottom:61.763784px;}
.yfc{bottom:68.527095px;}
.y10f{bottom:72.609132px;}
.y210{bottom:76.380556px;}
.y16b{bottom:77.694546px;}
.y215{bottom:78.852774px;}
.y101{bottom:83.464433px;}
.y1db{bottom:86.321553px;}
.y60{bottom:89.615554px;}
.y102{bottom:91.228030px;}
.y16c{bottom:100.613172px;}
.yfd{bottom:105.196897px;}
.y110{bottom:107.721625px;}
.y5a{bottom:107.998500px;}
.y8d{bottom:108.000000px;}
.y211{bottom:109.770514px;}
.y103{bottom:110.225657px;}
.y5f{bottom:110.227710px;}
.y1dc{bottom:111.095004px;}
.y114{bottom:111.302077px;}
.y1e5{bottom:112.337269px;}
.y1e1{bottom:114.432295px;}
.y104{bottom:117.989255px;}
.y28f{bottom:121.449000px;}
.y16d{bottom:123.531798px;}
.y1e2{bottom:125.568120px;}
.yc0{bottom:125.931000px;}
.y59{bottom:125.932500px;}
.y168{bottom:126.393000px;}
.y1e4{bottom:126.703159px;}
.y115{bottom:127.923705px;}
.y28e{bottom:134.899500px;}
.y1dd{bottom:135.868454px;}
.y105{bottom:136.986882px;}
.y1e3{bottom:141.069049px;}
.yfe{bottom:141.866699px;}
.y111{bottom:142.834117px;}
.y212{bottom:143.160471px;}
.y58{bottom:143.865000px;}
.y167{bottom:144.325500px;}
.y16e{bottom:146.450424px;}
.y106{bottom:148.122707px;}
.y28d{bottom:148.732500px;}
.yf7{bottom:149.485500px;}
.y134{bottom:149.989500px;}
.y35{bottom:154.624500px;}
.y216{bottom:159.156634px;}
.y21f{bottom:159.341663px;}
.y133{bottom:160.240500px;}
.y1de{bottom:160.641905px;}
.y57{bottom:161.797500px;}
.y28c{bottom:162.181500px;}
.y166{bottom:162.258000px;}
.y1d4{bottom:164.574000px;}
.y20b{bottom:165.576000px;}
.y217{bottom:166.920231px;}
.yf6{bottom:167.418000px;}
.y1d6{bottom:167.983500px;}
.y34{bottom:168.073500px;}
.y1d3{bottom:168.252000px;}
.y16f{bottom:169.369050px;}
.y218{bottom:170.684731px;}
.y21e{bottom:173.408264px;}
.y28b{bottom:175.630500px;}
.y213{bottom:176.550429px;}
.y112{bottom:177.946609px;}
.y1d5{bottom:178.503000px;}
.yff{bottom:178.536501px;}
.y219{bottom:179.231926px;}
.y56{bottom:179.730000px;}
.y33{bottom:181.524000px;}
.y199{bottom:183.234000px;}
.yf5{bottom:185.350500px;}
.y1df{bottom:185.415356px;}
.y109{bottom:186.696495px;}
.y21c{bottom:188.011091px;}
.y108{bottom:188.267764px;}
.y1d2{bottom:188.611500px;}
.y28a{bottom:189.463500px;}
.y20a{bottom:189.525000px;}
.y165{bottom:190.842000px;}
.y21d{bottom:191.677386px;}
.y170{bottom:192.287676px;}
.y132{bottom:196.119000px;}
.y55{bottom:197.662500px;}
.y8c{bottom:197.664000px;}
.y198{bottom:201.166500px;}
.y107{bottom:202.334365px;}
.y289{bottom:202.912500px;}
.yf4{bottom:203.284500px;}
.y21a{bottom:203.973191px;}
.y21b{bottom:207.639486px;}
.y164{bottom:209.236500px;}
.y214{bottom:209.940387px;}
.y1e0{bottom:210.188806px;}
.y32{bottom:211.308000px;}
.y1d1{bottom:212.575500px;}
.y113{bottom:213.059101px;}
.y131{bottom:214.051500px;}
.y209{bottom:214.407000px;}
.y100{bottom:215.206302px;}
.y54{bottom:215.595000px;}
.y8b{bottom:215.596500px;}
.y288{bottom:216.363000px;}
.yf3{bottom:221.217000px;}
.y197{bottom:224.659500px;}
.y163{bottom:227.169000px;}
.y31{bottom:229.242000px;}
.y287{bottom:229.812000px;}
.y1d0{bottom:230.508000px;}
.y130{bottom:231.984000px;}
.ybf{bottom:233.527500px;}
.y53{bottom:233.529000px;}
.y8a{bottom:236.952000px;}
.yf2{bottom:239.149500px;}
.y286{bottom:243.262500px;}
.y162{bottom:245.101500px;}
.y30{bottom:247.174500px;}
.y1cf{bottom:248.442000px;}
.y12f{bottom:249.918000px;}
.y52{bottom:251.461500px;}
.y196{bottom:254.751000px;}
.y89{bottom:254.884500px;}
.y240{bottom:256.056000px;}
.yf1{bottom:257.082000px;}
.y285{bottom:257.094000px;}
.y161{bottom:263.137500px;}
.y208{bottom:263.538000px;}
.y2f{bottom:265.107000px;}
.y1ce{bottom:266.374500px;}
.y12e{bottom:267.850500px;}
.y51{bottom:269.394000px;}
.y284{bottom:270.544500px;}
.y195{bottom:272.685000px;}
.ybe{bottom:272.757000px;}
.y88{bottom:272.817000px;}
.y23f{bottom:273.988500px;}
.yf0{bottom:275.014500px;}
.y160{bottom:281.071500px;}
.y207{bottom:281.470500px;}
.y2e{bottom:283.039500px;}
.y283{bottom:283.993500px;}
.y1cd{bottom:284.307000px;}
.y12d{bottom:285.783000px;}
.y194{bottom:290.617500px;}
.ybd{bottom:290.691000px;}
.y87{bottom:290.749500px;}
.y23e{bottom:291.921000px;}
.yef{bottom:292.947000px;}
.y282{bottom:297.444000px;}
.y15f{bottom:299.004000px;}
.y206{bottom:299.403000px;}
.y2d{bottom:300.972000px;}
.y1cc{bottom:302.239500px;}
.y50{bottom:302.352000px;}
.y193{bottom:308.550000px;}
.ybc{bottom:308.623500px;}
.y86{bottom:308.683500px;}
.y12c{bottom:309.840000px;}
.y23d{bottom:309.853500px;}
.yee{bottom:310.881000px;}
.y281{bottom:311.275500px;}
.y15e{bottom:316.936500px;}
.y205{bottom:317.335500px;}
.y2c{bottom:318.904500px;}
.y12b{bottom:320.091000px;}
.y1c9{bottom:323.044500px;}
.y280{bottom:324.726000px;}
.y1cb{bottom:326.454000px;}
.y192{bottom:326.482500px;}
.ybb{bottom:326.556000px;}
.y85{bottom:326.616000px;}
.y1c8{bottom:326.722500px;}
.y23c{bottom:327.787500px;}
.yed{bottom:328.813500px;}
.y15d{bottom:334.869000px;}
.y204{bottom:335.268000px;}
.y2b{bottom:336.838500px;}
.y1ca{bottom:336.973500px;}
.y27f{bottom:338.175000px;}
.y191{bottom:344.415000px;}
.yba{bottom:344.488500px;}
.y84{bottom:344.548500px;}
.y23b{bottom:345.720000px;}
.yec{bottom:346.746000px;}
.y1c7{bottom:347.083500px;}
.y27e{bottom:351.624000px;}
.y15c{bottom:352.801500px;}
.y203{bottom:353.200500px;}
.y2a{bottom:354.771000px;}
.y12a{bottom:359.862000px;}
.yb9{bottom:362.421000px;}
.y4f{bottom:362.923500px;}
.y23a{bottom:363.652500px;}
.yeb{bottom:364.678500px;}
.y27d{bottom:365.457000px;}
.y83{bottom:367.908000px;}
.y15b{bottom:370.734000px;}
.y202{bottom:371.134500px;}
.y29{bottom:372.703500px;}
.y1c6{bottom:375.754500px;}
.y129{bottom:377.794500px;}
.y27c{bottom:378.907500px;}
.yb8{bottom:380.353500px;}
.y190{bottom:380.524500px;}
.y4e{bottom:380.856000px;}
.yea{bottom:382.611000px;}
.y239{bottom:386.179500px;}
.y15a{bottom:388.668000px;}
.y201{bottom:389.067000px;}
.y28{bottom:390.636000px;}
.y27b{bottom:392.356500px;}
.y1c5{bottom:393.687000px;}
.y128{bottom:395.727000px;}
.y82{bottom:397.677000px;}
.yb7{bottom:398.287500px;}
.y18f{bottom:398.457000px;}
.y4d{bottom:405.408000px;}
.y27a{bottom:405.805500px;}
.ye9{bottom:406.165500px;}
.y200{bottom:406.999500px;}
.y27{bottom:408.568500px;}
.y159{bottom:411.670500px;}
.y1c4{bottom:411.715500px;}
.y127{bottom:413.661000px;}
.y81{bottom:415.609500px;}
.y18e{bottom:416.389500px;}
.yb6{bottom:419.583000px;}
.y279{bottom:419.638500px;}
.y4c{bottom:423.340500px;}
.ye8{bottom:424.098000px;}
.y26{bottom:426.501000px;}
.y238{bottom:426.639000px;}
.y1c3{bottom:429.649500px;}
.y1ff{bottom:430.999500px;}
.y126{bottom:432.010500px;}
.y278{bottom:433.089000px;}
.y18d{bottom:434.323500px;}
.y1fe{bottom:434.694000px;}
.y80{bottom:436.965000px;}
.yb5{bottom:437.515500px;}
.y158{bottom:440.571000px;}
.y4b{bottom:441.273000px;}
.ye7{bottom:442.030500px;}
.y25{bottom:444.435000px;}
.y237{bottom:444.571500px;}
.y277{bottom:446.538000px;}
.y1c2{bottom:447.582000px;}
.y125{bottom:449.944500px;}
.y18c{bottom:452.256000px;}
.y7f{bottom:454.897500px;}
.y1fd{bottom:457.155000px;}
.y157{bottom:458.503500px;}
.y4a{bottom:459.205500px;}
.ye6{bottom:459.963000px;}
.y276{bottom:459.987000px;}
.yb4{bottom:460.777500px;}
.y1fc{bottom:462.307500px;}
.y236{bottom:462.504000px;}
.y1c1{bottom:465.514500px;}
.y124{bottom:467.877000px;}
.y24{bottom:468.195000px;}
.y18b{bottom:470.188500px;}
.y275{bottom:473.820000px;}
.y7e{bottom:476.253000px;}
.y156{bottom:476.436000px;}
.y49{bottom:477.139500px;}
.ye5{bottom:477.895500px;}
.y235{bottom:480.438000px;}
.y1c0{bottom:483.447000px;}
.y123{bottom:485.809500px;}
.y274{bottom:487.270500px;}
.yb3{bottom:490.308000px;}
.y1fb{bottom:490.440000px;}
.y7d{bottom:494.187000px;}
.y18a{bottom:494.290500px;}
.y155{bottom:494.370000px;}
.y48{bottom:495.072000px;}
.ye4{bottom:495.829500px;}
.y234{bottom:498.370500px;}
.y273{bottom:501.102000px;}
.y122{bottom:503.742000px;}
.y1be{bottom:504.424500px;}
.y1bd{bottom:508.102500px;}
.yb2{bottom:508.240500px;}
.y1fa{bottom:508.372500px;}
.y7c{bottom:512.119500px;}
.ye3{bottom:513.762000px;}
.y272{bottom:514.552500px;}
.y233{bottom:516.303000px;}
.y23{bottom:516.898500px;}
.y154{bottom:518.118000px;}
.y1bf{bottom:518.352000px;}
.y47{bottom:519.624000px;}
.y121{bottom:521.674500px;}
.yb1{bottom:526.173000px;}
.y1f9{bottom:526.305000px;}
.y271{bottom:528.001500px;}
.y153{bottom:528.369000px;}
.y1bc{bottom:528.462000px;}
.y7b{bottom:530.052000px;}
.ye2{bottom:531.694500px;}
.y22{bottom:531.843000px;}
.y232{bottom:534.235500px;}
.y46{bottom:537.556500px;}
.y120{bottom:539.607000px;}
.y270{bottom:541.450500px;}
.y189{bottom:542.316000px;}
.yb0{bottom:544.105500px;}
.y1f8{bottom:544.239000px;}
.y21{bottom:546.973500px;}
.y7a{bottom:547.984500px;}
.y231{bottom:552.168000px;}
.y26f{bottom:554.901000px;}
.y45{bottom:555.489000px;}
.y11f{bottom:557.541000px;}
.ye1{bottom:558.699000px;}
.y188{bottom:560.248500px;}
.y1bb{bottom:561.528000px;}
.y152{bottom:561.892500px;}
.y20{bottom:561.918000px;}
.y1f7{bottom:562.171500px;}
.yaf{bottom:562.216500px;}
.y79{bottom:565.917000px;}
.y26e{bottom:568.734000px;}
.y230{bottom:570.102000px;}
.y44{bottom:573.421500px;}
.y11e{bottom:575.473500px;}
.y1f{bottom:576.861000px;}
.y187{bottom:578.181000px;}
.y1ba{bottom:579.460500px;}
.y1f6{bottom:580.104000px;}
.yae{bottom:580.149000px;}
.y26d{bottom:582.183000px;}
.y78{bottom:583.849500px;}
.y151{bottom:585.537000px;}
.y43{bottom:591.355500px;}
.y1e{bottom:591.805500px;}
.y22f{bottom:592.629000px;}
.y11d{bottom:593.406000px;}
.ye0{bottom:593.506500px;}
.y26c{bottom:595.632000px;}
.y150{bottom:595.788000px;}
.y186{bottom:596.113500px;}
.yad{bottom:598.081500px;}
.y1d{bottom:606.750000px;}
.y77{bottom:607.948500px;}
.y26b{bottom:609.082500px;}
.y22e{bottom:610.561500px;}
.y42{bottom:611.007000px;}
.y185{bottom:614.046000px;}
.y1b9{bottom:615.423000px;}
.yac{bottom:616.192500px;}
.y1f5{bottom:616.342500px;}
.y11c{bottom:617.022000px;}
.y76{bottom:618.199500px;}
.y1c{bottom:621.693000px;}
.y26a{bottom:622.915500px;}
.ydf{bottom:627.067500px;}
.y22d{bottom:628.494000px;}
.y41{bottom:628.939500px;}
.y14f{bottom:634.026000px;}
.yab{bottom:634.125000px;}
.y1f4{bottom:634.276500px;}
.y184{bottom:635.482500px;}
.y269{bottom:636.364500px;}
.y1b{bottom:636.637500px;}
.y1b7{bottom:637.147500px;}
.y1b8{bottom:637.416000px;}
.yde{bottom:645.000000px;}
.y22c{bottom:646.426500px;}
.y40{bottom:646.873500px;}
.y268{bottom:650.197500px;}
.y1a{bottom:651.582000px;}
.y14e{bottom:651.958500px;}
.yaa{bottom:652.057500px;}
.y1f3{bottom:652.209000px;}
.y183{bottom:653.415000px;}
.y75{bottom:657.573000px;}
.y1b6{bottom:657.775500px;}
.ydd{bottom:662.932500px;}
.y267{bottom:663.646500px;}
.y3f{bottom:664.806000px;}
.y19{bottom:666.525000px;}
.y11b{bottom:667.528500px;}
.ya9{bottom:669.990000px;}
.y1f2{bottom:670.141500px;}
.y182{bottom:671.349000px;}
.y22b{bottom:671.728500px;}
.y74{bottom:675.507000px;}
.y14d{bottom:676.434000px;}
.y266{bottom:677.095500px;}
.y11a{bottom:680.977500px;}
.y1b5{bottom:681.159000px;}
.y18{bottom:681.469500px;}
.y3e{bottom:682.738500px;}
.y14c{bottom:686.685000px;}
.ya8{bottom:687.924000px;}
.y1f1{bottom:688.074000px;}
.y181{bottom:689.281500px;}
.y265{bottom:690.546000px;}
.y73{bottom:693.439500px;}
.ydb{bottom:694.132500px;}
.y119{bottom:694.426500px;}
.y17{bottom:696.414000px;}
.y3d{bottom:700.671000px;}
.y1b2{bottom:701.866500px;}
.y264{bottom:703.995000px;}
.y1f0{bottom:706.006500px;}
.y1b4{bottom:706.107000px;}
.y1b1{bottom:706.375500px;}
.y180{bottom:707.457000px;}
.y16{bottom:711.357000px;}
.y72{bottom:711.372000px;}
.ya7{bottom:711.630000px;}
.y118{bottom:716.394000px;}
.ydc{bottom:716.400000px;}
.yda{bottom:716.548500px;}
.y1b3{bottom:716.626500px;}
.y263{bottom:717.828000px;}
.y3c{bottom:718.603500px;}
.y14b{bottom:720.789000px;}
.y1ef{bottom:723.940500px;}
.y22a{bottom:724.144500px;}
.y17f{bottom:725.391000px;}
.y15{bottom:726.301500px;}
.y1b0{bottom:726.735000px;}
.y71{bottom:729.304500px;}
.y262{bottom:731.277000px;}
.y10b{bottom:733.729500px;}
.y3b{bottom:736.536000px;}
.y14a{bottom:738.721500px;}
.yd9{bottom:738.964500px;}
.ya6{bottom:741.159000px;}
.y14{bottom:741.246000px;}
.y1ee{bottom:741.873000px;}
.y229{bottom:742.078500px;}
.y17e{bottom:743.323500px;}
.y261{bottom:744.727500px;}
.y70{bottom:747.237000px;}
.y1af{bottom:750.865500px;}
.y3a{bottom:754.470000px;}
.y13{bottom:756.189000px;}
.y149{bottom:756.655500px;}
.y260{bottom:758.560500px;}
.ya5{bottom:759.091500px;}
.y1ed{bottom:759.805500px;}
.y228{bottom:760.011000px;}
.y17d{bottom:761.256000px;}
.y1ae{bottom:768.798000px;}
.yd8{bottom:770.382000px;}
.y12{bottom:771.133500px;}
.y25f{bottom:772.009500px;}
.y39{bottom:772.402500px;}
.y6f{bottom:776.172000px;}
.ya4{bottom:777.024000px;}
.y1ec{bottom:777.738000px;}
.y227{bottom:777.943500px;}
.y17c{bottom:779.188500px;}
.y25e{bottom:785.458500px;}
.y11{bottom:786.078000px;}
.y1ad{bottom:786.730500px;}
.yd7{bottom:788.314500px;}
.y38{bottom:790.335000px;}
.y148{bottom:792.676500px;}
.ya3{bottom:794.958000px;}
.y1eb{bottom:795.670500px;}
.y226{bottom:795.876000px;}
.y17b{bottom:797.121000px;}
.y25d{bottom:798.909000px;}
.y10{bottom:801.021000px;}
.y1ac{bottom:804.664500px;}
.y6e{bottom:805.105500px;}
.yd6{bottom:807.493500px;}
.y37{bottom:808.267500px;}
.y147{bottom:810.609000px;}
.y25c{bottom:812.740500px;}
.y1ea{bottom:813.603000px;}
.y225{bottom:813.808500px;}
.y17a{bottom:815.053500px;}
.yf{bottom:815.965500px;}
.ya2{bottom:816.253500px;}
.y1ab{bottom:822.597000px;}
.y6d{bottom:823.038000px;}
.yd5{bottom:825.427500px;}
.y25b{bottom:826.191000px;}
.y36{bottom:827.920500px;}
.ye{bottom:830.908500px;}
.y224{bottom:831.741000px;}
.y179{bottom:833.230500px;}
.ya1{bottom:834.186000px;}
.y146{bottom:835.084500px;}
.y1e9{bottom:837.552000px;}
.y25a{bottom:839.640000px;}
.y1aa{bottom:840.529500px;}
.yd4{bottom:843.360000px;}
.y145{bottom:845.335500px;}
.yd{bottom:845.853000px;}
.y6b{bottom:846.472500px;}
.y223{bottom:849.675000px;}
.y178{bottom:851.163000px;}
.ya0{bottom:852.120000px;}
.y259{bottom:853.473000px;}
.y6c{bottom:856.723500px;}
.y1a9{bottom:858.462000px;}
.yd3{bottom:861.292500px;}
.y6a{bottom:866.833500px;}
.y258{bottom:866.922000px;}
.y1e8{bottom:868.749000px;}
.y177{bottom:869.095500px;}
.y9f{bottom:870.052500px;}
.y222{bottom:872.202000px;}
.y1a8{bottom:876.394500px;}
.yd2{bottom:879.225000px;}
.y144{bottom:879.439500px;}
.y257{bottom:880.372500px;}
.y1e7{bottom:886.681500px;}
.y176{bottom:887.029500px;}
.y9e{bottom:887.985000px;}
.y221{bottom:890.134500px;}
.y256{bottom:893.821500px;}
.y1a7{bottom:894.327000px;}
.y69{bottom:896.263500px;}
.yd1{bottom:897.157500px;}
.y143{bottom:902.524500px;}
.y1e6{bottom:904.615500px;}
.y175{bottom:904.962000px;}
.y9d{bottom:905.917500px;}
.y255{bottom:907.654500px;}
.yc{bottom:910.894500px;}
.y1a6{bottom:912.261000px;}
.y142{bottom:912.774000px;}
.y68{bottom:914.196000px;}
.yd0{bottom:915.090000px;}
.y254{bottom:921.103500px;}
.y9c{bottom:923.850000px;}
.yb{bottom:929.386500px;}
.y1a5{bottom:930.193500px;}
.ycf{bottom:933.024000px;}
.y253{bottom:934.554000px;}
.y9b{bottom:941.784000px;}
.y220{bottom:941.925000px;}
.y67{bottom:943.129500px;}
.y141{bottom:946.879500px;}
.ya{bottom:947.880000px;}
.y252{bottom:948.003000px;}
.yce{bottom:950.956500px;}
.y174{bottom:955.375500px;}
.y9a{bottom:959.716500px;}
.y251{bottom:961.836000px;}
.y140{bottom:964.812000px;}
.y1a4{bottom:966.156000px;}
.y9{bottom:966.373500px;}
.y173{bottom:968.824500px;}
.ycd{bottom:968.889000px;}
.y10a{bottom:969.871500px;}
.y250{bottom:975.285000px;}
.y99{bottom:977.649000px;}
.y66{bottom:980.115000px;}
.y13f{bottom:982.744500px;}
.y8{bottom:985.089000px;}
.yf8{bottom:987.205500px;}
.ycc{bottom:988.068000px;}
.y24f{bottom:988.735500px;}
.y1a3{bottom:989.769000px;}
.y98{bottom:995.581500px;}
.y65{bottom:998.049000px;}
.y1a1{bottom:1000.020000px;}
.y13e{bottom:1000.677000px;}
.y24e{bottom:1002.184500px;}
.y29d{bottom:1002.765000px;}
.ycb{bottom:1006.000500px;}
.y1a2{bottom:1006.420500px;}
.y24d{bottom:1015.633500px;}
.y29c{bottom:1016.214000px;}
.y13d{bottom:1018.765500px;}
.y64{bottom:1021.408500px;}
.y7{bottom:1022.914500px;}
.yca{bottom:1023.934500px;}
.y97{bottom:1024.390500px;}
.y24c{bottom:1029.466500px;}
.y29b{bottom:1029.664500px;}
.y13c{bottom:1036.698000px;}
.y1a0{bottom:1039.824000px;}
.y6{bottom:1041.408000px;}
.yc9{bottom:1041.867000px;}
.y24b{bottom:1042.917000px;}
.y29a{bottom:1043.113500px;}
.y19f{bottom:1054.144500px;}
.y24a{bottom:1056.366000px;}
.y299{bottom:1056.562500px;}
.y29f{bottom:1056.564000px;}
.y13b{bottom:1057.839000px;}
.y19e{bottom:1057.854000px;}
.yc8{bottom:1059.799500px;}
.y5{bottom:1059.901500px;}
.y96{bottom:1061.046000px;}
.y249{bottom:1069.815000px;}
.y298{bottom:1070.013000px;}
.y63{bottom:1071.720000px;}
.y13a{bottom:1075.771500px;}
.y19d{bottom:1075.786500px;}
.yc7{bottom:1077.732000px;}
.y4{bottom:1078.395000px;}
.y95{bottom:1078.978500px;}
.y297{bottom:1083.462000px;}
.y248{bottom:1083.648000px;}
.y19c{bottom:1090.024500px;}
.y5d{bottom:1090.101000px;}
.y139{bottom:1093.704000px;}
.y19b{bottom:1093.719000px;}
.yc6{bottom:1095.664500px;}
.y94{bottom:1096.911000px;}
.y296{bottom:1096.912500px;}
.y247{bottom:1097.097000px;}
.y3{bottom:1097.109000px;}
.y295{bottom:1110.361500px;}
.y246{bottom:1110.547500px;}
.y138{bottom:1111.636500px;}
.y19a{bottom:1111.651500px;}
.yc5{bottom:1113.598500px;}
.y93{bottom:1114.845000px;}
.y294{bottom:1123.810500px;}
.y245{bottom:1123.996500px;}
.y137{bottom:1129.569000px;}
.yc4{bottom:1131.531000px;}
.y92{bottom:1132.777500px;}
.y293{bottom:1137.261000px;}
.y244{bottom:1137.829500px;}
.y2{bottom:1144.183500px;}
.y136{bottom:1147.503000px;}
.yc3{bottom:1149.463500px;}
.y91{bottom:1150.710000px;}
.y243{bottom:1151.278500px;}
.y292{bottom:1164.159000px;}
.y29e{bottom:1164.160500px;}
.y242{bottom:1164.729000px;}
.y135{bottom:1165.435500px;}
.yc2{bottom:1167.396000px;}
.y90{bottom:1168.642500px;}
.y291{bottom:1177.609500px;}
.y241{bottom:1178.178000px;}
.y1{bottom:1186.026000px;}
.y8f{bottom:1186.575000px;}
.y290{bottom:1191.058500px;}
.y8e{bottom:1204.507500px;}
.yc1{bottom:1204.509000px;}
.h32{height:22.119001px;}
.h33{height:24.912369px;}
.h1c{height:28.938536px;}
.h15{height:29.657582px;}
.h1a{height:31.382100px;}
.h34{height:32.804932px;}
.hc{height:33.464355px;}
.h1e{height:34.726243px;}
.ha{height:34.765576px;}
.h35{height:34.999576px;}
.h36{height:35.005576px;}
.h18{height:35.589098px;}
.h8{height:38.358259px;}
.h9{height:38.652259px;}
.h1d{height:40.513950px;}
.h4{height:41.006062px;}
.h16{height:41.520615px;}
.h19{height:41.874175px;}
.h5{height:43.456861px;}
.h6{height:43.756861px;}
.hd{height:43.804688px;}
.hb{height:44.831700px;}
.h25{height:45.080125px;}
.h17{height:48.853204px;}
.h29{height:53.072100px;}
.h20{height:53.078100px;}
.h2f{height:54.920100px;}
.h24{height:56.060100px;}
.h13{height:56.066100px;}
.h7{height:57.209774px;}
.h3{height:57.215774px;}
.h26{height:58.234861px;}
.h27{height:58.294861px;}
.hf{height:60.761863px;}
.h30{height:65.441700px;}
.h10{height:70.186213px;}
.h21{height:84.454861px;}
.h1f{height:84.460861px;}
.h22{height:85.265700px;}
.h12{height:85.271700px;}
.h28{height:85.520125px;}
.h2a{height:85.534861px;}
.h2c{height:86.679024px;}
.h2{height:104.296729px;}
.h31{height:114.052861px;}
.h23{height:126.269700px;}
.h11{height:126.275700px;}
.he{height:126.959959px;}
.h2b{height:127.343700px;}
.h2d{height:134.516100px;}
.h2e{height:144.278100px;}
.h14{height:229.854240px;}
.h1b{height:232.557269px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:304.020720px;}
.w3{width:344.781360px;}
.w4{width:344.786767px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:13.893476px;}
.x77{left:15.192677px;}
.x3d{left:17.777984px;}
.x3e{left:19.611131px;}
.x58{left:21.804207px;}
.x3c{left:23.651538px;}
.x27{left:25.500000px;}
.x76{left:30.260650px;}
.x43{left:44.931775px;}
.x3a{left:48.959733px;}
.x72{left:51.536396px;}
.x16{left:66.756000px;}
.x1{left:70.570500px;}
.x15{left:74.773500px;}
.x5{left:78.835500px;}
.x22{left:81.700500px;}
.x14{left:85.420500px;}
.x2b{left:86.682274px;}
.x18{left:91.660500px;}
.x7e{left:94.146000px;}
.x7{left:96.133500px;}
.x2c{left:97.537500px;}
.x28{left:100.120500px;}
.x4{left:101.700000px;}
.x4f{left:103.114500px;}
.x19{left:104.944500px;}
.x5e{left:110.781000px;}
.x1a{left:112.851000px;}
.x3{left:127.050000px;}
.x62{left:128.787000px;}
.x2d{left:134.778000px;}
.x3f{left:139.376568px;}
.x57{left:143.184000px;}
.x40{left:146.031080px;}
.x45{left:147.165544px;}
.x2a{left:148.792900px;}
.x68{left:150.013500px;}
.x63{left:151.462500px;}
.x73{left:153.026657px;}
.x2{left:156.415500px;}
.x46{left:161.412653px;}
.x6{left:163.036500px;}
.x41{left:168.969272px;}
.x69{left:172.566000px;}
.x74{left:173.824151px;}
.x37{left:174.894000px;}
.x3b{left:178.179533px;}
.x2e{left:183.721500px;}
.x2f{left:187.998000px;}
.x5b{left:189.452709px;}
.x24{left:193.812000px;}
.x75{left:196.085472px;}
.x5c{left:198.005838px;}
.x5f{left:199.075500px;}
.x55{left:202.974000px;}
.x38{left:204.760500px;}
.x64{left:208.771500px;}
.x53{left:212.107500px;}
.x6e{left:213.381010px;}
.x32{left:214.935000px;}
.x39{left:216.894000px;}
.x6c{left:218.187000px;}
.x50{left:223.620000px;}
.x29{left:230.066601px;}
.x66{left:232.146000px;}
.x59{left:234.579935px;}
.x17{left:240.582000px;}
.x5a{left:243.133064px;}
.x54{left:246.901500px;}
.x51{left:252.241500px;}
.x60{left:256.932000px;}
.x6d{left:258.306000px;}
.x56{left:264.817500px;}
.x33{left:269.565000px;}
.x6a{left:274.968000px;}
.x67{left:283.761000px;}
.x52{left:286.126500px;}
.x61{left:289.243500px;}
.x30{left:295.398000px;}
.x5d{left:298.372500px;}
.x78{left:306.922501px;}
.x7f{left:308.799000px;}
.x79{left:313.437657px;}
.x31{left:314.577000px;}
.x65{left:328.996500px;}
.xa{left:359.770500px;}
.x23{left:392.326500px;}
.x9{left:410.676000px;}
.x6b{left:412.594500px;}
.xc{left:417.849000px;}
.x34{left:420.066000px;}
.x8{left:426.673500px;}
.xb{left:443.971500px;}
.x1d{left:446.457000px;}
.x1c{left:454.474500px;}
.x7b{left:461.400000px;}
.x1b{left:467.782500px;}
.x1f{left:471.360000px;}
.x4b{left:476.224500px;}
.x21{left:479.580000px;}
.x7c{left:482.812500px;}
.x20{left:484.645500px;}
.x25{left:491.781000px;}
.x4c{left:514.837500px;}
.x36{left:534.151500px;}
.x71{left:540.069000px;}
.x35{left:558.298500px;}
.x26{left:560.257500px;}
.x70{left:573.042000px;}
.x48{left:577.033500px;}
.x6f{left:582.382500px;}
.x7a{left:598.947000px;}
.x7d{left:600.138000px;}
.x4d{left:607.213500px;}
.x49{left:613.140000px;}
.x1e{left:620.283000px;}
.x47{left:623.907000px;}
.x42{left:626.173500px;}
.xf{left:640.704000px;}
.xe{left:648.721500px;}
.x4a{left:661.009500px;}
.x11{left:665.608500px;}
.x12{left:678.892500px;}
.xd{left:685.986000px;}
.x13{left:690.534000px;}
.x4e{left:722.818500px;}
.x10{left:814.531500px;}
@media print{
.v4{vertical-align:-19.997448pt;}
.v2{vertical-align:-17.970481pt;}
.v5{vertical-align:-7.968000pt;}
.va{vertical-align:-6.517857pt;}
.vc{vertical-align:-5.317333pt;}
.v3{vertical-align:-2.026967pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.586735pt;}
.v9{vertical-align:6.517857pt;}
.vf{vertical-align:13.136000pt;}
.v12{vertical-align:15.349333pt;}
.v11{vertical-align:18.298667pt;}
.ve{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.v13{vertical-align:22.053333pt;}
.v8{vertical-align:28.480000pt;}
.v1a{vertical-align:30.336000pt;}
.v19{vertical-align:32.416000pt;}
.v6{vertical-align:36.448000pt;}
.v14{vertical-align:37.402667pt;}
.v10{vertical-align:55.226667pt;}
.vd{vertical-align:64.426667pt;}
.v7{vertical-align:72.394667pt;}
.v15{vertical-align:73.344000pt;}
.v16{vertical-align:74.922667pt;}
.v18{vertical-align:100.352000pt;}
.v17{vertical-align:111.365333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000019pt;}
.ls27{letter-spacing:0.000055pt;}
.ls2d{letter-spacing:0.000058pt;}
.ls8d{letter-spacing:0.000125pt;}
.ls89{letter-spacing:0.000501pt;}
.ls22{letter-spacing:0.000546pt;}
.lsd{letter-spacing:0.000681pt;}
.lsc5{letter-spacing:0.000882pt;}
.lsc0{letter-spacing:0.001253pt;}
.ls50{letter-spacing:0.001739pt;}
.ls4c{letter-spacing:0.001855pt;}
.ls8b{letter-spacing:0.002079pt;}
.ls2f{letter-spacing:0.002122pt;}
.ls84{letter-spacing:0.002352pt;}
.ls24{letter-spacing:0.002387pt;}
.ls2{letter-spacing:0.002422pt;}
.ls4f{letter-spacing:0.002531pt;}
.ls4e{letter-spacing:0.002726pt;}
.lsb4{letter-spacing:0.002827pt;}
.ls7{letter-spacing:0.002906pt;}
.ls0{letter-spacing:0.002933pt;}
.ls55{letter-spacing:0.003035pt;}
.ls4d{letter-spacing:0.003180pt;}
.ls25{letter-spacing:0.003733pt;}
.ls15{letter-spacing:0.003892pt;}
.ls5{letter-spacing:0.004349pt;}
.ls20{letter-spacing:0.004352pt;}
.lsad{letter-spacing:0.004777pt;}
.ls2b{letter-spacing:0.005391pt;}
.lsb1{letter-spacing:0.196932pt;}
.ls9b{letter-spacing:0.407455pt;}
.lsb3{letter-spacing:0.412788pt;}
.ls21{letter-spacing:0.736267pt;}
.ls4b{letter-spacing:0.936616pt;}
.ls96{letter-spacing:1.040854pt;}
.lsc6{letter-spacing:1.908479pt;}
.ls1{letter-spacing:2.635446pt;}
.ls45{letter-spacing:2.651242pt;}
.ls1e{letter-spacing:2.652911pt;}
.ls56{letter-spacing:2.654299pt;}
.lscf{letter-spacing:2.655334pt;}
.lsce{letter-spacing:2.656015pt;}
.ls60{letter-spacing:2.656576pt;}
.ls37{letter-spacing:2.656693pt;}
.lsa2{letter-spacing:2.657986pt;}
.lsa{letter-spacing:2.658245pt;}
.ls6b{letter-spacing:2.660667pt;}
.lsd0{letter-spacing:2.661044pt;}
.ls1b{letter-spacing:4.167686pt;}
.ls53{letter-spacing:4.373812pt;}
.ls7a{letter-spacing:5.718992pt;}
.ls36{letter-spacing:6.012540pt;}
.ls2c{letter-spacing:6.162978pt;}
.ls69{letter-spacing:6.168311pt;}
.ls9a{letter-spacing:6.775412pt;}
.ls99{letter-spacing:6.778933pt;}
.ls52{letter-spacing:7.026245pt;}
.ls4a{letter-spacing:7.570864pt;}
.ls10{letter-spacing:7.712479pt;}
.ls3c{letter-spacing:8.795145pt;}
.ls49{letter-spacing:8.832675pt;}
.ls6a{letter-spacing:8.855412pt;}
.ls3b{letter-spacing:11.447578pt;}
.ls30{letter-spacing:11.803145pt;}
.lsb{letter-spacing:11.804745pt;}
.ls8{letter-spacing:11.805573pt;}
.lsa9{letter-spacing:11.808267pt;}
.ls9{letter-spacing:11.808479pt;}
.lsb5{letter-spacing:11.809791pt;}
.ls12{letter-spacing:11.810079pt;}
.lsb8{letter-spacing:11.810827pt;}
.ls93{letter-spacing:11.812349pt;}
.lsba{letter-spacing:12.854188pt;}
.ls65{letter-spacing:13.442079pt;}
.ls32{letter-spacing:14.459242pt;}
.ls13{letter-spacing:14.460911pt;}
.ls5d{letter-spacing:14.464576pt;}
.ls19{letter-spacing:14.466245pt;}
.ls6{letter-spacing:14.757812pt;}
.lsb2{letter-spacing:14.759329pt;}
.lscc{letter-spacing:14.759467pt;}
.ls9f{letter-spacing:14.759720pt;}
.lsbd{letter-spacing:14.764662pt;}
.lsca{letter-spacing:14.765053pt;}
.lsc2{letter-spacing:14.954265pt;}
.lsc9{letter-spacing:14.959599pt;}
.ls29{letter-spacing:15.075733pt;}
.lsc4{letter-spacing:15.089995pt;}
.lsc3{letter-spacing:15.091733pt;}
.ls51{letter-spacing:15.300695pt;}
.ls76{letter-spacing:15.669812pt;}
.lsc8{letter-spacing:15.690265pt;}
.ls47{letter-spacing:15.803145pt;}
.ls38{letter-spacing:15.868911pt;}
.ls97{letter-spacing:15.879452pt;}
.ls95{letter-spacing:15.882933pt;}
.lsc{letter-spacing:15.975686pt;}
.ls66{letter-spacing:16.096576pt;}
.ls39{letter-spacing:16.752576pt;}
.lsbb{letter-spacing:17.156932pt;}
.lsa4{letter-spacing:17.210265pt;}
.ls34{letter-spacing:17.212911pt;}
.ls35{letter-spacing:17.218245pt;}
.ls54{letter-spacing:17.239578pt;}
.ls43{letter-spacing:17.266245pt;}
.ls87{letter-spacing:17.411633pt;}
.ls3a{letter-spacing:17.413909pt;}
.ls31{letter-spacing:17.415578pt;}
.ls58{letter-spacing:17.416966pt;}
.ls6d{letter-spacing:17.418001pt;}
.ls7e{letter-spacing:17.526992pt;}
.ls48{letter-spacing:17.653909pt;}
.lsc7{letter-spacing:17.711599pt;}
.ls2a{letter-spacing:17.735578pt;}
.ls9e{letter-spacing:17.945761pt;}
.lsb6{letter-spacing:18.183412pt;}
.ls75{letter-spacing:18.327578pt;}
.ls6c{letter-spacing:18.463334pt;}
.ls94{letter-spacing:18.594118pt;}
.ls1d{letter-spacing:18.595733pt;}
.lsbe{letter-spacing:18.601067pt;}
.lsa5{letter-spacing:18.720267pt;}
.ls68{letter-spacing:18.850133pt;}
.ls3e{letter-spacing:18.892911pt;}
.lsb7{letter-spacing:18.896854pt;}
.lsf{letter-spacing:19.607578pt;}
.ls3d{letter-spacing:19.628911pt;}
.ls7b{letter-spacing:20.476326pt;}
.ls18{letter-spacing:20.769873pt;}
.ls2e{letter-spacing:20.930978pt;}
.ls90{letter-spacing:21.102400pt;}
.ls5a{letter-spacing:21.131145pt;}
.lsa0{letter-spacing:21.136479pt;}
.lsaa{letter-spacing:21.138906pt;}
.ls82{letter-spacing:21.201659pt;}
.ls83{letter-spacing:21.248576pt;}
.ls67{letter-spacing:21.500911pt;}
.ls64{letter-spacing:21.582400pt;}
.ls86{letter-spacing:22.489067pt;}
.ls6e{letter-spacing:22.603145pt;}
.ls23{letter-spacing:22.722245pt;}
.ls28{letter-spacing:22.727578pt;}
.lsa3{letter-spacing:22.876662pt;}
.ls8f{letter-spacing:23.203892pt;}
.lsae{letter-spacing:23.788653pt;}
.lsa7{letter-spacing:23.791095pt;}
.lsaf{letter-spacing:23.797812pt;}
.ls11{letter-spacing:24.193873pt;}
.ls78{letter-spacing:24.421812pt;}
.ls3f{letter-spacing:24.512576pt;}
.ls91{letter-spacing:24.864576pt;}
.ls72{letter-spacing:25.303686pt;}
.ls17{letter-spacing:25.548540pt;}
.ls57{letter-spacing:25.731633pt;}
.ls85{letter-spacing:25.763892pt;}
.ls1f{letter-spacing:26.450245pt;}
.ls79{letter-spacing:26.469909pt;}
.ls98{letter-spacing:26.569682pt;}
.lsbc{letter-spacing:26.650265pt;}
.ls77{letter-spacing:27.079578pt;}
.ls9d{letter-spacing:27.103016pt;}
.ls41{letter-spacing:27.351578pt;}
.lsb9{letter-spacing:28.444458pt;}
.lsa6{letter-spacing:28.587145pt;}
.ls62{letter-spacing:28.787733pt;}
.ls92{letter-spacing:29.218245pt;}
.ls8e{letter-spacing:29.240966pt;}
.ls40{letter-spacing:29.537873pt;}
.ls42{letter-spacing:29.698245pt;}
.ls6f{letter-spacing:30.048479pt;}
.ls8c{letter-spacing:30.402079pt;}
.ls88{letter-spacing:30.407412pt;}
.ls59{letter-spacing:30.539145pt;}
.ls44{letter-spacing:31.308911pt;}
.ls63{letter-spacing:31.448966pt;}
.ls9c{letter-spacing:31.872576pt;}
.ls1c{letter-spacing:31.878586pt;}
.ls26{letter-spacing:31.883919pt;}
.lscb{letter-spacing:34.149812pt;}
.ls5c{letter-spacing:34.215686pt;}
.ls14{letter-spacing:35.803145pt;}
.ls8a{letter-spacing:36.012911pt;}
.lsbf{letter-spacing:57.189812pt;}
.ls7d{letter-spacing:66.517812pt;}
.ls80{letter-spacing:69.472479pt;}
.ls61{letter-spacing:84.509019pt;}
.ls5f{letter-spacing:87.461812pt;}
.lsab{letter-spacing:94.485812pt;}
.ls5e{letter-spacing:121.730352pt;}
.lsac{letter-spacing:126.620653pt;}
.ls73{letter-spacing:130.837812pt;}
.ls71{letter-spacing:136.741812pt;}
.lsa8{letter-spacing:145.504479pt;}
.ls74{letter-spacing:156.636745pt;}
.lse{letter-spacing:182.556911pt;}
.lscd{letter-spacing:191.628911pt;}
.ls33{letter-spacing:199.692911pt;}
.ls16{letter-spacing:351.714352pt;}
.ls70{letter-spacing:354.514352pt;}
.ls5b{letter-spacing:389.890352pt;}
.ls7f{letter-spacing:402.190400pt;}
.lsa1{letter-spacing:407.588349pt;}
.lsb0{letter-spacing:426.183720pt;}
.ls7c{letter-spacing:434.658079pt;}
.lsc1{letter-spacing:452.556911pt;}
.ls81{letter-spacing:455.228326pt;}
.ls1a{letter-spacing:467.559578pt;}
.ls46{letter-spacing:476.039686pt;}
.ws110{word-spacing:-42.359791pt;}
.wsfd{word-spacing:-41.338148pt;}
.wsad{word-spacing:-38.362652pt;}
.ws54{word-spacing:-34.611401pt;}
.ws57{word-spacing:-28.118362pt;}
.ws6e{word-spacing:-25.738045pt;}
.ws6b{word-spacing:-19.838893pt;}
.ws13a{word-spacing:-19.084062pt;}
.wsf3{word-spacing:-15.748878pt;}
.wscd{word-spacing:-15.027612pt;}
.ws58{word-spacing:-14.760588pt;}
.ws1{word-spacing:-14.611867pt;}
.wse1{word-spacing:-13.660725pt;}
.wse2{word-spacing:-13.657832pt;}
.wse7{word-spacing:-13.655391pt;}
.wsbe{word-spacing:-13.652499pt;}
.ws5{word-spacing:-13.283467pt;}
.ws23{word-spacing:-13.262246pt;}
.wsee{word-spacing:-13.039051pt;}
.ws106{word-spacing:-12.979612pt;}
.ws14e{word-spacing:-12.227612pt;}
.wsf2{word-spacing:-12.020499pt;}
.ws56{word-spacing:-10.706058pt;}
.ws64{word-spacing:-10.701130pt;}
.ws15a{word-spacing:-10.626800pt;}
.wscf{word-spacing:-10.463165pt;}
.wse3{word-spacing:-10.256866pt;}
.ws118{word-spacing:-9.726278pt;}
.wsf1{word-spacing:-8.340499pt;}
.wsf8{word-spacing:-7.871165pt;}
.ws55{word-spacing:-6.866058pt;}
.wsa0{word-spacing:-6.863165pt;}
.wsf4{word-spacing:-6.614199pt;}
.wsc7{word-spacing:-5.940366pt;}
.ws45{word-spacing:-5.887232pt;}
.wsaa{word-spacing:-4.463165pt;}
.wsa5{word-spacing:-4.089832pt;}
.wsef{word-spacing:-3.884725pt;}
.ws140{word-spacing:-3.097832pt;}
.wse8{word-spacing:-2.967591pt;}
.ws101{word-spacing:-2.964870pt;}
.wsfc{word-spacing:-1.008866pt;}
.wsea{word-spacing:-0.952083pt;}
.ws3a{word-spacing:-0.903276pt;}
.ws35{word-spacing:-0.850142pt;}
.ws171{word-spacing:-0.797008pt;}
.ws150{word-spacing:-0.690740pt;}
.wsdd{word-spacing:-0.371937pt;}
.ws1a2{word-spacing:-0.297550pt;}
.ws1a1{word-spacing:-0.281787pt;}
.ws61{word-spacing:-0.265669pt;}
.ws4e{word-spacing:-0.212535pt;}
.ws8a{word-spacing:-0.106268pt;}
.ws51{word-spacing:-0.089852pt;}
.ws8b{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.047821pt;}
.wsd6{word-spacing:-0.042507pt;}
.ws138{word-spacing:-0.037194pt;}
.ws154{word-spacing:-0.019085pt;}
.ws87{word-spacing:-0.006031pt;}
.ws48{word-spacing:0.000000pt;}
.ws86{word-spacing:0.010627pt;}
.ws18c{word-spacing:0.085014pt;}
.ws5e{word-spacing:0.106268pt;}
.ws1a7{word-spacing:0.127522pt;}
.ws94{word-spacing:0.212535pt;}
.ws10c{word-spacing:0.265669pt;}
.wsc6{word-spacing:0.371937pt;}
.ws152{word-spacing:0.425071pt;}
.ws10b{word-spacing:0.478205pt;}
.ws1a3{word-spacing:0.510086pt;}
.ws3e{word-spacing:0.531339pt;}
.ws1b5{word-spacing:0.680115pt;}
.wsc3{word-spacing:0.690740pt;}
.wsd{word-spacing:0.717312pt;}
.ws14c{word-spacing:0.754501pt;}
.ws85{word-spacing:0.797008pt;}
.wsc8{word-spacing:0.850142pt;}
.ws1a4{word-spacing:0.850144pt;}
.ws18e{word-spacing:0.892651pt;}
.ws16a{word-spacing:0.956410pt;}
.ws15f{word-spacing:1.009543pt;}
.ws161{word-spacing:1.062677pt;}
.ws11b{word-spacing:1.115811pt;}
.wscb{word-spacing:1.168945pt;}
.ws8c{word-spacing:1.273303pt;}
.ws8d{word-spacing:1.275213pt;}
.wsb9{word-spacing:1.328347pt;}
.ws63{word-spacing:1.381481pt;}
.ws143{word-spacing:1.402738pt;}
.ws62{word-spacing:1.407474pt;}
.ws5f{word-spacing:1.461311pt;}
.ws60{word-spacing:1.487748pt;}
.wsdc{word-spacing:1.540882pt;}
.ws70{word-spacing:1.594016pt;}
.ws1bb{word-spacing:1.615274pt;}
.ws169{word-spacing:1.647150pt;}
.ws1b3{word-spacing:1.657781pt;}
.ws41{word-spacing:1.700284pt;}
.wsce{word-spacing:1.719230pt;}
.ws5b{word-spacing:1.724449pt;}
.ws137{word-spacing:1.753418pt;}
.ws81{word-spacing:1.780960pt;}
.ws7f{word-spacing:1.794453pt;}
.ws80{word-spacing:1.797111pt;}
.ws82{word-spacing:1.806551pt;}
.ws144{word-spacing:1.859685pt;}
.wsb8{word-spacing:1.912819pt;}
.ws18d{word-spacing:1.955331pt;}
.wsd4{word-spacing:1.997838pt;}
.ws12f{word-spacing:2.000262pt;}
.ws130{word-spacing:2.007718pt;}
.wsd5{word-spacing:2.014137pt;}
.ws131{word-spacing:2.019087pt;}
.ws7a{word-spacing:2.029714pt;}
.ws187{word-spacing:2.082853pt;}
.ws186{word-spacing:2.125360pt;}
.wsa8{word-spacing:2.178489pt;}
.ws13b{word-spacing:2.189115pt;}
.ws1b6{word-spacing:2.210374pt;}
.ws40{word-spacing:2.231622pt;}
.ws1ba{word-spacing:2.252882pt;}
.wsaf{word-spacing:2.444158pt;}
.ws9e{word-spacing:2.497292pt;}
.wsd8{word-spacing:2.507925pt;}
.ws12c{word-spacing:2.588071pt;}
.ws83{word-spacing:2.603559pt;}
.ws135{word-spacing:2.656693pt;}
.ws18f{word-spacing:2.677954pt;}
.ws20{word-spacing:2.677965pt;}
.ws77{word-spacing:2.690453pt;}
.ws78{word-spacing:2.709827pt;}
.ws14b{word-spacing:2.773588pt;}
.ws93{word-spacing:2.816095pt;}
.ws17d{word-spacing:2.847982pt;}
.ws13e{word-spacing:2.869229pt;}
.ws7e{word-spacing:2.922363pt;}
.ws88{word-spacing:2.932989pt;}
.wsa6{word-spacing:2.975497pt;}
.wsda{word-spacing:3.081764pt;}
.ws166{word-spacing:3.134898pt;}
.ws16b{word-spacing:3.188032pt;}
.wsbd{word-spacing:3.190168pt;}
.ws16e{word-spacing:3.241166pt;}
.ws1a{word-spacing:3.251814pt;}
.wsb7{word-spacing:3.294300pt;}
.ws1b0{word-spacing:3.315562pt;}
.ws19c{word-spacing:3.400576pt;}
.ws127{word-spacing:3.453701pt;}
.ws2d{word-spacing:3.506835pt;}
.ws4a{word-spacing:3.613103pt;}
.ws5a{word-spacing:3.666237pt;}
.ws59{word-spacing:3.667830pt;}
.wsd1{word-spacing:3.715371pt;}
.wsd3{word-spacing:3.717862pt;}
.ws136{word-spacing:3.719371pt;}
.ws119{word-spacing:3.772505pt;}
.wsf0{word-spacing:3.825638pt;}
.ws113{word-spacing:3.868155pt;}
.ws42{word-spacing:3.878772pt;}
.ws10d{word-spacing:3.968346pt;}
.ws10e{word-spacing:3.985040pt;}
.wsb1{word-spacing:4.038174pt;}
.ws1c8{word-spacing:4.038184pt;}
.ws105{word-spacing:4.144442pt;}
.ws5d{word-spacing:4.197575pt;}
.ws1b4{word-spacing:4.246977pt;}
.ws50{word-spacing:4.250720pt;}
.ws17e{word-spacing:4.293227pt;}
.wsf7{word-spacing:4.303843pt;}
.ws160{word-spacing:4.356977pt;}
.ws17f{word-spacing:4.420749pt;}
.ws2c{word-spacing:4.463245pt;}
.ws1a0{word-spacing:4.463256pt;}
.ws199{word-spacing:4.548270pt;}
.wsb6{word-spacing:4.569513pt;}
.ws1af{word-spacing:4.590778pt;}
.ws117{word-spacing:4.633273pt;}
.wsb{word-spacing:4.686438pt;}
.ws175{word-spacing:4.782048pt;}
.ws192{word-spacing:4.803314pt;}
.ws96{word-spacing:4.835182pt;}
.ws172{word-spacing:4.935011pt;}
.ws173{word-spacing:4.941450pt;}
.wsc1{word-spacing:4.994583pt;}
.ws7d{word-spacing:5.047717pt;}
.ws99{word-spacing:5.100851pt;}
.ws9b{word-spacing:5.207119pt;}
.ws19e{word-spacing:5.228386pt;}
.ws19d{word-spacing:5.229940pt;}
.ws122{word-spacing:5.260253pt;}
.ws19f{word-spacing:5.270893pt;}
.ws170{word-spacing:5.307843pt;}
.ws91{word-spacing:5.309821pt;}
.ws139{word-spacing:5.311474pt;}
.ws9f{word-spacing:5.312282pt;}
.ws4{word-spacing:5.313387pt;}
.wsf9{word-spacing:5.313423pt;}
.ws104{word-spacing:5.313897pt;}
.ws132{word-spacing:5.314385pt;}
.ws103{word-spacing:5.315526pt;}
.ws17{word-spacing:5.355930pt;}
.ws190{word-spacing:5.360500pt;}
.ws191{word-spacing:5.398414pt;}
.wse4{word-spacing:5.419654pt;}
.ws1b8{word-spacing:5.440922pt;}
.ws1c{word-spacing:5.451571pt;}
.ws174{word-spacing:5.525922pt;}
.ws1c5{word-spacing:5.552254pt;}
.ws1c6{word-spacing:5.568443pt;}
.ws16f{word-spacing:5.632190pt;}
.ws14d{word-spacing:5.685324pt;}
.ws1bd{word-spacing:5.695965pt;}
.wsca{word-spacing:5.738458pt;}
.ws30{word-spacing:5.791591pt;}
.wsd9{word-spacing:5.844725pt;}
.ws3{word-spacing:5.844747pt;}
.ws3f{word-spacing:5.897859pt;}
.wsfe{word-spacing:5.950993pt;}
.ws1e{word-spacing:5.977600pt;}
.ws193{word-spacing:5.993515pt;}
.ws84{word-spacing:6.004127pt;}
.ws12{word-spacing:6.025421pt;}
.ws102{word-spacing:6.163529pt;}
.ws153{word-spacing:6.174138pt;}
.ws97{word-spacing:6.216662pt;}
.ws5c{word-spacing:6.269796pt;}
.ws134{word-spacing:6.322930pt;}
.ws16{word-spacing:6.360166pt;}
.ws65{word-spacing:6.372636pt;}
.wsc5{word-spacing:6.429198pt;}
.ws1a5{word-spacing:6.461094pt;}
.ws33{word-spacing:6.482332pt;}
.ws44{word-spacing:6.535466pt;}
.ws167{word-spacing:6.588599pt;}
.ws112{word-spacing:6.630523pt;}
.ws1b2{word-spacing:6.631123pt;}
.ws133{word-spacing:6.694867pt;}
.ws164{word-spacing:6.748001pt;}
.ws2f{word-spacing:6.801135pt;}
.ws11{word-spacing:6.838374pt;}
.ws71{word-spacing:6.854269pt;}
.ws198{word-spacing:6.886166pt;}
.ws89{word-spacing:6.907403pt;}
.ws114{word-spacing:7.056195pt;}
.ws149{word-spacing:7.066804pt;}
.ws14a{word-spacing:7.119938pt;}
.ws21{word-spacing:7.173120pt;}
.ws10a{word-spacing:7.183699pt;}
.ws18a{word-spacing:7.183717pt;}
.wsa2{word-spacing:7.226206pt;}
.ws92{word-spacing:7.279340pt;}
.ws12a{word-spacing:7.332474pt;}
.ws168{word-spacing:7.385607pt;}
.wsba{word-spacing:7.545009pt;}
.ws182{word-spacing:7.566282pt;}
.ws16c{word-spacing:7.598143pt;}
.ws43{word-spacing:7.651277pt;}
.wsa9{word-spacing:7.704411pt;}
.ws194{word-spacing:7.736310pt;}
.wsc0{word-spacing:7.757545pt;}
.ws116{word-spacing:7.810678pt;}
.ws126{word-spacing:7.863812pt;}
.ws185{word-spacing:7.863832pt;}
.ws53{word-spacing:7.916946pt;}
.ws8e{word-spacing:8.023214pt;}
.wsa4{word-spacing:8.076348pt;}
.ws17c{word-spacing:8.118875pt;}
.ws146{word-spacing:8.182615pt;}
.ws183{word-spacing:8.203890pt;}
.ws1b{word-spacing:8.225178pt;}
.ws4f{word-spacing:8.235749pt;}
.wsb0{word-spacing:8.342017pt;}
.wsa1{word-spacing:8.395151pt;}
.ws12b{word-spacing:8.448285pt;}
.ws145{word-spacing:8.501419pt;}
.ws196{word-spacing:8.501440pt;}
.wse{word-spacing:8.512102pt;}
.wsac{word-spacing:8.554553pt;}
.wsab{word-spacing:8.573097pt;}
.ws11d{word-spacing:8.660820pt;}
.ws156{word-spacing:8.713954pt;}
.ws6a{word-spacing:8.767088pt;}
.ws129{word-spacing:8.926490pt;}
.ws75{word-spacing:8.979623pt;}
.ws6d{word-spacing:9.032757pt;}
.ws13f{word-spacing:9.063532pt;}
.ws36{word-spacing:9.085891pt;}
.ws197{word-spacing:9.096541pt;}
.ws108{word-spacing:9.139025pt;}
.ws109{word-spacing:9.192159pt;}
.ws195{word-spacing:9.224062pt;}
.ws1a8{word-spacing:9.244980pt;}
.ws11a{word-spacing:9.245293pt;}
.ws1a9{word-spacing:9.266570pt;}
.ws38{word-spacing:9.351561pt;}
.ws6c{word-spacing:9.404694pt;}
.wsa7{word-spacing:9.457828pt;}
.ws13c{word-spacing:9.510962pt;}
.ws11f{word-spacing:9.564096pt;}
.wsa3{word-spacing:9.670364pt;}
.ws26{word-spacing:9.723498pt;}
.wse0{word-spacing:9.776631pt;}
.ws79{word-spacing:9.829765pt;}
.ws12d{word-spacing:9.936033pt;}
.ws148{word-spacing:10.042301pt;}
.ws17b{word-spacing:10.074206pt;}
.ws147{word-spacing:10.095435pt;}
.ws1b7{word-spacing:10.116714pt;}
.ws13d{word-spacing:10.137625pt;}
.ws1b9{word-spacing:10.244235pt;}
.ws98{word-spacing:10.254836pt;}
.ws49{word-spacing:10.307970pt;}
.ws180{word-spacing:10.329250pt;}
.wsf{word-spacing:10.329293pt;}
.wsb5{word-spacing:10.414238pt;}
.ws6f{word-spacing:10.520506pt;}
.ws7c{word-spacing:10.546723pt;}
.ws1d{word-spacing:10.568397pt;}
.ws2e{word-spacing:10.573639pt;}
.ws18b{word-spacing:10.625629pt;}
.ws95{word-spacing:10.626773pt;}
.ws1ad{word-spacing:10.626800pt;}
.wscc{word-spacing:10.679907pt;}
.ws18{word-spacing:10.759680pt;}
.ws151{word-spacing:10.839309pt;}
.ws1b1{word-spacing:10.924350pt;}
.ws13{word-spacing:11.046605pt;}
.ws184{word-spacing:11.051872pt;}
.ws120{word-spacing:11.104978pt;}
.wsfb{word-spacing:11.158112pt;}
.ws17a{word-spacing:11.179394pt;}
.wsb3{word-spacing:11.423781pt;}
.ws19b{word-spacing:11.434437pt;}
.ws67{word-spacing:11.476915pt;}
.ws19a{word-spacing:11.476944pt;}
.wsdf{word-spacing:11.583183pt;}
.wsc9{word-spacing:11.636317pt;}
.ws159{word-spacing:11.689451pt;}
.ws1ac{word-spacing:11.689480pt;}
.ws158{word-spacing:12.008254pt;}
.ws163{word-spacing:12.167655pt;}
.ws37{word-spacing:12.220789pt;}
.ws66{word-spacing:12.327057pt;}
.ws90{word-spacing:12.433325pt;}
.ws7b{word-spacing:12.454456pt;}
.ws15{word-spacing:12.624691pt;}
.ws1a6{word-spacing:12.667146pt;}
.ws9d{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws165{word-spacing:12.858396pt;}
.ws6{word-spacing:12.885333pt;}
.ws8{word-spacing:12.885367pt;}
.ws7{word-spacing:12.885815pt;}
.ws2{word-spacing:12.888051pt;}
.ws2a{word-spacing:13.017797pt;}
.ws3c{word-spacing:13.070931pt;}
.ws155{word-spacing:13.124065pt;}
.ws8f{word-spacing:13.230333pt;}
.ws115{word-spacing:13.276229pt;}
.ws9c{word-spacing:13.283467pt;}
.ws11c{word-spacing:13.336601pt;}
.wsc2{word-spacing:13.389734pt;}
.wsde{word-spacing:13.442868pt;}
.ws9a{word-spacing:13.496002pt;}
.ws24{word-spacing:13.549136pt;}
.ws181{word-spacing:13.559797pt;}
.ws1c7{word-spacing:13.602304pt;}
.ws12e{word-spacing:13.655404pt;}
.ws69{word-spacing:13.708538pt;}
.wsb4{word-spacing:13.761671pt;}
.ws157{word-spacing:13.814805pt;}
.ws123{word-spacing:13.867939pt;}
.ws74{word-spacing:13.974207pt;}
.ws15c{word-spacing:14.027341pt;}
.wsdb{word-spacing:14.239876pt;}
.wse5{word-spacing:14.293010pt;}
.wsae{word-spacing:14.452412pt;}
.ws4d{word-spacing:14.558679pt;}
.ws1f{word-spacing:14.585344pt;}
.ws11e{word-spacing:14.611813pt;}
.ws107{word-spacing:14.771215pt;}
.wsa{word-spacing:14.776627pt;}
.ws27{word-spacing:14.983750pt;}
.ws121{word-spacing:15.090018pt;}
.wsc{word-spacing:15.207014pt;}
.wsd7{word-spacing:15.267553pt;}
.wse6{word-spacing:15.302554pt;}
.ws1bc{word-spacing:15.302592pt;}
.ws32{word-spacing:15.345099pt;}
.wsbb{word-spacing:15.355687pt;}
.wsbc{word-spacing:15.367230pt;}
.ws1c4{word-spacing:15.387606pt;}
.wse9{word-spacing:15.494366pt;}
.wseb{word-spacing:15.497586pt;}
.wsec{word-spacing:15.515089pt;}
.ws4b{word-spacing:15.621357pt;}
.ws10{word-spacing:15.637402pt;}
.ws39{word-spacing:15.674491pt;}
.ws1ae{word-spacing:15.897693pt;}
.ws22{word-spacing:15.940160pt;}
.ws1c9{word-spacing:15.940200pt;}
.ws14{word-spacing:15.972147pt;}
.ws73{word-spacing:16.003921pt;}
.ws100{word-spacing:16.099562pt;}
.ws15e{word-spacing:16.110229pt;}
.ws2b{word-spacing:16.205829pt;}
.wsb2{word-spacing:16.258963pt;}
.ws15b{word-spacing:16.524633pt;}
.wsf6{word-spacing:16.790302pt;}
.wsf5{word-spacing:16.843436pt;}
.ws19{word-spacing:16.976384pt;}
.ws125{word-spacing:17.055971pt;}
.ws46{word-spacing:17.109105pt;}
.ws68{word-spacing:17.321641pt;}
.ws25{word-spacing:17.481042pt;}
.ws3d{word-spacing:17.587310pt;}
.ws34{word-spacing:17.746711pt;}
.ws162{word-spacing:17.852979pt;}
.ws14f{word-spacing:18.065515pt;}
.ws28{word-spacing:18.224916pt;}
.wsbf{word-spacing:18.384318pt;}
.wsed{word-spacing:18.594689pt;}
.ws10f{word-spacing:18.607480pt;}
.ws3b{word-spacing:18.862523pt;}
.wsc4{word-spacing:18.915657pt;}
.ws29{word-spacing:19.021924pt;}
.ws31{word-spacing:19.043226pt;}
.wsfa{word-spacing:19.128192pt;}
.ws76{word-spacing:19.181326pt;}
.ws128{word-spacing:19.234460pt;}
.ws72{word-spacing:19.553263pt;}
.ws4c{word-spacing:19.712665pt;}
.ws179{word-spacing:19.893370pt;}
.ws1ab{word-spacing:20.063398pt;}
.ws176{word-spacing:21.041011pt;}
.ws1aa{word-spacing:22.741352pt;}
.ws124{word-spacing:24.282177pt;}
.ws47{word-spacing:25.504256pt;}
.ws16d{word-spacing:26.248130pt;}
.ws178{word-spacing:28.819882pt;}
.ws142{word-spacing:30.363905pt;}
.ws1cc{word-spacing:34.388325pt;}
.ws177{word-spacing:34.430832pt;}
.ws1cb{word-spacing:45.185154pt;}
.ws1c0{word-spacing:45.737747pt;}
.ws1ca{word-spacing:45.865269pt;}
.ws1c3{word-spacing:46.332848pt;}
.ws1c1{word-spacing:46.417862pt;}
.wsff{word-spacing:46.799302pt;}
.ws1c2{word-spacing:50.881118pt;}
.ws189{word-spacing:67.331405pt;}
.ws188{word-spacing:109.498547pt;}
.ws1be{word-spacing:111.708922pt;}
.ws141{word-spacing:144.492928pt;}
.wsd0{word-spacing:145.088913pt;}
.ws111{word-spacing:150.105613pt;}
.wsd2{word-spacing:151.060640pt;}
.ws15d{word-spacing:154.956994pt;}
.ws1bf{word-spacing:163.950270pt;}
.ws52{word-spacing:825.354040pt;}
._8{margin-left:-2448.801496pt;}
._1e{margin-left:-8.852855pt;}
._c{margin-left:-6.907403pt;}
._12{margin-left:-5.897859pt;}
._2{margin-left:-4.250709pt;}
._1{margin-left:-3.188040pt;}
._0{margin-left:-1.912824pt;}
._3{margin-left:-0.956410pt;}
._1c{width:1.062242pt;}
._5{width:2.656693pt;}
._a{width:4.206378pt;}
._1d{width:7.248542pt;}
._f{width:12.292961pt;}
._19{width:13.687709pt;}
._10{width:15.355687pt;}
._11{width:16.577696pt;}
._6{width:17.693578pt;}
._b{width:18.915657pt;}
._e{width:20.229082pt;}
._4{width:21.806285pt;}
._16{width:23.006964pt;}
._d{width:24.016513pt;}
._9{width:26.566933pt;}
._18{width:28.896315pt;}
._13{width:30.358784pt;}
._7{width:31.880342pt;}
._14{width:34.160351pt;}
._15{width:37.958309pt;}
._17{width:41.207224pt;}
._22{width:57.321686pt;}
._21{width:60.615334pt;}
._20{width:145.933974pt;}
._1f{width:163.981788pt;}
._1a{width:185.577275pt;}
._1b{width:201.872709pt;}
.fs16{font-size:23.258816pt;}
.fs10{font-size:23.836736pt;}
.fs11{font-size:26.566933pt;}
.fs14{font-size:27.135285pt;}
.fs12{font-size:27.689067pt;}
.fse{font-size:27.809525pt;}
.fsc{font-size:28.377067pt;}
.fs17{font-size:31.880533pt;}
.fs15{font-size:33.226880pt;}
.fsf{font-size:34.052480pt;}
.fsb{font-size:37.193600pt;}
.fs7{font-size:37.333333pt;}
.fs13{font-size:38.764693pt;}
.fsd{font-size:39.727893pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:40.913067pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fsa{font-size:58.404049pt;}
.fs1{font-size:58.447467pt;}
.fs8{font-size:75.452658pt;}
.fs9{font-size:89.852393pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:7.417641pt;}
.yfa{bottom:8.797276pt;}
.y169{bottom:9.229583pt;}
.y1d8{bottom:10.107556pt;}
.y20d{bottom:12.690978pt;}
.y20e{bottom:16.493062pt;}
.y62{bottom:17.109864pt;}
.y10c{bottom:18.568980pt;}
.yf9{bottom:20.658003pt;}
.y5b{bottom:21.126587pt;}
.y1d7{bottom:21.968284pt;}
.y20c{bottom:24.692482pt;}
.y61{bottom:25.219738pt;}
.y5e{bottom:27.469066pt;}
.yfb{bottom:28.317594pt;}
.y5c{bottom:29.210667pt;}
.y1d9{bottom:32.688580pt;}
.y10e{bottom:33.330347pt;}
.y20f{bottom:38.213866pt;}
.y117{bottom:38.829590pt;}
.y172{bottom:41.422035pt;}
.y16a{bottom:48.689706pt;}
.y116{bottom:51.030085pt;}
.y1da{bottom:54.709425pt;}
.y171{bottom:54.901142pt;}
.yfc{bottom:60.912974pt;}
.y10f{bottom:64.541451pt;}
.y210{bottom:67.893828pt;}
.y16b{bottom:69.061818pt;}
.y215{bottom:70.091355pt;}
.y101{bottom:74.190607pt;}
.y1db{bottom:76.730270pt;}
.y60{bottom:79.658270pt;}
.y102{bottom:81.091583pt;}
.y16c{bottom:89.433931pt;}
.yfd{bottom:93.508353pt;}
.y110{bottom:95.752555pt;}
.y5a{bottom:95.998667pt;}
.y8d{bottom:96.000000pt;}
.y211{bottom:97.573790pt;}
.y103{bottom:97.978362pt;}
.y5f{bottom:97.980186pt;}
.y1dc{bottom:98.751115pt;}
.y114{bottom:98.935180pt;}
.y1e5{bottom:99.855350pt;}
.y1e1{bottom:101.717595pt;}
.y104{bottom:104.879338pt;}
.y28f{bottom:107.954667pt;}
.y16d{bottom:109.806043pt;}
.y1e2{bottom:111.616107pt;}
.yc0{bottom:111.938667pt;}
.y59{bottom:111.940000pt;}
.y168{bottom:112.349333pt;}
.y1e4{bottom:112.625030pt;}
.y115{bottom:113.709960pt;}
.y28e{bottom:119.910667pt;}
.y1dd{bottom:120.771960pt;}
.y105{bottom:121.766117pt;}
.y1e3{bottom:125.394710pt;}
.yfe{bottom:126.103732pt;}
.y111{bottom:126.963659pt;}
.y212{bottom:127.253752pt;}
.y58{bottom:127.880000pt;}
.y167{bottom:128.289333pt;}
.y16e{bottom:130.178155pt;}
.y106{bottom:131.664628pt;}
.y28d{bottom:132.206667pt;}
.yf7{bottom:132.876000pt;}
.y134{bottom:133.324000pt;}
.y35{bottom:137.444000pt;}
.y216{bottom:141.472563pt;}
.y21f{bottom:141.637034pt;}
.y133{bottom:142.436000pt;}
.y1de{bottom:142.792804pt;}
.y57{bottom:143.820000pt;}
.y28c{bottom:144.161333pt;}
.y166{bottom:144.229333pt;}
.y1d4{bottom:146.288000pt;}
.y20b{bottom:147.178667pt;}
.y217{bottom:148.373539pt;}
.yf6{bottom:148.816000pt;}
.y1d6{bottom:149.318667pt;}
.y34{bottom:149.398667pt;}
.y1d3{bottom:149.557333pt;}
.y16f{bottom:150.550267pt;}
.y218{bottom:151.719761pt;}
.y21e{bottom:154.140679pt;}
.y28b{bottom:156.116000pt;}
.y213{bottom:156.933715pt;}
.y112{bottom:158.174763pt;}
.y1d5{bottom:158.669333pt;}
.yff{bottom:158.699112pt;}
.y219{bottom:159.317267pt;}
.y56{bottom:159.760000pt;}
.y33{bottom:161.354667pt;}
.y199{bottom:162.874667pt;}
.yf5{bottom:164.756000pt;}
.y1df{bottom:164.813649pt;}
.y109{bottom:165.952440pt;}
.y21c{bottom:167.120970pt;}
.y108{bottom:167.349124pt;}
.y1d2{bottom:167.654667pt;}
.y28a{bottom:168.412000pt;}
.y20a{bottom:168.466667pt;}
.y165{bottom:169.637333pt;}
.y21d{bottom:170.379899pt;}
.y170{bottom:170.922379pt;}
.y132{bottom:174.328000pt;}
.y55{bottom:175.700000pt;}
.y8c{bottom:175.701333pt;}
.y198{bottom:178.814667pt;}
.y107{bottom:179.852769pt;}
.y289{bottom:180.366667pt;}
.yf4{bottom:180.697333pt;}
.y21a{bottom:181.309503pt;}
.y21b{bottom:184.568432pt;}
.y164{bottom:185.988000pt;}
.y214{bottom:186.613677pt;}
.y1e0{bottom:186.834494pt;}
.y32{bottom:187.829333pt;}
.y1d1{bottom:188.956000pt;}
.y113{bottom:189.385867pt;}
.y131{bottom:190.268000pt;}
.y209{bottom:190.584000pt;}
.y100{bottom:191.294491pt;}
.y54{bottom:191.640000pt;}
.y8b{bottom:191.641333pt;}
.y288{bottom:192.322667pt;}
.yf3{bottom:196.637333pt;}
.y197{bottom:199.697333pt;}
.y163{bottom:201.928000pt;}
.y31{bottom:203.770667pt;}
.y287{bottom:204.277333pt;}
.y1d0{bottom:204.896000pt;}
.y130{bottom:206.208000pt;}
.ybf{bottom:207.580000pt;}
.y53{bottom:207.581333pt;}
.y8a{bottom:210.624000pt;}
.yf2{bottom:212.577333pt;}
.y286{bottom:216.233333pt;}
.y162{bottom:217.868000pt;}
.y30{bottom:219.710667pt;}
.y1cf{bottom:220.837333pt;}
.y12f{bottom:222.149333pt;}
.y52{bottom:223.521333pt;}
.y196{bottom:226.445333pt;}
.y89{bottom:226.564000pt;}
.y240{bottom:227.605333pt;}
.yf1{bottom:228.517333pt;}
.y285{bottom:228.528000pt;}
.y161{bottom:233.900000pt;}
.y208{bottom:234.256000pt;}
.y2f{bottom:235.650667pt;}
.y1ce{bottom:236.777333pt;}
.y12e{bottom:238.089333pt;}
.y51{bottom:239.461333pt;}
.y284{bottom:240.484000pt;}
.y195{bottom:242.386667pt;}
.ybe{bottom:242.450667pt;}
.y88{bottom:242.504000pt;}
.y23f{bottom:243.545333pt;}
.yf0{bottom:244.457333pt;}
.y160{bottom:249.841333pt;}
.y207{bottom:250.196000pt;}
.y2e{bottom:251.590667pt;}
.y283{bottom:252.438667pt;}
.y1cd{bottom:252.717333pt;}
.y12d{bottom:254.029333pt;}
.y194{bottom:258.326667pt;}
.ybd{bottom:258.392000pt;}
.y87{bottom:258.444000pt;}
.y23e{bottom:259.485333pt;}
.yef{bottom:260.397333pt;}
.y282{bottom:264.394667pt;}
.y15f{bottom:265.781333pt;}
.y206{bottom:266.136000pt;}
.y2d{bottom:267.530667pt;}
.y1cc{bottom:268.657333pt;}
.y50{bottom:268.757333pt;}
.y193{bottom:274.266667pt;}
.ybc{bottom:274.332000pt;}
.y86{bottom:274.385333pt;}
.y12c{bottom:275.413333pt;}
.y23d{bottom:275.425333pt;}
.yee{bottom:276.338667pt;}
.y281{bottom:276.689333pt;}
.y15e{bottom:281.721333pt;}
.y205{bottom:282.076000pt;}
.y2c{bottom:283.470667pt;}
.y12b{bottom:284.525333pt;}
.y1c9{bottom:287.150667pt;}
.y280{bottom:288.645333pt;}
.y1cb{bottom:290.181333pt;}
.y192{bottom:290.206667pt;}
.ybb{bottom:290.272000pt;}
.y85{bottom:290.325333pt;}
.y1c8{bottom:290.420000pt;}
.y23c{bottom:291.366667pt;}
.yed{bottom:292.278667pt;}
.y15d{bottom:297.661333pt;}
.y204{bottom:298.016000pt;}
.y2b{bottom:299.412000pt;}
.y1ca{bottom:299.532000pt;}
.y27f{bottom:300.600000pt;}
.y191{bottom:306.146667pt;}
.yba{bottom:306.212000pt;}
.y84{bottom:306.265333pt;}
.y23b{bottom:307.306667pt;}
.yec{bottom:308.218667pt;}
.y1c7{bottom:308.518667pt;}
.y27e{bottom:312.554667pt;}
.y15c{bottom:313.601333pt;}
.y203{bottom:313.956000pt;}
.y2a{bottom:315.352000pt;}
.y12a{bottom:319.877333pt;}
.yb9{bottom:322.152000pt;}
.y4f{bottom:322.598667pt;}
.y23a{bottom:323.246667pt;}
.yeb{bottom:324.158667pt;}
.y27d{bottom:324.850667pt;}
.y83{bottom:327.029333pt;}
.y15b{bottom:329.541333pt;}
.y202{bottom:329.897333pt;}
.y29{bottom:331.292000pt;}
.y1c6{bottom:334.004000pt;}
.y129{bottom:335.817333pt;}
.y27c{bottom:336.806667pt;}
.yb8{bottom:338.092000pt;}
.y190{bottom:338.244000pt;}
.y4e{bottom:338.538667pt;}
.yea{bottom:340.098667pt;}
.y239{bottom:343.270667pt;}
.y15a{bottom:345.482667pt;}
.y201{bottom:345.837333pt;}
.y28{bottom:347.232000pt;}
.y27b{bottom:348.761333pt;}
.y1c5{bottom:349.944000pt;}
.y128{bottom:351.757333pt;}
.y82{bottom:353.490667pt;}
.yb7{bottom:354.033333pt;}
.y18f{bottom:354.184000pt;}
.y4d{bottom:360.362667pt;}
.y27a{bottom:360.716000pt;}
.ye9{bottom:361.036000pt;}
.y200{bottom:361.777333pt;}
.y27{bottom:363.172000pt;}
.y159{bottom:365.929333pt;}
.y1c4{bottom:365.969333pt;}
.y127{bottom:367.698667pt;}
.y81{bottom:369.430667pt;}
.y18e{bottom:370.124000pt;}
.yb6{bottom:372.962667pt;}
.y279{bottom:373.012000pt;}
.y4c{bottom:376.302667pt;}
.ye8{bottom:376.976000pt;}
.y26{bottom:379.112000pt;}
.y238{bottom:379.234667pt;}
.y1c3{bottom:381.910667pt;}
.y1ff{bottom:383.110667pt;}
.y126{bottom:384.009333pt;}
.y278{bottom:384.968000pt;}
.y18d{bottom:386.065333pt;}
.y1fe{bottom:386.394667pt;}
.y80{bottom:388.413333pt;}
.yb5{bottom:388.902667pt;}
.y158{bottom:391.618667pt;}
.y4b{bottom:392.242667pt;}
.ye7{bottom:392.916000pt;}
.y25{bottom:395.053333pt;}
.y237{bottom:395.174667pt;}
.y277{bottom:396.922667pt;}
.y1c2{bottom:397.850667pt;}
.y125{bottom:399.950667pt;}
.y18c{bottom:402.005333pt;}
.y7f{bottom:404.353333pt;}
.y1fd{bottom:406.360000pt;}
.y157{bottom:407.558667pt;}
.y4a{bottom:408.182667pt;}
.ye6{bottom:408.856000pt;}
.y276{bottom:408.877333pt;}
.yb4{bottom:409.580000pt;}
.y1fc{bottom:410.940000pt;}
.y236{bottom:411.114667pt;}
.y1c1{bottom:413.790667pt;}
.y124{bottom:415.890667pt;}
.y24{bottom:416.173333pt;}
.y18b{bottom:417.945333pt;}
.y275{bottom:421.173333pt;}
.y7e{bottom:423.336000pt;}
.y156{bottom:423.498667pt;}
.y49{bottom:424.124000pt;}
.ye5{bottom:424.796000pt;}
.y235{bottom:427.056000pt;}
.y1c0{bottom:429.730667pt;}
.y123{bottom:431.830667pt;}
.y274{bottom:433.129333pt;}
.yb3{bottom:435.829333pt;}
.y1fb{bottom:435.946667pt;}
.y7d{bottom:439.277333pt;}
.y18a{bottom:439.369333pt;}
.y155{bottom:439.440000pt;}
.y48{bottom:440.064000pt;}
.ye4{bottom:440.737333pt;}
.y234{bottom:442.996000pt;}
.y273{bottom:445.424000pt;}
.y122{bottom:447.770667pt;}
.y1be{bottom:448.377333pt;}
.y1bd{bottom:451.646667pt;}
.yb2{bottom:451.769333pt;}
.y1fa{bottom:451.886667pt;}
.y7c{bottom:455.217333pt;}
.ye3{bottom:456.677333pt;}
.y272{bottom:457.380000pt;}
.y233{bottom:458.936000pt;}
.y23{bottom:459.465333pt;}
.y154{bottom:460.549333pt;}
.y1bf{bottom:460.757333pt;}
.y47{bottom:461.888000pt;}
.y121{bottom:463.710667pt;}
.yb1{bottom:467.709333pt;}
.y1f9{bottom:467.826667pt;}
.y271{bottom:469.334667pt;}
.y153{bottom:469.661333pt;}
.y1bc{bottom:469.744000pt;}
.y7b{bottom:471.157333pt;}
.ye2{bottom:472.617333pt;}
.y22{bottom:472.749333pt;}
.y232{bottom:474.876000pt;}
.y46{bottom:477.828000pt;}
.y120{bottom:479.650667pt;}
.y270{bottom:481.289333pt;}
.y189{bottom:482.058667pt;}
.yb0{bottom:483.649333pt;}
.y1f8{bottom:483.768000pt;}
.y21{bottom:486.198667pt;}
.y7a{bottom:487.097333pt;}
.y231{bottom:490.816000pt;}
.y26f{bottom:493.245333pt;}
.y45{bottom:493.768000pt;}
.y11f{bottom:495.592000pt;}
.ye1{bottom:496.621333pt;}
.y188{bottom:497.998667pt;}
.y1bb{bottom:499.136000pt;}
.y152{bottom:499.460000pt;}
.y20{bottom:499.482667pt;}
.y1f7{bottom:499.708000pt;}
.yaf{bottom:499.748000pt;}
.y79{bottom:503.037333pt;}
.y26e{bottom:505.541333pt;}
.y230{bottom:506.757333pt;}
.y44{bottom:509.708000pt;}
.y11e{bottom:511.532000pt;}
.y1f{bottom:512.765333pt;}
.y187{bottom:513.938667pt;}
.y1ba{bottom:515.076000pt;}
.y1f6{bottom:515.648000pt;}
.yae{bottom:515.688000pt;}
.y26d{bottom:517.496000pt;}
.y78{bottom:518.977333pt;}
.y151{bottom:520.477333pt;}
.y43{bottom:525.649333pt;}
.y1e{bottom:526.049333pt;}
.y22f{bottom:526.781333pt;}
.y11d{bottom:527.472000pt;}
.ye0{bottom:527.561333pt;}
.y26c{bottom:529.450667pt;}
.y150{bottom:529.589333pt;}
.y186{bottom:529.878667pt;}
.yad{bottom:531.628000pt;}
.y1d{bottom:539.333333pt;}
.y77{bottom:540.398667pt;}
.y26b{bottom:541.406667pt;}
.y22e{bottom:542.721333pt;}
.y42{bottom:543.117333pt;}
.y185{bottom:545.818667pt;}
.y1b9{bottom:547.042667pt;}
.yac{bottom:547.726667pt;}
.y1f5{bottom:547.860000pt;}
.y11c{bottom:548.464000pt;}
.y76{bottom:549.510667pt;}
.y1c{bottom:552.616000pt;}
.y26a{bottom:553.702667pt;}
.ydf{bottom:557.393333pt;}
.y22d{bottom:558.661333pt;}
.y41{bottom:559.057333pt;}
.y14f{bottom:563.578667pt;}
.yab{bottom:563.666667pt;}
.y1f4{bottom:563.801333pt;}
.y184{bottom:564.873333pt;}
.y269{bottom:565.657333pt;}
.y1b{bottom:565.900000pt;}
.y1b7{bottom:566.353333pt;}
.y1b8{bottom:566.592000pt;}
.yde{bottom:573.333333pt;}
.y22c{bottom:574.601333pt;}
.y40{bottom:574.998667pt;}
.y268{bottom:577.953333pt;}
.y1a{bottom:579.184000pt;}
.y14e{bottom:579.518667pt;}
.yaa{bottom:579.606667pt;}
.y1f3{bottom:579.741333pt;}
.y183{bottom:580.813333pt;}
.y75{bottom:584.509333pt;}
.y1b6{bottom:584.689333pt;}
.ydd{bottom:589.273333pt;}
.y267{bottom:589.908000pt;}
.y3f{bottom:590.938667pt;}
.y19{bottom:592.466667pt;}
.y11b{bottom:593.358667pt;}
.ya9{bottom:595.546667pt;}
.y1f2{bottom:595.681333pt;}
.y182{bottom:596.754667pt;}
.y22b{bottom:597.092000pt;}
.y74{bottom:600.450667pt;}
.y14d{bottom:601.274667pt;}
.y266{bottom:601.862667pt;}
.y11a{bottom:605.313333pt;}
.y1b5{bottom:605.474667pt;}
.y18{bottom:605.750667pt;}
.y3e{bottom:606.878667pt;}
.y14c{bottom:610.386667pt;}
.ya8{bottom:611.488000pt;}
.y1f1{bottom:611.621333pt;}
.y181{bottom:612.694667pt;}
.y265{bottom:613.818667pt;}
.y73{bottom:616.390667pt;}
.ydb{bottom:617.006667pt;}
.y119{bottom:617.268000pt;}
.y17{bottom:619.034667pt;}
.y3d{bottom:622.818667pt;}
.y1b2{bottom:623.881333pt;}
.y264{bottom:625.773333pt;}
.y1f0{bottom:627.561333pt;}
.y1b4{bottom:627.650667pt;}
.y1b1{bottom:627.889333pt;}
.y180{bottom:628.850667pt;}
.y16{bottom:632.317333pt;}
.y72{bottom:632.330667pt;}
.ya7{bottom:632.560000pt;}
.y118{bottom:636.794667pt;}
.ydc{bottom:636.800000pt;}
.yda{bottom:636.932000pt;}
.y1b3{bottom:637.001333pt;}
.y263{bottom:638.069333pt;}
.y3c{bottom:638.758667pt;}
.y14b{bottom:640.701333pt;}
.y1ef{bottom:643.502667pt;}
.y22a{bottom:643.684000pt;}
.y17f{bottom:644.792000pt;}
.y15{bottom:645.601333pt;}
.y1b0{bottom:645.986667pt;}
.y71{bottom:648.270667pt;}
.y262{bottom:650.024000pt;}
.y10b{bottom:652.204000pt;}
.y3b{bottom:654.698667pt;}
.y14a{bottom:656.641333pt;}
.yd9{bottom:656.857333pt;}
.ya6{bottom:658.808000pt;}
.y14{bottom:658.885333pt;}
.y1ee{bottom:659.442667pt;}
.y229{bottom:659.625333pt;}
.y17e{bottom:660.732000pt;}
.y261{bottom:661.980000pt;}
.y70{bottom:664.210667pt;}
.y1af{bottom:667.436000pt;}
.y3a{bottom:670.640000pt;}
.y13{bottom:672.168000pt;}
.y149{bottom:672.582667pt;}
.y260{bottom:674.276000pt;}
.ya5{bottom:674.748000pt;}
.y1ed{bottom:675.382667pt;}
.y228{bottom:675.565333pt;}
.y17d{bottom:676.672000pt;}
.y1ae{bottom:683.376000pt;}
.yd8{bottom:684.784000pt;}
.y12{bottom:685.452000pt;}
.y25f{bottom:686.230667pt;}
.y39{bottom:686.580000pt;}
.y6f{bottom:689.930667pt;}
.ya4{bottom:690.688000pt;}
.y1ec{bottom:691.322667pt;}
.y227{bottom:691.505333pt;}
.y17c{bottom:692.612000pt;}
.y25e{bottom:698.185333pt;}
.y11{bottom:698.736000pt;}
.y1ad{bottom:699.316000pt;}
.yd7{bottom:700.724000pt;}
.y38{bottom:702.520000pt;}
.y148{bottom:704.601333pt;}
.ya3{bottom:706.629333pt;}
.y1eb{bottom:707.262667pt;}
.y226{bottom:707.445333pt;}
.y17b{bottom:708.552000pt;}
.y25d{bottom:710.141333pt;}
.y10{bottom:712.018667pt;}
.y1ac{bottom:715.257333pt;}
.y6e{bottom:715.649333pt;}
.yd6{bottom:717.772000pt;}
.y37{bottom:718.460000pt;}
.y147{bottom:720.541333pt;}
.y25c{bottom:722.436000pt;}
.y1ea{bottom:723.202667pt;}
.y225{bottom:723.385333pt;}
.y17a{bottom:724.492000pt;}
.yf{bottom:725.302667pt;}
.ya2{bottom:725.558667pt;}
.y1ab{bottom:731.197333pt;}
.y6d{bottom:731.589333pt;}
.yd5{bottom:733.713333pt;}
.y25b{bottom:734.392000pt;}
.y36{bottom:735.929333pt;}
.ye{bottom:738.585333pt;}
.y224{bottom:739.325333pt;}
.y179{bottom:740.649333pt;}
.ya1{bottom:741.498667pt;}
.y146{bottom:742.297333pt;}
.y1e9{bottom:744.490667pt;}
.y25a{bottom:746.346667pt;}
.y1aa{bottom:747.137333pt;}
.yd4{bottom:749.653333pt;}
.y145{bottom:751.409333pt;}
.yd{bottom:751.869333pt;}
.y6b{bottom:752.420000pt;}
.y223{bottom:755.266667pt;}
.y178{bottom:756.589333pt;}
.ya0{bottom:757.440000pt;}
.y259{bottom:758.642667pt;}
.y6c{bottom:761.532000pt;}
.y1a9{bottom:763.077333pt;}
.yd3{bottom:765.593333pt;}
.y6a{bottom:770.518667pt;}
.y258{bottom:770.597333pt;}
.y1e8{bottom:772.221333pt;}
.y177{bottom:772.529333pt;}
.y9f{bottom:773.380000pt;}
.y222{bottom:775.290667pt;}
.y1a8{bottom:779.017333pt;}
.yd2{bottom:781.533333pt;}
.y144{bottom:781.724000pt;}
.y257{bottom:782.553333pt;}
.y1e7{bottom:788.161333pt;}
.y176{bottom:788.470667pt;}
.y9e{bottom:789.320000pt;}
.y221{bottom:791.230667pt;}
.y256{bottom:794.508000pt;}
.y1a7{bottom:794.957333pt;}
.y69{bottom:796.678667pt;}
.yd1{bottom:797.473333pt;}
.y143{bottom:802.244000pt;}
.y1e6{bottom:804.102667pt;}
.y175{bottom:804.410667pt;}
.y9d{bottom:805.260000pt;}
.y255{bottom:806.804000pt;}
.yc{bottom:809.684000pt;}
.y1a6{bottom:810.898667pt;}
.y142{bottom:811.354667pt;}
.y68{bottom:812.618667pt;}
.yd0{bottom:813.413333pt;}
.y254{bottom:818.758667pt;}
.y9c{bottom:821.200000pt;}
.yb{bottom:826.121333pt;}
.y1a5{bottom:826.838667pt;}
.ycf{bottom:829.354667pt;}
.y253{bottom:830.714667pt;}
.y9b{bottom:837.141333pt;}
.y220{bottom:837.266667pt;}
.y67{bottom:838.337333pt;}
.y141{bottom:841.670667pt;}
.ya{bottom:842.560000pt;}
.y252{bottom:842.669333pt;}
.yce{bottom:845.294667pt;}
.y174{bottom:849.222667pt;}
.y9a{bottom:853.081333pt;}
.y251{bottom:854.965333pt;}
.y140{bottom:857.610667pt;}
.y1a4{bottom:858.805333pt;}
.y9{bottom:858.998667pt;}
.y173{bottom:861.177333pt;}
.ycd{bottom:861.234667pt;}
.y10a{bottom:862.108000pt;}
.y250{bottom:866.920000pt;}
.y99{bottom:869.021333pt;}
.y66{bottom:871.213333pt;}
.y13f{bottom:873.550667pt;}
.y8{bottom:875.634667pt;}
.yf8{bottom:877.516000pt;}
.ycc{bottom:878.282667pt;}
.y24f{bottom:878.876000pt;}
.y1a3{bottom:879.794667pt;}
.y98{bottom:884.961333pt;}
.y65{bottom:887.154667pt;}
.y1a1{bottom:888.906667pt;}
.y13e{bottom:889.490667pt;}
.y24e{bottom:890.830667pt;}
.y29d{bottom:891.346667pt;}
.ycb{bottom:894.222667pt;}
.y1a2{bottom:894.596000pt;}
.y24d{bottom:902.785333pt;}
.y29c{bottom:903.301333pt;}
.y13d{bottom:905.569333pt;}
.y64{bottom:907.918667pt;}
.y7{bottom:909.257333pt;}
.yca{bottom:910.164000pt;}
.y97{bottom:910.569333pt;}
.y24c{bottom:915.081333pt;}
.y29b{bottom:915.257333pt;}
.y13c{bottom:921.509333pt;}
.y1a0{bottom:924.288000pt;}
.y6{bottom:925.696000pt;}
.yc9{bottom:926.104000pt;}
.y24b{bottom:927.037333pt;}
.y29a{bottom:927.212000pt;}
.y19f{bottom:937.017333pt;}
.y24a{bottom:938.992000pt;}
.y299{bottom:939.166667pt;}
.y29f{bottom:939.168000pt;}
.y13b{bottom:940.301333pt;}
.y19e{bottom:940.314667pt;}
.yc8{bottom:942.044000pt;}
.y5{bottom:942.134667pt;}
.y96{bottom:943.152000pt;}
.y249{bottom:950.946667pt;}
.y298{bottom:951.122667pt;}
.y63{bottom:952.640000pt;}
.y13a{bottom:956.241333pt;}
.y19d{bottom:956.254667pt;}
.yc7{bottom:957.984000pt;}
.y4{bottom:958.573333pt;}
.y95{bottom:959.092000pt;}
.y297{bottom:963.077333pt;}
.y248{bottom:963.242667pt;}
.y19c{bottom:968.910667pt;}
.y5d{bottom:968.978667pt;}
.y139{bottom:972.181333pt;}
.y19b{bottom:972.194667pt;}
.yc6{bottom:973.924000pt;}
.y94{bottom:975.032000pt;}
.y296{bottom:975.033333pt;}
.y247{bottom:975.197333pt;}
.y3{bottom:975.208000pt;}
.y295{bottom:986.988000pt;}
.y246{bottom:987.153333pt;}
.y138{bottom:988.121333pt;}
.y19a{bottom:988.134667pt;}
.yc5{bottom:989.865333pt;}
.y93{bottom:990.973333pt;}
.y294{bottom:998.942667pt;}
.y245{bottom:999.108000pt;}
.y137{bottom:1004.061333pt;}
.yc4{bottom:1005.805333pt;}
.y92{bottom:1006.913333pt;}
.y293{bottom:1010.898667pt;}
.y244{bottom:1011.404000pt;}
.y2{bottom:1017.052000pt;}
.y136{bottom:1020.002667pt;}
.yc3{bottom:1021.745333pt;}
.y91{bottom:1022.853333pt;}
.y243{bottom:1023.358667pt;}
.y292{bottom:1034.808000pt;}
.y29e{bottom:1034.809333pt;}
.y242{bottom:1035.314667pt;}
.y135{bottom:1035.942667pt;}
.yc2{bottom:1037.685333pt;}
.y90{bottom:1038.793333pt;}
.y291{bottom:1046.764000pt;}
.y241{bottom:1047.269333pt;}
.y1{bottom:1054.245333pt;}
.y8f{bottom:1054.733333pt;}
.y290{bottom:1058.718667pt;}
.y8e{bottom:1070.673333pt;}
.yc1{bottom:1070.674667pt;}
.h32{height:19.661334pt;}
.h33{height:22.144328pt;}
.h1c{height:25.723143pt;}
.h15{height:26.362295pt;}
.h1a{height:27.895200pt;}
.h34{height:29.159939pt;}
.hc{height:29.746094pt;}
.h1e{height:30.867772pt;}
.ha{height:30.902734pt;}
.h35{height:31.110734pt;}
.h36{height:31.116068pt;}
.h18{height:31.634754pt;}
.h8{height:34.096230pt;}
.h9{height:34.357564pt;}
.h1d{height:36.012400pt;}
.h4{height:36.449833pt;}
.h16{height:36.907213pt;}
.h19{height:37.221489pt;}
.h5{height:38.628321pt;}
.h6{height:38.894988pt;}
.hd{height:38.937500pt;}
.hb{height:39.850400pt;}
.h25{height:40.071222pt;}
.h17{height:43.425070pt;}
.h29{height:47.175200pt;}
.h20{height:47.180533pt;}
.h2f{height:48.817867pt;}
.h24{height:49.831200pt;}
.h13{height:49.836533pt;}
.h7{height:50.853133pt;}
.h3{height:50.858466pt;}
.h26{height:51.764321pt;}
.h27{height:51.817654pt;}
.hf{height:54.010545pt;}
.h30{height:58.170400pt;}
.h10{height:62.387745pt;}
.h21{height:75.070988pt;}
.h1f{height:75.076321pt;}
.h22{height:75.791733pt;}
.h12{height:75.797067pt;}
.h28{height:76.017889pt;}
.h2a{height:76.030988pt;}
.h2c{height:77.048021pt;}
.h2{height:92.708203pt;}
.h31{height:101.380321pt;}
.h23{height:112.239733pt;}
.h11{height:112.245067pt;}
.he{height:112.853297pt;}
.h2b{height:113.194400pt;}
.h2d{height:119.569867pt;}
.h2e{height:128.247200pt;}
.h14{height:204.314880pt;}
.h1b{height:206.717573pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:270.240640pt;}
.w3{width:306.472320pt;}
.w4{width:306.477127pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:12.349756pt;}
.x77{left:13.504602pt;}
.x3d{left:15.802653pt;}
.x3e{left:17.432117pt;}
.x58{left:19.381517pt;}
.x3c{left:21.023589pt;}
.x27{left:22.666667pt;}
.x76{left:26.898355pt;}
.x43{left:39.939356pt;}
.x3a{left:43.519763pt;}
.x72{left:45.810130pt;}
.x16{left:59.338667pt;}
.x1{left:62.729333pt;}
.x15{left:66.465333pt;}
.x5{left:70.076000pt;}
.x22{left:72.622667pt;}
.x14{left:75.929333pt;}
.x2b{left:77.050910pt;}
.x18{left:81.476000pt;}
.x7e{left:83.685333pt;}
.x7{left:85.452000pt;}
.x2c{left:86.700000pt;}
.x28{left:88.996000pt;}
.x4{left:90.400000pt;}
.x4f{left:91.657333pt;}
.x19{left:93.284000pt;}
.x5e{left:98.472000pt;}
.x1a{left:100.312000pt;}
.x3{left:112.933333pt;}
.x62{left:114.477333pt;}
.x2d{left:119.802667pt;}
.x3f{left:123.890283pt;}
.x57{left:127.274667pt;}
.x40{left:129.805404pt;}
.x45{left:130.813816pt;}
.x2a{left:132.260356pt;}
.x68{left:133.345333pt;}
.x63{left:134.633333pt;}
.x73{left:136.023696pt;}
.x2{left:139.036000pt;}
.x46{left:143.477914pt;}
.x6{left:144.921333pt;}
.x41{left:150.194909pt;}
.x69{left:153.392000pt;}
.x74{left:154.510357pt;}
.x37{left:155.461333pt;}
.x3b{left:158.381807pt;}
.x2e{left:163.308000pt;}
.x2f{left:167.109333pt;}
.x5b{left:168.402408pt;}
.x24{left:172.277333pt;}
.x75{left:174.298197pt;}
.x5c{left:176.005190pt;}
.x5f{left:176.956000pt;}
.x55{left:180.421333pt;}
.x38{left:182.009333pt;}
.x64{left:185.574667pt;}
.x53{left:188.540000pt;}
.x6e{left:189.672009pt;}
.x32{left:191.053333pt;}
.x39{left:192.794667pt;}
.x6c{left:193.944000pt;}
.x50{left:198.773333pt;}
.x29{left:204.503646pt;}
.x66{left:206.352000pt;}
.x59{left:208.515498pt;}
.x17{left:213.850667pt;}
.x5a{left:216.118279pt;}
.x54{left:219.468000pt;}
.x51{left:224.214667pt;}
.x60{left:228.384000pt;}
.x6d{left:229.605333pt;}
.x56{left:235.393333pt;}
.x33{left:239.613333pt;}
.x6a{left:244.416000pt;}
.x67{left:252.232000pt;}
.x52{left:254.334667pt;}
.x61{left:257.105333pt;}
.x30{left:262.576000pt;}
.x5d{left:265.220000pt;}
.x78{left:272.820001pt;}
.x7f{left:274.488000pt;}
.x79{left:278.611250pt;}
.x31{left:279.624000pt;}
.x65{left:292.441333pt;}
.xa{left:319.796000pt;}
.x23{left:348.734667pt;}
.x9{left:365.045333pt;}
.x6b{left:366.750667pt;}
.xc{left:371.421333pt;}
.x34{left:373.392000pt;}
.x8{left:379.265333pt;}
.xb{left:394.641333pt;}
.x1d{left:396.850667pt;}
.x1c{left:403.977333pt;}
.x7b{left:410.133333pt;}
.x1b{left:415.806667pt;}
.x1f{left:418.986667pt;}
.x4b{left:423.310667pt;}
.x21{left:426.293333pt;}
.x7c{left:429.166667pt;}
.x20{left:430.796000pt;}
.x25{left:437.138667pt;}
.x4c{left:457.633333pt;}
.x36{left:474.801333pt;}
.x71{left:480.061333pt;}
.x35{left:496.265333pt;}
.x26{left:498.006667pt;}
.x70{left:509.370667pt;}
.x48{left:512.918667pt;}
.x6f{left:517.673333pt;}
.x7a{left:532.397333pt;}
.x7d{left:533.456000pt;}
.x4d{left:539.745333pt;}
.x49{left:545.013333pt;}
.x1e{left:551.362667pt;}
.x47{left:554.584000pt;}
.x42{left:556.598667pt;}
.xf{left:569.514667pt;}
.xe{left:576.641333pt;}
.x4a{left:587.564000pt;}
.x11{left:591.652000pt;}
.x12{left:603.460000pt;}
.xd{left:609.765333pt;}
.x13{left:613.808000pt;}
.x4e{left:642.505333pt;}
.x10{left:724.028000pt;}
}




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