
    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_904d6b346d35640f76532e1b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_556ef207f59ef9b70c5811a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_ccf30725cdf40a99587d0273.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.686000;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_0e8477138a91397de3af2125.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_a3d233b9452add4ce2b1fb03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_bcf68a0830fe2413cfac0104.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8cc2897dbd2482e1a7a4e50c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686000;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_583ec552649eb51396fe9bb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.810000;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_273f0048c6b20733e437387b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893000;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_0a2425f987646edb2509a56c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983887;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_401a1713543a6972f1ea4b79.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_2ba446febb5270ef2e9aad34.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e1755a1cc5871d9c6d9ef170.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932000;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_af4c39bfa3c4120749c3072a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897000;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_72470e38f40cfca650fd3268.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b13134d5d5889845af454a51.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.733000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6d723ae6e7ea83a465bd69a4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704200;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f6b0d9de7bbe06ec360f60f8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.834000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6049a2ba3ee42c36373e306c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.803000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bff407a13b24af6296b38fb6.woff2')format("woff");}.ff14{font-family:ff14;line-height:2.222000;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_d4b454ca36008f3e9951f33d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6365b2bb6fd07febb26fcd5b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.518000;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;}
.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);}
.v16{vertical-align:-24.678000px;}
.v19{vertical-align:-21.690000px;}
.v2{vertical-align:-16.878000px;}
.v6{vertical-align:-15.312000px;}
.v3{vertical-align:-8.964000px;}
.vf{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:5.808000px;}
.ve{vertical-align:8.970000px;}
.vd{vertical-align:11.646000px;}
.v14{vertical-align:13.685999px;}
.v13{vertical-align:15.107999px;}
.vc{vertical-align:20.616000px;}
.v12{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v9{vertical-align:28.614000px;}
.v5{vertical-align:32.040000px;}
.v8{vertical-align:34.956000px;}
.v18{vertical-align:36.468000px;}
.v15{vertical-align:39.456000px;}
.v4{vertical-align:41.004000px;}
.v7{vertical-align:43.920000px;}
.v10{vertical-align:46.530000px;}
.vb{vertical-align:62.454000px;}
.va{vertical-align:68.430000px;}
.v11{vertical-align:81.366000px;}
.ls5{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000063px;}
.ls17{letter-spacing:0.000532px;}
.ls79{letter-spacing:0.000539px;}
.lse{letter-spacing:0.000542px;}
.ls5c{letter-spacing:0.000564px;}
.ls1e{letter-spacing:0.000648px;}
.ls1c{letter-spacing:0.000994px;}
.ls7e{letter-spacing:0.001133px;}
.ls77{letter-spacing:0.001493px;}
.ls72{letter-spacing:0.001692px;}
.lsf{letter-spacing:0.001698px;}
.ls1f{letter-spacing:0.001925px;}
.ls43{letter-spacing:0.002024px;}
.ls76{letter-spacing:0.002244px;}
.ls7a{letter-spacing:0.002338px;}
.ls22{letter-spacing:0.002481px;}
.ls58{letter-spacing:0.002647px;}
.ls24{letter-spacing:0.002726px;}
.ls56{letter-spacing:0.002822px;}
.ls2b{letter-spacing:0.003031px;}
.ls23{letter-spacing:0.003270px;}
.ls14{letter-spacing:0.003954px;}
.ls9{letter-spacing:0.004379px;}
.ls45{letter-spacing:0.004431px;}
.ls28{letter-spacing:0.004584px;}
.ls60{letter-spacing:0.004619px;}
.ls68{letter-spacing:0.006063px;}
.ls12{letter-spacing:0.484059px;}
.ls7f{letter-spacing:0.840018px;}
.ls74{letter-spacing:1.661780px;}
.ls3d{letter-spacing:1.880823px;}
.ls52{letter-spacing:2.144223px;}
.ls5a{letter-spacing:2.150223px;}
.ls7d{letter-spacing:2.449833px;}
.ls69{letter-spacing:2.624369px;}
.ls36{letter-spacing:2.964877px;}
.ls59{letter-spacing:2.982648px;}
.ls48{letter-spacing:2.983140px;}
.ls35{letter-spacing:2.983493px;}
.ls5d{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.985000px;}
.ls50{letter-spacing:2.986738px;}
.ls8{letter-spacing:2.986767px;}
.ls3e{letter-spacing:2.986982px;}
.ls78{letter-spacing:2.987676px;}
.ls1{letter-spacing:2.988053px;}
.ls4{letter-spacing:2.988532px;}
.ls3{letter-spacing:2.988600px;}
.ls4a{letter-spacing:2.988614px;}
.ls49{letter-spacing:2.988647px;}
.ls26{letter-spacing:2.988775px;}
.ls34{letter-spacing:2.988780px;}
.ls46{letter-spacing:2.989140px;}
.ls6{letter-spacing:2.989490px;}
.ls4e{letter-spacing:2.990524px;}
.ls7b{letter-spacing:2.990845px;}
.lsb{letter-spacing:2.991953px;}
.ls7{letter-spacing:2.992767px;}
.ls40{letter-spacing:2.992982px;}
.ls5b{letter-spacing:4.487737px;}
.ls38{letter-spacing:6.433866px;}
.ls15{letter-spacing:6.460059px;}
.ls4d{letter-spacing:6.516304px;}
.ls16{letter-spacing:7.173270px;}
.ls54{letter-spacing:9.962339px;}
.ls53{letter-spacing:10.896648px;}
.ls47{letter-spacing:11.151269px;}
.ls29{letter-spacing:12.949140px;}
.lsd{letter-spacing:13.278539px;}
.ls2d{letter-spacing:13.282201px;}
.lsa{letter-spacing:13.284539px;}
.ls27{letter-spacing:13.286481px;}
.ls55{letter-spacing:13.287270px;}
.ls3b{letter-spacing:13.824301px;}
.ls2c{letter-spacing:14.890649px;}
.ls64{letter-spacing:16.140539px;}
.ls61{letter-spacing:16.266648px;}
.lsc{letter-spacing:16.268525px;}
.ls57{letter-spacing:16.272648px;}
.ls25{letter-spacing:16.602538px;}
.ls73{letter-spacing:16.608539px;}
.ls6d{letter-spacing:16.890539px;}
.ls4f{letter-spacing:16.934339px;}
.ls75{letter-spacing:17.310648px;}
.ls63{letter-spacing:19.128648px;}
.ls4c{letter-spacing:19.596615px;}
.ls21{letter-spacing:19.638648px;}
.ls4b{letter-spacing:19.926615px;}
.ls5e{letter-spacing:21.480648px;}
.ls1d{letter-spacing:22.354431px;}
.ls1b{letter-spacing:23.006823px;}
.ls67{letter-spacing:23.741608px;}
.ls13{letter-spacing:23.772539px;}
.ls39{letter-spacing:24.036299px;}
.ls33{letter-spacing:25.483140px;}
.ls2{letter-spacing:26.004053px;}
.ls66{letter-spacing:26.730648px;}
.ls6b{letter-spacing:26.775269px;}
.ls6c{letter-spacing:26.777606px;}
.ls6a{letter-spacing:26.779468px;}
.ls6e{letter-spacing:27.086339px;}
.ls65{letter-spacing:27.762648px;}
.ls51{letter-spacing:27.927270px;}
.ls37{letter-spacing:27.937867px;}
.ls18{letter-spacing:28.776648px;}
.ls19{letter-spacing:28.782648px;}
.ls44{letter-spacing:28.902648px;}
.ls31{letter-spacing:29.158647px;}
.ls71{letter-spacing:30.498648px;}
.ls7c{letter-spacing:30.940380px;}
.ls41{letter-spacing:31.041031px;}
.ls70{letter-spacing:31.847781px;}
.ls30{letter-spacing:32.085270px;}
.ls6f{letter-spacing:33.168648px;}
.ls11{letter-spacing:33.344525px;}
.ls10{letter-spacing:33.351954px;}
.ls3c{letter-spacing:34.281270px;}
.ls3f{letter-spacing:34.552616px;}
.ls2a{letter-spacing:36.526677px;}
.ls42{letter-spacing:37.906616px;}
.ls32{letter-spacing:43.121139px;}
.ls2f{letter-spacing:44.601267px;}
.ls5f{letter-spacing:102.819268px;}
.ls2e{letter-spacing:143.307270px;}
.ls62{letter-spacing:244.338658px;}
.ls1a{letter-spacing:284.373270px;}
.ls20{letter-spacing:516.108647px;}
.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:-43.385129px;}
.wsa5{word-spacing:-38.937825px;}
.wsf0{word-spacing:-35.725243px;}
.wsfd{word-spacing:-29.015076px;}
.wsf3{word-spacing:-28.955300px;}
.ws10a{word-spacing:-28.118868px;}
.wscf{word-spacing:-25.653994px;}
.wsc9{word-spacing:-25.650976px;}
.wsc8{word-spacing:-20.692794px;}
.ws112{word-spacing:-17.594870px;}
.wsa7{word-spacing:-16.605661px;}
.wse2{word-spacing:-14.943900px;}
.wse5{word-spacing:-14.920027px;}
.ws111{word-spacing:-14.714868px;}
.wsbe{word-spacing:-13.531962px;}
.ws153{word-spacing:-13.449600px;}
.ws59{word-spacing:-13.344000px;}
.ws9a{word-spacing:-11.955150px;}
.ws102{word-spacing:-5.248298px;}
.ws101{word-spacing:-5.051393px;}
.wsb3{word-spacing:-3.335478px;}
.wsf2{word-spacing:-1.135736px;}
.ws60{word-spacing:-1.016185px;}
.ws4{word-spacing:-0.968400px;}
.ws169{word-spacing:-0.908591px;}
.wsc7{word-spacing:-0.896634px;}
.ws164{word-spacing:-0.717307px;}
.ws11c{word-spacing:-0.657532px;}
.ws11d{word-spacing:-0.597756px;}
.ws1d6{word-spacing:-0.573847px;}
.ws72{word-spacing:-0.478205px;}
.wsae{word-spacing:-0.418429px;}
.ws189{word-spacing:-0.382565px;}
.ws2b{word-spacing:-0.299101px;}
.ws85{word-spacing:-0.298878px;}
.ws13d{word-spacing:-0.239102px;}
.ws40{word-spacing:-0.239101px;}
.ws17e{word-spacing:-0.191282px;}
.ws70{word-spacing:-0.179327px;}
.ws90{word-spacing:-0.119551px;}
.ws2{word-spacing:-0.053798px;}
.ws17a{word-spacing:-0.047821px;}
.wsa8{word-spacing:-0.041843px;}
.wsa9{word-spacing:-0.021471px;}
.ws14c{word-spacing:-0.016654px;}
.ws105{word-spacing:-0.015468px;}
.ws5a{word-spacing:0.000000px;}
.ws122{word-spacing:0.018107px;}
.ws30{word-spacing:0.143261px;}
.ws14e{word-spacing:0.239102px;}
.ws74{word-spacing:0.298878px;}
.wsdc{word-spacing:0.358654px;}
.ws104{word-spacing:0.490160px;}
.ws6b{word-spacing:0.537980px;}
.ws117{word-spacing:0.657532px;}
.ws57{word-spacing:0.717299px;}
.wse6{word-spacing:0.717307px;}
.ws1bf{word-spacing:0.717309px;}
.ws161{word-spacing:0.777083px;}
.ws1be{word-spacing:0.860771px;}
.ws129{word-spacing:0.896634px;}
.ws143{word-spacing:0.956410px;}
.ws191{word-spacing:1.004233px;}
.ws88{word-spacing:1.016185px;}
.ws7b{word-spacing:1.075961px;}
.ws147{word-spacing:1.135736px;}
.wsfa{word-spacing:1.195512px;}
.ws24{word-spacing:1.255499px;}
.ws9d{word-spacing:1.374839px;}
.ws75{word-spacing:1.434614px;}
.ws55{word-spacing:1.494299px;}
.ws168{word-spacing:1.530259px;}
.ws54{word-spacing:1.554299px;}
.ws1d8{word-spacing:1.578080px;}
.ws135{word-spacing:1.613941px;}
.ws1d9{word-spacing:1.673721px;}
.wsbf{word-spacing:1.733492px;}
.ws174{word-spacing:1.769362px;}
.ws1b2{word-spacing:1.865003px;}
.ws107{word-spacing:1.972595px;}
.ws106{word-spacing:1.990309px;}
.ws14a{word-spacing:2.092146px;}
.ws1cc{word-spacing:2.104106px;}
.wsc4{word-spacing:2.151922px;}
.wsb6{word-spacing:2.271473px;}
.ws9f{word-spacing:2.331248px;}
.ws80{word-spacing:2.391024px;}
.ws128{word-spacing:2.570351px;}
.ws124{word-spacing:2.689902px;}
.ws5e{word-spacing:2.749678px;}
.ws16e{word-spacing:2.773595px;}
.ws2d{word-spacing:2.821660px;}
.wsc3{word-spacing:2.869229px;}
.ws1a4{word-spacing:2.869236px;}
.ws193{word-spacing:2.899456px;}
.ws195{word-spacing:2.917057px;}
.ws160{word-spacing:3.048556px;}
.ws125{word-spacing:3.108331px;}
.ws167{word-spacing:3.108339px;}
.ws1c3{word-spacing:3.156160px;}
.ws5f{word-spacing:3.227882px;}
.ws18e{word-spacing:3.251801px;}
.ws159{word-spacing:3.287658px;}
.ws182{word-spacing:3.395263px;}
.ws73{word-spacing:3.526760px;}
.ws61{word-spacing:3.646312px;}
.ws1a6{word-spacing:3.682186px;}
.ws5b{word-spacing:3.765863px;}
.wsf{word-spacing:3.819600px;}
.ws1b1{word-spacing:3.825648px;}
.ws197{word-spacing:3.912042px;}
.ws199{word-spacing:3.921289px;}
.ws71{word-spacing:3.945190px;}
.ws41{word-spacing:4.005299px;}
.ws1c9{word-spacing:4.160392px;}
.ws149{word-spacing:4.184292px;}
.ws14d{word-spacing:4.244067px;}
.wsc5{word-spacing:4.303843px;}
.ws1b8{word-spacing:4.303854px;}
.ws1b6{word-spacing:4.318207px;}
.ws146{word-spacing:4.363619px;}
.ws1a8{word-spacing:4.399495px;}
.ws127{word-spacing:4.423394px;}
.ws18d{word-spacing:4.447316px;}
.wsc2{word-spacing:4.483170px;}
.ws6e{word-spacing:4.602721px;}
.ws47{word-spacing:4.602899px;}
.ws89{word-spacing:4.662497px;}
.ws1d0{word-spacing:4.686419px;}
.ws144{word-spacing:4.722272px;}
.ws1cf{word-spacing:4.777831px;}
.ws1d4{word-spacing:4.780682px;}
.ws4b{word-spacing:4.781698px;}
.ws2c{word-spacing:4.781859px;}
.wsdd{word-spacing:4.782048px;}
.wse1{word-spacing:4.782060px;}
.ws179{word-spacing:4.783122px;}
.wsd8{word-spacing:4.901599px;}
.ws1a5{word-spacing:4.925522px;}
.ws6f{word-spacing:4.961375px;}
.ws4e{word-spacing:5.140498px;}
.wsa2{word-spacing:5.140701px;}
.ws196{word-spacing:5.164625px;}
.ws8c{word-spacing:5.200477px;}
.ws9b{word-spacing:5.260253px;}
.ws1c0{word-spacing:5.308087px;}
.ws11e{word-spacing:5.320028px;}
.ws1d3{word-spacing:5.355907px;}
.ws154{word-spacing:5.379840px;}
.ws53{word-spacing:5.379898px;}
.ws1ab{word-spacing:5.403728px;}
.ws16{word-spacing:5.433600px;}
.ws148{word-spacing:5.499355px;}
.ws84{word-spacing:5.559131px;}
.ws18c{word-spacing:5.595010px;}
.ws5c{word-spacing:5.618906px;}
.ws1cd{word-spacing:5.642831px;}
.ws1a9{word-spacing:5.690651px;}
.ws120{word-spacing:5.738457px;}
.ws27{word-spacing:5.738698px;}
.ws130{word-spacing:5.858009px;}
.ws7a{word-spacing:5.917784px;}
.ws98{word-spacing:5.929754px;}
.wse4{word-spacing:5.931398px;}
.ws97{word-spacing:5.970967px;}
.ws99{word-spacing:5.976480px;}
.ws3d{word-spacing:5.977498px;}
.ws63{word-spacing:5.977560px;}
.wse0{word-spacing:5.977575px;}
.ws114{word-spacing:6.097111px;}
.ws1c4{word-spacing:6.121037px;}
.ws7f{word-spacing:6.156887px;}
.wsb4{word-spacing:6.172312px;}
.ws10{word-spacing:6.186600px;}
.ws15a{word-spacing:6.216662px;}
.ws4a{word-spacing:6.276299px;}
.ws1a3{word-spacing:6.312319px;}
.ws6c{word-spacing:6.336213px;}
.ws1d1{word-spacing:6.407960px;}
.ws94{word-spacing:6.515540px;}
.ws1b5{word-spacing:6.551422px;}
.ws1{word-spacing:6.575259px;}
.wseb{word-spacing:6.575316px;}
.ws17c{word-spacing:6.694884px;}
.ws18{word-spacing:6.724799px;}
.ws23{word-spacing:6.754499px;}
.ws162{word-spacing:6.754643px;}
.ws13e{word-spacing:6.814418px;}
.wsba{word-spacing:6.874194px;}
.ws13c{word-spacing:6.933969px;}
.ws116{word-spacing:6.945925px;}
.ws42{word-spacing:7.053298px;}
.ws9c{word-spacing:7.053521px;}
.ws1cb{word-spacing:7.077449px;}
.ws82{word-spacing:7.113296px;}
.ws43{word-spacing:7.113298px;}
.ws10b{word-spacing:7.125251px;}
.ws14{word-spacing:7.154999px;}
.ws16a{word-spacing:7.162651px;}
.ws16c{word-spacing:7.173090px;}
.ws3b{word-spacing:7.232698px;}
.ws187{word-spacing:7.268731px;}
.ws11b{word-spacing:7.292623px;}
.ws134{word-spacing:7.412174px;}
.wsef{word-spacing:7.424129px;}
.wsb9{word-spacing:7.471950px;}
.wsdf{word-spacing:7.531725px;}
.ws58{word-spacing:7.532099px;}
.ws8a{word-spacing:7.591501px;}
.ws15c{word-spacing:7.711052px;}
.ws1d5{word-spacing:7.746937px;}
.ws139{word-spacing:7.770828px;}
.wsd{word-spacing:7.801199px;}
.ws172{word-spacing:7.842578px;}
.ws12c{word-spacing:7.890379px;}
.ws12{word-spacing:7.908600px;}
.ws136{word-spacing:7.950155px;}
.ws1c6{word-spacing:8.010022px;}
.ws1a2{word-spacing:8.033861px;}
.ws6a{word-spacing:8.069706px;}
.ws12a{word-spacing:8.189257px;}
.ws1ce{word-spacing:8.225143px;}
.ws32{word-spacing:8.225258px;}
.ws83{word-spacing:8.249033px;}
.ws11{word-spacing:8.284800px;}
.ws7e{word-spacing:8.308808px;}
.ws78{word-spacing:8.368584px;}
.ws183{word-spacing:8.464246px;}
.ws1ba{word-spacing:8.512067px;}
.ws13f{word-spacing:8.547911px;}
.ws95{word-spacing:8.667462px;}
.ws64{word-spacing:8.787013px;}
.ws34{word-spacing:8.787298px;}
.ws17b{word-spacing:8.798990px;}
.wsb0{word-spacing:8.846789px;}
.ws1e{word-spacing:8.906698px;}
.ws1aa{word-spacing:8.942452px;}
.ws86{word-spacing:8.966340px;}
.ws44{word-spacing:9.026098px;}
.ws8b{word-spacing:9.026115px;}
.ws1a7{word-spacing:9.038093px;}
.ws121{word-spacing:9.145667px;}
.wsbb{word-spacing:9.324993px;}
.ws76{word-spacing:9.444545px;}
.wsf5{word-spacing:9.504320px;}
.wsa{word-spacing:9.576000px;}
.ws1ca{word-spacing:9.670423px;}
.ws1ac{word-spacing:9.707582px;}
.wsa0{word-spacing:9.743423px;}
.ws22{word-spacing:9.743698px;}
.wsd4{word-spacing:9.803198px;}
.ws10c{word-spacing:9.832313px;}
.ws19b{word-spacing:9.851044px;}
.ws10e{word-spacing:9.862974px;}
.ws49{word-spacing:9.863098px;}
.wscc{word-spacing:9.922749px;}
.wsee{word-spacing:9.982525px;}
.ws15f{word-spacing:10.042301px;}
.ws163{word-spacing:10.102076px;}
.ws1dc{word-spacing:10.137967px;}
.ws13{word-spacing:10.221600px;}
.ws14b{word-spacing:10.221627px;}
.ws93{word-spacing:10.281403px;}
.ws188{word-spacing:10.377070px;}
.wsb8{word-spacing:10.400954px;}
.wsbd{word-spacing:10.460730px;}
.ws178{word-spacing:10.520532px;}
.ws192{word-spacing:10.663994px;}
.ws79{word-spacing:10.759608px;}
.wsa1{word-spacing:10.819383px;}
.wsa6{word-spacing:10.892004px;}
.ws36{word-spacing:10.938898px;}
.ws100{word-spacing:10.998710px;}
.ws15b{word-spacing:11.058486px;}
.wsc1{word-spacing:11.118261px;}
.ws2e{word-spacing:11.141857px;}
.ws56{word-spacing:11.237698px;}
.ws1d7{word-spacing:11.333482px;}
.ws7c{word-spacing:11.357364px;}
.ws1b9{word-spacing:11.381303px;}
.ws39{word-spacing:11.417098px;}
.ws10f{word-spacing:11.461059px;}
.ws173{word-spacing:11.476944px;}
.ws18a{word-spacing:11.524765px;}
.ws91{word-spacing:11.536691px;}
.ws19c{word-spacing:11.572585px;}
.ws1bc{word-spacing:11.593859px;}
.wsd6{word-spacing:11.596466px;}
.ws137{word-spacing:11.716017px;}
.ws4c{word-spacing:11.775898px;}
.ws11a{word-spacing:11.895344px;}
.wse3{word-spacing:11.955120px;}
.ws0{word-spacing:11.955298px;}
.ws19{word-spacing:11.955898px;}
.ws131{word-spacing:12.014895px;}
.wsfb{word-spacing:12.074671px;}
.ws1f{word-spacing:12.254098px;}
.ws31{word-spacing:12.289656px;}
.wsec{word-spacing:12.313773px;}
.wsb7{word-spacing:12.493100px;}
.wsbc{word-spacing:12.552876px;}
.ws77{word-spacing:12.612651px;}
.ws12b{word-spacing:12.672427px;}
.ws1c{word-spacing:12.971098px;}
.ws109{word-spacing:12.971305px;}
.ws145{word-spacing:13.090856px;}
.ws17f{word-spacing:13.150665px;}
.wsa3{word-spacing:13.210407px;}
.ws13b{word-spacing:13.389734px;}
.ws7{word-spacing:13.395599px;}
.ws166{word-spacing:13.437589px;}
.wsc6{word-spacing:13.449510px;}
.wsc{word-spacing:13.449599px;}
.ws8e{word-spacing:13.509285px;}
.ws103{word-spacing:13.569025px;}
.ws1da{word-spacing:13.581050px;}
.ws175{word-spacing:13.676692px;}
.ws1a0{word-spacing:13.724512px;}
.ws15d{word-spacing:13.748388px;}
.ws45{word-spacing:13.748698px;}
.ws3c{word-spacing:13.808098px;}
.ws1b3{word-spacing:13.820153px;}
.ws165{word-spacing:13.927714px;}
.ws37{word-spacing:13.987498px;}
.ws26{word-spacing:14.106898px;}
.ws9e{word-spacing:14.107041px;}
.wsb{word-spacing:14.149200px;}
.ws142{word-spacing:14.226592px;}
.ws1bb{word-spacing:14.250539px;}
.ws65{word-spacing:14.286368px;}
.ws3a{word-spacing:14.346298px;}
.ws11f{word-spacing:14.405919px;}
.ws184{word-spacing:14.489642px;}
.ws2f{word-spacing:14.489856px;}
.ws132{word-spacing:14.585246px;}
.ws68{word-spacing:14.645022px;}
.ws16f{word-spacing:14.680924px;}
.wsf4{word-spacing:14.704797px;}
.ws50{word-spacing:14.764498px;}
.wse9{word-spacing:14.764573px;}
.ws194{word-spacing:14.824386px;}
.ws14f{word-spacing:14.943900px;}
.ws92{word-spacing:15.003675px;}
.ws15{word-spacing:15.009600px;}
.wsc0{word-spacing:15.063451px;}
.ws6{word-spacing:15.117599px;}
.ws151{word-spacing:15.183002px;}
.ws119{word-spacing:15.242778px;}
.ws6d{word-spacing:15.302553px;}
.ws181{word-spacing:15.302592px;}
.ws1a{word-spacing:15.302698px;}
.ws3e{word-spacing:15.362098px;}
.ws87{word-spacing:15.362329px;}
.wsab{word-spacing:15.412313px;}
.wsac{word-spacing:15.422104px;}
.ws140{word-spacing:15.481880px;}
.ws17{word-spacing:15.493799px;}
.ws176{word-spacing:15.541695px;}
.ws18f{word-spacing:15.589516px;}
.ws19a{word-spacing:15.685157px;}
.ws3f{word-spacing:15.720898px;}
.ws1b4{word-spacing:15.732977px;}
.wsd7{word-spacing:15.780758px;}
.ws198{word-spacing:15.828619px;}
.ws13a{word-spacing:15.900309px;}
.ws4d{word-spacing:16.019698px;}
.ws108{word-spacing:16.019860px;}
.wsfc{word-spacing:16.079636px;}
.ws15e{word-spacing:16.139412px;}
.ws33{word-spacing:16.199098px;}
.wse8{word-spacing:16.199187px;}
.wsb2{word-spacing:16.232246px;}
.ws1b7{word-spacing:16.259004px;}
.ws21{word-spacing:16.378498px;}
.ws126{word-spacing:16.378514px;}
.ws138{word-spacing:16.438290px;}
.wscd{word-spacing:16.466511px;}
.ws16d{word-spacing:16.498107px;}
.wsde{word-spacing:16.557841px;}
.ws19e{word-spacing:16.689389px;}
.ws123{word-spacing:16.737168px;}
.ws62{word-spacing:16.796943px;}
.ws8d{word-spacing:16.856719px;}
.wsd3{word-spacing:17.155597px;}
.ws1c1{word-spacing:17.215416px;}
.ws38{word-spacing:17.334898px;}
.ws141{word-spacing:17.394699px;}
.wsfe{word-spacing:17.454475px;}
.wsaf{word-spacing:17.498249px;}
.ws18b{word-spacing:17.502340px;}
.wsad{word-spacing:17.507313px;}
.wsf1{word-spacing:17.514250px;}
.ws69{word-spacing:17.574026px;}
.ws1d2{word-spacing:17.693622px;}
.ws29{word-spacing:17.753098px;}
.wsd5{word-spacing:17.872904px;}
.ws48{word-spacing:17.873097px;}
.ws96{word-spacing:17.932680px;}
.wse7{word-spacing:17.992455px;}
.ws1c5{word-spacing:18.028366px;}
.wsa4{word-spacing:18.231558px;}
.ws66{word-spacing:18.291333px;}
.wsf9{word-spacing:18.351109px;}
.ws8f{word-spacing:18.530436px;}
.ws17d{word-spacing:18.602213px;}
.ws157{word-spacing:18.769538px;}
.ws12f{word-spacing:18.829314px;}
.ws81{word-spacing:18.948865px;}
.ws118{word-spacing:19.008640px;}
.wsed{word-spacing:19.068416px;}
.ws16b{word-spacing:19.080419px;}
.ws186{word-spacing:19.176061px;}
.ws5d{word-spacing:19.307518px;}
.ws51{word-spacing:19.367098px;}
.wsf7{word-spacing:19.604131px;}
.wsf8{word-spacing:19.606396px;}
.ws1c2{word-spacing:19.606446px;}
.ws19f{word-spacing:19.702087px;}
.ws171{word-spacing:19.749908px;}
.ws115{word-spacing:19.839462px;}
.wsdb{word-spacing:19.845499px;}
.ws1c7{word-spacing:19.941190px;}
.ws8{word-spacing:19.958999px;}
.ws67{word-spacing:20.084601px;}
.ws2a{word-spacing:20.084697px;}
.ws158{word-spacing:20.204152px;}
.wsda{word-spacing:20.263928px;}
.ws20{word-spacing:20.264098px;}
.wsd9{word-spacing:20.323703px;}
.ws25{word-spacing:20.502898px;}
.wsea{word-spacing:20.801908px;}
.ws4f{word-spacing:20.861623px;}
.ws7d{word-spacing:20.861684px;}
.ws52{word-spacing:21.100497px;}
.ws46{word-spacing:21.220498px;}
.ws28{word-spacing:21.279897px;}
.wsff{word-spacing:21.292068px;}
.wsb5{word-spacing:21.339889px;}
.ws1b{word-spacing:21.399297px;}
.ws35{word-spacing:21.399897px;}
.wscb{word-spacing:21.519215px;}
.ws1ad{word-spacing:21.567091px;}
.ws152{word-spacing:21.578991px;}
.ws150{word-spacing:21.758318px;}
.ws1db{word-spacing:21.758373px;}
.ws1ae{word-spacing:22.140938px;}
.ws1d{word-spacing:22.236297px;}
.ws133{word-spacing:22.296298px;}
.ws9{word-spacing:22.379999px;}
.wsb1{word-spacing:22.553796px;}
.ws12e{word-spacing:23.133157px;}
.ws170{word-spacing:23.288632px;}
.wsf6{word-spacing:23.372259px;}
.ws1dd{word-spacing:23.384273px;}
.ws19d{word-spacing:23.479915px;}
.ws1bd{word-spacing:23.527735px;}
.wsce{word-spacing:24.104511px;}
.wse{word-spacing:24.263400px;}
.ws180{word-spacing:25.010174px;}
.ws1a1{word-spacing:25.631842px;}
.ws3{word-spacing:25.930799px;}
.ws5{word-spacing:26.307599px;}
.ws185{word-spacing:26.396971px;}
.ws190{word-spacing:27.496845px;}
.ws10d{word-spacing:27.717684px;}
.ws113{word-spacing:29.355686px;}
.wsd2{word-spacing:29.648697px;}
.wsd1{word-spacing:29.656309px;}
.ws12d{word-spacing:29.828024px;}
.ws177{word-spacing:32.039802px;}
.ws1c8{word-spacing:46.672906px;}
.ws1af{word-spacing:59.823571px;}
.wsd0{word-spacing:63.278007px;}
.ws1b0{word-spacing:71.730900px;}
.wsca{word-spacing:132.416002px;}
.ws156{word-spacing:191.695131px;}
.wsaa{word-spacing:196.088245px;}
.ws155{word-spacing:227.580084px;}
._1d{margin-left:-53.877759px;}
._13{margin-left:-46.480969px;}
._1c{margin-left:-44.155799px;}
._18{margin-left:-41.241893px;}
._1a{margin-left:-29.884530px;}
._1b{margin-left:-26.776961px;}
._16{margin-left:-14.941799px;}
._1{margin-left:-8.799600px;}
._2{margin-left:-7.298398px;}
._2e{margin-left:-6.264421px;}
._7{margin-left:-5.262000px;}
._3{margin-left:-3.351590px;}
._0{margin-left:-1.912799px;}
._d{width:1.282180px;}
._c{width:2.988780px;}
._e{width:4.244067px;}
._19{width:6.580065px;}
._4{width:9.138912px;}
._8{width:13.688400px;}
._2c{width:15.350388px;}
._1e{width:16.431290px;}
._15{width:17.620023px;}
._6{width:19.582799px;}
._f{width:21.231667px;}
._5{width:22.649399px;}
._2f{width:24.440450px;}
._9{width:25.703399px;}
._17{width:26.802250px;}
._b{width:28.572736px;}
._a{width:29.887798px;}
._14{width:32.165239px;}
._12{width:33.776707px;}
._1f{width:37.244355px;}
._21{width:41.250275px;}
._2b{width:47.101176px;}
._20{width:48.165599px;}
._2d{width:49.391102px;}
._2a{width:55.755398px;}
._29{width:58.287983px;}
._10{width:70.917925px;}
._22{width:75.078021px;}
._23{width:140.491918px;}
._11{width:234.225299px;}
._24{width:258.165426px;}
._27{width:262.630693px;}
._25{width:313.167562px;}
._28{width:317.632829px;}
._26{width:511.681561px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887799px;}
.fs5{font-size:35.865600px;}
.fsa{font-size:41.842800px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:47.820540px;}
.fs9{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs8{font-size:59.775599px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.753340px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y6b{bottom:32.862000px;}
.y69{bottom:40.200000px;}
.y68{bottom:54.600000px;}
.y65{bottom:90.709455px;}
.y37{bottom:90.709470px;}
.y103{bottom:90.709478px;}
.y13a{bottom:90.709486px;}
.y1ad{bottom:90.709491px;}
.y1ba{bottom:90.709492px;}
.ydd{bottom:90.709503px;}
.ya3{bottom:90.709520px;}
.y1ff{bottom:90.709538px;}
.y198{bottom:90.709543px;}
.y36{bottom:104.159970px;}
.y1fe{bottom:104.160038px;}
.y64{bottom:108.641955px;}
.y102{bottom:108.641978px;}
.y139{bottom:108.641986px;}
.y1ac{bottom:108.641991px;}
.y1b9{bottom:108.641992px;}
.ydc{bottom:108.642003px;}
.ya2{bottom:108.642020px;}
.y197{bottom:108.642043px;}
.y1fd{bottom:117.609038px;}
.y35{bottom:121.828470px;}
.y101{bottom:126.574478px;}
.y138{bottom:126.574486px;}
.y1ab{bottom:126.574491px;}
.y1b8{bottom:126.574492px;}
.ydb{bottom:126.574503px;}
.ya1{bottom:126.574520px;}
.y196{bottom:126.574543px;}
.y63{bottom:126.799440px;}
.y1fc{bottom:131.059538px;}
.y34{bottom:131.641470px;}
.ya0{bottom:144.507020px;}
.y195{bottom:144.507043px;}
.y100{bottom:144.508478px;}
.y137{bottom:144.508486px;}
.y1aa{bottom:144.508491px;}
.y1b7{bottom:144.508492px;}
.y62{bottom:144.731940px;}
.y1fb{bottom:144.895538px;}
.yda{bottom:147.997503px;}
.y33{bottom:149.309955px;}
.y1fa{bottom:158.344537px;}
.y32{bottom:159.122955px;}
.y194{bottom:162.439543px;}
.yff{bottom:162.440978px;}
.y136{bottom:162.440986px;}
.y1a9{bottom:162.440991px;}
.y1b6{bottom:162.440992px;}
.y9f{bottom:162.441020px;}
.y61{bottom:162.664440px;}
.yd7{bottom:165.448503px;}
.y1f9{bottom:172.180537px;}
.y31{bottom:172.571955px;}
.yd9{bottom:179.646003px;}
.yfe{bottom:180.373478px;}
.y135{bottom:180.373486px;}
.y1a8{bottom:180.373491px;}
.y9e{bottom:180.373520px;}
.y193{bottom:180.373543px;}
.y60{bottom:180.596940px;}
.yd8{bottom:184.129503px;}
.y1f8{bottom:185.629536px;}
.y30{bottom:186.022455px;}
.y1b5{bottom:190.912492px;}
.y243{bottom:193.824049px;}
.yfd{bottom:198.305978px;}
.y134{bottom:198.305986px;}
.y1a7{bottom:198.305991px;}
.y9d{bottom:198.306020px;}
.y192{bottom:198.306043px;}
.y5f{bottom:198.529440px;}
.y1f7{bottom:199.080036px;}
.y6a{bottom:201.252000px;}
.y2f{bottom:203.690955px;}
.yd6{bottom:205.791003px;}
.y242{bottom:207.273048px;}
.y1f6{bottom:212.529036px;}
.y2e{bottom:213.503955px;}
.yfc{bottom:216.238478px;}
.y133{bottom:216.238486px;}
.y1a6{bottom:216.238491px;}
.y9c{bottom:216.238520px;}
.y191{bottom:216.238543px;}
.y5e{bottom:216.463440px;}
.y241{bottom:220.723548px;}
.yd5{bottom:223.723503px;}
.y1f5{bottom:226.365036px;}
.y1b4{bottom:227.192992px;}
.y132{bottom:234.170986px;}
.y9b{bottom:234.171020px;}
.y190{bottom:234.171043px;}
.yfb{bottom:234.172478px;}
.y1a5{bottom:234.172491px;}
.y240{bottom:234.172547px;}
.y5d{bottom:234.395940px;}
.y1f4{bottom:239.814035px;}
.yd4{bottom:241.657503px;}
.y2d{bottom:243.364455px;}
.y1b3{bottom:245.125492px;}
.y23f{bottom:247.623047px;}
.y131{bottom:248.410486px;}
.y9a{bottom:252.103520px;}
.y18f{bottom:252.103543px;}
.yfa{bottom:252.104978px;}
.y130{bottom:252.104986px;}
.y1a4{bottom:252.104991px;}
.y165{bottom:252.105020px;}
.y5c{bottom:252.328440px;}
.y1f3{bottom:253.264535px;}
.yd3{bottom:259.590003px;}
.y23e{bottom:261.072047px;}
.y2c{bottom:261.296955px;}
.y1b2{bottom:263.057992px;}
.y1f2{bottom:267.099035px;}
.y18e{bottom:270.036043px;}
.yf9{bottom:270.037478px;}
.y1a3{bottom:270.037491px;}
.y99{bottom:270.037520px;}
.y5b{bottom:270.260940px;}
.y23d{bottom:274.521046px;}
.yd2{bottom:277.522503px;}
.y2b{bottom:279.229455px;}
.y12f{bottom:279.551986px;}
.y1f1{bottom:280.549535px;}
.y1b1{bottom:280.991992px;}
.y12e{bottom:283.246486px;}
.yf8{bottom:287.969978px;}
.y1a2{bottom:287.969991px;}
.y98{bottom:287.970020px;}
.y18d{bottom:287.970043px;}
.y23c{bottom:287.971546px;}
.y5a{bottom:288.193440px;}
.y164{bottom:288.463520px;}
.y1f0{bottom:293.998534px;}
.yd1{bottom:295.387503px;}
.y2a{bottom:297.163455px;}
.y1b0{bottom:298.924492px;}
.y23b{bottom:301.420546px;}
.yf7{bottom:305.902478px;}
.y18c{bottom:305.902543px;}
.y59{bottom:306.125940px;}
.y163{bottom:306.396020px;}
.y1ef{bottom:307.449034px;}
.y97{bottom:311.341520px;}
.yd0{bottom:313.320003px;}
.y12d{bottom:314.387985px;}
.y23a{bottom:314.869545px;}
.y29{bottom:315.095955px;}
.y1a1{bottom:316.856990px;}
.y1af{bottom:316.856992px;}
.y1ee{bottom:321.283533px;}
.yf6{bottom:323.834978px;}
.y18b{bottom:323.835043px;}
.y58{bottom:324.059940px;}
.y162{bottom:324.330020px;}
.y239{bottom:328.320045px;}
.ycf{bottom:331.252503px;}
.y28{bottom:333.028455px;}
.y1ed{bottom:334.734033px;}
.y1a0{bottom:334.789490px;}
.y1ae{bottom:334.789492px;}
.y96{bottom:341.140519px;}
.yf5{bottom:341.768978px;}
.y238{bottom:341.769044px;}
.y161{bottom:342.262520px;}
.y12c{bottom:342.538485px;}
.y12b{bottom:346.232985px;}
.y57{bottom:347.483940px;}
.y1ec{bottom:348.183033px;}
.yce{bottom:349.185003px;}
.y27{bottom:350.960955px;}
.y18a{bottom:351.757543px;}
.y237{bottom:355.219544px;}
.y95{bottom:359.073019px;}
.yf4{bottom:359.701478px;}
.y160{bottom:360.195020px;}
.y1eb{bottom:362.019033px;}
.ycd{bottom:367.117503px;}
.y236{bottom:368.668544px;}
.y26{bottom:368.893455px;}
.y1ea{bottom:375.469533px;}
.y94{bottom:377.005519px;}
.y12a{bottom:377.374484px;}
.y56{bottom:377.408940px;}
.yf3{bottom:377.633978px;}
.y15f{bottom:378.127520px;}
.y235{bottom:382.117543px;}
.ycc{bottom:385.051503px;}
.y25{bottom:386.825955px;}
.y189{bottom:387.259542px;}
.y1e9{bottom:388.918532px;}
.y93{bottom:394.938019px;}
.y129{bottom:395.306984px;}
.y55{bottom:395.341440px;}
.yf2{bottom:395.566478px;}
.y234{bottom:395.568043px;}
.y15e{bottom:396.060020px;}
.y1e8{bottom:402.367532px;}
.ycb{bottom:402.984003px;}
.y24{bottom:404.759955px;}
.y188{bottom:405.192042px;}
.y19f{bottom:405.325516px;}
.y233{bottom:409.017043px;}
.y92{bottom:412.872019px;}
.y128{bottom:413.239484px;}
.y54{bottom:413.275440px;}
.y15d{bottom:413.992520px;}
.y1e7{bottom:416.203532px;}
.yf1{bottom:417.707977px;}
.y232{bottom:422.466042px;}
.y23{bottom:422.692455px;}
.yca{bottom:423.078003px;}
.y187{bottom:423.126042px;}
.yef{bottom:427.959023px;}
.y1e6{bottom:429.654032px;}
.y91{bottom:430.804519px;}
.y127{bottom:431.171984px;}
.y53{bottom:431.207940px;}
.yc9{bottom:434.357986px;}
.y19e{bottom:435.811478px;}
.y231{bottom:435.916542px;}
.y15c{bottom:437.785520px;}
.yf0{bottom:438.069023px;}
.yc7{bottom:439.863000px;}
.y22{bottom:440.624955px;}
.y186{bottom:441.058542px;}
.y1e5{bottom:443.103031px;}
.yc8{bottom:445.690521px;}
.y90{bottom:448.737019px;}
.y126{bottom:449.105984px;}
.y52{bottom:449.140440px;}
.y230{bottom:449.365541px;}
.y1e4{bottom:456.939031px;}
.yee{bottom:457.258523px;}
.y21{bottom:458.557455px;}
.y185{bottom:458.991042px;}
.y22f{bottom:462.814541px;}
.y19d{bottom:466.296021px;}
.y8f{bottom:466.669519px;}
.y125{bottom:467.038484px;}
.y51{bottom:467.072940px;}
.y15b{bottom:468.604519px;}
.y1e3{bottom:470.388030px;}
.yc6{bottom:474.112500px;}
.y22e{bottom:476.265041px;}
.y20{bottom:476.489955px;}
.y184{bottom:476.923542px;}
.yed{bottom:483.832523px;}
.y1e2{bottom:483.838530px;}
.y8e{bottom:484.602019px;}
.y124{bottom:484.970984px;}
.y50{bottom:485.005440px;}
.y15a{bottom:486.537019px;}
.y22d{bottom:489.714040px;}
.yc5{bottom:492.045000px;}
.y1f{bottom:494.422455px;}
.y183{bottom:494.856042px;}
.y1e1{bottom:497.287530px;}
.yec{bottom:501.765023px;}
.y8d{bottom:502.534519px;}
.y123{bottom:502.903484px;}
.y4f{bottom:502.937940px;}
.y22c{bottom:503.164540px;}
.y159{bottom:504.471019px;}
.yc4{bottom:509.977500px;}
.y1e0{bottom:511.123530px;}
.y1e{bottom:512.356455px;}
.y182{bottom:512.788542px;}
.y19c{bottom:514.714514px;}
.y22b{bottom:516.613540px;}
.yeb{bottom:519.699023px;}
.y8c{bottom:520.677019px;}
.y122{bottom:520.835984px;}
.y4e{bottom:520.871940px;}
.y158{bottom:522.403519px;}
.y1df{bottom:524.572529px;}
.yc3{bottom:527.911500px;}
.y22a{bottom:530.062539px;}
.y1d{bottom:530.288955px;}
.y181{bottom:530.722542px;}
.yea{bottom:537.631523px;}
.y1de{bottom:538.023029px;}
.y8b{bottom:538.609519px;}
.y121{bottom:538.768484px;}
.y4d{bottom:538.804440px;}
.y157{bottom:540.336019px;}
.y229{bottom:543.513039px;}
.yc2{bottom:545.844000px;}
.y1c{bottom:548.221455px;}
.y180{bottom:548.655042px;}
.y19b{bottom:550.581013px;}
.y1dd{bottom:551.472029px;}
.ye9{bottom:555.564023px;}
.y8a{bottom:556.542019px;}
.y120{bottom:556.702484px;}
.y4c{bottom:556.736940px;}
.y228{bottom:556.962038px;}
.y156{bottom:558.268519px;}
.y1dc{bottom:565.308029px;}
.yc1{bottom:565.771500px;}
.y17f{bottom:566.587542px;}
.y227{bottom:570.411038px;}
.y1b{bottom:572.066955px;}
.y89{bottom:574.476019px;}
.y11f{bottom:574.634984px;}
.y4b{bottom:574.894440px;}
.ybf{bottom:576.021041px;}
.y155{bottom:576.201019px;}
.y19a{bottom:576.583511px;}
.ye8{bottom:576.688522px;}
.y1db{bottom:578.757028px;}
.y226{bottom:583.861538px;}
.y17e{bottom:584.520042px;}
.yc0{bottom:586.131041px;}
.ye6{bottom:586.939537px;}
.y1da{bottom:592.207528px;}
.y88{bottom:592.408519px;}
.y11e{bottom:592.567484px;}
.y4a{bottom:592.826940px;}
.y154{bottom:594.133519px;}
.ye7{bottom:597.049538px;}
.y225{bottom:597.310537px;}
.y1a{bottom:601.792455px;}
.y17d{bottom:602.452542px;}
.y1d9{bottom:605.656527px;}
.y87{bottom:610.341019px;}
.y11d{bottom:610.499984px;}
.y49{bottom:610.759440px;}
.y224{bottom:610.761037px;}
.y153{bottom:612.067519px;}
.ybe{bottom:614.374541px;}
.y19{bottom:616.736955px;}
.y1d8{bottom:619.492527px;}
.y17c{bottom:620.385042px;}
.y223{bottom:624.210037px;}
.ye5{bottom:625.035036px;}
.y86{bottom:628.273519px;}
.y11c{bottom:628.432484px;}
.y48{bottom:628.691940px;}
.y152{bottom:630.000019px;}
.y18{bottom:631.681455px;}
.ybd{bottom:632.307041px;}
.y1d7{bottom:632.941527px;}
.y222{bottom:637.659036px;}
.y17b{bottom:638.319042px;}
.ye4{bottom:642.967536px;}
.y85{bottom:646.206019px;}
.y11b{bottom:646.364984px;}
.y1d6{bottom:646.392027px;}
.y47{bottom:646.624440px;}
.y17{bottom:646.624455px;}
.y151{bottom:647.932519px;}
.ybc{bottom:650.239541px;}
.y221{bottom:651.109536px;}
.y17a{bottom:656.251542px;}
.y1d5{bottom:659.841026px;}
.ye3{bottom:660.900036px;}
.y16{bottom:661.568955px;}
.y84{bottom:664.140019px;}
.y11a{bottom:664.298984px;}
.y46{bottom:664.556940px;}
.y220{bottom:664.558535px;}
.y150{bottom:665.865019px;}
.ybb{bottom:668.172041px;}
.y1d4{bottom:673.677026px;}
.y179{bottom:675.064541px;}
.y15{bottom:676.513455px;}
.y21f{bottom:678.007535px;}
.ye2{bottom:678.832536px;}
.y83{bottom:682.072519px;}
.y119{bottom:682.231484px;}
.y45{bottom:682.490940px;}
.y14f{bottom:683.797519px;}
.yba{bottom:686.104541px;}
.y1d3{bottom:687.126026px;}
.y14{bottom:691.456455px;}
.y21e{bottom:691.458035px;}
.y178{bottom:692.997041px;}
.ye1{bottom:696.765036px;}
.y82{bottom:700.005019px;}
.y118{bottom:700.163984px;}
.y44{bottom:700.423440px;}
.y1d2{bottom:700.576526px;}
.y14e{bottom:701.730019px;}
.yb9{bottom:704.037041px;}
.y21d{bottom:704.907034px;}
.y13{bottom:706.400955px;}
.y177{bottom:710.929541px;}
.y1d1{bottom:714.025525px;}
.ye0{bottom:714.699036px;}
.y117{bottom:718.096484px;}
.y81{bottom:718.146019px;}
.y43{bottom:718.355940px;}
.y21c{bottom:718.357534px;}
.y14d{bottom:719.664019px;}
.y12{bottom:721.345455px;}
.yb8{bottom:721.971041px;}
.y1d0{bottom:727.861525px;}
.y176{bottom:728.862041px;}
.y21b{bottom:731.806534px;}
.ydf{bottom:732.631536px;}
.y116{bottom:736.028984px;}
.y80{bottom:736.080019px;}
.y42{bottom:736.288440px;}
.y11{bottom:736.288455px;}
.y14c{bottom:737.596519px;}
.yb7{bottom:739.903541px;}
.y1cf{bottom:741.310524px;}
.y21a{bottom:745.255533px;}
.y175{bottom:746.796041px;}
.y10{bottom:751.232955px;}
.y115{bottom:753.961484px;}
.y7f{bottom:754.012519px;}
.y41{bottom:754.220940px;}
.y1ce{bottom:754.761024px;}
.y14b{bottom:755.529019px;}
.yb6{bottom:757.836041px;}
.y219{bottom:758.706033px;}
.y174{bottom:764.728541px;}
.yf{bottom:766.177455px;}
.y1cd{bottom:768.597024px;}
.y114{bottom:771.895484px;}
.y7e{bottom:771.945019px;}
.y40{bottom:772.154940px;}
.y218{bottom:772.155032px;}
.y14a{bottom:773.461519px;}
.yb5{bottom:775.768541px;}
.ye{bottom:781.120455px;}
.y1cc{bottom:782.046024px;}
.y173{bottom:782.661041px;}
.yde{bottom:782.959534px;}
.y217{bottom:785.604032px;}
.y113{bottom:789.827984px;}
.y7d{bottom:789.877519px;}
.y3f{bottom:790.087440px;}
.y149{bottom:791.394019px;}
.yb4{bottom:793.701041px;}
.y1cb{bottom:795.882024px;}
.yd{bottom:796.064955px;}
.y216{bottom:799.054532px;}
.y172{bottom:800.593541px;}
.y112{bottom:807.760484px;}
.y7c{bottom:807.810019px;}
.y3e{bottom:808.019940px;}
.y148{bottom:809.326519px;}
.y1ca{bottom:809.331023px;}
.yc{bottom:811.009455px;}
.yb3{bottom:811.633541px;}
.y215{bottom:812.503531px;}
.y171{bottom:818.526041px;}
.y1c9{bottom:822.781523px;}
.y111{bottom:825.692984px;}
.y7b{bottom:825.744019px;}
.y3d{bottom:825.952440px;}
.yb{bottom:825.952455px;}
.y214{bottom:825.952531px;}
.y147{bottom:827.260519px;}
.yb2{bottom:834.205541px;}
.y1c8{bottom:836.230523px;}
.y170{bottom:836.458541px;}
.y213{bottom:839.403031px;}
.ya{bottom:840.896955px;}
.y110{bottom:843.625484px;}
.y7a{bottom:843.676519px;}
.y3c{bottom:843.884940px;}
.y199{bottom:846.972015px;}
.y1c7{bottom:850.066523px;}
.y146{bottom:851.875519px;}
.y212{bottom:852.852030px;}
.y16f{bottom:854.392541px;}
.y9{bottom:855.839955px;}
.y10f{bottom:861.559484px;}
.y79{bottom:861.609019px;}
.y3b{bottom:861.817440px;}
.yb1{bottom:861.817541px;}
.y1c6{bottom:863.515522px;}
.y211{bottom:866.302530px;}
.y8{bottom:870.784455px;}
.y16e{bottom:872.325041px;}
.y1c5{bottom:876.966022px;}
.y10e{bottom:879.491984px;}
.y78{bottom:879.541519px;}
.yb0{bottom:879.750041px;}
.y3a{bottom:879.751440px;}
.y210{bottom:879.751529px;}
.y7{bottom:885.728955px;}
.y145{bottom:887.401519px;}
.y16d{bottom:890.257541px;}
.y1c4{bottom:890.415021px;}
.y20f{bottom:893.200529px;}
.y77{bottom:897.474019px;}
.yaf{bottom:897.682541px;}
.y39{bottom:897.683940px;}
.y6{bottom:900.671955px;}
.y1c3{bottom:903.864021px;}
.y144{bottom:905.334019px;}
.y10d{bottom:906.346484px;}
.y20e{bottom:906.651029px;}
.y16c{bottom:908.190041px;}
.y76{bottom:915.406519px;}
.y38{bottom:915.616440px;}
.y5{bottom:915.616455px;}
.yae{bottom:915.616541px;}
.y1c2{bottom:917.700021px;}
.y20d{bottom:920.100028px;}
.y143{bottom:923.268019px;}
.y16b{bottom:926.122541px;}
.y1c1{bottom:931.150521px;}
.y75{bottom:933.549019px;}
.y20c{bottom:933.549028px;}
.yad{bottom:933.549041px;}
.y142{bottom:941.200519px;}
.y16a{bottom:944.055041px;}
.y1c0{bottom:944.599520px;}
.y20b{bottom:946.999528px;}
.y74{bottom:951.481519px;}
.yac{bottom:951.481541px;}
.y1bf{bottom:958.435520px;}
.y141{bottom:959.133019px;}
.y20a{bottom:960.448527px;}
.y169{bottom:961.989041px;}
.y10c{bottom:962.017482px;}
.y4{bottom:963.502455px;}
.y73{bottom:969.414019px;}
.yab{bottom:969.414041px;}
.y1be{bottom:971.884520px;}
.y209{bottom:973.899027px;}
.y140{bottom:977.065519px;}
.y168{bottom:979.921541px;}
.y10b{bottom:979.949982px;}
.y3{bottom:983.474955px;}
.y1bd{bottom:985.335020px;}
.yaa{bottom:987.346541px;}
.y72{bottom:987.348019px;}
.y208{bottom:987.348027px;}
.y167{bottom:997.854041px;}
.y1bc{bottom:998.784019px;}
.y13f{bottom:999.750019px;}
.y207{bottom:1000.797026px;}
.ya9{bottom:1005.279041px;}
.y71{bottom:1005.280519px;}
.y10a{bottom:1009.390460px;}
.y206{bottom:1014.247526px;}
.y13e{bottom:1017.682519px;}
.y109{bottom:1022.839459px;}
.y70{bottom:1023.213019px;}
.ya8{bottom:1023.213041px;}
.y166{bottom:1023.574540px;}
.y1bb{bottom:1025.148019px;}
.y205{bottom:1027.696525px;}
.y2{bottom:1030.547955px;}
.y13d{bottom:1035.615019px;}
.y108{bottom:1036.288459px;}
.y6f{bottom:1041.145519px;}
.y204{bottom:1041.145525px;}
.ya7{bottom:1041.145541px;}
.y107{bottom:1049.738959px;}
.y13c{bottom:1053.547519px;}
.y203{bottom:1054.596025px;}
.y6e{bottom:1059.078019px;}
.ya6{bottom:1059.078041px;}
.y1{bottom:1060.435455px;}
.y106{bottom:1063.187958px;}
.y13b{bottom:1065.354019px;}
.y202{bottom:1068.045024px;}
.y105{bottom:1076.638458px;}
.y6d{bottom:1077.010519px;}
.ya5{bottom:1077.010541px;}
.y201{bottom:1081.495524px;}
.ya4{bottom:1094.943041px;}
.y6c{bottom:1094.944519px;}
.y200{bottom:1094.944524px;}
.y104{bottom:1097.894989px;}
.y67{bottom:1123.200000px;}
.y66{bottom:1137.600000px;}
.h17{height:0.000000px;}
.h7{height:23.850624px;}
.h29{height:28.787846px;}
.h13{height:29.415488px;}
.h16{height:29.833916px;}
.h2d{height:32.804932px;}
.h6{height:32.900532px;}
.h1c{height:32.900573px;}
.h2c{height:33.140573px;}
.h1b{height:33.187496px;}
.h8{height:33.570202px;}
.hb{height:34.453125px;}
.h2b{height:37.013299px;}
.ha{height:37.125000px;}
.h4{height:37.336090px;}
.h3{height:37.605082px;}
.he{height:41.006061px;}
.h9{height:41.006062px;}
.hd{height:41.125612px;}
.h5{height:41.125613px;}
.h2a{height:41.484265px;}
.hf{height:42.799329px;}
.hc{height:43.804688px;}
.h15{height:44.831699px;}
.h1d{height:45.080125px;}
.h22{height:51.105488px;}
.h28{height:51.111488px;}
.h26{height:51.523916px;}
.h21{height:51.529916px;}
.h23{height:54.511916px;}
.h2{height:55.554659px;}
.h1f{height:58.517698px;}
.h25{height:59.609699px;}
.h1e{height:59.939698px;}
.h20{height:59.945699px;}
.h12{height:65.447699px;}
.h27{height:66.301916px;}
.h1{height:66.374993px;}
.h24{height:69.289916px;}
.h1a{height:81.360000px;}
.h18{height:81.366000px;}
.h19{height:82.129612px;}
.h10{height:85.835699px;}
.h11{height:97.845488px;}
.h14{height:108.265612px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:26.400015px;}
.x6{left:80.999985px;}
.xc{left:87.263265px;}
.x1d{left:90.980989px;}
.x7{left:93.701970px;}
.x5{left:95.944470px;}
.x37{left:108.388493px;}
.x30{left:110.411990px;}
.x1{left:114.574500px;}
.x33{left:119.332500px;}
.x38{left:128.090993px;}
.x1c{left:134.251501px;}
.x1a{left:138.688503px;}
.x2e{left:179.473502px;}
.x39{left:186.355504px;}
.x4{left:195.712500px;}
.x2c{left:197.661005px;}
.x19{left:205.975502px;}
.x34{left:211.542000px;}
.x31{left:216.311993px;}
.x36{left:222.757496px;}
.x2d{left:229.924505px;}
.x2{left:269.871000px;}
.x3{left:292.792500px;}
.x1b{left:373.982999px;}
.x1e{left:378.268487px;}
.x1f{left:392.047485px;}
.xa{left:449.322000px;}
.x8{left:469.800000px;}
.x9{left:484.744500px;}
.x25{left:486.481474px;}
.x32{left:489.163513px;}
.xd{left:490.348518px;}
.x11{left:493.255515px;}
.x26{left:495.505468px;}
.x3a{left:497.188511px;}
.x27{left:504.044968px;}
.x2f{left:532.744474px;}
.xe{left:535.509005px;}
.x2a{left:547.562978px;}
.x21{left:551.371518px;}
.x20{left:554.155518px;}
.xf{left:559.335004px;}
.x10{left:566.679016px;}
.x35{left:588.229523px;}
.x13{left:601.993515px;}
.x14{left:604.074005px;}
.x15{left:615.504021px;}
.x12{left:644.107498px;}
.x16{left:645.153020px;}
.x17{left:646.498520px;}
.x18{left:671.920520px;}
.x2b{left:716.143477px;}
.x28{left:726.176966px;}
.x22{left:733.208985px;}
.x23{left:752.282985px;}
.x29{left:764.462966px;}
.x24{left:791.066984px;}
@media print{
.v16{vertical-align:-21.936000pt;}
.v19{vertical-align:-19.280000pt;}
.v2{vertical-align:-15.002667pt;}
.v6{vertical-align:-13.610667pt;}
.v3{vertical-align:-7.968000pt;}
.vf{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:5.162667pt;}
.ve{vertical-align:7.973333pt;}
.vd{vertical-align:10.352000pt;}
.v14{vertical-align:12.165333pt;}
.v13{vertical-align:13.429333pt;}
.vc{vertical-align:18.325333pt;}
.v12{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v9{vertical-align:25.434667pt;}
.v5{vertical-align:28.480000pt;}
.v8{vertical-align:31.072000pt;}
.v18{vertical-align:32.416000pt;}
.v15{vertical-align:35.072000pt;}
.v4{vertical-align:36.448000pt;}
.v7{vertical-align:39.040000pt;}
.v10{vertical-align:41.360000pt;}
.vb{vertical-align:55.514667pt;}
.va{vertical-align:60.826667pt;}
.v11{vertical-align:72.325333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000056pt;}
.ls17{letter-spacing:0.000473pt;}
.ls79{letter-spacing:0.000480pt;}
.lse{letter-spacing:0.000482pt;}
.ls5c{letter-spacing:0.000501pt;}
.ls1e{letter-spacing:0.000576pt;}
.ls1c{letter-spacing:0.000883pt;}
.ls7e{letter-spacing:0.001007pt;}
.ls77{letter-spacing:0.001327pt;}
.ls72{letter-spacing:0.001504pt;}
.lsf{letter-spacing:0.001509pt;}
.ls1f{letter-spacing:0.001711pt;}
.ls43{letter-spacing:0.001799pt;}
.ls76{letter-spacing:0.001995pt;}
.ls7a{letter-spacing:0.002078pt;}
.ls22{letter-spacing:0.002206pt;}
.ls58{letter-spacing:0.002353pt;}
.ls24{letter-spacing:0.002423pt;}
.ls56{letter-spacing:0.002509pt;}
.ls2b{letter-spacing:0.002695pt;}
.ls23{letter-spacing:0.002906pt;}
.ls14{letter-spacing:0.003514pt;}
.ls9{letter-spacing:0.003892pt;}
.ls45{letter-spacing:0.003938pt;}
.ls28{letter-spacing:0.004074pt;}
.ls60{letter-spacing:0.004105pt;}
.ls68{letter-spacing:0.005389pt;}
.ls12{letter-spacing:0.430275pt;}
.ls7f{letter-spacing:0.746683pt;}
.ls74{letter-spacing:1.477138pt;}
.ls3d{letter-spacing:1.671843pt;}
.ls52{letter-spacing:1.905976pt;}
.ls5a{letter-spacing:1.911309pt;}
.ls7d{letter-spacing:2.177630pt;}
.ls69{letter-spacing:2.332773pt;}
.ls36{letter-spacing:2.635446pt;}
.ls59{letter-spacing:2.651242pt;}
.ls48{letter-spacing:2.651680pt;}
.ls35{letter-spacing:2.651994pt;}
.ls5d{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.653333pt;}
.ls50{letter-spacing:2.654878pt;}
.ls8{letter-spacing:2.654904pt;}
.ls3e{letter-spacing:2.655095pt;}
.ls78{letter-spacing:2.655712pt;}
.ls1{letter-spacing:2.656047pt;}
.ls4{letter-spacing:2.656473pt;}
.ls3{letter-spacing:2.656533pt;}
.ls4a{letter-spacing:2.656546pt;}
.ls49{letter-spacing:2.656575pt;}
.ls26{letter-spacing:2.656689pt;}
.ls34{letter-spacing:2.656693pt;}
.ls46{letter-spacing:2.657014pt;}
.ls6{letter-spacing:2.657325pt;}
.ls4e{letter-spacing:2.658244pt;}
.ls7b{letter-spacing:2.658529pt;}
.lsb{letter-spacing:2.659513pt;}
.ls7{letter-spacing:2.660238pt;}
.ls40{letter-spacing:2.660428pt;}
.ls5b{letter-spacing:3.989099pt;}
.ls38{letter-spacing:5.718992pt;}
.ls15{letter-spacing:5.742275pt;}
.ls4d{letter-spacing:5.792270pt;}
.ls16{letter-spacing:6.376240pt;}
.ls54{letter-spacing:8.855412pt;}
.ls53{letter-spacing:9.685909pt;}
.ls47{letter-spacing:9.912239pt;}
.ls29{letter-spacing:11.510347pt;}
.lsd{letter-spacing:11.803146pt;}
.ls2d{letter-spacing:11.806401pt;}
.lsa{letter-spacing:11.808480pt;}
.ls27{letter-spacing:11.810206pt;}
.ls55{letter-spacing:11.810906pt;}
.ls3b{letter-spacing:12.288268pt;}
.ls2c{letter-spacing:13.236132pt;}
.ls64{letter-spacing:14.347146pt;}
.ls61{letter-spacing:14.459242pt;}
.lsc{letter-spacing:14.460911pt;}
.ls57{letter-spacing:14.464576pt;}
.ls25{letter-spacing:14.757812pt;}
.ls73{letter-spacing:14.763146pt;}
.ls6d{letter-spacing:15.013813pt;}
.ls4f{letter-spacing:15.052746pt;}
.ls75{letter-spacing:15.387242pt;}
.ls63{letter-spacing:17.003242pt;}
.ls4c{letter-spacing:17.419213pt;}
.ls21{letter-spacing:17.456576pt;}
.ls4b{letter-spacing:17.712546pt;}
.ls5e{letter-spacing:19.093909pt;}
.ls1d{letter-spacing:19.870605pt;}
.ls1b{letter-spacing:20.450510pt;}
.ls67{letter-spacing:21.103652pt;}
.ls13{letter-spacing:21.131146pt;}
.ls39{letter-spacing:21.365599pt;}
.ls33{letter-spacing:22.651680pt;}
.ls2{letter-spacing:23.114714pt;}
.ls66{letter-spacing:23.760576pt;}
.ls6b{letter-spacing:23.800239pt;}
.ls6c{letter-spacing:23.802316pt;}
.ls6a{letter-spacing:23.803972pt;}
.ls6e{letter-spacing:24.076746pt;}
.ls65{letter-spacing:24.677909pt;}
.ls51{letter-spacing:24.824240pt;}
.ls37{letter-spacing:24.833660pt;}
.ls18{letter-spacing:25.579242pt;}
.ls19{letter-spacing:25.584576pt;}
.ls44{letter-spacing:25.691242pt;}
.ls31{letter-spacing:25.918797pt;}
.ls71{letter-spacing:27.109909pt;}
.ls7c{letter-spacing:27.502560pt;}
.ls41{letter-spacing:27.592028pt;}
.ls70{letter-spacing:28.309138pt;}
.ls30{letter-spacing:28.520240pt;}
.ls6f{letter-spacing:29.483242pt;}
.ls11{letter-spacing:29.639578pt;}
.ls10{letter-spacing:29.646181pt;}
.ls3c{letter-spacing:30.472240pt;}
.ls3f{letter-spacing:30.713437pt;}
.ls2a{letter-spacing:32.468158pt;}
.ls42{letter-spacing:33.694770pt;}
.ls32{letter-spacing:38.329901pt;}
.ls2f{letter-spacing:39.645571pt;}
.ls5f{letter-spacing:91.394905pt;}
.ls2e{letter-spacing:127.384240pt;}
.ls62{letter-spacing:217.189918pt;}
.ls1a{letter-spacing:252.776240pt;}
.ls20{letter-spacing:458.763242pt;}
.ws110{word-spacing:-38.564559pt;}
.wsa5{word-spacing:-34.611400pt;}
.wsf0{word-spacing:-31.755771pt;}
.wsfd{word-spacing:-25.791178pt;}
.wsf3{word-spacing:-25.738044pt;}
.ws10a{word-spacing:-24.994549pt;}
.wscf{word-spacing:-22.803550pt;}
.wsc9{word-spacing:-22.800867pt;}
.wsc8{word-spacing:-18.393595pt;}
.ws112{word-spacing:-15.639884pt;}
.wsa7{word-spacing:-14.760588pt;}
.wse2{word-spacing:-13.283466pt;}
.wse5{word-spacing:-13.262246pt;}
.ws111{word-spacing:-13.079882pt;}
.wsbe{word-spacing:-12.028410pt;}
.ws153{word-spacing:-11.955200pt;}
.ws59{word-spacing:-11.861333pt;}
.ws9a{word-spacing:-10.626800pt;}
.ws102{word-spacing:-4.665153pt;}
.ws101{word-spacing:-4.490127pt;}
.wsb3{word-spacing:-2.964870pt;}
.wsf2{word-spacing:-1.009543pt;}
.ws60{word-spacing:-0.903276pt;}
.ws4{word-spacing:-0.860800pt;}
.ws169{word-spacing:-0.807637pt;}
.wsc7{word-spacing:-0.797008pt;}
.ws164{word-spacing:-0.637606pt;}
.ws11c{word-spacing:-0.584473pt;}
.ws11d{word-spacing:-0.531339pt;}
.ws1d6{word-spacing:-0.510086pt;}
.ws72{word-spacing:-0.425071pt;}
.wsae{word-spacing:-0.371937pt;}
.ws189{word-spacing:-0.340058pt;}
.ws2b{word-spacing:-0.265868pt;}
.ws85{word-spacing:-0.265669pt;}
.ws13d{word-spacing:-0.212535pt;}
.ws40{word-spacing:-0.212534pt;}
.ws17e{word-spacing:-0.170029pt;}
.ws70{word-spacing:-0.159402pt;}
.ws90{word-spacing:-0.106268pt;}
.ws2{word-spacing:-0.047821pt;}
.ws17a{word-spacing:-0.042507pt;}
.wsa8{word-spacing:-0.037194pt;}
.wsa9{word-spacing:-0.019085pt;}
.ws14c{word-spacing:-0.014804pt;}
.ws105{word-spacing:-0.013750pt;}
.ws5a{word-spacing:0.000000pt;}
.ws122{word-spacing:0.016095pt;}
.ws30{word-spacing:0.127343pt;}
.ws14e{word-spacing:0.212535pt;}
.ws74{word-spacing:0.265669pt;}
.wsdc{word-spacing:0.318803pt;}
.ws104{word-spacing:0.435698pt;}
.ws6b{word-spacing:0.478205pt;}
.ws117{word-spacing:0.584473pt;}
.ws57{word-spacing:0.637599pt;}
.wse6{word-spacing:0.637606pt;}
.ws1bf{word-spacing:0.637608pt;}
.ws161{word-spacing:0.690740pt;}
.ws1be{word-spacing:0.765130pt;}
.ws129{word-spacing:0.797008pt;}
.ws143{word-spacing:0.850142pt;}
.ws191{word-spacing:0.892651pt;}
.ws88{word-spacing:0.903276pt;}
.ws7b{word-spacing:0.956410pt;}
.ws147{word-spacing:1.009543pt;}
.wsfa{word-spacing:1.062677pt;}
.ws24{word-spacing:1.115999pt;}
.ws9d{word-spacing:1.222079pt;}
.ws75{word-spacing:1.275213pt;}
.ws55{word-spacing:1.328265pt;}
.ws168{word-spacing:1.360230pt;}
.ws54{word-spacing:1.381599pt;}
.ws1d8{word-spacing:1.402738pt;}
.ws135{word-spacing:1.434614pt;}
.ws1d9{word-spacing:1.487752pt;}
.wsbf{word-spacing:1.540882pt;}
.ws174{word-spacing:1.572766pt;}
.ws1b2{word-spacing:1.657781pt;}
.ws107{word-spacing:1.753418pt;}
.ws106{word-spacing:1.769164pt;}
.ws14a{word-spacing:1.859685pt;}
.ws1cc{word-spacing:1.870317pt;}
.wsc4{word-spacing:1.912819pt;}
.wsb6{word-spacing:2.019087pt;}
.ws9f{word-spacing:2.072221pt;}
.ws80{word-spacing:2.125355pt;}
.ws128{word-spacing:2.284756pt;}
.ws124{word-spacing:2.391024pt;}
.ws5e{word-spacing:2.444158pt;}
.ws16e{word-spacing:2.465418pt;}
.ws2d{word-spacing:2.508142pt;}
.wsc3{word-spacing:2.550426pt;}
.ws1a4{word-spacing:2.550432pt;}
.ws193{word-spacing:2.577294pt;}
.ws195{word-spacing:2.592939pt;}
.ws160{word-spacing:2.709827pt;}
.ws125{word-spacing:2.762961pt;}
.ws167{word-spacing:2.762968pt;}
.ws1c3{word-spacing:2.805475pt;}
.ws5f{word-spacing:2.869229pt;}
.ws18e{word-spacing:2.890490pt;}
.ws159{word-spacing:2.922363pt;}
.ws182{word-spacing:3.018011pt;}
.ws73{word-spacing:3.134898pt;}
.ws61{word-spacing:3.241166pt;}
.ws1a6{word-spacing:3.273054pt;}
.ws5b{word-spacing:3.347434pt;}
.wsf{word-spacing:3.395200pt;}
.ws1b1{word-spacing:3.400576pt;}
.ws197{word-spacing:3.477370pt;}
.ws199{word-spacing:3.485590pt;}
.ws71{word-spacing:3.506835pt;}
.ws41{word-spacing:3.560266pt;}
.ws1c9{word-spacing:3.698126pt;}
.ws149{word-spacing:3.719371pt;}
.ws14d{word-spacing:3.772504pt;}
.wsc5{word-spacing:3.825638pt;}
.ws1b8{word-spacing:3.825648pt;}
.ws1b6{word-spacing:3.838407pt;}
.ws146{word-spacing:3.878772pt;}
.ws1a8{word-spacing:3.910662pt;}
.ws127{word-spacing:3.931906pt;}
.ws18d{word-spacing:3.953170pt;}
.wsc2{word-spacing:3.985040pt;}
.ws6e{word-spacing:4.091308pt;}
.ws47{word-spacing:4.091466pt;}
.ws89{word-spacing:4.144441pt;}
.ws1d0{word-spacing:4.165706pt;}
.ws144{word-spacing:4.197575pt;}
.ws1cf{word-spacing:4.246961pt;}
.ws1d4{word-spacing:4.249495pt;}
.ws4b{word-spacing:4.250399pt;}
.ws2c{word-spacing:4.250542pt;}
.wsdd{word-spacing:4.250709pt;}
.wse1{word-spacing:4.250720pt;}
.ws179{word-spacing:4.251664pt;}
.wsd8{word-spacing:4.356977pt;}
.ws1a5{word-spacing:4.378242pt;}
.ws6f{word-spacing:4.410111pt;}
.ws4e{word-spacing:4.569332pt;}
.wsa2{word-spacing:4.569512pt;}
.ws196{word-spacing:4.590778pt;}
.ws8c{word-spacing:4.622646pt;}
.ws9b{word-spacing:4.675780pt;}
.ws1c0{word-spacing:4.718299pt;}
.ws11e{word-spacing:4.728914pt;}
.ws1d3{word-spacing:4.760806pt;}
.ws154{word-spacing:4.782080pt;}
.ws53{word-spacing:4.782132pt;}
.ws1ab{word-spacing:4.803314pt;}
.ws16{word-spacing:4.829866pt;}
.ws148{word-spacing:4.888316pt;}
.ws84{word-spacing:4.941449pt;}
.ws18c{word-spacing:4.973342pt;}
.ws5c{word-spacing:4.994583pt;}
.ws1cd{word-spacing:5.015850pt;}
.ws1a9{word-spacing:5.058357pt;}
.ws120{word-spacing:5.100851pt;}
.ws27{word-spacing:5.101065pt;}
.ws130{word-spacing:5.207119pt;}
.ws7a{word-spacing:5.260253pt;}
.ws98{word-spacing:5.270893pt;}
.wse4{word-spacing:5.272354pt;}
.ws97{word-spacing:5.307526pt;}
.ws99{word-spacing:5.312427pt;}
.ws3d{word-spacing:5.313332pt;}
.ws63{word-spacing:5.313387pt;}
.wse0{word-spacing:5.313400pt;}
.ws114{word-spacing:5.419654pt;}
.ws1c4{word-spacing:5.440922pt;}
.ws7f{word-spacing:5.472788pt;}
.wsb4{word-spacing:5.486500pt;}
.ws10{word-spacing:5.499200pt;}
.ws15a{word-spacing:5.525922pt;}
.ws4a{word-spacing:5.578932pt;}
.ws1a3{word-spacing:5.610950pt;}
.ws6c{word-spacing:5.632190pt;}
.ws1d1{word-spacing:5.695965pt;}
.ws94{word-spacing:5.791591pt;}
.ws1b5{word-spacing:5.823486pt;}
.ws1{word-spacing:5.844675pt;}
.wseb{word-spacing:5.844725pt;}
.ws17c{word-spacing:5.951008pt;}
.ws18{word-spacing:5.977600pt;}
.ws23{word-spacing:6.003999pt;}
.ws162{word-spacing:6.004127pt;}
.ws13e{word-spacing:6.057261pt;}
.wsba{word-spacing:6.110395pt;}
.ws13c{word-spacing:6.163528pt;}
.ws116{word-spacing:6.174155pt;}
.ws42{word-spacing:6.269599pt;}
.ws9c{word-spacing:6.269796pt;}
.ws1cb{word-spacing:6.291066pt;}
.ws82{word-spacing:6.322930pt;}
.ws43{word-spacing:6.322932pt;}
.ws10b{word-spacing:6.333557pt;}
.ws14{word-spacing:6.360000pt;}
.ws16a{word-spacing:6.366801pt;}
.ws16c{word-spacing:6.376080pt;}
.ws3b{word-spacing:6.429065pt;}
.ws187{word-spacing:6.461094pt;}
.ws11b{word-spacing:6.482332pt;}
.ws134{word-spacing:6.588599pt;}
.wsef{word-spacing:6.599226pt;}
.wsb9{word-spacing:6.641733pt;}
.wsdf{word-spacing:6.694867pt;}
.ws58{word-spacing:6.695199pt;}
.ws8a{word-spacing:6.748001pt;}
.ws15c{word-spacing:6.854269pt;}
.ws1d5{word-spacing:6.886166pt;}
.ws139{word-spacing:6.907402pt;}
.wsd{word-spacing:6.934400pt;}
.ws172{word-spacing:6.971181pt;}
.ws12c{word-spacing:7.013670pt;}
.ws12{word-spacing:7.029867pt;}
.ws136{word-spacing:7.066804pt;}
.ws1c6{word-spacing:7.120019pt;}
.ws1a2{word-spacing:7.141210pt;}
.ws6a{word-spacing:7.173072pt;}
.ws12a{word-spacing:7.279340pt;}
.ws1ce{word-spacing:7.311238pt;}
.ws32{word-spacing:7.311341pt;}
.ws83{word-spacing:7.332473pt;}
.ws11{word-spacing:7.364266pt;}
.ws7e{word-spacing:7.385607pt;}
.ws78{word-spacing:7.438741pt;}
.ws183{word-spacing:7.523774pt;}
.ws1ba{word-spacing:7.566282pt;}
.ws13f{word-spacing:7.598143pt;}
.ws95{word-spacing:7.704410pt;}
.ws64{word-spacing:7.810678pt;}
.ws34{word-spacing:7.810932pt;}
.ws17b{word-spacing:7.821325pt;}
.wsb0{word-spacing:7.863812pt;}
.ws1e{word-spacing:7.917065pt;}
.ws1aa{word-spacing:7.948846pt;}
.ws86{word-spacing:7.970080pt;}
.ws44{word-spacing:8.023198pt;}
.ws8b{word-spacing:8.023214pt;}
.ws1a7{word-spacing:8.033861pt;}
.ws121{word-spacing:8.129481pt;}
.wsbb{word-spacing:8.288883pt;}
.ws76{word-spacing:8.395151pt;}
.wsf5{word-spacing:8.448285pt;}
.wsa{word-spacing:8.512000pt;}
.ws1ca{word-spacing:8.595932pt;}
.ws1ac{word-spacing:8.628962pt;}
.wsa0{word-spacing:8.660820pt;}
.ws22{word-spacing:8.661065pt;}
.wsd4{word-spacing:8.713954pt;}
.ws10c{word-spacing:8.739834pt;}
.ws19b{word-spacing:8.756483pt;}
.ws10e{word-spacing:8.767088pt;}
.ws49{word-spacing:8.767199pt;}
.wscc{word-spacing:8.820222pt;}
.wsee{word-spacing:8.873356pt;}
.ws15f{word-spacing:8.926489pt;}
.ws163{word-spacing:8.979623pt;}
.ws1dc{word-spacing:9.011526pt;}
.ws13{word-spacing:9.085866pt;}
.ws14b{word-spacing:9.085891pt;}
.ws93{word-spacing:9.139025pt;}
.ws188{word-spacing:9.224062pt;}
.wsb8{word-spacing:9.245293pt;}
.wsbd{word-spacing:9.298426pt;}
.ws178{word-spacing:9.351584pt;}
.ws192{word-spacing:9.479106pt;}
.ws79{word-spacing:9.564096pt;}
.wsa1{word-spacing:9.617230pt;}
.wsa6{word-spacing:9.681781pt;}
.ws36{word-spacing:9.723465pt;}
.ws100{word-spacing:9.776631pt;}
.ws15b{word-spacing:9.829765pt;}
.wsc1{word-spacing:9.882899pt;}
.ws2e{word-spacing:9.903873pt;}
.ws56{word-spacing:9.989065pt;}
.ws1d7{word-spacing:10.074206pt;}
.ws7c{word-spacing:10.095434pt;}
.ws1b9{word-spacing:10.116714pt;}
.ws39{word-spacing:10.148532pt;}
.ws10f{word-spacing:10.187608pt;}
.ws173{word-spacing:10.201728pt;}
.ws18a{word-spacing:10.244235pt;}
.ws91{word-spacing:10.254836pt;}
.ws19c{word-spacing:10.286742pt;}
.ws1bc{word-spacing:10.305653pt;}
.wsd6{word-spacing:10.307970pt;}
.ws137{word-spacing:10.414238pt;}
.ws4c{word-spacing:10.467465pt;}
.ws11a{word-spacing:10.573639pt;}
.wse3{word-spacing:10.626773pt;}
.ws0{word-spacing:10.626932pt;}
.ws19{word-spacing:10.627465pt;}
.ws131{word-spacing:10.679907pt;}
.wsfb{word-spacing:10.733041pt;}
.ws1f{word-spacing:10.892531pt;}
.ws31{word-spacing:10.924139pt;}
.wsec{word-spacing:10.945576pt;}
.wsb7{word-spacing:11.104978pt;}
.wsbc{word-spacing:11.158112pt;}
.ws77{word-spacing:11.211246pt;}
.ws12b{word-spacing:11.264379pt;}
.ws1c{word-spacing:11.529865pt;}
.ws109{word-spacing:11.530049pt;}
.ws145{word-spacing:11.636317pt;}
.ws17f{word-spacing:11.689480pt;}
.wsa3{word-spacing:11.742584pt;}
.ws13b{word-spacing:11.901986pt;}
.ws7{word-spacing:11.907199pt;}
.ws166{word-spacing:11.944523pt;}
.wsc6{word-spacing:11.955120pt;}
.wsc{word-spacing:11.955200pt;}
.ws8e{word-spacing:12.008254pt;}
.ws103{word-spacing:12.061355pt;}
.ws1da{word-spacing:12.072045pt;}
.ws175{word-spacing:12.157059pt;}
.ws1a0{word-spacing:12.199566pt;}
.ws15d{word-spacing:12.220789pt;}
.ws45{word-spacing:12.221065pt;}
.ws3c{word-spacing:12.273865pt;}
.ws1b3{word-spacing:12.284581pt;}
.ws165{word-spacing:12.380191pt;}
.ws37{word-spacing:12.433332pt;}
.ws26{word-spacing:12.539465pt;}
.ws9e{word-spacing:12.539592pt;}
.wsb{word-spacing:12.577066pt;}
.ws142{word-spacing:12.645860pt;}
.ws1bb{word-spacing:12.667146pt;}
.ws65{word-spacing:12.698994pt;}
.ws3a{word-spacing:12.752265pt;}
.ws11f{word-spacing:12.805262pt;}
.ws184{word-spacing:12.879682pt;}
.ws2f{word-spacing:12.879872pt;}
.ws132{word-spacing:12.964663pt;}
.ws68{word-spacing:13.017797pt;}
.ws16f{word-spacing:13.049710pt;}
.wsf4{word-spacing:13.070931pt;}
.ws50{word-spacing:13.123998pt;}
.wse9{word-spacing:13.124065pt;}
.ws194{word-spacing:13.177232pt;}
.ws14f{word-spacing:13.283466pt;}
.ws92{word-spacing:13.336600pt;}
.ws15{word-spacing:13.341866pt;}
.wsc0{word-spacing:13.389734pt;}
.ws6{word-spacing:13.437866pt;}
.ws151{word-spacing:13.496002pt;}
.ws119{word-spacing:13.549136pt;}
.ws6d{word-spacing:13.602270pt;}
.ws181{word-spacing:13.602304pt;}
.ws1a{word-spacing:13.602398pt;}
.ws3e{word-spacing:13.655198pt;}
.ws87{word-spacing:13.655403pt;}
.wsab{word-spacing:13.699834pt;}
.wsac{word-spacing:13.708537pt;}
.ws140{word-spacing:13.761671pt;}
.ws17{word-spacing:13.772266pt;}
.ws176{word-spacing:13.814840pt;}
.ws18f{word-spacing:13.857347pt;}
.ws19a{word-spacing:13.942362pt;}
.ws3f{word-spacing:13.974131pt;}
.ws1b4{word-spacing:13.984869pt;}
.wsd7{word-spacing:14.027340pt;}
.ws198{word-spacing:14.069883pt;}
.ws13a{word-spacing:14.133608pt;}
.ws4d{word-spacing:14.239731pt;}
.ws108{word-spacing:14.239876pt;}
.wsfc{word-spacing:14.293010pt;}
.ws15e{word-spacing:14.346144pt;}
.ws33{word-spacing:14.399198pt;}
.wse8{word-spacing:14.399278pt;}
.wsb2{word-spacing:14.428664pt;}
.ws1b7{word-spacing:14.452448pt;}
.ws21{word-spacing:14.558665pt;}
.ws126{word-spacing:14.558679pt;}
.ws138{word-spacing:14.611813pt;}
.wscd{word-spacing:14.636898pt;}
.ws16d{word-spacing:14.664984pt;}
.wsde{word-spacing:14.718081pt;}
.ws19e{word-spacing:14.835013pt;}
.ws123{word-spacing:14.877482pt;}
.ws62{word-spacing:14.930616pt;}
.ws8d{word-spacing:14.983750pt;}
.wsd3{word-spacing:15.249419pt;}
.ws1c1{word-spacing:15.302592pt;}
.ws38{word-spacing:15.408798pt;}
.ws141{word-spacing:15.461955pt;}
.wsfe{word-spacing:15.515089pt;}
.wsaf{word-spacing:15.553999pt;}
.ws18b{word-spacing:15.557635pt;}
.wsad{word-spacing:15.562056pt;}
.wsf1{word-spacing:15.568223pt;}
.ws69{word-spacing:15.621356pt;}
.ws1d2{word-spacing:15.727664pt;}
.ws29{word-spacing:15.780532pt;}
.wsd5{word-spacing:15.887026pt;}
.ws48{word-spacing:15.887198pt;}
.ws96{word-spacing:15.940160pt;}
.wse7{word-spacing:15.993293pt;}
.ws1c5{word-spacing:16.025214pt;}
.wsa4{word-spacing:16.205829pt;}
.ws66{word-spacing:16.258963pt;}
.wsf9{word-spacing:16.312097pt;}
.ws8f{word-spacing:16.471498pt;}
.ws17d{word-spacing:16.535301pt;}
.ws157{word-spacing:16.684034pt;}
.ws12f{word-spacing:16.737168pt;}
.ws81{word-spacing:16.843435pt;}
.ws118{word-spacing:16.896569pt;}
.wsed{word-spacing:16.949703pt;}
.ws16b{word-spacing:16.960373pt;}
.ws186{word-spacing:17.045387pt;}
.ws5d{word-spacing:17.162239pt;}
.ws51{word-spacing:17.215198pt;}
.wsf7{word-spacing:17.425894pt;}
.wsf8{word-spacing:17.427908pt;}
.ws1c2{word-spacing:17.427952pt;}
.ws19f{word-spacing:17.512966pt;}
.ws171{word-spacing:17.555474pt;}
.ws115{word-spacing:17.635077pt;}
.wsdb{word-spacing:17.640443pt;}
.ws1c7{word-spacing:17.725502pt;}
.ws8{word-spacing:17.741333pt;}
.ws67{word-spacing:17.852979pt;}
.ws2a{word-spacing:17.853064pt;}
.ws158{word-spacing:17.959246pt;}
.wsda{word-spacing:18.012380pt;}
.ws20{word-spacing:18.012531pt;}
.wsd9{word-spacing:18.065514pt;}
.ws25{word-spacing:18.224798pt;}
.wsea{word-spacing:18.490585pt;}
.ws4f{word-spacing:18.543665pt;}
.ws7d{word-spacing:18.543719pt;}
.ws52{word-spacing:18.755998pt;}
.ws46{word-spacing:18.862665pt;}
.ws28{word-spacing:18.915464pt;}
.wsff{word-spacing:18.926283pt;}
.wsb5{word-spacing:18.968790pt;}
.ws1b{word-spacing:19.021597pt;}
.ws35{word-spacing:19.022131pt;}
.wscb{word-spacing:19.128192pt;}
.ws1ad{word-spacing:19.170747pt;}
.ws152{word-spacing:19.181325pt;}
.ws150{word-spacing:19.340727pt;}
.ws1db{word-spacing:19.340776pt;}
.ws1ae{word-spacing:19.680834pt;}
.ws1d{word-spacing:19.765598pt;}
.ws133{word-spacing:19.818932pt;}
.ws9{word-spacing:19.893333pt;}
.wsb1{word-spacing:20.047819pt;}
.ws12e{word-spacing:20.562806pt;}
.ws170{word-spacing:20.701006pt;}
.wsf6{word-spacing:20.775341pt;}
.ws1dd{word-spacing:20.786021pt;}
.ws19d{word-spacing:20.871035pt;}
.ws1bd{word-spacing:20.913542pt;}
.wsce{word-spacing:21.426232pt;}
.wse{word-spacing:21.567466pt;}
.ws180{word-spacing:22.231266pt;}
.ws1a1{word-spacing:22.783859pt;}
.ws3{word-spacing:23.049599pt;}
.ws5{word-spacing:23.384533pt;}
.ws185{word-spacing:23.463974pt;}
.ws190{word-spacing:24.441640pt;}
.ws10d{word-spacing:24.637941pt;}
.ws113{word-spacing:26.093943pt;}
.wsd2{word-spacing:26.354397pt;}
.wsd1{word-spacing:26.361164pt;}
.ws12d{word-spacing:26.513799pt;}
.ws177{word-spacing:28.479824pt;}
.ws1c8{word-spacing:41.487027pt;}
.ws1af{word-spacing:53.176507pt;}
.wsd0{word-spacing:56.247118pt;}
.ws1b0{word-spacing:63.760800pt;}
.wsca{word-spacing:117.703113pt;}
.ws156{word-spacing:170.395672pt;}
.wsaa{word-spacing:174.300663pt;}
.ws155{word-spacing:202.293408pt;}
._1d{margin-left:-47.891341pt;}
._13{margin-left:-41.316417pt;}
._1c{margin-left:-39.249599pt;}
._18{margin-left:-36.659461pt;}
._1a{margin-left:-26.564026pt;}
._1b{margin-left:-23.801743pt;}
._16{margin-left:-13.281599pt;}
._1{margin-left:-7.821866pt;}
._2{margin-left:-6.487465pt;}
._2e{margin-left:-5.568374pt;}
._7{margin-left:-4.677333pt;}
._3{margin-left:-2.979191pt;}
._0{margin-left:-1.700266pt;}
._d{width:1.139716pt;}
._c{width:2.656693pt;}
._e{width:3.772504pt;}
._19{width:5.848946pt;}
._4{width:8.123477pt;}
._8{width:12.167466pt;}
._2c{width:13.644789pt;}
._1e{width:14.605591pt;}
._15{width:15.662243pt;}
._6{width:17.406933pt;}
._f{width:18.872593pt;}
._5{width:20.132799pt;}
._2f{width:21.724844pt;}
._9{width:22.847465pt;}
._17{width:23.824223pt;}
._b{width:25.397988pt;}
._a{width:26.566931pt;}
._14{width:28.591324pt;}
._12{width:30.023740pt;}
._1f{width:33.106093pt;}
._21{width:36.666911pt;}
._2b{width:41.867712pt;}
._20{width:42.813865pt;}
._2d{width:43.903202pt;}
._2a{width:49.560354pt;}
._29{width:51.811541pt;}
._10{width:63.038155pt;}
._22{width:66.736019pt;}
._23{width:124.881705pt;}
._11{width:208.200266pt;}
._24{width:229.480379pt;}
._27{width:233.449505pt;}
._25{width:278.371166pt;}
._28{width:282.340293pt;}
._26{width:454.828055pt;}
.fsb{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fsa{font-size:37.193600pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:42.507147pt;}
.fs9{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs8{font-size:53.133865pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.447413pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:29.210667pt;}
.y69{bottom:35.733333pt;}
.y68{bottom:48.533333pt;}
.y65{bottom:80.630627pt;}
.y37{bottom:80.630640pt;}
.y103{bottom:80.630647pt;}
.y13a{bottom:80.630655pt;}
.y1ad{bottom:80.630658pt;}
.y1ba{bottom:80.630660pt;}
.ydd{bottom:80.630669pt;}
.ya3{bottom:80.630685pt;}
.y1ff{bottom:80.630701pt;}
.y198{bottom:80.630705pt;}
.y36{bottom:92.586640pt;}
.y1fe{bottom:92.586701pt;}
.y64{bottom:96.570627pt;}
.y102{bottom:96.570647pt;}
.y139{bottom:96.570655pt;}
.y1ac{bottom:96.570658pt;}
.y1b9{bottom:96.570660pt;}
.ydc{bottom:96.570669pt;}
.ya2{bottom:96.570685pt;}
.y197{bottom:96.570705pt;}
.y1fd{bottom:104.541367pt;}
.y35{bottom:108.291973pt;}
.y101{bottom:112.510647pt;}
.y138{bottom:112.510655pt;}
.y1ab{bottom:112.510658pt;}
.y1b8{bottom:112.510660pt;}
.ydb{bottom:112.510669pt;}
.ya1{bottom:112.510685pt;}
.y196{bottom:112.510705pt;}
.y63{bottom:112.710613pt;}
.y1fc{bottom:116.497367pt;}
.y34{bottom:117.014640pt;}
.ya0{bottom:128.450685pt;}
.y195{bottom:128.450705pt;}
.y100{bottom:128.451981pt;}
.y137{bottom:128.451988pt;}
.y1aa{bottom:128.451992pt;}
.y1b7{bottom:128.451993pt;}
.y62{bottom:128.650613pt;}
.y1fb{bottom:128.796033pt;}
.yda{bottom:131.553336pt;}
.y33{bottom:132.719960pt;}
.y1fa{bottom:140.750700pt;}
.y32{bottom:141.442627pt;}
.y194{bottom:144.390705pt;}
.yff{bottom:144.391981pt;}
.y136{bottom:144.391988pt;}
.y1a9{bottom:144.391992pt;}
.y1b6{bottom:144.391993pt;}
.y9f{bottom:144.392018pt;}
.y61{bottom:144.590613pt;}
.yd7{bottom:147.065336pt;}
.y1f9{bottom:153.049366pt;}
.y31{bottom:153.397293pt;}
.yd9{bottom:159.685336pt;}
.yfe{bottom:160.331981pt;}
.y135{bottom:160.331988pt;}
.y1a8{bottom:160.331992pt;}
.y9e{bottom:160.332018pt;}
.y193{bottom:160.332038pt;}
.y60{bottom:160.530613pt;}
.yd8{bottom:163.670669pt;}
.y1f8{bottom:165.004032pt;}
.y30{bottom:165.353293pt;}
.y1b5{bottom:169.699993pt;}
.y243{bottom:172.288043pt;}
.yfd{bottom:176.271981pt;}
.y134{bottom:176.271988pt;}
.y1a7{bottom:176.271992pt;}
.y9d{bottom:176.272018pt;}
.y192{bottom:176.272038pt;}
.y5f{bottom:176.470613pt;}
.y1f7{bottom:176.960032pt;}
.y6a{bottom:178.890667pt;}
.y2f{bottom:181.058627pt;}
.yd6{bottom:182.925336pt;}
.y242{bottom:184.242709pt;}
.y1f6{bottom:188.914698pt;}
.y2e{bottom:189.781293pt;}
.yfc{bottom:192.211981pt;}
.y133{bottom:192.211988pt;}
.y1a6{bottom:192.211992pt;}
.y9c{bottom:192.212018pt;}
.y191{bottom:192.212038pt;}
.y5e{bottom:192.411947pt;}
.y241{bottom:196.198709pt;}
.yd5{bottom:198.865336pt;}
.y1f5{bottom:201.213365pt;}
.y1b4{bottom:201.949327pt;}
.y132{bottom:208.151988pt;}
.y9b{bottom:208.152018pt;}
.y190{bottom:208.152038pt;}
.yfb{bottom:208.153314pt;}
.y1a5{bottom:208.153325pt;}
.y240{bottom:208.153375pt;}
.y5d{bottom:208.351947pt;}
.y1f4{bottom:213.168031pt;}
.yd4{bottom:214.806669pt;}
.y2d{bottom:216.323960pt;}
.y1b3{bottom:217.889327pt;}
.y23f{bottom:220.109375pt;}
.y131{bottom:220.809321pt;}
.y9a{bottom:224.092018pt;}
.y18f{bottom:224.092038pt;}
.yfa{bottom:224.093314pt;}
.y130{bottom:224.093321pt;}
.y1a4{bottom:224.093325pt;}
.y165{bottom:224.093351pt;}
.y5c{bottom:224.291947pt;}
.y1f3{bottom:225.124031pt;}
.yd3{bottom:230.746669pt;}
.y23e{bottom:232.064042pt;}
.y2c{bottom:232.263960pt;}
.y1b2{bottom:233.829327pt;}
.y1f2{bottom:237.421364pt;}
.y18e{bottom:240.032038pt;}
.yf9{bottom:240.033314pt;}
.y1a3{bottom:240.033325pt;}
.y99{bottom:240.033351pt;}
.y5b{bottom:240.231947pt;}
.y23d{bottom:244.018708pt;}
.yd2{bottom:246.686669pt;}
.y2b{bottom:248.203960pt;}
.y12f{bottom:248.490654pt;}
.y1f1{bottom:249.377364pt;}
.y1b1{bottom:249.770660pt;}
.y12e{bottom:251.774654pt;}
.yf8{bottom:255.973314pt;}
.y1a2{bottom:255.973325pt;}
.y98{bottom:255.973351pt;}
.y18d{bottom:255.973372pt;}
.y23c{bottom:255.974708pt;}
.y5a{bottom:256.171947pt;}
.y164{bottom:256.412018pt;}
.y1f0{bottom:261.332030pt;}
.yd1{bottom:262.566669pt;}
.y2a{bottom:264.145293pt;}
.y1b0{bottom:265.710660pt;}
.y23b{bottom:267.929374pt;}
.yf7{bottom:271.913314pt;}
.y18c{bottom:271.913372pt;}
.y59{bottom:272.111947pt;}
.y163{bottom:272.352018pt;}
.y1ef{bottom:273.288030pt;}
.y97{bottom:276.748018pt;}
.yd0{bottom:278.506669pt;}
.y12d{bottom:279.455987pt;}
.y23a{bottom:279.884040pt;}
.y29{bottom:280.085293pt;}
.y1a1{bottom:281.650658pt;}
.y1af{bottom:281.650660pt;}
.y1ee{bottom:285.585363pt;}
.yf6{bottom:287.853314pt;}
.y18b{bottom:287.853372pt;}
.y58{bottom:288.053280pt;}
.y162{bottom:288.293351pt;}
.y239{bottom:291.840040pt;}
.ycf{bottom:294.446669pt;}
.y28{bottom:296.025293pt;}
.y1ed{bottom:297.541363pt;}
.y1a0{bottom:297.590658pt;}
.y1ae{bottom:297.590660pt;}
.y96{bottom:303.236017pt;}
.yf5{bottom:303.794647pt;}
.y238{bottom:303.794706pt;}
.y161{bottom:304.233351pt;}
.y12c{bottom:304.478653pt;}
.y12b{bottom:307.762653pt;}
.y57{bottom:308.874613pt;}
.y1ec{bottom:309.496029pt;}
.yce{bottom:310.386669pt;}
.y27{bottom:311.965293pt;}
.y18a{bottom:312.673371pt;}
.y237{bottom:315.750706pt;}
.y95{bottom:319.176017pt;}
.yf4{bottom:319.734647pt;}
.y160{bottom:320.173351pt;}
.y1eb{bottom:321.794696pt;}
.ycd{bottom:326.326669pt;}
.y236{bottom:327.705372pt;}
.y26{bottom:327.905293pt;}
.y1ea{bottom:333.750696pt;}
.y94{bottom:335.116017pt;}
.y12a{bottom:335.443986pt;}
.y56{bottom:335.474613pt;}
.yf3{bottom:335.674647pt;}
.y15f{bottom:336.113351pt;}
.y235{bottom:339.660038pt;}
.ycc{bottom:342.268003pt;}
.y25{bottom:343.845293pt;}
.y189{bottom:344.230704pt;}
.y1e9{bottom:345.705362pt;}
.y93{bottom:351.056017pt;}
.y129{bottom:351.383986pt;}
.y55{bottom:351.414613pt;}
.yf2{bottom:351.614647pt;}
.y234{bottom:351.616038pt;}
.y15e{bottom:352.053351pt;}
.y1e8{bottom:357.660028pt;}
.ycb{bottom:358.208003pt;}
.y24{bottom:359.786627pt;}
.y188{bottom:360.170704pt;}
.y19f{bottom:360.289347pt;}
.y233{bottom:363.570705pt;}
.y92{bottom:366.997350pt;}
.y128{bottom:367.323986pt;}
.y54{bottom:367.355947pt;}
.y15d{bottom:367.993351pt;}
.y1e7{bottom:369.958695pt;}
.yf1{bottom:371.295980pt;}
.y232{bottom:375.525371pt;}
.y23{bottom:375.726627pt;}
.yca{bottom:376.069336pt;}
.y187{bottom:376.112037pt;}
.yef{bottom:380.408021pt;}
.y1e6{bottom:381.914695pt;}
.y91{bottom:382.937350pt;}
.y127{bottom:383.263986pt;}
.y53{bottom:383.295947pt;}
.yc9{bottom:386.095988pt;}
.y19e{bottom:387.387980pt;}
.y231{bottom:387.481371pt;}
.y15c{bottom:389.142684pt;}
.yf0{bottom:389.394687pt;}
.yc7{bottom:390.989334pt;}
.y22{bottom:391.666627pt;}
.y186{bottom:392.052037pt;}
.y1e5{bottom:393.869361pt;}
.yc8{bottom:396.169352pt;}
.y90{bottom:398.877350pt;}
.y126{bottom:399.205319pt;}
.y52{bottom:399.235947pt;}
.y230{bottom:399.436037pt;}
.y1e4{bottom:406.168028pt;}
.yee{bottom:406.452021pt;}
.y21{bottom:407.606627pt;}
.y185{bottom:407.992037pt;}
.y22f{bottom:411.390703pt;}
.y19d{bottom:414.485352pt;}
.y8f{bottom:414.817350pt;}
.y125{bottom:415.145319pt;}
.y51{bottom:415.175947pt;}
.y15b{bottom:416.537350pt;}
.y1e3{bottom:418.122694pt;}
.yc6{bottom:421.433334pt;}
.y22e{bottom:423.346703pt;}
.y20{bottom:423.546627pt;}
.y184{bottom:423.932037pt;}
.yed{bottom:430.073353pt;}
.y1e2{bottom:430.078694pt;}
.y8e{bottom:430.757350pt;}
.y124{bottom:431.085319pt;}
.y50{bottom:431.115947pt;}
.y15a{bottom:432.477350pt;}
.y22d{bottom:435.301369pt;}
.yc5{bottom:437.373334pt;}
.y1f{bottom:439.486627pt;}
.y183{bottom:439.872037pt;}
.y1e1{bottom:442.033360pt;}
.yec{bottom:446.013353pt;}
.y8d{bottom:446.697350pt;}
.y123{bottom:447.025319pt;}
.y4f{bottom:447.055947pt;}
.y22c{bottom:447.257369pt;}
.y159{bottom:448.418684pt;}
.yc4{bottom:453.313334pt;}
.y1e0{bottom:454.332026pt;}
.y1e{bottom:455.427960pt;}
.y182{bottom:455.812037pt;}
.y19c{bottom:457.524012pt;}
.y22b{bottom:459.212035pt;}
.yeb{bottom:461.954687pt;}
.y8c{bottom:462.824017pt;}
.y122{bottom:462.965319pt;}
.y4e{bottom:462.997280pt;}
.y158{bottom:464.358684pt;}
.y1df{bottom:466.286693pt;}
.yc3{bottom:469.254667pt;}
.y22a{bottom:471.166701pt;}
.y1d{bottom:471.367960pt;}
.y181{bottom:471.753370pt;}
.yea{bottom:477.894687pt;}
.y1de{bottom:478.242693pt;}
.y8b{bottom:478.764017pt;}
.y121{bottom:478.905319pt;}
.y4d{bottom:478.937280pt;}
.y157{bottom:480.298684pt;}
.y229{bottom:483.122701pt;}
.yc2{bottom:485.194667pt;}
.y1c{bottom:487.307960pt;}
.y180{bottom:487.693370pt;}
.y19b{bottom:489.405345pt;}
.y1dd{bottom:490.197359pt;}
.ye9{bottom:493.834687pt;}
.y8a{bottom:494.704017pt;}
.y120{bottom:494.846653pt;}
.y4c{bottom:494.877280pt;}
.y228{bottom:495.077367pt;}
.y156{bottom:496.238684pt;}
.y1dc{bottom:502.496025pt;}
.yc1{bottom:502.908000pt;}
.y17f{bottom:503.633370pt;}
.y227{bottom:507.032034pt;}
.y1b{bottom:508.503960pt;}
.y89{bottom:510.645350pt;}
.y11f{bottom:510.786653pt;}
.y4b{bottom:511.017280pt;}
.ybf{bottom:512.018703pt;}
.y155{bottom:512.178684pt;}
.y19a{bottom:512.518677pt;}
.ye8{bottom:512.612020pt;}
.y1db{bottom:514.450692pt;}
.y226{bottom:518.988034pt;}
.y17e{bottom:519.573370pt;}
.yc0{bottom:521.005370pt;}
.ye6{bottom:521.724033pt;}
.y1da{bottom:526.406692pt;}
.y88{bottom:526.585350pt;}
.y11e{bottom:526.726653pt;}
.y4a{bottom:526.957280pt;}
.y154{bottom:528.118684pt;}
.ye7{bottom:530.710700pt;}
.y225{bottom:530.942700pt;}
.y1a{bottom:534.926627pt;}
.y17d{bottom:535.513370pt;}
.y1d9{bottom:538.361358pt;}
.y87{bottom:542.525350pt;}
.y11d{bottom:542.666653pt;}
.y49{bottom:542.897280pt;}
.y224{bottom:542.898700pt;}
.y153{bottom:544.060017pt;}
.ybe{bottom:546.110703pt;}
.y19{bottom:548.210627pt;}
.y1d8{bottom:550.660024pt;}
.y17c{bottom:551.453370pt;}
.y223{bottom:554.853366pt;}
.ye5{bottom:555.586699pt;}
.y86{bottom:558.465350pt;}
.y11c{bottom:558.606653pt;}
.y48{bottom:558.837280pt;}
.y152{bottom:560.000017pt;}
.y18{bottom:561.494627pt;}
.ybd{bottom:562.050703pt;}
.y1d7{bottom:562.614690pt;}
.y222{bottom:566.808032pt;}
.y17b{bottom:567.394704pt;}
.ye4{bottom:571.526699pt;}
.y85{bottom:574.405350pt;}
.y11b{bottom:574.546653pt;}
.y1d6{bottom:574.570690pt;}
.y47{bottom:574.777280pt;}
.y17{bottom:574.777293pt;}
.y151{bottom:575.940017pt;}
.ybc{bottom:577.990703pt;}
.y221{bottom:578.764032pt;}
.y17a{bottom:583.334704pt;}
.y1d5{bottom:586.525357pt;}
.ye3{bottom:587.466699pt;}
.y16{bottom:588.061293pt;}
.y84{bottom:590.346684pt;}
.y11a{bottom:590.487986pt;}
.y46{bottom:590.717280pt;}
.y220{bottom:590.718698pt;}
.y150{bottom:591.880017pt;}
.ybb{bottom:593.930703pt;}
.y1d4{bottom:598.824023pt;}
.y179{bottom:600.057370pt;}
.y15{bottom:601.345293pt;}
.y21f{bottom:602.673364pt;}
.ye2{bottom:603.406699pt;}
.y83{bottom:606.286684pt;}
.y119{bottom:606.427986pt;}
.y45{bottom:606.658613pt;}
.y14f{bottom:607.820017pt;}
.yba{bottom:609.870703pt;}
.y1d3{bottom:610.778689pt;}
.y14{bottom:614.627960pt;}
.y21e{bottom:614.629364pt;}
.y178{bottom:615.997370pt;}
.ye1{bottom:619.346699pt;}
.y82{bottom:622.226684pt;}
.y118{bottom:622.367986pt;}
.y44{bottom:622.598613pt;}
.y1d2{bottom:622.734689pt;}
.y14e{bottom:623.760017pt;}
.yb9{bottom:625.810703pt;}
.y21d{bottom:626.584030pt;}
.y13{bottom:627.911960pt;}
.y177{bottom:631.937370pt;}
.y1d1{bottom:634.689356pt;}
.ye0{bottom:635.288032pt;}
.y117{bottom:638.307986pt;}
.y81{bottom:638.352017pt;}
.y43{bottom:638.538613pt;}
.y21c{bottom:638.540030pt;}
.y14d{bottom:639.701350pt;}
.y12{bottom:641.195960pt;}
.yb8{bottom:641.752036pt;}
.y1d0{bottom:646.988022pt;}
.y176{bottom:647.877370pt;}
.y21b{bottom:650.494697pt;}
.ydf{bottom:651.228032pt;}
.y116{bottom:654.247986pt;}
.y80{bottom:654.293350pt;}
.y42{bottom:654.478613pt;}
.y11{bottom:654.478627pt;}
.y14c{bottom:655.641350pt;}
.yb7{bottom:657.692036pt;}
.y1cf{bottom:658.942688pt;}
.y21a{bottom:662.449363pt;}
.y175{bottom:663.818704pt;}
.y10{bottom:667.762627pt;}
.y115{bottom:670.187986pt;}
.y7f{bottom:670.233350pt;}
.y41{bottom:670.418613pt;}
.y1ce{bottom:670.898688pt;}
.y14b{bottom:671.581350pt;}
.yb6{bottom:673.632036pt;}
.y219{bottom:674.405363pt;}
.y174{bottom:679.758704pt;}
.yf{bottom:681.046627pt;}
.y1cd{bottom:683.197355pt;}
.y114{bottom:686.129319pt;}
.y7e{bottom:686.173350pt;}
.y40{bottom:686.359947pt;}
.y218{bottom:686.360029pt;}
.y14a{bottom:687.521350pt;}
.yb5{bottom:689.572036pt;}
.ye{bottom:694.329293pt;}
.y1cc{bottom:695.152021pt;}
.y173{bottom:695.698704pt;}
.yde{bottom:695.964030pt;}
.y217{bottom:698.314695pt;}
.y113{bottom:702.069319pt;}
.y7d{bottom:702.113350pt;}
.y3f{bottom:702.299947pt;}
.y149{bottom:703.461350pt;}
.yb4{bottom:705.512036pt;}
.y1cb{bottom:707.450688pt;}
.yd{bottom:707.613293pt;}
.y216{bottom:710.270695pt;}
.y172{bottom:711.638704pt;}
.y112{bottom:718.009319pt;}
.y7c{bottom:718.053350pt;}
.y3e{bottom:718.239947pt;}
.y148{bottom:719.401350pt;}
.y1ca{bottom:719.405354pt;}
.yc{bottom:720.897293pt;}
.yb3{bottom:721.452036pt;}
.y215{bottom:722.225361pt;}
.y171{bottom:727.578704pt;}
.y1c9{bottom:731.361354pt;}
.y111{bottom:733.949319pt;}
.y7b{bottom:733.994684pt;}
.y3d{bottom:734.179947pt;}
.yb{bottom:734.179960pt;}
.y214{bottom:734.180027pt;}
.y147{bottom:735.342684pt;}
.yb2{bottom:741.516036pt;}
.y1c8{bottom:743.316020pt;}
.y170{bottom:743.518704pt;}
.y213{bottom:746.136027pt;}
.ya{bottom:747.463960pt;}
.y110{bottom:749.889319pt;}
.y7a{bottom:749.934684pt;}
.y3c{bottom:750.119947pt;}
.y199{bottom:752.864014pt;}
.y1c7{bottom:755.614687pt;}
.y146{bottom:757.222684pt;}
.y212{bottom:758.090693pt;}
.y16f{bottom:759.460037pt;}
.y9{bottom:760.746627pt;}
.y10f{bottom:765.830653pt;}
.y79{bottom:765.874684pt;}
.y3b{bottom:766.059947pt;}
.yb1{bottom:766.060036pt;}
.y1c6{bottom:767.569353pt;}
.y211{bottom:770.046693pt;}
.y8{bottom:774.030627pt;}
.y16e{bottom:775.400037pt;}
.y1c5{bottom:779.525353pt;}
.y10e{bottom:781.770653pt;}
.y78{bottom:781.814684pt;}
.yb0{bottom:782.000036pt;}
.y3a{bottom:782.001280pt;}
.y210{bottom:782.001360pt;}
.y7{bottom:787.314627pt;}
.y145{bottom:788.801350pt;}
.y16d{bottom:791.340037pt;}
.y1c4{bottom:791.480019pt;}
.y20f{bottom:793.956026pt;}
.y77{bottom:797.754684pt;}
.yaf{bottom:797.940036pt;}
.y39{bottom:797.941280pt;}
.y6{bottom:800.597293pt;}
.y1c3{bottom:803.434685pt;}
.y144{bottom:804.741350pt;}
.y10d{bottom:805.641319pt;}
.y20e{bottom:805.912026pt;}
.y16c{bottom:807.280037pt;}
.y76{bottom:813.694684pt;}
.y38{bottom:813.881280pt;}
.y5{bottom:813.881293pt;}
.yae{bottom:813.881370pt;}
.y1c2{bottom:815.733352pt;}
.y20d{bottom:817.866692pt;}
.y143{bottom:820.682684pt;}
.y16b{bottom:823.220037pt;}
.y1c1{bottom:827.689352pt;}
.y75{bottom:829.821350pt;}
.y20c{bottom:829.821358pt;}
.yad{bottom:829.821370pt;}
.y142{bottom:836.622684pt;}
.y16a{bottom:839.160037pt;}
.y1c0{bottom:839.644018pt;}
.y20b{bottom:841.777358pt;}
.y74{bottom:845.761350pt;}
.yac{bottom:845.761370pt;}
.y1bf{bottom:851.942685pt;}
.y141{bottom:852.562684pt;}
.y20a{bottom:853.732024pt;}
.y169{bottom:855.101370pt;}
.y10c{bottom:855.126650pt;}
.y4{bottom:856.446627pt;}
.y73{bottom:861.701350pt;}
.yab{bottom:861.701370pt;}
.y1be{bottom:863.897351pt;}
.y209{bottom:865.688024pt;}
.y140{bottom:868.502684pt;}
.y168{bottom:871.041370pt;}
.y10b{bottom:871.066650pt;}
.y3{bottom:874.199960pt;}
.y1bd{bottom:875.853351pt;}
.yaa{bottom:877.641370pt;}
.y72{bottom:877.642684pt;}
.y208{bottom:877.642690pt;}
.y167{bottom:886.981370pt;}
.y1bc{bottom:887.808017pt;}
.y13f{bottom:888.666684pt;}
.y207{bottom:889.597356pt;}
.ya9{bottom:893.581370pt;}
.y71{bottom:893.582684pt;}
.y10a{bottom:897.235964pt;}
.y206{bottom:901.553356pt;}
.y13e{bottom:904.606684pt;}
.y109{bottom:909.190631pt;}
.y70{bottom:909.522684pt;}
.ya8{bottom:909.522703pt;}
.y166{bottom:909.844036pt;}
.y1bb{bottom:911.242684pt;}
.y205{bottom:913.508023pt;}
.y2{bottom:916.042627pt;}
.y13d{bottom:920.546684pt;}
.y108{bottom:921.145297pt;}
.y6f{bottom:925.462684pt;}
.y204{bottom:925.462689pt;}
.ya7{bottom:925.462703pt;}
.y107{bottom:933.101297pt;}
.y13c{bottom:936.486684pt;}
.y203{bottom:937.418689pt;}
.y6e{bottom:941.402684pt;}
.ya6{bottom:941.402703pt;}
.y1{bottom:942.609293pt;}
.y106{bottom:945.055963pt;}
.y13b{bottom:946.981350pt;}
.y202{bottom:949.373355pt;}
.y105{bottom:957.011963pt;}
.y6d{bottom:957.342684pt;}
.ya5{bottom:957.342703pt;}
.y201{bottom:961.329355pt;}
.ya4{bottom:973.282703pt;}
.y6c{bottom:973.284017pt;}
.y200{bottom:973.284021pt;}
.y104{bottom:975.906657pt;}
.y67{bottom:998.400000pt;}
.y66{bottom:1011.200000pt;}
.h17{height:0.000000pt;}
.h7{height:21.200555pt;}
.h29{height:25.589197pt;}
.h13{height:26.147101pt;}
.h16{height:26.519037pt;}
.h2d{height:29.159939pt;}
.h6{height:29.244917pt;}
.h1c{height:29.244954pt;}
.h2c{height:29.458287pt;}
.h1b{height:29.499997pt;}
.h8{height:29.840179pt;}
.hb{height:30.625000pt;}
.h2b{height:32.900710pt;}
.ha{height:33.000000pt;}
.h4{height:33.187635pt;}
.h3{height:33.426739pt;}
.he{height:36.449832pt;}
.h9{height:36.449833pt;}
.hd{height:36.556099pt;}
.h5{height:36.556100pt;}
.h2a{height:36.874903pt;}
.hf{height:38.043848pt;}
.hc{height:38.937500pt;}
.h15{height:39.850399pt;}
.h1d{height:40.071222pt;}
.h22{height:45.427101pt;}
.h28{height:45.432434pt;}
.h26{height:45.799037pt;}
.h21{height:45.804370pt;}
.h23{height:48.455037pt;}
.h2{height:49.381919pt;}
.h1f{height:52.015732pt;}
.h25{height:52.986399pt;}
.h1e{height:53.279732pt;}
.h20{height:53.285066pt;}
.h12{height:58.175732pt;}
.h27{height:58.935037pt;}
.h1{height:58.999994pt;}
.h24{height:61.591037pt;}
.h1a{height:72.320000pt;}
.h18{height:72.325333pt;}
.h19{height:73.004099pt;}
.h10{height:76.298399pt;}
.h11{height:86.973767pt;}
.h14{height:96.236099pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:23.466680pt;}
.x6{left:71.999987pt;}
.xc{left:77.567347pt;}
.x1d{left:80.871991pt;}
.x7{left:83.290640pt;}
.x5{left:85.283973pt;}
.x37{left:96.345327pt;}
.x30{left:98.143991pt;}
.x1{left:101.844000pt;}
.x33{left:106.073333pt;}
.x38{left:113.858660pt;}
.x1c{left:119.334668pt;}
.x1a{left:123.278670pt;}
.x2e{left:159.532002pt;}
.x39{left:165.649337pt;}
.x4{left:173.966667pt;}
.x2c{left:175.698671pt;}
.x19{left:183.089335pt;}
.x34{left:188.037333pt;}
.x31{left:192.277327pt;}
.x36{left:198.006663pt;}
.x2d{left:204.377337pt;}
.x2{left:239.885333pt;}
.x3{left:260.260000pt;}
.x1b{left:332.429333pt;}
.x1e{left:336.238655pt;}
.x1f{left:348.486654pt;}
.xa{left:399.397333pt;}
.x8{left:417.600000pt;}
.x9{left:430.884000pt;}
.x25{left:432.427977pt;}
.x32{left:434.812012pt;}
.xd{left:435.865350pt;}
.x11{left:438.449347pt;}
.x26{left:440.449305pt;}
.x3a{left:441.945343pt;}
.x27{left:448.039971pt;}
.x2f{left:473.550643pt;}
.xe{left:476.008005pt;}
.x2a{left:486.722647pt;}
.x21{left:490.108016pt;}
.x20{left:492.582682pt;}
.xf{left:497.186671pt;}
.x10{left:503.714681pt;}
.x35{left:522.870687pt;}
.x13{left:535.105347pt;}
.x14{left:536.954671pt;}
.x15{left:547.114685pt;}
.x12{left:572.539998pt;}
.x16{left:573.469351pt;}
.x17{left:574.665351pt;}
.x18{left:597.262685pt;}
.x2b{left:636.571979pt;}
.x28{left:645.490636pt;}
.x22{left:651.741320pt;}
.x23{left:668.695987pt;}
.x29{left:679.522636pt;}
.x24{left:703.170652pt;}
}




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