
    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_9ca11000c58472847165b75c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_6a508092b5d1d02c8129ada6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_d4076e0122aac30cd14e0b81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_c196880d2817ca46d28494cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_1613387d330294a77069a30c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_eacdab20aa24a25f59b9a8a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915527;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_be52ca1c735ece8e55b88c1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ac016297804928c117cff04b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0865790e398fa72acfbdc8f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_16ef5b2891643a814747bdfe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_c005b7e1e8844f6ac0d78e1e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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;}
.m5{transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257144,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-19.872000px;}
.v2{vertical-align:-3.312000px;}
.v0{vertical-align:0.000000px;}
.ls10d{letter-spacing:-1.950106px;}
.ls14e{letter-spacing:-1.639440px;}
.ls35{letter-spacing:-1.523520px;}
.lsc6{letter-spacing:-1.462579px;}
.ls6e{letter-spacing:-1.401638px;}
.ls37{letter-spacing:-1.340698px;}
.ls38{letter-spacing:-1.279757px;}
.ls36{letter-spacing:-1.157875px;}
.ls12b{letter-spacing:-1.154563px;}
.lsfb{letter-spacing:-1.096934px;}
.lsc5{letter-spacing:-1.035994px;}
.ls34{letter-spacing:-0.975053px;}
.ls7b{letter-spacing:-0.943920px;}
.ls121{letter-spacing:-0.932659px;}
.ls39{letter-spacing:-0.914112px;}
.ls14b{letter-spacing:-0.894240px;}
.lsb2{letter-spacing:-0.879667px;}
.ls146{letter-spacing:-0.861120px;}
.ls17{letter-spacing:-0.853171px;}
.ls7e{letter-spacing:-0.844560px;}
.ls11d{letter-spacing:-0.816077px;}
.ls7f{letter-spacing:-0.794880px;}
.lse{letter-spacing:-0.792230px;}
.lsbb{letter-spacing:-0.769709px;}
.ls11e{letter-spacing:-0.757786px;}
.lsaa{letter-spacing:-0.745200px;}
.ls16{letter-spacing:-0.731290px;}
.ls7a{letter-spacing:-0.728640px;}
.lsad{letter-spacing:-0.714730px;}
.ls149{letter-spacing:-0.695520px;}
.ls11{letter-spacing:-0.670349px;}
.ls80{letter-spacing:-0.645840px;}
.ls10{letter-spacing:-0.609408px;}
.lsae{letter-spacing:-0.604771px;}
.ls142{letter-spacing:-0.596160px;}
.lsb4{letter-spacing:-0.549792px;}
.lsf{letter-spacing:-0.548467px;}
.ls119{letter-spacing:-0.496800px;}
.lsb0{letter-spacing:-0.494813px;}
.lsd{letter-spacing:-0.487526px;}
.ls14c{letter-spacing:-0.447120px;}
.ls12{letter-spacing:-0.426586px;}
.lsb1{letter-spacing:-0.384854px;}
.lsc{letter-spacing:-0.365645px;}
.ls111{letter-spacing:-0.355046px;}
.lsb7{letter-spacing:-0.329875px;}
.ls6d{letter-spacing:-0.304704px;}
.ls7c{letter-spacing:-0.298080px;}
.lsb8{letter-spacing:-0.274896px;}
.ls143{letter-spacing:-0.248400px;}
.ls13{letter-spacing:-0.243763px;}
.lsb3{letter-spacing:-0.219917px;}
.ls11a{letter-spacing:-0.198720px;}
.ls82{letter-spacing:-0.182822px;}
.ls113{letter-spacing:-0.177523px;}
.ls122{letter-spacing:-0.174874px;}
.lsb5{letter-spacing:-0.164938px;}
.ls147{letter-spacing:-0.149040px;}
.ls112{letter-spacing:-0.133142px;}
.ls145{letter-spacing:-0.132480px;}
.ls6c{letter-spacing:-0.121882px;}
.ls120{letter-spacing:-0.116582px;}
.lsb6{letter-spacing:-0.109958px;}
.ls14{letter-spacing:-0.060941px;}
.lsac{letter-spacing:-0.054979px;}
.lsb{letter-spacing:0.000000px;}
.ls141{letter-spacing:0.033120px;}
.ls14d{letter-spacing:0.049680px;}
.lsab{letter-spacing:0.054979px;}
.ls11c{letter-spacing:0.058291px;}
.ls5{letter-spacing:0.060941px;}
.lsd3{letter-spacing:0.069684px;}
.lsd4{letter-spacing:0.079223px;}
.lsdd{letter-spacing:0.097505px;}
.lsba{letter-spacing:0.109958px;}
.ls4e{letter-spacing:0.115788px;}
.ls11f{letter-spacing:0.116582px;}
.ls7{letter-spacing:0.121882px;}
.ls8e{letter-spacing:0.131950px;}
.ls78{letter-spacing:0.137779px;}
.ls1e{letter-spacing:0.140164px;}
.ls14f{letter-spacing:0.149040px;}
.ls103{letter-spacing:0.158446px;}
.lsf5{letter-spacing:0.164540px;}
.ls8f{letter-spacing:0.164938px;}
.ls72{letter-spacing:0.174874px;}
.ls81{letter-spacing:0.182822px;}
.lsf1{letter-spacing:0.195011px;}
.ls7d{letter-spacing:0.198720px;}
.ls54{letter-spacing:0.201105px;}
.ls53{letter-spacing:0.213293px;}
.ls62{letter-spacing:0.231575px;}
.ls15{letter-spacing:0.243763px;}
.ls14a{letter-spacing:0.248400px;}
.ls84{letter-spacing:0.249857px;}
.ls9c{letter-spacing:0.274896px;}
.lsbe{letter-spacing:0.292516px;}
.ls148{letter-spacing:0.298080px;}
.ls150{letter-spacing:0.303048px;}
.ls3{letter-spacing:0.304704px;}
.ls70{letter-spacing:0.310666px;}
.ls144{letter-spacing:0.329875px;}
.ls152{letter-spacing:0.347760px;}
.lsd9{letter-spacing:0.365645px;}
.lsb9{letter-spacing:0.384854px;}
.ls61{letter-spacing:0.426586px;}
.lsd5{letter-spacing:0.609408px;}
.ls10b{letter-spacing:0.786136px;}
.ls1b{letter-spacing:0.792230px;}
.ls8b{letter-spacing:0.824688px;}
.ls69{letter-spacing:0.828795px;}
.lsa9{letter-spacing:0.830186px;}
.lse6{letter-spacing:0.853171px;}
.ls134{letter-spacing:0.914112px;}
.ls33{letter-spacing:1.279757px;}
.ls73{letter-spacing:1.341360px;}
.ls74{letter-spacing:1.351296px;}
.ls136{letter-spacing:1.432109px;}
.ls0{letter-spacing:1.462579px;}
.ls13b{letter-spacing:1.474767px;}
.lse0{letter-spacing:1.480861px;}
.ls8c{letter-spacing:1.484438px;}
.lsd6{letter-spacing:1.523520px;}
.lsd8{letter-spacing:1.529614px;}
.lsed{letter-spacing:1.535708px;}
.lsd7{letter-spacing:1.547896px;}
.ls135{letter-spacing:1.590555px;}
.ls110{letter-spacing:1.819613px;}
.ls75{letter-spacing:2.036880px;}
.ls1{letter-spacing:2.132928px;}
.ls126{letter-spacing:2.144189px;}
.lsce{letter-spacing:2.145116px;}
.ls67{letter-spacing:2.151210px;}
.ls1a{letter-spacing:2.157304px;}
.ls101{letter-spacing:2.181681px;}
.ls10f{letter-spacing:2.219040px;}
.ls13a{letter-spacing:2.254810px;}
.lsaf{letter-spacing:2.639002px;}
.lsbf{letter-spacing:2.754524px;}
.ls4{letter-spacing:2.803277px;}
.ls89{letter-spacing:2.803939px;}
.ls56{letter-spacing:2.827653px;}
.ls58{letter-spacing:2.845935px;}
.lsee{letter-spacing:2.925158px;}
.ls10e{letter-spacing:3.229862px;}
.ls123{letter-spacing:3.298752px;}
.ls115{letter-spacing:3.461437px;}
.ls8a{letter-spacing:3.463690px;}
.ls1d{letter-spacing:3.473626px;}
.ls5a{letter-spacing:3.491908px;}
.lsfa{letter-spacing:3.528472px;}
.ls13d{letter-spacing:3.595507px;}
.ls13e{letter-spacing:3.772368px;}
.ls133{letter-spacing:4.034281px;}
.ls4f{letter-spacing:4.083034px;}
.ls114{letter-spacing:4.089128px;}
.ls57{letter-spacing:4.107410px;}
.ls87{letter-spacing:4.123440px;}
.ls2{letter-spacing:4.140000px;}
.ls132{letter-spacing:4.143974px;}
.ls131{letter-spacing:4.168351px;}
.lsc3{letter-spacing:4.174445px;}
.ls13c{letter-spacing:4.265856px;}
.ls6{letter-spacing:4.753382px;}
.ls86{letter-spacing:4.783190px;}
.lsf7{letter-spacing:4.814323px;}
.lsc2{letter-spacing:4.844794px;}
.ls55{letter-spacing:4.936205px;}
.ls23{letter-spacing:5.423731px;}
.ls97{letter-spacing:5.437443px;}
.ls88{letter-spacing:5.442941px;}
.ls77{letter-spacing:5.472484px;}
.lsfe{letter-spacing:5.496860px;}
.ls139{letter-spacing:5.606554px;}
.ls10c{letter-spacing:5.655306px;}
.ls22{letter-spacing:6.094080px;}
.ls106{letter-spacing:6.100174px;}
.ls98{letter-spacing:6.102691px;}
.ls60{letter-spacing:6.118456px;}
.lsf4{letter-spacing:6.155021px;}
.lsa2{letter-spacing:6.168666px;}
.ls5e{letter-spacing:6.173303px;}
.ls12c{letter-spacing:6.215962px;}
.lsfc{letter-spacing:6.581606px;}
.ls9b{letter-spacing:6.762442px;}
.ls29{letter-spacing:6.764429px;}
.ls2a{letter-spacing:6.776617px;}
.ls5f{letter-spacing:6.855840px;}
.lsf2{letter-spacing:6.886310px;}
.ls52{letter-spacing:7.410401px;}
.lsa5{letter-spacing:7.422192px;}
.ls19{letter-spacing:7.434778px;}
.lscf{letter-spacing:7.440872px;}
.ls100{letter-spacing:7.446966px;}
.ls3b{letter-spacing:7.453060px;}
.lsc0{letter-spacing:7.477436px;}
.ls50{letter-spacing:7.495718px;}
.ls71{letter-spacing:7.519565px;}
.ls6f{letter-spacing:7.800422px;}
.ls13f{letter-spacing:7.998480px;}
.ls137{letter-spacing:8.044186px;}
.ls12e{letter-spacing:8.074656px;}
.lsa1{letter-spacing:8.081942px;}
.ls3c{letter-spacing:8.105126px;}
.ls130{letter-spacing:8.117315px;}
.ls12d{letter-spacing:8.123409px;}
.ls12f{letter-spacing:8.129503px;}
.lsca{letter-spacing:8.135597px;}
.lsa6{letter-spacing:8.136922px;}
.lsde{letter-spacing:8.141691px;}
.ls51{letter-spacing:8.159973px;}
.lsbd{letter-spacing:8.172161px;}
.ls138{letter-spacing:8.227008px;}
.ls85{letter-spacing:8.644320px;}
.lsfd{letter-spacing:8.653594px;}
.ls3a{letter-spacing:8.775475px;}
.lsd0{letter-spacing:8.781569px;}
.ls9e{letter-spacing:8.796672px;}
.lsa7{letter-spacing:8.802170px;}
.lsc9{letter-spacing:8.805946px;}
.lsd1{letter-spacing:8.812040px;}
.lsbc{letter-spacing:8.830322px;}
.lseb{letter-spacing:9.348319px;}
.ls18{letter-spacing:9.384883px;}
.ls41{letter-spacing:9.403165px;}
.ls9f{letter-spacing:9.456422px;}
.ls3e{letter-spacing:10.055232px;}
.ls125{letter-spacing:10.088683px;}
.ls124{letter-spacing:10.094181px;}
.ls3f{letter-spacing:10.097891px;}
.ls92{letter-spacing:10.116173px;}
.lscc{letter-spacing:10.128361px;}
.ls66{letter-spacing:10.140549px;}
.ls3d{letter-spacing:10.725581px;}
.ls127{letter-spacing:10.737438px;}
.lsf8{letter-spacing:10.768239px;}
.lscb{letter-spacing:10.774333px;}
.ls90{letter-spacing:10.775923px;}
.ls104{letter-spacing:10.786522px;}
.ls105{letter-spacing:11.371553px;}
.ls2d{letter-spacing:11.395930px;}
.ls91{letter-spacing:11.435674px;}
.lsef{letter-spacing:11.493435px;}
.ls2e{letter-spacing:12.066278px;}
.ls68{letter-spacing:12.084561px;}
.ls102{letter-spacing:12.090655px;}
.lsa4{letter-spacing:12.095424px;}
.lsf6{letter-spacing:12.188160px;}
.ls31{letter-spacing:12.736627px;}
.ls9a{letter-spacing:12.755174px;}
.ls10a{letter-spacing:12.767098px;}
.lsc8{letter-spacing:12.785380px;}
.lsc7{letter-spacing:13.394788px;}
.ls28{letter-spacing:13.406976px;}
.ls1f{letter-spacing:13.431352px;}
.lsea{letter-spacing:13.437446px;}
.ls8{letter-spacing:14.077325px;}
.ls6a{letter-spacing:14.132172px;}
.ls9{letter-spacing:14.686733px;}
.lsa3{letter-spacing:14.734426px;}
.ls2b{letter-spacing:15.338799px;}
.ls21{letter-spacing:15.357082px;}
.lsa0{letter-spacing:15.394176px;}
.lsa{letter-spacing:15.400800px;}
.ls20{letter-spacing:15.405834px;}
.ls1c{letter-spacing:16.027430px;}
.lsa8{letter-spacing:16.053926px;}
.lsf9{letter-spacing:16.070089px;}
.lsf3{letter-spacing:16.088371px;}
.ls2c{letter-spacing:16.106653px;}
.ls30{letter-spacing:16.124936px;}
.ls44{letter-spacing:16.661215px;}
.ls42{letter-spacing:16.697779px;}
.ls8d{letter-spacing:16.713677px;}
.ls109{letter-spacing:16.758720px;}
.ls43{letter-spacing:17.368128px;}
.lsec{letter-spacing:17.422975px;}
.ls12a{letter-spacing:18.033178px;}
.lsdb{letter-spacing:18.038477px;}
.lsda{letter-spacing:18.099418px;}
.ls26{letter-spacing:18.708826px;}
.lsff{letter-spacing:18.721014px;}
.ls25{letter-spacing:19.318234px;}
.lse1{letter-spacing:19.379174px;}
.ls59{letter-spacing:19.427927px;}
.ls24{letter-spacing:19.988582px;}
.ls4c{letter-spacing:20.658931px;}
.ls128{letter-spacing:20.672179px;}
.ls4d{letter-spacing:21.329280px;}
.ls93{letter-spacing:21.331930px;}
.lsd2{letter-spacing:21.408503px;}
.ls96{letter-spacing:21.991680px;}
.ls40{letter-spacing:21.999629px;}
.ls94{letter-spacing:22.046659px;}
.ls107{letter-spacing:22.060570px;}
.ls27{letter-spacing:22.669978px;}
.ls95{letter-spacing:22.706410px;}
.ls5c{letter-spacing:23.340326px;}
.lsf0{letter-spacing:24.010675px;}
.ls5b{letter-spacing:24.620083px;}
.ls5d{letter-spacing:25.290432px;}
.lsc1{letter-spacing:25.960781px;}
.lsdf{letter-spacing:25.997345px;}
.ls47{letter-spacing:26.631130px;}
.ls46{letter-spacing:27.301478px;}
.ls45{letter-spacing:27.971827px;}
.ls76{letter-spacing:28.642176px;}
.lscd{letter-spacing:28.648270px;}
.lse5{letter-spacing:29.312525px;}
.ls9d{letter-spacing:29.963664px;}
.ls65{letter-spacing:30.592282px;}
.ls64{letter-spacing:31.262630px;}
.ls2f{letter-spacing:31.932979px;}
.ls63{letter-spacing:32.603328px;}
.lse7{letter-spacing:33.273677px;}
.lse9{letter-spacing:33.883085px;}
.ls4b{letter-spacing:33.944026px;}
.lse8{letter-spacing:34.553434px;}
.ls6b{letter-spacing:36.564480px;}
.lsc4{letter-spacing:41.269110px;}
.lse3{letter-spacing:41.866330px;}
.lse4{letter-spacing:43.207027px;}
.lse2{letter-spacing:43.877376px;}
.ls4a{letter-spacing:44.547725px;}
.ls108{letter-spacing:47.838528px;}
.lsdc{letter-spacing:49.301107px;}
.ls49{letter-spacing:51.129331px;}
.ls48{letter-spacing:51.799680px;}
.ls32{letter-spacing:51.921562px;}
.ls129{letter-spacing:54.568512px;}
.ls99{letter-spacing:111.534912px;}
.ls140{letter-spacing:815.679360px;}
.ls151{letter-spacing:857.410560px;}
.ls116{letter-spacing:1018.908979px;}
.ls11b{letter-spacing:1056.665779px;}
.ls83{letter-spacing:1080.512179px;}
.ls117{letter-spacing:1150.726579px;}
.ls118{letter-spacing:1598.508979px;}
.ls79{letter-spacing:1599.833779px;}
.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;}
}
.ws91{word-spacing:-60.940800px;}
.wse3{word-spacing:-17.002483px;}
.ws68{word-spacing:-16.379827px;}
.wsff{word-spacing:-15.168960px;}
.ws12e{word-spacing:-14.837760px;}
.ws71{word-spacing:-14.241600px;}
.wsc2{word-spacing:-14.138266px;}
.ws12f{word-spacing:-14.109120px;}
.ws8{word-spacing:-14.077325px;}
.ws6{word-spacing:-14.016384px;}
.ws78{word-spacing:-13.955443px;}
.wse{word-spacing:-13.894502px;}
.ws7{word-spacing:-13.833562px;}
.ws2{word-spacing:-13.772621px;}
.ws3{word-spacing:-13.711680px;}
.ws5e{word-spacing:-13.650739px;}
.ws79{word-spacing:-13.589798px;}
.ws4{word-spacing:-13.528858px;}
.ws5d{word-spacing:-13.467917px;}
.wsa{word-spacing:-13.406976px;}
.ws5{word-spacing:-13.346035px;}
.ws0{word-spacing:-13.285094px;}
.ws9{word-spacing:-13.224154px;}
.wsf9{word-spacing:-13.173811px;}
.ws1{word-spacing:-13.163213px;}
.wsc{word-spacing:-13.102272px;}
.wsb{word-spacing:-13.041331px;}
.wsfb{word-spacing:-12.998938px;}
.ws3d{word-spacing:-12.980390px;}
.wsd{word-spacing:-12.919450px;}
.ws41{word-spacing:-12.858509px;}
.ws90{word-spacing:-12.810154px;}
.ws3c{word-spacing:-12.797568px;}
.ws12d{word-spacing:-12.755174px;}
.wsb4{word-spacing:-12.736627px;}
.ws83{word-spacing:-12.700195px;}
.wsdb{word-spacing:-12.675686px;}
.ws86{word-spacing:-12.590237px;}
.ws93{word-spacing:-12.535258px;}
.ws40{word-spacing:-12.492864px;}
.ws81{word-spacing:-12.480278px;}
.ws3f{word-spacing:-12.431923px;}
.ws92{word-spacing:-12.425299px;}
.ws5f{word-spacing:-12.370982px;}
.ws82{word-spacing:-12.370320px;}
.wsf8{word-spacing:-12.357734px;}
.ws8d{word-spacing:-12.315341px;}
.ws8c{word-spacing:-12.260362px;}
.ws3e{word-spacing:-12.249101px;}
.wsfa{word-spacing:-12.241152px;}
.ws8a{word-spacing:-12.205382px;}
.ws8f{word-spacing:-12.150403px;}
.ws8e{word-spacing:-12.095424px;}
.ws88{word-spacing:-12.040445px;}
.ws87{word-spacing:-11.930486px;}
.ws8b{word-spacing:-11.875507px;}
.ws85{word-spacing:-11.820528px;}
.ws84{word-spacing:-11.710570px;}
.ws94{word-spacing:-11.655590px;}
.ws140{word-spacing:-11.575440px;}
.ws89{word-spacing:-11.545632px;}
.ws131{word-spacing:-11.525760px;}
.ws133{word-spacing:-11.476080px;}
.ws74{word-spacing:-11.426400px;}
.ws136{word-spacing:-11.376720px;}
.ws135{word-spacing:-11.277360px;}
.ws100{word-spacing:-11.270736px;}
.ws7d{word-spacing:-11.227680px;}
.ws130{word-spacing:-11.078640px;}
.wsf4{word-spacing:-11.028960px;}
.ws12c{word-spacing:-10.979280px;}
.ws73{word-spacing:-10.929600px;}
.ws13f{word-spacing:-10.780560px;}
.wsf3{word-spacing:-10.730880px;}
.ws12b{word-spacing:-10.631520px;}
.ws76{word-spacing:-10.581840px;}
.ws132{word-spacing:-10.532160px;}
.ws80{word-spacing:-10.482480px;}
.ws75{word-spacing:-10.432800px;}
.wsea{word-spacing:-10.429488px;}
.ws77{word-spacing:-10.383120px;}
.ws134{word-spacing:-10.333440px;}
.ws72{word-spacing:-10.283760px;}
.wsec{word-spacing:-10.118822px;}
.wse9{word-spacing:-9.941299px;}
.wseb{word-spacing:-9.763776px;}
.wse1{word-spacing:-8.653594px;}
.ws64{word-spacing:-7.800422px;}
.wsdf{word-spacing:-6.581606px;}
.ws29{word-spacing:-3.595507px;}
.ws24{word-spacing:-3.107981px;}
.ws60{word-spacing:-2.925158px;}
.ws97{word-spacing:-2.639002px;}
.ws22{word-spacing:-2.437632px;}
.ws103{word-spacing:-2.419085px;}
.ws120{word-spacing:-2.315750px;}
.ws23{word-spacing:-2.254810px;}
.ws104{word-spacing:-2.254147px;}
.wsac{word-spacing:-2.089210px;}
.wscf{word-spacing:-2.011046px;}
.wsab{word-spacing:-1.979251px;}
.wsc7{word-spacing:-1.950106px;}
.ws6e{word-spacing:-1.819613px;}
.ws66{word-spacing:-1.767283px;}
.wsbf{word-spacing:-1.645402px;}
.wsc3{word-spacing:-1.584461px;}
.ws57{word-spacing:-1.462579px;}
.wsa1{word-spacing:-1.429459px;}
.wsd2{word-spacing:-1.401638px;}
.wsb8{word-spacing:-1.279757px;}
.wsd0{word-spacing:-1.157875px;}
.wsf2{word-spacing:-1.153901px;}
.ws1c{word-spacing:-1.096934px;}
.ws122{word-spacing:-0.975053px;}
.wse0{word-spacing:-0.914112px;}
.wsd1{word-spacing:-0.792230px;}
.wsa2{word-spacing:-0.769709px;}
.ws65{word-spacing:-0.670349px;}
.wsa3{word-spacing:-0.659750px;}
.wsb5{word-spacing:-0.609408px;}
.ws139{word-spacing:-0.496800px;}
.ws6f{word-spacing:-0.488189px;}
.ws1f{word-spacing:-0.487526px;}
.ws13b{word-spacing:-0.447120px;}
.wsdd{word-spacing:-0.426586px;}
.ws138{word-spacing:-0.347760px;}
.ws37{word-spacing:-0.304704px;}
.ws107{word-spacing:-0.274896px;}
.ws11c{word-spacing:-0.243763px;}
.ws7c{word-spacing:-0.182822px;}
.ws70{word-spacing:-0.174874px;}
.ws106{word-spacing:-0.164938px;}
.ws101{word-spacing:-0.149040px;}
.ws2d{word-spacing:-0.121882px;}
.wsfd{word-spacing:-0.116582px;}
.ws9b{word-spacing:-0.109958px;}
.ws21{word-spacing:-0.060941px;}
.wsf{word-spacing:0.000000px;}
.ws13e{word-spacing:0.049680px;}
.ws9a{word-spacing:0.054979px;}
.ws20{word-spacing:0.060941px;}
.ws16{word-spacing:0.121882px;}
.wsef{word-spacing:0.133142px;}
.wsfc{word-spacing:0.174874px;}
.ws1d{word-spacing:0.182822px;}
.ws13a{word-spacing:0.198720px;}
.ws9f{word-spacing:0.219917px;}
.ws17{word-spacing:0.243763px;}
.ws142{word-spacing:0.248400px;}
.ws141{word-spacing:0.298080px;}
.ws4a{word-spacing:0.304704px;}
.ws95{word-spacing:0.331200px;}
.ws7f{word-spacing:0.347760px;}
.wsed{word-spacing:0.355046px;}
.ws27{word-spacing:0.365645px;}
.ws9c{word-spacing:0.384854px;}
.ws18{word-spacing:0.426586px;}
.ws59{word-spacing:0.487526px;}
.ws99{word-spacing:0.494813px;}
.ws102{word-spacing:0.496800px;}
.ws3a{word-spacing:0.548467px;}
.ws5a{word-spacing:0.609408px;}
.ws98{word-spacing:0.659750px;}
.ws26{word-spacing:0.670349px;}
.wsb1{word-spacing:0.714730px;}
.ws46{word-spacing:0.731290px;}
.ws11{word-spacing:0.792230px;}
.wsfe{word-spacing:0.816077px;}
.ws7b{word-spacing:0.844560px;}
.ws38{word-spacing:0.853171px;}
.wsb2{word-spacing:0.879667px;}
.ws13c{word-spacing:0.894240px;}
.ws143{word-spacing:0.943920px;}
.ws2a{word-spacing:0.975053px;}
.ws96{word-spacing:0.993600px;}
.ws3b{word-spacing:1.035994px;}
.wsb3{word-spacing:1.154563px;}
.ws49{word-spacing:1.157875px;}
.ws9e{word-spacing:1.209542px;}
.wsd5{word-spacing:1.279757px;}
.ws105{word-spacing:1.319501px;}
.ws62{word-spacing:1.340698px;}
.wse6{word-spacing:1.401638px;}
.wsc0{word-spacing:1.462579px;}
.wsf1{word-spacing:1.508947px;}
.ws1a{word-spacing:1.523520px;}
.ws110{word-spacing:1.539418px;}
.ws13d{word-spacing:1.639440px;}
.ws48{word-spacing:1.645402px;}
.ws19{word-spacing:1.706342px;}
.ws10a{word-spacing:1.869293px;}
.wsf6{word-spacing:1.889165px;}
.ws12{word-spacing:1.950106px;}
.wsf0{word-spacing:1.997136px;}
.ws13{word-spacing:2.011046px;}
.ws56{word-spacing:2.132928px;}
.wsee{word-spacing:2.174659px;}
.ws47{word-spacing:2.193869px;}
.ws10f{word-spacing:2.199168px;}
.ws14{word-spacing:2.254810px;}
.wse4{word-spacing:2.315750px;}
.ws7e{word-spacing:2.334960px;}
.wsb6{word-spacing:2.376691px;}
.wsaa{word-spacing:2.529043px;}
.wsa7{word-spacing:2.639002px;}
.ws11d{word-spacing:2.681395px;}
.wsde{word-spacing:2.742336px;}
.wsa8{word-spacing:2.858918px;}
.ws25{word-spacing:2.864218px;}
.ws15{word-spacing:2.925158px;}
.ws7a{word-spacing:2.980800px;}
.ws32{word-spacing:2.986099px;}
.wsa9{word-spacing:3.023856px;}
.ws4d{word-spacing:3.047040px;}
.wscc{word-spacing:3.229862px;}
.wsc1{word-spacing:3.290803px;}
.wscb{word-spacing:3.351744px;}
.ws12a{word-spacing:3.461702px;}
.ws4c{word-spacing:3.534566px;}
.wsf5{word-spacing:3.626640px;}
.ws33{word-spacing:3.656448px;}
.ws2f{word-spacing:3.717389px;}
.wse2{word-spacing:3.839270px;}
.wsa0{word-spacing:3.848544px;}
.ws6d{word-spacing:3.900211px;}
.wsce{word-spacing:3.961152px;}
.ws118{word-spacing:4.143974px;}
.ws108{word-spacing:4.178419px;}
.ws58{word-spacing:4.204915px;}
.ws6c{word-spacing:4.326797px;}
.ws109{word-spacing:4.343357px;}
.wsf7{word-spacing:4.387738px;}
.ws111{word-spacing:4.618253px;}
.ws31{word-spacing:4.631501px;}
.ws61{word-spacing:4.692442px;}
.ws1b{word-spacing:4.814323px;}
.wsbe{word-spacing:4.936205px;}
.ws30{word-spacing:4.997146px;}
.ws10b{word-spacing:5.168045px;}
.wscd{word-spacing:5.301850px;}
.ws5b{word-spacing:5.484672px;}
.ws10c{word-spacing:5.497920px;}
.wsda{word-spacing:5.606554px;}
.ws39{word-spacing:5.667494px;}
.ws137{word-spacing:5.772816px;}
.wsd7{word-spacing:5.911258px;}
.wsd9{word-spacing:6.155021px;}
.wsd8{word-spacing:6.276902px;}
.ws28{word-spacing:6.337843px;}
.wsa4{word-spacing:6.487546px;}
.ws50{word-spacing:6.520666px;}
.ws125{word-spacing:6.581606px;}
.wsa5{word-spacing:6.597504px;}
.ws117{word-spacing:6.642547px;}
.wsa6{word-spacing:6.817421px;}
.ws116{word-spacing:6.825370px;}
.wsbb{word-spacing:6.947251px;}
.ws51{word-spacing:7.008192px;}
.ws45{word-spacing:7.495718px;}
.wse7{word-spacing:7.617600px;}
.wsb7{word-spacing:7.678541px;}
.ws10e{word-spacing:7.807046px;}
.wsd4{word-spacing:7.983245px;}
.ws53{word-spacing:8.166067px;}
.ws11a{word-spacing:8.287949px;}
.ws54{word-spacing:8.348890px;}
.ws129{word-spacing:8.531712px;}
.ws121{word-spacing:8.592653px;}
.ws11b{word-spacing:8.653594px;}
.ws44{word-spacing:8.775475px;}
.ws43{word-spacing:8.836416px;}
.ws63{word-spacing:8.958298px;}
.ws5c{word-spacing:9.445824px;}
.ws42{word-spacing:9.506765px;}
.ws4f{word-spacing:9.628646px;}
.ws1e{word-spacing:10.116173px;}
.wsc8{word-spacing:10.786522px;}
.ws69{word-spacing:10.908403px;}
.wsc4{word-spacing:11.456870px;}
.ws67{word-spacing:11.578752px;}
.wsc5{word-spacing:11.639693px;}
.wsc6{word-spacing:11.883456px;}
.ws113{word-spacing:11.944397px;}
.ws52{word-spacing:12.127219px;}
.wsbd{word-spacing:12.249101px;}
.ws126{word-spacing:12.310042px;}
.ws119{word-spacing:12.797568px;}
.ws6b{word-spacing:13.163213px;}
.ws6a{word-spacing:13.467917px;}
.ws9d{word-spacing:13.469904px;}
.ws112{word-spacing:13.909738px;}
.wsdc{word-spacing:14.138266px;}
.ws128{word-spacing:14.260147px;}
.ws115{word-spacing:14.442970px;}
.ws34{word-spacing:14.564851px;}
.ws35{word-spacing:14.808614px;}
.wsbc{word-spacing:14.930496px;}
.wsb0{word-spacing:15.229238px;}
.ws2c{word-spacing:15.418022px;}
.ws114{word-spacing:15.478963px;}
.ws36{word-spacing:15.539904px;}
.ws4e{word-spacing:15.600845px;}
.wsaf{word-spacing:15.888989px;}
.ws2b{word-spacing:15.905549px;}
.ws4b{word-spacing:16.088371px;}
.wsae{word-spacing:16.438781px;}
.wsad{word-spacing:16.548739px;}
.ws2e{word-spacing:16.758720px;}
.ws10d{word-spacing:17.208490px;}
.wse8{word-spacing:17.246246px;}
.ws10{word-spacing:17.733773px;}
.wsca{word-spacing:18.952589px;}
.wsd3{word-spacing:19.561997px;}
.wsc9{word-spacing:20.049523px;}
.ws123{word-spacing:20.719872px;}
.ws124{word-spacing:20.841754px;}
.ws11f{word-spacing:22.730918px;}
.ws127{word-spacing:23.401267px;}
.wse5{word-spacing:28.520294px;}
.wsd6{word-spacing:30.043814px;}
.wsba{word-spacing:30.470400px;}
.wsb9{word-spacing:30.653222px;}
.ws55{word-spacing:34.797197px;}
.ws11e{word-spacing:133.338470px;}
._19{margin-left:-33.639322px;}
._1b{margin-left:-31.091996px;}
._47{margin-left:-18.855084px;}
._41{margin-left:-16.295570px;}
._18{margin-left:-13.809185px;}
._b{margin-left:-11.395930px;}
._48{margin-left:-9.738340px;}
._10{margin-left:-8.519524px;}
._9{margin-left:-6.642547px;}
._a{margin-left:-5.618742px;}
._4{margin-left:-4.034281px;}
._2{margin-left:-2.946090px;}
._1{margin-left:-1.249286px;}
._0{width:1.023805px;}
._3{width:2.382785px;}
._15{width:4.040375px;}
._7{width:5.283567px;}
._c{width:7.008192px;}
._f{width:8.775475px;}
._16{width:10.213678px;}
._e{width:11.920020px;}
._3f{width:14.129654px;}
._5{width:15.844608px;}
._d{width:16.886696px;}
._46{width:18.343181px;}
._43{width:19.537620px;}
._14{width:20.658931px;}
._8{width:21.780242px;}
._3e{width:23.671129px;}
._42{width:25.302620px;}
._11{width:26.923645px;}
._2c{width:29.018949px;}
._17{width:30.056003px;}
._49{width:31.859850px;}
._1a{width:32.956785px;}
._4a{width:34.017155px;}
._4b{width:35.467546px;}
._45{width:38.575526px;}
._13{width:50.398042px;}
._12{width:52.006879px;}
._6c{width:55.803888px;}
._6b{width:338.859994px;}
._3a{width:371.213464px;}
._67{width:377.143004px;}
._38{width:502.059456px;}
._4c{width:593.665402px;}
._40{width:781.078234px;}
._2b{width:869.138749px;}
._1c{width:954.849600px;}
._32{width:978.543383px;}
._61{width:981.182120px;}
._31{width:1038.856493px;}
._24{width:1040.386107px;}
._60{width:1083.769862px;}
._4f{width:1091.820142px;}
._1d{width:1121.425183px;}
._1e{width:1133.515837px;}
._58{width:1149.896724px;}
._50{width:1152.687813px;}
._69{width:1160.927009px;}
._27{width:1163.376829px;}
._3b{width:1174.858076px;}
._62{width:1176.582701px;}
._54{width:1202.768963px;}
._4e{width:1219.229073px;}
._56{width:1227.395140px;}
._34{width:1236.414378px;}
._4d{width:1237.883052px;}
._55{width:1270.504662px;}
._6a{width:1294.137504px;}
._3c{width:1351.970323px;}
._5a{width:1369.411580px;}
._53{width:1379.814175px;}
._21{width:1382.355406px;}
._66{width:1395.134692px;}
._5d{width:1415.074522px;}
._28{width:1424.160795px;}
._59{width:1425.666033px;}
._30{width:1431.772301px;}
._29{width:1435.867523px;}
._2a{width:1496.954580px;}
._33{width:1507.298884px;}
._68{width:1521.958591px;}
._65{width:1531.918967px;}
._5f{width:1554.464413px;}
._63{width:1590.772942px;}
._5c{width:1612.065658px;}
._37{width:1648.294963px;}
._2f{width:1711.322588px;}
._35{width:1749.633420px;}
._22{width:1751.553055px;}
._51{width:1782.584110px;}
._25{width:1794.729612px;}
._57{width:1797.813216px;}
._5b{width:1810.665631px;}
._1f{width:1812.871688px;}
._52{width:1819.873786px;}
._39{width:1821.156192px;}
._2d{width:1853.720306px;}
._20{width:1877.828486px;}
._26{width:1943.534857px;}
._64{width:1985.937466px;}
._36{width:2049.212298px;}
._2e{width:2102.462369px;}
._3d{width:2103.522739px;}
._23{width:2121.768415px;}
._44{width:2289.696000px;}
._6{width:2313.096000px;}
._5e{width:2495.403878px;}
.fc6{color:transparent;}
.fc5{color:rgb(51,51,255);}
.fc3{color:rgb(31,35,35);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(33,35,35);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.299200px;}
.fs2{font-size:19.209600px;}
.fse{font-size:35.769600px;}
.fsa{font-size:38.419200px;}
.fsd{font-size:41.731200px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:44.380800px;}
.fs3{font-size:49.680000px;}
.fsc{font-size:52.329600px;}
.fs1{font-size:54.979200px;}
.fs6{font-size:58.291200px;}
.fs11{font-size:60.000000px;}
.fs0{font-size:60.940800px;}
.fs8{font-size:66.240000px;}
.fsf{font-size:71.539200px;}
.fs9{font-size:77.500800px;}
.fs10{font-size:84.000000px;}
.fs7{font-size:88.099200px;}
.y372{bottom:-14.241600px;}
.y0{bottom:0.000000px;}
.y35d{bottom:3.312000px;}
.y361{bottom:3.974400px;}
.y367{bottom:4.139862px;}
.y35c{bottom:4.140000px;}
.y36d{bottom:4.305600px;}
.y11e{bottom:4.471200px;}
.ydc{bottom:4.636800px;}
.yeb{bottom:6.624000px;}
.ye8{bottom:6.789600px;}
.y21c{bottom:18.712800px;}
.y21b{bottom:22.852800px;}
.y31{bottom:43.050000px;}
.yae{bottom:47.030400px;}
.y4{bottom:47.196000px;}
.y34e{bottom:51.170400px;}
.y3{bottom:52.160026px;}
.y30{bottom:58.050000px;}
.y268{bottom:69.552000px;}
.y28d{bottom:71.539200px;}
.y2f{bottom:73.050000px;}
.y5c{bottom:80.656474px;}
.y2e{bottom:83.550000px;}
.y2dd{bottom:94.904035px;}
.y85{bottom:96.877325px;}
.y38c{bottom:101.025000px;}
.y1{bottom:101.040000px;}
.yac{bottom:101.100000px;}
.y305{bottom:101.373696px;}
.y5b{bottom:102.016224px;}
.y2d{bottom:103.675536px;}
.y2b2{bottom:106.878902px;}
.yab{bottom:107.853955px;}
.y329{bottom:108.307699px;}
.y2dc{bottom:116.263786px;}
.y246{bottom:117.580637px;}
.y84{bottom:118.237075px;}
.y5a{bottom:123.375974px;}
.y328{bottom:126.848938px;}
.y2b1{bottom:128.406240px;}
.yaa{bottom:129.213706px;}
.y304{bottom:131.188982px;}
.y1f6{bottom:135.987408px;}
.y245{bottom:136.121875px;}
.y1b0{bottom:136.323245px;}
.y2db{bottom:137.623536px;}
.y2c{bottom:138.777437px;}
.y83{bottom:139.596826px;}
.y18b{bottom:142.912800px;}
.y327{bottom:145.390176px;}
.y1d2{bottom:146.391062px;}
.yda{bottom:149.536800px;}
.y59{bottom:150.205162px;}
.ya9{bottom:150.405869px;}
.y166{bottom:152.699760px;}
.y303{bottom:152.716320px;}
.y244{bottom:154.663114px;}
.y1f5{bottom:157.347158px;}
.y1af{bottom:157.850582px;}
.y2da{bottom:158.815699px;}
.y2b0{bottom:163.340554px;}
.y326{bottom:163.779062px;}
.y18a{bottom:164.109600px;}
.y38b{bottom:167.430600px;}
.y11d{bottom:167.611200px;}
.y1d1{bottom:167.750813px;}
.y58{bottom:168.746400px;}
.ydb{bottom:168.770400px;}
.y82{bottom:169.244525px;}
.y243{bottom:173.052000px;}
.yd9{bottom:173.329380px;}
.y165{bottom:173.891923px;}
.y2b{bottom:174.046925px;}
.y1ae{bottom:179.210333px;}
.ya8{bottom:180.053568px;}
.y2d9{bottom:180.175450px;}
.y302{bottom:182.364019px;}
.y189{bottom:185.487235px;}
.yd8{bottom:187.575120px;}
.y81{bottom:190.771862px;}
.y325{bottom:193.594349px;}
.y242{bottom:195.076800px;}
.y164{bottom:195.251674px;}
.y1f4{bottom:195.435158px;}
.y2a{bottom:195.574262px;}
.y57{bottom:195.575587px;}
.y1d0{bottom:197.566099px;}
.y34d{bottom:199.824221px;}
.y1ad{bottom:200.570083px;}
.y2af{bottom:201.260966px;}
.ya7{bottom:201.413318px;}
.y2d8{bottom:201.535200px;}
.yd7{bottom:201.820860px;}
.y188{bottom:206.846986px;}
.y301{bottom:212.179306px;}
.y80{bottom:212.299200px;}
.y324{bottom:215.121686px;}
.yd6{bottom:216.066600px;}
.y163{bottom:216.611424px;}
.y1f3{bottom:216.794909px;}
.y29{bottom:217.101600px;}
.y28{bottom:217.115510px;}
.y34c{bottom:218.365459px;}
.y1cf{bottom:218.925850px;}
.y56{bottom:222.237187px;}
.ya6{bottom:222.605482px;}
.y187{bottom:228.039149px;}
.y2d7{bottom:228.362400px;}
.y1ac{bottom:230.217782px;}
.yd5{bottom:230.473800px;}
.y2ae{bottom:230.908666px;}
.y38a{bottom:233.023200px;}
.y300{bottom:233.539056px;}
.y34b{bottom:236.906698px;}
.y1f2{bottom:238.322246px;}
.y1ce{bottom:240.453187px;}
.y55{bottom:240.778426px;}
.y7f{bottom:241.791235px;}
.y240{bottom:243.432000px;}
.ya5{bottom:243.965232px;}
.yd4{bottom:244.719540px;}
.y162{bottom:246.091536px;}
.y2d6{bottom:246.915562px;}
.y102{bottom:247.075200px;}
.y27{bottom:249.566486px;}
.y323{bottom:250.056000px;}
.y389{bottom:250.576800px;}
.y1ab{bottom:251.409946px;}
.y2ad{bottom:252.268416px;}
.y34a{bottom:255.447936px;}
.yd3{bottom:258.965280px;}
.y1f1{bottom:259.849584px;}
.y219{bottom:260.274182px;}
.y2ff{bottom:260.368243px;}
.y1cd{bottom:261.980525px;}
.y186{bottom:263.141050px;}
.y7e{bottom:263.150986px;}
.ya4{bottom:265.324982px;}
.y2d5{bottom:265.456800px;}
.y161{bottom:267.451286px;}
.y54{bottom:267.607613px;}
.y388{bottom:267.964800px;}
.y11c{bottom:270.756000px;}
.y101{bottom:270.921600px;}
.y26{bottom:270.926237px;}
.y1aa{bottom:272.769696px;}
.yd2{bottom:273.211020px;}
.y2ac{bottom:273.460579px;}
.y349{bottom:273.989174px;}
.y218{bottom:278.815421px;}
.y2fe{bottom:278.909482px;}
.y1f0{bottom:281.209334px;}
.y7d{bottom:284.510736px;}
.y387{bottom:285.352800px;}
.ya3{bottom:286.517146px;}
.yd1{bottom:287.618220px;}
.y322{bottom:288.020131px;}
.y160{bottom:288.811037px;}
.y23e{bottom:291.621600px;}
.y25{bottom:292.134960px;}
.y348{bottom:292.530413px;}
.y2d4{bottom:292.982832px;}
.y1a9{bottom:294.129446px;}
.y53{bottom:294.436800px;}
.y1cc{bottom:297.082426px;}
.y217{bottom:297.356659px;}
.y2fd{bottom:297.450720px;}
.y185{bottom:301.229050px;}
.yd0{bottom:301.863960px;}
.y1ef{bottom:302.736672px;}
.y386{bottom:302.906400px;}
.y2ab{bottom:303.108278px;}
.y7c{bottom:305.702899px;}
.ya2{bottom:307.876896px;}
.y321{bottom:309.379882px;}
.y15f{bottom:310.003200px;}
.y347{bottom:310.919299px;}
.y2d3{bottom:311.524070px;}
.y241{bottom:313.504800px;}
.y1a8{bottom:315.321610px;}
.y216{bottom:315.897898px;}
.ycf{bottom:316.109700px;}
.y11a{bottom:319.111200px;}
.yff{bottom:319.276800px;}
.y385{bottom:320.460000px;}
.y24{bottom:321.782659px;}
.y184{bottom:322.594099px;}
.y52{bottom:324.079200px;}
.y2aa{bottom:324.468029px;}
.y7b{bottom:327.062650px;}
.y2fc{bottom:327.098419px;}
.ya1{bottom:329.236646px;}
.y346{bottom:329.460538px;}
.y2d2{bottom:330.065309px;}
.yce{bottom:330.355440px;}
.y320{bottom:330.739632px;}
.y215{bottom:334.439136px;}
.y1cb{bottom:334.835251px;}
.y1a7{bottom:336.681360px;}
.y384{bottom:338.013600px;}
.y15e{bottom:339.707866px;}
.y142{bottom:339.811200px;}
.y1ee{bottom:340.657085px;}
.y23{bottom:343.142410px;}
.ycd{bottom:344.762640px;}
.y51{bottom:345.301834px;}
.y2a9{bottom:345.660192px;}
.y345{bottom:348.001776px;}
.y7a{bottom:348.422400px;}
.y2fb{bottom:348.458170px;}
.ya0{bottom:350.428810px;}
.y31f{bottom:351.931795px;}
.y183{bottom:352.287504px;}
.y214{bottom:352.980374px;}
.y383{bottom:355.567200px;}
.y1ca{bottom:356.195002px;}
.y2d1{bottom:357.717197px;}
.y141{bottom:357.876007px;}
.y1a6{bottom:358.041110px;}
.ycc{bottom:359.008380px;}
.y15d{bottom:361.067616px;}
.y23f{bottom:361.860000px;}
.y1ed{bottom:362.184422px;}
.y22{bottom:364.334573px;}
.y344{bottom:366.543014px;}
.y50{bottom:366.661584px;}
.yfd{bottom:367.466400px;}
.y79{bottom:369.619200px;}
.y213{bottom:371.521613px;}
.y382{bottom:373.120800px;}
.ycb{bottom:373.254120px;}
.y182{bottom:373.479667px;}
.y2a8{bottom:375.307891px;}
.y140{bottom:376.252805px;}
.y2d0{bottom:376.258435px;}
.y1c9{bottom:377.554752px;}
.y2fa{bottom:378.105869px;}
.y31e{bottom:381.579494px;}
.y15c{bottom:382.259779px;}
.y343{bottom:385.084253px;}
.y9f{bottom:385.530710px;}
.y21{bottom:385.694323px;}
.yca{bottom:387.499860px;}
.y1a5{bottom:387.521222px;}
.y4f{bottom:388.021334px;}
.y23b{bottom:388.166400px;}
.y11b{bottom:389.184000px;}
.y100{bottom:389.515200px;}
.y212{bottom:390.062851px;}
.y381{bottom:390.508800px;}
.y13f{bottom:394.629602px;}
.y181{bottom:394.671830px;}
.y78{bottom:396.445075px;}
.y2a7{bottom:396.667642px;}
.y1ec{bottom:397.286323px;}
.y1c8{bottom:398.746915px;}
.y2f9{bottom:399.633206px;}
.yc9{bottom:401.745600px;}
.y31d{bottom:402.939245px;}
.y15b{bottom:403.619530px;}
.y342{bottom:403.625491px;}
.y2cf{bottom:403.742736px;}
.y267{bottom:406.051200px;}
.y380{bottom:408.062400px;}
.y211{bottom:408.451738px;}
.y1a4{bottom:408.880973px;}
.y23d{bottom:410.049600px;}
.y13e{bottom:413.006400px;}
.y20{bottom:415.342022px;}
.y118{bottom:415.656000px;}
.yfb{bottom:415.821600px;}
.y180{bottom:415.863994px;}
.yc8{bottom:416.152800px;}
.y2a6{bottom:417.859805px;}
.y2f8{bottom:420.992957px;}
.y341{bottom:422.166730px;}
.y4e{bottom:423.123235px;}
.y9e{bottom:423.451123px;}
.y31c{bottom:424.131408px;}
.y15a{bottom:424.979280px;}
.y37f{bottom:425.450400px;}
.y77{bottom:426.123245px;}
.y210{bottom:426.992976px;}
.y1c7{bottom:428.562202px;}
.y1a3{bottom:430.240723px;}
.y2ce{bottom:431.394624px;}
.y13d{bottom:431.889602px;}
.yc7{bottom:434.535062px;}
.y1eb{bottom:435.206736px;}
.y239{bottom:436.521600px;}
.y1f{bottom:436.701773px;}
.y17f{bottom:437.223744px;}
.y119{bottom:437.539200px;}
.yfe{bottom:437.704800px;}
.y340{bottom:440.707968px;}
.y2f7{bottom:442.520294px;}
.y37e{bottom:443.004000px;}
.y9d{bottom:444.810874px;}
.y31b{bottom:445.491158px;}
.y20f{bottom:445.534214px;}
.y159{bottom:446.339030px;}
.y76{bottom:447.482995px;}
.y2a5{bottom:447.507504px;}
.y1c6{bottom:450.089539px;}
.y13c{bottom:450.266400px;}
.y1a2{bottom:451.432886px;}
.y28c{bottom:452.246314px;}
.yc6{bottom:452.253600px;}
.y265{bottom:454.240800px;}
.y1ea{bottom:456.398899px;}
.y1e{bottom:457.893936px;}
.y23c{bottom:458.239200px;}
.y17e{bottom:458.415907px;}
.y2cd{bottom:459.046512px;}
.y33f{bottom:459.249206px;}
.y37d{bottom:460.557600px;}
.y4d{bottom:461.043648px;}
.yf9{bottom:464.011200px;}
.y2f6{bottom:464.047632px;}
.y20e{bottom:464.075453px;}
.y9c{bottom:466.003037px;}
.y31a{bottom:466.850909px;}
.y158{bottom:467.531194px;}
.y75{bottom:468.675158px;}
.y2a4{bottom:468.867254px;}
.y13b{bottom:469.303279px;}
.yc5{bottom:470.966400px;}
.y1a1{bottom:472.792637px;}
.y28b{bottom:475.099114px;}
.y1e9{bottom:477.758650px;}
.y33e{bottom:477.790445px;}
.y37c{bottom:478.111200px;}
.y263{bottom:478.418400px;}
.y1d{bottom:479.253686px;}
.y17d{bottom:479.608070px;}
.y1c5{bottom:479.737238px;}
.y4c{bottom:482.570986px;}
.y20d{bottom:482.616691px;}
.yc4{bottom:483.552000px;}
.y237{bottom:484.711200px;}
.y2f5{bottom:485.407382px;}
.yfc{bottom:485.894400px;}
.y13a{bottom:486.030701px;}
.y2cc{bottom:486.698400px;}
.y9b{bottom:487.362787px;}
.yf8{bottom:488.023200px;}
.y319{bottom:488.043072px;}
.y2a3{bottom:490.059418px;}
.y28a{bottom:493.483860px;}
.y37b{bottom:495.664800px;}
.y33d{bottom:496.179331px;}
.y157{bottom:497.178893px;}
.y74{bottom:498.322858px;}
.y1e8{bottom:499.118400px;}
.yc3{bottom:499.155356px;}
.y1c{bottom:500.613437px;}
.y20c{bottom:501.157930px;}
.y1c4{bottom:501.264576px;}
.y262{bottom:502.430400px;}
.y1a0{bottom:502.440336px;}
.y139{bottom:502.923060px;}
.y23a{bottom:506.594400px;}
.y2f4{bottom:506.934720px;}
.y236{bottom:508.723200px;}
.y17c{bottom:509.088182px;}
.y318{bottom:509.402822px;}
.y289{bottom:510.211282px;}
.y2a2{bottom:511.419168px;}
.yf7{bottom:512.200800px;}
.y4b{bottom:512.218685px;}
.y115{bottom:512.366400px;}
.y37a{bottom:513.052800px;}
.y2cb{bottom:513.525600px;}
.y33c{bottom:514.720570px;}
.y9a{bottom:517.010486px;}
.y156{bottom:518.538643px;}
.y73{bottom:519.682608px;}
.y20b{bottom:519.699168px;}
.y138{bottom:519.815419px;}
.yc2{bottom:520.179932px;}
.y1b{bottom:521.805600px;}
.y1a{bottom:521.817523px;}
.y19f{bottom:523.632499px;}
.y266{bottom:524.479200px;}
.y261{bottom:526.608000px;}
.y288{bottom:527.103641px;}
.y1c3{bottom:528.093763px;}
.y1e7{bottom:528.650179px;}
.y17b{bottom:530.280346px;}
.y379{bottom:530.606400px;}
.y317{bottom:530.762573px;}
.y2ca{bottom:532.133741px;}
.y2a1{bottom:532.778918px;}
.y235{bottom:532.900800px;}
.y33b{bottom:533.261808px;}
.y4a{bottom:533.410848px;}
.y117{bottom:534.084000px;}
.yfa{bottom:534.249600px;}
.y2f3{bottom:536.582419px;}
.y137{bottom:536.707778px;}
.y99{bottom:538.202650px;}
.y20a{bottom:538.240406px;}
.y155{bottom:539.730806px;}
.y72{bottom:540.874771px;}
.y287{bottom:543.996000px;}
.y19e{bottom:544.992250px;}
.y378{bottom:548.160000px;}
.y1e6{bottom:550.009930px;}
.y2c9{bottom:550.674979px;}
.y260{bottom:550.785600px;}
.y19{bottom:551.465222px;}
.y33a{bottom:551.803046px;}
.y136{bottom:553.435200px;}
.y2a0{bottom:553.971082px;}
.y49{bottom:554.770598px;}
.y238{bottom:554.949600px;}
.yc1{bottom:555.281833px;}
.y209{bottom:556.781645px;}
.y1c2{bottom:557.741462px;}
.y2f2{bottom:558.109757px;}
.y98{bottom:559.562400px;}
.y17a{bottom:559.928045px;}
.yf5{bottom:560.556000px;}
.y154{bottom:561.090557px;}
.y286{bottom:562.873241px;}
.y377{bottom:565.713600px;}
.y316{bottom:565.864474px;}
.y19d{bottom:566.352000px;}
.y2c8{bottom:569.063866px;}
.y339{bottom:570.344285px;}
.y71{bottom:570.522470px;}
.y1e5{bottom:571.369680px;}
.y135{bottom:572.472079px;}
.y264{bottom:572.668800px;}
.y18{bottom:572.824973px;}
.y25f{bottom:574.963200px;}
.y208{bottom:575.322883px;}
.y48{bottom:576.130349px;}
.y1c1{bottom:579.268800px;}
.y285{bottom:579.765600px;}
.y179{bottom:581.120208px;}
.y233{bottom:581.256000px;}
.y116{bottom:582.439200px;}
.y153{bottom:582.450307px;}
.y376{bottom:583.267200px;}
.y29f{bottom:583.618781px;}
.y113{bottom:584.568000px;}
.y2f1{bottom:584.938944px;}
.y338{bottom:588.885523px;}
.y97{bottom:589.210099px;}
.y134{bottom:589.364438px;}
.yc0{bottom:590.383734px;}
.y70{bottom:591.882221px;}
.y1e4{bottom:592.561843px;}
.y207{bottom:593.711770px;}
.y17{bottom:594.017136px;}
.y19c{bottom:595.841386px;}
.y47{bottom:597.322512px;}
.y284{bottom:598.801154px;}
.y25e{bottom:599.140800px;}
.y375{bottom:600.820800px;}
.y178{bottom:602.312371px;}
.y2f0{bottom:603.480182px;}
.y315{bottom:603.617299px;}
.y152{bottom:603.642470px;}
.y2c7{bottom:604.165766px;}
.y29e{bottom:604.978531px;}
.y133{bottom:606.091860px;}
.y337{bottom:607.426762px;}
.yf3{bottom:608.745600px;}
.y1c0{bottom:608.939683px;}
.y96{bottom:610.569850px;}
.y206{bottom:612.253008px;}
.y6f{bottom:613.074384px;}
.y1e3{bottom:613.921594px;}
.y16{bottom:615.376886px;}
.y283{bottom:615.528576px;}
.y19b{bottom:617.201136px;}
.y374{bottom:618.208800px;}
.y46{bottom:618.682262px;}
.y2ef{bottom:622.021421px;}
.y132{bottom:622.984219px;}
.y25d{bottom:623.152800px;}
.y177{bottom:623.504534px;}
.y314{bottom:624.977050px;}
.y151{bottom:625.002221px;}
.ybf{bottom:625.653222px;}
.y336{bottom:625.968000px;}
.y29d{bottom:626.170694px;}
.y231{bottom:629.445600px;}
.y1bf{bottom:630.131846px;}
.yf6{bottom:630.628800px;}
.y205{bottom:630.794246px;}
.y114{bottom:630.794400px;}
.y95{bottom:632.097187px;}
.y282{bottom:632.255998px;}
.yf2{bottom:632.757600px;}
.y112{bottom:632.923200px;}
.y6e{bottom:634.434134px;}
.y1e2{bottom:635.281344px;}
.y373{bottom:635.762400px;}
.y15{bottom:636.736637px;}
.y19a{bottom:638.560886px;}
.y131{bottom:639.876578px;}
.y2c6{bottom:642.253766px;}
.y176{bottom:644.864285px;}
.y313{bottom:646.336800px;}
.y29c{bottom:647.530445px;}
.y45{bottom:648.329962px;}
.y2ee{bottom:648.850608px;}
.y281{bottom:649.148357px;}
.y204{bottom:649.335485px;}
.y234{bottom:651.328800px;}
.y1be{bottom:651.491597px;}
.y371{bottom:653.316000px;}
.y230{bottom:653.623200px;}
.ybe{bottom:655.133334px;}
.y6d{bottom:655.793885px;}
.y1e1{bottom:656.473507px;}
.y130{bottom:656.604000px;}
.yf1{bottom:656.935200px;}
.y111{bottom:657.100800px;}
.y14{bottom:657.928800px;}
.y199{bottom:659.920637px;}
.y150{bottom:660.104122px;}
.y94{bottom:661.577299px;}
.y2c5{bottom:663.781104px;}
.y280{bottom:665.875778px;}
.y175{bottom:666.056448px;}
.y2ed{bottom:667.391846px;}
.y312{bottom:667.528963px;}
.y203{bottom:667.876723px;}
.y29b{bottom:668.890195px;}
.y44{bottom:669.522125px;}
.y370{bottom:670.869600px;}
.y25b{bottom:671.342400px;}
.y335{bottom:671.673600px;}
.y12f{bottom:675.645019px;}
.y6c{bottom:677.153635px;}
.y22f{bottom:677.635200px;}
.y1e0{bottom:677.833258px;}
.yf4{bottom:678.984000px;}
.yf0{bottom:681.112800px;}
.y1bd{bottom:681.306883px;}
.y27f{bottom:682.603200px;}
.y93{bottom:682.937050px;}
.ybd{bottom:684.781033px;}
.y2ec{bottom:685.933085px;}
.y202{bottom:686.417962px;}
.y36f{bottom:688.423200px;}
.y29a{bottom:690.082358px;}
.y334{bottom:690.220800px;}
.y2c4{bottom:690.442704px;}
.y12e{bottom:692.537378px;}
.y13{bottom:693.036000px;}
.y12{bottom:693.059846px;}
.y174{bottom:695.704147px;}
.y311{bottom:697.344250px;}
.y14f{bottom:698.192122px;}
.y43{bottom:699.169824px;}
.y1df{bottom:699.193008px;}
.y232{bottom:699.684000px;}
.y39e{bottom:700.825162px;}
.y27e{bottom:701.640079px;}
.y22e{bottom:701.812800px;}
.y198{bottom:702.472550px;}
.y1bc{bottom:702.666634px;}
.y92{bottom:704.296800px;}
.y201{bottom:704.959200px;}
.yef{bottom:705.290400px;}
.y36e{bottom:705.976800px;}
.ybc{bottom:706.140784px;}
.y6b{bottom:706.633747px;}
.y2c3{bottom:708.983942px;}
.y333{bottom:709.099200px;}
.y12d{bottom:709.264800px;}
.y2eb{bottom:715.413197px;}
.y173{bottom:717.231485px;}
.y27d{bottom:718.367501px;}
.y310{bottom:718.871587px;}
.y39d{bottom:719.366400px;}
.y14e{bottom:719.551872px;}
.y259{bottom:719.697600px;}
.y42{bottom:720.529574px;}
.y1de{bottom:720.552758px;}
.y332{bottom:721.684800px;}
.y36c{bottom:723.364800px;}
.y200{bottom:723.837600px;}
.y1bb{bottom:724.193971px;}
.y299{bottom:725.184259px;}
.y91{bottom:725.488963px;}
.y22d{bottom:725.990400px;}
.ybb{bottom:727.332947px;}
.y2c2{bottom:727.525181px;}
.y6a{bottom:727.825910px;}
.yee{bottom:729.468000px;}
.y11{bottom:730.980259px;}
.y197{bottom:732.120250px;}
.y27c{bottom:735.259860px;}
.y1ff{bottom:736.423200px;}
.y12c{bottom:736.597577px;}
.y2ea{bottom:736.772947px;}
.y36b{bottom:740.918400px;}
.y14d{bottom:741.079210px;}
.y25c{bottom:741.580800px;}
.y41{bottom:741.721738px;}
.y1dd{bottom:741.744922px;}
.y258{bottom:743.875200px;}
.y2c1{bottom:746.066419px;}
.y172{bottom:747.046771px;}
.y30f{bottom:748.351699px;}
.yba{bottom:748.692697px;}
.y69{bottom:749.018074px;}
.y331{bottom:749.555280px;}
.y22c{bottom:750.002400px;}
.y27b{bottom:752.152219px;}
.y10{bottom:752.340010px;}
.y196{bottom:753.480000px;}
.y1ba{bottom:753.674083px;}
.y2e9{bottom:757.965110px;}
.y36a{bottom:758.306400px;}
.y90{bottom:760.590864px;}
.y12b{bottom:761.599368px;}
.y14c{bottom:762.438960px;}
.y40{bottom:763.081488px;}
.y298{bottom:763.104672px;}
.y2c0{bottom:764.607658px;}
.y257{bottom:768.052800px;}
.y171{bottom:768.406522px;}
.y27a{bottom:768.879641px;}
.y1fe{bottom:769.549162px;}
.y30e{bottom:769.711450px;}
.yb9{bottom:770.052448px;}
.y68{bottom:770.210237px;}
.yf{bottom:773.532173px;}
.y22b{bottom:774.180000px;}
.y1b9{bottom:775.033834px;}
.y110{bottom:775.528800px;}
.y369{bottom:775.860000px;}
.y1dc{bottom:776.846822px;}
.yec{bottom:777.657600px;}
.y12a{bottom:778.491727px;}
.y330{bottom:779.202979px;}
.y2e8{bottom:779.324861px;}
.y195{bottom:783.992131px;}
.y3f{bottom:784.441238px;}
.y297{bottom:784.464422px;}
.y279{bottom:785.772000px;}
.y25a{bottom:789.770400px;}
.y170{bottom:789.933859px;}
.y30d{bottom:791.071200px;}
.y2bf{bottom:791.436845px;}
.y368{bottom:793.413600px;}
.y129{bottom:795.219149px;}
.y1db{bottom:795.388061px;}
.y1b8{bottom:796.393584px;}
.y22a{bottom:798.357600px;}
.y8f{bottom:798.511277px;}
.yb8{bottom:799.532560px;}
.y67{bottom:799.857936px;}
.y14b{bottom:800.526960px;}
.y2e7{bottom:800.684611px;}
.y10f{bottom:801.835200px;}
.ye{bottom:803.179872px;}
.y1fd{bottom:804.651062px;}
.y278{bottom:804.812357px;}
.y194{bottom:805.351882px;}
.y296{bottom:805.656586px;}
.y2be{bottom:809.978083px;}
.y366{bottom:810.967200px;}
.y16f{bottom:811.293610px;}
.y128{bottom:812.111508px;}
.y3e{bottom:814.088938px;}
.y255{bottom:816.076800px;}
.y1b7{bottom:817.753334px;}
.y8e{bottom:819.871027px;}
.y30c{bottom:820.718899px;}
.yb7{bottom:820.892310px;}
.y66{bottom:821.217686px;}
.y277{bottom:821.539778px;}
.y14a{bottom:822.054298px;}
.y229{bottom:822.535200px;}
.y32f{bottom:822.592829px;}
.yd{bottom:824.539622px;}
.ye9{bottom:825.847200px;}
.y10e{bottom:826.012800px;}
.y193{bottom:826.711632px;}
.y365{bottom:828.520800px;}
.y2e6{bottom:830.332310px;}
.y1da{bottom:833.308474px;}
.y3d{bottom:835.616275px;}
.y39c{bottom:835.626600px;}
.y2bd{bottom:836.807270px;}
.y127{bottom:837.278237px;}
.y276{bottom:838.267200px;}
.y1b6{bottom:838.945498px;}
.y1fc{bottom:839.752963px;}
.y16e{bottom:840.941309px;}
.y8d{bottom:841.063190px;}
.y30b{bottom:842.246237px;}
.yb6{bottom:842.252060px;}
.y65{bottom:842.409850px;}
.y149{bottom:843.414048px;}
.y295{bottom:843.576998px;}
.yc{bottom:845.731786px;}
.y364{bottom:845.908800px;}
.y228{bottom:846.547200px;}
.yed{bottom:847.896000px;}
.y2e5{bottom:851.524474px;}
.y39b{bottom:853.180200px;}
.y192{bottom:854.363520px;}
.y1d9{bottom:854.500637px;}
.y2bc{bottom:855.348509px;}
.y275{bottom:857.321798px;}
.y32e{bottom:857.527142px;}
.y1b5{bottom:860.305248px;}
.y16d{bottom:862.301059px;}
.y126{bottom:862.444966px;}
.yb5{bottom:863.444224px;}
.y363{bottom:863.462400px;}
.y30a{bottom:863.605987px;}
.y64{bottom:863.769600px;}
.y253{bottom:864.432000px;}
.y294{bottom:864.936749px;}
.y148{bottom:864.941386px;}
.y3c{bottom:865.431562px;}
.yb{bottom:867.091536px;}
.y227{bottom:868.240800px;}
.y39a{bottom:870.733800px;}
.y8c{bottom:870.878477px;}
.ye6{bottom:871.718400px;}
.y2e4{bottom:872.884224px;}
.y191{bottom:872.904758px;}
.y2bb{bottom:873.889747px;}
.y10c{bottom:874.202400px;}
.y1fb{bottom:874.854864px;}
.y1d8{bottom:875.860387px;}
.y125{bottom:879.673162px;}
.y362{bottom:881.016000px;}
.y1b4{bottom:881.664998px;}
.y274{bottom:882.488527px;}
.y35a{bottom:882.813600px;}
.y16c{bottom:883.493222px;}
.yb4{bottom:884.803974px;}
.y293{bottom:886.128912px;}
.y147{bottom:886.301136px;}
.y256{bottom:886.480800px;}
.y3b{bottom:886.791312px;}
.y399{bottom:888.287400px;}
.y226{bottom:889.768800px;}
.y8b{bottom:892.238227px;}
.y2ba{bottom:892.278634px;}
.y32d{bottom:892.461456px;}
.ye5{bottom:893.246400px;}
.y63{bottom:893.426573px;}
.y2e3{bottom:894.243974px;}
.yea{bottom:896.085600px;}
.y1d7{bottom:897.220138px;}
.y124{bottom:898.214400px;}
.y10b{bottom:898.380000px;}
.y360{bottom:898.404000px;}
.y309{bottom:898.707888px;}
.y273{bottom:899.215949px;}
.y190{bottom:900.556646px;}
.y1b3{bottom:902.857162px;}
.y398{bottom:905.675400px;}
.y225{bottom:906.837523px;}
.y1fa{bottom:907.153488px;}
.y292{bottom:907.488662px;}
.y3a{bottom:908.318650px;}
.y359{bottom:909.640800px;}
.ye4{bottom:910.143562px;}
.y2b9{bottom:910.819872px;}
.y251{bottom:912.787200px;}
.y62{bottom:914.786323px;}
.y2e2{bottom:915.436138px;}
.y35f{bottom:915.792000px;}
.y272{bottom:916.108308px;}
.y123{bottom:916.263641px;}
.y1d6{bottom:918.412301px;}
.y16b{bottom:918.595123px;}
.y8a{bottom:921.885926px;}
.y10a{bottom:922.392000px;}
.y397{bottom:923.229000px;}
.y392{bottom:925.207200px;}
.y224{bottom:925.378762px;}
.y32c{bottom:927.395770px;}
.y18f{bottom:928.208534px;}
.ye3{bottom:928.684800px;}
.y39{bottom:929.678400px;}
.y1b2{bottom:929.686349px;}
.y122{bottom:933.156000px;}
.y35e{bottom:933.345600px;}
.y254{bottom:934.504800px;}
.y61{bottom:935.978486px;}
.ya{bottom:936.305050px;}
.y308{bottom:936.628301px;}
.y2b8{bottom:937.649059px;}
.y358{bottom:939.283200px;}
.y1f9{bottom:939.452112px;}
.y396{bottom:940.782600px;}
.y271{bottom:941.275037px;}
.y109{bottom:942.436886px;}
.y89{bottom:943.245677px;}
.y223{bottom:943.920000px;}
.ye7{bottom:944.275200px;}
.y10d{bottom:944.440800px;}
.y2e1{bottom:945.083837px;}
.y32b{bottom:945.937008px;}
.y18e{bottom:946.749773px;}
.yb3{bottom:947.572998px;}
.y1d5{bottom:948.060000px;}
.y1b1{bottom:948.227587px;}
.y146{bottom:949.222512px;}
.y35b{bottom:950.899200px;}
.y121{bottom:951.694920px;}
.y391{bottom:954.352800px;}
.y108{bottom:954.356443px;}
.y357{bottom:956.169101px;}
.y2b7{bottom:956.190298px;}
.y16a{bottom:956.515536px;}
.y60{bottom:957.338237px;}
.y395{bottom:958.336200px;}
.y38{bottom:959.320800px;}
.y37{bottom:959.323450px;}
.ye2{bottom:960.146482px;}
.y24f{bottom:960.976800px;}
.y222{bottom:961.639200px;}
.y9{bottom:964.124525px;}
.y32a{bottom:964.478246px;}
.y107{bottom:966.276000px;}
.y270{bottom:966.276828px;}
.yb2{bottom:968.765161px;}
.y1d4{bottom:969.419750px;}
.y88{bottom:970.074864px;}
.y291{bottom:970.257686px;}
.y145{bottom:970.749850px;}
.y120{bottom:972.399060px;}
.y356{bottom:973.061460px;}
.y18d{bottom:974.234074px;}
.y2e0{bottom:974.731536px;}
.y394{bottom:975.889800px;}
.y390{bottom:976.046400px;}
.ye1{bottom:977.038841px;}
.y221{bottom:977.535641px;}
.y1f8{bottom:977.540112px;}
.y169{bottom:977.875286px;}
.y5f{bottom:978.697987px;}
.y106{bottom:979.026041px;}
.y36{bottom:980.683200px;}
.y35{bottom:980.688499px;}
.y252{bottom:982.860000px;}
.y2b6{bottom:983.019485px;}
.y26f{bottom:983.669465px;}
.y307{bottom:987.468163px;}
.y355{bottom:989.788882px;}
.y1d3{bottom:990.611914px;}
.y290{bottom:991.617437px;}
.y8{bottom:991.944000px;}
.y144{bottom:992.109600px;}
.y38f{bottom:992.440800px;}
.y11f{bottom:993.103200px;}
.y393{bottom:993.443400px;}
.ye0{bottom:993.931200px;}
.y220{bottom:994.428000px;}
.y105{bottom:995.918400px;}
.y2df{bottom:995.923699px;}
.y1f7{bottom:998.899862px;}
.y168{bottom:999.067450px;}
.y87{bottom:999.722563px;}
.y5e{bottom:999.890150px;}
.y2b5{bottom:1001.560723px;}
.y18c{bottom:1001.885962px;}
.y26e{bottom:1002.214871px;}
.yb1{bottom:1003.867062px;}
.y3a7{bottom:1006.500000px;}
.y354{bottom:1006.681241px;}
.y306{bottom:1008.827914px;}
.y38e{bottom:1008.835200px;}
.y24d{bottom:1009.166400px;}
.ydf{bottom:1011.484800px;}
.y21f{bottom:1011.816000px;}
.y28f{bottom:1012.809600px;}
.y104{bottom:1013.467860px;}
.y34{bottom:1015.790400px;}
.y33{bottom:1015.795699px;}
.y2de{bottom:1017.283450px;}
.y2b4{bottom:1020.101962px;}
.y26d{bottom:1020.261793px;}
.y167{bottom:1020.427200px;}
.y86{bottom:1021.249901px;}
.y143{bottom:1021.917600px;}
.y353{bottom:1023.573600px;}
.y7{bottom:1025.560800px;}
.yde{bottom:1027.713600px;}
.y21e{bottom:1028.044800px;}
.y3a6{bottom:1029.000000px;}
.y5d{bottom:1029.537850px;}
.y103{bottom:1029.700800px;}
.y24c{bottom:1030.197600px;}
.y250{bottom:1031.215200px;}
.yb0{bottom:1038.477600px;}
.y2b3{bottom:1038.643200px;}
.y352{bottom:1040.299200px;}
.y26c{bottom:1040.961462px;}
.y28e{bottom:1042.617600px;}
.y3a5{bottom:1044.000000px;}
.y21d{bottom:1045.929600px;}
.y6{bottom:1046.260800px;}
.y24b{bottom:1046.424578px;}
.ydd{bottom:1047.585600px;}
.y32{bottom:1050.897600px;}
.y351{bottom:1058.026680px;}
.y3a4{bottom:1059.000000px;}
.y5{bottom:1060.336800px;}
.yaf{bottom:1061.330400px;}
.y24a{bottom:1063.152000px;}
.y26b{bottom:1063.980000px;}
.y38d{bottom:1069.279200px;}
.y2{bottom:1069.444800px;}
.yad{bottom:1070.107062px;}
.y3a3{bottom:1074.000000px;}
.y350{bottom:1078.556940px;}
.y24e{bottom:1079.404800px;}
.y249{bottom:1080.705600px;}
.y26a{bottom:1081.864800px;}
.y3a2{bottom:1089.000000px;}
.y248{bottom:1096.934400px;}
.y34f{bottom:1099.087200px;}
.y269{bottom:1101.571200px;}
.y3a1{bottom:1113.000000px;}
.y247{bottom:1114.819200px;}
.y3a0{bottom:1137.000000px;}
.y21a{bottom:1147.608000px;}
.y39f{bottom:1161.000000px;}
.h1f{height:3.803625px;}
.h5{height:12.803273px;}
.hf{height:13.788141px;}
.h2a{height:16.560000px;}
.h2b{height:16.561380px;}
.h28{height:16.724220px;}
.h29{height:16.725600px;}
.h1d{height:18.050400px;}
.h14{height:19.375200px;}
.h1b{height:23.182620px;}
.h1a{height:23.184000px;}
.h19{height:23.349600px;}
.h27{height:29.499441px;}
.h25{height:29.953547px;}
.h1c{height:31.684584px;}
.h11{height:32.332106px;}
.h7{height:33.111914px;}
.h6{height:36.643852px;}
.h4{height:39.462609px;}
.h1e{height:40.617281px;}
.h16{height:40.971445px;}
.h21{height:41.839875px;}
.h20{height:43.156589px;}
.h23{height:43.719828px;}
.h22{height:43.727004px;}
.h3{height:43.741688px;}
.h24{height:43.758248px;}
.ha{height:43.804688px;}
.h10{height:44.396325px;}
.h9{height:44.852695px;}
.h17{height:45.341733px;}
.h8{height:50.258306px;}
.h18{height:51.654586px;}
.h12{height:52.627163px;}
.h15{height:54.628594px;}
.hb{height:55.019306px;}
.h13{height:58.718461px;}
.h2e{height:58.998881px;}
.h30{height:62.578125px;}
.h26{height:63.235266px;}
.h2f{height:87.609375px;}
.h2d{height:1161.849600px;}
.h2{height:1162.015200px;}
.he{height:1162.677600px;}
.h2c{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.hd{height:1263.750000px;}
.hc{height:1263.780000px;}
.w9{width:13.248000px;}
.w6{width:13.910400px;}
.wb{width:66.738180px;}
.wf{width:77.335200px;}
.w8{width:111.448800px;}
.we{width:489.513600px;}
.wa{width:497.131200px;}
.w7{width:545.983200px;}
.wd{width:821.541600px;}
.w2{width:821.872800px;}
.w5{width:822.535200px;}
.w10{width:892.500000px;}
.wc{width:892.980000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.w4{width:894.000000px;}
.w3{width:894.060000px;}
.x0{left:0.000000px;}
.x19{left:2.815200px;}
.x25{left:19.044000px;}
.x3d{left:22.024800px;}
.x4{left:27.324000px;}
.x52{left:29.808000px;}
.x1{left:35.730000px;}
.x23{left:37.922400px;}
.x26{left:51.832800px;}
.x5c{left:54.000000px;}
.xc{left:55.500000px;}
.x48{left:56.652422px;}
.x1a{left:70.380000px;}
.x28{left:73.195200px;}
.x1f{left:78.328800px;}
.x7{left:86.112000px;}
.x41{left:87.933600px;}
.x24{left:100.684800px;}
.xd{left:101.844000px;}
.xe{left:103.831200px;}
.x8{left:105.818400px;}
.x4f{left:107.640000px;}
.x42{left:112.939200px;}
.x9{left:114.098400px;}
.x20{left:117.370800px;}
.xb{left:119.066400px;}
.xa{left:121.550400px;}
.xf{left:123.868800px;}
.x13{left:125.190288px;}
.x49{left:133.163597px;}
.x33{left:135.715824px;}
.x43{left:137.779200px;}
.x46{left:142.243776px;}
.x31{left:149.229446px;}
.x12{left:154.518048px;}
.x47{left:167.061917px;}
.x58{left:169.851000px;}
.x32{left:174.047587px;}
.x5b{left:205.845000px;}
.x21{left:234.986400px;}
.x44{left:256.183200px;}
.x2{left:262.476000px;}
.x3c{left:278.208000px;}
.x53{left:283.672800px;}
.x50{left:299.073600px;}
.x14{left:305.508154px;}
.x27{left:308.181600px;}
.x2a{left:316.627200px;}
.x17{left:319.276800px;}
.x16{left:320.895706px;}
.x57{left:322.588800px;}
.x2b{left:324.079200px;}
.x38{left:326.563200px;}
.x3a{left:329.378400px;}
.x35{left:336.330950px;}
.x4b{left:348.558854px;}
.x37{left:351.748973px;}
.x15{left:354.017030px;}
.x5{left:360.014400px;}
.x4a{left:381.680179px;}
.x36{left:383.026838px;}
.x34{left:410.846314px;}
.x40{left:420.288660px;}
.x5a{left:443.325000px;}
.x30{left:450.100800px;}
.x6{left:471.132000px;}
.x39{left:494.481600px;}
.x1c{left:497.959200px;}
.x2e{left:534.560940px;}
.x3f{left:545.320800px;}
.x55{left:548.136000px;}
.x2d{left:550.123200px;}
.x2f{left:561.214260px;}
.x4e{left:567.018540px;}
.x56{left:569.175480px;}
.x2c{left:634.744800px;}
.x3e{left:637.891200px;}
.x51{left:640.501200px;}
.x10{left:643.190400px;}
.x11{left:646.999200px;}
.x54{left:650.973600px;}
.x4d{left:655.610400px;}
.x59{left:660.192600px;}
.x22{left:664.182000px;}
.x29{left:681.609600px;}
.x1b{left:686.577600px;}
.x3{left:724.163501px;}
.x45{left:725.990400px;}
.x18{left:728.766000px;}
.x4c{left:735.760800px;}
.x3b{left:739.364400px;}
.x1d{left:745.862400px;}
.x1e{left:752.817600px;}
@media print{
.v1{vertical-align:-17.664000pt;}
.v2{vertical-align:-2.944000pt;}
.v0{vertical-align:0.000000pt;}
.ls10d{letter-spacing:-1.733427pt;}
.ls14e{letter-spacing:-1.457280pt;}
.ls35{letter-spacing:-1.354240pt;}
.lsc6{letter-spacing:-1.300070pt;}
.ls6e{letter-spacing:-1.245901pt;}
.ls37{letter-spacing:-1.191731pt;}
.ls38{letter-spacing:-1.137562pt;}
.ls36{letter-spacing:-1.029222pt;}
.ls12b{letter-spacing:-1.026278pt;}
.lsfb{letter-spacing:-0.975053pt;}
.lsc5{letter-spacing:-0.920883pt;}
.ls34{letter-spacing:-0.866714pt;}
.ls7b{letter-spacing:-0.839040pt;}
.ls121{letter-spacing:-0.829030pt;}
.ls39{letter-spacing:-0.812544pt;}
.ls14b{letter-spacing:-0.794880pt;}
.lsb2{letter-spacing:-0.781926pt;}
.ls146{letter-spacing:-0.765440pt;}
.ls17{letter-spacing:-0.758374pt;}
.ls7e{letter-spacing:-0.750720pt;}
.ls11d{letter-spacing:-0.725402pt;}
.ls7f{letter-spacing:-0.706560pt;}
.lse{letter-spacing:-0.704205pt;}
.lsbb{letter-spacing:-0.684186pt;}
.ls11e{letter-spacing:-0.673587pt;}
.lsaa{letter-spacing:-0.662400pt;}
.ls16{letter-spacing:-0.650035pt;}
.ls7a{letter-spacing:-0.647680pt;}
.lsad{letter-spacing:-0.635315pt;}
.ls149{letter-spacing:-0.618240pt;}
.ls11{letter-spacing:-0.595866pt;}
.ls80{letter-spacing:-0.574080pt;}
.ls10{letter-spacing:-0.541696pt;}
.lsae{letter-spacing:-0.537574pt;}
.ls142{letter-spacing:-0.529920pt;}
.lsb4{letter-spacing:-0.488704pt;}
.lsf{letter-spacing:-0.487526pt;}
.ls119{letter-spacing:-0.441600pt;}
.lsb0{letter-spacing:-0.439834pt;}
.lsd{letter-spacing:-0.433357pt;}
.ls14c{letter-spacing:-0.397440pt;}
.ls12{letter-spacing:-0.379187pt;}
.lsb1{letter-spacing:-0.342093pt;}
.lsc{letter-spacing:-0.325018pt;}
.ls111{letter-spacing:-0.315597pt;}
.lsb7{letter-spacing:-0.293222pt;}
.ls6d{letter-spacing:-0.270848pt;}
.ls7c{letter-spacing:-0.264960pt;}
.lsb8{letter-spacing:-0.244352pt;}
.ls143{letter-spacing:-0.220800pt;}
.ls13{letter-spacing:-0.216678pt;}
.lsb3{letter-spacing:-0.195482pt;}
.ls11a{letter-spacing:-0.176640pt;}
.ls82{letter-spacing:-0.162509pt;}
.ls113{letter-spacing:-0.157798pt;}
.ls122{letter-spacing:-0.155443pt;}
.lsb5{letter-spacing:-0.146611pt;}
.ls147{letter-spacing:-0.132480pt;}
.ls112{letter-spacing:-0.118349pt;}
.ls145{letter-spacing:-0.117760pt;}
.ls6c{letter-spacing:-0.108339pt;}
.ls120{letter-spacing:-0.103629pt;}
.lsb6{letter-spacing:-0.097741pt;}
.ls14{letter-spacing:-0.054170pt;}
.lsac{letter-spacing:-0.048870pt;}
.lsb{letter-spacing:0.000000pt;}
.ls141{letter-spacing:0.029440pt;}
.ls14d{letter-spacing:0.044160pt;}
.lsab{letter-spacing:0.048870pt;}
.ls11c{letter-spacing:0.051814pt;}
.ls5{letter-spacing:0.054170pt;}
.lsd3{letter-spacing:0.061942pt;}
.lsd4{letter-spacing:0.070420pt;}
.lsdd{letter-spacing:0.086671pt;}
.lsba{letter-spacing:0.097741pt;}
.ls4e{letter-spacing:0.102922pt;}
.ls11f{letter-spacing:0.103629pt;}
.ls7{letter-spacing:0.108339pt;}
.ls8e{letter-spacing:0.117289pt;}
.ls78{letter-spacing:0.122470pt;}
.ls1e{letter-spacing:0.124590pt;}
.ls14f{letter-spacing:0.132480pt;}
.ls103{letter-spacing:0.140841pt;}
.lsf5{letter-spacing:0.146258pt;}
.ls8f{letter-spacing:0.146611pt;}
.ls72{letter-spacing:0.155443pt;}
.ls81{letter-spacing:0.162509pt;}
.lsf1{letter-spacing:0.173343pt;}
.ls7d{letter-spacing:0.176640pt;}
.ls54{letter-spacing:0.178760pt;}
.ls53{letter-spacing:0.189594pt;}
.ls62{letter-spacing:0.205844pt;}
.ls15{letter-spacing:0.216678pt;}
.ls14a{letter-spacing:0.220800pt;}
.ls84{letter-spacing:0.222095pt;}
.ls9c{letter-spacing:0.244352pt;}
.lsbe{letter-spacing:0.260014pt;}
.ls148{letter-spacing:0.264960pt;}
.ls150{letter-spacing:0.269376pt;}
.ls3{letter-spacing:0.270848pt;}
.ls70{letter-spacing:0.276147pt;}
.ls144{letter-spacing:0.293222pt;}
.ls152{letter-spacing:0.309120pt;}
.lsd9{letter-spacing:0.325018pt;}
.lsb9{letter-spacing:0.342093pt;}
.ls61{letter-spacing:0.379187pt;}
.lsd5{letter-spacing:0.541696pt;}
.ls10b{letter-spacing:0.698788pt;}
.ls1b{letter-spacing:0.704205pt;}
.ls8b{letter-spacing:0.733056pt;}
.ls69{letter-spacing:0.736707pt;}
.lsa9{letter-spacing:0.737943pt;}
.lse6{letter-spacing:0.758374pt;}
.ls134{letter-spacing:0.812544pt;}
.ls33{letter-spacing:1.137562pt;}
.ls73{letter-spacing:1.192320pt;}
.ls74{letter-spacing:1.201152pt;}
.ls136{letter-spacing:1.272986pt;}
.ls0{letter-spacing:1.300070pt;}
.ls13b{letter-spacing:1.310904pt;}
.lse0{letter-spacing:1.316321pt;}
.ls8c{letter-spacing:1.319501pt;}
.lsd6{letter-spacing:1.354240pt;}
.lsd8{letter-spacing:1.359657pt;}
.lsed{letter-spacing:1.365074pt;}
.lsd7{letter-spacing:1.375908pt;}
.ls135{letter-spacing:1.413827pt;}
.ls110{letter-spacing:1.617434pt;}
.ls75{letter-spacing:1.810560pt;}
.ls1{letter-spacing:1.895936pt;}
.ls126{letter-spacing:1.905946pt;}
.lsce{letter-spacing:1.906770pt;}
.ls67{letter-spacing:1.912187pt;}
.ls1a{letter-spacing:1.917604pt;}
.ls101{letter-spacing:1.939272pt;}
.ls10f{letter-spacing:1.972480pt;}
.ls13a{letter-spacing:2.004275pt;}
.lsaf{letter-spacing:2.345779pt;}
.lsbf{letter-spacing:2.448466pt;}
.ls4{letter-spacing:2.491802pt;}
.ls89{letter-spacing:2.492390pt;}
.ls56{letter-spacing:2.513469pt;}
.ls58{letter-spacing:2.529720pt;}
.lsee{letter-spacing:2.600141pt;}
.ls10e{letter-spacing:2.870989pt;}
.ls123{letter-spacing:2.932224pt;}
.ls115{letter-spacing:3.076833pt;}
.ls8a{letter-spacing:3.078835pt;}
.ls1d{letter-spacing:3.087667pt;}
.ls5a{letter-spacing:3.103918pt;}
.lsfa{letter-spacing:3.136420pt;}
.ls13d{letter-spacing:3.196006pt;}
.ls13e{letter-spacing:3.353216pt;}
.ls133{letter-spacing:3.586028pt;}
.ls4f{letter-spacing:3.629363pt;}
.ls114{letter-spacing:3.634780pt;}
.ls57{letter-spacing:3.651031pt;}
.ls87{letter-spacing:3.665280pt;}
.ls2{letter-spacing:3.680000pt;}
.ls132{letter-spacing:3.683533pt;}
.ls131{letter-spacing:3.705201pt;}
.lsc3{letter-spacing:3.710618pt;}
.ls13c{letter-spacing:3.791872pt;}
.ls6{letter-spacing:4.225229pt;}
.ls86{letter-spacing:4.251725pt;}
.lsf7{letter-spacing:4.279398pt;}
.lsc2{letter-spacing:4.306483pt;}
.ls55{letter-spacing:4.387738pt;}
.ls23{letter-spacing:4.821094pt;}
.ls97{letter-spacing:4.833283pt;}
.ls88{letter-spacing:4.838170pt;}
.ls77{letter-spacing:4.864430pt;}
.lsfe{letter-spacing:4.886098pt;}
.ls139{letter-spacing:4.983603pt;}
.ls10c{letter-spacing:5.026939pt;}
.ls22{letter-spacing:5.416960pt;}
.ls106{letter-spacing:5.422377pt;}
.ls98{letter-spacing:5.424614pt;}
.ls60{letter-spacing:5.438628pt;}
.lsf4{letter-spacing:5.471130pt;}
.lsa2{letter-spacing:5.483259pt;}
.ls5e{letter-spacing:5.487380pt;}
.ls12c{letter-spacing:5.525299pt;}
.lsfc{letter-spacing:5.850317pt;}
.ls9b{letter-spacing:6.011059pt;}
.ls29{letter-spacing:6.012826pt;}
.ls2a{letter-spacing:6.023660pt;}
.ls5f{letter-spacing:6.094080pt;}
.lsf2{letter-spacing:6.121165pt;}
.ls52{letter-spacing:6.587023pt;}
.lsa5{letter-spacing:6.597504pt;}
.ls19{letter-spacing:6.608691pt;}
.lscf{letter-spacing:6.614108pt;}
.ls100{letter-spacing:6.619525pt;}
.ls3b{letter-spacing:6.624942pt;}
.lsc0{letter-spacing:6.646610pt;}
.ls50{letter-spacing:6.662861pt;}
.ls71{letter-spacing:6.684058pt;}
.ls6f{letter-spacing:6.933709pt;}
.ls13f{letter-spacing:7.109760pt;}
.ls137{letter-spacing:7.150387pt;}
.ls12e{letter-spacing:7.177472pt;}
.lsa1{letter-spacing:7.183949pt;}
.ls3c{letter-spacing:7.204557pt;}
.ls130{letter-spacing:7.215391pt;}
.ls12d{letter-spacing:7.220808pt;}
.ls12f{letter-spacing:7.226225pt;}
.lsca{letter-spacing:7.231642pt;}
.lsa6{letter-spacing:7.232819pt;}
.lsde{letter-spacing:7.237059pt;}
.ls51{letter-spacing:7.253309pt;}
.lsbd{letter-spacing:7.264143pt;}
.ls138{letter-spacing:7.312896pt;}
.ls85{letter-spacing:7.683840pt;}
.lsfd{letter-spacing:7.692083pt;}
.ls3a{letter-spacing:7.800422pt;}
.lsd0{letter-spacing:7.805839pt;}
.ls9e{letter-spacing:7.819264pt;}
.lsa7{letter-spacing:7.824151pt;}
.lsc9{letter-spacing:7.827507pt;}
.lsd1{letter-spacing:7.832924pt;}
.lsbc{letter-spacing:7.849175pt;}
.lseb{letter-spacing:8.309617pt;}
.ls18{letter-spacing:8.342118pt;}
.ls41{letter-spacing:8.358369pt;}
.ls9f{letter-spacing:8.405709pt;}
.ls3e{letter-spacing:8.937984pt;}
.ls125{letter-spacing:8.967718pt;}
.ls124{letter-spacing:8.972605pt;}
.ls3f{letter-spacing:8.975903pt;}
.ls92{letter-spacing:8.992154pt;}
.lscc{letter-spacing:9.002988pt;}
.ls66{letter-spacing:9.013821pt;}
.ls3d{letter-spacing:9.533850pt;}
.ls127{letter-spacing:9.544389pt;}
.lsf8{letter-spacing:9.571768pt;}
.lscb{letter-spacing:9.577185pt;}
.ls90{letter-spacing:9.578598pt;}
.ls104{letter-spacing:9.588019pt;}
.ls105{letter-spacing:10.108047pt;}
.ls2d{letter-spacing:10.129715pt;}
.ls91{letter-spacing:10.165043pt;}
.lsef{letter-spacing:10.216387pt;}
.ls2e{letter-spacing:10.725581pt;}
.ls68{letter-spacing:10.741832pt;}
.ls102{letter-spacing:10.747249pt;}
.lsa4{letter-spacing:10.751488pt;}
.lsf6{letter-spacing:10.833920pt;}
.ls31{letter-spacing:11.321446pt;}
.ls9a{letter-spacing:11.337933pt;}
.ls10a{letter-spacing:11.348531pt;}
.lsc8{letter-spacing:11.364782pt;}
.lsc7{letter-spacing:11.906478pt;}
.ls28{letter-spacing:11.917312pt;}
.ls1f{letter-spacing:11.938980pt;}
.lsea{letter-spacing:11.944397pt;}
.ls8{letter-spacing:12.513178pt;}
.ls6a{letter-spacing:12.561930pt;}
.ls9{letter-spacing:13.054874pt;}
.lsa3{letter-spacing:13.097267pt;}
.ls2b{letter-spacing:13.634488pt;}
.ls21{letter-spacing:13.650739pt;}
.lsa0{letter-spacing:13.683712pt;}
.lsa{letter-spacing:13.689600pt;}
.ls20{letter-spacing:13.694075pt;}
.ls1c{letter-spacing:14.246605pt;}
.lsa8{letter-spacing:14.270157pt;}
.lsf9{letter-spacing:14.284524pt;}
.lsf3{letter-spacing:14.300774pt;}
.ls2c{letter-spacing:14.317025pt;}
.ls30{letter-spacing:14.333276pt;}
.ls44{letter-spacing:14.809969pt;}
.ls42{letter-spacing:14.842470pt;}
.ls8d{letter-spacing:14.856602pt;}
.ls109{letter-spacing:14.896640pt;}
.ls43{letter-spacing:15.438336pt;}
.lsec{letter-spacing:15.487089pt;}
.ls12a{letter-spacing:16.029491pt;}
.lsdb{letter-spacing:16.034202pt;}
.lsda{letter-spacing:16.088371pt;}
.ls26{letter-spacing:16.630067pt;}
.lsff{letter-spacing:16.640901pt;}
.ls25{letter-spacing:17.171763pt;}
.lse1{letter-spacing:17.225933pt;}
.ls59{letter-spacing:17.269268pt;}
.ls24{letter-spacing:17.767629pt;}
.ls4c{letter-spacing:18.363494pt;}
.ls128{letter-spacing:18.375270pt;}
.ls4d{letter-spacing:18.959360pt;}
.ls93{letter-spacing:18.961715pt;}
.lsd2{letter-spacing:19.029780pt;}
.ls96{letter-spacing:19.548160pt;}
.ls40{letter-spacing:19.555226pt;}
.ls94{letter-spacing:19.597030pt;}
.ls107{letter-spacing:19.609395pt;}
.ls27{letter-spacing:20.151091pt;}
.ls95{letter-spacing:20.183475pt;}
.ls5c{letter-spacing:20.746957pt;}
.lsf0{letter-spacing:21.342822pt;}
.ls5b{letter-spacing:21.884518pt;}
.ls5d{letter-spacing:22.480384pt;}
.lsc1{letter-spacing:23.076250pt;}
.lsdf{letter-spacing:23.108751pt;}
.ls47{letter-spacing:23.672115pt;}
.ls46{letter-spacing:24.267981pt;}
.ls45{letter-spacing:24.863846pt;}
.ls76{letter-spacing:25.459712pt;}
.lscd{letter-spacing:25.465129pt;}
.lse5{letter-spacing:26.055578pt;}
.ls9d{letter-spacing:26.634368pt;}
.ls65{letter-spacing:27.193139pt;}
.ls64{letter-spacing:27.789005pt;}
.ls2f{letter-spacing:28.384870pt;}
.ls63{letter-spacing:28.980736pt;}
.lse7{letter-spacing:29.576602pt;}
.lse9{letter-spacing:30.118298pt;}
.ls4b{letter-spacing:30.172467pt;}
.lse8{letter-spacing:30.714163pt;}
.ls6b{letter-spacing:32.501760pt;}
.lsc4{letter-spacing:36.683653pt;}
.lse3{letter-spacing:37.214515pt;}
.lse4{letter-spacing:38.406246pt;}
.lse2{letter-spacing:39.002112pt;}
.ls4a{letter-spacing:39.597978pt;}
.ls108{letter-spacing:42.523136pt;}
.lsdc{letter-spacing:43.823206pt;}
.ls49{letter-spacing:45.448294pt;}
.ls48{letter-spacing:46.044160pt;}
.ls32{letter-spacing:46.152499pt;}
.ls129{letter-spacing:48.505344pt;}
.ls99{letter-spacing:99.142144pt;}
.ls140{letter-spacing:725.048320pt;}
.ls151{letter-spacing:762.142720pt;}
.ls116{letter-spacing:905.696870pt;}
.ls11b{letter-spacing:939.258470pt;}
.ls83{letter-spacing:960.455270pt;}
.ls117{letter-spacing:1022.868070pt;}
.ls118{letter-spacing:1420.896870pt;}
.ls79{letter-spacing:1422.074470pt;}
.ws91{word-spacing:-54.169600pt;}
.wse3{word-spacing:-15.113318pt;}
.ws68{word-spacing:-14.559846pt;}
.wsff{word-spacing:-13.483520pt;}
.ws12e{word-spacing:-13.189120pt;}
.ws71{word-spacing:-12.659200pt;}
.wsc2{word-spacing:-12.567347pt;}
.ws12f{word-spacing:-12.541440pt;}
.ws8{word-spacing:-12.513178pt;}
.ws6{word-spacing:-12.459008pt;}
.ws78{word-spacing:-12.404838pt;}
.wse{word-spacing:-12.350669pt;}
.ws7{word-spacing:-12.296499pt;}
.ws2{word-spacing:-12.242330pt;}
.ws3{word-spacing:-12.188160pt;}
.ws5e{word-spacing:-12.133990pt;}
.ws79{word-spacing:-12.079821pt;}
.ws4{word-spacing:-12.025651pt;}
.ws5d{word-spacing:-11.971482pt;}
.wsa{word-spacing:-11.917312pt;}
.ws5{word-spacing:-11.863142pt;}
.ws0{word-spacing:-11.808973pt;}
.ws9{word-spacing:-11.754803pt;}
.wsf9{word-spacing:-11.710054pt;}
.ws1{word-spacing:-11.700634pt;}
.wsc{word-spacing:-11.646464pt;}
.wsb{word-spacing:-11.592294pt;}
.wsfb{word-spacing:-11.554611pt;}
.ws3d{word-spacing:-11.538125pt;}
.wsd{word-spacing:-11.483955pt;}
.ws41{word-spacing:-11.429786pt;}
.ws90{word-spacing:-11.386803pt;}
.ws3c{word-spacing:-11.375616pt;}
.ws12d{word-spacing:-11.337933pt;}
.wsb4{word-spacing:-11.321446pt;}
.ws83{word-spacing:-11.289062pt;}
.wsdb{word-spacing:-11.267277pt;}
.ws86{word-spacing:-11.191322pt;}
.ws93{word-spacing:-11.142451pt;}
.ws40{word-spacing:-11.104768pt;}
.ws81{word-spacing:-11.093581pt;}
.ws3f{word-spacing:-11.050598pt;}
.ws92{word-spacing:-11.044710pt;}
.ws5f{word-spacing:-10.996429pt;}
.ws82{word-spacing:-10.995840pt;}
.wsf8{word-spacing:-10.984653pt;}
.ws8d{word-spacing:-10.946970pt;}
.ws8c{word-spacing:-10.898099pt;}
.ws3e{word-spacing:-10.888090pt;}
.wsfa{word-spacing:-10.881024pt;}
.ws8a{word-spacing:-10.849229pt;}
.ws8f{word-spacing:-10.800358pt;}
.ws8e{word-spacing:-10.751488pt;}
.ws88{word-spacing:-10.702618pt;}
.ws87{word-spacing:-10.604877pt;}
.ws8b{word-spacing:-10.556006pt;}
.ws85{word-spacing:-10.507136pt;}
.ws84{word-spacing:-10.409395pt;}
.ws94{word-spacing:-10.360525pt;}
.ws140{word-spacing:-10.289280pt;}
.ws89{word-spacing:-10.262784pt;}
.ws131{word-spacing:-10.245120pt;}
.ws133{word-spacing:-10.200960pt;}
.ws74{word-spacing:-10.156800pt;}
.ws136{word-spacing:-10.112640pt;}
.ws135{word-spacing:-10.024320pt;}
.ws100{word-spacing:-10.018432pt;}
.ws7d{word-spacing:-9.980160pt;}
.ws130{word-spacing:-9.847680pt;}
.wsf4{word-spacing:-9.803520pt;}
.ws12c{word-spacing:-9.759360pt;}
.ws73{word-spacing:-9.715200pt;}
.ws13f{word-spacing:-9.582720pt;}
.wsf3{word-spacing:-9.538560pt;}
.ws12b{word-spacing:-9.450240pt;}
.ws76{word-spacing:-9.406080pt;}
.ws132{word-spacing:-9.361920pt;}
.ws80{word-spacing:-9.317760pt;}
.ws75{word-spacing:-9.273600pt;}
.wsea{word-spacing:-9.270656pt;}
.ws77{word-spacing:-9.229440pt;}
.ws134{word-spacing:-9.185280pt;}
.ws72{word-spacing:-9.141120pt;}
.wsec{word-spacing:-8.994509pt;}
.wse9{word-spacing:-8.836710pt;}
.wseb{word-spacing:-8.678912pt;}
.wse1{word-spacing:-7.692083pt;}
.ws64{word-spacing:-6.933709pt;}
.wsdf{word-spacing:-5.850317pt;}
.ws29{word-spacing:-3.196006pt;}
.ws24{word-spacing:-2.762650pt;}
.ws60{word-spacing:-2.600141pt;}
.ws97{word-spacing:-2.345779pt;}
.ws22{word-spacing:-2.166784pt;}
.ws103{word-spacing:-2.150298pt;}
.ws120{word-spacing:-2.058445pt;}
.ws23{word-spacing:-2.004275pt;}
.ws104{word-spacing:-2.003686pt;}
.wsac{word-spacing:-1.857075pt;}
.wscf{word-spacing:-1.787597pt;}
.wsab{word-spacing:-1.759334pt;}
.wsc7{word-spacing:-1.733427pt;}
.ws6e{word-spacing:-1.617434pt;}
.ws66{word-spacing:-1.570918pt;}
.wsbf{word-spacing:-1.462579pt;}
.wsc3{word-spacing:-1.408410pt;}
.ws57{word-spacing:-1.300070pt;}
.wsa1{word-spacing:-1.270630pt;}
.wsd2{word-spacing:-1.245901pt;}
.wsb8{word-spacing:-1.137562pt;}
.wsd0{word-spacing:-1.029222pt;}
.wsf2{word-spacing:-1.025690pt;}
.ws1c{word-spacing:-0.975053pt;}
.ws122{word-spacing:-0.866714pt;}
.wse0{word-spacing:-0.812544pt;}
.wsd1{word-spacing:-0.704205pt;}
.wsa2{word-spacing:-0.684186pt;}
.ws65{word-spacing:-0.595866pt;}
.wsa3{word-spacing:-0.586445pt;}
.wsb5{word-spacing:-0.541696pt;}
.ws139{word-spacing:-0.441600pt;}
.ws6f{word-spacing:-0.433946pt;}
.ws1f{word-spacing:-0.433357pt;}
.ws13b{word-spacing:-0.397440pt;}
.wsdd{word-spacing:-0.379187pt;}
.ws138{word-spacing:-0.309120pt;}
.ws37{word-spacing:-0.270848pt;}
.ws107{word-spacing:-0.244352pt;}
.ws11c{word-spacing:-0.216678pt;}
.ws7c{word-spacing:-0.162509pt;}
.ws70{word-spacing:-0.155443pt;}
.ws106{word-spacing:-0.146611pt;}
.ws101{word-spacing:-0.132480pt;}
.ws2d{word-spacing:-0.108339pt;}
.wsfd{word-spacing:-0.103629pt;}
.ws9b{word-spacing:-0.097741pt;}
.ws21{word-spacing:-0.054170pt;}
.wsf{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.044160pt;}
.ws9a{word-spacing:0.048870pt;}
.ws20{word-spacing:0.054170pt;}
.ws16{word-spacing:0.108339pt;}
.wsef{word-spacing:0.118349pt;}
.wsfc{word-spacing:0.155443pt;}
.ws1d{word-spacing:0.162509pt;}
.ws13a{word-spacing:0.176640pt;}
.ws9f{word-spacing:0.195482pt;}
.ws17{word-spacing:0.216678pt;}
.ws142{word-spacing:0.220800pt;}
.ws141{word-spacing:0.264960pt;}
.ws4a{word-spacing:0.270848pt;}
.ws95{word-spacing:0.294400pt;}
.ws7f{word-spacing:0.309120pt;}
.wsed{word-spacing:0.315597pt;}
.ws27{word-spacing:0.325018pt;}
.ws9c{word-spacing:0.342093pt;}
.ws18{word-spacing:0.379187pt;}
.ws59{word-spacing:0.433357pt;}
.ws99{word-spacing:0.439834pt;}
.ws102{word-spacing:0.441600pt;}
.ws3a{word-spacing:0.487526pt;}
.ws5a{word-spacing:0.541696pt;}
.ws98{word-spacing:0.586445pt;}
.ws26{word-spacing:0.595866pt;}
.wsb1{word-spacing:0.635315pt;}
.ws46{word-spacing:0.650035pt;}
.ws11{word-spacing:0.704205pt;}
.wsfe{word-spacing:0.725402pt;}
.ws7b{word-spacing:0.750720pt;}
.ws38{word-spacing:0.758374pt;}
.wsb2{word-spacing:0.781926pt;}
.ws13c{word-spacing:0.794880pt;}
.ws143{word-spacing:0.839040pt;}
.ws2a{word-spacing:0.866714pt;}
.ws96{word-spacing:0.883200pt;}
.ws3b{word-spacing:0.920883pt;}
.wsb3{word-spacing:1.026278pt;}
.ws49{word-spacing:1.029222pt;}
.ws9e{word-spacing:1.075149pt;}
.wsd5{word-spacing:1.137562pt;}
.ws105{word-spacing:1.172890pt;}
.ws62{word-spacing:1.191731pt;}
.wse6{word-spacing:1.245901pt;}
.wsc0{word-spacing:1.300070pt;}
.wsf1{word-spacing:1.341286pt;}
.ws1a{word-spacing:1.354240pt;}
.ws110{word-spacing:1.368371pt;}
.ws13d{word-spacing:1.457280pt;}
.ws48{word-spacing:1.462579pt;}
.ws19{word-spacing:1.516749pt;}
.ws10a{word-spacing:1.661594pt;}
.wsf6{word-spacing:1.679258pt;}
.ws12{word-spacing:1.733427pt;}
.wsf0{word-spacing:1.775232pt;}
.ws13{word-spacing:1.787597pt;}
.ws56{word-spacing:1.895936pt;}
.wsee{word-spacing:1.933030pt;}
.ws47{word-spacing:1.950106pt;}
.ws10f{word-spacing:1.954816pt;}
.ws14{word-spacing:2.004275pt;}
.wse4{word-spacing:2.058445pt;}
.ws7e{word-spacing:2.075520pt;}
.wsb6{word-spacing:2.112614pt;}
.wsaa{word-spacing:2.248038pt;}
.wsa7{word-spacing:2.345779pt;}
.ws11d{word-spacing:2.383462pt;}
.wsde{word-spacing:2.437632pt;}
.wsa8{word-spacing:2.541261pt;}
.ws25{word-spacing:2.545971pt;}
.ws15{word-spacing:2.600141pt;}
.ws7a{word-spacing:2.649600pt;}
.ws32{word-spacing:2.654310pt;}
.wsa9{word-spacing:2.687872pt;}
.ws4d{word-spacing:2.708480pt;}
.wscc{word-spacing:2.870989pt;}
.wsc1{word-spacing:2.925158pt;}
.wscb{word-spacing:2.979328pt;}
.ws12a{word-spacing:3.077069pt;}
.ws4c{word-spacing:3.141837pt;}
.wsf5{word-spacing:3.223680pt;}
.ws33{word-spacing:3.250176pt;}
.ws2f{word-spacing:3.304346pt;}
.wse2{word-spacing:3.412685pt;}
.wsa0{word-spacing:3.420928pt;}
.ws6d{word-spacing:3.466854pt;}
.wsce{word-spacing:3.521024pt;}
.ws118{word-spacing:3.683533pt;}
.ws108{word-spacing:3.714150pt;}
.ws58{word-spacing:3.737702pt;}
.ws6c{word-spacing:3.846042pt;}
.ws109{word-spacing:3.860762pt;}
.wsf7{word-spacing:3.900211pt;}
.ws111{word-spacing:4.105114pt;}
.ws31{word-spacing:4.116890pt;}
.ws61{word-spacing:4.171059pt;}
.ws1b{word-spacing:4.279398pt;}
.wsbe{word-spacing:4.387738pt;}
.ws30{word-spacing:4.441907pt;}
.ws10b{word-spacing:4.593818pt;}
.wscd{word-spacing:4.712755pt;}
.ws5b{word-spacing:4.875264pt;}
.ws10c{word-spacing:4.887040pt;}
.wsda{word-spacing:4.983603pt;}
.ws39{word-spacing:5.037773pt;}
.ws137{word-spacing:5.131392pt;}
.wsd7{word-spacing:5.254451pt;}
.wsd9{word-spacing:5.471130pt;}
.wsd8{word-spacing:5.579469pt;}
.ws28{word-spacing:5.633638pt;}
.wsa4{word-spacing:5.766707pt;}
.ws50{word-spacing:5.796147pt;}
.ws125{word-spacing:5.850317pt;}
.wsa5{word-spacing:5.864448pt;}
.ws117{word-spacing:5.904486pt;}
.wsa6{word-spacing:6.059930pt;}
.ws116{word-spacing:6.066995pt;}
.wsbb{word-spacing:6.175334pt;}
.ws51{word-spacing:6.229504pt;}
.ws45{word-spacing:6.662861pt;}
.wse7{word-spacing:6.771200pt;}
.wsb7{word-spacing:6.825370pt;}
.ws10e{word-spacing:6.939597pt;}
.wsd4{word-spacing:7.096218pt;}
.ws53{word-spacing:7.258726pt;}
.ws11a{word-spacing:7.367066pt;}
.ws54{word-spacing:7.421235pt;}
.ws129{word-spacing:7.583744pt;}
.ws121{word-spacing:7.637914pt;}
.ws11b{word-spacing:7.692083pt;}
.ws44{word-spacing:7.800422pt;}
.ws43{word-spacing:7.854592pt;}
.ws63{word-spacing:7.962931pt;}
.ws5c{word-spacing:8.396288pt;}
.ws42{word-spacing:8.450458pt;}
.ws4f{word-spacing:8.558797pt;}
.ws1e{word-spacing:8.992154pt;}
.wsc8{word-spacing:9.588019pt;}
.ws69{word-spacing:9.696358pt;}
.wsc4{word-spacing:10.183885pt;}
.ws67{word-spacing:10.292224pt;}
.wsc5{word-spacing:10.346394pt;}
.wsc6{word-spacing:10.563072pt;}
.ws113{word-spacing:10.617242pt;}
.ws52{word-spacing:10.779750pt;}
.wsbd{word-spacing:10.888090pt;}
.ws126{word-spacing:10.942259pt;}
.ws119{word-spacing:11.375616pt;}
.ws6b{word-spacing:11.700634pt;}
.ws6a{word-spacing:11.971482pt;}
.ws9d{word-spacing:11.973248pt;}
.ws112{word-spacing:12.364211pt;}
.wsdc{word-spacing:12.567347pt;}
.ws128{word-spacing:12.675686pt;}
.ws115{word-spacing:12.838195pt;}
.ws34{word-spacing:12.946534pt;}
.ws35{word-spacing:13.163213pt;}
.wsbc{word-spacing:13.271552pt;}
.wsb0{word-spacing:13.537101pt;}
.ws2c{word-spacing:13.704909pt;}
.ws114{word-spacing:13.759078pt;}
.ws36{word-spacing:13.813248pt;}
.ws4e{word-spacing:13.867418pt;}
.wsaf{word-spacing:14.123546pt;}
.ws2b{word-spacing:14.138266pt;}
.ws4b{word-spacing:14.300774pt;}
.wsae{word-spacing:14.612250pt;}
.wsad{word-spacing:14.709990pt;}
.ws2e{word-spacing:14.896640pt;}
.ws10d{word-spacing:15.296435pt;}
.wse8{word-spacing:15.329997pt;}
.ws10{word-spacing:15.763354pt;}
.wsca{word-spacing:16.846746pt;}
.wsd3{word-spacing:17.388442pt;}
.wsc9{word-spacing:17.821798pt;}
.ws123{word-spacing:18.417664pt;}
.ws124{word-spacing:18.526003pt;}
.ws11f{word-spacing:20.205261pt;}
.ws127{word-spacing:20.801126pt;}
.wse5{word-spacing:25.351373pt;}
.wsd6{word-spacing:26.705613pt;}
.wsba{word-spacing:27.084800pt;}
.wsb9{word-spacing:27.247309pt;}
.ws55{word-spacing:30.930842pt;}
.ws11e{word-spacing:118.523085pt;}
._19{margin-left:-29.901619pt;}
._1b{margin-left:-27.637330pt;}
._47{margin-left:-16.760074pt;}
._41{margin-left:-14.484951pt;}
._18{margin-left:-12.274831pt;}
._b{margin-left:-10.129715pt;}
._48{margin-left:-8.656302pt;}
._10{margin-left:-7.572910pt;}
._9{margin-left:-5.904486pt;}
._a{margin-left:-4.994437pt;}
._4{margin-left:-3.586028pt;}
._2{margin-left:-2.618747pt;}
._1{margin-left:-1.110477pt;}
._0{width:0.910049pt;}
._3{width:2.118031pt;}
._15{width:3.591444pt;}
._7{width:4.696504pt;}
._c{width:6.229504pt;}
._f{width:7.800422pt;}
._16{width:9.078825pt;}
._e{width:10.595574pt;}
._3f{width:12.559693pt;}
._5{width:14.084096pt;}
._d{width:15.010396pt;}
._46{width:16.305050pt;}
._43{width:17.366774pt;}
._14{width:18.363494pt;}
._8{width:19.360215pt;}
._3e{width:21.041004pt;}
._42{width:22.491218pt;}
._11{width:23.932129pt;}
._2c{width:25.794621pt;}
._17{width:26.716447pt;}
._49{width:28.319867pt;}
._1a{width:29.294920pt;}
._4a{width:30.237471pt;}
._4b{width:31.526707pt;}
._45{width:34.289357pt;}
._13{width:44.798259pt;}
._12{width:46.228337pt;}
._6c{width:49.603456pt;}
._6b{width:301.208883pt;}
._3a{width:329.967524pt;}
._67{width:335.238226pt;}
._38{width:446.275072pt;}
._4c{width:527.702579pt;}
._40{width:694.291763pt;}
._2b{width:772.567777pt;}
._1c{width:848.755200pt;}
._32{width:869.816340pt;}
._61{width:872.161884pt;}
._31{width:923.427994pt;}
._24{width:924.787651pt;}
._60{width:963.350989pt;}
._4f{width:970.506793pt;}
._1d{width:996.822385pt;}
._1e{width:1007.569633pt;}
._58{width:1022.130422pt;}
._50{width:1024.611389pt;}
._69{width:1031.935119pt;}
._27{width:1034.112737pt;}
._3b{width:1044.318290pt;}
._62{width:1045.851290pt;}
._54{width:1069.127967pt;}
._4e{width:1083.759176pt;}
._56{width:1091.017902pt;}
._34{width:1099.035003pt;}
._4d{width:1100.340490pt;}
._55{width:1129.337477pt;}
._6a{width:1150.344448pt;}
._3c{width:1201.751398pt;}
._5a{width:1217.254738pt;}
._53{width:1226.501489pt;}
._21{width:1228.760361pt;}
._66{width:1240.119726pt;}
._5d{width:1257.844019pt;}
._28{width:1265.920707pt;}
._59{width:1267.258696pt;}
._30{width:1272.686490pt;}
._29{width:1276.326687pt;}
._2a{width:1330.626294pt;}
._33{width:1339.821230pt;}
._68{width:1352.852081pt;}
._65{width:1361.705748pt;}
._5f{width:1381.746145pt;}
._63{width:1414.020393pt;}
._5c{width:1432.947251pt;}
._37{width:1465.151078pt;}
._2f{width:1521.175634pt;}
._35{width:1555.229706pt;}
._22{width:1556.936049pt;}
._51{width:1584.519209pt;}
._25{width:1595.315210pt;}
._57{width:1598.056192pt;}
._5b{width:1609.480561pt;}
._1f{width:1611.441500pt;}
._52{width:1617.665587pt;}
._39{width:1618.805504pt;}
._2d{width:1647.751383pt;}
._20{width:1669.180877pt;}
._26{width:1727.586540pt;}
._64{width:1765.277747pt;}
._36{width:1821.522043pt;}
._2e{width:1868.855439pt;}
._3d{width:1869.797990pt;}
._23{width:1886.016369pt;}
._44{width:2035.285333pt;}
._6{width:2056.085333pt;}
._5e{width:2218.136781pt;}
.fsb{font-size:4.710400pt;}
.fs2{font-size:17.075200pt;}
.fse{font-size:31.795200pt;}
.fsa{font-size:34.150400pt;}
.fsd{font-size:37.094400pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:39.449600pt;}
.fs3{font-size:44.160000pt;}
.fsc{font-size:46.515200pt;}
.fs1{font-size:48.870400pt;}
.fs6{font-size:51.814400pt;}
.fs11{font-size:53.333333pt;}
.fs0{font-size:54.169600pt;}
.fs8{font-size:58.880000pt;}
.fsf{font-size:63.590400pt;}
.fs9{font-size:68.889600pt;}
.fs10{font-size:74.666667pt;}
.fs7{font-size:78.310400pt;}
.y372{bottom:-12.659200pt;}
.y0{bottom:0.000000pt;}
.y35d{bottom:2.944000pt;}
.y361{bottom:3.532800pt;}
.y367{bottom:3.679877pt;}
.y35c{bottom:3.680000pt;}
.y36d{bottom:3.827200pt;}
.y11e{bottom:3.974400pt;}
.ydc{bottom:4.121600pt;}
.yeb{bottom:5.888000pt;}
.ye8{bottom:6.035200pt;}
.y21c{bottom:16.633600pt;}
.y21b{bottom:20.313600pt;}
.y31{bottom:38.266667pt;}
.yae{bottom:41.804800pt;}
.y4{bottom:41.952000pt;}
.y34e{bottom:45.484800pt;}
.y3{bottom:46.364467pt;}
.y30{bottom:51.600000pt;}
.y268{bottom:61.824000pt;}
.y28d{bottom:63.590400pt;}
.y2f{bottom:64.933333pt;}
.y5c{bottom:71.694643pt;}
.y2e{bottom:74.266667pt;}
.y2dd{bottom:84.359142pt;}
.y85{bottom:86.113178pt;}
.y38c{bottom:89.800000pt;}
.y1{bottom:89.813333pt;}
.yac{bottom:89.866667pt;}
.y305{bottom:90.109952pt;}
.y5b{bottom:90.681088pt;}
.y2d{bottom:92.156032pt;}
.y2b2{bottom:95.003469pt;}
.yab{bottom:95.870182pt;}
.y329{bottom:96.273510pt;}
.y2dc{bottom:103.345587pt;}
.y246{bottom:104.516122pt;}
.y84{bottom:105.099622pt;}
.y5a{bottom:109.667533pt;}
.y328{bottom:112.754611pt;}
.y2b1{bottom:114.138880pt;}
.yaa{bottom:114.856627pt;}
.y304{bottom:116.612429pt;}
.y1f6{bottom:120.877696pt;}
.y245{bottom:120.997222pt;}
.y1b0{bottom:121.176218pt;}
.y2db{bottom:122.332032pt;}
.y2c{bottom:123.357722pt;}
.y83{bottom:124.086067pt;}
.y18b{bottom:127.033600pt;}
.y327{bottom:129.235712pt;}
.y1d2{bottom:130.125389pt;}
.yda{bottom:132.921600pt;}
.y59{bottom:133.515699pt;}
.ya9{bottom:133.694106pt;}
.y166{bottom:135.733120pt;}
.y303{bottom:135.747840pt;}
.y244{bottom:137.478323pt;}
.y1f5{bottom:139.864141pt;}
.y1af{bottom:140.311629pt;}
.y2da{bottom:141.169510pt;}
.y2b0{bottom:145.191603pt;}
.y326{bottom:145.581389pt;}
.y18a{bottom:145.875200pt;}
.y38b{bottom:148.827200pt;}
.y11d{bottom:148.987733pt;}
.y1d1{bottom:149.111834pt;}
.y58{bottom:149.996800pt;}
.ydb{bottom:150.018133pt;}
.y82{bottom:150.439578pt;}
.y243{bottom:153.824000pt;}
.yd9{bottom:154.070560pt;}
.y165{bottom:154.570598pt;}
.y2b{bottom:154.708378pt;}
.y1ae{bottom:159.298074pt;}
.ya8{bottom:160.047616pt;}
.y2d9{bottom:160.155955pt;}
.y302{bottom:162.101350pt;}
.y189{bottom:164.877542pt;}
.yd8{bottom:166.733440pt;}
.y81{bottom:169.574989pt;}
.y325{bottom:172.083866pt;}
.y242{bottom:173.401600pt;}
.y164{bottom:173.557043pt;}
.y1f4{bottom:173.720141pt;}
.y2a{bottom:173.843789pt;}
.y57{bottom:173.844966pt;}
.y1d0{bottom:175.614310pt;}
.y34d{bottom:177.621530pt;}
.y1ad{bottom:178.284518pt;}
.y2af{bottom:178.898637pt;}
.ya7{bottom:179.034061pt;}
.y2d8{bottom:179.142400pt;}
.yd7{bottom:179.396320pt;}
.y188{bottom:183.863987pt;}
.y301{bottom:188.603827pt;}
.y80{bottom:188.710400pt;}
.y324{bottom:191.219277pt;}
.yd6{bottom:192.059200pt;}
.y163{bottom:192.543488pt;}
.y1f3{bottom:192.706586pt;}
.y29{bottom:192.979200pt;}
.y28{bottom:192.991565pt;}
.y34c{bottom:194.102630pt;}
.y1cf{bottom:194.600755pt;}
.y56{bottom:197.544166pt;}
.ya6{bottom:197.871539pt;}
.y187{bottom:202.701466pt;}
.y2d7{bottom:202.988800pt;}
.y1ac{bottom:204.638029pt;}
.yd5{bottom:204.865600pt;}
.y2ae{bottom:205.252147pt;}
.y38a{bottom:207.131733pt;}
.y300{bottom:207.590272pt;}
.y34b{bottom:210.583731pt;}
.y1f2{bottom:211.841997pt;}
.y1ce{bottom:213.736166pt;}
.y55{bottom:214.025267pt;}
.y7f{bottom:214.925542pt;}
.y240{bottom:216.384000pt;}
.ya5{bottom:216.857984pt;}
.yd4{bottom:217.528480pt;}
.y162{bottom:218.748032pt;}
.y2d6{bottom:219.480499pt;}
.y102{bottom:219.622400pt;}
.y27{bottom:221.836877pt;}
.y323{bottom:222.272000pt;}
.y389{bottom:222.734933pt;}
.y1ab{bottom:223.475507pt;}
.y2ad{bottom:224.238592pt;}
.y34a{bottom:227.064832pt;}
.yd3{bottom:230.191360pt;}
.y1f1{bottom:230.977408pt;}
.y219{bottom:231.354829pt;}
.y2ff{bottom:231.438438pt;}
.y1cd{bottom:232.871578pt;}
.y186{bottom:233.903155pt;}
.y7e{bottom:233.911987pt;}
.ya4{bottom:235.844429pt;}
.y2d5{bottom:235.961600pt;}
.y161{bottom:237.734477pt;}
.y54{bottom:237.873434pt;}
.y388{bottom:238.190933pt;}
.y11c{bottom:240.672000pt;}
.y101{bottom:240.819200pt;}
.y26{bottom:240.823322pt;}
.y1aa{bottom:242.461952pt;}
.yd2{bottom:242.854240pt;}
.y2ac{bottom:243.076070pt;}
.y349{bottom:243.545933pt;}
.y218{bottom:247.835930pt;}
.y2fe{bottom:247.919539pt;}
.y1f0{bottom:249.963853pt;}
.y7d{bottom:252.898432pt;}
.y387{bottom:253.646933pt;}
.ya3{bottom:254.681907pt;}
.yd1{bottom:255.660640pt;}
.y322{bottom:256.017894pt;}
.y160{bottom:256.720922pt;}
.y23e{bottom:259.219200pt;}
.y25{bottom:259.675520pt;}
.y348{bottom:260.027034pt;}
.y2d4{bottom:260.429184pt;}
.y1a9{bottom:261.448397pt;}
.y53{bottom:261.721600pt;}
.y1cc{bottom:264.073267pt;}
.y217{bottom:264.317030pt;}
.y2fd{bottom:264.400640pt;}
.y185{bottom:267.759155pt;}
.yd0{bottom:268.323520pt;}
.y1ef{bottom:269.099264pt;}
.y386{bottom:269.250133pt;}
.y2ab{bottom:269.429581pt;}
.y7c{bottom:271.735910pt;}
.ya2{bottom:273.668352pt;}
.y321{bottom:275.004339pt;}
.y15f{bottom:275.558400pt;}
.y347{bottom:276.372710pt;}
.y2d3{bottom:276.910285pt;}
.y241{bottom:278.670933pt;}
.y1a8{bottom:280.285875pt;}
.y216{bottom:280.798131pt;}
.ycf{bottom:280.986400pt;}
.y11a{bottom:283.654400pt;}
.yff{bottom:283.801600pt;}
.y385{bottom:284.853333pt;}
.y24{bottom:286.029030pt;}
.y184{bottom:286.750310pt;}
.y52{bottom:288.070400pt;}
.y2aa{bottom:288.416026pt;}
.y7b{bottom:290.722355pt;}
.y2fc{bottom:290.754150pt;}
.ya1{bottom:292.654797pt;}
.y346{bottom:292.853811pt;}
.y2d2{bottom:293.391386pt;}
.yce{bottom:293.649280pt;}
.y320{bottom:293.990784pt;}
.y215{bottom:297.279232pt;}
.y1cb{bottom:297.631334pt;}
.y1a7{bottom:299.272320pt;}
.y384{bottom:300.456533pt;}
.y15e{bottom:301.962547pt;}
.y142{bottom:302.054400pt;}
.y1ee{bottom:302.806298pt;}
.y23{bottom:305.015475pt;}
.ycd{bottom:306.455680pt;}
.y51{bottom:306.934963pt;}
.y2a9{bottom:307.253504pt;}
.y345{bottom:309.334912pt;}
.y7a{bottom:309.708800pt;}
.y2fb{bottom:309.740595pt;}
.ya0{bottom:311.492275pt;}
.y31f{bottom:312.828262pt;}
.y183{bottom:313.144448pt;}
.y214{bottom:313.760333pt;}
.y383{bottom:316.059733pt;}
.y1ca{bottom:316.617779pt;}
.y2d1{bottom:317.970842pt;}
.y141{bottom:318.112006pt;}
.y1a6{bottom:318.258765pt;}
.ycc{bottom:319.118560pt;}
.y15d{bottom:320.948992pt;}
.y23f{bottom:321.653333pt;}
.y1ed{bottom:321.941709pt;}
.y22{bottom:323.852954pt;}
.y344{bottom:325.816013pt;}
.y50{bottom:325.921408pt;}
.yfd{bottom:326.636800pt;}
.y79{bottom:328.550400pt;}
.y213{bottom:330.241434pt;}
.y382{bottom:331.662933pt;}
.ycb{bottom:331.781440pt;}
.y182{bottom:331.981926pt;}
.y2a8{bottom:333.607014pt;}
.y140{bottom:334.446938pt;}
.y2d0{bottom:334.451942pt;}
.y1c9{bottom:335.604224pt;}
.y2fa{bottom:336.094106pt;}
.y31e{bottom:339.181773pt;}
.y15c{bottom:339.786470pt;}
.y343{bottom:342.297114pt;}
.y9f{bottom:342.693965pt;}
.y21{bottom:342.839398pt;}
.yca{bottom:344.444320pt;}
.y1a5{bottom:344.463309pt;}
.y4f{bottom:344.907853pt;}
.y23b{bottom:345.036800pt;}
.y11b{bottom:345.941333pt;}
.y100{bottom:346.235733pt;}
.y212{bottom:346.722534pt;}
.y381{bottom:347.118933pt;}
.y13f{bottom:350.781869pt;}
.y181{bottom:350.819405pt;}
.y78{bottom:352.395622pt;}
.y2a7{bottom:352.593459pt;}
.y1ec{bottom:353.143398pt;}
.y1c8{bottom:354.441702pt;}
.y2f9{bottom:355.229517pt;}
.yc9{bottom:357.107200pt;}
.y31d{bottom:358.168218pt;}
.y15b{bottom:358.772915pt;}
.y342{bottom:358.778214pt;}
.y2cf{bottom:358.882432pt;}
.y267{bottom:360.934400pt;}
.y380{bottom:362.722133pt;}
.y211{bottom:363.068211pt;}
.y1a4{bottom:363.449754pt;}
.y23d{bottom:364.488533pt;}
.y13e{bottom:367.116800pt;}
.y20{bottom:369.192909pt;}
.y118{bottom:369.472000pt;}
.yfb{bottom:369.619200pt;}
.y180{bottom:369.656883pt;}
.yc8{bottom:369.913600pt;}
.y2a6{bottom:371.430938pt;}
.y2f8{bottom:374.215962pt;}
.y341{bottom:375.259315pt;}
.y4e{bottom:376.109542pt;}
.y9e{bottom:376.400998pt;}
.y31c{bottom:377.005696pt;}
.y15a{bottom:377.759360pt;}
.y37f{bottom:378.178133pt;}
.y77{bottom:378.776218pt;}
.y210{bottom:379.549312pt;}
.y1c7{bottom:380.944179pt;}
.y1a3{bottom:382.436198pt;}
.y2ce{bottom:383.461888pt;}
.y13d{bottom:383.901869pt;}
.yc7{bottom:386.253389pt;}
.y1eb{bottom:386.850432pt;}
.y239{bottom:388.019200pt;}
.y1f{bottom:388.179354pt;}
.y17f{bottom:388.643328pt;}
.y119{bottom:388.923733pt;}
.yfe{bottom:389.070933pt;}
.y340{bottom:391.740416pt;}
.y2f7{bottom:393.351373pt;}
.y37e{bottom:393.781333pt;}
.y9d{bottom:395.387443pt;}
.y31b{bottom:395.992141pt;}
.y20f{bottom:396.030413pt;}
.y159{bottom:396.745805pt;}
.y76{bottom:397.762662pt;}
.y2a5{bottom:397.784448pt;}
.y1c6{bottom:400.079590pt;}
.y13c{bottom:400.236800pt;}
.y1a2{bottom:401.273677pt;}
.y28c{bottom:401.996723pt;}
.yc6{bottom:402.003200pt;}
.y265{bottom:403.769600pt;}
.y1ea{bottom:405.687910pt;}
.y1e{bottom:407.016832pt;}
.y23c{bottom:407.323733pt;}
.y17e{bottom:407.480806pt;}
.y2cd{bottom:408.041344pt;}
.y33f{bottom:408.221517pt;}
.y37d{bottom:409.384533pt;}
.y4d{bottom:409.816576pt;}
.yf9{bottom:412.454400pt;}
.y2f6{bottom:412.486784pt;}
.y20e{bottom:412.511514pt;}
.y9c{bottom:414.224922pt;}
.y31a{bottom:414.978586pt;}
.y158{bottom:415.583283pt;}
.y75{bottom:416.600141pt;}
.y2a4{bottom:416.770893pt;}
.y13b{bottom:417.158470pt;}
.yc5{bottom:418.636800pt;}
.y1a1{bottom:420.260122pt;}
.y28b{bottom:422.310323pt;}
.y1e9{bottom:424.674355pt;}
.y33e{bottom:424.702618pt;}
.y37c{bottom:424.987733pt;}
.y263{bottom:425.260800pt;}
.y1d{bottom:426.003277pt;}
.y17d{bottom:426.318285pt;}
.y1c5{bottom:426.433101pt;}
.y4c{bottom:428.951987pt;}
.y20d{bottom:428.992614pt;}
.yc4{bottom:429.824000pt;}
.y237{bottom:430.854400pt;}
.y2f5{bottom:431.473229pt;}
.yfc{bottom:431.906133pt;}
.y13a{bottom:432.027290pt;}
.y2cc{bottom:432.620800pt;}
.y9b{bottom:433.211366pt;}
.yf8{bottom:433.798400pt;}
.y319{bottom:433.816064pt;}
.y2a3{bottom:435.608371pt;}
.y28a{bottom:438.652320pt;}
.y37b{bottom:440.590933pt;}
.y33d{bottom:441.048294pt;}
.y157{bottom:441.936794pt;}
.y74{bottom:442.953651pt;}
.y1e8{bottom:443.660800pt;}
.yc3{bottom:443.693650pt;}
.y1c{bottom:444.989722pt;}
.y20c{bottom:445.473715pt;}
.y1c4{bottom:445.568512pt;}
.y262{bottom:446.604800pt;}
.y1a0{bottom:446.613632pt;}
.y139{bottom:447.042720pt;}
.y23a{bottom:450.306133pt;}
.y2f4{bottom:450.608640pt;}
.y236{bottom:452.198400pt;}
.y17c{bottom:452.522829pt;}
.y318{bottom:452.802509pt;}
.y289{bottom:453.521139pt;}
.y2a2{bottom:454.594816pt;}
.yf7{bottom:455.289600pt;}
.y4b{bottom:455.305498pt;}
.y115{bottom:455.436800pt;}
.y37a{bottom:456.046933pt;}
.y2cb{bottom:456.467200pt;}
.y33c{bottom:457.529395pt;}
.y9a{bottom:459.564877pt;}
.y156{bottom:460.923238pt;}
.y73{bottom:461.940096pt;}
.y20b{bottom:461.954816pt;}
.y138{bottom:462.058150pt;}
.yc2{bottom:462.382162pt;}
.y1b{bottom:463.827200pt;}
.y1a{bottom:463.837798pt;}
.y19f{bottom:465.451110pt;}
.y266{bottom:466.203733pt;}
.y261{bottom:468.096000pt;}
.y288{bottom:468.536570pt;}
.y1c3{bottom:469.416678pt;}
.y1e7{bottom:469.911270pt;}
.y17b{bottom:471.360307pt;}
.y379{bottom:471.650133pt;}
.y317{bottom:471.788954pt;}
.y2ca{bottom:473.007770pt;}
.y2a1{bottom:473.581261pt;}
.y235{bottom:473.689600pt;}
.y33b{bottom:474.010496pt;}
.y4a{bottom:474.142976pt;}
.y117{bottom:474.741333pt;}
.yfa{bottom:474.888533pt;}
.y2f3{bottom:476.962150pt;}
.y137{bottom:477.073581pt;}
.y99{bottom:478.402355pt;}
.y20a{bottom:478.435917pt;}
.y155{bottom:479.760717pt;}
.y72{bottom:480.777574pt;}
.y287{bottom:483.552000pt;}
.y19e{bottom:484.437555pt;}
.y378{bottom:487.253333pt;}
.y1e6{bottom:488.897715pt;}
.y2c9{bottom:489.488870pt;}
.y260{bottom:489.587200pt;}
.y19{bottom:490.191309pt;}
.y33a{bottom:490.491597pt;}
.y136{bottom:491.942400pt;}
.y2a0{bottom:492.418739pt;}
.y49{bottom:493.129421pt;}
.y238{bottom:493.288533pt;}
.yc1{bottom:493.583852pt;}
.y209{bottom:494.917018pt;}
.y1c2{bottom:495.770189pt;}
.y2f2{bottom:496.097562pt;}
.y98{bottom:497.388800pt;}
.y17a{bottom:497.713818pt;}
.yf5{bottom:498.272000pt;}
.y154{bottom:498.747162pt;}
.y286{bottom:500.331770pt;}
.y377{bottom:502.856533pt;}
.y316{bottom:502.990643pt;}
.y19d{bottom:503.424000pt;}
.y2c8{bottom:505.834547pt;}
.y339{bottom:506.972698pt;}
.y71{bottom:507.131085pt;}
.y1e5{bottom:507.884160pt;}
.y135{bottom:508.864070pt;}
.y264{bottom:509.038933pt;}
.y18{bottom:509.177754pt;}
.y25f{bottom:511.078400pt;}
.y208{bottom:511.398118pt;}
.y48{bottom:512.115866pt;}
.y1c1{bottom:514.905600pt;}
.y285{bottom:515.347200pt;}
.y179{bottom:516.551296pt;}
.y233{bottom:516.672000pt;}
.y116{bottom:517.723733pt;}
.y153{bottom:517.733606pt;}
.y376{bottom:518.459733pt;}
.y29f{bottom:518.772250pt;}
.y113{bottom:519.616000pt;}
.y2f1{bottom:519.945728pt;}
.y338{bottom:523.453798pt;}
.y97{bottom:523.742310pt;}
.y134{bottom:523.879501pt;}
.yc0{bottom:524.785541pt;}
.y70{bottom:526.117530pt;}
.y1e4{bottom:526.721638pt;}
.y207{bottom:527.743795pt;}
.y17{bottom:528.015232pt;}
.y19c{bottom:529.636787pt;}
.y47{bottom:530.953344pt;}
.y284{bottom:532.267693pt;}
.y25e{bottom:532.569600pt;}
.y375{bottom:534.062933pt;}
.y178{bottom:535.388774pt;}
.y2f0{bottom:536.426829pt;}
.y315{bottom:536.548710pt;}
.y152{bottom:536.571085pt;}
.y2c7{bottom:537.036237pt;}
.y29e{bottom:537.758694pt;}
.y133{bottom:538.748320pt;}
.y337{bottom:539.934899pt;}
.yf3{bottom:541.107200pt;}
.y1c0{bottom:541.279718pt;}
.y96{bottom:542.728755pt;}
.y206{bottom:544.224896pt;}
.y6f{bottom:544.955008pt;}
.y1e3{bottom:545.708083pt;}
.y16{bottom:547.001677pt;}
.y283{bottom:547.136512pt;}
.y19b{bottom:548.623232pt;}
.y374{bottom:549.518933pt;}
.y46{bottom:549.939789pt;}
.y2ef{bottom:552.907930pt;}
.y132{bottom:553.763750pt;}
.y25d{bottom:553.913600pt;}
.y177{bottom:554.226253pt;}
.y314{bottom:555.535155pt;}
.y151{bottom:555.557530pt;}
.ybf{bottom:556.136197pt;}
.y336{bottom:556.416000pt;}
.y29d{bottom:556.596173pt;}
.y231{bottom:559.507200pt;}
.y1bf{bottom:560.117197pt;}
.yf6{bottom:560.558933pt;}
.y205{bottom:560.705997pt;}
.y114{bottom:560.706133pt;}
.y95{bottom:561.864166pt;}
.y282{bottom:562.005331pt;}
.yf2{bottom:562.451200pt;}
.y112{bottom:562.598400pt;}
.y6e{bottom:563.941453pt;}
.y1e2{bottom:564.694528pt;}
.y373{bottom:565.122133pt;}
.y15{bottom:565.988122pt;}
.y19a{bottom:567.609677pt;}
.y131{bottom:568.779181pt;}
.y2c6{bottom:570.892237pt;}
.y176{bottom:573.212698pt;}
.y313{bottom:574.521600pt;}
.y29c{bottom:575.582618pt;}
.y45{bottom:576.293299pt;}
.y2ee{bottom:576.756096pt;}
.y281{bottom:577.020762pt;}
.y204{bottom:577.187098pt;}
.y234{bottom:578.958933pt;}
.y1be{bottom:579.103642pt;}
.y371{bottom:580.725333pt;}
.y230{bottom:580.998400pt;}
.ybe{bottom:582.340741pt;}
.y6d{bottom:582.927898pt;}
.y1e1{bottom:583.532006pt;}
.y130{bottom:583.648000pt;}
.yf1{bottom:583.942400pt;}
.y111{bottom:584.089600pt;}
.y14{bottom:584.825600pt;}
.y199{bottom:586.596122pt;}
.y150{bottom:586.759219pt;}
.y94{bottom:588.068710pt;}
.y2c5{bottom:590.027648pt;}
.y280{bottom:591.889581pt;}
.y175{bottom:592.050176pt;}
.y2ed{bottom:593.237197pt;}
.y312{bottom:593.359078pt;}
.y203{bottom:593.668198pt;}
.y29b{bottom:594.569062pt;}
.y44{bottom:595.130778pt;}
.y370{bottom:596.328533pt;}
.y25b{bottom:596.748800pt;}
.y335{bottom:597.043200pt;}
.y12f{bottom:600.573350pt;}
.y6c{bottom:601.914342pt;}
.y22f{bottom:602.342400pt;}
.y1e0{bottom:602.518451pt;}
.yf4{bottom:603.541333pt;}
.yf0{bottom:605.433600pt;}
.y1bd{bottom:605.606118pt;}
.y27f{bottom:606.758400pt;}
.y93{bottom:607.055155pt;}
.ybd{bottom:608.694252pt;}
.y2ec{bottom:609.718298pt;}
.y202{bottom:610.149299pt;}
.y36f{bottom:611.931733pt;}
.y29a{bottom:613.406541pt;}
.y334{bottom:613.529600pt;}
.y2c4{bottom:613.726848pt;}
.y12e{bottom:615.588781pt;}
.y13{bottom:616.032000pt;}
.y12{bottom:616.053197pt;}
.y174{bottom:618.403686pt;}
.y311{bottom:619.861555pt;}
.y14f{bottom:620.615219pt;}
.y43{bottom:621.484288pt;}
.y1df{bottom:621.504896pt;}
.y232{bottom:621.941333pt;}
.y39e{bottom:622.955699pt;}
.y27e{bottom:623.680070pt;}
.y22e{bottom:623.833600pt;}
.y198{bottom:624.420045pt;}
.y1bc{bottom:624.592563pt;}
.y92{bottom:626.041600pt;}
.y201{bottom:626.630400pt;}
.yef{bottom:626.924800pt;}
.y36e{bottom:627.534933pt;}
.ybc{bottom:627.680697pt;}
.y6b{bottom:628.118886pt;}
.y2c3{bottom:630.207949pt;}
.y333{bottom:630.310400pt;}
.y12d{bottom:630.457600pt;}
.y2eb{bottom:635.922842pt;}
.y173{bottom:637.539098pt;}
.y27d{bottom:638.548890pt;}
.y310{bottom:638.996966pt;}
.y39d{bottom:639.436800pt;}
.y14e{bottom:639.601664pt;}
.y259{bottom:639.731200pt;}
.y42{bottom:640.470733pt;}
.y1de{bottom:640.491341pt;}
.y332{bottom:641.497600pt;}
.y36c{bottom:642.990933pt;}
.y200{bottom:643.411200pt;}
.y1bb{bottom:643.727974pt;}
.y299{bottom:644.608230pt;}
.y91{bottom:644.879078pt;}
.y22d{bottom:645.324800pt;}
.ybb{bottom:646.518175pt;}
.y2c2{bottom:646.689050pt;}
.y6a{bottom:646.956365pt;}
.yee{bottom:648.416000pt;}
.y11{bottom:649.760230pt;}
.y197{bottom:650.773555pt;}
.y27c{bottom:653.564320pt;}
.y1ff{bottom:654.598400pt;}
.y12c{bottom:654.753402pt;}
.y2ea{bottom:654.909286pt;}
.y36b{bottom:658.594133pt;}
.y14d{bottom:658.737075pt;}
.y25c{bottom:659.182933pt;}
.y41{bottom:659.308211pt;}
.y1dd{bottom:659.328819pt;}
.y258{bottom:661.222400pt;}
.y2c1{bottom:663.170150pt;}
.y172{bottom:664.041574pt;}
.y30f{bottom:665.201510pt;}
.yba{bottom:665.504620pt;}
.y69{bottom:665.793843pt;}
.y331{bottom:666.271360pt;}
.y22c{bottom:666.668800pt;}
.y27b{bottom:668.579750pt;}
.y10{bottom:668.746675pt;}
.y196{bottom:669.760000pt;}
.y1ba{bottom:669.932518pt;}
.y2e9{bottom:673.746765pt;}
.y36a{bottom:674.050133pt;}
.y90{bottom:676.080768pt;}
.y12b{bottom:676.977216pt;}
.y14c{bottom:677.723520pt;}
.y40{bottom:678.294656pt;}
.y298{bottom:678.315264pt;}
.y2c0{bottom:679.651251pt;}
.y257{bottom:682.713600pt;}
.y171{bottom:683.028019pt;}
.y27a{bottom:683.448570pt;}
.y1fe{bottom:684.043699pt;}
.y30e{bottom:684.187955pt;}
.yb9{bottom:684.491065pt;}
.y68{bottom:684.631322pt;}
.yf{bottom:687.584154pt;}
.y22b{bottom:688.160000pt;}
.y1b9{bottom:688.918963pt;}
.y110{bottom:689.358933pt;}
.y369{bottom:689.653333pt;}
.y1dc{bottom:690.530509pt;}
.yec{bottom:691.251200pt;}
.y12a{bottom:691.992646pt;}
.y330{bottom:692.624870pt;}
.y2e8{bottom:692.733210pt;}
.y195{bottom:696.881894pt;}
.y3f{bottom:697.281101pt;}
.y297{bottom:697.301709pt;}
.y279{bottom:698.464000pt;}
.y25a{bottom:702.018133pt;}
.y170{bottom:702.163430pt;}
.y30d{bottom:703.174400pt;}
.y2bf{bottom:703.499418pt;}
.y368{bottom:705.256533pt;}
.y129{bottom:706.861466pt;}
.y1db{bottom:707.011610pt;}
.y1b8{bottom:707.905408pt;}
.y22a{bottom:709.651200pt;}
.y8f{bottom:709.787802pt;}
.yb8{bottom:710.695609pt;}
.y67{bottom:710.984832pt;}
.y14b{bottom:711.579520pt;}
.y2e7{bottom:711.719654pt;}
.y10f{bottom:712.742400pt;}
.ye{bottom:713.937664pt;}
.y1fd{bottom:715.245389pt;}
.y278{bottom:715.388762pt;}
.y194{bottom:715.868339pt;}
.y296{bottom:716.139187pt;}
.y2be{bottom:719.980518pt;}
.y366{bottom:720.859733pt;}
.y16f{bottom:721.149875pt;}
.y128{bottom:721.876896pt;}
.y3e{bottom:723.634611pt;}
.y255{bottom:725.401600pt;}
.y1b7{bottom:726.891853pt;}
.y8e{bottom:728.774246pt;}
.y30c{bottom:729.527910pt;}
.yb7{bottom:729.682053pt;}
.y66{bottom:729.971277pt;}
.y277{bottom:730.257581pt;}
.y14a{bottom:730.714931pt;}
.y229{bottom:731.142400pt;}
.y32f{bottom:731.193626pt;}
.yd{bottom:732.924109pt;}
.ye9{bottom:734.086400pt;}
.y10e{bottom:734.233600pt;}
.y193{bottom:734.854784pt;}
.y365{bottom:736.462933pt;}
.y2e6{bottom:738.073165pt;}
.y1da{bottom:740.718643pt;}
.y3d{bottom:742.770022pt;}
.y39c{bottom:742.779200pt;}
.y2bd{bottom:743.828685pt;}
.y127{bottom:744.247322pt;}
.y276{bottom:745.126400pt;}
.y1b6{bottom:745.729331pt;}
.y1fc{bottom:746.447078pt;}
.y16e{bottom:747.503386pt;}
.y8d{bottom:747.611725pt;}
.y30b{bottom:748.663322pt;}
.yb6{bottom:748.668498pt;}
.y65{bottom:748.808755pt;}
.y149{bottom:749.701376pt;}
.y295{bottom:749.846221pt;}
.yc{bottom:751.761587pt;}
.y364{bottom:751.918933pt;}
.y228{bottom:752.486400pt;}
.yed{bottom:753.685333pt;}
.y2e5{bottom:756.910643pt;}
.y39b{bottom:758.382400pt;}
.y192{bottom:759.434240pt;}
.y1d9{bottom:759.556122pt;}
.y2bc{bottom:760.309786pt;}
.y275{bottom:762.063821pt;}
.y32e{bottom:762.246349pt;}
.y1b5{bottom:764.715776pt;}
.y16d{bottom:766.489830pt;}
.y126{bottom:766.617747pt;}
.yb5{bottom:767.505977pt;}
.y363{bottom:767.522133pt;}
.y30a{bottom:767.649766pt;}
.y64{bottom:767.795200pt;}
.y253{bottom:768.384000pt;}
.y294{bottom:768.832666pt;}
.y148{bottom:768.836787pt;}
.y3c{bottom:769.272499pt;}
.yb{bottom:770.748032pt;}
.y227{bottom:771.769600pt;}
.y39a{bottom:773.985600pt;}
.y8c{bottom:774.114202pt;}
.ye6{bottom:774.860800pt;}
.y2e4{bottom:775.897088pt;}
.y191{bottom:775.915341pt;}
.y2bb{bottom:776.790886pt;}
.y10c{bottom:777.068800pt;}
.y1fb{bottom:777.648768pt;}
.y1d8{bottom:778.542566pt;}
.y125{bottom:781.931699pt;}
.y362{bottom:783.125333pt;}
.y1b4{bottom:783.702221pt;}
.y274{bottom:784.434246pt;}
.y35a{bottom:784.723200pt;}
.y16c{bottom:785.327309pt;}
.yb4{bottom:786.492421pt;}
.y293{bottom:787.670144pt;}
.y147{bottom:787.823232pt;}
.y256{bottom:787.982933pt;}
.y3b{bottom:788.258944pt;}
.y399{bottom:789.588800pt;}
.y226{bottom:790.905600pt;}
.y8b{bottom:793.100646pt;}
.y2ba{bottom:793.136563pt;}
.y32d{bottom:793.299072pt;}
.ye5{bottom:793.996800pt;}
.y63{bottom:794.156954pt;}
.y2e3{bottom:794.883533pt;}
.yea{bottom:796.520533pt;}
.y1d7{bottom:797.529011pt;}
.y124{bottom:798.412800pt;}
.y10b{bottom:798.560000pt;}
.y360{bottom:798.581333pt;}
.y309{bottom:798.851456pt;}
.y273{bottom:799.303066pt;}
.y190{bottom:800.494797pt;}
.y1b3{bottom:802.539699pt;}
.y398{bottom:805.044800pt;}
.y225{bottom:806.077798pt;}
.y1fa{bottom:806.358656pt;}
.y292{bottom:806.656589pt;}
.y3a{bottom:807.394355pt;}
.y359{bottom:808.569600pt;}
.ye4{bottom:809.016499pt;}
.y2b9{bottom:809.617664pt;}
.y251{bottom:811.366400pt;}
.y62{bottom:813.143398pt;}
.y2e2{bottom:813.721011pt;}
.y35f{bottom:814.037333pt;}
.y272{bottom:814.318496pt;}
.y123{bottom:814.456570pt;}
.y1d6{bottom:816.366490pt;}
.y16b{bottom:816.528998pt;}
.y8a{bottom:819.454157pt;}
.y10a{bottom:819.904000pt;}
.y397{bottom:820.648000pt;}
.y392{bottom:822.406400pt;}
.y224{bottom:822.558899pt;}
.y32c{bottom:824.351795pt;}
.y18f{bottom:825.074253pt;}
.ye3{bottom:825.497600pt;}
.y39{bottom:826.380800pt;}
.y1b2{bottom:826.387866pt;}
.y122{bottom:829.472000pt;}
.y35e{bottom:829.640533pt;}
.y254{bottom:830.670933pt;}
.y61{bottom:831.980877pt;}
.ya{bottom:832.271155pt;}
.y308{bottom:832.558490pt;}
.y2b8{bottom:833.465830pt;}
.y358{bottom:834.918400pt;}
.y1f9{bottom:835.068544pt;}
.y396{bottom:836.251200pt;}
.y271{bottom:836.688922pt;}
.y109{bottom:837.721677pt;}
.y89{bottom:838.440602pt;}
.y223{bottom:839.040000pt;}
.ye7{bottom:839.355733pt;}
.y10d{bottom:839.502933pt;}
.y2e1{bottom:840.074522pt;}
.y32b{bottom:840.832896pt;}
.y18e{bottom:841.555354pt;}
.yb3{bottom:842.287109pt;}
.y1d5{bottom:842.720000pt;}
.y1b1{bottom:842.868966pt;}
.y146{bottom:843.753344pt;}
.y35b{bottom:845.243733pt;}
.y121{bottom:845.951040pt;}
.y391{bottom:848.313600pt;}
.y108{bottom:848.316838pt;}
.y357{bottom:849.928090pt;}
.y2b7{bottom:849.946931pt;}
.y16a{bottom:850.236032pt;}
.y60{bottom:850.967322pt;}
.y395{bottom:851.854400pt;}
.y38{bottom:852.729600pt;}
.y37{bottom:852.731955pt;}
.ye2{bottom:853.463539pt;}
.y24f{bottom:854.201600pt;}
.y222{bottom:854.790400pt;}
.y9{bottom:856.999578pt;}
.y32a{bottom:857.313997pt;}
.y107{bottom:858.912000pt;}
.y270{bottom:858.912736pt;}
.yb2{bottom:861.124588pt;}
.y1d4{bottom:861.706445pt;}
.y88{bottom:862.288768pt;}
.y291{bottom:862.451277pt;}
.y145{bottom:862.888755pt;}
.y120{bottom:864.354720pt;}
.y356{bottom:864.943520pt;}
.y18d{bottom:865.985843pt;}
.y2e0{bottom:866.428032pt;}
.y394{bottom:867.457600pt;}
.y390{bottom:867.596800pt;}
.ye1{bottom:868.478970pt;}
.y221{bottom:868.920570pt;}
.y1f8{bottom:868.924544pt;}
.y169{bottom:869.222477pt;}
.y5f{bottom:869.953766pt;}
.y106{bottom:870.245370pt;}
.y36{bottom:871.718400pt;}
.y35{bottom:871.723110pt;}
.y252{bottom:873.653333pt;}
.y2b6{bottom:873.795098pt;}
.y26f{bottom:874.372858pt;}
.y307{bottom:877.749478pt;}
.y355{bottom:879.812339pt;}
.y1d3{bottom:880.543923pt;}
.y290{bottom:881.437722pt;}
.y8{bottom:881.728000pt;}
.y144{bottom:881.875200pt;}
.y38f{bottom:882.169600pt;}
.y11f{bottom:882.758400pt;}
.y393{bottom:883.060800pt;}
.ye0{bottom:883.494400pt;}
.y220{bottom:883.936000pt;}
.y105{bottom:885.260800pt;}
.y2df{bottom:885.265510pt;}
.y1f7{bottom:887.910989pt;}
.y168{bottom:888.059955pt;}
.y87{bottom:888.642278pt;}
.y5e{bottom:888.791245pt;}
.y2b5{bottom:890.276198pt;}
.y18c{bottom:890.565299pt;}
.y26e{bottom:890.857663pt;}
.yb1{bottom:892.326277pt;}
.y3a7{bottom:894.666667pt;}
.y354{bottom:894.827770pt;}
.y306{bottom:896.735923pt;}
.y38e{bottom:896.742400pt;}
.y24d{bottom:897.036800pt;}
.ydf{bottom:899.097600pt;}
.y21f{bottom:899.392000pt;}
.y28f{bottom:900.275200pt;}
.y104{bottom:900.860320pt;}
.y34{bottom:902.924800pt;}
.y33{bottom:902.929510pt;}
.y2de{bottom:904.251955pt;}
.y2b4{bottom:906.757299pt;}
.y26d{bottom:906.899372pt;}
.y167{bottom:907.046400pt;}
.y86{bottom:907.777690pt;}
.y143{bottom:908.371200pt;}
.y353{bottom:909.843200pt;}
.y7{bottom:911.609600pt;}
.yde{bottom:913.523200pt;}
.y21e{bottom:913.817600pt;}
.y3a6{bottom:914.666667pt;}
.y5d{bottom:915.144755pt;}
.y103{bottom:915.289600pt;}
.y24c{bottom:915.731200pt;}
.y250{bottom:916.635733pt;}
.yb0{bottom:923.091200pt;}
.y2b3{bottom:923.238400pt;}
.y352{bottom:924.710400pt;}
.y26c{bottom:925.299077pt;}
.y28e{bottom:926.771200pt;}
.y3a5{bottom:928.000000pt;}
.y21d{bottom:929.715200pt;}
.y6{bottom:930.009600pt;}
.y24b{bottom:930.155181pt;}
.ydd{bottom:931.187200pt;}
.y32{bottom:934.131200pt;}
.y351{bottom:940.468160pt;}
.y3a4{bottom:941.333333pt;}
.y5{bottom:942.521600pt;}
.yaf{bottom:943.404800pt;}
.y24a{bottom:945.024000pt;}
.y26b{bottom:945.760000pt;}
.y38d{bottom:950.470400pt;}
.y2{bottom:950.617600pt;}
.yad{bottom:951.206277pt;}
.y3a3{bottom:954.666667pt;}
.y350{bottom:958.717280pt;}
.y24e{bottom:959.470933pt;}
.y249{bottom:960.627200pt;}
.y26a{bottom:961.657600pt;}
.y3a2{bottom:968.000000pt;}
.y248{bottom:975.052800pt;}
.y34f{bottom:976.966400pt;}
.y269{bottom:979.174400pt;}
.y3a1{bottom:989.333333pt;}
.y247{bottom:990.950400pt;}
.y3a0{bottom:1010.666667pt;}
.y21a{bottom:1020.096000pt;}
.y39f{bottom:1032.000000pt;}
.h1f{height:3.381000pt;}
.h5{height:11.380688pt;}
.hf{height:12.256125pt;}
.h2a{height:14.720000pt;}
.h2b{height:14.721227pt;}
.h28{height:14.865973pt;}
.h29{height:14.867200pt;}
.h1d{height:16.044800pt;}
.h14{height:17.222400pt;}
.h1b{height:20.606773pt;}
.h1a{height:20.608000pt;}
.h19{height:20.755200pt;}
.h27{height:26.221725pt;}
.h25{height:26.625375pt;}
.h1c{height:28.164075pt;}
.h11{height:28.739650pt;}
.h7{height:29.432813pt;}
.h6{height:32.572313pt;}
.h4{height:35.077875pt;}
.h1e{height:36.104250pt;}
.h16{height:36.419063pt;}
.h21{height:37.191000pt;}
.h20{height:38.361413pt;}
.h23{height:38.862070pt;}
.h22{height:38.868448pt;}
.h3{height:38.881500pt;}
.h24{height:38.896220pt;}
.ha{height:38.937500pt;}
.h10{height:39.463400pt;}
.h9{height:39.869062pt;}
.h17{height:40.303763pt;}
.h8{height:44.674050pt;}
.h18{height:45.915188pt;}
.h12{height:46.779700pt;}
.h15{height:48.558750pt;}
.hb{height:48.906050pt;}
.h13{height:52.194187pt;}
.h2e{height:52.443450pt;}
.h30{height:55.625000pt;}
.h26{height:56.209125pt;}
.h2f{height:77.875000pt;}
.h2d{height:1032.755200pt;}
.h2{height:1032.902400pt;}
.he{height:1033.491200pt;}
.h2c{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.hd{height:1123.333333pt;}
.hc{height:1123.360000pt;}
.w9{width:11.776000pt;}
.w6{width:12.364800pt;}
.wb{width:59.322827pt;}
.wf{width:68.742400pt;}
.w8{width:99.065600pt;}
.we{width:435.123200pt;}
.wa{width:441.894400pt;}
.w7{width:485.318400pt;}
.wd{width:730.259200pt;}
.w2{width:730.553600pt;}
.w5{width:731.142400pt;}
.w10{width:793.333333pt;}
.wc{width:793.760000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.w4{width:794.666667pt;}
.w3{width:794.720000pt;}
.x0{left:0.000000pt;}
.x19{left:2.502400pt;}
.x25{left:16.928000pt;}
.x3d{left:19.577600pt;}
.x4{left:24.288000pt;}
.x52{left:26.496000pt;}
.x1{left:31.760000pt;}
.x23{left:33.708800pt;}
.x26{left:46.073600pt;}
.x5c{left:48.000000pt;}
.xc{left:49.333333pt;}
.x48{left:50.357709pt;}
.x1a{left:62.560000pt;}
.x28{left:65.062400pt;}
.x1f{left:69.625600pt;}
.x7{left:76.544000pt;}
.x41{left:78.163200pt;}
.x24{left:89.497600pt;}
.xd{left:90.528000pt;}
.xe{left:92.294400pt;}
.x8{left:94.060800pt;}
.x4f{left:95.680000pt;}
.x42{left:100.390400pt;}
.x9{left:101.420800pt;}
.x20{left:104.329600pt;}
.xb{left:105.836800pt;}
.xa{left:108.044800pt;}
.xf{left:110.105600pt;}
.x13{left:111.280256pt;}
.x49{left:118.367642pt;}
.x33{left:120.636288pt;}
.x43{left:122.470400pt;}
.x46{left:126.438912pt;}
.x31{left:132.648397pt;}
.x12{left:137.349376pt;}
.x47{left:148.499482pt;}
.x58{left:150.978667pt;}
.x32{left:154.708966pt;}
.x5b{left:182.973333pt;}
.x21{left:208.876800pt;}
.x44{left:227.718400pt;}
.x2{left:233.312000pt;}
.x3c{left:247.296000pt;}
.x53{left:252.153600pt;}
.x50{left:265.843200pt;}
.x14{left:271.562803pt;}
.x27{left:273.939200pt;}
.x2a{left:281.446400pt;}
.x17{left:283.801600pt;}
.x16{left:285.240627pt;}
.x57{left:286.745600pt;}
.x2b{left:288.070400pt;}
.x38{left:290.278400pt;}
.x3a{left:292.780800pt;}
.x35{left:298.960845pt;}
.x4b{left:309.830093pt;}
.x37{left:312.665754pt;}
.x15{left:314.681805pt;}
.x5{left:320.012800pt;}
.x4a{left:339.271270pt;}
.x36{left:340.468301pt;}
.x34{left:365.196723pt;}
.x40{left:373.589920pt;}
.x5a{left:394.066667pt;}
.x30{left:400.089600pt;}
.x6{left:418.784000pt;}
.x39{left:439.539200pt;}
.x1c{left:442.630400pt;}
.x2e{left:475.165280pt;}
.x3f{left:484.729600pt;}
.x55{left:487.232000pt;}
.x2d{left:488.998400pt;}
.x2f{left:498.857120pt;}
.x4e{left:504.016480pt;}
.x56{left:505.933760pt;}
.x2c{left:564.217600pt;}
.x3e{left:567.014400pt;}
.x51{left:569.334400pt;}
.x10{left:571.724800pt;}
.x11{left:575.110400pt;}
.x54{left:578.643200pt;}
.x4d{left:582.764800pt;}
.x59{left:586.837867pt;}
.x22{left:590.384000pt;}
.x29{left:605.875200pt;}
.x1b{left:610.291200pt;}
.x3{left:643.700890pt;}
.x45{left:645.324800pt;}
.x18{left:647.792000pt;}
.x4c{left:654.009600pt;}
.x3b{left:657.212800pt;}
.x1d{left:662.988800pt;}
.x1e{left:669.171200pt;}
}




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