
    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_e93e6349d5a3c3197ee377c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_b4bd145d69c8fd1f0eb5e59c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_081227fbe4f0e3639e237411.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_d5004ca6c8fc8bd971bebd08.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ea6ab02d6982ce85090b49a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.781250;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_f496705c9d7b5c534f112bc8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4e02c72b8880eca20f8d29cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_11bf9557280bceb570d170c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2e7620f389c05481fa4d14d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.710000;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_ae7a4e3872b0df812c80ff61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708000;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_f760693c2c43f2d0285d7c36.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.808000;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_5293dfd64e5328a34e4b417c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_502884eda443ac0e7e104b02.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5a313954748ae0d590f45f42.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.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:fff;src:url('chunks/assets/font_f078fdd4105d5b1e10d021e9.woff2')format("woff");}.fff{font-family:fff;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-162.390000px;}
.vb{vertical-align:-64.758000px;}
.v19{vertical-align:-58.104000px;}
.v2{vertical-align:-31.236000px;}
.vf{vertical-align:-29.616000px;}
.v7{vertical-align:-26.034000px;}
.v17{vertical-align:-24.906000px;}
.v15{vertical-align:-21.516000px;}
.v4{vertical-align:-10.758000px;}
.v12{vertical-align:-3.510000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.972000px;}
.v5{vertical-align:17.730000px;}
.v3{vertical-align:26.034000px;}
.vc{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:43.764000px;}
.vd{vertical-align:47.352000px;}
.v10{vertical-align:48.528000px;}
.v16{vertical-align:57.786000px;}
.ve{vertical-align:59.334000px;}
.v18{vertical-align:75.834000px;}
.v11{vertical-align:85.086000px;}
.va{vertical-align:97.632000px;}
.v9{vertical-align:101.142000px;}
.v14{vertical-align:122.658000px;}
.ls1{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.000492px;}
.ls60{letter-spacing:0.000760px;}
.ls39{letter-spacing:0.000995px;}
.ls3c{letter-spacing:0.001165px;}
.ls7d{letter-spacing:0.001288px;}
.ls73{letter-spacing:0.001473px;}
.ls7c{letter-spacing:0.001571px;}
.lsb3{letter-spacing:0.002227px;}
.ls6{letter-spacing:0.002759px;}
.lsf{letter-spacing:0.003056px;}
.lsd4{letter-spacing:0.003191px;}
.ls57{letter-spacing:0.003744px;}
.lse1{letter-spacing:0.003894px;}
.lsa9{letter-spacing:0.004391px;}
.lsc8{letter-spacing:0.004527px;}
.ls59{letter-spacing:0.004664px;}
.lsa0{letter-spacing:0.005299px;}
.ls99{letter-spacing:0.005587px;}
.ls43{letter-spacing:0.006492px;}
.ls11{letter-spacing:0.006760px;}
.lsdd{letter-spacing:0.457809px;}
.ls1f{letter-spacing:0.592737px;}
.lsdf{letter-spacing:1.946534px;}
.lsbc{letter-spacing:1.949053px;}
.lsb7{letter-spacing:1.955053px;}
.ls7e{letter-spacing:2.569240px;}
.ls5f{letter-spacing:2.569918px;}
.ls2c{letter-spacing:2.573487px;}
.lse{letter-spacing:2.574492px;}
.ls22{letter-spacing:2.575240px;}
.lsa2{letter-spacing:2.579587px;}
.ls10{letter-spacing:2.984915px;}
.lsa4{letter-spacing:2.985056px;}
.lse3{letter-spacing:2.985226px;}
.lsd5{letter-spacing:2.986053px;}
.ls44{letter-spacing:2.986059px;}
.ls4c{letter-spacing:2.988499px;}
.ls52{letter-spacing:2.990915px;}
.ls9e{letter-spacing:2.991072px;}
.ls28{letter-spacing:2.991543px;}
.lsde{letter-spacing:2.992053px;}
.ls0{letter-spacing:2.992200px;}
.ls1e{letter-spacing:3.460566px;}
.ls4f{letter-spacing:3.899724px;}
.ls6d{letter-spacing:3.905724px;}
.ls8a{letter-spacing:4.173471px;}
.ls8d{letter-spacing:4.179471px;}
.ls20{letter-spacing:4.807905px;}
.ls84{letter-spacing:5.536477px;}
.ls85{letter-spacing:5.542477px;}
.ls4e{letter-spacing:5.807786px;}
.lsdc{letter-spacing:5.897777px;}
.lse2{letter-spacing:6.715050px;}
.ls41{letter-spacing:7.126787px;}
.lsb5{letter-spacing:7.174664px;}
.lsc{letter-spacing:7.487034px;}
.ls16{letter-spacing:7.487566px;}
.ls36{letter-spacing:7.492752px;}
.ls7{letter-spacing:7.493034px;}
.ls15{letter-spacing:7.493566px;}
.lsc2{letter-spacing:7.762737px;}
.lsbf{letter-spacing:9.753679px;}
.ls5{letter-spacing:9.756440px;}
.ls1d{letter-spacing:10.046044px;}
.lsa1{letter-spacing:11.937072px;}
.lsad{letter-spacing:11.943072px;}
.ls29{letter-spacing:11.953114px;}
.ls91{letter-spacing:11.954759px;}
.lsd6{letter-spacing:11.955191px;}
.ls5c{letter-spacing:11.956664px;}
.ls5a{letter-spacing:11.957779px;}
.ls34{letter-spacing:14.251473px;}
.lsc3{letter-spacing:15.241956px;}
.ls75{letter-spacing:15.605831px;}
.ls7b{letter-spacing:15.611831px;}
.ls3f{letter-spacing:15.924326px;}
.ls3d{letter-spacing:15.934637px;}
.ls2f{letter-spacing:15.935518px;}
.lsc6{letter-spacing:15.936409px;}
.lsb2{letter-spacing:15.937473px;}
.ls31{letter-spacing:15.938809px;}
.lsc4{letter-spacing:15.940664px;}
.ls3e{letter-spacing:15.941518px;}
.lsa8{letter-spacing:15.943473px;}
.ls83{letter-spacing:16.840821px;}
.ls35{letter-spacing:17.242834px;}
.ls4a{letter-spacing:17.314821px;}
.ls5b{letter-spacing:17.765786px;}
.ls58{letter-spacing:17.849777px;}
.ls55{letter-spacing:18.094821px;}
.lsdb{letter-spacing:18.509487px;}
.ls30{letter-spacing:18.515487px;}
.ls1c{letter-spacing:18.516995px;}
.lsa7{letter-spacing:18.920915px;}
.ls9f{letter-spacing:18.926915px;}
.lsa3{letter-spacing:18.927056px;}
.ls4{letter-spacing:19.283299px;}
.ls1b{letter-spacing:19.916809px;}
.ls6b{letter-spacing:19.918821px;}
.ls82{letter-spacing:19.919123px;}
.ls2e{letter-spacing:19.919518px;}
.ls4d{letter-spacing:19.920760px;}
.ls45{letter-spacing:19.921114px;}
.lsc1{letter-spacing:19.921473px;}
.ls7a{letter-spacing:19.921571px;}
.ls54{letter-spacing:19.922759px;}
.ls13{letter-spacing:19.922809px;}
.ls53{letter-spacing:19.923744px;}
.lsb{letter-spacing:19.924800px;}
.ls6c{letter-spacing:19.925073px;}
.ls6a{letter-spacing:19.925123px;}
.ls32{letter-spacing:19.925518px;}
.ls2d{letter-spacing:19.925808px;}
.ls12{letter-spacing:19.926760px;}
.ls9{letter-spacing:19.927114px;}
.ls46{letter-spacing:19.927473px;}
.ls77{letter-spacing:19.927571px;}
.lsc0{letter-spacing:19.928759px;}
.ls47{letter-spacing:20.310499px;}
.ls33{letter-spacing:20.617460px;}
.lsd8{letter-spacing:21.694053px;}
.lsda{letter-spacing:21.801226px;}
.ls61{letter-spacing:21.820737px;}
.lsbd{letter-spacing:21.889114px;}
.ls74{letter-spacing:22.479325px;}
.ls49{letter-spacing:22.495240px;}
.ls8{letter-spacing:22.500492px;}
.ls94{letter-spacing:22.895053px;}
.lsa6{letter-spacing:22.911056px;}
.ls9d{letter-spacing:22.911072px;}
.lsd3{letter-spacing:22.912053px;}
.lsb4{letter-spacing:22.912059px;}
.lscc{letter-spacing:22.912472px;}
.lsaf{letter-spacing:22.916915px;}
.ls9c{letter-spacing:22.941072px;}
.lsd{letter-spacing:22.990821px;}
.ls2b{letter-spacing:23.009808px;}
.lse0{letter-spacing:23.097072px;}
.ls1a{letter-spacing:23.392566px;}
.ls56{letter-spacing:23.404821px;}
.ls6e{letter-spacing:23.405123px;}
.lsac{letter-spacing:23.408675px;}
.lsc9{letter-spacing:23.410637px;}
.ls80{letter-spacing:23.413288px;}
.ls8c{letter-spacing:23.533473px;}
.ls93{letter-spacing:23.930915px;}
.ls66{letter-spacing:24.199114px;}
.ls67{letter-spacing:24.200759px;}
.ls68{letter-spacing:24.202800px;}
.ls65{letter-spacing:24.207744px;}
.ls48{letter-spacing:24.815034px;}
.ls5e{letter-spacing:24.959724px;}
.lsce{letter-spacing:25.361053px;}
.ls69{letter-spacing:25.462477px;}
.ls2a{letter-spacing:25.577487px;}
.ls9a{letter-spacing:25.969114px;}
.lsab{letter-spacing:25.989525px;}
.lscf{letter-spacing:26.189053px;}
.ls4b{letter-spacing:26.280760px;}
.lsd2{letter-spacing:26.398053px;}
.ls8f{letter-spacing:26.402915px;}
.lsba{letter-spacing:26.403072px;}
.ls42{letter-spacing:26.477034px;}
.ls8b{letter-spacing:26.516915px;}
.ls50{letter-spacing:26.609034px;}
.ls38{letter-spacing:26.728637px;}
.ls3b{letter-spacing:27.052787px;}
.lsb0{letter-spacing:27.095518px;}
.ls62{letter-spacing:27.317724px;}
.ls78{letter-spacing:27.413034px;}
.ls90{letter-spacing:27.418752px;}
.ls79{letter-spacing:27.617226px;}
.ls86{letter-spacing:27.792440px;}
.lsd1{letter-spacing:27.857053px;}
.ls19{letter-spacing:28.562044px;}
.ls23{letter-spacing:28.756637px;}
.ls71{letter-spacing:28.799518px;}
.ls25{letter-spacing:29.018809px;}
.ls21{letter-spacing:29.020637px;}
.lsd9{letter-spacing:29.049295px;}
.ls72{letter-spacing:29.244440px;}
.lsa{letter-spacing:29.682440px;}
.lsd0{letter-spacing:29.993053px;}
.ls3a{letter-spacing:30.538787px;}
.lsb9{letter-spacing:30.735072px;}
.ls14{letter-spacing:30.899034px;}
.ls9b{letter-spacing:30.994477px;}
.ls18{letter-spacing:31.066637px;}
.ls17{letter-spacing:31.067299px;}
.ls27{letter-spacing:31.327240px;}
.ls24{letter-spacing:31.597240px;}
.ls98{letter-spacing:32.950752px;}
.ls70{letter-spacing:33.005226px;}
.ls64{letter-spacing:33.419034px;}
.ls26{letter-spacing:33.463905px;}
.ls3{letter-spacing:35.116404px;}
.ls2{letter-spacing:35.865600px;}
.ls96{letter-spacing:35.875473px;}
.ls37{letter-spacing:36.864075px;}
.ls8e{letter-spacing:37.544915px;}
.ls87{letter-spacing:38.902821px;}
.ls88{letter-spacing:38.903518px;}
.ls97{letter-spacing:40.276752px;}
.lsbb{letter-spacing:40.707072px;}
.ls95{letter-spacing:41.422477px;}
.ls76{letter-spacing:44.237831px;}
.ls89{letter-spacing:46.391034px;}
.lsb6{letter-spacing:58.946675px;}
.lsb1{letter-spacing:58.952675px;}
.lsc5{letter-spacing:120.619473px;}
.lsc7{letter-spacing:276.853114px;}
.ls6f{letter-spacing:520.015114px;}
.lsaa{letter-spacing:818.989114px;}
.lsae{letter-spacing:832.369114px;}
.lsca{letter-spacing:860.689114px;}
.lsbe{letter-spacing:873.613114px;}
.lsa5{letter-spacing:874.717114px;}
.lscb{letter-spacing:920.647114px;}
.ls81{letter-spacing:936.937114px;}
.ls5d{letter-spacing:938.185114px;}
.lsb8{letter-spacing:962.701114px;}
.lscd{letter-spacing:983.743114px;}
.ls63{letter-spacing:1036.183114px;}
.lsd7{letter-spacing:1036.825114px;}
.ls40{letter-spacing:1047.457114px;}
.ls7f{letter-spacing:1070.935114px;}
.ls92{letter-spacing:1080.061114px;}
.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;}
}
.ws7b{word-spacing:-87.655526px;}
.ws67{word-spacing:-71.731200px;}
.ws8d{word-spacing:-56.789591px;}
.wsd0{word-spacing:-47.800472px;}
.ws5e{word-spacing:-45.664082px;}
.ws1{word-spacing:-38.742188px;}
.ws5a{word-spacing:-33.684972px;}
.wsbc{word-spacing:-33.211407px;}
.ws1f{word-spacing:-32.278875px;}
.wsfb{word-spacing:-27.153429px;}
.ws76{word-spacing:-27.147429px;}
.ws53{word-spacing:-19.510886px;}
.ws22{word-spacing:-19.439155px;}
.wsb4{word-spacing:-18.246207px;}
.ws1a{word-spacing:-18.183288px;}
.ws99{word-spacing:-17.932800px;}
.ws77{word-spacing:-14.111859px;}
.ws24{word-spacing:-10.903142px;}
.wsac{word-spacing:-7.603507px;}
.wsfc{word-spacing:-7.596088px;}
.wscf{word-spacing:-7.586911px;}
.ws8c{word-spacing:-7.564762px;}
.wsce{word-spacing:-7.558205px;}
.wsc7{word-spacing:-6.455775px;}
.wscd{word-spacing:-3.586560px;}
.ws3f{word-spacing:-3.514829px;}
.ws14{word-spacing:-3.259639px;}
.ws100{word-spacing:-3.012710px;}
.wsa1{word-spacing:-2.725786px;}
.ws9f{word-spacing:-2.674155px;}
.wsa0{word-spacing:-2.654054px;}
.ws105{word-spacing:-2.636129px;}
.ws82{word-spacing:-2.223667px;}
.ws80{word-spacing:-2.196382px;}
.wsf9{word-spacing:-2.151936px;}
.ws85{word-spacing:-2.008474px;}
.ws4f{word-spacing:-1.649818px;}
.wsa3{word-spacing:-1.506355px;}
.wsa2{word-spacing:-1.487119px;}
.ws70{word-spacing:-1.434624px;}
.ws8a{word-spacing:-1.362893px;}
.ws4d{word-spacing:-1.219430px;}
.wsd1{word-spacing:-1.075968px;}
.ws65{word-spacing:-1.004237px;}
.ws39{word-spacing:-0.824909px;}
.wse5{word-spacing:-0.813041px;}
.wse6{word-spacing:-0.789043px;}
.wsc0{word-spacing:-0.753178px;}
.wsbe{word-spacing:-0.747792px;}
.ws3a{word-spacing:-0.717312px;}
.wsea{word-spacing:-0.698028px;}
.wseb{word-spacing:-0.696457px;}
.wsc1{word-spacing:-0.645581px;}
.ws7c{word-spacing:-0.502118px;}
.ws95{word-spacing:-0.466253px;}
.ws88{word-spacing:-0.430387px;}
.ws89{word-spacing:-0.409346px;}
.ws96{word-spacing:-0.374694px;}
.ws97{word-spacing:-0.358656px;}
.ws71{word-spacing:-0.286925px;}
.ws5b{word-spacing:-0.215194px;}
.ws3b{word-spacing:-0.143462px;}
.wsa8{word-spacing:-0.071731px;}
.ws6a{word-spacing:-0.047821px;}
.ws66{word-spacing:-0.019014px;}
.ws5{word-spacing:0.000000px;}
.ws47{word-spacing:0.143462px;}
.ws103{word-spacing:0.286925px;}
.wsda{word-spacing:0.388572px;}
.ws93{word-spacing:0.390117px;}
.wsba{word-spacing:0.396117px;}
.ws8b{word-spacing:0.397231px;}
.wse{word-spacing:0.405819px;}
.ws68{word-spacing:0.430387px;}
.wsb8{word-spacing:0.537984px;}
.ws84{word-spacing:0.789043px;}
.ws1e{word-spacing:0.932506px;}
.ws56{word-spacing:1.004237px;}
.ws106{word-spacing:1.147699px;}
.ws33{word-spacing:1.219430px;}
.ws6{word-spacing:1.322183px;}
.wsf7{word-spacing:1.362893px;}
.wsaf{word-spacing:1.409380px;}
.wsad{word-spacing:1.424959px;}
.wsae{word-spacing:1.434624px;}
.ws8e{word-spacing:1.506355px;}
.ws81{word-spacing:1.578086px;}
.ws1b{word-spacing:1.649456px;}
.ws91{word-spacing:1.721543px;}
.ws2a{word-spacing:1.721549px;}
.ws4a{word-spacing:1.865011px;}
.wsc3{word-spacing:1.936742px;}
.ws90{word-spacing:1.972608px;}
.wsc4{word-spacing:1.995070px;}
.wsc5{word-spacing:2.008474px;}
.ws2e{word-spacing:2.080205px;}
.wsc2{word-spacing:2.151936px;}
.wsf{word-spacing:2.173093px;}
.ws50{word-spacing:2.223667px;}
.ws25{word-spacing:2.259533px;}
.ws4e{word-spacing:2.295398px;}
.ws6f{word-spacing:2.438861px;}
.ws6e{word-spacing:2.510592px;}
.wsf5{word-spacing:2.582323px;}
.ws10{word-spacing:2.631275px;}
.wscc{word-spacing:2.633956px;}
.wsfa{word-spacing:2.725786px;}
.ws7{word-spacing:2.762184px;}
.ws7d{word-spacing:2.797517px;}
.wsdd{word-spacing:2.940979px;}
.ws101{word-spacing:3.012710px;}
.ws78{word-spacing:3.068959px;}
.ws42{word-spacing:3.084442px;}
.ws59{word-spacing:3.371366px;}
.ws5d{word-spacing:3.443098px;}
.ws5c{word-spacing:3.473086px;}
.ws74{word-spacing:3.485793px;}
.ws75{word-spacing:3.514829px;}
.ws52{word-spacing:3.586560px;}
.ws2{word-spacing:3.613094px;}
.ws31{word-spacing:3.658291px;}
.ws104{word-spacing:3.801754px;}
.ws60{word-spacing:3.862671px;}
.ws9e{word-spacing:3.864309px;}
.ws111{word-spacing:3.866916px;}
.ws94{word-spacing:3.868138px;}
.ws10d{word-spacing:3.870065px;}
.ws118{word-spacing:3.871068px;}
.ws2c{word-spacing:3.873485px;}
.ws19{word-spacing:3.874912px;}
.wsbb{word-spacing:3.884619px;}
.ws92{word-spacing:3.889363px;}
.ws9c{word-spacing:3.890419px;}
.wsb9{word-spacing:3.890959px;}
.ws9d{word-spacing:3.896302px;}
.wse7{word-spacing:3.896369px;}
.ws115{word-spacing:3.896934px;}
.ws7f{word-spacing:3.898454px;}
.ws61{word-spacing:3.898986px;}
.ws38{word-spacing:3.945216px;}
.wsf3{word-spacing:4.016947px;}
.ws86{word-spacing:4.232141px;}
.wsd2{word-spacing:4.303872px;}
.wsd4{word-spacing:4.375603px;}
.wsef{word-spacing:4.447334px;}
.ws23{word-spacing:4.483200px;}
.ws112{word-spacing:4.486216px;}
.ws114{word-spacing:4.519066px;}
.ws2b{word-spacing:4.590797px;}
.wsb{word-spacing:4.594913px;}
.ws4{word-spacing:4.648169px;}
.ws3{word-spacing:4.734246px;}
.wse0{word-spacing:4.734259px;}
.ws11a{word-spacing:4.877722px;}
.wsf8{word-spacing:5.021184px;}
.wsee{word-spacing:5.057050px;}
.wsc{word-spacing:5.118550px;}
.wsd9{word-spacing:5.164646px;}
.ws1d{word-spacing:5.236378px;}
.ws27{word-spacing:5.379825px;}
.wse2{word-spacing:5.379840px;}
.wsff{word-spacing:5.451571px;}
.ws2d{word-spacing:5.523302px;}
.wsf1{word-spacing:5.595034px;}
.ws10f{word-spacing:5.666765px;}
.ws10a{word-spacing:5.738496px;}
.wsb6{word-spacing:5.935845px;}
.ws32{word-spacing:5.953690px;}
.ws110{word-spacing:6.097152px;}
.ws15{word-spacing:6.231278px;}
.ws55{word-spacing:6.240614px;}
.ws98{word-spacing:6.384077px;}
.wsf0{word-spacing:6.419942px;}
.ws58{word-spacing:6.455775px;}
.ws3d{word-spacing:6.455808px;}
.ws18{word-spacing:6.624006px;}
.ws28{word-spacing:6.671002px;}
.ws36{word-spacing:6.742733px;}
.ws54{word-spacing:6.814464px;}
.wsdb{word-spacing:6.818959px;}
.ws49{word-spacing:6.957926px;}
.ws119{word-spacing:7.101389px;}
.ws7a{word-spacing:7.173120px;}
.ws3c{word-spacing:7.352448px;}
.wsf2{word-spacing:7.388314px;}
.wsd8{word-spacing:7.460045px;}
.ws17{word-spacing:7.474915px;}
.ws7e{word-spacing:7.639373px;}
.ws113{word-spacing:7.746970px;}
.ws0{word-spacing:7.748437px;}
.ws35{word-spacing:7.782835px;}
.ws8f{word-spacing:7.890432px;}
.ws48{word-spacing:7.998029px;}
.ws107{word-spacing:8.033894px;}
.ws12{word-spacing:8.064007px;}
.ws41{word-spacing:8.105626px;}
.ws3e{word-spacing:8.141491px;}
.ws13{word-spacing:8.194916px;}
.wsed{word-spacing:8.320819px;}
.ws57{word-spacing:8.464282px;}
.wse1{word-spacing:8.536013px;}
.wsb0{word-spacing:8.679475px;}
.ws11f{word-spacing:8.751206px;}
.ws79{word-spacing:8.802979px;}
.wse3{word-spacing:8.822938px;}
.ws72{word-spacing:8.883731px;}
.ws73{word-spacing:8.894669px;}
.wsc8{word-spacing:8.966400px;}
.wsd7{word-spacing:9.038131px;}
.ws9a{word-spacing:9.109862px;}
.ws9b{word-spacing:9.122162px;}
.ws6b{word-spacing:9.230723px;}
.ws6d{word-spacing:9.253325px;}
.ws6c{word-spacing:9.278700px;}
.ws30{word-spacing:9.325056px;}
.ws40{word-spacing:9.360922px;}
.ws44{word-spacing:9.396787px;}
.ws16{word-spacing:9.438553px;}
.wse9{word-spacing:9.468518px;}
.ws69{word-spacing:9.540250px;}
.wsec{word-spacing:9.576115px;}
.wsaa{word-spacing:9.827174px;}
.ws11b{word-spacing:9.898906px;}
.wsab{word-spacing:9.970637px;}
.ws11e{word-spacing:10.114099px;}
.wsc9{word-spacing:10.185830px;}
.ws51{word-spacing:10.257562px;}
.ws123{word-spacing:10.401024px;}
.wsa5{word-spacing:10.544486px;}
.ws10b{word-spacing:10.616218px;}
.wsd{word-spacing:10.616736px;}
.wsbf{word-spacing:10.652083px;}
.wsc6{word-spacing:10.687949px;}
.wsd6{word-spacing:10.903142px;}
.ws1c{word-spacing:11.522022px;}
.ws63{word-spacing:11.548723px;}
.ws64{word-spacing:11.557745px;}
.ws102{word-spacing:11.692186px;}
.wsd3{word-spacing:11.728051px;}
.ws10e{word-spacing:11.763917px;}
.ws29{word-spacing:11.907379px;}
.ws121{word-spacing:12.050842px;}
.wsa{word-spacing:12.056737px;}
.ws10c{word-spacing:12.122573px;}
.wsa4{word-spacing:12.158438px;}
.wsfd{word-spacing:12.337766px;}
.ws124{word-spacing:12.409498px;}
.wsf6{word-spacing:12.696422px;}
.ws46{word-spacing:12.839885px;}
.ws37{word-spacing:13.198541px;}
.wsb2{word-spacing:13.258347px;}
.wsb3{word-spacing:13.270272px;}
.wsca{word-spacing:13.342003px;}
.ws4c{word-spacing:13.557197px;}
.ws11c{word-spacing:13.700659px;}
.ws11{word-spacing:14.020375px;}
.wsf4{word-spacing:14.131046px;}
.ws122{word-spacing:14.489702px;}
.ws45{word-spacing:14.740762px;}
.ws8{word-spacing:14.805831px;}
.ws125{word-spacing:14.991821px;}
.wsa6{word-spacing:15.041136px;}
.wsa9{word-spacing:15.061213px;}
.wsa7{word-spacing:15.063552px;}
.ws116{word-spacing:15.135283px;}
.wsfe{word-spacing:15.493939px;}
.ws2f{word-spacing:15.565670px;}
.ws9{word-spacing:15.591286px;}
.ws4b{word-spacing:15.601536px;}
.ws83{word-spacing:15.637402px;}
.ws120{word-spacing:16.067789px;}
.ws11d{word-spacing:16.139520px;}
.ws21{word-spacing:16.354714px;}
.ws87{word-spacing:17.301477px;}
.ws117{word-spacing:17.502413px;}
.ws108{word-spacing:17.861069px;}
.ws43{word-spacing:17.896934px;}
.wsdf{word-spacing:18.004531px;}
.ws62{word-spacing:18.497520px;}
.ws109{word-spacing:20.013005px;}
.wsde{word-spacing:20.766182px;}
.ws20{word-spacing:42.572467px;}
.wsd5{word-spacing:47.798233px;}
.wse4{word-spacing:47.815361px;}
.wse8{word-spacing:47.815607px;}
.wsdc{word-spacing:47.816277px;}
.wsb7{word-spacing:47.818019px;}
.wsb1{word-spacing:47.818207px;}
.ws5f{word-spacing:47.823043px;}
.wscb{word-spacing:58.281600px;}
.ws34{word-spacing:69.937725px;}
.ws26{word-spacing:83.925075px;}
.wsbd{word-spacing:1005.831343px;}
.wsb5{word-spacing:1122.802861px;}
._16{margin-left:-37.802342px;}
._14{margin-left:-35.865600px;}
._46{margin-left:-34.366354px;}
._15{margin-left:-31.992115px;}
._18{margin-left:-17.932800px;}
._1f{margin-left:-15.173819px;}
._1{margin-left:-11.653650px;}
._40{margin-left:-9.709486px;}
._42{margin-left:-8.091257px;}
._6{margin-left:-7.058330px;}
._4{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-1.832729px;}
._5{width:1.898183px;}
._2f{width:2.902444px;}
._2{width:3.967200px;}
._3c{width:5.422864px;}
._39{width:7.578391px;}
._3b{width:9.540250px;}
._45{width:11.603950px;}
._41{width:12.765699px;}
._b{width:16.167286px;}
._1d{width:19.008768px;}
._33{width:20.259591px;}
._e{width:21.591091px;}
._11{width:23.280358px;}
._21{width:24.616355px;}
._26{width:26.493929px;}
._9{width:28.669115px;}
._3a{width:30.485760px;}
._c{width:32.269118px;}
._1c{width:34.599554px;}
._3d{width:35.885787px;}
._2c{width:37.158784px;}
._3e{width:38.316954px;}
._d{width:40.581852px;}
._25{width:42.131330px;}
._43{width:43.253914px;}
._36{width:44.401613px;}
._1b{width:46.434313px;}
._20{width:48.079624px;}
._8{width:50.007314px;}
._12{width:52.652723px;}
._1e{width:54.488816px;}
._2d{width:55.943170px;}
._a{width:60.395999px;}
._24{width:61.728281px;}
._7{width:64.996418px;}
._32{width:67.244417px;}
._2b{width:69.140821px;}
._28{width:70.249961px;}
._10{width:71.802931px;}
._27{width:75.781343px;}
._1a{width:80.338944px;}
._38{width:96.836850px;}
._44{width:102.672355px;}
._17{width:110.576338px;}
._23{width:111.893506px;}
._3f{width:116.203950px;}
._13{width:146.331648px;}
._22{width:491.103293px;}
._29{width:568.912806px;}
._2a{width:651.834073px;}
._30{width:653.960003px;}
._31{width:879.686669px;}
._34{width:1085.138033px;}
._2e{width:1269.426262px;}
._37{width:1758.275174px;}
._19{width:1770.170993px;}
._f{width:2231.779102px;}
._35{width:2249.562163px;}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(49,49,49);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:59.775600px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs7{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.ya{bottom:10.389960px;}
.y8{bottom:61.467000px;}
.y9e{bottom:106.299000px;}
.y1a6{bottom:106.519500px;}
.y51{bottom:109.024500px;}
.y79{bottom:109.224000px;}
.y21e{bottom:113.506500px;}
.y1f2{bottom:123.423000px;}
.y111{bottom:125.901000px;}
.y9d{bottom:127.968000px;}
.y1a5{bottom:128.188500px;}
.y50{bottom:130.693500px;}
.y21d{bottom:135.175500px;}
.y78{bottom:148.452000px;}
.y9c{bottom:149.637000px;}
.y1a4{bottom:149.857500px;}
.y18d{bottom:150.867000px;}
.y1bf{bottom:152.236500px;}
.y1f1{bottom:155.026500px;}
.y21c{bottom:156.844500px;}
.y1f0{bottom:159.459000px;}
.y110{bottom:169.239000px;}
.y4f{bottom:169.920000px;}
.y173{bottom:170.044500px;}
.y77{bottom:170.119500px;}
.ydb{bottom:171.306000px;}
.y18c{bottom:172.534500px;}
.y1be{bottom:173.905500px;}
.ybe{bottom:182.887500px;}
.y1a3{bottom:183.108000px;}
.y9b{bottom:184.684500px;}
.y10f{bottom:190.908000px;}
.y1ef{bottom:191.062500px;}
.y4e{bottom:191.589000px;}
.y172{bottom:191.712000px;}
.y76{bottom:191.788500px;}
.yda{bottom:192.973500px;}
.y21b{bottom:193.456500px;}
.y1ee{bottom:195.496500px;}
.y1bd{bottom:195.574500px;}
.y14b{bottom:204.556500px;}
.y18b{bottom:205.785000px;}
.y9a{bottom:206.353500px;}
.y12a{bottom:207.541500px;}
.y10e{bottom:212.577000px;}
.y4d{bottom:213.258000px;}
.y171{bottom:213.381000px;}
.y75{bottom:213.457500px;}
.yd9{bottom:214.642500px;}
.y21a{bottom:215.125500px;}
.ybd{bottom:216.138000px;}
.y99{bottom:228.021000px;}
.y1bc{bottom:228.823500px;}
.y1a2{bottom:229.870500px;}
.y1ed{bottom:231.532500px;}
.yf4{bottom:231.763500px;}
.y4c{bottom:234.927000px;}
.y74{bottom:235.126500px;}
.y10d{bottom:243.958500px;}
.y170{bottom:246.631500px;}
.y1a1{bottom:247.105500px;}
.yd8{bottom:247.893000px;}
.y14a{bottom:250.630500px;}
.y1a0{bottom:251.539500px;}
.y219{bottom:251.737500px;}
.yf3{bottom:253.432500px;}
.y129{bottom:254.304000px;}
.y4b{bottom:256.596000px;}
.y73{bottom:256.795500px;}
.y18a{bottom:257.778000px;}
.ybc{bottom:260.794500px;}
.y1bb{bottom:262.074000px;}
.y98{bottom:263.068500px;}
.y1ec{bottom:267.570000px;}
.y149{bottom:272.299500px;}
.yf2{bottom:275.100000px;}
.y128{bottom:275.973000px;}
.y4a{bottom:278.265000px;}
.y72{bottom:278.464500px;}
.y19f{bottom:278.488500px;}
.y189{bottom:279.447000px;}
.y19e{bottom:282.921000px;}
.y97{bottom:284.737500px;}
.y10c{bottom:287.296500px;}
.y218{bottom:288.351000px;}
.y16f{bottom:293.394000px;}
.y148{bottom:293.968500px;}
.yd7{bottom:294.004500px;}
.y1eb{bottom:299.173500px;}
.y49{bottom:299.932500px;}
.y71{bottom:300.132000px;}
.y1ea{bottom:303.606000px;}
.y96{bottom:306.406500px;}
.y1ba{bottom:306.732000px;}
.y127{bottom:307.354500px;}
.yf1{bottom:308.350500px;}
.y10b{bottom:308.965500px;}
.y188{bottom:312.697500px;}
.y15d{bottom:313.132500px;}
.y16e{bottom:315.063000px;}
.y147{bottom:315.637500px;}
.ybb{bottom:320.619000px;}
.y48{bottom:321.601500px;}
.y217{bottom:324.963000px;}
.y19d{bottom:326.259000px;}
.y1d6{bottom:327.640500px;}
.yd6{bottom:329.356500px;}
.y10a{bottom:330.633000px;}
.y15c{bottom:334.801500px;}
.y70{bottom:339.360000px;}
.y1e9{bottom:339.643500px;}
.y95{bottom:341.454000px;}
.yba{bottom:342.286500px;}
.y216{bottom:346.632000px;}
.y1d5{bottom:349.309500px;}
.y126{bottom:350.692500px;}
.y109{bottom:352.302000px;}
.yf0{bottom:355.113000px;}
.y187{bottom:359.458500px;}
.y47{bottom:360.829500px;}
.y6f{bottom:361.029000px;}
.y146{bottom:361.713000px;}
.y16d{bottom:361.824000px;}
.yd5{bottom:362.187000px;}
.y94{bottom:363.123000px;}
.yb9{bottom:363.955500px;}
.y1b9{bottom:366.633000px;}
.y15b{bottom:368.052000px;}
.y19c{bottom:368.587500px;}
.y1d4{bottom:370.978500px;}
.y125{bottom:372.361500px;}
.y19b{bottom:373.021500px;}
.y108{bottom:373.971000px;}
.y1e8{bottom:375.679500px;}
.yef{bottom:376.782000px;}
.y186{bottom:381.127500px;}
.y46{bottom:382.498500px;}
.y6e{bottom:382.698000px;}
.y215{bottom:383.245500px;}
.y145{bottom:383.380500px;}
.y16c{bottom:383.493000px;}
.y93{bottom:384.790500px;}
.yb8{bottom:385.624500px;}
.y1b8{bottom:388.300500px;}
.y1d3{bottom:392.647500px;}
.y19a{bottom:394.689000px;}
.yee{bottom:398.451000px;}
.y144{bottom:400.617000px;}
.y45{bottom:404.167500px;}
.y6d{bottom:404.367000px;}
.y214{bottom:404.914500px;}
.y143{bottom:405.049500px;}
.y124{bottom:405.610500px;}
.y107{bottom:407.221500px;}
.yb7{bottom:407.293500px;}
.yd4{bottom:408.297000px;}
.y1e7{bottom:411.717000px;}
.y1d2{bottom:414.316500px;}
.y185{bottom:414.378000px;}
.y15a{bottom:414.814500px;}
.y16b{bottom:416.743500px;}
.y92{bottom:419.838000px;}
.y1b7{bottom:421.551000px;}
.y29{bottom:423.414000px;}
.y44{bottom:425.835000px;}
.y6c{bottom:426.034500px;}
.y199{bottom:427.939500px;}
.yb6{bottom:428.962500px;}
.yd3{bottom:429.966000px;}
.yed{bottom:431.700000px;}
.y200{bottom:432.012000px;}
.y1d1{bottom:435.984000px;}
.y159{bottom:436.483500px;}
.y142{bottom:438.300000px;}
.y106{bottom:440.472000px;}
.y91{bottom:441.507000px;}
.y213{bottom:441.526500px;}
.y28{bottom:445.083000px;}
.y43{bottom:447.504000px;}
.y184{bottom:447.628500px;}
.y6b{bottom:447.703500px;}
.y1e6{bottom:447.753000px;}
.yb5{bottom:450.631500px;}
.yd2{bottom:451.635000px;}
.y123{bottom:452.373000px;}
.y1d0{bottom:457.653000px;}
.y158{bottom:458.151000px;}
.y198{bottom:461.190000px;}
.y90{bottom:463.176000px;}
.y212{bottom:463.195500px;}
.y16a{bottom:463.506000px;}
.yec{bottom:464.950500px;}
.y1b6{bottom:468.313500px;}
.y42{bottom:469.173000px;}
.y6a{bottom:469.372500px;}
.y1ff{bottom:471.439500px;}
.yb4{bottom:472.299000px;}
.yd1{bottom:473.304000px;}
.y122{bottom:474.042000px;}
.y1cf{bottom:479.322000px;}
.y141{bottom:479.941500px;}
.y1e5{bottom:483.790500px;}
.y140{bottom:484.375500px;}
.y27{bottom:484.684500px;}
.y169{bottom:485.175000px;}
.y1b5{bottom:489.982500px;}
.y41{bottom:490.842000px;}
.y69{bottom:491.041500px;}
.y157{bottom:491.401500px;}
.y105{bottom:492.465000px;}
.yb3{bottom:493.968000px;}
.yd0{bottom:494.971500px;}
.y183{bottom:495.187500px;}
.y121{bottom:495.711000px;}
.y8f{bottom:498.223500px;}
.y182{bottom:499.621500px;}
.y211{bottom:499.807500px;}
.y1ce{bottom:500.991000px;}
.y13f{bottom:501.610500px;}
.y26{bottom:505.008000px;}
.y197{bottom:505.848000px;}
.y13e{bottom:506.044500px;}
.y168{bottom:506.844000px;}
.y40{bottom:512.511000px;}
.y68{bottom:512.710500px;}
.yb2{bottom:515.637000px;}
.yeb{bottom:516.943500px;}
.y1e4{bottom:519.826500px;}
.y8e{bottom:519.892500px;}
.y1cd{bottom:522.660000px;}
.y1b4{bottom:523.233000px;}
.y104{bottom:523.846500px;}
.y25{bottom:525.331500px;}
.y120{bottom:527.092500px;}
.ycf{bottom:528.222000px;}
.y1fe{bottom:531.339000px;}
.y3f{bottom:534.180000px;}
.y67{bottom:534.379500px;}
.y210{bottom:536.421000px;}
.yb1{bottom:537.306000px;}
.y156{bottom:538.164000px;}
.y8d{bottom:541.560000px;}
.y181{bottom:542.958000px;}
.y1cc{bottom:544.329000px;}
.y24{bottom:545.655000px;}
.y13d{bottom:550.411500px;}
.yea{bottom:553.557000px;}
.y167{bottom:553.605000px;}
.y3e{bottom:555.847500px;}
.y1e3{bottom:555.864000px;}
.y66{bottom:556.047000px;}
.y1b3{bottom:556.483500px;}
.y20f{bottom:558.090000px;}
.y13c{bottom:558.279000px;}
.yb0{bottom:558.975000px;}
.y155{bottom:559.833000px;}
.yce{bottom:561.472500px;}
.y13b{bottom:562.711500px;}
.y180{bottom:564.627000px;}
.y196{bottom:565.747500px;}
.y23{bottom:565.978500px;}
.y1cb{bottom:565.996500px;}
.y103{bottom:567.184500px;}
.y11f{bottom:570.430500px;}
.y1fd{bottom:570.766500px;}
.y166{bottom:575.274000px;}
.y8c{bottom:576.394500px;}
.y3d{bottom:577.516500px;}
.y20e{bottom:579.757500px;}
.yaf{bottom:580.644000px;}
.y154{bottom:581.502000px;}
.y22{bottom:586.303500px;}
.y195{bottom:587.416500px;}
.y102{bottom:588.853500px;}
.ye9{bottom:590.169000px;}
.y1e2{bottom:591.900000px;}
.y65{bottom:595.275000px;}
.y3c{bottom:599.185500px;}
.yae{bottom:602.311500px;}
.y1ca{bottom:605.424000px;}
.y21{bottom:606.627000px;}
.y1b2{bottom:608.475000px;}
.y165{bottom:608.524500px;}
.y8b{bottom:609.645000px;}
.y17f{bottom:611.389500px;}
.ycd{bottom:612.814500px;}
.y153{bottom:614.752500px;}
.y13a{bottom:614.850000px;}
.y20d{bottom:616.371000px;}
.y64{bottom:616.944000px;}
.y11e{bottom:617.193000px;}
.y194{bottom:620.667000px;}
.y3b{bottom:620.854500px;}
.yad{bottom:623.980500px;}
.y20{bottom:626.950500px;}
.y1e1{bottom:627.937500px;}
.y1b1{bottom:630.144000px;}
.y1fc{bottom:630.667500px;}
.ycc{bottom:634.482000px;}
.y101{bottom:635.614500px;}
.y139{bottom:636.517500px;}
.ye8{bottom:636.931500px;}
.y63{bottom:638.613000px;}
.y11d{bottom:638.862000px;}
.y164{bottom:641.775000px;}
.y17e{bottom:642.772500px;}
.yac{bottom:645.649500px;}
.y1f{bottom:647.274000px;}
.y152{bottom:648.001500px;}
.y138{bottom:648.817500px;}
.y20c{bottom:652.983000px;}
.y100{bottom:657.283500px;}
.ye7{bottom:658.600500px;}
.y3a{bottom:660.082500px;}
.y62{bottom:660.282000px;}
.y11c{bottom:660.529500px;}
.y8a{bottom:660.829500px;}
.y1b0{bottom:663.394500px;}
.y1e0{bottom:663.973500px;}
.y1c9{bottom:665.325000px;}
.yab{bottom:667.318500px;}
.y193{bottom:667.429500px;}
.y1e{bottom:667.597500px;}
.y1fb{bottom:670.095000px;}
.ycb{bottom:670.536000px;}
.y20b{bottom:674.652000px;}
.yff{bottom:678.952500px;}
.ye6{bottom:680.268000px;}
.y39{bottom:681.751500px;}
.y61{bottom:681.951000px;}
.y11b{bottom:682.198500px;}
.y89{bottom:682.498500px;}
.y17d{bottom:686.109000px;}
.y1c8{bottom:686.994000px;}
.yca{bottom:687.771000px;}
.y1d{bottom:687.921000px;}
.yaa{bottom:688.987500px;}
.y192{bottom:689.098500px;}
.yc9{bottom:692.203500px;}
.y163{bottom:693.768000px;}
.y137{bottom:695.670000px;}
.y151{bottom:699.994500px;}
.y1df{bottom:700.011000px;}
.y38{bottom:703.419000px;}
.y60{bottom:703.618500px;}
.y11a{bottom:703.867500px;}
.y88{bottom:704.166000px;}
.y22a{bottom:707.355000px;}
.y17c{bottom:707.778000px;}
.y1c{bottom:708.246000px;}
.y1af{bottom:710.157000px;}
.ya9{bottom:710.656500px;}
.y20a{bottom:711.265500px;}
.yfe{bottom:712.203000px;}
.ye5{bottom:713.518500px;}
.y162{bottom:715.435500px;}
.y7{bottom:717.600000px;}
.y1c7{bottom:720.244500px;}
.y136{bottom:720.624000px;}
.y150{bottom:721.663500px;}
.y191{bottom:722.349000px;}
.y135{bottom:725.058000px;}
.y37{bottom:725.088000px;}
.y5f{bottom:725.287500px;}
.y87{bottom:725.835000px;}
.yc8{bottom:727.555500px;}
.y1b{bottom:728.569500px;}
.y229{bottom:729.024000px;}
.y1fa{bottom:729.994500px;}
.y1ae{bottom:731.826000px;}
.ya8{bottom:732.324000px;}
.y209{bottom:732.933000px;}
.y1de{bottom:736.047000px;}
.y119{bottom:737.118000px;}
.y17b{bottom:741.028500px;}
.y36{bottom:746.757000px;}
.y86{bottom:747.504000px;}
.y161{bottom:748.686000px;}
.y1a{bottom:748.893000px;}
.yc7{bottom:749.224500px;}
.y228{bottom:750.691500px;}
.y1f9{bottom:751.663500px;}
.ya7{bottom:753.993000px;}
.y14f{bottom:754.914000px;}
.y190{bottom:755.598000px;}
.yfd{bottom:758.965500px;}
.ye4{bottom:760.281000px;}
.y134{bottom:763.962000px;}
.y5e{bottom:764.515500px;}
.y1ad{bottom:765.075000px;}
.y1c6{bottom:767.005500px;}
.y133{bottom:768.394500px;}
.y35{bottom:768.426000px;}
.y85{bottom:769.173000px;}
.y19{bottom:769.216500px;}
.y208{bottom:769.546500px;}
.y118{bottom:770.368500px;}
.y1dd{bottom:772.083000px;}
.ya6{bottom:775.662000px;}
.ye3{bottom:781.950000px;}
.y6{bottom:784.063500px;}
.yc6{bottom:785.277000px;}
.y5d{bottom:786.184500px;}
.y227{bottom:787.305000px;}
.y17a{bottom:787.791000px;}
.y1c5{bottom:788.674500px;}
.y18{bottom:789.540000px;}
.y34{bottom:790.095000px;}
.y84{bottom:790.842000px;}
.y1f8{bottom:791.091000px;}
.y207{bottom:791.215500px;}
.y160{bottom:795.448500px;}
.ya5{bottom:797.331000px;}
.y1ac{bottom:798.325500px;}
.y14e{bottom:801.676500px;}
.yfc{bottom:802.137000px;}
.yc5{bottom:806.946000px;}
.y18f{bottom:807.591000px;}
.y5c{bottom:807.853500px;}
.y1dc{bottom:808.120500px;}
.y226{bottom:808.974000px;}
.y179{bottom:809.458500px;}
.y17{bottom:809.865000px;}
.y33{bottom:811.762500px;}
.y83{bottom:812.511000px;}
.y132{bottom:814.470000px;}
.y1c4{bottom:821.925000px;}
.y117{bottom:822.361500px;}
.y14d{bottom:823.344000px;}
.y5{bottom:825.973500px;}
.y206{bottom:827.827500px;}
.ye2{bottom:828.712500px;}
.y18e{bottom:829.260000px;}
.y5b{bottom:829.521000px;}
.yfb{bottom:829.633500px;}
.y16{bottom:830.188500px;}
.ya4{bottom:830.581500px;}
.y225{bottom:830.643000px;}
.y15f{bottom:831.217500px;}
.y32{bottom:833.431500px;}
.y82{bottom:834.178500px;}
.yc4{bottom:840.196500px;}
.y178{bottom:840.841500px;}
.y15e{bottom:843.519000px;}
.y131{bottom:843.858000px;}
.y116{bottom:844.029000px;}
.y1db{bottom:844.156500px;}
.y205{bottom:849.496500px;}
.y1ab{bottom:850.318500px;}
.ye1{bottom:850.380000px;}
.y15{bottom:850.512000px;}
.y1f7{bottom:850.990500px;}
.y5a{bottom:851.190000px;}
.y14c{bottom:854.727000px;}
.y31{bottom:855.100500px;}
.y81{bottom:855.847500px;}
.y177{bottom:862.510500px;}
.y115{bottom:865.698000px;}
.y224{bottom:867.255000px;}
.y1c3{bottom:868.687500px;}
.y14{bottom:870.835500px;}
.y204{bottom:871.165500px;}
.y1aa{bottom:871.987500px;}
.ye0{bottom:872.049000px;}
.y1f6{bottom:872.659500px;}
.y59{bottom:872.859000px;}
.yfa{bottom:876.396000px;}
.y30{bottom:876.769500px;}
.y80{bottom:877.516500px;}
.y4{bottom:879.210000px;}
.y1da{bottom:880.194000px;}
.ya3{bottom:882.496500px;}
.yc3{bottom:886.308000px;}
.y130{bottom:887.196000px;}
.y223{bottom:888.924000px;}
.y1c2{bottom:890.356500px;}
.y13{bottom:891.159000px;}
.y1a9{bottom:893.656500px;}
.y1f5{bottom:894.328500px;}
.y58{bottom:894.528000px;}
.yf9{bottom:898.065000px;}
.y2f{bottom:898.438500px;}
.y114{bottom:898.948500px;}
.y7f{bottom:899.185500px;}
.ya2{bottom:904.165500px;}
.ydf{bottom:905.299500px;}
.y203{bottom:907.777500px;}
.y176{bottom:909.273000px;}
.y12{bottom:911.484000px;}
.y1f4{bottom:915.997500px;}
.y57{bottom:916.197000px;}
.y1d9{bottom:916.230000px;}
.y3{bottom:916.570500px;}
.yf8{bottom:919.732500px;}
.y2e{bottom:920.107500px;}
.y7e{bottom:920.854500px;}
.yc2{bottom:921.660000px;}
.y1c1{bottom:923.605500px;}
.y222{bottom:925.536000px;}
.y202{bottom:929.446500px;}
.y175{bottom:930.940500px;}
.y11{bottom:931.807500px;}
.y12f{bottom:933.271500px;}
.y1f3{bottom:937.666500px;}
.yde{bottom:938.550000px;}
.y1a8{bottom:940.417500px;}
.ya1{bottom:940.629000px;}
.y7d{bottom:942.522000px;}
.y221{bottom:947.205000px;}
.y10{bottom:952.131000px;}
.y1d8{bottom:952.267500px;}
.y174{bottom:952.609500px;}
.yf7{bottom:952.983000px;}
.y2{bottom:953.931000px;}
.y56{bottom:955.425000px;}
.y1c0{bottom:956.856000px;}
.yc1{bottom:957.012000px;}
.y2d{bottom:959.334000px;}
.y12e{bottom:961.078500px;}
.y1a7{bottom:962.086500px;}
.ya0{bottom:962.298000px;}
.y7c{bottom:964.191000px;}
.y12d{bottom:965.511000px;}
.y201{bottom:966.060000px;}
.y113{bottom:967.380000px;}
.yf{bottom:972.454500px;}
.y55{bottom:977.092500px;}
.y2c{bottom:981.003000px;}
.y220{bottom:983.818500px;}
.y9f{bottom:983.967000px;}
.y7b{bottom:985.860000px;}
.yf6{bottom:986.233500px;}
.y1d7{bottom:988.303500px;}
.y112{bottom:989.047500px;}
.ydd{bottom:990.543000px;}
.y1{bottom:991.290000px;}
.yc0{bottom:992.364000px;}
.ye{bottom:992.778000px;}
.y54{bottom:998.761500px;}
.y2b{bottom:1002.672000px;}
.y21f{bottom:1005.486000px;}
.y12c{bottom:1008.849000px;}
.yd{bottom:1013.103000px;}
.y7a{bottom:1019.110500px;}
.y53{bottom:1020.430500px;}
.y2a{bottom:1024.341000px;}
.ydc{bottom:1027.155000px;}
.ybf{bottom:1027.714500px;}
.y12b{bottom:1030.518000px;}
.yf5{bottom:1030.891500px;}
.yc{bottom:1033.426500px;}
.y52{bottom:1042.099500px;}
.yb{bottom:1063.768500px;}
.y9{bottom:1164.157650px;}
.h7{height:36.468750px;}
.h4{height:44.831700px;}
.h9{height:45.687311px;}
.h8{height:46.201172px;}
.h2{height:49.090950px;}
.h10{height:51.216077px;}
.h6{height:53.798400px;}
.h1d{height:59.119855px;}
.hd{height:59.125855px;}
.hc{height:59.693702px;}
.hb{height:59.699702px;}
.h20{height:60.655248px;}
.h17{height:62.707855px;}
.h11{height:63.281702px;}
.h12{height:63.287702px;}
.h5{height:64.557900px;}
.h16{height:71.528400px;}
.h18{height:71.534400px;}
.h3{height:76.067700px;}
.he{height:77.429702px;}
.ha{height:77.469300px;}
.h22{height:78.703248px;}
.h14{height:80.443855px;}
.h21{height:81.011702px;}
.h13{height:81.017702px;}
.h1{height:92.981250px;}
.h19{height:102.326400px;}
.h1a{height:102.998400px;}
.hf{height:104.011248px;}
.h15{height:113.132400px;}
.h1b{height:121.741248px;}
.h1e{height:153.217248px;}
.h1c{height:167.951702px;}
.h1f{height:174.733248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:11.957910px;}
.xa{left:15.000000px;}
.xe{left:106.299000px;}
.x36{left:115.078500px;}
.x25{left:119.461500px;}
.x10{left:123.858000px;}
.xd{left:132.637500px;}
.x11{left:137.223000px;}
.x35{left:138.436500px;}
.x37{left:142.392000px;}
.xc{left:150.196500px;}
.xf{left:173.023500px;}
.x1{left:175.536000px;}
.x2{left:189.276000px;}
.x33{left:195.349500px;}
.x28{left:206.730000px;}
.x15{left:258.739500px;}
.x4{left:262.977000px;}
.x2f{left:274.807500px;}
.x6{left:291.139500px;}
.x29{left:305.595000px;}
.x1d{left:342.262500px;}
.x1e{left:345.609000px;}
.x19{left:347.415000px;}
.x2b{left:352.687500px;}
.x27{left:355.918500px;}
.x1f{left:358.771500px;}
.x13{left:363.282000px;}
.x2c{left:367.677000px;}
.x3{left:370.056000px;}
.x7{left:377.206500px;}
.x2d{left:383.452500px;}
.x14{left:387.781500px;}
.x12{left:390.600000px;}
.x22{left:393.550500px;}
.x16{left:397.191000px;}
.x5{left:398.416500px;}
.x21{left:400.386000px;}
.x1a{left:406.905000px;}
.x30{left:411.040500px;}
.x18{left:420.844500px;}
.xb{left:422.998500px;}
.x2e{left:447.711000px;}
.x17{left:450.220500px;}
.x8{left:454.609500px;}
.x31{left:465.778500px;}
.x1b{left:467.163000px;}
.x2a{left:469.956000px;}
.x24{left:475.993500px;}
.x32{left:495.457500px;}
.x20{left:516.180000px;}
.x26{left:527.385000px;}
.x1c{left:533.830500px;}
.x23{left:534.931500px;}
.x34{left:547.060500px;}
@media print{
.v13{vertical-align:-144.346667pt;}
.vb{vertical-align:-57.562667pt;}
.v19{vertical-align:-51.648000pt;}
.v2{vertical-align:-27.765333pt;}
.vf{vertical-align:-26.325333pt;}
.v7{vertical-align:-23.141333pt;}
.v17{vertical-align:-22.138667pt;}
.v15{vertical-align:-19.125333pt;}
.v4{vertical-align:-9.562667pt;}
.v12{vertical-align:-3.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.197333pt;}
.v5{vertical-align:15.760000pt;}
.v3{vertical-align:23.141333pt;}
.vc{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:38.901333pt;}
.vd{vertical-align:42.090667pt;}
.v10{vertical-align:43.136000pt;}
.v16{vertical-align:51.365333pt;}
.ve{vertical-align:52.741333pt;}
.v18{vertical-align:67.408000pt;}
.v11{vertical-align:75.632000pt;}
.va{vertical-align:86.784000pt;}
.v9{vertical-align:89.904000pt;}
.v14{vertical-align:109.029333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.000437pt;}
.ls60{letter-spacing:0.000676pt;}
.ls39{letter-spacing:0.000884pt;}
.ls3c{letter-spacing:0.001036pt;}
.ls7d{letter-spacing:0.001145pt;}
.ls73{letter-spacing:0.001309pt;}
.ls7c{letter-spacing:0.001396pt;}
.lsb3{letter-spacing:0.001980pt;}
.ls6{letter-spacing:0.002452pt;}
.lsf{letter-spacing:0.002717pt;}
.lsd4{letter-spacing:0.002836pt;}
.ls57{letter-spacing:0.003328pt;}
.lse1{letter-spacing:0.003461pt;}
.lsa9{letter-spacing:0.003903pt;}
.lsc8{letter-spacing:0.004024pt;}
.ls59{letter-spacing:0.004145pt;}
.lsa0{letter-spacing:0.004710pt;}
.ls99{letter-spacing:0.004966pt;}
.ls43{letter-spacing:0.005770pt;}
.ls11{letter-spacing:0.006009pt;}
.lsdd{letter-spacing:0.406941pt;}
.ls1f{letter-spacing:0.526877pt;}
.lsdf{letter-spacing:1.730253pt;}
.lsbc{letter-spacing:1.732492pt;}
.lsb7{letter-spacing:1.737825pt;}
.ls7e{letter-spacing:2.283769pt;}
.ls5f{letter-spacing:2.284372pt;}
.ls2c{letter-spacing:2.287544pt;}
.lse{letter-spacing:2.288437pt;}
.ls22{letter-spacing:2.289103pt;}
.lsa2{letter-spacing:2.292966pt;}
.ls10{letter-spacing:2.653258pt;}
.lsa4{letter-spacing:2.653383pt;}
.lse3{letter-spacing:2.653534pt;}
.lsd5{letter-spacing:2.654270pt;}
.ls44{letter-spacing:2.654275pt;}
.ls4c{letter-spacing:2.656444pt;}
.ls52{letter-spacing:2.658591pt;}
.ls9e{letter-spacing:2.658731pt;}
.ls28{letter-spacing:2.659149pt;}
.lsde{letter-spacing:2.659603pt;}
.ls0{letter-spacing:2.659733pt;}
.ls1e{letter-spacing:3.076058pt;}
.ls4f{letter-spacing:3.466421pt;}
.ls6d{letter-spacing:3.471754pt;}
.ls8a{letter-spacing:3.709752pt;}
.ls8d{letter-spacing:3.715086pt;}
.ls20{letter-spacing:4.273693pt;}
.ls84{letter-spacing:4.921313pt;}
.ls85{letter-spacing:4.926647pt;}
.ls4e{letter-spacing:5.162476pt;}
.lsdc{letter-spacing:5.242469pt;}
.lse2{letter-spacing:5.968933pt;}
.ls41{letter-spacing:6.334921pt;}
.lsb5{letter-spacing:6.377479pt;}
.lsc{letter-spacing:6.655142pt;}
.ls16{letter-spacing:6.655614pt;}
.ls36{letter-spacing:6.660224pt;}
.ls7{letter-spacing:6.660475pt;}
.ls15{letter-spacing:6.660948pt;}
.lsc2{letter-spacing:6.900210pt;}
.lsbf{letter-spacing:8.669937pt;}
.ls5{letter-spacing:8.672391pt;}
.ls1d{letter-spacing:8.929817pt;}
.lsa1{letter-spacing:10.610731pt;}
.lsad{letter-spacing:10.616064pt;}
.ls29{letter-spacing:10.624990pt;}
.ls91{letter-spacing:10.626452pt;}
.lsd6{letter-spacing:10.626836pt;}
.ls5c{letter-spacing:10.628145pt;}
.ls5a{letter-spacing:10.629137pt;}
.ls34{letter-spacing:12.667976pt;}
.lsc3{letter-spacing:13.548405pt;}
.ls75{letter-spacing:13.871850pt;}
.ls7b{letter-spacing:13.877183pt;}
.ls3f{letter-spacing:14.154957pt;}
.ls3d{letter-spacing:14.164122pt;}
.ls2f{letter-spacing:14.164905pt;}
.lsc6{letter-spacing:14.165697pt;}
.lsb2{letter-spacing:14.166642pt;}
.ls31{letter-spacing:14.167830pt;}
.lsc4{letter-spacing:14.169479pt;}
.ls3e{letter-spacing:14.170238pt;}
.lsa8{letter-spacing:14.171976pt;}
.ls83{letter-spacing:14.969619pt;}
.ls35{letter-spacing:15.326964pt;}
.ls4a{letter-spacing:15.390952pt;}
.ls5b{letter-spacing:15.791809pt;}
.ls58{letter-spacing:15.866469pt;}
.ls55{letter-spacing:16.084285pt;}
.lsdb{letter-spacing:16.452878pt;}
.ls30{letter-spacing:16.458211pt;}
.ls1c{letter-spacing:16.459551pt;}
.lsa7{letter-spacing:16.818591pt;}
.ls9f{letter-spacing:16.823925pt;}
.lsa3{letter-spacing:16.824050pt;}
.ls4{letter-spacing:17.140710pt;}
.ls1b{letter-spacing:17.703830pt;}
.ls6b{letter-spacing:17.705619pt;}
.ls82{letter-spacing:17.705887pt;}
.ls2e{letter-spacing:17.706238pt;}
.ls4d{letter-spacing:17.707343pt;}
.ls45{letter-spacing:17.707657pt;}
.lsc1{letter-spacing:17.707976pt;}
.ls7a{letter-spacing:17.708063pt;}
.ls54{letter-spacing:17.709119pt;}
.ls13{letter-spacing:17.709164pt;}
.ls53{letter-spacing:17.709995pt;}
.lsb{letter-spacing:17.710933pt;}
.ls6c{letter-spacing:17.711176pt;}
.ls6a{letter-spacing:17.711220pt;}
.ls32{letter-spacing:17.711572pt;}
.ls2d{letter-spacing:17.711829pt;}
.ls12{letter-spacing:17.712676pt;}
.ls9{letter-spacing:17.712990pt;}
.ls46{letter-spacing:17.713309pt;}
.ls77{letter-spacing:17.713396pt;}
.lsc0{letter-spacing:17.714452pt;}
.ls47{letter-spacing:18.053777pt;}
.ls33{letter-spacing:18.326631pt;}
.lsd8{letter-spacing:19.283603pt;}
.lsda{letter-spacing:19.378868pt;}
.ls61{letter-spacing:19.396210pt;}
.lsbd{letter-spacing:19.456990pt;}
.ls74{letter-spacing:19.981622pt;}
.ls49{letter-spacing:19.995769pt;}
.ls8{letter-spacing:20.000437pt;}
.ls94{letter-spacing:20.351159pt;}
.lsa6{letter-spacing:20.365383pt;}
.ls9d{letter-spacing:20.365398pt;}
.lsd3{letter-spacing:20.366270pt;}
.lsb4{letter-spacing:20.366275pt;}
.lscc{letter-spacing:20.366641pt;}
.lsaf{letter-spacing:20.370591pt;}
.ls9c{letter-spacing:20.392064pt;}
.lsd{letter-spacing:20.436285pt;}
.ls2b{letter-spacing:20.453163pt;}
.lse0{letter-spacing:20.530731pt;}
.ls1a{letter-spacing:20.793392pt;}
.ls56{letter-spacing:20.804285pt;}
.ls6e{letter-spacing:20.804553pt;}
.lsac{letter-spacing:20.807711pt;}
.lsc9{letter-spacing:20.809455pt;}
.ls80{letter-spacing:20.811812pt;}
.ls8c{letter-spacing:20.918642pt;}
.ls93{letter-spacing:21.271925pt;}
.ls66{letter-spacing:21.510323pt;}
.ls67{letter-spacing:21.511786pt;}
.ls68{letter-spacing:21.513600pt;}
.ls65{letter-spacing:21.517995pt;}
.ls48{letter-spacing:22.057808pt;}
.ls5e{letter-spacing:22.186421pt;}
.lsce{letter-spacing:22.543159pt;}
.ls69{letter-spacing:22.633313pt;}
.ls2a{letter-spacing:22.735544pt;}
.ls9a{letter-spacing:23.083657pt;}
.lsab{letter-spacing:23.101800pt;}
.lscf{letter-spacing:23.279159pt;}
.ls4b{letter-spacing:23.360676pt;}
.lsd2{letter-spacing:23.464936pt;}
.ls8f{letter-spacing:23.469258pt;}
.lsba{letter-spacing:23.469398pt;}
.ls42{letter-spacing:23.535142pt;}
.ls8b{letter-spacing:23.570591pt;}
.ls50{letter-spacing:23.652475pt;}
.ls38{letter-spacing:23.758788pt;}
.ls3b{letter-spacing:24.046921pt;}
.lsb0{letter-spacing:24.084905pt;}
.ls62{letter-spacing:24.282421pt;}
.ls78{letter-spacing:24.367142pt;}
.ls90{letter-spacing:24.372224pt;}
.ls79{letter-spacing:24.548646pt;}
.ls86{letter-spacing:24.704391pt;}
.lsd1{letter-spacing:24.761825pt;}
.ls19{letter-spacing:25.388483pt;}
.ls23{letter-spacing:25.561455pt;}
.ls71{letter-spacing:25.599572pt;}
.ls25{letter-spacing:25.794497pt;}
.ls21{letter-spacing:25.796122pt;}
.lsd9{letter-spacing:25.821595pt;}
.ls72{letter-spacing:25.995057pt;}
.lsa{letter-spacing:26.384391pt;}
.lsd0{letter-spacing:26.660492pt;}
.ls3a{letter-spacing:27.145588pt;}
.lsb9{letter-spacing:27.320064pt;}
.ls14{letter-spacing:27.465808pt;}
.ls9b{letter-spacing:27.550647pt;}
.ls18{letter-spacing:27.614788pt;}
.ls17{letter-spacing:27.615377pt;}
.ls27{letter-spacing:27.846436pt;}
.ls24{letter-spacing:28.086436pt;}
.ls98{letter-spacing:29.289557pt;}
.ls70{letter-spacing:29.337979pt;}
.ls64{letter-spacing:29.705808pt;}
.ls26{letter-spacing:29.745693pt;}
.ls3{letter-spacing:31.214582pt;}
.ls2{letter-spacing:31.880533pt;}
.ls96{letter-spacing:31.889309pt;}
.ls37{letter-spacing:32.768066pt;}
.ls8e{letter-spacing:33.373258pt;}
.ls87{letter-spacing:34.580285pt;}
.ls88{letter-spacing:34.580905pt;}
.ls97{letter-spacing:35.801557pt;}
.lsbb{letter-spacing:36.184064pt;}
.ls95{letter-spacing:36.819980pt;}
.ls76{letter-spacing:39.322516pt;}
.ls89{letter-spacing:41.236475pt;}
.lsb6{letter-spacing:52.397044pt;}
.lsb1{letter-spacing:52.402377pt;}
.lsc5{letter-spacing:107.217309pt;}
.lsc7{letter-spacing:246.091657pt;}
.ls6f{letter-spacing:462.235657pt;}
.lsaa{letter-spacing:727.990323pt;}
.lsae{letter-spacing:739.883657pt;}
.lsca{letter-spacing:765.056990pt;}
.lsbe{letter-spacing:776.544990pt;}
.lsa5{letter-spacing:777.526323pt;}
.lscb{letter-spacing:818.352990pt;}
.ls81{letter-spacing:832.832990pt;}
.ls5d{letter-spacing:833.942323pt;}
.lsb8{letter-spacing:855.734323pt;}
.lscd{letter-spacing:874.438323pt;}
.ls63{letter-spacing:921.051657pt;}
.lsd7{letter-spacing:921.622323pt;}
.ls40{letter-spacing:931.072990pt;}
.ls7f{letter-spacing:951.942323pt;}
.ls92{letter-spacing:960.054323pt;}
.ws7b{word-spacing:-77.916023pt;}
.ws67{word-spacing:-63.761067pt;}
.ws8d{word-spacing:-50.479636pt;}
.wsd0{word-spacing:-42.489308pt;}
.ws5e{word-spacing:-40.590295pt;}
.ws1{word-spacing:-34.437500pt;}
.ws5a{word-spacing:-29.942197pt;}
.wsbc{word-spacing:-29.521250pt;}
.ws1f{word-spacing:-28.692333pt;}
.wsfb{word-spacing:-24.136381pt;}
.ws76{word-spacing:-24.131048pt;}
.ws53{word-spacing:-17.343010pt;}
.ws22{word-spacing:-17.279249pt;}
.wsb4{word-spacing:-16.218851pt;}
.ws1a{word-spacing:-16.162923pt;}
.ws99{word-spacing:-15.940267pt;}
.ws77{word-spacing:-12.543875pt;}
.ws24{word-spacing:-9.691682pt;}
.wsac{word-spacing:-6.758673pt;}
.wsfc{word-spacing:-6.752079pt;}
.wscf{word-spacing:-6.743921pt;}
.ws8c{word-spacing:-6.724233pt;}
.wsce{word-spacing:-6.718404pt;}
.wsc7{word-spacing:-5.738467pt;}
.wscd{word-spacing:-3.188053pt;}
.ws3f{word-spacing:-3.124292pt;}
.ws14{word-spacing:-2.897457pt;}
.ws100{word-spacing:-2.677965pt;}
.wsa1{word-spacing:-2.422921pt;}
.ws9f{word-spacing:-2.377027pt;}
.wsa0{word-spacing:-2.359159pt;}
.ws105{word-spacing:-2.343226pt;}
.ws82{word-spacing:-1.976593pt;}
.ws80{word-spacing:-1.952340pt;}
.wsf9{word-spacing:-1.912832pt;}
.ws85{word-spacing:-1.785310pt;}
.ws4f{word-spacing:-1.466505pt;}
.wsa3{word-spacing:-1.338982pt;}
.wsa2{word-spacing:-1.321883pt;}
.ws70{word-spacing:-1.275221pt;}
.ws8a{word-spacing:-1.211460pt;}
.ws4d{word-spacing:-1.083938pt;}
.wsd1{word-spacing:-0.956416pt;}
.ws65{word-spacing:-0.892655pt;}
.ws39{word-spacing:-0.733252pt;}
.wse5{word-spacing:-0.722703pt;}
.wse6{word-spacing:-0.701372pt;}
.wsc0{word-spacing:-0.669491pt;}
.wsbe{word-spacing:-0.664704pt;}
.ws3a{word-spacing:-0.637611pt;}
.wsea{word-spacing:-0.620469pt;}
.wseb{word-spacing:-0.619073pt;}
.wsc1{word-spacing:-0.573850pt;}
.ws7c{word-spacing:-0.446327pt;}
.ws95{word-spacing:-0.414447pt;}
.ws88{word-spacing:-0.382566pt;}
.ws89{word-spacing:-0.363863pt;}
.ws96{word-spacing:-0.333061pt;}
.ws97{word-spacing:-0.318805pt;}
.ws71{word-spacing:-0.255044pt;}
.ws5b{word-spacing:-0.191283pt;}
.ws3b{word-spacing:-0.127522pt;}
.wsa8{word-spacing:-0.063761pt;}
.ws6a{word-spacing:-0.042507pt;}
.ws66{word-spacing:-0.016901pt;}
.ws5{word-spacing:0.000000pt;}
.ws47{word-spacing:0.127522pt;}
.ws103{word-spacing:0.255044pt;}
.wsda{word-spacing:0.345397pt;}
.ws93{word-spacing:0.346771pt;}
.wsba{word-spacing:0.352104pt;}
.ws8b{word-spacing:0.353094pt;}
.wse{word-spacing:0.360728pt;}
.ws68{word-spacing:0.382566pt;}
.wsb8{word-spacing:0.478208pt;}
.ws84{word-spacing:0.701372pt;}
.ws1e{word-spacing:0.828894pt;}
.ws56{word-spacing:0.892655pt;}
.ws106{word-spacing:1.020177pt;}
.ws33{word-spacing:1.083938pt;}
.ws6{word-spacing:1.175274pt;}
.wsf7{word-spacing:1.211460pt;}
.wsaf{word-spacing:1.252782pt;}
.wsad{word-spacing:1.266630pt;}
.wsae{word-spacing:1.275221pt;}
.ws8e{word-spacing:1.338982pt;}
.ws81{word-spacing:1.402743pt;}
.ws1b{word-spacing:1.466183pt;}
.ws91{word-spacing:1.530260pt;}
.ws2a{word-spacing:1.530266pt;}
.ws4a{word-spacing:1.657788pt;}
.wsc3{word-spacing:1.721549pt;}
.ws90{word-spacing:1.753429pt;}
.wsc4{word-spacing:1.773396pt;}
.wsc5{word-spacing:1.785310pt;}
.ws2e{word-spacing:1.849071pt;}
.wsc2{word-spacing:1.912832pt;}
.wsf{word-spacing:1.931638pt;}
.ws50{word-spacing:1.976593pt;}
.ws25{word-spacing:2.008474pt;}
.ws4e{word-spacing:2.040354pt;}
.ws6f{word-spacing:2.167876pt;}
.ws6e{word-spacing:2.231637pt;}
.wsf5{word-spacing:2.295398pt;}
.ws10{word-spacing:2.338911pt;}
.wscc{word-spacing:2.341294pt;}
.wsfa{word-spacing:2.422921pt;}
.ws7{word-spacing:2.455275pt;}
.ws7d{word-spacing:2.486682pt;}
.wsdd{word-spacing:2.614204pt;}
.ws101{word-spacing:2.677965pt;}
.ws78{word-spacing:2.727963pt;}
.ws42{word-spacing:2.741726pt;}
.ws59{word-spacing:2.996770pt;}
.ws5d{word-spacing:3.060531pt;}
.ws5c{word-spacing:3.087188pt;}
.ws74{word-spacing:3.098482pt;}
.ws75{word-spacing:3.124292pt;}
.ws52{word-spacing:3.188053pt;}
.ws2{word-spacing:3.211639pt;}
.ws31{word-spacing:3.251814pt;}
.ws104{word-spacing:3.379337pt;}
.ws60{word-spacing:3.433486pt;}
.ws9e{word-spacing:3.434941pt;}
.ws111{word-spacing:3.437259pt;}
.ws94{word-spacing:3.438345pt;}
.ws10d{word-spacing:3.440058pt;}
.ws118{word-spacing:3.440949pt;}
.ws2c{word-spacing:3.443098pt;}
.ws19{word-spacing:3.444367pt;}
.wsbb{word-spacing:3.452995pt;}
.ws92{word-spacing:3.457212pt;}
.ws9c{word-spacing:3.458150pt;}
.wsb9{word-spacing:3.458630pt;}
.ws9d{word-spacing:3.463380pt;}
.wse7{word-spacing:3.463439pt;}
.ws115{word-spacing:3.463941pt;}
.ws7f{word-spacing:3.465293pt;}
.ws61{word-spacing:3.465766pt;}
.ws38{word-spacing:3.506859pt;}
.wsf3{word-spacing:3.570620pt;}
.ws86{word-spacing:3.761903pt;}
.wsd2{word-spacing:3.825664pt;}
.wsd4{word-spacing:3.889425pt;}
.wsef{word-spacing:3.953186pt;}
.ws23{word-spacing:3.985067pt;}
.ws112{word-spacing:3.987748pt;}
.ws114{word-spacing:4.016947pt;}
.ws2b{word-spacing:4.080708pt;}
.wsb{word-spacing:4.084367pt;}
.ws4{word-spacing:4.131706pt;}
.ws3{word-spacing:4.208219pt;}
.wse0{word-spacing:4.208230pt;}
.ws11a{word-spacing:4.335753pt;}
.wsf8{word-spacing:4.463275pt;}
.wsee{word-spacing:4.495155pt;}
.wsc{word-spacing:4.549822pt;}
.wsd9{word-spacing:4.590797pt;}
.ws1d{word-spacing:4.654558pt;}
.ws27{word-spacing:4.782067pt;}
.wse2{word-spacing:4.782080pt;}
.wsff{word-spacing:4.845841pt;}
.ws2d{word-spacing:4.909602pt;}
.wsf1{word-spacing:4.973363pt;}
.ws10f{word-spacing:5.037124pt;}
.ws10a{word-spacing:5.100885pt;}
.wsb6{word-spacing:5.276307pt;}
.ws32{word-spacing:5.292169pt;}
.ws110{word-spacing:5.419691pt;}
.ws15{word-spacing:5.538914pt;}
.ws55{word-spacing:5.547213pt;}
.ws98{word-spacing:5.674735pt;}
.wsf0{word-spacing:5.706615pt;}
.ws58{word-spacing:5.738467pt;}
.ws3d{word-spacing:5.738496pt;}
.ws18{word-spacing:5.888005pt;}
.ws28{word-spacing:5.929779pt;}
.ws36{word-spacing:5.993540pt;}
.ws54{word-spacing:6.057301pt;}
.wsdb{word-spacing:6.061297pt;}
.ws49{word-spacing:6.184823pt;}
.ws119{word-spacing:6.312346pt;}
.ws7a{word-spacing:6.376107pt;}
.ws3c{word-spacing:6.535509pt;}
.wsf2{word-spacing:6.567390pt;}
.wsd8{word-spacing:6.631151pt;}
.ws17{word-spacing:6.644369pt;}
.ws7e{word-spacing:6.790554pt;}
.ws113{word-spacing:6.886195pt;}
.ws0{word-spacing:6.887500pt;}
.ws35{word-spacing:6.918076pt;}
.ws8f{word-spacing:7.013717pt;}
.ws48{word-spacing:7.109359pt;}
.ws107{word-spacing:7.141239pt;}
.ws12{word-spacing:7.168006pt;}
.ws41{word-spacing:7.205001pt;}
.ws3e{word-spacing:7.236881pt;}
.ws13{word-spacing:7.284370pt;}
.wsed{word-spacing:7.396284pt;}
.ws57{word-spacing:7.523806pt;}
.wse1{word-spacing:7.587567pt;}
.wsb0{word-spacing:7.715089pt;}
.ws11f{word-spacing:7.778850pt;}
.ws79{word-spacing:7.824870pt;}
.wse3{word-spacing:7.842611pt;}
.ws72{word-spacing:7.896649pt;}
.ws73{word-spacing:7.906372pt;}
.wsc8{word-spacing:7.970133pt;}
.wsd7{word-spacing:8.033894pt;}
.ws9a{word-spacing:8.097655pt;}
.ws9b{word-spacing:8.108588pt;}
.ws6b{word-spacing:8.205087pt;}
.ws6d{word-spacing:8.225178pt;}
.ws6c{word-spacing:8.247733pt;}
.ws30{word-spacing:8.288939pt;}
.ws40{word-spacing:8.320819pt;}
.ws44{word-spacing:8.352700pt;}
.ws16{word-spacing:8.389825pt;}
.wse9{word-spacing:8.416461pt;}
.ws69{word-spacing:8.480222pt;}
.wsec{word-spacing:8.512102pt;}
.wsaa{word-spacing:8.735266pt;}
.ws11b{word-spacing:8.799027pt;}
.wsab{word-spacing:8.862788pt;}
.ws11e{word-spacing:8.990310pt;}
.wsc9{word-spacing:9.054071pt;}
.ws51{word-spacing:9.117833pt;}
.ws123{word-spacing:9.245355pt;}
.wsa5{word-spacing:9.372877pt;}
.ws10b{word-spacing:9.436638pt;}
.wsd{word-spacing:9.437099pt;}
.wsbf{word-spacing:9.468518pt;}
.wsc6{word-spacing:9.500399pt;}
.wsd6{word-spacing:9.691682pt;}
.ws1c{word-spacing:10.241797pt;}
.ws63{word-spacing:10.265532pt;}
.ws64{word-spacing:10.273551pt;}
.ws102{word-spacing:10.393054pt;}
.wsd3{word-spacing:10.424934pt;}
.ws10e{word-spacing:10.456815pt;}
.ws29{word-spacing:10.584337pt;}
.ws121{word-spacing:10.711859pt;}
.wsa{word-spacing:10.717100pt;}
.ws10c{word-spacing:10.775620pt;}
.wsa4{word-spacing:10.807501pt;}
.wsfd{word-spacing:10.966903pt;}
.ws124{word-spacing:11.030665pt;}
.wsf6{word-spacing:11.285709pt;}
.ws46{word-spacing:11.413231pt;}
.ws37{word-spacing:11.732036pt;}
.wsb2{word-spacing:11.785197pt;}
.wsb3{word-spacing:11.795797pt;}
.wsca{word-spacing:11.859558pt;}
.ws4c{word-spacing:12.050842pt;}
.ws11c{word-spacing:12.178364pt;}
.ws11{word-spacing:12.462556pt;}
.wsf4{word-spacing:12.560930pt;}
.ws122{word-spacing:12.879735pt;}
.ws45{word-spacing:13.102899pt;}
.ws8{word-spacing:13.160738pt;}
.ws125{word-spacing:13.326063pt;}
.wsa6{word-spacing:13.369899pt;}
.wsa9{word-spacing:13.387745pt;}
.wsa7{word-spacing:13.389824pt;}
.ws116{word-spacing:13.453585pt;}
.wsfe{word-spacing:13.772390pt;}
.ws2f{word-spacing:13.836151pt;}
.ws9{word-spacing:13.858921pt;}
.ws4b{word-spacing:13.868032pt;}
.ws83{word-spacing:13.899913pt;}
.ws120{word-spacing:14.282479pt;}
.ws11d{word-spacing:14.346240pt;}
.ws21{word-spacing:14.537523pt;}
.ws87{word-spacing:15.379091pt;}
.ws117{word-spacing:15.557700pt;}
.ws108{word-spacing:15.876506pt;}
.ws43{word-spacing:15.908386pt;}
.wsdf{word-spacing:16.004028pt;}
.ws62{word-spacing:16.442240pt;}
.ws109{word-spacing:17.789338pt;}
.wsde{word-spacing:18.458829pt;}
.ws20{word-spacing:37.842193pt;}
.wsd5{word-spacing:42.487318pt;}
.wse4{word-spacing:42.502543pt;}
.wse8{word-spacing:42.502762pt;}
.wsdc{word-spacing:42.503357pt;}
.wsb7{word-spacing:42.504905pt;}
.wsb1{word-spacing:42.505073pt;}
.ws5f{word-spacing:42.509372pt;}
.wscb{word-spacing:51.805867pt;}
.ws34{word-spacing:62.166867pt;}
.ws26{word-spacing:74.600067pt;}
.wsbd{word-spacing:894.072305pt;}
.wsb5{word-spacing:998.046988pt;}
._16{margin-left:-33.602082pt;}
._14{margin-left:-31.880533pt;}
._46{margin-left:-30.547870pt;}
._15{margin-left:-28.437436pt;}
._18{margin-left:-15.940267pt;}
._1f{margin-left:-13.487839pt;}
._1{margin-left:-10.358800pt;}
._40{margin-left:-8.630654pt;}
._42{margin-left:-7.192228pt;}
._6{margin-left:-6.274071pt;}
._4{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-1.629092pt;}
._5{width:1.687274pt;}
._2f{width:2.579950pt;}
._2{width:3.526400pt;}
._3c{width:4.820323pt;}
._39{width:6.736348pt;}
._3b{width:8.480222pt;}
._45{width:10.314622pt;}
._41{width:11.347288pt;}
._b{width:14.370921pt;}
._1d{width:16.896683pt;}
._33{width:18.008525pt;}
._e{width:19.192081pt;}
._11{width:20.693651pt;}
._21{width:21.881204pt;}
._26{width:23.550159pt;}
._9{width:25.483658pt;}
._3a{width:27.098453pt;}
._c{width:28.683660pt;}
._1c{width:30.755159pt;}
._3d{width:31.898478pt;}
._2c{width:33.030030pt;}
._3e{width:34.059515pt;}
._d{width:36.072757pt;}
._25{width:37.450071pt;}
._43{width:38.447923pt;}
._36{width:39.468100pt;}
._1b{width:41.274945pt;}
._20{width:42.737443pt;}
._8{width:44.450946pt;}
._12{width:46.802421pt;}
._1e{width:48.434503pt;}
._2d{width:49.727262pt;}
._a{width:53.685333pt;}
._24{width:54.869583pt;}
._7{width:57.774594pt;}
._32{width:59.772815pt;}
._2b{width:61.458507pt;}
._28{width:62.444410pt;}
._10{width:63.824828pt;}
._27{width:67.361194pt;}
._1a{width:71.412395pt;}
._38{width:86.077200pt;}
._44{width:91.264316pt;}
._17{width:98.290078pt;}
._23{width:99.460894pt;}
._3f{width:103.292400pt;}
._13{width:130.072576pt;}
._22{width:436.536261pt;}
._29{width:505.700272pt;}
._2a{width:579.408065pt;}
._30{width:581.297781pt;}
._31{width:781.943706pt;}
._34{width:964.567141pt;}
._2e{width:1128.378900pt;}
._37{width:1562.911266pt;}
._19{width:1573.485327pt;}
._f{width:1983.803646pt;}
._35{width:1999.610812pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.133867pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs7{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:9.235520pt;}
.y8{bottom:54.637333pt;}
.y9e{bottom:94.488000pt;}
.y1a6{bottom:94.684000pt;}
.y51{bottom:96.910667pt;}
.y79{bottom:97.088000pt;}
.y21e{bottom:100.894667pt;}
.y1f2{bottom:109.709333pt;}
.y111{bottom:111.912000pt;}
.y9d{bottom:113.749333pt;}
.y1a5{bottom:113.945333pt;}
.y50{bottom:116.172000pt;}
.y21d{bottom:120.156000pt;}
.y78{bottom:131.957333pt;}
.y9c{bottom:133.010667pt;}
.y1a4{bottom:133.206667pt;}
.y18d{bottom:134.104000pt;}
.y1bf{bottom:135.321333pt;}
.y1f1{bottom:137.801333pt;}
.y21c{bottom:139.417333pt;}
.y1f0{bottom:141.741333pt;}
.y110{bottom:150.434667pt;}
.y4f{bottom:151.040000pt;}
.y173{bottom:151.150667pt;}
.y77{bottom:151.217333pt;}
.ydb{bottom:152.272000pt;}
.y18c{bottom:153.364000pt;}
.y1be{bottom:154.582667pt;}
.ybe{bottom:162.566667pt;}
.y1a3{bottom:162.762667pt;}
.y9b{bottom:164.164000pt;}
.y10f{bottom:169.696000pt;}
.y1ef{bottom:169.833333pt;}
.y4e{bottom:170.301333pt;}
.y172{bottom:170.410667pt;}
.y76{bottom:170.478667pt;}
.yda{bottom:171.532000pt;}
.y21b{bottom:171.961333pt;}
.y1ee{bottom:173.774667pt;}
.y1bd{bottom:173.844000pt;}
.y14b{bottom:181.828000pt;}
.y18b{bottom:182.920000pt;}
.y9a{bottom:183.425333pt;}
.y12a{bottom:184.481333pt;}
.y10e{bottom:188.957333pt;}
.y4d{bottom:189.562667pt;}
.y171{bottom:189.672000pt;}
.y75{bottom:189.740000pt;}
.yd9{bottom:190.793333pt;}
.y21a{bottom:191.222667pt;}
.ybd{bottom:192.122667pt;}
.y99{bottom:202.685333pt;}
.y1bc{bottom:203.398667pt;}
.y1a2{bottom:204.329333pt;}
.y1ed{bottom:205.806667pt;}
.yf4{bottom:206.012000pt;}
.y4c{bottom:208.824000pt;}
.y74{bottom:209.001333pt;}
.y10d{bottom:216.852000pt;}
.y170{bottom:219.228000pt;}
.y1a1{bottom:219.649333pt;}
.yd8{bottom:220.349333pt;}
.y14a{bottom:222.782667pt;}
.y1a0{bottom:223.590667pt;}
.y219{bottom:223.766667pt;}
.yf3{bottom:225.273333pt;}
.y129{bottom:226.048000pt;}
.y4b{bottom:228.085333pt;}
.y73{bottom:228.262667pt;}
.y18a{bottom:229.136000pt;}
.ybc{bottom:231.817333pt;}
.y1bb{bottom:232.954667pt;}
.y98{bottom:233.838667pt;}
.y1ec{bottom:237.840000pt;}
.y149{bottom:242.044000pt;}
.yf2{bottom:244.533333pt;}
.y128{bottom:245.309333pt;}
.y4a{bottom:247.346667pt;}
.y72{bottom:247.524000pt;}
.y19f{bottom:247.545333pt;}
.y189{bottom:248.397333pt;}
.y19e{bottom:251.485333pt;}
.y97{bottom:253.100000pt;}
.y10c{bottom:255.374667pt;}
.y218{bottom:256.312000pt;}
.y16f{bottom:260.794667pt;}
.y148{bottom:261.305333pt;}
.yd7{bottom:261.337333pt;}
.y1eb{bottom:265.932000pt;}
.y49{bottom:266.606667pt;}
.y71{bottom:266.784000pt;}
.y1ea{bottom:269.872000pt;}
.y96{bottom:272.361333pt;}
.y1ba{bottom:272.650667pt;}
.y127{bottom:273.204000pt;}
.yf1{bottom:274.089333pt;}
.y10b{bottom:274.636000pt;}
.y188{bottom:277.953333pt;}
.y15d{bottom:278.340000pt;}
.y16e{bottom:280.056000pt;}
.y147{bottom:280.566667pt;}
.ybb{bottom:284.994667pt;}
.y48{bottom:285.868000pt;}
.y217{bottom:288.856000pt;}
.y19d{bottom:290.008000pt;}
.y1d6{bottom:291.236000pt;}
.yd6{bottom:292.761333pt;}
.y10a{bottom:293.896000pt;}
.y15c{bottom:297.601333pt;}
.y70{bottom:301.653333pt;}
.y1e9{bottom:301.905333pt;}
.y95{bottom:303.514667pt;}
.yba{bottom:304.254667pt;}
.y216{bottom:308.117333pt;}
.y1d5{bottom:310.497333pt;}
.y126{bottom:311.726667pt;}
.y109{bottom:313.157333pt;}
.yf0{bottom:315.656000pt;}
.y187{bottom:319.518667pt;}
.y47{bottom:320.737333pt;}
.y6f{bottom:320.914667pt;}
.y146{bottom:321.522667pt;}
.y16d{bottom:321.621333pt;}
.yd5{bottom:321.944000pt;}
.y94{bottom:322.776000pt;}
.yb9{bottom:323.516000pt;}
.y1b9{bottom:325.896000pt;}
.y15b{bottom:327.157333pt;}
.y19c{bottom:327.633333pt;}
.y1d4{bottom:329.758667pt;}
.y125{bottom:330.988000pt;}
.y19b{bottom:331.574667pt;}
.y108{bottom:332.418667pt;}
.y1e8{bottom:333.937333pt;}
.yef{bottom:334.917333pt;}
.y186{bottom:338.780000pt;}
.y46{bottom:339.998667pt;}
.y6e{bottom:340.176000pt;}
.y215{bottom:340.662667pt;}
.y145{bottom:340.782667pt;}
.y16c{bottom:340.882667pt;}
.y93{bottom:342.036000pt;}
.yb8{bottom:342.777333pt;}
.y1b8{bottom:345.156000pt;}
.y1d3{bottom:349.020000pt;}
.y19a{bottom:350.834667pt;}
.yee{bottom:354.178667pt;}
.y144{bottom:356.104000pt;}
.y45{bottom:359.260000pt;}
.y6d{bottom:359.437333pt;}
.y214{bottom:359.924000pt;}
.y143{bottom:360.044000pt;}
.y124{bottom:360.542667pt;}
.y107{bottom:361.974667pt;}
.yb7{bottom:362.038667pt;}
.yd4{bottom:362.930667pt;}
.y1e7{bottom:365.970667pt;}
.y1d2{bottom:368.281333pt;}
.y185{bottom:368.336000pt;}
.y15a{bottom:368.724000pt;}
.y16b{bottom:370.438667pt;}
.y92{bottom:373.189333pt;}
.y1b7{bottom:374.712000pt;}
.y29{bottom:376.368000pt;}
.y44{bottom:378.520000pt;}
.y6c{bottom:378.697333pt;}
.y199{bottom:380.390667pt;}
.yb6{bottom:381.300000pt;}
.yd3{bottom:382.192000pt;}
.yed{bottom:383.733333pt;}
.y200{bottom:384.010667pt;}
.y1d1{bottom:387.541333pt;}
.y159{bottom:387.985333pt;}
.y142{bottom:389.600000pt;}
.y106{bottom:391.530667pt;}
.y91{bottom:392.450667pt;}
.y213{bottom:392.468000pt;}
.y28{bottom:395.629333pt;}
.y43{bottom:397.781333pt;}
.y184{bottom:397.892000pt;}
.y6b{bottom:397.958667pt;}
.y1e6{bottom:398.002667pt;}
.yb5{bottom:400.561333pt;}
.yd2{bottom:401.453333pt;}
.y123{bottom:402.109333pt;}
.y1d0{bottom:406.802667pt;}
.y158{bottom:407.245333pt;}
.y198{bottom:409.946667pt;}
.y90{bottom:411.712000pt;}
.y212{bottom:411.729333pt;}
.y16a{bottom:412.005333pt;}
.yec{bottom:413.289333pt;}
.y1b6{bottom:416.278667pt;}
.y42{bottom:417.042667pt;}
.y6a{bottom:417.220000pt;}
.y1ff{bottom:419.057333pt;}
.yb4{bottom:419.821333pt;}
.yd1{bottom:420.714667pt;}
.y122{bottom:421.370667pt;}
.y1cf{bottom:426.064000pt;}
.y141{bottom:426.614667pt;}
.y1e5{bottom:430.036000pt;}
.y140{bottom:430.556000pt;}
.y27{bottom:430.830667pt;}
.y169{bottom:431.266667pt;}
.y1b5{bottom:435.540000pt;}
.y41{bottom:436.304000pt;}
.y69{bottom:436.481333pt;}
.y157{bottom:436.801333pt;}
.y105{bottom:437.746667pt;}
.yb3{bottom:439.082667pt;}
.yd0{bottom:439.974667pt;}
.y183{bottom:440.166667pt;}
.y121{bottom:440.632000pt;}
.y8f{bottom:442.865333pt;}
.y182{bottom:444.108000pt;}
.y211{bottom:444.273333pt;}
.y1ce{bottom:445.325333pt;}
.y13f{bottom:445.876000pt;}
.y26{bottom:448.896000pt;}
.y197{bottom:449.642667pt;}
.y13e{bottom:449.817333pt;}
.y168{bottom:450.528000pt;}
.y40{bottom:455.565333pt;}
.y68{bottom:455.742667pt;}
.yb2{bottom:458.344000pt;}
.yeb{bottom:459.505333pt;}
.y1e4{bottom:462.068000pt;}
.y8e{bottom:462.126667pt;}
.y1cd{bottom:464.586667pt;}
.y1b4{bottom:465.096000pt;}
.y104{bottom:465.641333pt;}
.y25{bottom:466.961333pt;}
.y120{bottom:468.526667pt;}
.ycf{bottom:469.530667pt;}
.y1fe{bottom:472.301333pt;}
.y3f{bottom:474.826667pt;}
.y67{bottom:475.004000pt;}
.y210{bottom:476.818667pt;}
.yb1{bottom:477.605333pt;}
.y156{bottom:478.368000pt;}
.y8d{bottom:481.386667pt;}
.y181{bottom:482.629333pt;}
.y1cc{bottom:483.848000pt;}
.y24{bottom:485.026667pt;}
.y13d{bottom:489.254667pt;}
.yea{bottom:492.050667pt;}
.y167{bottom:492.093333pt;}
.y3e{bottom:494.086667pt;}
.y1e3{bottom:494.101333pt;}
.y66{bottom:494.264000pt;}
.y1b3{bottom:494.652000pt;}
.y20f{bottom:496.080000pt;}
.y13c{bottom:496.248000pt;}
.yb0{bottom:496.866667pt;}
.y155{bottom:497.629333pt;}
.yce{bottom:499.086667pt;}
.y13b{bottom:500.188000pt;}
.y180{bottom:501.890667pt;}
.y196{bottom:502.886667pt;}
.y23{bottom:503.092000pt;}
.y1cb{bottom:503.108000pt;}
.y103{bottom:504.164000pt;}
.y11f{bottom:507.049333pt;}
.y1fd{bottom:507.348000pt;}
.y166{bottom:511.354667pt;}
.y8c{bottom:512.350667pt;}
.y3d{bottom:513.348000pt;}
.y20e{bottom:515.340000pt;}
.yaf{bottom:516.128000pt;}
.y154{bottom:516.890667pt;}
.y22{bottom:521.158667pt;}
.y195{bottom:522.148000pt;}
.y102{bottom:523.425333pt;}
.ye9{bottom:524.594667pt;}
.y1e2{bottom:526.133333pt;}
.y65{bottom:529.133333pt;}
.y3c{bottom:532.609333pt;}
.yae{bottom:535.388000pt;}
.y1ca{bottom:538.154667pt;}
.y21{bottom:539.224000pt;}
.y1b2{bottom:540.866667pt;}
.y165{bottom:540.910667pt;}
.y8b{bottom:541.906667pt;}
.y17f{bottom:543.457333pt;}
.ycd{bottom:544.724000pt;}
.y153{bottom:546.446667pt;}
.y13a{bottom:546.533333pt;}
.y20d{bottom:547.885333pt;}
.y64{bottom:548.394667pt;}
.y11e{bottom:548.616000pt;}
.y194{bottom:551.704000pt;}
.y3b{bottom:551.870667pt;}
.yad{bottom:554.649333pt;}
.y20{bottom:557.289333pt;}
.y1e1{bottom:558.166667pt;}
.y1b1{bottom:560.128000pt;}
.y1fc{bottom:560.593333pt;}
.ycc{bottom:563.984000pt;}
.y101{bottom:564.990667pt;}
.y139{bottom:565.793333pt;}
.ye8{bottom:566.161333pt;}
.y63{bottom:567.656000pt;}
.y11d{bottom:567.877333pt;}
.y164{bottom:570.466667pt;}
.y17e{bottom:571.353333pt;}
.yac{bottom:573.910667pt;}
.y1f{bottom:575.354667pt;}
.y152{bottom:576.001333pt;}
.y138{bottom:576.726667pt;}
.y20c{bottom:580.429333pt;}
.y100{bottom:584.252000pt;}
.ye7{bottom:585.422667pt;}
.y3a{bottom:586.740000pt;}
.y62{bottom:586.917333pt;}
.y11c{bottom:587.137333pt;}
.y8a{bottom:587.404000pt;}
.y1b0{bottom:589.684000pt;}
.y1e0{bottom:590.198667pt;}
.y1c9{bottom:591.400000pt;}
.yab{bottom:593.172000pt;}
.y193{bottom:593.270667pt;}
.y1e{bottom:593.420000pt;}
.y1fb{bottom:595.640000pt;}
.ycb{bottom:596.032000pt;}
.y20b{bottom:599.690667pt;}
.yff{bottom:603.513333pt;}
.ye6{bottom:604.682667pt;}
.y39{bottom:606.001333pt;}
.y61{bottom:606.178667pt;}
.y11b{bottom:606.398667pt;}
.y89{bottom:606.665333pt;}
.y17d{bottom:609.874667pt;}
.y1c8{bottom:610.661333pt;}
.yca{bottom:611.352000pt;}
.y1d{bottom:611.485333pt;}
.yaa{bottom:612.433333pt;}
.y192{bottom:612.532000pt;}
.yc9{bottom:615.292000pt;}
.y163{bottom:616.682667pt;}
.y137{bottom:618.373333pt;}
.y151{bottom:622.217333pt;}
.y1df{bottom:622.232000pt;}
.y38{bottom:625.261333pt;}
.y60{bottom:625.438667pt;}
.y11a{bottom:625.660000pt;}
.y88{bottom:625.925333pt;}
.y22a{bottom:628.760000pt;}
.y17c{bottom:629.136000pt;}
.y1c{bottom:629.552000pt;}
.y1af{bottom:631.250667pt;}
.ya9{bottom:631.694667pt;}
.y20a{bottom:632.236000pt;}
.yfe{bottom:633.069333pt;}
.ye5{bottom:634.238667pt;}
.y162{bottom:635.942667pt;}
.y7{bottom:637.866667pt;}
.y1c7{bottom:640.217333pt;}
.y136{bottom:640.554667pt;}
.y150{bottom:641.478667pt;}
.y191{bottom:642.088000pt;}
.y135{bottom:644.496000pt;}
.y37{bottom:644.522667pt;}
.y5f{bottom:644.700000pt;}
.y87{bottom:645.186667pt;}
.yc8{bottom:646.716000pt;}
.y1b{bottom:647.617333pt;}
.y229{bottom:648.021333pt;}
.y1fa{bottom:648.884000pt;}
.y1ae{bottom:650.512000pt;}
.ya8{bottom:650.954667pt;}
.y209{bottom:651.496000pt;}
.y1de{bottom:654.264000pt;}
.y119{bottom:655.216000pt;}
.y17b{bottom:658.692000pt;}
.y36{bottom:663.784000pt;}
.y86{bottom:664.448000pt;}
.y161{bottom:665.498667pt;}
.y1a{bottom:665.682667pt;}
.yc7{bottom:665.977333pt;}
.y228{bottom:667.281333pt;}
.y1f9{bottom:668.145333pt;}
.ya7{bottom:670.216000pt;}
.y14f{bottom:671.034667pt;}
.y190{bottom:671.642667pt;}
.yfd{bottom:674.636000pt;}
.ye4{bottom:675.805333pt;}
.y134{bottom:679.077333pt;}
.y5e{bottom:679.569333pt;}
.y1ad{bottom:680.066667pt;}
.y1c6{bottom:681.782667pt;}
.y133{bottom:683.017333pt;}
.y35{bottom:683.045333pt;}
.y85{bottom:683.709333pt;}
.y19{bottom:683.748000pt;}
.y208{bottom:684.041333pt;}
.y118{bottom:684.772000pt;}
.y1dd{bottom:686.296000pt;}
.ya6{bottom:689.477333pt;}
.ye3{bottom:695.066667pt;}
.y6{bottom:696.945333pt;}
.yc6{bottom:698.024000pt;}
.y5d{bottom:698.830667pt;}
.y227{bottom:699.826667pt;}
.y17a{bottom:700.258667pt;}
.y1c5{bottom:701.044000pt;}
.y18{bottom:701.813333pt;}
.y34{bottom:702.306667pt;}
.y84{bottom:702.970667pt;}
.y1f8{bottom:703.192000pt;}
.y207{bottom:703.302667pt;}
.y160{bottom:707.065333pt;}
.ya5{bottom:708.738667pt;}
.y1ac{bottom:709.622667pt;}
.y14e{bottom:712.601333pt;}
.yfc{bottom:713.010667pt;}
.yc5{bottom:717.285333pt;}
.y18f{bottom:717.858667pt;}
.y5c{bottom:718.092000pt;}
.y1dc{bottom:718.329333pt;}
.y226{bottom:719.088000pt;}
.y179{bottom:719.518667pt;}
.y17{bottom:719.880000pt;}
.y33{bottom:721.566667pt;}
.y83{bottom:722.232000pt;}
.y132{bottom:723.973333pt;}
.y1c4{bottom:730.600000pt;}
.y117{bottom:730.988000pt;}
.y14d{bottom:731.861333pt;}
.y5{bottom:734.198667pt;}
.y206{bottom:735.846667pt;}
.ye2{bottom:736.633333pt;}
.y18e{bottom:737.120000pt;}
.y5b{bottom:737.352000pt;}
.yfb{bottom:737.452000pt;}
.y16{bottom:737.945333pt;}
.ya4{bottom:738.294667pt;}
.y225{bottom:738.349333pt;}
.y15f{bottom:738.860000pt;}
.y32{bottom:740.828000pt;}
.y82{bottom:741.492000pt;}
.yc4{bottom:746.841333pt;}
.y178{bottom:747.414667pt;}
.y15e{bottom:749.794667pt;}
.y131{bottom:750.096000pt;}
.y116{bottom:750.248000pt;}
.y1db{bottom:750.361333pt;}
.y205{bottom:755.108000pt;}
.y1ab{bottom:755.838667pt;}
.ye1{bottom:755.893333pt;}
.y15{bottom:756.010667pt;}
.y1f7{bottom:756.436000pt;}
.y5a{bottom:756.613333pt;}
.y14c{bottom:759.757333pt;}
.y31{bottom:760.089333pt;}
.y81{bottom:760.753333pt;}
.y177{bottom:766.676000pt;}
.y115{bottom:769.509333pt;}
.y224{bottom:770.893333pt;}
.y1c3{bottom:772.166667pt;}
.y14{bottom:774.076000pt;}
.y204{bottom:774.369333pt;}
.y1aa{bottom:775.100000pt;}
.ye0{bottom:775.154667pt;}
.y1f6{bottom:775.697333pt;}
.y59{bottom:775.874667pt;}
.yfa{bottom:779.018667pt;}
.y30{bottom:779.350667pt;}
.y80{bottom:780.014667pt;}
.y4{bottom:781.520000pt;}
.y1da{bottom:782.394667pt;}
.ya3{bottom:784.441333pt;}
.yc3{bottom:787.829333pt;}
.y130{bottom:788.618667pt;}
.y223{bottom:790.154667pt;}
.y1c2{bottom:791.428000pt;}
.y13{bottom:792.141333pt;}
.y1a9{bottom:794.361333pt;}
.y1f5{bottom:794.958667pt;}
.y58{bottom:795.136000pt;}
.yf9{bottom:798.280000pt;}
.y2f{bottom:798.612000pt;}
.y114{bottom:799.065333pt;}
.y7f{bottom:799.276000pt;}
.ya2{bottom:803.702667pt;}
.ydf{bottom:804.710667pt;}
.y203{bottom:806.913333pt;}
.y176{bottom:808.242667pt;}
.y12{bottom:810.208000pt;}
.y1f4{bottom:814.220000pt;}
.y57{bottom:814.397333pt;}
.y1d9{bottom:814.426667pt;}
.y3{bottom:814.729333pt;}
.yf8{bottom:817.540000pt;}
.y2e{bottom:817.873333pt;}
.y7e{bottom:818.537333pt;}
.yc2{bottom:819.253333pt;}
.y1c1{bottom:820.982667pt;}
.y222{bottom:822.698667pt;}
.y202{bottom:826.174667pt;}
.y175{bottom:827.502667pt;}
.y11{bottom:828.273333pt;}
.y12f{bottom:829.574667pt;}
.y1f3{bottom:833.481333pt;}
.yde{bottom:834.266667pt;}
.y1a8{bottom:835.926667pt;}
.ya1{bottom:836.114667pt;}
.y7d{bottom:837.797333pt;}
.y221{bottom:841.960000pt;}
.y10{bottom:846.338667pt;}
.y1d8{bottom:846.460000pt;}
.y174{bottom:846.764000pt;}
.yf7{bottom:847.096000pt;}
.y2{bottom:847.938667pt;}
.y56{bottom:849.266667pt;}
.y1c0{bottom:850.538667pt;}
.yc1{bottom:850.677333pt;}
.y2d{bottom:852.741333pt;}
.y12e{bottom:854.292000pt;}
.y1a7{bottom:855.188000pt;}
.ya0{bottom:855.376000pt;}
.y7c{bottom:857.058667pt;}
.y12d{bottom:858.232000pt;}
.y201{bottom:858.720000pt;}
.y113{bottom:859.893333pt;}
.yf{bottom:864.404000pt;}
.y55{bottom:868.526667pt;}
.y2c{bottom:872.002667pt;}
.y220{bottom:874.505333pt;}
.y9f{bottom:874.637333pt;}
.y7b{bottom:876.320000pt;}
.yf6{bottom:876.652000pt;}
.y1d7{bottom:878.492000pt;}
.y112{bottom:879.153333pt;}
.ydd{bottom:880.482667pt;}
.y1{bottom:881.146667pt;}
.yc0{bottom:882.101333pt;}
.ye{bottom:882.469333pt;}
.y54{bottom:887.788000pt;}
.y2b{bottom:891.264000pt;}
.y21f{bottom:893.765333pt;}
.y12c{bottom:896.754667pt;}
.yd{bottom:900.536000pt;}
.y7a{bottom:905.876000pt;}
.y53{bottom:907.049333pt;}
.y2a{bottom:910.525333pt;}
.ydc{bottom:913.026667pt;}
.ybf{bottom:913.524000pt;}
.y12b{bottom:916.016000pt;}
.yf5{bottom:916.348000pt;}
.yc{bottom:918.601333pt;}
.y52{bottom:926.310667pt;}
.yb{bottom:945.572000pt;}
.y9{bottom:1034.806800pt;}
.h7{height:32.416667pt;}
.h4{height:39.850400pt;}
.h9{height:40.610943pt;}
.h8{height:41.067708pt;}
.h2{height:43.636400pt;}
.h10{height:45.525402pt;}
.h6{height:47.820800pt;}
.h1d{height:52.550982pt;}
.hd{height:52.556316pt;}
.hc{height:53.061069pt;}
.hb{height:53.066402pt;}
.h20{height:53.915776pt;}
.h17{height:55.740316pt;}
.h11{height:56.250402pt;}
.h12{height:56.255735pt;}
.h5{height:57.384800pt;}
.h16{height:63.580800pt;}
.h18{height:63.586133pt;}
.h3{height:67.615733pt;}
.he{height:68.826402pt;}
.ha{height:68.861600pt;}
.h22{height:69.958443pt;}
.h14{height:71.505649pt;}
.h21{height:72.010402pt;}
.h13{height:72.015735pt;}
.h1{height:82.650000pt;}
.h19{height:90.956800pt;}
.h1a{height:91.554133pt;}
.hf{height:92.454443pt;}
.h15{height:100.562133pt;}
.h1b{height:108.214443pt;}
.h1e{height:136.193109pt;}
.h1c{height:149.290402pt;}
.h1f{height:155.318443pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:10.629253pt;}
.xa{left:13.333333pt;}
.xe{left:94.488000pt;}
.x36{left:102.292000pt;}
.x25{left:106.188000pt;}
.x10{left:110.096000pt;}
.xd{left:117.900000pt;}
.x11{left:121.976000pt;}
.x35{left:123.054667pt;}
.x37{left:126.570667pt;}
.xc{left:133.508000pt;}
.xf{left:153.798667pt;}
.x1{left:156.032000pt;}
.x2{left:168.245333pt;}
.x33{left:173.644000pt;}
.x28{left:183.760000pt;}
.x15{left:229.990667pt;}
.x4{left:233.757333pt;}
.x2f{left:244.273333pt;}
.x6{left:258.790667pt;}
.x29{left:271.640000pt;}
.x1d{left:304.233333pt;}
.x1e{left:307.208000pt;}
.x19{left:308.813333pt;}
.x2b{left:313.500000pt;}
.x27{left:316.372000pt;}
.x1f{left:318.908000pt;}
.x13{left:322.917333pt;}
.x2c{left:326.824000pt;}
.x3{left:328.938667pt;}
.x7{left:335.294667pt;}
.x2d{left:340.846667pt;}
.x14{left:344.694667pt;}
.x12{left:347.200000pt;}
.x22{left:349.822667pt;}
.x16{left:353.058667pt;}
.x5{left:354.148000pt;}
.x21{left:355.898667pt;}
.x1a{left:361.693333pt;}
.x30{left:365.369333pt;}
.x18{left:374.084000pt;}
.xb{left:375.998667pt;}
.x2e{left:397.965333pt;}
.x17{left:400.196000pt;}
.x8{left:404.097333pt;}
.x31{left:414.025333pt;}
.x1b{left:415.256000pt;}
.x2a{left:417.738667pt;}
.x24{left:423.105333pt;}
.x32{left:440.406667pt;}
.x20{left:458.826667pt;}
.x26{left:468.786667pt;}
.x1c{left:474.516000pt;}
.x23{left:475.494667pt;}
.x34{left:486.276000pt;}
}




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