
    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_0c182a786e96946610cf4d81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3af19b19d5db5694d5bbaaa6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.058000;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_a9fd2a836196e163efb9d103.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937000;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_e7fe75432460a96f5d220eee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dcc47c2602bf966f76a7f4c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ee781dc662daeaf29fc149c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.587000;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_210e69bb5c657b76e83c4de8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.737000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2acccbb5569568fb03616a04.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c87bfdadb1292c0337d1d751.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.882000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_12a3e45e1dd65e80797cae87.woff2')format("woff");}.ffc{font-family:ffc;line-height:3.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v19{vertical-align:-36.396000px;}
.v17{vertical-align:-34.428000px;}
.v3{vertical-align:-33.006000px;}
.v6{vertical-align:-20.394000px;}
.v4{vertical-align:-16.314000px;}
.v18{vertical-align:-14.046000px;}
.ve{vertical-align:-8.430000px;}
.v22{vertical-align:-6.744000px;}
.v0{vertical-align:0.000000px;}
.v27{vertical-align:1.590000px;}
.vc{vertical-align:6.684000px;}
.vd{vertical-align:8.430000px;}
.v1a{vertical-align:13.398000px;}
.va{vertical-align:15.114000px;}
.v7{vertical-align:16.590000px;}
.v24{vertical-align:18.444000px;}
.v9{vertical-align:20.394000px;}
.v5{vertical-align:21.660000px;}
.v10{vertical-align:23.208000px;}
.v1{vertical-align:27.024000px;}
.vf{vertical-align:29.886000px;}
.v12{vertical-align:30.966000px;}
.v2{vertical-align:33.006000px;}
.v13{vertical-align:34.110000px;}
.vb{vertical-align:35.514000px;}
.v8{vertical-align:37.584000px;}
.v11{vertical-align:39.390000px;}
.v23{vertical-align:43.410000px;}
.v1b{vertical-align:48.480000px;}
.v14{vertical-align:49.998000px;}
.v1e{vertical-align:55.830000px;}
.v15{vertical-align:63.102000px;}
.v1d{vertical-align:64.260000px;}
.v20{vertical-align:69.696000px;}
.v26{vertical-align:72.066000px;}
.v25{vertical-align:77.490000px;}
.v1c{vertical-align:97.488000px;}
.v16{vertical-align:102.804000px;}
.v21{vertical-align:117.588000px;}
.v1f{vertical-align:167.184000px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000095px;}
.ls4d{letter-spacing:0.000098px;}
.ls2{letter-spacing:0.000188px;}
.ls4e{letter-spacing:0.000247px;}
.ls1{letter-spacing:0.000298px;}
.lse0{letter-spacing:0.000368px;}
.ls2f{letter-spacing:0.000642px;}
.lsfb{letter-spacing:0.000745px;}
.lsef{letter-spacing:0.000779px;}
.ls2a{letter-spacing:0.000901px;}
.lsbe{letter-spacing:0.000976px;}
.ls44{letter-spacing:0.000985px;}
.lsfd{letter-spacing:0.001037px;}
.ls9b{letter-spacing:0.001080px;}
.ls9d{letter-spacing:0.001293px;}
.lsbb{letter-spacing:0.001697px;}
.ls42{letter-spacing:0.001762px;}
.ls105{letter-spacing:0.001908px;}
.ls3d{letter-spacing:0.001968px;}
.ls87{letter-spacing:0.002230px;}
.ls107{letter-spacing:0.002235px;}
.lsc4{letter-spacing:0.002248px;}
.ls38{letter-spacing:0.002342px;}
.lsf4{letter-spacing:0.002349px;}
.ls30{letter-spacing:0.002375px;}
.lsf5{letter-spacing:0.002676px;}
.lsff{letter-spacing:0.002843px;}
.lsb6{letter-spacing:0.002930px;}
.lsee{letter-spacing:0.002958px;}
.ls96{letter-spacing:0.003020px;}
.ls4c{letter-spacing:0.003047px;}
.lsbd{letter-spacing:0.003157px;}
.ls48{letter-spacing:0.003425px;}
.ls119{letter-spacing:0.003437px;}
.ls103{letter-spacing:0.003559px;}
.ls35{letter-spacing:0.003698px;}
.lsa6{letter-spacing:0.003832px;}
.lsa0{letter-spacing:0.004005px;}
.lsec{letter-spacing:0.004020px;}
.ls4a{letter-spacing:0.004361px;}
.ls60{letter-spacing:0.004632px;}
.ls5e{letter-spacing:0.004728px;}
.ls3a{letter-spacing:0.005048px;}
.ls45{letter-spacing:1.121943px;}
.lse2{letter-spacing:1.123512px;}
.ls50{letter-spacing:1.127943px;}
.ls8e{letter-spacing:1.174686px;}
.ls92{letter-spacing:1.180686px;}
.ls53{letter-spacing:2.245762px;}
.ls63{letter-spacing:2.251762px;}
.lsbc{letter-spacing:2.454060px;}
.lsed{letter-spacing:2.984734px;}
.ls10f{letter-spacing:2.984843px;}
.ls2e{letter-spacing:2.985157px;}
.ls9f{letter-spacing:2.985425px;}
.ls3{letter-spacing:2.985773px;}
.ls43{letter-spacing:2.987136px;}
.ls37{letter-spacing:2.989970px;}
.ls52{letter-spacing:2.990564px;}
.ls100{letter-spacing:2.990734px;}
.lsfa{letter-spacing:2.990843px;}
.ls2b{letter-spacing:2.991157px;}
.ls25{letter-spacing:2.991355px;}
.ls39{letter-spacing:2.991425px;}
.ls5{letter-spacing:2.991504px;}
.ls4{letter-spacing:2.991773px;}
.ls51{letter-spacing:2.993136px;}
.ls32{letter-spacing:3.019970px;}
.ls57{letter-spacing:3.937178px;}
.lsd9{letter-spacing:4.055274px;}
.ls2c{letter-spacing:4.252376px;}
.lsf9{letter-spacing:4.499160px;}
.lsc8{letter-spacing:5.245293px;}
.ls116{letter-spacing:6.495437px;}
.ls118{letter-spacing:6.555425px;}
.ls24{letter-spacing:6.687535px;}
.ls68{letter-spacing:7.168728px;}
.ls86{letter-spacing:7.172167px;}
.ls7f{letter-spacing:7.174361px;}
.ls27{letter-spacing:8.163355px;}
.lsd{letter-spacing:8.367504px;}
.ls28{letter-spacing:8.601355px;}
.ls9c{letter-spacing:8.742480px;}
.lsa1{letter-spacing:8.744268px;}
.lsa4{letter-spacing:8.746361px;}
.lsa3{letter-spacing:8.747510px;}
.lsa2{letter-spacing:8.748480px;}
.ls108{letter-spacing:8.772434px;}
.ls10d{letter-spacing:8.778249px;}
.ls31{letter-spacing:9.361309px;}
.ls3f{letter-spacing:9.367309px;}
.ls36{letter-spacing:9.383630px;}
.ls9{letter-spacing:9.619131px;}
.ls7{letter-spacing:9.620734px;}
.lsa{letter-spacing:9.620795px;}
.ls6{letter-spacing:9.621596px;}
.ls8{letter-spacing:9.621754px;}
.lsf3{letter-spacing:9.985908px;}
.ls10c{letter-spacing:9.986235px;}
.ls101{letter-spacing:9.987157px;}
.lsf2{letter-spacing:9.990100px;}
.ls110{letter-spacing:9.990249px;}
.lsf8{letter-spacing:9.991908px;}
.lsf6{letter-spacing:10.478734px;}
.ls10a{letter-spacing:10.484734px;}
.ls67{letter-spacing:10.679970px;}
.ls4b{letter-spacing:11.046985px;}
.ls46{letter-spacing:11.052985px;}
.ls10b{letter-spacing:11.150843px;}
.ls69{letter-spacing:11.725730px;}
.lsf0{letter-spacing:12.480745px;}
.ls59{letter-spacing:12.482268px;}
.ls47{letter-spacing:12.482375px;}
.ls11c{letter-spacing:12.483698px;}
.ls58{letter-spacing:12.485048px;}
.lsa9{letter-spacing:12.485510px;}
.lscd{letter-spacing:12.486095px;}
.ls106{letter-spacing:12.486745px;}
.lsf1{letter-spacing:12.487908px;}
.ls7d{letter-spacing:12.488230px;}
.ls5a{letter-spacing:12.488268px;}
.ls6a{letter-spacing:12.706072px;}
.lsb8{letter-spacing:12.909157px;}
.lsb7{letter-spacing:12.915157px;}
.ls102{letter-spacing:12.980843px;}
.ls19{letter-spacing:13.229084px;}
.lse6{letter-spacing:13.361922px;}
.lse8{letter-spacing:13.364930px;}
.ls83{letter-spacing:13.803832px;}
.ls10e{letter-spacing:14.661961px;}
.ls109{letter-spacing:14.667961px;}
.lse4{letter-spacing:14.737512px;}
.lsc3{letter-spacing:14.904985px;}
.ls73{letter-spacing:15.019487px;}
.ls72{letter-spacing:15.069220px;}
.ls88{letter-spacing:15.471157px;}
.ls9e{letter-spacing:15.474985px;}
.lsaa{letter-spacing:15.475183px;}
.lsce{letter-spacing:15.477425px;}
.lsd4{letter-spacing:15.510095px;}
.ls56{letter-spacing:15.602268px;}
.ls3b{letter-spacing:15.602375px;}
.ls5b{letter-spacing:15.604632px;}
.ls5f{letter-spacing:15.606098px;}
.ls3e{letter-spacing:15.608248px;}
.ls3c{letter-spacing:15.608268px;}
.ls34{letter-spacing:15.608375px;}
.ls61{letter-spacing:15.610072px;}
.ls49{letter-spacing:15.610632px;}
.lsb9{letter-spacing:15.620653px;}
.lsc2{letter-spacing:15.965274px;}
.ls11d{letter-spacing:16.160268px;}
.ls6b{letter-spacing:16.211970px;}
.ls7a{letter-spacing:16.312555px;}
.ls7b{letter-spacing:16.362289px;}
.lsc6{letter-spacing:16.423178px;}
.ls7c{letter-spacing:16.461755px;}
.lseb{letter-spacing:16.511489px;}
.ls114{letter-spacing:16.551226px;}
.ls13{letter-spacing:16.561222px;}
.lsb3{letter-spacing:16.572095px;}
.ls95{letter-spacing:16.574230px;}
.ls65{letter-spacing:16.574268px;}
.lsda{letter-spacing:16.574384px;}
.ls4f{letter-spacing:16.576632px;}
.ls41{letter-spacing:16.577048px;}
.ls62{letter-spacing:16.577192px;}
.lsb4{letter-spacing:16.577510px;}
.lsb5{letter-spacing:16.578095px;}
.ls1b{letter-spacing:16.579062px;}
.ls66{letter-spacing:16.580268px;}
.ls113{letter-spacing:16.591012px;}
.ls1a{letter-spacing:16.610956px;}
.lse5{letter-spacing:16.729512px;}
.ls23{letter-spacing:16.760156px;}
.ls6c{letter-spacing:16.954376px;}
.lsd8{letter-spacing:16.984620px;}
.ls94{letter-spacing:17.307425px;}
.lsdf{letter-spacing:17.356957px;}
.ls5d{letter-spacing:17.591136px;}
.ls85{letter-spacing:17.857762px;}
.ls1c{letter-spacing:18.003491px;}
.lsa7{letter-spacing:18.595970px;}
.ls80{letter-spacing:18.597157px;}
.ls90{letter-spacing:18.597425px;}
.lsdd{letter-spacing:18.621160px;}
.lsdc{letter-spacing:18.627160px;}
.ls9a{letter-spacing:18.674230px;}
.lsea{letter-spacing:18.699758px;}
.ls26{letter-spacing:18.727309px;}
.ls1e{letter-spacing:18.898692px;}
.ls97{letter-spacing:18.978777px;}
.lse9{letter-spacing:18.998159px;}
.ls10{letter-spacing:19.346293px;}
.ls8f{letter-spacing:19.563425px;}
.ls7e{letter-spacing:19.658268px;}
.lsdb{letter-spacing:19.660361px;}
.ls33{letter-spacing:19.742762px;}
.ls12{letter-spacing:19.744160px;}
.ls8a{letter-spacing:19.774686px;}
.lsc7{letter-spacing:19.788860px;}
.ls11{letter-spacing:19.793893px;}
.ls82{letter-spacing:20.096230px;}
.lsb2{letter-spacing:20.132930px;}
.ls22{letter-spacing:20.191760px;}
.ls120{letter-spacing:20.223698px;}
.lsd5{letter-spacing:20.257697px;}
.ls14{letter-spacing:20.291227px;}
.ls75{letter-spacing:20.738828px;}
.ls74{letter-spacing:20.788561px;}
.ls64{letter-spacing:20.830376px;}
.ls18{letter-spacing:20.838295px;}
.lsca{letter-spacing:20.857293px;}
.ls8c{letter-spacing:20.910095px;}
.ls71{letter-spacing:20.937761px;}
.lsf7{letter-spacing:21.140843px;}
.lsa8{letter-spacing:21.478921px;}
.ls21{letter-spacing:21.584296px;}
.lsfe{letter-spacing:21.842734px;}
.lsb{letter-spacing:21.876450px;}
.lsd0{letter-spacing:22.099293px;}
.lsd2{letter-spacing:22.111178px;}
.ls84{letter-spacing:22.116777px;}
.ls98{letter-spacing:22.778268px;}
.lsc5{letter-spacing:22.784268px;}
.ls20{letter-spacing:22.827631px;}
.lscc{letter-spacing:22.914860px;}
.lse3{letter-spacing:23.109425px;}
.lsaf{letter-spacing:23.126031px;}
.lsc{letter-spacing:23.163300px;}
.lsae{letter-spacing:23.175764px;}
.ls15{letter-spacing:23.324965px;}
.ls78{letter-spacing:23.523898px;}
.ls79{letter-spacing:23.573632px;}
.ls1d{letter-spacing:23.655600px;}
.ls11b{letter-spacing:23.692626px;}
.ls1f{letter-spacing:23.722832px;}
.lsd1{letter-spacing:24.150860px;}
.ls70{letter-spacing:24.369366px;}
.ls6f{letter-spacing:24.419099px;}
.lsd7{letter-spacing:24.625697px;}
.lsf{letter-spacing:24.966167px;}
.lse{letter-spacing:25.015900px;}
.lsac{letter-spacing:25.357183px;}
.lsab{letter-spacing:25.357970px;}
.lsd3{letter-spacing:25.482860px;}
.lsad{letter-spacing:25.564921px;}
.ls16{letter-spacing:26.902618px;}
.lsde{letter-spacing:27.813160px;}
.ls17{letter-spacing:27.950171px;}
.ls2d{letter-spacing:28.556375px;}
.lsb0{letter-spacing:28.646438px;}
.ls6e{letter-spacing:28.696172px;}
.ls6d{letter-spacing:28.745905px;}
.ls77{letter-spacing:28.795639px;}
.lse7{letter-spacing:28.797425px;}
.ls76{letter-spacing:28.845372px;}
.ls11a{letter-spacing:28.941425px;}
.ls8d{letter-spacing:28.987293px;}
.lsb1{letter-spacing:29.827828px;}
.ls11f{letter-spacing:30.911274px;}
.lsc1{letter-spacing:39.753425px;}
.lsa5{letter-spacing:43.559510px;}
.ls91{letter-spacing:50.366268px;}
.ls117{letter-spacing:60.872268px;}
.lsbf{letter-spacing:62.763157px;}
.ls111{letter-spacing:68.268432px;}
.lse1{letter-spacing:89.553425px;}
.ls54{letter-spacing:93.302268px;}
.ls115{letter-spacing:306.086734px;}
.ls104{letter-spacing:638.097157px;}
.lsfc{letter-spacing:694.431157px;}
.lsc0{letter-spacing:749.938163px;}
.ls11e{letter-spacing:778.168626px;}
.lscf{letter-spacing:807.381157px;}
.lsba{letter-spacing:877.004930px;}
.ls93{letter-spacing:968.444375px;}
.ls55{letter-spacing:1017.605922px;}
.lsd6{letter-spacing:1029.248930px;}
.lsc9{letter-spacing:1063.642361px;}
.ls5c{letter-spacing:1089.136620px;}
.ls81{letter-spacing:1091.589157px;}
.ls8b{letter-spacing:1100.389762px;}
.ls40{letter-spacing:1106.838095px;}
.lscb{letter-spacing:1118.493425px;}
.ls112{letter-spacing:1153.664843px;}
.ls89{letter-spacing:1161.360777px;}
.ls99{letter-spacing:1256.899639px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf5{word-spacing:-77.372804px;}
.ws3{word-spacing:-67.307369px;}
.ws94{word-spacing:-61.752151px;}
.wsc{word-spacing:-57.274825px;}
.wsd{word-spacing:-54.942323px;}
.ws6{word-spacing:-54.938803px;}
.wsa{word-spacing:-54.904604px;}
.ws9{word-spacing:-54.903218px;}
.ws7{word-spacing:-54.898444px;}
.wsf7{word-spacing:-52.424710px;}
.ws25{word-spacing:-49.733400px;}
.ws127{word-spacing:-49.401589px;}
.ws97{word-spacing:-48.940967px;}
.ws96{word-spacing:-46.131497px;}
.ws8{word-spacing:-46.127400px;}
.wsb{word-spacing:-43.516800px;}
.ws9b{word-spacing:-43.226308px;}
.ws5{word-spacing:-43.088671px;}
.wse4{word-spacing:-40.987138px;}
.ws150{word-spacing:-40.370722px;}
.ws44{word-spacing:-39.786600px;}
.wse5{word-spacing:-39.767528px;}
.wsc5{word-spacing:-39.557338px;}
.ws120{word-spacing:-38.145518px;}
.ws155{word-spacing:-38.049786px;}
.ws42{word-spacing:-38.046051px;}
.wsd2{word-spacing:-38.040224px;}
.ws13c{word-spacing:-37.896851px;}
.wsfc{word-spacing:-37.847117px;}
.ws77{word-spacing:-37.797384px;}
.ws74{word-spacing:-37.747651px;}
.ws5f{word-spacing:-37.598450px;}
.ws95{word-spacing:-37.593115px;}
.ws5e{word-spacing:-37.548717px;}
.ws55{word-spacing:-37.498984px;}
.wsfe{word-spacing:-37.349783px;}
.ws3e{word-spacing:-37.300050px;}
.ws165{word-spacing:-37.250317px;}
.ws10e{word-spacing:-37.249482px;}
.ws11c{word-spacing:-37.248397px;}
.wsa3{word-spacing:-37.246663px;}
.ws110{word-spacing:-37.243482px;}
.wsaa{word-spacing:-37.200583px;}
.wseb{word-spacing:-37.101116px;}
.wse3{word-spacing:-37.051686px;}
.wsb0{word-spacing:-37.051383px;}
.wsaf{word-spacing:-37.032677px;}
.wsf1{word-spacing:-37.028815px;}
.ws8d{word-spacing:-37.001650px;}
.ws12e{word-spacing:-36.905099px;}
.ws7a{word-spacing:-36.902183px;}
.wsa9{word-spacing:-36.802716px;}
.ws79{word-spacing:-36.752983px;}
.ws57{word-spacing:-36.653516px;}
.ws3b{word-spacing:-36.504316px;}
.ws13e{word-spacing:-36.404849px;}
.ws1c{word-spacing:-36.389880px;}
.ws11f{word-spacing:-36.369115px;}
.ws3a{word-spacing:-36.355115px;}
.ws7b{word-spacing:-36.305382px;}
.ws81{word-spacing:-36.255649px;}
.wsac{word-spacing:-36.121605px;}
.ws11e{word-spacing:-36.114677px;}
.wsdf{word-spacing:-36.106448px;}
.ws78{word-spacing:-36.056715px;}
.ws8c{word-spacing:-36.006982px;}
.ws5b{word-spacing:-35.957248px;}
.wsc8{word-spacing:-35.907515px;}
.ws14d{word-spacing:-35.857781px;}
.ws14c{word-spacing:-35.808048px;}
.ws5d{word-spacing:-35.609114px;}
.wsd9{word-spacing:-35.418677px;}
.wsda{word-spacing:-35.410181px;}
.wsef{word-spacing:-35.260981px;}
.wsce{word-spacing:-35.211247px;}
.wsdd{word-spacing:-35.161514px;}
.wsa4{word-spacing:-35.130677px;}
.wsa5{word-spacing:-35.111780px;}
.ws13f{word-spacing:-35.062047px;}
.ws6e{word-spacing:-34.962580px;}
.ws9c{word-spacing:-34.813200px;}
.wsf9{word-spacing:-34.764916px;}
.wsfb{word-spacing:-34.763647px;}
.wsb8{word-spacing:-34.713913px;}
.wsb7{word-spacing:-34.664180px;}
.ws66{word-spacing:-34.614446px;}
.ws12b{word-spacing:-34.580914px;}
.ws23{word-spacing:-34.564713px;}
.wsa0{word-spacing:-34.465246px;}
.wsc4{word-spacing:-34.415513px;}
.ws14e{word-spacing:-34.365779px;}
.ws68{word-spacing:-34.316046px;}
.ws144{word-spacing:-34.266313px;}
.ws105{word-spacing:-34.216579px;}
.wsff{word-spacing:-34.126081px;}
.ws56{word-spacing:-34.117112px;}
.ws143{word-spacing:-34.067379px;}
.ws9f{word-spacing:-34.017646px;}
.wsd5{word-spacing:-33.969115px;}
.wsd3{word-spacing:-33.967912px;}
.ws27{word-spacing:-33.868445px;}
.ws85{word-spacing:-33.768979px;}
.wscd{word-spacing:-33.719245px;}
.ws15e{word-spacing:-33.570045px;}
.ws156{word-spacing:-33.550084px;}
.ws121{word-spacing:-33.520312px;}
.wsbe{word-spacing:-33.420845px;}
.wsb4{word-spacing:-33.371111px;}
.wsc1{word-spacing:-33.271645px;}
.wsa2{word-spacing:-33.221911px;}
.ws92{word-spacing:-33.207935px;}
.wsa8{word-spacing:-33.176755px;}
.wsdb{word-spacing:-33.174811px;}
.ws2b{word-spacing:-33.172178px;}
.wsae{word-spacing:-33.158860px;}
.ws98{word-spacing:-33.156677px;}
.wsad{word-spacing:-33.154663px;}
.ws10c{word-spacing:-33.153251px;}
.wsf4{word-spacing:-33.152516px;}
.wsde{word-spacing:-33.122444px;}
.wsf8{word-spacing:-33.090677px;}
.ws63{word-spacing:-33.072711px;}
.ws142{word-spacing:-33.022978px;}
.ws47{word-spacing:-32.973244px;}
.ws86{word-spacing:-32.923511px;}
.ws101{word-spacing:-32.889115px;}
.ws100{word-spacing:-32.886677px;}
.ws90{word-spacing:-32.873777px;}
.wsb3{word-spacing:-32.824044px;}
.ws15f{word-spacing:-32.724577px;}
.wsf3{word-spacing:-32.674844px;}
.wsb1{word-spacing:-32.625110px;}
.ws58{word-spacing:-32.475910px;}
.ws7c{word-spacing:-32.426177px;}
.ws11b{word-spacing:-32.376443px;}
.ws126{word-spacing:-32.306719px;}
.ws12f{word-spacing:-32.296301px;}
.ws12a{word-spacing:-32.293924px;}
.ws164{word-spacing:-32.276977px;}
.ws65{word-spacing:-32.227243px;}
.ws4d{word-spacing:-32.177510px;}
.ws4f{word-spacing:-32.127776px;}
.wsee{word-spacing:-32.028310px;}
.wsc3{word-spacing:-31.928843px;}
.wsb5{word-spacing:-31.829376px;}
.ws129{word-spacing:-31.814105px;}
.ws48{word-spacing:-31.729909px;}
.ws12c{word-spacing:-31.645786px;}
.ws7f{word-spacing:-31.630442px;}
.ws104{word-spacing:-31.580709px;}
.ws102{word-spacing:-31.580651px;}
.ws103{word-spacing:-31.530976px;}
.ws141{word-spacing:-31.431509px;}
.ws28{word-spacing:-31.282309px;}
.ws39{word-spacing:-31.232575px;}
.wsdc{word-spacing:-31.182842px;}
.ws35{word-spacing:-31.133108px;}
.ws122{word-spacing:-31.083375px;}
.wsc9{word-spacing:-30.983908px;}
.ws2a{word-spacing:-30.934175px;}
.ws157{word-spacing:-30.884441px;}
.ws4c{word-spacing:-30.834708px;}
.ws38{word-spacing:-30.784975px;}
.wsa6{word-spacing:-30.750677px;}
.ws60{word-spacing:-30.735241px;}
.ws162{word-spacing:-30.685508px;}
.wsf2{word-spacing:-30.548178px;}
.ws64{word-spacing:-30.536308px;}
.ws24{word-spacing:-30.387107px;}
.wsc2{word-spacing:-30.337374px;}
.ws84{word-spacing:-30.237907px;}
.ws93{word-spacing:-30.173708px;}
.ws83{word-spacing:-30.088707px;}
.ws26{word-spacing:-29.989240px;}
.ws3d{word-spacing:-29.939507px;}
.wse2{word-spacing:-29.840400px;}
.ws11{word-spacing:-29.839950px;}
.ws9d{word-spacing:-29.808677px;}
.ws130{word-spacing:-29.795483px;}
.ws9e{word-spacing:-29.790307px;}
.ws10a{word-spacing:-29.754677px;}
.ws10b{word-spacing:-29.740573px;}
.ws7d{word-spacing:-29.690840px;}
.wsc7{word-spacing:-29.641106px;}
.wsc6{word-spacing:-29.640677px;}
.ws1a{word-spacing:-29.631120px;}
.ws14f{word-spacing:-29.626084px;}
.wsf0{word-spacing:-29.591373px;}
.ws6f{word-spacing:-29.541640px;}
.ws153{word-spacing:-29.524058px;}
.ws2f{word-spacing:-29.491906px;}
.ws2e{word-spacing:-29.442173px;}
.ws8e{word-spacing:-29.342706px;}
.ws15c{word-spacing:-29.243239px;}
.ws8b{word-spacing:-29.143772px;}
.ws49{word-spacing:-29.094039px;}
.ws15a{word-spacing:-29.044306px;}
.wsb9{word-spacing:-28.994572px;}
.ws34{word-spacing:-28.944839px;}
.wsd8{word-spacing:-28.848762px;}
.ws109{word-spacing:-28.846784px;}
.wsd1{word-spacing:-28.845372px;}
.wsd6{word-spacing:-28.845134px;}
.ws113{word-spacing:-28.819482px;}
.ws115{word-spacing:-28.816268px;}
.ws114{word-spacing:-28.815115px;}
.ws112{word-spacing:-28.812677px;}
.ws21{word-spacing:-28.795639px;}
.ws166{word-spacing:-28.497238px;}
.ws40{word-spacing:-28.447505px;}
.ws59{word-spacing:-28.397771px;}
.ws3c{word-spacing:-28.298305px;}
.ws76{word-spacing:-28.248571px;}
.ws1b{word-spacing:-28.198800px;}
.ws43{word-spacing:-28.149104px;}
.ws1ad{word-spacing:-28.129126px;}
.ws91{word-spacing:-28.125531px;}
.ws4b{word-spacing:-28.099371px;}
.ws117{word-spacing:-28.060268px;}
.ws118{word-spacing:-28.059115px;}
.ws116{word-spacing:-28.049638px;}
.ws20{word-spacing:-27.999904px;}
.ws125{word-spacing:-27.850200px;}
.ws29{word-spacing:-27.800971px;}
.ws71{word-spacing:-27.751237px;}
.ws163{word-spacing:-27.602037px;}
.ws70{word-spacing:-27.552304px;}
.ws62{word-spacing:-27.502570px;}
.ws13a{word-spacing:-27.452837px;}
.ws9a{word-spacing:-27.403103px;}
.ws99{word-spacing:-27.399699px;}
.ws10{word-spacing:-27.373181px;}
.wse9{word-spacing:-27.363115px;}
.wse8{word-spacing:-27.360677px;}
.wscf{word-spacing:-27.353370px;}
.ws36{word-spacing:-27.303637px;}
.ws1ac{word-spacing:-27.293608px;}
.ws6d{word-spacing:-27.253903px;}
.ws18a{word-spacing:-27.214034px;}
.ws3f{word-spacing:-27.204170px;}
.ws190{word-spacing:-27.134461px;}
.ws161{word-spacing:-27.054970px;}
.ws187{word-spacing:-27.015101px;}
.ws15d{word-spacing:-26.955503px;}
.ws6b{word-spacing:-26.905769px;}
.ws61{word-spacing:-26.856036px;}
.ws31{word-spacing:-26.756569px;}
.ws193{word-spacing:-26.736595px;}
.ws160{word-spacing:-26.657102px;}
.ws41{word-spacing:-26.607369px;}
.wsed{word-spacing:-26.557636px;}
.ws1a5{word-spacing:-26.497876px;}
.ws2c{word-spacing:-26.458169px;}
.ws16d{word-spacing:-26.458089px;}
.ws30{word-spacing:-26.408435px;}
.ws173{word-spacing:-26.378516px;}
.ws52{word-spacing:-26.358702px;}
.ws73{word-spacing:-26.308969px;}
.ws13d{word-spacing:-26.259235px;}
.ws54{word-spacing:-26.209502px;}
.ws51{word-spacing:-26.060302px;}
.ws1b2{word-spacing:-26.060223px;}
.ws50{word-spacing:-26.010568px;}
.ws158{word-spacing:-25.960835px;}
.ws53{word-spacing:-25.911101px;}
.ws13b{word-spacing:-25.861368px;}
.ws154{word-spacing:-25.833115px;}
.ws139{word-spacing:-25.811635px;}
.ws191{word-spacing:-25.781717px;}
.ws18{word-spacing:-25.737000px;}
.ws7e{word-spacing:-25.712168px;}
.ws18f{word-spacing:-25.662357px;}
.ws89{word-spacing:-25.562968px;}
.ws1a4{word-spacing:-25.463424px;}
.ws194{word-spacing:-25.383851px;}
.ws15{word-spacing:-25.378920px;}
.wsb6{word-spacing:-25.364034px;}
.ws199{word-spacing:-25.304278px;}
.ws159{word-spacing:-25.264567px;}
.ws1a8{word-spacing:-25.264491px;}
.wsea{word-spacing:-25.214834px;}
.ws19b{word-spacing:-25.145131px;}
.ws1b4{word-spacing:-25.065558px;}
.ws18e{word-spacing:-25.025771px;}
.ws2d{word-spacing:-24.816967px;}
.ws1b8{word-spacing:-24.787052px;}
.ws22{word-spacing:-24.767233px;}
.wsd0{word-spacing:-24.667766px;}
.ws1bb{word-spacing:-24.588119px;}
.ws19f{word-spacing:-24.548332px;}
.ws175{word-spacing:-24.508546px;}
.ws108{word-spacing:-24.468833px;}
.ws106{word-spacing:-24.454261px;}
.ws6c{word-spacing:-24.419099px;}
.ws88{word-spacing:-24.369366px;}
.ws176{word-spacing:-24.349399px;}
.ws1ba{word-spacing:-24.150466px;}
.ws195{word-spacing:-24.070893px;}
.ws4a{word-spacing:-24.021232px;}
.ws82{word-spacing:-23.921765px;}
.ws1b6{word-spacing:-23.832173px;}
.ws8f{word-spacing:-23.822299px;}
.ws147{word-spacing:-23.788756px;}
.ws14a{word-spacing:-23.781115px;}
.ws146{word-spacing:-23.772677px;}
.ws148{word-spacing:-23.772565px;}
.ws1bf{word-spacing:-23.752600px;}
.ws5a{word-spacing:-23.722832px;}
.ws17a{word-spacing:-23.712814px;}
.ws1bd{word-spacing:-23.593454px;}
.ws170{word-spacing:-23.553667px;}
.ws1ab{word-spacing:-23.434307px;}
.wsb2{word-spacing:-23.424431px;}
.ws18d{word-spacing:-23.354734px;}
.wse{word-spacing:-23.275161px;}
.ws32{word-spacing:-23.235374px;}
.ws12{word-spacing:-23.219250px;}
.ws1{word-spacing:-23.195588px;}
.ws14{word-spacing:-23.185680px;}
.ws1ae{word-spacing:-23.076228px;}
.ws19e{word-spacing:-22.996655px;}
.ws1bc{word-spacing:-22.956868px;}
.wse1{word-spacing:-22.927097px;}
.ws152{word-spacing:-22.877364px;}
.ws151{word-spacing:-22.848677px;}
.ws67{word-spacing:-22.827631px;}
.ws180{word-spacing:-22.638575px;}
.ws72{word-spacing:-22.628697px;}
.ws140{word-spacing:-22.578964px;}
.ws119{word-spacing:-22.529230px;}
.ws11a{word-spacing:-22.479497px;}
.ws19d{word-spacing:-22.479429px;}
.ws69{word-spacing:-22.429763px;}
.ws188{word-spacing:-22.360069px;}
.ws19{word-spacing:-22.290480px;}
.ws1a9{word-spacing:-22.280496px;}
.ws16a{word-spacing:-22.121350px;}
.ws171{word-spacing:-22.041776px;}
.ws16{word-spacing:-21.932400px;}
.ws80{word-spacing:-21.882696px;}
.ws1be{word-spacing:-21.882630px;}
.ws1b1{word-spacing:-21.842843px;}
.ws4e{word-spacing:-21.832963px;}
.ws33{word-spacing:-21.783229px;}
.ws1b7{word-spacing:-21.643910px;}
.ws6a{word-spacing:-21.634029px;}
.ws17c{word-spacing:-21.604124px;}
.ws37{word-spacing:-21.534562px;}
.ws15b{word-spacing:-21.435095px;}
.wse0{word-spacing:-21.335629px;}
.ws17{word-spacing:-21.216240px;}
.wscb{word-spacing:-21.086962px;}
.ws186{word-spacing:-21.047111px;}
.ws8a{word-spacing:-21.037228px;}
.wsbc{word-spacing:-20.937761px;}
.wsbd{word-spacing:-20.888028px;}
.ws1af{word-spacing:-20.887965px;}
.ws5c{word-spacing:-20.838295px;}
.ws167{word-spacing:-20.768605px;}
.ws75{word-spacing:-20.689094px;}
.ws1f{word-spacing:-20.639361px;}
.ws1e{word-spacing:-20.589628px;}
.ws46{word-spacing:-20.539894px;}
.ws174{word-spacing:-20.490099px;}
.ws189{word-spacing:-20.251379px;}
.ws184{word-spacing:-20.171806px;}
.wse6{word-spacing:-20.106762px;}
.wsca{word-spacing:-20.042560px;}
.ws1a7{word-spacing:-19.933087px;}
.ws17d{word-spacing:-19.893300px;}
.ws185{word-spacing:-19.853513px;}
.ws17f{word-spacing:-19.734154px;}
.ws197{word-spacing:-19.694367px;}
.ws1b3{word-spacing:-19.535221px;}
.ws145{word-spacing:-19.341600px;}
.wscc{word-spacing:-19.341592px;}
.ws1b0{word-spacing:-18.978208px;}
.wsbf{word-spacing:-18.898692px;}
.ws192{word-spacing:-18.858848px;}
.ws179{word-spacing:-18.659915px;}
.ws198{word-spacing:-18.182476px;}
.ws13{word-spacing:-17.948760px;}
.ws168{word-spacing:-17.665250px;}
.ws17e{word-spacing:-17.625464px;}
.ws196{word-spacing:-17.426531px;}
.ws1b5{word-spacing:-17.227598px;}
.ws169{word-spacing:-17.028665px;}
.wsfa{word-spacing:-16.855235px;}
.ws19a{word-spacing:-16.511439px;}
.wsd7{word-spacing:-16.365134px;}
.wse7{word-spacing:-16.362762px;}
.ws1aa{word-spacing:-16.232933px;}
.wsf6{word-spacing:-16.219235px;}
.ws182{word-spacing:-15.835067px;}
.wsfd{word-spacing:-15.249323px;}
.ws10d{word-spacing:-15.248153px;}
.ws177{word-spacing:-15.238268px;}
.ws1a1{word-spacing:-15.079121px;}
.ws18c{word-spacing:-14.919975px;}
.ws18b{word-spacing:-14.800615px;}
.ws172{word-spacing:-14.721042px;}
.ws107{word-spacing:-14.390304px;}
.ws178{word-spacing:-14.362963px;}
.ws19c{word-spacing:-14.164030px;}
.ws1a6{word-spacing:-13.646804px;}
.ws1a0{word-spacing:-13.607017px;}
.ws183{word-spacing:-13.328511px;}
.ws10f{word-spacing:-13.240784px;}
.wsd4{word-spacing:-13.086762px;}
.ws16c{word-spacing:-13.050005px;}
.wsec{word-spacing:-12.930684px;}
.wsa7{word-spacing:-12.839500px;}
.ws181{word-spacing:-11.816620px;}
.ws1a2{word-spacing:-11.140248px;}
.ws16f{word-spacing:-11.100461px;}
.ws1b9{word-spacing:-10.344516px;}
.ws16b{word-spacing:-10.225156px;}
.ws1a3{word-spacing:-8.673479px;}
.ws17b{word-spacing:-7.997107px;}
.ws133{word-spacing:-6.644362px;}
.ws132{word-spacing:-6.604576px;}
.ws149{word-spacing:-5.871796px;}
.ws14b{word-spacing:-5.871600px;}
.ws16e{word-spacing:-5.212045px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:16.498107px;}
.ws87{word-spacing:16.511489px;}
.wsab{word-spacing:16.525953px;}
.ws2{word-spacing:16.545928px;}
.wsbb{word-spacing:16.551226px;}
.wsf{word-spacing:21.876450px;}
.ws1d{word-spacing:24.816967px;}
.ws128{word-spacing:28.481944px;}
.ws123{word-spacing:33.341171px;}
.ws124{word-spacing:77.857114px;}
.ws134{word-spacing:86.217562px;}
.ws135{word-spacing:102.450495px;}
.wsba{word-spacing:105.534275px;}
.ws131{word-spacing:114.500573px;}
.ws12d{word-spacing:119.434111px;}
.ws111{word-spacing:220.667096px;}
.ws136{word-spacing:291.436845px;}
.ws138{word-spacing:300.150110px;}
.ws137{word-spacing:494.985091px;}
.ws45{word-spacing:817.981634px;}
.ws11d{word-spacing:901.766009px;}
.wsa1{word-spacing:1021.474303px;}
.wsc0{word-spacing:1036.742456px;}
._b{margin-left:-40.568747px;}
._3{margin-left:-23.163300px;}
._2{margin-left:-21.764550px;}
._c{margin-left:-18.649995px;}
._e{margin-left:-15.647832px;}
._1{margin-left:-3.194171px;}
._8{width:2.988121px;}
._11{width:4.969714px;}
._6{width:12.252427px;}
._a{width:15.580909px;}
._0{width:16.605842px;}
._d{width:18.720540px;}
._5{width:19.848806px;}
._7{width:24.866700px;}
._4{width:33.138465px;}
._10{width:36.385782px;}
._f{width:59.845323px;}
._15{width:84.811000px;}
._18{width:126.004162px;}
._14{width:149.594449px;}
._19{width:154.330241px;}
._13{width:168.774757px;}
._16{width:195.660159px;}
._17{width:317.656214px;}
._1a{width:387.203191px;}
._1b{width:395.916457px;}
._1d{width:410.241613px;}
._1e{width:418.952898px;}
._1f{width:590.791223px;}
._1c{width:613.827665px;}
._9{width:857.588899px;}
._12{width:1275.836902px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:24.369000px;}
.fsd{font-size:27.850200px;}
.fs19{font-size:29.840400px;}
.fs1d{font-size:31.465800px;}
.fs1a{font-size:33.714000px;}
.fs16{font-size:34.813200px;}
.fs15{font-size:39.332400px;}
.fs5{font-size:39.786600px;}
.fs4{font-size:42.000000px;}
.fs13{font-size:42.082200px;}
.fsa{font-size:43.516800px;}
.fsf{font-size:44.760000px;}
.fs1b{font-size:44.951400px;}
.fs1c{font-size:45.907800px;}
.fsb{font-size:46.127400px;}
.fs10{font-size:47.342400px;}
.fs6{font-size:47.820600px;}
.fs12{font-size:49.165800px;}
.fs11{font-size:49.733400px;}
.fsc{font-size:52.115400px;}
.fse{font-size:55.950000px;}
.fs17{font-size:56.189400px;}
.fs18{font-size:57.384600px;}
.fs8{font-size:59.679600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:65.896200px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.924400px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y1e0{bottom:72.915000px;}
.y1e1{bottom:73.284000px;}
.y101{bottom:77.062500px;}
.ybc{bottom:77.064000px;}
.y78{bottom:89.914500px;}
.y2f3{bottom:89.916000px;}
.y2a5{bottom:90.057000px;}
.y25a{bottom:92.091000px;}
.y260{bottom:92.328000px;}
.y222{bottom:92.353500px;}
.ybb{bottom:92.532000px;}
.y164{bottom:92.563500px;}
.y1f1{bottom:92.635500px;}
.y140{bottom:92.664000px;}
.y24a{bottom:92.872500px;}
.y19f{bottom:93.220500px;}
.y1e9{bottom:93.390000px;}
.y4{bottom:97.125005px;}
.y100{bottom:101.830500px;}
.y1df{bottom:101.952000px;}
.y77{bottom:102.766500px;}
.y2a4{bottom:102.909000px;}
.y2f2{bottom:102.976500px;}
.y259{bottom:107.119500px;}
.y221{bottom:107.644500px;}
.y24f{bottom:107.794500px;}
.yba{bottom:108.001500px;}
.y163{bottom:108.063000px;}
.y1f0{bottom:108.208500px;}
.y13f{bottom:108.265500px;}
.y249{bottom:108.682500px;}
.y19e{bottom:109.377000px;}
.y1e8{bottom:109.717500px;}
.y2f1{bottom:115.828500px;}
.y2a3{bottom:115.903500px;}
.yff{bottom:117.385500px;}
.y1de{bottom:117.567000px;}
.y258{bottom:122.148000px;}
.y25f{bottom:122.431500px;}
.y220{bottom:122.934000px;}
.yb9{bottom:123.469500px;}
.y1ef{bottom:123.781500px;}
.y13e{bottom:123.867000px;}
.y248{bottom:124.492500px;}
.y19d{bottom:125.533500px;}
.y2f0{bottom:128.680500px;}
.y2a2{bottom:128.755500px;}
.yfe{bottom:128.793000px;}
.y61{bottom:130.413000px;}
.y162{bottom:132.147000px;}
.yfd{bottom:132.940500px;}
.y1dd{bottom:133.183500px;}
.y257{bottom:137.175000px;}
.y21f{bottom:138.225000px;}
.yb8{bottom:138.939000px;}
.y23{bottom:139.264499px;}
.y1ee{bottom:139.354500px;}
.y13d{bottom:139.468500px;}
.y247{bottom:140.302500px;}
.y2ef{bottom:141.532500px;}
.y2a1{bottom:141.607500px;}
.y19c{bottom:141.690000px;}
.y1e7{bottom:145.551000px;}
.y76{bottom:146.818500px;}
.y60{bottom:148.285500px;}
.yfc{bottom:148.497000px;}
.y1dc{bottom:148.800000px;}
.y25e{bottom:151.257000px;}
.y256{bottom:152.203500px;}
.y21e{bottom:153.516000px;}
.yb7{bottom:154.407000px;}
.y2ee{bottom:154.593000px;}
.y2a0{bottom:154.602000px;}
.y1ed{bottom:154.927500px;}
.y13c{bottom:155.070000px;}
.y246{bottom:156.112500px;}
.y161{bottom:156.231000px;}
.y19b{bottom:157.846500px;}
.y75{bottom:163.225500px;}
.yfb{bottom:164.052000px;}
.y1db{bottom:164.415000px;}
.y25d{bottom:166.521000px;}
.y255{bottom:167.232000px;}
.y2ed{bottom:167.445000px;}
.y29f{bottom:167.454000px;}
.y21d{bottom:168.805500px;}
.yb6{bottom:169.876500px;}
.y1ec{bottom:170.500500px;}
.y13b{bottom:170.671500px;}
.y160{bottom:171.730500px;}
.y245{bottom:171.922500px;}
.yfa{bottom:175.459500px;}
.y5f{bottom:179.544000px;}
.yf9{bottom:179.607000px;}
.y74{bottom:179.631000px;}
.y1da{bottom:180.031500px;}
.y2ec{bottom:180.297000px;}
.y29e{bottom:180.306000px;}
.y25c{bottom:181.786500px;}
.y254{bottom:182.260500px;}
.y19a{bottom:182.872500px;}
.y21c{bottom:184.096500px;}
.y1e6{bottom:184.564500px;}
.yb5{bottom:185.344500px;}
.y1eb{bottom:186.073500px;}
.y13a{bottom:186.273000px;}
.y244{bottom:187.732500px;}
.yf8{bottom:193.296000px;}
.y29d{bottom:193.300500px;}
.y2eb{bottom:193.357500px;}
.y196{bottom:194.233500px;}
.y199{bottom:194.992500px;}
.y5e{bottom:195.139500px;}
.y1d9{bottom:195.648000px;}
.y73{bottom:196.036500px;}
.y15f{bottom:196.546500px;}
.y1e5{bottom:196.744500px;}
.y1a{bottom:196.933500px;}
.y25b{bottom:197.050500px;}
.y253{bottom:197.287500px;}
.yf7{bottom:197.443500px;}
.y21b{bottom:199.387500px;}
.yb4{bottom:200.814000px;}
.y1e4{bottom:200.892000px;}
.y1ea{bottom:201.646500px;}
.y139{bottom:201.874500px;}
.y243{bottom:203.542500px;}
.y198{bottom:204.081000px;}
.y29c{bottom:206.151000px;}
.y2ea{bottom:206.209500px;}
.y15e{bottom:206.520000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y5d{bottom:210.733500px;}
.y197{bottom:210.940500px;}
.y1d8{bottom:211.264500px;}
.y252{bottom:212.316000px;}
.y72{bottom:212.442000px;}
.y21a{bottom:214.677000px;}
.yb3{bottom:216.282000px;}
.y1e3{bottom:217.219500px;}
.y138{bottom:217.476000px;}
.y2e9{bottom:219.061500px;}
.y29b{bottom:219.145500px;}
.y242{bottom:219.352500px;}
.yf5{bottom:220.896000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y5c{bottom:226.329000px;}
.y1d7{bottom:226.879500px;}
.y71{bottom:228.849000px;}
.y195{bottom:229.164000px;}
.y219{bottom:229.968000px;}
.yb2{bottom:231.751500px;}
.y29a{bottom:231.997500px;}
.y2e8{bottom:232.122000px;}
.y137{bottom:233.077500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y241{bottom:235.162500px;}
.yf3{bottom:238.302000px;}
.y5b{bottom:241.923000px;}
.y1d6{bottom:242.496000px;}
.y15d{bottom:244.747500px;}
.y2e7{bottom:244.974000px;}
.y299{bottom:244.992000px;}
.y70{bottom:245.254500px;}
.y218{bottom:245.259000px;}
.y194{bottom:245.320500px;}
.yf6{bottom:245.475000px;}
.y251{bottom:246.198000px;}
.yb1{bottom:247.219500px;}
.y136{bottom:248.679000px;}
.y240{bottom:250.972500px;}
.y1e2{bottom:251.101500px;}
.yf4{bottom:251.718000px;}
.yf0{bottom:255.496500px;}
.y5a{bottom:257.518500px;}
.y298{bottom:257.844000px;}
.y2e6{bottom:258.034500px;}
.y1d5{bottom:258.112500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y15c{bottom:260.247000px;}
.y217{bottom:260.548500px;}
.y6f{bottom:261.660000px;}
.yb0{bottom:262.689000px;}
.y135{bottom:264.280500px;}
.y23f{bottom:266.782500px;}
.yf2{bottom:269.050500px;}
.y297{bottom:270.696000px;}
.y2e5{bottom:270.886500px;}
.y193{bottom:271.374000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y59{bottom:273.112500px;}
.yf1{bottom:273.514500px;}
.y1d4{bottom:273.729000px;}
.y15b{bottom:275.746500px;}
.y216{bottom:275.839500px;}
.y6e{bottom:278.067000px;}
.yaf{bottom:278.157000px;}
.y134{bottom:279.882000px;}
.y296{bottom:283.690500px;}
.y2e4{bottom:283.738500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y23e{bottom:287.202000px;}
.y58{bottom:288.708000px;}
.y1d3{bottom:289.344000px;}
.yef{bottom:290.704500px;}
.y215{bottom:291.129000px;}
.y15a{bottom:291.246000px;}
.y18f{bottom:292.612500px;}
.yae{bottom:293.625000px;}
.y6d{bottom:294.472500px;}
.y133{bottom:295.483500px;}
.y295{bottom:296.542500px;}
.y2e3{bottom:296.799000px;}
.y18e{bottom:301.299000px;}
.y57{bottom:304.302000px;}
.y23c{bottom:304.396500px;}
.y1d2{bottom:304.960500px;}
.yee{bottom:306.261000px;}
.y214{bottom:306.420000px;}
.y159{bottom:306.747000px;}
.y192{bottom:307.726500px;}
.yad{bottom:309.094500px;}
.y294{bottom:309.394500px;}
.y2e2{bottom:309.651000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y6c{bottom:310.878000px;}
.y18b{bottom:317.539500px;}
.y24e{bottom:317.724000px;}
.y23d{bottom:317.950500px;}
.y191{bottom:318.741000px;}
.y56{bottom:319.897500px;}
.y213{bottom:321.711000px;}
.yed{bottom:321.816000px;}
.y158{bottom:322.246500px;}
.y293{bottom:322.387500px;}
.y2e1{bottom:322.711500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1d1{bottom:323.319000px;}
.y18a{bottom:324.399000px;}
.yac{bottom:324.562500px;}
.y132{bottom:326.596500px;}
.y6b{bottom:327.283500px;}
.y190{bottom:327.387000px;}
.y18d{bottom:331.093500px;}
.y292{bottom:335.239500px;}
.y55{bottom:335.491500px;}
.y18c{bottom:335.556000px;}
.y2e0{bottom:335.563500px;}
.y212{bottom:337.000500px;}
.y157{bottom:337.746000px;}
.yab{bottom:340.032000px;}
.y131{bottom:342.288000px;}
.y23b{bottom:342.511500px;}
.y1d0{bottom:343.138500px;}
.y6a{bottom:343.690500px;}
.yec{bottom:344.760000px;}
.y11{bottom:348.133500px;}
.y291{bottom:348.234000px;}
.y2df{bottom:348.624000px;}
.y54{bottom:351.087000px;}
.yaa{bottom:355.500000px;}
.y156{bottom:355.872000px;}
.y189{bottom:356.557500px;}
.y23a{bottom:358.321500px;}
.y69{bottom:360.096000px;}
.yeb{bottom:360.451500px;}
.y290{bottom:361.228500px;}
.y2de{bottom:361.476000px;}
.y1cf{bottom:363.682500px;}
.y155{bottom:365.845500px;}
.y53{bottom:366.681000px;}
.y211{bottom:367.182000px;}
.ya9{bottom:370.969500px;}
.y188{bottom:372.714000px;}
.y130{bottom:373.312500px;}
.y28f{bottom:374.080500px;}
.y239{bottom:374.131500px;}
.y2dd{bottom:374.328000px;}
.y68{bottom:376.501500px;}
.y1ce{bottom:379.299000px;}
.y52{bottom:382.276500px;}
.yea{bottom:382.752000px;}
.ya8{bottom:386.437500px;}
.y10{bottom:386.785499px;}
.y28e{bottom:387.075000px;}
.y2dc{bottom:387.388500px;}
.y187{bottom:388.870500px;}
.y12f{bottom:388.914000px;}
.y238{bottom:389.941500px;}
.y67{bottom:392.907000px;}
.y210{bottom:396.159000px;}
.y154{bottom:396.441000px;}
.y51{bottom:397.870500px;}
.ye9{bottom:398.308500px;}
.y28d{bottom:399.927000px;}
.y2db{bottom:400.240500px;}
.ya7{bottom:401.907000px;}
.y1cd{bottom:403.731000px;}
.y12e{bottom:404.514000px;}
.y186{bottom:405.027000px;}
.y237{bottom:405.751500px;}
.yf{bottom:408.044999px;}
.y66{bottom:409.314000px;}
.ye8{bottom:410.085000px;}
.y20f{bottom:411.450000px;}
.y153{bottom:411.940500px;}
.y28c{bottom:412.779000px;}
.y2da{bottom:413.092500px;}
.y50{bottom:413.466000px;}
.ye7{bottom:413.863500px;}
.ya6{bottom:417.375000px;}
.y12d{bottom:420.115500px;}
.y185{bottom:421.183500px;}
.y236{bottom:421.561500px;}
.ye6{bottom:425.641500px;}
.y65{bottom:425.719500px;}
.y28b{bottom:425.773500px;}
.y2d9{bottom:425.944500px;}
.y20e{bottom:426.741000px;}
.y152{bottom:427.440000px;}
.y1cc{bottom:428.163000px;}
.y4f{bottom:429.060000px;}
.ye5{bottom:429.792000px;}
.ya5{bottom:432.844500px;}
.y12c{bottom:435.717000px;}
.y184{bottom:437.340000px;}
.y235{bottom:437.371500px;}
.y28a{bottom:438.625500px;}
.y2d8{bottom:439.005000px;}
.y64{bottom:442.125000px;}
.y151{bottom:442.941000px;}
.y1cb{bottom:443.779500px;}
.y4e{bottom:444.655500px;}
.ye4{bottom:445.347000px;}
.ya4{bottom:448.312500px;}
.y12b{bottom:451.318500px;}
.y289{bottom:451.618500px;}
.y2d7{bottom:451.857000px;}
.y234{bottom:453.181500px;}
.y183{bottom:453.496500px;}
.ye3{bottom:456.754500px;}
.y150{bottom:458.440500px;}
.y63{bottom:458.530500px;}
.y1ca{bottom:459.396000px;}
.y4d{bottom:460.249500px;}
.ye2{bottom:460.902000px;}
.ya3{bottom:463.782000px;}
.y288{bottom:464.470500px;}
.y2d6{bottom:464.917500px;}
.y182{bottom:469.653000px;}
.y14f{bottom:473.940000px;}
.y62{bottom:474.937500px;}
.y1c9{bottom:475.011000px;}
.ye1{bottom:476.458500px;}
.y20d{bottom:477.061500px;}
.y287{bottom:477.322500px;}
.y2d5{bottom:477.769500px;}
.ya2{bottom:479.250000px;}
.y12a{bottom:482.271000px;}
.ye{bottom:484.864502px;}
.y233{bottom:485.395500px;}
.y181{bottom:485.809500px;}
.y14e{bottom:489.441000px;}
.y286{bottom:490.317000px;}
.y2d4{bottom:490.621500px;}
.y1c8{bottom:490.627500px;}
.y4c{bottom:491.343000px;}
.ye0{bottom:492.013500px;}
.ya1{bottom:494.719500px;}
.y129{bottom:497.962500px;}
.yd{bottom:502.864502px;}
.y285{bottom:503.169000px;}
.y2d3{bottom:503.682000px;}
.y14d{bottom:504.940500px;}
.ydf{bottom:507.568500px;}
.ya0{bottom:510.187500px;}
.y24d{bottom:510.541500px;}
.y128{bottom:513.654000px;}
.y284{bottom:516.021000px;}
.y2d2{bottom:516.534000px;}
.y1c7{bottom:516.663000px;}
.y232{bottom:518.205000px;}
.y14c{bottom:520.440000px;}
.y180{bottom:520.450500px;}
.yc{bottom:520.864502px;}
.yde{bottom:523.125000px;}
.y1c4{bottom:523.884000px;}
.y9f{bottom:525.657000px;}
.y283{bottom:528.873000px;}
.y127{bottom:529.345500px;}
.y2d1{bottom:529.386000px;}
.y1bf{bottom:533.857500px;}
.y231{bottom:534.015000px;}
.y14b{bottom:535.941000px;}
.y1c2{bottom:538.105500px;}
.y3f{bottom:538.572000px;}
.ydd{bottom:538.680000px;}
.yb{bottom:538.864499px;}
.y9e{bottom:541.125000px;}
.y282{bottom:541.725000px;}
.y2d0{bottom:542.238000px;}
.y1c3{bottom:543.705000px;}
.y126{bottom:545.035500px;}
.y4b{bottom:546.696000px;}
.y1c1{bottom:546.714000px;}
.y1c6{bottom:547.411500px;}
.y230{bottom:549.825000px;}
.y3e{bottom:551.424000px;}
.y14a{bottom:551.440500px;}
.y1c5{bottom:551.875500px;}
.ydc{bottom:554.235000px;}
.y281{bottom:554.719500px;}
.y2cf{bottom:555.298500px;}
.y1c0{bottom:555.321000px;}
.y9d{bottom:556.594500px;}
.ya{bottom:556.864499px;}
.y17f{bottom:557.418000px;}
.y125{bottom:560.727000px;}
.y4a{bottom:561.042000px;}
.y3d{bottom:564.276000px;}
.y149{bottom:566.940000px;}
.y280{bottom:567.570000px;}
.y2ce{bottom:568.150500px;}
.ydb{bottom:569.791500px;}
.y22f{bottom:570.756000px;}
.y9c{bottom:572.062500px;}
.y49{bottom:575.388000px;}
.y124{bottom:576.418500px;}
.y17e{bottom:576.967500px;}
.y3c{bottom:577.126500px;}
.y27f{bottom:580.422000px;}
.y22e{bottom:580.729500px;}
.y2cd{bottom:581.002500px;}
.y148{bottom:582.439500px;}
.y1be{bottom:583.707000px;}
.yda{bottom:585.346500px;}
.y22d{bottom:586.843500px;}
.y17d{bottom:586.941000px;}
.y9b{bottom:587.532000px;}
.y48{bottom:589.734000px;}
.y3b{bottom:589.978500px;}
.y1bb{bottom:590.928000px;}
.y123{bottom:592.110000px;}
.y27e{bottom:593.416500px;}
.y2cc{bottom:594.063000px;}
.y147{bottom:597.940500px;}
.yd9{bottom:600.901500px;}
.y3a{bottom:602.830500px;}
.y9a{bottom:603.000000px;}
.y47{bottom:604.080000px;}
.y27d{bottom:606.268500px;}
.y2cb{bottom:606.915000px;}
.y122{bottom:607.800000px;}
.y22c{bottom:610.579500px;}
.y146{bottom:613.440000px;}
.y1bd{bottom:614.455500px;}
.y39{bottom:615.682500px;}
.y17c{bottom:616.168500px;}
.yd8{bottom:616.458000px;}
.y46{bottom:618.426000px;}
.y99{bottom:618.469500px;}
.y1bc{bottom:618.919500px;}
.y27c{bottom:619.120500px;}
.y2ca{bottom:619.767000px;}
.y121{bottom:623.491500px;}
.y22b{bottom:626.389500px;}
.y145{bottom:628.939500px;}
.yd7{bottom:632.013000px;}
.y27b{bottom:632.115000px;}
.y17b{bottom:632.325000px;}
.y45{bottom:632.773500px;}
.y2c9{bottom:632.827500px;}
.y98{bottom:633.937500px;}
.y120{bottom:636.310500px;}
.y38{bottom:639.459000px;}
.y11e{bottom:641.298000px;}
.y22a{bottom:642.199500px;}
.y144{bottom:644.440500px;}
.y27a{bottom:644.967000px;}
.y9{bottom:645.510000px;}
.y2c8{bottom:645.679500px;}
.y11f{bottom:645.867000px;}
.y44{bottom:647.119500px;}
.yd6{bottom:647.568000px;}
.y17a{bottom:648.481500px;}
.y1ba{bottom:648.591000px;}
.y97{bottom:649.407000px;}
.y37{bottom:652.311000px;}
.y279{bottom:657.961500px;}
.y229{bottom:658.009500px;}
.y2c7{bottom:658.531500px;}
.y1b9{bottom:658.564500px;}
.y143{bottom:659.940000px;}
.y43{bottom:661.465500px;}
.yd5{bottom:663.124500px;}
.y11d{bottom:664.230000px;}
.y179{bottom:664.638000px;}
.y96{bottom:664.875000px;}
.y36{bottom:665.163000px;}
.y8{bottom:666.771000px;}
.y278{bottom:670.813500px;}
.y2c6{bottom:671.592000px;}
.y228{bottom:673.819500px;}
.y142{bottom:675.439500px;}
.y42{bottom:675.811500px;}
.y35{bottom:678.015000px;}
.y11c{bottom:679.921500px;}
.y95{bottom:680.344500px;}
.y178{bottom:680.794500px;}
.y277{bottom:683.664000px;}
.y2c5{bottom:684.444000px;}
.y227{bottom:689.629500px;}
.y41{bottom:690.157500px;}
.y34{bottom:690.867000px;}
.y1b8{bottom:692.689500px;}
.yd4{bottom:694.099500px;}
.y11b{bottom:695.613000px;}
.y94{bottom:695.812500px;}
.y276{bottom:696.516000px;}
.y2c4{bottom:697.294500px;}
.y24c{bottom:701.230500px;}
.y226{bottom:705.439500px;}
.y1b7{bottom:708.306000px;}
.y275{bottom:709.510500px;}
.y2c3{bottom:710.356500px;}
.y93{bottom:711.282000px;}
.y11a{bottom:711.303000px;}
.y177{bottom:715.435500px;}
.y40{bottom:720.982500px;}
.y33{bottom:720.990000px;}
.y225{bottom:721.249500px;}
.y274{bottom:722.362500px;}
.y2c2{bottom:723.208500px;}
.y1b6{bottom:723.921000px;}
.yd3{bottom:725.211000px;}
.y141{bottom:725.760000px;}
.y7{bottom:726.298500px;}
.y92{bottom:726.750000px;}
.y119{bottom:726.994500px;}
.y2c1{bottom:736.269000px;}
.y224{bottom:737.059500px;}
.y1b5{bottom:739.647000px;}
.y91{bottom:742.219500px;}
.y2c0{bottom:749.121000px;}
.y273{bottom:751.119000px;}
.y176{bottom:752.403000px;}
.y3{bottom:752.599495px;}
.y223{bottom:752.869500px;}
.y118{bottom:755.245500px;}
.y1b4{bottom:755.262000px;}
.yd2{bottom:755.779500px;}
.y90{bottom:757.687500px;}
.y2bf{bottom:761.973000px;}
.y1b3{bottom:766.731000px;}
.y175{bottom:768.559500px;}
.y32{bottom:769.387500px;}
.y117{bottom:770.847000px;}
.y1b2{bottom:770.878500px;}
.yd1{bottom:771.334500px;}
.y8f{bottom:773.157000px;}
.y2be{bottom:775.033500px;}
.y31{bottom:782.239500px;}
.y272{bottom:782.929500px;}
.y174{bottom:784.716000px;}
.y116{bottom:786.448500px;}
.yd0{bottom:786.889500px;}
.y2bd{bottom:787.885500px;}
.y8e{bottom:788.625000px;}
.y20c{bottom:791.163000px;}
.y1b1{bottom:794.452500px;}
.y30{bottom:795.091500px;}
.y271{bottom:798.657000px;}
.y2bc{bottom:800.946000px;}
.y115{bottom:802.050000px;}
.ycf{bottom:802.446000px;}
.y20b{bottom:804.015000px;}
.y8d{bottom:804.094500px;}
.y173{bottom:806.782500px;}
.y2f{bottom:807.943500px;}
.y1af{bottom:809.769000px;}
.y1b0{bottom:810.142500px;}
.y114{bottom:813.504000px;}
.y2bb{bottom:813.798000px;}
.y270{bottom:814.383000px;}
.y2e{bottom:816.715500px;}
.y172{bottom:816.756000px;}
.y113{bottom:817.651500px;}
.yce{bottom:818.001000px;}
.y8c{bottom:819.562500px;}
.y20a{bottom:821.839500px;}
.y2ba{bottom:826.650000px;}
.ycd{bottom:833.556000px;}
.y2d{bottom:833.646000px;}
.y209{bottom:834.691500px;}
.y8b{bottom:835.032000px;}
.y2b9{bottom:839.710500px;}
.y111{bottom:843.073500px;}
.y1ae{bottom:845.746500px;}
.y26f{bottom:846.015000px;}
.y2c{bottom:848.397000px;}
.y171{bottom:848.670000px;}
.ycc{bottom:849.112500px;}
.y8a{bottom:850.500000px;}
.y208{bottom:852.514500px;}
.y2b8{bottom:852.562500px;}
.y10f{bottom:858.718500px;}
.ycb{bottom:864.667500px;}
.y170{bottom:864.826500px;}
.y207{bottom:865.366500px;}
.y2b7{bottom:865.623000px;}
.y89{bottom:865.969500px;}
.y1ad{bottom:866.400000px;}
.y112{bottom:866.772000px;}
.y2b{bottom:867.823500px;}
.y1ac{bottom:870.178500px;}
.y110{bottom:872.134500px;}
.y10c{bottom:875.913000px;}
.y26e{bottom:877.825500px;}
.y2b6{bottom:878.475000px;}
.y2{bottom:879.369000px;}
.yca{bottom:880.224000px;}
.y16f{bottom:880.983000px;}
.y88{bottom:881.437500px;}
.y206{bottom:883.189500px;}
.y10e{bottom:889.467000px;}
.y2b5{bottom:891.327000px;}
.y24b{bottom:892.434000px;}
.y26d{bottom:893.551500px;}
.y10d{bottom:893.929500px;}
.y1ab{bottom:895.066500px;}
.yc9{bottom:895.779000px;}
.y205{bottom:896.041500px;}
.y87{bottom:896.907000px;}
.y16e{bottom:897.139500px;}
.y2a{bottom:899.310000px;}
.y2b4{bottom:904.387500px;}
.y26c{bottom:909.279000px;}
.y1aa{bottom:910.683000px;}
.yc8{bottom:911.334000px;}
.y250{bottom:912.160500px;}
.y86{bottom:912.375000px;}
.y16d{bottom:913.296000px;}
.y10b{bottom:913.611000px;}
.y204{bottom:913.866000px;}
.y2b3{bottom:917.239500px;}
.y26b{bottom:925.005000px;}
.y29{bottom:925.162500px;}
.y1a9{bottom:926.298000px;}
.yc7{bottom:926.890500px;}
.y85{bottom:927.844500px;}
.y10a{bottom:929.212500px;}
.y203{bottom:929.931000px;}
.y2b2{bottom:930.091500px;}
.y26a{bottom:940.732500px;}
.y1a8{bottom:941.914500px;}
.yc6{bottom:942.445500px;}
.y202{bottom:942.783000px;}
.y2b1{bottom:943.152000px;}
.y84{bottom:943.312500px;}
.y109{bottom:944.814000px;}
.y16c{bottom:947.937000px;}
.y2b0{bottom:956.004000px;}
.y269{bottom:956.458500px;}
.y1a7{bottom:957.531000px;}
.yc5{bottom:958.000500px;}
.y28{bottom:958.159500px;}
.y83{bottom:958.782000px;}
.y1{bottom:966.726000px;}
.y108{bottom:967.849500px;}
.y2af{bottom:968.856000px;}
.y2fa{bottom:969.483000px;}
.y268{bottom:972.186000px;}
.y1a6{bottom:973.147500px;}
.yc4{bottom:973.557000px;}
.y82{bottom:974.250000px;}
.y200{bottom:977.037000px;}
.y201{bottom:977.040000px;}
.y1ff{bottom:980.358000px;}
.y2ae{bottom:981.916500px;}
.y2f9{bottom:982.333500px;}
.y107{bottom:983.541000px;}
.y16b{bottom:984.904500px;}
.y267{bottom:987.912000px;}
.y1a5{bottom:988.762500px;}
.yc3{bottom:989.112000px;}
.y81{bottom:989.719500px;}
.y2ad{bottom:994.768500px;}
.y2f8{bottom:995.185500px;}
.y16a{bottom:1001.061000px;}
.y1fc{bottom:1002.669000px;}
.y1fd{bottom:1003.336500px;}
.y1fe{bottom:1003.339500px;}
.y266{bottom:1003.639500px;}
.y1a4{bottom:1004.379000px;}
.yc2{bottom:1004.667000px;}
.y27{bottom:1005.039000px;}
.y80{bottom:1005.187500px;}
.y106{bottom:1005.934500px;}
.y1fb{bottom:1006.659000px;}
.y2ac{bottom:1007.829000px;}
.y2f7{bottom:1008.037500px;}
.y169{bottom:1017.217500px;}
.y265{bottom:1019.367000px;}
.y1a3{bottom:1019.995500px;}
.yc1{bottom:1020.223500px;}
.y7f{bottom:1020.657000px;}
.y2ab{bottom:1020.681000px;}
.y2f6{bottom:1020.889500px;}
.y105{bottom:1021.536000px;}
.y1f9{bottom:1028.478000px;}
.y1fa{bottom:1028.481000px;}
.y1f8{bottom:1031.800500px;}
.y168{bottom:1033.374000px;}
.y2aa{bottom:1033.533000px;}
.y2f5{bottom:1033.741500px;}
.y264{bottom:1035.093000px;}
.y1a2{bottom:1035.610500px;}
.yc0{bottom:1035.778500px;}
.y7e{bottom:1036.125000px;}
.y104{bottom:1037.137500px;}
.y26{bottom:1044.169500px;}
.y2a9{bottom:1046.383500px;}
.y2f4{bottom:1046.593500px;}
.y1f6{bottom:1047.892500px;}
.y1f7{bottom:1047.895500px;}
.y167{bottom:1049.530500px;}
.y263{bottom:1050.820500px;}
.y1f5{bottom:1051.215000px;}
.y1a1{bottom:1051.227000px;}
.ybf{bottom:1051.333500px;}
.y7c{bottom:1051.594500px;}
.y7d{bottom:1056.693000px;}
.y103{bottom:1058.134500px;}
.y2a8{bottom:1059.445500px;}
.y166{bottom:1065.687000px;}
.y262{bottom:1066.546500px;}
.y1a0{bottom:1066.843500px;}
.ybe{bottom:1066.890000px;}
.y7b{bottom:1067.062500px;}
.y102{bottom:1068.108000px;}
.y1f4{bottom:1070.895000px;}
.y2a7{bottom:1072.297500px;}
.y165{bottom:1081.843500px;}
.y261{bottom:1082.274000px;}
.ybd{bottom:1082.445000px;}
.y7a{bottom:1082.532000px;}
.y2a6{bottom:1085.148000px;}
.y1f3{bottom:1086.961500px;}
.y25{bottom:1087.368000px;}
.y79{bottom:1098.000000px;}
.y1f2{bottom:1099.813500px;}
.y24{bottom:1127.889000px;}
.h24{height:2.639692px;}
.h38{height:20.319398px;}
.h10{height:22.725763px;}
.h52{height:22.790664px;}
.h36{height:24.813504px;}
.h23{height:27.467615px;}
.h31{height:28.407571px;}
.h18{height:28.948646px;}
.h11{height:31.391627px;}
.h7{height:32.130000px;}
.h12{height:32.451000px;}
.ha{height:32.465866px;}
.h51{height:33.084230px;}
.hb{height:35.195962px;}
.h16{height:36.186029px;}
.h13{height:36.524160px;}
.h14{height:39.239653px;}
.h15{height:40.582454px;}
.h21{height:41.355398px;}
.h17{height:41.545104px;}
.h54{height:42.945398px;}
.h55{height:42.951398px;}
.h45{height:44.017808px;}
.h4e{height:44.023808px;}
.h3f{height:44.649571px;}
.h48{height:45.202829px;}
.h6{height:45.900000px;}
.h50{height:46.356230px;}
.h3{height:48.195000px;}
.h3d{height:48.455615px;}
.h19{height:48.461615px;}
.hd{height:48.698554px;}
.h1f{height:48.807571px;}
.h1c{height:49.083571px;}
.h29{height:49.089571px;}
.h2e{height:49.401571px;}
.h3a{height:50.675615px;}
.h39{height:51.119692px;}
.h2d{height:51.609571px;}
.h25{height:51.615571px;}
.h47{height:52.055759px;}
.h4f{height:52.551763px;}
.h46{height:52.557763px;}
.h42{height:52.894646px;}
.h30{height:53.652076px;}
.h49{height:54.447763px;}
.h2{height:55.080000px;}
.h28{height:55.696454px;}
.h27{height:56.469398px;}
.h1b{height:57.172454px;}
.h1e{height:57.184454px;}
.h44{height:57.945398px;}
.h4b{height:59.977808px;}
.hf{height:62.533709px;}
.h20{height:62.981615px;}
.h1a{height:65.051615px;}
.h1d{height:65.685571px;}
.h26{height:65.789615px;}
.h4d{height:65.843759px;}
.h4a{height:66.323759px;}
.h43{height:67.265615px;}
.hc{height:68.482310px;}
.h37{height:68.799398px;}
.h22{height:70.468454px;}
.h2c{height:70.474454px;}
.he{height:71.362934px;}
.h2f{height:74.347766px;}
.h5{height:78.030000px;}
.h35{height:78.629653px;}
.h4c{height:79.601759px;}
.h2a{height:79.972454px;}
.h2b{height:80.476454px;}
.h34{height:80.745398px;}
.h41{height:81.249398px;}
.h32{height:91.509571px;}
.h53{height:100.121692px;}
.h33{height:105.443692px;}
.h3b{height:105.615398px;}
.h4{height:119.055004px;}
.h40{height:119.860454px;}
.h3e{height:120.227692px;}
.h3c{height:161.393692px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:49.068000px;}
.x3a{left:53.736000px;}
.x60{left:55.867500px;}
.x9{left:63.780000px;}
.x13{left:67.000500px;}
.xe{left:73.066500px;}
.x39{left:78.394500px;}
.x38{left:79.771500px;}
.xd{left:81.712500px;}
.xf{left:86.196000px;}
.x3c{left:87.315000px;}
.x3d{left:90.940500px;}
.x3b{left:94.950000px;}
.x43{left:97.182000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2d{left:108.568500px;}
.x2b{left:109.605000px;}
.x2c{left:113.746500px;}
.x31{left:117.028500px;}
.x2e{left:129.678000px;}
.x32{left:133.500000px;}
.x2f{left:138.879000px;}
.x61{left:145.378500px;}
.x44{left:147.100500px;}
.x46{left:148.875000px;}
.x45{left:151.768500px;}
.x58{left:153.375000px;}
.x3f{left:163.197000px;}
.x3e{left:170.754000px;}
.x34{left:172.039500px;}
.x6c{left:175.875000px;}
.x33{left:189.022500px;}
.x57{left:191.284500px;}
.x4{left:203.484001px;}
.x40{left:230.220000px;}
.x6b{left:234.144000px;}
.x68{left:250.705500px;}
.x6a{left:252.904500px;}
.x69{left:256.951500px;}
.x14{left:267.936000px;}
.x5b{left:270.696000px;}
.x5f{left:290.358000px;}
.x2a{left:301.258500px;}
.x59{left:302.877000px;}
.xa{left:308.097000px;}
.x56{left:311.284500px;}
.x8{left:313.554000px;}
.x5c{left:321.598500px;}
.x5a{left:327.163500px;}
.x67{left:336.336000px;}
.x6{left:340.959000px;}
.xb{left:342.649500px;}
.x41{left:348.340500px;}
.x5d{left:362.352000px;}
.x5{left:368.044500px;}
.x7{left:382.161000px;}
.x42{left:402.066000px;}
.x30{left:423.976500px;}
.x5e{left:434.922000px;}
.x15{left:452.550000px;}
.x3{left:454.959000px;}
.x54{left:458.443500px;}
.x47{left:463.332000px;}
.x10{left:467.262000px;}
.x16{left:470.482500px;}
.x4e{left:480.639000px;}
.x4b{left:481.944000px;}
.x11{left:485.194500px;}
.x36{left:493.168500px;}
.x1d{left:496.020000px;}
.x1e{left:498.558000px;}
.x4c{left:500.907000px;}
.x1c{left:502.729500px;}
.x48{left:506.058000px;}
.x4f{left:508.857000px;}
.x49{left:510.636000px;}
.x55{left:511.659000px;}
.x4d{left:515.913000px;}
.x1f{left:518.661000px;}
.x35{left:522.855000px;}
.x20{left:527.862000px;}
.x37{left:529.462500px;}
.x4a{left:532.438500px;}
.x51{left:534.934500px;}
.x63{left:538.153500px;}
.x50{left:540.018000px;}
.x52{left:552.682500px;}
.x21{left:554.349000px;}
.x64{left:555.903000px;}
.x28{left:576.847500px;}
.x65{left:584.218500px;}
.x29{left:587.496000px;}
.x23{left:589.422000px;}
.x24{left:591.972000px;}
.x66{left:593.416500px;}
.x22{left:597.057000px;}
.xc{left:603.453000px;}
.x17{left:606.166500px;}
.x25{left:612.063000px;}
.x26{left:621.264000px;}
.x53{left:628.219500px;}
.x18{left:633.352500px;}
.x19{left:661.830000px;}
.x1a{left:770.511000px;}
.x1b{left:804.045000px;}
.x62{left:805.548000px;}
.x27{left:812.746500px;}
@media print{
.v19{vertical-align:-32.352000pt;}
.v17{vertical-align:-30.602667pt;}
.v3{vertical-align:-29.338667pt;}
.v6{vertical-align:-18.128000pt;}
.v4{vertical-align:-14.501333pt;}
.v18{vertical-align:-12.485333pt;}
.ve{vertical-align:-7.493333pt;}
.v22{vertical-align:-5.994667pt;}
.v0{vertical-align:0.000000pt;}
.v27{vertical-align:1.413333pt;}
.vc{vertical-align:5.941333pt;}
.vd{vertical-align:7.493333pt;}
.v1a{vertical-align:11.909333pt;}
.va{vertical-align:13.434667pt;}
.v7{vertical-align:14.746667pt;}
.v24{vertical-align:16.394667pt;}
.v9{vertical-align:18.128000pt;}
.v5{vertical-align:19.253333pt;}
.v10{vertical-align:20.629333pt;}
.v1{vertical-align:24.021333pt;}
.vf{vertical-align:26.565333pt;}
.v12{vertical-align:27.525333pt;}
.v2{vertical-align:29.338667pt;}
.v13{vertical-align:30.320000pt;}
.vb{vertical-align:31.568000pt;}
.v8{vertical-align:33.408000pt;}
.v11{vertical-align:35.013333pt;}
.v23{vertical-align:38.586667pt;}
.v1b{vertical-align:43.093333pt;}
.v14{vertical-align:44.442667pt;}
.v1e{vertical-align:49.626667pt;}
.v15{vertical-align:56.090667pt;}
.v1d{vertical-align:57.120000pt;}
.v20{vertical-align:61.952000pt;}
.v26{vertical-align:64.058667pt;}
.v25{vertical-align:68.880000pt;}
.v1c{vertical-align:86.656000pt;}
.v16{vertical-align:91.381333pt;}
.v21{vertical-align:104.522667pt;}
.v1f{vertical-align:148.608000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000084pt;}
.ls4d{letter-spacing:0.000087pt;}
.ls2{letter-spacing:0.000167pt;}
.ls4e{letter-spacing:0.000219pt;}
.ls1{letter-spacing:0.000265pt;}
.lse0{letter-spacing:0.000327pt;}
.ls2f{letter-spacing:0.000571pt;}
.lsfb{letter-spacing:0.000662pt;}
.lsef{letter-spacing:0.000693pt;}
.ls2a{letter-spacing:0.000801pt;}
.lsbe{letter-spacing:0.000867pt;}
.ls44{letter-spacing:0.000876pt;}
.lsfd{letter-spacing:0.000922pt;}
.ls9b{letter-spacing:0.000960pt;}
.ls9d{letter-spacing:0.001149pt;}
.lsbb{letter-spacing:0.001509pt;}
.ls42{letter-spacing:0.001566pt;}
.ls105{letter-spacing:0.001696pt;}
.ls3d{letter-spacing:0.001749pt;}
.ls87{letter-spacing:0.001982pt;}
.ls107{letter-spacing:0.001987pt;}
.lsc4{letter-spacing:0.001998pt;}
.ls38{letter-spacing:0.002082pt;}
.lsf4{letter-spacing:0.002088pt;}
.ls30{letter-spacing:0.002111pt;}
.lsf5{letter-spacing:0.002379pt;}
.lsff{letter-spacing:0.002527pt;}
.lsb6{letter-spacing:0.002604pt;}
.lsee{letter-spacing:0.002629pt;}
.ls96{letter-spacing:0.002685pt;}
.ls4c{letter-spacing:0.002709pt;}
.lsbd{letter-spacing:0.002806pt;}
.ls48{letter-spacing:0.003044pt;}
.ls119{letter-spacing:0.003055pt;}
.ls103{letter-spacing:0.003163pt;}
.ls35{letter-spacing:0.003287pt;}
.lsa6{letter-spacing:0.003406pt;}
.lsa0{letter-spacing:0.003560pt;}
.lsec{letter-spacing:0.003573pt;}
.ls4a{letter-spacing:0.003877pt;}
.ls60{letter-spacing:0.004117pt;}
.ls5e{letter-spacing:0.004203pt;}
.ls3a{letter-spacing:0.004487pt;}
.ls45{letter-spacing:0.997283pt;}
.lse2{letter-spacing:0.998677pt;}
.ls50{letter-spacing:1.002616pt;}
.ls8e{letter-spacing:1.044165pt;}
.ls92{letter-spacing:1.049499pt;}
.ls53{letter-spacing:1.996233pt;}
.ls63{letter-spacing:2.001566pt;}
.lsbc{letter-spacing:2.181387pt;}
.lsed{letter-spacing:2.653097pt;}
.ls10f{letter-spacing:2.653194pt;}
.ls2e{letter-spacing:2.653473pt;}
.ls9f{letter-spacing:2.653711pt;}
.ls3{letter-spacing:2.654020pt;}
.ls43{letter-spacing:2.655232pt;}
.ls37{letter-spacing:2.657751pt;}
.ls52{letter-spacing:2.658279pt;}
.ls100{letter-spacing:2.658430pt;}
.lsfa{letter-spacing:2.658527pt;}
.ls2b{letter-spacing:2.658806pt;}
.ls25{letter-spacing:2.658982pt;}
.ls39{letter-spacing:2.659044pt;}
.ls5{letter-spacing:2.659115pt;}
.ls4{letter-spacing:2.659354pt;}
.ls51{letter-spacing:2.660565pt;}
.ls32{letter-spacing:2.684418pt;}
.ls57{letter-spacing:3.499714pt;}
.lsd9{letter-spacing:3.604688pt;}
.ls2c{letter-spacing:3.779890pt;}
.lsf9{letter-spacing:3.999253pt;}
.lsc8{letter-spacing:4.662483pt;}
.ls116{letter-spacing:5.773722pt;}
.ls118{letter-spacing:5.827044pt;}
.ls24{letter-spacing:5.944475pt;}
.ls68{letter-spacing:6.372203pt;}
.ls86{letter-spacing:6.375259pt;}
.ls7f{letter-spacing:6.377210pt;}
.ls27{letter-spacing:7.256316pt;}
.lsd{letter-spacing:7.437781pt;}
.ls28{letter-spacing:7.645649pt;}
.ls9c{letter-spacing:7.771093pt;}
.lsa1{letter-spacing:7.772683pt;}
.lsa4{letter-spacing:7.774543pt;}
.lsa3{letter-spacing:7.775565pt;}
.lsa2{letter-spacing:7.776427pt;}
.ls108{letter-spacing:7.797719pt;}
.ls10d{letter-spacing:7.802888pt;}
.ls31{letter-spacing:8.321163pt;}
.ls3f{letter-spacing:8.326497pt;}
.ls36{letter-spacing:8.341004pt;}
.ls9{letter-spacing:8.550339pt;}
.ls7{letter-spacing:8.551764pt;}
.lsa{letter-spacing:8.551818pt;}
.ls6{letter-spacing:8.552530pt;}
.ls8{letter-spacing:8.552670pt;}
.lsf3{letter-spacing:8.876363pt;}
.ls10c{letter-spacing:8.876653pt;}
.ls101{letter-spacing:8.877473pt;}
.lsf2{letter-spacing:8.880089pt;}
.ls110{letter-spacing:8.880221pt;}
.lsf8{letter-spacing:8.881696pt;}
.lsf6{letter-spacing:9.314430pt;}
.ls10a{letter-spacing:9.319764pt;}
.ls67{letter-spacing:9.493307pt;}
.ls4b{letter-spacing:9.819542pt;}
.ls46{letter-spacing:9.824876pt;}
.ls10b{letter-spacing:9.911860pt;}
.ls69{letter-spacing:10.422871pt;}
.lsf0{letter-spacing:11.093995pt;}
.ls59{letter-spacing:11.095349pt;}
.ls47{letter-spacing:11.095445pt;}
.ls11c{letter-spacing:11.096621pt;}
.ls58{letter-spacing:11.097821pt;}
.lsa9{letter-spacing:11.098231pt;}
.lscd{letter-spacing:11.098751pt;}
.ls106{letter-spacing:11.099329pt;}
.lsf1{letter-spacing:11.100363pt;}
.ls7d{letter-spacing:11.100649pt;}
.ls5a{letter-spacing:11.100683pt;}
.ls6a{letter-spacing:11.294286pt;}
.lsb8{letter-spacing:11.474806pt;}
.lsb7{letter-spacing:11.480140pt;}
.ls102{letter-spacing:11.538527pt;}
.ls19{letter-spacing:11.759186pt;}
.lse6{letter-spacing:11.877264pt;}
.lse8{letter-spacing:11.879938pt;}
.ls83{letter-spacing:12.270073pt;}
.ls10e{letter-spacing:13.032854pt;}
.ls109{letter-spacing:13.038188pt;}
.lse4{letter-spacing:13.100011pt;}
.lsc3{letter-spacing:13.248876pt;}
.ls73{letter-spacing:13.350655pt;}
.ls72{letter-spacing:13.394862pt;}
.ls88{letter-spacing:13.752140pt;}
.ls9e{letter-spacing:13.755542pt;}
.lsaa{letter-spacing:13.755718pt;}
.lsce{letter-spacing:13.757711pt;}
.lsd4{letter-spacing:13.786751pt;}
.ls56{letter-spacing:13.868683pt;}
.ls3b{letter-spacing:13.868778pt;}
.ls5b{letter-spacing:13.870784pt;}
.ls5f{letter-spacing:13.872087pt;}
.ls3e{letter-spacing:13.873998pt;}
.ls3c{letter-spacing:13.874016pt;}
.ls34{letter-spacing:13.874111pt;}
.ls61{letter-spacing:13.875619pt;}
.ls49{letter-spacing:13.876117pt;}
.lsb9{letter-spacing:13.885025pt;}
.lsc2{letter-spacing:14.191355pt;}
.ls11d{letter-spacing:14.364683pt;}
.ls6b{letter-spacing:14.410640pt;}
.ls7a{letter-spacing:14.500049pt;}
.ls7b{letter-spacing:14.544257pt;}
.lsc6{letter-spacing:14.598381pt;}
.ls7c{letter-spacing:14.632671pt;}
.lseb{letter-spacing:14.676879pt;}
.ls114{letter-spacing:14.712201pt;}
.ls13{letter-spacing:14.721086pt;}
.lsb3{letter-spacing:14.730751pt;}
.ls95{letter-spacing:14.732649pt;}
.ls65{letter-spacing:14.732683pt;}
.lsda{letter-spacing:14.732786pt;}
.ls4f{letter-spacing:14.734784pt;}
.ls41{letter-spacing:14.735154pt;}
.ls62{letter-spacing:14.735282pt;}
.lsb4{letter-spacing:14.735565pt;}
.lsb5{letter-spacing:14.736084pt;}
.ls1b{letter-spacing:14.736944pt;}
.ls66{letter-spacing:14.738016pt;}
.ls113{letter-spacing:14.747566pt;}
.ls1a{letter-spacing:14.765294pt;}
.lse5{letter-spacing:14.870677pt;}
.ls23{letter-spacing:14.897916pt;}
.ls6c{letter-spacing:15.070557pt;}
.lsd8{letter-spacing:15.097440pt;}
.ls94{letter-spacing:15.384378pt;}
.lsdf{letter-spacing:15.428406pt;}
.ls5d{letter-spacing:15.636565pt;}
.ls85{letter-spacing:15.873566pt;}
.ls1c{letter-spacing:16.003103pt;}
.lsa7{letter-spacing:16.529751pt;}
.ls80{letter-spacing:16.530806pt;}
.ls90{letter-spacing:16.531044pt;}
.lsdd{letter-spacing:16.552142pt;}
.lsdc{letter-spacing:16.557475pt;}
.ls9a{letter-spacing:16.599315pt;}
.lsea{letter-spacing:16.622007pt;}
.ls26{letter-spacing:16.646497pt;}
.ls1e{letter-spacing:16.798837pt;}
.ls97{letter-spacing:16.870024pt;}
.lse9{letter-spacing:16.887252pt;}
.ls10{letter-spacing:17.196705pt;}
.ls8f{letter-spacing:17.389711pt;}
.ls7e{letter-spacing:17.474016pt;}
.lsdb{letter-spacing:17.475877pt;}
.ls33{letter-spacing:17.549122pt;}
.ls12{letter-spacing:17.550364pt;}
.ls8a{letter-spacing:17.577499pt;}
.lsc7{letter-spacing:17.590098pt;}
.ls11{letter-spacing:17.594572pt;}
.ls82{letter-spacing:17.863315pt;}
.lsb2{letter-spacing:17.895938pt;}
.ls22{letter-spacing:17.948231pt;}
.ls120{letter-spacing:17.976621pt;}
.lsd5{letter-spacing:18.006842pt;}
.ls14{letter-spacing:18.036646pt;}
.ls75{letter-spacing:18.434514pt;}
.ls74{letter-spacing:18.478721pt;}
.ls64{letter-spacing:18.515890pt;}
.ls18{letter-spacing:18.522929pt;}
.lsca{letter-spacing:18.539816pt;}
.ls8c{letter-spacing:18.586751pt;}
.ls71{letter-spacing:18.611343pt;}
.lsf7{letter-spacing:18.791860pt;}
.lsa8{letter-spacing:19.092374pt;}
.ls21{letter-spacing:19.186041pt;}
.lsfe{letter-spacing:19.415764pt;}
.lsb{letter-spacing:19.445733pt;}
.lsd0{letter-spacing:19.643816pt;}
.lsd2{letter-spacing:19.654381pt;}
.ls84{letter-spacing:19.659357pt;}
.ls98{letter-spacing:20.247349pt;}
.lsc5{letter-spacing:20.252683pt;}
.ls20{letter-spacing:20.291227pt;}
.lscc{letter-spacing:20.368765pt;}
.lse3{letter-spacing:20.541711pt;}
.lsaf{letter-spacing:20.556472pt;}
.lsc{letter-spacing:20.589600pt;}
.lsae{letter-spacing:20.600679pt;}
.ls15{letter-spacing:20.733302pt;}
.ls78{letter-spacing:20.910132pt;}
.ls79{letter-spacing:20.954339pt;}
.ls1d{letter-spacing:21.027200pt;}
.ls11b{letter-spacing:21.060112pt;}
.ls1f{letter-spacing:21.086962pt;}
.lsd1{letter-spacing:21.467431pt;}
.ls70{letter-spacing:21.661659pt;}
.ls6f{letter-spacing:21.705866pt;}
.lsd7{letter-spacing:21.889509pt;}
.lsf{letter-spacing:22.192148pt;}
.lse{letter-spacing:22.236356pt;}
.lsac{letter-spacing:22.539718pt;}
.lsab{letter-spacing:22.540418pt;}
.lsd3{letter-spacing:22.651431pt;}
.lsad{letter-spacing:22.724374pt;}
.ls16{letter-spacing:23.913438pt;}
.lsde{letter-spacing:24.722809pt;}
.ls17{letter-spacing:24.844596pt;}
.ls2d{letter-spacing:25.383445pt;}
.lsb0{letter-spacing:25.463501pt;}
.ls6e{letter-spacing:25.507708pt;}
.ls6d{letter-spacing:25.551916pt;}
.ls77{letter-spacing:25.596123pt;}
.lse7{letter-spacing:25.597711pt;}
.ls76{letter-spacing:25.640331pt;}
.ls11a{letter-spacing:25.725711pt;}
.ls8d{letter-spacing:25.766483pt;}
.lsb1{letter-spacing:26.513625pt;}
.ls11f{letter-spacing:27.476688pt;}
.lsc1{letter-spacing:35.336378pt;}
.lsa5{letter-spacing:38.719565pt;}
.ls91{letter-spacing:44.770016pt;}
.ls117{letter-spacing:54.108683pt;}
.lsbf{letter-spacing:55.789473pt;}
.ls111{letter-spacing:60.683051pt;}
.lse1{letter-spacing:79.603044pt;}
.ls54{letter-spacing:82.935349pt;}
.ls115{letter-spacing:272.077097pt;}
.ls104{letter-spacing:567.197473pt;}
.lsfc{letter-spacing:617.272139pt;}
.lsc0{letter-spacing:666.611701pt;}
.ls11e{letter-spacing:691.705445pt;}
.lscf{letter-spacing:717.672140pt;}
.lsba{letter-spacing:779.559938pt;}
.ls93{letter-spacing:860.839445pt;}
.ls55{letter-spacing:904.538597pt;}
.lsd6{letter-spacing:914.887938pt;}
.lsc9{letter-spacing:945.459877pt;}
.ls5c{letter-spacing:968.121440pt;}
.ls81{letter-spacing:970.301473pt;}
.ls8b{letter-spacing:978.124233pt;}
.ls40{letter-spacing:983.856084pt;}
.lscb{letter-spacing:994.216378pt;}
.ls112{letter-spacing:1025.479860pt;}
.ls89{letter-spacing:1032.320691pt;}
.ls99{letter-spacing:1117.244124pt;}
.wsf5{word-spacing:-68.775826pt;}
.ws3{word-spacing:-59.828772pt;}
.ws94{word-spacing:-54.890801pt;}
.wsc{word-spacing:-50.910955pt;}
.wsd{word-spacing:-48.837620pt;}
.ws6{word-spacing:-48.834492pt;}
.wsa{word-spacing:-48.804092pt;}
.ws9{word-spacing:-48.802861pt;}
.ws7{word-spacing:-48.798617pt;}
.wsf7{word-spacing:-46.599742pt;}
.ws25{word-spacing:-44.207467pt;}
.ws127{word-spacing:-43.912523pt;}
.ws97{word-spacing:-43.503082pt;}
.ws96{word-spacing:-41.005775pt;}
.ws8{word-spacing:-41.002133pt;}
.wsb{word-spacing:-38.681600pt;}
.ws9b{word-spacing:-38.423385pt;}
.ws5{word-spacing:-38.301041pt;}
.wse4{word-spacing:-36.433011pt;}
.ws150{word-spacing:-35.885086pt;}
.ws44{word-spacing:-35.365867pt;}
.wse5{word-spacing:-35.348914pt;}
.wsc5{word-spacing:-35.162078pt;}
.ws120{word-spacing:-33.907127pt;}
.ws155{word-spacing:-33.822032pt;}
.ws42{word-spacing:-33.818712pt;}
.wsd2{word-spacing:-33.813532pt;}
.ws13c{word-spacing:-33.686090pt;}
.wsfc{word-spacing:-33.641882pt;}
.ws77{word-spacing:-33.597675pt;}
.ws74{word-spacing:-33.553467pt;}
.ws5f{word-spacing:-33.420845pt;}
.ws95{word-spacing:-33.416102pt;}
.ws5e{word-spacing:-33.376637pt;}
.ws55{word-spacing:-33.332430pt;}
.wsfe{word-spacing:-33.199807pt;}
.ws3e{word-spacing:-33.155600pt;}
.ws165{word-spacing:-33.111393pt;}
.ws10e{word-spacing:-33.110651pt;}
.ws11c{word-spacing:-33.109686pt;}
.wsa3{word-spacing:-33.108145pt;}
.ws110{word-spacing:-33.105317pt;}
.wsaa{word-spacing:-33.067185pt;}
.wseb{word-spacing:-32.978770pt;}
.wse3{word-spacing:-32.934832pt;}
.wsb0{word-spacing:-32.934563pt;}
.wsaf{word-spacing:-32.917935pt;}
.wsf1{word-spacing:-32.914502pt;}
.ws8d{word-spacing:-32.890355pt;}
.ws12e{word-spacing:-32.804533pt;}
.ws7a{word-spacing:-32.801940pt;}
.wsa9{word-spacing:-32.713525pt;}
.ws79{word-spacing:-32.669318pt;}
.ws57{word-spacing:-32.580903pt;}
.ws3b{word-spacing:-32.448281pt;}
.ws13e{word-spacing:-32.359866pt;}
.ws1c{word-spacing:-32.346560pt;}
.ws11f{word-spacing:-32.328102pt;}
.ws3a{word-spacing:-32.315658pt;}
.ws7b{word-spacing:-32.271451pt;}
.ws81{word-spacing:-32.227243pt;}
.wsac{word-spacing:-32.108093pt;}
.ws11e{word-spacing:-32.101935pt;}
.wsdf{word-spacing:-32.094621pt;}
.ws78{word-spacing:-32.050413pt;}
.ws8c{word-spacing:-32.006206pt;}
.ws5b{word-spacing:-31.961998pt;}
.wsc8{word-spacing:-31.917791pt;}
.ws14d{word-spacing:-31.873583pt;}
.ws14c{word-spacing:-31.829376pt;}
.ws5d{word-spacing:-31.652546pt;}
.wsd9{word-spacing:-31.483269pt;}
.wsda{word-spacing:-31.475716pt;}
.wsef{word-spacing:-31.343094pt;}
.wsce{word-spacing:-31.298886pt;}
.wsdd{word-spacing:-31.254679pt;}
.wsa4{word-spacing:-31.227269pt;}
.wsa5{word-spacing:-31.210471pt;}
.ws13f{word-spacing:-31.166264pt;}
.ws6e{word-spacing:-31.077849pt;}
.ws9c{word-spacing:-30.945067pt;}
.wsf9{word-spacing:-30.902147pt;}
.wsfb{word-spacing:-30.901019pt;}
.wsb8{word-spacing:-30.856812pt;}
.wsb7{word-spacing:-30.812604pt;}
.ws66{word-spacing:-30.768397pt;}
.ws12b{word-spacing:-30.738590pt;}
.ws23{word-spacing:-30.724189pt;}
.wsa0{word-spacing:-30.635774pt;}
.wsc4{word-spacing:-30.591567pt;}
.ws14e{word-spacing:-30.547359pt;}
.ws68{word-spacing:-30.503152pt;}
.ws144{word-spacing:-30.458945pt;}
.ws105{word-spacing:-30.414737pt;}
.wsff{word-spacing:-30.334294pt;}
.ws56{word-spacing:-30.326322pt;}
.ws143{word-spacing:-30.282115pt;}
.ws9f{word-spacing:-30.237907pt;}
.wsd5{word-spacing:-30.194769pt;}
.wsd3{word-spacing:-30.193700pt;}
.ws27{word-spacing:-30.105285pt;}
.ws85{word-spacing:-30.016870pt;}
.wscd{word-spacing:-29.972662pt;}
.ws15e{word-spacing:-29.840040pt;}
.ws156{word-spacing:-29.822297pt;}
.ws121{word-spacing:-29.795833pt;}
.wsbe{word-spacing:-29.707418pt;}
.wsb4{word-spacing:-29.663210pt;}
.wsc1{word-spacing:-29.574795pt;}
.wsa2{word-spacing:-29.530588pt;}
.ws92{word-spacing:-29.518165pt;}
.wsa8{word-spacing:-29.490449pt;}
.wsdb{word-spacing:-29.488721pt;}
.ws2b{word-spacing:-29.486380pt;}
.wsae{word-spacing:-29.474542pt;}
.ws98{word-spacing:-29.472602pt;}
.wsad{word-spacing:-29.470812pt;}
.ws10c{word-spacing:-29.469557pt;}
.wsf4{word-spacing:-29.468903pt;}
.wsde{word-spacing:-29.442173pt;}
.wsf8{word-spacing:-29.413935pt;}
.ws63{word-spacing:-29.397965pt;}
.ws142{word-spacing:-29.353758pt;}
.ws47{word-spacing:-29.309550pt;}
.ws86{word-spacing:-29.265343pt;}
.ws101{word-spacing:-29.234769pt;}
.ws100{word-spacing:-29.232602pt;}
.ws90{word-spacing:-29.221135pt;}
.wsb3{word-spacing:-29.176928pt;}
.ws15f{word-spacing:-29.088513pt;}
.wsf3{word-spacing:-29.044306pt;}
.wsb1{word-spacing:-29.000098pt;}
.ws58{word-spacing:-28.867476pt;}
.ws7c{word-spacing:-28.823268pt;}
.ws11b{word-spacing:-28.779061pt;}
.ws126{word-spacing:-28.717084pt;}
.ws12f{word-spacing:-28.707823pt;}
.ws12a{word-spacing:-28.705710pt;}
.ws164{word-spacing:-28.690646pt;}
.ws65{word-spacing:-28.646438pt;}
.ws4d{word-spacing:-28.602231pt;}
.ws4f{word-spacing:-28.558023pt;}
.wsee{word-spacing:-28.469609pt;}
.wsc3{word-spacing:-28.381194pt;}
.wsb5{word-spacing:-28.292779pt;}
.ws129{word-spacing:-28.279205pt;}
.ws48{word-spacing:-28.204364pt;}
.ws12c{word-spacing:-28.129587pt;}
.ws7f{word-spacing:-28.115949pt;}
.ws104{word-spacing:-28.071741pt;}
.ws102{word-spacing:-28.071690pt;}
.ws103{word-spacing:-28.027534pt;}
.ws141{word-spacing:-27.939119pt;}
.ws28{word-spacing:-27.806497pt;}
.ws39{word-spacing:-27.762289pt;}
.wsdc{word-spacing:-27.718082pt;}
.ws35{word-spacing:-27.673874pt;}
.ws122{word-spacing:-27.629667pt;}
.wsc9{word-spacing:-27.541252pt;}
.ws2a{word-spacing:-27.497044pt;}
.ws157{word-spacing:-27.452837pt;}
.ws4c{word-spacing:-27.408629pt;}
.ws38{word-spacing:-27.364422pt;}
.wsa6{word-spacing:-27.333935pt;}
.ws60{word-spacing:-27.320214pt;}
.ws162{word-spacing:-27.276007pt;}
.wsf2{word-spacing:-27.153936pt;}
.ws64{word-spacing:-27.143385pt;}
.ws24{word-spacing:-27.010762pt;}
.wsc2{word-spacing:-26.966555pt;}
.ws84{word-spacing:-26.878140pt;}
.ws93{word-spacing:-26.821074pt;}
.ws83{word-spacing:-26.745517pt;}
.ws26{word-spacing:-26.657102pt;}
.ws3d{word-spacing:-26.612895pt;}
.wse2{word-spacing:-26.524800pt;}
.ws11{word-spacing:-26.524400pt;}
.ws9d{word-spacing:-26.496602pt;}
.ws130{word-spacing:-26.484874pt;}
.ws9e{word-spacing:-26.480273pt;}
.ws10a{word-spacing:-26.448602pt;}
.ws10b{word-spacing:-26.436065pt;}
.ws7d{word-spacing:-26.391858pt;}
.wsc7{word-spacing:-26.347650pt;}
.wsc6{word-spacing:-26.347269pt;}
.ws1a{word-spacing:-26.338773pt;}
.ws14f{word-spacing:-26.334297pt;}
.wsf0{word-spacing:-26.303443pt;}
.ws6f{word-spacing:-26.259235pt;}
.ws153{word-spacing:-26.243607pt;}
.ws2f{word-spacing:-26.215028pt;}
.ws2e{word-spacing:-26.170820pt;}
.ws8e{word-spacing:-26.082405pt;}
.ws15c{word-spacing:-25.993990pt;}
.ws8b{word-spacing:-25.905575pt;}
.ws49{word-spacing:-25.861368pt;}
.ws15a{word-spacing:-25.817161pt;}
.wsb9{word-spacing:-25.772953pt;}
.ws34{word-spacing:-25.728746pt;}
.wsd8{word-spacing:-25.643344pt;}
.ws109{word-spacing:-25.641586pt;}
.wsd1{word-spacing:-25.640331pt;}
.wsd6{word-spacing:-25.640119pt;}
.ws113{word-spacing:-25.617317pt;}
.ws115{word-spacing:-25.614460pt;}
.ws114{word-spacing:-25.613435pt;}
.ws112{word-spacing:-25.611269pt;}
.ws21{word-spacing:-25.596123pt;}
.ws166{word-spacing:-25.330878pt;}
.ws40{word-spacing:-25.286671pt;}
.ws59{word-spacing:-25.242463pt;}
.ws3c{word-spacing:-25.154049pt;}
.ws76{word-spacing:-25.109841pt;}
.ws1b{word-spacing:-25.065600pt;}
.ws43{word-spacing:-25.021426pt;}
.ws1ad{word-spacing:-25.003668pt;}
.ws91{word-spacing:-25.000472pt;}
.ws4b{word-spacing:-24.977219pt;}
.ws117{word-spacing:-24.942460pt;}
.ws118{word-spacing:-24.941435pt;}
.ws116{word-spacing:-24.933011pt;}
.ws20{word-spacing:-24.888804pt;}
.ws125{word-spacing:-24.755733pt;}
.ws29{word-spacing:-24.711974pt;}
.ws71{word-spacing:-24.667766pt;}
.ws163{word-spacing:-24.535144pt;}
.ws70{word-spacing:-24.490937pt;}
.ws62{word-spacing:-24.446729pt;}
.ws13a{word-spacing:-24.402522pt;}
.ws9a{word-spacing:-24.358314pt;}
.ws99{word-spacing:-24.355288pt;}
.ws10{word-spacing:-24.331716pt;}
.wse9{word-spacing:-24.322769pt;}
.wse8{word-spacing:-24.320602pt;}
.wscf{word-spacing:-24.314107pt;}
.ws36{word-spacing:-24.269899pt;}
.ws1ac{word-spacing:-24.260985pt;}
.ws6d{word-spacing:-24.225692pt;}
.ws18a{word-spacing:-24.190253pt;}
.ws3f{word-spacing:-24.181484pt;}
.ws190{word-spacing:-24.119521pt;}
.ws161{word-spacing:-24.048862pt;}
.ws187{word-spacing:-24.013423pt;}
.ws15d{word-spacing:-23.960447pt;}
.ws6b{word-spacing:-23.916239pt;}
.ws61{word-spacing:-23.872032pt;}
.ws31{word-spacing:-23.783617pt;}
.ws193{word-spacing:-23.765862pt;}
.ws160{word-spacing:-23.695202pt;}
.ws41{word-spacing:-23.650995pt;}
.wsed{word-spacing:-23.606787pt;}
.ws1a5{word-spacing:-23.553667pt;}
.ws2c{word-spacing:-23.518372pt;}
.ws16d{word-spacing:-23.518301pt;}
.ws30{word-spacing:-23.474165pt;}
.ws173{word-spacing:-23.447570pt;}
.ws52{word-spacing:-23.429957pt;}
.ws73{word-spacing:-23.385750pt;}
.ws13d{word-spacing:-23.341542pt;}
.ws54{word-spacing:-23.297335pt;}
.ws51{word-spacing:-23.164713pt;}
.ws1b2{word-spacing:-23.164643pt;}
.ws50{word-spacing:-23.120505pt;}
.ws158{word-spacing:-23.076298pt;}
.ws53{word-spacing:-23.032090pt;}
.ws13b{word-spacing:-22.987883pt;}
.ws154{word-spacing:-22.962769pt;}
.ws139{word-spacing:-22.943675pt;}
.ws191{word-spacing:-22.917082pt;}
.ws18{word-spacing:-22.877333pt;}
.ws7e{word-spacing:-22.855260pt;}
.ws18f{word-spacing:-22.810984pt;}
.ws89{word-spacing:-22.722638pt;}
.ws1a4{word-spacing:-22.634155pt;}
.ws194{word-spacing:-22.563423pt;}
.ws15{word-spacing:-22.559040pt;}
.wsb6{word-spacing:-22.545808pt;}
.ws199{word-spacing:-22.492691pt;}
.ws159{word-spacing:-22.457393pt;}
.ws1a8{word-spacing:-22.457325pt;}
.wsea{word-spacing:-22.413186pt;}
.ws19b{word-spacing:-22.351228pt;}
.ws1b4{word-spacing:-22.280496pt;}
.ws18e{word-spacing:-22.245130pt;}
.ws2d{word-spacing:-22.059526pt;}
.ws1b8{word-spacing:-22.032935pt;}
.ws22{word-spacing:-22.015318pt;}
.wsd0{word-spacing:-21.926903pt;}
.ws1bb{word-spacing:-21.856106pt;}
.ws19f{word-spacing:-21.820740pt;}
.ws175{word-spacing:-21.785374pt;}
.ws108{word-spacing:-21.750074pt;}
.ws106{word-spacing:-21.737121pt;}
.ws6c{word-spacing:-21.705866pt;}
.ws88{word-spacing:-21.661659pt;}
.ws176{word-spacing:-21.643910pt;}
.ws1ba{word-spacing:-21.467081pt;}
.ws195{word-spacing:-21.396349pt;}
.ws4a{word-spacing:-21.352206pt;}
.ws82{word-spacing:-21.263791pt;}
.ws1b6{word-spacing:-21.184154pt;}
.ws8f{word-spacing:-21.175377pt;}
.ws147{word-spacing:-21.145561pt;}
.ws14a{word-spacing:-21.138769pt;}
.ws146{word-spacing:-21.131269pt;}
.ws148{word-spacing:-21.131169pt;}
.ws1bf{word-spacing:-21.113422pt;}
.ws5a{word-spacing:-21.086962pt;}
.ws17a{word-spacing:-21.078057pt;}
.ws1bd{word-spacing:-20.971959pt;}
.ws170{word-spacing:-20.936593pt;}
.ws1ab{word-spacing:-20.830495pt;}
.wsb2{word-spacing:-20.821717pt;}
.ws18d{word-spacing:-20.759764pt;}
.wse{word-spacing:-20.689032pt;}
.ws32{word-spacing:-20.653666pt;}
.ws12{word-spacing:-20.639333pt;}
.ws1{word-spacing:-20.618300pt;}
.ws14{word-spacing:-20.609493pt;}
.ws1ae{word-spacing:-20.512203pt;}
.ws19e{word-spacing:-20.441471pt;}
.ws1bc{word-spacing:-20.406105pt;}
.wse1{word-spacing:-20.379642pt;}
.ws152{word-spacing:-20.335435pt;}
.ws151{word-spacing:-20.309935pt;}
.ws67{word-spacing:-20.291227pt;}
.ws180{word-spacing:-20.123178pt;}
.ws72{word-spacing:-20.114397pt;}
.ws140{word-spacing:-20.070190pt;}
.ws119{word-spacing:-20.025982pt;}
.ws11a{word-spacing:-19.981775pt;}
.ws19d{word-spacing:-19.981715pt;}
.ws69{word-spacing:-19.937567pt;}
.ws188{word-spacing:-19.875617pt;}
.ws19{word-spacing:-19.813760pt;}
.ws1a9{word-spacing:-19.804885pt;}
.ws16a{word-spacing:-19.663422pt;}
.ws171{word-spacing:-19.592690pt;}
.ws16{word-spacing:-19.495467pt;}
.ws80{word-spacing:-19.451285pt;}
.ws1be{word-spacing:-19.451227pt;}
.ws1b1{word-spacing:-19.415861pt;}
.ws4e{word-spacing:-19.407078pt;}
.ws33{word-spacing:-19.362870pt;}
.ws1b7{word-spacing:-19.239031pt;}
.ws6a{word-spacing:-19.230248pt;}
.ws17c{word-spacing:-19.203666pt;}
.ws37{word-spacing:-19.141833pt;}
.ws15b{word-spacing:-19.053418pt;}
.wse0{word-spacing:-18.965003pt;}
.ws17{word-spacing:-18.858880pt;}
.wscb{word-spacing:-18.743966pt;}
.ws186{word-spacing:-18.708543pt;}
.ws8a{word-spacing:-18.699758pt;}
.wsbc{word-spacing:-18.611343pt;}
.wsbd{word-spacing:-18.567136pt;}
.ws1af{word-spacing:-18.567080pt;}
.ws5c{word-spacing:-18.522929pt;}
.ws167{word-spacing:-18.460982pt;}
.ws75{word-spacing:-18.390306pt;}
.ws1f{word-spacing:-18.346099pt;}
.ws1e{word-spacing:-18.301891pt;}
.ws46{word-spacing:-18.257684pt;}
.ws174{word-spacing:-18.213421pt;}
.ws189{word-spacing:-18.001226pt;}
.ws184{word-spacing:-17.930494pt;}
.wse6{word-spacing:-17.872677pt;}
.wsca{word-spacing:-17.815609pt;}
.ws1a7{word-spacing:-17.718299pt;}
.ws17d{word-spacing:-17.682933pt;}
.ws185{word-spacing:-17.647567pt;}
.ws17f{word-spacing:-17.541470pt;}
.ws197{word-spacing:-17.506104pt;}
.ws1b3{word-spacing:-17.364641pt;}
.ws145{word-spacing:-17.192533pt;}
.wscc{word-spacing:-17.192526pt;}
.ws1b0{word-spacing:-16.869518pt;}
.wsbf{word-spacing:-16.798837pt;}
.ws192{word-spacing:-16.763421pt;}
.ws179{word-spacing:-16.586591pt;}
.ws198{word-spacing:-16.162201pt;}
.ws13{word-spacing:-15.954453pt;}
.ws168{word-spacing:-15.702445pt;}
.ws17e{word-spacing:-15.667079pt;}
.ws196{word-spacing:-15.490250pt;}
.ws1b5{word-spacing:-15.313420pt;}
.ws169{word-spacing:-15.136591pt;}
.wsfa{word-spacing:-14.982431pt;}
.ws19a{word-spacing:-14.676835pt;}
.wsd7{word-spacing:-14.546786pt;}
.wse7{word-spacing:-14.544677pt;}
.ws1aa{word-spacing:-14.429274pt;}
.wsf6{word-spacing:-14.417098pt;}
.ws182{word-spacing:-14.075615pt;}
.wsfd{word-spacing:-13.554954pt;}
.ws10d{word-spacing:-13.553914pt;}
.ws177{word-spacing:-13.545127pt;}
.ws1a1{word-spacing:-13.403663pt;}
.ws18c{word-spacing:-13.262200pt;}
.ws18b{word-spacing:-13.156102pt;}
.ws172{word-spacing:-13.085371pt;}
.ws107{word-spacing:-12.791381pt;}
.ws178{word-spacing:-12.767078pt;}
.ws19c{word-spacing:-12.590249pt;}
.ws1a6{word-spacing:-12.130492pt;}
.ws1a0{word-spacing:-12.095126pt;}
.ws183{word-spacing:-11.847565pt;}
.ws10f{word-spacing:-11.769586pt;}
.wsd4{word-spacing:-11.632677pt;}
.ws16c{word-spacing:-11.600004pt;}
.wsec{word-spacing:-11.493941pt;}
.wsa7{word-spacing:-11.412889pt;}
.ws181{word-spacing:-10.503662pt;}
.ws1a2{word-spacing:-9.902443pt;}
.ws16f{word-spacing:-9.867077pt;}
.ws1b9{word-spacing:-9.195125pt;}
.ws16b{word-spacing:-9.089028pt;}
.ws1a3{word-spacing:-7.709759pt;}
.ws17b{word-spacing:-7.108539pt;}
.ws133{word-spacing:-5.906100pt;}
.ws132{word-spacing:-5.870734pt;}
.ws149{word-spacing:-5.219374pt;}
.ws14b{word-spacing:-5.219200pt;}
.ws16e{word-spacing:-4.632929pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:14.664984pt;}
.ws87{word-spacing:14.676879pt;}
.wsab{word-spacing:14.689736pt;}
.ws2{word-spacing:14.707491pt;}
.wsbb{word-spacing:14.712201pt;}
.wsf{word-spacing:19.445733pt;}
.ws1d{word-spacing:22.059526pt;}
.ws128{word-spacing:25.317283pt;}
.ws123{word-spacing:29.636596pt;}
.ws124{word-spacing:69.206324pt;}
.ws134{word-spacing:76.637833pt;}
.ws135{word-spacing:91.067107pt;}
.wsba{word-spacing:93.808244pt;}
.ws131{word-spacing:101.778287pt;}
.ws12d{word-spacing:106.163654pt;}
.ws111{word-spacing:196.148530pt;}
.ws136{word-spacing:259.054973pt;}
.ws138{word-spacing:266.800098pt;}
.ws137{word-spacing:439.986747pt;}
.ws45{word-spacing:727.094786pt;}
.ws11d{word-spacing:801.569786pt;}
.wsa1{word-spacing:907.977158pt;}
.wsc0{word-spacing:921.548850pt;}
._b{margin-left:-36.061108pt;}
._3{margin-left:-20.589600pt;}
._2{margin-left:-19.346267pt;}
._c{margin-left:-16.577773pt;}
._e{margin-left:-13.909184pt;}
._1{margin-left:-2.839263pt;}
._8{width:2.656108pt;}
._11{width:4.417523pt;}
._6{width:10.891046pt;}
._a{width:13.849697pt;}
._0{width:14.760749pt;}
._d{width:16.640480pt;}
._5{width:17.643383pt;}
._7{width:22.103733pt;}
._4{width:29.456413pt;}
._10{width:32.342917pt;}
._f{width:53.195843pt;}
._15{width:75.387556pt;}
._18{width:112.003700pt;}
._14{width:132.972844pt;}
._19{width:137.182437pt;}
._13{width:150.022006pt;}
._16{width:173.920141pt;}
._17{width:282.361079pt;}
._1a{width:344.180614pt;}
._1b{width:351.925739pt;}
._1d{width:364.659211pt;}
._1e{width:372.402576pt;}
._1f{width:525.147754pt;}
._1c{width:545.624591pt;}
._9{width:762.301243pt;}
._12{width:1134.077246pt;}
.fs14{font-size:21.661333pt;}
.fsd{font-size:24.755733pt;}
.fs19{font-size:26.524800pt;}
.fs1d{font-size:27.969600pt;}
.fs1a{font-size:29.968000pt;}
.fs16{font-size:30.945067pt;}
.fs15{font-size:34.962133pt;}
.fs5{font-size:35.365867pt;}
.fs4{font-size:37.333333pt;}
.fs13{font-size:37.406400pt;}
.fsa{font-size:38.681600pt;}
.fsf{font-size:39.786667pt;}
.fs1b{font-size:39.956800pt;}
.fs1c{font-size:40.806933pt;}
.fsb{font-size:41.002133pt;}
.fs10{font-size:42.082133pt;}
.fs6{font-size:42.507200pt;}
.fs12{font-size:43.702933pt;}
.fs11{font-size:44.207467pt;}
.fsc{font-size:46.324800pt;}
.fse{font-size:49.733333pt;}
.fs17{font-size:49.946133pt;}
.fs18{font-size:51.008533pt;}
.fs8{font-size:53.048533pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.574400pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.599467pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y1e0{bottom:64.813333pt;}
.y1e1{bottom:65.141333pt;}
.y101{bottom:68.500000pt;}
.ybc{bottom:68.501333pt;}
.y78{bottom:79.924000pt;}
.y2f3{bottom:79.925333pt;}
.y2a5{bottom:80.050667pt;}
.y25a{bottom:81.858667pt;}
.y260{bottom:82.069333pt;}
.y222{bottom:82.092000pt;}
.ybb{bottom:82.250667pt;}
.y164{bottom:82.278667pt;}
.y1f1{bottom:82.342667pt;}
.y140{bottom:82.368000pt;}
.y24a{bottom:82.553333pt;}
.y19f{bottom:82.862667pt;}
.y1e9{bottom:83.013333pt;}
.y4{bottom:86.333337pt;}
.y100{bottom:90.516000pt;}
.y1df{bottom:90.624000pt;}
.y77{bottom:91.348000pt;}
.y2a4{bottom:91.474667pt;}
.y2f2{bottom:91.534667pt;}
.y259{bottom:95.217333pt;}
.y221{bottom:95.684000pt;}
.y24f{bottom:95.817333pt;}
.yba{bottom:96.001333pt;}
.y163{bottom:96.056000pt;}
.y1f0{bottom:96.185333pt;}
.y13f{bottom:96.236000pt;}
.y249{bottom:96.606667pt;}
.y19e{bottom:97.224000pt;}
.y1e8{bottom:97.526667pt;}
.y2f1{bottom:102.958667pt;}
.y2a3{bottom:103.025333pt;}
.yff{bottom:104.342667pt;}
.y1de{bottom:104.504000pt;}
.y258{bottom:108.576000pt;}
.y25f{bottom:108.828000pt;}
.y220{bottom:109.274667pt;}
.yb9{bottom:109.750667pt;}
.y1ef{bottom:110.028000pt;}
.y13e{bottom:110.104000pt;}
.y248{bottom:110.660000pt;}
.y19d{bottom:111.585333pt;}
.y2f0{bottom:114.382667pt;}
.y2a2{bottom:114.449333pt;}
.yfe{bottom:114.482667pt;}
.y61{bottom:115.922667pt;}
.y162{bottom:117.464000pt;}
.yfd{bottom:118.169333pt;}
.y1dd{bottom:118.385333pt;}
.y257{bottom:121.933333pt;}
.y21f{bottom:122.866667pt;}
.yb8{bottom:123.501333pt;}
.y23{bottom:123.790666pt;}
.y1ee{bottom:123.870667pt;}
.y13d{bottom:123.972000pt;}
.y247{bottom:124.713333pt;}
.y2ef{bottom:125.806667pt;}
.y2a1{bottom:125.873333pt;}
.y19c{bottom:125.946667pt;}
.y1e7{bottom:129.378667pt;}
.y76{bottom:130.505333pt;}
.y60{bottom:131.809333pt;}
.yfc{bottom:131.997333pt;}
.y1dc{bottom:132.266667pt;}
.y25e{bottom:134.450667pt;}
.y256{bottom:135.292000pt;}
.y21e{bottom:136.458667pt;}
.yb7{bottom:137.250667pt;}
.y2ee{bottom:137.416000pt;}
.y2a0{bottom:137.424000pt;}
.y1ed{bottom:137.713333pt;}
.y13c{bottom:137.840000pt;}
.y246{bottom:138.766667pt;}
.y161{bottom:138.872000pt;}
.y19b{bottom:140.308000pt;}
.y75{bottom:145.089333pt;}
.yfb{bottom:145.824000pt;}
.y1db{bottom:146.146667pt;}
.y25d{bottom:148.018667pt;}
.y255{bottom:148.650667pt;}
.y2ed{bottom:148.840000pt;}
.y29f{bottom:148.848000pt;}
.y21d{bottom:150.049333pt;}
.yb6{bottom:151.001333pt;}
.y1ec{bottom:151.556000pt;}
.y13b{bottom:151.708000pt;}
.y160{bottom:152.649333pt;}
.y245{bottom:152.820000pt;}
.yfa{bottom:155.964000pt;}
.y5f{bottom:159.594667pt;}
.yf9{bottom:159.650667pt;}
.y74{bottom:159.672000pt;}
.y1da{bottom:160.028000pt;}
.y2ec{bottom:160.264000pt;}
.y29e{bottom:160.272000pt;}
.y25c{bottom:161.588000pt;}
.y254{bottom:162.009333pt;}
.y19a{bottom:162.553333pt;}
.y21c{bottom:163.641333pt;}
.y1e6{bottom:164.057333pt;}
.yb5{bottom:164.750667pt;}
.y1eb{bottom:165.398667pt;}
.y13a{bottom:165.576000pt;}
.y244{bottom:166.873333pt;}
.yf8{bottom:171.818667pt;}
.y29d{bottom:171.822667pt;}
.y2eb{bottom:171.873333pt;}
.y196{bottom:172.652000pt;}
.y199{bottom:173.326667pt;}
.y5e{bottom:173.457333pt;}
.y1d9{bottom:173.909333pt;}
.y73{bottom:174.254667pt;}
.y15f{bottom:174.708000pt;}
.y1e5{bottom:174.884000pt;}
.y1a{bottom:175.052000pt;}
.y25b{bottom:175.156000pt;}
.y253{bottom:175.366667pt;}
.yf7{bottom:175.505333pt;}
.y21b{bottom:177.233333pt;}
.yb4{bottom:178.501333pt;}
.y1e4{bottom:178.570667pt;}
.y1ea{bottom:179.241333pt;}
.y139{bottom:179.444000pt;}
.y243{bottom:180.926667pt;}
.y198{bottom:181.405333pt;}
.y29c{bottom:183.245333pt;}
.y2ea{bottom:183.297333pt;}
.y15e{bottom:183.573333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y5d{bottom:187.318667pt;}
.y197{bottom:187.502667pt;}
.y1d8{bottom:187.790667pt;}
.y252{bottom:188.725333pt;}
.y72{bottom:188.837333pt;}
.y21a{bottom:190.824000pt;}
.yb3{bottom:192.250667pt;}
.y1e3{bottom:193.084000pt;}
.y138{bottom:193.312000pt;}
.y2e9{bottom:194.721333pt;}
.y29b{bottom:194.796000pt;}
.y242{bottom:194.980000pt;}
.yf5{bottom:196.352000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y5c{bottom:201.181333pt;}
.y1d7{bottom:201.670667pt;}
.y71{bottom:203.421333pt;}
.y195{bottom:203.701333pt;}
.y219{bottom:204.416000pt;}
.yb2{bottom:206.001333pt;}
.y29a{bottom:206.220000pt;}
.y2e8{bottom:206.330667pt;}
.y137{bottom:207.180000pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y241{bottom:209.033333pt;}
.yf3{bottom:211.824000pt;}
.y5b{bottom:215.042667pt;}
.y1d6{bottom:215.552000pt;}
.y15d{bottom:217.553333pt;}
.y2e7{bottom:217.754667pt;}
.y299{bottom:217.770667pt;}
.y70{bottom:218.004000pt;}
.y218{bottom:218.008000pt;}
.y194{bottom:218.062667pt;}
.yf6{bottom:218.200000pt;}
.y251{bottom:218.842667pt;}
.yb1{bottom:219.750667pt;}
.y136{bottom:221.048000pt;}
.y240{bottom:223.086667pt;}
.y1e2{bottom:223.201333pt;}
.yf4{bottom:223.749333pt;}
.yf0{bottom:227.108000pt;}
.y5a{bottom:228.905333pt;}
.y298{bottom:229.194667pt;}
.y2e6{bottom:229.364000pt;}
.y1d5{bottom:229.433333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y15c{bottom:231.330667pt;}
.y217{bottom:231.598667pt;}
.y6f{bottom:232.586667pt;}
.yb0{bottom:233.501333pt;}
.y135{bottom:234.916000pt;}
.y23f{bottom:237.140000pt;}
.yf2{bottom:239.156000pt;}
.y297{bottom:240.618667pt;}
.y2e5{bottom:240.788000pt;}
.y193{bottom:241.221333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y59{bottom:242.766667pt;}
.yf1{bottom:243.124000pt;}
.y1d4{bottom:243.314667pt;}
.y15b{bottom:245.108000pt;}
.y216{bottom:245.190667pt;}
.y6e{bottom:247.170667pt;}
.yaf{bottom:247.250667pt;}
.y134{bottom:248.784000pt;}
.y296{bottom:252.169333pt;}
.y2e4{bottom:252.212000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y23e{bottom:255.290667pt;}
.y58{bottom:256.629333pt;}
.y1d3{bottom:257.194667pt;}
.yef{bottom:258.404000pt;}
.y215{bottom:258.781333pt;}
.y15a{bottom:258.885333pt;}
.y18f{bottom:260.100000pt;}
.yae{bottom:261.000000pt;}
.y6d{bottom:261.753333pt;}
.y133{bottom:262.652000pt;}
.y295{bottom:263.593333pt;}
.y2e3{bottom:263.821333pt;}
.y18e{bottom:267.821333pt;}
.y57{bottom:270.490667pt;}
.y23c{bottom:270.574667pt;}
.y1d2{bottom:271.076000pt;}
.yee{bottom:272.232000pt;}
.y214{bottom:272.373333pt;}
.y159{bottom:272.664000pt;}
.y192{bottom:273.534667pt;}
.yad{bottom:274.750667pt;}
.y294{bottom:275.017333pt;}
.y2e2{bottom:275.245333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y6c{bottom:276.336000pt;}
.y18b{bottom:282.257333pt;}
.y24e{bottom:282.421333pt;}
.y23d{bottom:282.622667pt;}
.y191{bottom:283.325333pt;}
.y56{bottom:284.353333pt;}
.y213{bottom:285.965333pt;}
.yed{bottom:286.058667pt;}
.y158{bottom:286.441333pt;}
.y293{bottom:286.566667pt;}
.y2e1{bottom:286.854667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1d1{bottom:287.394667pt;}
.y18a{bottom:288.354667pt;}
.yac{bottom:288.500000pt;}
.y132{bottom:290.308000pt;}
.y6b{bottom:290.918667pt;}
.y190{bottom:291.010667pt;}
.y18d{bottom:294.305333pt;}
.y292{bottom:297.990667pt;}
.y55{bottom:298.214667pt;}
.y18c{bottom:298.272000pt;}
.y2e0{bottom:298.278667pt;}
.y212{bottom:299.556000pt;}
.y157{bottom:300.218667pt;}
.yab{bottom:302.250667pt;}
.y131{bottom:304.256000pt;}
.y23b{bottom:304.454667pt;}
.y1d0{bottom:305.012000pt;}
.y6a{bottom:305.502667pt;}
.yec{bottom:306.453333pt;}
.y11{bottom:309.452000pt;}
.y291{bottom:309.541333pt;}
.y2df{bottom:309.888000pt;}
.y54{bottom:312.077333pt;}
.yaa{bottom:316.000000pt;}
.y156{bottom:316.330667pt;}
.y189{bottom:316.940000pt;}
.y23a{bottom:318.508000pt;}
.y69{bottom:320.085333pt;}
.yeb{bottom:320.401333pt;}
.y290{bottom:321.092000pt;}
.y2de{bottom:321.312000pt;}
.y1cf{bottom:323.273333pt;}
.y155{bottom:325.196000pt;}
.y53{bottom:325.938667pt;}
.y211{bottom:326.384000pt;}
.ya9{bottom:329.750667pt;}
.y188{bottom:331.301333pt;}
.y130{bottom:331.833333pt;}
.y28f{bottom:332.516000pt;}
.y239{bottom:332.561333pt;}
.y2dd{bottom:332.736000pt;}
.y68{bottom:334.668000pt;}
.y1ce{bottom:337.154667pt;}
.y52{bottom:339.801333pt;}
.yea{bottom:340.224000pt;}
.ya8{bottom:343.500000pt;}
.y10{bottom:343.809333pt;}
.y28e{bottom:344.066667pt;}
.y2dc{bottom:344.345333pt;}
.y187{bottom:345.662667pt;}
.y12f{bottom:345.701333pt;}
.y238{bottom:346.614667pt;}
.y67{bottom:349.250667pt;}
.y210{bottom:352.141333pt;}
.y154{bottom:352.392000pt;}
.y51{bottom:353.662667pt;}
.ye9{bottom:354.052000pt;}
.y28d{bottom:355.490667pt;}
.y2db{bottom:355.769333pt;}
.ya7{bottom:357.250667pt;}
.y1cd{bottom:358.872000pt;}
.y12e{bottom:359.568000pt;}
.y186{bottom:360.024000pt;}
.y237{bottom:360.668000pt;}
.yf{bottom:362.706666pt;}
.y66{bottom:363.834667pt;}
.ye8{bottom:364.520000pt;}
.y20f{bottom:365.733333pt;}
.y153{bottom:366.169333pt;}
.y28c{bottom:366.914667pt;}
.y2da{bottom:367.193333pt;}
.y50{bottom:367.525333pt;}
.ye7{bottom:367.878667pt;}
.ya6{bottom:371.000000pt;}
.y12d{bottom:373.436000pt;}
.y185{bottom:374.385333pt;}
.y236{bottom:374.721333pt;}
.ye6{bottom:378.348000pt;}
.y65{bottom:378.417333pt;}
.y28b{bottom:378.465333pt;}
.y2d9{bottom:378.617333pt;}
.y20e{bottom:379.325333pt;}
.y152{bottom:379.946667pt;}
.y1cc{bottom:380.589333pt;}
.y4f{bottom:381.386667pt;}
.ye5{bottom:382.037333pt;}
.ya5{bottom:384.750667pt;}
.y12c{bottom:387.304000pt;}
.y184{bottom:388.746667pt;}
.y235{bottom:388.774667pt;}
.y28a{bottom:389.889333pt;}
.y2d8{bottom:390.226667pt;}
.y64{bottom:393.000000pt;}
.y151{bottom:393.725333pt;}
.y1cb{bottom:394.470667pt;}
.y4e{bottom:395.249333pt;}
.ye4{bottom:395.864000pt;}
.ya4{bottom:398.500000pt;}
.y12b{bottom:401.172000pt;}
.y289{bottom:401.438667pt;}
.y2d7{bottom:401.650667pt;}
.y234{bottom:402.828000pt;}
.y183{bottom:403.108000pt;}
.ye3{bottom:406.004000pt;}
.y150{bottom:407.502667pt;}
.y63{bottom:407.582667pt;}
.y1ca{bottom:408.352000pt;}
.y4d{bottom:409.110667pt;}
.ye2{bottom:409.690667pt;}
.ya3{bottom:412.250667pt;}
.y288{bottom:412.862667pt;}
.y2d6{bottom:413.260000pt;}
.y182{bottom:417.469333pt;}
.y14f{bottom:421.280000pt;}
.y62{bottom:422.166667pt;}
.y1c9{bottom:422.232000pt;}
.ye1{bottom:423.518667pt;}
.y20d{bottom:424.054667pt;}
.y287{bottom:424.286667pt;}
.y2d5{bottom:424.684000pt;}
.ya2{bottom:426.000000pt;}
.y12a{bottom:428.685333pt;}
.ye{bottom:430.990669pt;}
.y233{bottom:431.462667pt;}
.y181{bottom:431.830667pt;}
.y14e{bottom:435.058667pt;}
.y286{bottom:435.837333pt;}
.y2d4{bottom:436.108000pt;}
.y1c8{bottom:436.113333pt;}
.y4c{bottom:436.749333pt;}
.ye0{bottom:437.345333pt;}
.ya1{bottom:439.750667pt;}
.y129{bottom:442.633333pt;}
.yd{bottom:446.990669pt;}
.y285{bottom:447.261333pt;}
.y2d3{bottom:447.717333pt;}
.y14d{bottom:448.836000pt;}
.ydf{bottom:451.172000pt;}
.ya0{bottom:453.500000pt;}
.y24d{bottom:453.814667pt;}
.y128{bottom:456.581333pt;}
.y284{bottom:458.685333pt;}
.y2d2{bottom:459.141333pt;}
.y1c7{bottom:459.256000pt;}
.y232{bottom:460.626667pt;}
.y14c{bottom:462.613333pt;}
.y180{bottom:462.622667pt;}
.yc{bottom:462.990669pt;}
.yde{bottom:465.000000pt;}
.y1c4{bottom:465.674667pt;}
.y9f{bottom:467.250667pt;}
.y283{bottom:470.109333pt;}
.y127{bottom:470.529333pt;}
.y2d1{bottom:470.565333pt;}
.y1bf{bottom:474.540000pt;}
.y231{bottom:474.680000pt;}
.y14b{bottom:476.392000pt;}
.y1c2{bottom:478.316000pt;}
.y3f{bottom:478.730667pt;}
.ydd{bottom:478.826667pt;}
.yb{bottom:478.990666pt;}
.y9e{bottom:481.000000pt;}
.y282{bottom:481.533333pt;}
.y2d0{bottom:481.989333pt;}
.y1c3{bottom:483.293333pt;}
.y126{bottom:484.476000pt;}
.y4b{bottom:485.952000pt;}
.y1c1{bottom:485.968000pt;}
.y1c6{bottom:486.588000pt;}
.y230{bottom:488.733333pt;}
.y3e{bottom:490.154667pt;}
.y14a{bottom:490.169333pt;}
.y1c5{bottom:490.556000pt;}
.ydc{bottom:492.653333pt;}
.y281{bottom:493.084000pt;}
.y2cf{bottom:493.598667pt;}
.y1c0{bottom:493.618667pt;}
.y9d{bottom:494.750667pt;}
.ya{bottom:494.990666pt;}
.y17f{bottom:495.482667pt;}
.y125{bottom:498.424000pt;}
.y4a{bottom:498.704000pt;}
.y3d{bottom:501.578667pt;}
.y149{bottom:503.946667pt;}
.y280{bottom:504.506667pt;}
.y2ce{bottom:505.022667pt;}
.ydb{bottom:506.481333pt;}
.y22f{bottom:507.338667pt;}
.y9c{bottom:508.500000pt;}
.y49{bottom:511.456000pt;}
.y124{bottom:512.372000pt;}
.y17e{bottom:512.860000pt;}
.y3c{bottom:513.001333pt;}
.y27f{bottom:515.930667pt;}
.y22e{bottom:516.204000pt;}
.y2cd{bottom:516.446667pt;}
.y148{bottom:517.724000pt;}
.y1be{bottom:518.850667pt;}
.yda{bottom:520.308000pt;}
.y22d{bottom:521.638667pt;}
.y17d{bottom:521.725333pt;}
.y9b{bottom:522.250667pt;}
.y48{bottom:524.208000pt;}
.y3b{bottom:524.425333pt;}
.y1bb{bottom:525.269333pt;}
.y123{bottom:526.320000pt;}
.y27e{bottom:527.481333pt;}
.y2cc{bottom:528.056000pt;}
.y147{bottom:531.502667pt;}
.yd9{bottom:534.134667pt;}
.y3a{bottom:535.849333pt;}
.y9a{bottom:536.000000pt;}
.y47{bottom:536.960000pt;}
.y27d{bottom:538.905333pt;}
.y2cb{bottom:539.480000pt;}
.y122{bottom:540.266667pt;}
.y22c{bottom:542.737333pt;}
.y146{bottom:545.280000pt;}
.y1bd{bottom:546.182667pt;}
.y39{bottom:547.273333pt;}
.y17c{bottom:547.705333pt;}
.yd8{bottom:547.962667pt;}
.y46{bottom:549.712000pt;}
.y99{bottom:549.750667pt;}
.y1bc{bottom:550.150667pt;}
.y27c{bottom:550.329333pt;}
.y2ca{bottom:550.904000pt;}
.y121{bottom:554.214667pt;}
.y22b{bottom:556.790667pt;}
.y145{bottom:559.057333pt;}
.yd7{bottom:561.789333pt;}
.y27b{bottom:561.880000pt;}
.y17b{bottom:562.066667pt;}
.y45{bottom:562.465333pt;}
.y2c9{bottom:562.513333pt;}
.y98{bottom:563.500000pt;}
.y120{bottom:565.609333pt;}
.y38{bottom:568.408000pt;}
.y11e{bottom:570.042667pt;}
.y22a{bottom:570.844000pt;}
.y144{bottom:572.836000pt;}
.y27a{bottom:573.304000pt;}
.y9{bottom:573.786667pt;}
.y2c8{bottom:573.937333pt;}
.y11f{bottom:574.104000pt;}
.y44{bottom:575.217333pt;}
.yd6{bottom:575.616000pt;}
.y17a{bottom:576.428000pt;}
.y1ba{bottom:576.525333pt;}
.y97{bottom:577.250667pt;}
.y37{bottom:579.832000pt;}
.y279{bottom:584.854667pt;}
.y229{bottom:584.897333pt;}
.y2c7{bottom:585.361333pt;}
.y1b9{bottom:585.390667pt;}
.y143{bottom:586.613333pt;}
.y43{bottom:587.969333pt;}
.yd5{bottom:589.444000pt;}
.y11d{bottom:590.426667pt;}
.y179{bottom:590.789333pt;}
.y96{bottom:591.000000pt;}
.y36{bottom:591.256000pt;}
.y8{bottom:592.685334pt;}
.y278{bottom:596.278667pt;}
.y2c6{bottom:596.970667pt;}
.y228{bottom:598.950667pt;}
.y142{bottom:600.390667pt;}
.y42{bottom:600.721333pt;}
.y35{bottom:602.680000pt;}
.y11c{bottom:604.374667pt;}
.y95{bottom:604.750667pt;}
.y178{bottom:605.150667pt;}
.y277{bottom:607.701333pt;}
.y2c5{bottom:608.394667pt;}
.y227{bottom:613.004000pt;}
.y41{bottom:613.473333pt;}
.y34{bottom:614.104000pt;}
.y1b8{bottom:615.724000pt;}
.yd4{bottom:616.977333pt;}
.y11b{bottom:618.322667pt;}
.y94{bottom:618.500000pt;}
.y276{bottom:619.125333pt;}
.y2c4{bottom:619.817333pt;}
.y24c{bottom:623.316000pt;}
.y226{bottom:627.057333pt;}
.y1b7{bottom:629.605333pt;}
.y275{bottom:630.676000pt;}
.y2c3{bottom:631.428000pt;}
.y93{bottom:632.250667pt;}
.y11a{bottom:632.269333pt;}
.y177{bottom:635.942667pt;}
.y40{bottom:640.873333pt;}
.y33{bottom:640.880000pt;}
.y225{bottom:641.110667pt;}
.y274{bottom:642.100000pt;}
.y2c2{bottom:642.852000pt;}
.y1b6{bottom:643.485333pt;}
.yd3{bottom:644.632000pt;}
.y141{bottom:645.120000pt;}
.y7{bottom:645.598667pt;}
.y92{bottom:646.000000pt;}
.y119{bottom:646.217333pt;}
.y2c1{bottom:654.461333pt;}
.y224{bottom:655.164000pt;}
.y1b5{bottom:657.464000pt;}
.y91{bottom:659.750667pt;}
.y2c0{bottom:665.885333pt;}
.y273{bottom:667.661333pt;}
.y176{bottom:668.802667pt;}
.y3{bottom:668.977329pt;}
.y223{bottom:669.217333pt;}
.y118{bottom:671.329333pt;}
.y1b4{bottom:671.344000pt;}
.yd2{bottom:671.804000pt;}
.y90{bottom:673.500000pt;}
.y2bf{bottom:677.309333pt;}
.y1b3{bottom:681.538667pt;}
.y175{bottom:683.164000pt;}
.y32{bottom:683.900000pt;}
.y117{bottom:685.197333pt;}
.y1b2{bottom:685.225333pt;}
.yd1{bottom:685.630667pt;}
.y8f{bottom:687.250667pt;}
.y2be{bottom:688.918667pt;}
.y31{bottom:695.324000pt;}
.y272{bottom:695.937333pt;}
.y174{bottom:697.525333pt;}
.y116{bottom:699.065333pt;}
.yd0{bottom:699.457333pt;}
.y2bd{bottom:700.342667pt;}
.y8e{bottom:701.000000pt;}
.y20c{bottom:703.256000pt;}
.y1b1{bottom:706.180000pt;}
.y30{bottom:706.748000pt;}
.y271{bottom:709.917333pt;}
.y2bc{bottom:711.952000pt;}
.y115{bottom:712.933333pt;}
.ycf{bottom:713.285333pt;}
.y20b{bottom:714.680000pt;}
.y8d{bottom:714.750667pt;}
.y173{bottom:717.140000pt;}
.y2f{bottom:718.172000pt;}
.y1af{bottom:719.794667pt;}
.y1b0{bottom:720.126667pt;}
.y114{bottom:723.114667pt;}
.y2bb{bottom:723.376000pt;}
.y270{bottom:723.896000pt;}
.y2e{bottom:725.969333pt;}
.y172{bottom:726.005333pt;}
.y113{bottom:726.801333pt;}
.yce{bottom:727.112000pt;}
.y8c{bottom:728.500000pt;}
.y20a{bottom:730.524000pt;}
.y2ba{bottom:734.800000pt;}
.ycd{bottom:740.938667pt;}
.y2d{bottom:741.018667pt;}
.y209{bottom:741.948000pt;}
.y8b{bottom:742.250667pt;}
.y2b9{bottom:746.409333pt;}
.y111{bottom:749.398667pt;}
.y1ae{bottom:751.774667pt;}
.y26f{bottom:752.013333pt;}
.y2c{bottom:754.130667pt;}
.y171{bottom:754.373333pt;}
.ycc{bottom:754.766667pt;}
.y8a{bottom:756.000000pt;}
.y208{bottom:757.790667pt;}
.y2b8{bottom:757.833333pt;}
.y10f{bottom:763.305333pt;}
.ycb{bottom:768.593333pt;}
.y170{bottom:768.734667pt;}
.y207{bottom:769.214667pt;}
.y2b7{bottom:769.442667pt;}
.y89{bottom:769.750667pt;}
.y1ad{bottom:770.133333pt;}
.y112{bottom:770.464000pt;}
.y2b{bottom:771.398667pt;}
.y1ac{bottom:773.492000pt;}
.y110{bottom:775.230667pt;}
.y10c{bottom:778.589333pt;}
.y26e{bottom:780.289333pt;}
.y2b6{bottom:780.866667pt;}
.y2{bottom:781.661334pt;}
.yca{bottom:782.421333pt;}
.y16f{bottom:783.096000pt;}
.y88{bottom:783.500000pt;}
.y206{bottom:785.057333pt;}
.y10e{bottom:790.637333pt;}
.y2b5{bottom:792.290667pt;}
.y24b{bottom:793.274667pt;}
.y26d{bottom:794.268000pt;}
.y10d{bottom:794.604000pt;}
.y1ab{bottom:795.614667pt;}
.yc9{bottom:796.248000pt;}
.y205{bottom:796.481333pt;}
.y87{bottom:797.250667pt;}
.y16e{bottom:797.457333pt;}
.y2a{bottom:799.386667pt;}
.y2b4{bottom:803.900000pt;}
.y26c{bottom:808.248000pt;}
.y1aa{bottom:809.496000pt;}
.yc8{bottom:810.074667pt;}
.y250{bottom:810.809333pt;}
.y86{bottom:811.000000pt;}
.y16d{bottom:811.818667pt;}
.y10b{bottom:812.098667pt;}
.y204{bottom:812.325333pt;}
.y2b3{bottom:815.324000pt;}
.y26b{bottom:822.226667pt;}
.y29{bottom:822.366667pt;}
.y1a9{bottom:823.376000pt;}
.yc7{bottom:823.902667pt;}
.y85{bottom:824.750667pt;}
.y10a{bottom:825.966667pt;}
.y203{bottom:826.605333pt;}
.y2b2{bottom:826.748000pt;}
.y26a{bottom:836.206667pt;}
.y1a8{bottom:837.257333pt;}
.yc6{bottom:837.729333pt;}
.y202{bottom:838.029333pt;}
.y2b1{bottom:838.357333pt;}
.y84{bottom:838.500000pt;}
.y109{bottom:839.834667pt;}
.y16c{bottom:842.610667pt;}
.y2b0{bottom:849.781333pt;}
.y269{bottom:850.185333pt;}
.y1a7{bottom:851.138667pt;}
.yc5{bottom:851.556000pt;}
.y28{bottom:851.697333pt;}
.y83{bottom:852.250667pt;}
.y1{bottom:859.312000pt;}
.y108{bottom:860.310667pt;}
.y2af{bottom:861.205333pt;}
.y2fa{bottom:861.762667pt;}
.y268{bottom:864.165333pt;}
.y1a6{bottom:865.020000pt;}
.yc4{bottom:865.384000pt;}
.y82{bottom:866.000000pt;}
.y200{bottom:868.477333pt;}
.y201{bottom:868.480000pt;}
.y1ff{bottom:871.429333pt;}
.y2ae{bottom:872.814667pt;}
.y2f9{bottom:873.185333pt;}
.y107{bottom:874.258667pt;}
.y16b{bottom:875.470667pt;}
.y267{bottom:878.144000pt;}
.y1a5{bottom:878.900000pt;}
.yc3{bottom:879.210667pt;}
.y81{bottom:879.750667pt;}
.y2ad{bottom:884.238667pt;}
.y2f8{bottom:884.609333pt;}
.y16a{bottom:889.832000pt;}
.y1fc{bottom:891.261333pt;}
.y1fd{bottom:891.854667pt;}
.y1fe{bottom:891.857333pt;}
.y266{bottom:892.124000pt;}
.y1a4{bottom:892.781333pt;}
.yc2{bottom:893.037333pt;}
.y27{bottom:893.368000pt;}
.y80{bottom:893.500000pt;}
.y106{bottom:894.164000pt;}
.y1fb{bottom:894.808000pt;}
.y2ac{bottom:895.848000pt;}
.y2f7{bottom:896.033333pt;}
.y169{bottom:904.193333pt;}
.y265{bottom:906.104000pt;}
.y1a3{bottom:906.662667pt;}
.yc1{bottom:906.865333pt;}
.y7f{bottom:907.250667pt;}
.y2ab{bottom:907.272000pt;}
.y2f6{bottom:907.457333pt;}
.y105{bottom:908.032000pt;}
.y1f9{bottom:914.202667pt;}
.y1fa{bottom:914.205333pt;}
.y1f8{bottom:917.156000pt;}
.y168{bottom:918.554667pt;}
.y2aa{bottom:918.696000pt;}
.y2f5{bottom:918.881333pt;}
.y264{bottom:920.082667pt;}
.y1a2{bottom:920.542667pt;}
.yc0{bottom:920.692000pt;}
.y7e{bottom:921.000000pt;}
.y104{bottom:921.900000pt;}
.y26{bottom:928.150667pt;}
.y2a9{bottom:930.118667pt;}
.y2f4{bottom:930.305333pt;}
.y1f6{bottom:931.460000pt;}
.y1f7{bottom:931.462667pt;}
.y167{bottom:932.916000pt;}
.y263{bottom:934.062667pt;}
.y1f5{bottom:934.413333pt;}
.y1a1{bottom:934.424000pt;}
.ybf{bottom:934.518667pt;}
.y7c{bottom:934.750667pt;}
.y7d{bottom:939.282667pt;}
.y103{bottom:940.564000pt;}
.y2a8{bottom:941.729333pt;}
.y166{bottom:947.277333pt;}
.y262{bottom:948.041333pt;}
.y1a0{bottom:948.305333pt;}
.ybe{bottom:948.346667pt;}
.y7b{bottom:948.500000pt;}
.y102{bottom:949.429333pt;}
.y1f4{bottom:951.906667pt;}
.y2a7{bottom:953.153333pt;}
.y165{bottom:961.638667pt;}
.y261{bottom:962.021333pt;}
.ybd{bottom:962.173333pt;}
.y7a{bottom:962.250667pt;}
.y2a6{bottom:964.576000pt;}
.y1f3{bottom:966.188000pt;}
.y25{bottom:966.549333pt;}
.y79{bottom:976.000000pt;}
.y1f2{bottom:977.612000pt;}
.y24{bottom:1002.568000pt;}
.h24{height:2.346393pt;}
.h38{height:18.061687pt;}
.h10{height:20.200678pt;}
.h52{height:20.258368pt;}
.h36{height:22.056448pt;}
.h23{height:24.415658pt;}
.h31{height:25.251174pt;}
.h18{height:25.732130pt;}
.h11{height:27.903669pt;}
.h7{height:28.560000pt;}
.h12{height:28.845333pt;}
.ha{height:28.858547pt;}
.h51{height:29.408205pt;}
.hb{height:31.285299pt;}
.h16{height:32.165359pt;}
.h13{height:32.465920pt;}
.h14{height:34.879691pt;}
.h15{height:36.073293pt;}
.h21{height:36.760354pt;}
.h17{height:36.928981pt;}
.h54{height:38.173687pt;}
.h55{height:38.179021pt;}
.h45{height:39.126940pt;}
.h4e{height:39.132274pt;}
.h3f{height:39.688508pt;}
.h48{height:40.180292pt;}
.h6{height:40.800000pt;}
.h50{height:41.205538pt;}
.h3{height:42.840000pt;}
.h3d{height:43.071658pt;}
.h19{height:43.076991pt;}
.hd{height:43.287603pt;}
.h1f{height:43.384508pt;}
.h1c{height:43.629841pt;}
.h29{height:43.635174pt;}
.h2e{height:43.912508pt;}
.h3a{height:45.044991pt;}
.h39{height:45.439726pt;}
.h2d{height:45.875174pt;}
.h25{height:45.880508pt;}
.h47{height:46.271786pt;}
.h4f{height:46.712678pt;}
.h46{height:46.718012pt;}
.h42{height:47.017463pt;}
.h30{height:47.690734pt;}
.h49{height:48.398012pt;}
.h2{height:48.960000pt;}
.h28{height:49.507959pt;}
.h27{height:50.195021pt;}
.h1b{height:50.819959pt;}
.h1e{height:50.830626pt;}
.h44{height:51.507021pt;}
.h4b{height:53.313607pt;}
.hf{height:55.585519pt;}
.h20{height:55.983658pt;}
.h1a{height:57.823658pt;}
.h1d{height:58.387174pt;}
.h26{height:58.479658pt;}
.h4d{height:58.527786pt;}
.h4a{height:58.954452pt;}
.h43{height:59.791658pt;}
.hc{height:60.873165pt;}
.h37{height:61.155021pt;}
.h22{height:62.638626pt;}
.h2c{height:62.643959pt;}
.he{height:63.433719pt;}
.h2f{height:66.086903pt;}
.h5{height:69.360000pt;}
.h35{height:69.893025pt;}
.h4c{height:70.757119pt;}
.h2a{height:71.086626pt;}
.h2b{height:71.534626pt;}
.h34{height:71.773687pt;}
.h41{height:72.221687pt;}
.h32{height:81.341841pt;}
.h53{height:88.997059pt;}
.h33{height:93.727726pt;}
.h3b{height:93.880354pt;}
.h4{height:105.826671pt;}
.h40{height:106.542626pt;}
.h3e{height:106.869059pt;}
.h3c{height:143.461059pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:43.616000pt;}
.x3a{left:47.765333pt;}
.x60{left:49.660000pt;}
.x9{left:56.693333pt;}
.x13{left:59.556000pt;}
.xe{left:64.948000pt;}
.x39{left:69.684000pt;}
.x38{left:70.908000pt;}
.xd{left:72.633333pt;}
.xf{left:76.618667pt;}
.x3c{left:77.613333pt;}
.x3d{left:80.836000pt;}
.x3b{left:84.400000pt;}
.x43{left:86.384000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2d{left:96.505333pt;}
.x2b{left:97.426667pt;}
.x2c{left:101.108000pt;}
.x31{left:104.025333pt;}
.x2e{left:115.269333pt;}
.x32{left:118.666667pt;}
.x2f{left:123.448000pt;}
.x61{left:129.225333pt;}
.x44{left:130.756000pt;}
.x46{left:132.333333pt;}
.x45{left:134.905333pt;}
.x58{left:136.333333pt;}
.x3f{left:145.064000pt;}
.x3e{left:151.781333pt;}
.x34{left:152.924000pt;}
.x6c{left:156.333333pt;}
.x33{left:168.020000pt;}
.x57{left:170.030667pt;}
.x4{left:180.874667pt;}
.x40{left:204.640000pt;}
.x6b{left:208.128000pt;}
.x68{left:222.849333pt;}
.x6a{left:224.804000pt;}
.x69{left:228.401333pt;}
.x14{left:238.165333pt;}
.x5b{left:240.618667pt;}
.x5f{left:258.096000pt;}
.x2a{left:267.785333pt;}
.x59{left:269.224000pt;}
.xa{left:273.864000pt;}
.x56{left:276.697333pt;}
.x8{left:278.714667pt;}
.x5c{left:285.865333pt;}
.x5a{left:290.812000pt;}
.x67{left:298.965333pt;}
.x6{left:303.074667pt;}
.xb{left:304.577333pt;}
.x41{left:309.636000pt;}
.x5d{left:322.090667pt;}
.x5{left:327.150667pt;}
.x7{left:339.698667pt;}
.x42{left:357.392000pt;}
.x30{left:376.868000pt;}
.x5e{left:386.597333pt;}
.x15{left:402.266667pt;}
.x3{left:404.408000pt;}
.x54{left:407.505333pt;}
.x47{left:411.850667pt;}
.x10{left:415.344000pt;}
.x16{left:418.206667pt;}
.x4e{left:427.234667pt;}
.x4b{left:428.394667pt;}
.x11{left:431.284000pt;}
.x36{left:438.372000pt;}
.x1d{left:440.906667pt;}
.x1e{left:443.162667pt;}
.x4c{left:445.250667pt;}
.x1c{left:446.870667pt;}
.x48{left:449.829333pt;}
.x4f{left:452.317333pt;}
.x49{left:453.898667pt;}
.x55{left:454.808000pt;}
.x4d{left:458.589333pt;}
.x1f{left:461.032000pt;}
.x35{left:464.760000pt;}
.x20{left:469.210667pt;}
.x37{left:470.633333pt;}
.x4a{left:473.278667pt;}
.x51{left:475.497333pt;}
.x63{left:478.358667pt;}
.x50{left:480.016000pt;}
.x52{left:491.273333pt;}
.x21{left:492.754667pt;}
.x64{left:494.136000pt;}
.x28{left:512.753333pt;}
.x65{left:519.305333pt;}
.x29{left:522.218667pt;}
.x23{left:523.930667pt;}
.x24{left:526.197333pt;}
.x66{left:527.481333pt;}
.x22{left:530.717333pt;}
.xc{left:536.402667pt;}
.x17{left:538.814667pt;}
.x25{left:544.056000pt;}
.x26{left:552.234667pt;}
.x53{left:558.417333pt;}
.x18{left:562.980000pt;}
.x19{left:588.293333pt;}
.x1a{left:684.898667pt;}
.x1b{left:714.706667pt;}
.x62{left:716.042667pt;}
.x27{left:722.441333pt;}
}




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