
    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_fb25fa139be3e472cc9d6f17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_1a6fc3f59f1ce314ea68853c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_607e3244395a796dee23139d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_2abffac42ce3e767cdec5fa9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118000;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_7564697bba37e940d976dc7c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_88bfadb03d15de2a9c0c33e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m3{transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246085,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);}
.m2{transform:matrix(0.262408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262408,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v5{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.ls71{letter-spacing:-1.026000px;}
.ls53{letter-spacing:-1.015920px;}
.lsf0{letter-spacing:-0.972000px;}
.lsef{letter-spacing:-0.910736px;}
.ls26{letter-spacing:-0.896400px;}
.lse6{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.836640px;}
.lsf1{letter-spacing:-0.796894px;}
.ls35{letter-spacing:-0.771840px;}
.lsdf{letter-spacing:-0.756000px;}
.lsec{letter-spacing:-0.683052px;}
.ls78{letter-spacing:-0.662400px;}
.lse0{letter-spacing:-0.648000px;}
.ls2c{letter-spacing:-0.627120px;}
.lsde{letter-spacing:-0.594000px;}
.lse2{letter-spacing:-0.569210px;}
.ls9f{letter-spacing:-0.559344px;}
.lse1{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.530640px;}
.lsa2{letter-spacing:-0.486000px;}
.ls33{letter-spacing:-0.434160px;}
.lsed{letter-spacing:-0.432000px;}
.ls7d{letter-spacing:-0.418320px;}
.lseb{letter-spacing:-0.398447px;}
.lsa8{letter-spacing:-0.378000px;}
.ls23{letter-spacing:-0.358560px;}
.ls31{letter-spacing:-0.355946px;}
.lsee{letter-spacing:-0.341526px;}
.ls36{letter-spacing:-0.337680px;}
.ls15{letter-spacing:-0.331200px;}
.ls10{letter-spacing:-0.324000px;}
.lsa0{letter-spacing:-0.305097px;}
.ls47{letter-spacing:-0.298800px;}
.ls2b{letter-spacing:-0.289440px;}
.lsea{letter-spacing:-0.284605px;}
.lse{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.264960px;}
.ls12{letter-spacing:-0.263520px;}
.ls2f{letter-spacing:-0.254247px;}
.ls2d{letter-spacing:-0.241200px;}
.ls25{letter-spacing:-0.239040px;}
.lsd{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.198720px;}
.ls4d{letter-spacing:-0.188978px;}
.ls1d{letter-spacing:-0.179280px;}
.lse7{letter-spacing:-0.170763px;}
.lsb{letter-spacing:-0.162000px;}
.ls6e{letter-spacing:-0.144720px;}
.ls45{letter-spacing:-0.144000px;}
.ls61{letter-spacing:-0.132480px;}
.ls13{letter-spacing:-0.131760px;}
.ls79{letter-spacing:-0.125985px;}
.ls1e{letter-spacing:-0.119520px;}
.ls11{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls44{letter-spacing:-0.059760px;}
.lsdb{letter-spacing:-0.054000px;}
.ls9e{letter-spacing:-0.050849px;}
.ls2e{letter-spacing:-0.048240px;}
.lsc{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.041832px;}
.lsf{letter-spacing:0.054000px;}
.lse4{letter-spacing:0.056921px;}
.ls20{letter-spacing:0.059760px;}
.ls7a{letter-spacing:0.062993px;}
.ls17{letter-spacing:0.066240px;}
.ls46{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.075600px;}
.ls32{letter-spacing:0.096480px;}
.lsd0{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.119520px;}
.ls4e{letter-spacing:0.125985px;}
.ls14{letter-spacing:0.131760px;}
.ls30{letter-spacing:0.152548px;}
.ls1a{letter-spacing:0.162000px;}
.lse5{letter-spacing:0.170763px;}
.lsd9{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.180000px;}
.ls75{letter-spacing:0.197280px;}
.ls6f{letter-spacing:0.205920px;}
.ls3d{letter-spacing:0.209160px;}
.ls59{letter-spacing:0.216000px;}
.ls60{letter-spacing:0.221112px;}
.ls5c{letter-spacing:0.224640px;}
.ls1f{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.263520px;}
.ls16{letter-spacing:0.264960px;}
.ls6{letter-spacing:0.265320px;}
.ls7b{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.289440px;}
.ls28{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.324000px;}
.ls62{letter-spacing:0.331200px;}
.lse3{letter-spacing:0.341526px;}
.ls29{letter-spacing:0.358560px;}
.ls52{letter-spacing:0.360000px;}
.ls5a{letter-spacing:0.378000px;}
.lse8{letter-spacing:0.398447px;}
.ls5f{letter-spacing:0.418320px;}
.ls5d{letter-spacing:0.468000px;}
.ls21{letter-spacing:0.478080px;}
.ls3c{letter-spacing:0.537840px;}
.ls4{letter-spacing:0.573696px;}
.ls7e{letter-spacing:0.597600px;}
.lsa5{letter-spacing:0.648000px;}
.ls49{letter-spacing:0.657360px;}
.ls2{letter-spacing:0.717120px;}
.ls48{letter-spacing:0.776880px;}
.lsd6{letter-spacing:0.794808px;}
.ls22{letter-spacing:0.836640px;}
.ls7c{letter-spacing:0.896400px;}
.ls51{letter-spacing:0.956160px;}
.lsd8{letter-spacing:1.009944px;}
.lsa1{letter-spacing:1.013040px;}
.lsad{letter-spacing:1.080000px;}
.ls37{letter-spacing:1.157760px;}
.lsf3{letter-spacing:1.254960px;}
.ls6d{letter-spacing:1.374480px;}
.ls72{letter-spacing:1.386000px;}
.ls39{letter-spacing:1.397864px;}
.ls34{letter-spacing:1.398960px;}
.lsa7{letter-spacing:1.404000px;}
.ls43{letter-spacing:1.434240px;}
.ls5b{letter-spacing:1.437840px;}
.ls70{letter-spacing:1.494000px;}
.ls9d{letter-spacing:1.527120px;}
.ls57{letter-spacing:1.553760px;}
.ls2a{letter-spacing:1.591920px;}
.ls58{letter-spacing:1.782000px;}
.lsa6{letter-spacing:1.852560px;}
.lsd2{letter-spacing:2.007360px;}
.lsd4{letter-spacing:2.084400px;}
.lsd3{letter-spacing:2.106000px;}
.ls3{letter-spacing:2.151360px;}
.lsa3{letter-spacing:2.177280px;}
.ls4f{letter-spacing:2.270880px;}
.ls64{letter-spacing:2.330640px;}
.ls63{letter-spacing:2.808000px;}
.ls41{letter-spacing:2.868480px;}
.lsd1{letter-spacing:2.877840px;}
.ls73{letter-spacing:3.053736px;}
.ls56{letter-spacing:3.564000px;}
.ls42{letter-spacing:3.585600px;}
.lsd5{letter-spacing:3.597840px;}
.lsf2{letter-spacing:4.266000px;}
.ls4b{letter-spacing:4.302720px;}
.ls76{letter-spacing:4.968000px;}
.ls3f{letter-spacing:5.019840px;}
.ls40{letter-spacing:5.079600px;}
.ls5e{letter-spacing:5.163264px;}
.lsa4{letter-spacing:5.246928px;}
.ls77{letter-spacing:5.405400px;}
.ls4a{letter-spacing:5.736960px;}
.lsce{letter-spacing:6.426000px;}
.ls65{letter-spacing:6.454080px;}
.lsaa{letter-spacing:7.128000px;}
.ls5{letter-spacing:7.171200px;}
.lsd7{letter-spacing:7.565616px;}
.lsac{letter-spacing:7.884000px;}
.ls4c{letter-spacing:7.888320px;}
.ls74{letter-spacing:8.315019px;}
.ls3b{letter-spacing:8.665200px;}
.lse9{letter-spacing:9.288000px;}
.ls50{letter-spacing:9.382320px;}
.ls66{letter-spacing:10.063584px;}
.ls1{letter-spacing:10.099440px;}
.lsdc{letter-spacing:11.448000px;}
.ls67{letter-spacing:11.533680px;}
.ls9{letter-spacing:12.134160px;}
.lsab{letter-spacing:12.204000px;}
.ls3e{letter-spacing:12.250800px;}
.ls55{letter-spacing:12.944016px;}
.lsa{letter-spacing:14.580000px;}
.lsa9{letter-spacing:15.066000px;}
.lsdd{letter-spacing:19.548000px;}
.lsda{letter-spacing:46.170000px;}
.ls8c{letter-spacing:102.124080px;}
.ls8f{letter-spacing:107.912880px;}
.ls8d{letter-spacing:110.035440px;}
.lsbb{letter-spacing:119.369880px;}
.lsbe{letter-spacing:129.476160px;}
.lsb1{letter-spacing:130.899240px;}
.ls95{letter-spacing:133.094160px;}
.lsc8{letter-spacing:138.087000px;}
.ls8e{letter-spacing:140.257800px;}
.lsc0{letter-spacing:140.981400px;}
.ls96{letter-spacing:142.452720px;}
.ls92{letter-spacing:145.347120px;}
.ls94{letter-spacing:148.916880px;}
.ls8b{letter-spacing:149.640480px;}
.lsc4{letter-spacing:150.339960px;}
.ls8a{letter-spacing:151.787160px;}
.ls97{letter-spacing:151.811280px;}
.lsc9{letter-spacing:152.510760px;}
.lsb5{letter-spacing:153.234360px;}
.lsb0{letter-spacing:153.982080px;}
.ls85{letter-spacing:154.705680px;}
.ls88{letter-spacing:160.422120px;}
.lsc3{letter-spacing:161.145720px;}
.ls93{letter-spacing:161.869320px;}
.ls9a{letter-spacing:161.893440px;}
.lsb4{letter-spacing:163.340640px;}
.lsc6{letter-spacing:164.040120px;}
.ls7f{letter-spacing:164.064240px;}
.lsb6{letter-spacing:164.715480px;}
.lscd{letter-spacing:169.081200px;}
.ls99{letter-spacing:169.804800px;}
.lsb7{letter-spacing:171.975600px;}
.lsb2{letter-spacing:172.675080px;}
.ls87{letter-spacing:173.398680px;}
.lsc2{letter-spacing:173.422800px;}
.ls91{letter-spacing:174.074040px;}
.ls89{letter-spacing:174.122280px;}
.ls84{letter-spacing:174.870000px;}
.lsb9{letter-spacing:175.593600px;}
.lsaf{letter-spacing:176.317200px;}
.lsc5{letter-spacing:176.992560px;}
.lsca{letter-spacing:181.310040px;}
.ls90{letter-spacing:181.334160px;}
.ls9c{letter-spacing:182.033640px;}
.ls82{letter-spacing:183.504960px;}
.lsb3{letter-spacing:184.228560px;}
.lsba{letter-spacing:184.952160px;}
.lsc1{letter-spacing:187.074720px;}
.lsb8{letter-spacing:187.798320px;}
.lsc7{letter-spacing:192.863520px;}
.ls86{letter-spacing:194.238360px;}
.lsbc{letter-spacing:194.310720px;}
.ls81{letter-spacing:196.433280px;}
.ls83{letter-spacing:197.156880px;}
.ls68{letter-spacing:205.116480px;}
.lsae{letter-spacing:206.515440px;}
.ls9b{letter-spacing:208.686240px;}
.ls98{letter-spacing:215.150400px;}
.ls80{letter-spacing:217.321200px;}
.lscc{letter-spacing:231.021360px;}
.lscb{letter-spacing:238.209120px;}
.lscf{letter-spacing:242.550720px;}
.lsbf{letter-spacing:251.185680px;}
.lsbd{letter-spacing:257.649840px;}
.ls69{letter-spacing:366.382800px;}
.ls6b{letter-spacing:725.601960px;}
.ls6c{letter-spacing:726.325560px;}
.ls6a{letter-spacing:765.954720px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(148,54,52),0 0.015em rgb(148,54,52),0.015em 0 rgb(148,54,52),0 -0.015em  rgb(148,54,52);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(148,54,52);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse7{word-spacing:-16.254720px;}
.wse8{word-spacing:-15.955920px;}
.ws5e{word-spacing:-15.912000px;}
.wse9{word-spacing:-15.896160px;}
.wsba{word-spacing:-15.776640px;}
.ws5{word-spacing:-15.768000px;}
.ws95{word-spacing:-15.358320px;}
.wsd7{word-spacing:-14.999760px;}
.wsb2{word-spacing:-14.820480px;}
.ws11e{word-spacing:-14.796000px;}
.wsb{word-spacing:-14.760720px;}
.ws82{word-spacing:-14.641200px;}
.ws60{word-spacing:-14.611320px;}
.ws5d{word-spacing:-14.521680px;}
.wsa0{word-spacing:-14.461920px;}
.ws7{word-spacing:-14.402160px;}
.ws96{word-spacing:-14.342400px;}
.ws6{word-spacing:-14.282640px;}
.ws9{word-spacing:-14.222880px;}
.ws83{word-spacing:-14.163120px;}
.ws15b{word-spacing:-14.116407px;}
.ws5f{word-spacing:-14.103360px;}
.wsf9{word-spacing:-14.094000px;}
.ws8{word-spacing:-14.043600px;}
.ws157{word-spacing:-13.717960px;}
.wsa{word-spacing:-13.565520px;}
.ws11c{word-spacing:-13.392000px;}
.ws15c{word-spacing:-13.376435px;}
.wsf4{word-spacing:-13.338000px;}
.ws184{word-spacing:-13.319514px;}
.ws11b{word-spacing:-13.284000px;}
.ws158{word-spacing:-13.230000px;}
.ws10d{word-spacing:-13.176000px;}
.wsff{word-spacing:-13.122000px;}
.wsb9{word-spacing:-13.087440px;}
.wsc8{word-spacing:-13.068000px;}
.ws10{word-spacing:-13.024800px;}
.wsc7{word-spacing:-13.014000px;}
.ws11d{word-spacing:-12.960000px;}
.ws185{word-spacing:-12.921067px;}
.ws9f{word-spacing:-12.908160px;}
.ws10f{word-spacing:-12.852000px;}
.ws15d{word-spacing:-12.807225px;}
.ws159{word-spacing:-12.798000px;}
.ws10e{word-spacing:-12.744000px;}
.ws156{word-spacing:-12.690000px;}
.wse1{word-spacing:-12.638880px;}
.wsf3{word-spacing:-12.636000px;}
.wse2{word-spacing:-12.528000px;}
.ws15a{word-spacing:-12.474000px;}
.ws11a{word-spacing:-12.366000px;}
.ws1{word-spacing:-12.258000px;}
.ws2{word-spacing:-12.204000px;}
.wsde{word-spacing:-12.203862px;}
.wsdf{word-spacing:-11.949615px;}
.ws0{word-spacing:-11.934000px;}
.wsf{word-spacing:-11.915280px;}
.wsdd{word-spacing:-11.898765px;}
.wsd{word-spacing:-11.891160px;}
.wsdc{word-spacing:-11.695368px;}
.wsc{word-spacing:-11.625840px;}
.ws14{word-spacing:-11.577600px;}
.ws12{word-spacing:-11.384640px;}
.ws13{word-spacing:-11.336400px;}
.wse0{word-spacing:-11.288160px;}
.wse{word-spacing:-11.191680px;}
.ws11{word-spacing:-10.854000px;}
.ws3{word-spacing:-9.187200px;}
.ws61{word-spacing:-8.676000px;}
.ws4{word-spacing:-7.981920px;}
.wsbb{word-spacing:-7.287840px;}
.wsf0{word-spacing:-2.330640px;}
.ws5c{word-spacing:-2.217301px;}
.wsfc{word-spacing:-1.782000px;}
.wseb{word-spacing:-1.494000px;}
.ws54{word-spacing:-1.398960px;}
.wsa8{word-spacing:-1.258560px;}
.ws14d{word-spacing:-1.195341px;}
.ws57{word-spacing:-1.157760px;}
.wsc5{word-spacing:-1.134000px;}
.ws56{word-spacing:-1.109520px;}
.ws11f{word-spacing:-1.080000px;}
.ws166{word-spacing:-0.918000px;}
.wsda{word-spacing:-0.896400px;}
.ws3c{word-spacing:-0.836640px;}
.ws76{word-spacing:-0.776880px;}
.ws6e{word-spacing:-0.717120px;}
.ws7f{word-spacing:-0.657360px;}
.wse6{word-spacing:-0.597600px;}
.ws86{word-spacing:-0.537840px;}
.ws33{word-spacing:-0.478080px;}
.ws21{word-spacing:-0.463680px;}
.ws165{word-spacing:-0.455368px;}
.wsa6{word-spacing:-0.432000px;}
.ws173{word-spacing:-0.398447px;}
.ws25{word-spacing:-0.378000px;}
.ws99{word-spacing:-0.360000px;}
.wsd6{word-spacing:-0.324000px;}
.ws44{word-spacing:-0.298800px;}
.ws48{word-spacing:-0.289440px;}
.ws113{word-spacing:-0.270000px;}
.ws22{word-spacing:-0.264960px;}
.ws1f{word-spacing:-0.263520px;}
.ws37{word-spacing:-0.239040px;}
.ws13a{word-spacing:-0.227684px;}
.ws24{word-spacing:-0.216000px;}
.ws55{word-spacing:-0.192960px;}
.ws10a{word-spacing:-0.179280px;}
.ws124{word-spacing:-0.162000px;}
.ws4f{word-spacing:-0.152548px;}
.ws1c{word-spacing:-0.131760px;}
.ws3f{word-spacing:-0.119520px;}
.ws137{word-spacing:-0.113842px;}
.ws174{word-spacing:-0.108000px;}
.ws51{word-spacing:-0.096480px;}
.ws105{word-spacing:-0.072000px;}
.wsa7{word-spacing:-0.066240px;}
.ws72{word-spacing:-0.059760px;}
.ws136{word-spacing:-0.054000px;}
.ws5a{word-spacing:-0.048240px;}
.ws17{word-spacing:0.000000px;}
.wsc6{word-spacing:0.048240px;}
.wse3{word-spacing:0.050849px;}
.ws16{word-spacing:0.054000px;}
.ws63{word-spacing:0.059760px;}
.ws23{word-spacing:0.066240px;}
.ws1a{word-spacing:0.108000px;}
.ws146{word-spacing:0.113842px;}
.ws3d{word-spacing:0.119520px;}
.ws1d{word-spacing:0.131760px;}
.ws20{word-spacing:0.132480px;}
.ws64{word-spacing:0.144000px;}
.ws5b{word-spacing:0.144720px;}
.ws62{word-spacing:0.162000px;}
.ws17e{word-spacing:0.170763px;}
.ws2a{word-spacing:0.179280px;}
.ws59{word-spacing:0.192960px;}
.ws15{word-spacing:0.216000px;}
.ws162{word-spacing:0.227684px;}
.ws52{word-spacing:0.241200px;}
.ws50{word-spacing:0.254247px;}
.ws1e{word-spacing:0.263520px;}
.wsc9{word-spacing:0.264960px;}
.ws139{word-spacing:0.270000px;}
.ws4b{word-spacing:0.289440px;}
.ws7e{word-spacing:0.298800px;}
.wse4{word-spacing:0.305097px;}
.ws18{word-spacing:0.324000px;}
.ws53{word-spacing:0.337680px;}
.ws175{word-spacing:0.341526px;}
.ws19{word-spacing:0.378000px;}
.ws180{word-spacing:0.398447px;}
.wsdb{word-spacing:0.418320px;}
.ws164{word-spacing:0.432000px;}
.wsca{word-spacing:0.463680px;}
.wsd9{word-spacing:0.478080px;}
.ws45{word-spacing:0.482400px;}
.ws153{word-spacing:0.486000px;}
.ws155{word-spacing:0.512289px;}
.ws58{word-spacing:0.530640px;}
.ws131{word-spacing:0.540000px;}
.ws132{word-spacing:0.569210px;}
.wsf1{word-spacing:0.594000px;}
.wsab{word-spacing:0.597600px;}
.ws177{word-spacing:0.626131px;}
.ws4d{word-spacing:0.627120px;}
.ws135{word-spacing:0.648000px;}
.ws39{word-spacing:0.657360px;}
.wsc1{word-spacing:0.717120px;}
.wsbc{word-spacing:0.776880px;}
.ws98{word-spacing:0.836640px;}
.ws145{word-spacing:0.864000px;}
.ws38{word-spacing:0.896400px;}
.ws154{word-spacing:0.918000px;}
.ws183{word-spacing:0.972000px;}
.ws9d{word-spacing:1.015920px;}
.wsb3{word-spacing:1.026000px;}
.ws12e{word-spacing:1.080000px;}
.ws12d{word-spacing:1.134000px;}
.ws138{word-spacing:1.188000px;}
.ws12c{word-spacing:1.242000px;}
.wse5{word-spacing:1.314720px;}
.ws15f{word-spacing:1.350000px;}
.wsee{word-spacing:1.374480px;}
.ws84{word-spacing:1.434240px;}
.ws163{word-spacing:1.458000px;}
.ws85{word-spacing:1.494000px;}
.ws3a{word-spacing:1.553760px;}
.ws176{word-spacing:1.566000px;}
.ws3b{word-spacing:1.613520px;}
.ws46{word-spacing:1.640160px;}
.ws160{word-spacing:1.650709px;}
.wsf2{word-spacing:1.674000px;}
.ws161{word-spacing:1.764551px;}
.ws103{word-spacing:1.782000px;}
.ws129{word-spacing:1.836000px;}
.ws128{word-spacing:1.944000px;}
.ws74{word-spacing:2.031840px;}
.ws80{word-spacing:2.091600px;}
.ws194{word-spacing:2.106000px;}
.ws8c{word-spacing:2.141747px;}
.ws81{word-spacing:2.151360px;}
.ws17a{word-spacing:2.160000px;}
.ws70{word-spacing:2.211120px;}
.ws17b{word-spacing:2.268000px;}
.ws75{word-spacing:2.270880px;}
.ws3e{word-spacing:2.330640px;}
.ws171{word-spacing:2.376000px;}
.ws8b{word-spacing:2.450160px;}
.wsa4{word-spacing:2.484000px;}
.ws172{word-spacing:2.504524px;}
.ws167{word-spacing:2.592000px;}
.wsb5{word-spacing:2.646000px;}
.wscc{word-spacing:2.748960px;}
.ws9c{word-spacing:2.808720px;}
.ws14c{word-spacing:2.862000px;}
.ws7d{word-spacing:2.868480px;}
.wsa2{word-spacing:2.928240px;}
.ws7c{word-spacing:2.988000px;}
.ws40{word-spacing:3.047760px;}
.wsb4{word-spacing:3.078000px;}
.ws42{word-spacing:3.107520px;}
.wsac{word-spacing:3.167280px;}
.wsd4{word-spacing:3.186000px;}
.ws104{word-spacing:3.240000px;}
.ws108{word-spacing:3.346560px;}
.ws196{word-spacing:3.358339px;}
.wsb6{word-spacing:3.402000px;}
.ws133{word-spacing:3.415260px;}
.ws47{word-spacing:3.425040px;}
.ws8d{word-spacing:3.525840px;}
.ws89{word-spacing:3.585600px;}
.wsed{word-spacing:3.645360px;}
.ws197{word-spacing:3.699865px;}
.ws9a{word-spacing:3.705120px;}
.ws43{word-spacing:3.764880px;}
.wsa5{word-spacing:3.834000px;}
.ws16b{word-spacing:3.888000px;}
.ws100{word-spacing:3.942000px;}
.ws169{word-spacing:3.996000px;}
.ws150{word-spacing:4.050000px;}
.ws14e{word-spacing:4.104000px;}
.wsef{word-spacing:4.183200px;}
.ws14f{word-spacing:4.212000px;}
.ws9e{word-spacing:4.242960px;}
.ws30{word-spacing:4.302720px;}
.ws102{word-spacing:4.362480px;}
.ws8e{word-spacing:4.422240px;}
.ws66{word-spacing:4.482000px;}
.ws16a{word-spacing:4.536000px;}
.wsf7{word-spacing:4.644000px;}
.ws88{word-spacing:4.724443px;}
.ws7b{word-spacing:4.780800px;}
.ws168{word-spacing:4.806000px;}
.ws16e{word-spacing:4.838285px;}
.ws199{word-spacing:4.895206px;}
.ws8f{word-spacing:4.900320px;}
.ws90{word-spacing:4.960080px;}
.ws4c{word-spacing:4.968720px;}
.ws7a{word-spacing:5.019840px;}
.ws15e{word-spacing:5.130000px;}
.ws79{word-spacing:5.139360px;}
.ws19b{word-spacing:5.179811px;}
.ws28{word-spacing:5.199120px;}
.ws17c{word-spacing:5.238000px;}
.ws78{word-spacing:5.318640px;}
.wsfe{word-spacing:5.346000px;}
.ws17d{word-spacing:5.400000px;}
.ws141{word-spacing:5.454000px;}
.wsc2{word-spacing:5.497920px;}
.ws142{word-spacing:5.508000px;}
.ws19a{word-spacing:5.521337px;}
.ws140{word-spacing:5.562000px;}
.wsc0{word-spacing:5.617440px;}
.ws134{word-spacing:5.670000px;}
.ws94{word-spacing:5.677200px;}
.wsbd{word-spacing:5.736960px;}
.ws193{word-spacing:5.778000px;}
.ws97{word-spacing:5.856480px;}
.ws13f{word-spacing:5.886000px;}
.ws77{word-spacing:5.916240px;}
.ws143{word-spacing:5.976705px;}
.wsd5{word-spacing:5.994000px;}
.ws8a{word-spacing:6.035760px;}
.ws16d{word-spacing:6.102000px;}
.ws16c{word-spacing:6.210000px;}
.ws101{word-spacing:6.264000px;}
.wsb1{word-spacing:6.394320px;}
.ws35{word-spacing:6.454080px;}
.ws34{word-spacing:6.573600px;}
.ws27{word-spacing:6.633360px;}
.wsd0{word-spacing:6.693120px;}
.ws127{word-spacing:6.696000px;}
.wsf8{word-spacing:6.804000px;}
.ws13d{word-spacing:6.912000px;}
.wscf{word-spacing:6.929183px;}
.ws31{word-spacing:6.932160px;}
.ws144{word-spacing:6.966000px;}
.ws151{word-spacing:7.020000px;}
.wsbf{word-spacing:7.051680px;}
.ws152{word-spacing:7.074000px;}
.ws32{word-spacing:7.111440px;}
.ws10c{word-spacing:7.171200px;}
.ws112{word-spacing:7.230960px;}
.ws178{word-spacing:7.290000px;}
.ws10b{word-spacing:7.290720px;}
.ws179{word-spacing:7.342809px;}
.ws29{word-spacing:7.350480px;}
.ws126{word-spacing:7.398000px;}
.ws125{word-spacing:7.506000px;}
.wsfd{word-spacing:7.560000px;}
.ws16f{word-spacing:7.722000px;}
.ws109{word-spacing:7.828560px;}
.ws6f{word-spacing:7.888320px;}
.ws87{word-spacing:7.948080px;}
.ws13b{word-spacing:8.046000px;}
.ws6d{word-spacing:8.067600px;}
.ws2c{word-spacing:8.127360px;}
.ws13e{word-spacing:8.154000px;}
.ws9b{word-spacing:8.187120px;}
.ws114{word-spacing:8.208000px;}
.wsd3{word-spacing:8.252027px;}
.ws115{word-spacing:8.262000px;}
.wsd2{word-spacing:8.315019px;}
.ws170{word-spacing:8.424000px;}
.ws13c{word-spacing:8.478000px;}
.wsbe{word-spacing:8.545680px;}
.wsd1{word-spacing:8.566990px;}
.wsd8{word-spacing:8.605440px;}
.wsa9{word-spacing:8.665200px;}
.ws91{word-spacing:8.784720px;}
.ws2b{word-spacing:8.844480px;}
.ws181{word-spacing:8.856000px;}
.ws17f{word-spacing:8.910000px;}
.ws116{word-spacing:8.964000px;}
.ws148{word-spacing:9.126000px;}
.wsaa{word-spacing:9.262800px;}
.wsb0{word-spacing:9.322560px;}
.ws6a{word-spacing:9.382320px;}
.ws69{word-spacing:9.442080px;}
.ws14b{word-spacing:9.450000px;}
.ws41{word-spacing:9.501840px;}
.ws119{word-spacing:9.558000px;}
.ws68{word-spacing:9.561600px;}
.wsfa{word-spacing:9.666000px;}
.ws67{word-spacing:9.681120px;}
.ws117{word-spacing:9.720000px;}
.ws149{word-spacing:9.828000px;}
.ws147{word-spacing:9.882000px;}
.wscd{word-spacing:9.979920px;}
.wsce{word-spacing:10.039680px;}
.ws198{word-spacing:10.098000px;}
.ws36{word-spacing:10.099440px;}
.ws2d{word-spacing:10.218960px;}
.ws49{word-spacing:10.226880px;}
.ws2f{word-spacing:10.278720px;}
.ws18e{word-spacing:10.368000px;}
.ws14a{word-spacing:10.422000px;}
.ws12a{word-spacing:10.530000px;}
.ws106{word-spacing:10.756800px;}
.ws4a{word-spacing:10.757520px;}
.ws4e{word-spacing:10.780078px;}
.ws92{word-spacing:10.816560px;}
.ws2e{word-spacing:10.936080px;}
.wsea{word-spacing:10.995840px;}
.ws12b{word-spacing:11.016000px;}
.ws18d{word-spacing:11.124000px;}
.ws123{word-spacing:11.178000px;}
.ws187{word-spacing:11.232000px;}
.ws130{word-spacing:11.286000px;}
.ws110{word-spacing:11.473920px;}
.wsc3{word-spacing:11.593440px;}
.ws182{word-spacing:11.610000px;}
.wsec{word-spacing:11.653200px;}
.ws73{word-spacing:11.712960px;}
.ws122{word-spacing:11.718000px;}
.ws12f{word-spacing:11.826000px;}
.wsfb{word-spacing:11.880000px;}
.ws118{word-spacing:11.988000px;}
.ws186{word-spacing:12.042000px;}
.ws195{word-spacing:12.150000px;}
.ws111{word-spacing:12.191040px;}
.wsb8{word-spacing:12.250800px;}
.ws189{word-spacing:12.366000px;}
.wscb{word-spacing:12.370320px;}
.wsb7{word-spacing:12.430080px;}
.ws190{word-spacing:12.474000px;}
.ws188{word-spacing:12.582000px;}
.ws191{word-spacing:12.744000px;}
.ws71{word-spacing:12.967920px;}
.ws93{word-spacing:13.147200px;}
.ws192{word-spacing:13.176000px;}
.wsa1{word-spacing:13.266720px;}
.wsf5{word-spacing:13.284000px;}
.ws18a{word-spacing:13.446000px;}
.ws26{word-spacing:13.608000px;}
.ws6c{word-spacing:13.685040px;}
.ws18b{word-spacing:13.824000px;}
.ws6b{word-spacing:13.864320px;}
.ws18f{word-spacing:13.878000px;}
.wsad{word-spacing:14.282640px;}
.wsaf{word-spacing:14.402160px;}
.wsae{word-spacing:14.581440px;}
.ws121{word-spacing:14.634000px;}
.ws120{word-spacing:14.742000px;}
.wsf6{word-spacing:14.904000px;}
.wsc4{word-spacing:15.059520px;}
.ws65{word-spacing:15.119280px;}
.ws1b{word-spacing:15.174000px;}
.ws107{word-spacing:15.298560px;}
.ws18c{word-spacing:15.444000px;}
.wsa3{word-spacing:16.015680px;}
._1{margin-left:-1.365984px;}
._0{width:1.134000px;}
._3{width:2.396160px;}
._2{width:4.069440px;}
._9{width:5.531184px;}
._a{width:6.652080px;}
._7{width:8.187120px;}
._2e{width:9.417168px;}
._5{width:10.756800px;}
._8{width:11.952000px;}
._c{width:12.960864px;}
._2d{width:14.233968px;}
._6{width:16.674480px;}
._b{width:17.825760px;}
._2c{width:133.213680px;}
._26{width:135.336240px;}
._21{width:148.867920px;}
._23{width:154.802160px;}
._1e{width:156.224160px;}
._1a{width:169.032240px;}
._14{width:174.435840px;}
._15{width:176.944320px;}
._27{width:178.937424px;}
._19{width:183.794400px;}
._17{width:185.916960px;}
._18{width:187.026480px;}
._29{width:188.328240px;}
._25{width:191.584800px;}
._11{width:195.595488px;}
._1b{width:197.446320px;}
._2a{width:198.555120px;}
._1c{width:199.617120px;}
._22{width:204.463872px;}
._12{width:206.804880px;}
._1f{width:207.897408px;}
._28{width:208.934208px;}
._16{width:216.114480px;}
._13{width:220.384080px;}
._24{width:226.944720px;}
._20{width:228.262464px;}
._1d{width:247.832640px;}
._2b{width:262.136160px;}
._4{width:336.136320px;}
._f{width:548.102880px;}
._d{width:559.632240px;}
._10{width:737.830800px;}
._e{width:747.912960px;}
.fc5{color:transparent;}
.fc3{color:rgb(227,108,10);}
.fc2{color:rgb(148,54,52);}
.fc6{color:rgb(49,132,155);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.240000px;}
.fs4{font-size:33.120000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fsb{font-size:48.202200px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:50.849425px;}
.fs0{font-size:54.000000px;}
.fse{font-size:56.920998px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:62.209200px;}
.fsc{font-size:62.992571px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:131.760000px;}
.y5e{bottom:-0.000150px;}
.y0{bottom:0.000000px;}
.y1f8{bottom:4.679850px;}
.y67{bottom:5.580000px;}
.y3d{bottom:6.119850px;}
.y20a{bottom:7.019850px;}
.y1b2{bottom:8.099850px;}
.y1aa{bottom:8.100000px;}
.y61{bottom:8.260500px;}
.y1f5{bottom:12.959850px;}
.y20f{bottom:16.379850px;}
.y197{bottom:16.559850px;}
.y1f6{bottom:21.239850px;}
.y198{bottom:24.660000px;}
.y1f3{bottom:29.519850px;}
.y195{bottom:32.940000px;}
.y66{bottom:33.659850px;}
.y1f7{bottom:37.619850px;}
.y22d{bottom:37.799850px;}
.y3b{bottom:48.599850px;}
.y64{bottom:67.500000px;}
.y5{bottom:67.504350px;}
.y8e{bottom:67.509000px;}
.y39{bottom:69.839850px;}
.y38{bottom:91.079850px;}
.y23f{bottom:110.520000px;}
.y209{bottom:111.240000px;}
.y36e{bottom:111.613350px;}
.y24d{bottom:112.144500px;}
.y36{bottom:112.319850px;}
.y17a{bottom:112.504500px;}
.ye2{bottom:112.684680px;}
.y1d2{bottom:112.864500px;}
.y191{bottom:113.046120px;}
.yf4{bottom:113.215350px;}
.y29a{bottom:113.976360px;}
.y129{bottom:114.668280px;}
.y1be{bottom:115.200930px;}
.y156{bottom:115.380000px;}
.y1eb{bottom:115.564500px;}
.y2d6{bottom:115.744350px;}
.yba{bottom:115.942530px;}
.y3a9{bottom:117.007230px;}
.y11b{bottom:117.361650px;}
.y1db{bottom:117.364320px;}
.y164{bottom:117.540000px;}
.y2b0{bottom:118.080000px;}
.y8c{bottom:119.175330px;}
.y30a{bottom:119.339850px;}
.y273{bottom:119.341440px;}
.y309{bottom:119.348850px;}
.y344{bottom:119.528850px;}
.y14b{bottom:125.650650px;}
.y36d{bottom:130.148850px;}
.y24c{bottom:130.869000px;}
.y179{bottom:131.040000px;}
.y1d1{bottom:131.400000px;}
.yf3{bottom:131.939850px;}
.y12{bottom:132.480000px;}
.y34{bottom:133.559850px;}
.y1ea{bottom:134.100000px;}
.y2d5{bottom:134.279850px;}
.ye1{bottom:135.363600px;}
.y190{bottom:135.904320px;}
.y299{bottom:136.655280px;}
.y128{bottom:137.167920px;}
.y3a8{bottom:137.520000px;}
.y1bd{bottom:137.700570px;}
.y308{bottom:137.884350px;}
.y155{bottom:137.884890px;}
.y343{bottom:138.064350px;}
.yb9{bottom:138.621450px;}
.y208{bottom:139.525770px;}
.y1da{bottom:139.684680px;}
.y11a{bottom:139.861290px;}
.y163{bottom:140.047050px;}
.y2af{bottom:140.770080px;}
.y272{bottom:141.841080px;}
.y23e{bottom:142.066650px;}
.y8b{bottom:142.212810px;}
.y14a{bottom:149.047050px;}
.y24b{bottom:149.404500px;}
.y2d4{bottom:152.815350px;}
.y178{bottom:153.716400px;}
.y1e0{bottom:153.898200px;}
.y1d0{bottom:154.079280px;}
.y1e5{bottom:154.079460px;}
.y36c{bottom:154.084350px;}
.yf2{bottom:154.451190px;}
.y32{bottom:154.799850px;}
.y1e9{bottom:156.778740px;}
.ye0{bottom:158.221800px;}
.y18f{bottom:158.941800px;}
.y298{bottom:159.334200px;}
.y127{bottom:159.667560px;}
.y3c{bottom:159.839850px;}
.y1bc{bottom:160.200210px;}
.y207{bottom:160.944330px;}
.yb8{bottom:161.300370px;}
.y307{bottom:161.824350px;}
.y342{bottom:161.995350px;}
.y119{bottom:162.360930px;}
.y3a7{bottom:163.102500px;}
.y1d9{bottom:163.260000px;}
.y271{bottom:164.340720px;}
.y8a{bottom:165.071010px;}
.y23d{bottom:165.463050px;}
.y24a{bottom:167.940000px;}
.y149{bottom:172.443450px;}
.y36b{bottom:172.619850px;}
.y31{bottom:176.039850px;}
.y2d3{bottom:176.949000px;}
.y306{bottom:180.359850px;}
.y305{bottom:180.364350px;}
.y341{bottom:180.719850px;}
.y340{bottom:180.724350px;}
.y3a{bottom:181.079850px;}
.ydf{bottom:181.081080px;}
.y3a6{bottom:181.638000px;}
.y18e{bottom:181.808640px;}
.y297{bottom:182.013120px;}
.y126{bottom:182.167200px;}
.y206{bottom:182.181990px;}
.y1bb{bottom:182.705610px;}
.y1d8{bottom:183.240000px;}
.yb7{bottom:183.979290px;}
.y118{bottom:184.860570px;}
.y270{bottom:186.840360px;}
.y5c{bottom:187.379850px;}
.y89{bottom:188.108490px;}
.y23c{bottom:188.859450px;}
.y249{bottom:190.628280px;}
.y36a{bottom:191.344350px;}
.y2d2{bottom:195.484500px;}
.y148{bottom:195.839850px;}
.y3e{bottom:196.920000px;}
.y2f{bottom:197.279850px;}
.y304{bottom:199.088850px;}
.y33f{bottom:199.259850px;}
.y33e{bottom:199.268850px;}
.y3a5{bottom:200.173500px;}
.y205{bottom:203.419650px;}
.yde{bottom:203.761800px;}
.y5a{bottom:203.939850px;}
.y125{bottom:204.666840px;}
.y18d{bottom:204.846120px;}
.y296{bottom:204.871320px;}
.y1ba{bottom:205.205250px;}
.y1d7{bottom:205.732800px;}
.yb6{bottom:206.658210px;}
.y117{bottom:207.360210px;}
.y26f{bottom:209.346840px;}
.y88{bottom:210.966690px;}
.y23b{bottom:212.255850px;}
.y2d1{bottom:214.020000px;}
.y369{bottom:215.284350px;}
.y303{bottom:217.624350px;}
.y33d{bottom:217.804350px;}
.y2d{bottom:218.519850px;}
.y3a4{bottom:218.709000px;}
.y147{bottom:219.239850px;}
.y58{bottom:220.499850px;}
.y37{bottom:223.559850px;}
.y204{bottom:224.838210px;}
.ydd{bottom:226.627560px;}
.y124{bottom:227.166480px;}
.y295{bottom:227.550240px;}
.y18c{bottom:227.704320px;}
.y1b9{bottom:228.959850px;}
.yb5{bottom:229.337130px;}
.y116{bottom:229.860930px;}
.y26e{bottom:231.846480px;}
.y368{bottom:233.819850px;}
.y87{bottom:234.004170px;}
.y23a{bottom:235.652250px;}
.y56{bottom:237.059850px;}
.y3a3{bottom:237.244500px;}
.y2b{bottom:239.759850px;}
.y2d0{bottom:240.480000px;}
.y302{bottom:241.559850px;}
.y33c{bottom:241.744350px;}
.y146{bottom:242.999850px;}
.y35{bottom:244.799850px;}
.y203{bottom:246.075870px;}
.y1b8{bottom:248.939850px;}
.ydc{bottom:249.485760px;}
.y123{bottom:249.666120px;}
.y294{bottom:250.229160px;}
.y18b{bottom:250.741800px;}
.yb4{bottom:251.836770px;}
.y115{bottom:252.360570px;}
.y54{bottom:253.439850px;}
.y26d{bottom:254.346120px;}
.y3a2{bottom:255.969000px;}
.y86{bottom:256.862370px;}
.y367{bottom:258.119850px;}
.y366{bottom:258.133350px;}
.y239{bottom:259.048650px;}
.y301{bottom:260.099850px;}
.y33b{bottom:260.279850px;}
.y29{bottom:260.999850px;}
.y33{bottom:266.039850px;}
.y202{bottom:267.313530px;}
.y52{bottom:269.999850px;}
.y1b7{bottom:271.434990px;}
.ydb{bottom:272.164680px;}
.y122{bottom:272.165760px;}
.y293{bottom:272.908080px;}
.y145{bottom:273.240000px;}
.y18a{bottom:273.617280px;}
.y3a1{bottom:274.504500px;}
.yb3{bottom:274.515690px;}
.y114{bottom:274.860210px;}
.y26c{bottom:276.845760px;}
.y365{bottom:277.208850px;}
.y300{bottom:278.635350px;}
.y33a{bottom:279.004350px;}
.y85{bottom:279.901650px;}
.y2cf{bottom:280.092240px;}
.y27{bottom:282.239850px;}
.y238{bottom:282.445050px;}
.y51{bottom:286.559850px;}
.y201{bottom:288.732090px;}
.y144{bottom:292.326300px;}
.y3a0{bottom:293.040000px;}
.y121{bottom:294.665400px;}
.yda{bottom:295.022880px;}
.y292{bottom:295.766280px;}
.y364{bottom:296.108850px;}
.y189{bottom:296.654760px;}
.yb2{bottom:297.194610px;}
.y113{bottom:297.360930px;}
.y26b{bottom:299.345400px;}
.y2ce{bottom:302.591880px;}
.y84{bottom:302.764170px;}
.y2ff{bottom:302.764350px;}
.y4f{bottom:302.939850px;}
.y339{bottom:302.944350px;}
.y25{bottom:303.479850px;}
.y237{bottom:305.841450px;}
.y30{bottom:308.519850px;}
.y200{bottom:309.969750px;}
.y143{bottom:311.763240px;}
.y39f{bottom:317.700000px;}
.yd9{bottom:317.881080px;}
.y120{bottom:318.420000px;}
.y291{bottom:318.445200px;}
.y4d{bottom:319.499850px;}
.y188{bottom:319.512960px;}
.y112{bottom:319.860570px;}
.yb1{bottom:319.873530px;}
.y363{bottom:320.408850px;}
.y2fe{bottom:321.299850px;}
.y2fd{bottom:321.308850px;}
.y338{bottom:321.479850px;}
.y337{bottom:321.484350px;}
.y26a{bottom:321.845040px;}
.y23{bottom:324.719850px;}
.y2cd{bottom:325.091520px;}
.y83{bottom:325.801650px;}
.y236{bottom:329.237850px;}
.y2e{bottom:329.759850px;}
.y1ff{bottom:331.207410px;}
.y142{bottom:334.262880px;}
.y4b{bottom:336.059850px;}
.y39e{bottom:338.220000px;}
.y11f{bottom:338.409000px;}
.y362{bottom:339.484350px;}
.y2fc{bottom:339.844350px;}
.y336{bottom:340.019850px;}
.yd8{bottom:340.563600px;}
.y290{bottom:341.124120px;}
.y111{bottom:342.360210px;}
.y187{bottom:342.550440px;}
.yb0{bottom:342.552450px;}
.y269{bottom:344.344680px;}
.y21{bottom:345.959850px;}
.y2cc{bottom:347.591160px;}
.y82{bottom:348.662370px;}
.y2c{bottom:350.999850px;}
.y4a{bottom:352.619850px;}
.y1fe{bottom:352.625970px;}
.y235{bottom:352.634250px;}
.y141{bottom:356.762520px;}
.y11e{bottom:356.944500px;}
.y60{bottom:357.157500px;}
.y5d{bottom:357.475500px;}
.y5f{bottom:357.479850px;}
.y361{bottom:358.384350px;}
.y335{bottom:358.555350px;}
.y39d{bottom:358.740000px;}
.yd7{bottom:363.421800px;}
.y2fb{bottom:363.779850px;}
.y28f{bottom:363.803040px;}
.y110{bottom:364.856970px;}
.yaf{bottom:365.231370px;}
.y186{bottom:365.408640px;}
.y268{bottom:366.844320px;}
.y1f{bottom:367.199850px;}
.y48{bottom:368.999850px;}
.y2cb{bottom:370.090800px;}
.y81{bottom:371.712810px;}
.y2a{bottom:372.239850px;}
.y1fd{bottom:373.863630px;}
.y11d{bottom:375.480000px;}
.y234{bottom:376.030650px;}
.y360{bottom:377.284350px;}
.y140{bottom:379.262160px;}
.y2fa{bottom:382.319850px;}
.y2f9{bottom:382.324350px;}
.y334{bottom:382.684350px;}
.y46{bottom:385.559850px;}
.yd6{bottom:386.283600px;}
.y28e{bottom:386.661240px;}
.y10f{bottom:387.356610px;}
.yae{bottom:387.731010px;}
.y1d{bottom:388.439850px;}
.y185{bottom:388.446120px;}
.y267{bottom:389.343960px;}
.y39c{bottom:390.601620px;}
.y2ca{bottom:392.590440px;}
.y28{bottom:393.479850px;}
.y80{bottom:394.571010px;}
.y1fc{bottom:395.101290px;}
.y11c{bottom:398.160000px;}
.y233{bottom:399.427050px;}
.y5b{bottom:400.859850px;}
.y2f8{bottom:401.048850px;}
.y333{bottom:401.219850px;}
.y332{bottom:401.233350px;}
.y13f{bottom:401.761800px;}
.y35f{bottom:401.764350px;}
.y44{bottom:402.119850px;}
.yd5{bottom:408.962520px;}
.y28d{bottom:409.340160px;}
.y1b{bottom:409.679850px;}
.y10e{bottom:409.856250px;}
.yad{bottom:410.409930px;}
.y184{bottom:411.304320px;}
.y266{bottom:411.843600px;}
.y39b{bottom:413.105580px;}
.y26{bottom:414.719850px;}
.y2c9{bottom:415.090080px;}
.y1fb{bottom:416.519850px;}
.y59{bottom:417.419850px;}
.y7f{bottom:417.608490px;}
.y43{bottom:418.679850px;}
.y2f7{bottom:419.584350px;}
.y331{bottom:419.768850px;}
.y35e{bottom:420.664350px;}
.y232{bottom:422.823450px;}
.y13e{bottom:424.261440px;}
.y1a{bottom:430.919850px;}
.yd4{bottom:431.820720px;}
.y28c{bottom:432.019080px;}
.y10d{bottom:432.355890px;}
.yac{bottom:433.088850px;}
.y57{bottom:433.979850px;}
.y183{bottom:434.341800px;}
.y265{bottom:434.343240px;}
.y41{bottom:435.059850px;}
.y39a{bottom:435.609540px;}
.y24{bottom:435.959850px;}
.y2c8{bottom:437.589720px;}
.y1fa{bottom:437.759850px;}
.y330{bottom:438.304350px;}
.y7e{bottom:440.466690px;}
.y2f6{bottom:443.524350px;}
.y35d{bottom:445.144350px;}
.y231{bottom:446.219850px;}
.y13d{bottom:446.761080px;}
.y55{bottom:450.359850px;}
.y40{bottom:451.619850px;}
.y18{bottom:452.159850px;}
.y1f2{bottom:452.340000px;}
.yd3{bottom:454.678920px;}
.y28b{bottom:454.698000px;}
.y10c{bottom:454.855530px;}
.yab{bottom:455.767770px;}
.y399{bottom:456.485400px;}
.y264{bottom:456.842880px;}
.y22{bottom:457.199850px;}
.y182{bottom:457.202520px;}
.y2c7{bottom:460.089360px;}
.y2f5{bottom:462.059850px;}
.y32f{bottom:462.235350px;}
.y7d{bottom:463.504170px;}
.y35c{bottom:464.044350px;}
.y1f4{bottom:465.299850px;}
.y53{bottom:466.919850px;}
.y3f{bottom:468.179850px;}
.y13c{bottom:469.260720px;}
.y230{bottom:469.619850px;}
.y398{bottom:470.342340px;}
.y16{bottom:473.399850px;}
.y1f1{bottom:473.579850px;}
.y10b{bottom:477.355170px;}
.yd2{bottom:477.357840px;}
.y28a{bottom:477.556200px;}
.y20{bottom:478.439850px;}
.yaa{bottom:478.446690px;}
.y263{bottom:479.342520px;}
.y181{bottom:480.246120px;}
.y2f4{bottom:480.595350px;}
.y32e{bottom:480.959850px;}
.y32d{bottom:480.968850px;}
.y1f9{bottom:481.858230px;}
.y2c6{bottom:482.589000px;}
.y35b{bottom:482.944350px;}
.y397{bottom:484.199280px;}
.y22b{bottom:485.280000px;}
.y7c{bottom:486.362370px;}
.y13b{bottom:491.760360px;}
.y15{bottom:494.639850px;}
.y396{bottom:497.875320px;}
.y22c{bottom:498.239850px;}
.y32c{bottom:499.504350px;}
.y1e{bottom:499.679850px;}
.y10a{bottom:499.854810px;}
.y50{bottom:499.859850px;}
.yd1{bottom:500.216040px;}
.y289{bottom:500.235120px;}
.ya9{bottom:501.125610px;}
.y262{bottom:501.842160px;}
.y35a{bottom:502.019850px;}
.y180{bottom:503.104320px;}
.y2f3{bottom:504.724350px;}
.y2c5{bottom:505.088640px;}
.y22a{bottom:506.519850px;}
.y7b{bottom:509.436360px;}
.y395{bottom:511.732260px;}
.y13a{bottom:514.262880px;}
.y22f{bottom:514.798230px;}
.y22e{bottom:514.799850px;}
.y4e{bottom:516.419850px;}
.y1f0{bottom:516.780000px;}
.y1c{bottom:520.919850px;}
.yd0{bottom:521.819280px;}
.y109{bottom:522.354450px;}
.y13{bottom:522.719850px;}
.y288{bottom:522.914040px;}
.y2f2{bottom:523.259850px;}
.y2f1{bottom:523.273350px;}
.y32b{bottom:523.444350px;}
.ya8{bottom:523.625250px;}
.y261{bottom:524.341800px;}
.y394{bottom:525.589200px;}
.y17f{bottom:526.141800px;}
.y2c4{bottom:527.588280px;}
.y7a{bottom:532.294560px;}
.y4c{bottom:532.979850px;}
.y1ef{bottom:536.040000px;}
.y139{bottom:536.762520px;}
.y393{bottom:539.265240px;}
.y2f0{bottom:541.808850px;}
.y32a{bottom:541.979850px;}
.y108{bottom:543.778410px;}
.y359{bottom:545.224350px;}
.y287{bottom:545.592960px;}
.ya7{bottom:546.304170px;}
.y260{bottom:546.841440px;}
.y1d6{bottom:547.560000px;}
.y17e{bottom:549.006840px;}
.y229{bottom:549.724350px;}
.y2c3{bottom:550.087920px;}
.y392{bottom:553.122180px;}
.y79{bottom:555.332040px;}
.y1ee{bottom:556.024350px;}
.ycf{bottom:558.721080px;}
.y138{bottom:559.262160px;}
.y329{bottom:560.515350px;}
.y19{bottom:563.399850px;}
.y358{bottom:564.299850px;}
.y2ef{bottom:565.744350px;}
.y49{bottom:565.919850px;}
.y177{bottom:566.643060px;}
.y391{bottom:566.798220px;}
.y1d5{bottom:567.544500px;}
.y228{bottom:568.259850px;}
.y286{bottom:568.451160px;}
.ya6{bottom:568.983090px;}
.y25f{bottom:569.341080px;}
.y2ae{bottom:570.967380px;}
.y2c2{bottom:572.587560px;}
.y17d{bottom:573.120000px;}
.y1ed{bottom:574.559850px;}
.y1e4{bottom:576.000000px;}
.y78{bottom:578.190240px;}
.y1e8{bottom:578.520000px;}
.y1df{bottom:579.240000px;}
.y107{bottom:580.500930px;}
.y390{bottom:580.655160px;}
.yce{bottom:581.400000px;}
.y137{bottom:581.761800px;}
.y47{bottom:582.479850px;}
.y357{bottom:583.199850px;}
.y2ed{bottom:584.275350px;}
.y2ee{bottom:584.279850px;}
.y17{bottom:584.639850px;}
.y328{bottom:584.644350px;}
.y1d4{bottom:586.080000px;}
.y176{bottom:586.080360px;}
.y227{bottom:587.519850px;}
.y1b6{bottom:587.699850px;}
.y2ad{bottom:590.404320px;}
.y285{bottom:591.130080px;}
.ya5{bottom:591.482730px;}
.y25e{bottom:591.840720px;}
.y17c{bottom:593.100000px;}
.y38f{bottom:594.512100px;}
.y2c1{bottom:595.087200px;}
.y1e3{bottom:596.164500px;}
.y1ec{bottom:597.059850px;}
.y1cf{bottom:597.603060px;}
.y1e7{bottom:598.504500px;}
.y45{bottom:599.039850px;}
.y1de{bottom:599.404500px;}
.y77{bottom:601.227720px;}
.y2ec{bottom:602.999850px;}
.y106{bottom:603.000570px;}
.y2eb{bottom:603.013350px;}
.y327{bottom:603.179850px;}
.y226{bottom:603.180000px;}
.y326{bottom:603.188850px;}
.y1b5{bottom:603.360000px;}
.y136{bottom:604.261440px;}
.y356{bottom:607.508850px;}
.y175{bottom:608.581440px;}
.y1d3{bottom:608.760000px;}
.y38e{bottom:609.816240px;}
.ycd{bottom:612.360000px;}
.y2ac{bottom:612.903960px;}
.y284{bottom:613.809000px;}
.ya4{bottom:613.982370px;}
.y25d{bottom:614.340360px;}
.y1e2{bottom:614.700000px;}
.y17b{bottom:615.600000px;}
.y1ce{bottom:617.040000px;}
.y2c0{bottom:617.586840px;}
.y1dd{bottom:617.940000px;}
.y2ea{bottom:621.548850px;}
.y325{bottom:621.724350px;}
.y76{bottom:624.085920px;}
.y105{bottom:625.500210px;}
.y355{bottom:626.584350px;}
.y135{bottom:626.761080px;}
.y14{bottom:627.119850px;}
.y174{bottom:631.081080px;}
.y42{bottom:631.979850px;}
.y38d{bottom:632.320200px;}
.y225{bottom:634.726800px;}
.y1b4{bottom:634.863450px;}
.y2ab{bottom:635.403600px;}
.ya3{bottom:636.482010px;}
.y283{bottom:636.487920px;}
.y25c{bottom:636.844530px;}
.y1e1{bottom:637.200000px;}
.y1cd{bottom:639.541800px;}
.y1e6{bottom:639.719850px;}
.y2bf{bottom:640.086480px;}
.y1dc{bottom:640.440000px;}
.ycc{bottom:640.979850px;}
.y2e9{bottom:645.484350px;}
.y324{bottom:645.659850px;}
.y323{bottom:645.664350px;}
.y75{bottom:647.123400px;}
.y104{bottom:648.000210px;}
.y134{bottom:649.260720px;}
.y1b1{bottom:650.160000px;}
.y173{bottom:653.580720px;}
.y38c{bottom:654.824160px;}
.y2aa{bottom:657.903240px;}
.y224{bottom:658.123200px;}
.y1b3{bottom:658.259850px;}
.y1b0{bottom:658.278000px;}
.ya2{bottom:658.981650px;}
.y25b{bottom:659.344170px;}
.y282{bottom:659.346120px;}
.y1cc{bottom:662.041440px;}
.y2be{bottom:662.586120px;}
.y2e8{bottom:664.019850px;}
.y322{bottom:664.199850px;}
.y354{bottom:669.433350px;}
.y74{bottom:669.981600px;}
.y103{bottom:670.500210px;}
.y133{bottom:671.760360px;}
.y172{bottom:676.080360px;}
.y154{bottom:676.979850px;}
.y38b{bottom:677.328120px;}
.yf1{bottom:679.143990px;}
.y2a9{bottom:680.402880px;}
.ycb{bottom:680.782320px;}
.ya1{bottom:681.481290px;}
.y223{bottom:681.519600px;}
.y1af{bottom:681.674400px;}
.y25a{bottom:681.843810px;}
.y281{bottom:682.025040px;}
.y2e7{bottom:682.555350px;}
.y321{bottom:682.924350px;}
.y1cb{bottom:684.541080px;}
.y2bd{bottom:685.085760px;}
.y353{bottom:687.968850px;}
.y102{bottom:692.993730px;}
.y11{bottom:693.007200px;}
.y73{bottom:693.019080px;}
.y132{bottom:694.261080px;}
.y153{bottom:696.964500px;}
.y171{bottom:698.580360px;}
.yf0{bottom:698.580930px;}
.y38a{bottom:699.832080px;}
.y2a8{bottom:702.902520px;}
.yca{bottom:703.461240px;}
.ya0{bottom:703.980930px;}
.y259{bottom:704.343450px;}
.y280{bottom:704.703960px;}
.y222{bottom:704.916000px;}
.y1ae{bottom:705.070800px;}
.y352{bottom:706.693350px;}
.y2e6{bottom:706.698000px;}
.y320{bottom:706.859850px;}
.y31f{bottom:706.864350px;}
.y1ca{bottom:707.040720px;}
.y2bc{bottom:707.585400px;}
.y101{bottom:715.493370px;}
.y152{bottom:715.500000px;}
.y10{bottom:715.860000px;}
.y72{bottom:715.877280px;}
.y131{bottom:716.760720px;}
.y170{bottom:721.080000px;}
.y16f{bottom:721.080360px;}
.yef{bottom:721.080570px;}
.y389{bottom:722.336040px;}
.y351{bottom:725.228850px;}
.y2e5{bottom:725.233500px;}
.y31e{bottom:725.399850px;}
.y2a7{bottom:725.402160px;}
.y31d{bottom:725.408850px;}
.yc9{bottom:726.319440px;}
.y9f{bottom:726.480570px;}
.y258{bottom:726.843090px;}
.y27f{bottom:727.382880px;}
.y221{bottom:728.312400px;}
.y1ad{bottom:728.467200px;}
.y1c9{bottom:729.540360px;}
.y2bb{bottom:730.085040px;}
.yf{bottom:733.675500px;}
.y100{bottom:736.917330px;}
.y151{bottom:738.181440px;}
.y71{bottom:738.914760px;}
.y130{bottom:739.260360px;}
.y16e{bottom:743.580000px;}
.yee{bottom:743.580210px;}
.y16d{bottom:743.580360px;}
.y350{bottom:743.764350px;}
.y2e4{bottom:743.769000px;}
.y31c{bottom:743.944350px;}
.y388{bottom:744.841290px;}
.y2a6{bottom:747.901800px;}
.y9e{bottom:748.980210px;}
.yc8{bottom:749.177640px;}
.y257{bottom:749.342730px;}
.y37a{bottom:749.349000px;}
.y27e{bottom:750.241080px;}
.y220{bottom:751.708800px;}
.y1ac{bottom:751.863600px;}
.y1c8{bottom:752.037690px;}
.y2ba{bottom:752.584680px;}
.y12f{bottom:761.757120px;}
.y70{bottom:761.772960px;}
.y2e3{bottom:762.304500px;}
.ye{bottom:763.020000px;}
.y16c{bottom:766.080000px;}
.yed{bottom:766.081080px;}
.y1a9{bottom:767.160000px;}
.y387{bottom:767.340930px;}
.y34f{bottom:767.704500px;}
.y379{bottom:767.884500px;}
.y31b{bottom:767.889000px;}
.y2a5{bottom:770.401440px;}
.y9d{bottom:771.479850px;}
.y9c{bottom:771.480210px;}
.y256{bottom:771.842370px;}
.yc7{bottom:771.856560px;}
.y27d{bottom:772.932960px;}
.yff{bottom:773.640570px;}
.y1c7{bottom:774.178770px;}
.y2b9{bottom:775.084320px;}
.y21f{bottom:775.105200px;}
.y1ab{bottom:775.260000px;}
.y1a8{bottom:775.285200px;}
.yd{bottom:782.280000px;}
.y12e{bottom:784.256760px;}
.y6f{bottom:784.810440px;}
.y2e2{bottom:786.240000px;}
.y378{bottom:786.609000px;}
.y31a{bottom:786.613500px;}
.yec{bottom:788.580720px;}
.y386{bottom:789.840570px;}
.y2a4{bottom:792.901080px;}
.y9b{bottom:793.980570px;}
.y255{bottom:794.342010px;}
.y162{bottom:794.702910px;}
.yc6{bottom:794.714760px;}
.y27c{bottom:795.611880px;}
.yfe{bottom:796.140210px;}
.y1c6{bottom:796.318560px;}
.y2b8{bottom:797.583960px;}
.y21e{bottom:798.501600px;}
.y1a7{bottom:798.681600px;}
.yc{bottom:801.359850px;}
.y2e1{bottom:804.964500px;}
.y377{bottom:805.144500px;}
.y319{bottom:805.149000px;}
.y12d{bottom:806.756400px;}
.y6e{bottom:807.668640px;}
.yeb{bottom:811.080360px;}
.y385{bottom:812.340210px;}
.y161{bottom:814.143090px;}
.y2a3{bottom:815.400720px;}
.y9a{bottom:816.480210px;}
.y254{bottom:816.841650px;}
.yc5{bottom:817.572960px;}
.y27b{bottom:818.290800px;}
.y1c5{bottom:818.638920px;}
.yfd{bottom:818.640210px;}
.y2b7{bottom:820.083600px;}
.y21d{bottom:821.898000px;}
.y1a6{bottom:822.078000px;}
.y248{bottom:823.143060px;}
.y318{bottom:823.684500px;}
.y34e{bottom:828.904500px;}
.y2e0{bottom:828.913500px;}
.y376{bottom:829.089000px;}
.y12c{bottom:829.256040px;}
.y6d{bottom:830.706120px;}
.yb{bottom:831.780000px;}
.yea{bottom:833.568870px;}
.y16b{bottom:833.580360px;}
.y384{bottom:834.842730px;}
.y160{bottom:836.642730px;}
.y2a2{bottom:837.900360px;}
.y99{bottom:838.979850px;}
.y98{bottom:838.996200px;}
.y253{bottom:839.341290px;}
.yc4{bottom:840.251880px;}
.y1c4{bottom:840.780000px;}
.yfc{bottom:841.139850px;}
.y27a{bottom:841.149000px;}
.y247{bottom:842.580360px;}
.y2b6{bottom:842.583240px;}
.y21c{bottom:845.294400px;}
.y1a5{bottom:845.474400px;}
.y34d{bottom:847.440000px;}
.y2df{bottom:847.449000px;}
.y317{bottom:847.624350px;}
.y375{bottom:847.624500px;}
.y12b{bottom:851.755680px;}
.y6c{bottom:853.564320px;}
.ye9{bottom:856.068510px;}
.y16a{bottom:856.080360px;}
.y383{bottom:857.342370px;}
.y15f{bottom:859.142370px;}
.y2a1{bottom:860.400000px;}
.y97{bottom:861.495840px;}
.y252{bottom:861.840930px;}
.yc3{bottom:863.110080px;}
.y279{bottom:863.827920px;}
.y246{bottom:865.081440px;}
.y2b5{bottom:865.082880px;}
.y2de{bottom:865.984500px;}
.y316{bottom:866.159850px;}
.y21b{bottom:868.690800px;}
.y1a4{bottom:868.870800px;}
.y1c3{bottom:871.380000px;}
.y374{bottom:871.559850px;}
.yfb{bottom:871.740000px;}
.y12a{bottom:873.179640px;}
.y6b{bottom:876.601800px;}
.ye8{bottom:877.313190px;}
.y169{bottom:878.580720px;}
.y382{bottom:879.842010px;}
.y15e{bottom:881.642010px;}
.y96{bottom:884.174760px;}
.y251{bottom:884.340570px;}
.y315{bottom:884.884350px;}
.yc2{bottom:885.968280px;}
.y278{bottom:886.506840px;}
.y245{bottom:887.581080px;}
.y2b4{bottom:887.582520px;}
.y34c{bottom:889.915350px;}
.y2dd{bottom:889.920000px;}
.y373{bottom:890.284350px;}
.y2a0{bottom:891.540000px;}
.y21a{bottom:892.087200px;}
.y1a3{bottom:892.267200px;}
.ye7{bottom:894.957330px;}
.y6a{bottom:899.460000px;}
.ya{bottom:901.068330px;}
.y168{bottom:901.080360px;}
.y381{bottom:902.341650px;}
.y15d{bottom:904.141650px;}
.y250{bottom:906.840210px;}
.y95{bottom:907.032960px;}
.y34b{bottom:908.639850px;}
.y2dc{bottom:908.644500px;}
.yc1{bottom:908.647200px;}
.y34a{bottom:908.653350px;}
.y372{bottom:908.819850px;}
.y314{bottom:908.824350px;}
.y371{bottom:908.829000px;}
.y277{bottom:909.185760px;}
.y1c2{bottom:909.359850px;}
.yfa{bottom:909.902160px;}
.y244{bottom:910.080720px;}
.y2b3{bottom:910.082160px;}
.y219{bottom:915.483600px;}
.y1a2{bottom:915.663600px;}
.y167{bottom:923.580000px;}
.y380{bottom:924.841290px;}
.y15c{bottom:926.641290px;}
.y349{bottom:927.188850px;}
.y313{bottom:927.359850px;}
.y370{bottom:927.364500px;}
.y312{bottom:927.368850px;}
.y24f{bottom:929.339850px;}
.y94{bottom:930.070440px;}
.y69{bottom:930.960000px;}
.y29f{bottom:931.143810px;}
.y1c1{bottom:931.499490px;}
.yc0{bottom:931.505400px;}
.ye6{bottom:931.684680px;}
.y276{bottom:932.043960px;}
.yf9{bottom:932.401800px;}
.y243{bottom:932.580360px;}
.y2b2{bottom:932.581800px;}
.y2db{bottom:932.588850px;}
.y218{bottom:938.880000px;}
.y1a1{bottom:939.060000px;}
.y9{bottom:940.859850px;}
.y348{bottom:945.724350px;}
.y311{bottom:945.904350px;}
.y37f{bottom:947.340930px;}
.y15b{bottom:949.140930px;}
.y2da{bottom:951.124350px;}
.y36f{bottom:951.300000px;}
.y93{bottom:952.928640px;}
.y1c0{bottom:953.819850px;}
.y29e{bottom:953.822730px;}
.ye5{bottom:954.184320px;}
.y166{bottom:954.359850px;}
.ybf{bottom:954.363600px;}
.y275{bottom:954.722880px;}
.yf8{bottom:954.901440px;}
.y242{bottom:955.080720px;}
.y2b1{bottom:955.081440px;}
.y150{bottom:958.143060px;}
.y24e{bottom:960.300000px;}
.y217{bottom:962.280000px;}
.y1a0{bottom:962.460000px;}
.y68{bottom:969.659850px;}
.y347{bottom:969.664350px;}
.y30f{bottom:969.835500px;}
.y310{bottom:969.839850px;}
.y37e{bottom:969.840570px;}
.y15a{bottom:971.640570px;}
.y92{bottom:975.966120px;}
.y8{bottom:976.326330px;}
.y29d{bottom:976.501650px;}
.ye4{bottom:976.683960px;}
.ybe{bottom:977.042520px;}
.yf7{bottom:977.401080px;}
.y274{bottom:977.401800px;}
.y241{bottom:977.580360px;}
.y14f{bottom:977.581080px;}
.y20d{bottom:977.940000px;}
.y194{bottom:978.120000px;}
.y165{bottom:982.979850px;}
.y1bf{bottom:984.240000px;}
.y212{bottom:986.220000px;}
.y19b{bottom:986.400000px;}
.y2d9{bottom:988.195350px;}
.y346{bottom:988.199850px;}
.y30e{bottom:988.560000px;}
.y30d{bottom:988.573500px;}
.y37d{bottom:992.340210px;}
.y159{bottom:994.140210px;}
.y20e{bottom:994.319850px;}
.y196{bottom:994.679850px;}
.y7{bottom:996.844170px;}
.y65{bottom:997.200000px;}
.y91{bottom:998.824320px;}
.y29c{bottom:999.362160px;}
.ye3{bottom:999.362880px;}
.ybd{bottom:999.542160px;}
.yf6{bottom:999.900720px;}
.y240{bottom:1000.080360px;}
.y14e{bottom:1000.080720px;}
.y214{bottom:1002.597480px;}
.y20c{bottom:1002.600000px;}
.y211{bottom:1002.601470px;}
.y19d{bottom:1002.777480px;}
.y193{bottom:1002.780000px;}
.y19a{bottom:1002.781470px;}
.y345{bottom:1006.924350px;}
.y30c{bottom:1007.109000px;}
.y216{bottom:1010.878230px;}
.y215{bottom:1010.882700px;}
.y19f{bottom:1011.057330px;}
.y19e{bottom:1011.062700px;}
.y2d8{bottom:1012.319850px;}
.y37c{bottom:1014.839850px;}
.y158{bottom:1016.639850px;}
.y6{bottom:1017.179850px;}
.y213{bottom:1019.155860px;}
.y210{bottom:1019.159850px;}
.y19c{bottom:1019.335860px;}
.y199{bottom:1019.339850px;}
.y90{bottom:1021.861800px;}
.y29b{bottom:1022.041080px;}
.ybc{bottom:1022.221080px;}
.yf5{bottom:1022.400360px;}
.y14d{bottom:1022.580360px;}
.y30b{bottom:1025.644500px;}
.y2d7{bottom:1030.864500px;}
.y4{bottom:1037.168850px;}
.y8f{bottom:1044.720000px;}
.ybb{bottom:1044.900000px;}
.y14c{bottom:1045.080000px;}
.y37b{bottom:1045.800000px;}
.y157{bottom:1047.240000px;}
.y20b{bottom:1049.400000px;}
.y192{bottom:1049.580000px;}
.y3{bottom:1055.164350px;}
.y2{bottom:1073.164350px;}
.y63{bottom:1075.679850px;}
.y8d{bottom:1076.944500px;}
.y1{bottom:1091.159850px;}
.y62{bottom:1092.780000px;}
.h3b{height:21.240000px;}
.h12{height:22.444500px;}
.h14{height:22.500000px;}
.h35{height:23.400000px;}
.h36{height:23.401500px;}
.h7{height:28.615680px;}
.h17{height:32.152148px;}
.h2{height:36.914062px;}
.h3{height:38.759766px;}
.h15{height:41.646701px;}
.hf{height:41.679360px;}
.h23{height:41.902031px;}
.h10{height:43.933903px;}
.h2e{height:44.127360px;}
.h9{height:44.149219px;}
.h6{height:46.445625px;}
.h8{height:46.656000px;}
.h44{height:46.656600px;}
.h42{height:46.674000px;}
.h43{height:46.674600px;}
.h46{height:47.344922px;}
.h41{height:49.179742px;}
.h3c{height:49.477680px;}
.h33{height:49.495680px;}
.h3a{height:49.498500px;}
.h3d{height:49.680000px;}
.hb{height:50.484375px;}
.h16{height:50.760000px;}
.hc{height:51.632640px;}
.h37{height:51.634080px;}
.h38{height:51.637800px;}
.h39{height:51.641880px;}
.h2d{height:51.644160px;}
.h29{height:51.677160px;}
.h1d{height:52.998047px;}
.h1e{height:54.425581px;}
.h18{height:54.717960px;}
.h22{height:54.774720px;}
.h3e{height:54.811560px;}
.h19{height:54.812160px;}
.h26{height:54.833760px;}
.h31{height:54.836640px;}
.h32{height:54.839520px;}
.h28{height:54.845280px;}
.h1b{height:54.846720px;}
.h24{height:54.849000px;}
.h25{height:54.849600px;}
.h45{height:54.853080px;}
.h1a{height:54.853920px;}
.h3f{height:54.855360px;}
.h1c{height:54.856800px;}
.h30{height:54.858240px;}
.h27{height:54.859680px;}
.h1f{height:54.861720px;}
.h2f{height:54.861960px;}
.h2b{height:54.862560px;}
.h20{height:54.863160px;}
.hd{height:54.864000px;}
.h21{height:54.864600px;}
.h2c{height:54.875520px;}
.h2a{height:54.888480px;}
.h40{height:56.320312px;}
.h34{height:56.700000px;}
.h47{height:58.650572px;}
.h11{height:58.651172px;}
.h13{height:61.054928px;}
.h4{height:70.678080px;}
.h5{height:92.386406px;}
.he{height:498.060000px;}
.ha{height:539.820000px;}
.h1{height:1169.250000px;}
.h0{height:1169.460000px;}
.w12{width:50.940000px;}
.w7{width:53.100000px;}
.we{width:53.101500px;}
.w15{width:53.280000px;}
.w1a{width:53.460000px;}
.wd{width:55.080000px;}
.w10{width:56.880000px;}
.wb{width:59.580000px;}
.w18{width:59.760000px;}
.w1c{width:59.940000px;}
.w19{width:61.020000px;}
.wc{width:61.560000px;}
.w6{width:63.360000px;}
.w14{width:63.720000px;}
.wf{width:64.260000px;}
.w4{width:66.225000px;}
.w1b{width:67.500000px;}
.w17{width:67.680000px;}
.wa{width:68.040000px;}
.w11{width:70.200000px;}
.w9{width:74.340000px;}
.w5{width:78.600000px;}
.w8{width:104.220000px;}
.w16{width:114.838500px;}
.w13{width:125.460000px;}
.w3{width:218.880000px;}
.w2{width:540.181500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:1.080000px;}
.x2b{left:6.322200px;}
.x48{left:7.380000px;}
.x70{left:10.440000px;}
.x6d{left:12.780000px;}
.x8{left:14.940000px;}
.x7c{left:16.200000px;}
.x92{left:17.460000px;}
.x67{left:19.260000px;}
.x6b{left:21.600000px;}
.x8a{left:22.680000px;}
.x69{left:24.840000px;}
.x66{left:38.160000px;}
.x7d{left:40.860000px;}
.x91{left:43.560000px;}
.x7e{left:45.000000px;}
.x96{left:46.080000px;}
.x80{left:48.780000px;}
.x97{left:50.220000px;}
.x81{left:52.920000px;}
.x4a{left:57.060000px;}
.x5{left:63.904500px;}
.x1a{left:65.340000px;}
.x2a{left:66.595500px;}
.x28{left:90.000000px;}
.x60{left:101.700000px;}
.x1b{left:103.140000px;}
.x27{left:110.520000px;}
.x23{left:115.020000px;}
.x24{left:120.240000px;}
.x25{left:123.480000px;}
.xa{left:132.660000px;}
.x14{left:141.660000px;}
.x20{left:144.180000px;}
.x26{left:147.420000px;}
.x1c{left:194.220000px;}
.x1d{left:202.500000px;}
.x1f{left:203.760000px;}
.x1e{left:208.440000px;}
.x19{left:212.220000px;}
.x21{left:215.640000px;}
.xc{left:221.760000px;}
.x29{left:244.260000px;}
.x22{left:268.200000px;}
.x7{left:289.080000px;}
.x63{left:291.084840px;}
.x12{left:292.320000px;}
.x5d{left:294.847560px;}
.x5e{left:296.644500px;}
.x8f{left:300.066660px;}
.x62{left:302.409180px;}
.x9{left:304.020000px;}
.x5f{left:305.472420px;}
.x5c{left:307.440000px;}
.x90{left:310.269420px;}
.x74{left:311.400000px;}
.x8e{left:312.660000px;}
.xe{left:313.920000px;}
.x88{left:316.140660px;}
.x86{left:317.177820px;}
.x16{left:318.960000px;}
.x65{left:321.285420px;}
.x46{left:324.000000px;}
.x87{left:325.137420px;}
.x3c{left:326.340000px;}
.x33{left:328.676580px;}
.x89{left:332.096040px;}
.x76{left:334.620000px;}
.x37{left:340.920000px;}
.xae{left:354.780000px;}
.x36{left:362.340000px;}
.x39{left:363.960000px;}
.xb5{left:388.980000px;}
.x47{left:393.480000px;}
.x49{left:399.780000px;}
.x8b{left:404.100000px;}
.x9e{left:407.160000px;}
.x44{left:408.960000px;}
.x8c{left:410.580000px;}
.x64{left:413.460000px;}
.x77{left:414.720000px;}
.x61{left:416.340000px;}
.xa4{left:417.600000px;}
.xa2{left:419.580000px;}
.x78{left:421.020000px;}
.x31{left:422.640000px;}
.xaf{left:425.520000px;}
.xf{left:445.320000px;}
.x18{left:453.060000px;}
.x68{left:456.840000px;}
.xac{left:461.700000px;}
.x9f{left:463.140000px;}
.x4b{left:468.180000px;}
.x93{left:473.760000px;}
.xb2{left:475.920000px;}
.x79{left:478.080000px;}
.xb{left:479.700000px;}
.x32{left:489.960000px;}
.x1{left:493.560000px;}
.xab{left:496.980000px;}
.x3e{left:498.060000px;}
.xb4{left:499.500000px;}
.xad{left:500.940000px;}
.x13{left:509.220000px;}
.x15{left:522.000000px;}
.x11{left:526.320000px;}
.x8d{left:527.400000px;}
.xd{left:528.840000px;}
.x17{left:530.460000px;}
.x94{left:531.540000px;}
.x10{left:534.600000px;}
.x7a{left:537.840000px;}
.xa3{left:548.100000px;}
.x2f{left:553.680000px;}
.xa9{left:560.880000px;}
.x99{left:562.860000px;}
.xa0{left:568.620000px;}
.xa5{left:570.420000px;}
.x9a{left:571.860000px;}
.x30{left:580.140000px;}
.x6a{left:584.280000px;}
.xa7{left:585.900000px;}
.xb7{left:590.040000px;}
.x7b{left:595.440000px;}
.x3f{left:597.600000px;}
.x95{left:598.680000px;}
.x4d{left:601.740000px;}
.xb6{left:604.980000px;}
.x4e{left:606.060000px;}
.x9c{left:607.680000px;}
.x40{left:620.640000px;}
.xb1{left:625.860000px;}
.x4f{left:630.720000px;}
.x50{left:634.860000px;}
.xb3{left:636.840000px;}
.x2{left:644.935500px;}
.x6c{left:652.320000px;}
.x51{left:662.035200px;}
.x52{left:664.200000px;}
.x7f{left:667.260000px;}
.x53{left:668.520000px;}
.xb0{left:673.380000px;}
.xa6{left:675.900000px;}
.xa8{left:691.200000px;}
.x3d{left:695.520000px;}
.x3{left:700.024500px;}
.x4{left:709.744500px;}
.x6e{left:711.900000px;}
.x9d{left:713.160000px;}
.x9b{left:719.460000px;}
.x82{left:722.520000px;}
.x54{left:724.135980px;}
.x55{left:726.120000px;}
.x56{left:730.440000px;}
.xa1{left:732.060000px;}
.x41{left:733.680000px;}
.x83{left:735.660000px;}
.xb8{left:738.000000px;}
.x42{left:739.080000px;}
.x43{left:744.660000px;}
.x2d{left:746.820000px;}
.x38{left:751.490280px;}
.x35{left:755.820000px;}
.x98{left:757.620000px;}
.x57{left:759.240000px;}
.x84{left:760.320000px;}
.x85{left:764.460000px;}
.x6f{left:773.460000px;}
.xaa{left:774.540000px;}
.x58{left:782.463540px;}
.x59{left:787.320000px;}
.x3b{left:790.735860px;}
.xb9{left:793.800000px;}
.x75{left:799.922700px;}
.x6{left:804.069000px;}
.x73{left:805.500000px;}
.x2e{left:808.744500px;}
.x72{left:810.365760px;}
.x5a{left:814.680000px;}
.x5b{left:818.820000px;}
.x34{left:822.959100px;}
.x45{left:824.399280px;}
.x3a{left:826.560720px;}
.x2c{left:829.260000px;}
.x71{left:831.048120px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v5{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.ls71{letter-spacing:-0.912000pt;}
.ls53{letter-spacing:-0.903040pt;}
.lsf0{letter-spacing:-0.864000pt;}
.lsef{letter-spacing:-0.809543pt;}
.ls26{letter-spacing:-0.796800pt;}
.lse6{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.743680pt;}
.lsf1{letter-spacing:-0.708350pt;}
.ls35{letter-spacing:-0.686080pt;}
.lsdf{letter-spacing:-0.672000pt;}
.lsec{letter-spacing:-0.607157pt;}
.ls78{letter-spacing:-0.588800pt;}
.lse0{letter-spacing:-0.576000pt;}
.ls2c{letter-spacing:-0.557440pt;}
.lsde{letter-spacing:-0.528000pt;}
.lse2{letter-spacing:-0.505964pt;}
.ls9f{letter-spacing:-0.497194pt;}
.lse1{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.471680pt;}
.lsa2{letter-spacing:-0.432000pt;}
.ls33{letter-spacing:-0.385920pt;}
.lsed{letter-spacing:-0.384000pt;}
.ls7d{letter-spacing:-0.371840pt;}
.lseb{letter-spacing:-0.354175pt;}
.lsa8{letter-spacing:-0.336000pt;}
.ls23{letter-spacing:-0.318720pt;}
.ls31{letter-spacing:-0.316396pt;}
.lsee{letter-spacing:-0.303579pt;}
.ls36{letter-spacing:-0.300160pt;}
.ls15{letter-spacing:-0.294400pt;}
.ls10{letter-spacing:-0.288000pt;}
.lsa0{letter-spacing:-0.271197pt;}
.ls47{letter-spacing:-0.265600pt;}
.ls2b{letter-spacing:-0.257280pt;}
.lsea{letter-spacing:-0.252982pt;}
.lse{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.235520pt;}
.ls12{letter-spacing:-0.234240pt;}
.ls2f{letter-spacing:-0.225997pt;}
.ls2d{letter-spacing:-0.214400pt;}
.ls25{letter-spacing:-0.212480pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.176640pt;}
.ls4d{letter-spacing:-0.167980pt;}
.ls1d{letter-spacing:-0.159360pt;}
.lse7{letter-spacing:-0.151789pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls6e{letter-spacing:-0.128640pt;}
.ls45{letter-spacing:-0.128000pt;}
.ls61{letter-spacing:-0.117760pt;}
.ls13{letter-spacing:-0.117120pt;}
.ls79{letter-spacing:-0.111987pt;}
.ls1e{letter-spacing:-0.106240pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls44{letter-spacing:-0.053120pt;}
.lsdb{letter-spacing:-0.048000pt;}
.ls9e{letter-spacing:-0.045199pt;}
.ls2e{letter-spacing:-0.042880pt;}
.lsc{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.037184pt;}
.lsf{letter-spacing:0.048000pt;}
.lse4{letter-spacing:0.050596pt;}
.ls20{letter-spacing:0.053120pt;}
.ls7a{letter-spacing:0.055993pt;}
.ls17{letter-spacing:0.058880pt;}
.ls46{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.067200pt;}
.ls32{letter-spacing:0.085760pt;}
.lsd0{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.106240pt;}
.ls4e{letter-spacing:0.111987pt;}
.ls14{letter-spacing:0.117120pt;}
.ls30{letter-spacing:0.135598pt;}
.ls1a{letter-spacing:0.144000pt;}
.lse5{letter-spacing:0.151789pt;}
.lsd9{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.160000pt;}
.ls75{letter-spacing:0.175360pt;}
.ls6f{letter-spacing:0.183040pt;}
.ls3d{letter-spacing:0.185920pt;}
.ls59{letter-spacing:0.192000pt;}
.ls60{letter-spacing:0.196544pt;}
.ls5c{letter-spacing:0.199680pt;}
.ls1f{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.234240pt;}
.ls16{letter-spacing:0.235520pt;}
.ls6{letter-spacing:0.235840pt;}
.ls7b{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.257280pt;}
.ls28{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls62{letter-spacing:0.294400pt;}
.lse3{letter-spacing:0.303579pt;}
.ls29{letter-spacing:0.318720pt;}
.ls52{letter-spacing:0.320000pt;}
.ls5a{letter-spacing:0.336000pt;}
.lse8{letter-spacing:0.354175pt;}
.ls5f{letter-spacing:0.371840pt;}
.ls5d{letter-spacing:0.416000pt;}
.ls21{letter-spacing:0.424960pt;}
.ls3c{letter-spacing:0.478080pt;}
.ls4{letter-spacing:0.509952pt;}
.ls7e{letter-spacing:0.531200pt;}
.lsa5{letter-spacing:0.576000pt;}
.ls49{letter-spacing:0.584320pt;}
.ls2{letter-spacing:0.637440pt;}
.ls48{letter-spacing:0.690560pt;}
.lsd6{letter-spacing:0.706496pt;}
.ls22{letter-spacing:0.743680pt;}
.ls7c{letter-spacing:0.796800pt;}
.ls51{letter-spacing:0.849920pt;}
.lsd8{letter-spacing:0.897728pt;}
.lsa1{letter-spacing:0.900480pt;}
.lsad{letter-spacing:0.960000pt;}
.ls37{letter-spacing:1.029120pt;}
.lsf3{letter-spacing:1.115520pt;}
.ls6d{letter-spacing:1.221760pt;}
.ls72{letter-spacing:1.232000pt;}
.ls39{letter-spacing:1.242546pt;}
.ls34{letter-spacing:1.243520pt;}
.lsa7{letter-spacing:1.248000pt;}
.ls43{letter-spacing:1.274880pt;}
.ls5b{letter-spacing:1.278080pt;}
.ls70{letter-spacing:1.328000pt;}
.ls9d{letter-spacing:1.357440pt;}
.ls57{letter-spacing:1.381120pt;}
.ls2a{letter-spacing:1.415040pt;}
.ls58{letter-spacing:1.584000pt;}
.lsa6{letter-spacing:1.646720pt;}
.lsd2{letter-spacing:1.784320pt;}
.lsd4{letter-spacing:1.852800pt;}
.lsd3{letter-spacing:1.872000pt;}
.ls3{letter-spacing:1.912320pt;}
.lsa3{letter-spacing:1.935360pt;}
.ls4f{letter-spacing:2.018560pt;}
.ls64{letter-spacing:2.071680pt;}
.ls63{letter-spacing:2.496000pt;}
.ls41{letter-spacing:2.549760pt;}
.lsd1{letter-spacing:2.558080pt;}
.ls73{letter-spacing:2.714432pt;}
.ls56{letter-spacing:3.168000pt;}
.ls42{letter-spacing:3.187200pt;}
.lsd5{letter-spacing:3.198080pt;}
.lsf2{letter-spacing:3.792000pt;}
.ls4b{letter-spacing:3.824640pt;}
.ls76{letter-spacing:4.416000pt;}
.ls3f{letter-spacing:4.462080pt;}
.ls40{letter-spacing:4.515200pt;}
.ls5e{letter-spacing:4.589568pt;}
.lsa4{letter-spacing:4.663936pt;}
.ls77{letter-spacing:4.804800pt;}
.ls4a{letter-spacing:5.099520pt;}
.lsce{letter-spacing:5.712000pt;}
.ls65{letter-spacing:5.736960pt;}
.lsaa{letter-spacing:6.336000pt;}
.ls5{letter-spacing:6.374400pt;}
.lsd7{letter-spacing:6.724992pt;}
.lsac{letter-spacing:7.008000pt;}
.ls4c{letter-spacing:7.011840pt;}
.ls74{letter-spacing:7.391128pt;}
.ls3b{letter-spacing:7.702400pt;}
.lse9{letter-spacing:8.256000pt;}
.ls50{letter-spacing:8.339840pt;}
.ls66{letter-spacing:8.945408pt;}
.ls1{letter-spacing:8.977280pt;}
.lsdc{letter-spacing:10.176000pt;}
.ls67{letter-spacing:10.252160pt;}
.ls9{letter-spacing:10.785920pt;}
.lsab{letter-spacing:10.848000pt;}
.ls3e{letter-spacing:10.889600pt;}
.ls55{letter-spacing:11.505792pt;}
.lsa{letter-spacing:12.960000pt;}
.lsa9{letter-spacing:13.392000pt;}
.lsdd{letter-spacing:17.376000pt;}
.lsda{letter-spacing:41.040000pt;}
.ls8c{letter-spacing:90.776960pt;}
.ls8f{letter-spacing:95.922560pt;}
.ls8d{letter-spacing:97.809280pt;}
.lsbb{letter-spacing:106.106560pt;}
.lsbe{letter-spacing:115.089920pt;}
.lsb1{letter-spacing:116.354880pt;}
.ls95{letter-spacing:118.305920pt;}
.lsc8{letter-spacing:122.744000pt;}
.ls8e{letter-spacing:124.673600pt;}
.lsc0{letter-spacing:125.316800pt;}
.ls96{letter-spacing:126.624640pt;}
.ls92{letter-spacing:129.197440pt;}
.ls94{letter-spacing:132.370560pt;}
.ls8b{letter-spacing:133.013760pt;}
.lsc4{letter-spacing:133.635520pt;}
.ls8a{letter-spacing:134.921920pt;}
.ls97{letter-spacing:134.943360pt;}
.lsc9{letter-spacing:135.565120pt;}
.lsb5{letter-spacing:136.208320pt;}
.lsb0{letter-spacing:136.872960pt;}
.ls85{letter-spacing:137.516160pt;}
.ls88{letter-spacing:142.597440pt;}
.lsc3{letter-spacing:143.240640pt;}
.ls93{letter-spacing:143.883840pt;}
.ls9a{letter-spacing:143.905280pt;}
.lsb4{letter-spacing:145.191680pt;}
.lsc6{letter-spacing:145.813440pt;}
.ls7f{letter-spacing:145.834880pt;}
.lsb6{letter-spacing:146.413760pt;}
.lscd{letter-spacing:150.294400pt;}
.ls99{letter-spacing:150.937600pt;}
.lsb7{letter-spacing:152.867200pt;}
.lsb2{letter-spacing:153.488960pt;}
.ls87{letter-spacing:154.132160pt;}
.lsc2{letter-spacing:154.153600pt;}
.ls91{letter-spacing:154.732480pt;}
.ls89{letter-spacing:154.775360pt;}
.ls84{letter-spacing:155.440000pt;}
.lsb9{letter-spacing:156.083200pt;}
.lsaf{letter-spacing:156.726400pt;}
.lsc5{letter-spacing:157.326720pt;}
.lsca{letter-spacing:161.164480pt;}
.ls90{letter-spacing:161.185920pt;}
.ls9c{letter-spacing:161.807680pt;}
.ls82{letter-spacing:163.115520pt;}
.lsb3{letter-spacing:163.758720pt;}
.lsba{letter-spacing:164.401920pt;}
.lsc1{letter-spacing:166.288640pt;}
.lsb8{letter-spacing:166.931840pt;}
.lsc7{letter-spacing:171.434240pt;}
.ls86{letter-spacing:172.656320pt;}
.lsbc{letter-spacing:172.720640pt;}
.ls81{letter-spacing:174.607360pt;}
.ls83{letter-spacing:175.250560pt;}
.ls68{letter-spacing:182.325760pt;}
.lsae{letter-spacing:183.569280pt;}
.ls9b{letter-spacing:185.498880pt;}
.ls98{letter-spacing:191.244800pt;}
.ls80{letter-spacing:193.174400pt;}
.lscc{letter-spacing:205.352320pt;}
.lscb{letter-spacing:211.741440pt;}
.lscf{letter-spacing:215.600640pt;}
.lsbf{letter-spacing:223.276160pt;}
.lsbd{letter-spacing:229.022080pt;}
.ls69{letter-spacing:325.673600pt;}
.ls6b{letter-spacing:644.979520pt;}
.ls6c{letter-spacing:645.622720pt;}
.ls6a{letter-spacing:680.848640pt;}
.wse7{word-spacing:-14.448640pt;}
.wse8{word-spacing:-14.183040pt;}
.ws5e{word-spacing:-14.144000pt;}
.wse9{word-spacing:-14.129920pt;}
.wsba{word-spacing:-14.023680pt;}
.ws5{word-spacing:-14.016000pt;}
.ws95{word-spacing:-13.651840pt;}
.wsd7{word-spacing:-13.333120pt;}
.wsb2{word-spacing:-13.173760pt;}
.ws11e{word-spacing:-13.152000pt;}
.wsb{word-spacing:-13.120640pt;}
.ws82{word-spacing:-13.014400pt;}
.ws60{word-spacing:-12.987840pt;}
.ws5d{word-spacing:-12.908160pt;}
.wsa0{word-spacing:-12.855040pt;}
.ws7{word-spacing:-12.801920pt;}
.ws96{word-spacing:-12.748800pt;}
.ws6{word-spacing:-12.695680pt;}
.ws9{word-spacing:-12.642560pt;}
.ws83{word-spacing:-12.589440pt;}
.ws15b{word-spacing:-12.547918pt;}
.ws5f{word-spacing:-12.536320pt;}
.wsf9{word-spacing:-12.528000pt;}
.ws8{word-spacing:-12.483200pt;}
.ws157{word-spacing:-12.193743pt;}
.wsa{word-spacing:-12.058240pt;}
.ws11c{word-spacing:-11.904000pt;}
.ws15c{word-spacing:-11.890164pt;}
.wsf4{word-spacing:-11.856000pt;}
.ws184{word-spacing:-11.839568pt;}
.ws11b{word-spacing:-11.808000pt;}
.ws158{word-spacing:-11.760000pt;}
.ws10d{word-spacing:-11.712000pt;}
.wsff{word-spacing:-11.664000pt;}
.wsb9{word-spacing:-11.633280pt;}
.wsc8{word-spacing:-11.616000pt;}
.ws10{word-spacing:-11.577600pt;}
.wsc7{word-spacing:-11.568000pt;}
.ws11d{word-spacing:-11.520000pt;}
.ws185{word-spacing:-11.485392pt;}
.ws9f{word-spacing:-11.473920pt;}
.ws10f{word-spacing:-11.424000pt;}
.ws15d{word-spacing:-11.384200pt;}
.ws159{word-spacing:-11.376000pt;}
.ws10e{word-spacing:-11.328000pt;}
.ws156{word-spacing:-11.280000pt;}
.wse1{word-spacing:-11.234560pt;}
.wsf3{word-spacing:-11.232000pt;}
.wse2{word-spacing:-11.136000pt;}
.ws15a{word-spacing:-11.088000pt;}
.ws11a{word-spacing:-10.992000pt;}
.ws1{word-spacing:-10.896000pt;}
.ws2{word-spacing:-10.848000pt;}
.wsde{word-spacing:-10.847877pt;}
.wsdf{word-spacing:-10.621880pt;}
.ws0{word-spacing:-10.608000pt;}
.wsf{word-spacing:-10.591360pt;}
.wsdd{word-spacing:-10.576680pt;}
.wsd{word-spacing:-10.569920pt;}
.wsdc{word-spacing:-10.395882pt;}
.wsc{word-spacing:-10.334080pt;}
.ws14{word-spacing:-10.291200pt;}
.ws12{word-spacing:-10.119680pt;}
.ws13{word-spacing:-10.076800pt;}
.wse0{word-spacing:-10.033920pt;}
.wse{word-spacing:-9.948160pt;}
.ws11{word-spacing:-9.648000pt;}
.ws3{word-spacing:-8.166400pt;}
.ws61{word-spacing:-7.712000pt;}
.ws4{word-spacing:-7.095040pt;}
.wsbb{word-spacing:-6.478080pt;}
.wsf0{word-spacing:-2.071680pt;}
.ws5c{word-spacing:-1.970934pt;}
.wsfc{word-spacing:-1.584000pt;}
.wseb{word-spacing:-1.328000pt;}
.ws54{word-spacing:-1.243520pt;}
.wsa8{word-spacing:-1.118720pt;}
.ws14d{word-spacing:-1.062525pt;}
.ws57{word-spacing:-1.029120pt;}
.wsc5{word-spacing:-1.008000pt;}
.ws56{word-spacing:-0.986240pt;}
.ws11f{word-spacing:-0.960000pt;}
.ws166{word-spacing:-0.816000pt;}
.wsda{word-spacing:-0.796800pt;}
.ws3c{word-spacing:-0.743680pt;}
.ws76{word-spacing:-0.690560pt;}
.ws6e{word-spacing:-0.637440pt;}
.ws7f{word-spacing:-0.584320pt;}
.wse6{word-spacing:-0.531200pt;}
.ws86{word-spacing:-0.478080pt;}
.ws33{word-spacing:-0.424960pt;}
.ws21{word-spacing:-0.412160pt;}
.ws165{word-spacing:-0.404772pt;}
.wsa6{word-spacing:-0.384000pt;}
.ws173{word-spacing:-0.354175pt;}
.ws25{word-spacing:-0.336000pt;}
.ws99{word-spacing:-0.320000pt;}
.wsd6{word-spacing:-0.288000pt;}
.ws44{word-spacing:-0.265600pt;}
.ws48{word-spacing:-0.257280pt;}
.ws113{word-spacing:-0.240000pt;}
.ws22{word-spacing:-0.235520pt;}
.ws1f{word-spacing:-0.234240pt;}
.ws37{word-spacing:-0.212480pt;}
.ws13a{word-spacing:-0.202386pt;}
.ws24{word-spacing:-0.192000pt;}
.ws55{word-spacing:-0.171520pt;}
.ws10a{word-spacing:-0.159360pt;}
.ws124{word-spacing:-0.144000pt;}
.ws4f{word-spacing:-0.135598pt;}
.ws1c{word-spacing:-0.117120pt;}
.ws3f{word-spacing:-0.106240pt;}
.ws137{word-spacing:-0.101193pt;}
.ws174{word-spacing:-0.096000pt;}
.ws51{word-spacing:-0.085760pt;}
.ws105{word-spacing:-0.064000pt;}
.wsa7{word-spacing:-0.058880pt;}
.ws72{word-spacing:-0.053120pt;}
.ws136{word-spacing:-0.048000pt;}
.ws5a{word-spacing:-0.042880pt;}
.ws17{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.042880pt;}
.wse3{word-spacing:0.045199pt;}
.ws16{word-spacing:0.048000pt;}
.ws63{word-spacing:0.053120pt;}
.ws23{word-spacing:0.058880pt;}
.ws1a{word-spacing:0.096000pt;}
.ws146{word-spacing:0.101193pt;}
.ws3d{word-spacing:0.106240pt;}
.ws1d{word-spacing:0.117120pt;}
.ws20{word-spacing:0.117760pt;}
.ws64{word-spacing:0.128000pt;}
.ws5b{word-spacing:0.128640pt;}
.ws62{word-spacing:0.144000pt;}
.ws17e{word-spacing:0.151789pt;}
.ws2a{word-spacing:0.159360pt;}
.ws59{word-spacing:0.171520pt;}
.ws15{word-spacing:0.192000pt;}
.ws162{word-spacing:0.202386pt;}
.ws52{word-spacing:0.214400pt;}
.ws50{word-spacing:0.225997pt;}
.ws1e{word-spacing:0.234240pt;}
.wsc9{word-spacing:0.235520pt;}
.ws139{word-spacing:0.240000pt;}
.ws4b{word-spacing:0.257280pt;}
.ws7e{word-spacing:0.265600pt;}
.wse4{word-spacing:0.271197pt;}
.ws18{word-spacing:0.288000pt;}
.ws53{word-spacing:0.300160pt;}
.ws175{word-spacing:0.303579pt;}
.ws19{word-spacing:0.336000pt;}
.ws180{word-spacing:0.354175pt;}
.wsdb{word-spacing:0.371840pt;}
.ws164{word-spacing:0.384000pt;}
.wsca{word-spacing:0.412160pt;}
.wsd9{word-spacing:0.424960pt;}
.ws45{word-spacing:0.428800pt;}
.ws153{word-spacing:0.432000pt;}
.ws155{word-spacing:0.455368pt;}
.ws58{word-spacing:0.471680pt;}
.ws131{word-spacing:0.480000pt;}
.ws132{word-spacing:0.505964pt;}
.wsf1{word-spacing:0.528000pt;}
.wsab{word-spacing:0.531200pt;}
.ws177{word-spacing:0.556561pt;}
.ws4d{word-spacing:0.557440pt;}
.ws135{word-spacing:0.576000pt;}
.ws39{word-spacing:0.584320pt;}
.wsc1{word-spacing:0.637440pt;}
.wsbc{word-spacing:0.690560pt;}
.ws98{word-spacing:0.743680pt;}
.ws145{word-spacing:0.768000pt;}
.ws38{word-spacing:0.796800pt;}
.ws154{word-spacing:0.816000pt;}
.ws183{word-spacing:0.864000pt;}
.ws9d{word-spacing:0.903040pt;}
.wsb3{word-spacing:0.912000pt;}
.ws12e{word-spacing:0.960000pt;}
.ws12d{word-spacing:1.008000pt;}
.ws138{word-spacing:1.056000pt;}
.ws12c{word-spacing:1.104000pt;}
.wse5{word-spacing:1.168640pt;}
.ws15f{word-spacing:1.200000pt;}
.wsee{word-spacing:1.221760pt;}
.ws84{word-spacing:1.274880pt;}
.ws163{word-spacing:1.296000pt;}
.ws85{word-spacing:1.328000pt;}
.ws3a{word-spacing:1.381120pt;}
.ws176{word-spacing:1.392000pt;}
.ws3b{word-spacing:1.434240pt;}
.ws46{word-spacing:1.457920pt;}
.ws160{word-spacing:1.467297pt;}
.wsf2{word-spacing:1.488000pt;}
.ws161{word-spacing:1.568490pt;}
.ws103{word-spacing:1.584000pt;}
.ws129{word-spacing:1.632000pt;}
.ws128{word-spacing:1.728000pt;}
.ws74{word-spacing:1.806080pt;}
.ws80{word-spacing:1.859200pt;}
.ws194{word-spacing:1.872000pt;}
.ws8c{word-spacing:1.903775pt;}
.ws81{word-spacing:1.912320pt;}
.ws17a{word-spacing:1.920000pt;}
.ws70{word-spacing:1.965440pt;}
.ws17b{word-spacing:2.016000pt;}
.ws75{word-spacing:2.018560pt;}
.ws3e{word-spacing:2.071680pt;}
.ws171{word-spacing:2.112000pt;}
.ws8b{word-spacing:2.177920pt;}
.wsa4{word-spacing:2.208000pt;}
.ws172{word-spacing:2.226243pt;}
.ws167{word-spacing:2.304000pt;}
.wsb5{word-spacing:2.352000pt;}
.wscc{word-spacing:2.443520pt;}
.ws9c{word-spacing:2.496640pt;}
.ws14c{word-spacing:2.544000pt;}
.ws7d{word-spacing:2.549760pt;}
.wsa2{word-spacing:2.602880pt;}
.ws7c{word-spacing:2.656000pt;}
.ws40{word-spacing:2.709120pt;}
.wsb4{word-spacing:2.736000pt;}
.ws42{word-spacing:2.762240pt;}
.wsac{word-spacing:2.815360pt;}
.wsd4{word-spacing:2.832000pt;}
.ws104{word-spacing:2.880000pt;}
.ws108{word-spacing:2.974720pt;}
.ws196{word-spacing:2.985190pt;}
.wsb6{word-spacing:3.024000pt;}
.ws133{word-spacing:3.035787pt;}
.ws47{word-spacing:3.044480pt;}
.ws8d{word-spacing:3.134080pt;}
.ws89{word-spacing:3.187200pt;}
.wsed{word-spacing:3.240320pt;}
.ws197{word-spacing:3.288769pt;}
.ws9a{word-spacing:3.293440pt;}
.ws43{word-spacing:3.346560pt;}
.wsa5{word-spacing:3.408000pt;}
.ws16b{word-spacing:3.456000pt;}
.ws100{word-spacing:3.504000pt;}
.ws169{word-spacing:3.552000pt;}
.ws150{word-spacing:3.600000pt;}
.ws14e{word-spacing:3.648000pt;}
.wsef{word-spacing:3.718400pt;}
.ws14f{word-spacing:3.744000pt;}
.ws9e{word-spacing:3.771520pt;}
.ws30{word-spacing:3.824640pt;}
.ws102{word-spacing:3.877760pt;}
.ws8e{word-spacing:3.930880pt;}
.ws66{word-spacing:3.984000pt;}
.ws16a{word-spacing:4.032000pt;}
.wsf7{word-spacing:4.128000pt;}
.ws88{word-spacing:4.199505pt;}
.ws7b{word-spacing:4.249600pt;}
.ws168{word-spacing:4.272000pt;}
.ws16e{word-spacing:4.300698pt;}
.ws199{word-spacing:4.351294pt;}
.ws8f{word-spacing:4.355840pt;}
.ws90{word-spacing:4.408960pt;}
.ws4c{word-spacing:4.416640pt;}
.ws7a{word-spacing:4.462080pt;}
.ws15e{word-spacing:4.560000pt;}
.ws79{word-spacing:4.568320pt;}
.ws19b{word-spacing:4.604276pt;}
.ws28{word-spacing:4.621440pt;}
.ws17c{word-spacing:4.656000pt;}
.ws78{word-spacing:4.727680pt;}
.wsfe{word-spacing:4.752000pt;}
.ws17d{word-spacing:4.800000pt;}
.ws141{word-spacing:4.848000pt;}
.wsc2{word-spacing:4.887040pt;}
.ws142{word-spacing:4.896000pt;}
.ws19a{word-spacing:4.907855pt;}
.ws140{word-spacing:4.944000pt;}
.wsc0{word-spacing:4.993280pt;}
.ws134{word-spacing:5.040000pt;}
.ws94{word-spacing:5.046400pt;}
.wsbd{word-spacing:5.099520pt;}
.ws193{word-spacing:5.136000pt;}
.ws97{word-spacing:5.205760pt;}
.ws13f{word-spacing:5.232000pt;}
.ws77{word-spacing:5.258880pt;}
.ws143{word-spacing:5.312626pt;}
.wsd5{word-spacing:5.328000pt;}
.ws8a{word-spacing:5.365120pt;}
.ws16d{word-spacing:5.424000pt;}
.ws16c{word-spacing:5.520000pt;}
.ws101{word-spacing:5.568000pt;}
.wsb1{word-spacing:5.683840pt;}
.ws35{word-spacing:5.736960pt;}
.ws34{word-spacing:5.843200pt;}
.ws27{word-spacing:5.896320pt;}
.wsd0{word-spacing:5.949440pt;}
.ws127{word-spacing:5.952000pt;}
.wsf8{word-spacing:6.048000pt;}
.ws13d{word-spacing:6.144000pt;}
.wscf{word-spacing:6.159274pt;}
.ws31{word-spacing:6.161920pt;}
.ws144{word-spacing:6.192000pt;}
.ws151{word-spacing:6.240000pt;}
.wsbf{word-spacing:6.268160pt;}
.ws152{word-spacing:6.288000pt;}
.ws32{word-spacing:6.321280pt;}
.ws10c{word-spacing:6.374400pt;}
.ws112{word-spacing:6.427520pt;}
.ws178{word-spacing:6.480000pt;}
.ws10b{word-spacing:6.480640pt;}
.ws179{word-spacing:6.526941pt;}
.ws29{word-spacing:6.533760pt;}
.ws126{word-spacing:6.576000pt;}
.ws125{word-spacing:6.672000pt;}
.wsfd{word-spacing:6.720000pt;}
.ws16f{word-spacing:6.864000pt;}
.ws109{word-spacing:6.958720pt;}
.ws6f{word-spacing:7.011840pt;}
.ws87{word-spacing:7.064960pt;}
.ws13b{word-spacing:7.152000pt;}
.ws6d{word-spacing:7.171200pt;}
.ws2c{word-spacing:7.224320pt;}
.ws13e{word-spacing:7.248000pt;}
.ws9b{word-spacing:7.277440pt;}
.ws114{word-spacing:7.296000pt;}
.wsd3{word-spacing:7.335135pt;}
.ws115{word-spacing:7.344000pt;}
.wsd2{word-spacing:7.391128pt;}
.ws170{word-spacing:7.488000pt;}
.ws13c{word-spacing:7.536000pt;}
.wsbe{word-spacing:7.596160pt;}
.wsd1{word-spacing:7.615102pt;}
.wsd8{word-spacing:7.649280pt;}
.wsa9{word-spacing:7.702400pt;}
.ws91{word-spacing:7.808640pt;}
.ws2b{word-spacing:7.861760pt;}
.ws181{word-spacing:7.872000pt;}
.ws17f{word-spacing:7.920000pt;}
.ws116{word-spacing:7.968000pt;}
.ws148{word-spacing:8.112000pt;}
.wsaa{word-spacing:8.233600pt;}
.wsb0{word-spacing:8.286720pt;}
.ws6a{word-spacing:8.339840pt;}
.ws69{word-spacing:8.392960pt;}
.ws14b{word-spacing:8.400000pt;}
.ws41{word-spacing:8.446080pt;}
.ws119{word-spacing:8.496000pt;}
.ws68{word-spacing:8.499200pt;}
.wsfa{word-spacing:8.592000pt;}
.ws67{word-spacing:8.605440pt;}
.ws117{word-spacing:8.640000pt;}
.ws149{word-spacing:8.736000pt;}
.ws147{word-spacing:8.784000pt;}
.wscd{word-spacing:8.871040pt;}
.wsce{word-spacing:8.924160pt;}
.ws198{word-spacing:8.976000pt;}
.ws36{word-spacing:8.977280pt;}
.ws2d{word-spacing:9.083520pt;}
.ws49{word-spacing:9.090560pt;}
.ws2f{word-spacing:9.136640pt;}
.ws18e{word-spacing:9.216000pt;}
.ws14a{word-spacing:9.264000pt;}
.ws12a{word-spacing:9.360000pt;}
.ws106{word-spacing:9.561600pt;}
.ws4a{word-spacing:9.562240pt;}
.ws4e{word-spacing:9.582292pt;}
.ws92{word-spacing:9.614720pt;}
.ws2e{word-spacing:9.720960pt;}
.wsea{word-spacing:9.774080pt;}
.ws12b{word-spacing:9.792000pt;}
.ws18d{word-spacing:9.888000pt;}
.ws123{word-spacing:9.936000pt;}
.ws187{word-spacing:9.984000pt;}
.ws130{word-spacing:10.032000pt;}
.ws110{word-spacing:10.199040pt;}
.wsc3{word-spacing:10.305280pt;}
.ws182{word-spacing:10.320000pt;}
.wsec{word-spacing:10.358400pt;}
.ws73{word-spacing:10.411520pt;}
.ws122{word-spacing:10.416000pt;}
.ws12f{word-spacing:10.512000pt;}
.wsfb{word-spacing:10.560000pt;}
.ws118{word-spacing:10.656000pt;}
.ws186{word-spacing:10.704000pt;}
.ws195{word-spacing:10.800000pt;}
.ws111{word-spacing:10.836480pt;}
.wsb8{word-spacing:10.889600pt;}
.ws189{word-spacing:10.992000pt;}
.wscb{word-spacing:10.995840pt;}
.wsb7{word-spacing:11.048960pt;}
.ws190{word-spacing:11.088000pt;}
.ws188{word-spacing:11.184000pt;}
.ws191{word-spacing:11.328000pt;}
.ws71{word-spacing:11.527040pt;}
.ws93{word-spacing:11.686400pt;}
.ws192{word-spacing:11.712000pt;}
.wsa1{word-spacing:11.792640pt;}
.wsf5{word-spacing:11.808000pt;}
.ws18a{word-spacing:11.952000pt;}
.ws26{word-spacing:12.096000pt;}
.ws6c{word-spacing:12.164480pt;}
.ws18b{word-spacing:12.288000pt;}
.ws6b{word-spacing:12.323840pt;}
.ws18f{word-spacing:12.336000pt;}
.wsad{word-spacing:12.695680pt;}
.wsaf{word-spacing:12.801920pt;}
.wsae{word-spacing:12.961280pt;}
.ws121{word-spacing:13.008000pt;}
.ws120{word-spacing:13.104000pt;}
.wsf6{word-spacing:13.248000pt;}
.wsc4{word-spacing:13.386240pt;}
.ws65{word-spacing:13.439360pt;}
.ws1b{word-spacing:13.488000pt;}
.ws107{word-spacing:13.598720pt;}
.ws18c{word-spacing:13.728000pt;}
.wsa3{word-spacing:14.236160pt;}
._1{margin-left:-1.214208pt;}
._0{width:1.008000pt;}
._3{width:2.129920pt;}
._2{width:3.617280pt;}
._9{width:4.916608pt;}
._a{width:5.912960pt;}
._7{width:7.277440pt;}
._2e{width:8.370816pt;}
._5{width:9.561600pt;}
._8{width:10.624000pt;}
._c{width:11.520768pt;}
._2d{width:12.652416pt;}
._6{width:14.821760pt;}
._b{width:15.845120pt;}
._2c{width:118.412160pt;}
._26{width:120.298880pt;}
._21{width:132.327040pt;}
._23{width:137.601920pt;}
._1e{width:138.865920pt;}
._1a{width:150.250880pt;}
._14{width:155.054080pt;}
._15{width:157.283840pt;}
._27{width:159.055488pt;}
._19{width:163.372800pt;}
._17{width:165.259520pt;}
._18{width:166.245760pt;}
._29{width:167.402880pt;}
._25{width:170.297600pt;}
._11{width:173.862656pt;}
._1b{width:175.507840pt;}
._2a{width:176.493440pt;}
._1c{width:177.437440pt;}
._22{width:181.745664pt;}
._12{width:183.826560pt;}
._1f{width:184.797696pt;}
._28{width:185.719296pt;}
._16{width:192.101760pt;}
._13{width:195.896960pt;}
._24{width:201.728640pt;}
._20{width:202.899968pt;}
._1d{width:220.295680pt;}
._2b{width:233.009920pt;}
._4{width:298.787840pt;}
._f{width:487.202560pt;}
._d{width:497.450880pt;}
._10{width:655.849600pt;}
._e{width:664.811520pt;}
.fsd{font-size:26.880000pt;}
.fs4{font-size:29.440000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fsb{font-size:42.846400pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.199489pt;}
.fs0{font-size:48.000000pt;}
.fse{font-size:50.596443pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:55.297067pt;}
.fsc{font-size:55.993396pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:117.120000pt;}
.y5e{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y1f8{bottom:4.159867pt;}
.y67{bottom:4.960000pt;}
.y3d{bottom:5.439867pt;}
.y20a{bottom:6.239867pt;}
.y1b2{bottom:7.199867pt;}
.y1aa{bottom:7.200000pt;}
.y61{bottom:7.342667pt;}
.y1f5{bottom:11.519867pt;}
.y20f{bottom:14.559867pt;}
.y197{bottom:14.719867pt;}
.y1f6{bottom:18.879867pt;}
.y198{bottom:21.920000pt;}
.y1f3{bottom:26.239867pt;}
.y195{bottom:29.280000pt;}
.y66{bottom:29.919867pt;}
.y1f7{bottom:33.439867pt;}
.y22d{bottom:33.599867pt;}
.y3b{bottom:43.199867pt;}
.y64{bottom:60.000000pt;}
.y5{bottom:60.003867pt;}
.y8e{bottom:60.008000pt;}
.y39{bottom:62.079867pt;}
.y38{bottom:80.959867pt;}
.y23f{bottom:98.240000pt;}
.y209{bottom:98.880000pt;}
.y36e{bottom:99.211867pt;}
.y24d{bottom:99.684000pt;}
.y36{bottom:99.839867pt;}
.y17a{bottom:100.004000pt;}
.ye2{bottom:100.164160pt;}
.y1d2{bottom:100.324000pt;}
.y191{bottom:100.485440pt;}
.yf4{bottom:100.635867pt;}
.y29a{bottom:101.312320pt;}
.y129{bottom:101.927360pt;}
.y1be{bottom:102.400827pt;}
.y156{bottom:102.560000pt;}
.y1eb{bottom:102.724000pt;}
.y2d6{bottom:102.883867pt;}
.yba{bottom:103.060027pt;}
.y3a9{bottom:104.006427pt;}
.y11b{bottom:104.321467pt;}
.y1db{bottom:104.323840pt;}
.y164{bottom:104.480000pt;}
.y2b0{bottom:104.960000pt;}
.y8c{bottom:105.933627pt;}
.y30a{bottom:106.079867pt;}
.y273{bottom:106.081280pt;}
.y309{bottom:106.087867pt;}
.y344{bottom:106.247867pt;}
.y14b{bottom:111.689467pt;}
.y36d{bottom:115.687867pt;}
.y24c{bottom:116.328000pt;}
.y179{bottom:116.480000pt;}
.y1d1{bottom:116.800000pt;}
.yf3{bottom:117.279867pt;}
.y12{bottom:117.760000pt;}
.y34{bottom:118.719867pt;}
.y1ea{bottom:119.200000pt;}
.y2d5{bottom:119.359867pt;}
.ye1{bottom:120.323200pt;}
.y190{bottom:120.803840pt;}
.y299{bottom:121.471360pt;}
.y128{bottom:121.927040pt;}
.y3a8{bottom:122.240000pt;}
.y1bd{bottom:122.400507pt;}
.y308{bottom:122.563867pt;}
.y155{bottom:122.564347pt;}
.y343{bottom:122.723867pt;}
.yb9{bottom:123.219067pt;}
.y208{bottom:124.022907pt;}
.y1da{bottom:124.164160pt;}
.y11a{bottom:124.321147pt;}
.y163{bottom:124.486267pt;}
.y2af{bottom:125.128960pt;}
.y272{bottom:126.080960pt;}
.y23e{bottom:126.281467pt;}
.y8b{bottom:126.411387pt;}
.y14a{bottom:132.486267pt;}
.y24b{bottom:132.804000pt;}
.y2d4{bottom:135.835867pt;}
.y178{bottom:136.636800pt;}
.y1e0{bottom:136.798400pt;}
.y1d0{bottom:136.959360pt;}
.y1e5{bottom:136.959520pt;}
.y36c{bottom:136.963867pt;}
.yf2{bottom:137.289947pt;}
.y32{bottom:137.599867pt;}
.y1e9{bottom:139.358880pt;}
.ye0{bottom:140.641600pt;}
.y18f{bottom:141.281600pt;}
.y298{bottom:141.630400pt;}
.y127{bottom:141.926720pt;}
.y3c{bottom:142.079867pt;}
.y1bc{bottom:142.400187pt;}
.y207{bottom:143.061627pt;}
.yb8{bottom:143.378107pt;}
.y307{bottom:143.843867pt;}
.y342{bottom:143.995867pt;}
.y119{bottom:144.320827pt;}
.y3a7{bottom:144.980000pt;}
.y1d9{bottom:145.120000pt;}
.y271{bottom:146.080640pt;}
.y8a{bottom:146.729787pt;}
.y23d{bottom:147.078267pt;}
.y24a{bottom:149.280000pt;}
.y149{bottom:153.283067pt;}
.y36b{bottom:153.439867pt;}
.y31{bottom:156.479867pt;}
.y2d3{bottom:157.288000pt;}
.y306{bottom:160.319867pt;}
.y305{bottom:160.323867pt;}
.y341{bottom:160.639867pt;}
.y340{bottom:160.643867pt;}
.y3a{bottom:160.959867pt;}
.ydf{bottom:160.960960pt;}
.y3a6{bottom:161.456000pt;}
.y18e{bottom:161.607680pt;}
.y297{bottom:161.789440pt;}
.y126{bottom:161.926400pt;}
.y206{bottom:161.939547pt;}
.y1bb{bottom:162.404987pt;}
.y1d8{bottom:162.880000pt;}
.yb7{bottom:163.537147pt;}
.y118{bottom:164.320507pt;}
.y270{bottom:166.080320pt;}
.y5c{bottom:166.559867pt;}
.y89{bottom:167.207547pt;}
.y23c{bottom:167.875067pt;}
.y249{bottom:169.447360pt;}
.y36a{bottom:170.083867pt;}
.y2d2{bottom:173.764000pt;}
.y148{bottom:174.079867pt;}
.y3e{bottom:175.040000pt;}
.y2f{bottom:175.359867pt;}
.y304{bottom:176.967867pt;}
.y33f{bottom:177.119867pt;}
.y33e{bottom:177.127867pt;}
.y3a5{bottom:177.932000pt;}
.y205{bottom:180.817467pt;}
.yde{bottom:181.121600pt;}
.y5a{bottom:181.279867pt;}
.y125{bottom:181.926080pt;}
.y18d{bottom:182.085440pt;}
.y296{bottom:182.107840pt;}
.y1ba{bottom:182.404667pt;}
.y1d7{bottom:182.873600pt;}
.yb6{bottom:183.696187pt;}
.y117{bottom:184.320187pt;}
.y26f{bottom:186.086080pt;}
.y88{bottom:187.525947pt;}
.y23b{bottom:188.671867pt;}
.y2d1{bottom:190.240000pt;}
.y369{bottom:191.363867pt;}
.y303{bottom:193.443867pt;}
.y33d{bottom:193.603867pt;}
.y2d{bottom:194.239867pt;}
.y3a4{bottom:194.408000pt;}
.y147{bottom:194.879867pt;}
.y58{bottom:195.999867pt;}
.y37{bottom:198.719867pt;}
.y204{bottom:199.856187pt;}
.ydd{bottom:201.446720pt;}
.y124{bottom:201.925760pt;}
.y295{bottom:202.266880pt;}
.y18c{bottom:202.403840pt;}
.y1b9{bottom:203.519867pt;}
.yb5{bottom:203.855227pt;}
.y116{bottom:204.320827pt;}
.y26e{bottom:206.085760pt;}
.y368{bottom:207.839867pt;}
.y87{bottom:208.003707pt;}
.y23a{bottom:209.468667pt;}
.y56{bottom:210.719867pt;}
.y3a3{bottom:210.884000pt;}
.y2b{bottom:213.119867pt;}
.y2d0{bottom:213.760000pt;}
.y302{bottom:214.719867pt;}
.y33c{bottom:214.883867pt;}
.y146{bottom:215.999867pt;}
.y35{bottom:217.599867pt;}
.y203{bottom:218.734107pt;}
.y1b8{bottom:221.279867pt;}
.ydc{bottom:221.765120pt;}
.y123{bottom:221.925440pt;}
.y294{bottom:222.425920pt;}
.y18b{bottom:222.881600pt;}
.yb4{bottom:223.854907pt;}
.y115{bottom:224.320507pt;}
.y54{bottom:225.279867pt;}
.y26d{bottom:226.085440pt;}
.y3a2{bottom:227.528000pt;}
.y86{bottom:228.322107pt;}
.y367{bottom:229.439867pt;}
.y366{bottom:229.451867pt;}
.y239{bottom:230.265467pt;}
.y301{bottom:231.199867pt;}
.y33b{bottom:231.359867pt;}
.y29{bottom:231.999867pt;}
.y33{bottom:236.479867pt;}
.y202{bottom:237.612027pt;}
.y52{bottom:239.999867pt;}
.y1b7{bottom:241.275547pt;}
.ydb{bottom:241.924160pt;}
.y122{bottom:241.925120pt;}
.y293{bottom:242.584960pt;}
.y145{bottom:242.880000pt;}
.y18a{bottom:243.215360pt;}
.y3a1{bottom:244.004000pt;}
.yb3{bottom:244.013947pt;}
.y114{bottom:244.320187pt;}
.y26c{bottom:246.085120pt;}
.y365{bottom:246.407867pt;}
.y300{bottom:247.675867pt;}
.y33a{bottom:248.003867pt;}
.y85{bottom:248.801467pt;}
.y2cf{bottom:248.970880pt;}
.y27{bottom:250.879867pt;}
.y238{bottom:251.062267pt;}
.y51{bottom:254.719867pt;}
.y201{bottom:256.650747pt;}
.y144{bottom:259.845600pt;}
.y3a0{bottom:260.480000pt;}
.y121{bottom:261.924800pt;}
.yda{bottom:262.242560pt;}
.y292{bottom:262.903360pt;}
.y364{bottom:263.207867pt;}
.y189{bottom:263.693120pt;}
.yb2{bottom:264.172987pt;}
.y113{bottom:264.320827pt;}
.y26b{bottom:266.084800pt;}
.y2ce{bottom:268.970560pt;}
.y84{bottom:269.123707pt;}
.y2ff{bottom:269.123867pt;}
.y4f{bottom:269.279867pt;}
.y339{bottom:269.283867pt;}
.y25{bottom:269.759867pt;}
.y237{bottom:271.859067pt;}
.y30{bottom:274.239867pt;}
.y200{bottom:275.528667pt;}
.y143{bottom:277.122880pt;}
.y39f{bottom:282.400000pt;}
.yd9{bottom:282.560960pt;}
.y120{bottom:283.040000pt;}
.y291{bottom:283.062400pt;}
.y4d{bottom:283.999867pt;}
.y188{bottom:284.011520pt;}
.y112{bottom:284.320507pt;}
.yb1{bottom:284.332027pt;}
.y363{bottom:284.807867pt;}
.y2fe{bottom:285.599867pt;}
.y2fd{bottom:285.607867pt;}
.y338{bottom:285.759867pt;}
.y337{bottom:285.763867pt;}
.y26a{bottom:286.084480pt;}
.y23{bottom:288.639867pt;}
.y2cd{bottom:288.970240pt;}
.y83{bottom:289.601467pt;}
.y236{bottom:292.655867pt;}
.y2e{bottom:293.119867pt;}
.y1ff{bottom:294.406587pt;}
.y142{bottom:297.122560pt;}
.y4b{bottom:298.719867pt;}
.y39e{bottom:300.640000pt;}
.y11f{bottom:300.808000pt;}
.y362{bottom:301.763867pt;}
.y2fc{bottom:302.083867pt;}
.y336{bottom:302.239867pt;}
.yd8{bottom:302.723200pt;}
.y290{bottom:303.221440pt;}
.y111{bottom:304.320187pt;}
.y187{bottom:304.489280pt;}
.yb0{bottom:304.491067pt;}
.y269{bottom:306.084160pt;}
.y21{bottom:307.519867pt;}
.y2cc{bottom:308.969920pt;}
.y82{bottom:309.922107pt;}
.y2c{bottom:311.999867pt;}
.y4a{bottom:313.439867pt;}
.y1fe{bottom:313.445307pt;}
.y235{bottom:313.452667pt;}
.y141{bottom:317.122240pt;}
.y11e{bottom:317.284000pt;}
.y60{bottom:317.473333pt;}
.y5d{bottom:317.756000pt;}
.y5f{bottom:317.759867pt;}
.y361{bottom:318.563867pt;}
.y335{bottom:318.715867pt;}
.y39d{bottom:318.880000pt;}
.yd7{bottom:323.041600pt;}
.y2fb{bottom:323.359867pt;}
.y28f{bottom:323.380480pt;}
.y110{bottom:324.317307pt;}
.yaf{bottom:324.650107pt;}
.y186{bottom:324.807680pt;}
.y268{bottom:326.083840pt;}
.y1f{bottom:326.399867pt;}
.y48{bottom:327.999867pt;}
.y2cb{bottom:328.969600pt;}
.y81{bottom:330.411387pt;}
.y2a{bottom:330.879867pt;}
.y1fd{bottom:332.323227pt;}
.y11d{bottom:333.760000pt;}
.y234{bottom:334.249467pt;}
.y360{bottom:335.363867pt;}
.y140{bottom:337.121920pt;}
.y2fa{bottom:339.839867pt;}
.y2f9{bottom:339.843867pt;}
.y334{bottom:340.163867pt;}
.y46{bottom:342.719867pt;}
.yd6{bottom:343.363200pt;}
.y28e{bottom:343.698880pt;}
.y10f{bottom:344.316987pt;}
.yae{bottom:344.649787pt;}
.y1d{bottom:345.279867pt;}
.y185{bottom:345.285440pt;}
.y267{bottom:346.083520pt;}
.y39c{bottom:347.201440pt;}
.y2ca{bottom:348.969280pt;}
.y28{bottom:349.759867pt;}
.y80{bottom:350.729787pt;}
.y1fc{bottom:351.201147pt;}
.y11c{bottom:353.920000pt;}
.y233{bottom:355.046267pt;}
.y5b{bottom:356.319867pt;}
.y2f8{bottom:356.487867pt;}
.y333{bottom:356.639867pt;}
.y332{bottom:356.651867pt;}
.y13f{bottom:357.121600pt;}
.y35f{bottom:357.123867pt;}
.y44{bottom:357.439867pt;}
.yd5{bottom:363.522240pt;}
.y28d{bottom:363.857920pt;}
.y1b{bottom:364.159867pt;}
.y10e{bottom:364.316667pt;}
.yad{bottom:364.808827pt;}
.y184{bottom:365.603840pt;}
.y266{bottom:366.083200pt;}
.y39b{bottom:367.204960pt;}
.y26{bottom:368.639867pt;}
.y2c9{bottom:368.968960pt;}
.y1fb{bottom:370.239867pt;}
.y59{bottom:371.039867pt;}
.y7f{bottom:371.207547pt;}
.y43{bottom:372.159867pt;}
.y2f7{bottom:372.963867pt;}
.y331{bottom:373.127867pt;}
.y35e{bottom:373.923867pt;}
.y232{bottom:375.843067pt;}
.y13e{bottom:377.121280pt;}
.y1a{bottom:383.039867pt;}
.yd4{bottom:383.840640pt;}
.y28c{bottom:384.016960pt;}
.y10d{bottom:384.316347pt;}
.yac{bottom:384.967867pt;}
.y57{bottom:385.759867pt;}
.y183{bottom:386.081600pt;}
.y265{bottom:386.082880pt;}
.y41{bottom:386.719867pt;}
.y39a{bottom:387.208480pt;}
.y24{bottom:387.519867pt;}
.y2c8{bottom:388.968640pt;}
.y1fa{bottom:389.119867pt;}
.y330{bottom:389.603867pt;}
.y7e{bottom:391.525947pt;}
.y2f6{bottom:394.243867pt;}
.y35d{bottom:395.683867pt;}
.y231{bottom:396.639867pt;}
.y13d{bottom:397.120960pt;}
.y55{bottom:400.319867pt;}
.y40{bottom:401.439867pt;}
.y18{bottom:401.919867pt;}
.y1f2{bottom:402.080000pt;}
.yd3{bottom:404.159040pt;}
.y28b{bottom:404.176000pt;}
.y10c{bottom:404.316027pt;}
.yab{bottom:405.126907pt;}
.y399{bottom:405.764800pt;}
.y264{bottom:406.082560pt;}
.y22{bottom:406.399867pt;}
.y182{bottom:406.402240pt;}
.y2c7{bottom:408.968320pt;}
.y2f5{bottom:410.719867pt;}
.y32f{bottom:410.875867pt;}
.y7d{bottom:412.003707pt;}
.y35c{bottom:412.483867pt;}
.y1f4{bottom:413.599867pt;}
.y53{bottom:415.039867pt;}
.y3f{bottom:416.159867pt;}
.y13c{bottom:417.120640pt;}
.y230{bottom:417.439867pt;}
.y398{bottom:418.082080pt;}
.y16{bottom:420.799867pt;}
.y1f1{bottom:420.959867pt;}
.y10b{bottom:424.315707pt;}
.yd2{bottom:424.318080pt;}
.y28a{bottom:424.494400pt;}
.y20{bottom:425.279867pt;}
.yaa{bottom:425.285947pt;}
.y263{bottom:426.082240pt;}
.y181{bottom:426.885440pt;}
.y2f4{bottom:427.195867pt;}
.y32e{bottom:427.519867pt;}
.y32d{bottom:427.527867pt;}
.y1f9{bottom:428.318427pt;}
.y2c6{bottom:428.968000pt;}
.y35b{bottom:429.283867pt;}
.y397{bottom:430.399360pt;}
.y22b{bottom:431.360000pt;}
.y7c{bottom:432.322107pt;}
.y13b{bottom:437.120320pt;}
.y15{bottom:439.679867pt;}
.y396{bottom:442.555840pt;}
.y22c{bottom:442.879867pt;}
.y32c{bottom:444.003867pt;}
.y1e{bottom:444.159867pt;}
.y10a{bottom:444.315387pt;}
.y50{bottom:444.319867pt;}
.yd1{bottom:444.636480pt;}
.y289{bottom:444.653440pt;}
.ya9{bottom:445.444987pt;}
.y262{bottom:446.081920pt;}
.y35a{bottom:446.239867pt;}
.y180{bottom:447.203840pt;}
.y2f3{bottom:448.643867pt;}
.y2c5{bottom:448.967680pt;}
.y22a{bottom:450.239867pt;}
.y7b{bottom:452.832320pt;}
.y395{bottom:454.873120pt;}
.y13a{bottom:457.122560pt;}
.y22f{bottom:457.598427pt;}
.y22e{bottom:457.599867pt;}
.y4e{bottom:459.039867pt;}
.y1f0{bottom:459.360000pt;}
.y1c{bottom:463.039867pt;}
.yd0{bottom:463.839360pt;}
.y109{bottom:464.315067pt;}
.y13{bottom:464.639867pt;}
.y288{bottom:464.812480pt;}
.y2f2{bottom:465.119867pt;}
.y2f1{bottom:465.131867pt;}
.y32b{bottom:465.283867pt;}
.ya8{bottom:465.444667pt;}
.y261{bottom:466.081600pt;}
.y394{bottom:467.190400pt;}
.y17f{bottom:467.681600pt;}
.y2c4{bottom:468.967360pt;}
.y7a{bottom:473.150720pt;}
.y4c{bottom:473.759867pt;}
.y1ef{bottom:476.480000pt;}
.y139{bottom:477.122240pt;}
.y393{bottom:479.346880pt;}
.y2f0{bottom:481.607867pt;}
.y32a{bottom:481.759867pt;}
.y108{bottom:483.358587pt;}
.y359{bottom:484.643867pt;}
.y287{bottom:484.971520pt;}
.ya7{bottom:485.603707pt;}
.y260{bottom:486.081280pt;}
.y1d6{bottom:486.720000pt;}
.y17e{bottom:488.006080pt;}
.y229{bottom:488.643867pt;}
.y2c3{bottom:488.967040pt;}
.y392{bottom:491.664160pt;}
.y79{bottom:493.628480pt;}
.y1ee{bottom:494.243867pt;}
.ycf{bottom:496.640960pt;}
.y138{bottom:497.121920pt;}
.y329{bottom:498.235867pt;}
.y19{bottom:500.799867pt;}
.y358{bottom:501.599867pt;}
.y2ef{bottom:502.883867pt;}
.y49{bottom:503.039867pt;}
.y177{bottom:503.682720pt;}
.y391{bottom:503.820640pt;}
.y1d5{bottom:504.484000pt;}
.y228{bottom:505.119867pt;}
.y286{bottom:505.289920pt;}
.ya6{bottom:505.762747pt;}
.y25f{bottom:506.080960pt;}
.y2ae{bottom:507.526560pt;}
.y2c2{bottom:508.966720pt;}
.y17d{bottom:509.440000pt;}
.y1ed{bottom:510.719867pt;}
.y1e4{bottom:512.000000pt;}
.y78{bottom:513.946880pt;}
.y1e8{bottom:514.240000pt;}
.y1df{bottom:514.880000pt;}
.y107{bottom:516.000827pt;}
.y390{bottom:516.137920pt;}
.yce{bottom:516.800000pt;}
.y137{bottom:517.121600pt;}
.y47{bottom:517.759867pt;}
.y357{bottom:518.399867pt;}
.y2ed{bottom:519.355867pt;}
.y2ee{bottom:519.359867pt;}
.y17{bottom:519.679867pt;}
.y328{bottom:519.683867pt;}
.y1d4{bottom:520.960000pt;}
.y176{bottom:520.960320pt;}
.y227{bottom:522.239867pt;}
.y1b6{bottom:522.399867pt;}
.y2ad{bottom:524.803840pt;}
.y285{bottom:525.448960pt;}
.ya5{bottom:525.762427pt;}
.y25e{bottom:526.080640pt;}
.y17c{bottom:527.200000pt;}
.y38f{bottom:528.455200pt;}
.y2c1{bottom:528.966400pt;}
.y1e3{bottom:529.924000pt;}
.y1ec{bottom:530.719867pt;}
.y1cf{bottom:531.202720pt;}
.y1e7{bottom:532.004000pt;}
.y45{bottom:532.479867pt;}
.y1de{bottom:532.804000pt;}
.y77{bottom:534.424640pt;}
.y2ec{bottom:535.999867pt;}
.y106{bottom:536.000507pt;}
.y2eb{bottom:536.011867pt;}
.y327{bottom:536.159867pt;}
.y226{bottom:536.160000pt;}
.y326{bottom:536.167867pt;}
.y1b5{bottom:536.320000pt;}
.y136{bottom:537.121280pt;}
.y356{bottom:540.007867pt;}
.y175{bottom:540.961280pt;}
.y1d3{bottom:541.120000pt;}
.y38e{bottom:542.058880pt;}
.ycd{bottom:544.320000pt;}
.y2ac{bottom:544.803520pt;}
.y284{bottom:545.608000pt;}
.ya4{bottom:545.762107pt;}
.y25d{bottom:546.080320pt;}
.y1e2{bottom:546.400000pt;}
.y17b{bottom:547.200000pt;}
.y1ce{bottom:548.480000pt;}
.y2c0{bottom:548.966080pt;}
.y1dd{bottom:549.280000pt;}
.y2ea{bottom:552.487867pt;}
.y325{bottom:552.643867pt;}
.y76{bottom:554.743040pt;}
.y105{bottom:556.000187pt;}
.y355{bottom:556.963867pt;}
.y135{bottom:557.120960pt;}
.y14{bottom:557.439867pt;}
.y174{bottom:560.960960pt;}
.y42{bottom:561.759867pt;}
.y38d{bottom:562.062400pt;}
.y225{bottom:564.201600pt;}
.y1b4{bottom:564.323067pt;}
.y2ab{bottom:564.803200pt;}
.ya3{bottom:565.761787pt;}
.y283{bottom:565.767040pt;}
.y25c{bottom:566.084027pt;}
.y1e1{bottom:566.400000pt;}
.y1cd{bottom:568.481600pt;}
.y1e6{bottom:568.639867pt;}
.y2bf{bottom:568.965760pt;}
.y1dc{bottom:569.280000pt;}
.ycc{bottom:569.759867pt;}
.y2e9{bottom:573.763867pt;}
.y324{bottom:573.919867pt;}
.y323{bottom:573.923867pt;}
.y75{bottom:575.220800pt;}
.y104{bottom:576.000187pt;}
.y134{bottom:577.120640pt;}
.y1b1{bottom:577.920000pt;}
.y173{bottom:580.960640pt;}
.y38c{bottom:582.065920pt;}
.y2aa{bottom:584.802880pt;}
.y224{bottom:584.998400pt;}
.y1b3{bottom:585.119867pt;}
.y1b0{bottom:585.136000pt;}
.ya2{bottom:585.761467pt;}
.y25b{bottom:586.083707pt;}
.y282{bottom:586.085440pt;}
.y1cc{bottom:588.481280pt;}
.y2be{bottom:588.965440pt;}
.y2e8{bottom:590.239867pt;}
.y322{bottom:590.399867pt;}
.y354{bottom:595.051867pt;}
.y74{bottom:595.539200pt;}
.y103{bottom:596.000187pt;}
.y133{bottom:597.120320pt;}
.y172{bottom:600.960320pt;}
.y154{bottom:601.759867pt;}
.y38b{bottom:602.069440pt;}
.yf1{bottom:603.683547pt;}
.y2a9{bottom:604.802560pt;}
.ycb{bottom:605.139840pt;}
.ya1{bottom:605.761147pt;}
.y223{bottom:605.795200pt;}
.y1af{bottom:605.932800pt;}
.y25a{bottom:606.083387pt;}
.y281{bottom:606.244480pt;}
.y2e7{bottom:606.715867pt;}
.y321{bottom:607.043867pt;}
.y1cb{bottom:608.480960pt;}
.y2bd{bottom:608.965120pt;}
.y353{bottom:611.527867pt;}
.y102{bottom:615.994427pt;}
.y11{bottom:616.006400pt;}
.y73{bottom:616.016960pt;}
.y132{bottom:617.120960pt;}
.y153{bottom:619.524000pt;}
.y171{bottom:620.960320pt;}
.yf0{bottom:620.960827pt;}
.y38a{bottom:622.072960pt;}
.y2a8{bottom:624.802240pt;}
.yca{bottom:625.298880pt;}
.ya0{bottom:625.760827pt;}
.y259{bottom:626.083067pt;}
.y280{bottom:626.403520pt;}
.y222{bottom:626.592000pt;}
.y1ae{bottom:626.729600pt;}
.y352{bottom:628.171867pt;}
.y2e6{bottom:628.176000pt;}
.y320{bottom:628.319867pt;}
.y31f{bottom:628.323867pt;}
.y1ca{bottom:628.480640pt;}
.y2bc{bottom:628.964800pt;}
.y101{bottom:635.994107pt;}
.y152{bottom:636.000000pt;}
.y10{bottom:636.320000pt;}
.y72{bottom:636.335360pt;}
.y131{bottom:637.120640pt;}
.y170{bottom:640.960000pt;}
.y16f{bottom:640.960320pt;}
.yef{bottom:640.960507pt;}
.y389{bottom:642.076480pt;}
.y351{bottom:644.647867pt;}
.y2e5{bottom:644.652000pt;}
.y31e{bottom:644.799867pt;}
.y2a7{bottom:644.801920pt;}
.y31d{bottom:644.807867pt;}
.yc9{bottom:645.617280pt;}
.y9f{bottom:645.760507pt;}
.y258{bottom:646.082747pt;}
.y27f{bottom:646.562560pt;}
.y221{bottom:647.388800pt;}
.y1ad{bottom:647.526400pt;}
.y1c9{bottom:648.480320pt;}
.y2bb{bottom:648.964480pt;}
.yf{bottom:652.156000pt;}
.y100{bottom:655.037627pt;}
.y151{bottom:656.161280pt;}
.y71{bottom:656.813120pt;}
.y130{bottom:657.120320pt;}
.y16e{bottom:660.960000pt;}
.yee{bottom:660.960187pt;}
.y16d{bottom:660.960320pt;}
.y350{bottom:661.123867pt;}
.y2e4{bottom:661.128000pt;}
.y31c{bottom:661.283867pt;}
.y388{bottom:662.081147pt;}
.y2a6{bottom:664.801600pt;}
.y9e{bottom:665.760187pt;}
.yc8{bottom:665.935680pt;}
.y257{bottom:666.082427pt;}
.y37a{bottom:666.088000pt;}
.y27e{bottom:666.880960pt;}
.y220{bottom:668.185600pt;}
.y1ac{bottom:668.323200pt;}
.y1c8{bottom:668.477947pt;}
.y2ba{bottom:668.964160pt;}
.y12f{bottom:677.117440pt;}
.y70{bottom:677.131520pt;}
.y2e3{bottom:677.604000pt;}
.ye{bottom:678.240000pt;}
.y16c{bottom:680.960000pt;}
.yed{bottom:680.960960pt;}
.y1a9{bottom:681.920000pt;}
.y387{bottom:682.080827pt;}
.y34f{bottom:682.404000pt;}
.y379{bottom:682.564000pt;}
.y31b{bottom:682.568000pt;}
.y2a5{bottom:684.801280pt;}
.y9d{bottom:685.759867pt;}
.y9c{bottom:685.760187pt;}
.y256{bottom:686.082107pt;}
.yc7{bottom:686.094720pt;}
.y27d{bottom:687.051520pt;}
.yff{bottom:687.680507pt;}
.y1c7{bottom:688.158907pt;}
.y2b9{bottom:688.963840pt;}
.y21f{bottom:688.982400pt;}
.y1ab{bottom:689.120000pt;}
.y1a8{bottom:689.142400pt;}
.yd{bottom:695.360000pt;}
.y12e{bottom:697.117120pt;}
.y6f{bottom:697.609280pt;}
.y2e2{bottom:698.880000pt;}
.y378{bottom:699.208000pt;}
.y31a{bottom:699.212000pt;}
.yec{bottom:700.960640pt;}
.y386{bottom:702.080507pt;}
.y2a4{bottom:704.800960pt;}
.y9b{bottom:705.760507pt;}
.y255{bottom:706.081787pt;}
.y162{bottom:706.402587pt;}
.yc6{bottom:706.413120pt;}
.y27c{bottom:707.210560pt;}
.yfe{bottom:707.680187pt;}
.y1c6{bottom:707.838720pt;}
.y2b8{bottom:708.963520pt;}
.y21e{bottom:709.779200pt;}
.y1a7{bottom:709.939200pt;}
.yc{bottom:712.319867pt;}
.y2e1{bottom:715.524000pt;}
.y377{bottom:715.684000pt;}
.y319{bottom:715.688000pt;}
.y12d{bottom:717.116800pt;}
.y6e{bottom:717.927680pt;}
.yeb{bottom:720.960320pt;}
.y385{bottom:722.080187pt;}
.y161{bottom:723.682747pt;}
.y2a3{bottom:724.800640pt;}
.y9a{bottom:725.760187pt;}
.y254{bottom:726.081467pt;}
.yc5{bottom:726.731520pt;}
.y27b{bottom:727.369600pt;}
.y1c5{bottom:727.679040pt;}
.yfd{bottom:727.680187pt;}
.y2b7{bottom:728.963200pt;}
.y21d{bottom:730.576000pt;}
.y1a6{bottom:730.736000pt;}
.y248{bottom:731.682720pt;}
.y318{bottom:732.164000pt;}
.y34e{bottom:736.804000pt;}
.y2e0{bottom:736.812000pt;}
.y376{bottom:736.968000pt;}
.y12c{bottom:737.116480pt;}
.y6d{bottom:738.405440pt;}
.yb{bottom:739.360000pt;}
.yea{bottom:740.950107pt;}
.y16b{bottom:740.960320pt;}
.y384{bottom:742.082427pt;}
.y160{bottom:743.682427pt;}
.y2a2{bottom:744.800320pt;}
.y99{bottom:745.759867pt;}
.y98{bottom:745.774400pt;}
.y253{bottom:746.081147pt;}
.yc4{bottom:746.890560pt;}
.y1c4{bottom:747.360000pt;}
.yfc{bottom:747.679867pt;}
.y27a{bottom:747.688000pt;}
.y247{bottom:748.960320pt;}
.y2b6{bottom:748.962880pt;}
.y21c{bottom:751.372800pt;}
.y1a5{bottom:751.532800pt;}
.y34d{bottom:753.280000pt;}
.y2df{bottom:753.288000pt;}
.y317{bottom:753.443867pt;}
.y375{bottom:753.444000pt;}
.y12b{bottom:757.116160pt;}
.y6c{bottom:758.723840pt;}
.ye9{bottom:760.949787pt;}
.y16a{bottom:760.960320pt;}
.y383{bottom:762.082107pt;}
.y15f{bottom:763.682107pt;}
.y2a1{bottom:764.800000pt;}
.y97{bottom:765.774080pt;}
.y252{bottom:766.080827pt;}
.yc3{bottom:767.208960pt;}
.y279{bottom:767.847040pt;}
.y246{bottom:768.961280pt;}
.y2b5{bottom:768.962560pt;}
.y2de{bottom:769.764000pt;}
.y316{bottom:769.919867pt;}
.y21b{bottom:772.169600pt;}
.y1a4{bottom:772.329600pt;}
.y1c3{bottom:774.560000pt;}
.y374{bottom:774.719867pt;}
.yfb{bottom:774.880000pt;}
.y12a{bottom:776.159680pt;}
.y6b{bottom:779.201600pt;}
.ye8{bottom:779.833947pt;}
.y169{bottom:780.960640pt;}
.y382{bottom:782.081787pt;}
.y15e{bottom:783.681787pt;}
.y96{bottom:785.933120pt;}
.y251{bottom:786.080507pt;}
.y315{bottom:786.563867pt;}
.yc2{bottom:787.527360pt;}
.y278{bottom:788.006080pt;}
.y245{bottom:788.960960pt;}
.y2b4{bottom:788.962240pt;}
.y34c{bottom:791.035867pt;}
.y2dd{bottom:791.040000pt;}
.y373{bottom:791.363867pt;}
.y2a0{bottom:792.480000pt;}
.y21a{bottom:792.966400pt;}
.y1a3{bottom:793.126400pt;}
.ye7{bottom:795.517627pt;}
.y6a{bottom:799.520000pt;}
.ya{bottom:800.949627pt;}
.y168{bottom:800.960320pt;}
.y381{bottom:802.081467pt;}
.y15d{bottom:803.681467pt;}
.y250{bottom:806.080187pt;}
.y95{bottom:806.251520pt;}
.y34b{bottom:807.679867pt;}
.y2dc{bottom:807.684000pt;}
.yc1{bottom:807.686400pt;}
.y34a{bottom:807.691867pt;}
.y372{bottom:807.839867pt;}
.y314{bottom:807.843867pt;}
.y371{bottom:807.848000pt;}
.y277{bottom:808.165120pt;}
.y1c2{bottom:808.319867pt;}
.yfa{bottom:808.801920pt;}
.y244{bottom:808.960640pt;}
.y2b3{bottom:808.961920pt;}
.y219{bottom:813.763200pt;}
.y1a2{bottom:813.923200pt;}
.y167{bottom:820.960000pt;}
.y380{bottom:822.081147pt;}
.y15c{bottom:823.681147pt;}
.y349{bottom:824.167867pt;}
.y313{bottom:824.319867pt;}
.y370{bottom:824.324000pt;}
.y312{bottom:824.327867pt;}
.y24f{bottom:826.079867pt;}
.y94{bottom:826.729280pt;}
.y69{bottom:827.520000pt;}
.y29f{bottom:827.683387pt;}
.y1c1{bottom:827.999547pt;}
.yc0{bottom:828.004800pt;}
.ye6{bottom:828.164160pt;}
.y276{bottom:828.483520pt;}
.yf9{bottom:828.801600pt;}
.y243{bottom:828.960320pt;}
.y2b2{bottom:828.961600pt;}
.y2db{bottom:828.967867pt;}
.y218{bottom:834.560000pt;}
.y1a1{bottom:834.720000pt;}
.y9{bottom:836.319867pt;}
.y348{bottom:840.643867pt;}
.y311{bottom:840.803867pt;}
.y37f{bottom:842.080827pt;}
.y15b{bottom:843.680827pt;}
.y2da{bottom:845.443867pt;}
.y36f{bottom:845.600000pt;}
.y93{bottom:847.047680pt;}
.y1c0{bottom:847.839867pt;}
.y29e{bottom:847.842427pt;}
.ye5{bottom:848.163840pt;}
.y166{bottom:848.319867pt;}
.ybf{bottom:848.323200pt;}
.y275{bottom:848.642560pt;}
.yf8{bottom:848.801280pt;}
.y242{bottom:848.960640pt;}
.y2b1{bottom:848.961280pt;}
.y150{bottom:851.682720pt;}
.y24e{bottom:853.600000pt;}
.y217{bottom:855.360000pt;}
.y1a0{bottom:855.520000pt;}
.y68{bottom:861.919867pt;}
.y347{bottom:861.923867pt;}
.y30f{bottom:862.076000pt;}
.y310{bottom:862.079867pt;}
.y37e{bottom:862.080507pt;}
.y15a{bottom:863.680507pt;}
.y92{bottom:867.525440pt;}
.y8{bottom:867.845627pt;}
.y29d{bottom:868.001467pt;}
.ye4{bottom:868.163520pt;}
.ybe{bottom:868.482240pt;}
.yf7{bottom:868.800960pt;}
.y274{bottom:868.801600pt;}
.y241{bottom:868.960320pt;}
.y14f{bottom:868.960960pt;}
.y20d{bottom:869.280000pt;}
.y194{bottom:869.440000pt;}
.y165{bottom:873.759867pt;}
.y1bf{bottom:874.880000pt;}
.y212{bottom:876.640000pt;}
.y19b{bottom:876.800000pt;}
.y2d9{bottom:878.395867pt;}
.y346{bottom:878.399867pt;}
.y30e{bottom:878.720000pt;}
.y30d{bottom:878.732000pt;}
.y37d{bottom:882.080187pt;}
.y159{bottom:883.680187pt;}
.y20e{bottom:883.839867pt;}
.y196{bottom:884.159867pt;}
.y7{bottom:886.083707pt;}
.y65{bottom:886.400000pt;}
.y91{bottom:887.843840pt;}
.y29c{bottom:888.321920pt;}
.ye3{bottom:888.322560pt;}
.ybd{bottom:888.481920pt;}
.yf6{bottom:888.800640pt;}
.y240{bottom:888.960320pt;}
.y14e{bottom:888.960640pt;}
.y214{bottom:891.197760pt;}
.y20c{bottom:891.200000pt;}
.y211{bottom:891.201307pt;}
.y19d{bottom:891.357760pt;}
.y193{bottom:891.360000pt;}
.y19a{bottom:891.361307pt;}
.y345{bottom:895.043867pt;}
.y30c{bottom:895.208000pt;}
.y216{bottom:898.558427pt;}
.y215{bottom:898.562400pt;}
.y19f{bottom:898.717627pt;}
.y19e{bottom:898.722400pt;}
.y2d8{bottom:899.839867pt;}
.y37c{bottom:902.079867pt;}
.y158{bottom:903.679867pt;}
.y6{bottom:904.159867pt;}
.y213{bottom:905.916320pt;}
.y210{bottom:905.919867pt;}
.y19c{bottom:906.076320pt;}
.y199{bottom:906.079867pt;}
.y90{bottom:908.321600pt;}
.y29b{bottom:908.480960pt;}
.ybc{bottom:908.640960pt;}
.yf5{bottom:908.800320pt;}
.y14d{bottom:908.960320pt;}
.y30b{bottom:911.684000pt;}
.y2d7{bottom:916.324000pt;}
.y4{bottom:921.927867pt;}
.y8f{bottom:928.640000pt;}
.ybb{bottom:928.800000pt;}
.y14c{bottom:928.960000pt;}
.y37b{bottom:929.600000pt;}
.y157{bottom:930.880000pt;}
.y20b{bottom:932.800000pt;}
.y192{bottom:932.960000pt;}
.y3{bottom:937.923867pt;}
.y2{bottom:953.923867pt;}
.y63{bottom:956.159867pt;}
.y8d{bottom:957.284000pt;}
.y1{bottom:969.919867pt;}
.y62{bottom:971.360000pt;}
.h3b{height:18.880000pt;}
.h12{height:19.950667pt;}
.h14{height:20.000000pt;}
.h35{height:20.800000pt;}
.h36{height:20.801333pt;}
.h7{height:25.436160pt;}
.h17{height:28.579687pt;}
.h2{height:32.812500pt;}
.h3{height:34.453125pt;}
.h15{height:37.019290pt;}
.hf{height:37.048320pt;}
.h23{height:37.246250pt;}
.h10{height:39.052358pt;}
.h2e{height:39.224320pt;}
.h9{height:39.243750pt;}
.h6{height:41.285000pt;}
.h8{height:41.472000pt;}
.h44{height:41.472533pt;}
.h42{height:41.488000pt;}
.h43{height:41.488533pt;}
.h46{height:42.084375pt;}
.h41{height:43.715326pt;}
.h3c{height:43.980160pt;}
.h33{height:43.996160pt;}
.h3a{height:43.998667pt;}
.h3d{height:44.160000pt;}
.hb{height:44.875000pt;}
.h16{height:45.120000pt;}
.hc{height:45.895680pt;}
.h37{height:45.896960pt;}
.h38{height:45.900267pt;}
.h39{height:45.903893pt;}
.h2d{height:45.905920pt;}
.h29{height:45.935253pt;}
.h1d{height:47.109375pt;}
.h1e{height:48.378295pt;}
.h18{height:48.638187pt;}
.h22{height:48.688640pt;}
.h3e{height:48.721387pt;}
.h19{height:48.721920pt;}
.h26{height:48.741120pt;}
.h31{height:48.743680pt;}
.h32{height:48.746240pt;}
.h28{height:48.751360pt;}
.h1b{height:48.752640pt;}
.h24{height:48.754667pt;}
.h25{height:48.755200pt;}
.h45{height:48.758293pt;}
.h1a{height:48.759040pt;}
.h3f{height:48.760320pt;}
.h1c{height:48.761600pt;}
.h30{height:48.762880pt;}
.h27{height:48.764160pt;}
.h1f{height:48.765973pt;}
.h2f{height:48.766187pt;}
.h2b{height:48.766720pt;}
.h20{height:48.767253pt;}
.hd{height:48.768000pt;}
.h21{height:48.768533pt;}
.h2c{height:48.778240pt;}
.h2a{height:48.789760pt;}
.h40{height:50.062500pt;}
.h34{height:50.400000pt;}
.h47{height:52.133842pt;}
.h11{height:52.134375pt;}
.h13{height:54.271047pt;}
.h4{height:62.824960pt;}
.h5{height:82.121250pt;}
.he{height:442.720000pt;}
.ha{height:479.840000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.520000pt;}
.w12{width:45.280000pt;}
.w7{width:47.200000pt;}
.we{width:47.201333pt;}
.w15{width:47.360000pt;}
.w1a{width:47.520000pt;}
.wd{width:48.960000pt;}
.w10{width:50.560000pt;}
.wb{width:52.960000pt;}
.w18{width:53.120000pt;}
.w1c{width:53.280000pt;}
.w19{width:54.240000pt;}
.wc{width:54.720000pt;}
.w6{width:56.320000pt;}
.w14{width:56.640000pt;}
.wf{width:57.120000pt;}
.w4{width:58.866667pt;}
.w1b{width:60.000000pt;}
.w17{width:60.160000pt;}
.wa{width:60.480000pt;}
.w11{width:62.400000pt;}
.w9{width:66.080000pt;}
.w5{width:69.866667pt;}
.w8{width:92.640000pt;}
.w16{width:102.078667pt;}
.w13{width:111.520000pt;}
.w3{width:194.560000pt;}
.w2{width:480.161333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:0.960000pt;}
.x2b{left:5.619733pt;}
.x48{left:6.560000pt;}
.x70{left:9.280000pt;}
.x6d{left:11.360000pt;}
.x8{left:13.280000pt;}
.x7c{left:14.400000pt;}
.x92{left:15.520000pt;}
.x67{left:17.120000pt;}
.x6b{left:19.200000pt;}
.x8a{left:20.160000pt;}
.x69{left:22.080000pt;}
.x66{left:33.920000pt;}
.x7d{left:36.320000pt;}
.x91{left:38.720000pt;}
.x7e{left:40.000000pt;}
.x96{left:40.960000pt;}
.x80{left:43.360000pt;}
.x97{left:44.640000pt;}
.x81{left:47.040000pt;}
.x4a{left:50.720000pt;}
.x5{left:56.804000pt;}
.x1a{left:58.080000pt;}
.x2a{left:59.196000pt;}
.x28{left:80.000000pt;}
.x60{left:90.400000pt;}
.x1b{left:91.680000pt;}
.x27{left:98.240000pt;}
.x23{left:102.240000pt;}
.x24{left:106.880000pt;}
.x25{left:109.760000pt;}
.xa{left:117.920000pt;}
.x14{left:125.920000pt;}
.x20{left:128.160000pt;}
.x26{left:131.040000pt;}
.x1c{left:172.640000pt;}
.x1d{left:180.000000pt;}
.x1f{left:181.120000pt;}
.x1e{left:185.280000pt;}
.x19{left:188.640000pt;}
.x21{left:191.680000pt;}
.xc{left:197.120000pt;}
.x29{left:217.120000pt;}
.x22{left:238.400000pt;}
.x7{left:256.960000pt;}
.x63{left:258.742080pt;}
.x12{left:259.840000pt;}
.x5d{left:262.086720pt;}
.x5e{left:263.684000pt;}
.x8f{left:266.725920pt;}
.x62{left:268.808160pt;}
.x9{left:270.240000pt;}
.x5f{left:271.531040pt;}
.x5c{left:273.280000pt;}
.x90{left:275.795040pt;}
.x74{left:276.800000pt;}
.x8e{left:277.920000pt;}
.xe{left:279.040000pt;}
.x88{left:281.013920pt;}
.x86{left:281.935840pt;}
.x16{left:283.520000pt;}
.x65{left:285.587040pt;}
.x46{left:288.000000pt;}
.x87{left:289.011040pt;}
.x3c{left:290.080000pt;}
.x33{left:292.156960pt;}
.x89{left:295.196480pt;}
.x76{left:297.440000pt;}
.x37{left:303.040000pt;}
.xae{left:315.360000pt;}
.x36{left:322.080000pt;}
.x39{left:323.520000pt;}
.xb5{left:345.760000pt;}
.x47{left:349.760000pt;}
.x49{left:355.360000pt;}
.x8b{left:359.200000pt;}
.x9e{left:361.920000pt;}
.x44{left:363.520000pt;}
.x8c{left:364.960000pt;}
.x64{left:367.520000pt;}
.x77{left:368.640000pt;}
.x61{left:370.080000pt;}
.xa4{left:371.200000pt;}
.xa2{left:372.960000pt;}
.x78{left:374.240000pt;}
.x31{left:375.680000pt;}
.xaf{left:378.240000pt;}
.xf{left:395.840000pt;}
.x18{left:402.720000pt;}
.x68{left:406.080000pt;}
.xac{left:410.400000pt;}
.x9f{left:411.680000pt;}
.x4b{left:416.160000pt;}
.x93{left:421.120000pt;}
.xb2{left:423.040000pt;}
.x79{left:424.960000pt;}
.xb{left:426.400000pt;}
.x32{left:435.520000pt;}
.x1{left:438.720000pt;}
.xab{left:441.760000pt;}
.x3e{left:442.720000pt;}
.xb4{left:444.000000pt;}
.xad{left:445.280000pt;}
.x13{left:452.640000pt;}
.x15{left:464.000000pt;}
.x11{left:467.840000pt;}
.x8d{left:468.800000pt;}
.xd{left:470.080000pt;}
.x17{left:471.520000pt;}
.x94{left:472.480000pt;}
.x10{left:475.200000pt;}
.x7a{left:478.080000pt;}
.xa3{left:487.200000pt;}
.x2f{left:492.160000pt;}
.xa9{left:498.560000pt;}
.x99{left:500.320000pt;}
.xa0{left:505.440000pt;}
.xa5{left:507.040000pt;}
.x9a{left:508.320000pt;}
.x30{left:515.680000pt;}
.x6a{left:519.360000pt;}
.xa7{left:520.800000pt;}
.xb7{left:524.480000pt;}
.x7b{left:529.280000pt;}
.x3f{left:531.200000pt;}
.x95{left:532.160000pt;}
.x4d{left:534.880000pt;}
.xb6{left:537.760000pt;}
.x4e{left:538.720000pt;}
.x9c{left:540.160000pt;}
.x40{left:551.680000pt;}
.xb1{left:556.320000pt;}
.x4f{left:560.640000pt;}
.x50{left:564.320000pt;}
.xb3{left:566.080000pt;}
.x2{left:573.276000pt;}
.x6c{left:579.840000pt;}
.x51{left:588.475733pt;}
.x52{left:590.400000pt;}
.x7f{left:593.120000pt;}
.x53{left:594.240000pt;}
.xb0{left:598.560000pt;}
.xa6{left:600.800000pt;}
.xa8{left:614.400000pt;}
.x3d{left:618.240000pt;}
.x3{left:622.244000pt;}
.x4{left:630.884000pt;}
.x6e{left:632.800000pt;}
.x9d{left:633.920000pt;}
.x9b{left:639.520000pt;}
.x82{left:642.240000pt;}
.x54{left:643.676427pt;}
.x55{left:645.440000pt;}
.x56{left:649.280000pt;}
.xa1{left:650.720000pt;}
.x41{left:652.160000pt;}
.x83{left:653.920000pt;}
.xb8{left:656.000000pt;}
.x42{left:656.960000pt;}
.x43{left:661.920000pt;}
.x2d{left:663.840000pt;}
.x38{left:667.991360pt;}
.x35{left:671.840000pt;}
.x98{left:673.440000pt;}
.x57{left:674.880000pt;}
.x84{left:675.840000pt;}
.x85{left:679.520000pt;}
.x6f{left:687.520000pt;}
.xaa{left:688.480000pt;}
.x58{left:695.523147pt;}
.x59{left:699.840000pt;}
.x3b{left:702.876320pt;}
.xb9{left:705.600000pt;}
.x75{left:711.042400pt;}
.x6{left:714.728000pt;}
.x73{left:716.000000pt;}
.x2e{left:718.884000pt;}
.x72{left:720.325120pt;}
.x5a{left:724.160000pt;}
.x5b{left:727.840000pt;}
.x34{left:731.519200pt;}
.x45{left:732.799360pt;}
.x3a{left:734.720640pt;}
.x2c{left:737.120000pt;}
.x71{left:738.709440pt;}
}




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